-- MySQL dump 10.19  Distrib 10.3.39-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: jeffgutowski_auctions
-- ------------------------------------------------------
-- Server version	10.3.39-MariaDB

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

--
-- Table structure for table `b78GM7Ml_actionscheduler_actions`
--

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

--
-- Dumping data for table `b78GM7Ml_actionscheduler_actions`
--

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

--
-- Table structure for table `b78GM7Ml_actionscheduler_claims`
--

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

--
-- Dumping data for table `b78GM7Ml_actionscheduler_claims`
--

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

--
-- Table structure for table `b78GM7Ml_actionscheduler_groups`
--

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

--
-- Dumping data for table `b78GM7Ml_actionscheduler_groups`
--

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

--
-- Table structure for table `b78GM7Ml_actionscheduler_logs`
--

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

--
-- Dumping data for table `b78GM7Ml_actionscheduler_logs`
--

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

--
-- Table structure for table `b78GM7Ml_commentmeta`
--

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

--
-- Dumping data for table `b78GM7Ml_commentmeta`
--

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

--
-- Table structure for table `b78GM7Ml_comments`
--

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

--
-- Dumping data for table `b78GM7Ml_comments`
--

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

--
-- Table structure for table `b78GM7Ml_links`
--

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

--
-- Dumping data for table `b78GM7Ml_links`
--

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

--
-- Table structure for table `b78GM7Ml_options`
--

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

--
-- Dumping data for table `b78GM7Ml_options`
--

LOCK TABLES `b78GM7Ml_options` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_options` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_options` VALUES (1,'siteurl','https://kingsvillelivestock.com','yes'),(2,'home','https://kingsvillelivestock.com','yes'),(3,'blogname','Kingsville Livestock Auctions','yes'),(4,'blogdescription','Serving Your Auction Needs in Central Missouri For Over 24 Years','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','justin@hpgmedia.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','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','13','yes'),(19,'default_comment_status','closed','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','','yes'),(22,'posts_per_page','10','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','1','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:323:{s:10:\"project/?$\";s:27:\"index.php?post_type=project\";s:40:\"project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:35:\"project/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:27:\"project/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=project&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:56:\"layout_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?taxonomy=layout_category&term=$matches[1]&feed=$matches[2]\";s:51:\"layout_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?taxonomy=layout_category&term=$matches[1]&feed=$matches[2]\";s:32:\"layout_category/([^/]+)/embed/?$\";s:62:\"index.php?taxonomy=layout_category&term=$matches[1]&embed=true\";s:44:\"layout_category/([^/]+)/page/?([0-9]{1,})/?$\";s:69:\"index.php?taxonomy=layout_category&term=$matches[1]&paged=$matches[2]\";s:26:\"layout_category/([^/]+)/?$\";s:51:\"index.php?taxonomy=layout_category&term=$matches[1]\";s:51:\"layout_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?taxonomy=layout_tag&term=$matches[1]&feed=$matches[2]\";s:46:\"layout_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?taxonomy=layout_tag&term=$matches[1]&feed=$matches[2]\";s:27:\"layout_tag/([^/]+)/embed/?$\";s:57:\"index.php?taxonomy=layout_tag&term=$matches[1]&embed=true\";s:39:\"layout_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:64:\"index.php?taxonomy=layout_tag&term=$matches[1]&paged=$matches[2]\";s:21:\"layout_tag/([^/]+)/?$\";s:46:\"index.php?taxonomy=layout_tag&term=$matches[1]\";s:52:\"layout_pack/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_pack&term=$matches[1]&feed=$matches[2]\";s:47:\"layout_pack/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_pack&term=$matches[1]&feed=$matches[2]\";s:28:\"layout_pack/([^/]+)/embed/?$\";s:58:\"index.php?taxonomy=layout_pack&term=$matches[1]&embed=true\";s:40:\"layout_pack/([^/]+)/page/?([0-9]{1,})/?$\";s:65:\"index.php?taxonomy=layout_pack&term=$matches[1]&paged=$matches[2]\";s:22:\"layout_pack/([^/]+)/?$\";s:47:\"index.php?taxonomy=layout_pack&term=$matches[1]\";s:52:\"layout_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_type&term=$matches[1]&feed=$matches[2]\";s:47:\"layout_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_type&term=$matches[1]&feed=$matches[2]\";s:28:\"layout_type/([^/]+)/embed/?$\";s:58:\"index.php?taxonomy=layout_type&term=$matches[1]&embed=true\";s:40:\"layout_type/([^/]+)/page/?([0-9]{1,})/?$\";s:65:\"index.php?taxonomy=layout_type&term=$matches[1]&paged=$matches[2]\";s:22:\"layout_type/([^/]+)/?$\";s:47:\"index.php?taxonomy=layout_type&term=$matches[1]\";s:53:\"module_width/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?taxonomy=module_width&term=$matches[1]&feed=$matches[2]\";s:48:\"module_width/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?taxonomy=module_width&term=$matches[1]&feed=$matches[2]\";s:29:\"module_width/([^/]+)/embed/?$\";s:59:\"index.php?taxonomy=module_width&term=$matches[1]&embed=true\";s:41:\"module_width/([^/]+)/page/?([0-9]{1,})/?$\";s:66:\"index.php?taxonomy=module_width&term=$matches[1]&paged=$matches[2]\";s:23:\"module_width/([^/]+)/?$\";s:48:\"index.php?taxonomy=module_width&term=$matches[1]\";s:46:\"scope/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?taxonomy=scope&term=$matches[1]&feed=$matches[2]\";s:41:\"scope/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?taxonomy=scope&term=$matches[1]&feed=$matches[2]\";s:22:\"scope/([^/]+)/embed/?$\";s:52:\"index.php?taxonomy=scope&term=$matches[1]&embed=true\";s:34:\"scope/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?taxonomy=scope&term=$matches[1]&paged=$matches[2]\";s:16:\"scope/([^/]+)/?$\";s:41:\"index.php?taxonomy=scope&term=$matches[1]\";s:40:\"et_pb_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"et_pb_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"et_pb_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"et_pb_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"et_pb_layout/([^/]+)/embed/?$\";s:60:\"index.php?post_type=et_pb_layout&name=$matches[1]&embed=true\";s:33:\"et_pb_layout/([^/]+)/trackback/?$\";s:54:\"index.php?post_type=et_pb_layout&name=$matches[1]&tb=1\";s:41:\"et_pb_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&paged=$matches[2]\";s:48:\"et_pb_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&cpage=$matches[2]\";s:37:\"et_pb_layout/([^/]+)(?:/([0-9]+))?/?$\";s:66:\"index.php?post_type=et_pb_layout&name=$matches[1]&page=$matches[2]\";s:29:\"et_pb_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"et_pb_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"et_pb_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"et_pb_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:56:\"et_tb_item_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]&feed=$matches[2]\";s:51:\"et_tb_item_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]&feed=$matches[2]\";s:32:\"et_tb_item_type/([^/]+)/embed/?$\";s:62:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]&embed=true\";s:44:\"et_tb_item_type/([^/]+)/page/?([0-9]{1,})/?$\";s:69:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]&paged=$matches[2]\";s:26:\"et_tb_item_type/([^/]+)/?$\";s:51:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]\";s:38:\"et_tb_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"et_tb_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"et_tb_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"et_tb_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"et_tb_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"et_tb_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"et_tb_item/([^/]+)/embed/?$\";s:58:\"index.php?post_type=et_tb_item&name=$matches[1]&embed=true\";s:31:\"et_tb_item/([^/]+)/trackback/?$\";s:52:\"index.php?post_type=et_tb_item&name=$matches[1]&tb=1\";s:39:\"et_tb_item/([^/]+)/page/?([0-9]{1,})/?$\";s:65:\"index.php?post_type=et_tb_item&name=$matches[1]&paged=$matches[2]\";s:46:\"et_tb_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?post_type=et_tb_item&name=$matches[1]&cpage=$matches[2]\";s:35:\"et_tb_item/([^/]+)(?:/([0-9]+))?/?$\";s:64:\"index.php?post_type=et_tb_item&name=$matches[1]&page=$matches[2]\";s:27:\"et_tb_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"et_tb_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"et_tb_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"et_tb_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"et_tb_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"et_tb_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:40:\"index.php?project=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:34:\"index.php?project=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&cpage=$matches[2]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?project=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"project_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:52:\"project_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:33:\"project_category/([^/]+)/embed/?$\";s:49:\"index.php?project_category=$matches[1]&embed=true\";s:45:\"project_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?project_category=$matches[1]&paged=$matches[2]\";s:27:\"project_category/([^/]+)/?$\";s:38:\"index.php?project_category=$matches[1]\";s:52:\"project_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:47:\"project_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:28:\"project_tag/([^/]+)/embed/?$\";s:44:\"index.php?project_tag=$matches[1]&embed=true\";s:40:\"project_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?project_tag=$matches[1]&paged=$matches[2]\";s:22:\"project_tag/([^/]+)/?$\";s:33:\"index.php?project_tag=$matches[1]\";s:44:\"et_theme_options/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_theme_options/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_theme_options/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_theme_options/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_theme_options/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"et_theme_options/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"et_theme_options/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_theme_options&name=$matches[1]&embed=true\";s:37:\"et_theme_options/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_theme_options&name=$matches[1]&tb=1\";s:45:\"et_theme_options/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_options&name=$matches[1]&paged=$matches[2]\";s:52:\"et_theme_options/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_options&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_theme_options/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_theme_options&name=$matches[1]&page=$matches[2]\";s:33:\"et_theme_options/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_theme_options/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_theme_options/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_theme_options/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_theme_options/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"et_theme_options/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:61:\"et_code_snippet_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?et_code_snippet_type=$matches[1]&feed=$matches[2]\";s:56:\"et_code_snippet_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?et_code_snippet_type=$matches[1]&feed=$matches[2]\";s:37:\"et_code_snippet_type/([^/]+)/embed/?$\";s:53:\"index.php?et_code_snippet_type=$matches[1]&embed=true\";s:49:\"et_code_snippet_type/([^/]+)/page/?([0-9]{1,})/?$\";s:60:\"index.php?et_code_snippet_type=$matches[1]&paged=$matches[2]\";s:31:\"et_code_snippet_type/([^/]+)/?$\";s:42:\"index.php?et_code_snippet_type=$matches[1]\";s:43:\"et_code_snippet/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"et_code_snippet/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"et_code_snippet/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"et_code_snippet/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"et_code_snippet/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"et_code_snippet/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"et_code_snippet/([^/]+)/embed/?$\";s:63:\"index.php?post_type=et_code_snippet&name=$matches[1]&embed=true\";s:36:\"et_code_snippet/([^/]+)/trackback/?$\";s:57:\"index.php?post_type=et_code_snippet&name=$matches[1]&tb=1\";s:44:\"et_code_snippet/([^/]+)/page/?([0-9]{1,})/?$\";s:70:\"index.php?post_type=et_code_snippet&name=$matches[1]&paged=$matches[2]\";s:51:\"et_code_snippet/([^/]+)/comment-page-([0-9]{1,})/?$\";s:70:\"index.php?post_type=et_code_snippet&name=$matches[1]&cpage=$matches[2]\";s:40:\"et_code_snippet/([^/]+)(?:/([0-9]+))?/?$\";s:69:\"index.php?post_type=et_code_snippet&name=$matches[1]&page=$matches[2]\";s:32:\"et_code_snippet/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"et_code_snippet/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"et_code_snippet/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"et_code_snippet/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"et_code_snippet/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"et_code_snippet/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"et_theme_builder/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_theme_builder/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_theme_builder/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_theme_builder/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_theme_builder/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"et_theme_builder/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"et_theme_builder/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_theme_builder&name=$matches[1]&embed=true\";s:37:\"et_theme_builder/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_theme_builder&name=$matches[1]&tb=1\";s:45:\"et_theme_builder/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_builder&name=$matches[1]&paged=$matches[2]\";s:52:\"et_theme_builder/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_builder&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_theme_builder/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_theme_builder&name=$matches[1]&page=$matches[2]\";s:33:\"et_theme_builder/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_theme_builder/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_theme_builder/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_theme_builder/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_theme_builder/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"et_theme_builder/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:39:\"et_template/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"et_template/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"et_template/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"et_template/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"et_template/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"et_template/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"et_template/([^/]+)/embed/?$\";s:59:\"index.php?post_type=et_template&name=$matches[1]&embed=true\";s:32:\"et_template/([^/]+)/trackback/?$\";s:53:\"index.php?post_type=et_template&name=$matches[1]&tb=1\";s:40:\"et_template/([^/]+)/page/?([0-9]{1,})/?$\";s:66:\"index.php?post_type=et_template&name=$matches[1]&paged=$matches[2]\";s:47:\"et_template/([^/]+)/comment-page-([0-9]{1,})/?$\";s:66:\"index.php?post_type=et_template&name=$matches[1]&cpage=$matches[2]\";s:36:\"et_template/([^/]+)(?:/([0-9]+))?/?$\";s:65:\"index.php?post_type=et_template&name=$matches[1]&page=$matches[2]\";s:28:\"et_template/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"et_template/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"et_template/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"et_template/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"et_template/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"et_template/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"et_header_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_header_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_header_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_header_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_header_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"et_header_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"et_header_layout/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_header_layout&name=$matches[1]&embed=true\";s:37:\"et_header_layout/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_header_layout&name=$matches[1]&tb=1\";s:45:\"et_header_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_header_layout&name=$matches[1]&paged=$matches[2]\";s:52:\"et_header_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_header_layout&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_header_layout/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_header_layout&name=$matches[1]&page=$matches[2]\";s:33:\"et_header_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_header_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_header_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_header_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_header_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"et_header_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"et_body_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"et_body_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"et_body_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"et_body_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"et_body_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"et_body_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"et_body_layout/([^/]+)/embed/?$\";s:62:\"index.php?post_type=et_body_layout&name=$matches[1]&embed=true\";s:35:\"et_body_layout/([^/]+)/trackback/?$\";s:56:\"index.php?post_type=et_body_layout&name=$matches[1]&tb=1\";s:43:\"et_body_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:69:\"index.php?post_type=et_body_layout&name=$matches[1]&paged=$matches[2]\";s:50:\"et_body_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:69:\"index.php?post_type=et_body_layout&name=$matches[1]&cpage=$matches[2]\";s:39:\"et_body_layout/([^/]+)(?:/([0-9]+))?/?$\";s:68:\"index.php?post_type=et_body_layout&name=$matches[1]&page=$matches[2]\";s:31:\"et_body_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"et_body_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"et_body_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"et_body_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"et_body_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"et_body_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"et_footer_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_footer_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_footer_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_footer_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_footer_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"et_footer_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"et_footer_layout/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_footer_layout&name=$matches[1]&embed=true\";s:37:\"et_footer_layout/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_footer_layout&name=$matches[1]&tb=1\";s:45:\"et_footer_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_footer_layout&name=$matches[1]&paged=$matches[2]\";s:52:\"et_footer_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_footer_layout&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_footer_layout/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_footer_layout&name=$matches[1]&page=$matches[2]\";s:33:\"et_footer_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_footer_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_footer_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_footer_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_footer_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"et_footer_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:40:\"index.php?&page_id=639&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:11:{i:0;s:15:\"worker/init.php\";i:2;s:33:\"classic-editor/classic-editor.php\";i:3;s:79:\"contact-form-7-dynamic-text-extension/contact-form-7-dynamic-text-extension.php\";i:4;s:36:\"contact-form-7-honeypot/honeypot.php\";i:5;s:36:\"contact-form-7/wp-contact-form-7.php\";i:6;s:33:\"duplicate-post/duplicate-post.php\";i:7;s:33:\"instagram-feed/instagram-feed.php\";i:8;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";i:9;s:27:\"updraftplus/updraftplus.php\";i:10;s:23:\"wordfence/wordfence.php\";i:11;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','Divi','yes'),(41,'stylesheet','Divi','yes'),(44,'comment_registration','','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','49752','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','0','yes'),(52,'default_link_category','0','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','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','1','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:1:{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:4:{s:33:\"classic-editor/classic-editor.php\";a:2:{i:0;s:14:\"Classic_Editor\";i:1;s:9:\"uninstall\";}s:20:\"worker/functions.php\";s:13:\"mwp_uninstall\";s:33:\"instagram-feed/instagram-feed.php\";s:22:\"sb_instagram_uninstall\";s:36:\"contact-form-7-honeypot/honeypot.php\";s:22:\"honeypot4cf7_uninstall\";}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','639','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','665','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','1','yes'),(93,'initial_db_version','44719','yes'),(94,'b78GM7Ml_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:72:{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:23:\"wf2fa_activate_2fa_self\";b:1;s:25:\"wf2fa_activate_2fa_others\";b:1;s:21:\"wf2fa_manage_settings\";b:1;s:29:\"manage_instagram_feed_options\";b:1;s:17:\"et_support_center\";b:1;s:24:\"et_support_center_system\";b:1;s:31:\"et_support_center_remote_access\";b:1;s:31:\"et_support_center_documentation\";b:1;s:27:\"et_support_center_safe_mode\";b:1;s:22:\"et_support_center_logs\";b:1;s:10:\"copy_posts\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{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:10:\"copy_posts\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(95,'fresh_site','0','yes'),(96,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_recent-posts','a:2:{i:2;a:3:{s:5:\"title\";s:17:\"Trailers For Sale\";s:6:\"number\";i:10;s:9:\"show_date\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:2:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:9:\"sidebar-6\";a:0:{}s:9:\"sidebar-7\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(102,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'cron','a:26:{i:1701281582;a:1:{s:23:\"updraft_backup_database\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1701281624;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1701281898;a:1:{s:21:\"updraft_backup_resume\";a:1:{s:32:\"e4b2d0f27519342f2dc61920c5f7f8e3\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:2:{i:0;i:1;i:1;s:12:\"992e5fbdbdf7\";}}}}i:1701282704;a:1:{s:21:\"wordfence_ls_ntp_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1701282709;a:1:{s:21:\"wordfence_hourly_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1701283502;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:1701291186;a:1:{s:23:\"sbi_usage_tracking_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1701294125;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1701297902;a:2:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1701297910;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:1701297911;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:1701303707;a:1:{s:23:\"sb_instagram_twicedaily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1701304134;a:1:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1701306582;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:1701317767;a:1:{s:25:\"updraft_backup_increments\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1701322573;a:1:{s:21:\"sb_instagram_cron_job\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1701361909;a:1:{s:20:\"wordfence_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1701407400;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"9c98d55e11400c7466f870e672b59f65\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1701407400;}}}}i:1701427797;a:1:{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;}}}i:1701666600;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"906c88c210114df6ee3172dd26198b3d\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:1701666600;}}}}i:1701669600;a:2:{s:23:\"sbi_notification_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"sbiweekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:29:\"sb_instagram_feed_issue_email\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"sbiweekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1701705600;a:1:{s:31:\"wordfence_email_activity_report\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1701787977;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:1701886382;a:1:{s:14:\"updraft_backup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1703618053;a:1:{s:32:\"et_core_page_resource_auto_clear\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}}s:7:\"version\";i:2;}','yes'),(112,'theme_mods_twentynineteen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1554336979;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(169,'recently_activated','a:0:{}','yes'),(170,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.5.3\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1574530437;s:7:\"version\";s:5:\"5.1.5\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(171,'fusion_supported_plugins_active','a:1:{i:0;s:5:\"WPCF7\";}','yes'),(172,'fusion_dynamic_css_posts','a:0:{}','yes'),(173,'fusion_dynamic_css_ids','a:0:{}','yes'),(174,'fusion_builder_version','1.9','yes'),(177,'fusion_core_version','3.9','yes'),(182,'wordfence_version','7.5.7','yes'),(183,'wordfence_case','1','yes'),(184,'wordfence_installed','1','yes'),(185,'fusion_dynamic_css_time','1579202774','yes'),(191,'wordfenceActivated','1','yes'),(192,'wf_plugin_act_error','','yes'),(212,'current_theme','Divi','yes'),(213,'theme_mods_Avada','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:15:\"main_navigation\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1579202044;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:18:\"avada-blog-sidebar\";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:21:\"avada-footer-widget-1\";a:1:{i:0;s:13:\"menu-widget-2\";}s:25:\"avada-slidingbar-widget-1\";a:0:{}s:25:\"avada-slidingbar-widget-2\";a:0:{}s:32:\"avada-custom-sidebar-contactpage\";a:1:{i:0;s:21:\"contact_info-widget-2\";}}}}','yes'),(214,'theme_switched','','yes'),(215,'avada_version','5.9.0','yes'),(216,'widget_ad_125_125-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(217,'widget_fusion_author-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(218,'widget_contact_info-widget','a:2:{i:2;a:17:{s:5:\"title\";s:12:\"Contact Info\";s:7:\"address\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:6:\"mobile\";s:12:\"123-456-7890\";s:3:\"fax\";s:0:\"\";s:5:\"email\";s:23:\"info@driftwoodmedia.com\";s:8:\"emailtxt\";s:0:\"\";s:3:\"web\";s:0:\"\";s:6:\"webtxt\";s:0:\"\";s:20:\"fusion_padding_color\";s:0:\"\";s:15:\"fusion_bg_color\";s:0:\"\";s:21:\"fusion_bg_radius_size\";s:0:\"\";s:18:\"fusion_border_size\";s:0:\"\";s:19:\"fusion_border_style\";s:0:\"\";s:19:\"fusion_border_color\";s:0:\"\";s:12:\"fusion_align\";s:0:\"\";s:19:\"fusion_align_mobile\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(219,'widget_pyre_tabs-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(220,'widget_recent_works-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(221,'widget_tweets-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(222,'widget_flickr-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(223,'widget_social_links-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(224,'widget_facebook-like-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(225,'widget_menu-widget','a:2:{i:2;a:15:{s:8:\"nav_menu\";s:15:\"main-navigation\";s:9:\"alignment\";s:6:\"Center\";s:12:\"menu_padding\";s:4:\"25px\";s:15:\"menu_link_color\";s:4:\"#ccc\";s:21:\"menu_link_hover_color\";s:4:\"#fff\";s:8:\"sep_text\";s:1:\"|\";s:9:\"font_size\";s:4:\"14px\";s:20:\"fusion_padding_color\";s:0:\"\";s:15:\"fusion_bg_color\";s:0:\"\";s:21:\"fusion_bg_radius_size\";s:0:\"\";s:18:\"fusion_border_size\";s:0:\"\";s:19:\"fusion_border_style\";s:0:\"\";s:19:\"fusion_border_color\";s:0:\"\";s:12:\"fusion_align\";s:0:\"\";s:19:\"fusion_align_mobile\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(226,'widget_avada-vertical-menu-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(231,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','yes'),(232,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}','yes'),(233,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}','yes'),(234,'woocommerce_single_image_width','700','yes'),(235,'woocommerce_thumbnail_image_width','500','yes'),(236,'woocommerce_thumbnail_cropping','uncropped','yes'),(253,'fusion_applied_patches','a:2:{i:0;i:416889;i:1;i:416890;}','no'),(311,'fusion_options','a:864:{s:8:\"last_tab\";s:0:\"\";s:6:\"layout\";s:4:\"Wide\";s:10:\"site_width\";s:6:\"1100px\";s:13:\"margin_offset\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";}s:13:\"scroll_offset\";s:4:\"full\";s:18:\"boxed_modal_shadow\";s:4:\"None\";s:12:\"main_padding\";a:2:{s:3:\"top\";s:4:\"55px\";s:6:\"bottom\";s:4:\"40px\";}s:16:\"hundredp_padding\";s:4:\"30px\";s:13:\"sidebar_width\";s:3:\"23%\";s:14:\"sidebar_gutter\";s:2:\"6%\";s:17:\"sidebar_2_1_width\";s:3:\"21%\";s:17:\"sidebar_2_2_width\";s:3:\"21%\";s:19:\"dual_sidebar_gutter\";s:2:\"3%\";s:10:\"responsive\";s:1:\"1\";s:21:\"grid_main_break_point\";s:4:\"1000\";s:23:\"side_header_break_point\";s:3:\"800\";s:19:\"content_break_point\";s:3:\"800\";s:19:\"sidebar_break_point\";s:3:\"800\";s:11:\"mobile_zoom\";s:1:\"1\";s:21:\"typography_responsive\";s:1:\"0\";s:22:\"typography_sensitivity\";s:3:\"0.6\";s:17:\"typography_factor\";s:3:\"1.5\";s:13:\"primary_color\";s:7:\"#bc9751\";s:15:\"header_position\";s:3:\"Top\";s:13:\"header_layout\";s:2:\"v1\";s:15:\"slider_position\";s:5:\"Below\";s:19:\"header_left_content\";s:12:\"Contact Info\";s:20:\"header_right_content\";s:10:\"Navigation\";s:17:\"header_v4_content\";s:18:\"Tagline And Search\";s:13:\"header_number\";s:28:\"Call Us Today! 1.555.555.555\";s:12:\"header_email\";s:19:\"info@yourdomain.com\";s:14:\"header_tagline\";s:19:\"Insert Tagline Here\";s:18:\"header_banner_code\";s:0:\"\";s:15:\"header_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"header_bg_full\";s:1:\"0\";s:18:\"header_bg_parallax\";s:1:\"1\";s:16:\"header_bg_repeat\";s:9:\"no-repeat\";s:17:\"side_header_width\";s:3:\"280\";s:14:\"header_padding\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:13:\"header_shadow\";s:1:\"0\";s:16:\"header_100_width\";s:1:\"0\";s:15:\"header_bg_color\";s:7:\"#ffffff\";s:23:\"archive_header_bg_color\";s:7:\"#ffffff\";s:19:\"header_border_color\";s:7:\"#e5e5e5\";s:19:\"header_top_bg_color\";s:7:\"#a0ce4e\";s:17:\"tagline_font_size\";s:4:\"16px\";s:18:\"tagline_font_color\";s:7:\"#747474\";s:13:\"header_sticky\";s:1:\"1\";s:20:\"header_sticky_tablet\";s:1:\"0\";s:20:\"header_sticky_mobile\";s:1:\"0\";s:23:\"header_sticky_shrinkage\";s:1:\"1\";s:26:\"header_sticky_type2_layout\";s:9:\"menu_only\";s:20:\"header_sticky_shadow\";s:1:\"1\";s:22:\"header_sticky_bg_color\";s:7:\"#ffffff\";s:24:\"header_sticky_menu_color\";s:7:\"#333333\";s:25:\"header_sticky_nav_padding\";s:2:\"35\";s:27:\"header_sticky_nav_font_size\";s:4:\"14px\";s:10:\"nav_height\";s:3:\"167\";s:20:\"menu_highlight_style\";s:9:\"bottombar\";s:25:\"menu_highlight_background\";s:7:\"#a38446\";s:15:\"menu_arrow_size\";a:2:{s:5:\"width\";s:4:\"23px\";s:6:\"height\";s:4:\"12px\";}s:20:\"nav_highlight_border\";s:1:\"3\";s:11:\"nav_padding\";s:2:\"45\";s:18:\"mobile_nav_padding\";s:2:\"25\";s:15:\"megamenu_shadow\";s:1:\"1\";s:28:\"main_menu_sub_menu_animation\";s:4:\"fade\";s:29:\"dropdown_menu_top_border_size\";s:1:\"3\";s:19:\"dropdown_menu_width\";s:3:\"180\";s:34:\"mainmenu_dropdown_vertical_padding\";s:1:\"7\";s:33:\"mainmenu_dropdown_display_divider\";s:1:\"1\";s:31:\"menu_display_dropdown_indicator\";s:4:\"none\";s:20:\"main_nav_search_icon\";s:1:\"0\";s:20:\"main_nav_icon_circle\";s:1:\"0\";s:25:\"main_nav_highlight_radius\";s:3:\"0px\";s:17:\"menu_sub_bg_color\";s:7:\"#f2efef\";s:19:\"menu_bg_hover_color\";s:7:\"#f8f8f8\";s:18:\"menu_sub_sep_color\";s:7:\"#dcdadb\";s:17:\"menu_h45_bg_color\";s:7:\"#ffffff\";s:14:\"nav_typography\";a:10:{s:11:\"font-family\";s:10:\"Montserrat\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"16px\";s:14:\"letter-spacing\";s:1:\"0\";s:5:\"color\";s:7:\"#333333\";}s:22:\"menu_hover_first_color\";s:7:\"#635011\";s:15:\"menu_text_align\";s:6:\"center\";s:14:\"menu_sub_color\";s:7:\"#333333\";s:22:\"nav_dropdown_font_size\";s:4:\"13px\";s:18:\"side_nav_font_size\";s:4:\"14px\";s:26:\"flyout_menu_icon_font_size\";s:4:\"20px\";s:24:\"flyout_nav_icons_padding\";s:2:\"45\";s:22:\"flyout_menu_icon_color\";s:7:\"#333333\";s:28:\"flyout_menu_icon_hover_color\";s:7:\"#a0ce4e\";s:28:\"flyout_menu_background_color\";s:22:\"rgba(255,255,255,0.95)\";s:21:\"flyout_menu_direction\";s:4:\"fade\";s:24:\"flyout_menu_item_padding\";s:2:\"28\";s:23:\"topmenu_dropwdown_width\";s:3:\"180\";s:29:\"header_top_first_border_color\";s:7:\"#e5e5e5\";s:23:\"header_top_sub_bg_color\";s:7:\"#ffffff\";s:30:\"header_top_menu_bg_hover_color\";s:7:\"#fafafa\";s:29:\"header_top_menu_sub_sep_color\";s:7:\"#e5e5e5\";s:14:\"snav_font_size\";s:4:\"12px\";s:11:\"sec_menu_lh\";s:4:\"44px\";s:10:\"snav_color\";s:7:\"#747474\";s:25:\"header_top_menu_sub_color\";s:7:\"#747474\";s:31:\"header_top_menu_sub_hover_color\";s:7:\"#333333\";s:18:\"mobile_menu_design\";s:6:\"modern\";s:28:\"mobile_menu_icons_top_margin\";s:1:\"0\";s:22:\"mobile_menu_nav_height\";s:2:\"35\";s:27:\"mobile_nav_submenu_slideout\";s:1:\"1\";s:18:\"mobile_menu_search\";s:1:\"1\";s:29:\"mobile_menu_submenu_indicator\";s:1:\"1\";s:22:\"mobile_header_bg_color\";s:7:\"#ffffff\";s:30:\"mobile_archive_header_bg_color\";s:7:\"#ffffff\";s:28:\"mobile_menu_background_color\";s:7:\"#f9f9f9\";s:23:\"mobile_menu_hover_color\";s:7:\"#f6f6f6\";s:24:\"mobile_menu_border_color\";s:7:\"#dadada\";s:24:\"mobile_menu_toggle_color\";s:7:\"#dadada\";s:22:\"mobile_menu_typography\";a:11:{s:11:\"font-family\";s:7:\"PT Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:4:\"35px\";s:14:\"letter-spacing\";s:1:\"0\";s:5:\"color\";s:7:\"#333333\";}s:28:\"mobile_menu_font_hover_color\";s:7:\"#333333\";s:22:\"mobile_menu_text_align\";s:4:\"left\";s:18:\"megamenu_max_width\";s:4:\"1100\";s:19:\"megamenu_title_size\";s:4:\"18px\";s:30:\"megamenu_item_vertical_padding\";s:1:\"5\";s:29:\"megamenu_item_display_divider\";s:1:\"0\";s:18:\"menu_icon_position\";s:4:\"left\";s:14:\"menu_icon_size\";s:2:\"14\";s:15:\"menu_icon_color\";s:7:\"#333333\";s:21:\"menu_icon_hover_color\";s:7:\"#a0ce4e\";s:19:\"menu_thumbnail_size\";a:2:{s:5:\"width\";s:4:\"26px\";s:6:\"height\";s:4:\"14px\";}s:14:\"logo_alignment\";s:4:\"Left\";s:11:\"logo_margin\";a:4:{s:3:\"top\";s:4:\"31px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"31px\";s:4:\"left\";s:3:\"0px\";}s:15:\"logo_background\";s:1:\"0\";s:21:\"logo_background_color\";s:7:\"#a0ce4e\";s:16:\"logo_custom_link\";s:0:\"\";s:4:\"logo\";a:5:{s:3:\"url\";s:94:\"http://kingsvillelivestock.com/wp-content/uploads/2019/05/Black-Transparent-HPGMedia-small.png\";s:2:\"id\";s:3:\"621\";s:6:\"height\";s:2:\"65\";s:5:\"width\";s:3:\"250\";s:9:\"thumbnail\";s:101:\"http://kingsvillelivestock.com/wp-content/uploads/2019/05/Black-Transparent-HPGMedia-small-150x65.png\";}s:11:\"logo_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"sticky_header_logo\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:25:\"sticky_header_logo_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"mobile_logo\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"mobile_logo_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:7:\"favicon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:11:\"iphone_icon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"iphone_icon_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:9:\"ipad_icon\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:16:\"ipad_icon_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:14:\"page_title_bar\";s:15:\"bar_and_content\";s:19:\"page_title_bar_text\";s:1:\"0\";s:20:\"page_title_100_width\";s:1:\"0\";s:17:\"page_title_height\";s:4:\"87px\";s:24:\"page_title_mobile_height\";s:4:\"70px\";s:19:\"page_title_bg_color\";s:7:\"#272d24\";s:23:\"page_title_border_color\";s:7:\"#d2d3d4\";s:20:\"page_title_font_size\";s:4:\"18px\";s:22:\"page_title_line_height\";s:6:\"normal\";s:16:\"page_title_color\";s:7:\"#333333\";s:30:\"page_title_subheader_font_size\";s:4:\"14px\";s:26:\"page_title_subheader_color\";s:7:\"#333333\";s:20:\"page_title_alignment\";s:4:\"left\";s:13:\"page_title_bg\";a:5:{s:3:\"url\";s:84:\"http://kingsvillelivestock.com/wp-content/uploads/2019/04/page_title_bg-trijicon.png\";s:2:\"id\";s:2:\"50\";s:6:\"height\";s:2:\"87\";s:5:\"width\";s:4:\"1400\";s:9:\"thumbnail\";s:91:\"http://kingsvillelivestock.com/wp-content/uploads/2019/04/page_title_bg-trijicon-150x87.png\";}s:20:\"page_title_bg_retina\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:18:\"page_title_bg_full\";s:1:\"0\";s:22:\"page_title_bg_parallax\";s:1:\"0\";s:17:\"page_title_fading\";s:1:\"0\";s:17:\"page_title_bar_bs\";s:4:\"none\";s:17:\"breadcrumb_mobile\";s:1:\"0\";s:16:\"breacrumb_prefix\";s:0:\"\";s:20:\"breadcrumb_separator\";s:1:\"/\";s:21:\"breadcrumbs_font_size\";s:4:\"10px\";s:22:\"breadcrumbs_text_color\";s:7:\"#333333\";s:28:\"breadcrumbs_text_hover_color\";s:7:\"#333333\";s:26:\"breadcrumb_show_categories\";s:1:\"1\";s:33:\"breadcrumb_show_post_type_archive\";s:1:\"0\";s:18:\"slidingbar_widgets\";s:1:\"0\";s:25:\"mobile_slidingbar_widgets\";s:1:\"0\";s:23:\"slidingbar_open_on_load\";s:1:\"0\";s:19:\"slidingbar_position\";s:3:\"top\";s:16:\"slidingbar_width\";s:5:\"300px\";s:17:\"slidingbar_sticky\";s:1:\"1\";s:26:\"slidingbar_widgets_columns\";s:1:\"2\";s:27:\"slidingbar_column_alignment\";s:7:\"stacked\";s:26:\"slidingbar_content_padding\";a:4:{s:3:\"top\";s:4:\"60px\";s:5:\"right\";s:4:\"30px\";s:6:\"bottom\";s:4:\"60px\";s:4:\"left\";s:4:\"30px\";}s:24:\"slidingbar_content_align\";s:4:\"left\";s:23:\"slidingbar_toggle_style\";s:8:\"triangle\";s:19:\"slidingbar_bg_color\";s:7:\"#363839\";s:24:\"slidingbar_divider_color\";s:7:\"#282A2B\";s:28:\"slidingbar_toggle_icon_color\";s:7:\"#ffffff\";s:20:\"slidingbar_font_size\";s:4:\"13px\";s:25:\"slidingbar_headings_color\";s:7:\"#dddddd\";s:21:\"slidingbar_text_color\";s:7:\"#8C8989\";s:21:\"slidingbar_link_color\";s:7:\"#bfbfbf\";s:27:\"slidingbar_link_color_hover\";s:7:\"#a0ce4e\";s:17:\"slidingbar_border\";s:1:\"0\";s:14:\"footer_widgets\";s:1:\"1\";s:22:\"footer_widgets_columns\";s:1:\"1\";s:29:\"footer_widgets_center_content\";s:1:\"1\";s:22:\"footer_special_effects\";s:4:\"none\";s:16:\"footer_copyright\";s:1:\"1\";s:31:\"footer_copyright_center_content\";s:1:\"1\";s:11:\"footer_text\";s:114:\"Copyright 2019 Driftwood Media Inc. | All Rights Reserved | Powered by <a href=\"http://hpgmedia.com\">HPG Media</a>\";s:16:\"footerw_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:15:\"footerw_bg_full\";s:1:\"0\";s:17:\"footerw_bg_repeat\";s:9:\"no-repeat\";s:14:\"footerw_bg_pos\";s:13:\"center center\";s:16:\"footer_100_width\";s:1:\"0\";s:19:\"footer_area_padding\";a:4:{s:3:\"top\";s:4:\"43px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:3:\"0px\";}s:15:\"footer_bg_color\";s:7:\"#363839\";s:18:\"footer_border_size\";s:2:\"12\";s:19:\"footer_border_color\";s:7:\"#e9eaee\";s:19:\"footer_divider_line\";s:1:\"0\";s:24:\"footer_divider_line_size\";s:1:\"1\";s:25:\"footer_divider_line_style\";s:5:\"solid\";s:20:\"footer_divider_color\";s:7:\"#505152\";s:22:\"footer_widgets_padding\";s:4:\"15px\";s:17:\"copyright_padding\";a:2:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"16px\";}s:18:\"copyright_bg_color\";s:7:\"#282a2b\";s:21:\"copyright_border_size\";s:1:\"1\";s:22:\"copyright_border_color\";s:7:\"#4b4c4d\";s:26:\"footer_headings_typography\";a:11:{s:11:\"font-family\";s:7:\"PT Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:5:\"color\";s:7:\"#dddddd\";}s:17:\"footer_text_color\";s:7:\"#8C8989\";s:17:\"footer_link_color\";s:7:\"#BFBFBF\";s:23:\"footer_link_color_hover\";s:7:\"#ffffff\";s:20:\"copyright_text_color\";s:7:\"#ffffff\";s:20:\"copyright_link_color\";s:7:\"#ffffff\";s:26:\"copyright_link_color_hover\";s:7:\"#ffffff\";s:19:\"copyright_font_size\";s:4:\"12px\";s:24:\"responsive_sidebar_order\";s:25:\"content,sidebar,sidebar-2\";s:14:\"sidebar_sticky\";s:4:\"none\";s:15:\"sidebar_padding\";s:3:\"0px\";s:16:\"sidebar_bg_color\";s:19:\"rgba(255,255,255,0)\";s:23:\"sidebar_widget_bg_color\";s:19:\"rgba(255,255,255,0)\";s:15:\"sidew_font_size\";s:4:\"13px\";s:21:\"sidebar_heading_color\";s:7:\"#333333\";s:20:\"pages_global_sidebar\";s:1:\"0\";s:13:\"pages_sidebar\";s:12:\"Blog Sidebar\";s:15:\"pages_sidebar_2\";s:4:\"None\";s:19:\"default_sidebar_pos\";s:5:\"Right\";s:24:\"portfolio_global_sidebar\";s:1:\"0\";s:17:\"portfolio_sidebar\";s:4:\"None\";s:19:\"portfolio_sidebar_2\";s:4:\"None\";s:26:\"portfolio_sidebar_position\";s:5:\"Right\";s:25:\"portfolio_archive_sidebar\";s:4:\"None\";s:27:\"portfolio_archive_sidebar_2\";s:4:\"None\";s:20:\"posts_global_sidebar\";s:1:\"0\";s:13:\"posts_sidebar\";s:4:\"None\";s:15:\"posts_sidebar_2\";s:4:\"None\";s:21:\"blog_sidebar_position\";s:5:\"Right\";s:20:\"blog_archive_sidebar\";s:4:\"None\";s:22:\"blog_archive_sidebar_2\";s:4:\"None\";s:14:\"search_sidebar\";s:12:\"Blog Sidebar\";s:16:\"search_sidebar_2\";s:4:\"None\";s:23:\"search_sidebar_position\";s:5:\"Right\";s:8:\"bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:7:\"bg_full\";s:1:\"0\";s:9:\"bg_repeat\";s:9:\"no-repeat\";s:8:\"bg_color\";s:7:\"#d7d6d6\";s:17:\"bg_pattern_option\";s:1:\"0\";s:10:\"bg_pattern\";s:8:\"pattern1\";s:16:\"content_bg_color\";s:7:\"#ffffff\";s:16:\"content_bg_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:15:\"content_bg_full\";s:1:\"0\";s:17:\"content_bg_repeat\";s:9:\"no-repeat\";s:15:\"body_typography\";a:11:{s:11:\"font-family\";s:7:\"PT Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:5:\"color\";s:7:\"#747474\";}s:10:\"link_color\";s:7:\"#333333\";s:13:\"h1_typography\";a:13:{s:11:\"font-family\";s:10:\"Montserrat\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"34px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:1:\"0\";s:10:\"margin-top\";s:6:\"0.67em\";s:13:\"margin-bottom\";s:6:\"0.67em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h2_typography\";a:13:{s:11:\"font-family\";s:10:\"Montserrat\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"27px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:10:\"margin-top\";s:3:\"0em\";s:13:\"margin-bottom\";s:5:\"1.1em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h3_typography\";a:13:{s:11:\"font-family\";s:10:\"Montserrat\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:10:\"margin-top\";s:3:\"1em\";s:13:\"margin-bottom\";s:3:\"1em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h4_typography\";a:13:{s:11:\"font-family\";s:10:\"Antic Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:10:\"margin-top\";s:6:\"1.33em\";s:13:\"margin-bottom\";s:6:\"1.33em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h5_typography\";a:13:{s:11:\"font-family\";s:10:\"Antic Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:10:\"margin-top\";s:6:\"1.67em\";s:13:\"margin-bottom\";s:6:\"1.67em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h6_typography\";a:13:{s:11:\"font-family\";s:10:\"Antic Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"11px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:10:\"margin-top\";s:6:\"2.33em\";s:13:\"margin-bottom\";s:6:\"2.33em\";s:5:\"color\";s:7:\"#333333\";}s:21:\"post_title_typography\";a:11:{s:11:\"font-family\";s:10:\"Antic Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:5:\"color\";s:7:\"#333333\";}s:29:\"post_titles_extras_typography\";a:11:{s:11:\"font-family\";s:10:\"Antic Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:5:\"color\";s:7:\"#333333\";}s:12:\"custom_fonts\";a:7:{s:25:\"fusionredux_repeater_data\";a:1:{i:0;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"name\";a:1:{i:0;s:0:\"\";}s:4:\"woff\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:5:\"woff2\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:3:\"ttf\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:3:\"svg\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}s:3:\"eot\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:19:\"blog_page_title_bar\";s:15:\"bar_and_content\";s:24:\"blog_show_page_title_bar\";s:15:\"bar_and_content\";s:10:\"blog_title\";s:4:\"Blog\";s:13:\"blog_subtitle\";s:0:\"\";s:11:\"blog_layout\";s:5:\"Large\";s:19:\"blog_archive_layout\";s:5:\"Large\";s:20:\"blog_pagination_type\";s:10:\"Pagination\";s:36:\"blog_load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:25:\"blog_archive_grid_columns\";s:1:\"3\";s:32:\"blog_archive_grid_column_spacing\";s:2:\"40\";s:18:\"blog_equal_heights\";s:1:\"0\";s:25:\"blog_archive_grid_padding\";a:4:{s:3:\"top\";s:4:\"30px\";s:5:\"right\";s:4:\"25px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"25px\";}s:21:\"blog_layout_alignment\";s:0:\"\";s:14:\"content_length\";s:7:\"Excerpt\";s:19:\"excerpt_length_blog\";s:2:\"10\";s:18:\"strip_html_excerpt\";s:1:\"1\";s:15:\"featured_images\";s:1:\"1\";s:32:\"alternate_date_format_month_year\";s:4:\"m, Y\";s:25:\"alternate_date_format_day\";s:1:\"j\";s:20:\"timeline_date_format\";s:3:\"F Y\";s:14:\"blog_width_100\";s:1:\"0\";s:22:\"featured_images_single\";s:1:\"1\";s:11:\"blog_pn_nav\";s:1:\"1\";s:15:\"blog_post_title\";s:5:\"below\";s:23:\"blog_post_meta_position\";s:13:\"below_article\";s:11:\"author_info\";s:1:\"1\";s:18:\"social_sharing_box\";s:1:\"1\";s:13:\"related_posts\";s:1:\"1\";s:13:\"blog_comments\";s:1:\"1\";s:9:\"post_meta\";s:1:\"1\";s:16:\"post_meta_author\";s:1:\"1\";s:14:\"post_meta_date\";s:1:\"1\";s:14:\"post_meta_cats\";s:1:\"1\";s:18:\"post_meta_comments\";s:1:\"1\";s:14:\"post_meta_read\";s:1:\"1\";s:14:\"post_meta_tags\";s:1:\"0\";s:14:\"meta_font_size\";s:4:\"12px\";s:11:\"date_format\";s:7:\"F jS, Y\";s:24:\"portfolio_archive_layout\";s:4:\"grid\";s:37:\"portfolio_archive_featured_image_size\";s:4:\"full\";s:25:\"portfolio_archive_columns\";s:1:\"1\";s:32:\"portfolio_archive_column_spacing\";s:2:\"20\";s:23:\"portfolio_equal_heights\";s:1:\"0\";s:42:\"portfolio_archive_one_column_text_position\";s:5:\"below\";s:23:\"portfolio_archive_items\";s:2:\"10\";s:29:\"portfolio_archive_text_layout\";s:7:\"no_text\";s:32:\"portfolio_archive_content_length\";s:7:\"excerpt\";s:32:\"portfolio_archive_excerpt_length\";s:2:\"10\";s:36:\"portfolio_archive_strip_html_excerpt\";s:1:\"1\";s:31:\"portfolio_archive_title_display\";s:3:\"all\";s:32:\"portfolio_archive_text_alignment\";s:4:\"left\";s:32:\"portfolio_archive_layout_padding\";a:4:{s:3:\"top\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";}s:33:\"portfolio_archive_pagination_type\";s:10:\"pagination\";s:49:\"portfolio_archive_load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:14:\"portfolio_slug\";s:15:\"portfolio-items\";s:24:\"portfolio_meta_font_size\";s:4:\"13px\";s:16:\"portfolio_pn_nav\";s:1:\"1\";s:25:\"portfolio_featured_images\";s:1:\"1\";s:38:\"portfolio_disable_first_featured_image\";s:1:\"1\";s:30:\"portfolio_featured_image_width\";s:4:\"full\";s:19:\"portfolio_width_100\";s:1:\"0\";s:28:\"portfolio_project_desc_title\";s:1:\"1\";s:25:\"portfolio_project_details\";s:1:\"1\";s:26:\"portfolio_link_icon_target\";s:1:\"0\";s:18:\"portfolio_comments\";s:1:\"0\";s:16:\"portfolio_author\";s:1:\"0\";s:28:\"portfolio_social_sharing_box\";s:1:\"1\";s:23:\"portfolio_related_posts\";s:1:\"1\";s:18:\"social_media_icons\";a:5:{s:25:\"fusionredux_repeater_data\";a:1:{i:0;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"icon\";a:1:{i:0;s:0:\"\";}s:3:\"url\";a:1:{i:0;s:0:\"\";}s:12:\"custom_title\";a:1:{i:0;s:0:\"\";}s:13:\"custom_source\";a:1:{i:0;a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}}}s:29:\"header_social_links_font_size\";s:4:\"16px\";s:37:\"header_social_links_tooltip_placement\";s:6:\"Bottom\";s:30:\"header_social_links_color_type\";s:6:\"custom\";s:30:\"header_social_links_icon_color\";s:7:\"#bebdbd\";s:25:\"header_social_links_boxed\";s:1:\"0\";s:29:\"header_social_links_box_color\";s:7:\"#e8e8e8\";s:32:\"header_social_links_boxed_radius\";s:3:\"4px\";s:33:\"header_social_links_boxed_padding\";s:3:\"8px\";s:12:\"icons_footer\";s:1:\"1\";s:29:\"footer_social_links_font_size\";s:4:\"16px\";s:37:\"footer_social_links_tooltip_placement\";s:3:\"Top\";s:30:\"footer_social_links_color_type\";s:6:\"custom\";s:30:\"footer_social_links_icon_color\";s:7:\"#46494a\";s:25:\"footer_social_links_boxed\";s:1:\"0\";s:29:\"footer_social_links_box_color\";s:7:\"#222222\";s:32:\"footer_social_links_boxed_radius\";s:3:\"4px\";s:33:\"footer_social_links_boxed_padding\";s:3:\"8px\";s:22:\"sharing_social_tagline\";s:39:\"Share This Story, Choose Your Platform!\";s:30:\"sharing_box_tagline_text_color\";s:7:\"#333333\";s:15:\"social_bg_color\";s:7:\"#f6f6f6\";s:30:\"sharing_social_links_font_size\";s:4:\"16px\";s:38:\"sharing_social_links_tooltip_placement\";s:3:\"Top\";s:31:\"sharing_social_links_color_type\";s:6:\"custom\";s:31:\"sharing_social_links_icon_color\";s:7:\"#bebdbd\";s:26:\"sharing_social_links_boxed\";s:1:\"0\";s:30:\"sharing_social_links_box_color\";s:7:\"#e8e8e8\";s:33:\"sharing_social_links_boxed_radius\";s:3:\"4px\";s:34:\"sharing_social_links_boxed_padding\";s:3:\"8px\";s:16:\"sharing_facebook\";s:1:\"1\";s:15:\"sharing_twitter\";s:1:\"1\";s:14:\"sharing_reddit\";s:1:\"1\";s:16:\"sharing_linkedin\";s:1:\"1\";s:16:\"sharing_whatsapp\";s:1:\"1\";s:14:\"sharing_google\";s:1:\"1\";s:14:\"sharing_tumblr\";s:1:\"1\";s:17:\"sharing_pinterest\";s:1:\"1\";s:10:\"sharing_vk\";s:1:\"1\";s:13:\"sharing_email\";s:1:\"1\";s:22:\"posts_slideshow_number\";s:1:\"5\";s:18:\"slideshow_autoplay\";s:1:\"1\";s:23:\"slideshow_smooth_height\";s:1:\"0\";s:15:\"slideshow_speed\";s:4:\"7000\";s:22:\"pagination_video_slide\";s:1:\"0\";s:25:\"slider_nav_box_dimensions\";a:2:{s:5:\"width\";s:4:\"30px\";s:6:\"height\";s:4:\"30px\";}s:17:\"slider_arrow_size\";s:4:\"14px\";s:15:\"tfes_dimensions\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"400px\";}s:14:\"tfes_animation\";s:5:\"sides\";s:13:\"tfes_autoplay\";s:1:\"1\";s:13:\"tfes_interval\";s:4:\"3000\";s:10:\"tfes_speed\";s:3:\"800\";s:10:\"tfes_width\";s:3:\"150\";s:18:\"es_title_font_size\";s:4:\"42px\";s:20:\"es_caption_font_size\";s:4:\"20px\";s:14:\"es_title_color\";s:7:\"#333333\";s:16:\"es_caption_color\";s:7:\"#747474\";s:15:\"status_lightbox\";s:1:\"1\";s:22:\"status_lightbox_single\";s:1:\"1\";s:17:\"lightbox_behavior\";s:3:\"all\";s:13:\"lightbox_skin\";s:11:\"metro-white\";s:13:\"lightbox_path\";s:8:\"vertical\";s:24:\"lightbox_animation_speed\";s:6:\"Normal\";s:15:\"lightbox_arrows\";s:1:\"1\";s:16:\"lightbox_gallery\";s:1:\"1\";s:17:\"lightbox_autoplay\";s:1:\"0\";s:24:\"lightbox_slideshow_speed\";s:4:\"5000\";s:16:\"lightbox_opacity\";s:3:\"0.9\";s:14:\"lightbox_title\";s:1:\"1\";s:13:\"lightbox_desc\";s:1:\"1\";s:15:\"lightbox_social\";s:1:\"1\";s:20:\"lightbox_deeplinking\";s:1:\"1\";s:20:\"lightbox_post_images\";s:1:\"1\";s:25:\"lightbox_video_dimensions\";a:2:{s:5:\"width\";s:6:\"1280px\";s:6:\"height\";s:5:\"720px\";}s:13:\"email_address\";s:0:\"\";s:24:\"contact_comment_position\";s:5:\"below\";s:29:\"contact_form_privacy_checkbox\";s:1:\"0\";s:26:\"contact_form_privacy_label\";s:152:\"By checking this box, you confirm that you have read and are agreeing to our terms of use regarding the storage of the data submitted through this form.\";s:17:\"recaptcha_version\";s:2:\"v3\";s:16:\"recaptcha_public\";s:0:\"\";s:17:\"recaptcha_private\";s:0:\"\";s:22:\"recaptcha_color_scheme\";s:5:\"light\";s:15:\"recaptcha_score\";s:3:\"0.5\";s:24:\"recaptcha_badge_position\";s:6:\"inline\";s:8:\"gmap_api\";s:0:\"\";s:13:\"gmap_api_type\";s:2:\"js\";s:18:\"gmap_embed_address\";s:0:\"\";s:19:\"gmap_embed_map_type\";s:7:\"roadmap\";s:12:\"gmap_address\";s:49:\"775 New York Ave, Brooklyn, Kings, New York 11203\";s:9:\"gmap_type\";s:7:\"roadmap\";s:15:\"gmap_dimensions\";a:2:{s:5:\"width\";s:4:\"100%\";s:6:\"height\";s:5:\"415px\";}s:14:\"gmap_topmargin\";s:4:\"55px\";s:14:\"map_zoom_level\";s:1:\"8\";s:7:\"map_pin\";s:1:\"1\";s:18:\"gmap_pin_animation\";s:1:\"1\";s:9:\"map_popup\";s:1:\"0\";s:15:\"map_scrollwheel\";s:1:\"1\";s:9:\"map_scale\";s:1:\"1\";s:15:\"map_zoomcontrol\";s:1:\"1\";s:11:\"map_styling\";s:7:\"default\";s:17:\"map_overlay_color\";s:7:\"#a0ce4e\";s:19:\"map_infobox_styling\";s:7:\"default\";s:19:\"map_infobox_content\";s:0:\"\";s:20:\"map_infobox_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"map_infobox_text_color\";s:7:\"#ffffff\";s:22:\"map_custom_marker_icon\";s:0:\"\";s:14:\"search_content\";a:6:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"avada_portfolio\";i:3;s:9:\"avada_faq\";i:4;s:7:\"product\";i:5;s:12:\"tribe_events\";}s:27:\"search_limit_to_post_titles\";s:1:\"0\";s:18:\"search_form_design\";s:7:\"classic\";s:11:\"live_search\";s:1:\"0\";s:26:\"live_search_min_char_count\";s:1:\"4\";s:28:\"live_search_results_per_page\";s:3:\"100\";s:26:\"live_search_results_height\";s:3:\"250\";s:34:\"live_search_display_featured_image\";s:1:\"1\";s:29:\"live_search_display_post_type\";s:1:\"1\";s:13:\"search_layout\";s:4:\"Grid\";s:23:\"search_results_per_page\";s:2:\"10\";s:22:\"search_pagination_type\";s:10:\"Pagination\";s:19:\"search_grid_columns\";s:1:\"3\";s:26:\"search_grid_column_spacing\";s:2:\"40\";s:21:\"search_excerpt_length\";s:2:\"10\";s:25:\"search_strip_html_excerpt\";s:1:\"1\";s:22:\"search_featured_images\";s:1:\"1\";s:11:\"search_meta\";a:5:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";i:3;s:8:\"comments\";i:4;s:9:\"read_more\";}s:26:\"search_new_search_position\";s:3:\"top\";s:18:\"gfonts_load_method\";s:3:\"cdn\";s:14:\"privacy_embeds\";s:1:\"0\";s:14:\"privacy_expiry\";s:2:\"30\";s:19:\"privacy_embed_types\";a:8:{i:0;s:7:\"youtube\";i:1;s:5:\"vimeo\";i:2;s:10:\"soundcloud\";i:3;s:8:\"facebook\";i:4;s:6:\"flickr\";i:5;s:7:\"twitter\";i:6;s:5:\"gmaps\";i:7;s:8:\"tracking\";}s:22:\"privacy_embed_defaults\";a:0:{}s:16:\"privacy_bg_color\";s:15:\"rgba(0,0,0,0.1)\";s:13:\"privacy_color\";s:15:\"rgba(0,0,0,0.3)\";s:11:\"privacy_bar\";s:1:\"0\";s:19:\"privacy_bar_padding\";a:4:{s:3:\"top\";s:4:\"15px\";s:5:\"right\";s:4:\"30px\";s:6:\"bottom\";s:4:\"15px\";s:4:\"left\";s:4:\"30px\";}s:20:\"privacy_bar_bg_color\";s:7:\"#363839\";s:21:\"privacy_bar_font_size\";s:4:\"13px\";s:17:\"privacy_bar_color\";s:7:\"#8C8989\";s:22:\"privacy_bar_link_color\";s:7:\"#bfbfbf\";s:28:\"privacy_bar_link_hover_color\";s:7:\"#a0ce4e\";s:16:\"privacy_bar_text\";s:51:\"This website uses cookies and third party services.\";s:23:\"privacy_bar_button_text\";s:2:\"Ok\";s:23:\"privacy_bar_button_save\";s:1:\"0\";s:16:\"privacy_bar_more\";s:1:\"0\";s:21:\"privacy_bar_more_text\";s:8:\"Settings\";s:23:\"privacy_bar_update_text\";s:15:\"Update Settings\";s:30:\"privacy_bar_headings_font_size\";s:4:\"13px\";s:26:\"privacy_bar_headings_color\";s:7:\"#dddddd\";s:19:\"privacy_bar_content\";a:4:{s:25:\"fusionredux_repeater_data\";a:1:{i:0;a:1:{s:5:\"title\";s:0:\"\";}}s:4:\"type\";a:1:{i:0;s:0:\"\";}s:5:\"title\";a:1:{i:0;s:0:\"\";}s:11:\"description\";a:1:{i:0;s:0:\"\";}}s:16:\"sidenav_behavior\";s:5:\"Hover\";s:26:\"featured_image_placeholder\";s:1:\"1\";s:12:\"excerpt_base\";s:5:\"Words\";s:16:\"disable_excerpts\";s:1:\"1\";s:14:\"link_read_more\";s:1:\"0\";s:12:\"avatar_shape\";s:6:\"square\";s:14:\"comments_pages\";s:1:\"0\";s:21:\"featured_images_pages\";s:1:\"1\";s:21:\"nofollow_social_links\";s:1:\"0\";s:16:\"social_icons_new\";s:1:\"1\";s:14:\"totop_position\";s:5:\"right\";s:19:\"totop_border_radius\";s:1:\"4\";s:22:\"totop_scroll_down_only\";s:1:\"0\";s:20:\"related_posts_layout\";s:17:\"title_on_rollover\";s:20:\"number_related_posts\";s:1:\"5\";s:21:\"related_posts_columns\";s:1:\"5\";s:28:\"related_posts_column_spacing\";s:2:\"44\";s:24:\"related_posts_image_size\";s:7:\"cropped\";s:22:\"related_posts_autoplay\";s:1:\"0\";s:19:\"related_posts_speed\";s:4:\"2500\";s:24:\"related_posts_navigation\";s:1:\"1\";s:19:\"related_posts_swipe\";s:1:\"0\";s:25:\"related_posts_swipe_items\";s:1:\"0\";s:14:\"image_rollover\";s:1:\"1\";s:24:\"image_rollover_direction\";s:4:\"left\";s:24:\"image_rollover_icon_size\";s:4:\"15px\";s:19:\"link_image_rollover\";s:1:\"1\";s:19:\"zoom_image_rollover\";s:1:\"1\";s:20:\"title_image_rollover\";s:1:\"1\";s:19:\"cats_image_rollover\";s:1:\"1\";s:26:\"icon_circle_image_rollover\";s:1:\"1\";s:24:\"image_gradient_top_color\";s:20:\"rgba(160,206,78,0.8)\";s:27:\"image_gradient_bottom_color\";s:7:\"#a0ce4e\";s:25:\"image_rollover_text_color\";s:7:\"#333333\";s:25:\"image_rollover_icon_color\";s:7:\"#ffffff\";s:17:\"pagination_sizing\";s:12:\"width_height\";s:23:\"pagination_width_height\";s:2:\"30\";s:22:\"pagination_box_padding\";a:2:{s:5:\"width\";s:3:\"6px\";s:6:\"height\";s:3:\"2px\";}s:24:\"pagination_border_radius\";s:1:\"0\";s:23:\"pagination_text_display\";s:1:\"1\";s:20:\"pagination_font_size\";s:4:\"12px\";s:16:\"pagination_range\";s:1:\"1\";s:26:\"pagination_start_end_range\";s:1:\"0\";s:17:\"form_input_height\";s:4:\"29px\";s:13:\"form_bg_color\";s:7:\"#ffffff\";s:14:\"form_text_size\";s:4:\"13px\";s:15:\"form_text_color\";s:7:\"#aaa9a9\";s:17:\"form_border_width\";s:1:\"1\";s:17:\"form_border_color\";s:7:\"#d2d2d2\";s:23:\"form_focus_border_color\";s:7:\"#d2d2d2\";s:18:\"form_border_radius\";s:1:\"0\";s:17:\"timeline_bg_color\";s:19:\"rgba(255,255,255,0)\";s:14:\"timeline_color\";s:7:\"#ebeaea\";s:25:\"grid_separator_style_type\";s:12:\"double|solid\";s:20:\"grid_separator_color\";s:7:\"#ebeaea\";s:18:\"masonry_grid_ratio\";s:3:\"1.5\";s:20:\"masonry_width_double\";s:4:\"2000\";s:16:\"google_analytics\";s:0:\"\";s:10:\"space_head\";s:0:\"\";s:10:\"space_body\";s:0:\"\";s:19:\"dependencies_status\";s:1:\"1\";s:15:\"pw_jpeg_quality\";s:2:\"82\";s:16:\"smooth_scrolling\";s:1:\"0\";s:27:\"disable_code_block_encoding\";s:1:\"1\";s:16:\"disable_megamenu\";s:1:\"1\";s:16:\"avada_rev_styles\";s:1:\"1\";s:22:\"avada_styles_dropdowns\";s:1:\"1\";s:15:\"use_animate_css\";s:1:\"1\";s:26:\"disable_mobile_animate_css\";s:1:\"0\";s:27:\"disable_mobile_image_hovers\";s:1:\"1\";s:9:\"status_yt\";s:1:\"1\";s:12:\"status_vimeo\";s:1:\"1\";s:11:\"status_gmap\";s:1:\"1\";s:12:\"status_totop\";s:1:\"1\";s:19:\"status_totop_mobile\";s:1:\"0\";s:20:\"status_fusion_slider\";s:1:\"1\";s:14:\"status_eslider\";s:1:\"1\";s:18:\"status_fontawesome\";a:3:{i:0;s:3:\"fab\";i:1;s:3:\"far\";i:2;s:3:\"fas\";}s:28:\"fontawesome_v4_compatibility\";s:1:\"0\";s:22:\"status_fontawesome_pro\";s:1:\"0\";s:14:\"status_outline\";s:1:\"0\";s:16:\"status_opengraph\";s:1:\"1\";s:31:\"disable_date_rich_snippet_pages\";s:1:\"1\";s:26:\"disable_rich_snippet_title\";s:1:\"1\";s:27:\"disable_rich_snippet_author\";s:1:\"1\";s:25:\"disable_rich_snippet_date\";s:1:\"1\";s:9:\"lazy_load\";s:1:\"0\";s:17:\"font_face_display\";s:5:\"block\";s:15:\"emojis_disabled\";s:7:\"enabled\";s:16:\"css_cache_method\";s:4:\"file\";s:19:\"media_queries_async\";s:1:\"0\";s:15:\"cache_server_ip\";s:0:\"\";s:11:\"js_compiler\";s:1:\"1\";s:10:\"custom_css\";s:0:\"\";s:13:\"info_bg_color\";s:7:\"#ffffff\";s:17:\"info_accent_color\";s:7:\"#808080\";s:15:\"danger_bg_color\";s:7:\"#f2dede\";s:19:\"danger_accent_color\";s:7:\"#a64242\";s:16:\"success_bg_color\";s:7:\"#dff0d8\";s:20:\"success_accent_color\";s:7:\"#5ca340\";s:16:\"warning_bg_color\";s:7:\"#fcf8e3\";s:20:\"warning_accent_color\";s:7:\"#d9b917\";s:20:\"alert_box_text_align\";s:6:\"center\";s:24:\"alert_box_text_transform\";s:10:\"capitalize\";s:21:\"alert_box_dismissable\";s:3:\"yes\";s:16:\"alert_box_shadow\";s:2:\"no\";s:17:\"alert_border_size\";s:1:\"1\";s:16:\"animation_offset\";s:13:\"top-into-view\";s:17:\"blog_grid_columns\";s:1:\"3\";s:24:\"blog_grid_column_spacing\";s:2:\"40\";s:17:\"blog_grid_padding\";a:4:{s:3:\"top\";s:4:\"30px\";s:5:\"right\";s:4:\"25px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"25px\";}s:12:\"blog_excerpt\";s:3:\"yes\";s:19:\"blog_excerpt_length\";s:2:\"10\";s:15:\"dates_box_color\";s:7:\"#eef0f2\";s:11:\"button_size\";s:5:\"Large\";s:11:\"button_span\";s:2:\"no\";s:12:\"button_shape\";s:5:\"Round\";s:11:\"button_type\";s:4:\"Flat\";s:17:\"button_typography\";a:8:{s:11:\"font-family\";s:7:\"PT Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:14:\"letter-spacing\";s:1:\"0\";}s:21:\"button_text_transform\";s:9:\"uppercase\";s:25:\"button_gradient_top_color\";s:7:\"#bc9751\";s:28:\"button_gradient_bottom_color\";s:7:\"#bc9751\";s:31:\"button_gradient_top_color_hover\";s:7:\"#a38446\";s:34:\"button_gradient_bottom_color_hover\";s:7:\"#a38446\";s:19:\"button_accent_color\";s:7:\"#ffffff\";s:25:\"button_accent_hover_color\";s:7:\"#ffffff\";s:18:\"button_bevel_color\";s:7:\"#54770F\";s:19:\"button_border_width\";s:1:\"0\";s:18:\"carousel_nav_color\";s:15:\"rgba(0,0,0,0.6)\";s:20:\"carousel_hover_color\";s:15:\"rgba(0,0,0,0.7)\";s:14:\"carousel_speed\";s:4:\"2500\";s:21:\"chart_legend_position\";s:3:\"top\";s:19:\"chart_show_tooltips\";s:3:\"yes\";s:14:\"chart_bg_color\";s:19:\"rgba(255,255,255,0)\";s:21:\"chart_axis_text_color\";s:7:\"#666666\";s:20:\"chart_gridline_color\";s:15:\"rgba(0,0,0,0.1)\";s:21:\"checklist_icons_color\";s:7:\"#ffffff\";s:16:\"checklist_circle\";s:1:\"1\";s:22:\"checklist_circle_color\";s:7:\"#a0ce4e\";s:19:\"checklist_item_size\";s:4:\"14px\";s:17:\"checklist_divider\";s:2:\"no\";s:23:\"checklist_divider_color\";s:0:\"\";s:10:\"col_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"20px\";}s:25:\"container_padding_default\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:21:\"container_padding_100\";a:4:{s:3:\"top\";s:4:\"75px\";s:5:\"right\";s:4:\"30px\";s:6:\"bottom\";s:4:\"75px\";s:4:\"left\";s:4:\"30px\";}s:19:\"full_width_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"full_width_border_size\";s:1:\"0\";s:23:\"full_width_border_color\";s:7:\"#eae9e9\";s:29:\"container_scroll_nav_bg_color\";s:18:\"rgba(0, 0, 0, 0.2)\";s:33:\"container_scroll_nav_bullet_color\";s:7:\"#eeeeee\";s:39:\"container_hundred_percent_height_mobile\";s:1:\"0\";s:20:\"content_box_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"content_box_title_size\";s:4:\"18px\";s:23:\"content_box_title_color\";s:7:\"#333333\";s:22:\"content_box_body_color\";s:7:\"#747474\";s:21:\"content_box_icon_size\";s:2:\"21\";s:22:\"content_box_icon_color\";s:7:\"#ffffff\";s:23:\"content_box_icon_circle\";s:3:\"yes\";s:30:\"content_box_icon_circle_radius\";s:3:\"50%\";s:25:\"content_box_icon_bg_color\";s:7:\"#333333\";s:38:\"content_box_icon_bg_inner_border_color\";s:7:\"#333333\";s:37:\"content_box_icon_bg_inner_border_size\";s:1:\"1\";s:38:\"content_box_icon_bg_outer_border_color\";s:19:\"rgba(255,255,255,0)\";s:37:\"content_box_icon_bg_outer_border_size\";s:1:\"0\";s:27:\"content_box_icon_hover_type\";s:4:\"fade\";s:40:\"content_box_hover_animation_accent_color\";s:7:\"#a0ce4e\";s:21:\"content_box_link_type\";s:4:\"text\";s:23:\"content_box_button_span\";s:2:\"no\";s:21:\"content_box_link_area\";s:9:\"link-icon\";s:23:\"content_box_link_target\";s:5:\"_self\";s:18:\"content_box_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"60px\";}s:18:\"countdown_timezone\";s:9:\"site_time\";s:20:\"countdown_show_weeks\";s:2:\"no\";s:26:\"countdown_background_color\";s:7:\"#a0ce4e\";s:26:\"countdown_background_image\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:27:\"countdown_background_repeat\";s:9:\"no-repeat\";s:29:\"countdown_background_position\";s:13:\"center center\";s:27:\"countdown_counter_box_color\";s:7:\"#333333\";s:28:\"countdown_counter_text_color\";s:7:\"#ffffff\";s:28:\"countdown_heading_text_color\";s:7:\"#ffffff\";s:31:\"countdown_subheading_text_color\";s:7:\"#ffffff\";s:25:\"countdown_link_text_color\";s:7:\"#ffffff\";s:21:\"countdown_link_target\";s:5:\"_self\";s:17:\"counter_box_speed\";s:4:\"1000\";s:17:\"counter_box_color\";s:7:\"#a0ce4e\";s:22:\"counter_box_title_size\";s:4:\"50px\";s:21:\"counter_box_icon_size\";s:4:\"50px\";s:22:\"counter_box_body_color\";s:7:\"#747474\";s:21:\"counter_box_body_size\";s:4:\"13px\";s:24:\"counter_box_border_color\";s:7:\"#e0dede\";s:20:\"counter_box_icon_top\";s:2:\"no\";s:20:\"counter_filled_color\";s:7:\"#a0ce4e\";s:22:\"counter_unfilled_color\";s:7:\"#f6f6f6\";s:13:\"dropcap_color\";s:7:\"#a0ce4e\";s:15:\"events_per_page\";s:1:\"4\";s:21:\"events_column_spacing\";s:2:\"40\";s:22:\"events_content_padding\";a:4:{s:3:\"top\";s:4:\"20px\";s:5:\"right\";s:4:\"20px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"20px\";}s:21:\"events_content_length\";s:7:\"no_text\";s:21:\"excerpt_length_events\";s:2:\"55\";s:25:\"events_strip_html_excerpt\";s:1:\"1\";s:18:\"faq_featured_image\";s:1:\"0\";s:11:\"faq_filters\";s:3:\"yes\";s:18:\"faq_accordion_type\";s:10:\"accordions\";s:24:\"faq_accordion_boxed_mode\";s:1:\"0\";s:25:\"faq_accordion_border_size\";s:1:\"1\";s:26:\"faq_accordian_border_color\";s:7:\"#cccccc\";s:30:\"faq_accordian_background_color\";s:7:\"#ffffff\";s:25:\"faq_accordian_hover_color\";s:7:\"#f9f9f9\";s:26:\"faq_accordion_divider_line\";s:1:\"1\";s:29:\"faq_accordion_title_font_size\";s:0:\"\";s:23:\"faq_accordion_icon_size\";s:2:\"13\";s:24:\"faq_accordian_icon_color\";s:7:\"#ffffff\";s:24:\"faq_accordion_icon_boxed\";s:1:\"1\";s:28:\"faq_accordian_inactive_color\";s:7:\"#333333\";s:24:\"faq_accordion_icon_align\";s:4:\"left\";s:26:\"faq_accordian_active_color\";s:7:\"#a0ce4e\";s:22:\"flip_boxes_flip_effect\";s:7:\"classic\";s:25:\"flip_boxes_flip_direction\";s:5:\"right\";s:24:\"flip_boxes_flip_duration\";s:3:\"0.4\";s:24:\"flip_boxes_equal_heights\";s:2:\"no\";s:19:\"flip_boxes_front_bg\";s:7:\"#f6f6f6\";s:24:\"flip_boxes_front_heading\";s:7:\"#333333\";s:21:\"flip_boxes_front_text\";s:7:\"#747474\";s:18:\"flip_boxes_back_bg\";s:7:\"#a0ce4e\";s:23:\"flip_boxes_back_heading\";s:7:\"#eeeded\";s:20:\"flip_boxes_back_text\";s:7:\"#ffffff\";s:22:\"flip_boxes_border_size\";s:1:\"1\";s:23:\"flip_boxes_border_color\";s:13:\"rgba(0,0,0,0)\";s:24:\"flip_boxes_border_radius\";s:3:\"4px\";s:17:\"icon_circle_color\";s:7:\"#333333\";s:17:\"icon_border_color\";s:7:\"#333333\";s:10:\"icon_color\";s:7:\"#ffffff\";s:20:\"gallery_picture_size\";s:4:\"auto\";s:14:\"gallery_layout\";s:4:\"grid\";s:15:\"gallery_columns\";s:1:\"3\";s:22:\"gallery_column_spacing\";s:2:\"10\";s:18:\"gallery_hover_type\";s:4:\"none\";s:24:\"gallery_lightbox_content\";s:4:\"none\";s:19:\"gallery_border_size\";s:1:\"0\";s:20:\"gallery_border_color\";s:7:\"#f6f6f6\";s:21:\"gallery_border_radius\";s:3:\"0px\";s:19:\"google_map_api_type\";s:2:\"js\";s:21:\"imageframe_style_type\";s:4:\"none\";s:15:\"imageframe_blur\";s:1:\"3\";s:20:\"imgframe_style_color\";s:7:\"#000000\";s:22:\"imageframe_border_size\";s:1:\"0\";s:21:\"imgframe_border_color\";s:7:\"#f6f6f6\";s:24:\"imageframe_border_radius\";s:3:\"0px\";s:17:\"before_after_type\";s:12:\"before_after\";s:22:\"before_after_font_size\";s:2:\"13\";s:25:\"before_after_accent_color\";s:7:\"#ffffff\";s:28:\"before_after_label_placement\";s:14:\"image-centered\";s:24:\"before_after_handle_type\";s:7:\"default\";s:25:\"before_after_handle_color\";s:7:\"#ffffff\";s:22:\"before_after_handle_bg\";s:19:\"rgba(255,255,255,0)\";s:19:\"before_after_offset\";s:2:\"50\";s:24:\"before_after_orientation\";s:10:\"horizontal\";s:28:\"before_after_handle_movement\";s:10:\"drag_click\";s:28:\"before_after_transition_time\";s:3:\"0.5\";s:14:\"modal_bg_color\";s:7:\"#f6f6f6\";s:18:\"modal_border_color\";s:7:\"#ebebeb\";s:23:\"person_background_color\";s:13:\"rgba(0,0,0,0)\";s:16:\"person_pic_style\";s:4:\"none\";s:21:\"person_pic_style_blur\";s:1:\"3\";s:18:\"person_style_color\";s:7:\"#000000\";s:19:\"person_border_color\";s:7:\"#f6f6f6\";s:18:\"person_border_size\";s:1:\"0\";s:20:\"person_border_radius\";s:3:\"0px\";s:16:\"person_alignment\";s:4:\"Left\";s:20:\"person_icon_position\";s:3:\"Top\";s:24:\"popover_heading_bg_color\";s:7:\"#f6f6f6\";s:24:\"popover_content_bg_color\";s:7:\"#ffffff\";s:20:\"popover_border_color\";s:7:\"#ebebeb\";s:18:\"popover_text_color\";s:7:\"#747474\";s:17:\"popover_placement\";s:3:\"Top\";s:29:\"portfolio_featured_image_size\";s:4:\"full\";s:17:\"portfolio_columns\";s:1:\"3\";s:24:\"portfolio_column_spacing\";s:2:\"20\";s:15:\"portfolio_items\";s:2:\"10\";s:21:\"portfolio_text_layout\";s:7:\"unboxed\";s:24:\"portfolio_content_length\";s:7:\"excerpt\";s:24:\"portfolio_excerpt_length\";s:2:\"10\";s:28:\"portfolio_strip_html_excerpt\";s:1:\"1\";s:23:\"portfolio_title_display\";s:3:\"all\";s:24:\"portfolio_text_alignment\";s:4:\"left\";s:24:\"portfolio_layout_padding\";a:4:{s:3:\"top\";s:4:\"25px\";s:5:\"right\";s:4:\"25px\";s:6:\"bottom\";s:4:\"25px\";s:4:\"left\";s:4:\"25px\";}s:25:\"portfolio_pagination_type\";s:10:\"pagination\";s:41:\"portfolio_load_more_posts_button_bg_color\";s:7:\"#ebeaea\";s:36:\"full_boxed_pricing_box_heading_color\";s:7:\"#333333\";s:29:\"sep_pricing_box_heading_color\";s:7:\"#333333\";s:17:\"pricing_box_color\";s:7:\"#a0ce4e\";s:16:\"pricing_bg_color\";s:7:\"#ffffff\";s:30:\"pricing_background_color_hover\";s:0:\"\";s:20:\"pricing_border_color\";s:7:\"#f8f8f8\";s:21:\"pricing_divider_color\";s:7:\"#ededed\";s:18:\"progressbar_height\";s:4:\"37px\";s:25:\"progressbar_text_position\";s:6:\"on_bar\";s:24:\"progressbar_filled_color\";s:7:\"#a0ce4e\";s:31:\"progressbar_filled_border_color\";s:7:\"#ffffff\";s:30:\"progressbar_filled_border_size\";s:1:\"0\";s:26:\"progressbar_unfilled_color\";s:7:\"#f6f6f6\";s:22:\"progressbar_text_color\";s:7:\"#ffffff\";s:23:\"section_sep_border_size\";s:1:\"1\";s:14:\"section_sep_bg\";s:7:\"#f6f6f6\";s:24:\"section_sep_border_color\";s:7:\"#f6f6f6\";s:20:\"separator_style_type\";s:6:\"double\";s:9:\"sep_color\";s:7:\"#e0dede\";s:21:\"separator_border_size\";s:1:\"1\";s:16:\"separator_circle\";s:1:\"1\";s:25:\"separator_circle_bg_color\";s:19:\"rgba(255,255,255,0)\";s:22:\"social_links_font_size\";s:4:\"16px\";s:23:\"social_links_color_type\";s:6:\"custom\";s:23:\"social_links_icon_color\";s:7:\"#bebdbd\";s:18:\"social_links_boxed\";s:1:\"0\";s:22:\"social_links_box_color\";s:7:\"#e8e8e8\";s:25:\"social_links_boxed_radius\";s:3:\"4px\";s:26:\"social_links_boxed_padding\";s:3:\"8px\";s:30:\"social_links_tooltip_placement\";s:3:\"Top\";s:24:\"syntax_highlighter_theme\";s:7:\"default\";s:31:\"syntax_highlighter_line_numbers\";s:3:\"yes\";s:47:\"syntax_highlighter_line_number_background_color\";s:0:\"\";s:41:\"syntax_highlighter_line_number_text_color\";s:0:\"\";s:32:\"syntax_highlighter_line_wrapping\";s:6:\"scroll\";s:36:\"syntax_highlighter_copy_to_clipboard\";s:3:\"yes\";s:41:\"syntax_highlighter_copy_to_clipboard_text\";s:17:\"Copy to Clipboard\";s:28:\"syntax_highlighter_font_size\";s:2:\"14\";s:35:\"syntax_highlighter_background_color\";s:0:\"\";s:30:\"syntax_highlighter_border_size\";s:1:\"1\";s:31:\"syntax_highlighter_border_color\";s:0:\"\";s:31:\"syntax_highlighter_border_style\";s:5:\"solid\";s:25:\"syntax_highlighter_margin\";a:4:{s:3:\"top\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";}s:13:\"tabs_bg_color\";s:7:\"#ffffff\";s:19:\"tabs_inactive_color\";s:7:\"#ebeaea\";s:17:\"tabs_border_color\";s:7:\"#ebeaea\";s:18:\"tabs_icon_position\";s:4:\"left\";s:14:\"tabs_icon_size\";s:2:\"13\";s:10:\"tagline_bg\";s:7:\"#f6f6f6\";s:20:\"tagline_border_color\";s:7:\"#f6f6f6\";s:14:\"tagline_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"84px\";}s:20:\"testimonial_bg_color\";s:7:\"#f6f6f6\";s:22:\"testimonial_text_color\";s:7:\"#747474\";s:18:\"testimonials_speed\";s:4:\"4000\";s:19:\"testimonials_random\";s:1:\"0\";s:12:\"text_columns\";s:1:\"1\";s:21:\"text_column_min_width\";s:5:\"100px\";s:19:\"text_column_spacing\";s:3:\"2em\";s:15:\"text_rule_style\";s:4:\"none\";s:14:\"text_rule_size\";s:1:\"1\";s:15:\"text_rule_color\";s:0:\"\";s:16:\"title_style_type\";s:4:\"none\";s:18:\"title_border_color\";s:7:\"#e0dede\";s:12:\"title_margin\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"31px\";}s:19:\"title_margin_mobile\";a:2:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:4:\"20px\";}s:14:\"accordion_type\";s:10:\"accordions\";s:20:\"accordion_boxed_mode\";s:1:\"0\";s:21:\"accordion_border_size\";s:1:\"1\";s:22:\"accordian_border_color\";s:7:\"#cccccc\";s:26:\"accordian_background_color\";s:7:\"#ffffff\";s:21:\"accordian_hover_color\";s:7:\"#f9f9f9\";s:22:\"accordion_divider_line\";s:1:\"1\";s:25:\"accordion_title_font_size\";s:0:\"\";s:19:\"accordion_icon_size\";s:2:\"13\";s:20:\"accordian_icon_color\";s:7:\"#ffffff\";s:20:\"accordion_icon_boxed\";s:1:\"1\";s:24:\"accordian_inactive_color\";s:7:\"#333333\";s:20:\"accordion_icon_align\";s:4:\"left\";s:22:\"accordian_active_color\";s:7:\"#a0ce4e\";s:21:\"user_login_text_align\";s:6:\"center\";s:28:\"user_login_form_field_layout\";s:7:\"stacked\";s:27:\"user_login_form_show_labels\";s:2:\"no\";s:33:\"user_login_form_show_placeholders\";s:3:\"yes\";s:32:\"user_login_form_show_remember_me\";s:2:\"no\";s:32:\"user_login_form_background_color\";s:7:\"#f6f6f6\";s:16:\"visibility_small\";s:3:\"640\";s:17:\"visibility_medium\";s:4:\"1024\";s:22:\"widget_area_title_size\";s:0:\"\";s:23:\"widget_area_title_color\";s:0:\"\";s:11:\"scheme_type\";s:0:\"\";s:12:\"color_scheme\";s:5:\"Green\";s:21:\"search_content_length\";s:7:\"Excerpt\";s:19:\"reset_caches_button\";s:0:\"\";}','yes'),(312,'fusion_options-transients','a:2:{s:14:\"changed_values\";a:10:{s:4:\"logo\";a:5:{s:3:\"url\";s:72:\"http://kingsvillelivestock.com/wp-content/uploads/2019/04/Logo-250px.png\";s:2:\"id\";s:2:\"88\";s:6:\"height\";s:3:\"110\";s:5:\"width\";s:3:\"250\";s:9:\"thumbnail\";s:80:\"http://kingsvillelivestock.com/wp-content/uploads/2019/04/Logo-250px-150x110.png\";}s:15:\"body_typography\";a:11:{s:11:\"font-family\";s:7:\"PT Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"17px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:5:\"color\";s:7:\"#747474\";}s:13:\"h1_typography\";a:13:{s:11:\"font-family\";s:10:\"Montserrat\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"34px\";s:11:\"line-height\";s:3:\"1.4\";s:14:\"letter-spacing\";s:1:\"0\";s:10:\"margin-top\";s:6:\"0.67em\";s:13:\"margin-bottom\";s:6:\"0.67em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h2_typography\";a:13:{s:11:\"font-family\";s:10:\"Montserrat\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"27px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:10:\"margin-top\";s:3:\"0em\";s:13:\"margin-bottom\";s:5:\"1.1em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h3_typography\";a:13:{s:11:\"font-family\";s:10:\"Montserrat\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:10:\"margin-top\";s:3:\"1em\";s:13:\"margin-bottom\";s:3:\"1em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h4_typography\";a:13:{s:11:\"font-family\";s:10:\"Antic Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"13px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:10:\"margin-top\";s:6:\"1.33em\";s:13:\"margin-bottom\";s:6:\"1.33em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h5_typography\";a:13:{s:11:\"font-family\";s:10:\"Antic Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"12px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:10:\"margin-top\";s:6:\"1.67em\";s:13:\"margin-bottom\";s:6:\"1.67em\";s:5:\"color\";s:7:\"#333333\";}s:13:\"h6_typography\";a:13:{s:11:\"font-family\";s:10:\"Antic Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"11px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:10:\"margin-top\";s:6:\"2.33em\";s:13:\"margin-bottom\";s:6:\"2.33em\";s:5:\"color\";s:7:\"#333333\";}s:21:\"post_title_typography\";a:11:{s:11:\"font-family\";s:10:\"Antic Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:5:\"color\";s:7:\"#333333\";}s:29:\"post_titles_extras_typography\";a:11:{s:11:\"font-family\";s:10:\"Antic Slab\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:4:\"true\";s:11:\"font-backup\";s:0:\"\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:5:\"latin\";s:9:\"font-size\";s:4:\"18px\";s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";s:1:\"0\";s:5:\"color\";s:7:\"#333333\";}}s:9:\"last_save\";i:1559148788;}','yes'),(319,'avada_disable_encoding','1','yes'),(826,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:3;}}','yes'),(1107,'sbg_sidebars','a:1:{s:11:\"contactpage\";s:12:\"Contact Page\";}','yes'),(1215,'WPLANG','','yes'),(1216,'new_admin_email','justin@hpgmedia.com','yes'),(1533,'element_category_children','a:0:{}','yes'),(3013,'slide-page_children','a:0:{}','yes'),(4086,'recovery_keys','a:0:{}','yes'),(4099,'updraftplus_locked_fd','1','no'),(4100,'updraftplus_last_lock_time_fd','2023-11-29 18:13:18','no'),(4101,'updraftplus_semaphore_fd','1','no'),(4102,'updraft_last_scheduled_fd','1701281598','yes'),(4442,'_site_transient_avada_autoloader_paths_fc69fd281f0c951a09e8f9d3e04328f5','a:43:{s:28:\"Fusion_Builder_Redux_Options\";s:129:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-fusion-builder-redux-options.php\";s:11:\"Avada_Admin\";s:112:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-admin.php\";s:14:\"Avada_Settings\";s:115:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-settings.php\";s:10:\"Avada_Init\";s:111:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-init.php\";s:17:\"Avada_Social_Icon\";s:118:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-social-icon.php\";s:20:\"Avada_Social_Sharing\";s:121:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-social-sharing.php\";s:14:\"Avada_Template\";s:115:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-template.php\";s:10:\"Avada_Blog\";s:111:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-blog.php\";s:12:\"Avada_Images\";s:113:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-images.php\";s:10:\"Avada_Head\";s:111:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-head.php\";s:12:\"Avada_Layout\";s:113:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-layout.php\";s:15:\"Avada_GoogleMap\";s:116:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-googlemap.php\";s:22:\"Avada_Remote_Installer\";s:123:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-remote-installer.php\";s:20:\"Avada_Sermon_Manager\";s:121:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-sermon-manager.php\";s:20:\"Avada_Privacy_Embeds\";s:121:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-privacy-embeds.php\";s:9:\"Avada_PWA\";s:110:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-pwa.php\";s:19:\"Avada_Importer_Data\";s:129:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/importer/class-avada-importer-data.php\";s:30:\"Avada_Multiple_Featured_Images\";s:131:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-multiple-featured-images.php\";s:14:\"Avada_Sidebars\";s:115:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-sidebars.php\";s:19:\"Avada_Admin_Notices\";s:120:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-admin-notices.php\";s:18:\"Avada_Widget_Style\";s:119:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-widget-style.php\";s:18:\"Avada_Page_Options\";s:119:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-page-options.php\";s:11:\"Avada_Fonts\";s:112:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-fonts.php\";s:13:\"Avada_Scripts\";s:114:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-scripts.php\";s:27:\"Avada_TGM_Plugin_Activation\";s:128:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-tgm-plugin-activation.php\";s:24:\"Avada_Megamenu_Framework\";s:125:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-megamenu-framework.php\";s:14:\"Avada_Megamenu\";s:115:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-megamenu.php\";s:16:\"Avada_Nav_Walker\";s:117:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-nav-walker.php\";s:25:\"Avada_Nav_Walker_Megamenu\";s:126:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-nav-walker-megamenu.php\";s:17:\"Avada_Dynamic_CSS\";s:118:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-dynamic-css.php\";s:12:\"Avada_Helper\";s:113:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-helper.php\";s:24:\"Fusion_Widget_Ad_125_125\";s:132:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/widget/class-fusion-widget-ad-125-125.php\";s:20:\"Fusion_Widget_Author\";s:128:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/widget/class-fusion-widget-author.php\";s:26:\"Fusion_Widget_Contact_Info\";s:134:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/widget/class-fusion-widget-contact-info.php\";s:18:\"Fusion_Widget_Tabs\";s:126:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/widget/class-fusion-widget-tabs.php\";s:26:\"Fusion_Widget_Recent_Works\";s:134:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/widget/class-fusion-widget-recent-works.php\";s:20:\"Fusion_Widget_Tweets\";s:128:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/widget/class-fusion-widget-tweets.php\";s:20:\"Fusion_Widget_Flickr\";s:128:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/widget/class-fusion-widget-flickr.php\";s:26:\"Fusion_Widget_Social_Links\";s:134:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/widget/class-fusion-widget-social-links.php\";s:27:\"Fusion_Widget_Facebook_Page\";s:135:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/widget/class-fusion-widget-facebook-page.php\";s:18:\"Fusion_Widget_Menu\";s:126:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/widget/class-fusion-widget-menu.php\";s:27:\"Fusion_Widget_Vertical_Menu\";s:135:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/widget/class-fusion-widget-vertical-menu.php\";s:13:\"Avada_Options\";s:114:\"/var/www/vhosts/hpgmediatest.com/httpdocs/driftwood-media/wp-content/themes/Avada/includes/class-avada-options.php\";}','no'),(4601,'wordfence_ls_version','1.0.9','yes'),(4642,'mwp_service_key','6ebf9800-b056-401c-8a09-a5d0c3ebd28f','yes'),(4645,'mwp_openssl_parameters','a:2:{s:4:\"time\";i:1702487149;s:7:\"working\";b:1;}','yes'),(4646,'mwp_incremental_update_active','','yes'),(4647,'mwp_recovering','','yes'),(4648,'mwp_core_autoupdate','','yes'),(4649,'mwp_container_parameters','a:0:{}','yes'),(4650,'mwp_container_site_parameters','a:0:{}','yes'),(4651,'mwp_maintenace_mode','a:0:{}','yes'),(4653,'worker_migration_version','2','yes'),(4654,'_worker_nossl_key','','yes'),(4655,'_worker_public_key','LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlJQklqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FROEFNSUlCQ2dLQ0FRRUF0aHR4d0lHZllTVTgzRm1rc3VIYgpPOEh5NVE2d29ITXRBMVpxZUU0TllpUjZHU3VjVUs0YWdBYkNiY2ZCMTF2Tzlta2I5Qks5anZIL2FyaE9YaityCkVvb0Rsemp6Y1ZvaGZLd243Z0kxK2FtRk5CZ0pkVHdocHJTejdXNGovYStKUTR4cm9FNTZFWFhQZUtOUVhqOGMKVUYyM0t4dDNvVWI3WjArK0E0ZXdrMnVwVjZxQU9oR01nSUVmSHErQ2pWbld1K1RoemNqbHVGbEkrR3BBZCtMQgpocDVCbDF3dDJibEV6cVVjd1NkNTJvN09rYjVpS2JxUWlWTnhDMGh2RWRwZnFudVVXTjZHZFNMakxacE4rbGRLCjlNZ3J3SWJoeFpFd0FLQkhldG9wRTMvUFVzNWVjUFQxZXM0YWgwam84M3lUZHlzL3FUUlFiZGFjdXczTUZXNS8KZHdJREFRQUIKLS0tLS1FTkQgUFVCTElDIEtFWS0tLS0tCg==','yes'),(4659,'mwp_public_keys_refresh_time','1701220256','yes'),(4660,'mwp_public_keys','a:8:{i:0;a:6:{s:2:\"id\";s:19:\"managewp_1699581902\";s:7:\"service\";s:8:\"managewp\";s:9:\"validFrom\";s:19:\"2023-11-25 01:26:15\";s:7:\"validTo\";s:19:\"2023-12-27 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArZ4A5Vs56xXDSXOeNwjl\neg24EUY3Oesv4VSV3OgCQ6626D9Hz5KYP1uzNsbbLoTFrkLP5WE0N8BcHutPHu24\n25uwZ2XXrbTd7Bo1jLAxFTep1SxzyP0GnkwCwGaenOe51Vf7kmTUeSQjoBi8N7c0\nhYs3+/I+2QKHeqaYLAJT4NljroIijZMSeIQo/acZYtYGm1KWKB4DdhrlTzYqIDiN\n4kywFtQ2X9yZ/VkB1vdJ/BkGaW+/OkOXW2MAAP8FdDY6bYGSdYau7ezvEi8pg9Jt\n1nnfKYcuH/iKBJ4gthmFnsEVfbxbCunWB5Fk5jk9HLpuwAyPK238YniOdFOirqJm\nswIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:1;a:6:{s:2:\"id\";s:23:\"managewp_dev_1699581903\";s:7:\"service\";s:12:\"managewp_dev\";s:9:\"validFrom\";s:19:\"2023-11-25 01:26:15\";s:7:\"validTo\";s:19:\"2023-12-27 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwwyn3DLlwPfCMSUtKpTi\nstgHRWCyuSvtMXHn2VzI7q3tTkxwtYKp+sn6C+SvpF4PpdBGS9BW2XYnWTfulGx3\nGEd9xXtzvp8e2d/RX5n/ORrU6CWNKJLwQG3QoE4sm6kp7CDnb12At629yqSjy4/2\ny5gPWgKKYR4E9A3uW5TV5f9ACoPQnPAwuV3T18jV+g2/sMjCgt6OxEd5i4dUtv4e\nExFp1i4oqEQCia6HpRsh0I9BeKmEN5ry6LSAJoZTr8TuCI3iDFYLDM94F8EjLJQa\n8rgu9+/DR7qxAUbCMQINjPa9Ra/lFmez+oq1B75OrxeC2F2GEgT985nF6Pf3E8by\nYwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:2;a:6:{s:2:\"id\";s:16:\"mwp20_1699581903\";s:7:\"service\";s:5:\"mwp20\";s:9:\"validFrom\";s:19:\"2023-11-25 01:26:15\";s:7:\"validTo\";s:19:\"2023-12-27 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA03g2GqeDKmkuG7seg+8a\n6Agp9JQAgihguxAZiMHeg/6mRSi1niH045TRRsPrZFAeflD+D/u3IrVOfjo3U5sZ\nZur57ajNABJZ97oGDVOcEGex5B0AAJ8m9UhCy8t9g3pGQKozQPvEUY+DUATe2dI+\nMRZUCVkmBxeQHxqP0+OAtOzW6FnT/lYpLwKFGGQGFtKQSU9pmhBK+mHK/TftpS88\noBqgQhI19BPAAzElLlt+MJ1UhYFBkZiI3ivYgxDrnpYul91wJO4SfSaptGAeY7n4\nP0T+OV8zGmPrSktat/9Bewln9L7wi8hW5SBwzbkm7rHb/8to1XROK4unrkjhIxX1\niQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:3;a:6:{s:2:\"id\";s:15:\"wpps_1699189502\";s:7:\"service\";s:4:\"wpps\";s:9:\"validFrom\";s:19:\"2023-11-20 13:05:01\";s:7:\"validTo\";s:19:\"2023-12-22 13:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAu8T52P1PlElpxOrCXYGA\n/N1kGygFHx3cQliHahRgnqMkxt/rggZnvrzAmUv76ycfV3twEcSk2FZ/zUdZZm8u\nHzyFp6E2HK98ZDMuFQ6Fsn3Vlg/wljWkE/RPJY3Lv8Zg/wypx5m1O2H0MaOMTfXG\nPOs1omZE23RXeyBc7CiAkLa3khRY21QvTeIo/NMbFHuP5q9v9+tRQq3GfBN/lnK6\n9H1RmAZ0Rw1NUlT704lNa/6PCacRH/DuaJU9Dh323h/0jemf/QdpAGIteeuZC31P\nxZCtxjRglWxzi+in2WIWUl0jIsUrJ2SqXDXNPKnlUDBoYENs2rVIDjZF+f0DztH1\npQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:4;a:6:{s:2:\"id\";s:25:\"cookie_service_1697982105\";s:7:\"service\";s:14:\"cookie_service\";s:9:\"validFrom\";s:19:\"2023-11-04 16:27:25\";s:7:\"validTo\";s:19:\"2023-12-06 16:27:25\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtf09Ufc/D+XaGA67M9kn\nYk6L86RUmnhh7cXzraJjoaGDT44GTQhOwzqG2FY7J6slRymHlyL1xQ8++QN1ncXY\nb9CEX629wD/GMPInSCczOj35E0BjZotk95Dv0ylAf9Q/8TkHkPYcm6NbVn3Kl7P/\nT9ID8cBC/sKhHEriYplocV5yHcHV2fWsUOgHgCrpfCmf6aL9caXGz0tOMH8DhQJd\n1s4Xfbg0EAoNkns6LseNwoQZakQmLF5A5YbliZGlLr9RVpF75ou+JZfU5gC8f/+f\n4QyFL4wke1a3oyKd2E6d1OVN2EqpKU4WxrxDWnyITeuyq0k0Hl74M1HrdnMMAoOx\nlQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:5;a:6:{s:2:\"id\";s:25:\"cookie_service_1700413501\";s:7:\"service\";s:14:\"cookie_service\";s:9:\"validFrom\";s:19:\"2023-12-04 16:27:25\";s:7:\"validTo\";s:19:\"2024-01-05 16:27:25\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAl589xUp8V2+yjHYLiMGt\ndYGLzkyNOTWF32eEzOkHlMP9FHBNEUQOsL6W2T5ZFvdi851p+3Mp4hAKtI0+ukB3\n7OsofBAoAPKvzmKpNGGpPp3+jOQwCq7I5XORuY7VFm5quDRJwva4X7YLgR1Efg+C\nmzZhDCV/TarSHpacKrinbVRVpgZZt77nCp5dtUF1XhDutvJtXDnHVSBZubpuadBb\nRDqOQuFhhsaeT8qDsYvk9Nf9XnDUzeA8EmYZ9KzR1SXrmRZy1KGfFY75qPwdteY8\nuNX4tfqr3y6rfuQeVoUoT+vguMMwOf6OHYNkIVRV2sEFpls3lP7tir4VwOHbMqSu\nVQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:6;a:6:{s:2:\"id\";s:15:\"mwp1_1699279501\";s:7:\"service\";s:4:\"mwp1\";s:9:\"validFrom\";s:19:\"2023-11-21 14:05:01\";s:7:\"validTo\";s:19:\"2023-12-23 14:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv7t05lQ59kgOy0DYC8aH\nTNPtFcbhW/G5JEJ9yS6NQ1uiYr3Ad96nmlzV+dBG4kJsKbEO+6YVGu4gmadr8Wq6\n4uKW9qRa9Mg0vYCIO0CS3VxSR/Pf72BznmOGdsxsXv6edn7HVOe007riDicY7rVD\n0So1ZXDdMKX7aqXrJUmXEURXgvxL6mQqt7anqFkIS02RAiCRrWQN0mDqnJJg/vtc\nSnzSEm405WEDpc/taKZwvzvlZHZ2N4NBVypOLzu+VKsmOrzk5JFML14XfqfsAppK\ndjXZU/2hmJNpcvME6dOQAKDq4qf/weI5O5pQFZxbscFcVdbbms0J8GfCONs0o1mV\nbwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:7;a:6:{s:2:\"id\";s:20:\"migration_1699535102\";s:7:\"service\";s:9:\"migration\";s:9:\"validFrom\";s:19:\"2023-11-24 13:05:02\";s:7:\"validTo\";s:19:\"2023-12-26 13:05:02\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAq2t4SE1DEn+tUJz3zxqc\ncub3ZqPi/tFp68lzog31+sY6kN+PolK6hryBEPo+K1btTsgpzv7G1U+EaxxNaSBw\nma6TJk91hwJns1fJ5OnNo5beiHAyc5hyygTwK0cOBc0u1z2v/1D0nUQ8B1MeCkqn\nFbyQ7i2j3TcXo9K994MX43f9r2a55tpwPeV34uwscz/+9E3y9/Z1lH7LloVi4Edl\nm4l+s9OCZIeTAtPG71XhkcVpsjeA+OHa2h16wfC0SC2yGr10cXn4aTi8QHpCMlGb\nIxz2qSVYvtjNL3MlPxNBWSXVrT5zY4Vl6ontwzbHKc4i/1ahYu/IK6QjxqFa2iIe\nRwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}}','yes'),(4663,'mwp_communication_keys','a:2:{i:3100719;a:2:{s:3:\"key\";s:36:\"2dd23f77-4cce-40a7-b30c-6b11b9372b3b\";s:5:\"added\";i:1558055384;}i:5891492;a:2:{s:3:\"key\";s:36:\"e9a70af2-036d-48fb-9f94-2e58ef74e703\";s:5:\"added\";i:1584534049;}}','yes'),(4664,'mwp_key_last_used_2dd23f77-4cce-40a7-b30c-6b11b9372b3b','1558055384','yes'),(4665,'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'),(4668,'user_hit_count','a:53:{s:10:\"2023-10-08\";i:133;s:10:\"2023-10-09\";i:493;s:10:\"2023-10-10\";i:486;s:10:\"2023-10-11\";i:785;s:10:\"2023-10-12\";i:654;s:10:\"2023-10-13\";i:1221;s:10:\"2023-10-14\";i:641;s:10:\"2023-10-15\";i:491;s:10:\"2023-10-16\";i:464;s:10:\"2023-10-17\";i:465;s:10:\"2023-10-18\";i:496;s:10:\"2023-10-19\";i:415;s:10:\"2023-10-20\";i:595;s:10:\"2023-10-21\";i:604;s:10:\"2023-10-22\";i:392;s:10:\"2023-10-23\";i:609;s:10:\"2023-10-24\";i:672;s:10:\"2023-10-25\";i:702;s:10:\"2023-10-26\";i:438;s:10:\"2023-10-27\";i:653;s:10:\"2023-10-28\";i:519;s:10:\"2023-10-29\";i:465;s:10:\"2023-10-30\";i:462;s:10:\"2023-10-31\";i:499;s:10:\"2023-11-01\";i:647;s:10:\"2023-11-02\";i:508;s:10:\"2023-11-03\";i:464;s:10:\"2023-11-04\";i:1068;s:10:\"2023-11-05\";i:1141;s:10:\"2023-11-06\";i:550;s:10:\"2023-11-07\";i:629;s:10:\"2023-11-08\";i:616;s:10:\"2023-11-09\";i:523;s:10:\"2023-11-10\";i:721;s:10:\"2023-11-11\";i:483;s:10:\"2023-11-12\";i:180;s:10:\"2023-11-13\";i:1414;s:10:\"2023-11-14\";i:557;s:10:\"2023-11-15\";i:503;s:10:\"2023-11-16\";i:510;s:10:\"2023-11-17\";i:466;s:10:\"2023-11-18\";i:794;s:10:\"2023-11-19\";i:248;s:10:\"2023-11-20\";i:715;s:10:\"2023-11-21\";i:554;s:10:\"2023-11-22\";i:360;s:10:\"2023-11-23\";i:316;s:10:\"2023-11-24\";i:322;s:10:\"2023-11-25\";i:289;s:10:\"2023-11-26\";i:1082;s:10:\"2023-11-27\";i:516;s:10:\"2023-11-28\";i:471;s:10:\"2023-11-29\";i:367;}','yes'),(4669,'mwp_key_last_used_3100719','1574433996','yes'),(4670,'mwp_new_communication_established','1','yes'),(5086,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:19:\"justin@hpgmedia.com\";s:7:\"version\";s:5:\"5.8.6\";s:9:\"timestamp\";i:1666047719;}','no'),(5629,'admin_email_lifespan','1680631146','yes'),(5630,'db_upgraded','','yes'),(5785,'rlrsssl_options','a:16:{s:12:\"site_has_ssl\";b:1;s:4:\"hsts\";b:0;s:22:\"htaccess_warning_shown\";b:0;s:19:\"review_notice_shown\";b:1;s:25:\"ssl_success_message_shown\";b:0;s:26:\"autoreplace_insecure_links\";b:1;s:17:\"plugin_db_version\";s:5:\"5.2.2\";s:20:\"do_not_edit_htaccess\";b:0;s:17:\"htaccess_redirect\";b:0;s:11:\"ssl_enabled\";b:1;s:19:\"javascript_redirect\";b:0;s:11:\"wp_redirect\";b:1;s:31:\"switch_mixed_content_fixer_hook\";b:0;s:19:\"dismiss_all_notices\";b:0;s:13:\"high_contrast\";b:0;s:21:\"dismiss_review_notice\";b:0;}','yes'),(5800,'wp_mail_smtp_initial_version','1.7.1','no'),(5801,'wp_mail_smtp_version','1.8.1','no'),(5802,'wp_mail_smtp','a:7:{s:4:\"mail\";a:6:{s:10:\"from_email\";s:19:\"justin@hpgmedia.com\";s:9:\"from_name\";s:9:\"HPG Media\";s:6:\"mailer\";s:8:\"sendgrid\";s:11:\"return_path\";b:0;s:16:\"from_email_force\";b:0;s:15:\"from_name_force\";b:0;}s:4:\"smtp\";a:7:{s:7:\"autotls\";s:3:\"yes\";s:4:\"auth\";s:3:\"yes\";s:4:\"host\";s:0:\"\";s:10:\"encryption\";s:4:\"none\";s:4:\"port\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";}s:10:\"sendinblue\";a:1:{s:7:\"api_key\";s:0:\"\";}s:7:\"mailgun\";a:3:{s:7:\"api_key\";s:0:\"\";s:6:\"domain\";s:0:\"\";s:6:\"region\";s:2:\"US\";}s:8:\"sendgrid\";a:1:{s:7:\"api_key\";s:69:\"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\";}s:5:\"gmail\";a:2:{s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";}s:7:\"general\";a:1:{s:29:\"summary_report_email_disabled\";b:1;}}','no'),(5816,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(5826,'wordpress_api_key','a56508ab0a3f','yes'),(5827,'akismet_strictness','1','yes'),(5828,'akismet_show_user_comments_approved','0','yes'),(5829,'akismet_comment_form_privacy_notice','hide','yes'),(5831,'akismet_spam_count','0','yes'),(5873,'sbi_rating_notice','dismissed','no'),(5874,'sbi_statuses','a:5:{s:13:\"first_install\";i:1574530573;s:23:\"rating_notice_dismissed\";i:1580926196;s:4:\"gdpr\";a:1:{s:19:\"from_update_success\";b:1;}s:8:\"database\";a:1:{s:14:\"hashtag_column\";b:1;}s:12:\"data_manager\";a:2:{s:9:\"last_used\";i:1641832281;s:14:\"num_db_updates\";i:31;}}','no'),(5875,'sbi_db_version','1.91','yes'),(5883,'wp_mail_smtp_debug','a:423:{i:0;i:8;i:1;i:9;i:2;i:10;i:3;i:11;i:4;i:12;i:5;i:13;i:6;i:14;i:7;i:15;i:8;i:16;i:9;i:17;i:10;i:18;i:11;i:19;i:12;i:20;i:13;i:21;i:14;i:22;i:15;i:23;i:16;i:24;i:17;i:25;i:18;i:26;i:19;i:27;i:20;i:28;i:21;i:29;i:22;i:30;i:23;i:31;i:24;i:32;i:25;i:33;i:26;i:34;i:27;i:35;i:28;i:36;i:29;i:37;i:30;i:38;i:31;i:39;i:32;i:40;i:33;i:41;i:34;i:42;i:35;i:43;i:36;i:44;i:37;i:45;i:38;i:46;i:39;i:47;i:40;i:48;i:41;i:49;i:42;i:50;i:43;i:51;i:44;i:52;i:45;i:53;i:46;i:54;i:47;i:55;i:48;i:56;i:49;i:57;i:50;i:58;i:51;i:59;i:52;i:60;i:53;i:61;i:54;i:62;i:55;i:63;i:56;i:64;i:57;i:65;i:58;i:66;i:59;i:67;i:60;i:68;i:61;i:69;i:62;i:70;i:63;i:71;i:64;i:72;i:65;i:73;i:66;i:74;i:67;i:75;i:68;i:76;i:69;i:77;i:70;i:78;i:71;i:79;i:72;i:80;i:73;i:81;i:74;i:82;i:75;i:83;i:76;i:84;i:77;i:85;i:78;i:86;i:79;i:87;i:80;i:88;i:81;i:89;i:82;i:90;i:83;i:91;i:84;i:92;i:85;i:93;i:86;i:94;i:87;i:95;i:88;i:96;i:89;i:97;i:90;i:98;i:91;i:99;i:92;i:100;i:93;i:101;i:94;i:102;i:95;i:103;i:96;i:104;i:97;i:105;i:98;i:106;i:99;i:107;i:100;i:108;i:101;i:109;i:102;i:110;i:103;i:111;i:104;i:112;i:105;i:113;i:106;i:114;i:107;i:115;i:108;i:116;i:109;i:117;i:110;i:118;i:111;i:119;i:112;i:120;i:113;i:121;i:114;i:122;i:115;i:123;i:116;i:124;i:117;i:125;i:118;i:126;i:119;i:127;i:120;i:128;i:121;i:129;i:122;i:130;i:123;i:131;i:124;i:132;i:125;i:133;i:126;i:134;i:127;i:135;i:128;i:136;i:129;i:137;i:130;i:138;i:131;i:139;i:132;i:140;i:133;i:141;i:134;i:142;i:135;i:143;i:136;i:144;i:137;i:145;i:138;i:146;i:139;i:147;i:140;i:148;i:141;i:149;i:142;i:150;i:143;i:151;i:144;i:152;i:145;i:153;i:146;i:154;i:147;i:155;i:148;i:156;i:149;i:157;i:150;i:158;i:151;i:159;i:152;i:160;i:153;i:161;i:154;i:162;i:155;i:163;i:156;i:164;i:157;i:165;i:158;i:166;i:159;i:167;i:160;i:168;i:161;i:169;i:162;i:170;i:163;i:171;i:164;i:172;i:165;i:173;i:166;i:174;i:167;i:175;i:168;i:176;i:169;i:177;i:170;i:178;i:171;i:179;i:172;i:180;i:173;i:181;i:174;i:182;i:175;i:183;i:176;i:184;i:177;i:185;i:178;i:186;i:179;i:187;i:180;i:188;i:181;i:189;i:182;i:190;i:183;i:191;i:184;i:192;i:185;i:193;i:186;i:194;i:187;i:195;i:188;i:196;i:189;i:197;i:190;i:198;i:191;i:199;i:192;i:200;i:193;i:201;i:194;i:202;i:195;i:203;i:196;i:204;i:197;i:205;i:198;i:206;i:199;i:207;i:200;i:208;i:201;i:209;i:202;i:210;i:203;i:211;i:204;i:212;i:205;i:213;i:206;i:214;i:207;i:215;i:208;i:216;i:209;i:217;i:210;i:218;i:211;i:219;i:212;i:220;i:213;i:221;i:214;i:222;i:215;i:223;i:216;i:224;i:217;i:225;i:218;i:226;i:219;i:227;i:220;i:228;i:221;i:229;i:222;i:230;i:223;i:231;i:224;i:232;i:225;i:233;i:226;i:234;i:227;i:235;i:228;i:236;i:229;i:237;i:230;i:238;i:231;i:239;i:232;i:240;i:233;i:241;i:234;i:242;i:235;i:243;i:236;i:244;i:237;i:245;i:238;i:246;i:239;i:247;i:240;i:248;i:241;i:249;i:242;i:250;i:243;i:251;i:244;i:252;i:245;i:253;i:246;i:254;i:247;i:255;i:248;i:256;i:249;i:257;i:250;i:258;i:251;i:259;i:252;i:260;i:253;i:261;i:254;i:262;i:255;i:263;i:256;i:264;i:257;i:265;i:258;i:266;i:259;i:267;i:260;i:268;i:261;i:269;i:262;i:270;i:263;i:271;i:264;i:272;i:265;i:273;i:266;i:274;i:267;i:275;i:268;i:276;i:269;i:277;i:270;i:278;i:271;i:279;i:272;i:280;i:273;i:281;i:274;i:282;i:275;i:283;i:276;i:284;i:277;i:285;i:278;i:286;i:279;i:287;i:280;i:288;i:281;i:289;i:282;i:290;i:283;i:291;i:284;i:292;i:285;i:293;i:286;i:294;i:287;i:295;i:288;i:296;i:289;i:297;i:290;i:298;i:291;i:299;i:292;i:300;i:293;i:301;i:294;i:302;i:295;i:303;i:296;i:304;i:297;i:305;i:298;i:306;i:299;i:307;i:300;i:308;i:301;i:309;i:302;i:310;i:303;i:311;i:304;i:312;i:305;i:313;i:306;i:314;i:307;i:315;i:308;i:316;i:309;i:317;i:310;i:318;i:311;i:319;i:312;i:320;i:313;i:321;i:314;i:322;i:315;i:323;i:316;i:324;i:317;i:325;i:318;i:326;i:319;i:327;i:320;i:328;i:321;i:329;i:322;i:330;i:323;i:331;i:324;i:332;i:325;i:333;i:326;i:334;i:327;i:335;i:328;i:336;i:329;i:337;i:330;i:338;i:331;i:339;i:332;i:340;i:333;i:341;i:334;i:342;i:335;i:343;i:336;i:344;i:337;i:345;i:338;i:346;i:339;i:347;i:340;i:348;i:341;i:349;i:342;i:350;i:343;i:351;i:344;i:352;i:345;i:353;i:346;i:354;i:347;i:355;i:348;i:356;i:349;i:357;i:350;i:358;i:351;i:359;i:352;i:360;i:353;i:361;i:354;i:362;i:355;i:363;i:356;i:364;i:357;i:365;i:358;i:366;i:359;i:367;i:360;i:368;i:361;i:369;i:362;i:370;i:363;i:371;i:364;i:372;i:365;i:373;i:366;i:374;i:367;i:375;i:368;i:376;i:369;i:377;i:370;i:378;i:371;i:379;i:372;i:380;i:373;i:381;i:374;i:382;i:375;i:383;i:376;i:384;i:377;i:385;i:378;i:386;i:379;i:387;i:380;i:388;i:381;i:389;i:382;i:390;i:383;i:391;i:384;i:392;i:385;i:393;i:386;i:394;i:387;i:395;i:388;i:396;i:389;i:397;i:390;i:398;i:391;i:399;i:392;i:400;i:393;i:401;i:394;i:402;i:395;i:403;i:396;i:404;i:397;i:405;i:398;i:406;i:399;i:407;i:400;i:408;i:401;i:409;i:402;i:410;i:403;i:411;i:404;i:412;i:405;i:413;i:406;i:414;i:407;i:415;i:408;i:416;i:409;i:417;i:410;i:418;i:411;i:419;i:412;i:420;i:413;i:421;i:414;i:422;i:415;i:423;i:416;i:424;i:417;i:425;i:418;i:426;i:419;i:427;i:420;i:428;i:421;i:429;i:422;i:430;}','no'),(6211,'theme_mods_Divi','a:6:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:12:\"primary-menu\";i:3;}s:18:\"custom_css_post_id\";i:637;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:16:\"background_color\";s:6:\"f1ece9\";}','yes'),(6212,'et_pb_cache_notice','a:1:{s:3:\"4.1\";s:6:\"ignore\";}','yes'),(6217,'et_core_version','4.23.1','yes'),(6219,'et_divi','a:207:{s:39:\"static_css_custom_css_safety_check_done\";b:1;s:23:\"2_5_flush_rewrite_rules\";s:4:\"done\";s:30:\"et_flush_rewrite_rules_library\";s:6:\"4.23.1\";s:31:\"divi_previous_installed_version\";s:6:\"4.23.0\";s:29:\"divi_latest_installed_version\";s:6:\"4.23.1\";s:27:\"divi_skip_font_subset_force\";b:1;s:27:\"et_pb_clear_templates_cache\";b:1;s:23:\"builder_custom_defaults\";O:8:\"stdClass\":0:{}s:33:\"customizer_settings_migrated_flag\";b:1;s:34:\"builder_custom_defaults_unmigrated\";b:0;s:40:\"divi_email_provider_credentials_migrated\";b:1;s:15:\"divi_1_3_images\";s:7:\"checked\";s:21:\"et_pb_layouts_updated\";b:1;s:30:\"library_removed_legacy_layouts\";b:1;s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:9:\"divi_logo\";s:85:\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Logo-Redraw.png\";s:14:\"divi_fixed_nav\";s:2:\"on\";s:26:\"divi_gallery_layout_enable\";s:5:\"false\";s:18:\"divi_color_palette\";s:63:\"#696353|#f1ece9|#829869|#e0e4cb|#cdccba|#f6f8f7|#7d7a73|#7b6847\";s:15:\"divi_grab_image\";s:5:\"false\";s:15:\"divi_blog_style\";s:5:\"false\";s:12:\"divi_sidebar\";s:16:\"et_right_sidebar\";s:22:\"divi_shop_page_sidebar\";s:16:\"et_right_sidebar\";s:23:\"divi_show_facebook_icon\";s:5:\"false\";s:22:\"divi_show_twitter_icon\";s:5:\"false\";s:21:\"divi_show_google_icon\";s:5:\"false\";s:24:\"divi_show_instagram_icon\";s:5:\"false\";s:18:\"divi_show_rss_icon\";s:5:\"false\";s:17:\"divi_facebook_url\";s:1:\"#\";s:16:\"divi_twitter_url\";s:1:\"#\";s:15:\"divi_google_url\";s:1:\"#\";s:18:\"divi_instagram_url\";s:1:\"#\";s:12:\"divi_rss_url\";s:0:\"\";s:34:\"divi_woocommerce_archive_num_posts\";i:9;s:17:\"divi_catnum_posts\";i:6;s:21:\"divi_archivenum_posts\";i:5;s:20:\"divi_searchnum_posts\";i:5;s:17:\"divi_tagnum_posts\";i:5;s:16:\"divi_date_format\";s:6:\"M j, Y\";s:16:\"divi_use_excerpt\";s:5:\"false\";s:26:\"divi_responsive_shortcodes\";s:2:\"on\";s:33:\"divi_gf_enable_all_character_sets\";s:5:\"false\";s:16:\"divi_back_to_top\";s:2:\"on\";s:18:\"divi_smooth_scroll\";s:5:\"false\";s:25:\"divi_disable_translations\";s:5:\"false\";s:29:\"divi_enable_responsive_images\";s:2:\"on\";s:27:\"divi_minify_combine_scripts\";s:2:\"on\";s:26:\"divi_minify_combine_styles\";s:2:\"on\";s:15:\"divi_custom_css\";s:0:\"\";s:21:\"divi_enable_dropdowns\";s:2:\"on\";s:14:\"divi_home_link\";s:2:\"on\";s:15:\"divi_sort_pages\";s:10:\"post_title\";s:15:\"divi_order_page\";s:3:\"asc\";s:22:\"divi_tiers_shown_pages\";i:3;s:32:\"divi_enable_dropdowns_categories\";s:2:\"on\";s:21:\"divi_categories_empty\";s:2:\"on\";s:27:\"divi_tiers_shown_categories\";i:3;s:13:\"divi_sort_cat\";s:4:\"name\";s:14:\"divi_order_cat\";s:3:\"asc\";s:20:\"divi_disable_toptier\";s:5:\"false\";s:25:\"divi_scroll_to_anchor_fix\";s:5:\"false\";s:27:\"et_pb_post_type_integration\";a:3:{s:4:\"post\";s:2:\"on\";s:4:\"page\";s:2:\"on\";s:7:\"project\";s:2:\"on\";}s:21:\"et_pb_static_css_file\";s:2:\"on\";s:19:\"et_pb_css_in_footer\";s:3:\"off\";s:25:\"et_pb_product_tour_global\";s:2:\"on\";s:24:\"et_enable_classic_editor\";s:3:\"off\";s:14:\"divi_postinfo2\";a:0:{}s:22:\"divi_show_postcomments\";s:5:\"false\";s:15:\"divi_thumbnails\";s:2:\"on\";s:20:\"divi_page_thumbnails\";s:5:\"false\";s:23:\"divi_show_pagescomments\";s:5:\"false\";s:14:\"divi_postinfo1\";a:3:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";}s:21:\"divi_thumbnails_index\";s:2:\"on\";s:19:\"divi_seo_home_title\";s:5:\"false\";s:25:\"divi_seo_home_description\";s:5:\"false\";s:22:\"divi_seo_home_keywords\";s:5:\"false\";s:23:\"divi_seo_home_canonical\";s:5:\"false\";s:23:\"divi_seo_home_titletext\";s:0:\"\";s:29:\"divi_seo_home_descriptiontext\";s:0:\"\";s:26:\"divi_seo_home_keywordstext\";s:0:\"\";s:18:\"divi_seo_home_type\";s:27:\"BlogName | Blog description\";s:22:\"divi_seo_home_separate\";s:3:\" | \";s:21:\"divi_seo_single_title\";s:5:\"false\";s:27:\"divi_seo_single_description\";s:5:\"false\";s:24:\"divi_seo_single_keywords\";s:5:\"false\";s:25:\"divi_seo_single_canonical\";s:5:\"false\";s:27:\"divi_seo_single_field_title\";s:9:\"seo_title\";s:33:\"divi_seo_single_field_description\";s:15:\"seo_description\";s:30:\"divi_seo_single_field_keywords\";s:12:\"seo_keywords\";s:20:\"divi_seo_single_type\";s:21:\"Post title | BlogName\";s:24:\"divi_seo_single_separate\";s:3:\" | \";s:24:\"divi_seo_index_canonical\";s:5:\"false\";s:26:\"divi_seo_index_description\";s:5:\"false\";s:19:\"divi_seo_index_type\";s:24:\"Category name | BlogName\";s:23:\"divi_seo_index_separate\";s:3:\" | \";s:28:\"divi_integrate_header_enable\";s:2:\"on\";s:26:\"divi_integrate_body_enable\";s:2:\"on\";s:31:\"divi_integrate_singletop_enable\";s:2:\"on\";s:34:\"divi_integrate_singlebottom_enable\";s:2:\"on\";s:21:\"divi_integration_head\";s:0:\"\";s:21:\"divi_integration_body\";s:0:\"\";s:27:\"divi_integration_single_top\";s:0:\"\";s:30:\"divi_integration_single_bottom\";s:0:\"\";s:15:\"divi_468_enable\";s:5:\"false\";s:14:\"divi_468_image\";s:0:\"\";s:12:\"divi_468_url\";s:0:\"\";s:16:\"divi_468_adsense\";s:0:\"\";s:13:\"divi_menucats\";a:1:{i:0;i:1;}s:19:\"product_tour_status\";a:2:{i:1;s:3:\"off\";i:2;s:3:\"off\";}s:32:\"et_fb_pref_settings_bar_location\";s:6:\"bottom\";s:28:\"et_fb_pref_builder_animation\";s:4:\"true\";s:41:\"et_fb_pref_builder_display_modal_settings\";s:5:\"false\";s:39:\"et_fb_pref_builder_enable_dummy_content\";s:4:\"true\";s:21:\"et_fb_pref_event_mode\";s:5:\"hover\";s:28:\"et_fb_pref_limited_view_mode\";s:9:\"wireframe\";s:32:\"et_fb_pref_hide_disabled_modules\";s:5:\"false\";s:28:\"et_fb_pref_history_intervals\";i:1;s:29:\"et_fb_pref_page_creation_flow\";s:7:\"default\";s:42:\"et_fb_pref_quick_actions_always_start_with\";s:7:\"nothing\";s:44:\"et_fb_pref_quick_actions_show_recent_queries\";s:3:\"off\";s:39:\"et_fb_pref_quick_actions_recent_queries\";s:0:\"\";s:40:\"et_fb_pref_quick_actions_recent_category\";s:0:\"\";s:35:\"et_fb_pref_limited_modal_preference\";s:7:\"default\";s:30:\"et_fb_pref_modal_snap_location\";s:0:\"\";s:21:\"et_fb_pref_modal_snap\";s:5:\"false\";s:27:\"et_fb_pref_modal_fullscreen\";s:5:\"false\";s:32:\"et_fb_pref_modal_dimension_width\";i:1162;s:33:\"et_fb_pref_modal_dimension_height\";i:533;s:27:\"et_fb_pref_modal_position_x\";i:137;s:27:\"et_fb_pref_modal_position_y\";i:67;s:32:\"et_fb_pref_limited_toolbar_click\";s:5:\"false\";s:34:\"et_fb_pref_limited_toolbar_desktop\";s:4:\"true\";s:31:\"et_fb_pref_limited_toolbar_grid\";s:5:\"false\";s:32:\"et_fb_pref_limited_toolbar_hover\";s:5:\"false\";s:32:\"et_fb_pref_limited_toolbar_phone\";s:4:\"true\";s:33:\"et_fb_pref_limited_toolbar_tablet\";s:4:\"true\";s:36:\"et_fb_pref_limited_toolbar_wireframe\";s:4:\"true\";s:31:\"et_fb_pref_limited_toolbar_zoom\";s:4:\"true\";s:24:\"footer_widget_text_color\";s:7:\"#ffffff\";s:24:\"footer_widget_link_color\";s:7:\"#829869\";s:14:\"body_font_size\";i:18;s:16:\"body_font_height\";d:1.8;s:10:\"link_color\";s:7:\"#829869\";s:12:\"accent_color\";s:7:\"#f1ece9\";s:11:\"menu_height\";i:100;s:11:\"logo_height\";i:100;s:21:\"primary_nav_font_size\";i:18;s:18:\"body_header_height\";d:1.2;s:12:\"heading_font\";s:6:\"Nunito\";s:9:\"body_font\";s:6:\"Nunito\";s:13:\"nav_fullwidth\";b:0;s:16:\"primary_nav_font\";s:6:\"Nunito\";s:16:\"menu_link_active\";s:7:\"#f1ece9\";s:31:\"primary_nav_dropdown_line_color\";s:7:\"#829869\";s:9:\"footer_bg\";s:7:\"#696353\";s:26:\"footer_widget_header_color\";s:7:\"#e0e4cb\";s:21:\"bottom_bar_text_color\";s:7:\"#f1ece9\";s:28:\"bottom_bar_social_icon_color\";s:7:\"#f1ece9\";s:21:\"custom_footer_credits\";s:79:\"Site Designed by <strong> <a href=\"https://hpgmedia.com\">HPG Media</a></strong>\";s:20:\"bottom_bar_font_size\";i:16;s:14:\"primary_nav_bg\";s:7:\"#696353\";s:23:\"primary_nav_dropdown_bg\";s:7:\"#f1ece9\";s:16:\"secondary_nav_bg\";s:7:\"#f1ece9\";s:20:\"fixed_primary_nav_bg\";s:7:\"#696353\";s:22:\"fixed_secondary_nav_bg\";s:7:\"#f1ece9\";s:22:\"fixed_menu_link_active\";s:7:\"#f1ece9\";s:22:\"all_buttons_font_style\";s:4:\"bold\";s:12:\"divi_favicon\";s:0:\"\";s:20:\"et_fb_pref_view_mode\";s:7:\"desktop\";s:27:\"et_fb_pref_modal_preference\";s:7:\"default\";s:24:\"et_fb_pref_toolbar_click\";s:5:\"false\";s:26:\"et_fb_pref_toolbar_desktop\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_grid\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_hover\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_phone\";s:4:\"true\";s:25:\"et_fb_pref_toolbar_tablet\";s:4:\"true\";s:28:\"et_fb_pref_toolbar_wireframe\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_zoom\";s:4:\"true\";s:12:\"header_style\";s:5:\"split\";s:16:\"show_search_icon\";b:0;s:12:\"phone_number\";s:14:\"(816) 597-3331\";s:12:\"header_email\";s:24:\"anstineauction@gmail.com\";s:9:\"menu_link\";s:7:\"#000000\";s:8:\"hide_nav\";b:0;s:28:\"secondary_nav_text_color_new\";s:7:\"#000000\";s:22:\"primary_nav_font_style\";s:4:\"bold\";s:25:\"fixed_secondary_menu_link\";s:7:\"#000000\";s:23:\"secondary_nav_font_size\";i:14;s:24:\"secondary_nav_font_style\";s:0:\"\";s:15:\"fixed_menu_link\";s:7:\"#000000\";s:16:\"mobile_menu_link\";s:7:\"#000000\";s:21:\"mobile_primary_nav_bg\";s:7:\"#696353\";s:22:\"all_buttons_text_color\";s:7:\"#696353\";s:36:\"et_fb_pref_lv_modal_dimension_height\";i:1;s:35:\"et_fb_pref_lv_modal_dimension_width\";i:1;s:30:\"et_fb_pref_lv_modal_position_x\";i:1;s:30:\"et_fb_pref_lv_modal_position_y\";i:1;s:29:\"custom_defaults_migrated_flag\";b:1;s:34:\"et_fb_pref_responsive_tablet_width\";i:768;s:35:\"et_fb_pref_responsive_tablet_height\";i:0;s:33:\"et_fb_pref_responsive_phone_width\";i:400;s:34:\"et_fb_pref_responsive_phone_height\";i:0;s:35:\"et_fb_pref_responsive_minimum_width\";i:320;s:35:\"et_fb_pref_responsive_maximum_width\";i:980;s:46:\"et_fb_pref_builder_enable_visual_theme_builder\";s:4:\"true\";s:29:\"presets_storage_migrated_flag\";b:1;s:39:\"builder_global_presets_history_migrated\";b:1;}','yes'),(6220,'widget_aboutmewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6221,'widget_adsensewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6222,'widget_advwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(6223,'et_support_site_id','n3euR(PKG)NkYpVOgZi!','yes'),(6224,'et_safe_mode_plugins_whitelist','a:8:{i:0;s:15:\"etdev/etdev.php\";i:1;s:15:\"bloom/bloom.php\";i:2;s:19:\"monarch/monarch.php\";i:3;s:29:\"divi-builder/divi-builder.php\";i:4;s:27:\"ari-adminer/ari-adminer.php\";i:5;s:31:\"query-monitor/query-monitor.php\";i:6;s:27:\"woocommerce/woocommerce.php\";i:7;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";}','yes'),(6225,'et_support_center_installed','true','yes'),(6226,'et_images_temp_folder','/var/www/vhosts/kingsvillelivestock.com/httpdocs/wp-content/uploads/et_temp','yes'),(6227,'et_schedule_clean_images_last_time','1702487149','yes'),(6228,'et_bfb_settings','a:2:{s:10:\"enable_bfb\";s:2:\"on\";s:10:\"toggle_bfb\";s:2:\"on\";}','yes'),(6233,'_site_transient_avada_autoloader_paths_8adbb9cce26cdaf9ed5c43fe07c5227f','a:43:{s:28:\"Fusion_Builder_Redux_Options\";s:134:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-fusion-builder-redux-options.php\";s:11:\"Avada_Admin\";s:117:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-admin.php\";s:14:\"Avada_Settings\";s:120:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-settings.php\";s:10:\"Avada_Init\";s:116:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-init.php\";s:17:\"Avada_Social_Icon\";s:123:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-social-icon.php\";s:20:\"Avada_Social_Sharing\";s:126:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-social-sharing.php\";s:14:\"Avada_Template\";s:120:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-template.php\";s:10:\"Avada_Blog\";s:116:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-blog.php\";s:12:\"Avada_Images\";s:118:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-images.php\";s:10:\"Avada_Head\";s:116:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-head.php\";s:12:\"Avada_Layout\";s:118:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-layout.php\";s:15:\"Avada_GoogleMap\";s:121:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-googlemap.php\";s:22:\"Avada_Remote_Installer\";s:128:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-remote-installer.php\";s:20:\"Avada_Sermon_Manager\";s:126:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-sermon-manager.php\";s:20:\"Avada_Privacy_Embeds\";s:126:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-privacy-embeds.php\";s:9:\"Avada_PWA\";s:115:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-pwa.php\";s:19:\"Avada_Importer_Data\";s:134:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/importer/class-avada-importer-data.php\";s:30:\"Avada_Multiple_Featured_Images\";s:136:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-multiple-featured-images.php\";s:14:\"Avada_Sidebars\";s:120:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-sidebars.php\";s:19:\"Avada_Admin_Notices\";s:125:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-admin-notices.php\";s:18:\"Avada_Widget_Style\";s:124:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-widget-style.php\";s:18:\"Avada_Page_Options\";s:124:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-page-options.php\";s:11:\"Avada_Fonts\";s:117:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-fonts.php\";s:13:\"Avada_Scripts\";s:119:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-scripts.php\";s:27:\"Avada_TGM_Plugin_Activation\";s:133:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-tgm-plugin-activation.php\";s:24:\"Avada_Megamenu_Framework\";s:130:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-megamenu-framework.php\";s:14:\"Avada_Megamenu\";s:120:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-megamenu.php\";s:16:\"Avada_Nav_Walker\";s:122:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-nav-walker.php\";s:25:\"Avada_Nav_Walker_Megamenu\";s:131:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-nav-walker-megamenu.php\";s:17:\"Avada_Dynamic_CSS\";s:123:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-dynamic-css.php\";s:12:\"Avada_Helper\";s:118:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-helper.php\";s:24:\"Fusion_Widget_Ad_125_125\";s:137:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/widget/class-fusion-widget-ad-125-125.php\";s:20:\"Fusion_Widget_Author\";s:133:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/widget/class-fusion-widget-author.php\";s:26:\"Fusion_Widget_Contact_Info\";s:139:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/widget/class-fusion-widget-contact-info.php\";s:18:\"Fusion_Widget_Tabs\";s:131:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/widget/class-fusion-widget-tabs.php\";s:26:\"Fusion_Widget_Recent_Works\";s:139:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/widget/class-fusion-widget-recent-works.php\";s:20:\"Fusion_Widget_Tweets\";s:133:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/widget/class-fusion-widget-tweets.php\";s:20:\"Fusion_Widget_Flickr\";s:133:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/widget/class-fusion-widget-flickr.php\";s:26:\"Fusion_Widget_Social_Links\";s:139:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/widget/class-fusion-widget-social-links.php\";s:27:\"Fusion_Widget_Facebook_Page\";s:140:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/widget/class-fusion-widget-facebook-page.php\";s:18:\"Fusion_Widget_Menu\";s:131:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/widget/class-fusion-widget-menu.php\";s:27:\"Fusion_Widget_Vertical_Menu\";s:140:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/widget/class-fusion-widget-vertical-menu.php\";s:13:\"Avada_Options\";s:119:\"/var/www/vhosts/hpgmediatest.com/httpdocs/kingsville-livestock/wp-content/themes/Avada/includes/class-avada-options.php\";}','no'),(6234,'et_pb_builder_options','a:2:{i:0;b:0;s:35:\"email_provider_credentials_migrated\";b:1;}','yes'),(6236,'et_support_center_setup_done','processed','yes'),(6243,'et_google_api_settings','a:3:{s:7:\"api_key\";s:39:\"AIzaSyA5vwi3oNaA8RaPgSDYZtaJvEaDomjbd7M\";s:26:\"enqueue_google_maps_script\";s:2:\"on\";s:16:\"use_google_fonts\";s:2:\"on\";}','yes'),(6244,'et_automatic_updates_options','a:2:{s:8:\"username\";s:12:\"justinwegner\";s:7:\"api_key\";s:40:\"8cd41a3eef52e650367e0c24b3abb067d8d6f1f7\";}','no'),(6261,'et_account_status','active','no'),(6268,'et_account_status_last_checked','1587360833','no'),(6646,'classic-editor-replace','classic','yes'),(6647,'classic-editor-allow-users','disallow','yes'),(6796,'layout_category_children','a:0:{}','yes'),(7234,'updraft_remotesites','','yes'),(7235,'updraft_migrator_localkeys','','yes'),(7236,'updraft_central_localkeys','','yes'),(7237,'updraft_autobackup_default','0','yes'),(7238,'updraft_dropbox','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-9d5b3552ae9ff8f1ebcde3f0bbd0d75a\";a:4:{s:6:\"appkey\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:6:\"folder\";s:0:\"\";s:15:\"tk_access_token\";s:1:\"0\";}}}','yes'),(7239,'updraft_googledrive','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-e3f3e56f6ee8d2e518d811eb99f67427\";a:4:{s:8:\"clientid\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:5:\"token\";s:0:\"\";s:6:\"folder\";s:11:\"UpdraftPlus\";}}}','yes'),(7240,'updraftplus_tmp_googledrive_access_token','','yes'),(7241,'updraftplus_dismissedautobackup','','yes'),(7242,'dismissed_general_notices_until','','yes'),(7243,'dismissed_season_notices_until','','yes'),(7244,'updraftplus_dismissedexpiry','','yes'),(7245,'updraftplus_dismisseddashnotice','','yes'),(7246,'updraft_interval','weekly','yes'),(7247,'updraft_interval_increments','daily','yes'),(7250,'updraft_interval_database','weekly','yes'),(7251,'updraft_retain','2','yes'),(7252,'updraft_retain_db','2','yes'),(7253,'updraft_encryptionphrase','','yes'),(7254,'updraft_service','s3','yes'),(7255,'updraft_googledrive_clientid','','yes'),(7256,'updraft_googledrive_secret','','yes'),(7257,'updraft_googledrive_remotepath','','yes'),(7258,'updraft_ftp','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-4315de7f5b5ff59a5b1ec35db54826c4\";a:5:{s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"path\";s:0:\"\";s:7:\"passive\";s:1:\"1\";}}}','yes'),(7259,'updraft_backblaze','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(7260,'updraft_server_address','','yes'),(7261,'updraft_dir','updraft','yes'),(7262,'updraft_email','','yes'),(7263,'updraft_delete_local','0','yes'),(7264,'updraft_debug_mode','0','yes'),(7265,'updraft_include_plugins','1','yes'),(7266,'updraft_include_themes','1','yes'),(7267,'updraft_include_uploads','1','yes'),(7268,'updraft_include_others','1','yes'),(7269,'updraft_include_wpcore','0','yes'),(7270,'updraft_include_wpcore_exclude','','yes'),(7271,'updraft_include_more','0','yes'),(7272,'updraft_include_blogs','','yes'),(7273,'updraft_include_mu-plugins','','yes'),(7274,'updraft_auto_updates','0','yes'),(7275,'updraft_include_others_exclude','','yes'),(7276,'updraft_include_uploads_exclude','','yes'),(7277,'updraft_lastmessage','Table b78GM7Ml_options: Total expected rows (approximate): 1285 (Nov 29 18:14:04)','yes'),(7278,'updraft_googledrive_token','','yes'),(7279,'updraft_dropboxtk_request_token','','yes'),(7280,'updraft_dropboxtk_access_token','','yes'),(7281,'updraft_adminlocking','','yes'),(7282,'updraft_updraftvault','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-77cb8b00b9e8e237a540468ec0c6e6c4\";a:3:{s:5:\"token\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"quota\";i:-1;}}}','yes'),(7283,'updraft_retain_extrarules','a:0:{}','yes'),(7284,'updraft_googlecloud','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(7285,'updraft_include_more_path','a:0:{}','yes'),(7286,'updraft_split_every','25','yes'),(7287,'updraft_ssl_nossl','0','yes'),(7288,'updraft_backupdb_nonwp','0','yes'),(7289,'updraft_extradbs','a:0:{}','yes'),(7291,'updraft_last_backup','a:5:{s:11:\"backup_time\";i:1700676936;s:12:\"backup_array\";a:46:{s:7:\"plugins\";a:1:{i:0;s:77:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-plugins.zip\";}s:12:\"plugins-size\";i:22399274;s:6:\"themes\";a:1:{i:0;s:76:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-themes.zip\";}s:11:\"themes-size\";i:16502004;s:7:\"uploads\";a:36:{i:0;s:77:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads.zip\";i:1;s:78:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads2.zip\";i:2;s:78:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads3.zip\";i:3;s:78:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads4.zip\";i:4;s:78:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads5.zip\";i:5;s:78:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads6.zip\";i:6;s:78:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads7.zip\";i:7;s:78:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads8.zip\";i:8;s:78:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads9.zip\";i:9;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads10.zip\";i:10;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads11.zip\";i:11;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads12.zip\";i:12;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads13.zip\";i:13;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads14.zip\";i:14;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads15.zip\";i:15;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads16.zip\";i:16;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads17.zip\";i:17;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads18.zip\";i:18;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads19.zip\";i:19;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads20.zip\";i:20;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads21.zip\";i:21;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads22.zip\";i:22;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads23.zip\";i:23;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads24.zip\";i:24;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads25.zip\";i:25;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads26.zip\";i:26;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads27.zip\";i:27;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads28.zip\";i:28;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads29.zip\";i:29;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads30.zip\";i:30;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads31.zip\";i:31;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads32.zip\";i:32;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads33.zip\";i:33;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads34.zip\";i:34;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads35.zip\";i:35;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads36.zip\";}s:12:\"uploads-size\";i:26277066;s:13:\"uploads1-size\";i:26345755;s:13:\"uploads2-size\";i:26280709;s:13:\"uploads3-size\";i:26457283;s:13:\"uploads4-size\";i:26416296;s:13:\"uploads5-size\";i:26289951;s:13:\"uploads6-size\";i:26272485;s:13:\"uploads7-size\";i:26279810;s:13:\"uploads8-size\";i:26414206;s:13:\"uploads9-size\";i:26284118;s:14:\"uploads10-size\";i:26267820;s:14:\"uploads11-size\";i:26396306;s:14:\"uploads12-size\";i:26425922;s:14:\"uploads13-size\";i:27562789;s:14:\"uploads14-size\";i:26966590;s:14:\"uploads15-size\";i:26248640;s:14:\"uploads16-size\";i:26175329;s:14:\"uploads17-size\";i:28580668;s:14:\"uploads18-size\";i:26200094;s:14:\"uploads19-size\";i:26437204;s:14:\"uploads20-size\";i:26174394;s:14:\"uploads21-size\";i:26199447;s:14:\"uploads22-size\";i:26481149;s:14:\"uploads23-size\";i:26748640;s:14:\"uploads24-size\";i:26171250;s:14:\"uploads25-size\";i:26476119;s:14:\"uploads26-size\";i:26391768;s:14:\"uploads27-size\";i:26367747;s:14:\"uploads28-size\";i:26427772;s:14:\"uploads29-size\";i:26424467;s:14:\"uploads30-size\";i:26371436;s:14:\"uploads31-size\";i:26668944;s:14:\"uploads32-size\";i:26394350;s:14:\"uploads33-size\";i:26550477;s:14:\"uploads34-size\";i:26233954;s:14:\"uploads35-size\";i:13894421;s:6:\"others\";a:1:{i:0;s:76:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-others.zip\";}s:11:\"others-size\";i:14610573;s:2:\"db\";s:71:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-db.gz\";s:7:\"db-size\";i:3382779;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:40:{s:8:\"plugins0\";s:40:\"166308a0ad36d63398eb3ec633cbd6be489f0af4\";s:7:\"themes0\";s:40:\"6285c5cb40da8dcdc1a967cf5b9446380b15fad4\";s:8:\"uploads0\";s:40:\"35f8deda8a7f60aa560d4fc22a323173cf023a25\";s:8:\"uploads1\";s:40:\"b39a7270f9c52de120a6defed684ce820f44619b\";s:8:\"uploads2\";s:40:\"6678f6ff1efe658d4ee0bcd4644b09b0801df352\";s:8:\"uploads3\";s:40:\"603ee717f285cdd3dc87f93c8598656282eba5c8\";s:8:\"uploads4\";s:40:\"fe21089c22e9486e1f229f72b9a67e00bd058bc6\";s:8:\"uploads5\";s:40:\"bf5ec93319f6ce68278d4d83f9dfb7f71b6152d0\";s:8:\"uploads6\";s:40:\"0f3a98d3766e230731cfd786b836e7a8c06fb698\";s:8:\"uploads7\";s:40:\"d088fd043fe2a2b9957a9773156fa603c22e18e1\";s:8:\"uploads8\";s:40:\"812f54d945ca279a831d5c24c00a1618fa6d4412\";s:8:\"uploads9\";s:40:\"bcbda4d8394d129d40ab6b5e51e8d5abfabf8d7d\";s:9:\"uploads10\";s:40:\"4f6a1719183e87a656fe1969edf4bc9a6a0eb7ae\";s:9:\"uploads11\";s:40:\"1e72efdc464d6b3269c3e3e806f747f8903913cf\";s:9:\"uploads12\";s:40:\"3b193afb6bccba9462e098c78832cd1f0b24d252\";s:9:\"uploads13\";s:40:\"80b9755102fa4c7e781b55c87ceba52eb4141ae9\";s:9:\"uploads14\";s:40:\"8b83293cd14d0e8c27a6ba516a8ea166449543ab\";s:9:\"uploads15\";s:40:\"b80274cd41b4d40b5a77660611ae65a7b91506d6\";s:9:\"uploads16\";s:40:\"1e8e99825a367963878cb70d06d19fd7fc2cbbb6\";s:9:\"uploads17\";s:40:\"9e76e6cc2b9c91de20bcd3286653f14d5035d5e2\";s:9:\"uploads18\";s:40:\"b3d6af233edb1c8d7170ee9cb118154a4033fda5\";s:9:\"uploads19\";s:40:\"3879768fea4b6628871a5b9f55110347e29ae032\";s:9:\"uploads20\";s:40:\"fd1a9187a68d724b98820b7608bea1c7aafce52f\";s:9:\"uploads21\";s:40:\"c72c61cc736e48ee4a0d3635ab6f057919c0f03a\";s:9:\"uploads22\";s:40:\"895730d6e6d69970a22d7a87738576b0055f7ced\";s:9:\"uploads23\";s:40:\"93a17c01303c1ddaa9eb9c48a8b982c68f94c0c3\";s:9:\"uploads24\";s:40:\"91d95178275c42ef874607a3baf1d5c4224839e6\";s:9:\"uploads25\";s:40:\"fb62bcca736457279c0a8a99ccfbe206606fd267\";s:9:\"uploads26\";s:40:\"f0c53c2e6ba9c1c0237f433e9e48bef96d620944\";s:9:\"uploads27\";s:40:\"7d45507ff9eafdd4bb19e8ce90bc507839566046\";s:9:\"uploads28\";s:40:\"7595388e68187272f0655eb9bb165f2a3dd7fedb\";s:9:\"uploads29\";s:40:\"a51bd62c6d486699b24bf3d4d704bec04602bcd4\";s:9:\"uploads30\";s:40:\"8aa89527596e4b05f7128597a539efdb87e6ec49\";s:9:\"uploads31\";s:40:\"50c0c6c8225ca2da5d5bbe6e83e8c47078837760\";s:9:\"uploads32\";s:40:\"d781dc1cbdddfdae0772e688000e2a8654968212\";s:9:\"uploads33\";s:40:\"4542c7d09110f9a53a7937125533542c1d55b91f\";s:9:\"uploads34\";s:40:\"c6106331c4f16165072159d26cc1705fb2e63f41\";s:9:\"uploads35\";s:40:\"2393972b8c3d7350ac113bf4befc3640ce428b57\";s:7:\"others0\";s:40:\"62f74e69584b18d8cb6c8d93d74c54b0be248d7f\";s:3:\"db0\";s:40:\"1fc3fb21e7009491ef38227c5088a0455f20960a\";}s:6:\"sha256\";a:40:{s:8:\"plugins0\";s:64:\"98973f6d827594ea1eea0f5188288f0c4a4049b21ce9e456b604ced3dcd9d576\";s:7:\"themes0\";s:64:\"f8c67cb97f583cbfac811e444de641e24cbd5266516b93dfd201ffb93b5ae142\";s:8:\"uploads0\";s:64:\"c6343ed5edf15def8e8d91ac2b7a436bd0c5ff0ccc265835510e10a2b1e1f90b\";s:8:\"uploads1\";s:64:\"150526d65edecb844ce11fd57acb3fe0eb558da1a451e1fd641cc6ccd9166c39\";s:8:\"uploads2\";s:64:\"5f0102347f7a60652c15e625ec242b35849e0385b9dab43759b2280fdb26479c\";s:8:\"uploads3\";s:64:\"7adc041d65b688005bece84e3a209ec36edca761eb80667b6745af43b37480cf\";s:8:\"uploads4\";s:64:\"fe9e61851973fdd6e212bde074b32d226b305a2fa54869087a17a87f35c809ef\";s:8:\"uploads5\";s:64:\"223fdb9daa5776beeb41e3bd75641d40e1b913154667b01be42a8cf81df58ae8\";s:8:\"uploads6\";s:64:\"d1b1eb26a0106c9ed56b8f2d4d9d2a3c3464cf76e9d032804b564867b9f7ab6a\";s:8:\"uploads7\";s:64:\"faa7ce325f8d6f5e8f526de8f2b2a2e5f9c764c31e7e7070202aad180774ee16\";s:8:\"uploads8\";s:64:\"4952a0917550b1dbc29d7e15a2dd62b429766cc26d42d34e148f123663bffa6d\";s:8:\"uploads9\";s:64:\"3ea97264305ea8ba06b63ada5f416f85863a52928056854d4897e13a0370c160\";s:9:\"uploads10\";s:64:\"956f65484d3755cc35c18ec4b0b7daf5f012ba0fc22732cee03b130b47632637\";s:9:\"uploads11\";s:64:\"632d6f382dbcb8833b34934b4c8f3ac7e98cac53987043be695bddcc2ab9a51d\";s:9:\"uploads12\";s:64:\"64b6c9475aa0f22c4314436b4e277c9eccddf2609fffd211033b45e11be91b4e\";s:9:\"uploads13\";s:64:\"d33e05022a5b20ceb2171924e65495fd0983228dc7647e46e1e8a8f23e2ff202\";s:9:\"uploads14\";s:64:\"375f901701d1e4a66836be2f51f6df812a4c5e56b9c22f24181e047527fe5fe2\";s:9:\"uploads15\";s:64:\"7dd90ecfd830229620a79387083855dd2d21282dcfde2bb6b90c0c1995b59177\";s:9:\"uploads16\";s:64:\"95b01fd51755f64c816e5b11366d2ad8d5fcef82a2c821418b30c7786e842cad\";s:9:\"uploads17\";s:64:\"e434626dc0ead069662366eb3c97bd62cbead872b1337148f6723a51a0ce8a7c\";s:9:\"uploads18\";s:64:\"c083de86edfbb5d1379ec272aef18a49fc5db86904f3e68dce4d25ce36078e9f\";s:9:\"uploads19\";s:64:\"14217008a4bf15ae1802ddd6c97aeabe39615e6ace6da079b7d636f78c4ff0d0\";s:9:\"uploads20\";s:64:\"900213c6ac81665b35ece9f199c55e6e7378c4ab4adff1f0f3256c5b4f1a3717\";s:9:\"uploads21\";s:64:\"48d328916b534b3ff47147f009c2b0506003794ead96f9d9bc730e13a88f170a\";s:9:\"uploads22\";s:64:\"d8ba23d24aee779c6b48b483dbfabe9992261eba280e330e7f255816974d34f6\";s:9:\"uploads23\";s:64:\"f26bcbd2dfd26d43ec6b0b6ab54e7baaba4855a4a4685c587790b50571afc183\";s:9:\"uploads24\";s:64:\"35d7b50d4265f6806177bee552a8ef7ee211bdd1112cd15df1fab154bf8aa186\";s:9:\"uploads25\";s:64:\"10182d5cb3b75f1f273255a4cedadfd974169276bdd318e89cea5f85061fc4e3\";s:9:\"uploads26\";s:64:\"572e807ffe0e3f297d6174b9a4f5e1cac1aa281799c87777c0383d57a00d423e\";s:9:\"uploads27\";s:64:\"df4492f45e3630bcf653076e58cc932aa5be8f633b8769913d947a332cff1a5e\";s:9:\"uploads28\";s:64:\"1ae3eab4d4ae9da549520855d76c26d13f9c5d1a34ef655976ec3fbca000de79\";s:9:\"uploads29\";s:64:\"027de32a641cceee84eba4346ea2a4cebc4e106651d82b6e9ef65224153f8b62\";s:9:\"uploads30\";s:64:\"ca9b3f3be1ec24005ae3a90dd25c75d323024662abe3c0d2dadb504c321bfad0\";s:9:\"uploads31\";s:64:\"ed5f9d9e435ac9e349f1c930c6c9ffff446b85161892064f8e99e44577e15f12\";s:9:\"uploads32\";s:64:\"a09cb8517eb112e326c3ffbe594440f103e38e706ce1b3380f9e7765d4f1a697\";s:9:\"uploads33\";s:64:\"4cc977573fa4b768ab8e5090f07738073dd19ef880692b5a293003fefdedd38b\";s:9:\"uploads34\";s:64:\"254ea0e2b4bc03f4427ab76d97385deab0733e70b5baed49bfe25a0698613205\";s:9:\"uploads35\";s:64:\"40e4b9b3915ec7652467ebeecdb7819a9978e1b2736b24b38045bfc35852ad06\";s:7:\"others0\";s:64:\"3064208589a0549cf6fed96c002d56d5313820add14b69b9310ddb1203282a8f\";s:3:\"db0\";s:64:\"5bc4d3c940655b119a6a748e5099e477f1f118dc42cdee26b6cf77df7c66c504\";}}}s:7:\"success\";i:1;s:6:\"errors\";a:0:{}s:12:\"backup_nonce\";s:12:\"b165b27aca75\";}','yes'),(7292,'updraft_starttime_files','04:19','yes'),(7293,'updraft_starttime_db','04:19','yes'),(7294,'updraft_startday_db','0','yes'),(7295,'updraft_startday_files','0','yes'),(7296,'updraft_sftp','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(7297,'updraft_s3','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-090f8201fa54bf20af187690d0b1c07a\";a:4:{s:9:\"accesskey\";s:20:\"AKIAIKR54UCKJDR3HCGA\";s:9:\"secretkey\";s:40:\"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\";s:4:\"path\";s:35:\"hpgmedia/backups/kingsvilleauctions\";s:16:\"instance_enabled\";i:1;}}}','yes'),(7298,'updraft_s3generic','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-f3c1bd45406ef14e51fd911446df3fb6\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:0:\"\";}}}','yes'),(7299,'updraft_dreamhost','','yes'),(7300,'updraft_s3generic_login','','yes'),(7301,'updraft_s3generic_pass','','yes'),(7302,'updraft_s3generic_remote_path','','yes'),(7303,'updraft_s3generic_endpoint','','yes'),(7304,'updraft_webdav','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(7305,'updraft_openstack','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-ea2d6b63349e63a56e9ce2e0df6fa988\";a:6:{s:7:\"authurl\";s:0:\"\";s:6:\"tenant\";s:0:\"\";s:6:\"region\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(7306,'updraft_onedrive','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(7307,'updraft_azure','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(7308,'updraft_cloudfiles','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-d23676fe9312689a96c04554ffaf6972\";a:5:{s:7:\"authurl\";s:35:\"https://auth.api.rackspacecloud.com\";s:6:\"region\";s:3:\"DFW\";s:4:\"user\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(7309,'updraft_cloudfiles_user','','yes'),(7310,'updraft_cloudfiles_apikey','','yes'),(7311,'updraft_cloudfiles_path','','yes'),(7312,'updraft_cloudfiles_authurl','','yes'),(7313,'updraft_ssl_useservercerts','0','yes'),(7314,'updraft_ssl_disableverify','0','yes'),(7315,'updraft_s3_login','','yes'),(7316,'updraft_s3_pass','','yes'),(7317,'updraft_s3_remote_path','','yes'),(7318,'updraft_dreamobjects_login','','yes'),(7319,'updraft_dreamobjects_pass','','yes'),(7320,'updraft_dreamobjects_remote_path','','yes'),(7321,'updraft_dreamobjects','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-4b80e8426f54afda002d641100291656\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:26:\"objects-us-east-1.dream.io\";}}}','yes'),(7322,'updraft_report_warningsonly','a:0:{}','yes'),(7323,'updraft_report_wholebackup','a:0:{}','yes'),(7324,'updraft_report_dbbackup','a:0:{}','yes'),(7325,'updraft_log_syslog','0','yes'),(7326,'updraft_extradatabases','','yes'),(7327,'updraftplus_tour_cancelled_on','backup_now','yes'),(7328,'updraftplus_version','2.15.7.1','yes'),(7329,'updraft_backup_history','a:3:{i:1700676936;a:53:{s:7:\"plugins\";a:1:{i:0;s:77:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-plugins.zip\";}s:12:\"plugins-size\";i:22399274;s:6:\"themes\";a:1:{i:0;s:76:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-themes.zip\";}s:11:\"themes-size\";i:16502004;s:7:\"uploads\";a:36:{i:0;s:77:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads.zip\";i:1;s:78:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads2.zip\";i:2;s:78:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads3.zip\";i:3;s:78:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads4.zip\";i:4;s:78:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads5.zip\";i:5;s:78:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads6.zip\";i:6;s:78:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads7.zip\";i:7;s:78:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads8.zip\";i:8;s:78:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads9.zip\";i:9;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads10.zip\";i:10;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads11.zip\";i:11;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads12.zip\";i:12;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads13.zip\";i:13;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads14.zip\";i:14;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads15.zip\";i:15;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads16.zip\";i:16;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads17.zip\";i:17;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads18.zip\";i:18;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads19.zip\";i:19;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads20.zip\";i:20;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads21.zip\";i:21;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads22.zip\";i:22;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads23.zip\";i:23;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads24.zip\";i:24;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads25.zip\";i:25;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads26.zip\";i:26;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads27.zip\";i:27;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads28.zip\";i:28;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads29.zip\";i:29;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads30.zip\";i:30;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads31.zip\";i:31;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads32.zip\";i:32;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads33.zip\";i:33;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads34.zip\";i:34;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads35.zip\";i:35;s:79:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-uploads36.zip\";}s:12:\"uploads-size\";i:26277066;s:13:\"uploads1-size\";i:26345755;s:13:\"uploads2-size\";i:26280709;s:13:\"uploads3-size\";i:26457283;s:13:\"uploads4-size\";i:26416296;s:13:\"uploads5-size\";i:26289951;s:13:\"uploads6-size\";i:26272485;s:13:\"uploads7-size\";i:26279810;s:13:\"uploads8-size\";i:26414206;s:13:\"uploads9-size\";i:26284118;s:14:\"uploads10-size\";i:26267820;s:14:\"uploads11-size\";i:26396306;s:14:\"uploads12-size\";i:26425922;s:14:\"uploads13-size\";i:27562789;s:14:\"uploads14-size\";i:26966590;s:14:\"uploads15-size\";i:26248640;s:14:\"uploads16-size\";i:26175329;s:14:\"uploads17-size\";i:28580668;s:14:\"uploads18-size\";i:26200094;s:14:\"uploads19-size\";i:26437204;s:14:\"uploads20-size\";i:26174394;s:14:\"uploads21-size\";i:26199447;s:14:\"uploads22-size\";i:26481149;s:14:\"uploads23-size\";i:26748640;s:14:\"uploads24-size\";i:26171250;s:14:\"uploads25-size\";i:26476119;s:14:\"uploads26-size\";i:26391768;s:14:\"uploads27-size\";i:26367747;s:14:\"uploads28-size\";i:26427772;s:14:\"uploads29-size\";i:26424467;s:14:\"uploads30-size\";i:26371436;s:14:\"uploads31-size\";i:26668944;s:14:\"uploads32-size\";i:26394350;s:14:\"uploads33-size\";i:26550477;s:14:\"uploads34-size\";i:26233954;s:14:\"uploads35-size\";i:13894421;s:6:\"others\";a:1:{i:0;s:76:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-others.zip\";}s:11:\"others-size\";i:14610573;s:2:\"db\";s:71:\"backup_2023-11-22-1815_Kingsville_Livestock_Auctions_b165b27aca75-db.gz\";s:7:\"db-size\";i:3382779;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:40:{s:8:\"plugins0\";s:40:\"166308a0ad36d63398eb3ec633cbd6be489f0af4\";s:7:\"themes0\";s:40:\"6285c5cb40da8dcdc1a967cf5b9446380b15fad4\";s:8:\"uploads0\";s:40:\"35f8deda8a7f60aa560d4fc22a323173cf023a25\";s:8:\"uploads1\";s:40:\"b39a7270f9c52de120a6defed684ce820f44619b\";s:8:\"uploads2\";s:40:\"6678f6ff1efe658d4ee0bcd4644b09b0801df352\";s:8:\"uploads3\";s:40:\"603ee717f285cdd3dc87f93c8598656282eba5c8\";s:8:\"uploads4\";s:40:\"fe21089c22e9486e1f229f72b9a67e00bd058bc6\";s:8:\"uploads5\";s:40:\"bf5ec93319f6ce68278d4d83f9dfb7f71b6152d0\";s:8:\"uploads6\";s:40:\"0f3a98d3766e230731cfd786b836e7a8c06fb698\";s:8:\"uploads7\";s:40:\"d088fd043fe2a2b9957a9773156fa603c22e18e1\";s:8:\"uploads8\";s:40:\"812f54d945ca279a831d5c24c00a1618fa6d4412\";s:8:\"uploads9\";s:40:\"bcbda4d8394d129d40ab6b5e51e8d5abfabf8d7d\";s:9:\"uploads10\";s:40:\"4f6a1719183e87a656fe1969edf4bc9a6a0eb7ae\";s:9:\"uploads11\";s:40:\"1e72efdc464d6b3269c3e3e806f747f8903913cf\";s:9:\"uploads12\";s:40:\"3b193afb6bccba9462e098c78832cd1f0b24d252\";s:9:\"uploads13\";s:40:\"80b9755102fa4c7e781b55c87ceba52eb4141ae9\";s:9:\"uploads14\";s:40:\"8b83293cd14d0e8c27a6ba516a8ea166449543ab\";s:9:\"uploads15\";s:40:\"b80274cd41b4d40b5a77660611ae65a7b91506d6\";s:9:\"uploads16\";s:40:\"1e8e99825a367963878cb70d06d19fd7fc2cbbb6\";s:9:\"uploads17\";s:40:\"9e76e6cc2b9c91de20bcd3286653f14d5035d5e2\";s:9:\"uploads18\";s:40:\"b3d6af233edb1c8d7170ee9cb118154a4033fda5\";s:9:\"uploads19\";s:40:\"3879768fea4b6628871a5b9f55110347e29ae032\";s:9:\"uploads20\";s:40:\"fd1a9187a68d724b98820b7608bea1c7aafce52f\";s:9:\"uploads21\";s:40:\"c72c61cc736e48ee4a0d3635ab6f057919c0f03a\";s:9:\"uploads22\";s:40:\"895730d6e6d69970a22d7a87738576b0055f7ced\";s:9:\"uploads23\";s:40:\"93a17c01303c1ddaa9eb9c48a8b982c68f94c0c3\";s:9:\"uploads24\";s:40:\"91d95178275c42ef874607a3baf1d5c4224839e6\";s:9:\"uploads25\";s:40:\"fb62bcca736457279c0a8a99ccfbe206606fd267\";s:9:\"uploads26\";s:40:\"f0c53c2e6ba9c1c0237f433e9e48bef96d620944\";s:9:\"uploads27\";s:40:\"7d45507ff9eafdd4bb19e8ce90bc507839566046\";s:9:\"uploads28\";s:40:\"7595388e68187272f0655eb9bb165f2a3dd7fedb\";s:9:\"uploads29\";s:40:\"a51bd62c6d486699b24bf3d4d704bec04602bcd4\";s:9:\"uploads30\";s:40:\"8aa89527596e4b05f7128597a539efdb87e6ec49\";s:9:\"uploads31\";s:40:\"50c0c6c8225ca2da5d5bbe6e83e8c47078837760\";s:9:\"uploads32\";s:40:\"d781dc1cbdddfdae0772e688000e2a8654968212\";s:9:\"uploads33\";s:40:\"4542c7d09110f9a53a7937125533542c1d55b91f\";s:9:\"uploads34\";s:40:\"c6106331c4f16165072159d26cc1705fb2e63f41\";s:9:\"uploads35\";s:40:\"2393972b8c3d7350ac113bf4befc3640ce428b57\";s:7:\"others0\";s:40:\"62f74e69584b18d8cb6c8d93d74c54b0be248d7f\";s:3:\"db0\";s:40:\"1fc3fb21e7009491ef38227c5088a0455f20960a\";}s:6:\"sha256\";a:40:{s:8:\"plugins0\";s:64:\"98973f6d827594ea1eea0f5188288f0c4a4049b21ce9e456b604ced3dcd9d576\";s:7:\"themes0\";s:64:\"f8c67cb97f583cbfac811e444de641e24cbd5266516b93dfd201ffb93b5ae142\";s:8:\"uploads0\";s:64:\"c6343ed5edf15def8e8d91ac2b7a436bd0c5ff0ccc265835510e10a2b1e1f90b\";s:8:\"uploads1\";s:64:\"150526d65edecb844ce11fd57acb3fe0eb558da1a451e1fd641cc6ccd9166c39\";s:8:\"uploads2\";s:64:\"5f0102347f7a60652c15e625ec242b35849e0385b9dab43759b2280fdb26479c\";s:8:\"uploads3\";s:64:\"7adc041d65b688005bece84e3a209ec36edca761eb80667b6745af43b37480cf\";s:8:\"uploads4\";s:64:\"fe9e61851973fdd6e212bde074b32d226b305a2fa54869087a17a87f35c809ef\";s:8:\"uploads5\";s:64:\"223fdb9daa5776beeb41e3bd75641d40e1b913154667b01be42a8cf81df58ae8\";s:8:\"uploads6\";s:64:\"d1b1eb26a0106c9ed56b8f2d4d9d2a3c3464cf76e9d032804b564867b9f7ab6a\";s:8:\"uploads7\";s:64:\"faa7ce325f8d6f5e8f526de8f2b2a2e5f9c764c31e7e7070202aad180774ee16\";s:8:\"uploads8\";s:64:\"4952a0917550b1dbc29d7e15a2dd62b429766cc26d42d34e148f123663bffa6d\";s:8:\"uploads9\";s:64:\"3ea97264305ea8ba06b63ada5f416f85863a52928056854d4897e13a0370c160\";s:9:\"uploads10\";s:64:\"956f65484d3755cc35c18ec4b0b7daf5f012ba0fc22732cee03b130b47632637\";s:9:\"uploads11\";s:64:\"632d6f382dbcb8833b34934b4c8f3ac7e98cac53987043be695bddcc2ab9a51d\";s:9:\"uploads12\";s:64:\"64b6c9475aa0f22c4314436b4e277c9eccddf2609fffd211033b45e11be91b4e\";s:9:\"uploads13\";s:64:\"d33e05022a5b20ceb2171924e65495fd0983228dc7647e46e1e8a8f23e2ff202\";s:9:\"uploads14\";s:64:\"375f901701d1e4a66836be2f51f6df812a4c5e56b9c22f24181e047527fe5fe2\";s:9:\"uploads15\";s:64:\"7dd90ecfd830229620a79387083855dd2d21282dcfde2bb6b90c0c1995b59177\";s:9:\"uploads16\";s:64:\"95b01fd51755f64c816e5b11366d2ad8d5fcef82a2c821418b30c7786e842cad\";s:9:\"uploads17\";s:64:\"e434626dc0ead069662366eb3c97bd62cbead872b1337148f6723a51a0ce8a7c\";s:9:\"uploads18\";s:64:\"c083de86edfbb5d1379ec272aef18a49fc5db86904f3e68dce4d25ce36078e9f\";s:9:\"uploads19\";s:64:\"14217008a4bf15ae1802ddd6c97aeabe39615e6ace6da079b7d636f78c4ff0d0\";s:9:\"uploads20\";s:64:\"900213c6ac81665b35ece9f199c55e6e7378c4ab4adff1f0f3256c5b4f1a3717\";s:9:\"uploads21\";s:64:\"48d328916b534b3ff47147f009c2b0506003794ead96f9d9bc730e13a88f170a\";s:9:\"uploads22\";s:64:\"d8ba23d24aee779c6b48b483dbfabe9992261eba280e330e7f255816974d34f6\";s:9:\"uploads23\";s:64:\"f26bcbd2dfd26d43ec6b0b6ab54e7baaba4855a4a4685c587790b50571afc183\";s:9:\"uploads24\";s:64:\"35d7b50d4265f6806177bee552a8ef7ee211bdd1112cd15df1fab154bf8aa186\";s:9:\"uploads25\";s:64:\"10182d5cb3b75f1f273255a4cedadfd974169276bdd318e89cea5f85061fc4e3\";s:9:\"uploads26\";s:64:\"572e807ffe0e3f297d6174b9a4f5e1cac1aa281799c87777c0383d57a00d423e\";s:9:\"uploads27\";s:64:\"df4492f45e3630bcf653076e58cc932aa5be8f633b8769913d947a332cff1a5e\";s:9:\"uploads28\";s:64:\"1ae3eab4d4ae9da549520855d76c26d13f9c5d1a34ef655976ec3fbca000de79\";s:9:\"uploads29\";s:64:\"027de32a641cceee84eba4346ea2a4cebc4e106651d82b6e9ef65224153f8b62\";s:9:\"uploads30\";s:64:\"ca9b3f3be1ec24005ae3a90dd25c75d323024662abe3c0d2dadb504c321bfad0\";s:9:\"uploads31\";s:64:\"ed5f9d9e435ac9e349f1c930c6c9ffff446b85161892064f8e99e44577e15f12\";s:9:\"uploads32\";s:64:\"a09cb8517eb112e326c3ffbe594440f103e38e706ce1b3380f9e7765d4f1a697\";s:9:\"uploads33\";s:64:\"4cc977573fa4b768ab8e5090f07738073dd19ef880692b5a293003fefdedd38b\";s:9:\"uploads34\";s:64:\"254ea0e2b4bc03f4427ab76d97385deab0733e70b5baed49bfe25a0698613205\";s:9:\"uploads35\";s:64:\"40e4b9b3915ec7652467ebeecdb7819a9978e1b2736b24b38045bfc35852ad06\";s:7:\"others0\";s:64:\"3064208589a0549cf6fed96c002d56d5313820add14b69b9310ddb1203282a8f\";s:3:\"db0\";s:64:\"5bc4d3c940655b119a6a748e5099e477f1f118dc42cdee26b6cf77df7c66c504\";}}s:5:\"nonce\";s:12:\"b165b27aca75\";s:7:\"service\";a:1:{i:0;s:2:\"s3\";}s:20:\"service_instance_ids\";a:1:{s:2:\"s3\";a:1:{i:0;s:34:\"s-090f8201fa54bf20af187690d0b1c07a\";}}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1700676936;s:6:\"themes\";i:1700676946;s:7:\"uploads\";i:1700676951;s:6:\"others\";i:1700676976;}s:18:\"created_by_version\";s:8:\"2.15.7.1\";s:12:\"is_multisite\";b:0;}i:1700072036;a:53:{s:7:\"plugins\";a:1:{i:0;s:77:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-plugins.zip\";}s:12:\"plugins-size\";i:22399274;s:6:\"themes\";a:1:{i:0;s:76:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-themes.zip\";}s:11:\"themes-size\";i:16502004;s:7:\"uploads\";a:36:{i:0;s:77:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads.zip\";i:1;s:78:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads2.zip\";i:2;s:78:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads3.zip\";i:3;s:78:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads4.zip\";i:4;s:78:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads5.zip\";i:5;s:78:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads6.zip\";i:6;s:78:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads7.zip\";i:7;s:78:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads8.zip\";i:8;s:78:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads9.zip\";i:9;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads10.zip\";i:10;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads11.zip\";i:11;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads12.zip\";i:12;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads13.zip\";i:13;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads14.zip\";i:14;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads15.zip\";i:15;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads16.zip\";i:16;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads17.zip\";i:17;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads18.zip\";i:18;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads19.zip\";i:19;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads20.zip\";i:20;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads21.zip\";i:21;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads22.zip\";i:22;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads23.zip\";i:23;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads24.zip\";i:24;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads25.zip\";i:25;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads26.zip\";i:26;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads27.zip\";i:27;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads28.zip\";i:28;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads29.zip\";i:29;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads30.zip\";i:30;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads31.zip\";i:31;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads32.zip\";i:32;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads33.zip\";i:33;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads34.zip\";i:34;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads35.zip\";i:35;s:79:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-uploads36.zip\";}s:12:\"uploads-size\";i:26277066;s:13:\"uploads1-size\";i:26345755;s:13:\"uploads2-size\";i:26280709;s:13:\"uploads3-size\";i:26457283;s:13:\"uploads4-size\";i:26416296;s:13:\"uploads5-size\";i:26289951;s:13:\"uploads6-size\";i:26272485;s:13:\"uploads7-size\";i:26279810;s:13:\"uploads8-size\";i:26414206;s:13:\"uploads9-size\";i:26284118;s:14:\"uploads10-size\";i:26267820;s:14:\"uploads11-size\";i:26396306;s:14:\"uploads12-size\";i:26425922;s:14:\"uploads13-size\";i:27562789;s:14:\"uploads14-size\";i:26966590;s:14:\"uploads15-size\";i:26248640;s:14:\"uploads16-size\";i:26175329;s:14:\"uploads17-size\";i:28580668;s:14:\"uploads18-size\";i:26200094;s:14:\"uploads19-size\";i:26437204;s:14:\"uploads20-size\";i:26174394;s:14:\"uploads21-size\";i:26199447;s:14:\"uploads22-size\";i:26481149;s:14:\"uploads23-size\";i:26748640;s:14:\"uploads24-size\";i:26171250;s:14:\"uploads25-size\";i:26476119;s:14:\"uploads26-size\";i:26391768;s:14:\"uploads27-size\";i:26367747;s:14:\"uploads28-size\";i:26427772;s:14:\"uploads29-size\";i:26424467;s:14:\"uploads30-size\";i:26371436;s:14:\"uploads31-size\";i:26668944;s:14:\"uploads32-size\";i:26394350;s:14:\"uploads33-size\";i:26646098;s:14:\"uploads34-size\";i:26499692;s:14:\"uploads35-size\";i:12638395;s:6:\"others\";a:1:{i:0;s:76:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-others.zip\";}s:11:\"others-size\";i:14270880;s:2:\"db\";s:71:\"backup_2023-11-15-1813_Kingsville_Livestock_Auctions_5448293f93a2-db.gz\";s:7:\"db-size\";i:3513029;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:40:{s:8:\"plugins0\";s:40:\"fac90fe786bcb049580ae6d1ef2253b25611e439\";s:7:\"themes0\";s:40:\"53783460fba0b9939f28ce7b41385e21699bc1c9\";s:8:\"uploads0\";s:40:\"2661003f6503f8521372b2ebc553e1d173f534c9\";s:8:\"uploads1\";s:40:\"b39a7270f9c52de120a6defed684ce820f44619b\";s:8:\"uploads2\";s:40:\"6678f6ff1efe658d4ee0bcd4644b09b0801df352\";s:8:\"uploads3\";s:40:\"603ee717f285cdd3dc87f93c8598656282eba5c8\";s:8:\"uploads4\";s:40:\"fe21089c22e9486e1f229f72b9a67e00bd058bc6\";s:8:\"uploads5\";s:40:\"bf5ec93319f6ce68278d4d83f9dfb7f71b6152d0\";s:8:\"uploads6\";s:40:\"0f3a98d3766e230731cfd786b836e7a8c06fb698\";s:8:\"uploads7\";s:40:\"d088fd043fe2a2b9957a9773156fa603c22e18e1\";s:8:\"uploads8\";s:40:\"812f54d945ca279a831d5c24c00a1618fa6d4412\";s:8:\"uploads9\";s:40:\"bcbda4d8394d129d40ab6b5e51e8d5abfabf8d7d\";s:9:\"uploads10\";s:40:\"4f6a1719183e87a656fe1969edf4bc9a6a0eb7ae\";s:9:\"uploads11\";s:40:\"1e72efdc464d6b3269c3e3e806f747f8903913cf\";s:9:\"uploads12\";s:40:\"3b193afb6bccba9462e098c78832cd1f0b24d252\";s:9:\"uploads13\";s:40:\"80b9755102fa4c7e781b55c87ceba52eb4141ae9\";s:9:\"uploads14\";s:40:\"8b83293cd14d0e8c27a6ba516a8ea166449543ab\";s:9:\"uploads15\";s:40:\"b80274cd41b4d40b5a77660611ae65a7b91506d6\";s:9:\"uploads16\";s:40:\"1e8e99825a367963878cb70d06d19fd7fc2cbbb6\";s:9:\"uploads17\";s:40:\"9e76e6cc2b9c91de20bcd3286653f14d5035d5e2\";s:9:\"uploads18\";s:40:\"b3d6af233edb1c8d7170ee9cb118154a4033fda5\";s:9:\"uploads19\";s:40:\"3879768fea4b6628871a5b9f55110347e29ae032\";s:9:\"uploads20\";s:40:\"fd1a9187a68d724b98820b7608bea1c7aafce52f\";s:9:\"uploads21\";s:40:\"c72c61cc736e48ee4a0d3635ab6f057919c0f03a\";s:9:\"uploads22\";s:40:\"895730d6e6d69970a22d7a87738576b0055f7ced\";s:9:\"uploads23\";s:40:\"93a17c01303c1ddaa9eb9c48a8b982c68f94c0c3\";s:9:\"uploads24\";s:40:\"91d95178275c42ef874607a3baf1d5c4224839e6\";s:9:\"uploads25\";s:40:\"fb62bcca736457279c0a8a99ccfbe206606fd267\";s:9:\"uploads26\";s:40:\"f0c53c2e6ba9c1c0237f433e9e48bef96d620944\";s:9:\"uploads27\";s:40:\"7d45507ff9eafdd4bb19e8ce90bc507839566046\";s:9:\"uploads28\";s:40:\"7595388e68187272f0655eb9bb165f2a3dd7fedb\";s:9:\"uploads29\";s:40:\"a51bd62c6d486699b24bf3d4d704bec04602bcd4\";s:9:\"uploads30\";s:40:\"8aa89527596e4b05f7128597a539efdb87e6ec49\";s:9:\"uploads31\";s:40:\"50c0c6c8225ca2da5d5bbe6e83e8c47078837760\";s:9:\"uploads32\";s:40:\"d781dc1cbdddfdae0772e688000e2a8654968212\";s:9:\"uploads33\";s:40:\"4a1864bd55593b7d6e3ee036e5724d2b7cd13537\";s:9:\"uploads34\";s:40:\"859d6602f3ff5cdb3fdb614f32525079c4fb740a\";s:9:\"uploads35\";s:40:\"8a69b4a16b5e6b6617102afb79e059d684a51e6f\";s:7:\"others0\";s:40:\"1e04186170cf0f617f6d48fc7fa6d7a58cf49d0d\";s:3:\"db0\";s:40:\"93d42f814a678b4547fa358a571ae18b831dce06\";}s:6:\"sha256\";a:40:{s:8:\"plugins0\";s:64:\"7947ee9f89f3e7742eb6df9f62f710ec41dcfb0a818a59c46436c30323a908f4\";s:7:\"themes0\";s:64:\"dcfb8c18127dcfae3ef384b7326aac6650ea14db2eb46ab4cd8901dc64fd85db\";s:8:\"uploads0\";s:64:\"8e62ef61923563a0567fd55e1c43c5f3c31051a86e70d6f6e3b943193f1c42a8\";s:8:\"uploads1\";s:64:\"150526d65edecb844ce11fd57acb3fe0eb558da1a451e1fd641cc6ccd9166c39\";s:8:\"uploads2\";s:64:\"5f0102347f7a60652c15e625ec242b35849e0385b9dab43759b2280fdb26479c\";s:8:\"uploads3\";s:64:\"7adc041d65b688005bece84e3a209ec36edca761eb80667b6745af43b37480cf\";s:8:\"uploads4\";s:64:\"fe9e61851973fdd6e212bde074b32d226b305a2fa54869087a17a87f35c809ef\";s:8:\"uploads5\";s:64:\"223fdb9daa5776beeb41e3bd75641d40e1b913154667b01be42a8cf81df58ae8\";s:8:\"uploads6\";s:64:\"d1b1eb26a0106c9ed56b8f2d4d9d2a3c3464cf76e9d032804b564867b9f7ab6a\";s:8:\"uploads7\";s:64:\"faa7ce325f8d6f5e8f526de8f2b2a2e5f9c764c31e7e7070202aad180774ee16\";s:8:\"uploads8\";s:64:\"4952a0917550b1dbc29d7e15a2dd62b429766cc26d42d34e148f123663bffa6d\";s:8:\"uploads9\";s:64:\"3ea97264305ea8ba06b63ada5f416f85863a52928056854d4897e13a0370c160\";s:9:\"uploads10\";s:64:\"956f65484d3755cc35c18ec4b0b7daf5f012ba0fc22732cee03b130b47632637\";s:9:\"uploads11\";s:64:\"632d6f382dbcb8833b34934b4c8f3ac7e98cac53987043be695bddcc2ab9a51d\";s:9:\"uploads12\";s:64:\"64b6c9475aa0f22c4314436b4e277c9eccddf2609fffd211033b45e11be91b4e\";s:9:\"uploads13\";s:64:\"d33e05022a5b20ceb2171924e65495fd0983228dc7647e46e1e8a8f23e2ff202\";s:9:\"uploads14\";s:64:\"375f901701d1e4a66836be2f51f6df812a4c5e56b9c22f24181e047527fe5fe2\";s:9:\"uploads15\";s:64:\"7dd90ecfd830229620a79387083855dd2d21282dcfde2bb6b90c0c1995b59177\";s:9:\"uploads16\";s:64:\"95b01fd51755f64c816e5b11366d2ad8d5fcef82a2c821418b30c7786e842cad\";s:9:\"uploads17\";s:64:\"e434626dc0ead069662366eb3c97bd62cbead872b1337148f6723a51a0ce8a7c\";s:9:\"uploads18\";s:64:\"c083de86edfbb5d1379ec272aef18a49fc5db86904f3e68dce4d25ce36078e9f\";s:9:\"uploads19\";s:64:\"14217008a4bf15ae1802ddd6c97aeabe39615e6ace6da079b7d636f78c4ff0d0\";s:9:\"uploads20\";s:64:\"900213c6ac81665b35ece9f199c55e6e7378c4ab4adff1f0f3256c5b4f1a3717\";s:9:\"uploads21\";s:64:\"48d328916b534b3ff47147f009c2b0506003794ead96f9d9bc730e13a88f170a\";s:9:\"uploads22\";s:64:\"d8ba23d24aee779c6b48b483dbfabe9992261eba280e330e7f255816974d34f6\";s:9:\"uploads23\";s:64:\"f26bcbd2dfd26d43ec6b0b6ab54e7baaba4855a4a4685c587790b50571afc183\";s:9:\"uploads24\";s:64:\"35d7b50d4265f6806177bee552a8ef7ee211bdd1112cd15df1fab154bf8aa186\";s:9:\"uploads25\";s:64:\"10182d5cb3b75f1f273255a4cedadfd974169276bdd318e89cea5f85061fc4e3\";s:9:\"uploads26\";s:64:\"572e807ffe0e3f297d6174b9a4f5e1cac1aa281799c87777c0383d57a00d423e\";s:9:\"uploads27\";s:64:\"df4492f45e3630bcf653076e58cc932aa5be8f633b8769913d947a332cff1a5e\";s:9:\"uploads28\";s:64:\"1ae3eab4d4ae9da549520855d76c26d13f9c5d1a34ef655976ec3fbca000de79\";s:9:\"uploads29\";s:64:\"027de32a641cceee84eba4346ea2a4cebc4e106651d82b6e9ef65224153f8b62\";s:9:\"uploads30\";s:64:\"ca9b3f3be1ec24005ae3a90dd25c75d323024662abe3c0d2dadb504c321bfad0\";s:9:\"uploads31\";s:64:\"ed5f9d9e435ac9e349f1c930c6c9ffff446b85161892064f8e99e44577e15f12\";s:9:\"uploads32\";s:64:\"a09cb8517eb112e326c3ffbe594440f103e38e706ce1b3380f9e7765d4f1a697\";s:9:\"uploads33\";s:64:\"71a13e1fb4b464d3b2a3a7374a0c9ef8706d740f297ea2e0e7e1911079a8cea8\";s:9:\"uploads34\";s:64:\"95c6efdb571f5df9a602e9ca699feb9c63c0c47f8fd70d3602de412d2852324b\";s:9:\"uploads35\";s:64:\"65b49a362b79f42cadf444cdff103a7d48e1be8361694c1e02e0f0d2cd13938d\";s:7:\"others0\";s:64:\"40f83445121a0b1bed5cbf85544ab5a1495f4904ad16f9094ab287dd4a78e376\";s:3:\"db0\";s:64:\"227016ce6d4ff039b93cc005da6d2566c4ebd0b83564fa43d5eb11bce3e3ef1e\";}}s:5:\"nonce\";s:12:\"5448293f93a2\";s:7:\"service\";a:1:{i:0;s:2:\"s3\";}s:20:\"service_instance_ids\";a:1:{s:2:\"s3\";a:1:{i:0;s:34:\"s-090f8201fa54bf20af187690d0b1c07a\";}}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1700072036;s:6:\"themes\";i:1700072045;s:7:\"uploads\";i:1700072051;s:6:\"others\";i:1700072077;}s:18:\"created_by_version\";s:8:\"2.15.7.1\";s:12:\"is_multisite\";b:0;}i:1701281598;a:50:{s:7:\"plugins\";a:1:{i:0;s:77:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-plugins.zip\";}s:12:\"plugins-size\";i:22399274;s:6:\"themes\";a:1:{i:0;s:76:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-themes.zip\";}s:11:\"themes-size\";i:16502004;s:7:\"uploads\";a:36:{i:0;s:77:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads.zip\";i:1;s:78:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads2.zip\";i:2;s:78:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads3.zip\";i:3;s:78:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads4.zip\";i:4;s:78:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads5.zip\";i:5;s:78:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads6.zip\";i:6;s:78:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads7.zip\";i:7;s:78:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads8.zip\";i:8;s:78:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads9.zip\";i:9;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads10.zip\";i:10;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads11.zip\";i:11;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads12.zip\";i:12;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads13.zip\";i:13;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads14.zip\";i:14;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads15.zip\";i:15;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads16.zip\";i:16;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads17.zip\";i:17;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads18.zip\";i:18;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads19.zip\";i:19;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads20.zip\";i:20;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads21.zip\";i:21;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads22.zip\";i:22;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads23.zip\";i:23;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads24.zip\";i:24;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads25.zip\";i:25;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads26.zip\";i:26;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads27.zip\";i:27;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads28.zip\";i:28;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads29.zip\";i:29;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads30.zip\";i:30;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads31.zip\";i:31;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads32.zip\";i:32;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads33.zip\";i:33;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads34.zip\";i:34;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads35.zip\";i:35;s:79:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-uploads36.zip\";}s:12:\"uploads-size\";i:26277066;s:13:\"uploads1-size\";i:26345755;s:13:\"uploads2-size\";i:26280709;s:13:\"uploads3-size\";i:26457283;s:13:\"uploads4-size\";i:26416296;s:13:\"uploads5-size\";i:26289951;s:13:\"uploads6-size\";i:26272485;s:13:\"uploads7-size\";i:26279810;s:13:\"uploads8-size\";i:26414206;s:13:\"uploads9-size\";i:26284118;s:14:\"uploads10-size\";i:26267820;s:14:\"uploads11-size\";i:26396306;s:14:\"uploads12-size\";i:26425922;s:14:\"uploads13-size\";i:27562789;s:14:\"uploads14-size\";i:26966590;s:14:\"uploads15-size\";i:26248640;s:14:\"uploads16-size\";i:26175329;s:14:\"uploads17-size\";i:28580668;s:14:\"uploads18-size\";i:26200094;s:14:\"uploads19-size\";i:26437204;s:14:\"uploads20-size\";i:26174394;s:14:\"uploads21-size\";i:26199447;s:14:\"uploads22-size\";i:26481149;s:14:\"uploads23-size\";i:26748640;s:14:\"uploads24-size\";i:26171250;s:14:\"uploads25-size\";i:26476119;s:14:\"uploads26-size\";i:26391768;s:14:\"uploads27-size\";i:26367747;s:14:\"uploads28-size\";i:26427772;s:14:\"uploads29-size\";i:26424467;s:14:\"uploads30-size\";i:26371436;s:14:\"uploads31-size\";i:26668944;s:14:\"uploads32-size\";i:26394350;s:14:\"uploads33-size\";i:26283452;s:14:\"uploads34-size\";i:26559384;s:14:\"uploads35-size\";i:14334988;s:6:\"others\";a:1:{i:0;s:76:\"backup_2023-11-29-1813_Kingsville_Livestock_Auctions_992e5fbdbdf7-others.zip\";}s:11:\"others-size\";i:13410601;s:5:\"nonce\";s:12:\"992e5fbdbdf7\";s:7:\"service\";a:1:{i:0;s:2:\"s3\";}s:20:\"service_instance_ids\";a:1:{s:2:\"s3\";a:1:{i:0;s:34:\"s-090f8201fa54bf20af187690d0b1c07a\";}}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1701281598;s:6:\"themes\";i:1701281607;s:7:\"uploads\";i:1701281612;s:6:\"others\";i:1701281638;}s:18:\"created_by_version\";s:8:\"2.15.7.1\";s:12:\"is_multisite\";b:0;}}','no'),(7330,'updraftplus-addons_siteid','6f9dac4b6495407cace1de47b069593b','no'),(7354,'rsssl_activation_timestamp','1608437804','yes'),(7355,'rsssl_before_review_notice_user','1','yes'),(7951,'duplicate_post_copytitle','1','yes'),(7952,'duplicate_post_copydate','0','yes'),(7953,'duplicate_post_copystatus','0','yes'),(7954,'duplicate_post_copyslug','0','yes'),(7955,'duplicate_post_copyexcerpt','1','yes'),(7956,'duplicate_post_copycontent','1','yes'),(7957,'duplicate_post_copythumbnail','1','yes'),(7958,'duplicate_post_copytemplate','1','yes'),(7959,'duplicate_post_copyformat','1','yes'),(7960,'duplicate_post_copyauthor','0','yes'),(7961,'duplicate_post_copypassword','0','yes'),(7962,'duplicate_post_copyattachments','0','yes'),(7963,'duplicate_post_copychildren','0','yes'),(7964,'duplicate_post_copycomments','0','yes'),(7965,'duplicate_post_copymenuorder','1','yes'),(7966,'duplicate_post_taxonomies_blacklist','a:0:{}','yes'),(7967,'duplicate_post_blacklist','','yes'),(7968,'duplicate_post_types_enabled','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(7973,'duplicate_post_show_original_column','0','yes'),(7974,'duplicate_post_show_original_in_post_states','0','yes'),(7975,'duplicate_post_show_original_meta_box','0','yes'),(8989,'wordfence_syncAttackDataAttempts','0','no'),(8990,'wordfence_syncingAttackData','0','no'),(8992,'wordfence_lastSyncAttackData','1701259111','no'),(9653,'category_children','a:0:{}','yes'),(11564,'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'),(11571,'mwp_key_last_used_e9a70af2-036d-48fb-9f94-2e58ef74e703','1584534049','yes'),(11572,'mwp_potential_key','8b18394d-8d50-4919-8b1d-acc85c42e675','yes'),(11573,'mwp_potential_key_time','1702487149','yes'),(11574,'mwp_key_last_used_5891492','1688130010','yes'),(15083,'widget_instagram-feed-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(15296,'_transient_health-check-site-status-result','{\"good\":13,\"recommended\":6,\"critical\":1}','yes'),(18291,'sbi_usage_tracking_config','a:6:{s:3:\"day\";i:3;s:4:\"hour\";i:20;s:6:\"minute\";i:53;s:6:\"second\";i:6;s:6:\"offset\";i:334386;s:8:\"initsend\";i:1590007986;}','yes'),(26584,'et_google_fonts_cache','a:1052:{s:7:\"ABeeZee\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:4:\"Abel\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Abhaya Libre\";a:3:{s:6:\"styles\";s:23:\"regular,500,600,700,800\";s:13:\"character_set\";s:23:\"latin,latin-ext,sinhala\";s:4:\"type\";s:5:\"serif\";}s:13:\"Abril Fatface\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:8:\"Aclonica\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:4:\"Acme\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Actor\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Adamina\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:10:\"Advent Pro\";a:3:{s:6:\"styles\";s:31:\"100,200,300,regular,500,600,700\";s:13:\"character_set\";s:21:\"greek,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:15:\"Aguafina Script\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:14:\"Akaya Kanadaka\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:23:\"kannada,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:16:\"Akaya Telivigala\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:22:\"latin,latin-ext,telugu\";s:4:\"type\";s:7:\"display\";}s:7:\"Akronim\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:6:\"Aladin\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:5:\"Alata\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Alatsi\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Aldrich\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:4:\"Alef\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:12:\"hebrew,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Alegreya\";a:3:{s:6:\"styles\";s:84:\"regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:64:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:11:\"Alegreya SC\";a:3:{s:6:\"styles\";s:70:\"regular,italic,500,500italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:64:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:13:\"Alegreya Sans\";a:3:{s:6:\"styles\";s:98:\"100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:64:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:16:\"Alegreya Sans SC\";a:3:{s:6:\"styles\";s:98:\"100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:64:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:4:\"Aleo\";a:3:{s:6:\"styles\";s:42:\"300,300italic,regular,italic,700,700italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:10:\"Alex Brush\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:13:\"Alfa Slab One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:5:\"Alice\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:27:\"cyrillic,cyrillic-ext,latin\";s:4:\"type\";s:5:\"serif\";}s:5:\"Alike\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:13:\"Alike Angular\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:5:\"Allan\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:7:\"Allerta\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:15:\"Allerta Stencil\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Allura\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Almarai\";a:3:{s:6:\"styles\";s:19:\"300,regular,700,800\";s:13:\"character_set\";s:6:\"arabic\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Almendra\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:16:\"Almendra Display\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:11:\"Almendra SC\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:8:\"Amarante\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:8:\"Amaranth\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Amatic SC\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:42:\"cyrillic,hebrew,latin,latin-ext,vietnamese\";s:4:\"type\";s:11:\"handwriting\";}s:9:\"Amethysta\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:5:\"Amiko\";a:3:{s:6:\"styles\";s:15:\"regular,600,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Amiri\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:22:\"arabic,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:5:\"Amita\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Anaheim\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Andada\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:6:\"Andika\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:16:\"Andika New Basic\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Angkor\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:7:\"display\";}s:24:\"Annie Use Your Telescope\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:13:\"Anonymous Pro\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:30:\"cyrillic,greek,latin,latin-ext\";s:4:\"type\";s:9:\"monospace\";}s:5:\"Antic\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Antic Didone\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:10:\"Antic Slab\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:5:\"Anton\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Antonio\";a:3:{s:6:\"styles\";s:31:\"100,200,300,regular,500,600,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Arapey\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:7:\"Arbutus\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:12:\"Arbutus Slab\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:19:\"Architects Daughter\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Archivo\";a:3:{s:6:\"styles\";s:126:\"100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:13:\"Archivo Black\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:14:\"Archivo Narrow\";a:3:{s:6:\"styles\";s:56:\"regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:10:\"Aref Ruqaa\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:22:\"arabic,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:13:\"Arima Madurai\";a:3:{s:6:\"styles\";s:35:\"100,200,300,regular,500,700,800,900\";s:13:\"character_set\";s:32:\"latin,latin-ext,tamil,vietnamese\";s:4:\"type\";s:7:\"display\";}s:5:\"Arimo\";a:3:{s:6:\"styles\";s:56:\"regular,500,600,700,italic,500italic,600italic,700italic\";s:13:\"character_set\";s:71:\"cyrillic,cyrillic-ext,greek,greek-ext,hebrew,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Arizonia\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:6:\"Armata\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Arsenal\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Artifika\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:4:\"Arvo\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:4:\"Arya\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:4:\"Asap\";a:3:{s:6:\"styles\";s:56:\"regular,500,600,700,italic,500italic,600italic,700italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:14:\"Asap Condensed\";a:3:{s:6:\"styles\";s:56:\"regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:4:\"Asar\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:5:\"Asset\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:9:\"Assistant\";a:3:{s:6:\"styles\";s:31:\"200,300,regular,500,600,700,800\";s:13:\"character_set\";s:22:\"hebrew,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Astloch\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:4:\"Asul\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Athiti\";a:3:{s:6:\"styles\";s:27:\"200,300,regular,500,600,700\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:4:\"Atma\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:23:\"bengali,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:10:\"Atomic Age\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:6:\"Aubrey\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:9:\"Audiowide\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:10:\"Autour One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:7:\"Average\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:12:\"Average Sans\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:19:\"Averia Gruesa Libre\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:12:\"Averia Libre\";a:3:{s:6:\"styles\";s:42:\"300,300italic,regular,italic,700,700italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:17:\"Averia Sans Libre\";a:3:{s:6:\"styles\";s:42:\"300,300italic,regular,italic,700,700italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:18:\"Averia Serif Libre\";a:3:{s:6:\"styles\";s:42:\"300,300italic,regular,italic,700,700italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:4:\"B612\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"B612 Mono\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:9:\"monospace\";}s:10:\"Bad Script\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:14:\"cyrillic,latin\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Bahiana\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:9:\"Bahianita\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:12:\"Bai Jamjuree\";a:3:{s:6:\"styles\";s:84:\"200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Ballet\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Baloo 2\";a:3:{s:6:\"styles\";s:23:\"regular,500,600,700,800\";s:13:\"character_set\";s:37:\"devanagari,latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:12:\"Baloo Bhai 2\";a:3:{s:6:\"styles\";s:23:\"regular,500,600,700,800\";s:13:\"character_set\";s:35:\"gujarati,latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:14:\"Baloo Bhaina 2\";a:3:{s:6:\"styles\";s:23:\"regular,500,600,700,800\";s:13:\"character_set\";s:32:\"latin,latin-ext,oriya,vietnamese\";s:4:\"type\";s:7:\"display\";}s:15:\"Baloo Chettan 2\";a:3:{s:6:\"styles\";s:23:\"regular,500,600,700,800\";s:13:\"character_set\";s:36:\"latin,latin-ext,malayalam,vietnamese\";s:4:\"type\";s:7:\"display\";}s:10:\"Baloo Da 2\";a:3:{s:6:\"styles\";s:23:\"regular,500,600,700,800\";s:13:\"character_set\";s:34:\"bengali,latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:13:\"Baloo Paaji 2\";a:3:{s:6:\"styles\";s:23:\"regular,500,600,700,800\";s:13:\"character_set\";s:35:\"gurmukhi,latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:13:\"Baloo Tamma 2\";a:3:{s:6:\"styles\";s:23:\"regular,500,600,700,800\";s:13:\"character_set\";s:34:\"kannada,latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:15:\"Baloo Tammudu 2\";a:3:{s:6:\"styles\";s:23:\"regular,500,600,700,800\";s:13:\"character_set\";s:33:\"latin,latin-ext,telugu,vietnamese\";s:4:\"type\";s:7:\"display\";}s:14:\"Baloo Thambi 2\";a:3:{s:6:\"styles\";s:23:\"regular,500,600,700,800\";s:13:\"character_set\";s:32:\"latin,latin-ext,tamil,vietnamese\";s:4:\"type\";s:7:\"display\";}s:13:\"Balsamiq Sans\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:37:\"cyrillic,cyrillic-ext,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:9:\"Balthazar\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:7:\"Bangers\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:6:\"Barlow\";a:3:{s:6:\"styles\";s:126:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:16:\"Barlow Condensed\";a:3:{s:6:\"styles\";s:126:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:21:\"Barlow Semi Condensed\";a:3:{s:6:\"styles\";s:126:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:10:\"Barriecito\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:6:\"Barrio\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:5:\"Basic\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Baskervville\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:10:\"Battambang\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:7:\"display\";}s:7:\"Baumans\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:5:\"Bayon\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:7:\"display\";}s:10:\"Be Vietnam\";a:3:{s:6:\"styles\";s:98:\"100,100italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:10:\"Bebas Neue\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:8:\"Belgrano\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:9:\"Bellefair\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:22:\"hebrew,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:7:\"Belleza\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Bellota\";a:3:{s:6:\"styles\";s:42:\"300,300italic,regular,italic,700,700italic\";s:13:\"character_set\";s:35:\"cyrillic,latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:12:\"Bellota Text\";a:3:{s:6:\"styles\";s:42:\"300,300italic,regular,italic,700,700italic\";s:13:\"character_set\";s:35:\"cyrillic,latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:9:\"BenchNine\";a:3:{s:6:\"styles\";s:15:\"300,regular,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Benne\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:23:\"kannada,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:7:\"Bentham\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:15:\"Berkshire Swash\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:10:\"Beth Ellen\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:5:\"Bevan\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:21:\"Big Shoulders Display\";a:3:{s:6:\"styles\";s:35:\"100,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:28:\"Big Shoulders Inline Display\";a:3:{s:6:\"styles\";s:35:\"100,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:25:\"Big Shoulders Inline Text\";a:3:{s:6:\"styles\";s:35:\"100,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:29:\"Big Shoulders Stencil Display\";a:3:{s:6:\"styles\";s:35:\"100,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:26:\"Big Shoulders Stencil Text\";a:3:{s:6:\"styles\";s:35:\"100,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:18:\"Big Shoulders Text\";a:3:{s:6:\"styles\";s:35:\"100,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:13:\"Bigelow Rules\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:11:\"Bigshot One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:5:\"Bilbo\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:16:\"Bilbo Swash Caps\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:8:\"BioRhyme\";a:3:{s:6:\"styles\";s:23:\"200,300,regular,700,800\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:17:\"BioRhyme Expanded\";a:3:{s:6:\"styles\";s:23:\"200,300,regular,700,800\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:7:\"Biryani\";a:3:{s:6:\"styles\";s:31:\"200,300,regular,600,700,800,900\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Bitter\";a:3:{s:6:\"styles\";s:126:\"100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:23:\"Black And White Picture\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:14:\"Black Han Sans\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:13:\"Black Ops One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:7:\"Blinker\";a:3:{s:6:\"styles\";s:35:\"100,200,300,regular,600,700,800,900\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Bodoni Moda\";a:3:{s:6:\"styles\";s:84:\"regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:5:\"Bokor\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:7:\"display\";}s:6:\"Bonbon\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:8:\"Boogaloo\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:10:\"Bowlby One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:13:\"Bowlby One SC\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:7:\"Brawler\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:10:\"Bree Serif\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:12:\"Brygada 1918\";a:3:{s:6:\"styles\";s:56:\"regular,500,600,700,italic,500italic,600italic,700italic\";s:13:\"character_set\";s:54:\"cyrillic,cyrillic-ext,greek,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:14:\"Bubblegum Sans\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:11:\"Bubbler One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:4:\"Buda\";a:3:{s:6:\"styles\";s:3:\"300\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:7:\"Buenard\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:6:\"Bungee\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:15:\"Bungee Hairline\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:13:\"Bungee Inline\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:14:\"Bungee Outline\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:12:\"Bungee Shade\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:10:\"Butcherman\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:14:\"Butterfly Kids\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:5:\"Cabin\";a:3:{s:6:\"styles\";s:56:\"regular,500,600,700,italic,500italic,600italic,700italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:15:\"Cabin Condensed\";a:3:{s:6:\"styles\";s:19:\"regular,500,600,700\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Cabin Sketch\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:15:\"Caesar Dressing\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:10:\"Cagliostro\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Cairo\";a:3:{s:6:\"styles\";s:27:\"200,300,regular,600,700,900\";s:13:\"character_set\";s:22:\"arabic,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Caladea\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:9:\"Calistoga\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:14:\"Calligraffitti\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:6:\"Cambay\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Cambo\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:6:\"Candal\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Cantarell\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Cantata One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:11:\"Cantora One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Capriola\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Cardo\";a:3:{s:6:\"styles\";s:18:\"regular,italic,700\";s:13:\"character_set\";s:31:\"greek,greek-ext,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:5:\"Carme\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:14:\"Carrois Gothic\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:17:\"Carrois Gothic SC\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:10:\"Carter One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:7:\"Castoro\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:9:\"Catamaran\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:21:\"latin,latin-ext,tamil\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Caudex\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:31:\"greek,greek-ext,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:6:\"Caveat\";a:3:{s:6:\"styles\";s:19:\"regular,500,600,700\";s:13:\"character_set\";s:37:\"cyrillic,cyrillic-ext,latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:12:\"Caveat Brush\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:18:\"Cedarville Cursive\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:11:\"Ceviche One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:12:\"Chakra Petch\";a:3:{s:6:\"styles\";s:70:\"300,300italic,regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Changa\";a:3:{s:6:\"styles\";s:31:\"200,300,regular,500,600,700,800\";s:13:\"character_set\";s:22:\"arabic,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:10:\"Changa One\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:6:\"Chango\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:5:\"Charm\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:11:\"handwriting\";}s:10:\"Charmonman\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:11:\"handwriting\";}s:8:\"Chathura\";a:3:{s:6:\"styles\";s:23:\"100,300,regular,700,800\";s:13:\"character_set\";s:12:\"latin,telugu\";s:4:\"type\";s:10:\"sans-serif\";}s:18:\"Chau Philomene One\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Chela One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:14:\"Chelsea Market\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:6:\"Chenla\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:7:\"display\";}s:17:\"Cherry Cream Soda\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:12:\"Cherry Swash\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:5:\"Chewy\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:6:\"Chicle\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:8:\"Chilanka\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,malayalam\";s:4:\"type\";s:11:\"handwriting\";}s:5:\"Chivo\";a:3:{s:6:\"styles\";s:56:\"300,300italic,regular,italic,700,700italic,900,900italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Chonburi\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:7:\"display\";}s:6:\"Cinzel\";a:3:{s:6:\"styles\";s:27:\"regular,500,600,700,800,900\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:17:\"Cinzel Decorative\";a:3:{s:6:\"styles\";s:15:\"regular,700,900\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:14:\"Clicker Script\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:4:\"Coda\";a:3:{s:6:\"styles\";s:11:\"regular,800\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:12:\"Coda Caption\";a:3:{s:6:\"styles\";s:3:\"800\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Codystar\";a:3:{s:6:\"styles\";s:11:\"300,regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:5:\"Coiny\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:32:\"latin,latin-ext,tamil,vietnamese\";s:4:\"type\";s:7:\"display\";}s:5:\"Combo\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:9:\"Comfortaa\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:54:\"cyrillic,cyrillic-ext,greek,latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:10:\"Comic Neue\";a:3:{s:6:\"styles\";s:42:\"300,300italic,regular,italic,700,700italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:11:\"Coming Soon\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:12:\"Commissioner\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:54:\"cyrillic,cyrillic-ext,greek,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Concert One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:9:\"Condiment\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Content\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:7:\"display\";}s:12:\"Contrail One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:11:\"Convergence\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Cookie\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:5:\"Copse\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:6:\"Corben\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:9:\"Cormorant\";a:3:{s:6:\"styles\";s:70:\"300,300italic,regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:18:\"Cormorant Garamond\";a:3:{s:6:\"styles\";s:70:\"300,300italic,regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:16:\"Cormorant Infant\";a:3:{s:6:\"styles\";s:70:\"300,300italic,regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:12:\"Cormorant SC\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:17:\"Cormorant Unicase\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:17:\"Cormorant Upright\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:9:\"Courgette\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:13:\"Courier Prime\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:9:\"monospace\";}s:7:\"Cousine\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:71:\"cyrillic,cyrillic-ext,greek,greek-ext,hebrew,latin,latin-ext,vietnamese\";s:4:\"type\";s:9:\"monospace\";}s:8:\"Coustard\";a:3:{s:6:\"styles\";s:11:\"regular,900\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:21:\"Covered By Your Grace\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:12:\"Crafty Girls\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:9:\"Creepster\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:11:\"Crete Round\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:11:\"Crimson Pro\";a:3:{s:6:\"styles\";s:112:\"200,300,regular,500,600,700,800,900,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:12:\"Crimson Text\";a:3:{s:6:\"styles\";s:42:\"regular,italic,600,600italic,700,700italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:13:\"Croissant One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:7:\"Crushed\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:6:\"Cuprum\";a:3:{s:6:\"styles\";s:56:\"regular,500,600,700,italic,500italic,600italic,700italic\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Cute Font\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:7:\"display\";}s:6:\"Cutive\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:11:\"Cutive Mono\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:9:\"monospace\";}s:7:\"DM Mono\";a:3:{s:6:\"styles\";s:42:\"300,300italic,regular,italic,500,500italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:9:\"monospace\";}s:7:\"DM Sans\";a:3:{s:6:\"styles\";s:42:\"regular,italic,500,500italic,700,700italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:16:\"DM Serif Display\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:13:\"DM Serif Text\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:6:\"Damion\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:14:\"Dancing Script\";a:3:{s:6:\"styles\";s:19:\"regular,500,600,700\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Dangrek\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:7:\"display\";}s:16:\"Darker Grotesque\";a:3:{s:6:\"styles\";s:31:\"300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"David Libre\";a:3:{s:6:\"styles\";s:15:\"regular,500,700\";s:13:\"character_set\";s:33:\"hebrew,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:20:\"Dawning of a New Day\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:8:\"Days One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Dekko\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:15:\"Dela Gothic One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:50:\"cyrillic,greek,japanese,latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:6:\"Delius\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:17:\"Delius Swash Caps\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:14:\"Delius Unicase\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:13:\"Della Respira\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:8:\"Denk One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:10:\"Devonshire\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:8:\"Dhurjati\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"latin,telugu\";s:4:\"type\";s:10:\"sans-serif\";}s:13:\"Didact Gothic\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:53:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Diplomata\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:12:\"Diplomata SC\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:8:\"Do Hyeon\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Dokdo\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:11:\"handwriting\";}s:6:\"Domine\";a:3:{s:6:\"styles\";s:19:\"regular,500,600,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:11:\"Donegal One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:10:\"Doppio One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Dorsa\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Dosis\";a:3:{s:6:\"styles\";s:31:\"200,300,regular,500,600,700,800\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"DotGothic16\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:33:\"cyrillic,japanese,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Dr Sugiyama\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:9:\"Duru Sans\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Dynalight\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:11:\"EB Garamond\";a:3:{s:6:\"styles\";s:70:\"regular,500,600,700,800,italic,500italic,600italic,700italic,800italic\";s:13:\"character_set\";s:64:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:10:\"Eagle Lake\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:14:\"East Sea Dokdo\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:11:\"handwriting\";}s:5:\"Eater\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:9:\"Economica\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Eczar\";a:3:{s:6:\"styles\";s:23:\"regular,500,600,700,800\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:10:\"El Messiri\";a:3:{s:6:\"styles\";s:19:\"regular,500,600,700\";s:13:\"character_set\";s:21:\"arabic,cyrillic,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Electrolize\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Elsie\";a:3:{s:6:\"styles\";s:11:\"regular,900\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:16:\"Elsie Swash Caps\";a:3:{s:6:\"styles\";s:11:\"regular,900\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:11:\"Emblema One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:12:\"Emilys Candy\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:11:\"Encode Sans\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:21:\"Encode Sans Condensed\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:20:\"Encode Sans Expanded\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:26:\"Encode Sans Semi Condensed\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:25:\"Encode Sans Semi Expanded\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:10:\"Engagement\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:9:\"Englebert\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Enriqueta\";a:3:{s:6:\"styles\";s:19:\"regular,500,600,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:8:\"Epilogue\";a:3:{s:6:\"styles\";s:126:\"100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Erica One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:7:\"Esteban\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:15:\"Euphoria Script\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:5:\"Ewert\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:3:\"Exo\";a:3:{s:6:\"styles\";s:126:\"100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Exo 2\";a:3:{s:6:\"styles\";s:126:\"100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:13:\"Expletus Sans\";a:3:{s:6:\"styles\";s:56:\"regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:8:\"Fahkwang\";a:3:{s:6:\"styles\";s:84:\"200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Fanwood Text\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:5:\"Farro\";a:3:{s:6:\"styles\";s:19:\"300,regular,500,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Farsan\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:35:\"gujarati,latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:9:\"Fascinate\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:16:\"Fascinate Inline\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:10:\"Faster One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:8:\"Fasthand\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:5:\"serif\";}s:9:\"Fauna One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:8:\"Faustina\";a:3:{s:6:\"styles\";s:56:\"regular,500,600,700,italic,500italic,600italic,700italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:8:\"Federant\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:6:\"Federo\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Felipa\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:5:\"Fenix\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:12:\"Finger Paint\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:9:\"Fira Code\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:53:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext\";s:4:\"type\";s:9:\"monospace\";}s:9:\"Fira Mono\";a:3:{s:6:\"styles\";s:15:\"regular,500,700\";s:13:\"character_set\";s:53:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext\";s:4:\"type\";s:9:\"monospace\";}s:9:\"Fira Sans\";a:3:{s:6:\"styles\";s:126:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:64:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:19:\"Fira Sans Condensed\";a:3:{s:6:\"styles\";s:126:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:64:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:25:\"Fira Sans Extra Condensed\";a:3:{s:6:\"styles\";s:126:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:64:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:10:\"Fjalla One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Fjord One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:8:\"Flamenco\";a:3:{s:6:\"styles\";s:11:\"300,regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:7:\"Flavors\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:10:\"Fondamento\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:16:\"Fontdiner Swanky\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:5:\"Forum\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:37:\"cyrillic,cyrillic-ext,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:12:\"Francois One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:16:\"Frank Ruhl Libre\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,700,900\";s:13:\"character_set\";s:22:\"hebrew,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:8:\"Fraunces\";a:3:{s:6:\"styles\";s:126:\"100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:12:\"Freckle Face\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:20:\"Fredericka the Great\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:11:\"Fredoka One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:8:\"Freehand\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:7:\"display\";}s:6:\"Fresca\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Frijole\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:7:\"Fruktur\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:9:\"Fugaz One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:9:\"GFS Didot\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"greek\";s:4:\"type\";s:5:\"serif\";}s:15:\"GFS Neohellenic\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:5:\"greek\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Gabriela\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:27:\"cyrillic,cyrillic-ext,latin\";s:4:\"type\";s:5:\"serif\";}s:5:\"Gaegu\";a:3:{s:6:\"styles\";s:15:\"300,regular,700\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:11:\"handwriting\";}s:6:\"Gafata\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Galada\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:13:\"bengali,latin\";s:4:\"type\";s:7:\"display\";}s:8:\"Galdeano\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Galindo\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:12:\"Gamja Flower\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:11:\"handwriting\";}s:8:\"Gayathri\";a:3:{s:6:\"styles\";s:15:\"100,regular,700\";s:13:\"character_set\";s:15:\"latin,malayalam\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Gelasio\";a:3:{s:6:\"styles\";s:56:\"regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:13:\"Gentium Basic\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:18:\"Gentium Book Basic\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:3:\"Geo\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Geostar\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:12:\"Geostar Fill\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:12:\"Germania One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:6:\"Gidugu\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"latin,telugu\";s:4:\"type\";s:10:\"sans-serif\";}s:13:\"Gilda Display\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:8:\"Girassol\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:14:\"Give You Glory\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:13:\"Glass Antiqua\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:6:\"Glegoo\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:17:\"Gloria Hallelujah\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:10:\"Goblin One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:10:\"Gochi Hand\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Goldman\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:8:\"Gorditas\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:9:\"Gothic A1\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:4:\"Gotu\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:37:\"devanagari,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:21:\"Goudy Bookletter 1911\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:8:\"Graduate\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:11:\"Grand Hotel\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:12:\"Grandstander\";a:3:{s:6:\"styles\";s:126:\"100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:12:\"Gravitas One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:11:\"Great Vibes\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:6:\"Grenze\";a:3:{s:6:\"styles\";s:126:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:14:\"Grenze Gotisch\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:6:\"Griffy\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:6:\"Gruppo\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:5:\"Gudea\";a:3:{s:6:\"styles\";s:18:\"regular,italic,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:4:\"Gugi\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:7:\"display\";}s:6:\"Gupter\";a:3:{s:6:\"styles\";s:15:\"regular,500,700\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:8:\"Gurajada\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"latin,telugu\";s:4:\"type\";s:5:\"serif\";}s:6:\"Habibi\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:14:\"Hachi Maru Pop\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:33:\"cyrillic,japanese,latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:6:\"Halant\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:15:\"Hammersmith One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Hanalei\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:12:\"Hanalei Fill\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:7:\"Handlee\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Hanuman\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:5:\"serif\";}s:12:\"Happy Monkey\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:9:\"Harmattan\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:22:\"arabic,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Headland One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:5:\"Heebo\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:12:\"hebrew,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Henny Penny\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:10:\"Hepta Slab\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:20:\"Herr Von Muellerhoff\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:9:\"Hi Melody\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:11:\"handwriting\";}s:4:\"Hind\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Hind Guntur\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:22:\"latin,latin-ext,telugu\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Hind Madurai\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:21:\"latin,latin-ext,tamil\";s:4:\"type\";s:10:\"sans-serif\";}s:13:\"Hind Siliguri\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:23:\"bengali,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:13:\"Hind Vadodara\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:24:\"gujarati,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:15:\"Holtwood One SC\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:14:\"Homemade Apple\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:8:\"Homenaje\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:13:\"IBM Plex Mono\";a:3:{s:6:\"styles\";s:98:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:9:\"monospace\";}s:13:\"IBM Plex Sans\";a:3:{s:6:\"styles\";s:98:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:54:\"cyrillic,cyrillic-ext,greek,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:23:\"IBM Plex Sans Condensed\";a:3:{s:6:\"styles\";s:98:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:14:\"IBM Plex Serif\";a:3:{s:6:\"styles\";s:98:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:15:\"IM Fell DW Pica\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:18:\"IM Fell DW Pica SC\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:19:\"IM Fell Double Pica\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:22:\"IM Fell Double Pica SC\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:15:\"IM Fell English\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:18:\"IM Fell English SC\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:20:\"IM Fell French Canon\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:23:\"IM Fell French Canon SC\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:20:\"IM Fell Great Primer\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:23:\"IM Fell Great Primer SC\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:16:\"Ibarra Real Nova\";a:3:{s:6:\"styles\";s:56:\"regular,500,600,700,italic,500italic,600italic,700italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:7:\"Iceberg\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:7:\"Iceland\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:5:\"Imbue\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:7:\"Imprima\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Inconsolata\";a:3:{s:6:\"styles\";s:35:\"200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:9:\"monospace\";}s:5:\"Inder\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Indie Flower\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:5:\"Inika\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:14:\"Inknut Antiqua\";a:3:{s:6:\"styles\";s:31:\"300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:10:\"Inria Sans\";a:3:{s:6:\"styles\";s:42:\"300,300italic,regular,italic,700,700italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Inria Serif\";a:3:{s:6:\"styles\";s:42:\"300,300italic,regular,italic,700,700italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:5:\"Inter\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:64:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Irish Grover\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:9:\"Istok Web\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:37:\"cyrillic,cyrillic-ext,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Italiana\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:9:\"Italianno\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:4:\"Itim\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:11:\"handwriting\";}s:16:\"Jacques Francois\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:23:\"Jacques Francois Shadow\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:5:\"Jaldi\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:14:\"JetBrains Mono\";a:3:{s:6:\"styles\";s:112:\"100,200,300,regular,500,600,700,800,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic\";s:13:\"character_set\";s:54:\"cyrillic,cyrillic-ext,greek,latin,latin-ext,vietnamese\";s:4:\"type\";s:9:\"monospace\";}s:14:\"Jim Nightshade\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:10:\"Jockey One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Jolly Lodger\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:8:\"Jomhuria\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:22:\"arabic,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:9:\"Jomolhari\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:13:\"latin,tibetan\";s:4:\"type\";s:5:\"serif\";}s:12:\"Josefin Sans\";a:3:{s:6:\"styles\";s:98:\"100,200,300,regular,500,600,700,100italic,200italic,300italic,italic,500italic,600italic,700italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Josefin Slab\";a:3:{s:6:\"styles\";s:98:\"100,200,300,regular,500,600,700,100italic,200italic,300italic,italic,500italic,600italic,700italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:4:\"Jost\";a:3:{s:6:\"styles\";s:126:\"100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:24:\"cyrillic,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Joti One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:3:\"Jua\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Judson\";a:3:{s:6:\"styles\";s:18:\"regular,italic,700\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:5:\"Julee\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:15:\"Julius Sans One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Junge\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:4:\"Jura\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:64:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:17:\"Just Another Hand\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:23:\"Just Me Again Down Here\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:3:\"K2D\";a:3:{s:6:\"styles\";s:112:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Kadwa\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:16:\"devanagari,latin\";s:4:\"type\";s:5:\"serif\";}s:5:\"Kalam\";a:3:{s:6:\"styles\";s:15:\"300,regular,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Kameron\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:5:\"Kanit\";a:3:{s:6:\"styles\";s:126:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Kantumruy\";a:3:{s:6:\"styles\";s:15:\"300,regular,700\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Karantina\";a:3:{s:6:\"styles\";s:15:\"300,regular,700\";s:13:\"character_set\";s:22:\"hebrew,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:5:\"Karla\";a:3:{s:6:\"styles\";s:98:\"200,300,regular,500,600,700,800,200italic,300italic,italic,500italic,600italic,700italic,800italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Karma\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:7:\"Katibeh\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:22:\"arabic,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:14:\"Kaushan Script\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:9:\"Kavivanar\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:21:\"latin,latin-ext,tamil\";s:4:\"type\";s:11:\"handwriting\";}s:6:\"Kavoon\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:10:\"Kdam Thmor\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:7:\"display\";}s:10:\"Keania One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:10:\"Kelly Slab\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"cyrillic,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:5:\"Kenia\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:5:\"Khand\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Khmer\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:7:\"display\";}s:5:\"Khula\";a:3:{s:6:\"styles\";s:23:\"300,regular,600,700,800\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:14:\"Kirang Haerang\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:7:\"display\";}s:8:\"Kite One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Kiwi Maru\";a:3:{s:6:\"styles\";s:15:\"300,regular,500\";s:13:\"character_set\";s:33:\"cyrillic,japanese,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:7:\"Knewave\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:4:\"KoHo\";a:3:{s:6:\"styles\";s:84:\"200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Kodchasan\";a:3:{s:6:\"styles\";s:84:\"200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Kosugi\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:23:\"cyrillic,japanese,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Kosugi Maru\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:23:\"cyrillic,japanese,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Kotta One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:6:\"Koulen\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:7:\"display\";}s:6:\"Kranky\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:5:\"Kreon\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:6:\"Kristi\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:9:\"Krona One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:4:\"Krub\";a:3:{s:6:\"styles\";s:84:\"200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Kufam\";a:3:{s:6:\"styles\";s:84:\"regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:33:\"arabic,latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:10:\"Kulim Park\";a:3:{s:6:\"styles\";s:70:\"200,200italic,300,300italic,regular,italic,600,600italic,700,700italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Kumar One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"gujarati,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:17:\"Kumar One Outline\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"gujarati,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:10:\"Kumbh Sans\";a:3:{s:6:\"styles\";s:15:\"300,regular,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Kurale\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,devanagari,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:15:\"La Belle Aurore\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Lacquer\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:5:\"Laila\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Lakki Reddy\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"latin,telugu\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Lalezar\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:33:\"arabic,latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:8:\"Lancelot\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:6:\"Langar\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"gurmukhi,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:6:\"Lateef\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"arabic,latin\";s:4:\"type\";s:11:\"handwriting\";}s:4:\"Lato\";a:3:{s:6:\"styles\";s:70:\"100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:13:\"League Script\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:12:\"Leckerli One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:6:\"Ledger\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"cyrillic,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:6:\"Lekton\";a:3:{s:6:\"styles\";s:18:\"regular,italic,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Lemon\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:8:\"Lemonada\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:33:\"arabic,latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:6:\"Lexend\";a:3:{s:6:\"styles\";s:31:\"100,300,regular,500,600,700,800\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Lexend Deca\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:10:\"Lexend Exa\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Lexend Giga\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Lexend Mega\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Lexend Peta\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Lexend Tera\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Lexend Zetta\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:17:\"Libre Barcode 128\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:22:\"Libre Barcode 128 Text\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:16:\"Libre Barcode 39\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:25:\"Libre Barcode 39 Extended\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:30:\"Libre Barcode 39 Extended Text\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:21:\"Libre Barcode 39 Text\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:24:\"Libre Barcode EAN13 Text\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:17:\"Libre Baskerville\";a:3:{s:6:\"styles\";s:18:\"regular,italic,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:20:\"Libre Caslon Display\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:17:\"Libre Caslon Text\";a:3:{s:6:\"styles\";s:18:\"regular,italic,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:14:\"Libre Franklin\";a:3:{s:6:\"styles\";s:126:\"100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Life Savers\";a:3:{s:6:\"styles\";s:15:\"regular,700,800\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:10:\"Lilita One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:15:\"Lily Script One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:9:\"Limelight\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:11:\"Linden Hill\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:8:\"Literata\";a:3:{s:6:\"styles\";s:112:\"200,300,regular,500,600,700,800,900,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:64:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:16:\"Liu Jian Mao Cao\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"chinese-simplified,latin\";s:4:\"type\";s:11:\"handwriting\";}s:6:\"Livvic\";a:3:{s:6:\"styles\";s:112:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,900,900italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Lobster\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:11:\"Lobster Two\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:16:\"Londrina Outline\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:15:\"Londrina Shadow\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:15:\"Londrina Sketch\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:14:\"Londrina Solid\";a:3:{s:6:\"styles\";s:19:\"100,300,regular,900\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:9:\"Long Cang\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"chinese-simplified,latin\";s:4:\"type\";s:11:\"handwriting\";}s:4:\"Lora\";a:3:{s:6:\"styles\";s:56:\"regular,500,600,700,italic,500italic,600italic,700italic\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:21:\"Love Ya Like A Sister\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:17:\"Loved by the King\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:14:\"Lovers Quarrel\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:12:\"Luckiest Guy\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:8:\"Lusitana\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:7:\"Lustria\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:9:\"M PLUS 1p\";a:3:{s:6:\"styles\";s:31:\"100,300,regular,500,700,800,900\";s:13:\"character_set\";s:80:\"cyrillic,cyrillic-ext,greek,greek-ext,hebrew,japanese,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:17:\"M PLUS Rounded 1c\";a:3:{s:6:\"styles\";s:31:\"100,300,regular,500,700,800,900\";s:13:\"character_set\";s:80:\"cyrillic,cyrillic-ext,greek,greek-ext,hebrew,japanese,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:13:\"Ma Shan Zheng\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"chinese-simplified,latin\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Macondo\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:18:\"Macondo Swash Caps\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:4:\"Mada\";a:3:{s:6:\"styles\";s:31:\"200,300,regular,500,600,700,900\";s:13:\"character_set\";s:12:\"arabic,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Magra\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:13:\"Maiden Orange\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:7:\"Maitree\";a:3:{s:6:\"styles\";s:27:\"200,300,regular,500,600,700\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:18:\"Major Mono Display\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:9:\"monospace\";}s:4:\"Mako\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:4:\"Mali\";a:3:{s:6:\"styles\";s:84:\"200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:11:\"handwriting\";}s:8:\"Mallanna\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"latin,telugu\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Mandali\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"latin,telugu\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Manjari\";a:3:{s:6:\"styles\";s:15:\"100,regular,700\";s:13:\"character_set\";s:25:\"latin,latin-ext,malayalam\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Manrope\";a:3:{s:6:\"styles\";s:31:\"200,300,regular,500,600,700,800\";s:13:\"character_set\";s:30:\"cyrillic,greek,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Mansalva\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Manuale\";a:3:{s:6:\"styles\";s:56:\"regular,500,600,700,italic,500italic,600italic,700italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:9:\"Marcellus\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:12:\"Marcellus SC\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:12:\"Marck Script\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"cyrillic,latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:9:\"Margarine\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:12:\"Markazi Text\";a:3:{s:6:\"styles\";s:19:\"regular,500,600,700\";s:13:\"character_set\";s:33:\"arabic,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:9:\"Marko One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:8:\"Marmelad\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"cyrillic,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Martel\";a:3:{s:6:\"styles\";s:31:\"200,300,regular,600,700,800,900\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:11:\"Martel Sans\";a:3:{s:6:\"styles\";s:31:\"200,300,regular,600,700,800,900\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Marvel\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:4:\"Mate\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:7:\"Mate SC\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:9:\"Maven Pro\";a:3:{s:6:\"styles\";s:27:\"regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"McLaren\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:6:\"Meddon\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:13:\"MedievalSharp\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:10:\"Medula One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:12:\"Meera Inimai\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:11:\"latin,tamil\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Megrim\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:11:\"Meie Script\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:8:\"Merienda\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:12:\"Merienda One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:12:\"Merriweather\";a:3:{s:6:\"styles\";s:56:\"300,300italic,regular,italic,700,700italic,900,900italic\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:17:\"Merriweather Sans\";a:3:{s:6:\"styles\";s:84:\"300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";s:13:\"character_set\";s:39:\"cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Metal\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:7:\"display\";}s:11:\"Metal Mania\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:12:\"Metamorphous\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:11:\"Metrophobic\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Michroma\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Milonga\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:9:\"Miltonian\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:16:\"Miltonian Tattoo\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:4:\"Mina\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:23:\"bengali,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Miniver\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:12:\"Miriam Libre\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:22:\"hebrew,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Mirza\";a:3:{s:6:\"styles\";s:19:\"regular,500,600,700\";s:13:\"character_set\";s:22:\"arabic,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:14:\"Miss Fajardose\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:4:\"Mitr\";a:3:{s:6:\"styles\";s:27:\"200,300,regular,500,600,700\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Modak\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:14:\"Modern Antiqua\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:5:\"Mogra\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"gujarati,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:7:\"Molengo\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Molle\";a:3:{s:6:\"styles\";s:6:\"italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:5:\"Monda\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Monofett\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:7:\"Monoton\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:20:\"Monsieur La Doulaise\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Montaga\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:6:\"Montez\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:10:\"Montserrat\";a:3:{s:6:\"styles\";s:126:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:21:\"Montserrat Alternates\";a:3:{s:6:\"styles\";s:126:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:20:\"Montserrat Subrayada\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:4:\"Moul\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:7:\"display\";}s:8:\"Moulpali\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:7:\"display\";}s:22:\"Mountains of Christmas\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:13:\"Mouse Memoirs\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:10:\"Mr Bedfort\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:8:\"Mr Dafoe\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:14:\"Mr De Haviland\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:19:\"Mrs Saint Delafield\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:13:\"Mrs Sheppards\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:5:\"Mukta\";a:3:{s:6:\"styles\";s:31:\"200,300,regular,500,600,700,800\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Mukta Mahee\";a:3:{s:6:\"styles\";s:31:\"200,300,regular,500,600,700,800\";s:13:\"character_set\";s:24:\"gurmukhi,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Mukta Malar\";a:3:{s:6:\"styles\";s:31:\"200,300,regular,500,600,700,800\";s:13:\"character_set\";s:21:\"latin,latin-ext,tamil\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Mukta Vaani\";a:3:{s:6:\"styles\";s:31:\"200,300,regular,500,600,700,800\";s:13:\"character_set\";s:24:\"gujarati,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Mulish\";a:3:{s:6:\"styles\";s:112:\"200,300,regular,500,600,700,800,900,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"MuseoModerno\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:13:\"Mystery Quest\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:3:\"NTR\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"latin,telugu\";s:4:\"type\";s:10:\"sans-serif\";}s:18:\"Nanum Brush Script\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:11:\"handwriting\";}s:12:\"Nanum Gothic\";a:3:{s:6:\"styles\";s:15:\"regular,700,800\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:19:\"Nanum Gothic Coding\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:9:\"monospace\";}s:14:\"Nanum Myeongjo\";a:3:{s:6:\"styles\";s:15:\"regular,700,800\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:5:\"serif\";}s:16:\"Nanum Pen Script\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:11:\"handwriting\";}s:9:\"Nerko One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:6:\"Neucha\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:14:\"cyrillic,latin\";s:4:\"type\";s:11:\"handwriting\";}s:6:\"Neuton\";a:3:{s:6:\"styles\";s:30:\"200,300,regular,italic,700,800\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:10:\"New Rocker\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:11:\"New Tegomin\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"japanese,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:10:\"News Cycle\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:10:\"Newsreader\";a:3:{s:6:\"styles\";s:98:\"200,300,regular,500,600,700,800,200italic,300italic,italic,500italic,600italic,700italic,800italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:7:\"Niconne\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Niramit\";a:3:{s:6:\"styles\";s:84:\"200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Nixie One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:6:\"Nobile\";a:3:{s:6:\"styles\";s:42:\"regular,italic,500,500italic,700,700italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Nokora\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:5:\"serif\";}s:7:\"Norican\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Nosifer\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:7:\"Notable\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:20:\"Nothing You Could Do\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:12:\"Noticia Text\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:9:\"Noto Sans\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:75:\"cyrillic,cyrillic-ext,devanagari,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Noto Sans HK\";a:3:{s:6:\"styles\";s:27:\"100,300,regular,500,700,900\";s:13:\"character_set\";s:22:\"chinese-hongkong,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Noto Sans JP\";a:3:{s:6:\"styles\";s:27:\"100,300,regular,500,700,900\";s:13:\"character_set\";s:14:\"japanese,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Noto Sans KR\";a:3:{s:6:\"styles\";s:27:\"100,300,regular,500,700,900\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Noto Sans SC\";a:3:{s:6:\"styles\";s:27:\"100,300,regular,500,700,900\";s:13:\"character_set\";s:24:\"chinese-simplified,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Noto Sans TC\";a:3:{s:6:\"styles\";s:27:\"100,300,regular,500,700,900\";s:13:\"character_set\";s:25:\"chinese-traditional,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:10:\"Noto Serif\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:64:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:13:\"Noto Serif JP\";a:3:{s:6:\"styles\";s:31:\"200,300,regular,500,600,700,900\";s:13:\"character_set\";s:14:\"japanese,latin\";s:4:\"type\";s:5:\"serif\";}s:13:\"Noto Serif KR\";a:3:{s:6:\"styles\";s:31:\"200,300,regular,500,600,700,900\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:5:\"serif\";}s:13:\"Noto Serif SC\";a:3:{s:6:\"styles\";s:31:\"200,300,regular,500,600,700,900\";s:13:\"character_set\";s:24:\"chinese-simplified,latin\";s:4:\"type\";s:5:\"serif\";}s:13:\"Noto Serif TC\";a:3:{s:6:\"styles\";s:31:\"200,300,regular,500,600,700,900\";s:13:\"character_set\";s:25:\"chinese-traditional,latin\";s:4:\"type\";s:5:\"serif\";}s:8:\"Nova Cut\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:9:\"Nova Flat\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:9:\"Nova Mono\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:11:\"greek,latin\";s:4:\"type\";s:9:\"monospace\";}s:9:\"Nova Oval\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:10:\"Nova Round\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:11:\"Nova Script\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:9:\"Nova Slim\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:11:\"Nova Square\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:6:\"Numans\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Nunito\";a:3:{s:6:\"styles\";s:98:\"200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Nunito Sans\";a:3:{s:6:\"styles\";s:98:\"200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Odibee Sans\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:14:\"Odor Mean Chey\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:7:\"display\";}s:7:\"Offside\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:2:\"Oi\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:32:\"greek,latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:15:\"Old Standard TT\";a:3:{s:6:\"styles\";s:18:\"regular,italic,700\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:9:\"Oldenburg\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:11:\"Oleo Script\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:22:\"Oleo Script Swash Caps\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:9:\"Open Sans\";a:3:{s:6:\"styles\";s:70:\"300,300italic,regular,italic,600,600italic,700,700italic,800,800italic\";s:13:\"character_set\";s:64:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:19:\"Open Sans Condensed\";a:3:{s:6:\"styles\";s:17:\"300,300italic,700\";s:13:\"character_set\";s:64:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Oranienbaum\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:37:\"cyrillic,cyrillic-ext,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:8:\"Orbitron\";a:3:{s:6:\"styles\";s:27:\"regular,500,600,700,800,900\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Oregano\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:11:\"Orelega One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:37:\"cyrillic,cyrillic-ext,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:7:\"Orienta\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:15:\"Original Surfer\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:6:\"Oswald\";a:3:{s:6:\"styles\";s:27:\"200,300,regular,500,600,700\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:16:\"Over the Rainbow\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:8:\"Overlock\";a:3:{s:6:\"styles\";s:42:\"regular,italic,700,700italic,900,900italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:11:\"Overlock SC\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:8:\"Overpass\";a:3:{s:6:\"styles\";s:112:\"100,100italic,200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:13:\"Overpass Mono\";a:3:{s:6:\"styles\";s:19:\"300,regular,600,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:9:\"monospace\";}s:3:\"Ovo\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:7:\"Oxanium\";a:3:{s:6:\"styles\";s:31:\"200,300,regular,500,600,700,800\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:6:\"Oxygen\";a:3:{s:6:\"styles\";s:15:\"300,regular,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Oxygen Mono\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:9:\"monospace\";}s:7:\"PT Mono\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:37:\"cyrillic,cyrillic-ext,latin,latin-ext\";s:4:\"type\";s:9:\"monospace\";}s:7:\"PT Sans\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:37:\"cyrillic,cyrillic-ext,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:15:\"PT Sans Caption\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:37:\"cyrillic,cyrillic-ext,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:14:\"PT Sans Narrow\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:37:\"cyrillic,cyrillic-ext,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"PT Serif\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:37:\"cyrillic,cyrillic-ext,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:16:\"PT Serif Caption\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:37:\"cyrillic,cyrillic-ext,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:8:\"Pacifico\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:11:\"handwriting\";}s:6:\"Padauk\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:13:\"latin,myanmar\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Palanquin\";a:3:{s:6:\"styles\";s:31:\"100,200,300,regular,500,600,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:14:\"Palanquin Dark\";a:3:{s:6:\"styles\";s:19:\"regular,500,600,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Pangolin\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Paprika\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:10:\"Parisienne\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:11:\"Passero One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:11:\"Passion One\";a:3:{s:6:\"styles\";s:15:\"regular,700,900\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:18:\"Pathway Gothic One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Patrick Hand\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:11:\"handwriting\";}s:15:\"Patrick Hand SC\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Pattaya\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:40:\"cyrillic,latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Patua One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:7:\"Pavanam\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:21:\"latin,latin-ext,tamil\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Paytone One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Peddana\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"latin,telugu\";s:4:\"type\";s:5:\"serif\";}s:7:\"Peralta\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:16:\"Permanent Marker\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:19:\"Petit Formal Script\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Petrona\";a:3:{s:6:\"styles\";s:126:\"100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:11:\"Philosopher\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:38:\"cyrillic,cyrillic-ext,latin,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Piazzolla\";a:3:{s:6:\"styles\";s:126:\"100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:64:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:6:\"Piedra\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:13:\"Pinyon Script\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:10:\"Pirata One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:7:\"Plaster\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:4:\"Play\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:54:\"cyrillic,cyrillic-ext,greek,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Playball\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:16:\"Playfair Display\";a:3:{s:6:\"styles\";s:84:\"regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:35:\"cyrillic,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:19:\"Playfair Display SC\";a:3:{s:6:\"styles\";s:42:\"regular,italic,700,700italic,900,900italic\";s:13:\"character_set\";s:35:\"cyrillic,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:7:\"Podkova\";a:3:{s:6:\"styles\";s:23:\"regular,500,600,700,800\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:10:\"Poiret One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"cyrillic,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:10:\"Poller One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:4:\"Poly\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:8:\"Pompiere\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:12:\"Pontano Sans\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:10:\"Poor Story\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:7:\"display\";}s:7:\"Poppins\";a:3:{s:6:\"styles\";s:126:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:16:\"Port Lligat Sans\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:16:\"Port Lligat Slab\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:9:\"Potta One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:35:\"japanese,latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:14:\"Pragati Narrow\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Prata\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:38:\"cyrillic,cyrillic-ext,latin,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:11:\"Preahvihear\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:7:\"display\";}s:14:\"Press Start 2P\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:43:\"cyrillic,cyrillic-ext,greek,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:5:\"Pridi\";a:3:{s:6:\"styles\";s:27:\"200,300,regular,500,600,700\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:14:\"Princess Sofia\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:8:\"Prociono\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:6:\"Prompt\";a:3:{s:6:\"styles\";s:126:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:10:\"Prosto One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"cyrillic,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:11:\"Proza Libre\";a:3:{s:6:\"styles\";s:70:\"regular,italic,500,500italic,600,600italic,700,700italic,800,800italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Public Sans\";a:3:{s:6:\"styles\";s:126:\"100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Puritan\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Purple Purse\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:6:\"Quando\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:8:\"Quantico\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Quattrocento\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:17:\"Quattrocento Sans\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Questrial\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Quicksand\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:14:\"Quintessential\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Qwigley\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:15:\"Racing Sans One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:6:\"Radley\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:8:\"Rajdhani\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Rakkas\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:22:\"arabic,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:7:\"Raleway\";a:3:{s:6:\"styles\";s:126:\"100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Raleway Dots\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:10:\"Ramabhadra\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"latin,telugu\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Ramaraja\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"latin,telugu\";s:4:\"type\";s:5:\"serif\";}s:6:\"Rambla\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Rammetto One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:8:\"Ranchers\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:6:\"Rancho\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:5:\"Ranga\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:4:\"Rasa\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:24:\"gujarati,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:9:\"Rationale\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Ravi Prakash\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"latin,telugu\";s:4:\"type\";s:7:\"display\";}s:9:\"Recursive\";a:3:{s:6:\"styles\";s:31:\"300,regular,500,600,700,800,900\";s:13:\"character_set\";s:16:\"latin,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:15:\"Red Hat Display\";a:3:{s:6:\"styles\";s:56:\"regular,italic,500,500italic,700,700italic,900,900italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Red Hat Text\";a:3:{s:6:\"styles\";s:42:\"regular,italic,500,500italic,700,700italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Red Rose\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:9:\"Redressed\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:9:\"Reem Kufi\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"arabic,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:13:\"Reenie Beanie\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:10:\"Reggae One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:33:\"cyrillic,japanese,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:7:\"Revalia\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:13:\"Rhodium Libre\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:6:\"Ribeye\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:13:\"Ribeye Marrow\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:9:\"Righteous\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:6:\"Risque\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:6:\"Roboto\";a:3:{s:6:\"styles\";s:84:\"100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic\";s:13:\"character_set\";s:64:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:16:\"Roboto Condensed\";a:3:{s:6:\"styles\";s:42:\"300,300italic,regular,italic,700,700italic\";s:13:\"character_set\";s:64:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Roboto Mono\";a:3:{s:6:\"styles\";s:98:\"100,200,300,regular,500,600,700,100italic,200italic,300italic,italic,500italic,600italic,700italic\";s:13:\"character_set\";s:54:\"cyrillic,cyrillic-ext,greek,latin,latin-ext,vietnamese\";s:4:\"type\";s:9:\"monospace\";}s:11:\"Roboto Slab\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:64:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:9:\"Rochester\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:9:\"Rock Salt\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:13:\"RocknRoll One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:33:\"cyrillic,japanese,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Rokkitt\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:9:\"Romanesco\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:9:\"Ropa Sans\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Rosario\";a:3:{s:6:\"styles\";s:70:\"300,regular,500,600,700,300italic,italic,500italic,600italic,700italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Rosarivo\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:12:\"Rouge Script\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Rowdies\";a:3:{s:6:\"styles\";s:15:\"300,regular,700\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:9:\"Rozha One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:5:\"Rubik\";a:3:{s:6:\"styles\";s:98:\"300,regular,500,600,700,800,900,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:44:\"cyrillic,cyrillic-ext,hebrew,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:14:\"Rubik Mono One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"cyrillic,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:4:\"Ruda\";a:3:{s:6:\"styles\";s:27:\"regular,500,600,700,800,900\";s:13:\"character_set\";s:35:\"cyrillic,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Rufina\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:11:\"Ruge Boogie\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:6:\"Ruluko\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:10:\"Rum Raisin\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:14:\"Ruslan Display\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"cyrillic,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:9:\"Russo One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"cyrillic,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Ruthie\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:3:\"Rye\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:10:\"Sacramento\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Sahitya\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:16:\"devanagari,latin\";s:4:\"type\";s:5:\"serif\";}s:4:\"Sail\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:5:\"Saira\";a:3:{s:6:\"styles\";s:126:\"100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:15:\"Saira Condensed\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:21:\"Saira Extra Condensed\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:20:\"Saira Semi Condensed\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:17:\"Saira Stencil One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:5:\"Salsa\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:7:\"Sanchez\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:8:\"Sancreek\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:7:\"Sansita\";a:3:{s:6:\"styles\";s:56:\"regular,italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:15:\"Sansita Swashed\";a:3:{s:6:\"styles\";s:31:\"300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:7:\"Sarabun\";a:3:{s:6:\"styles\";s:112:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Sarala\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Sarina\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:8:\"Sarpanch\";a:3:{s:6:\"styles\";s:27:\"regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Satisfy\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:15:\"Sawarabi Gothic\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:44:\"cyrillic,japanese,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:15:\"Sawarabi Mincho\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"japanese,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Scada\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:37:\"cyrillic,cyrillic-ext,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Scheherazade\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:12:\"arabic,latin\";s:4:\"type\";s:5:\"serif\";}s:10:\"Schoolbell\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:9:\"Scope One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:14:\"Seaweed Script\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:11:\"Secular One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:22:\"hebrew,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Sedgwick Ave\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:11:\"handwriting\";}s:20:\"Sedgwick Ave Display\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:11:\"handwriting\";}s:3:\"Sen\";a:3:{s:6:\"styles\";s:15:\"regular,700,800\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Sevillana\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:11:\"Seymour One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"cyrillic,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:18:\"Shadows Into Light\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:22:\"Shadows Into Light Two\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:6:\"Shanti\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Share\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:10:\"Share Tech\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:15:\"Share Tech Mono\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:9:\"monospace\";}s:15:\"Shippori Mincho\";a:3:{s:6:\"styles\";s:23:\"regular,500,600,700,800\";s:13:\"character_set\";s:24:\"japanese,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:18:\"Shippori Mincho B1\";a:3:{s:6:\"styles\";s:23:\"regular,500,600,700,800\";s:13:\"character_set\";s:24:\"japanese,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:9:\"Shojumaru\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:11:\"Short Stack\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:9:\"Shrikhand\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"gujarati,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:8:\"Siemreap\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:7:\"display\";}s:10:\"Sigmar One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:7:\"Signika\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:16:\"Signika Negative\";a:3:{s:6:\"styles\";s:19:\"300,regular,600,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Simonetta\";a:3:{s:6:\"styles\";s:28:\"regular,italic,900,900italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:10:\"Single Day\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:6:\"korean\";s:4:\"type\";s:7:\"display\";}s:7:\"Sintony\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:13:\"Sirin Stencil\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:8:\"Six Caps\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Skranji\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:10:\"Slabo 13px\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:10:\"Slabo 27px\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:7:\"Slackey\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:6:\"Smokum\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:6:\"Smythe\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:7:\"Sniglet\";a:3:{s:6:\"styles\";s:11:\"regular,800\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:7:\"Snippet\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:13:\"Snowburst One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:10:\"Sofadi One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:5:\"Sofia\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:6:\"Solway\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,700,800\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:10:\"Song Myung\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:5:\"serif\";}s:10:\"Sonsie One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:4:\"Sora\";a:3:{s:6:\"styles\";s:35:\"100,200,300,regular,500,600,700,800\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:16:\"Sorts Mill Goudy\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:15:\"Source Code Pro\";a:3:{s:6:\"styles\";s:98:\"200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,900,900italic\";s:13:\"character_set\";s:54:\"cyrillic,cyrillic-ext,greek,latin,latin-ext,vietnamese\";s:4:\"type\";s:9:\"monospace\";}s:15:\"Source Sans Pro\";a:3:{s:6:\"styles\";s:84:\"200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,900,900italic\";s:13:\"character_set\";s:64:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:16:\"Source Serif Pro\";a:3:{s:6:\"styles\";s:84:\"200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,900,900italic\";s:13:\"character_set\";s:54:\"cyrillic,cyrillic-ext,greek,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:13:\"Space Grotesk\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:10:\"Space Mono\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:9:\"monospace\";}s:7:\"Spartan\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:13:\"Special Elite\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:8:\"Spectral\";a:3:{s:6:\"styles\";s:98:\"200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic\";s:13:\"character_set\";s:35:\"cyrillic,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:11:\"Spectral SC\";a:3:{s:6:\"styles\";s:98:\"200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic\";s:13:\"character_set\";s:35:\"cyrillic,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:10:\"Spicy Rice\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:9:\"Spinnaker\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Spirax\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:10:\"Squada One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:20:\"Sree Krushnadevaraya\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"latin,telugu\";s:4:\"type\";s:5:\"serif\";}s:8:\"Sriracha\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:11:\"handwriting\";}s:8:\"Srisakdi\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:7:\"display\";}s:11:\"Staatliches\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:9:\"Stalemate\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:13:\"Stalinist One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"cyrillic,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:15:\"Stardos Stencil\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:5:\"Stick\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:33:\"cyrillic,japanese,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:21:\"Stint Ultra Condensed\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:20:\"Stint Ultra Expanded\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:5:\"Stoke\";a:3:{s:6:\"styles\";s:11:\"300,regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:6:\"Strait\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Stylish\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:19:\"Sue Ellen Francisco\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:8:\"Suez One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:22:\"hebrew,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:13:\"Sulphur Point\";a:3:{s:6:\"styles\";s:15:\"300,regular,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:6:\"Sumana\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:9:\"Sunflower\";a:3:{s:6:\"styles\";s:11:\"300,500,700\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Sunshiney\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:16:\"Supermercado One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:4:\"Sura\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:7:\"Suranna\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"latin,telugu\";s:4:\"type\";s:5:\"serif\";}s:9:\"Suravaram\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"latin,telugu\";s:4:\"type\";s:5:\"serif\";}s:11:\"Suwannaphum\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:7:\"display\";}s:18:\"Swanky and Moo Moo\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:9:\"Syncopate\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:4:\"Syne\";a:3:{s:6:\"styles\";s:23:\"regular,500,600,700,800\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Syne Mono\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:9:\"monospace\";}s:12:\"Syne Tactile\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:7:\"Tajawal\";a:3:{s:6:\"styles\";s:31:\"200,300,regular,500,700,800,900\";s:13:\"character_set\";s:12:\"arabic,latin\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Tangerine\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:6:\"Taprom\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"khmer\";s:4:\"type\";s:7:\"display\";}s:5:\"Tauri\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Taviraj\";a:3:{s:6:\"styles\";s:126:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:4:\"Teko\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Telex\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:18:\"Tenali Ramakrishna\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"latin,telugu\";s:4:\"type\";s:10:\"sans-serif\";}s:10:\"Tenor Sans\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"cyrillic,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Text Me One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Texturina\";a:3:{s:6:\"styles\";s:126:\"100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:9:\"Thasadith\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:18:\"The Girl Next Door\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:6:\"Tienne\";a:3:{s:6:\"styles\";s:15:\"regular,700,900\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:7:\"Tillana\";a:3:{s:6:\"styles\";s:23:\"regular,500,600,700,800\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:11:\"handwriting\";}s:7:\"Timmana\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"latin,telugu\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Tinos\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:71:\"cyrillic,cyrillic-ext,greek,greek-ext,hebrew,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:9:\"Titan One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:13:\"Titillium Web\";a:3:{s:6:\"styles\";s:74:\"200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,900\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Tomorrow\";a:3:{s:6:\"styles\";s:126:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Trade Winds\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:9:\"Train One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:33:\"cyrillic,japanese,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:7:\"Trirong\";a:3:{s:6:\"styles\";s:126:\"100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:13:\"character_set\";s:31:\"latin,latin-ext,thai,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:8:\"Trispace\";a:3:{s:6:\"styles\";s:35:\"100,200,300,regular,500,600,700,800\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Trocchi\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:7:\"Trochut\";a:3:{s:6:\"styles\";s:18:\"regular,italic,700\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:10:\"Truculenta\";a:3:{s:6:\"styles\";s:39:\"100,200,300,regular,500,600,700,800,900\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:7:\"Trykker\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:10:\"Tulpen One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:11:\"Turret Road\";a:3:{s:6:\"styles\";s:27:\"200,300,regular,500,700,800\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:6:\"Ubuntu\";a:3:{s:6:\"styles\";s:56:\"300,300italic,regular,italic,500,500italic,700,700italic\";s:13:\"character_set\";s:53:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:16:\"Ubuntu Condensed\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:53:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Ubuntu Mono\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:53:\"cyrillic,cyrillic-ext,greek,greek-ext,latin,latin-ext\";s:4:\"type\";s:9:\"monospace\";}s:5:\"Ultra\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:14:\"Uncial Antiqua\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:8:\"Underdog\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"cyrillic,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:9:\"Unica One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:14:\"UnifrakturCook\";a:3:{s:6:\"styles\";s:3:\"700\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:18:\"UnifrakturMaguntia\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:7:\"Unkempt\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:6:\"Unlock\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:4:\"Unna\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:5:\"VT323\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:9:\"monospace\";}s:11:\"Vampiro One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:6:\"Varela\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"Varela Round\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:33:\"hebrew,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Varta\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Vast Shadow\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:12:\"Vesper Libre\";a:3:{s:6:\"styles\";s:19:\"regular,500,700,900\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:12:\"Viaoda Libre\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:5:\"Vibes\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"arabic,latin\";s:4:\"type\";s:7:\"display\";}s:5:\"Vibur\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:8:\"Vidaloka\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:4:\"Viga\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:5:\"Voces\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:7:\"Volkhov\";a:3:{s:6:\"styles\";s:28:\"regular,italic,700,700italic\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:5:\"serif\";}s:8:\"Vollkorn\";a:3:{s:6:\"styles\";s:84:\"regular,500,600,700,800,900,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:54:\"cyrillic,cyrillic-ext,greek,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:11:\"Vollkorn SC\";a:3:{s:6:\"styles\";s:19:\"regular,600,700,900\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:5:\"serif\";}s:8:\"Voltaire\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:23:\"Waiting for the Sunrise\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:8:\"Wallpoet\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:7:\"display\";}s:15:\"Walter Turncoat\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:6:\"Warnes\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:9:\"Wellfleet\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:9:\"Wendy One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:8:\"Wire One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Work Sans\";a:3:{s:6:\"styles\";s:126:\"100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Xanh Mono\";a:3:{s:6:\"styles\";s:14:\"regular,italic\";s:13:\"character_set\";s:26:\"latin,latin-ext,vietnamese\";s:4:\"type\";s:9:\"monospace\";}s:17:\"Yanone Kaffeesatz\";a:3:{s:6:\"styles\";s:27:\"200,300,regular,500,600,700\";s:13:\"character_set\";s:35:\"cyrillic,latin,latin-ext,vietnamese\";s:4:\"type\";s:10:\"sans-serif\";}s:11:\"Yantramanav\";a:3:{s:6:\"styles\";s:27:\"100,300,regular,500,700,900\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:9:\"Yatra One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:26:\"devanagari,latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:10:\"Yellowtail\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:9:\"Yeon Sung\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:12:\"korean,latin\";s:4:\"type\";s:7:\"display\";}s:10:\"Yeseva One\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:48:\"cyrillic,cyrillic-ext,latin,latin-ext,vietnamese\";s:4:\"type\";s:7:\"display\";}s:10:\"Yesteryear\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:4:\"Yrsa\";a:3:{s:6:\"styles\";s:23:\"300,regular,500,600,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:11:\"Yusei Magic\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"japanese,latin,latin-ext\";s:4:\"type\";s:10:\"sans-serif\";}s:12:\"ZCOOL KuaiLe\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"chinese-simplified,latin\";s:4:\"type\";s:7:\"display\";}s:21:\"ZCOOL QingKe HuangYou\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"chinese-simplified,latin\";s:4:\"type\";s:7:\"display\";}s:13:\"ZCOOL XiaoWei\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"chinese-simplified,latin\";s:4:\"type\";s:5:\"serif\";}s:8:\"Zen Dots\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}s:6:\"Zeyada\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:5:\"latin\";s:4:\"type\";s:11:\"handwriting\";}s:13:\"Zhi Mang Xing\";a:3:{s:6:\"styles\";s:7:\"regular\";s:13:\"character_set\";s:24:\"chinese-simplified,latin\";s:4:\"type\";s:11:\"handwriting\";}s:10:\"Zilla Slab\";a:3:{s:6:\"styles\";s:70:\"300,300italic,regular,italic,500,500italic,600,600italic,700,700italic\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:5:\"serif\";}s:20:\"Zilla Slab Highlight\";a:3:{s:6:\"styles\";s:11:\"regular,700\";s:13:\"character_set\";s:15:\"latin,latin-ext\";s:4:\"type\";s:7:\"display\";}}','yes'),(44922,'action_scheduler_hybrid_store_demarkation','2509','yes'),(44923,'schema-ActionScheduler_StoreSchema','4.0.1641918740','yes'),(44924,'schema-ActionScheduler_LoggerSchema','2.0.1601606900','yes'),(44931,'action_scheduler_lock_async-request-runner','1701276149','yes'),(44932,'action_scheduler_migration_status','complete','yes'),(44946,'disallowed_keys','','no'),(44947,'comment_previously_approved','1','yes'),(44948,'auto_plugin_theme_update_emails','a:0:{}','no'),(44949,'finished_updating_comment_type','1','yes'),(45074,'wp_mail_smtp_migration_version','4','yes'),(128553,'honeypot4cf7_config','a:12:{s:14:\"store_honeypot\";i:0;s:11:\"placeholder\";s:0:\"\";s:21:\"accessibility_message\";s:0:\"\";s:22:\"w3c_valid_autocomplete\";a:1:{i:0;s:5:\"false\";}s:15:\"move_inline_css\";a:1:{i:0;s:5:\"false\";}s:9:\"nomessage\";a:1:{i:0;s:5:\"false\";}s:17:\"timecheck_enabled\";a:1:{i:0;s:5:\"false\";}s:15:\"timecheck_value\";i:4;s:14:\"honeypot_count\";i:0;s:21:\"honeypot_install_date\";i:1618142687;s:30:\"honeypot_cf7_req_msg_dismissed\";i:0;s:20:\"honeypot4cf7_version\";s:3:\"2.1\";}','yes'),(128563,'rsssl_upgraded_to_four','1','yes'),(128564,'rsssl_mixed_content_scan_dismissed','1','yes'),(128565,'rsssl_google_analytics_dismissed','1','yes'),(128566,'rsssl_remaining_tasks','1','yes'),(128571,'rsssl_current_version','5.2.2','yes'),(128594,'wfls_last_role_change','1641918694','no'),(128654,'auto_update_core_dev','enabled','yes'),(128655,'auto_update_core_minor','enabled','yes'),(128656,'auto_update_core_major','unset','yes'),(128666,'https_detection_errors','a:0:{}','yes'),(129383,'duplicate_post_show_link','a:3:{s:9:\"new_draft\";s:1:\"1\";s:5:\"clone\";s:1:\"1\";s:17:\"rewrite_republish\";s:1:\"1\";}','yes'),(129384,'duplicate_post_show_link_in','a:4:{s:3:\"row\";s:1:\"1\";s:8:\"adminbar\";s:1:\"1\";s:9:\"submitbox\";s:1:\"1\";s:11:\"bulkactions\";s:1:\"1\";}','yes'),(129420,'sbi_notifications','a:4:{s:6:\"update\";i:1665079147;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(129421,'sbi_newuser_notifications','a:4:{s:6:\"update\";i:1618237738;s:4:\"feed\";a:2:{s:6:\"review\";a:6:{s:5:\"title\";s:22:\"Could you help us out?\";s:7:\"content\";s:273:\"It\'s great to see that you\'ve been using the <strong><span>{plugin}</span></strong> plugin for a while now. Hopefully you\'re happy with it!&nbsp; If so, would you consider leaving a positive review? It really helps to support the plugin and helps others to discover it too!\";s:2:\"id\";s:6:\"review\";s:5:\"image\";s:12:\"sbi-icon.png\";s:4:\"btns\";a:4:{s:7:\"primary\";a:4:{s:3:\"url\";s:12:\"{review-url}\";s:4:\"attr\";a:1:{i:0;s:11:\"targetblank\";}s:5:\"class\";s:31:\"sbi_notice_dismiss sbi_main_cta\";s:4:\"text\";s:18:\"Sure, I\'d love to!\";}s:7:\"dismiss\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:1:\"1\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:9:\"No thanks\";}s:8:\"complete\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:1:\"1\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:27:\"I\'ve already given a review\";}s:5:\"later\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:5:\"later\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:12:\"Ask Me Later\";}}s:4:\"wait\";s:2:\"14\";}s:8:\"discount\";a:8:{s:5:\"title\";s:28:\"Attention {platform} Lovers!\";s:7:\"content\";s:221:\"<strong><span>Exclusive offer!</span></strong> We don\'t run promotions very often, but for a limited time we\'re offering <strong><span>{amount} off</span></strong> our Pro version to all users of our free {plugin} plugin.\";s:2:\"id\";s:8:\"discount\";s:6:\"amount\";s:3:\"60%\";s:5:\"image\";s:12:\"sbi-icon.png\";s:13:\"image_overlay\";s:7:\"60% off\";s:4:\"btns\";a:2:{s:7:\"primary\";a:4:{s:3:\"url\";s:127:\"https://smashballoon.com/{slug}/?utm_campaign={campaign}&utm_source=notices&utm_medium=newuser&discount={lowerplatform}thankyou\";s:5:\"class\";s:32:\"sbi_notice_dismiss sbi_offer_btn\";s:4:\"text\";s:14:\"Get this offer\";s:4:\"attr\";a:1:{i:0;s:11:\"targetblank\";}}s:7:\"dismiss\";a:3:{s:3:\"url\";a:1:{s:31:\"sbi_ignore_new_user_sale_notice\";s:6:\"always\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:18:\"I\'m not interested\";}}s:4:\"wait\";s:2:\"30\";}}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(129424,'wp_mail_smtp_review_notice','a:2:{s:4:\"time\";i:1618237739;s:9:\"dismissed\";b:0;}','yes'),(129443,'can_compress_scripts','0','no'),(129445,'wp_mail_smtp_notifications','a:4:{s:6:\"update\";i:1665079151;s:4:\"feed\";a:1:{i:0;a:6:{s:5:\"title\";s:33:\"Instant Alerts for Email Failures\";s:7:\"content\";s:269:\"Your website emails are critical. If they stop working, wouldn\'t you want to know? With WP Mail SMTP Pro, you can get immediate alerts if thereâ€™s a problem sending emails from your site. Get notified via email, SMS, Slack, or webhooks - whatever works best for you!\r\n\";s:4:\"type\";a:1:{i:0;s:4:\"lite\";}s:2:\"id\";i:29;s:4:\"btns\";a:2:{s:4:\"main\";a:2:{s:3:\"url\";s:176:\"https://wpmailsmtp.com/introducing-wp-mail-smtp-3-5-alert-notifications-are-here/?utm_source=WordPress&utm_campaign=liteplugin&utm_medium=Plugin Notification&utm_content=Alerts\";s:4:\"text\";s:10:\"Learn More\";}s:3:\"alt\";a:2:{s:3:\"url\";s:142:\"https://wpmailsmtp.com/wpmailsmtp-lite-upgrade/?utm_source=WordPress&utm_medium=liteplugin&utm_campaign=Plugin Notification&utm_content=Alerts\";s:4:\"text\";s:14:\"Upgrade to Pro\";}}s:5:\"start\";s:19:\"2022-08-29 00:00:00\";}}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(129459,'auto_update_themes','a:1:{i:0;s:4:\"Divi\";}','no'),(129468,'sbi_usage_tracking','a:2:{s:9:\"last_send\";i:0;s:7:\"enabled\";b:0;}','yes'),(129483,'et_safe_mode_plugins_allowlist','a:8:{i:0;s:15:\"etdev/etdev.php\";i:1;s:15:\"bloom/bloom.php\";i:2;s:19:\"monarch/monarch.php\";i:3;s:29:\"divi-builder/divi-builder.php\";i:4;s:27:\"ari-adminer/ari-adminer.php\";i:5;s:31:\"query-monitor/query-monitor.php\";i:6;s:27:\"woocommerce/woocommerce.php\";i:7;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";}','yes'),(129666,'et_pb_contact_form_e290f86feb1eae24dcf23c3269aa6101','off','yes'),(129820,'et_pb_contact_form_634d2a7d7f6ea8b6d7393af1a2e46de0','off','yes'),(130028,'et_pb_contact_form_135fca2afe0568aedc78a28fef160c73','off','yes'),(132625,'et_pb_contact_form_0646082ccfdaca415fe6c2f56258c06b','off','yes'),(185092,'et_pb_contact_form_7b222c514e1e04045f5583daa1e907b3','off','yes'),(251886,'sb_instagram_settings','a:44:{s:15:\"sb_instagram_at\";s:0:\"\";s:20:\"sb_instagram_user_id\";s:0:\"\";s:30:\"sb_instagram_preserve_settings\";s:0:\"\";s:23:\"sb_instagram_ajax_theme\";b:0;s:27:\"sb_instagram_disable_resize\";b:0;s:23:\"sb_instagram_cache_time\";i:1;s:28:\"sb_instagram_cache_time_unit\";s:5:\"hours\";s:16:\"sbi_caching_type\";s:4:\"page\";s:23:\"sbi_cache_cron_interval\";s:7:\"12hours\";s:19:\"sbi_cache_cron_time\";s:1:\"1\";s:20:\"sbi_cache_cron_am_pm\";s:2:\"am\";s:18:\"sb_instagram_width\";s:3:\"100\";s:23:\"sb_instagram_width_unit\";s:1:\"%\";s:28:\"sb_instagram_feed_width_resp\";b:0;s:19:\"sb_instagram_height\";s:0:\"\";s:16:\"sb_instagram_num\";s:2:\"20\";s:24:\"sb_instagram_height_unit\";s:0:\"\";s:17:\"sb_instagram_cols\";s:1:\"4\";s:27:\"sb_instagram_disable_mobile\";b:0;s:26:\"sb_instagram_image_padding\";s:1:\"5\";s:31:\"sb_instagram_image_padding_unit\";s:2:\"px\";s:17:\"sb_instagram_sort\";s:4:\"none\";s:23:\"sb_instagram_background\";s:0:\"\";s:21:\"sb_instagram_show_btn\";b:1;s:27:\"sb_instagram_btn_background\";s:0:\"\";s:27:\"sb_instagram_btn_text_color\";s:0:\"\";s:21:\"sb_instagram_btn_text\";s:12:\"Load More...\";s:22:\"sb_instagram_image_res\";s:4:\"auto\";s:24:\"sb_instagram_show_header\";b:1;s:24:\"sb_instagram_header_size\";s:5:\"small\";s:25:\"sb_instagram_header_color\";s:0:\"\";s:28:\"sb_instagram_show_follow_btn\";b:1;s:33:\"sb_instagram_folow_btn_background\";s:0:\"\";s:34:\"sb_instagram_follow_btn_text_color\";s:0:\"\";s:28:\"sb_instagram_follow_btn_text\";s:19:\"Follow on Instagram\";s:23:\"sb_instagram_custom_css\";s:0:\"\";s:22:\"sb_instagram_custom_js\";s:0:\"\";s:17:\"sb_instagram_cron\";s:2:\"no\";s:19:\"sb_instagram_backup\";b:1;s:15:\"sb_ajax_initial\";b:0;s:24:\"enqueue_css_in_shortcode\";b:0;s:30:\"sb_instagram_disable_mob_swipe\";b:0;s:28:\"sb_instagram_disable_awesome\";b:0;s:18:\"connected_accounts\";a:0:{}}','yes'),(251930,'duplicate_post_show_notice','1','no'),(251931,'duplicate_post_version','4.3','yes'),(251971,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(252261,'wp_mail_smtp_debug_events_db_version','1','yes'),(252433,'wp_mail_smtp_lite_sent_email_counter','4382','yes'),(252434,'wp_mail_smtp_lite_weekly_sent_email_counter','a:12:{i:37;i:60;i:38;i:64;i:39;i:39;i:40;i:6;i:41;i:49;i:42;i:70;i:43;i:74;i:44;i:63;i:45;i:66;i:46;i:70;i:47;i:67;i:48;i:31;}','yes'),(258084,'sb_instagram_errors','a:9:{s:10:\"connection\";a:0:{}s:7:\"hashtag\";a:0:{}s:8:\"resizing\";a:0:{}s:15:\"database_create\";a:0:{}s:10:\"upload_dir\";a:0:{}s:8:\"accounts\";a:0:{}s:9:\"error_log\";a:0:{}s:10:\"action_log\";a:10:{i:2572;s:43:\"11-27 12:28:16 - Deleted all platform data.\";i:2573;s:48:\"11-27 12:28:16 - Deleted all connected accounts.\";i:2574;s:43:\"11-28 00:30:02 - Deleted all platform data.\";i:2575;s:48:\"11-28 00:30:02 - Deleted all connected accounts.\";i:2576;s:43:\"11-28 12:22:45 - Deleted all platform data.\";i:2577;s:48:\"11-28 12:22:45 - Deleted all connected accounts.\";i:2578;s:43:\"11-29 00:22:05 - Deleted all platform data.\";i:2579;s:48:\"11-29 00:22:05 - Deleted all connected accounts.\";i:2580;s:43:\"11-29 12:28:07 - Deleted all platform data.\";i:2581;s:48:\"11-29 12:28:07 - Deleted all connected accounts.\";}s:7:\"revoked\";a:0:{}}','no'),(418797,'wp_force_deactivated_plugins','a:0:{}','yes'),(479910,'et_divi_builder_global_presets_ng','O:8:\"stdClass\":0:{}','no'),(489320,'mwp_last_communication_error','Unexpected: service signature or key name are empty. Key name: , Signature: ','yes'),(759628,'_site_transient_et_update_themes','O:8:\"stdClass\":4:{s:7:\"checked\";a:1:{s:4:\"Divi\";s:6:\"4.23.1\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{s:4:\"Divi\";a:6:{s:5:\"theme\";s:4:\"Divi\";s:11:\"new_version\";s:6:\"4.23.1\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";s:7:\"package\";s:146:\"https://www.elegantthemes.com/api/api_downloads.php?api_update=1&theme=Divi&api_key=8cd41a3eef52e650367e0c24b3abb067d8d6f1f7&username=justinwegner\";s:8:\"requires\";s:0:\"\";s:12:\"requires_php\";s:0:\"\";}}s:12:\"last_checked\";i:1701275644;}','no'),(759631,'_transient_timeout_et_core_version','1702573549','no'),(759632,'_transient_et_core_version','4.23.1','no'),(775325,'_et_builder_da_feature_cache','a:2:{i:0;s:39:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\"}\";i:1;a:2:{s:8:\"notfound\";a:2:{s:29:\"_et_dynamic_cached_shortcodes\";a:0:{}s:29:\"_et_dynamic_cached_attributes\";a:0:{}}s:0:\"\";a:1:{s:29:\"_et_dynamic_cached_attributes\";a:0:{}}}}','yes'),(776678,'_transient_timeout_rsssl_can_use_curl_headers_check','1701788223','no'),(776679,'_transient_rsssl_can_use_curl_headers_check','a:8:{i:0;s:25:\"Upgrade Insecure Requests\";i:1;s:16:\"X-XSS protection\";i:2;s:22:\"X-Content Type Options\";i:3;s:15:\"Referrer-Policy\";i:4;s:9:\"Expect-CT\";i:5;s:15:\"X-Frame-Options\";i:6;s:18:\"Permissions-Policy\";i:7;s:30:\"HTTP Strict Transport Security\";}','no'),(776957,'_transient_timeout_wflginfl_00000000000000000000ffffb1f5dc91','1701219940','no'),(776958,'_transient_wflginfl_00000000000000000000ffffb1f5dc91','2','no'),(777269,'_transient_timeout_wflginfl_00000000000000000000ffff7b100cfc','1701249925','no'),(777270,'_transient_wflginfl_00000000000000000000ffff7b100cfc','2','no'),(777296,'_transient_timeout_wflginfl_00000000000000000000ffff244e9cfd','1701259933','no'),(777297,'_transient_wflginfl_00000000000000000000ffff244e9cfd','1','no'),(777359,'_transient_timeout_wflginfl_00000000000000000000ffff54104cd3','1701273129','no'),(777360,'_transient_wflginfl_00000000000000000000ffff54104cd3','2','no'),(777362,'_transient_timeout_wflginfl_00000000000000000000ffff9de62ec5','1701273186','no'),(777363,'_transient_wflginfl_00000000000000000000ffff9de62ec5','2','no'),(777365,'_transient_timeout_wflginfl_00000000000000000000ffff22879e07','1701273234','no'),(777366,'_transient_wflginfl_00000000000000000000ffff22879e07','1','no'),(777367,'_transient_timeout_wflginfl_00000000000000000000ffffb8a8763d','1701273279','no'),(777368,'_transient_wflginfl_00000000000000000000ffffb8a8763d','2','no'),(777369,'_transient_timeout_wflginfl_00000000000000000000ffff22487b36','1701273282','no'),(777370,'_transient_wflginfl_00000000000000000000ffff22487b36','2','no'),(777373,'_transient_timeout_wflginfl_00000000000000000000ffff8b3b2110','1701273359','no'),(777374,'_transient_wflginfl_00000000000000000000ffff8b3b2110','2','no'),(777376,'_transient_timeout_wflginfl_00000000000000000000ffff3e1492ff','1701273423','no'),(777377,'_transient_wflginfl_00000000000000000000ffff3e1492ff','2','no'),(777380,'_transient_timeout_wflginfl_00000000000000000000ffff9448b134','1701273453','no'),(777381,'_transient_wflginfl_00000000000000000000ffff9448b134','2','no'),(777383,'_transient_timeout_wflginfl_00000000000000000000ffffa800873d','1701273483','no'),(777384,'_transient_wflginfl_00000000000000000000ffffa800873d','2','no'),(777387,'_transient_timeout_wflginfl_00000000000000000000ffffd8deab0a','1701273563','no'),(777388,'_transient_wflginfl_00000000000000000000ffffd8deab0a','3','no'),(777390,'_transient_timeout_wflginfl_00000000000000000000ffffb23e064f','1701273591','no'),(777391,'_transient_wflginfl_00000000000000000000ffffb23e064f','2','no'),(777393,'_transient_timeout_wflginfl_00000000000000000000ffff592e6a86','1701273617','no'),(777394,'_transient_wflginfl_00000000000000000000ffff592e6a86','2','no'),(777395,'_transient_timeout_wflginfl_00000000000000000000ffff48a7be3b','1701273642','no'),(777396,'_transient_wflginfl_00000000000000000000ffff48a7be3b','2','no'),(777397,'_transient_timeout_wflginfl_00000000000000000000ffff48a746c7','1701273644','no'),(777398,'_transient_wflginfl_00000000000000000000ffff48a746c7','2','no'),(777400,'_transient_timeout_wflginfl_00000000000000000000ffffa7479034','1701273646','no'),(777401,'_transient_wflginfl_00000000000000000000ffffa7479034','2','no'),(777403,'_transient_timeout_wflginfl_00000000000000000000ffff44b7d09d','1701273670','no'),(777404,'_transient_wflginfl_00000000000000000000ffff44b7d09d','3','no'),(777407,'_transient_timeout_wflginfl_00000000000000000000ffff671b213d','1701273723','no'),(777408,'_transient_wflginfl_00000000000000000000ffff671b213d','2','no'),(777409,'_transient_timeout_wflginfl_00000000000000000000ffff4221cd56','1701273740','no'),(777410,'_transient_wflginfl_00000000000000000000ffff4221cd56','2','no'),(777412,'_transient_timeout_wflginfl_00000000000000000000ffff58c6b67d','1701273794','no'),(777413,'_transient_wflginfl_00000000000000000000ffff58c6b67d','3','no'),(777414,'_transient_timeout_wflginfl_00000000000000000000ffffa2ff76cb','1701273794','no'),(777415,'_transient_wflginfl_00000000000000000000ffffa2ff76cb','1','no'),(777416,'_transient_timeout_wflginfl_00000000000000000000ffffa2ff76cc','1701273794','no'),(777417,'_transient_wflginfl_00000000000000000000ffffa2ff76cc','1','no'),(777419,'_transient_timeout_wflginfl_00000000000000000000ffffc647ec2f','1701273870','no'),(777420,'_transient_wflginfl_00000000000000000000ffffc647ec2f','2','no'),(777422,'_transient_timeout_wflginfl_00000000000000000000ffffa51620d9','1701273894','no'),(777423,'_transient_wflginfl_00000000000000000000ffffa51620d9','1','no'),(777425,'_transient_timeout_wflginfl_00000000000000000000ffff40cf9e31','1701273937','no'),(777426,'_transient_wflginfl_00000000000000000000ffff40cf9e31','2','no'),(777511,'_transient_timeout__et_builder_gf_feature_cache','1701352804','no'),(777512,'_transient__et_builder_gf_feature_cache','1','no'),(777515,'_et_builder_gf_feature_cache','a:2:{i:0;s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";i:1;a:2:{s:181:\"https://fonts.googleapis.com/css?family=Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic&subset=latin,latin-ext&display=swap\";a:1:{s:12:\"google-fonts\";s:8921:\"/* Original: https://fonts.googleapis.com/css?family=Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic&#038;subset=latin,latin-ext&#038;display=swap *//* User Agent: Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1 */@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXAHg6bf.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83AHg6bf.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXAHg6bf.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3cHg6bf.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSncHg6bf.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXcHg6bf.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHcHg6bf.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshdTo3ig.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhdTo3ig.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshdTo3ig.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmdTo3ig.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmdTo3ig.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmdTo3ig.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImdTo3ig.ttf) format(\'truetype\');}/* User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:27.0) Gecko/20100101 Firefox/27.0 */@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXAHg6bc.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83AHg6bc.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXAHg6bc.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3cHg6bc.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSncHg6bc.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXcHg6bc.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHcHg6bc.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshdTo3iQ.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhdTo3iQ.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshdTo3iQ.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmdTo3iQ.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmdTo3iQ.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmdTo3iQ.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImdTo3iQ.woff) format(\'woff\');}/* User Agent: Mozilla/5.0 (Windows NT 6.3; rv:39.0) Gecko/20100101 Firefox/39.0 */@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXAHg6ba.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83AHg6ba.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXAHg6ba.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3cHg6ba.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSncHg6ba.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXcHg6ba.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHcHg6ba.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshdTo3jw.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhdTo3jw.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshdTo3jw.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmdTo3jw.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmdTo3jw.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmdTo3jw.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImdTo3jw.woff2) format(\'woff2\');}\";}s:257:\"https://fonts.googleapis.com/css?family=Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic|Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic&subset=latin,latin-ext&display=swap\";a:1:{s:12:\"google-fonts\";s:14384:\"/* Original: https://fonts.googleapis.com/css?family=Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic|Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic&#038;subset=latin,latin-ext&#038;display=swap *//* User Agent: Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) Safari/538.1 Daum/4.1 */@font-face {font-family: \'Lato\';font-style: italic;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u-w4BMUTPHjxsIPx-mPCc.ttf) format(\'truetype\');}@font-face {font-family: \'Lato\';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI9w2_FQfo.ttf) format(\'truetype\');}@font-face {font-family: \'Lato\';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxsAUi-v.ttf) format(\'truetype\');}@font-face {font-family: \'Lato\';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wq_FQfo.ttf) format(\'truetype\');}@font-face {font-family: \'Lato\';font-style: italic;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI3wi_FQfo.ttf) format(\'truetype\');}@font-face {font-family: \'Lato\';font-style: normal;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHh30AUi-v.ttf) format(\'truetype\');}@font-face {font-family: \'Lato\';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USSwaPHA.ttf) format(\'truetype\');}@font-face {font-family: \'Lato\';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxAwWw.ttf) format(\'truetype\');}@font-face {font-family: \'Lato\';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwaPHA.ttf) format(\'truetype\');}@font-face {font-family: \'Lato\';font-style: normal;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50XSwaPHA.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXAHg6bf.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83AHg6bf.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXAHg6bf.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3cHg6bf.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSncHg6bf.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXcHg6bf.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHcHg6bf.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshdTo3ig.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhdTo3ig.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshdTo3ig.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmdTo3ig.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmdTo3ig.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmdTo3ig.ttf) format(\'truetype\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImdTo3ig.ttf) format(\'truetype\');}/* User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:27.0) Gecko/20100101 Firefox/27.0 */@font-face {font-family: \'Lato\';font-style: italic;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u-w4BMUTPHjxsIPx-mPCQ.woff) format(\'woff\');}@font-face {font-family: \'Lato\';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI9w2_FQfr.woff) format(\'woff\');}@font-face {font-family: \'Lato\';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxsAUi-s.woff) format(\'woff\');}@font-face {font-family: \'Lato\';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wq_FQfr.woff) format(\'woff\');}@font-face {font-family: \'Lato\';font-style: italic;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI3wi_FQfr.woff) format(\'woff\');}@font-face {font-family: \'Lato\';font-style: normal;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHh30AUi-s.woff) format(\'woff\');}@font-face {font-family: \'Lato\';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USSwaPHw.woff) format(\'woff\');}@font-face {font-family: \'Lato\';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxAwWA.woff) format(\'woff\');}@font-face {font-family: \'Lato\';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwaPHw.woff) format(\'woff\');}@font-face {font-family: \'Lato\';font-style: normal;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50XSwaPHw.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXAHg6bc.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83AHg6bc.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXAHg6bc.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3cHg6bc.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSncHg6bc.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXcHg6bc.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHcHg6bc.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshdTo3iQ.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhdTo3iQ.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshdTo3iQ.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmdTo3iQ.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmdTo3iQ.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmdTo3iQ.woff) format(\'woff\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImdTo3iQ.woff) format(\'woff\');}/* User Agent: Mozilla/5.0 (Windows NT 6.3; rv:39.0) Gecko/20100101 Firefox/39.0 */@font-face {font-family: \'Lato\';font-style: italic;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u-w4BMUTPHjxsIPx-mPCI.woff2) format(\'woff2\');}@font-face {font-family: \'Lato\';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI9w2_FQft.woff2) format(\'woff2\');}@font-face {font-family: \'Lato\';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHjxsAUi-q.woff2) format(\'woff2\');}@font-face {font-family: \'Lato\';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI5wq_FQft.woff2) format(\'woff2\');}@font-face {font-family: \'Lato\';font-style: italic;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u_w4BMUTPHjxsI3wi_FQft.woff2) format(\'woff2\');}@font-face {font-family: \'Lato\';font-style: normal;font-weight: 100;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u8w4BMUTPHh30AUi-q.woff2) format(\'woff2\');}@font-face {font-family: \'Lato\';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh7USSwaPGQ.woff2) format(\'woff2\');}@font-face {font-family: \'Lato\';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxAwXg.woff2) format(\'woff2\');}@font-face {font-family: \'Lato\';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVSwaPGQ.woff2) format(\'woff2\');}@font-face {font-family: \'Lato\';font-style: normal;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50XSwaPGQ.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXAHg6ba.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83AHg6ba.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXAHg6ba.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3cHg6ba.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSncHg6ba.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXcHg6ba.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: italic;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHcHg6ba.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 200;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshdTo3jw.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhdTo3jw.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshdTo3jw.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 600;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmdTo3jw.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmdTo3jw.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 800;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmdTo3jw.woff2) format(\'woff2\');}@font-face {font-family: \'Nunito\';font-style: normal;font-weight: 900;font-display: swap;src: url(https://fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImdTo3jw.woff2) format(\'woff2\');}\";}}}','yes'),(777561,'_site_transient_timeout_php_check_8706d9e16ec2aa6542c624d1e3c9facd','1701875536','no'),(777562,'_site_transient_php_check_8706d9e16ec2aa6542c624d1e3c9facd','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}','no'),(777563,'_site_transient_timeout_community-events-9e8172004c755830bcc22542f7fb592e','1701313937','no'),(777564,'_site_transient_community-events-9e8172004c755830bcc22542f7fb592e','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"130.51.183.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:23:\"Happy Hour Get-together\";s:3:\"url\";s:51:\"https://www.meetup.com/wordpresskc/events/297482435\";s:6:\"meetup\";s:12:\"WordPress KC\";s:10:\"meetup_url\";s:35:\"https://www.meetup.com/wordpresskc/\";s:4:\"date\";s:19:\"2023-12-14 17:00:00\";s:8:\"end_date\";s:19:\"2023-12-14 19:00:00\";s:20:\"start_unix_timestamp\";i:1702594800;s:18:\"end_unix_timestamp\";i:1702602000;s:8:\"location\";a:4:{s:8:\"location\";s:22:\"Overland Park, KS, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:38.939484;s:9:\"longitude\";d:-94.669169999999994;}}}}','no'),(777565,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1701313937','no'),(777566,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Nov 2023 16:06:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.5-alpha-57143\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WP Briefing: Episode 67: Openverse &amp; Photo Directory Rewind\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2023/11/openverse-photo-directory-rewind/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Nov 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16454\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:265:\"WordPress Executive Director, Josepha Haden Chomphosy, returns to a recent episode of the WordPress Briefing, which discussed two resources for openly licensed media in the WordPress projectâ€“ Openverse and Photo Directoryâ€“ and how they differ from one another! \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:50:\"https://wordpress.org/news/files/2023/11/WP067.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11659:\"\n<p>WordPress Executive Director, Josepha Haden Chomphosy, returns to a recent episode of the WordPress Briefing, which discussed two resources for openly licensed media in the WordPress projectâ€“ Openverse and Photo Directoryâ€“ and how they differ from one another! </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@WordPress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host:Â <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Editor:Â <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:Â <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:Â <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/photos/\">Photo Directory Make Page</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/photos/submit/\">Submit a Photo to the Photo Directory</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/\">Openverse Make Page</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/44496\">Openverse Call for Contributions: Block Editor Integration</a> (now closed)</li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/11/state-of-the-word-2023-madrid-spain/\" target=\"_blank\" rel=\"noreferrer noopener\">State of the Word</a>&nbsp;&#8211; The countdown is on for this year&#8217;s State of the Word! If you missed the initial announcement a few weeks ago, you&#8217;ll want to mark your calendars for December 11, 2023. State of the Word will include a Q&amp;A session. If you want to participate, you can send your question to&nbsp;<a href=\"mailto:ask-matt@wordcamp.org\" target=\"_blank\" rel=\"noreferrer noopener\">ask-matt@wordcamp.org</a>&nbsp;or ask during the event via the Q&amp;A app Slido. A QR code for your submission will be provided during the event live stream.</li>\n\n\n\n<li>WordCamp Asia hasÂ <a href=\"https://asia.wordcamp.org/2024/call-for-sponsors-extended-to-november-30th/\" target=\"_blank\" rel=\"noreferrer noopener\">extended their call for sponsors</a>, slated to take place in Taipei, Taiwan, March 7-9, 2024. The new deadline has been extended to November 30, 2023.</li>\n\n\n\n<li>The Documentation Team created a new GitHub repo for end-user documentation and its translations to all locales. More info about this can be found&nbsp;<a href=\"https://make.wordpress.org/project/2023/09/06/documentation-translation-localization/\" target=\"_blank\" rel=\"noreferrer noopener\">here</a>.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcripts</h2>\n\n\n\n<span id=\"more-16454\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello everyone. And welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it and get a small list of big things coming up in the next two weeks.</p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28] (Intro music)</p>\n\n\n\n<p>[00:00:40] <strong>Josepha:</strong> Today, we&#8217;re going to take a listen to last year&#8217;s episode about Openverse and the Photo Directory. A lot has changed in that project, well in, in both of those projects since then. For instance, the Photo Directory just passed a 10,000 photo milestone. And Openverse, in the past year, got their own URL and have been hard at work strengthening the reliability of their APIs.</p>\n\n\n\n<p>[00:01:03] <strong>Josepha:</strong> But for some folks, it might still be a little unclear just what the difference is between these two projects. So let&#8217;s take a listen, and don&#8217;t forget to catch the updated small list of big things at the end of the episode.&nbsp;</p>\n\n\n\n<p>[00:01:13] (Music interlude)</p>\n\n\n\n<p>[00:01:21] <strong>Josepha:</strong> About 18 months ago, the Openverse project became part of the WordPress open source project, and at roughly the same time, we also welcomed in the Photo Directory.</p>\n\n\n\n<p>Since that time, we&#8217;ve seen growth of teams supporting both of these initiatives. But if you&#8217;re not involved in the day-to-day, it can be hard to know how those two things fit together or if they fit together at all.</p>\n\n\n\n<p>[00:01:41] <strong>Josepha:</strong> Today, let&#8217;s take a brief tour of those two projects and why they came to be.&nbsp;In my timeline, work on the Photo Directory started before the work on Openverse, so that&#8217;s where we&#8217;ll start.</p>\n\n\n\n<p>For as long as I can remember, the WordPress community has raised the need for WordPress-first ways to have and host GPL-compatible photos for use in themes, site builds, and marketing efforts as a whole. As recently as 2016, that was still coming up as a question at various flagship events and among the career photographers that contribute their time to WordPress.</p>\n\n\n\n<p>[00:02:13] <strong>Josepha:</strong> So, in 2017 and 2018, as attention started to turn toward rebuilding the CMS using blocks, it dropped down the list of priority items. But it never really went away as a thing that people were hoping we could do for the project as a whole. So in 2019, it was becoming clear that having open source-first tools of all varieties for people whose businesses were built on our software would help broaden the availability of the open source freedoms we believe in.</p>\n\n\n\n<p>This began the work on the Photo Directory with the intention of providing a GPL-friendly, community-driven repository of images. It has since launched, and we have photos in it now. We have a whole team around it. It&#8217;s wonderful. But that is how that all kind of came to be.&nbsp;</p>\n\n\n\n<p>[00:02:58] <strong>Josepha:</strong> Openverse, on the other hand, was launched as CC Search in 2019 with the laudable mandate to increase the discoverability and accessibility of open access media.</p>\n\n\n\n<p>Late in 2020, while work on the Photo Directory was underway, Matt shared with me that the team was looking for a new project home. When I first met with them, they shared an overview of the product, which they shorthanded as an open source search engine that searches openly licensed images. We were working on a repo of openly licensed images, so clearly, this was all written in the stars. And so you might be asking yourself at this point, great, how does it work together?</p>\n\n\n\n<p>I think for most of us, the timeline there kind of covers the question of what is the difference between these two things.&nbsp;</p>\n\n\n\n<p>But because I never know which of you will want to strike up a conversation about open source on an elevator, I&#8217;ve also got the elevator pitch version as well.&nbsp;</p>\n\n\n\n<p>[00:03:52] <strong>Josepha:</strong> Openverse is an open source search engine that searches, indexes, and aggregates copy left media from across the web using sources such as WordPress&#8217;s Photo Directory, Flickr&#8217;s CC Tagged Media, and Wikimedia, to name just a few.&nbsp;</p>\n\n\n\n<p>Another key difference between the Photo Directory and Openverse is that in order to contribute to the Photo Directory, now that it&#8217;s all built, that&#8217;s mostly done by submitting photos or reviewing photos. So, you don&#8217;t really need to be a developer to join in.&nbsp;</p>\n\n\n\n<p>Openverse not only is a developer-centric contribution opportunity, but it also uses a different tech stack than WordPress as a whole. So, it&#8217;s a good place for folks to go if they&#8217;re looking to broaden their horizons.</p>\n\n\n\n<p>[00:04:37] <strong>Josepha:</strong> So that&#8217;s your elevator pitch of what is Openverse and how does it use the Photo Directory.&nbsp;</p>\n\n\n\n<p>You have a couple of ways that you can get involved with these two projects. For the Photo Directory, as I mentioned at the start, you can always contribute photos, and they could always use more photo contributions.</p>\n\n\n\n<p>I&#8217;ll include a link to the submission guidelines in the show notes below, and as I mentioned, it is a no-code way to give back to the WordPress project. So, no code is required, no development environments, no testing skills. The Photo Directory team also could always use more contributors to help with the moderating of photo submissions.</p>\n\n\n\n<p>And so I&#8217;ll link to their making WordPress page in the show notes as well so that you can get started there.&nbsp;</p>\n\n\n\n<p>[00:05:22] <strong>Josepha:</strong> And as I mentioned before, Openverse is an aggregator, so it doesn&#8217;t host any media itself, but it is always accepting suggestions for new GPL-compatible media providers. I&#8217;ll link the area where you can leave suggestions in the show notes as well.</p>\n\n\n\n<p>And if you are more code-inclined, there&#8217;s an open issue for adding Openverse browsing to the block editor right now.&nbsp;&nbsp;</p>\n\n\n\n<p>So I&#8217;ll link that issue in the show notes in case you thought to yourself, gosh, that sounds like my most favorite thing to do. That is where you can go.&nbsp;</p>\n\n\n\n<p>[00:05:53] (Music interlude)&nbsp;</p>\n\n\n\n<p>[00:06:01] <strong>Josepha:</strong> And that brings us now to our November 2023 small list of big things.</p>\n\n\n\n<p>[00:06:07] <strong>Josepha:</strong> The first thing that&#8217;s on the small list of big things this week is that the countdown is on for this year&#8217;s State of the Word. If you missed the initial announcement a few weeks ago, you&#8217;ll want to mark your calendars for December 11th, 2023. State of the Word will include a Q&amp;A session, and if you want to participate, you can send your question to ask-matt@wordcamp.org.&nbsp;Or, ask during the event via the Q&amp;A app Slido. A QR code for your submission will be provided during the event live stream, so if you&#8217;re choosing that option, don&#8217;t worry; there&#8217;s not anything to do right this second.&nbsp;</p>\n\n\n\n<p>[00:06:40] <strong>Josepha:</strong> The second thing on the list is that WordCamp Asia has extended their call for sponsors for the conference that is slated to take place in Taipei, Taiwan, March 7th through 9th, 2024. The new deadline has been extended to November 30th, 2023, and so if you have been on the fence about whether to sponsor that event or not, for one, please do sponsor it, and for two, you still have a little bit of time to get over there and show your support.</p>\n\n\n\n<p>[00:07:05] <strong>Josepha:</strong> And then the last thing on the small list of big things is that the documentation team now has a new GitHub repo created for end-user documentation and its translations into all locales. For more information about this, come check out the show notes. I will have a link right there for you. And that, my friends, is your small list of big things.</p>\n\n\n\n<p>[00:07:26] <strong>Josepha:</strong> Don&#8217;t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You&#8217;ll get a friendly reminder whenever there&#8217;s a new episode. If you liked what you heard today, share it with a fellow WordPresser. Or, if you have questions about what you heard, you can share those with me at wpbriefing@WordPress.org. I&#8217;m your host, Josepha Haden Chomphosy. Thanks for tuning in today for the WordPress Briefing, and I&#8217;ll see you again in a couple of weeks.&nbsp;</p>\n\n\n\n<p>[00:07:51] (Music outro)</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16454\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"State of the Word 2023 â€“ Madrid, Spain\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/11/state-of-the-word-2023-madrid-spain/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Nov 2023 20:03:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:4:\"sotw\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:17:\"state of the word\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16429\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:328:\"The countdown is on for this year\'s State of the Word! If you missed the initial announcement a few weeks ago, mark your calendars for December 11, 2023.\n\nState of the Word is the annual keynote in which WordPress co-founder Matt Mullenweg celebrates the progress of the open source project and offers a glimpse into its future.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4327:\"\n<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=1024%2C683&#038;ssl=1\" alt=\"State of the Word\" class=\"wp-image-16438\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/11/SOTW-Blue.png?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The countdown is on for this year&#8217;s State of the Word! If you missed the initial announcement a few weeks ago, you&#8217;ll want to mark your calendars for December 11, 2023.</p>\n\n\n\n<p>State of the Word is the annual keynote in which WordPress co-founder <a href=\"https://ma.tt/\">Matt Mullenweg</a> celebrates the progress of the open source project and offers a glimpse into its future.</p>\n\n\n\n<p>For the first time, State of the Word ventures beyond North America, bringing the WordPress community to a new and vibrant city that plays a vital role in the WordPress project &#8212; Madrid, Spain! The event will be live-streamed to WordPress enthusiasts and newcomers around the globe via the <a href=\"https://youtube.com/wordpress\">WordPress YouTube channel</a>.</p>\n\n\n\n<p>Please visit the <a href=\"https://wordpress.org/state-of-the-word\">event website</a> for more event details and live-streaming information.</p>\n\n\n\n<p><strong>What:</strong> State of the Word 2023<br><strong>When: </strong><a href=\"https://calendar.google.com/calendar/u/0/r/eventedit?text=State+of+the+Word+2023&amp;dates=20231211T150000Z/20231211T190000Z&amp;details=State+of+the+Word+is+the+annual+keynote+address+delivered+by+the+WordPress+project%E2%80%99s+co-founder%2C+Matt+Mullenweg.+Every+year%2C+Matt+shares+reflections+on+the+project%E2%80%99s+progress+and+the+future+of+open+source.+Expect+this+and+more+in+this+year%E2%80%99s+edition.%0A%0AState+of+the+Word+will+be+live+streamed+from+Madrid,+Spain,+and+is+free+for+all+to+watch+or+attend+in+person+with+a+ticket.%0A%0Ahttps://wordpress.org/state-of-the-word/\">December 11, 2023, 15:00 UTC</a> (Start of live stream)<br><strong>Where: </strong><a href=\"https://www.palacioneptuno.com/\">Palacio Neptuno</a>, Madrid, Spain<br><strong>Streaming: </strong><a href=\"https://youtube.com/wordpress\">Watch the live stream</a> on the WordPress YouTube channel.<br><strong>Tickets: </strong><a href=\"https://wordcampcentral.survey.fm/request-a-seat-sotw-2023-spain\">Request a ticket to attend in person</a>.<strong><br></strong><em>Please note that the venueâ€™s capacity is limited; therefore, not all ticket requests will be granted.Â </em><br><strong>Meetups: </strong>The community will support several local watch parties globally, both in<br>person and online. <a href=\"https://wordpress.org/state-of-the-word\">Find one near you or organize one</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Have a question for Matt?</h2>\n\n\n\n<p>State of the Word will include a Q&amp;A session. If you want to participate, you can send your question to ask-matt@wordcamp.org or ask during the event via the Q&amp;A app Slido. A QR code for your submission will be provided during the event live stream.</p>\n\n\n\n<p>Given the volume of questions usually submitted, only some will be answered live, while others will be covered in a follow-up post published after the event on <a href=\"https://make.wordpress.org/project\">make.wordpress.org/project</a>.</p>\n\n\n\n<p>Is this your first State of the Word? Check out <a href=\"https://wordpress.tv/tag/state-of-the-word/\">prior events on WordPress.tv</a> for an introduction to the format.</p>\n\n\n\n<p>See you in person and online on December 11!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em>Thank you to <a href=\"https://profiles.wordpress.org/rmartinezduque/\">Reyes MartÃ­nez</a> and <a href=\"https://profiles.wordpress.org/cbringmann/\">ChloÃ© Bringmann</a> for reviewing this post.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16429\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:68:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Introducing Twenty Twenty-Four\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/news/2023/11/introducing-twenty-twenty-four/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Nov 2023 18:29:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:6:\"Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:18:\"Twenty Twenty-Four\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16394\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"Meet Twenty Twenty-Four, the most versatile default theme yetâ€”bundled with WordPress 6.4 and ready to make it uniquely yours.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:59:\"https://wordpress.org/news/files/2023/11/tt4-i9-small-1.mp4\";s:6:\"length\";s:7:\"6747134\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:82:\"https://wordpress.org/news/files/2023/11/tt4-howto-replace-template_compressed.mp4\";s:6:\"length\";s:8:\"12815358\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Maggie Cabrera\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7209:\"\n<p>When it comes to designing a website, one size doesn&#8217;t fit all. We understand that every WordPress user has unique needs and goals, whether you&#8217;re an aspiring entrepreneur, a passionate photographer, a prolific writer, or a bit of them all. That&#8217;s why we are thrilled to introduce <a href=\"https://wordpress.org/themes/twentytwentyfour/\"><strong>Twenty Twenty-Four</strong></a>, the most versatile default theme yetâ€”bundled with <a href=\"https://wordpress.org/download/releases/6-4/\">WordPress 6.4</a> and ready to make it uniquely yours.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls poster=\"https://wordpress.org/news/files/2023/11/TT4-square.jpg\" src=\"https://wordpress.org/news/files/2023/11/tt4-i9-small-1.mp4\"></video></figure>\n\n\n\n<h2 class=\"wp-block-heading\">A theme for every style</h2>\n\n\n\n<p>Unlike past default themes, Twenty Twenty-Four breaks away from the tradition of focusing on a specific topic or style. Instead, this theme has been thoughtfully crafted to cater to any type of website, regardless of its focus. The theme explores <strong>three different use cases</strong>: one designed for entrepreneurs and small businesses, another for photographers and artists, and a third tailored for writers and bloggers. Thanks to its multi-faceted nature and adaptability, Twenty Twenty-Four emerges as the perfect fit for any of your projects.</p>\n\n\n\n<p>As you dive into its templates and patterns, you will notice how the new Site Editor functionality opens up different pathways for building your site seamlessly.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Patterns at every step</h2>\n\n\n\n<p>Whether you&#8217;re looking to craft an About page, showcase your work, handle RSVPs, or design captivating landing pages, Twenty Twenty-Four has got you covered.<strong> </strong>Choose from an extensive collection of <a href=\"https://2024.wordpress.net/index.php/patterns/\"><strong>over 35 beautiful patterns</strong></a> to customize and suit your needs.</p>\n\n\n\n<p>For the first time, this theme features full-page patterns for templates like homepage, archive, search, single pages, and posts. Some are exclusively available during the template-switching and creation process, ensuring you have the right options when you need them.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://wordpress.org/news/files/2023/11/tt4-howto-replace-template_compressed.mp4\"></video></figure>\n\n\n\n<p>Moreover, you can take advantage of a variety of patterns for page sections, such as FAQs, testimonials, or pricing, to meet your site&#8217;s most specific requirements.</p>\n\n\n\n<p>With this diverse pattern library, Twenty Twenty-Four offers a flexible canvas to quickly assemble pages without having to start from scratchâ€”saving you time and energy in the creation process. Just let your creativity flow and explore the possibilities!</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"682\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/TT4-Post-Image-1.jpg?resize=1024%2C682&#038;ssl=1\" alt=\"Screenshots of Twenty Twenty-Four patterns.\" class=\"wp-image-16397\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/TT4-Post-Image-1.jpg?resize=1024%2C682&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/TT4-Post-Image-1.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/TT4-Post-Image-1.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/TT4-Post-Image-1.jpg?resize=1536%2C1023&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/11/TT4-Post-Image-1.jpg?w=1600&amp;ssl=1 1600w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Site editing in its finest form</h2>\n\n\n\n<p>Twenty Twenty-Four ushers in a new era of block themes by bringing together the latest WordPress site editing capabilities. Discover newer design tools such as background image support in Group blocks and vertical text, providing an intuitive and efficient way to create compelling, interactive content.</p>\n\n\n\n<p>Find image placeholders with predefined aspect ratio settings within patterns, allowing you to drop images that perfectly fill the space. To go one step further, make your visuals interactive by enabling lightboxes. Ideal for showcasing galleries or portfolio images, this feature allows your visitors to expand and engage with them in full-screen mode. Activate it globally for all images throughout your site or for specific ones.</p>\n\n\n\n<p>For a smoother browsing experience on your site, you can disable the &#8220;Force page reload&#8221; setting in the Query Loop block. This allows the necessary content to be loaded dynamically when switching between different pages without needing a full-page refresh.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Elegance with purpose</h2>\n\n\n\n<p>Twenty Twenty-Four goes beyond versatility with a beautiful aesthetic inspired by contemporary design trends, giving your website a sleek and modern look. Key design elements include:</p>\n\n\n\n<ul>\n<li><strong>Cardo font for headlines</strong>: The Cardo font adds a touch of elegance to your site, creating a sophisticated visual experience.</li>\n\n\n\n<li><strong>Sans-serif system font for paragraphs</strong>: The sans-serif font ensures that your texts are cleaner and easier to read, enhancing overall readability.</li>\n\n\n\n<li><strong>Eight style variations</strong>: Twenty Twenty-Four presents a light color palette for a fresh and inviting appearance out-of-the-box, but you can customize it with seven additional style variations. Each includes fonts and colors carefully curated to work beautifully alongside the patterns and templates.</li>\n\n\n\n<li><strong>Sans-serif variations</strong>: Besides the default styles, the theme offers two additional sans-serif variations, providing more choices for your site&#8217;s typography.</li>\n</ul>\n\n\n\n<p>Along with its design, Twenty Twenty-Four has been meticulously optimized for performance. This ensures that your website not only looks great but also delivers a fast and efficient user experience.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://playground.wordpress.net/?theme=twentytwentyfour\">Explore Twenty Twenty-Four now</a></div>\n</div>\n\n\n\n<p>More information can be found in the following links:</p>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/themes/twentytwentyfour/\">Download Twenty Twenty-Four</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/documentation/article/twenty-twenty-four/\">Twenty Twenty-Four Documentation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Twenty Twenty-Four Kick Off</a></li>\n</ul>\n\n\n\n<p><em>The Twenty Twenty-Four theme was designed by </em><a href=\"https://profiles.wordpress.org/beafialho/\"><em>Beatriz Fialho</em></a><em> and made possible thanks to the passion and tireless work of <a href=\"https://github.com/WordPress/twentytwentyfour/blob/trunk/CONTRIBUTORS.md\">more than 120 contributors</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16394\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WP Briefing: Episode 66: Advocating Open Source Solutions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wordpress.org/news/2023/11/episode-66-advocating-open-source-solutions/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Nov 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16357\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:296:\"WordPress Executive Director, Josepha Haden Chomphosy, speaks to the strategic approach to integrating open source solutions within your company and offers insight into initiating open source advocacy conversations. Tune in for a session that could redefine your company\'s technological approach.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:51:\"https://wordpress.org/news/files/2023/11/WPB066.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11349:\"\n<p>WordPress Executive Director, Josepha Haden Chomphosy, speaks to the strategic approach to integrating open source solutions within your company and offers insight into initiating open source advocacy conversations. Tune in for a session that could redefine your company&#8217;s technological approach.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@WordPress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host:&nbsp;<a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://wordpress.org/download/releases/6-4/\">WordPress 6.4 &#8220;Shirley&#8221;</a>  &#8211; The final major release of 2023 launched on November 7 &#8211; WordPress 6.4 &#8220;Shirley.&#8221; Download and check out this empowering release. </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/10/31/whats-new-on-learn-wordpress-in-october-2023/\" target=\"_blank\" rel=\"noreferrer noopener\">The Training Team recently published</a>Â several new Learn resources for training guides to support Meetup Organizers. From lesson plans to online workshops, there are several ways to help you in your goals as a contributor to WordPress.</li>\n\n\n\n<li>The Diversity TeamÂ <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/diversity-speaker-training-workshop/\" target=\"_blank\" rel=\"noreferrer noopener\">recently published</a>Â a new Diverse Speaker Training page, providing resources for new and experienced contributors to bring more diverse speaker lineups and inclusive, diverse WP events for official WordPress Meetups and WordCamps.</li>\n\n\n\n<li>If you have a story showing how WordPress has impacted what you are doing or what people you know have done, record something and send it to <a href=\"mailto:wpbriefing@WordPress.org\">wpbriefing@WordPress.org</a>. We&#8217;d love to hear from you.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcripts</h2>\n\n\n\n<span id=\"more-16357\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello everyone. And welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28] (Intro music)&nbsp;</p>\n\n\n\n<p>[00:00:40] <strong>Josepha:</strong> Today, we&#8217;re talking about something I used to have a lot of experience with in my career before WordPress. I worked at a marketing agency. I wasn&#8217;t a developer. I was in data and strategy sorts of things. But part of the work heading into every project was an evaluation of what software was best. There were always a variety being considered, but WordPress was frequently one of them.</p>\n\n\n\n<p>Now, I don&#8217;t know if any of you have had that moment where you&#8217;re having to talk open source with a CTO or a CEO, but it can be nerve-wracking, to say the least. And it makes sense, right? Open source has a PR problem, especially when you&#8217;re speaking to leadership inside a business. And it doesn&#8217;t really matter the size, right?</p>\n\n\n\n<p>You&#8217;re advocating for something that requires a completely different mental model. It doesn&#8217;t fit into accepted concepts of what makes a business thrive or what makes a bet a sure thing. There were three, maybe four, concerns that came up every time I had this conversation. So, I&#8217;m going to share those concerns with you and a few possible counterpoints to get you started.</p>\n\n\n\n<p>[00:01:48] <strong>Josepha:</strong> First and always is the concern around security. I believe that this particular mismatch is rooted in an idea that controlled equals secure, which isn&#8217;t always the case. So the talking point is this. Since open source has a transparent development process, it is often more secure than proprietary software, contrary to what you might hear.</p>\n\n\n\n<p>That transparency allows vulnerabilities to be identified by independent researchers and community members and then patched quickly because you aren&#8217;t limited by who or what you know personally. </p>\n\n\n\n<p>And if you&#8217;re not having a conversation where you&#8217;re having to defend the security in open source and you just want to bring it up yourself, here is a conversation opener for that. Security is a top concern for all of us. Surprisingly, open source solutions often have stronger security measures due to the collaborative nature of their development. It&#8217;s a proactive approach to minimizing risks.&nbsp;</p>\n\n\n\n<p>[00:02:43] <strong>Josepha:</strong> A second thing that frequently came up was questions around innovation and future proofing of open source products. I think this mismatch is fully rooted in the Cathedral and the Bazaar methods of advancement. So the talking point for that one is this. Embracing open source fosters innovation. We can tap into the latest technologies and stay ahead of industry trends that way. It is specifically because we have a diverse set of viewpoints that we can make sure to quickly account for future risks, along with taking advantage of future opportunities. And by our organization being more active, we can potentially get exactly the solutions we need for our clients long term.</p>\n\n\n\n<p>And the conversation opener for this, if you are the one bringing up the topic, is I&#8217;ve been thinking about our long-term goals and how to keep our technology stack relevant. Open source not only keeps us current but also positions us as innovators in our field.</p>\n\n\n\n<p>[00:03:40] <strong>Josepha:</strong> And finally, the thing that seems to make or break the decision is the concept of independence. Part of any good business decision, especially around software, is determining upfront costs to getting started, long-term effectiveness of the chosen solution, and long-term mobility should circumstances change. Open source can address these from multiple vantage points.</p>\n\n\n\n<p>So here&#8217;s a good talking point for that one. Open source liberates us from vendor lock-in. We&#8217;re not tied to a single vendor&#8217;s roadmap or pricing changes, providing us with more options that suit our needs our clients&#8217; needs. Also, given how ubiquitous WordPress is in particular, there will always be a disaster recovery option should a senior developer leave.</p>\n\n\n\n<p>And beyond all of that, clients can own all of the content, audience attention, and clientele that we have all worked so hard to help them earn. And again, if you&#8217;re not defending things and instead choosing to bring them up as somebody who is trying to affect change in your own organization, here is a good place to start for that.</p>\n\n\n\n<p>Considering the dynamic nature of our industry, having the freedom to choose solutions independent of a specific vendor makes sure that we are always in control of our destiny.</p>\n\n\n\n<p>[00:04:59] <strong>Josepha:</strong> So, those are the three most frequent things I encountered when I was having conversations about which software to choose and what software was the best choice long term for both our organization and our client&#8217;s organizations.</p>\n\n\n\n<p>If you have been in the midst of this type of conversation and have been longing for some counterpoints, I hope this helps. But if you have been feeling in your heart of hearts that your company or organization would be better off using open source software, and of course, in my context, particularly WordPress as that software, but you&#8217;ve been worried about bringing it up, I hope this gives you the courage to get out there and be an agent of change in your organization. You can do it, and I know you can.</p>\n\n\n\n<p>[00:05:44] (Music interlude)&nbsp;</p>\n\n\n\n<p>[00:05:51] <strong>Josepha:</strong> All right, my friends, that brings us now to our small list of big things.Â </p>\n\n\n\n<p>[00:05:57] <strong>Josepha:</strong> First on the list, big, big thing. We launched WordPress 6.4 on November 7th, about a week ago. Be sure to download and check out the latest update on this monumental release. And while you&#8217;re doing it. Be sure to check out the new default theme that came out with it. It has a lot of patterns in it. I know I&#8217;ve talked about it quite a bit over the course of the year, but it&#8217;s really beautiful, and I think that it&#8217;s worth a good, strong highlight. So WordPress 6.4, you can get it on WordPress.org/download or inside your own host, probably.Â </p>\n\n\n\n<p>[00:06:29] <strong>Josepha:</strong> The second thing that we have is that the training team recently published several new Learn resources to support meetup organizers. So we&#8217;ve got over there some lesson plans, tutorials, online workshops. And there are also new materials that help you figure out how to accomplish your goals as a contributor to the WordPress project.</p>\n\n\n\n<p>[00:06:49] <strong>Josepha:</strong> And we also have a recently published new diverse speaker training page. It provides incredible resources for new and experienced contributors to bring more diverse speaker lineups and inclusive, diverse WordPress events for official WordPress meetups and WordCamps.Â </p>\n\n\n\n<p>[00:07:06] <strong>Josepha:</strong> And the fourth thing on our small list of big things today is that I would love to get a few voice recordings from you all, from folks who are listening to the WordPress Briefing, or folks that you know, to learn more about how WordPress has impacted you.Â </p>\n\n\n\n<p>One of the things that I miss the most from my days as a WordCamp organizer is that annually, I got to see people who had shown up, once at a meetup, you know, to learn what WordPress was, and then came back year after year to our WordCamp with these new goals and new successes and I got to watch their businesses change over time. And so if you have a story like that where WordPress impacted what you are doing or what people that you know have done, record something and send it to wpbriefing@WordPress.org. </p>\n\n\n\n<p>So that, my friends, is your small list of big things.</p>\n\n\n\n<p>[00:08:04] <strong>Josepha:</strong> Don&#8217;t forget to follow us on your favorite podcasting app or subscribe directly on WordPress.org/news. You&#8217;ll get a friendly reminder whenever there is a new episode. If you liked what you heard today, share it with a fellow WordPresser. Or, if you had questions about what you heard, you can share those with me at wpbriefing@WordPress.org. I&#8217;m your host, Josepha Haden Chomphosy. Thanks for tuning in today for the WordPress Briefing, and I&#8217;ll see you again in a couple of weeks.Â </p>\n\n\n\n<p>[00:08:31] (Music outro)</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16357\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"The Month in WordPress â€“ October 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/11/the-month-in-wordpress-october-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Nov 2023 23:06:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16365\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:391:\"September-October 2023 was yet another fun and eventful chapter in WordPress, with more WordCamps hosting exciting discussions, knowledge sharing, and learning. This month also welcomed the release of WordPress 6.4 and the Twenty Twenty-Four theme. Letâ€™s check it out. Meet WordPress 6.4 â€œShirleyâ€ WordPress 6.4 â€œShirleyâ€ was released on November 7, 2023, and named after [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11694:\"\n<p>September-October 2023 was yet another fun and eventful chapter in WordPress, with more WordCamps hosting exciting discussions, knowledge sharing, and learning. This month also welcomed the release of WordPress 6.4 and the Twenty Twenty-Four theme. Letâ€™s check it out.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Meet WordPress 6.4 â€œShirleyâ€</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/Release_featured_image2-1.png?resize=1024%2C683&#038;ssl=1\" alt=\"Shirley WordPress 6.4\" class=\"wp-image-16319\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/Release_featured_image2-1.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/Release_featured_image2-1.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/Release_featured_image2-1.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/Release_featured_image2-1.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/11/Release_featured_image2-1.png?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/11/shirley/\">WordPress 6.4 â€œShirleyâ€</a> was released on November 7, 2023, and named after the iconic jazz artist Shirley Horn. With the release of WordPress 6.4 comes the new <a href=\"https://wordpress.org/themes/twentytwentyfour/\">Twenty Twenty-Four theme</a>, a multi-faceted, highly flexible default theme pre-loaded with more than 35 templates and patterns.&nbsp;</p>\n\n\n\n<p>This release includes more than 100 performance-related updates for a faster and more efficient experience. Thereâ€™s also a host of new features and enhancements that help improve the content creation process and streamline site editing.&nbsp;</p>\n\n\n\n<p>WordPress 6.4 was made possible by more than 600 contributors in at least 56 countries.&nbsp;Leading this release has been an underrepresented gender team, emphasizing WordPressâ€™ commitment to fostering diverse voices in the open source project.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-2 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-white-color has-dark-strokes-grey-background-color has-text-color has-background has-link-color wp-element-button\" href=\"https://wordpress.org/download/releases/6-4/\">Learn more about WordPress 6.4</a></div>\n</div>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">State of the Word 2023</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/Web-SOTW-Image-1200x800-2.png?resize=1024%2C683&#038;ssl=1\" alt=\"State of the Word 2023 in Madrid Spain on December 11, 2023 at 15:00 UTC\" class=\"wp-image-16208\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/10/Web-SOTW-Image-1200x800-2.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/10/Web-SOTW-Image-1200x800-2.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/10/Web-SOTW-Image-1200x800-2.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/10/Web-SOTW-Image-1200x800-2.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/10/Web-SOTW-Image-1200x800-2.png?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Mark your calendars for State of the Word! The annual keynote address delivered by the WordPress projectâ€™s co-founder, Matt Mullenweg, will be held on December 11, 2023. For the first time, the event will take place outside North Americaâ€”this time with the Spanish community in <strong>Madrid, Spain</strong>.</p>\n\n\n\n<p>A live stream will be available for WordPress enthusiasts who will not be able to attend in person. Stay tuned for more information, including how to reserve a ticket, soon!</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-3 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-white-color has-dark-strokes-grey-background-color has-text-color has-background has-link-color wp-element-button\" href=\"https://wordpress.org/news/2023/10/state-of-the-word-2023/\">Learn more about this yearâ€™s State of the Word</a></div>\n</div>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<p>Two new versions of Gutenberg shipped in October:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/10/11/whats-new-in-gutenberg-16-8-11-october/\"><strong>Gutenberg 16.8</strong></a> was released on October 11, 2023. It introduced enhancements to the Cover block and Font Library, and added the option to view the active template when editing pages.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/10/25/whats-new-in-gutenberg-16-9-25-october-2/\"><strong>Gutenberg 16.9</strong></a> was released on October 25, 2023. This update lets you rename nearly every block from within the editor, as well as duplicate or rename individual patterns.&nbsp;</li>\n</ul>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/10/05/core-editor-improvement-ensuring-excellence-in-the-writing-experience/\">Octoberâ€™s Core Editor Improvement</a> post dives into all the writing enhancements expected in the latest WordPress 6.4 release.</p>\n\n\n\n<a class=\"wp-block-jetpack-podcast-player jetpack-podcast-player__direct-link\" href=\"https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/\">https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/</a>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates</h2>\n\n\n\n<ul>\n<li>The journey to update WordPress.org continues with the launch of a <a href=\"https://wordpress.org/news/2023/10/a-new-wordpress-showcase/\">new Showcase design</a>. The redesigned Showcase inspires creativity, highlights the platformâ€™s flexibility, and demonstrates whatâ€™s possible with WordPress.</li>\n\n\n\n<li>The Performance Team held a <a href=\"https://make.wordpress.org/core/2023/09/18/hallway-hangout-performance-improvements-for-wordpress-6-4/\">Hallway Hangout</a> to discuss WordPress 6.3 performance impact in the field, diving into WordPress 6.4 performance improvements and looking ahead at what can be learned for WordPress 6.5.</li>\n\n\n\n<li>The Documentation Team created a new <a href=\"https://github.com/WordPress/documentation-end-user\">GitHub repo</a> for end-user documentation and its translations to all locales. You can find out more about this <a href=\"https://make.wordpress.org/project/2023/09/06/documentation-translation-localization/\">here</a>.</li>\n\n\n\n<li>Openverse has been awarded the <a href=\"https://wordpress.org/news/2023/09/openverse-wins-the-2023-oeg-open-infrastructure-award/\">2023 Open Education Award for Excellence in the Open Infrastructure category</a>. Congratulations!</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/09/07/evolving-the-fse-outreach-program/\">Learn more about the next chapter for the FSE (Full Site Editing) Outreach Program</a>, which looks to transition into a focused space for solving issues, creating resources, and facilitating conversations around adopting Phase 2 of Gutenberg.</li>\n\n\n\n<li>The Accessibility team is <a href=\"https://make.wordpress.org/accessibility/2023/09/13/accessibility-office-hours/\">holding weekly office hours</a> to discuss accessibility principles and best practices for the project.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Requests for feedback &amp; testing</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/11/03/mobile-team-update-november-3rd-2/\">Version 23.6</a> of the WordPress mobile app for iOS and Android is ready for testing.</li>\n</ul>\n\n\n\n<a class=\"wp-block-jetpack-podcast-player jetpack-podcast-player__direct-link\" href=\"https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/\">https://wordpress.org/news/2023/10/episode-64-patterns-in-wordpress/</a>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f9-1f1fc.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> WordCamp Asia has <a href=\"https://asia.wordcamp.org/2024/call-for-sponsors-extended-to-november-30th/\">extended their call for sponsors</a> for their conference slated to take place in Taipei, Taiwan, March 7-9, 2024.&nbsp;</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e8-1f1f7.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> There will be a <a href=\"https://www.eventbrite.com/e/wordpress-wpdiversity-speaker-workshop-for-women-voices-in-latin-america-tickets-621207738067?aff=oddtdtcreator\">WordPress #WPDiversity Speaker Workshop for Women Voices in Latin America</a> in San Jose, Costa Rica on November 11, 2023.</li>\n\n\n\n<li>Donâ€™t miss these upcoming WordCamps:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ea-1f1f8.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://valencia.wordcamp.org/2023/\">WordCamp Valencia 2023</a>, Spain on November 10-11, 2023.</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f9.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://verona.wordcamp.org/2023/\">WordCamp Verona 2023</a>, Italy on November 17-18, 2023.</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ed-1f1f0.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://hongkong.wordcamp.org/2023/\">WordCamp Hong Kong 2023</a>, China on November 18, 2023.</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1f5-1f1f0.png\" alt=\"??\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://islamabad.wordcamp.org/2023/\">WordCamp Islamabad 2023</a>, Pakistan on November 25-26, 2023.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><em>Have a story we should include in the next issue of The Month in WordPress? Fill out </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>this quick form</em></a><em> to let us know.</em></p>\n\n\n\n<p><em>Thank you to </em><a href=\"https://profiles.wordpress.org/bernard0omnisend/\"><em>Bernard Meyer</em></a><em> and <a href=\"https://profiles.wordpress.org/rmartinezduque/\">Reyes MartÃ­nez</a> for their contributions to this edition of The Month in WordPress.</em></p>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\">Subscribe to WordPress News</h2>\n\n\n\n<p>Join other subscribers and receive WordPress news directly in your inbox.</p>\n\n\n<div class=\"wp-block-jetpack-subscriptions__supports-newline is-style-split wp-block-jetpack-subscriptions\">\n		<div>\n			<div>\n				<div>\n					<p >\n						<a href=\"https://wordpress.org/news/?post_type=post&#038;p=16365\" style=\"text-decoration: none; font-size: 16px;padding: 15px 23px 15px 23px;margin: 0px; margin-left: 10px;border-radius: 0px;border-width: 1px; background-color: #113AF5; color: #FFFFFF;\">Subscribe</a>\n					</p>\n				</div>\n			</div>\n		</div>\n	</div></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16365\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 6.4.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/11/wordpress-6-4-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Nov 2023 01:45:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16332\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:375:\"WordPress 6.4.1 is now available! This minor release features&#160;four bug fixes. You can review a summary of the maintenance updates in this release by reading the&#160;Release Candidate announcement or view the list of tickets on Trac. WordPress 6.4.1 is a short-cycle release. If you have sites that support automatic background updates, the update process will [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5986:\"\n<h2 class=\"wp-block-heading\">WordPress 6.4.1 is now available!</h2>\n\n\n\n<p>This minor release features&nbsp;<a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=assigned&amp;status=closed&amp;status=new&amp;status=reopened&amp;status=reviewing&amp;id=!59852&amp;milestone=6.4.1&amp;col=id&amp;col=summary&amp;col=status&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=priority\">four bug fixes</a>. You can review a summary of the maintenance updates in this release by reading the&nbsp;<a href=\"https://make.wordpress.org/core/2023/11/08/wordpress-6-4-1-rc1-is-now-available/\">Release Candidate announcement</a> or <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=assigned&amp;status=closed&amp;status=new&amp;status=reopened&amp;status=reviewing&amp;milestone=6.4.1&amp;col=id&amp;col=summary&amp;col=status&amp;col=owner&amp;col=type&amp;col=priority&amp;col=milestone&amp;order=priority\">view the list of tickets on Trac</a>.</p>\n\n\n\n<p>WordPress 6.4.1 is a short-cycle release. If you have sites that support automatic background updates, the update process will begin automatically. If your site does not update automatically, you can also update from your Dashboard.</p>\n\n\n\n<p>You can&nbsp;download <a href=\"https://wordpress.org/wordpress-6.4.1.zip\">WordPress 6.4.1 from WordPress.org</a>, or visit your WordPress Dashboard, click â€œUpdatesâ€, and then click â€œUpdate Nowâ€.</p>\n\n\n\n<p>For more information on this release, <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-4-1/\">please&nbsp;visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p>This release was led by&nbsp;<a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> and <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>. Thank you to everyone who tested the RC and 6.4.1, and raised reports.</p>\n\n\n\n<p>WordPress 6.4.1 would not have been possible without the contributions of the following people. Their quick and concerted coordination to deliver maintenance fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"has-text-align-left\"><a href=\"https://profiles.wordpress.org/afragen/\">@afragen</a> <a href=\"https://profiles.wordpress.org/clorith/\">@clorith</a> <a href=\"https://profiles.wordpress.org/desrosj/\">@desrosj</a> <a href=\"https://profiles.wordpress.org/pbiron/\">@pbiron</a> <a href=\"https://profiles.wordpress.org/schlessera/\">@schlessera</a> <a href=\"https://profiles.wordpress.org/azaozz/\">@azaozz</a> <a href=\"https://profiles.wordpress.org/davidbaumwald/\">@davidbaumwald</a> <a href=\"https://profiles.wordpress.org/tomsommer/\">@tomsommer</a> <a href=\"https://profiles.wordpress.org/nexflaszlo/\">@nexflaszlo</a> <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">@howdy_mcgee</a> <a href=\"https://profiles.wordpress.org/baxbridge/\">@baxbridge</a> <a href=\"https://profiles.wordpress.org/earnjam/\">@earnjam</a> <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">@timothyblynjacobs</a> <a href=\"https://profiles.wordpress.org/johnbillion/\">@johnbillion</a> <a href=\"https://profiles.wordpress.org/flixos90/\">@flixos90</a> <a href=\"https://profiles.wordpress.org/joedolson/\">@joedolson</a> <a href=\"https://profiles.wordpress.org/jeffpaul/\">@jeffpaul</a> <a href=\"https://profiles.wordpress.org/zunaid321/\">@zunaid321</a> <a href=\"https://profiles.wordpress.org/courane01/\">@courane01</a> <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a> <a href=\"https://profiles.wordpress.org/tacoverdo/\">@tacoverdo</a> <a href=\"https://profiles.wordpress.org/ironprogrammer/\">@ironprogrammer</a> <a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a> <a href=\"https://profiles.wordpress.org/otto42/\">@otto42</a> <a href=\"https://profiles.wordpress.org/barry/\">@barry</a> <a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a> <a href=\"https://profiles.wordpress.org/rajinsharwar/\">@rajinsharwar</a> <a href=\"https://profiles.wordpress.org/aaroncampbell/\">@aaroncampbell</a> <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">@peterwilsoncc</a> <a href=\"https://profiles.wordpress.org/anandau14/\">@anandau14</a> <a href=\"https://profiles.wordpress.org/iandunn/\">@iandunn</a> <a href=\"https://profiles.wordpress.org/matthewjho/\">@matthewjho</a> <a href=\"https://profiles.wordpress.org/coffee2code/\">@coffee2code</a> <a href=\"https://profiles.wordpress.org/boogah/\">@boogah</a> <a href=\"https://profiles.wordpress.org/jason_the_adams/\">@jason_the_adams</a> <a href=\"https://profiles.wordpress.org/joemcgill/\">@joemcgill</a> <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">@johnjamesjacoby</a> <a href=\"https://profiles.wordpress.org/jrf/\">@jrf</a> <a href=\"https://profiles.wordpress.org/renehermi/\">@renehermi</a> <a href=\"https://profiles.wordpress.org/dlh/\">@dlh</a> <a href=\"https://profiles.wordpress.org/mukesh27/\">@mukesh27</a> <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">@sumitbagthariya16</a> <a href=\"https://profiles.wordpress.org/starbuck/\">@starbuck</a> <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">@sergeybiryukov</a> <a href=\"https://profiles.wordpress.org/ravipatel/\">@ravipatel</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p>To get involved in WordPress core development, head over to Trac,&nbsp;<a href=\"https://core.trac.wordpress.org/report/6\">pick a ticket</a>, and join the conversation in the&nbsp;<a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a>&nbsp;channel. Need help? Check out the&nbsp;<a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p class=\"has-text-align-right\"><em>Thanks to&nbsp;<a href=\"https://profiles.wordpress.org/jeffpaul/\">@jeffpaul</a>&nbsp;and <a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a> for proofreading.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16332\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"WordPress 6.4 â€œShirleyâ€\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://wordpress.org/news/2023/11/shirley/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Nov 2023 19:59:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16299\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:194:\"WordPress 6.4 \"Shirley\" is here! Named in honor of the iconic jazz singer and pianist Shirley Horn, this release was made possible by over 600 contributors. Download WordPress 6.4 Shirley today.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:74791:\"\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/Release_featured_image2-1.png?resize=1024%2C683&#038;ssl=1\" alt=\"Record cover with an image of Shirley Horn, a record sliding down the right side, and the words Shirley WordPress 6.4.\" class=\"wp-image-16319\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/Release_featured_image2-1.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/Release_featured_image2-1.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/Release_featured_image2-1.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/Release_featured_image2-1.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/11/Release_featured_image2-1.png?resize=2048%2C1365&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Say hello to <a href=\"https://wordpress.org/download/releases/6-4/\">WordPress 6.4</a> â€œShirley,â€ named after the iconic jazz artist <a href=\"https://wikipedia.org/wiki/Shirley_Horn\">Shirley Horn</a>. Her distinctive voice and extraordinary connection to the piano established her as one of the leading jazz musicians of her generation. Hornâ€™s journey from the Washington D.C. jazz scene to the international stage is a testament to her dedication and perseverance. Her influence reached far beyond the confines of traditional jazz, breaking boundaries and inspiring audiences worldwide.</p>\n\n\n\n<p>Enjoy the easy pace of <a href=\"https://www.youtube.com/channel/UCS3pUiY9OmzB6bPta3-4ArQ/playlists\">Shirley Hornâ€™s music</a> as you take in all that 6.4 offers.</p>\n\n\n\n<p>This latest version of WordPress introduces a new, versatile default theme and a suite of upgrades to empower every step of your creative journey. Craft your content seamlessly with further writing improvements. Explore more ways to bring your vision to life and streamline site editing with enhanced tools. Whether you&#8217;re new to WordPress or an experienced creator, â€œShirleyâ€ has something for you. Discover the unmatched flexibility of building with blocks and let your ideas take flight.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Many of the features and enhancements in WordPress 6.4 fall in the â€œsmall but mightyâ€ category. Along with the adaptable beauty of the Twenty Twenty-Four theme, these updates help content creators and site developers alike save time and effort while delivering the high value, low hassle WordPress experience the world has grown to expect.</p>\n<cite>Josepha Haden Chomphosy, Executive Director of WordPress</cite></blockquote>\n\n\n\n<div style=\"height:2px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/download/\">Download WordPress 6.4 today</a></div>\n</div>\n\n\n\n<div style=\"height:2px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Whatâ€™s inside 6.4</h2>\n\n\n\n<h3 class=\"wp-block-heading\">Meet Twenty Twenty-Four</h3>\n\n\n\n<p>Experience site editing at its finest with <a href=\"https://make.wordpress.org/core/2023/08/24/introducing-twenty-twenty-four/\">Twenty Twenty-Four</a>. This new multi-faceted default theme has been thoughtfully crafted with three distinct use cases in mind, from writers and artists to entrepreneurs. Save time and effort with its extensive collection of <a href=\"https://2024.wordpress.net/index.php/patterns/\">over 35 templates and patterns</a>â€”and unlock a world of creative possibilities with a few tweaks. Twenty Twenty-Fourâ€™s remarkable flexibility ensures an ideal fit for almost any type of site. <a href=\"https://2024.wordpress.net/\">Check it out in this demo</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/tt4.png?resize=1024%2C666&#038;ssl=1\" alt=\"Cropped screenshots of the Twenty Twenty-Four theme, showing its diverse use cases for photographers, bloggers, and small businesses.\" class=\"wp-image-16274\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/tt4.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/tt4.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/tt4.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/tt4.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Let your writing flow</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/10/05/core-editor-improvement-ensuring-excellence-in-the-writing-experience/\">New enhancements</a> ensure your content creation journey is smooth. Find new keyboard shortcuts in List View, smarter list merging, and enhanced control over link settings. A cohesive toolbar experience for the Navigation, List, and Quote blocks lets you work efficiently with the tooling options you need.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/writing.png?resize=1024%2C666&#038;ssl=1\" alt=\"Screenshot of a Quote block showing its improved toolbar and the text &quot;Ã‰tudes has saved us thousands of hours of work and has unlock insights we never thought possible.&quot;\" class=\"wp-image-16275\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/writing.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/writing.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/writing.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/writing.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">The Command Palette just got better</h3>\n\n\n\n<p>First introduced in WordPress 6.3, the Command Palette is a powerful tool to quickly find what you need, perform tasks efficiently, and speed up your building workflow. Enjoy a <a href=\"https://make.wordpress.org/core/2023/09/12/core-editor-improvement-commanding-the-command-palette/\">refreshed design and new commands</a> to perform block-specific actions in this release.</p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/commands.png?resize=1024%2C666&#038;ssl=1\" alt=\"Screenshot of the refreshed UI of the Command Palette. It displays a search bar with the words &quot;Search for commands&quot; and a variety of shortcuts listed below, including &quot;Add new page,&quot; &quot;Preview in a new tab,&quot; and &quot;Patterns.&quot;\" class=\"wp-image-16276\" style=\"width:680px;height:auto\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/commands.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/commands.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/commands.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/commands.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Categorize and filter patterns</h3>\n\n\n\n<p><a href=\"https://wordpress.org/patterns/\">Patterns</a> are an excellent way to leverage the potential of blocks and simplify your site-building process. WordPress 6.4 allows you to organize them with custom categories. Plus, new advanced filtering in the Patterns section of the inserter makes finding all your patterns more intuitive.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/categorize-patterns-1.png?resize=1024%2C666&#038;ssl=1\" alt=\"Screenshot of the Site Editor\'s patterns view which shows a list of patterns with custom categories, such as &quot;About,&quot; &quot;Banners,&quot; and &quot;Call to Action,&quot; patterns.\" class=\"wp-image-16278\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/categorize-patterns-1.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/categorize-patterns-1.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/categorize-patterns-1.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/categorize-patterns-1.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Get creative with more design tools</h3>\n\n\n\n<p>Build beautiful and functional layouts with an expanded set of design tools. Play with background images in Group blocks for unique designs and maintain image dimensions consistent with placeholder aspect ratios. Do you want to add buttons to your Navigation block? Now you can do it conveniently without a line of code.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/design-tools.png?resize=1024%2C666&#038;ssl=1\" alt=\"Decorative image with text &quot;Background images in Group blocks.&quot;\" class=\"wp-image-16279\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/design-tools.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/design-tools.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/design-tools.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/design-tools.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Make your images stand out</h3>\n\n\n\n<p>Enable lightbox functionality to let your site visitors enjoy full-screen, interactive images on click. Apply it globally or to specific images to customize the viewing experience.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/lightbox.png?resize=1024%2C666&#038;ssl=1\" alt=\"Decorative photo of a triangular building structure with a &quot;click to expand&quot; icon on the right top corner.\" class=\"wp-image-16280\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/lightbox.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/lightbox.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/lightbox.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/lightbox.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Rename Group blocks</h3>\n\n\n\n<p>Set custom names for Group blocks to organize and distinguish areas of your content easily. These names will be visible in List View.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/rename.png?resize=1024%2C666&#038;ssl=1\" alt=\"Screenshot of the List View tool. It shows a Group block renamed as &quot;Hero Area&quot; with inner Group blocks also with custom names, such as &quot;Content,&quot; &quot;Images,&quot; and &quot;Call to action.&quot;\" class=\"wp-image-16281\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/rename.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/rename.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/rename.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/rename.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Preview images in List View</h3>\n\n\n\n<p>New previews for Gallery and Image blocks in List View let you visualize and locate where images on your content are at a glance.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/list-view-images.png?resize=1024%2C666&#038;ssl=1\" alt=\"Screenshot of the List View tool, showing the new image previews for the Image and Gallery blocks.\" class=\"wp-image-16282\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/list-view-images.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/list-view-images.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/list-view-images.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/list-view-images.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Share patterns across sites</h3>\n\n\n\n<p>Need to use your custom patterns on another site? Import and export them as JSON files from the Site Editor&#8217;s patterns view.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/exporting-patterns-1.png?resize=1024%2C666&#038;ssl=1\" alt=\"Screenshot showing the &quot;Import pattern from JSON files&quot; option from the Site Editor\'s patterns view.\" class=\"wp-image-16303\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/exporting-patterns-1.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/exporting-patterns-1.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/exporting-patterns-1.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/exporting-patterns-1.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Introducing Block Hooks</h3>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2023/10/15/introducing-block-hooks-for-dynamic-blocks/\">Block Hooks</a> enables developers to automatically insert dynamic blocks at specific content locations, enriching the extensibility of block themes through plugins. While considered a developer tool, this feature is geared to respect your preferences and gives you complete control to add, dismiss, and customize auto-inserted blocks to your needs.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/11/block-hooks.png?resize=1024%2C666&#038;ssl=1\" alt=\"Cropped screenshot showing a mini shopping cart (in a red dotted circle) inserted into a navigation menu by Block Hooks.\" class=\"wp-image-16284\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/11/block-hooks.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/11/block-hooks.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/11/block-hooks.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/11/block-hooks.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Performance wins</h3>\n\n\n\n<p>This release includes more than 100 performance-related updates for a faster and more efficient experience. Notable enhancements focus on <a href=\"https://make.wordpress.org/core/2023/10/17/improvements-to-template-loading-in-wordpress-6-4/\">template loading performance</a> for themes (including Twenty Twenty-Four), <a href=\"https://make.wordpress.org/core/2023/10/17/script-loading-changes-in-wordpress-6-4/\">usage of the script loading strategies</a> â€œdeferâ€ and â€œasyncâ€ in core, blocks, and themes, and <a href=\"https://make.wordpress.org/core/2023/10/17/new-option-functions-in-6-4/\">optimization of autoloaded options</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility highlights</h3>\n\n\n\n<p>Every release is committed to making WordPress accessible to everyone. WordPress 6.4 brings several List View improvements and aria-label support for the Navigation block, among other highlights. The admin user interface includes enhancements to button placements, &#8220;Add New&#8221; menu items context, and Site Health spoken messages. <a href=\"https://make.wordpress.org/core/2023/11/03/wordpress-6-4-accessibility-improvements/\">Learn more about all the updates</a> aimed at improving accessibility.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other notes of interest</h3>\n\n\n\n<ul>\n<li>PHP 8.1 or 8.2 are recommended for use with WordPress 6.4. Find in-depth details on PHP support <a href=\"https://wordpress.org/news/2023/10/wordpress-6-4s-php-compatibility/\">in this post</a>.</li>\n\n\n\n<li>WordPress 6.4 <a href=\"https://make.wordpress.org/core/2023/10/16/changes-to-attachment-pages/\">disables attachment pages</a> for new installations.</li>\n</ul>\n\n\n\n<div style=\"height:2px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress 6.4</h2>\n\n\n\n<p>Check out the new <a href=\"https://wordpress.org/download/releases/6-4/\">WordPress 6.4 page</a> to learn more about the numerous enhancements and features of this release.</p>\n\n\n\n<p>Explore <a href=\"https://learn.wordpress.org/\">Learn WordPress</a> for quick how-to videos, <a href=\"https://learn.wordpress.org/social-learning/\">online workshops</a>, and other free resources to level up your WordPress knowledge and skills.</p>\n\n\n\n<p>If you are looking for detailed technical notes on new changes, the <a href=\"https://make.wordpress.org/core/2023/10/23/wordpress-6-4-field-guide/\">WordPress 6.4 Field Guide</a> is for you. Don&#8217;t forget to subscribe to the <a href=\"https://developer.wordpress.org/news/\">Developer Blog</a> to stay on top of the latest development updates, tutorials, and more.</p>\n\n\n\n<p>For more information on installation, fixes, and file changes, visit the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-4/\">6.4 release notes</a>.</p>\n\n\n\n<div style=\"height:2px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">The 6.4 release squad</h2>\n\n\n\n<p>â€‹â€‹The WordPress 6.4 release comes to you from an <strong>underrepresented gender release squad</strong> to welcome and empower diverse voices in the WordPress open source project.</p>\n\n\n\n<div style=\"height:1px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p class=\"has-extra-large-font-size\">Being part of the 6.4 release coordination team has allowed me to closely observe the intricate release process, where every detail, no matter how minor, is meticulously addressedâ€”taking into account various factors like performance and backward compatibility. Thereâ€™s still much to learn, but I feel fortunate to have had the chance to contribute to WordPress 6.4.</p>\n<cite>Akshaya Rane, 6.4 release coordinator team member</cite></blockquote>\n\n\n\n<div style=\"height:1px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>Over several weeks, the 6.4 release squad kept the release on track and moving forward by leading collective work, connecting ideas, and removing roadblocks.</p>\n\n\n\n<ul>\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a></li>\n\n\n\n<li>Release Coordinators: <a href=\"https://profiles.wordpress.org/cbringmann/\">ChloÃ© Bringmann</a>, <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a>, <a href=\"https://profiles.wordpress.org/akshayar/\">Akshaya Rane</a>, <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>. Cohort: <a href=\"https://profiles.wordpress.org/thewebprincess/\">Dee Teal</a>, <a href=\"https://profiles.wordpress.org/jaimieolmstead/\">Jaimie Olmstead</a>, <a href=\"https://profiles.wordpress.org/jyolsna/\">Jyolsna J E</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a></li>\n\n\n\n<li>Core Tech Leads: <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>. Cohort: <a href=\"https://profiles.wordpress.org/pypwalters/\">Stephanie Walters</a></li>\n\n\n\n<li>Editor Tech Leads:&nbsp; <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a>, <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan Bamber</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>. Cohort: <a href=\"https://profiles.wordpress.org/68kheart/\">Devan Ferguson</a>, <a href=\"https://profiles.wordpress.org/battelfred/\">FrÃ©dÃ©rique Battel</a>, <a href=\"https://profiles.wordpress.org/jessicagoddard/\">Jessica Goddard</a>, <a href=\"https://profiles.wordpress.org/1happyplace/\">Katie Ayres</a>, <a href=\"https://profiles.wordpress.org/martatorre/\">Marta Torre</a>, <a href=\"https://profiles.wordpress.org/ngreennc/\">Nyasha Green</a>, <a href=\"https://profiles.wordpress.org/poojabhimani/\">Pooja Bhimani</a></li>\n\n\n\n<li>Core Triage Leads: <a href=\"https://profiles.wordpress.org/nicolefurlan/\">Nicole Furlan</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a></li>\n\n\n\n<li>Editor Triage Leads: <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>. Cohort: <a href=\"https://profiles.wordpress.org/emilyatmobtown/\">Emily Leffler Schulman</a></li>\n\n\n\n<li>Documentation Leads: <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a>, <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>, <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a>. Cohort: <a href=\"https://profiles.wordpress.org/itsjustdj/\">D.J. Billings</a>, <a href=\"https://wordpress.org/support/users/codente/\">Jamie VanRaalte</a>, <a href=\"https://profiles.wordpress.org/newyorkerlaura/\">Laura Byrne</a>, <a href=\"https://profiles.wordpress.org/baxbridge/\">Tiffany Bridge</a>, <a href=\"https://profiles.wordpress.org/planningwrite/\">Winstina Hughes</a></li>\n\n\n\n<li>Marketing and Communications Leads: <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\">Reyes MartÃ­nez</a>, <a href=\"https://profiles.wordpress.org/sereedmedia/\">SÃ© Reed</a>. Cohort: <a href=\"https://profiles.wordpress.org/meaganhanes/\">Meagan Hanes</a>, <a href=\"https://profiles.wordpress.org/michelleames/\">Michelle Frechette</a></li>\n\n\n\n<li>Test Lead: <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>. Cohort: <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne Bovelett</a>, <a href=\"https://profiles.wordpress.org/coachbirgit/\">Birgit Olzem</a></li>\n\n\n\n<li>Design Leads: <a href=\"https://profiles.wordpress.org/elmastudio/\">Ellen Bauer</a>, <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>. Cohort: <a href=\"https://profiles.wordpress.org/allisonplus/\">Allison Tarr</a>, <a href=\"https://profiles.wordpress.org/acirujano/\">Ana Cirujano</a>, <a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a>, <a href=\"https://profiles.wordpress.org/nudge/\">Sonia Gaballa</a>, <a href=\"https://profiles.wordpress.org/ohia/\">Ohia</a></li>\n\n\n\n<li>Performance Lead: <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a>. Cohort: <a href=\"https://profiles.wordpress.org/linsoftware/\">Linnea Huxford</a></li>\n\n\n\n<li>Training Leads: <a href=\"https://profiles.wordpress.org/courtneypk/\">Courtney P.K.</a>, <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Roberston</a></li>\n\n\n\n<li>Default Theme Leads: <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a>, <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a></li>\n</ul>\n\n\n\n<div style=\"height:2px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you, contributors</h2>\n\n\n\n<p>WordPress believes in democratizing publishing and the freedoms that come with open source. Supporting this idea is a global and diverse community of people working together to strengthen the software.</p>\n\n\n\n<p>WordPress 6.4 reflects the countless efforts and passion of <strong>more than 600 contributors in at least 56 countries</strong>. This release also welcomed over 170 first-time contributors!</p>\n\n\n\n<p>Their collaboration delivered more than 1150 enhancements and fixes, ensuring a stable release for allâ€”a testament to the power and capability of the WordPress open source community.</p>\n\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/6adminit/\">6adminit</a> Â· <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a> Â· <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> Â· <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> Â· <a href=\"https://profiles.wordpress.org/aayusha/\">aayusha</a> Â· <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> Â· <a href=\"https://profiles.wordpress.org/omarabid/\">Abid Omar</a> Â· <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> Â· <a href=\"https://profiles.wordpress.org/adhun/\">Adhun Anand</a> Â· <a href=\"https://profiles.wordpress.org/ajmcfadyen/\">admcfajn</a> Â· <a href=\"https://profiles.wordpress.org/adrianduffell/\">adrianduffell</a> Â· <a href=\"https://profiles.wordpress.org/aegkr/\">aegkr</a> Â· <a href=\"https://profiles.wordpress.org/ahardyjpl/\">ahardyjpl</a> Â· <a href=\"https://profiles.wordpress.org/ahmedgeek/\">Ahmed Hussein</a> Â· <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a> Â· <a href=\"https://profiles.wordpress.org/ajakaroth/\">ajakaroth</a> Â· <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> Â· <a href=\"https://profiles.wordpress.org/akihiroharai/\">Akihiro Harai</a> Â· <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a> Â· <a href=\"https://profiles.wordpress.org/akshayar/\">Akshaya Rane</a> Â· <a href=\"https://profiles.wordpress.org/alaminfirdows/\">Al-Amin Firdows</a> Â· <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a> Â· <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a> Â· <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> Â· <a href=\"https://profiles.wordpress.org/alexkingorg/\">Alex King</a> Â· <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> Â· <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> Â· <a href=\"https://profiles.wordpress.org/alexandrebuffet/\">Alexandre Buffet</a> Â· <a href=\"https://profiles.wordpress.org/alishabajracharya27/\">Alisha Bajracharya</a> Â· <a href=\"https://profiles.wordpress.org/allisonplus/\">Allison Tarr</a> Â· <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> Â· <a href=\"https://profiles.wordpress.org/amedv/\">amedv</a> Â· <a href=\"https://profiles.wordpress.org/acirujano/\">Ana Cirujano</a> Â· <a href=\"https://profiles.wordpress.org/anandau14/\">Anand Upadhyay</a> Â· <a href=\"https://profiles.wordpress.org/anlino/\">Anders Nor&#233;n</a> Â· <a href=\"https://profiles.wordpress.org/oandregal/\">Andr&#233;</a> Â· <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> Â· <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> Â· <a href=\"https://profiles.wordpress.org/andrewhayward/\">Andrew Hayward</a> Â· <a href=\"https://profiles.wordpress.org/l1nuxjedi/\">Andrew Hutchings</a> Â· <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> Â· <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> Â· <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> Â· <a href=\"https://profiles.wordpress.org/eatingrules/\">Andrew Wilder</a> Â· <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> Â· <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> Â· <a href=\"https://profiles.wordpress.org/wpgurudev/\">Ankit Gade</a> Â· <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> Â· <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> Â· <a href=\"https://profiles.wordpress.org/annashopina/\">Anna</a> Â· <a href=\"https://profiles.wordpress.org/askdesign/\">Anne Katzeff</a> Â· <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> Â· <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne-Mieke Bovelett</a> Â· <a href=\"https://profiles.wordpress.org/anphira/\">anphira</a> Â· <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> Â· <a href=\"https://profiles.wordpress.org/aplauche/\">Anton Plauche</a> Â· <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a> Â· <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> Â· <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> Â· <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a> Â· <a href=\"https://profiles.wordpress.org/arena/\">arena</a> Â· <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> Â· <a href=\"https://profiles.wordpress.org/armondal/\">Arnab Mondal</a> Â· <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> Â· <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> Â· <a href=\"https://profiles.wordpress.org/asafm7/\">asafm7</a> Â· <a href=\"https://profiles.wordpress.org/aslamdoctor/\">Aslam Doctor</a> Â· <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a> Â· <a href=\"https://profiles.wordpress.org/austinginder/\">Austin Ginder</a> Â· <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> Â· <a href=\"https://profiles.wordpress.org/azharckra/\">azharckra</a> Â· <a href=\"https://profiles.wordpress.org/balub/\">Balu B</a> Â· <a href=\"https://profiles.wordpress.org/bangank36/\">bangank36</a> Â· <a href=\"https://profiles.wordpress.org/barbmiller/\">barbmiller</a> Â· <a href=\"https://profiles.wordpress.org/barry/\">Barry</a> Â· <a href=\"https://profiles.wordpress.org/bartkalisz/\">Bart</a> Â· <a href=\"https://profiles.wordpress.org/basiliskan/\">Basilis Kanonidis</a> Â· <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a> Â· <a href=\"https://profiles.wordpress.org/behoney/\">behoney</a> Â· <a href=\"https://profiles.wordpress.org/benharri/\">ben</a> Â· <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> Â· <a href=\"https://profiles.wordpress.org/bengreeley/\">Ben Greeley</a> Â· <a href=\"https://profiles.wordpress.org/ubernaut/\">Ben Hansen</a> Â· <a href=\"https://profiles.wordpress.org/bfintal/\">Benjamin Intal</a> Â· <a href=\"https://profiles.wordpress.org/benjamin_zekavica/\">Benjamin Zekavica</a> Â· <a href=\"https://profiles.wordpress.org/benjaminknox/\">benjaminknox</a> Â· <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a> Â· <a href=\"https://profiles.wordpress.org/bernhard reiter/\">Bernhard Reiter</a> Â· <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">bernhard-reiter</a> Â· <a href=\"https://profiles.wordpress.org/bhrugesh12/\">Bhrugesh Bavishi</a> Â· <a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a> Â· <a href=\"https://profiles.wordpress.org/binsaifullah/\">Binsaifullah</a> Â· <a href=\"https://profiles.wordpress.org/bplv/\">Biplav</a> Â· <a href=\"https://profiles.wordpress.org/dhamibirendra/\">Birendra Dhami</a> Â· <a href=\"https://profiles.wordpress.org/coachbirgit/\">Birgit Olzem</a> Â· <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> Â· <a href=\"https://profiles.wordpress.org/bradley2083/\">Block Themes Pro</a> Â· <a href=\"https://profiles.wordpress.org/bmalsht/\">bmalsht</a> Â· <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a> Â· <a href=\"https://profiles.wordpress.org/bookwyrm/\">bookwyrm</a> Â· <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> Â· <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a> Â· <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a> Â· <a href=\"https://profiles.wordpress.org/crazyjaco/\">Bradley Jacobs</a> Â· <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> Â· <a href=\"https://profiles.wordpress.org/bvreeman22/\">Brandon Vreeman</a> Â· <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> Â· <a href=\"https://profiles.wordpress.org/masteradhoc/\">Brian Haas</a> Â· <a href=\"https://profiles.wordpress.org/brookemk/\">Brooke</a> Â· <a href=\"https://profiles.wordpress.org/brookedot/\">Brooke.</a> Â· <a href=\"https://profiles.wordpress.org/trynet/\">Bud Kraus</a> Â· <a href=\"https://profiles.wordpress.org/icaleb/\">Caleb Burks</a> Â· <a href=\"https://profiles.wordpress.org/snicco/\">Calvin Alkan</a> Â· <a href=\"https://profiles.wordpress.org/karl94/\">Carlo Cannas</a> Â· <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> Â· <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos G. P.</a> Â· <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> Â· <a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a> Â· <a href=\"https://profiles.wordpress.org/ceer/\">ceer</a> Â· <a href=\"https://profiles.wordpress.org/cenkdemir/\">cenkdemir</a> Â· <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> Â· <a href=\"https://profiles.wordpress.org/chasedsiedu/\">chased@si.edu</a> Â· <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> Â· <a href=\"https://profiles.wordpress.org/chipbennett/\">Chip Bennett</a> Â· <a href=\"https://profiles.wordpress.org/cbringmann/\">ChloÃ© Bringmann</a> Â· <a href=\"https://profiles.wordpress.org/crunnells/\">Chris Runnells</a> Â· <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> Â· <a href=\"https://profiles.wordpress.org/chrisdesrochers/\">chrisdesrochers</a> Â· <a href=\"https://profiles.wordpress.org/codersantosh/\">codersantosh</a> Â· <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> Â· <a href=\"https://profiles.wordpress.org/coreyw/\">Corey Worrell</a> Â· <a href=\"https://profiles.wordpress.org/courtneypk/\">Courtney Patubo Kranzke</a> Â· <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> Â· <a href=\"https://profiles.wordpress.org/mitogh/\">Crisoforo Gaspar</a> Â· <a href=\"https://profiles.wordpress.org/crstauf/\">crstauf</a> Â· <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a> Â· <a href=\"https://profiles.wordpress.org/cu121/\">Cupid Chakma</a> Â· <a href=\"https://profiles.wordpress.org/didierjm/\">cybeardjm</a> Â· <a href=\"https://profiles.wordpress.org/cyberchicken/\">Cyberchicken</a> Â· <a href=\"https://profiles.wordpress.org/extendwings/\">Daisuke Takahashi</a> Â· <a href=\"https://profiles.wordpress.org/dajeema/\">Dajeema Rai</a> Â· <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a> Â· <a href=\"https://profiles.wordpress.org/damonsharp/\">Damon Sharp</a> Â· <a href=\"https://profiles.wordpress.org/dantovbein/\">Dan Tovbein</a> Â· <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> Â· <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> Â· <a href=\"https://profiles.wordpress.org/danieldudzic/\">danieldudzic</a> Â· <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> Â· <a href=\"https://profiles.wordpress.org/queerdevperson/\">Danielle Zarcaro</a> Â· <a href=\"https://profiles.wordpress.org/danieltj/\">danieltj</a> Â· <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> Â· <a href=\"https://profiles.wordpress.org/dkotter/\">Darin Kotter</a> Â· <a href=\"https://profiles.wordpress.org/darkfate/\">darkfate</a> Â· <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a> Â· <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> Â· <a href=\"https://profiles.wordpress.org/davelo/\">Dave Loodts</a> Â· <a href=\"https://profiles.wordpress.org/dave03/\">dave03</a> Â· <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> Â· <a href=\"https://profiles.wordpress.org/davidbinda/\">David BiÅˆovec</a> Â· <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> Â· <a href=\"https://profiles.wordpress.org/desmith/\">David E. Smith</a> Â· <a href=\"https://profiles.wordpress.org/dfavor/\">David Favor</a> Â· <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> Â· <a href=\"https://profiles.wordpress.org/dryanpress/\">David Ryan</a> Â· <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> Â· <a href=\"https://profiles.wordpress.org/dawidurbanski/\">Dawid Urbanski</a> Â· <a href=\"https://profiles.wordpress.org/daxelrod/\">daxelrod</a> Â· <a href=\"https://profiles.wordpress.org/arnedb/\">De Belser Arne</a> Â· <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> Â· <a href=\"https://profiles.wordpress.org/thewebprincess/\">Dee Teal</a> Â· <a href=\"https://profiles.wordpress.org/deepakvijayan/\">Deepak Vijayan</a> Â· <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Å½oljom</a> Â· <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> Â· <a href=\"https://profiles.wordpress.org/derekblank/\">Derek Blank</a> Â· <a href=\"https://profiles.wordpress.org/emrikol/\">Derrick Tennant</a> Â· <a href=\"https://profiles.wordpress.org/68kheart/\">Devan Ferguson</a> Â· <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a> Â· <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> Â· <a href=\"https://profiles.wordpress.org/dhruvishah2203/\">Dhruvi Shah</a> Â· <a href=\"https://profiles.wordpress.org/dianeco/\">Diane Co</a> Â· <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> Â· <a href=\"https://profiles.wordpress.org/dimitrism/\">Dimitris Mitsis</a> Â· <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> Â· <a href=\"https://profiles.wordpress.org/itsjustdj/\">DJ</a> Â· <a href=\"https://profiles.wordpress.org/djcowan/\">dj.cowan</a> Â· <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> Â· <a href=\"https://profiles.wordpress.org/doughamlin/\">doughamlin</a> Â· <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> Â· <a href=\"https://profiles.wordpress.org/elrae/\">Earle Davies</a> Â· <a href=\"https://profiles.wordpress.org/metalandcoffee/\">Ebonie Butler</a> Â· <a href=\"https://profiles.wordpress.org/ediamin/\">Edi Amin</a> Â· <a href=\"https://profiles.wordpress.org/cais/\">Edward Caissie</a> Â· <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a> Â· <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella vanÂ Durpe</a> Â· <a href=\"https://profiles.wordpress.org/elmastudio/\">Ellen Bauer</a> Â· <a href=\"https://profiles.wordpress.org/emailjoey/\">emailjoey</a> Â· <a href=\"https://profiles.wordpress.org/codex-m/\">Emerson Maningo</a> Â· <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a> Â· <a href=\"https://profiles.wordpress.org/emilyatmobtown/\">Emily Leffler Schulman</a> Â· <a href=\"https://profiles.wordpress.org/emirpprime/\">emirpprime</a> Â· <a href=\"https://profiles.wordpress.org/enodekciw/\">enodekciw</a> Â· <a href=\"https://profiles.wordpress.org/lopo/\">Enrico Battocchi</a> Â· <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> Â· <a href=\"https://profiles.wordpress.org/esratpopy/\">Esrat Sultana Popy</a> Â· <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a> Â· <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a> Â· <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a> Â· <a href=\"https://profiles.wordpress.org/fabiorubioglio/\">Fabio Rubioglio</a> Â· <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a> Â· <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> Â· <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> Â· <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a> Â· <a href=\"https://profiles.wordpress.org/floydwilde/\">floydwilde</a> Â· <a href=\"https://profiles.wordpress.org/foliovision/\">FolioVision</a> Â· <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> Â· <a href=\"https://profiles.wordpress.org/nexflaszlo/\">Frank Laszlo</a> Â· <a href=\"https://profiles.wordpress.org/battelfred/\">Fredde Battel</a> Â· <a href=\"https://profiles.wordpress.org/fzhantw/\">fzhantw</a> Â· <a href=\"https://profiles.wordpress.org/mintindeed/\">Gabriel Koen</a> Â· <a href=\"https://profiles.wordpress.org/pauthake015/\">Ganesh Dahal</a> Â· <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a> Â· <a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a> Â· <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> Â· <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> Â· <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a> Â· <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> Â· <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> Â· <a href=\"https://profiles.wordpress.org/mokagio/\">Gio Lodi</a> Â· <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> Â· <a href=\"https://profiles.wordpress.org/gnanasekaran/\">Gnanasekaran Loganathan</a> Â· <a href=\"https://profiles.wordpress.org/ingeniumed/\">Gopal Krishnan</a> Â· <a href=\"https://profiles.wordpress.org/90lines/\">GOZER</a> Â· <a href=\"https://profiles.wordpress.org/gpotter/\">gpotter</a> Â· <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> Â· <a href=\"https://profiles.wordpress.org/gregross/\">Greg Ross</a> Â· <a href=\"https://profiles.wordpress.org/gziolo/\">Greg ZiÃ³Å‚kowski</a> Â· <a href=\"https://profiles.wordpress.org/gregfuller/\">gregfuller</a> Â· <a href=\"https://profiles.wordpress.org/guss77/\">Guss77</a> Â· <a href=\"https://profiles.wordpress.org/bordoni/\">Gustavo Bordoni</a> Â· <a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a> Â· <a href=\"https://profiles.wordpress.org/priethor/\">H&#233;ctor Prieto</a> Â· <a href=\"https://profiles.wordpress.org/poran766/\">H.M. Mushfiqur Rahman</a> Â· <a href=\"https://profiles.wordpress.org/hanneslsm/\">hanneslsm</a> Â· <a href=\"https://profiles.wordpress.org/hztyfoon/\">Hanzala Taifun</a> Â· <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> Â· <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> Â· <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> Â· <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> Â· <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> Â· <a href=\"https://profiles.wordpress.org/tejwanihemant/\">Hemant Tejwani</a> Â· <a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a> Â· <a href=\"https://profiles.wordpress.org/hlunter/\">hlunter</a> Â· <a href=\"https://profiles.wordpress.org/howdy_mcgee/\">Howdy_McGee</a> Â· <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> Â· <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> Â· <a href=\"https://profiles.wordpress.org/incursadesigns/\">Incursa Designs</a> Â· <a href=\"https://profiles.wordpress.org/ironprogrammer/\">ironprogrammer</a> Â· <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> Â· <a href=\"https://profiles.wordpress.org/itecrs/\">itecrs</a> Â· <a href=\"https://profiles.wordpress.org/ivanzhuck/\">Ivan Zhuck</a> Â· <a href=\"https://profiles.wordpress.org/jaimieolmstead/\">jaimieolmstead</a> Â· <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> Â· <a href=\"https://profiles.wordpress.org/jakemgold/\">Jake Goldman</a> Â· <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a> Â· <a href=\"https://profiles.wordpress.org/bonkerz/\">James Hunt</a> Â· <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> Â· <a href=\"https://profiles.wordpress.org/james roberts/\">James Roberts</a> Â· <a href=\"https://profiles.wordpress.org/james0r/\">james0r</a> Â· <a href=\"https://profiles.wordpress.org/jamiemchale/\">Jamie McHale</a> Â· <a href=\"https://profiles.wordpress.org/perrelet/\">Jamie Perrelet</a> Â· <a href=\"https://profiles.wordpress.org/codente/\">Jamie VanRaalte</a> Â· <a href=\"https://profiles.wordpress.org/jane/\">jane</a> Â· <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> Â· <a href=\"https://profiles.wordpress.org/yari2u/\">Jari Vuorenmaa</a> Â· <a href=\"https://profiles.wordpress.org/ipajen/\">Jarko Piironen</a> Â· <a href=\"https://profiles.wordpress.org/jason_the_adams/\">Jason Adams</a> Â· <a href=\"https://profiles.wordpress.org/boogah/\">Jason Cosper</a> Â· <a href=\"https://profiles.wordpress.org/pbking/\">Jason Crist</a> Â· <a href=\"https://profiles.wordpress.org/jastos/\">jastos</a> Â· <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> Â· <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a> Â· <a href=\"https://profiles.wordpress.org/krokodok/\">Jeff Chi</a> Â· <a href=\"https://profiles.wordpress.org/jeffeverhart383/\">Jeff Everhart</a> Â· <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> Â· <a href=\"https://profiles.wordpress.org/jeffikus/\">jeffikus</a> Â· <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> Â· <a href=\"https://profiles.wordpress.org/jeflopodev/\">jeflopo</a> Â· <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> Â· <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a> Â· <a href=\"https://profiles.wordpress.org/jeremyyip/\">Jeremy Yip</a> Â· <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a> Â· <a href=\"https://profiles.wordpress.org/jesin/\">Jesin A</a> Â· <a href=\"https://profiles.wordpress.org/jessplease/\">Jessica Duarte</a> Â· <a href=\"https://profiles.wordpress.org/jessicagoddard/\">Jessica Goddard</a> Â· <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a> Â· <a href=\"https://profiles.wordpress.org/jick/\">Jick</a> Â· <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a> Â· <a href=\"https://profiles.wordpress.org/jivygraphics/\">jivygraphics</a> Â· <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> Â· <a href=\"https://profiles.wordpress.org/joehoyle/\">Joe Hoyle</a> Â· <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> Â· <a href=\"https://profiles.wordpress.org/joen/\">Joen A.</a> Â· <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> Â· <a href=\"https://profiles.wordpress.org/bitmachina/\">John Hooks</a> Â· <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> Â· <a href=\"https://profiles.wordpress.org/johnregan3/\">John Regan</a> Â· <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a> Â· <a href=\"https://profiles.wordpress.org/duck_/\">Jon Cave</a> Â· <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> Â· <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> Â· <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a> Â· <a href=\"https://profiles.wordpress.org/varjodesigns/\">Joona</a> Â· <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a> Â· <a href=\"https://profiles.wordpress.org/jordanpak/\">JordanPak</a> Â· <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> Â· <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> Â· <a href=\"https://profiles.wordpress.org/dunhakdis/\">Joseph G.</a> Â· <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> Â· <a href=\"https://profiles.wordpress.org/joshcanhelp/\">joshcanhelp</a> Â· <a href=\"https://profiles.wordpress.org/joshuatf/\">joshuatf</a> Â· <a href=\"https://profiles.wordpress.org/jrtashjian/\">JR Tashjian</a> Â· <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> Â· <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> Â· <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> Â· <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a> Â· <a href=\"https://profiles.wordpress.org/jyolsna/\">Jyolsna J E</a> Â· <a href=\"https://profiles.wordpress.org/ashikur698/\">K M Ashikur Rahman</a> Â· <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> Â· <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> Â· <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> Â· <a href=\"https://profiles.wordpress.org/kalmang/\">Kalmang</a> Â· <a href=\"https://profiles.wordpress.org/kalpeshh/\">Kalpesh</a> Â· <a href=\"https://profiles.wordpress.org/bosskhj/\">Kamrul Hasan</a> Â· <a href=\"https://profiles.wordpress.org/karlijnbk/\">Karlijn Bok</a> Â· <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> Â· <a href=\"https://profiles.wordpress.org/thekt12/\">Karthik Thayyil</a> Â· <a href=\"https://profiles.wordpress.org/1happyplace/\">Katie Ayres</a> Â· <a href=\"https://profiles.wordpress.org/kawsaralameven/\">kawsaralameven</a> Â· <a href=\"https://profiles.wordpress.org/kkoppenhaver/\">Keanan Koppenhaver</a> Â· <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> Â· <a href=\"https://profiles.wordpress.org/kevinfodness/\">Kevin Fodness</a> Â· <a href=\"https://profiles.wordpress.org/p51labs/\">Kevin Miller</a> Â· <a href=\"https://profiles.wordpress.org/ktaron/\">Kevin Taron</a> Â· <a href=\"https://profiles.wordpress.org/khleomix/\">khleomix</a> Â· <a href=\"https://profiles.wordpress.org/khokansardar/\">Khokan Sardar</a> Â· <a href=\"https://profiles.wordpress.org/kimannwall/\">Kim Coleman</a> Â· <a href=\"https://profiles.wordpress.org/kishanjasani/\">Kishan Jasani</a> Â· <a href=\"https://profiles.wordpress.org/kkmuffme/\">kkmuffme</a> Â· <a href=\"https://profiles.wordpress.org/olein/\">Koji Kuno</a> Â· <a href=\"https://profiles.wordpress.org/kovshenin/\">Konstantin Kovshenin</a> Â· <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a> Â· <a href=\"https://profiles.wordpress.org/kopila47/\">Kopila Shrestha</a> Â· <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> Â· <a href=\"https://profiles.wordpress.org/labunchemjong/\">Labun Chemjong</a> Â· <a href=\"https://profiles.wordpress.org/lancewillett/\">Lance Willett</a> Â· <a href=\"https://profiles.wordpress.org/lhe2012/\">LarryWEB</a> Â· <a href=\"https://profiles.wordpress.org/lastsplash/\">lastsplash (a11n)</a> Â· <a href=\"https://profiles.wordpress.org/laumindproductscomau/\">lau@mindproducts.com.au</a> Â· <a href=\"https://profiles.wordpress.org/launchinteractive/\">launchinteractive</a> Â· <a href=\"https://profiles.wordpress.org/lada7042/\">Laura Adamonis</a> Â· <a href=\"https://profiles.wordpress.org/newyorkerlaura/\">Laura Byrne</a> Â· <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> Â· <a href=\"https://profiles.wordpress.org/oncecoupled/\">Lauren</a> Â· <a href=\"https://profiles.wordpress.org/luckybhumkar/\">Laxmikant Bhumkar</a> Â· <a href=\"https://profiles.wordpress.org/leewillis77/\">Lee Willis</a> Â· <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> Â· <a href=\"https://profiles.wordpress.org/lgladdy/\">Liam Gladdy</a> Â· <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> Â· <a href=\"https://profiles.wordpress.org/linsoftware/\">Linnea Huxford</a> Â· <a href=\"https://profiles.wordpress.org/lloydbudd/\">Lloyd Budd</a> Â· <a href=\"https://profiles.wordpress.org/thelovekesh/\">Lovekesh Kumar</a> Â· <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi</a> Â· <a href=\"https://profiles.wordpress.org/zaguiini/\">Luis Felipe Zaguini</a> Â· <a href=\"https://profiles.wordpress.org/luisherranz/\">Luis Herranz</a> Â· <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> Â· <a href=\"https://profiles.wordpress.org/lunaluna/\">lunaluna</a> Â· <a href=\"https://profiles.wordpress.org/lyndauwp/\">lyndauwp</a> Â· <a href=\"https://profiles.wordpress.org/pagelab/\">M&#225;rcio Duarte</a> Â· <a href=\"https://profiles.wordpress.org/maciejmackowiak/\">maciejmackowiak</a> Â· <a href=\"https://profiles.wordpress.org/madejackson/\">madejackson</a> Â· <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> Â· <a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a> Â· <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> Â· <a href=\"https://profiles.wordpress.org/mhimon/\">Mahbub Hasan Imon</a> Â· <a href=\"https://profiles.wordpress.org/maahrokh/\">Mahrokh</a> Â· <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> Â· <a href=\"https://profiles.wordpress.org/travel_girl/\">Maja Benke</a> Â· <a href=\"https://profiles.wordpress.org/maltfield/\">maltfield</a> Â· <a href=\"https://profiles.wordpress.org/maneshtimilsina/\">Manesh Timilsina</a> Â· <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> Â· <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a> Â· <a href=\"https://profiles.wordpress.org/marcelle42/\">marcelle42</a> Â· <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> Â· <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> Â· <a href=\"https://profiles.wordpress.org/pereirinha/\">Marco Pereirinha</a> Â· <a href=\"https://profiles.wordpress.org/marcoevich/\">Marcoevich</a> Â· <a href=\"https://profiles.wordpress.org/margolisj/\">margolisj</a> Â· <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> Â· <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> Â· <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> Â· <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> Â· <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> Â· <a href=\"https://profiles.wordpress.org/martatorre/\">Marta Torre</a> Â· <a href=\"https://profiles.wordpress.org/mhkuu/\">Martijn van der Klis</a> Â· <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> Â· <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> Â· <a href=\"https://profiles.wordpress.org/masoudnkh/\">Masoud NKH</a> Â· <a href=\"https://profiles.wordpress.org/mathsgrinds/\">mathsgrinds</a> Â· <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> Â· <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> Â· <a href=\"https://profiles.wordpress.org/mattkeys/\">Matt Keys</a> Â· <a href=\"https://profiles.wordpress.org/mwtsn/\">Matt Watson</a> Â· <a href=\"https://profiles.wordpress.org/mklute101/\">Matthaus Klute</a> Â· <a href=\"https://profiles.wordpress.org/mattheweppelsheimer/\">Matthew Eppelsheimer</a> Â· <a href=\"https://profiles.wordpress.org/matthewfarlymn/\">Matthew Farlymn</a> Â· <a href=\"https://profiles.wordpress.org/mattheu/\">Matthew Haines-Young</a> Â· <a href=\"https://profiles.wordpress.org/matthewjho/\">matthewjho</a> Â· <a href=\"https://profiles.wordpress.org/maurodf/\">maurodf</a> Â· <a href=\"https://profiles.wordpress.org/maxinacube/\">Maxwell Morgan</a> Â· <a href=\"https://profiles.wordpress.org/maysi/\">maysi</a> Â· <a href=\"https://profiles.wordpress.org/hrshahin/\">Md HR Shahin</a> Â· <a href=\"https://profiles.wordpress.org/meaganhanes/\">meagan hanes</a> Â· <a href=\"https://profiles.wordpress.org/iammehedi1/\">Mehedi Hassan</a> Â· <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> Â· <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> Â· <a href=\"https://profiles.wordpress.org/mer00x/\">mer00x</a> Â· <a href=\"https://profiles.wordpress.org/merel1988/\">merel1988</a> Â· <a href=\"https://profiles.wordpress.org/michael-arestad/\">Michael Arestad</a> Â· <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> Â· <a href=\"https://profiles.wordpress.org/mshowes/\">Michael Showes</a> Â· <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> Â· <a href=\"https://profiles.wordpress.org/michalooki/\">Michalooki</a> Â· <a href=\"https://profiles.wordpress.org/michelleblanchette/\">Michelle Blanchette</a> Â· <a href=\"https://profiles.wordpress.org/michelleames/\">Michelle Frechette</a> Â· <a href=\"https://profiles.wordpress.org/michi91/\">Michi91</a> Â· <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> Â· <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a> Â· <a href=\"https://profiles.wordpress.org/mikejolley/\">Mike Jolley (a11n)</a> Â· <a href=\"https://profiles.wordpress.org/mmcalister/\">Mike McAlister</a> Â· <a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel</a> Â· <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> Â· <a href=\"https://profiles.wordpress.org/mikestraw/\">Mike Straw</a> Â· <a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a> Â· <a href=\"https://profiles.wordpress.org/gonzomir/\">Milen Petrinski - Gonzo</a> Â· <a href=\"https://profiles.wordpress.org/mimitips/\">mimi</a> Â· <a href=\"https://profiles.wordpress.org/mitchellaustin/\">mitchellaustin</a> Â· <a href=\"https://profiles.wordpress.org/mhshujon/\">Monir</a> Â· <a href=\"https://profiles.wordpress.org/mrinal013/\">Mrinal Haque</a> Â· <a href=\"https://profiles.wordpress.org/mrwweb/\">mrwweb</a> Â· <a href=\"https://profiles.wordpress.org/wparslan/\">Muhammad Arslan</a> Â· <a href=\"https://profiles.wordpress.org/devmuhib/\">Muhibul Haque</a> Â· <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> Â· <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> Â· <a href=\"https://profiles.wordpress.org/faguni22/\">Mumtahina Faguni</a> Â· <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a> Â· <a href=\"https://profiles.wordpress.org/webdev8800/\">Myles Taylor</a> Â· <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a> Â· <a href=\"https://profiles.wordpress.org/nandhuraj/\">nandhuraj</a> Â· <a href=\"https://profiles.wordpress.org/nazgul/\">Nazgul</a> Â· <a href=\"https://profiles.wordpress.org/nazsabuz/\">Nazmul Sabuz</a> Â· <a href=\"https://profiles.wordpress.org/neilorangepeel/\">Neil Hainsworth</a> Â· <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> Â· <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> Â· <a href=\"https://profiles.wordpress.org/rahe/\">Nicolas Juen</a> Â· <a href=\"https://profiles.wordpress.org/nicolefurlan/\">Nicole Furlan</a> Â· <a href=\"https://profiles.wordpress.org/nicomollet/\">nicomollet</a> Â· <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> Â· <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a> Â· <a href=\"https://profiles.wordpress.org/nihar007/\">Nihar Ranjan Das</a> Â· <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> Â· <a href=\"https://profiles.wordpress.org/rabmalin/\">Nilambar Sharma</a> Â· <a href=\"https://profiles.wordpress.org/nilovelez/\">Nilo Velez</a> Â· <a href=\"https://profiles.wordpress.org/niravsherasiya7707/\">niravsherasiya7707</a> Â· <a href=\"https://profiles.wordpress.org/dasnitesh780/\">Nitesh Das</a> Â· <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> Â· <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> Â· <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> Â· <a href=\"https://profiles.wordpress.org/ngreennc/\">Nyasha</a> Â· <a href=\"https://profiles.wordpress.org/ockham/\">ockham</a> Â· <a href=\"https://profiles.wordpress.org/ohia/\">Ohia</a> Â· <a href=\"https://profiles.wordpress.org/okat/\">okat</a> Â· <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> Â· <a href=\"https://profiles.wordpress.org/domainsupport/\">Oliver Campion</a> Â· <a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a> Â· <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> Â· <a href=\"https://profiles.wordpress.org/pannelars/\">pannelars</a> Â· <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> Â· <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> Â· <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> Â· <a href=\"https://profiles.wordpress.org/pavelevap/\">pavelevap</a> Â· <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> Â· <a href=\"https://profiles.wordpress.org/pentatonicfunk/\">pentatonicfunk</a> Â· <a href=\"https://profiles.wordpress.org/gungeekatx/\">Pete Nelson</a> Â· <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> Â· <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a> Â· <a href=\"https://profiles.wordpress.org/petrosparaskevopoulos/\">petrosparaskevopoulos</a> Â· <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walb&#248; Johnsg&#229;rd</a> Â· <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> Â· <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> Â· <a href=\"https://profiles.wordpress.org/piyushdeshmukh/\">piyushdeshmukh</a> Â· <a href=\"https://profiles.wordpress.org/plugindevs/\">Plugin Devs</a> Â· <a href=\"https://profiles.wordpress.org/poojabhimani/\">Pooja Bhimani</a> Â· <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a> Â· <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> Â· <a href=\"https://profiles.wordpress.org/pranavjoshi/\">pranavjoshi</a> Â· <a href=\"https://profiles.wordpress.org/prashantbhivsane/\">Prashant</a> Â· <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> Â· <a href=\"https://profiles.wordpress.org/rlmc/\">r-c</a> Â· <a href=\"https://profiles.wordpress.org/rajinsharwar/\">Rajin Sharwar</a> Â· <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> Â· <a href=\"https://profiles.wordpress.org/rcorrales/\">Ramon Corrales</a> Â· <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> Â· <a href=\"https://profiles.wordpress.org/rebekowitz/\">Rebekah Markowitz</a> Â· <a href=\"https://profiles.wordpress.org/tabrisrp/\">Remy Perona</a> Â· <a href=\"https://profiles.wordpress.org/renyot/\">ren</a> Â· <a href=\"https://profiles.wordpress.org/renathoc/\">Renatho (a11n)</a> Â· <a href=\"https://profiles.wordpress.org/renehermi/\">Rene Hermenau</a> Â· <a href=\"https://profiles.wordpress.org/rmartinezduque/\">Reyes MartÃ­nez</a> Â· <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> Â· <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a> Â· <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> Â· <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> Â· <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O\'Rourke</a> Â· <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a> Â· <a href=\"https://profiles.wordpress.org/robpetrin/\">robpetrin</a> Â· <a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a> Â· <a href=\"https://profiles.wordpress.org/ryanduff/\">Ryan Duff</a> Â· <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> Â· <a href=\"https://profiles.wordpress.org/ohryan/\">Ryan Neudorf</a> Â· <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> Â· <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">S&#233;rgio Gomes</a> Â· <a href=\"https://profiles.wordpress.org/mi5t4n/\">Sagar Tamang</a> Â· <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> Â· <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> Â· <a href=\"https://profiles.wordpress.org/salcode/\">Sal Ferrarello</a> Â· <a href=\"https://profiles.wordpress.org/samba45/\">samba45</a> Â· <a href=\"https://profiles.wordpress.org/karmacharya50/\">Samir Karmacharya</a> Â· <a href=\"https://profiles.wordpress.org/viralsampat/\">Sampat Viral</a> Â· <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> Â· <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> Â· <a href=\"https://profiles.wordpress.org/sarahwilliams889/\">Sarah Williams</a> Â· <a href=\"https://profiles.wordpress.org/sarathar/\">Sarath AR</a> Â· <a href=\"https://profiles.wordpress.org/satishprajapati/\">Satish Prajapati</a> Â· <a href=\"https://profiles.wordpress.org/saulirajala/\">saulirajala</a> Â· <a href=\"https://profiles.wordpress.org/saxonfletcher/\">saxonfletcher</a> Â· <a href=\"https://profiles.wordpress.org/sc0ttkclark/\">Scott Kingsley Clark</a> Â· <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a> Â· <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> Â· <a href=\"https://profiles.wordpress.org/hiyascout/\">Scout James</a> Â· <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> Â· <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> Â· <a href=\"https://profiles.wordpress.org/seedsca/\">Sergio Scabuzzo</a> Â· <a href=\"https://profiles.wordpress.org/smrubenstein/\">Seth Rubenstein</a> Â· <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> Â· <a href=\"https://profiles.wordpress.org/shawfactor/\">shawfactor</a> Â· <a href=\"https://profiles.wordpress.org/shooper/\">Shawn Hooper</a> Â· <a href=\"https://profiles.wordpress.org/shiloey/\">shilo-ey</a> Â· <a href=\"https://profiles.wordpress.org/shivashankerbhatta/\">Shiva Shanker Bhatta</a> Â· <a href=\"https://profiles.wordpress.org/shresthaaman/\">shresthaaman</a> Â· <a href=\"https://profiles.wordpress.org/shubhamsedani/\">Shubham Sedani</a> Â· <a href=\"https://profiles.wordpress.org/10upsimon/\">Simon Dowdles</a> Â· <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> Â· <a href=\"https://profiles.wordpress.org/siobhyb/\">Siobhan Bamber</a> Â· <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a> Â· <a href=\"https://profiles.wordpress.org/sofiashendi/\">sofiashendi</a> Â· <a href=\"https://profiles.wordpress.org/nudge/\">Sonia Gaballa</a> Â· <a href=\"https://profiles.wordpress.org/soean/\">Soren Wrede</a> Â· <a href=\"https://profiles.wordpress.org/virtality-marketing-solutions/\">SourceView</a> Â· <a href=\"https://profiles.wordpress.org/spenserhale/\">Spenser Hale</a> Â· <a href=\"https://profiles.wordpress.org/pypwalters/\">Stephanie Walters</a> Â· <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> Â· <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a> Â· <a href=\"https://profiles.wordpress.org/stephenerdelyi/\">Steve Erdelyi</a> Â· <a href=\"https://profiles.wordpress.org/stevejonesdev/\">Steve Jones</a> Â· <a href=\"https://profiles.wordpress.org/subodhsun/\">Subodh Sunuwar</a> Â· <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> Â· <a href=\"https://profiles.wordpress.org/sujichandran14/\">Suji K Chandran</a> Â· <a href=\"https://profiles.wordpress.org/sumisubedi/\">Sumi Subedi</a> Â· <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> Â· <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> Â· <a href=\"https://profiles.wordpress.org/sunitarai/\">Sunita Rai</a> Â· <a href=\"https://profiles.wordpress.org/suprsam/\">suprsam</a> Â· <a href=\"https://profiles.wordpress.org/syamraj24/\">syamraj24</a> Â· <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> Â· <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> Â· <a href=\"https://profiles.wordpress.org/sereedmedia/\">SÃ© Reed</a> Â· <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> Â· <a href=\"https://profiles.wordpress.org/tahmidulkarim/\">Tahmid ul Karim</a> Â· <a href=\"https://profiles.wordpress.org/tahmina1du/\">Tahmina Jahan</a> Â· <a href=\"https://profiles.wordpress.org/takayukister/\">Takayuki Miyoshi</a> Â· <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> Â· <a href=\"https://profiles.wordpress.org/tanvirul/\">Tanvirul Haque</a> Â· <a href=\"https://profiles.wordpress.org/tykoted/\">Teddy Patriarca</a> Â· <a href=\"https://profiles.wordpress.org/tejadev/\">tejadev</a> Â· <a href=\"https://profiles.wordpress.org/thelovelist/\">thelovelist</a> Â· <a href=\"https://profiles.wordpress.org/thinkluke/\">thinkluke</a> Â· <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a> Â· <a href=\"https://profiles.wordpress.org/tibbsa/\">tibbsa</a> Â· <a href=\"https://profiles.wordpress.org/baxbridge/\">Tiffany Bridge</a> Â· <a href=\"https://profiles.wordpress.org/tnolte/\">Tim Nolte</a> Â· <a href=\"https://profiles.wordpress.org/timdix/\">timdix</a> Â· <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> Â· <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a> Â· <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> Â· <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> Â· <a href=\"https://profiles.wordpress.org/tomybyte/\">Tom</a> Â· <a href=\"https://profiles.wordpress.org/tomjcafferkey/\">Tom Cafferkey</a> Â· <a href=\"https://profiles.wordpress.org/thomashorta/\">Tom H</a> Â· <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> Â· <a href=\"https://profiles.wordpress.org/tomluckies/\">tomluckies</a> Â· <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> Â· <a href=\"https://profiles.wordpress.org/tomsommer/\">tomsommer</a> Â· <a href=\"https://profiles.wordpress.org/starbuck/\">Tony G</a> Â· <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> Â· <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> Â· <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> Â· <a href=\"https://profiles.wordpress.org/toscho/\">toscho</a> Â· <a href=\"https://profiles.wordpress.org/rilwis/\">Tran Ngoc Tuan Anh</a> Â· <a href=\"https://profiles.wordpress.org/trinisha/\">Trinisha</a> Â· <a href=\"https://profiles.wordpress.org/trishasalas/\">Trisha Salas</a> Â· <a href=\"https://profiles.wordpress.org/tristanleboss/\">tristanleboss</a> Â· <a href=\"https://profiles.wordpress.org/tv-productions/\">TV productions</a> Â· <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> Â· <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a> Â· <a href=\"https://profiles.wordpress.org/benimub/\">Umesh Balayar</a> Â· <a href=\"https://profiles.wordpress.org/upadalavipul/\">Upadala Vipul</a> Â· <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a> Â· <a href=\"https://profiles.wordpress.org/valentindu62/\">valentindu62</a> Â· <a href=\"https://profiles.wordpress.org/valmedia2023/\">Valerie Blackburn</a> Â· <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a> Â· <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> Â· <a href=\"https://profiles.wordpress.org/vipuljnext/\">Vipul Ghori</a> Â· <a href=\"https://profiles.wordpress.org/vivekawsm/\">vivekawsm</a> Â· <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a> Â· <a href=\"https://profiles.wordpress.org/vrajadas/\">Vraja Das</a> Â· <a href=\"https://profiles.wordpress.org/webashrafians/\">webashrafians</a> Â· <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design &#124; Oliver Juhas</a> Â· <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> Â· <a href=\"https://profiles.wordpress.org/whsajid/\">WHSajid</a> Â· <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> Â· <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a> Â· <a href=\"https://profiles.wordpress.org/wvega/\">Willington Vega</a> Â· <a href=\"https://profiles.wordpress.org/planningwrite/\">Winstina</a> Â· <a href=\"https://profiles.wordpress.org/winterstreet/\">winterstreet</a> Â· <a href=\"https://profiles.wordpress.org/wraithkenny/\">WraithKenny</a> Â· <a href=\"https://profiles.wordpress.org/wyrfel/\">wyrfel</a> Â· <a href=\"https://profiles.wordpress.org/yosephtamang/\">Yoseph Tamang</a> Â· <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> Â· <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a> Â· <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a> Â· <a href=\"https://profiles.wordpress.org/letraceursnork/\">Ð˜Ð»ÑŒÑ</a></p>\n\n\n\n<p>Over <a href=\"https://translate.wordpress.org/stats/\">60 locales have translated 90 percent</a> or more of WordPress 6.4 into their language. Community translators are working hard to ensure more translations are on their way. Thank you to everyone who helps make WordPress available in 200 languages.</p>\n\n\n\n<p>Last but not least, thanks to the volunteers who contribute to the <a href=\"https://wordpress.org/support/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved</h3>\n\n\n\n<p>Participation in WordPress is not limited to coding. If contributing appeals to you, learning more and getting involved is easy. Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a>, and use <a href=\"https://make.wordpress.org/contribute/\">this interactive tool</a> to help you decide which is right for you.</p>\n\n\n\n<div style=\"height:2px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Looking ahead</h2>\n\n\n\n<p>Over the past <a href=\"https://wp20.wordpress.net/\">two decades</a>, WordPress has transformed the digital publishing landscape and empowered anyone to create and share, from <a href=\"https://wordpress.org/showcase/\">handcrafted personal stories to world-changing movements</a>.</p>\n\n\n\n<p>The present and future of WordPress hold exciting opportunities for everyone, builders and enterprises alike. The foundational work for <a href=\"https://make.wordpress.org/core/tag/phase-3/\">Phase 3</a> of the <a href=\"https://wordpress.org/about/roadmap/\">roadmap</a> continues, with efforts focused on fostering real-time collaboration and streamlining publishing flows to improve how creators and teams work together in WordPress.</p>\n\n\n\n<p>Stay on top of the latest news and contributing opportunities by subscribing to <a href=\"https://wordpress.org/news/\">WordPress News</a> and the <a href=\"https://wordpress.org/news/podcast/\">WP Briefing podcast</a>.</p>\n\n\n\n<div style=\"height:2px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">A release haiku</h2>\n\n\n\n<p>The smooth feel of jazz<br>The cutting-edge of the web<br>Install 6.4</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16299\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.4 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/11/wordpress-6-4-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Nov 2023 19:21:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16247\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:163:\"WordPress 6.4 RC3 is ready for download and testing. Reaching this phase of the release cycle is an important milestone. Check out what\'s new and how you can help.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Reyes MartÃ­nez\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8230:\"\n<p>The third release candidate (RC3) for WordPress 6.4 is ready to download!</p>\n\n\n\n<p><strong>This version of the WordPress software is under development</strong>. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, itâ€™s recommended that you evaluate RC3 on a test server and site.</p>\n\n\n\n<p>WordPress 6.4 is <a href=\"https://make.wordpress.org/core/6-4/\">slated for release</a> on <strong>November 7, 2023</strong>â€”less than a week away. If you havenâ€™t tried it, now is the time.</p>\n\n\n\n<p>You can test WordPress 6.4 RC3 in three ways:</p>\n\n\n\n<ol>\n<li><strong>Plugin</strong>: Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a WordPress install (select the â€œBleeding edgeâ€ channel and â€œBeta/RC Onlyâ€ stream).</li>\n\n\n\n<li><strong>Direct download</strong>: Download the <a href=\"https://wordpress.org/wordpress-6.4-RC3.zip\">RC3 version (zip)</a> and install it on a WordPress site.</li>\n\n\n\n<li><strong>Command line</strong>: Use the following <a href=\"https://make.wordpress.org/cli/\">WP-CLI</a> command:<br><code>wp core update --version=6.4-RC3</code></li>\n</ol>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/10/wordpress-6-4-release-candidate-1/\">Read the RC1 announcement</a> for featured highlights, and check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-4/\">6.4-related posts</a>. If you are looking for detailed technical notes on new features and improvements, the <a href=\"https://make.wordpress.org/core/2023/10/23/wordpress-6-4-field-guide/\"><strong>WordPress 6.4 Field Guide</strong></a> is for you.</p>\n\n\n\n<p>The WordPress 6.4 release is brought to you by an <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">underrepresented gender release squad</a> to welcome the participation and partnership of those who identify as gender-underrepresented in the WordPress open source project.</p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Whatâ€™s in WordPress 6.4 RC3?</h2>\n\n\n\n<p>Thanks to everyone who has tested the beta and RC releases. Since RC2 was released on October 24, there have been more than 25 issues resolved. You can browse the technical details for all recent updates using these links:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.4\">GitHub commits for 6.4</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;changetime=10%2F25%2F2023..11%2F01%2F2023&amp;milestone=6.4&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Closed Trac tickets since RC2</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/twentytwentyfour/commits/\">GitHub commits for Twenty Twenty-Four</a></li>\n</ul>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">PHP compatibility update</h2>\n\n\n\n<p>Itâ€™s recommended to use PHP 8.1 or 8.2 with the upcoming 6.4 release. Refer to <a href=\"https://wordpress.org/news/2023/10/wordpress-6-4s-php-compatibility/\">WordPress 6.4&#8217;s PHP compatibility post</a> for more details.</p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Contributing to 6.4</h2>\n\n\n\n<p>WordPress is open source software made possible by a community of people collaborating on and contributing to its development. The resources below outline various ways you can help, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Your feedback and help in testing are vital to developing the WordPress software and ensuring its quality. Itâ€™s also a meaningful way for anyone to contribute. <a href=\"https://make.wordpress.org/test/2023/09/26/help-test-wordpress-6-4/\">Check out this guide</a> for instructions on testing WordPress 6.4 features.</p>\n\n\n\n<p>The core Query block requires more <a href=\"https://make.wordpress.org/test/2023/09/26/help-test-wordpress-6-4/#query-loop-block-pagination-enhancements\">testing and feedback</a> to ensure the latest changes to prevent full page reloads work smoothly. Please note that this setting was called &#8220;Enhanced pagination&#8221; but has recently been renamed, and it&#8217;s now referred to as &#8220;Force page reload&#8221; instead.</p>\n\n\n\n<p>If you encounter an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> of the support forums or directly to <a href=\"https://core.trac.wordpress.org/newticket\">WordPress Trac</a> if you are comfortable writing a reproducible bug report. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Curious about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>During the release candidate phase of WordPress 6.4, the <a href=\"https://make.wordpress.org/security/2023/09/26/bug-bounty-for-wordpress-6-4-beta/\">monetary reward for reporting new, unreleased security vulnerabilities</a> is doubled. Please follow responsible disclosure practices as detailed in the projectâ€™s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>Do you build themes and plugins? Your products play an integral role in extending the functionality and value of WordPress for users worldwide.</p>\n\n\n\n<p>Hopefully, you have already tested your themes and plugins with WordPress 6.4 betas. With RC3, you will want to continue your testing and update the <em>&#8220;Tested up to&#8221;</em> version in your <a href=\"https://developer.wordpress.org/plugins/wordpress-org/how-your-readme-txt-works/\">plugin&#8217;s readme file</a> to 6.4.</p>\n\n\n\n<p>Please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> if you find compatibility issues.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Documentation</h3>\n\n\n\n<p>Help the Docs team put the finishing touches on end-user documentation in time for the 6.4 release. Find out whatâ€™s needed and how you can help <a href=\"https://make.wordpress.org/docs/2023/10/25/call-for-volunteers-to-help-with-6-4-end-user-documentation/\">in this post</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? Â¿EspaÃ±ol? FranÃ§ais? PortuguÃªs? Ð ÑƒÑÑÐºÐ¸Ð¹? æ—¥æœ¬? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages</a>.</p>\n\n\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">A RC3 haiku</h2>\n\n\n\n<p>One more week of prep<br>One more week to test the code<br>One more week til launch</p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post: <a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>, <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/sereedmedia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sereedmedia</a>, <a href=\'https://profiles.wordpress.org/jorbin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jorbin</a>, <a href=\'https://profiles.wordpress.org/luisherranz/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>luisherranz</a>, <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16247\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WP Briefing: Episode 65: Little Sun Success\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wordpress.org/news/2023/10/episode-65-little-sun-success/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 30 Oct 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16227\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:340:\"Join WordPress Executive Director, Josepha Haden Chomphosy, as she looks at a recent WordPress success story with Little Sun. To help us, we spoke to two special guests with Little Sun, Romane GuÃ©gan, Senior Press and Communications Manager, and Ashley Mrozek, Senior Digital Manager. Donâ€™t miss this opportunity for an insiderâ€™s look!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:51:\"https://wordpress.org/news/files/2023/10/WPB065.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:21512:\"\n<p>Join WordPress Executive Director Josepha Haden Chomphosy as she looks at a recent WordPress success story, the clean energy solution Little Sun, and learns about their WordPress story.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host:&nbsp;<a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Special Guest: Romane GuÃ©gan<br>Special Guest: Ashley Mrozek <br>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li>Website: <a href=\"https://littlesun.org/\">Little Sun</a></li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/10/state-of-the-word-2023/\" target=\"_blank\" rel=\"noreferrer noopener\">State of the Word</a>Â &#8211; This year&#8217;s annual keynote, State of the Word, will be on December 11. Save the date to hear the WordPress project&#8217;s co-founder,Â <a href=\"https://ma.tt/\" target=\"_blank\" rel=\"noreferrer noopener\">Matt Mullenweg</a>, share reflections on the project&#8217;s progress and aspirations for the future of open source.</li>\n\n\n\n<li>Celebrating 10,000 Photos in the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a> &#8211; On October 11, the 10,000th photo was approved!Â <a href=\"https://make.wordpress.org/photos/\" target=\"_blank\" rel=\"noreferrer noopener\">The Photo Team</a>Â is one of the newest ways to contribute to the WordPress open source project. </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/10/18/community-team-training-11-using-the-translate-live-tool/\" target=\"_blank\" rel=\"noreferrer noopener\">Community Team Training #11: Using the Translate Live tool</a>&nbsp;&#8211; Uncover the potential of the &#8220;Translate Live&#8221; tool, which is ideal for presenting at local meetups to engage and onboard new translators for your native language. If you&#8217;re organizing a WordCamp, consider introducing this tool during your Contributor Day.</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/10/a-new-wordpress-showcase/\" target=\"_blank\" rel=\"noreferrer noopener\">A New WordPress Showcase</a>&nbsp;&#8211; The&nbsp;journey to update&nbsp;<a href=\"https://wordpress.org/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress.org</a>&nbsp;continues with the launch of a new&nbsp;<a href=\"https://wordpress.org/showcase/\" target=\"_blank\" rel=\"noreferrer noopener\">Showcase</a>&nbsp;design. The Showcase is a natural starting point for visitors arriving on&nbsp;WordPress.org, and it both inspires creativity and demonstrates what&#8217;s possible with WordPress.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-16227\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello everyone, and welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28] (Intro music)&nbsp;</p>\n\n\n\n<p>[00:00:40] <strong>Josepha:</strong> Today, I&#8217;ve got a special guest with me. I have here a couple of folks from Little Sun, a nonprofit organization that recently moved its entire online presence to WordPress. And we&#8217;re talking everything from their mission statement and donations all the way to their blog and shop.</p>\n\n\n\n<p>Welcome both to the WordPress Briefing.&nbsp;</p>\n\n\n\n<p>[00:00:59] <strong>Ashley:</strong> Thank you.</p>\n\n\n\n<p>[00:01:00] <strong>Romane:</strong> Thank you.&nbsp;</p>\n\n\n\n<p>[00:01:01] <strong>Josepha:</strong> We have with us Little Sun today. Can you start by introducing yourselves and your organization? Just tell us a little bit about what you all do.&nbsp;</p>\n\n\n\n<p>[00:01:08] <strong>Romane:</strong> Hi, my name is Romane GuÃ©gan. I&#8217;m a Senior Press and Communications Manager at Little Sun.&nbsp;</p>\n\n\n\n<p>[00:01:14] <strong>Ashley:</strong> And I am Ashley Mrozek. I&#8217;m the Senior Digital Manager.&nbsp;</p>\n\n\n\n<p>[00:01:17] <strong>Josepha:</strong> So what does Little Sun do for the folks who are listening and maybe don&#8217;t know about it yet?&nbsp;</p>\n\n\n\n<p>[00:01:22] <strong>Romane:</strong> Little Sun brings full power and light to communities that live off the grid, with the focus on sub-Saharan Africa because most of the people who lack access to electricity and need them. And we also inspire people to take climate action globally.&nbsp;</p>\n\n\n\n<p>[00:01:39] <strong>Ashley:</strong> So access to solar energy helps kids who don&#8217;t have electricity and study at night. They can complete their homework at night. If their schools are in a more rural area, they will have a light to kind of guide them back home.</p>\n\n\n\n<p>We also work on a lot of electric vocation projects and hospitals. So we&#8217;re, we&#8217;re kind of supporting labors that are, are taking place in the evening, after the sun goes down, among other things.&nbsp;</p>\n\n\n\n<p>[00:02:07] <strong>Josepha:</strong> Yeah. It&#8217;s, I, I think that that is one of the things that folks, probably most of my listeners, probably take for granted, like the easy access to light. And as we all know, the sun is around a lot. And so that is one of our most readily available resources other than potentially wind power. But I think that that is a great mission. And I really think that that&#8217;s wonderful work that y&#8217;all are doing.</p>\n\n\n\n<p>So, is there a particular reason that you focus on sub-Saharan Africa? Is that where you find a majority of people who don&#8217;t have access to that kind of resource are?&nbsp;</p>\n\n\n\n<p>[00:02:43] <strong>Romane:</strong> Yeah. 70% of those people actually need in sub-Saharan Africa, where solar is actually a viable source of energy. Actually, it&#8217;s only 1% of solar, of the solar capital of the generation when we actually deliver solar energy there because there is so much potential.</p>\n\n\n\n<p>[00:03:04] <strong>Josepha:</strong> That&#8217;s amazing. So you said that you all were funded in 2012. I imagine that your business has evolved over time. So, obviously, you all are WordPress users. That&#8217;s why we have you here with us today. But before we get into the questions about WordPress itself. Why don&#8217;t you tell us a bit about how your business needs evolved over time and how you wound up needing a solution that did use WordPress?</p>\n\n\n\n<p>[00:03:31] <strong>Ashley:</strong> So I would say our focus and kind of the different initiatives that we&#8217;ve taken on since 2012 have shifted a lot based on various reasons, where our donors are, where we&#8217;ve kind of found the most need, and where we can be the most impactful.</p>\n\n\n\n<p>And I think as we go into those new geographies, our online presence has become more and more important.&nbsp;</p>\n\n\n\n<p>[00:03:55] <strong>Josepha:</strong> So, before you all switched to WordPress, I understand that you had several sites that you had to merge into one. And so I assume that as you evolved the business and your focus has changed, you realized you needed something a bit more streamlined. So, how was that transition, that migration from a lot of different sites to one big site?&nbsp;</p>\n\n\n\n<p>[00:04:17] <strong>Romane:</strong> Yeah, because we started as a global project. And then, with the time, we evolved, actually also getting new donations. And in the past, we used to have one website where we have our webshop and our mission, our vision, all of our project descriptions.</p>\n\n\n\n<p>But then we had another website only for the foundation. And then you had another foundation in the U.S. So it was the question, okay, how do we put everything together? So we actually switched from littlesun.com to littlesun.org with WordPress, and it was amazing to see how we managed with the team to create an ecosystem approach, including impact, but also sales, and fundraising.&nbsp;</p>\n\n\n\n<p>[00:05:02] <strong>Josepha:</strong> That was a big footprint that you all had, and you kind of consolidated it into one. And for all of our folks listening on the podcast, I&#8217;m going to include some links, not only to their site but then also to a few other things that we&#8217;ve mentioned in here today. So, since you made that change, how has it, how has that impacted the way that you all work with your site or with your online presence?</p>\n\n\n\n<p>[00:05:27] <strong>Ashley:</strong> Yeah, I think using WordPress and having access to WordPress has been hugely valuable for us. We&#8217;re a small team, we&#8217;re a nonprofit, so it is pretty scrappy. Everyone is kind of doing a lot of different things. We don&#8217;t have a dedicated development team. And so being able to easily customize our pages and create new landing pages or make adjustments on the site without that development help has been valuable.</p>\n\n\n\n<p>[00:05:55] <strong>Josepha:</strong> Yeah, so you don&#8217;t have a developer team now. Did you have a developer team when you had all the sites?&nbsp;</p>\n\n\n\n<p>[00:06:01] <strong>Romane:</strong> We just still work with freelancers.Â </p>\n\n\n\n<p>[00:06:03] <strong>Josepha:</strong> Okay, yeah. I am also not a developer, for what it&#8217;s worth, and have been working with nonprofits for a while. And I understand that problem where you have all these things you need to do and want to do, but there are also things you absolutely have to focus on in order to make your mission possible and your vision come true.</p>\n\n\n\n<p>[00:06:23] <strong>Ashley:</strong> Yeah, and I think, I think WordPress has given us a lot more, like a lot more flexibility to kind of produce new content quickly. And because of that, it&#8217;s just been a lot more efficient, too, for us, you know.&nbsp;</p>\n\n\n\n<p>[00:06:38] <strong>Josepha:</strong> And you all are using Blocks? Are you, like, the best Block builders?</p>\n\n\n\n<p>[00:06:42] <strong>Romane:</strong> Yeah, I love Blocks.&nbsp;</p>\n\n\n\n<p>[00:06:43] <strong>Josepha:</strong> Blocks are a fairly new innovation for the history of WordPress. WordPress has been around for 20 years, so we&#8217;re a nice, mature project. And we&#8217;ve really only had blocks as a functional part of the CMS for probably the last five or so. We&#8217;ve been working on the project a little bit longer. And it has been fascinating to me, like, in my own work that I have done with WordPress, kind of outside of my work with the project, to see, like, how much autonomy you get to have back as somebody who is not a developer, maybe isn&#8217;t a designer, but you do know exactly what you need to have on your site today, right?</p>\n\n\n\n<p>And having to stop and find a freelancer or stop and find some set of developers who can make those changes. For me, when I was specifically working on nonprofit stuff. That was always kind of a moment where I was like, well, I guess I&#8217;ll just go to Facebook and put that on there or something because I was faster than trying to find someone to come help you. And so, I&#8217;m so glad you love the block.</p>\n\n\n\n<p>[00:07:48] <strong>Ashley:</strong> We&#8217;ve created many a landing page.&nbsp;</p>\n\n\n\n<p>[00:07:50] <strong>Josepha:</strong> Also, your site is adorable, and your brand is adorable, in case no one&#8217;s mentioned that lately. Super cute. Super cute.</p>\n\n\n\n<p>[00:07:58] <strong>Josepha:</strong> So, we&#8217;ve talked about how you kind of took a bunch of stuff and made it into one big thing and how that&#8217;s been easier for you all to manage it. But from the standpoint of just, like, somebody who&#8217;s running a nonprofit, someone who&#8217;s running an organization, how has that transition been for your team? I know you said you don&#8217;t have a huge team, but was the move toward WordPress a net benefit over time, or was it immediately beneficial? Like, how has that been for your team?Â </p>\n\n\n\n<p>[00:08:27] <strong>Romane:</strong> So what&#8217;s interesting actually is that we have a team that is spread also all over the world. And so we have teams in Berlin and in U.S., and New York. In Zambia, too. What was really interesting was how people identify to the new website because now we have to really think, okay, what is the content we want people to see, but also we want our critics to see. And so it kind of unified all of our content at Little Sun. And it was much more like much easier to understand afterwards.Â </p>\n\n\n\n<p>[00:09:03] <strong>Josepha:</strong> Yeah.&nbsp;</p>\n\n\n\n<p>[00:09:04] <strong>Romane:</strong> And it was because we also work at the intersection of creative communications, impacts, fundraising, technology, and to be able to put everything and have it on the front. And then have the stories to tell the stories from sub-Saharan Africa, from universities who got either a Little Sun lamps or solar systems, and then we have the donation page, so basically everything could be integrated in a super easy way, and it could target different audiences easily, either it&#8217;s someone who wants to partner with us, or a donor, or just someone who wants to be part of our solar training.</p>\n\n\n\n<p>[00:09:46] <strong>Josepha:</strong> Yeah, and I mean, I think that no one will be surprised to hear that if you have multiple things that you have to get everybody to, it really increases the amount of marketing that you have to accomplish, rather than having one place for everyone to go too, and they can see everything that they might want once they arrive. So, that&#8217;s wonderful.</p>\n\n\n\n<p>[00:10:06] <strong>Ashley:</strong> I think I was just going to say, or kind of echo what Romane said about the fact that we have so many different audiences, we have partners, we have donors, we have people who are just coming to learn about solar energy, or who are interested in purchasing a lamp. I think prior to this, it was a little bit confusing for those different audiences to kind of navigate to where they were intended to go to on the site, and now it&#8217;s much more cohesive. And we often hear that from people where it&#8217;s like, it&#8217;s quite easy to, to kind to find what they need to find on the site.&nbsp;</p>\n\n\n\n<p>[00:10:39] <strong>Josepha:</strong> I define the WordPress community as anyone who is using WordPress, regardless of whether they know it or not. And so you all, in my mind, are part of the WordPress Community. And I just wondered if being part of that community has changed your approach to the way that you manage your content online or the way that you have chosen work with your business as like an online entity that also does on-the-ground, in-person thing?</p>\n\n\n\n<p>[00:11:06] <strong>Ashley:</strong> I think definitely. I think we&#8217;re kind of going back to what I said before. I think we&#8217;re much more efficient now. I think in the past, it&#8217;s the idea of, like, well, getting this web page live or publishing this is going to be, you know, we have to think about a huge timeline, that&#8217;s, is going to require a lot of resourcing, a lot of different types of expertise and people, and everything now feels like something that we can, we can launch pretty immediately, which is really wonderful too.</p>\n\n\n\n<p>I would also say just like being a part of the WordPress community too. It&#8217;s the sort of support that we&#8217;ve gotten from your team. It&#8217;s always really tailored. And I think as a nonprofit working with a, like, a much bigger business, you can be apprehensive sometimes, feeling like you won&#8217;t really get that personalized support.&nbsp;</p>\n\n\n\n<p>And I think that&#8217;s something that&#8217;s been so nice with WordPress. Is really feeling like the people we&#8217;re working with are understanding our business and taking the time to understand our needs. And I think that makes us think differently about our online presence as well because then we feel like we have that additional support, which is great.</p>\n\n\n\n<p>[00:12:12] <strong>Josepha:</strong> I&#8217;m always a fan of hearing that people who are passionate about WordPress are also passionate about helping others with WordPress. That&#8217;s one of my favorite things about us. That&#8217;s not true. I have like 25 favorite things about us. And so I need to stop saying that I have one favorite, but I never will.</p>\n\n\n\n<p>Okay, well, do you all have any last thoughts that you just want to share with me or podcast listeners that we have?&nbsp;</p>\n\n\n\n<p>[00:12:36] <strong>Ashley:</strong> Yeah, I think the, the plugins and integrations have been really useful for us. I think it can be really intimidating to bring on, like, a new tech solution or tool and feel like everything that you are already working with or have is going to become outdated or obsolete in some way. And I think it&#8217;s just been really nice to work with WordPress and have all of those transitions be really seamless for everything to connect really well. Yeah, I think that&#8217;s been. That&#8217;s hugely helpful too.&nbsp;</p>\n\n\n\n<p>[00:13:07] <strong>Josepha:</strong> So, was that part of the decision-making process? Like, do I know that this software will be around in the future so that you&#8217;re making an investment in the site now and know that it&#8217;s going to hang around now you can find people help? Like, was that part of the decision-making process?</p>\n\n\n\n<p>[00:13:21] <strong>Ashley:</strong> I think so. I mean, I guess I wasn&#8217;t completely around during the time, but I would say, like, that&#8217;s definitely something that we&#8217;re considering in any kind of tech that we&#8217;re thinking about is it can require so much work to, to kind of bring something on with such a small team. So we want to ensure that, yeah, it&#8217;s going to last, it has longevity, and it&#8217;s going to work with the tools that we already have. So I think all of that is really important for sure.&nbsp;</p>\n\n\n\n<p>[00:13:48] <strong>Josepha:</strong> Well, thank you both so much for joining me. Like I said, we&#8217;ll have a link to littlesun.org in the notes so that you all can learn more about their project and see their beautiful site with their beautiful little solar sunflowers.</p>\n\n\n\n<p>Thank you both for being with me today.&nbsp;</p>\n\n\n\n<p>[00:14:04] <strong>Romane:</strong> Thank you so much.&nbsp;</p>\n\n\n\n<p>[00:14:05] <strong>Ashley:</strong> Thank you so much for having us.</p>\n\n\n\n<p>[00:14:07] (Music interlude)</p>\n\n\n\n<p>[00:14:11] <strong>Josepha:</strong> What a wonderful organization. I&#8217;m so glad that they found WordPress and that it works for them. Let&#8217;s continue our tour today with the small list of big things.</p>\n\n\n\n<p>Item number one, it&#8217;s time to save the date: December 11th, 2023, for this year&#8217;s State of the Word. State of the Word is the annual keynote address delivered by the WordPress Project co-founder Matt Mullenweg. Every year, the event shares reflections on the project&#8217;s progress and aspirations for the future of open source. And so, if that is something that you like to tune into, December 11th is your day.&nbsp;</p>\n\n\n\n<p>Second thing on our list is that we are celebrating our 10,000th photo submission. So, on October 11th, the 10,000th photo was approved. The Photo Team is one of the newest ways to contribute to the WordPress open source project, and it feeds all of those photos into Openverse as well.</p>\n\n\n\n<p>The third thing on our list today is that I want to tell you about a community team training module that just came out. It&#8217;s specifically about the Translate Live tool, and it is ideal for presenting at your local meetups to engage and onboard new translators for your native language. If you&#8217;re organizing a WordCamp, consider introducing this tool during your Contributor Day. I will leave a link for this in the show notes so that it is easy to find.&nbsp;</p>\n\n\n\n<p>And item number four, the journey to update WordPress.org, continues with the launch of a new Showcase design. The Showcase is a natural starting point for a lot of visitors who are on WordPress.org. It inspires creativity and also demonstrates what&#8217;s possible with WordPress. So, stop on by there, it&#8217;s WordPress.org/showcase, and give it a bit of a look.</p>\n\n\n\n<p>[00:15:58] <strong>Josepha:</strong> And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. And don&#8217;t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You&#8217;ll get a friendly reminder whenever a new episode drops. And if you like what you heard today, share it with a fellow WordPresser. Or, if you had questions about what you heard today, you can share those with me at wprebriefing@WordPress.org. </p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.Â </p>\n\n\n\n<p>[00:16:24] (Music outro)</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16227\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 6.4â€™s PHP Compatibility\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2023/10/wordpress-6-4s-php-compatibility/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Oct 2023 08:40:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"PHP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=16235\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:340:\"In an effort to keep the WordPress community up to date, this post provides an update on the PHP compatibility of the upcoming WordPress 6.4 release scheduled for November 7, 2023.&#160; Recommended PHP version for WordPress 6.4 Itâ€™s recommended to use PHP 8.1 or 8.2 with this upcoming release. Please refer to the Hosting page [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3117:\"\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"2400\" height=\"1350\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/10/WordPress-6.4s-PHP-comp.png?resize=2400%2C1350&#038;ssl=1\" alt=\"\" class=\"wp-image-16236\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/10/WordPress-6.4s-PHP-comp.png?w=2400&amp;ssl=1 2400w, https://i0.wp.com/wordpress.org/news/files/2023/10/WordPress-6.4s-PHP-comp.png?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/10/WordPress-6.4s-PHP-comp.png?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/10/WordPress-6.4s-PHP-comp.png?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/10/WordPress-6.4s-PHP-comp.png?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/10/WordPress-6.4s-PHP-comp.png?resize=2048%2C1152&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>In an effort to keep the WordPress community up to date, this post provides an update on the PHP compatibility of the upcoming WordPress 6.4 release scheduled for November 7, 2023.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Recommended PHP version for WordPress 6.4</strong></h3>\n\n\n\n<p>Itâ€™s recommended to use PHP 8.1 or 8.2 with this upcoming release. Please refer to the Hosting page for more detailed information, including <a href=\"https://make.wordpress.org/core/handbook/references/php-compatibility-and-wordpress-versions/\">a few known issues</a>.&nbsp;</p>\n\n\n\n<p>Reach out to your hosting company to explore PHP upgrade options.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Why does compatibility matter?</strong></h3>\n\n\n\n<p>PHP is a programming language on which the WordPress code is based. This language runs on the server, and it is critical to keep it updated for security and functionality. Various teams within the WordPress open source project work to both test and fix any issues with new PHP versions so you can update with confidence that the WordPress core software is compatible.&nbsp;</p>\n\n\n\n<p>Happy WordPress-ing!&nbsp;</p>\n\n\n\n<p><em>Thank you to <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a> <a href=\'https://profiles.wordpress.org/barry/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>barry</a> <a href=\'https://profiles.wordpress.org/ironprogrammer/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>ironprogrammer</a> <a href=\'https://profiles.wordpress.org/hellofromtonya/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>hellofromtonya</a> <a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a> <a href=\'https://profiles.wordpress.org/costdev/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>costdev</a> <a href=\'https://profiles.wordpress.org/javiercasares/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>javiercasares</a> for reviewing and contributing to the effort of this post.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"16235\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 29 Nov 2023 15:12:17 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"â›„\";s:13:\"last-modified\";s:29:\"Mon, 27 Nov 2023 16:06:12 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20210411122846\";}','no'),(777567,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1701313937','no'),(777568,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1701270737','no'),(777569,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1701313938','no'),(777570,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: #101 â€“ Pooja Derashri on Creating Educational WordPress Content\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=151581\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wptavern.com/podcast/101-pooja-derashri-on-creating-educational-wordpress-content\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:40167:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case creating materials to help other people learn about WordPress.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you could do that by searching for WP Tavern in your podcast player of choice. Or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Pooja Derashri. Pooja is a co-founder of WPVibes, a plugin development company based in India. With a passion for WordPress, Pooja has been actively involved in the community since 2013. Her journey as a contributor began in 2017, when she attended her first local WordCamp. Her expertise and dedication have earned her various key roles in the WordPress ecosystem. She currently serves as a co-team rep for the training team, and GTE for the Hindi locale. In addition, she holds key positions in the WordPress release squad for version 6.3 and 6.4, where she headed up the test team.</p>\n\n\n\n<p>Pooja was on the podcast a few weeks ago talking about diversity, but this time the focus is on creating learning materials for WordPress.</p>\n\n\n\n<p>We begin discussing Pooja&#8217;s background and her involvement with the training team. She shares how she stumbled upon the training team during a WordCamp event, and got started by finding a simple spelling mistake in a lesson plan. From there she became more involved with the training team and gradually took on roles such as reviewing code and leading the test team.</p>\n\n\n\n<p>We get into the importance of training materials in helping new users understand and navigate the WordPress platform, highlighting the learn WordPress website. Pooja emphasizes that contributions to the training team can be as small as reviewing existing content, or as involved as creating new lessons or video tutorials.</p>\n\n\n\n<p>If you&#8217;re curious about how to get started with the training team, Pooja explains the comprehensive onboarding program available in the team&#8217;s handbook. Additionally, there&#8217;s a mentorship guide program for one on one guidance for new contributors. Whether you have a few minutes or several hours to spare each week, there&#8217;s a place for everyone to make a start.</p>\n\n\n\n<p>A key topic of the discussion is the need to keep the training materials up to date, as WordPress is a dynamic and ever-growing software. Pooja explains the team&#8217;s process of reviewing and updating content, particularly in light of new WordPress releases, and frequent changes in terminology.</p>\n\n\n\n<p>We also talk about the importance of translations, introducing the opportunity for contributors to help with translating materials into different languages. Making WordPress accessible to a global audience.</p>\n\n\n\n<p>Towards the end, Pooja highlights the supportive and collaborative nature of the training team. She shares her experience of making friends and connections across the globe while contributing to the team. There&#8217;s a sense of community and camaraderie amongst the contributors, making it an enjoyable journey for all involved.</p>\n\n\n\n<p>If you&#8217;re curious about helping others learn WordPress, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Pooja Derashri.</p>\n\n\n\n<p>I am joined on the podcast today by Pooja Derashri. Hi, Pooja.</p>\n\n\n\n<p>[00:04:27] <strong>Pooja Derashri:</strong> Hello, Nathan.</p>\n\n\n\n<p>[00:04:28] <strong>Nathan Wrigley:</strong> It is so nice to have you back. You were on the podcast just a few weeks ago now, talking about something completely different. We&#8217;ll point you in the direction of that episode in the show notes. But today, Pooja, we&#8217;re going to be talking about learning WordPress. About the training team and about the Learn WordPress website and resources.</p>\n\n\n\n<p>Just before that, for those people who didn&#8217;t hear the previous episode, would you just give us a short biography? Tell us a little bit about yourself, your journey with WordPress and so on.</p>\n\n\n\n<p>[00:04:59] <strong>Pooja Derashri:</strong> Yeah, sure. My name is Pooja Derashri and I&#8217;m from Ajmer, a beautiful city in India. I&#8217;m a co founder of WPVibes, a plugin development company. I&#8217;m also an active contributor to WordPress community. I served as a training team representative for the past two years, and now I&#8217;m serving as a test team rep. I was also in the WordPress release squad for 6.3 and 6.4 version, where I led the test team.</p>\n\n\n\n<p>[00:05:27] <strong>Nathan Wrigley:</strong> Thank you so much. That&#8217;s really great. So obviously you&#8217;re very, very committed to WordPress. And one of the big things about WordPress is getting people to understand how the software works. If you&#8217;re like me, and like you, Pooja, I suspect that it&#8217;s pretty obvious what to do with WordPress. You&#8217;ve used it an awful lot before, and you&#8217;re committed to it, and you understand how it all works.</p>\n\n\n\n<p>But people who are new to the platform, or people who are trying to explore something that they haven&#8217;t used with it before, obviously have to learn a little bit about how that works. And it may be that people do not know. But there are training materials that are being created over at Learn WordPress. I will give the links in the show notes.</p>\n\n\n\n<p>And that is being done and coordinated by the training team. Would you just tell us a little bit about how you got involved with the training team? When did you begin your journey and what kind of things have you been doing, personally, with training and learn materials?</p>\n\n\n\n<p>[00:06:26] <strong>Pooja Derashri:</strong> Yes. Before telling me about my involvement, I would like to tell about how I got started contributing to the training team. I was attending a WordCamp, WordCamp Ahmedabad. There was a contributor day. There are several teams over there, and I decided to learn more about the training team.</p>\n\n\n\n<p>On that day, Chetan Prajapati, the table lead of training team, guided me about what is Learn WordPress, and how I can contribute to it. So he guided me to review some lesson plans. When I was reviewing the lesson plans, I found a spelling mistake in one of the lesson plans. And I suggested a correction, simple correction. That was my first contribution to the team.</p>\n\n\n\n<p>Basically I had a development background, so I was not sure how I can use my skills in creating content, or something like that. So I was not sure how I can get involved with the training team more, where all other team members were working around content.</p>\n\n\n\n<p>But at that time Courtney Robertson and Hauwa Abashiya were the team reps. And the whole team was working on the initial launch of the Learn WordPress .org website. They, guided me on how I contribute to reviewing code in lesson plan. That was my cup of tea and I am fascinated about it. So I joined the forces, at the time, and soon felt very comfortable with the team.</p>\n\n\n\n<p>Basically the training team overall helped me a lot in learning and growing. With the team&#8217;s help, I gradually started feeling more confident and part of the inaugural team. That time with my consistent contribution, or my involvement with the team, I was nominated and selected as a team rep back in 2022.</p>\n\n\n\n<p>[00:08:09] <strong>Nathan Wrigley:</strong> That&#8217;s absolutely fascinating. So your entire journey started out by spotting a spelling mistake, and it grew from there. That&#8217;s lovely. But it also points to the fact that you don&#8217;t need to do something really seismic. You don&#8217;t have to be involved in the training team. You don&#8217;t have to do anything super major, it is possible to be involved to do little things.</p>\n\n\n\n<p>You don&#8217;t have to dedicate absolutely ages of your week over to this. Would that be right? There&#8217;s no commitment in terms of time, or the amount that you&#8217;re going to do. Making little changes is just as important as contributing in a big way.</p>\n\n\n\n<p>[00:08:45] <strong>Pooja Derashri:</strong> Yes, definitely. It was started just with his spelling mistake correction. And now I&#8217;m more involved with the administrator related things, running weekly meetings with other co-team reps, posting monthly updates, monthly newsletter, reviewing other team&#8217;s content, other team members content. I&#8217;m also a translation coordinator for my Hindi language.</p>\n\n\n\n<p>Yeah, and in past I was also wrote few lesson plans. So yeah, it started with a small thing, and gradually with more involvement, I learned many new things.</p>\n\n\n\n<p>[00:09:16] <strong>Nathan Wrigley:</strong> If somebody was interested, let&#8217;s say that they&#8217;ve listened to this episode and they are keen to, at least have further discussions about what it is that they could do. I&#8217;m, interested in you describing how the team is structured. So, as an example, if I&#8217;m new, how do I get onboarded, and how is it decided where I would be most useful?</p>\n\n\n\n<p>So you mentioned a couple of things there, you know, you were talking about the fact that you were able to change spelling mistakes. But you also talked about the fact that you could do things in your own language.</p>\n\n\n\n<p>Do you get to show up and pick what it is that you&#8217;re going to do, or is there a hierarchy? Are there people, such as yourself, who&#8217;ve been contributing to this for a while, who have their hands on what needs doing, and kind of farm out those projects to people?</p>\n\n\n\n<p>[00:10:05] <strong>Pooja Derashri:</strong> Yes. At the beginning of this year, my co-team rep, Benjamin Evans, who worked on a project for an onboarding program for new contributors. And desperately it helped us win half of the battle. New contributors found learning and getting involved with the training team is very easy. They can find the complete getting onboarded program in our handbook. That is available on make.wordpress.org/training/handbook.</p>\n\n\n\n<p>There is a section, getting started. There is a complete video and tutorial format, where they can find the step by step process about how they can involve. And by reading that handbook, they can find their own way to start contributing. That is very easy and concise way to get involved.</p>\n\n\n\n<p>And there is also, a program, run by Courtney P. K., that is a mentorship guide program. There is a one on one mentorship program, where few mentors guide mentees about how they can start contributing to the training team, and help them to make meaningful contributions.</p>\n\n\n\n<p>[00:11:08] <strong>Nathan Wrigley:</strong> Yeah, thank you for that. So, you&#8217;re obviously extremely keen on doing this, and it sounds like you dedicate quite a lot of your time. Again, for the listener who is maybe just coming across this subject for the first time, are there any guardrails, or are there any things which you would suggest, in terms of the amount of time that you need to dedicate if you want to be involved?</p>\n\n\n\n<p>I know that you mentioned the handbook, but for people who don&#8217;t quite make it there and are using this podcast audio only as their guide, is there any level of commitment? Do you wish to have people who are willing to give a certain amount of time per week, or can commit to a certain number of weeks or months? Or are you happy to have anybody on board, even for a short period of time? People who drop in, drop out. Are you taking all comers?</p>\n\n\n\n<p>[00:11:53] <strong>Pooja Derashri:</strong> Yes, definitely. If our listeners have only a limited time, like let&#8217;s say just half an hour, or one hour in a week. So they can review the content the other content creators are creating, already created content.</p>\n\n\n\n<p>In every few months, we review our published content as well. Because as a new version, WordPress version launches, some of the content get outdated. So we always do the auditing the existing content, so people can go through with that content.</p>\n\n\n\n<p>If they found any outdated content, or anything that is missing from lesson plans or video tutorials, they can report our issues on GitHub that is dedicated, learn repository over there. They can report issue over there, and other team members can have a look and try to fix them.</p>\n\n\n\n<p>So that is the lesser time. If new contributor have lesser time to contribute, they can go through with that reviewing process.</p>\n\n\n\n<p>[00:12:45] <strong>Nathan Wrigley:</strong> So there&#8217;s no need to commit a great deal of time. Small contributions are just as welcome as large contributions.</p>\n\n\n\n<p>I&#8217;m just going to turn the conversation to you, Pooja, just for a few minutes. And I&#8217;m curious as what you get out of it. I don&#8217;t mean that in the way that it maybe sounds, but I&#8217;m keen to know why you commit so much of your time.</p>\n\n\n\n<p>You mentioned at the top of the podcast recording that you&#8217;ve obviously got a business to run. You&#8217;ve got other things to do. You&#8217;ve got to generate revenue for you, and the people close to you, and all of that. So I&#8217;m just wondering why it is that you do this. What are the reasons you do it? And I suppose we should clear up the fact that getting paid is not one of them, because this is an entirely voluntary position.</p>\n\n\n\n<p>[00:13:29] <strong>Pooja Derashri:</strong> Yeah. I&#8217;m volunteering all my time to the training team, I&#8217;m self sponsored. So no, I&#8217;m not getting paid from anywhere. But, as I already told you, that I was having a background of development. So, in contributing in training team, I got to know more about how content works around. How we can record a video tutorial, how we can write a lesson plan, many things around SEO.</p>\n\n\n\n<p>And when we work together, other content creator experts, we learn a lot. So by contributing into training team, I learned a lot about content creation, and that newly gained skills, I can use in my business. So it&#8217;s kind of win win situation.</p>\n\n\n\n<p>[00:14:13] <strong>Nathan Wrigley:</strong> That&#8217;s nice. In terms of how the team is organised, if I was to join in, and obviously you&#8217;ve described that there&#8217;s a handbook and it can probably answer many of these questions, but it&#8217;s nice to get it out into the audio. How are tasks assigned? How do the training team, and all of the things that they do, how are those jobs coordinated? Is there a piece of software that we need to be familiar with? Is this all done through Slack or something else?</p>\n\n\n\n<p>In other words, if we were to join, how would we know what needed to be done? And report the things that we had done so that they could be checked and approved and so on. Basically, how does it all work in the background?</p>\n\n\n\n<p>[00:14:51] <strong>Pooja Derashri:</strong> We manage our work mainly in three places. Our team blog, our Slack channel or GitHub repository. Team blog is make.wordpress.org/training. All decisions are discussed and announced in blog post to allow the widest audience to participate. The team blog is the place where our whole discussion, decisions are announced, or are posted.</p>\n\n\n\n<p>And our Slack channel is where we can connect with other contributors in the team in real time. It&#8217;s where people can ask our faculty members and other experienced teammates for help, while working through some team tasks. Our training team meetings are also conducted in Slack, but decisions are not made in Slack. If an item needs a discussion or decision, we publish it as a post on the team blog, so that the general public can see the discussion and join in decision making.</p>\n\n\n\n<p>And lastly, there is a GitHub repository. This is where individual tasks are tracked. These include content creation or content translation, website management related tasks, and these are all organised in a GitHub issues form.</p>\n\n\n\n<p>There are currently like seven major project boards. All the content development related issues fall under this project. There is a team that administrates the related project. There is a content localisation related project where the other people are translating content in their own language. All related issues are under this project.</p>\n\n\n\n<p>Then there is a content feedback, if our content has any issue, any outdated content or any spelling mistake related thing. All that type of content feedback falls under this issue, this project. So yeah, we manage all the website related issues, development related queries, and any content, new content request. All the other content that is in process, all are managed under GitHub repository.</p>\n\n\n\n<p>[00:16:47] <strong>Nathan Wrigley:</strong> So there&#8217;s a variety of different tools and workflows that you need to become familiar with. But I&#8217;m guessing that there&#8217;ll be assistance with that if you decide to join. Somebody will shepherd you through that, and there&#8217;ll be some documentation, some learn materials, which will enable you to learn about contributing towards Learn and the Training Team, which is a bit meta, but there you go.</p>\n\n\n\n<p>In terms of the actual topic areas that you cover, technology, and WordPress in particular, is a really fast moving piece of software. You know, it&#8217;s not glacial. The documents that you wrote a year ago, there is some chance that they will still be pertinent, but I&#8217;m imagining that in many cases, some of these materials will go out of date fairly quickly.</p>\n\n\n\n<p>So I&#8217;m wondering what you could tell us about the bits and pieces that really do need a lot of attention at the moment. So for example, it might be full site editing, or something like that. But just give us an idea of how you decide what needs to be covered.</p>\n\n\n\n<p>We&#8217;ve obviously talked about the way that you communicate that with the tools that you&#8217;ve got. But what topics at the moment are really in need of documentation? And that could be things that haven&#8217;t been done yet, but also things which are underway, which needs to be completed. So yeah, just give us an idea of the topic areas that are really in need of work at the moment.</p>\n\n\n\n<p>[00:18:05] <strong>Pooja Derashri:</strong> Yeah, sure. There is a GitHub project where when people submitted their topic ideas, are subject matter experts looking into every topic ideas. And they finalise that, yeah, that piece of content is having a high priority and we need to focus on first.</p>\n\n\n\n<p>Every month we did a 5 to 10 high priority content list. And we will ask in our every weekly meeting that, yeah, this content is something we need to do on high priority. And we ask for volunteers to help. If they found their area of expertise or their skills match with that content, then they volunteer for that particular project, and they definitely pick that particular piece of content.</p>\n\n\n\n<p>So right now, we are working on 6.4 release work. That is something on our high priority. And there are a few issues that need to be completed as soon as we can. In past 6.4 release, training team was the official part of release, and Courtney PK and Courtney Robertson was the lead at that time in the release.</p>\n\n\n\n<p>And they are working hard for matching our lesson plan content, or our tutorials, with the release work. So yeah, right now we are looking for people, or volunteer, who can help us in working. Those issues can be easily found on GitHub. There is a label assigned on 6.4 on GitHub. That is something we are looking for on high priority right now.</p>\n\n\n\n<p>[00:19:35] <strong>Nathan Wrigley:</strong> Okay, thank you. In terms of the content that you submit, are there any kinds of content that you prefer to have? So what I mean by that is, so for example, there is video content, there&#8217;s text. But I don&#8217;t know if you also produce content in different ways. For example, I don&#8217;t know if you do audio content, the kind of thing that I&#8217;m producing with you right now. Or whether you do live webinars, which end up as a video. So that might be something that people could actually participate in. So just give us an idea of the kinds of different contents that are being created. So video, text, audio, et cetera.</p>\n\n\n\n<p>[00:20:11] <strong>Pooja Derashri:</strong> Basically, there are four types of content available on learn.wordpress.org website. Lesson plans, tutorial, courses and online workshops. Lesson plan and courses are the text based format, and video tutorials and online workshops are like video format. The overall content can be used by both learners and teachers, but lesson plan is specifically created for teachers. And video tutorial, courses and online workshop are for targeted learner audience.</p>\n\n\n\n<p>People who wanted to contribute in text based format, they can go to contribute into lesson plans and courses. And there are several topics submitted on our GitHub repository. They can choose from them. And if there is not, they have any specific topic in that their mind, they can reach out to us or submit their topic idea into GitHub repository, and our subject matter expert can review them, vet them, and approve them. After that they can start working on it.</p>\n\n\n\n<p>Video tutorials, in the similar way, if they want to helping existing submitted topic, they can pick from there. And if they have any topic they want to create video for that. So for creating content on their own, they need video. They need to just submit their topic idea on GitHub repository. That is the basic workflow we follow.</p>\n\n\n\n<p>[00:21:35] <strong>Nathan Wrigley:</strong> In terms of the quality of the materials that you put out, obviously, not everybody is equal. For example, let&#8217;s take the situation of video. Some people are just absolutely fabulous at working with video. You know, they&#8217;ve got the software, they&#8217;re familiar with it, they can make the whole presentation look really slick and all of that.</p>\n\n\n\n<p>Other people may be new to writing that. Other people may not have written text too much before, and they may not have too much confidence about that. So I&#8217;m just wondering if you&#8217;ve got any guard rails around the project. You mentioned that people inspect the content that&#8217;s being offered, in order to make sure it&#8217;s of a certain quality.</p>\n\n\n\n<p>What do you do with content that doesn&#8217;t live up to what you&#8217;d hoped for? Content that maybe needs to be redone, to be improved, to be rewritten. Are there processes in hand to sort of help people who are beginning, who maybe need that little bit of extra support to get them over the hurdles in order to get that content live?</p>\n\n\n\n<p>[00:22:31] <strong>Pooja Derashri:</strong> Firstly, we have a detailed guide on our handbook about how you can create a tutorial. As your question is very interesting, in a few months back, Jonathan Bossenger, he was our video tutorial content creator. What he did, he just wrote some script, and it was some like a cohort kind of thing.</p>\n\n\n\n<p>He wrote a script, other volunteer recorded him, recorded that script. And with collaboration of both, they created a masterpiece, and they published in a collaboration video. Jonathan&#8217;s video creation expertise helped other volunteer to master the skill.</p>\n\n\n\n<p>So others volunteer also learn about the video creation. Like this, many other team members are willing to help a new contributors, or other people who are not that much expert in this video creation. But they can learn from others. There are many other video tutorials available on our Learn WordPress website.</p>\n\n\n\n<p>And our mentors are also there, who help them by one on one call to guide them about what recording tool they can use, what speed they can use. And after they have completed their recording, they can submit their recording on our Slack channel or something. So other content editors then review and provide their feedback, so they can improve also.</p>\n\n\n\n<p>[00:23:56] <strong>Nathan Wrigley:</strong> There are procedures in place to support and help people who may feel that their contributions need a little bit of help. You&#8217;ve given a good example there of Jonathan Bossenger willing to help people up the standard of their videos. So yeah, that&#8217;s really nice.</p>\n\n\n\n<p>If you were to submit, let&#8217;s say a piece of video, are there minimum criteria in terms of things like, let&#8217;s take the topic of accessibility for example? Obviously video is available for some people, but there&#8217;s a subset of the population who are unable to access that video. Do you have guidance around things like transcriptions and things like that? If you submit certain types of content, do you have to then be mindful of things like accessibility or other topics before things get published?</p>\n\n\n\n<p>[00:24:40] <strong>Pooja Derashri:</strong> We take accessibility very seriously. Every video tutorial is followed by transcript. You can find easily transcript under video.</p>\n\n\n\n<p>[00:24:50] <strong>Nathan Wrigley:</strong> And so presumably, that&#8217;s another role which needs to be fulfilled. If you are able to listen to a video and transcribe it, that&#8217;s yet another portion of the work which needs to be done.</p>\n\n\n\n<p>[00:25:02] <strong>Pooja Derashri:</strong> Every video tutorial is followed by transcripts. And there are three or four video editors available. They review the transcript, the video quality and what the video is going to explain to our learners, or our targeted audience. So yeah, there is a whole team and process works around.</p>\n\n\n\n<p>So accessibility is not an issue in the content. And if some people find any accessibility issue under Learn WordPress content, they can easily reach out to us under our Slack channel or our GitHub issue. Anywhere they can reach out to us and ask about yeah, I&#8217;m having that certain issue and, can you please help me with that?</p>\n\n\n\n<p>So we can have in our mind about, yeah, this kind of scenario is also available and we need to work on it also. There is a checklist available where we check every single point before publishing the content.</p>\n\n\n\n<p>[00:25:56] <strong>Nathan Wrigley:</strong> Thank you so much. I&#8217;m just wondering about translations as well. Now, you did touch on this a few minutes ago, but I just want to drill down on that a little bit. Presumably this work also needs to be, not just transcribed, but translated into some other languages.</p>\n\n\n\n<p>And so, again, let&#8217;s just highlight that there are opportunities there if you speak a language other than English. There are opportunities to take these materials and get them taken over into a whole variety of different languages. So that&#8217;s some important work, I would guess as well, right?</p>\n\n\n\n<p>[00:26:28] <strong>Pooja Derashri:</strong> Yes. Many content is already available, and for that we are looking for volunteers who can help us in translating text based content, and video content as well. So that can be reached out to wider audience, so they can easily learn in their language. That said, learning in your own language is very much easier.</p>\n\n\n\n<p>[00:26:47] <strong>Nathan Wrigley:</strong> Yeah, indeed. Okay, so we&#8217;ll just round it off. I&#8217;ve got a few more questions just to sort of round it off. But the first one is around the way that this content sticks around and for how long. So, for example, we mentioned earlier that some pieces of content need to be updated all the time. Full site editing would be a perfect example, you know, the language changes, the words that we use to describe certain things change, the whole UI changes from time to time.</p>\n\n\n\n<p>So I&#8217;m just wondering, how much of the work is not new work, but is going back and checking that the things which are already published are in fact up to date? So just going through the materials, checking, making sure that in the situation where, I don&#8217;t know, full site editing was mentioned, it&#8217;s now changed to site editing so that everybody&#8217;s got the right data.</p>\n\n\n\n<p>[00:27:35] <strong>Pooja Derashri:</strong> Yes. There are basically two processes. First process is our team faculty members, they review or they audit the content. For example 6.4, there was a dedicated two faculty members, Courtney PK and Courtney Robertson. They reviewed the issues, the features that is going to be included in 6.4.</p>\n\n\n\n<p>They map with our already published content. And they filtered out like, yeah, these issues are outdated, and these lesson plans and video tutorials, we need to update. They made a list, and that issues list is available on GitHub. So from that list, our volunteers come and pick a issue to work on it.</p>\n\n\n\n<p>That is the first process. And the second process, people are eager to learn about full site editing. For example, like they are learning our full site editing course, they are taking our full site editing course. And they found it like, yeah, their full site editing is now site editing. So they reported that issue in GitHub. And our faculty members reviewed it, and just gone through the course and updated the content. So that&#8217;s how the updates work for learn content.</p>\n\n\n\n<p>[00:28:41] <strong>Nathan Wrigley:</strong> Obviously, if somebody was to commit a fairly large amount of their time to this, or even just a small amount of their time, it would be nice to know that your endeavors were appreciated, that the people that you were working with were a nice bunch. And I know this is a bit of a bizarre question, but I&#8217;m just keen to drill down into that a little bit.</p>\n\n\n\n<p>How does that team feel to you? You know, is it a nice place to be? Are they thoughtful individuals that you would regard as friends? Because I think a lot of people in the WordPress space would regard many of the people that they collide with as friends after a period of time. And so rather than the work being a chore, oh goodness I have to go and translate this piece of Learn material, it might be that you, you know, you relish it and you enjoy it because you interact with, what have become good friends in a nice environment.</p>\n\n\n\n<p>[00:29:29] <strong>Pooja Derashri:</strong> Yes. When we contribute we met so many new people, networking happens. We work together with many experts. And by the time we will make friends. If I talk about myself, I have so many friends across the globe, by just contributing to the training team.</p>\n\n\n\n<p>Firstly, like Courtney Robertson, Hauwa Abashiya. With these people, I&#8217;m working with them every week or every few days. So, it was like creating a connection with them.</p>\n\n\n\n<p>[00:29:57] <strong>Nathan Wrigley:</strong> Oh that&#8217;s lovely. I mean it really is, my experience at least anyway, is that many of the people that I have interacted with in the WordPress project, have become really dear friends, and it&#8217;s really nice to know that&#8217;s the case for you as well.</p>\n\n\n\n<p>So there&#8217;s a lot of work to be done. There are lots of areas which need work. Lots of different skills which you can acquire, or bring to bear on this work. So I guess the next thing we need to know is, where do we, sign up? Where would be the best place to go if we&#8217;re curious about taking this further?</p>\n\n\n\n<p>Pooja, I wonder if you could just, I don&#8217;t know, dig out a URL, or name a page which we could Google. Some of the good places to begin that journey.</p>\n\n\n\n<p>[00:30:34] <strong>Pooja Derashri:</strong> Begin journey with Learn WordPress. You can go to make.wordpress.org/training. That is official team blog, where all the discussion happens. Under this there is a handbook page available that is a detailed step by step guide available to help you.</p>\n\n\n\n<p>Another one is learn.wordpress.org website. There is content available in the video, and text format that helps you learn about the training team, and about the WordPress as well. There are good places where people can learn about the team, and they can join and contribute as well.</p>\n\n\n\n<p>[00:31:10] <strong>Nathan Wrigley:</strong> Thank you so much. I spoke with you just before we hit record on this particular episode, and you mentioned that from the previous episode, you&#8217;d been contacted by some people who wished to communicate with you about that subject. So we&#8217;ve got this different subject.</p>\n\n\n\n<p>I&#8217;m wondering if you wouldn&#8217;t mind telling us where we can find you personally. If people want to speak with you directly about this and get some more knowledge about your own experience.</p>\n\n\n\n<p>[00:31:33] <strong>Pooja Derashri:</strong> Yes. I&#8217;m available on Make WordPress Slack. My profile username is webtechpooja, and they can find me on Twitter. They can find my handle is Pooja Derashri. They can also find me on LinkedIn, by the same name Pooja Derashri handle.</p>\n\n\n\n<p>[00:31:48] <strong>Nathan Wrigley:</strong> Well Pooja, thank you so much for talking to us today about your experience with the Learn and Training teams behind WordPress. Really appreciate you coming on the podcast and talking to us today. Thank you so much.</p>\n\n\n\n<p>[00:32:00] <strong>Pooja Derashri:</strong> Thank you for having me Nathan. So I can share my journey and about the training team.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>.</p>\n\n\n\n<p>Pooja is a co-founder of <a href=\"https://wpvibes.com/\">WPVibes</a>, a plugin development company based in India. With a passion for WordPress, Pooja has been actively involved in the community since 2013. Her journey as a contributor began in 2017, when she attended her first local WordCamp. Her expertise and dedication have earned her various key roles in the WordPress ecosystem. She currently serves as a co-team rep for the training team and GTE for the Hindi locale. In addition, she holds key positions in the WordPress release squad for versions 6.3 and 6.4, where she heads up the test team.</p>\n\n\n\n<p>Pooja was on the podcast a few weeks ago talking about diversity, but this time the focus is on creating learning materials for WordPress.</p>\n\n\n\n<p>We begin by discussing Pooja&#8217;s background and her involvement with the training team. She shares how she stumbled upon the training team during a WordCamp event and got started by finding a simple spelling mistake in a lesson plan. From there, she became more involved with the training team and gradually took on roles such as reviewing code and leading the test team.</p>\n\n\n\n<p>We get into the importance of training materials in helping new users understand and navigate the WordPress platform, highlighting the Learn WordPress website. Pooja emphasises that contributions to the training team can be as small as reviewing existing content or as involved as creating new lessons or video tutorials.</p>\n\n\n\n<p>If youâ€™re curious about how to get started with the training team, Pooja explains the comprehensive onboarding program available in the team&#8217;s handbook. Additionally, there&#8217;s a mentorship guide program for one-on-one guidance for new contributors. Whether you have a few minutes or several hours to spare each week, there&#8217;s a place for everyone to make a start.</p>\n\n\n\n<p>A key topic of the discussion is the need to keep the training materials up to date, as WordPress is a dynamic and ever-evolving software. Pooja explains the team&#8217;s process of reviewing and updating content, particularly in light of new WordPress releases and frequent changes in terminology.</p>\n\n\n\n<p>We also talk about the importance of translations, introducing the opportunity for contributors to help with translating materials into different languages, making WordPress accessible to a global audience.</p>\n\n\n\n<p>Towards the end Pooja highlights the supportive and collaborative nature of the training team. She shares her experience of making friends and connections across the globe while contributing to the team. There&#8217;s a sense of community and camaraderie among the contributors, making it an enjoyable journey for all involved.</p>\n\n\n\n<p>If you&#8217;re curious about helping others learn WordPress, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://wptavern.com/podcast/95-pooja-derashri-on-diversity-equity-inclusion-and-belonging-in-wordpress\">#95 â€“ Pooja Derashri on Diversity, Equity, Inclusion, and Belonging in WordPress</a></p>\n\n\n\n<p><a href=\"https://wpvibes.com/\">WPVibes</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a></p>\n\n\n\n<p><a href=\"https://ahmedabad.wordcamp.org/2023/\">WordCamp Ahmedabad</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/handbook/\">Training Handbook</a></p>\n\n\n\n<p><a href=\"https://make.wordpress.org/training/\">Make WordPress Training</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a></p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja&#8217;s WordPress Profile</a></p>\n\n\n\n<p><a href=\"https://twitter.com/PoojaDerashri/\">Pooja&#8217;s on Twitter</a></p>\n\n\n\n<p><a href=\"https://www.linkedin.com/in/pooja-derashri/\">Pooja on LinkedIn</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Additional links supplied by Pooja.</h2>\n\n\n\n<p>Onboarding session for new contributors &#8211;Â <a href=\"https://make.wordpress.org/training/handbook/getting-started/\" target=\"_blank\" rel=\"noreferrer noopener\">https://make.wordpress.org/training/handbook/getting-started/</a><br />Team blog &#8211;Â <a href=\"https://make.wordpress.org/training/\" target=\"_blank\" rel=\"noreferrer noopener\">https://make.wordpress.org/training/</a><br />Slack channel &#8211;Â <a href=\"https://wordpress.slack.com/archives/C02RW657Q\" target=\"_blank\" rel=\"noreferrer noopener\">https://wordpress.slack.com/archives/C02RW657Q</a><br />Github Repository &#8211;Â <a href=\"https://github.com/wordpress/learn\" target=\"_blank\" rel=\"noreferrer noopener\">https://github.com/wordpress/learn</a></p>\n\n\n\n<p><strong>People Pooja mentioned in podcast:<br /></strong>Courtney Robertson &#8211;Â <a href=\"https://wordpress.slack.com/team/U02RQ0375\" target=\"_blank\" rel=\"noreferrer noopener\">@Courtney</a><br />Courtney P. K. &#8211;Â <a href=\"https://wordpress.slack.com/team/U0L4J5SH0\" target=\"_blank\" rel=\"noreferrer noopener\">@Courtney P.K.</a><br />Chetan Prajapati &#8211;Â <a href=\"https://wordpress.slack.com/team/U2TPPR7U4\" target=\"_blank\" rel=\"noreferrer noopener\">@Chetan Prajapati</a><br />Sarah &#8211;Â <a href=\"https://wordpress.slack.com/team/U026C1QRXE1\" target=\"_blank\" rel=\"noreferrer noopener\">@Sarah (She/Her)</a><br />Hauwa Abashiya &#8211;Â <a href=\"https://wordpress.slack.com/team/UD5V51YSD\" target=\"_blank\" rel=\"noreferrer noopener\">@Hauwa Abashiya</a><br />Destiny Kanno &#8211;Â <a href=\"https://wordpress.slack.com/team/U02AZ6T2BRT\" target=\"_blank\" rel=\"noreferrer noopener\">@Destiny</a><br />Benjamin Evans &#8211;Â <a href=\"https://wordpress.slack.com/team/U0381D1Q1RU\" target=\"_blank\" rel=\"noreferrer noopener\">@Ben Evans</a><br />Jonathan Bossenger &#8211;Â <a href=\"https://wordpress.slack.com/team/U0AHNQ65V\" target=\"_blank\" rel=\"noreferrer noopener\">@Jonathan</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Nov 2023 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"Do The Woo Community: The Backstory of the New Woo Branding with David Callaway\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78575\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://dothewoo.io/the-backstory-of-the-new-woo-branding-with-david-callaway/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:398:\"<p>David Callaway from Woo.com joins BobWP as they take a deeper dive into the latest WooCommerce branding.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/the-backstory-of-the-new-woo-branding-with-david-callaway/\">The Backstory of the New Woo Branding with David Callaway</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Nov 2023 10:27:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"Do The Woo Community: All Things WordPress 6.4 with Anne McCarthy and Bud Kraus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78565\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://dothewoo.io/all-things-wordpress-6-4-with-anne-mccarthy-and-bud-kraus/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:432:\"<p>Anne McCarthy and Bud Kraus join Abha for a chat about the earlier release of WordPress 6.4 filled with insights and experiences from all.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/all-things-wordpress-6-4-with-anne-mccarthy-and-bud-kraus/\">All Things WordPress 6.4 with Anne McCarthy and Bud Kraus</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Nov 2023 10:50:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"BuddyPress: BuddyPress 12.0.0 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=332047\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://buddypress.org/2023/11/buddypress-12-0-0-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5646:\"<p>The <a href=\"https://downloads.wordpress.org/plugin/buddypress.12.0.0-RC1.zip\">first release candidate (RC1)</a> for BuddyPress 12.0.0 is now available!</p>\n\n\n\n<p><strong>This version of the BuddyPress software is a development version</strong>. Please do not install, run, or test this version of BuddyPress on production or mission-critical websites. Instead, itâ€™s recommended that you evaluate 12.0.0-RC1 on a test server and site.</p>\n\n\n\n<p>Reaching this phase of the release cycle is an important milestone. While release candidates are considered ready for release, testing remains vital to ensure that everything in BuddyPress 12.0.0 is the best it can be.</p>\n\n\n\n<p>You can test WordPress 12.0.0-RC1 in four ways:</p>\n\n\n\n<ul>\n<li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/bp-beta-tester/\">BP Beta Tester</a>&nbsp;plugin.</li>\n\n\n\n<li><a href=\"https://downloads.wordpress.org/plugin/buddypress.12.0.0-RC1.zip\">Download the release candidate here (zip file)</a>.</li>\n\n\n\n<li>Check out our SVN repository:&nbsp;<code>svn co https://buddypress.svn.wordpress.org/trunk/</code></li>\n\n\n\n<li>Clone our read-only Git repository:&nbsp;<code>git clone git://buddypress.git.wordpress.org/</code></li>\n</ul>\n\n\n\n<p>The current target for the BuddyPress 12.0.0 release is&nbsp;<strong>December 6, 2023</strong>. Get an overview of the&nbsp;<a href=\"https://buddypress.org/tag/12-0-0/\">12.0.0 release cycle</a>, and check the&nbsp;<a href=\"https://bpdevel.wordpress.com/\">BP Development updates blog</a>&nbsp;for&nbsp;<a href=\"https://bpdevel.wordpress.com/tag/12-0-0/\">12.0.0 related posts</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s new in 12.0.0-RC1 ?</h2>\n\n\n\n<ul>\n<li>We made three new improvements to the BP Nouveau template pack:\n<ul>\n<li>Member and Group loop entries are now more consistent (see <a href=\"https://buddypress.trac.wordpress.org/ticket/9025\">#9025</a>)</li>\n\n\n\n<li>A group&#8217;s excerpt in a loop is now &#8220;really&#8221; truncating the Group&#8217;s description when it exceeds 225 characters (see <a href=\"https://buddypress.trac.wordpress.org/ticket/9024\">#9024</a>).</li>\n\n\n\n<li>We have made the member&#8217;s cover header action buttons behave more consistently (see <a href=\"https://buddypress.trac.wordpress.org/ticket/9023\">#9023</a>)</li>\n</ul>\n</li>\n\n\n\n<li>We also added other improvements to this template pack to welcome the <a href=\"https://wordpress.org/themes/twentytwentyfour/\">Twenty Twenty-Four</a> WordPress theme, including a new Priority Navigation feature (See <a href=\"https://buddypress.trac.wordpress.org/ticket/9030\">#9030</a>).</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">12.0.0 Highlights</h2>\n\n\n\n<h3 class=\"wp-block-heading\">The BP Rewrites API&nbsp;(a&nbsp;massive change!)</h3>\n\n\n\n<ul>\n<li>Site Administrators now have a full control over&nbsp;<strong>all</strong>&nbsp;BuddyPress-generated URLs. They can choose slugs (portions of URLs) that reflect their community, using localized language or special terms that are more meaningful to their members.&nbsp;<strong>All</strong>&nbsp;also means that URLs generated by third-party BuddyPress Add-ons using the BP Rewrites API will be editable.</li>\n\n\n\n<li>BuddyPress is fully compatible with plain URL permalinks.</li>\n\n\n\n<li>Parsing BuddyPress URLs is&nbsp;<strong>faster</strong>,&nbsp;<strong>more reliable, extensible, testable and fully compliant</strong>&nbsp;with WordPress best practices.</li>\n\n\n\n<li>Please note that if some of your BP plugins are not ready yet for this new API we have you covered thanks to this <a href=\"https://wordpress.org/plugins/bp-classic/\">backwards compatibility plugin</a>.</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3 class=\"wp-block-heading\">A new community visibility level: Members only</h3>\n\n\n\n<p>Thanks to the BP Rewrites API, we were able to give site admins a choice as to whether their community should be fully public or only accessible by logged-in members. In future versions, we hope to add granularity to this choice, so that community administrators can choose to highlight their members but share activities only inside the community â€œgatesâ€ for example.&nbsp;</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Ways to contribute</h2>\n\n\n\n<p>BuddyPress is open source software made possible by a community of people collaborating on and contributing to its development.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved in testing</h3>\n\n\n\n<p>Testing for issues is critical to developing the software and ensuring its quality. Itâ€™s also a meaningful way for anyone to contributeâ€”whether you have coding experience or not.</p>\n\n\n\n<p><em><strong>If you think youâ€™ve found a bug</strong>, you can share it with us replying to this&nbsp;<a href=\"https://buddypress.org/support/topic/lets-prepare-the-buddypress-12-0-0-next-major-release/\">support topic</a>&nbsp;or if youâ€™re comfortable writing a reproducible bug report,&nbsp;<a href=\"https://buddypress.trac.wordpress.org/\">file one on BuddyPress Trac</a></em>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate BuddyPress</h3>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp-plugins/buddypress/\">Help us translate BuddyPress into as many languages as possible!</a>&nbsp;This release also marks the&nbsp;<a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#string-freeze\">string freeze</a>&nbsp;point of the 12.0.0 release schedule.</p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Nov 2023 00:58:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WordPress.org blog: WP Briefing: Episode 67: Openverse &amp; Photo Directory Rewind\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=16454\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2023/11/openverse-photo-directory-rewind/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11665:\"<p>WordPress Executive Director, Josepha Haden Chomphosy, returns to a recent episode of the WordPress Briefing, which discussed two resources for openly licensed media in the WordPress projectâ€“ Openverse and Photo Directoryâ€“ and how they differ from one another! </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@WordPress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host:Â <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br />Editor:Â <a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo:Â <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production:Â <a href=\"https://profiles.wordpress.org/bjmcsherry/\">Brett McSherry</a><br />Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/photos/\">Photo Directory Make Page</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/photos/submit/\">Submit a Photo to the Photo Directory</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/\">Openverse Make Page</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/44496\">Openverse Call for Contributions: Block Editor Integration</a> (now closed)</li>\n\n\n\n<li><strong>Small List of Big Things</strong>\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/11/state-of-the-word-2023-madrid-spain/\" target=\"_blank\" rel=\"noreferrer noopener\">State of the Word</a>&nbsp;&#8211; The countdown is on for this year&#8217;s State of the Word! If you missed the initial announcement a few weeks ago, you&#8217;ll want to mark your calendars for December 11, 2023. State of the Word will include a Q&amp;A session. If you want to participate, you can send your question to&nbsp;<a href=\"mailto:ask-matt@wordcamp.org\" target=\"_blank\" rel=\"noreferrer noopener\">ask-matt@wordcamp.org</a>&nbsp;or ask during the event via the Q&amp;A app Slido. A QR code for your submission will be provided during the event live stream.</li>\n\n\n\n<li>WordCamp Asia hasÂ <a href=\"https://asia.wordcamp.org/2024/call-for-sponsors-extended-to-november-30th/\" target=\"_blank\" rel=\"noreferrer noopener\">extended their call for sponsors</a>, slated to take place in Taipei, Taiwan, March 7-9, 2024. The new deadline has been extended to November 30, 2023.</li>\n\n\n\n<li>The Documentation Team created a new GitHub repo for end-user documentation and its translations to all locales. More info about this can be found&nbsp;<a href=\"https://make.wordpress.org/project/2023/09/06/documentation-translation-localization/\" target=\"_blank\" rel=\"noreferrer noopener\">here</a>.</li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcripts</h2>\n\n\n\n<span id=\"more-16454\"></span>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello everyone. And welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it and get a small list of big things coming up in the next two weeks.</p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28] (Intro music)</p>\n\n\n\n<p>[00:00:40] <strong>Josepha:</strong> Today, we&#8217;re going to take a listen to last year&#8217;s episode about Openverse and the Photo Directory. A lot has changed in that project, well in, in both of those projects since then. For instance, the Photo Directory just passed a 10,000 photo milestone. And Openverse, in the past year, got their own URL and have been hard at work strengthening the reliability of their APIs.</p>\n\n\n\n<p>[00:01:03] <strong>Josepha:</strong> But for some folks, it might still be a little unclear just what the difference is between these two projects. So let&#8217;s take a listen, and don&#8217;t forget to catch the updated small list of big things at the end of the episode.&nbsp;</p>\n\n\n\n<p>[00:01:13] (Music interlude)</p>\n\n\n\n<p>[00:01:21] <strong>Josepha:</strong> About 18 months ago, the Openverse project became part of the WordPress open source project, and at roughly the same time, we also welcomed in the Photo Directory.</p>\n\n\n\n<p>Since that time, we&#8217;ve seen growth of teams supporting both of these initiatives. But if you&#8217;re not involved in the day-to-day, it can be hard to know how those two things fit together or if they fit together at all.</p>\n\n\n\n<p>[00:01:41] <strong>Josepha:</strong> Today, let&#8217;s take a brief tour of those two projects and why they came to be.&nbsp;In my timeline, work on the Photo Directory started before the work on Openverse, so that&#8217;s where we&#8217;ll start.</p>\n\n\n\n<p>For as long as I can remember, the WordPress community has raised the need for WordPress-first ways to have and host GPL-compatible photos for use in themes, site builds, and marketing efforts as a whole. As recently as 2016, that was still coming up as a question at various flagship events and among the career photographers that contribute their time to WordPress.</p>\n\n\n\n<p>[00:02:13] <strong>Josepha:</strong> So, in 2017 and 2018, as attention started to turn toward rebuilding the CMS using blocks, it dropped down the list of priority items. But it never really went away as a thing that people were hoping we could do for the project as a whole. So in 2019, it was becoming clear that having open source-first tools of all varieties for people whose businesses were built on our software would help broaden the availability of the open source freedoms we believe in.</p>\n\n\n\n<p>This began the work on the Photo Directory with the intention of providing a GPL-friendly, community-driven repository of images. It has since launched, and we have photos in it now. We have a whole team around it. It&#8217;s wonderful. But that is how that all kind of came to be.&nbsp;</p>\n\n\n\n<p>[00:02:58] <strong>Josepha:</strong> Openverse, on the other hand, was launched as CC Search in 2019 with the laudable mandate to increase the discoverability and accessibility of open access media.</p>\n\n\n\n<p>Late in 2020, while work on the Photo Directory was underway, Matt shared with me that the team was looking for a new project home. When I first met with them, they shared an overview of the product, which they shorthanded as an open source search engine that searches openly licensed images. We were working on a repo of openly licensed images, so clearly, this was all written in the stars. And so you might be asking yourself at this point, great, how does it work together?</p>\n\n\n\n<p>I think for most of us, the timeline there kind of covers the question of what is the difference between these two things.&nbsp;</p>\n\n\n\n<p>But because I never know which of you will want to strike up a conversation about open source on an elevator, I&#8217;ve also got the elevator pitch version as well.&nbsp;</p>\n\n\n\n<p>[00:03:52] <strong>Josepha:</strong> Openverse is an open source search engine that searches, indexes, and aggregates copy left media from across the web using sources such as WordPress&#8217;s Photo Directory, Flickr&#8217;s CC Tagged Media, and Wikimedia, to name just a few.&nbsp;</p>\n\n\n\n<p>Another key difference between the Photo Directory and Openverse is that in order to contribute to the Photo Directory, now that it&#8217;s all built, that&#8217;s mostly done by submitting photos or reviewing photos. So, you don&#8217;t really need to be a developer to join in.&nbsp;</p>\n\n\n\n<p>Openverse not only is a developer-centric contribution opportunity, but it also uses a different tech stack than WordPress as a whole. So, it&#8217;s a good place for folks to go if they&#8217;re looking to broaden their horizons.</p>\n\n\n\n<p>[00:04:37] <strong>Josepha:</strong> So that&#8217;s your elevator pitch of what is Openverse and how does it use the Photo Directory.&nbsp;</p>\n\n\n\n<p>You have a couple of ways that you can get involved with these two projects. For the Photo Directory, as I mentioned at the start, you can always contribute photos, and they could always use more photo contributions.</p>\n\n\n\n<p>I&#8217;ll include a link to the submission guidelines in the show notes below, and as I mentioned, it is a no-code way to give back to the WordPress project. So, no code is required, no development environments, no testing skills. The Photo Directory team also could always use more contributors to help with the moderating of photo submissions.</p>\n\n\n\n<p>And so I&#8217;ll link to their making WordPress page in the show notes as well so that you can get started there.&nbsp;</p>\n\n\n\n<p>[00:05:22] <strong>Josepha:</strong> And as I mentioned before, Openverse is an aggregator, so it doesn&#8217;t host any media itself, but it is always accepting suggestions for new GPL-compatible media providers. I&#8217;ll link the area where you can leave suggestions in the show notes as well.</p>\n\n\n\n<p>And if you are more code-inclined, there&#8217;s an open issue for adding Openverse browsing to the block editor right now.&nbsp;&nbsp;</p>\n\n\n\n<p>So I&#8217;ll link that issue in the show notes in case you thought to yourself, gosh, that sounds like my most favorite thing to do. That is where you can go.&nbsp;</p>\n\n\n\n<p>[00:05:53] (Music interlude)&nbsp;</p>\n\n\n\n<p>[00:06:01] <strong>Josepha:</strong> And that brings us now to our November 2023 small list of big things.</p>\n\n\n\n<p>[00:06:07] <strong>Josepha:</strong> The first thing that&#8217;s on the small list of big things this week is that the countdown is on for this year&#8217;s State of the Word. If you missed the initial announcement a few weeks ago, you&#8217;ll want to mark your calendars for December 11th, 2023. State of the Word will include a Q&amp;A session, and if you want to participate, you can send your question to ask-matt@wordcamp.org.&nbsp;Or, ask during the event via the Q&amp;A app Slido. A QR code for your submission will be provided during the event live stream, so if you&#8217;re choosing that option, don&#8217;t worry; there&#8217;s not anything to do right this second.&nbsp;</p>\n\n\n\n<p>[00:06:40] <strong>Josepha:</strong> The second thing on the list is that WordCamp Asia has extended their call for sponsors for the conference that is slated to take place in Taipei, Taiwan, March 7th through 9th, 2024. The new deadline has been extended to November 30th, 2023, and so if you have been on the fence about whether to sponsor that event or not, for one, please do sponsor it, and for two, you still have a little bit of time to get over there and show your support.</p>\n\n\n\n<p>[00:07:05] <strong>Josepha:</strong> And then the last thing on the small list of big things is that the documentation team now has a new GitHub repo created for end-user documentation and its translations into all locales. For more information about this, come check out the show notes. I will have a link right there for you. And that, my friends, is your small list of big things.</p>\n\n\n\n<p>[00:07:26] <strong>Josepha:</strong> Don&#8217;t forget to follow us on your favorite podcast app or subscribe directly on WordPress.org/news. You&#8217;ll get a friendly reminder whenever there&#8217;s a new episode. If you liked what you heard today, share it with a fellow WordPresser. Or, if you have questions about what you heard, you can share those with me at wpbriefing@WordPress.org. I&#8217;m your host, Josepha Haden Chomphosy. Thanks for tuning in today for the WordPress Briefing, and I&#8217;ll see you again in a couple of weeks.&nbsp;</p>\n\n\n\n<p>[00:07:51] (Music outro)</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Nov 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"Do The Woo Community: Meetups and State of the Word Watch Parties with Devin Maeztri\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78556\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://dothewoo.io/meetups-and-state-of-the-word-watch-parties-with-devin-maeztri/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:432:\"<p>Devin Maeztri joins us as a new host and shares more about meetups and how to put together a State of the Word 2023 watch party.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/meetups-and-state-of-the-word-watch-parties-with-devin-maeztri/\">Meetups and State of the Word Watch Parties with Devin Maeztri</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Nov 2023 09:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"Gutenberg Times: Gutenberg Changelog #93 â€“ Gutenberg 17.1, Command Palette, Data Views and Grid Layout\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=26509\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-93-gutenberg-17-1-command-palette-data-views-and-grid-layout/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:64615:\"<p>In this episode, Isabel Brison and Birgit Pauli-Haack discuss Gutenberg 17.1, the Command Palette, experimental Data Views and Grid Layout</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#transcript\">Transcript</a></p>\n\n\n\n<ul>\n<li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li>\n\n\n\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\">Special guest: Isabel Brison </h2>\n\n\n\n<ul>\n<li>GitHub <a href=\"https://github.com/tellthemachines\">@tellthemachines</a></li>\n\n\n\n<li>WordPress <a href=\"https://profiles.wordpress.org/isabel_brison/\">@isabel_brison</a></li>\n\n\n\n<li>X (former Twitter) <a href=\"https://twitter.com/ijayessbe\">@ijayessbe</a></li>\n</ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/11/getting-started-with-the-command-palette-api/\">Getting started with the Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/11/20/design-share-nov-6-nov-17/\">Design Share: Nov 6-Nov 17</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/11/22/plugin-directory-preview-button-revisited/\">Plugin Directory: Preview button revisited</a></li>\n</ul>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/11/22/whats-new-in-gutenberg-17-1-22-november/\">Whatâ€™s new in Gutenberg 17.1 (22 November)</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/11/whats-new-for-developers-november-2023/\">Whatâ€™s new for developers? (November 2023)</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/49018#top\">Try adding a grid layout type</a>#49018</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/56237#top\">Dataview: media view</a>#56237</li>\n\n\n\n<li>GitHub Label <a href=\"https://github.com/WordPress/gutenberg/labels/%5BFeature%5D%20Data%20Views\"><strong>[Feature] Data Views</strong></a></li>\n\n\n\n<li></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<ul>\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hello, and welcome to our 93rd episode of the Gutenberg Changelog podcast. In today&#8217;s episode, we will talk about Gutenberg 17.1, the command palette, data views, grid layouts. A lot of good things. I&#8217;m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and a full-time core contributor for the WordPress Open Source project sponsored by Automattic&#8217;s Five for the Future Program.</p>\n\n\n\n<p>Wow, that&#8217;s a mouthful. I&#8217;m so happy to have Isabel Brison with me. She&#8217;s a JavaScript developer at Automattic, working on Gutenberg as a core contributor. Editor co-lead for 6.3. WordPress 6.3 release in August. And also, she mentored the cohort editor tech and triage for 6.4, which just came out at the beginning of November. So, greetings to Sydney, Australia. How are you today, Isabel?</p>\n\n\n\n<p><em>Isabel Brison</em>: Hi. Hello. Very good. Just getting towards the evening, end of the day here. And yeah. Doing pretty well. Thanks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Excellent. Yeah. Well, I just got up. Just so everybody knows, we are an around the globe operation here. And it&#8217;s now 9:30 on November 24th in Europe. And Isabelle, it&#8217;s about 7 o&#8217;clock at your place?</p>\n\n\n\n<p><em>Isabel Brison</em>: Yeah, it&#8217;s 7:30 here.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: 7:30. Yeah. So, let&#8217;s get started. We have a lot of things to talk about.</p>\n\n\n\n<p><em>Isabel Brison</em>: Yes.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Community Contributions &#8211; Command Palette</h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: But first we have &#8230; Before we go into the changelog of the latest Gutenberg plugin, let&#8217;s talk about other things that happen in the community. The first one is Justin Tadlock published a tutorial on how to create your own commands with the command API. It&#8217;s an introductory tutorial, and it shows you how to create &#8230; If you want to open up the Experiments page, you can do this with a plugin.</p>\n\n\n\n<p>So, you put all the commands in one plugin, and then you activate it. And then, you have command for opening the Experiments page. Or it also has toggle the panel command or toggle the user preference commands. And the last one is also toggle the panel command, but it has some additional sidebar notices in there. Not sidebar. Snack bar. Snack bar are the ones that are on the bottom of screen. So, you know, &#8220;Okay, something happened.&#8221; Sometimes, with a command palette, sometimes, you don&#8217;t get a notification back, something happened. So, adding the snack bar notices is also in the tutorial. So, this is a great way to get started. And there is an advanced article to come, as well, to use command loaders to have additional or a little bit more, how would I say, functionality with it without just opening up and down certain features.</p>\n\n\n\n<p><em>Isabel Brison</em>: Yeah. This is pretty cool because, I guess, you can open any page. You can open setting &#8230; You can toggle settings from it. And say you&#8217;re a plugin. You could potentially add a command to the palette where you can direct people to your plugin page.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, for own plugin. Of course, yeah. You can add that as an additional feature to your plugin to provide also commands for the command palette. I think that&#8217;s really cool. I&#8217;m waiting for the point, but I&#8217;m always waiting. I&#8217;m waiting to the point where I can daisy chain those commands, so certain workflows can happen on key press with the shortcut. Yeah. So, I can say, &#8220;Okay. Now, give me a separator block and use that particular variation.&#8221; And it would save me three clicks on the mouse on a weekend edition that has, I don&#8217;t know, 15 sidebars in there. So, it will be quite a saving, but yeah.</p>\n\n\n\n<p><em>Isabel Brison</em>: Oh, workflows. That would be pretty cool. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I don&#8217;t know if that&#8217;s &#8230; I think that&#8217;s part of the idea for the command palette later on, maybe. Yeah. Or maybe that&#8217;s plugin territory. We&#8217;ll see what comes out of it.</p>\n\n\n\n<p><em>Isabel Brison</em>: I was just thinking and just wildly speculating here, but with all the talk about AI that&#8217;s been happening in the past 12 months or so, you can imagine that that would be a flow where you could just &#8230; In the future, you would be able to just open it up and go, &#8220;Oh, give me this, that, and that.&#8221; And your AI assistant would pull it up like a bunch of translate what you said into blocks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah. You could certainly use that search box on the command palette also to create AI commands, and then what comes back in the lower section of the command palette would be some cool stuff. Yeah, some pictures that you were looking for or some &#8230; Oh yeah, some summaries or text or translations. Yeah. Yeah. Let&#8217;s wildly speculate on the command palette for &#8230; I love it.</p>\n\n\n\n<p>So, Joen Asmussen, who is part of the WordPress design team, has published his Design Shares that is just showcasing the things that the team is working on or has been working on in the last two weeks. If you want to follow the design make blog, you will get notifications every two weeks and to see what&#8217;s going on, because the design team not only makes things pretty, it also thinks through some of the workflow and some of the, &#8220;How should this work, and how does the interface work with that?&#8221;</p>\n\n\n\n<p>And so, you get a glimpse into the future for certain things. And he starts out with the sticky table elements. That&#8217;s for the data views or the admin list views. That&#8217;s how the header column and pagination, and also that the data inside each cell&#8217;s always integrated and the pagination is locked in the same position.</p>\n\n\n\n<p>So, then, also, to new and URL popover, tightening up the user interface. They&#8217;re working out, also, on the open source audio component for the Creative Commons site, which looks really nice. I really like that.</p>\n\n\n\n<p><em>Isabel Brison</em>: Oh.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And then, some great iterations over a dropdown menu. That is a new component, and you can follow along that and you see what kind of details the team is working on for any of those interface components that not only power Gutenberg or the plug editor, but also are used by plugin developers for their own interfaces if they choose so. So, this is definitely a great insight into how much work and thought goes into some of the interfaces.</p>\n\n\n\n<p><em>Isabel Brison</em>: Oh, definitely. And dropdowns are such a hard area. It&#8217;s so hard to get right. And I mean, speaking from the experience developing in Gutenberg for years, and there have been so many problems with the popover component positioning, and there is so many bugs that we&#8217;ve had to fix. So, I&#8217;m really looking forward to the next iteration of dropdowns, and especially with these flyovers &#8230; I mean, a way of making the dropdowns when they&#8217;re nested easier to navigate. I think that&#8217;s really important.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Yeah. And it&#8217;s not only for menus. It&#8217;s for all kinds of interfaces that come in and out of the sidebars and from the top bar and all that. So, yeah. That&#8217;s definitely some great work that we can see there. They also worked on a range date picker. That&#8217;s more for plugins? I&#8217;m not quite sure. Yeah. The range picker is something that you get when you book a flight or a hotel where you say, &#8220;Okay, I go from November 11 to December 13,&#8221; and you have the range to pick. It&#8217;s an initial sketch and, yeah, it&#8217;s definitely something plugin can &#8230; I don&#8217;t know. I&#8217;m really having a hard time picking where in Gutenberg that might be helpful.</p>\n\n\n\n<p><em>Isabel Brison</em>: Yeah, I was trying to think where we deal with dates. I mean, post publishing doesn&#8217;t usually need a range, so I&#8217;m wondering if there&#8217;s &#8230; Oh, no, actually &#8230; So, possibly, because I think maybe that will have someplace in the data views where &#8230; Again, I&#8217;m wildly speculating here, but I imagine with &#8230; Because there&#8217;s a fair amount of thinking being done around how to actually make the data views be good to organize data and to organize content. And so, potentially, you&#8217;d think you might be able, at some point, to pick, say, a range of posts from this date to that date or something like that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Right. Yeah. Would make sense. Yeah.</p>\n\n\n\n<p><em>Isabel Brison</em>: And then, having a range date picker could be useful.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. It could be useful for bulk edits, for instance, or just for viewing, say, &#8220;Okay, all the posts around Thanksgiving, give them a Thanksgiving kind of tag&#8221; or something like that. Yeah. Bulk things. Yeah. But yeah, you&#8217;re right. Yeah, that could be for some of the admin components. Yeah.</p>\n\n\n\n<p>And then, the styles panel where &#8230; There&#8217;s an interesting iteration of the styles panel work where you can have it all on the left-hand side of the site editor. And right now, the style work is all on the right-hand side of the editor, but now you have a middle column between the content and the menu where you can edit or change the colors and the font and this kind of thing. So, that&#8217;s a nice iteration. We&#8217;ll see how far that gets into the editor.</p>\n\n\n\n<p><em>Isabel Brison</em>: I see that this styles panel &#8230; This is referring to what, in my head, I still call global styles.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Isabel Brison</em>: Okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And it&#8217;s also a combination between the global styles as you know it and the style book. And then, have the sidebar on the left-hand side, so it has more connection between which entity you are actually editing.</p>\n\n\n\n<p><em>Isabel Brison</em>: Because right now, on the left-hand sidebar, we have, in the site editor, we have a style section that allows you, if the theme has style variations, to pick a theme style variation. So, that&#8217;s &#8230; It&#8217;s weird that we have the styles on that side, and then we have the global styles on the other side. So, yeah. Potentially, it would be nice to have everything in one place.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And especially about the style variations &#8230; Once you have your theme selected and you select the style variations, then it&#8217;s too prominent in the menu because you don&#8217;t need it anymore. It can be hidden for something until you need it again. And I think that&#8217;s also part of the rethinking how the left menu items work in terms of order of importance or context sensitive. I don&#8217;t know. These are some of the thinking behind that. And it comes through some of the GitHub issues where say, &#8220;Hmm. Yeah. Shouldn&#8217;t we be smarter, or shouldn&#8217;t the system be smarter to hide that when you don&#8217;t need it anymore?&#8221; But that mind reading business is such a hardâ€¦</p>\n\n\n\n<p><em>Isabel Brison:</em> Oh, yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230; such a hard tour.</p>\n\n\n\n<p><em>Isabel Brison</em>: Mind reading? Very hard, very hard. Even with AI.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And then, we are still in the design shares by Joen, and he also has a link for the events redesign. There&#8217;s &#8230; under the community section where the meetups and the WordPress, the WordCamps &#8230; they&#8217;re working on an events page or events section that is a little bit more modern than what we have right now. And it&#8217;s a nice iteration, and it&#8217;s really coming together. So, yeah. The community team is working very hard with the design team to get this done.</p>\n\n\n\n<p>And then, there is a mockup. We found a mockup for something that was actually missing in the site editor, that &#8230; these are the settings around the homepage that are in the general settings, but actually totally removed from all the homepage templates, kind of thing, so &#8230; and page edits. So, this is going to &#8230; might be &#8230; It&#8217;s a quick mockup to bring those settings in also into the site editor.</p>\n\n\n\n<p>Yeah. So, those were Design Shares. And I always like to do &#8230; Go in there and look at it even for &#8230; Well, and this was the first, again, that we did it on the podcast because, of course, it&#8217;s visual and, on the podcast, you don&#8217;t see anything. We can&#8217;t show it to you. But I really urge you to, of course, share the link in the show notes. But take a look at that. It&#8217;s really very interesting for me and exciting. And when you follow every two weeks, you get an idea of where things are going and what people are working on.</p>\n\n\n\n<p>And then, the last thing I wanted to point out for you, dear listeners, is that the plugin directory &#8230; About six weeks ago, there was this little kerfuffle that there was a live preview button enabled on the plugin directory, but it wouldn&#8217;t work for all plugins. And what it does, it opens up the WordPress playground, installs the plugin so a user can actually test out the plugin in a live environment without having to set up a test site or put it on their production site or any of that. So, it&#8217;s a really cool feature in my view.</p>\n\n\n\n<p>And Alex Shiels, who&#8217;s a longtime member of the Meta Team, enabled it, and it was actually a smart move because, within a day or so, he had all the feedback he needed to take it down again and revamp it, and then come out with it in a way that the plugin developers can work with it. And on the Meta blog, he just published that the preview button is now available for plugin developers, for the plugin maintainers to create a blueprint file on what is all needed for the test site, for the playground to be a good test site for that plugin.</p>\n\n\n\n<p>And they can test it out. They can configure the playground with a blueprint file. And then, once it fits our needs, they can opt in for themselves. And then, later on &#8230; That&#8217;s not yet implemented. They can open it up to their users. So, there&#8217;s a double opt-in for that feature, but it had all the &#8230; So, it&#8217;s all in the control of the plugin developer. But if you are a maintainer of the plugin developer, any feedback you have about this, leave it on the post. They&#8217;re very grateful for it to make this better and better and better.</p>\n\n\n\n<p><em>Isabel Brison</em>: Yeah, absolutely. It&#8217;s a feature where you really need plugin developers to test it and make sure that it works for their use case because there are so many different types of plugins. And I think, from memory, one of the problems that was flagged initially was that some plugins have dependencies, so they don&#8217;t do anything in isolation, and having a preview just doesn&#8217;t work unless you can configure the proper environment to have that preview in. And so, I think that&#8217;s one of the features that have now been added is that each plugin developer can configure the optimal environment for their plugin to run it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Exactly. Yeah.</p>\n\n\n\n<p><em>Isabel Brison</em>: &#8230; which makes perfect sense.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it has a few &#8230; So, the blueprint.JSON &#8230; It&#8217;s a JSON file that you can have the steps that the playground needs to make to be a good demo site, be it a plugin install, be it a open up &#8230; In the block editor, for instance, if it&#8217;s a block or a block editor feature to see it right away and not have to go through, &#8220;Okay, this is the admin. This is the login. This is &#8230;&#8221;. You get right to the point of it. It&#8217;s really neatly done. So, yeah. Check it out as a plugin developer. Again, it&#8217;s not yet open to the public.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Whatâ€™s Released &#8211; Gutenberg 17.1<strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</strong></h3>\n\n\n\n<p>All right. This brings us to the section, what&#8217;s released. And right now, we&#8217;re talking about Gutenberg 17.1. Andre Maneiro was the release lead. And it has PRs from 55 contributors, three of them new. Yay. And they submitted about 200 PRs that are merged in this version.</p>\n\n\n\n<p>Andre writes, &#8220;The release includes several new enhancements, loads of bug fixes, and continued work on Phase 3.&#8221; The release post is, of course, in the show notes, and let&#8217;s just dive in. And yeah, say in the foreground though, it&#8217;s more quality of life and bug fixes than anything else apart from the data views. But we can talk about it a little bit later about that.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p>So, the first item I have highlighted is that the template parts now have a fallback to the current theme when it&#8217;s not provided. So, that is just make it all a little bit more predictable and not running into errors or confusion for the user. So, if a template part &#8230; If a header isn&#8217;t &#8230; What is that exactly? So &#8230; Go ahead.</p>\n\n\n\n<p><em>Isabel Brison</em>:The template part. If there is a template part referred that doesn&#8217;t actually exist, then it will fall back to a default template? I didn&#8217;t actually read it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that comes from the theme. Yeah. So &#8230;</p>\n\n\n\n<p><em>Isabel Brison</em>: I&#8217;m not sure how the internals work.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. No, it&#8217;s the fallback is directly to the theme part that comes closest, pretty much. It&#8217;s a performance enhancement to make sure that searching for something that&#8217;s not there doesn&#8217;t slow things down. And now, the next one that I wanted to point out was that the site editor now also shows theme patterns from the directory, showing things from the directory. It wasn&#8217;t built into the site editor yet. It wasn&#8217;t the post editor. So, any post and pages. You were able to add things, point out to the &#8230; So, the theme has &#8230; In the theme JSON can point to patterns that are in the directory, and they would show up in the pattern section of the post editor, but they wouldn&#8217;t in the site editor, and that&#8217;s now fixed. Does that make sense?</p>\n\n\n\n<p><em>Isabel Brison</em>: Yeah, that&#8217;s great. Yeah, yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So, for the theme, it means the theme developer doesn&#8217;t have to bundle all the patterns with theme if they put it up on the directory and then just can refer it to it with the slug. And that&#8217;s a nice way to do it.</p>\n\n\n\n<p><em>Isabel Brison</em>: Yeah, that&#8217;s also &#8230; I mean, that can also be considered or &#8230; Maybe not performance enhancement in itself, but it does make things easier if you want to create a performance theme so you don&#8217;t have a dozen, or I don&#8217;t know, a hundred patterns bundled into the actual theme.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. That&#8217;s true. Yeah. But, of course, they all need to follow the same mechanism. So, if you have more than one theme and you want to refer the same patterns in the directory, it also streamlines your processes a bit. So, there are a few things that are coming for the globalized revisions. So, revisions are something that were supposed to come into 6.4, but they didn&#8217;t make it because it was such a huge project that the two months of development time wasn&#8217;t enough. But it&#8217;s definitely slated for 6.5 and, now, there are improvements with every Gutenberg plugin release.</p>\n\n\n\n<p>This time, we have a consistent back button behavior and the scripted text timeline for the revisions. And also, it loads unsafe revision items in the revisions preview, even if you haven&#8217;t clicked on Save. So, that definitely helps you not losing content or changes. Those global style revisions are so useful, and I&#8217;m looking forward to seeing them in WordPress.</p>\n\n\n\n<p><em>Isabel Brison</em>: So, there is a version of revisions. There&#8217;s a very basic global styles revisions already available in 6.4, which you can &#8230; From global styles or styles &#8230; I always call it global styles because styles is just so vague. Styles revisions. There&#8217;s a little section in here, and you can look at the revision history.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So, it was in 6.4, but not fully fledged out. Yeah.</p>\n\n\n\n<p><em>Isabel Brison</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You&#8217;re right. Yeah.</p>\n\n\n\n<p><em>Isabel Brison</em>: So, it&#8217;s ongoing. So, there&#8217;s a very basic version that&#8217;s been merged in 6.4. There is a lot more optimization, UI improvements, making the whole experience smoother that is still being worked on and due for 6.5.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I think the revisions on posts are so old. They don&#8217;t know anything about blocks. So, it&#8217;s really hard to make a good, informed decision on how that&#8217;s actually going to look visually when you have to show style. So, going from one place to the next and see how that fits in and does it work? I think it&#8217;s a longer iteration process than one would seem. And that &#8230; Yeah.&nbsp;</p>\n\n\n\n<p><em>Isabel Brison</em>: Yeah, totally. Because for the post edit &#8230; So, if you&#8217;re revising your content, if you&#8217;re looking at the revisions for posts, you still get that. Basically, it&#8217;s the classic WordPress admin interface where you see a diff of the content, but it appears in markup form and that gives you no clue. I mean, especially if you have a lot of blocks on the page and you&#8217;ve changed the attributes and you&#8217;ve changed the blocks. And you just have to go and read through all that markup, and there&#8217;s no way of seeing the difference visually, which is important when there&#8217;s a very visual-oriented tool, which is the block editor. So, yeah. That will be great. That&#8217;s still to come, being actively worked on.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Then, the block editor has the button block got a simple thing, we would think, but it&#8217;s &#8230; because our muscle memory. So, now, if you use double enter, you skip to the default block and it doesn&#8217;t repeat the design of the other block. Is that what I&#8217;m reading there?</p>\n\n\n\n<p><em>Isabel Brison</em>: There&#8217;s a keyboard shortcut for the button block. Yeah. So, buttons are interesting because, a while ago, it was decided that, if you change a style on a button &#8230; Say, if you change button to another style variation, you will probably want the next button to have the same style and you might not. So, the double enter thing. I&#8217;m not quite sure how it works because when you click enter from one button, you go into the next button, usually. Right? So, double enter.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: If you do double enter, it skips the styles and goes to a default block way.</p>\n\n\n\n<p><em>Isabel Brison</em>: But to a default button block? Is that what it does? Sorry. It&#8217;s just not veryâ€¦</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So, double enter at the end of a button block.</p>\n\n\n\n<p><em>Isabel Brison</em>: &#8230; clear to figure out what it does.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230; moves back to the next line so you continue typing. Double enter in the middle of button blocks.</p>\n\n\n\n<p>Isabel Brison: Oh, it takes you out of the button block. Oh. Oh, that&#8217;s brilliant. Yes. I see. Cool. Cool. So, it has nothing to do with the button styles. It&#8217;s all about making it easier to add another block that&#8217;s not a button after the button block.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p><em>Isabel Brison</em>: Oh, that&#8217;s great. Yeah. Oh, I&#8217;m all for keyboard improvements all the time.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Default block, not default button. I read it wrong. Yeah, I&#8217;m kind of &#8230; Yeah. Okay. That&#8217;s a really good behavior. And I knew it was something that I was actually expecting to be because we know it from the list view. We know it from the list block. We also know it from other blocks that, when you do double enter, you&#8217;re out of that whole inner block behavior, like the social blocks, and then you go out. And I just read it wrong all of a sudden.</p>\n\n\n\n<p><em>Isabel Brison</em>: Oh, that is such a great improvement.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And it&#8217;s like &#8230; Some of the things where I say, &#8220;Why wasn&#8217;t it before?&#8221;&nbsp;</p>\n\n\n\n<p><em>Isabel Brison</em>: Yeah. Well, it&#8217;s an iterative process. Yeah, true. There are all these &#8230; And sometimes, it&#8217;s just tiny things make the experience so much better, but they&#8217;re not always obvious. And sometimes, they&#8217;re actually not very easy to implement. In this case, I don&#8217;t know. I didn&#8217;t actually look at the pull request for this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And a similar thing is actually the next one for the design tools where we get block gap support for the quote block. And so, now, it has a good layout support, and you can better control the spacing of the inner blocks. Yeah.</p>\n\n\n\n<p><em>Isabel Brison</em>: Well, that one was actually easy to implement. I know because I like it myself. So, someone else did. So, another contributor submitted a pull request to add layout support to the quote block. This was Tomoki Shimo Mura. I hope I&#8217;m saying the name correctly. And so, that added basically support to the quote block, and that means that quote will automatically use the default block spacing. And that is good because it brings it in line with whatever the default theme block spacing is. So, it&#8217;ll have the same kind of spacing that other blocks have between them by default.</p>\n\n\n\n<p>But then, I and a few other contributors reviewed that pull request, and we started talking, &#8220;Well, what would be great would be to actually give explicit block spacing support to the block.&#8221; Because now that it is using the default block spacing, it would make sense that, if people want to change it, they have the control available. So, that was just sort of a little follow-up, and it was literally one-liner. Just adding support for block spacingâ€¦</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, and this isâ€¦</p>\n\n\n\n<p><em>Isabel Brison</em>: &#8230; which made sense.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230; blocks JSON? Yeah.</p>\n\n\n\n<p><em>Isabel Brison</em>: So, now, you can change. So, now, by default, it will have whatever the default theme spacing, block spacing is. And if you want, you can go into your quote block, and you can change the spacing to make it bigger or smaller as you design.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Now, we get also &#8230; So, for the list view, we now have a keyboard shortcut to select all blocks. It follows the common keyboard shortcut for Select All. So, it&#8217;s either Command-A or Control-A. Command-A for Mac, and Control-A for Windows. To select all the blocks that are in the list view. And that&#8217;s really good, especially when you just hit delete and then gone!</p>\n\n\n\n<p><em>Isabel Brison</em>: Love a good keyboard shortcut. Command-A Delete. Yes.</p>\n\n\n\n<h3 class=\"wp-block-heading\">New APIs</h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And then, next one is actually a good thing. It sounds so technical, but it&#8217;s the Download blob: remove download js dependency. But what it actually does is &#8230; Found that when you export the patterns, the former reusable block being synced patterns now &#8230; When you export them and use the JSON to upload them, it works. But if you do this with other patterns, the synced patterns, somehow, it used the different JSON package, whatever, and it was malformed JSON. And now, they streamlined the same mechanism for both of the downloads and exports for the patterns.</p>\n\n\n\n<p>So, that was interesting experience that it was implemented in both, but then one implementation worked and the other didn&#8217;t. Now, we found out which one is the right one and streamlined it. Sometimes, it is a clear path forward on certain bugs, and sometimes it&#8217;s not. But this was clear.</p>\n\n\n\n<p><em>Isabel Brison</em>: Yeah. Oh, yeah. That&#8217;s good.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Bug Fixes</h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Speaking of patterns, now you can actually add embed blogs to your patterns, and they render correctly on the front end, which was &#8230; I think, even in the block editor, that wasn&#8217;t always a given that you could use a certain video in the patterns or a certain social post in the pattern. It would only display the link for that, but it didn&#8217;t process the embed. So, now, it does. And that&#8217;s a really good enhancement there.</p>\n\n\n\n<p><em>Isabel Brison</em>: Yeah, this brings it in line with templates. I guess patterns was one of the areas where it was probably one of, I guess, the last remaining area where embeds weren&#8217;t being processed because there&#8217;s already logic in place to process them in templates and widgets and things like that. So, this made perfect sense.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And now &#8230; Well, we are a travel from all the different things to all patterns, like template parts are patterns. Reusable blocks are patterns. Patterns are patterns. And people are working on the partially synced patterns. So, it&#8217;s all &#8230; Pattern is what makes it stick now.</p>\n\n\n\n<p><em>Isabel Brison</em>: Yeah. I think it&#8217;s a good thing in general. I mean, we&#8217;ve had reusable blocks for ages, and patterns was a new version, but they&#8217;re very similar in, I suppose, the ways that they&#8217;re used in their use cases, I should say. And so, it does make sense for them to be one thing, and you can choose whether they&#8217;re synced, whether they&#8217;re not, whether they&#8217;re partially synced, I guess.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Yeah.</p>\n\n\n\n<p><em>Isabel Brison</em>: So &#8230; It&#8217;s good to provide a range of options, but I definitely appreciate having the renaming of reusable blocks to patterns so that we all know that we&#8217;re talking about the same thing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And the only so difference from just which content updates and which doesn&#8217;t. Yeah. So, the next item &#8230; It&#8217;s just a code quality or quality of What You See Is What You Get editor that you can now see the post image block is now wrapped in anchor tags, is also in the editor, not only on the front end but also in the editor. So, you know it&#8217;s actually working and functioning, kind of thing.</p>\n\n\n\n<p><em>Isabel Brison</em>: Oh, yeah. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. The What You See Is What You Get editor is a promise, and sometimes it falls down.</p>\n\n\n\n<p><em>Isabel Brison</em>: It&#8217;s good to have consistency. It&#8217;s hard. It&#8217;s a hard problem sometimes because the markup. The editor is an editor ultimately, and you have to have content edits all over the place because the content has to be editable, obviously. And so, there can&#8217;t always be a one-to-one match between the markup in the editor in the front end, but the more divergent it becomes, the more chance there is for bugs to be introduced and for them not to be a visual match. So, we are always trying to make sure it works. It&#8217;s a very fine line.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. It&#8217;s very interesting. Sometimes, you encounter problems when you solve something on the front end, but then you get it into the editor and then it doesn&#8217;t work anymore. So, one example was that the gaps between the blocks &#8230; You could actually switch off, and all controlled through the interface.</p>\n\n\n\n<p>But what happened was, now that the space between the blocks wasn&#8217;t big enough, the siblings insert between didn&#8217;t have a place to show anymore. So, that was an interesting &#8230; I don&#8217;t know if you have an issue for that, but it came up in one of the calls for testing, and it was really interesting to &#8230; Yeah. Well, yeah. What You See Is What You Get, then it&#8217;s not what you see.</p>\n\n\n\n<p><em>Isabel Brison</em>: It&#8217;s actually &#8230; It&#8217;s What You See Is Not What You Want To Get, I guess, because you still want to see &#8230; I don&#8217;t want to have space between the blocks, but I do want the sibling insert to appear because I do actually need to add something between these two blocks.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And sometimes, you have these competing interests to line up &#8230; Just a little tangent here.</p>\n\n\n\n<p><em>Isabel Brison</em>: So, what do we have?</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility</h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The next is a component for the &#8230; There&#8217;s the image link button pressed state on the media text block. Sometimes, the headlines are a little bit obscure. So, in the image block and in the media text block, when the image is linked, the link button in the block tool doesn&#8217;t have a pressed state. Okay. So, as such, there&#8217;s no visual semantic accessible information for the image to actually be linked. Okay. That is fixed. Cool. Yeah, that&#8217;s an important accessibility issue fixed. And then, another one.</p>\n\n\n\n<p><em>Isabel Brison</em>: I&#8217;m just going through and trying out all the things. Adding a link to an image and seeing &#8230; Oh, yeah. I see. So, now, it actually becomes obvious that there&#8217;s something in here. So, now, the button &#8230; It becomes a dark background, light-colored text. I think this is the change. Oh, that&#8217;s cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. The next one is a similar one. It helps you get your focus back when you&#8217;re on the toolbar and use the Escape key and then you get back to the editor canvas, and you don&#8217;t have to tap around the thing. Escape gets you out of the block tool. It&#8217;s interesting.</p>\n\n\n\n<p>For those who are more keyword users, that&#8217;s definitely a good problem to solve. And that&#8217;s the piece that goes with a double Escape coming out of a button block into the canvas. Again, that&#8217;s a similar one when you block toolbar doesn&#8217;t get you &#8230; You have to use the mouse or something like that to get out of the toolbar or tap instead of Escape. Yeah.</p>\n\n\n\n<p><em>Isabel Brison</em>: I think &#8230; memory. I&#8217;m going to test this. But I think what happened before was, if you were on the block toolbar and you pressed Escape, you would be taken into navigation mode.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, yeah. Right. Yes.</p>\n\n\n\n<p><em>Isabel Brison</em>: But actually, no. I think, now, I&#8217;m actually testing this on a 6.4 vanilla, no Gutenberg install. And what I&#8217;m doing &#8230; I&#8217;m in the block toolbar. I&#8217;m going around the buttons in the block toolbar, and now I press Escape and focus just seems to go somewhere. I&#8217;m not sure where it goes. It might actually &#8230; Ah, interesting. Okay. That was definitely a bug. Good job. It&#8217;s been fixed.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So, when you say, &#8220;vanilla 6.4, no plugin,&#8221; means that was before this release came up.</p>\n\n\n\n<p><em>Isabel Brison</em>: Yeah. So, I was comparing. So, I&#8217;ve got Gutenberg &#8230; Actually, I&#8217;ve got Gutenberg trunk on my local development environment, and I have another install of just 6.4 and I just keep comparing it and see what&#8217;s changed.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Performanc<strong>e</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: What&#8217;s changed. Yeah. So, this was the time for some of the basic accessibility things to be fixed and bugs to squash. Another one was &#8230; It actually sounds like a code quality performance, a code quality PR. But it&#8217;s under performance. And the List View Block. It has a lot of calls to the same hooks. And the code quality was to just combine those hooks, those calls, to the &#8216;useSelect.&#8217; And that actually increased performance quite a bit on the List View. So, yay.</p>\n\n\n\n<p><em>Isabel Brison</em>: Yay for all performance improvements and especially with the List View because it&#8217;s becoming more and more important to navigating in the block.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Yeah. And it&#8217;s definitely considerable when the tests were 1,000 blocks, and the call were four calls per block. So, it was 4,000 calls to the same store. It was interesting.</p>\n\n\n\n<p><em>Isabel Brison</em>: Yeah. Oh, yeah. Absolutely. Yeah, you don&#8217;t want that.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Documentation</h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So, there were two documentation issues that I wanted to point out from this release. And there was that there is a new Block Development Quick Start Guide in the Block Editor Handbook and also one for how to create the block templates for the scaffolding tool. So, if you&#8217;re a block developer and/or a budding block developer, check out the new quick start guide on your journey from becoming confused to becoming a proficient block developer. And so, that is in part of the revamp of the Block Editor Handbook that has been published. And the second one is also there is a built-in local environment with Gutenberg. It&#8217;s called wp-env, and that is now also listed under additional resources for local environments.</p>\n\n\n\n<p><em>Isabel Brison</em>: Oh, nice. That&#8217;s good. I mean, it&#8217;s a good development environment if you&#8217;re okay with running Docker, which, I guess, Docker can be pretty resource-intensive. So, it depends on how powerful a machine you have, if you want to run it or not. But if you&#8217;re okay with running Docker, then this is a really easy environment to get set up and running.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And to test whatever you&#8217;re developing on the current environment. You don&#8217;t have to set up database and PHP and connectings to and the usual MAMP things. Yeah. So, yeah. It&#8217;s definitely a good resource, and people worked on it. So, yeah. It&#8217;s been around for a while but never really mentioned in the documentation. So, now it is.</p>\n\n\n\n<p>And that&#8217;s, I think, is all we have from this release. And I guess you probably, dear listeners, agreeing with us. There was not a whole lot of big things in there. There was no big thing in there, but it was all good enhancements and &#8230; Performance enhancement as well as user interface enhancements and certain great accessibility improvements as well.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">Whatâ€™s in Active Development or Discussed &#8211; Grid Layout and Data Views</h3>\n\n\n\n<p>Which brings us to what&#8217;s in active development or what&#8217;s discussed. And this is just an announcement. Maybe we could have done it earlier, but it&#8217;s &#8220;What&#8217;s new for developers?&#8221; a roundup post is published on the developer blog.</p>\n\n\n\n<p>If you haven&#8217;t signed up for that feed, it&#8217;s a roundup post of what&#8217;s new between the 10th of the month and the 9th of the month and published on the 10th of the month. And Justin Tadlock and I were compiling that from various sources like being a GitHub, a Gutenberg release, what&#8217;s new into core, what&#8217;s around on the learn for developers. So, you can go through &#8230; It has a huge table of content, but it also gives you an inkling on what&#8217;s new, what you should pay attention to, and where things are going, and where you find the information to follow along.</p>\n\n\n\n<p>And it mentions the experimental pieces, the form and input blocks, and also the Data View works with links. And then, some major changes that came with 6.4, but this is a repeat of some of the Dev Notes condensed, but just highlighting in case you missed it. And then, moving away from the WordPress/element to React and &#8230; Yeah, all these good technical things.</p>\n\n\n\n<p>I will share a link to it in the show notes. For instance, it mentions the new Tabs component that replaces the TabPanel or the PluginPostExcerpt slot fill for plugin developers on the block editor and all that good stuff. Is there anything that stands out that you want to talk about?</p>\n\n\n\n<p><em>Isabel Brison</em>: From the developer?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The &#8220;What&#8217;s new for developer?&#8221; Yeah. We separated into what&#8217;s interesting for plugin developers and what&#8217;s interesting for theme developers. Sometimes, it has an overlap, and then it&#8217;s a toss-up. But that is where you can say, &#8220;Okay, I&#8217;m not interested in plugin stuff. I just want to see what&#8217;s new in the theme stuff.&#8221; And that&#8217;s also a pattern update.</p>\n\n\n\n<p><em>Isabel Brison</em>: Yeah. I&#8217;m very interested in seeing where the Data Views work is going. I think there&#8217;s a lot of potential for enabling. It&#8217;s already viewable as an experiment in Gutenberg. So, that&#8217;s a cool one I&#8217;ll be keeping an eye on.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So, if you want to, just as a developer, if you still have trouble, and &#8230; I think it&#8217;s getting worse that it&#8217;s hard to keep up with Gutenberg. That&#8217;s why we create this monthly view instead of having just everything new every four months when there is a new release out. So, you can see things coming. And if they were interested and not and follow up on that. Yeah.</p>\n\n\n\n<p>So, yes. But speaking about experiments, when you enable the Experiment page on Gutenberg plugin, you see quite a few experiments. But let&#8217;s talk about two of them. One is the Data Views, and what you see is the progress on the lists for content types like the templates or the pages. When you have List All Pages, how can that look in the site editor as well as in the template? So the pages in the site editor as well as the template lists show already these new Data Views when you enable that experiment. Right?</p>\n\n\n\n<p><em>Isabel Brison</em>: From memory, I think it&#8217;s the pages. Let me check. I&#8217;m just going through. I&#8217;m not sure the templatesâ€¦</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. It&#8217;s the pages.</p>\n\n\n\n<p><em>Isabel Brison</em>: &#8230; has it yet. So, if we go in the site editor and we get the little black bar on the left-hand side, when you go into the site editor. There&#8217;s a Pages section, and then, at the very bottom, you have Manage All Pages, which takes you to a list view of all of your pages.</p>\n\n\n\n<p>Now, if you have the new admin views enabled, that page &#8230; So, that link in the site editor will actually take you to a new view, which is this Data View, which is quite experimental. And the interesting thing, well, for me, because I love layout and organizing things on pages. The interesting thing is that you can change the layout from a list to a grid, or you can even see a side-by-side view where you have your list of pages and then you can just click on a page and preview it in another window.</p>\n\n\n\n<p>So, it works a bit more like an operating system, for a browser, I guess a bit more. It has this expanded functionality where you can view things in different ways, which could be quite useful depending on what kind of operation you want to do. So, yeah. I&#8217;m really appreciating the work that&#8217;s been done on this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, there&#8217;s also quite a filter view that you can review, can add a filter. You see only those four for a certain author, the pages who are just the status, just the scheduled one or the published ones. And in the views, there&#8217;s also a Sort By version. So, you can sort it by title, by author, by date. And not only the layout. So, also, you can say, &#8220;Okay, I want &#8230;&#8221;. And these are all features that you know from your WP admin, but it&#8217;s actually with a more modern interface and maybe even easier to handle for someone who is new to the system. The grid view shows you the featured image with it if you want to. And the side-by-side is really cool, as well, if you have the space on your screen.</p>\n\n\n\n<p><em>Isabel Brison</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. You&#8217;ll see, right away, the layout of the page. Yeah, it&#8217;s really cool. Check out the experiment. It&#8217;s all experimental. So, at any time, it can change. Anytime, it can go away. Anytime, it can break. So, that&#8217;s the experimental nature of this. But &#8230; yeah. In this release, there has been quite some work on these Data Views, so if you go through the changelog, everything that says Data View at the beginning is about this admin section for the pages and the site editor.</p>\n\n\n\n<p><em>Isabel Brison:</em> But also, I want to add. The thing about experiments is that they&#8217;re being actively worked on, and they are always looking for feedback. And so, it&#8217;s immensely helpful, especially for folks who are invested in this and they want to see this going in a certain direction like, &#8220;Oh, this is really helpful&#8221; or &#8220;This is not good at all.&#8221; That feedback is really useful at an early stage, so that the developers know what&#8217;s working and what&#8217;s not and what might be causing issues for certain workflows or what might be a welcome addition.</p>\n\n\n\n<p>So, yeah, the feedback &#8230; And I guess the downside of the experiments in Gutenberg is that they&#8217;re not always super visible because folks might not even think about going into the Experiment section. It&#8217;s like, &#8220;What is this?&#8221; And you can just click on things and randomly enable stuff, but it&#8217;s always super useful to go in and check those experiments and give feedback on them.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I found there are two kinds of people. Those who like to poke at new things and don&#8217;t mind if they get lost or confused or can recover quite nicely from it. And then, there are people who need to be secure or safe in safe spaces and they cannot &#8230; They just want to get their work done, and they are not interested in how the sausage is made and they don&#8217;t want to test things. Say, &#8220;Well, I&#8217;m not your beta test,&#8221; that kind of thing.</p>\n\n\n\n<p>In open source, unfortunately, it&#8217;s a little bit different because we all work on it and we all use it. So, feedback is really important. But as you said, Isabel, but I also know that experiments can be a scary place for certain people.</p>\n\n\n\n<p><em>Isabel Brison</em>: Oh, yeah. I mean, absolutely. I mean, probably, don&#8217;t use it in production, but play around with it on the test website.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. But you will see that there&#8217;s actually quite a few things there amongst them. We skipped over that in the release, but there&#8217;s also a Forms Block feature or set that you can test out. And I also wanted to talk about the grid layout. When you go to the Experiments page, it tells you in the experiments there&#8217;s also grid variation for group block. And when you enable that, what happens?</p>\n\n\n\n<p><em>Isabel Brison</em>: What happens? So, when you enable that, what happens is that, when you then go into your post or template editor and you create a group block, instead of getting the standard three variations that you have, which is the regular group, the row, and the stack, you get a fourth variation, which is the grid. And that variation is also available from the block inserter. So, you can just type grid and it gives you the grid block.</p>\n\n\n\n<p>And the grid block is &#8230; Essentially, it&#8217;s a variation of group. It&#8217;s not a block in itself. But what it does is it allows you to set the grid layout on your group block. And it&#8217;s only &#8230; And most of the reason why it&#8217;s still in experimental, even though &#8230; That&#8217;s actually &#8230; I did that a while ago now. More than six months ago. So, it&#8217;s been experimental for a couple of cycles. It&#8217;s not in core yet.</p>\n\n\n\n<p>And the main reason is that it&#8217;s only a very basic implementation of grids. So, you have the ability to set the amount. Not the amount of columns, but the column width. That&#8217;s the default option that you get. That&#8217;s the only option for now, where you can set a width that will be the minimum width of your columns. So, if you squeeze it down onto a really small screen, the columns will not go under the width that you stipulate, but they can stretch if it&#8217;s a wider screen.</p>\n\n\n\n<p>And the good thing about that is that this is pretty much the only version of grid where you can, with a couple of lines of code, create a block that is responsive. Because what happens is, if you get to a point where you don&#8217;t have enough space on your screen for &#8230; Say, you have four or five elements in your grid, and you no longer have the space on your screen to have those four or five elements side-by-side because each of them has a minimum width set. Then, the grid just free flows, and it just calculates how many columns will fit on the screen.</p>\n\n\n\n<p>That&#8217;s the easiest way. It&#8217;s the paradigm of responsive without media queries. And that&#8217;s the best way to achieve that kind of responsive without media queries layout. But, having said that, there is a bunch of configuration that would probably be useful for folks creating actual layouts with this kind of grid. And I think one that jumps to mind immediately to me is the ability to set how many columns your item or your block is going to span because you might want to block to span a couple of columns. You might not want all the columns, all the elements in your grid to have the same width, to occupy the same amount of columns. You might even want some of them to stretch the full width of the grid. And so, having that sort of configurability for children, I think, would be a really useful addition.</p>\n\n\n\n<p>The question is how to implement that. What is the most useful way of implementing that that will satisfy the most use cases? And that&#8217;s where I think there&#8217;s still a bit of design work to be done. And that&#8217;s why that&#8217;s still experimental, although it is &#8230; So, the secret here is &#8230; It&#8217;s not quite a secret, but &#8230; So, grid support technically already exists in core. The thing is the UI is not exposed. So, there&#8217;s no grid group variation in core, but the grid layout already exists because it underlies the grid&#8217;s layout in the post template block.</p>\n\n\n\n<p>So, that&#8217;s already an implementation of CSS grids in post template. And so, that means that if you really wanted to use a grid layout in core, you could go into your block attributes and set the layout type as grids, and that would just work because the code to support the layout type is there. What is not there yet is the UI and the group block variation.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Wow, that&#8217;s really interesting. Yeah, I had no idea. Excellent. Are you going to write a blog post about it for the developer blog? I&#8217;m asking you publicly, but you can say, &#8220;I am going to think about it.&#8221;</p>\n\n\n\n<p><em>Isabel Brison</em>: Is this something that I&#8217;m going to have to commit to? Yeah, no. I&#8217;ll have to think about that. I actually have a fair amount of stuff on my plate right now. I&#8217;m not saying no. That would be great. I would like to write &#8230; I mean, I love CSS and talking about it and trying out new stuff with it. So, that is definitely a possibility that I will consider.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, I also know that Justin Tadlock is in the start blocks for a while now when he heard about grid layout to write about it. But as it&#8217;s still in experiments, it&#8217;s &#8230; Yeah. We need to wait till it&#8217;s out of experiments, and that might take a while. Yeah. What I can see is &#8230; I just enabled it on my test site, and it&#8217;s really cool. I just added a few pictures in there, so it looks like a gallery but it&#8217;s not &#8230; Yeah.</p>\n\n\n\n<p><em>Isabel Brison</em>: Hmm. Yeah, it works. I think gallery is actually a block where it would be really cool to have a grid implementation, especially if you could control the size of the child blocks. So, that&#8217;s something that I&#8217;m looking forward to being able to work on at some point in the future. But there&#8217;s a lot &#8230; And actually, if you go into Gutenberg and you search for the sort of issues where layout and, especially grid, is discussed, there&#8217;s a lot of thinking around how it should work. Everyone has an opinion on it. And it&#8217;s one of those things that it has to be done right, and it has to be done in a way that will satisfy the greatest amount of use cases while keeping the implementation fairly simple and lean. So, yeah. It&#8217;s not going to be a very easy problem to solve, I think, but it will be a great one to solve. It will be great to see the outcome of that once it&#8217;s done.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Yeah, absolutely. Absolutely. And it&#8217;ll also answer some of the questions about responsiveness and &#8220;Where are my viewpoints?&#8221; and all that. So, you actually wouldn&#8217;t need them because the grid helps you with that. That&#8217;s modern CSS to you, but it&#8217;s also, what, six or seven years old now?</p>\n\n\n\n<p><em>Isabel Brison</em>: Well, yeah. Grid&#8217;s been &#8230; Actually, it&#8217;s been around. It&#8217;s had decent browser support for a long time. The exciting thing now is subgrid, which is &#8230; It has also, I mean, in theory, been around for a long time, but actual implementation in browsers didn&#8217;t happen until last year-ish. And I think it&#8217;s still not stable in all browsers. Let me just check. Can I use CSS subgrid? Because I think that, in Chrome, it&#8217;s probably already in Canary, but I&#8217;m not sure it&#8217;s in Chrome Stable yet. Wait, what&#8217;s the latest version of Chrome? It might actually be. Oh, yeah. Released October 31st. Okay. So, it&#8217;s in the latest version of Chrome. Actually, it&#8217;s looking pretty good. It was very, very recently implemented in Chrome Stable. So, this means that we can start thinking about not only grids but subgrids, which &#8230; You know what would be amazing is having your block so your block uses grid and you detect whether a parent block uses grid, and then you can enable that. It nested grid as a subgrid of the parent. I&#8217;m thinking that that would be really cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s really cool and totally confusing for a user interface.</p>\n\n\n\n<p><em>Isabel Brison</em>: But everything would be beautifully aligned!</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes, the alignment is that one that confuses people. And yeah, I want it. Yeah.&nbsp;</p>\n\n\n\n<p>And I think we&#8217;re getting, time-wise, to the end of our show. It has been a great pleasure talking with you, Isabel, today. The Gutenberg Changelog. The bad news is this is the last Changelog of the year. The good news is we start one right in the first week of January with episode 94. But I have one question, still. What are you currently working on? Because you worked on the grid log a while ago, but what are you working on right now?</p>\n\n\n\n<p><em>Isabel Brison</em>: Right now? So, my attention&#8217;s been a bit scattered here and there with different things.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Welcome to the club.</p>\n\n\n\n<p><em>Isabel Brison</em>: I&#8217;m actually trying to get some &#8230; I&#8217;ve been trying to add in some controls to allow, I guess, website designers &#8230; And this is probably going to be an interesting feature for agencies and folks using Gutenberg at a more enterprise level, where &#8230; For a long time, folks have wanted to be able to disable certain design controls. And so, I&#8217;m adding a few settings to layout so that some of the controls in layout can be disabled at a site-wide or a block-wide level. But that&#8217;s not very exciting. That&#8217;s not very exciting in terms of new features, something that probably should have already existed in there. So, I&#8217;m just going, &#8220;Okay, let&#8217;s add this in.&#8221;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I know.</p>\n\n\n\n<p><em>Isabel Brison:</em> The thing I&#8217;m excited aboutâ€¦</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Isabel Brison</em>: &#8230; which I&#8217;m just starting to dabble in. I&#8217;m starting to play around with Drag and Drop because I think there&#8217;s a lot of space for improvement in the current Drag and Drop. And this is not to say that it&#8217;s bad because it&#8217;s a lot better than it was a couple of years ago. There&#8217;s steadily been work and improvement in that area, but I think there&#8217;s still a fair bit of stuff that can be done. And I&#8217;m particularly excited to try and combine the Drag and Drop functionality with the ability to create layouts. So, add Drag and Drop elements so that they can be side-by-side and things like that. So, I&#8217;m playing around with some very experimental stuff and trying to figure out if it works.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I have the vision that when I Drag and Drop something, it actually pops to a grid. And I know there are certain tools out there that actually do that, but it would be phenomenal if that would come to WordPress. So, I&#8217;m glad you&#8217;re working on things like that.</p>\n\n\n\n<p>And I do know people who are going to get excited about the disabled, site-wide, some layout stuff. So, yeah. You do some great work there as well. And people are waiting for it as well. Yeah.</p>\n\n\n\n<p>So, okay, dear listeners. Now, we have to say goodbye to this year and wishing you not only happy Thanksgiving, but also happy holidays for those who celebrate it. And before we end the show, as always, the show notes will be published on the GutenbergTimes.com/podcast. This is episode 93, and if you have questions, suggestions, or news for the next one, in 2024, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. And Isabel, it&#8217;s not the first time that you&#8217;re on the show, but maybe we have a few new listeners. Where can you be reached when people want to reach out to you?</p>\n\n\n\n<p><em>Isabel Brison</em>: Oh, I am on GitHub as Tell the Machines. I am on WordPress Slack as Tell the Machines, also.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Good.</p>\n\n\n\n<p><em>Isabel Brison</em>: I&#8217;m not very inventive. That&#8217;s my username pretty much across all the WordPress sphere. Feel free to ping me, ask me questions and &#8230; Yeah, I&#8217;m around.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you so much and all the good wishes for the last month of the year. Also, to you, to Australia. You have summer now?</p>\n\n\n\n<p>Isabel Brison: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: We are coming into the winter, and it&#8217;s my first winter in Munich. So, I might turn into a hibernation and go &#8230; like Mama Bear always goes into hibernation when it&#8217;s too cold. That sounds like me. So, I sleep longer.</p>\n\n\n\n<p><em>Isabel Brison</em>: That&#8217;s great.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I go earlier to bed.</p>\n\n\n\n<p><em>Isabel Brison</em>: Sounds like it&#8217;s going to be chilly. Yeah, it&#8217;s going to be warm. Well, Sydney&#8217;s pretty warm. So, expecting a fairly hot summer here.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. All right. Well, I wish you all a good New Year and see you all in January.&nbsp;</p>\n\n\n\n<p><em>Isabel Brison</em>: Happy holidays for everyone.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Happy holidays. Bye bye.</p>\n\n\n\n<p><em>Isabel Brison</em>: Bye.</p>\n\n\n\n<p> </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 26 Nov 2023 12:06:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Gutenberg Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"Gutenberg Times: Gutenberg 17.1, Theme Handbook updated, Get started with Command Palette â€“ Weekend Edition 275\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=26428\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://gutenbergtimes.com/gutenberg-17-1-theme-handbook-updated-get-started-with-command-palette-weekend-edition-275/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18130:\"<p>Howdy, </p>\n\n\n\n<p>If you celebrate it: Happy Thanksgiving. Enjoy the weekend with your family and friends. </p>\n\n\n\n<p>It&#8217;s the first time in over twenty years, when Thanksgiving was just another  Thursday in our workweek. Here we have plenty of bank holidays around Christmas and New Year&#8217;s. I am not complaining. It was merely one of those first <em>Living in Munich</em> things. Similar to seeing the first tiny snowflakes when walking down the street and temperatures below 49 Â°F (ca. 9 Â°C) during the day. ?â„ï¸</p>\n\n\n\n<p>Stay warm, my friends.</p>\n\n\n\n<p>Yours, ?<br /><em>Birgit</em></p>\n\n\n\n<p></p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#2-how-to-replace-the-default-blog-home-template-in-2024\">How to replace the default Blog home template in Twenty-Twenty-Four </a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-blocks-and-tools-for-the-block-editor\">Building Blocks and Tools for the Block editor</a></li></ul></div>\n</div></div>\n\n\n\n\n<p><strong>November 29, 2023 16:00 UTC </strong><br /><strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/297122886/\">Developer Hours: How to extend core WordPress blocks</a></strong></p>\n\n\n\n<p><strong>Nick Diego</strong> and <strong>Ryan Welcher</strong> will discuss how to extend core WordPress blocks and why this approach can be preferred over creating a custom block.&nbsp;</p>\n\n\n\n<a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/297122886/\"><img width=\"600\" height=\"338\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/11/DEVHour-2023-11-29.webp?resize=600%2C338&ssl=1\" alt=\"\" class=\"wp-image-26458\" /></a>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://wordpress.org/state-of-the-word/\">State of the Word</a> </strong>2023 has a landing page now. Matt Mullenweg&#8217;s annual keynote address will take place on <strong>December 11 at 15:00 UTC</strong> on livestream or in person (in Madrid, Spain) </p>\n\n\n\n<div class=\"wp-block-group has-accent-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<a href=\"https://wordpress.org/state-of-the-word/\"><img width=\"652\" height=\"296\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/11/Screenshot-2023-11-24-at-14.12.45.png?resize=652%2C296&ssl=1\" alt=\"\" class=\"wp-image-26483\" /></a>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Andre Maneiro</strong> released Gutenberg 17.1 version. 200 PRs by 55 contributors, 3 of them first timers. The release includes several new enhancements, loads of&nbsp;bug&nbsp;fixes, and continued work on Phase 3 features. Here are the highlights: </p>\n\n\n\n<ol>\n<li><a href=\"https://make.wordpress.org/core/2023/11/22/whats-new-in-gutenberg-17-1-22-november/#writing-flow\">Improvements to accessibility and writing flow</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/11/22/whats-new-in-gutenberg-17-1-22-november/#spacing-quote-block\">Design tools: block spacing for Quote block</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/11/22/whats-new-in-gutenberg-17-1-22-november/#other\">Other notable highlights</a></li>\n</ol>\n\n\n\n<p><strong>Isabel Brison</strong> and I discussed the latest Gutenberg release, Gutenberg 17.1, Command Palette, Data Views and Grid Layout. It was a great chat, hope you enjoy it, too. It is also the last episode of 2023. In a few days, it will become available on your favorite podcast app. </p>\n\n\n\n<img width=\"600\" height=\"170\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/11/Isabel-Brison-Birgit-Pauli-Haack-Gutenberg-Changelog-93.jpg?resize=600%2C170&ssl=1\" alt=\"\" class=\"wp-image-26478\" />\n\n\n\n<p class=\"has-accent-color has-light-background-background-color has-text-color has-background has-link-color wp-elements-73585e4999e0b0a97d04b3f568647e9e\">?ï¸ Latest episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-93-gutenberg-17-1-command-palette-data-views-and-grid-layout/\">Gutenberg Changelog #93 â€“ Gutenberg 17.1, Command Palette, Data Views and Grid Layout</a> &#8211; a chat with Isabel Brison</p>\n\n\n\n<p><strong>Joen Asmussen</strong> posted the <strong><a href=\"https://make.wordpress.org/design/2023/11/20/design-share-nov-6-nov-17/\">Design Share: Nov 6-Nov 17</a></strong>, in which he lists the following work of the WordPress design team: </p>\n\n\n\n<ul>\n<li>Sticky Template in template view</li>\n\n\n\n<li>Dropdown component for menus and other use cases</li>\n\n\n\n<li>Date range picker</li>\n\n\n\n<li>Styles Panel</li>\n\n\n\n<li>Settings for the homepage in the Site editor</li>\n</ul>\n\n\n\n<img width=\"652\" height=\"395\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/11/setting-for-Homepage.webp?resize=652%2C395&ssl=1\" alt=\"\" class=\"wp-image-26435\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong> invites you to the next <a href=\"https://make.wordpress.org/core/2023/11/23/hallway-hangout-lets-explore-wordpress-6-5/\"><strong>Hallway Hangout: Letâ€™s explore WordPress 6.5</strong></a> on January 16, 2024, at 21:00 UTC, when she will talk through some of whatâ€™s to come in the next WordPress releaseÂ with a proposed schedule for March 26th. This is being shared early to help encourage more folks to tune in and to build some excitement for this next release.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p>Watching the pros is always a fabulous way to learn. <strong>Brian Gardner</strong>, developer advocate at WP Engine, shows you in his video how to<a href=\"https://www.youtube.com/watch?v=KJnLZJPtsA0\"><strong> create a page with sidebar template in WordPress</strong></a>. You&#8217;ll learn how to add columns, how to use the List View, how to group blocks, and change the blockGap, how to add a custom style and make the sidebar accessible for screen readers by assigning a semantic HTML element to it. From beginning to end, a great tutorial. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In the YouTube video, <a href=\"https://www.youtube.com/watch?v=2l5XqBEX598\"><strong>Pro-Themer builds a WordPress website with Twenty Twenty Four</strong></a>, <a href=\"https://www.youtube.com/watch?v=erT8LxuI5r4\"></a><strong>Maggie Cabrera,</strong> co-lead on the default theme development and <strong>Dave Smith</strong>, JavaScript developer on the open-source project, used the Twenty-Twenty-Four theme to build a fictional business site with core blocks only. And I just learned how to change the template on the home page instead of editing the existing template. The choices are gorgeous. </p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"2-how-to-replace-the-default-blog-home-template-in-2024\">How to replace the default Blog home template in Twenty-Twenty-Four </h3>\n\n\n\n<ul>\n<li>On a fresh installation of WordPress with Twenty-Twenty-Four theme,  </li>\n\n\n\n<li>Go to the Site editor, </li>\n\n\n\n<li>Click on the canvas to get into edit mode. </li>\n\n\n\n<li>Make sure you are on the Template tab in the sidebar</li>\n\n\n\n<li>Next to &#8220;Blog Home&#8221; click on the three-dot menu. </li>\n\n\n\n<li>Select the choice to <strong>Replace template</strong>. </li>\n\n\n\n<li>When you click on it, a modal opens full screen with all the beautiful choices  for the home page you can use. </li>\n</ul>\n\n\n\n\n\n\n\n\n\n\n\n<p><em><a href=\"https://twitter.com/bph/status/1728014239581769922\">I also shared</a> the video and some screenshots on X (former Twitter)</em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Felix Arntz</strong> posted some changes you might want to double-check on in  <a href=\"https://make.wordpress.org/core/2023/11/13/main-query-loop-handling-for-block-themes-in-6-4/\"><strong>Main query loop handling for block themes in 6.4</strong></a>. In WordPress 6.4, a change has been applied to how the main queryÂ loopÂ is being handled forÂ blockÂ themes. For singular content, the output of block templates (e.g.Â <code>single.html</code>Â orÂ <code>page.html</code>) will be automatically wrapped in the main query loop. This might have ramifications for how your theme works. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>If you are keen to learn more about the design and development process for this year&#8217;s default theme Twenty-Twenty-Four, <strong>Rich Tabor</strong> quizzed Beatriz Fiahlo and Maggie Cabrera for his article: <strong><a href=\"https://automattic.design/2023/11/22/introducing-twenty-twenty-four/\">Introducing Twenty Twenty-Four</a></strong>, that gives you a behind-the-scenes look at &#8220;the most expressive and capable WordPress default theme yet&#8221;, alongside WordPress 6.4.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Justin Tadlock</strong> just published the new Theme Handbook chapters&nbsp;<a href=\"https://developer.wordpress.org/themes/getting-started/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Getting Started</strong></a>&nbsp;and&nbsp;<a href=\"https://developer.wordpress.org/themes/core-concepts/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>Core Concepts</strong></a>. While the <strong>Getting started</strong> section aims at new theme developers, it also provides a resource for seasoned theme developers who are learning how to build block themes for the first time. The meat of the matter is to found in the <strong>Core Concepts</strong> chapter. </p>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/themes/core-concepts/theme-structure/\"><strong>Theme Structure</strong></a> is&nbsp;a walk-through on how a themeâ€™s files and folders are structured following WordPress standards.</li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/themes/core-concepts/main-stylesheet/\"><strong>Main Stylesheet</strong></a><strong> </strong>explains the importance of the themeâ€™s&nbsp;<code>style.css</code>&nbsp;file and how to use it.</li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/themes/core-concepts/custom-functionality/\"><strong>Custom Functionality</strong></a> shows how to use the themeâ€™s functions file (<code>functions.php</code>) and how to add more functionality to a theme.</li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/themes/core-concepts/templates/\"><strong>Templates</strong></a> introduces how WordPressâ€™ block templates system works and provides pathways for more in-depth learning.</li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/themes/core-concepts/including-assets/\"><strong>Including Assets</strong></a> is a guide on including CSS, JavaScript, images, and more in your themes.</li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/themes/core-concepts/global-settings-and-styles/\"><strong>Global Settings and Styles</strong></a>&nbsp;gives a basic overview of how the&nbsp;<code>theme.json</code>&nbsp;file works in themes with learning pathways to more detailed articles.</li>\n</ul>\n\n\n\n<p>With these two chapters now updated/published, it effectively replaces the old Block Themes chapter. The first five chapters of the handbook are now almost entirely focused on block theming, with classic theming relegated to the&nbsp;<a href=\"https://developer.wordpress.org/themes/classic-themes/\" target=\"_blank\" rel=\"noreferrer noopener\">Classic Themes</a>&nbsp;chapter. There is still more work to be done (<a href=\"https://github.com/WordPress/Documentation-Issue-Tracker/issues/816\" target=\"_blank\" rel=\"noreferrer noopener\">get involved!</a>)!</p>\n\n\n\n\n<p><strong>Â <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>Â </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-blocks-and-tools-for-the-block-editor\">Building Blocks and Tools for the Block editor</h2>\n\n\n\n<p><strong>Nick Diego</strong> wrote about <a href=\"https://make.wordpress.org/meta/2023/11/22/redesigning-developer-resources-and-a-call-for-testing/\"><strong>Redesigning Developer Resources and a call for testing</strong></a> on the Make Met Blog. This project consists of a new design for theÂ <a href=\"https://developer.wordpress.org/\">Developer Resources</a>Â section ofÂ WordPress.org, which houses the official Code Reference,Â BlockÂ Editor Handbook, Theme Handbook, and much more.Â  The design effort aims to refresh the aesthetics, convert the site to a block theme, and improve the overall developer experience.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>With his newest tutorial, <strong>Justin Tadlock</strong> helps you <a href=\"https://developer.wordpress.org/news/2023/11/getting-started-with-the-command-palette-api/\"><strong>Getting started with the Command Palette API</strong></a>. Learn build command to toggle a Discussion panel, open the Experiments page of the Gutenberg plugin and toggle the buttons from icons to text and back to site and post editor. </p>\n\n\n\n<img width=\"652\" height=\"338\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/11/command-palette.jpg?resize=652%2C338&ssl=1\" alt=\"\" class=\"wp-image-26433\" />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>WordPress Developer are called to help with <a href=\"https://make.wordpress.org/core/2023/11/21/exploration-to-support-modules-and-import-maps/\"><strong>Exploration to support Modules and Import Maps</strong></a>. <strong>Luis Herranz</strong>, sponsored contributor by Automattic,  posted a call for comments on how you think you should be able to leverage the latest web standards for writing and consumingÂ JavaScriptÂ code. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his latest Twitch stream, <strong>Ryan Welcher</strong> was <strong><a href=\"https://www.twitch.tv/videos/1985187408\">Looking at block deprecations</a></strong>. and walks you through the nature of block deprecations for static blocks and starts with a very basic block. </p>\n\n\n\n<p>If you don&#8217;t know what that means, you can also read up about it in Michael Burridge&#8217;s article on the Developer Blog <a href=\"https://developer.wordpress.org/news/2023/03/block-deprecation-a-tutorial/\"><em>Block deprecation â€“ a tutorial</em></a>. </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Screenshot of <a href=\"http://openverse.org\">Openverse</a> on the search for &#8220;wooden blocks&#8221;.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too, and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 25 Nov 2023 07:23:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"HeroPress: HeroPress News! Camels at sunset! Weddings! Castles! Everything!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://heropress.com/?p=5972\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:185:\"https://heropress.com/heropress-news-camels-at-sunset-weddings-castles-everything/#utm_source=rss&utm_medium=rss&utm_campaign=heropress-news-camels-at-sunset-weddings-castles-everything\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:12205:\"<img width=\"768\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2023/11/591655ed2bfb224c5.58123242-rotated-1-768x1024.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"\" /><div class=\"kb-row-layout-wrap kb-row-layout-id5972_384b30-5e alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column5972_61d1c2-ce inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading5972_7d33fa-9b wp-block-kadence-advancedheading\"> NEWS NEWS NEWS!</h2>\n\n\n\n<p>There is a LOT going on this week!  For one thing, this newsletter is <strong>no longer</strong> coming to you from the HeroPress Network site!  It&#8217;s being rolled into HeroPress.com.  The old archives will stay on the old site, but new issues will be here.</p>\n\n\n\n<p>The same holds true for the Tip Of The Week.</p>\n\n\n\n<h3 class=\"kt-adv-heading5972_21cf19-54 wp-block-kadence-advancedheading\"><a href=\"https://heropress.com/affiliates/\">Affiliate Links</a></h3>\n\n\n\n<p>People have suggested for years that HeroPress raise funding with affiliate links, but I didn&#8217;t want it to become a link farm either.  The solution is to make a plugin that lists all of our affiliate links on <a href=\"https://heropress.com/affiliates/\">one page</a> with easy sorting.  You can find it at <a href=\"https://heropress.com/affiliates/\">https://heropress.com/affiliates/</a></p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-5972_79af4b-39 is-style-dots\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id5972_8e6495-54 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column5972_933d34-41 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading5972_8c4972-67 wp-block-kadence-advancedheading\"><a href=\"https://hallwaychats.com\">WPPhotos.Info</a></h2>\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://wpphotos.info/sunset-camel/\"><img width=\"300\" height=\"200\" src=\"https://heropress.com/wp-content/uploads/2023/11/45665573fd4b02927.15243956-scaled-1280-300x200.jpg\" alt=\"\" class=\"wp-image-6157\" /></a></div>\n\n\n<p>This week&#8217;s <a href=\"https://wpphotos.info\">WPPhotos Info</a> is called &#8220;<a href=\"https://wpphotos.info/sunset-camel/\">Sunset Camel</a>&#8220;. </p>\n\n\n\n<p>This photo was taken by <a href=\"https://wordpress.org/photos/author/salsel/\">salsel</a> while on a journey through Morocco. She traveled alone from France and then joined an organized group trip from Marrakech to the Merzouga. The trip was her own birthday gift.</p>\n\n\n\n<p><a href=\"https://wpphotos.info/long-view-of-chalipuzha-river/\">Read more of the story at WPPhotos.info</a>!</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-5972_bbbf3c-06\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id5972_2f83b6-44 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column5972_56324c-d3 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading5972_448d4e-d9 wp-block-kadence-advancedheading\"><a href=\"https://heropress.com/\">Press Releases!</a></h2>\n\n\n<div class=\"wp-block-image is-style-default\">\n<img src=\"https://heropressnetwork.com/wp-content/uploads/2024/03/pressitwp_logo-300x130.jpg\" alt=\"Press It WP\" class=\"wp-image-4736\" /></div>\n\n\n<p><a href=\"https://pressitwp.com\">PressItWP.com</a> has been a part of the <a href=\"https://heropressnetwork.com\">HeroPress Network</a> for almost a year now, if you ever release Press Releases, please consider <a href=\"https://pressitwp.com\">PressItWP</a>!</p>\n\n\n\n<p></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-gravitykit-s-2023-black-friday-sale-get-50-off\"><a href=\"https://www.gravitykit.com/black-friday/?utm_campaign=gk_sale&utm_source=pressitwp&utm_medium=referral\">GravityKitâ€™s 2023 Black Friday Sale (Get 50% Off!)</a></h2>\n\n\n\n<p>Get 50% off on GravityKitâ€™s toolkit of essential add-ons for Gravity Forms. Enhance Gravity Forms and build powerful web applications.</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-5972_d95905-8d\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id5972_322dca-35 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column5972_f182e5-1b inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"kt-adv-heading5972_f81ad2-4f wp-block-kadence-advancedheading\"><a href=\"https://wppodcasts.com\">WP Podcasts</a></h2>\n\n\n\n<a href=\"https://wppodcasts.com\"><img src=\"https://heropressnetwork.com/wp-content/uploads/2024/01/pocket_casts_single_315.png\" alt=\"Pocket Casts image\" class=\"wp-image-4316\" /></a>\n\n\n\n<p>There were <em>twenty-six</em> WordPress podcast episodes released this week! There&#8217;s also a new podcast this week, <a href=\"https://wppodcasts.com/podcast/the-wordpress-edge/\">The WordPress Edge</a>!</p>\n\n\n\n<ul>\n<li><a href=\"https://underrepresented-in-tech.castos.com/episodes/how-allies-create-mental-labor-for-underrepresented-people#new_tab\">How Allies Create Mental Labor for Underrepresented People</a> from <a href=\"https://wppodcasts.com/podcast/underrepresented-in-tech/\">Underrepresented in Tech</a></li>\n\n\n\n<li><a href=\"https://share.transistor.fm/s/18de8624#new_tab\">Will WordPress Page Builders Survive?</a> from <a href=\"https://wppodcasts.com/podcast/the-wp-minute/\">The WP Minute</a></li>\n\n\n\n<li><a href=\"https://www.freelandev.com/podcast/239-preparando-bf-dudas-cambios-en-plugins-render_block_-y-adios-a-los-nahuai-pinitos/#new_tab\">#239 â€“ Preparando BF, dudas cambios en plugins, render_block_* y adiÃ³s a los Nahuai-pinitos</a> from <a href=\"https://wppodcasts.com/podcast/freelandev/\">Freelandev</a></li>\n\n\n\n<li><a href=\"https://dothewoo.io/now-is-the-time-for-passkeys-in-wordpress-all-the-time-with-timothy-jacobs/#new_tab\">Now is the Time for Passkeys in WordPress, All the Time with Timothy Jacobs</a> from <a href=\"https://wppodcasts.com/podcast/do-the-woo-a-woocommerce-podcast/\">Do the Woo â€“ A WooCommerce Podcast</a></li>\n</ul>\n\n\n\n<p>There are new episodes every single day, so be sure to stop by <a href=\"https://wppodcasts.com\">WPPodcasts.com</a> and search for things that interest you!</p>\n</div></div>\n\n</div></div>\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-5972_89ea16-3c\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id5972_927049-d3 alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top kb-theme-content-width\">\n\n<div class=\"wp-block-kadence-column kadence-column5972_9b1705-22 inner-column-1\"><div class=\"kt-inside-inner-col\">\n<h2 id=\"wpphotos\" class=\"kt-adv-heading5972_7cae31-b1 wp-block-kadence-advancedheading\"><a href=\"https://wordpress.org/photos\">WP Photos</a></h2>\n\n\n\n<p>Here are some of the great photos submitted to the <a href=\"https://wordpress.org/photos\">WPPhotos</a> project this week!</p>\n\n\n\n\n\n<div class=\"kb-gallery-wrap-id-5972_4698e7-40 alignnone wp-block-kadence-advancedgallery\"><ul class=\"kb-gallery-ul kb-gallery-non-static kb-gallery-type-masonry kb-masonry-init kb-gallery-id-5972_4698e7-40 kb-gallery-caption-style-bottom-hover kb-gallery-filter-none\"><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic\"><img src=\"https://heropress.com/wp-content/uploads/2023/11/263655aeb0ca4fab4.82439901-683x1024.jpg\" width=\"683\" height=\"1024\" alt=\"\" class=\"wp-image-6169\" /></div></div></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic\"><img src=\"https://heropress.com/wp-content/uploads/2023/11/477655aec622a1fa8.92305308-683x1024.jpg\" width=\"683\" height=\"1024\" alt=\"\" class=\"wp-image-6168\" /></div><div class=\"kadence-blocks-gallery-item__caption\"><a href=\"https://wordpress.org/photos/author/sharankrishna/\">sharankrishna</a></div></div></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic\"><img src=\"https://heropress.com/wp-content/uploads/2023/11/290655dd4ecead9f1.84139270-1024x768.jpeg\" width=\"1024\" height=\"768\" alt=\"\" class=\"wp-image-6167\" /></div><div class=\"kadence-blocks-gallery-item__caption\"><a href=\"https://heropress.com/wp-content/uploads/2023/11/290655dd4ecead9f1.84139270-scaled.jpeg\"></a><a href=\"https://wordpress.org/photos/author/anish29/\">Anis</a></div></div></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic\"><img src=\"https://heropress.com/wp-content/uploads/2023/11/59655a89c03d60b4.33485375-819x1024.jpg\" width=\"819\" height=\"1024\" alt=\"\" class=\"wp-image-6166\" /></div><div class=\"kadence-blocks-gallery-item__caption\"><a href=\"https://wordpress.org/photos/author/tyxla/\">Marin Atanasov</a></div></div></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic\"><img src=\"https://heropress.com/wp-content/uploads/2023/11/919655dcd7dc244e9.81017175-1024x768.jpg\" width=\"1024\" height=\"768\" alt=\"\" class=\"wp-image-6165\" /></div><div class=\"kadence-blocks-gallery-item__caption\"><a href=\"https://wordpress.org/photos/author/atsuo0475watanabe/\">æ¸¡é‚‰åŽšå¤«</a></div></div></div></li><li class=\"kadence-blocks-gallery-item\"><div class=\"kadence-blocks-gallery-item-inner\"><div class=\"kb-gal-image-radius\"><div class=\"kb-gallery-image-contain kadence-blocks-gallery-intrinsic\"><img src=\"https://heropress.com/wp-content/uploads/2023/11/839655ae1936ee3c0.52974282-1024x768.jpg\" width=\"1024\" height=\"768\" alt=\"\" class=\"wp-image-6164\" /></div><div class=\"kadence-blocks-gallery-item__caption\"><a href=\"https://wordpress.org/photos/author/ardhrubo/\">Dhrubo</a></div></div></div></li></ul></div>\n\n\n\n<p>Be sure to check out the <a href=\"https://wordpress.org/photos/\">hundreds of other great photos</a>!</p>\n</div></div>\n\n</div></div>\n\n\n<p></p>\n\n\n\n<p>The header photo for this post is a <a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/591655ed2b/\">photo</a> by <a href=\"https://wordpress.org/photos/author/yamchhetri/\">Yam Chhetri</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n\n\n\n<p>That&#8217;s it for this week! If you&#8217;d like to get this post in your email every week, <a href=\"https://heropressnetwork.com/newsletter\">make sure you sign up</a>!</p>\n\n<p>The post <a href=\"https://heropress.com/heropress-news-camels-at-sunset-weddings-castles-everything/\">HeroPress News! Camels at sunset! Weddings! Castles! Everything!</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 24 Nov 2023 16:10:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"Do The Woo Community: WordPress Meetups Have Always Had a Place in My Heart\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78540\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://dothewoo.io/wordpress-meetups-have-always-had-a-place-in-my-heart/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:415:\"<p>A bit of reflection and good feelings seeing more meetups being organized. Plus a teaser for State of the Word and watch parties.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/wordpress-meetups-have-always-had-a-place-in-my-heart/\">WordPress Meetups Have Always Had a Place in My Heart</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 24 Nov 2023 12:29:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WPTavern: #100 â€“ Nick Diego on the Revamp of the WordPress Showcase Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=151481\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/podcast/100-nick-diego-on-the-revamp-of-the-wordpress-showcase-website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:49495:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, the revamp of the WordPress showcase website.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice. Or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Nick Diego. Nick is a sponsored full-time contributor at Automattic. His official position is a developer relations advocate, which allows him to focus on creating developer orientated content. Apart from his regular responsibilities, Nick is also involved in a separate project called the WordPress Showcase, and this is the focus of the podcast today.</p>\n\n\n\n<p>The WordPress showcase is a curated collection of websites built with WordPress. Its purpose is to inspire, and show the breadth of what WordPress can achieve. Currently the showcase features around a hundred sites, including large enterprises like the New York times and NASA. It aims to challenge misconceptions about WordPress, and highlight the platforms scale and reach.</p>\n\n\n\n<p>The design of the showcase is contemporary and visually impactful. It shows that whatever proprietary platforms can do, WordPress can also do.</p>\n\n\n\n<p>During the podcast we talk about the intricacies of the Showcase project. We discuss the selection criteria for featured sites, including the possibility of case studies to show the process behind their creation.</p>\n\n\n\n<p>We also explore the importance of block themes within the Showcase, and the ongoing efforts to make wordpress.org fully block-based.</p>\n\n\n\n<p>We also get into the future iterations of taxonomies and navigation on the site to enhance its functionality. Nick suggests that the categories in the showcase will serve as a valuable resource for novice users, trying to understand the capabilities of WordPress.</p>\n\n\n\n<p>The redesigned showcase aims to highlight WordPress in a modern way, inspire web design, and convince clients that WordPress is a credible choice. Everything that you see on the website is open source, meaning that you can download all the theme files for the showcase site to see how it was all put together.</p>\n\n\n\n<p>If you&#8217;re curious about block development, or how you might convince clients that WordPress is a credible CMS, this podcast is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Nick Diego.</p>\n\n\n\n<p>I am joined on the podcast today by Nick Diego. Hello, Nick.</p>\n\n\n\n<p>[00:03:49] <strong>Nick Diego:</strong> Thanks for having me.</p>\n\n\n\n<p>[00:03:50] <strong>Nathan Wrigley:</strong> You&#8217;re very, very welcome. Nick has been on the podcast before, but he&#8217;s here to talk about something completely different this time. He&#8217;s here to talk about something called, well, I&#8217;m going to call it The Showcase. I don&#8217;t know if that&#8217;s the correct name for it. It might just be the WordPress Showcase or just Showcase. We&#8217;ll get into that in a moment.</p>\n\n\n\n<p>First of all, Nick, it&#8217;s a fairly generic question, but I always begin this way. Could you just tell us who you are, who you work for, what your relationship is with WordPress? All of that kind of quick bio stuff.</p>\n\n\n\n<p>[00:04:16] <strong>Nick Diego:</strong> Absolutely. So I am a sponsored full time contributor working for Automattic. And I work in the. org division. My official title is developer relations advocate. And so a lot of my work is around creating developer oriented content, speaking with developers, kind of helping them navigate modern WordPress development techniques, and that sort of thing.</p>\n\n\n\n<p>But what we&#8217;re here to talk about today, is about the WordPress Showcase. And that&#8217;s kind of a separate project, but also in the .org space, improving the .org website, one component being the Showcase. I&#8217;m also working on that as well as my developer content.</p>\n\n\n\n<p>[00:04:55] <strong>Nathan Wrigley:</strong> So you have your fingers in a variety of different pies. But the pie that we&#8217;re concerned about today is the WordPress Showcase. I suspect that it may be useful, if you are sitting near a computer or a mobile phone at this point, it may actually be quite useful to pause the podcast and go and have a little poke around the following URL.</p>\n\n\n\n<p>It&#8217;s really easy to capture. So if you go to wordpress.org/showcase. That&#8217;s nice and straightforward. wordpress.org/showcase. You&#8217;re going to be presented with a site, and you may think to yourself, well, what&#8217;s the purpose of this? Because there&#8217;s no real calls to action. There&#8217;s nothing really that we are requiring the users to do. But I guess that&#8217;s the intent.</p>\n\n\n\n<p>So Nick, what is it? Why does this page exist? We&#8217;ll talk about its history later. Let&#8217;s just outline what it&#8217;s for.</p>\n\n\n\n<p>[00:05:39] <strong>Nick Diego:</strong> The page is designed to Showcase what can be built with WordPress. And right now there&#8217;s about 100 sites, and this is kind of looked at as like a beginning. You know, the Showcase can grow as folks submit entries to the Showcase. But it&#8217;s really just to highlight and kind of inspire people about what can be built with WordPress.</p>\n\n\n\n<p>We have sites like NASA and, you know, government sites like wordpress.gov. We have artist blogs and portfolios and businesses, and there&#8217;s a construction company on there. I mean, it&#8217;s just to try to show all the different types of sites that can be built with the WordPress platform.</p>\n\n\n\n<p>[00:06:14] <strong>Nathan Wrigley:</strong> So given that WordPress has been around for a really, really long time now. We&#8217;re into the second decade, we&#8217;ve gone through 20 years already. So it&#8217;s been around for absolutely ages and, you know, people have been building websites.</p>\n\n\n\n<p>Does the WordPress community or the wider world, maybe that&#8217;s who it&#8217;s aimed at more. Do they not know what WordPress is capable of? In other words, is this here for people who are trying to make a decision about whether to use WordPress or not? And it&#8217;s trying to encourage them that, look, there is no perfect template. There isn&#8217;t one size fits all. WordPress can do more or less anything.</p>\n\n\n\n<p>[00:06:43] <strong>Nick Diego:</strong> Yeah, I think so. I think that part of this new Showcase, and we&#8217;ll kind of talk about, again, you said the history of the page and, you know, how it came to be. But the Showcase is now a top level navigation item when you go to wordpress.org. And the idea is for somebody who maybe is very new to WordPress, never used WordPress before, is just looking to get a presence online. It&#8217;s a quick place for them to go to just see what&#8217;s possible.</p>\n\n\n\n<p>But there&#8217;s all sorts of different audiences that come to WordPress. And there&#8217;s a lot of people who have some idea, or thoughts about what WordPress is. Oh, it&#8217;s just a blogging platform. Or, oh, it can&#8217;t do certain things, or it can do certain things.</p>\n\n\n\n<p>This is trying to show the breadth of what WordPress can do. Whether you&#8217;re a new user or whether you have some, you know, misconceptions about what the WordPress platform can do. This is trying to capture all the different ways to build with WordPress.</p>\n\n\n\n<p>[00:07:33] <strong>Nathan Wrigley:</strong> It&#8217;s fairly impactful in terms of its design. In other words, the design is very contemporary, and it&#8217;s quite stark. There&#8217;s a lot of black, there&#8217;s a lot of white. And essentially you are putting the sites, there&#8217;s these little, they look like desktop versions of the site in every case that I&#8217;m looking at, at the moment.</p>\n\n\n\n<p>And there&#8217;s just dozens and dozens of them lined up after one another. And each of them is really incredibly different from the other. But the thing that I&#8217;m taking away from it all, is just how large the reach of WordPress is. So more or less everything that I can see is something that I&#8217;ve heard of. So there&#8217;s museums here, there&#8217;s software companies, there&#8217;s enormous publications, and so on.</p>\n\n\n\n<p>So is there a bit of that thrown into it as well? We&#8217;re trying to sort of impress with the scale of what WordPress is able to achieve. So I&#8217;m looking, I can see the New York Times, and various other different enterprises. Is that a part of it as well? Just look at the enormous projects that WordPress has captured, NASA and so on.</p>\n\n\n\n<p>[00:08:27] <strong>Nick Diego:</strong> Yeah, I think so personally. There are a lot of other competitors, quote unquote, that WordPress competes with. We have things like Squarespace and Wix and others. This Showcase was not a direct response to those sites. The Showcase has been around on WordPress for a very long time. But one of the unique things about WordPress powering 43 percent of the internet is that, there&#8217;s a lot of high quality sites built with WordPress.</p>\n\n\n\n<p>Being able to Showcase that the breadth of what you can build with WordPress, I do think is one of the unique things that WordPress has that allows it to stand out from maybe some of the other platforms.</p>\n\n\n\n<p>And so showcasing things like the New York Times, again, I said NASA. NASA is at the top of mind because they recently just converted everything over to WordPress, which is a massive undertaking.</p>\n\n\n\n<p>But, I mean, showcasing these kind of sites, as well as smaller sites. There are some restaurants on there. There&#8217;s a couple, ones that were built purely with the block editor, which is pretty cool. And so really having that juxtaposition of large enterprise sites versus small. Small business, you know, individual portfolio.</p>\n\n\n\n<p>Hopefully, that shows a new user, someone who is just exploring WordPress all the different ways that you can build with the platform. And hopefully inspire them to dig a little deeper, download WordPress, get hosting, so on and so forth.</p>\n\n\n\n<p>[00:09:40] <strong>Nathan Wrigley:</strong> Yeah. So just a couple of things on the navigation. For a start, it really is front and center on the wordpress.org navigation. Currently, as things stand, we&#8217;re recording this in November 2023. It&#8217;s the second item in the menu. After news comes Showcase and after that is hosting.</p>\n\n\n\n<p>But then also if you actually go onto the Showcase site, there&#8217;s a couple of menu items on the right hand side where it says submit a site. And then there&#8217;s view all sites. But it&#8217;s the submit a site bit that I&#8217;m interested in. I wonder what the guidelines is around what would ever make it onto this page.</p>\n\n\n\n<p>I can imagine if you were an agency, it would be incredible to get your website listed here. Presumably there&#8217;d be some kudos to that, and perhaps even other people coming to your agency.</p>\n\n\n\n<p>So I wonder around that if there are criteria about what can appear here, what will appear here in the future. And the number a hundred, which is the number of websites that&#8217;s there at the moment, seems too coincidental. Is that the target number that you&#8217;re always going to feature or does that possibly go up and down depending on submissions?</p>\n\n\n\n<p>[00:10:38] <strong>Nick Diego:</strong> So it&#8217;s funny you call out the hundred, because there were some proposals back in March around trying to keep the Showcase to 100. And from some community feedback it was like, oh, that&#8217;s a numbers too small. Do we really want to remove people from the Showcase once you&#8217;ve been added? You know, so kind of keeping that 100 as it stands right now, based on my understanding, that&#8217;s not a hard and fast number to be stuck with.</p>\n\n\n\n<p>Interestingly enough, a lot of sites that were on the previous version of the Showcase were pulled over into the new Showcase. And there were some that were in the queue still, that hadn&#8217;t been processed, that also got pulled over. There are a handful of new ones as well.</p>\n\n\n\n<p>As we went through, double checking, oh, this is still a WordPress site, making sure there were no problems, we randomly got to 100. It was like 108 at one point, and then just like, oh, this is not WordPress anymore. And then it got down to 100, so that&#8217;s purely coincidence.</p>\n\n\n\n<p>[00:11:27] <strong>Nathan Wrigley:</strong> In terms of criteria for submission though, what would those be?</p>\n\n\n\n<p>[00:11:31] <strong>Nick Diego:</strong> Exactly. So right now, the submission for submitting to the Showcase has not changed from the previous version. The project around updating the aesthetic, and the design of the site is part of a broader effort across wordpress.org, to kind of modernise and update the site as a whole. The main focus is aesthetics, and also changing all the themes to a block theme. So the new Showcase is entirely a block theme. Previously it was not.</p>\n\n\n\n<p>Content moderation and how the submissions are managed, you know, how often new sites get added, that was not within the scope of the project. How the previous Showcase was managed, prior to this new redesign, is all the same.</p>\n\n\n\n<p>That being said, there is a lot of work that needs to be done. And this needs to be handled from a community perspective, around content moderation, what is the process around that? So as we move forward in the next few months, that needs to be a focus for the Showcase site, in kind of improving that pipeline for new sites.</p>\n\n\n\n<p>As of right now, we get a lot of submissions to the Showcase, because it&#8217;s wide open. Anybody can submit. So there is a lot of contributor time that&#8217;s needed to go through each submission, double check that it&#8217;s WordPress. So there&#8217;s a lot of work and man hours that is required for that.</p>\n\n\n\n<p>And that&#8217;s something that needs to be sorted out in a Make post, and get some folks around that who want to commit time to helping manage that process. So, unfortunately that wasn&#8217;t part of the scope of this project, but it is very important to the continued success of a Showcase, and will need to come in the future.</p>\n\n\n\n<p>We also have a few issues that were highlighted during the launch and the development of the site, that will also get improved as we go along. So I do really want to stress that, while the aesthetics of the Showcase right now, very different from what was before, so it really feels like a new experience. It is just another iteration, and more iterations will come as, you know, we fix things and improve things.</p>\n\n\n\n<p>[00:13:22] <strong>Nathan Wrigley:</strong> In terms of the criteria for a minimum basic requirement, if you want to feature on this site. I mean, if you click through to any of the websites, the first thing which springs to mind is, you know, it has to be responsive because it&#8217;s shown in two different ways. There&#8217;s something suggestive of a desktop, and there&#8217;s something suggestive of a mobile phone.</p>\n\n\n\n<p>It doesn&#8217;t actually have the sort of, it&#8217;s not encapsulated by the phone UI or anything. But it&#8217;s pretty clear that&#8217;s what you&#8217;re looking for. So that would be a minimum. But beyond that, do you have any things which are utterly essential? So one thing which jumps into my head would be, I don&#8217;t know, this website is accessible, for example. Or this website is, well, I&#8217;ll hand it over to you. Are there any criteria which, just don&#8217;t submit unless you meet this, this and this?</p>\n\n\n\n<p>[00:14:01] <strong>Nick Diego:</strong> Right. So there are currently three bullet points under the submission criteria, and they&#8217;re purposely quite broad. You need to be using WordPress in a unique and innovative way, representing a notable organisation, government entity, or corporation as a official blog or website.</p>\n\n\n\n<p>The key piece here before I say the last one is that, you need to be doing one or more of the following. So one or more of these, and or you need to be using modern WordPress. So for example, a small little restaurant might have a really cool, interesting design. They&#8217;re not a notable organisation or corporation, but they&#8217;re using it in a unique and innovative way. Maybe they&#8217;re using a block theme to do so. So you don&#8217;t have to apply it to all of these, but these are kind of the broad criteria around that.</p>\n\n\n\n<p>So when it comes to being things like accessibility, and responsiveness or whatever. These are things where there is no criteria right now around a site passing a certain level of accessibility, or a certain lighthouse score. And it&#8217;s not to say that those criteria couldn&#8217;t exist, but they would need to be decided on collectively as a community. Identified what those are, and then that criteria can be implemented to the sites in the Showcase.</p>\n\n\n\n<p>That process is highly opinionated, not highly opinionated, but it requires a lot of group consensus. And that is partially why the whole submission process and, you know, the content moderation was not part of the redesign. Because that requires an, at least personally, that requires its own consideration, its own thought processes, its own discussion with the community. And hopefully that could happen relatively soon as well.</p>\n\n\n\n<p>[00:15:38] <strong>Nathan Wrigley:</strong> It seems like a not particularly onerous submission process, in that case. So long as you hit two out of the three of the criteria that you mentioned, you&#8217;re eligible. And then we must wait for the community to decide which go in, and add to the pool that we can currently see.</p>\n\n\n\n<p>Doing a quick refresh, there&#8217;s always one website which dominates, if you like, it&#8217;s in the, you know, the hero section. And there&#8217;s one website which get featured. But every time I click refresh, broadly speaking, I get what seems to be something random. Although having refreshed probably 50 times or so now, it would appear that the ones which get into the header, there&#8217;s a few that seem to be earmarked.</p>\n\n\n\n<p>There&#8217;s maybe five or six that I&#8217;ve seen so far. I&#8217;m seeing the New York Times. I&#8217;m seeing Meta. I&#8217;m seeing a variety of others that come up. Is there some other criteria there to get right to the top, if you like, of that page?</p>\n\n\n\n<p>[00:16:26] <strong>Nick Diego:</strong> There is not. Behind the scenes, they&#8217;re basically a sticky post. And so there&#8217;s a server cache that refreshes, I believe it&#8217;s every 120 minutes, or every 60 minutes. And once that refreshes you&#8217;ll see a new page. The sites that were up there were selected as part of just the redesign aesthetic process just to have something there.</p>\n\n\n\n<p>But the mechanism around those six sites can completely change. So if the community decides some brand new site really should be part of that six, then it can be. Should be considered kind of a default just to get the site launched. But I kind of put who those six are, kind of falls into that content moderation bucket, and it really can be anything that the community wants. Obviously that&#8217;s within the Showcase.</p>\n\n\n\n<p>[00:17:09] <strong>Nathan Wrigley:</strong> When you click through to any of the particular websites in question, it looks like one of the submission things is A, give us the name. B, give us some imagery, or presumably you scrape that imagery somehow. But then it&#8217;s categorised by country, by the word category in this case, I&#8217;m looking at one which is categorised as business.</p>\n\n\n\n<p>Then there&#8217;s flavor, which is quite an interesting term. Publish date, and then there&#8217;s a bunch of tags, which obviously refer to the industry that you&#8217;re in. So I&#8217;m looking at art, hospitality and so on. But there&#8217;s probably some more there.</p>\n\n\n\n<p>You get a link, which seems to go directly, I don&#8217;t know what kind of a link that is, but maybe it&#8217;s just a regular old link, going directly to the property itself. And then you get some descriptive text, where you get to establish what this business is, and how the website has been put together.</p>\n\n\n\n<p>But it doesn&#8217;t seem on the whole, this isn&#8217;t really a promotional tool for agency X. This is not a technique for an agency that&#8217;s big in the WordPress space, we know all the names. For them to push something and say, look what we did. There&#8217;s no link to them anywhere as far as I can see.</p>\n\n\n\n<p>[00:18:08] <strong>Nick Diego:</strong> Correct. And this is something that, again, we tried to stay out of because it really falls into kind of content moderation again. But ideally, the Showcase should be a very exciting, place to Showcase your best work.</p>\n\n\n\n<p>So it would be amazing if, you know, some of the largest agencies, even small agencies, submitted their work to the Showcase for review. Because we know that there&#8217;s a hundred sites in this Showcase, right? We know that there&#8217;s millions of sites out there. Probably many that are better than the ones that are in the Showcase, right? And so having folks submit their work will be awesome.</p>\n\n\n\n<p>Now, you&#8217;re right. It is not a tool to show off the agencies or promote the agencies. That being said, when you submit a site, you include a description about the site and how it was built. And it would be kind of nice, you know, in the future of these kind of became little mini case studies. Hey, you know, we built this nasa.gov, and we&#8217;re using Multisite.</p>\n\n\n\n<p>And it&#8217;s fine to highlight the agency dimension who built it, that&#8217;s okay. But it&#8217;s really about showcasing the work, and showcasing what can be built with WordPress. An agency can kind of inadvertently promote their work by being on Showcase, but that&#8217;s not the intended purpose. And I don&#8217;t know if we want to jump right into it, but I do want to share some thoughts around the taxonomies because you mentioned you have category and flavor.</p>\n\n\n\n<p>[00:19:27] <strong>Nathan Wrigley:</strong> Categories and flavors. Flavor, by the way, you have three options that I can see at the moment. You have WordPress, WordPress enterprise, you might want to pick that one apart for the audience, and WordPress Multisite. They&#8217;re the options that you&#8217;ve got. So yeah, throw all the taxonomy stuff at us. That&#8217;s good.</p>\n\n\n\n<p>[00:19:41] <strong>Nick Diego:</strong> So the taxonomy stuff is an area of the site that needs a future iteration. A lot of it was just pulled over from the old site to make sure that, you know, we kind of had feature parity as we moved over.</p>\n\n\n\n<p>Flavor is an interesting one. And I think this is where we can really, maybe flex in the future. You could imagine a flavor being block theme, or hybrid theme. You know, maybe it&#8217;s different flavors of how the sites are built. WordPress is just like the catch all, just like normal WordPress. Presumably everything is WordPress.</p>\n\n\n\n<p>But in enterprise, again, kind of a nebulous thing around sites that, and there&#8217;s only a handful of them that are listed as enterprise, where in doing this and reviewing the sites, we knew that this was a massive site that was enterprise grade, quote unquote, like NASA. With, you know, 60,000 pages. Really massive sites. And then Multisites, obviously for folks that are using Multisite.</p>\n\n\n\n<p>Flavor, the current setup for the, you know, the taxonomy needs some work. We left it because it could be reused in a really interesting way in the future. And if folks have ideas around how this taxonomy can be used and additional terms to add, by all means, let us know.</p>\n\n\n\n<p>Category is, and this goes back to thinking about some of the competitors of WordPress. Where we have Squarespace and Wix and so on. If you go to their Showcases, they have some very simple categories. You know, these are like five or six, that kind of bucket the sites. So it&#8217;s a little bit easier to navigate.</p>\n\n\n\n<p>Right now, the category just looks like a normal taxonomy. But one of the ideas, perhaps in a future iteration is like, when you land on the Showcase, maybe there&#8217;s, visually you have some, you know, nice little buttons or something to say like business and portfolio. To try and help users navigate around the site a little bit better.</p>\n\n\n\n<p>For this iteration of the Showcase, we left it very simple. It&#8217;s just another taxonomy term. But it leaves the door open for a new, updated design in the future that kind of leverages those categories a bit more. Makes the site a little bit more navigable for users, especially who are coming there for the first time.</p>\n\n\n\n<p>And then your site tags are, it&#8217;s supposed to be like a fun expression where, we could have a thousand tags. It&#8217;s just a way to provide additional context about what a site is like. So tags are free form. Ideally we&#8217;ll have hundreds of them, that really help provide a little bit of fun to the sites and explain a little bit more.</p>\n\n\n\n<p>[00:21:57] <strong>Nathan Wrigley:</strong> I think the categories will be really useful for novice people coming to WordPress, because it really does break out what WordPress is capable of, as much as anything else. So currently, at the time that I&#8217;m looking at the screen, the options are business. I would imagine a lot of people would immediately grasp what that is, but community. Oh, okay, WordPress can do that kind of thing. Can it? Okay.</p>\n\n\n\n<p>Creative publication, obviously capturing people who are creating blogs or newspapers or whatever that might mean. But also store, you know, okay WordPress can handle that as well, can it? And whilst it&#8217;s obvious to you and I that those things are well within the purview of what WordPress can do, it may not be to other people.</p>\n\n\n\n<p>So, yeah I think they&#8217;ll be really, really useful. And you can stack them on top of each other. So you can filter two or three things at the same time. And it strikes me that that will be, yeah, incredibly useful.</p>\n\n\n\n<p>Now you threw out there, dare we say it on a WordPress podcast. You threw out there the name Squarespace, I don&#8217;t know if you mentioned Wix. But we know who the commercial competitors are. And you also said, if you look at their Showcases. So I haven&#8217;t looked at their Showcases, but I&#8217;m guessing that there must have been, in order for this redesign to happen, there must have been a moment in time where the WordPress Showcase, perhaps fell behind in terms of the appeal, or the design or what have you.</p>\n\n\n\n<p>Did the WordPress Showcase, in times gone by, a few months ago let&#8217;s say, did it not live up to what it does now?</p>\n\n\n\n<p>[00:23:18] <strong>Nick Diego:</strong> I want to be very clear and not disparage anybody that was involved in the original Showcase. It served its purpose, but it felt as old as it was. You know, I don&#8217;t know when that original site was launched, but it felt many years old, and it was.</p>\n\n\n\n<p>And so when, I mean, WordPress.org is not a commercial entity. But at the same time, we are trying to grow the user base of WordPress. And other proprietary platforms, like Squarespace and Wix are also trying to grow their user base. And part of that is showing off what those platforms can do. And that was, that&#8217;s the point of the Showcase, to kind of show what WordPress can do.</p>\n\n\n\n<p>And I think it was very fair to say that the previous aesthetic of the Showcase did not showcase WordPress in the best light, especially compared to some of these other tools that people can use.</p>\n\n\n\n<p>And what we&#8217;re thinking about here is really not, you know, not an agency that already knows WordPress, not people who already know WordPress. But those folks who are just want a website, just want a presence online. And so if you were to compare the old Showcase, and something like Squarespace and Wix, it was a very stark difference there. And it was very clear which direction a user might go if they knew nothing else other than, this looks pretty, I want this.</p>\n\n\n\n<p>And so yes, there was a lot of consideration around what others were doing when the Showcase was designed. And it&#8217;s not necessarily to compete with these other platforms, but it&#8217;s just to really showcase WordPress in a modern way that allows WordPress to kind of, allows us to be excited about directing people to the Showcase, other than perhaps cringing that it was a little bit out of date, and not reflective of the best that WordPress can be.</p>\n\n\n\n<p>[00:24:51] <strong>Nathan Wrigley:</strong> It strikes me that this has lots of layers of use as well. Because, not only could you go to this website, obviously there&#8217;s a hundred at the moment, but that number is going to be in flux. Let&#8217;s imagine that there&#8217;s more in the future. Not only could you go there and just get bucket loads of inspiration, because really, genuinely there&#8217;s not one that looks anything like the other. They really are truly different in nature. And I guess that&#8217;s part of the Showcase, is to maintain that originality, as you said.</p>\n\n\n\n<p>So you can go there to get inspiration. But also, it was always a part of the arsenal, I thought of a freelancer, and an agency when trying to persuade clients that WordPress was a credible choice. It was always really great to, not only show the designs, but also to name the names.</p>\n\n\n\n<p>So, you know, The White House, NASA, you just list it. Well, these people are using WordPress, and immediately credibility just falls out of your mouth. I just wondered if there was any bit of this which was designed for that? You know, to help the community to be able to sell WordPress to their clients.</p>\n\n\n\n<p>[00:25:54] <strong>Nick Diego:</strong> Absolutely. I think that WordPress has, in some circles, a negative connotation. You know, it&#8217;s just a blogging software. People decry security issues, which we know is not necessarily founded. And, you know, these are things where being able to send some customer or client somewhere and say, hey, do you know Noma? One of the most famous restaurants in the world? They&#8217;re using WordPress.</p>\n\n\n\n<p>Hey, do you know the Ray Charles Museum? You&#8217;ve heard of Ray Charles. They&#8217;re using WordPress, so on and so forth. Rolling Stone is using WordPress. And I really think that that, not that we need to prop up the credibility of WordPress, but I think that having something like this really helps with that. And, you know, establishing that credibility, and also showcasing what WordPress can do.</p>\n\n\n\n<p>[00:26:33] <strong>Nathan Wrigley:</strong> This could be completely wrong. Apologies if this comes out and you think, no, no, no, that really wasn&#8217;t the intention. The ones that I&#8217;m looking at, I&#8217;ve got a screen full of, and it probably is by some sort of random query of the database. I&#8217;ve got a screen full of things where everything is in English.</p>\n\n\n\n<p>I doubt that that&#8217;s the case because now that I&#8217;ve gone onto the second page, I can see there&#8217;s one or two where English as the first language is not there. So is that just a coincidence? It&#8217;s not like there&#8217;s a proclivity here to showcase English things. Any language is possible. It&#8217;s the design that&#8217;s the point, not the language.</p>\n\n\n\n<p>[00:27:05] <strong>Nick Diego:</strong> I think that may have been unfortunate happenstance because there was a really strong effort to make sure that there&#8217;s a diversity of sites across other languages. Actually, we do have one on the homepage, the Denmark Museum of Design. The featured name is Design Museum Denmark, but then all the navigation is in Danish, I believe.</p>\n\n\n\n<p>So that was definitely a huge effort as well. Because WordPress is not just the United States, and the state of the word that&#8217;s coming up is taking place in Madrid to kind of show off all the amazing contributors that we have in Spain. You know, so this is really a global Showcase, and it really should reflect that.</p>\n\n\n\n<p>So perhaps we need to add a few more items to the homepage that are from different areas, but absolutely not. We really want to have a broad spectrum of sites across the world.</p>\n\n\n\n<p>[00:27:51] <strong>Nathan Wrigley:</strong> So, WordPress is doing a really good job here, we can see that. WordPress is also doing a really good job in the amount of materials that are being created in order to learn how to use WordPress. And I know this isn&#8217;t directly within your wheelhouse, but i&#8217;m kind of interested where this would go.</p>\n\n\n\n<p>I wonder if in the future it would be kind of interesting to match up some of these designs with learn material. So, you see them on YouTube all the time. Somebody dissects a site, and then quickly rebuilds it in WordPress, with blocks or whatever it may be. This just seems to be enormously popular.</p>\n\n\n\n<p>You know, people love to consume that kind of content because they learn. They&#8217;ve got a template that they can work towards, and they can see how it&#8217;s scaffolded and built on the screen. So I&#8217;m not holding you to anything, but I do wonder if the Showcase might lean in that direction to help people, not just see what&#8217;s beautiful, but also, this is how it was built as well. That would be kind of nice.</p>\n\n\n\n<p>[00:28:42] <strong>Nick Diego:</strong> Absolutely. And I think that there is some work, and I don&#8217;t want to, again, put words in anybody&#8217;s mouth, but there is some work around. So we have an enterprise section. wordpress.org/enterprise. And I know that there&#8217;s some work being done exploring how to create more case studies.</p>\n\n\n\n<p>So if you look at a site, take NASA for example, massive site. And I go, how do you even build that sort of thing? Wouldn&#8217;t it be cool if there was a case study that said, hey, this is what we did. Hey, we had 50 custom blocks, you know, we did this X, Y, and Z. Being able to show what went behind each Showcase entry, in some sort of case study, would be really, really, really cool.</p>\n\n\n\n<p>So I love that idea. And I think that there&#8217;s some exploration around how we can do that. Because it&#8217;s not only enough to show the site that was built, but how it was built. Maybe even in broad terms, would be incredibly helpful for folks to help kind of recreate that sort of thing.</p>\n\n\n\n<p>[00:29:30] <strong>Nathan Wrigley:</strong> Get the excitement going, but also getting people learning how to build it. You may have already answered this question, towards the beginning of the show. I don&#8217;t think you said that all of these, or even many of them, are based upon block themes. Let&#8217;s just firstly clear that up. There&#8217;s no proclivity here of, well, it must be done with, in air quotes, modern WordPress block based themes, no?</p>\n\n\n\n<p>[00:29:51] <strong>Nick Diego:</strong> Nope. There&#8217;s a lot of sites in here that are not. There are some that are, and I think that as we move forward, it would be cool to have maybe a flavor that could clearly call out, okay, this is a full on block theme. Because I think that we do kind of lack some examples of real world examples of block themes.</p>\n\n\n\n<p>But to go to the broader effort, so Showcase is just one piece of this wordpress.org redesign. We want wordpress.org to be fully block based. You know, because it&#8217;s a massive site. There&#8217;s a lot of different pieces of it. There&#8217;s a showcase, there&#8217;s plugins repo and themes repo. Having that all block based really showcases the power of blocks. So we&#8217;re not even close to that yet.</p>\n\n\n\n<p>But the cool thing is, is that the Showcase is entirely block based. So if you want to build a site like the Showcase, you can with blocks.</p>\n\n\n\n<p>[00:30:34] <strong>Nathan Wrigley:</strong> I&#8217;m going to get you to, somewhat unexpectedly, change the hat that you&#8217;re wearing, because I want to just ask you about blocks actually, and block based themes in particular, if that&#8217;s okay? So it wasn&#8217;t exactly why I got you on the call, but I hope I can smuggle the odd question in.</p>\n\n\n\n<p>How is that enterprise going? Because, I&#8217;m specifically talking now about block based themes. We&#8217;ve had these around for a little while now, and it would appear at least on the face of it, that the stats, if you just took the raw stats, the pendulum doesn&#8217;t seem to have swung in the direction of adoption for block based themes, perhaps as much as one would have imagined or hoped, whichever word you prefer there.</p>\n\n\n\n<p>What&#8217;s your opinion of that? Do you think people are just sticking with what they&#8217;re familiar with? They&#8217;re waiting for the right moment. Or do you think this is a permanent thing that WordPress is going to face going into the future? Where we&#8217;ve got this, well, you have to make a decision right at the outset. Are we going to go with a classic theme? Are we going to go with a block theme?</p>\n\n\n\n<p>And that decision will never get resolved. There&#8217;ll always be the option for those two things. Or you have some sort of intuition that, perhaps in the future, block based themes will start to consume that pendulum swing?</p>\n\n\n\n<p>[00:31:39] <strong>Nick Diego:</strong> I think that there will always be a choice between the two. But I think that, actually the development of the Showcase site and the other sites that we&#8217;re doing for wordpress.org, is a very interesting exploration. Because you&#8217;re talking about applying a block theme to a massively trafficed site.</p>\n\n\n\n<p>So one of the other projects that we&#8217;re working on right now is overhauling the developer resources section. So this takes into account the block editor handbook, the themes handbook, a lot of handbooks. You know, it&#8217;s hundreds and hundreds of pages.</p>\n\n\n\n<p>Exploring how to build a block theme that supports that sort of thing, can be challenging. And so, I think that there is a certain level of tension around transitioning from an architecture that you already know, to something like a block theme, where you&#8217;re going to have to implement things in different ways. Learning how to do that at scale can be challenging.</p>\n\n\n\n<p>A good example is that, every page, or almost every page in wordpress.org, actually needs to stay in version control so it can be translated. So when you&#8217;re editing things in the block editor, if you&#8217;re just on your personal site, when you save something to the site editor, that change is saved in the database.</p>\n\n\n\n<p>We can&#8217;t do that in wordpress.org. All those changes need to be synced back to the actual template files that power the theme. This is getting very in the weeds I know, but it&#8217;s just one of these things you have to kind of account for when building a block theme, on a site of this scale.</p>\n\n\n\n<p>Once you figure that out, once you figure out a process for it, it&#8217;s not that big of a deal. It&#8217;s not that bad. But figuring that out can be a little challenging. For anybody that&#8217;s interested in this sort of thing, all the theme files for Showcase and rest of .org. It&#8217;s all open source. It&#8217;s all available to the public in the WordPress repository on GitHub. So if you want to know, how do they do this block that does the big banner image on the homepage? It&#8217;s a custom block, and it&#8217;s available in the GitHub repo for you to check out.</p>\n\n\n\n<p>So I&#8217;m hopeful that as we go through these things and we can actually, you know, show how some of these implementations are done, that might help get others over that hump of transitioning. But there&#8217;s no doubt in my mind that it&#8217;s going to take some time, especially for large sites like this.</p>\n\n\n\n<p>But I know, from somebody who, I didn&#8217;t do the development work, but I did a lot of, you know, editing and, you know, we&#8217;re doing more work now and other sites. Being able to go into a block editor page and scaffold out a design in blocks is so much easier. Like it is so much better.</p>\n\n\n\n<p>And it also requires much less development, because you can scaffold out a page and how you want it to look. You can move blocks around. And once you&#8217;re done, then you can pass it off the development team. They push it into a theme template, and you&#8217;re good to go. So it really cuts down on the development time, once you have the entire architecture set up.</p>\n\n\n\n<p>And it also really empowers, which was kind of the promise of the block editor and site editor, empowers the content creator, or the designer, to build most of it themselves. And we&#8217;re starting to see that with this .org project. We&#8217;re getting to a point where a lot of the ground work is done, a lot of infrastructure is done. And now we can start really moving quickly because it&#8217;s just designing in the editor, which is great.</p>\n\n\n\n<p>[00:34:32] <strong>Nathan Wrigley:</strong> I think by pure coincidence, a bit of serendipity, it&#8217;s the 7th of November, and it&#8217;s a big day for WordPress because 6.4 has landed. I don&#8217;t know if you&#8217;ve got to get off the call go quickly triage things or anything like that.</p>\n\n\n\n<p>It does appear, from my perspective anyway, I keep a pretty close weather eye on what&#8217;s happening in the project. It does seem that version by version, minor release by minor release, the promise of what blocks can do and block themes can do, is becoming more and more compelling. I do understand, you know, if your agency is embedded in a workflow which just is going to be so difficult to untangle, I can understand why that inertia might be there.</p>\n\n\n\n<p>If you had point somebody, Nick, in the direction of a resource, a good website. I mean, we can probably give it, take it as given that you&#8217;d point them in the direction of learn.wordpress.org and various other properties like that. I wondered if you had any good advice as to where to go, to learn about block based themes.</p>\n\n\n\n<p>[00:35:24] <strong>Nick Diego:</strong> Yeah. So, learn.wordpress.org is fantastic. I&#8217;ll also give a little self plug from me and my team. I have a small team with a few others and we&#8217;re on the developer relations team, and if you&#8217;re interested in more developer oriented content, the learn team does a great job with user content and some developer content, but our focus is all developer content.</p>\n\n\n\n<p>And so once a month or once or twice a month, we do a developer hours, which is a live series. And it&#8217;s always a very specific topic. The last one we just did was theme oriented. We had Jessica and Maggie who helped build the new 2024 theme, and they went through how that theme was built. Code examples and, you know, how the whole thing was built.</p>\n\n\n\n<p>And so every month we have these sessions that are very developer oriented, whether it&#8217;s building custom blocks, whether it&#8217;s building block themes. And that&#8217;s where, if you&#8217;re a developer and you really want to learn how to build this stuff, as opposed to using a block theme, that&#8217;s great for learn. I highly recommend that.</p>\n\n\n\n<p>I also want to say again, another shout out. We&#8217;re doing a lot of work to overhaul the block editor handbook document, basically the documentation on how to build blocks, and work with the editor. Justin Tadlock, who used to write for WP Tavern, he&#8217;s been undertaking a massive project to overhaul the themes handbook.</p>\n\n\n\n<p>And so with these two efforts, it&#8217;s going to take into 2024 to kind of complete them. But the idea is that both the block editor handbook and the themes handbook will be much more robust, especially when it comes to building with blocks, whether it&#8217;s a block theme or building custom blocks.</p>\n\n\n\n<p>And we hope that better documentation leads to better projects that people can build. Because right now there&#8217;s some, definitely some holes in both of those pieces of documentation which we hope to fix.</p>\n\n\n\n<p>And we&#8217;re also going to get a brand new design very soon for that developer resources section, which will make navigating the documentation much nicer.</p>\n\n\n\n<p>[00:37:17] <strong>Nathan Wrigley:</strong> And lest anybody forget, this is all free. It&#8217;s entirely free, ready for you to utilize.</p>\n\n\n\n<p>Nick, thank you so much for chatting to us about the Showcase. My hope is that people listening to this will be able to, A, make use of it, you know, perhaps to pitch their own work, but also perhaps submit their own site so that the number there 100, will continue to rise and we can all benefit from the wonderful things that have been produced.</p>\n\n\n\n<p>Where might people find you if they want to communicate with you directly?</p>\n\n\n\n<p>[00:37:46] <strong>Nick Diego:</strong> Absolutely. So anybody is welcome to reach out in the WordPress Slack channel, @ndiego, and also on Twitter, X, whatever we&#8217;re calling days @nickmdiego. But happy to answer any questions about block development, block theme development.</p>\n\n\n\n<p>[00:38:00] <strong>Nathan Wrigley:</strong> Nick Diego, thank you so much for chatting to me about the Showcase. I really appreciate it.</p>\n\n\n\n<p>[00:38:05] <strong>Nick Diego:</strong> Thank you so much for having me back.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://twitter.com/nickmdiego\">Nick Diego</a>.</p>\n\n\n\n<p>Nick is a sponsored full-time contributor at Automattic. His official position is a developer relations advocate, which allows him to focus on creating developer orientated content. Apart from his regular responsibilities, Nick is also involved in a separate project called the <a href=\"https://wordpress.org/showcase/\">WordPress Showcase</a>, and this is the focus of the podcast today.</p>\n\n\n\n<p>The WordPress showcase is a curated collection of websites built with WordPress. Its purpose is to inspire, and show the breadth of what WordPress can achieve. Currently the showcase features around a hundred sites, including large enterprises like the New York times and NASA. It aims to challenge misconceptions about WordPress, and highlight the platforms scale and reach.</p>\n\n\n\n<p>The design of the showcase is contemporary and visually impactful. It shows that whatever proprietary platforms can do, WordPress can also do.</p>\n\n\n\n<p>During the podcast we talk about the intricacies of the Showcase project. We discuss the selection criteria for featured sites, including the possibility of case studies to show the process behind their creation.</p>\n\n\n\n<p>We also explore the importance of block themes within the Showcase, and the ongoing efforts to make wordpress.org fully block-based.</p>\n\n\n\n<p>We also get into the future iterations of taxonomies and navigation on the site to enhance its functionality. Nick suggests that the categories in the showcase will serve as a valuable resource for novice users, trying to understand the capabilities of WordPress.</p>\n\n\n\n<p>The redesigned showcase aims to highlight WordPress in a modern way, inspire web design, and convince clients that WordPress is a credible choice. Everything that you see on the website is open source, meaning that you can download all the theme files for the showcase site to see how it was all put together.</p>\n\n\n\n<p>If you&#8217;re curious about block development, or how you might convince clients that WordPress is a credible CMS, this podcast is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p><a href=\"https://wordpress.org/showcase/\">WordPress Showcase</a></p>\n\n\n\n<p><a href=\"https://wordpress.org/enterprise/\">WordPress Enterprise</a></p>\n\n\n\n<p><a href=\"https://developer.wordpress.org/block-editor/\">The block editor handbook</a></p>\n\n\n\n<p><a href=\"https://developer.wordpress.org/themes/\">The theme handbook</a></p>\n\n\n\n<p><a href=\"https://learn.wordpress.org/\">Learn WordPress</a></p>\n\n\n\n<p><a href=\"https://wordpress.tv/2023/11/02/developer-hours-exploring-the-twenty-twenty-four-theme/\">Recent Developer Hours</a></p>\n\n\n\n<p><a href=\"https://twitter.com/nickmdiego\">Nick&#8217;s Twitter</a></p>\n\n\n\n<p>You can reach out to Nick in the WordPress Slack channel: @ndiego</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Nov 2023 15:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"BuddyPress: BP Classic 1.2.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=331958\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://buddypress.org/2023/11/bp-classic-1-2-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2568:\"<p>Dear end users &amp; site owners,</p>\n\n\n\n<p>Never heard about BP Classic? You should read theÂ <a href=\"https://buddypress.org/2023/07/bp-classic-1-0-0/\">Add-onâ€™s first version announcement post</a>. Please note <a href=\"https://downloads.wordpress.org/plugin/bp-classic.1.2.0.zip\">version 1.2.0</a> is now available for upgrade/download.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What about 1.2.0 changes?</h2>\n\n\n\n<p>3 issues have been fixed:</p>\n\n\n\n<ul>\n<li>Avoid a type mismatch issue during the migration process (See <a href=\"https://github.com/buddypress/bp-classic/issues/27\">#27</a>).</li>\n\n\n\n<li>Only check once BuddyPress current config &amp; version are ok (See <a href=\"https://github.com/buddypress/bp-classic/issues/28\">#28</a>).</li>\n\n\n\n<li>Make sure the migration script is run on Multisite (See <a href=\"https://github.com/buddypress/bp-classic/issues/31\">#31</a>).</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Many thanks to the contributors who helped BP Classic be ready for the next BP major release (12.0.0)</h2>\n\n\n\n<p><a href=\"https://buddypress.org/members/imath/\">@imath</a>&nbsp;<a href=\"https://buddypress.org/members/emaralive/\">@emaralive</a></p>\n\n\n\n<p>NB: BuddyPress&nbsp;<strong>12.0.0</strong>&nbsp;is still under development (final release is scheduled to December 6). You can contribute to BP Classic to check it makes sure the third party plugins &#8211; not ready yet for the BP Rewrites API (to be introduced in 12.0.0) &#8211; you are using will behave as expected thanks to this backwards compatibility add-on. To do so simply test it &amp; your BP plugins with the <a href=\"https://buddypress.org/2023/11/buddypress-12-0-0-beta4/\">BP 12.0.0-beta4 pre-release</a> and report issues adding a reply to <a href=\"https://buddypress.org/support/topic/lets-prepare-the-buddypress-12-0-0-next-major-release/\">this topic</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Please upgrade!</h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-layout-1 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/plugins/bp-classic/\">BP Classic</a></blockquote>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Nov 2023 21:01:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"Do The Woo Community: Now is the Time for Passkeys in WordPress, All the Time with Timothy Jacobs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=78528\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://dothewoo.io/now-is-the-time-for-passkeys-in-wordpress-all-the-time-with-timothy-jacobs/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:584:\"<p>On Emerging Tech, Timothy Jacobs of SolidWP explores passkeys, a security tech for WordPress. Eliminating passwords, it uses biometric data, ensuring user safety and resisting phishing. Adopted by major firms, passkeys promise enhanced WordPress security.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/now-is-the-time-for-passkeys-in-wordpress-all-the-time-with-timothy-jacobs/\">Now is the Time for Passkeys in WordPress, All the Time with Timothy Jacobs</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Nov 2023 08:39:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"WPTavern: Whatâ€™s Next?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=151422\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://wptavern.com/whats-next\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3913:\"<p>First, I&#8217;d like to repeat <a href=\"https://wptavern.com/last-call#comment-445773\">my comment</a> to <a href=\"https://twitter.com/pollyplummer\">Sarah</a>:</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>Sarah, you are amazing. Your insightful writing and journalism has been a gift to the WordPress world, and shaped how the project has evolved for the better. Itâ€™s a key and major contribution to the community. Thank you, deeply, and I canâ€™t wait to see what you do next. Ten yearsâ€¦ wow!</p>\n</blockquote>\n\n\n\n<p>I&#8217;m sorry I haven&#8217;t had the time to find a new writer for the Tavern in the time between when Sarah gave her notice a few weeks ago and now. There&#8217;s never a dull moment in tech and my priorities with <a href=\"https://wordpress.org/\">WordPress core</a> and <a href=\"https://automattic.com/\">Automattic</a> ended up taking more time than I expected. Funding and supporting the Tavern to do independent WordPress journalism is an important part of the WP ecosystemâ€”we need a site that covers our space without care for affiliate links.</p>\n\n\n\n<p>If you have:</p>\n\n\n\n<ul>\n<li>Impeccable integrity</li>\n\n\n\n<li>Relentless curiosity</li>\n\n\n\n<li>A blogger&#8217;s hustle</li>\n\n\n\n<li>Passion for news and technology</li>\n\n\n\n<li>Technical ability to tinker with WordPress, plugins, and themes</li>\n</ul>\n\n\n\n<p>Please send an email to matt at my last name dot com, with [wptavern] at the beginning of the subject, and the following things in the email:</p>\n\n\n\n<ol>\n<li>Why you think you&#8217;d be best in the world for this job.</li>\n\n\n\n<li>Links to three things you&#8217;ve written that you feel represent your style well.</li>\n\n\n\n<li>A link to your homepage and any social media you keep up with.</li>\n\n\n\n<li>Link or attach a resume, but don&#8217;t worry too much about this, the first two are more important.</li>\n\n\n\n<li>Your <a href=\"https://w.org/\">W.org</a> username, and sign up for the Slack there so I can ping you.</li>\n</ol>\n\n\n\n<p>And please send in the application by November 24th! We&#8217;ll take this week off but hopefully come back blazing after Thanksgiving. I&#8217;ll review everything over the weekend when I have some time off planned.</p>\n\n\n\n<p>We&#8217;ll try out a number of folks on an hourly contract ($25/hr, same as Automattic) as a trial, and if that goes well we&#8217;ll aim to hire two full-time writers by the end of the year. A full-time offer also includes generous benefits including full coverage on health care and 6% 401k matching. You&#8217;ll be an employee of <a href=\"https://audrey.co/\">Audrey</a>.</p>\n\n\n\n<p>The job is to write frequently about the goings-on in the WordPress world and foster a healthy discussion and community here on the site. If you&#8217;re doing your job well, it should be reflected in traffic and comments on the site.  You will set the tone and discussion in the WordPress community, and drive the narrative. Every post will be syndicated to every wp-admin in the world. You don&#8217;t have to start out a WordPress expert, but you&#8217;ll become one. You&#8217;ll have a ton of autonomy, so need to be self-driven and able to manage yourself. (You can ask previous writers how much I was in their hair. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f600.png\" alt=\"?\" class=\"wp-smiley\" />)</p>\n\n\n\n<p><em>Midjourney prompt: a stunning landscape scene with a tranquil atmosphere. The foreground showcases a calm, crystal-clear lake reflecting the serene blue sky above. On the horizon, a majestic mountain range rises, covered in lush, green vegetation. The central focus of the image is the sun, just starting to rise above the peaks, casting a warm, golden glow across the entire scene. Its rays create a mesmerizing play of light on the water&#8217;s surface, symbolizing hope, new beginnings, and the promise of a brighter future.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 19 Nov 2023 01:47:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Matt: Sunbird Security Isnâ€™t Nothing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=106183\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://ma.tt/2023/11/sunbird/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7495:\"<p>This might get lost in the <a href=\"https://www.techmeme.com/231117/p18#a231117p18\">OpenAI earthquake happening</a>, but it&#8217;s important so I wanted to post about it. (And gosh! <a href=\"https://www.reuters.com/technology/space/spacex-starship-launched-test-flight-texas-after-last-one-blew-up-2023-11-18/\">A Starship launch</a>, which is amazing. We live in interesting times.) On Tuesday, <a href=\"https://us.nothing.tech/\">Nothing</a>, who makes the cleanest and most interesting Android phones (and whose earbuds sound great), <a href=\"https://www.youtube.com/watch?v=ji5HwS3bhlU\">announced via my favorite tech video channel, MKBHD, that the phones would support iMessage on Android</a>, so you can be a blue bubble with your friends. This got a lot of pickup!</p>\n\n\n\n<img width=\"604\" height=\"297\" src=\"https://i0.wp.com/ma.tt/files/2023/11/86cac-1dbenrruyxhyhfjyghrs4sg-1024x504.jpeg?resize=604%2C297&ssl=1\" alt=\"\" class=\"wp-image-106204\" />\n\n\n\n<p>It got a little buried, though, because on Thursday <a href=\"https://9to5mac.com/2023/11/16/apple-rcs-coming-to-iphone/\">Apple said it was going to support the RCS standard</a>, which Google and others had been lobbying hard for. However, it&#8217;s doing the bare minimum: RCS isn&#8217;t actually encrypted, and Apple&#8217;s not doing the Google proprietary thing to encrypt it, and so non-Apple people <a href=\"https://9to5mac.com/2023/11/16/apple-confirms-rcs-messages-will-have-green-bubbles/\">still get green bubbles</a>. (More on that later.)</p>\n\n\n\n<p>iMessage on Android (and Windows!) is on the roadmap for Texts, <a href=\"https://ma.tt/2023/10/texts-joins-automattic/\">the all-in-one messaging platform Automattic acquired last month</a>. The Texts team is obsessed with security, and that&#8217;s part of why the platform is desktop-only right nowâ€”to keep everything 100% client-side and fully encrypted in a way that could never be accessed by the team, or have any compromise in the middle, they&#8217;ve been taking their time to get the engineering right on the mobile versions. So they poked around the Sunbird app that Nothing partnered with, and it wasn&#8217;t pretty. Here&#8217;s Texts founder Kishan Bagaria:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">texts team took a quick look at the tech behind nothing chats and found out it\'s extremely insecure<br /><br />it\'s not even using HTTPS, credentials are sent over plaintext HTTP<br /><br />backend is running an instance of BlueBubbles, which doesn\'t support end-to-end encryption yet <a href=\"https://t.co/IcWyIbKE86\">pic.twitter.com/IcWyIbKE86</a></p>&mdash; Kishan Bagaria (@KishanBagaria) <a href=\"https://twitter.com/KishanBagaria/status/1725586252630540555?ref_src=twsrc%5Etfw\">November 17, 2023</a></blockquote>\n</div>\n\n\n\n<p>The BlueBubbles thing might be a mistake, but seeing the unencrypted data on the wire definitely wasn&#8217;t. Sunbird replied and doubled down on Twitter, citing some ISO standard and claiming it was &#8220;encrypted.&#8221;</p>\n\n\n\n<p>Okay! Now you&#8217;re caught up to Friday. Texts says Sunbird isn&#8217;t secure, Sunbird says it is. He said, she said, right? Not quiteâ€”there are receipts. <a href=\"https://texts.blog/2023/11/18/sunbird-security/\">This blog post lays out even more than Kishan tweeted originally and shares code so you can confirm this yourself</a>. tl; dr: Sunbird puts all your iMessages and attachments into Firebase.</p>\n\n\n\n<p>What should you take away from this?</p>\n\n\n\n<p><strong>Nothing</strong> (the company) still makes amazing hardware that you should absolutely check out and use. It&#8217;s my favorite Android experience. I think the company got bamboozled by Sunbird, and unfortunately this went mainstream on MKBHD.</p>\n\n\n\n<p><strong>Sunbird</strong> appears either not to understand security or to lie about it, and probably misled Nothing. I would recommend double-checking what that team claims in the future.</p>\n\n\n\n<p>Who should we actually be upset with? </p>\n\n\n\n<p><strong>Apple</strong>. </p>\n\n\n\n<p>You shouldn&#8217;t need to jump through all these hoops to have a blue bubble on iMessage. Design can create great things; it can also harm. Apple&#8217;s design decisions to &#8220;magically&#8221; upgrade SMS or texts or RCS into iMessage, which is better and more secure, creates a green-bubble ghetto that&#8217;s also a terrible user experience for anyone not on an Apple-made device.</p>\n\n\n\n<p>I&#8217;ve heard stories of teenagers being ostracized because they couldn&#8217;t afford an iPhone, of group chats rejecting people who turn the chat from blue to green. I know that sounds petty, but do you remember middle school? It&#8217;s about status, and Apple knows that. Everything they make bleeds status and signaling. They&#8217;re the best in the world at it, and I should knowâ€”I&#8217;m typing this post from a M3 Max black MacBook with 128GB of RAM. But while status signaling with amazing hardware and design touches is harmless, in software and social settings in can be harmful.</p>\n\n\n\n<p>Regardless of how it started, today the green bubble indicates cheaper, lower-status, less secure. Apple&#8217;s half-hearted support of RCS just continues this. Sunbird (and others) shouldn&#8217;t need to jump through so many hoops around this stuff by reverse engineering. Apple should open up iMessage APIs so it can be natively supported just like every other 100M+ messaging platform is: Telegram, Signal, WhatsApp, et al. Teens who can&#8217;t afford or don&#8217;t want an iPhone should be able to have an app that lets them connect with their friends as peers, securely and with all the features that are easy to support in messaging.</p>\n\n\n\n<p>Tim Cook, Apple, we love you. Trillion-dollar company, and lots of room still to grow. Allowing iMessage/FaceTime to interoperate (like it used to!) might take .01% off your growth rate, but it&#8217;s the right thing for humanity. Yes, I know Google is shady too, and they&#8217;re locked in this smartphone death match with you. But take person-to-person communication out of the struggle, make it a DMZ, and be content to compete in all the other areas you&#8217;re currently crushing: design, silicon, <a href=\"https://www.apple.com/macos/continuity/\">Continuity</a>, security, privacy, customer experience, retail stores, spatial audio, the list goes on.</p>\n\n\n\n<p>I have no idea how to get in touch with YouTubers, but Marques, if you see this, I&#8217;m happy to chat about the future of technology, open source, freedom, and privacy.</p>\n\n\n\n<p>Update: As I was writing this, <a href=\"https://9to5google.com/2023/11/18/nothing-chats-sunbird-unencrypted-data-privacy-nightmare/\">the Nothing Chats app has been pulled from the Play store</a>.</p>\n\n\n\n<p>Update 2: From my colleague Batuhan:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Iâ€™ve been banned from <a href=\"https://twitter.com/sunbirdapp?ref_src=twsrc%5Etfw\">@sunbirdapp</a>â€™s Discord, probably because I made a tool that deletes some of the data they keep. <br /><br />If you are a Sunbird/Nothing Chats user, hereâ€™s my recommendation, in order:<br /><br />&#8211; Change your Apple ID password *now* and revoke their session<br />&#8211; Remove the app<br />-â€¦</p>&mdash; batuhan iÃ§Ã¶z (@batuhan) <a href=\"https://twitter.com/batuhan/status/1725985096463724838?ref_src=twsrc%5Etfw\">November 18, 2023</a></blockquote>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 18 Nov 2023 16:57:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"Gutenberg Times: State of the Word, 2024 release schedule, WooCommerce 8.3 and more â€“ Weekend Edition 274\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=26349\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://gutenbergtimes.com/state-of-the-word-2024-release-schedule-woocommerce-8-3-and-more-weekend-edition-274/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15395:\"<p>Howdy, </p>\n\n\n\n<p>Now the Fall has come to Munich, Germany and as the Floridian weather wimp, I have to go into hibernation like Mama Bear. To counteract the urge to crawl back into bed, I practiced some exposure therapy with at least 6,000 steps outside in full gear (tuck, gloves, cape, and shawl), even in the rain. It helped a little, and I am not afraid of the cold anymore. That&#8217;s my win for this week. I will let you know how it goes when snow falls. What are the small wins in your life right now? </p>\n\n\n\n<p>I am sad that <a href=\"https://wptavern.com/last-call\">Sarah Gooding, after a decade writing for the WPTavern, is moving on to a new endeavor</a>. She has been a great supporter of the Gutenberg Times, and an even greater supporter of the WordPress Community as a whole. Over three thousand articles.  Day in, day out, she kept her ear on the pulse, separated the wheat from the chuff, and helped thousands of WordPress users understand how WordPress works, how businesses thrive in the open-source market and explained some of the more technical decisions and development to us mere mortals. She&#8217;ll be missed for sure, and we wish her a great start into the new adventures. </p>\n\n\n\n<p>Gutenberg wise, there is some wonderful work being done. Learn more below and enjoy the newsletter. </p>\n\n\n\n<p>Yours, ?<br /><em>Birgit</em></p>\n\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<p>On <strong>December 11, 2023, at 15:00 UTC, Matt Mullenweg</strong>, co-founder of WordPress, will give the State of the Word keynote. This year for the first time ever not from the United States. </p>\n\n\n\n<p>If you want to be there in person, join a watch party near you or watch the live stream, <strong>Dan Soschin</strong> has the details in his post. <a href=\"https://wordpress.org/news/2023/11/state-of-the-word-2023-madrid-spain/\"><strong>State of the Word 2023 â€“ Madrid, Spain</strong></a>. For the Q &amp; A session, you can send it your question via email or wait for the <a href=\"https://www.slido.com/\">Slido APP</a> QR code at the event. </p>\n\n\n\n<a href=\"https://wordpress.org/news/2023/11/state-of-the-word-2023-madrid-spain/\"><img width=\"652\" height=\"435\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/11/image.png?resize=652%2C435&ssl=1\" alt=\"\" class=\"wp-image-26400\" /></a>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p>In her post <a href=\"https://make.wordpress.org/core/2023/11/06/proposal-2024-major-release-timing/\"><strong>Proposal: 2024 Major Release Timing</strong></a>, executive Director and release lead of WordPress 6.4, <strong>Josepha Haden Chomphosy </strong>proposed the release schedule for 2024. She envisions again three major releases of WordPress: </p>\n\n\n\n<ul>\n<li>6.5 â€“&nbsp;Beta&nbsp;1 on Feb. 13, final release on Mar. 26 (WordCamp&nbsp;Asia Mar. 7-9)</li>\n\n\n\n<li>6.6 â€“ Beta 1 on Jun. 4, final release on Jul. 16 (WordCamp Europe Jun. 13-15)</li>\n\n\n\n<li>6.7 â€“ Beta 1 on Sep. 24, final release on Nov. 5 (WordCamp US still TBD)</li>\n</ul>\n\n\n\n<p>Giving a Gutenberg release cycle every other week, the last Gutenberg plugin version that will make it into the next WordPress version 6.5 is 17.7. That&#8217;s six more versions to get new features ready and tested before they make it into core. Speaking of testing, <strong>Andre Maneiro</strong> just released <a href=\"https://github.com/WordPress/gutenberg/releases/tag/v17.1.0-rc.1\"><strong>Gutenberg 17.1 RC 1</strong></a> for testing. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Meanwhile, the work for WordPress 6.4 is not done: <strong>Femy Praseeth,</strong> release lead  for documentation, published a  <a href=\"https://make.wordpress.org/docs/2023/10/25/call-for-volunteers-to-help-with-6-4-end-user-documentation/\"><strong>Call for volunteers to help with 6.4 end-user documentation</strong></a>. It&#8217;s a great chance to apply your knowledge of how to use WordPress and help others to understand it too. You&#8217;ll find onboarding information, a list of tasks and links to the handbook in the post. </p>\n\n\n\n<p class=\"has-accent-color has-light-background-background-color has-text-color has-background has-link-color wp-elements-73585e4999e0b0a97d04b3f568647e9e\">?ï¸ Latest episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-93-gutenberg-17-1-command-palette-data-views-and-grid-layout/\">Gutenberg Changelog #93 â€“ Gutenberg 17.1, Command Palette, Data Views and Grid Layout</a> &#8211; a chat with Isabel Brison</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p>For the default theme, Twenty-Twenty-Four developers had three uses cases in mind and provided patterns and page layouts for bloggers, portfolio artists and small business owners. <strong>Jamie Marsland</strong> took them by their word and he created five new websites using Twenty-Twenty-four. In his video  <a href=\"https://www.youtube.com/watch?v=qoX3uNmH5LY\"><strong>Is this the best WordPress Theme ever! </strong></a>he shows you how he built five sites, only using the built-in patterns, block variations and style variations. The examples, are one-page, a woo-commerce theme and also a small business website. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>If you are looking for a second (or third or fourth) opinion on the Twenty-Twenty-Four theme, <strong><a href=\"https://twitter.com/mattmedeiros\">Matt Medeiros</a></strong>, feels you should <a href=\"https://www.youtube.com/watch?v=0H37o1SBFr4\"><strong>Watch this before you try Twenty Twenty-Four theme for WordPress</strong></a>. Medeiros top four takeaways: </p>\n\n\n\n<ul>\n<li>Groups allow you to style sections of content and turn them into reusable patterns. </li>\n\n\n\n<li>The site editor lets you edit styles, templates, and parts for the whole site. </li>\n\n\n\n<li>Template parts like headers and footers apply across templates. </li>\n\n\n\n<li>The query loop block customizes how posts/content are displayed. </li>\n</ul>\n\n\n\n<p> &#8220;While not yet perfect, Twenty Twenty-Four shows the direction WordPress is headed for easy site building without needing page builders or premium themes.&#8221; he wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his video, <a href=\"https://www.youtube.com/watch?v=erT8LxuI5r4\"><strong>Mastering WordPress 6.4 in under 5 Minutes: every feature revealed</strong></a>, <strong>Dave Smith</strong> walks you through the key features of the new WordPress release: new default theme, image Lightbox, background image for group block, List view updates and enhancements to patterns management, vertical text orientation and adding buttons to the Navigation block. It&#8217;s a great overview if you want to know what&#8217;s new in WordPress 6.4 for content creators.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Using the site of the <em><a href=\"https://block-museum.com/\">Museum of Block Art</a></em>, <strong>Anne McCarthy</strong> demonstrated in this video the impact of the enhanced pagination that came with WordPress 6.4 to the Query block. <strong><a href=\"https://www.youtube.com/watch?v=y7YHFncLvD4\">Effortless Pagination: How a new WordPress 6.4 feature elevates the user experience</a>.</strong> </p>\n\n\n\n<img width=\"652\" height=\"409\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/11/Screenshot-2023-11-15-at-16.45.01.png?resize=652%2C409&ssl=1\" alt=\"\" class=\"wp-image-26357\" />\n\n\n\n<p>Last week, we mentioned the new block theme by Ellen Bauer and Manuel Esposito.. <strong>Sarah Gooding</strong> gave it a review, <a href=\"https://wptavern.com/elmastudio-releases-moog-a-free-block-theme-for-blogs\"><strong>ElmaStudio Releases Moog: A Free Block Theme for Blogs</strong></a>. &#8220;It features a minimal and bold layout with a responsive, masonry style grid on the homepage. Moog is well suited to blogs or even small magazine websites, with options to radically change the style with the click of a button.&#8221; she wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>A new version of WooCommerce is now available. <strong>Nigel Stevenson</strong>  has the release notes for you. <a href=\"https://developer.woo.com/2023/11/16/woocommerce-8-3-0-released/\"><strong>WooCommerce 8.3.0 Released</strong></a>. He highlighted: </p>\n\n\n\n<ul>\n<li>For new installation, Card, Check-out and Order confirmation blocks are switched on by default. </li>\n\n\n\n<li>For existing stores, the release provides an effortless migration using the page creation tool</li>\n\n\n\n<li>Marketplace and Extension pages are revamped, and </li>\n\n\n\n<li>the mobile app onboarding experience has been improved</li>\n</ul>\n\n\n\n<p><strong>Sarah Gooding</strong> shared more details in <a href=\"https://wptavern.com/woocommerce-8-3-makes-cart-checkout-and-order-confirmation-blocks-default-on-new-installations\"><strong>WooCommerce 8.3 Makes Cart, Checkout, and Order Confirmation Blocks Default on New Installations</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On Learn.WordPress, <a href=\"https://twitter.com/LauraAdamonis\"><strong>Laura Adamonis</strong></a> posted a tutorial on <a href=\"https://learn.wordpress.org/tutorial/how-to-create-a-menu-with-the-navigation-block-2/\"><strong>How to create a menu with the navigation block</strong></a>. The description reads: &#8220;This tutorial will walk a user through how to create a menu with the navigation block in the site editor of updated 6.4. The tutorial will use the 2024 theme. It will also touch on moving menu items, creating a second menu, adding a button and a sub-menu&#8221;. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Brian Coords</strong> wrote in his post <a href=\"https://www.briancoords.com/custom-settings-screens-in-block-themes/\"><strong>Custom Settings Screens in Block Themes</strong></a> about his approach and considering all API options available. Customizer and Settings API after suitable for the task, Coords selected the Gutenberg design language and components and their more contemporary look to get started. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jamie Marsland</strong> is running a <a href=\"https://www.youtube.com/watch?v=VroaPsoTFkg\">WordPress Block Theme Live Special</a> on YouTube  with Rich Tabor,&nbsp;on the <strong>13th December, 20:00 UTC</strong> &#8220;If you are looking to get into WordPress Block Themes then this session is for you. Rich Tabor, Core Gutenberg Product Manager, is helping me explain the basics and more advanced features of Block Themes.&#8221; he wrote in the description. </p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>The latest recipe of <strong>Ryan Welcher&#8217;s </strong> <em>Block Developer Cook Book</em>, is about <strong><a href=\"https://www.youtube.com/watch?v=MtVRifFbUaQ\">Connecting to Post Meta</a></strong> and you&#8217;ll learn to extract and update data from WordPress custom post meta, &#8220;adding a flavorful twist to your post meta management.&#8221; he wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: &#8220;Blocks of ice ready for next years ice hotel&#8221; by Rose Robinson is licensed under CC BY-NC-ND 2.0</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 18 Nov 2023 09:49:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"WPTavern: Last Call\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=151409\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/last-call\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4939:\"<p>This has been an emotional, bittersweet morning for me, reading through old posts, as I close the book on my time at this beloved publication. Today is my last day before moving on to embrace a new challenge in the world of tech.&nbsp;&nbsp;</p>\n\n\n\n<p>In 2013, the year I started writing at the Tavern, just <a href=\"https://w3techs.com/technologies/history_overview/content_management/all/y\">17.4% of the web</a> was running on WordPress, but the momentum I felt at that <a href=\"https://wptavern.com/matt-mullenwegs-state-of-the-word-highlights-internationalization-mobile-and-new-tools-for-wordpress-contributors\">last WordCamp San Francisco</a> was intoxicating and undeniable. It marked the ascendency of the global WordPress community and the move to embrace new tools like Slack and GitHub for contributing to core.</p>\n\n\n\n<p>At that time, one frustrating thing I frequently heard was &#8220;It&#8217;s just WordPress, don&#8217;t take it so seriously.&#8221; Yet there we were, standing on the edge of an amazing accelerationÂ of WordPress&#8217; adoption and expansion of the ecosystem that brought meaningful workÂ to millions and gave people a voice on the web. It was never &#8220;just WordPress&#8221; to me. As the software enters its third decade, powering 43% of the world&#8217;s websites, WordPress continues to be an irrepressible force of good on the web. I&#8217;d like to think the Tavern had a small part in that.</p>\n\n\n\n<p>I want to thank past colleagues Jeff Chandler, Justin Tadlock, and Nathan Wrigley, as well as Matt Mullenweg for supporting the publication for so many years. We have done a lot of daily reporting but the Tavern keeper is a watchdog at heart. Our commitment to serving the public interest was instrumental in holding companies, authorities, and the open source project accountable, and I am proud of the work we did together.</p>\n\n\n\n<p>When I started, I had no idea how I would fully embrace the challenge of writing, editing, and publishing&nbsp;WordPress news every day. It changed me. Writing news is an intensely public job that comes with a nearly constant onslaught of criticism. I found that showing up even on my worst days forged a level of discipline that was previously inaccessible to me. Today, 3,021 articles later, publishing is in my blood.</p>\n\n\n\n<p>To our wonderful community of readers: Thank you for trusting us to tell your stories. Thank you to every one of you who chose to speak to the press &#8211; both on the record and anonymously when something needed to come to light. You made it possible for the Tavern to become the most authoritative and reliable source of WordPress news on the web.</p>\n\n\n\n<p>We navigated many challenging times together and celebrated previously unbelievable milestones. I&#8217;ve been privileged to have a front row seat to your innovation and determination, and I&#8217;ll continue cheering for your success. Thank you, beautiful WordPress community.</p>\n\n\n\n<p>In honor of 10 years at the Tavern, I&#8217;ll leave you with 10 of my favorite articles for a short trip down memory lane. </p>\n\n\n\n<p><a href=\"https://wptavern.com/finding-freedom-and-opportunity-with-wordpress-how-wolf-bishop-overcame-prison-and-addiction-to-launch-a-career\">Finding Freedom and Opportunity With WordPress: How Wolf Bishop Overcame Prison and Addiction to Launch a Career</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/how-the-welch-news-uses-wordpress-to-keep-local-news-alive-in-west-virginia\">How The Welch News Uses WordPress To Keep Local News Alive in West Virginia</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/amp-has-irreparably-damaged-publishers-trust-in-google-led-initiatives\">AMP Has Irreparably Damaged Publishersâ€™ Trust in Google-led Initiatives</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/wordpress-turns-20\">WordPress Turns 20</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/tectonic-shifts-in-retail-industry-are-creating-unprecedented-opportunities-for-independent-stores\">Tectonic Shifts in Retail Industry are Creating Unprecedented Opportunities for Independent Stores</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/finding-wordpress-in-the-post-print-news-era\">Finding WordPress in the Post-Print News Era</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/wordpress-5-0-rc-expected-on-u-s-thanksgiving-holiday-despite-last-minute-pushback-from-contributors\">WordPress 5.0 RC Expected on U.S. Thanksgiving Holiday, Despite Last-Minute Pushback from Contributors</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/wordpress-smiley-wars-will-core-adopt-new-emoticons\">WordPress Smiley Wars: Will Core Adopt New Emoticons?</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/rip-buddypress-default-theme-finally-laid-to-rest-in-1-9\">RIP BuddyPress Default Theme: Finally Laid to Rest in 1.9</a></p>\n\n\n\n<p><a href=\"https://wptavern.com/wordpress-beyond-boundaries-a-recap-of-wordcamp-europe-2014\">WordPress Beyond Boundaries: A Recap of WordCamp Europe 2014</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 20:50:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"Do The Woo Community: Talking Woo Agencies with Andrew Behla and Patrick Garman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=63221\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://dothewoo.io/a-woobiz-chat-with-agency-owners-andrew-behla-and-patrick-garman/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:469:\"<p>Listen in as they chat about market disruptions, business tools, client off hour expectations and the differentiators that set Woo apart from other ecommerce platforms.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/a-woobiz-chat-with-agency-owners-andrew-behla-and-patrick-garman/\">Talking Woo Agencies with Andrew Behla and Patrick Garman</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"Do The Woo Community: WooCommerce Development Insights &amp; Empowering Clients with DJ\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=63183\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://dothewoo.io/woocommerce-development-insights-empowering-clients-with-d-j/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:455:\"<p>DJ\'s development skills with WooCommerce blend his willingness to learn quickly and deeply while giving his clients more empowerment over their site.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/woocommerce-development-insights-empowering-clients-with-d-j/\">WooCommerce Development Insights &#038; Empowering Clients with DJ</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Do The Woo Community: A Roundtable Chat with Clara Lee, Product Marketing at WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=63172\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://dothewoo.io/a-roundtable-chat-with-clara-lee-product-marketing-at-woocommerce/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:442:\"<p>A conversation with Clara Lee takes a deep dive behind the scenes into the product marketing at WooCommerce and what makes it tick.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/a-roundtable-chat-with-clara-lee-product-marketing-at-woocommerce/\">A Roundtable Chat with Clara Lee, Product Marketing at WooCommerce</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"Do The Woo Community: A Mastering WooCommerce Snippets with Rodolfo Melogli\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=63160\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://dothewoo.io/a-master-of-woocommerce-snippets-rodolfo-melogli/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:398:\"<p>Listen in as Rodolfo talks about dedicating his site over the years to help developers level up their coding skills. </p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/a-master-of-woocommerce-snippets-rodolfo-melogli/\">A Mastering WooCommerce Snippets with Rodolfo Melogli</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"Do The Woo Community: All You Need to Know to Organize a WooCommerce Meetup\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=63052\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://dothewoo.io/all-you-need-to-know-to-organize-a-woocommerce-meetup/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:410:\"<p>When you get five meetup co-organizers together for a chat, the insights and experiences shared are going to flood the gates</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/all-you-need-to-know-to-organize-a-woocommerce-meetup/\">All You Need to Know to Organize a WooCommerce Meetup</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"Do The Woo Community: When Did You First Do the Woo?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=62904\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://dothewoo.io/when-did-you-first-do-the-woo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:338:\"<p>Listen in as we hear from ten past guests about how they discovered and started using WooCommerce. </p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/when-did-you-first-do-the-woo/\">When Did You First Do the Woo?</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Do The Woo Community: WooCommerce and Mobile Apps with Scott Bolinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=62878\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://dothewoo.io/woocommerce-and-mobile-apps-with-scott-bolinger/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:401:\"<p>Whether it\'s your clients site or your own store, you may or may not be keeping mobile apps aligned with what you are building.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/woocommerce-and-mobile-apps-with-scott-bolinger/\">WooCommerce and Mobile Apps with Scott Bolinger</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"Do The Woo Community: A Look at WordPress Core and Blocks with Grzegorz Ziolkowski\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=62624\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://dothewoo.io/wordpress-core-and-blocks-with-grzegorz-ziolkowski/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:423:\"<p>We catch up with what\'s happening with blocks and get some insights from Greg on how WooCommerce blocks play into the bigger picture.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/wordpress-core-and-blocks-with-grzegorz-ziolkowski/\">A Look at WordPress Core and Blocks with Grzegorz Ziolkowski</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"Do The Woo Community: A Roundtable Discussion with Warren Holmes, COO at WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=62612\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://dothewoo.io/a-roundtable-discussion-with-warren-holmes-coo-at-woocommerce/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:439:\"<p>Warren Holmes has been with WooCommerce for 10 years and sheds some light on  very important questions with his insights and experience.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/a-roundtable-discussion-with-warren-holmes-coo-at-woocommerce/\">A Roundtable Discussion with Warren Holmes, COO at WooCommerce</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Do The Woo Community: Hooking and Integrating WooCommerce into Warehousing with David Baumwald\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=62571\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://dothewoo.io/hooking-woocommerce-into-warehousing-with-david-baumwald/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:475:\"<p>From being an expert into hooking WooCommerce into a warehouse to being a release lead for WordPress Core, David has done a lot as a full stack developer for 17 years.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/hooking-woocommerce-into-warehousing-with-david-baumwald/\">Hooking and Integrating WooCommerce into Warehousing with David Baumwald</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"Do The Woo Community: Developers and Meetups with Alicia St. Rose and David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=62561\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://dothewoo.io/developers-and-meetups-with-alicia-st-rose-and-david-bisset/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:466:\"<p>There are a lot of opportunities for developers to attend or even start up a WordPress or WooCommerce meetup. Alicia and David dive into it from first-hand experience.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/developers-and-meetups-with-alicia-st-rose-and-david-bisset/\">Developers and Meetups with Alicia St. Rose and David Bisset</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Do The Woo Community: Keeping Woo Devs on Top of WordPress Core with Jonathan Desrosiers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=62542\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://dothewoo.io/keeping-on-top-of-wordpress-core-with-jonathan-desrosiers/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:431:\"<p>As a WooCommerce builder, you need to keep on top of all the major changes in WordPress core. This episode will get you started.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/keeping-on-top-of-wordpress-core-with-jonathan-desrosiers/\">Keeping Woo Devs on Top of WordPress Core with Jonathan Desrosiers</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"Do The Woo Community: Promoting Products to WooCommerce Developers and Agencies with Jodie Florenza and Michael Bragg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=62463\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://dothewoo.io/promoting-products-to-woocommerce-developers-and-agencies/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:439:\"<p>Get agencies and developers to become your fans and  recommend and use your WooCommerce product or service.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/promoting-products-to-woocommerce-developers-and-agencies/\">Promoting Products to WooCommerce Developers and Agencies with Jodie Florenza and Michael Bragg</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Do The Woo Community: A Deep Dive into the WooCommerce User Community with Jonathan Wold\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=62397\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://dothewoo.io/woocommerce-roundtable-with-guest-jonathan-wold/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:361:\"<p>A great conversation around the WooCommerce ecosystem and community.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/woocommerce-roundtable-with-guest-jonathan-wold/\">A Deep Dive into the WooCommerce User Community with Jonathan Wold</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Do The Woo Community: Funding and Growth for WooCommerce Shops with Aidan Corbett\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=62385\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://dothewoo.io/funding-growth-and-deliberation-with-aidan-corbett/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:433:\"<p>Aidan shares thoughts on outside funding, seasonal inventory, low risk businesses and how he views WooCommerce favorably as a deliberate choice.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/funding-growth-and-deliberation-with-aidan-corbett/\">Funding and Growth for WooCommerce Shops with Aidan Corbett</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Do The Woo Community: A Q&amp;A on Developer Advocacy at WooCommerce with Allen Smith\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=62378\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://dothewoo.io/question-and-answer-with-allen-smith-developer-advocate-woocommerce/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:443:\"<p>Listen in to this live chat with Allen Smith as we talk about WooCommerce documentation, resources, contributing, headless and more.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/question-and-answer-with-allen-smith-developer-advocate-woocommerce/\">A Q&#038;A on Developer Advocacy at WooCommerce with Allen Smith</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Do The Woo Community: Conversation, Chatter and Core with BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=62369\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://dothewoo.io/conversation-chatter-and-core/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:371:\"<p>We are bring more conversation to the podcast. Added perspectives through both the Woo Builder Events and WordPress core.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/conversation-chatter-and-core/\">Conversation, Chatter and Core with BobWP</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Do The Woo Community: Training, Open Source and WooCommerce with Robbie Adair\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=62314\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://dothewoo.io/training-open-source-and-woocommerce-with-robbie-adair/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:418:\"<p>Listen in as Robbie shares her diverse background of open source work through her agency and her experience with online training.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/training-open-source-and-woocommerce-with-robbie-adair/\">Training, Open Source and WooCommerce with Robbie Adair</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"Do The Woo Community: WooCommerce, eCommerce and Accessibility with Amber Hinds\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=62290\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://dothewoo.io/woocommerce-ecommerce-and-accessibility-with-amber-hinds/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:430:\"<p>This conversation takes us deeper into accessibility. Not only do we learn the important basics, but how eCommerce fits into the picture.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/woocommerce-ecommerce-and-accessibility-with-amber-hinds/\">WooCommerce, eCommerce and Accessibility with Amber Hinds</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Do The Woo Community: The WooCommerce Marketplace with Adepeju Oduye\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=62218\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://dothewoo.io/the-woocommerce-marketplace-with-adepeju-oduye/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:380:\"<p>Listen in as Adepeju Oduye talks about developers, selling on WooCommerce and the future of the marketplace.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/the-woocommerce-marketplace-with-adepeju-oduye/\">The WooCommerce Marketplace with Adepeju Oduye</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Do The Woo Community: Online Events for the WooCommerce Builder Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=62070\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://dothewoo.io/online-events-for-the-woocommerce-builder-community/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:391:\"<p>Listen as the co-organizers chat about what WooCommerce builders can expect if they attend the weekly events.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/online-events-for-the-woocommerce-builder-community/\">Online Events for the WooCommerce Builder Community</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Do The Woo Community: A Conversation Around WooCommerce Blocks Gary, Darren and Manos\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=62037\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://dothewoo.io/a-conversation-around-woocommerce-blocks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:419:\"<p>Darren Ethier and Gary Murray from WooCommerce join Manos Psychogyiopoulos, Head of Product at SomewhereWarm to talk WooCommerce blocks.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/a-conversation-around-woocommerce-blocks/\">A Conversation Around WooCommerce Blocks Gary, Darren and Manos</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"Do The Woo Community: Building a WooCommerce Store on WordPress.com with Timmy Crawford\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=61960\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://dothewoo.io/woocommerce-on-wordpress-com-with-timmy-crawford/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:407:\"<p>Timmy works on the Woo team and shares what people may not now about building a WooCommerce shop on WordPress.com.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/woocommerce-on-wordpress-com-with-timmy-crawford/\">Building a WooCommerce Store on WordPress.com with Timmy Crawford</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"Do The Woo Community: Growing an Agency and WooCommerce Enterprise Sites with Jake Goldman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=61796\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://dothewoo.io/growing-an-agency-enterprise-and-woocommerce-with-jake-goldman/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:423:\"<p>Jakes shares his insights about WooCommerce in the enterprise state as well as the 10-year growth of his agency. </p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/growing-an-agency-enterprise-and-woocommerce-with-jake-goldman/\">Growing an Agency and WooCommerce Enterprise Sites with Jake Goldman</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Do The Woo Community: The Do the Woo WooCommerce Builder Survey 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=61717\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://dothewoo.io/how-2020-played-out-for-woocommerce-businesses/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:386:\"<p>In this episode I share the results of my WooCommerce Builder Survey and some snippets on 2020 from past episodes.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/how-2020-played-out-for-woocommerce-businesses/\">The Do the Woo WooCommerce Builder Survey 2020</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"Do The Woo Community: Walking Clients Through the WooCommerce Journey with Alicia St. Rose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=61614\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://dothewoo.io/taking-clients-on-the-entire-woocommerce-journey-with-alicia-st-rose/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:475:\"<p>Alicia brings in a unique combination of coaching and development that takes her clients through the entire process of building and growing your site or shop. </p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/taking-clients-on-the-entire-woocommerce-journey-with-alicia-st-rose/\">Walking Clients Through the WooCommerce Journey with Alicia St. Rose</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"Do The Woo Community: Celebrating 100 Episodes on Do the Woo Podcast with an AMA\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=61519\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://dothewoo.io/celebrating-100-episodes-on-do-the-woo-podcast-with-an-ama/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:362:\"<p>When we hit 100 episodes itâ€™s time for questions and celebration</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/celebrating-100-episodes-on-do-the-woo-podcast-with-an-ama/\">Celebrating 100 Episodes on Do the Woo Podcast with an AMA</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"Do The Woo Community: Load Testing and Building WooCommerce Sites with Lauri Kasti\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=61509\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://dothewoo.io/load-testing-and-woocommerce-with-lauri-robert-and-zach/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:373:\"<p>Listen in to an interesting deep-dive into load testing your WooCommerce shop.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/load-testing-and-woocommerce-with-lauri-robert-and-zach/\">Load Testing and Building WooCommerce Sites with Lauri Kasti</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Do The Woo Community: WooCommerce and Accessibility Tips with Bet Hannon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=61478\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://dothewoo.io/woocommerce-and-accessibility-with-bet-hannon/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:417:\"<p>Bet has a deep passion for accessibility. This is filled with stories, insights and tips for both WooCommerce and WordPress sites in general. </p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/woocommerce-and-accessibility-with-bet-hannon/\">WooCommerce and Accessibility Tips with Bet Hannon</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Do The Woo Community: A Guide to Agency Rebranding and Growth with Patrick Garman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=61390\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://dothewoo.io/agency-rebranding-and-growth-with-patrick-garman-from-mindsize/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:431:\"<p>Patrick talks about the WooCommerce space over the years, the rebranding of his agency Mindsize and the potential WooCommerce has.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/agency-rebranding-and-growth-with-patrick-garman-from-mindsize/\">A Guide to Agency Rebranding and Growth with Patrick Garman</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"Do The Woo Community: A WooCommerce Reunion with Adii, Magnus and Mark\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=61362\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://dothewoo.io/a-woo-reunion-with-adii-magnus-and-mark/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:426:\"<p>in 2007 three guys, two from South Africa and one from Norway got together when an idea to start a theme shop called WooThemes. Well, one thing led to another.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/a-woo-reunion-with-adii-magnus-and-mark/\">A WooCommerce Reunion with Adii, Magnus and Mark</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"Do The Woo Community: SEO, WooCommerce and Building Plugins with Marieke van de Rakt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=61256\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://dothewoo.io/seo-woocommerce-marieke-van-de-rakt-yoast-do-the-woo-podcast/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:409:\"<p>In this episode we chat with Marieke, CEO at Yoast SEO about eCommerce SEO, building plugins and local SEO.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/seo-woocommerce-marieke-van-de-rakt-yoast-do-the-woo-podcast/\">SEO, WooCommerce and Building Plugins with Marieke van de Rakt</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"Do The Woo Community: The Perfect Blend of WooCommerce Freelancing and Community with Noelle Steegs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=61178\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://dothewoo.io/freelancing-community-and-woocommerce-with-noelle-steegs/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:444:\"<p>NoÃ«lle Steegs is one of those rare freelancers that jumped on WordPress and WooCommerce at the same time. And the rest is history.</p>\n<p>&gt;&gt; The post <a href=\"https://dothewoo.io/freelancing-community-and-woocommerce-with-noelle-steegs/\">The Perfect Blend of WooCommerce Freelancing and Community with Noelle Steegs</a> appeared first on <a href=\"https://dothewoo.io\">Do the Woo - a WooCommerce and WordPress Builder Podcast</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Nov 2023 14:30:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 29 Nov 2023 15:12:18 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Wed, 29 Nov 2023 15:00:33 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:4:\"gzip\";s:7:\"alt-svc\";s:19:\"h3=\":443\"; ma=86400\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20210411122846\";}','no'),(777571,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1701313938','no'),(777572,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1701270738','no'),(777573,'_transient_timeout_feed_e0061ca2fa5b884e483872aa34d3e7eb','1701313938','no'),(777574,'_transient_feed_e0061ca2fa5b884e483872aa34d3e7eb','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"UpdraftPlus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"https://updraftplus.com/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WordPress\'s leading backup plugin - backup, restore and clone WordPress sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 27 Oct 2023 10:15:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=6.1.4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:76:\"\n		\n		\n					\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n					\n			\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"WordPress migration checklist\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://updraftplus.com/wordpress-migration-checklist/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://updraftplus.com/wordpress-migration-checklist/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 24 Oct 2023 12:33:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Migration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:29:\"wordpress migration checklist\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1933325\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:991:\"<p>Whether your migrating your WordPress site manually or with the help of a migration plugin, you should still perform checks during the entire process.<br />\nBy performing these essential checks, you can minimize the risks associated with website migration and ensure that your website continues to function optimally, maintaining its visibility, user experience, and security.<br />\nIn this guide our expert team of developers talk you through a WordPress migration checklist you should complete before, during and after migrating your site. <a href=\"https://updraftplus.com/wordpress-migration-checklist/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/wordpress-migration-checklist/\">WordPress migration checklist</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Rebecca Faulkner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:22471:\"<p>Whether your migrating your WordPress site manually or with the help of a <a href=\"https://updraftplus.com\">migration plugin</a>, you should still perform checks during the entire process.</p>\n<p>By performing these essential checks, you can minimize the risks associated with website migration and ensure that your website continues to function optimally, maintaining its visibility, user experience, and security.</p>\n<p>In this guide our expert team of developers talk you through a WordPress migration checklist you should complete before, during and after migrating your site.</p>\n<p>Follow the links below to jump to specific sections or dive right in:</p>\n<ul>\n<li><a href=\"#what-is-website-migration\">What is website migration?</a></li>\n<li><a href=\"#why-you-might-need-to-migrate-your-wordpress-website\">Why you might need to migrate your WordPress website</a></li>\n<li><a href=\"#how-long-does-a-wordpress-site-migration-take\">How long does a WordPress site migration take?</a></li>\n<li><a href=\"#checklist-for-a-successful-wordpress-site-migration\">Checklist for a successful WordPress site migration</a></li>\n<li><a href=\"#what-to-do-before-migrating-your-wordpress-site\">What to do before migrating your WordPress site</a>\n<ul>\n<li><a href=\"#backup-your-existing-site\">Back up your existing website</a></li>\n<li><a href=\"#set-up-your-new-hosting\">Set up your new hosting account or domain</a></li>\n<li><a href=\"#choose-the-right-time\">Choose the right time</a></li>\n<li><a href=\"#inform-your-audience-about-the-move\">Inform your audience about the move</a></li>\n<li><a href=\"#enable-maintenance-mode\">Enable maintenance mode</a></li>\n<li><a href=\"#disable-caching-security-redirect-plugins\">Disable caching, security, and redirect plugins</a></li>\n</ul>\n</li>\n<li><a href=\"#what-to-do-during-a-wordpress-migration\">What to do during a WordPress migration</a>\n<ul>\n<li><a href=\"#point-your-domain-to-new-host\">Point your domain name to your new host</a></li>\n<li><a href=\"#create-new-database\">Create a new database</a></li>\n<li><a href=\"#migrate-files-and-database\">Migrate your files and database</a></li>\n<li><a href=\"#update-url-references\">Update URL references</a></li>\n</ul>\n</li>\n<li><a href=\"#what-to-check-after-migrating-wordpress\">What to check after migrating your WordPress site</a></li>\n<li><a href=\"#summary\">Summary</a></li>\n</ul>\n<h2 id=\"what-is-website-migration\">What is website migration?</h2>\n<p>Website migration is the process of relocating a website from one hosting platform to another. This means moving all your website&#8217;s files and databases to a new server. It&#8217;s something you might consider if your business is growing, your current hosting plan is limited in resources, or if your website is experiencing slow loading times and frequent downtime.</p>\n<p>Changing hosts can be necessary to accommodate increased traffic and improve performance. However, it&#8217;s a complex process that needs to be done correctly to avoid losing content and your <a href=\"https://updraftplus.com/how-to-move-your-site-using-updraftplus-migrator-without-losing-google-ranking\">rankings in search engine results</a>.</p>\n<p>Website migration involves making significant changes to your website&#8217;s technology, structure, design, or even its location to enhance its online visibility. It&#8217;s not a decision to be taken lightly, as it can be quite challenging.</p>\n<h2 id=\"why-you-might-need-to-migrate-your-wordpress-website\">Why you might need to migrate your WordPress website</h2>\n<p>Website migration can take various forms, such as:</p>\n<ul>\n<li><strong>Host change</strong>: Transferring your entire website from one web hosting service to another while keeping the same domain name.</li>\n<li><strong>Domain change</strong>: Changing your domain name.</li>\n<li><strong>Uploading new site</strong> &#8211; Moving your website from your local host to an online server.</li>\n<li><strong>CMS or framework change</strong> &#8211; Transitioning from another content management system to WordPress, or the other way around, requires migration of content and functionality.</li>\n</ul>\n<p>Each of these types of migrations serves a different purpose and involves specific steps to ensure a smooth transition. While website migration can be necessary to address various issues, it&#8217;s important to approach it with caution, as there are potential risks, including the possibility of losing some or all of your website&#8217;s functionality.</p>\n<blockquote><p><strong>Expert tip: </strong>Use Google Search Console to identify host issues</p></blockquote>\n<p>Did you know Google Search Console has this cool feature? It can tell you if your hosting setup is giving Google&#8217;s crawlers a hard time. It&#8217;s like having a detective for your website! If you havenâ€™t got an account you can <a href=\"https://support.google.com/webmasters/answer/\">set one up for free here</a>.</p>\n<p><img decoding=\"async\" class=\"alignnone wp-image-1933335 size-full\" src=\"https://updraftplus.com/wp-content/uploads/2023/10/migration-checklist-search-console-example.png\" alt=\"screenshot-of-google-search-console-crawl-stats\" width=\"512\" height=\"377\" srcset=\"https://updraftplus.com/wp-content/uploads/2023/10/migration-checklist-search-console-example.png 512w, https://updraftplus.com/wp-content/uploads/2023/10/migration-checklist-search-console-example-480x353.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 512px, 100vw\" /></p>\n<p>To check it out, just go to <a href=\"https://search.google.com/search-console/ownership\">Google Search Console</a>, click on Settings, then Crawl Stats, and finally, Hosts. This little report can give you the lowdown on whether your hosting choice is the right fit for your business. So, don&#8217;t forget to drop by and give it a peek from time to time. It&#8217;s your website&#8217;s way of saying, &#8220;Help me help you!&#8221;</p>\n<h2 id=\"how-long-does-a-wordpress-site-migration-take\">How long does a WordPress site migration take?</h2>\n<p>The duration of a WordPress site migration can vary depending on several factors. On average, a straightforward migration from one hosting provider to another typically takes between 1 to 4 hours.</p>\n<p>However, more complex migrations or those involving larger websites may take longer, potentially several hours or even a day or two. Note that youâ€™ll have to wait for your DNS records to propagate worldwide. This may take up to 72 hours.</p>\n<h2 id=\"checklist-for-a-successful-wordpress-site-migration\">Checklist for a successful WordPress site migration</h2>\n<p>Planning ahead is the key to a successful website migration, and it can save you from potential issues down the road. Our goal is to make the entire process as straightforward as possible.</p>\n<p>This WordPress migration checklist is here to guide you through each step, ensuring a hassle-free move. Whether you&#8217;re a technical expert or a beginner, this checklist will help you navigate the process with ease.</p>\n<p>We will divide the migration process in 3 parts:</p>\n<ol>\n<li>What to do before migration</li>\n<li>What to do during migration</li>\n<li>What to do after migration</li>\n</ol>\n<h2 id=\"word-press-migration-checklist\">WordPress migration checklist</h2>\n<table>\n<tbody>\n<tr>\n<th>\n<h3>Pre WordPress migration checklist</h3>\n</th>\n</tr>\n<tr>\n<td>Back up your existing website <input type=\"checkbox\" /></td>\n</tr>\n<tr>\n<td>Set up your new hosting account or domain <input type=\"checkbox\" /></td>\n</tr>\n<tr>\n<td>Choose the right time for the migration <input type=\"checkbox\" /></td>\n</tr>\n<tr>\n<td>Inform your audience about the move <input type=\"checkbox\" /></td>\n</tr>\n<tr>\n<td>Put your WordPress site in maintenance mode <input type=\"checkbox\" /></td>\n</tr>\n<tr>\n<td>Disable caching, security, and redirect plugins <input type=\"checkbox\" /></td>\n</tr>\n</tbody>\n</table>\n<table>\n<tbody>\n<tr>\n<th>\n<h3>What to check during a WordPress migration</h3>\n</th>\n</tr>\n<tr>\n<td>Point your domain name to your new host <input type=\"checkbox\" /></td>\n</tr>\n<tr>\n<td>Create a copy of your website <input type=\"checkbox\" /></td>\n</tr>\n<tr>\n<td>Update your hosts file <input type=\"checkbox\" /></td>\n</tr>\n<tr>\n<td>Create a new database <input type=\"checkbox\" /></td>\n</tr>\n<tr>\n<td>Migrate your files and database <input type=\"checkbox\" /></td>\n</tr>\n</tbody>\n</table>\n<table>\n<tbody>\n<tr>\n<th>\n<h3>Post WordPress migration checklist</h3>\n</th>\n</tr>\n<tr>\n<td>Check your new websiteâ€™s speed and functionality <input type=\"checkbox\" /></td>\n</tr>\n<tr>\n<td>Scan for broken links <input type=\"checkbox\" /></td>\n</tr>\n<tr>\n<td>Add redirects <input type=\"checkbox\" /></td>\n</tr>\n<tr>\n<td>Update your DNS <input type=\"checkbox\" /></td>\n</tr>\n<tr>\n<td>Check Google Search Console &amp; analytics <input type=\"checkbox\" /></td>\n</tr>\n<tr>\n<td>Test your SSL certificate <input type=\"checkbox\" /></td>\n</tr>\n<tr>\n<td>Perform search and replace on your database <input type=\"checkbox\" /></td>\n</tr>\n<tr>\n<td>Close your old hosting account <input type=\"checkbox\" /></td>\n</tr>\n</tbody>\n</table>\n<h2 id=\"what-to-do-before-migrating-your-wordpress-site\">What to do before migrating your WordPress site</h2>\n<h3 id=\"backup-your-existing-site\">1. Back up your existing website</h3>\n<p>Before you jump into website migration, take a crucial step and <a href=\"https://updraftplus.com/how-to-backup-a-wordpress-site-step-by-step-guide\">back up your existing WordPress site</a>. This backup is your safety net in case anything goes haywire during the migration process. It&#8217;s like having a reset button for your site.</p>\n<p>You&#8217;ve got a couple of options:</p>\n<ol>\n<li>Many web hosts include backup services</li>\n<li>Use a <a href=\"https://updraftplus.com\">backup plugin</a> like UpdraftPlus.</li>\n</ol>\n<p>Alternatively, you can go old-school and manually back up your files using an FTP client like FileZilla. Don&#8217;t forget to back up your database too; you can do this through phpMyAdmin in your hosting account. Once that&#8217;s done, stash your backups in a safe spot. This way, if anything goes south during migration, you can easily restore your site to its former glory.</p>\n<h3 id=\"set-up-your-new-hosting\">2. Set up your new hosting account or domain</h3>\n<p>If you&#8217;re switching to a new web host, follow these steps:</p>\n<p><strong>Step 1</strong>: Choose the right hosting plan for your needs.<br />\n<strong>Step 2</strong>: Log into your hosting control panel.<br />\n<strong>Step 3</strong>: Install WordPress (many providers offer one-click installations).</p>\n<p>If you&#8217;re changing your domain name, you can either purchase one through a domain registrar or, in some cases, get a free domain from your new web host.</p>\n<p>Before you start your migration, make sure you have the following information readily available:</p>\n<ul>\n<li>Login details for your old and new hosting control panels.</li>\n<li>Login details for your old and new website.</li>\n<li>Nameserver information for the new web host.</li>\n<li>Login information for your domain registrar.</li>\n<li>FTP/SFTP credentials.</li>\n</ul>\n<p>Having this information readily available will make your website migration more efficient. You don&#8217;t want to waste time searching for login credentials during the process.</p>\n<h3 id=\"choose-the-right-time\">3. Choose the right time</h3>\n<p>When it comes to migrating your website, timing is crucial. A well-planned migration should aim to minimize any negative impact on your site&#8217;s performance. Although a slight dip in traffic may be inevitable, you can significantly reduce this by choosing the right time for the migration.</p>\n<h3>What to consider when choosing the time to migrate your site</h3>\n<ul>\n<li><strong>When Site traffic is low</strong>: Schedule your migration during lower traffic periods like weekends, late nights, or off-peak hours to minimize user inconvenience.</li>\n<li><strong>Consider time zone</strong>: Consider time zone differences when your audience is global; for instance, if you&#8217;re in Europe but cater to Asian users, migrate during their off-peak hours.</li>\n<li><strong>Business-specific timing</strong>: Choose a migration time that suits your business hours. If you&#8217;re a B2B company closed on weekends or if your busiest hours are between 3:00 and 8:00 PM, consider scheduling the migration during weekends or late nights and early mornings.</li>\n</ul>\n<h3 id=\"inform-your-audience-about-the-move\">4. Inform your audience about the move</h3>\n<p>When you&#8217;re getting ready for your website move, don&#8217;t forget to give your audience a heads-up to keep things smooth. Just drop them a friendly note about the scheduled maintenance, say sorry for any hiccups, and maybe shoot out an email or post on social media to keep everyone in the loop.</p>\n<p>This way, you can nudge your customers to make their purchases early, prevent them from wandering off to competitors, and keep things looking pro, especially if you&#8217;re running an online shop. It&#8217;s all about making the transition as hassle-free as possible and not messing with your cash flow.</p>\n<h3 id=\"enable-maintenance-mode\">5. Enable maintenance mode</h3>\n<p>Put your site in maintenance mode. This nifty move stops anyone, especially if you have a multi-author blog or website, from messing with your content while you&#8217;re making changes. It&#8217;s like locking the door when you&#8217;re doing renovations inside. Visitors won&#8217;t be able to see or interact with your content, and your writers won&#8217;t accidentally publish or edit posts.</p>\n<h3 id=\"disable-caching-security-redirect-plugins\">6. Disable caching, security, and redirect plugins</h3>\n<p>Make sure to turn off any caching, security, or redirect plugins that are active on your site. While these plugins are usually great for your site&#8217;s regular operation, they can cause hiccups during migration. For example, security plugins might set up firewalls that block essential migration requests.</p>\n<p>If you forget to disable these, you might end up with 403 Forbidden or 500 Internal Server errors, and we definitely want to avoid those. Don&#8217;t worry, though; you can always reactivate these plugins once your website is happily settled in its new home. So, for now, just switch them off and enjoy a trouble-free migration.</p>\n<h2 id=\"what-to-do-during-a-wordpress-migration\">What to do during a WordPress migration</h2>\n<p>Using a migration plugin can take away a lot of the hassle involved in manually migrating your WordPress site. Follow our expert guide on <a href=\"https://updraftplus.com/faqs/how-do-i-migrate-to-a-new-site-location\">migrating your site with UpdraftPlus free and premium versions</a> for a hassle free migration.</p>\n<p>If youâ€™re set on migrating your site manually, follow the steps below to make sure youâ€™ve got everything covered:</p>\n<h3 id=\"point-your-domain-to-new-host\">1. Point your domain name to your new host</h3>\n<p>First off, you need to point your domain name to your new host. Think of Domain Name System (DNS) records as the backstage pass connecting your domain name to the server that houses your website. These records often include cryptic-looking host names like:</p>\n<ul style=\"list-style-type: none;\">\n<li>ns1.hostname.com</li>\n<li>ns2.hostname.com</li>\n</ul>\n<p>Before you can determine if your migration was a success, you&#8217;ve got to make sure your domain name is pointing to your new host. If you&#8217;re lucky enough to have a web host offering free migrations, they&#8217;ll likely handle the nameserver updates automatically.</p>\n<p>However, if you&#8217;re taking the manual migration route and using a domain registrar, you&#8217;ll need to dive into your account settings and tinker with those DNS settings. Keep in mind that updates to DNS records can take up to 48 hours to propagate, although it&#8217;s usually much quicker.</p>\n<p>You can even use tools like DNS checkers to see when your domain name is fully connected.</p>\n<h3 id=\"create-new-database\">2. Create a new database</h3>\n<p>You&#8217;ll need to create a fresh database and add a new user. After that, it&#8217;s time to upload your old database using the Import tab. But there&#8217;s one more important step â€“ you&#8217;ve got to tweak your wp-config.php file to make sure your site knows about the new database.</p>\n<p>Now go to your new hosting account&#8217;s cPanel, find the Databases section, and click on MySQL Databases. From there, create that new database and add a user. Now, you can bring in your old database through the Import tab.</p>\n<p>Lastly, find your website&#8217;s wp-config.php file in your site&#8217;s main folder. Open it up and look for these lines:</p>\n<ul>\n<li>define(&#8216;DB_NAME&#8217;, &#8216;db_name&#8217;);</li>\n<li>define(&#8216;DB_USER&#8217;, &#8216;db_user&#8217;);</li>\n<li>define(&#8216;DB_PASSWORD&#8217;, &#8216;db_pass&#8217;);</li>\n</ul>\n<p>Now, just replace &#8216;db_name,&#8217; &#8216;db_user,&#8217; and &#8216;db_pass&#8217; with the actual database name, username, and password you created for the new database. That&#8217;s the ticket to getting your new website all set up. Easy, right?</p>\n<h3 id=\"migrate-files-and-database\">3. Migrate your files and database</h3>\n<p>Alright, it&#8217;s file-moving time! You&#8217;ll want to transfer all your website files to your new hosting provider. To make this happen, you can use FTP (that&#8217;s like a super handy file transfer tool) or, if your host has it, a built-in file manager. One little thing to remember: since your domain still points to your old hosting provider, you might need to use the IP address to connect to your new server.</p>\n<p>Now, the easy part. In your FTP client, just drag and drop all the stuff from your WordPress folder on your computer into the root directory on your new server. Then, you wait. It&#8217;s like moving your website furniture to a new house. And here&#8217;s a time-saving trick: if your hosting provider lets you unzip files, go ahead and zip &#8217;em up before uploading. You&#8217;ll just need to unzip them once they&#8217;re on the new server. It&#8217;s all about getting your site settled in its new online home.</p>\n<h3 id=\"update-url-references\">4. Update URL references</h3>\n<p>Here&#8217;s the last thing to consider, and it&#8217;s pretty straightforward. You only need to do this if you&#8217;re changing your website&#8217;s domain during the migration. If you&#8217;re not, you can totally skip this step.</p>\n<p>When you&#8217;re moving your WordPress site and changing the web address, you need to update the references in your database. This makes sure everything points to the right place in your new home on the web. But remember, if your domain isn&#8217;t changing, you can happily move on without worrying about this part.</p>\n<h2 id=\"what-to-check-after-migrating-wordpress\">What to check after migrating your WordPress site</h2>\n<p>Once your WordPress migration is complete, there are a few essential steps to ensure everything runs smoothly:</p>\n<p><strong>1. Speed and functionality:</strong> Check your new website&#8217;s speed and functionality. Make sure it&#8217;s as fast and responsive as it should be.</p>\n<p><strong>2. Broken links:</strong> Scan for broken links and fix them promptly to maintain a seamless user experience. You can try using tools like Screaming Frog to check if there is any broken URL.</p>\n<p><strong>3. Redirects:</strong> Set up redirects to guide users and search engines from old URLs to their new equivalents.</p>\n<p><strong>4. Google Search Console &amp; Analytics:</strong> Now that you&#8217;ve migrated your website, it&#8217;s not time to kick back and relax just yet. You&#8217;ll want to keep a watchful eye on your Google Search Console and Analytics accounts. Check in regularly to spot any errors or shifts in your website traffic that might raise a flag. These could be signs of something going amiss, and it&#8217;s always better to catch issues early so you can fix them pronto. Stay vigilant, and your website will keep running smoothly.</p>\n<p><strong>5. SSL certificate:</strong> Test your SSL certificate to ensure a secure connection for your visitors. After a migration, it&#8217;s a good idea to check that your SSL certificate is still doing its job. Here&#8217;s how: open your website in an incognito window, and if your SSL certificate is in good shape, you&#8217;ll spot a little padlock icon next to your site&#8217;s URL. That padlock is your sign that everything&#8217;s secure.</p>\n<p><strong>6. Database search and replace:</strong> If you&#8217;re switching to a new domain name during your website migration, there&#8217;s a little housekeeping to do. You&#8217;ve got to swap out the old domain name with the shiny new one all across your database. For example, changing &#8220;yourolddomain.com&#8221; to &#8220;yournewdomain.com.&#8221; But here&#8217;s the twist: you can&#8217;t just do a simple find-and-replace in the database because that might mess up some serialized values. No worries, though! Just reach for handy tools like the Database Search and Replace Script in PHP. It&#8217;ll do the trick and keep things smooth as butter.</p>\n<p><strong>7. Close old hosting:</strong> Don&#8217;t forget to close your old hosting account to avoid unnecessary charges.</p>\n<blockquote><p><strong>Expert tip</strong> &#8211; Perform regular <a href=\"https://updraftplus.com/how-to-do-a-wordpress-website-health-check-updraftplus\">WordPress health checks</a> to identify any issues on your site and keep it in peak condition!</p></blockquote>\n<h2 id=\"summary\">Summary</h2>\n<p>By following these steps, you&#8217;ll ensure a smooth transition and maintain a high-quality online presence after your website migration.</p>\n<p>Migrating your site can be a stressful task, even with the help of a plugin. <a href=\"https://updraftplus.com/shop/updraftplus-premium\">UpdraftPlus Premium</a> comes with an expert team ready to support you with any queries or issues that may crop up along the way.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/wordpress-migration-checklist/\">WordPress migration checklist</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://updraftplus.com/wordpress-migration-checklist/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Test your site with PHP 8.3 with ease, with UpdraftClone\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://updraftplus.com/test-your-site-with-php-8-3-with-ease-with-updraftclone/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 07 Sep 2023 09:45:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"UpdraftPlus News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1896350\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:785:\"<p>PHP 8.3 is scheduled to be released in November 2023 and there are already a number of release candidates available as testing versions. Whilst youâ€™re able to download and configure PHP 8.3 manually on your own environment, with UpdraftClone, you &#8230; <a href=\"https://updraftplus.com/test-your-site-with-php-8-3-with-ease-with-updraftclone/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/test-your-site-with-php-8-3-with-ease-with-updraftclone/\">Test your site with PHP 8.3 with ease, with UpdraftClone</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrea Howey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1770:\"<p>PHP 8.3 is scheduled to be released in November 2023 and there are already a number of release candidates available as testing versions. <strong>Whilst youâ€™re able to download and configure PHP 8.3 manually on your own environment, with UpdraftClone, you can spin up a testing site in just 3 clicks.</strong></p>\n<p>UpdraftClone allows you to easily and quickly create cloned versions of your WordPress website. Â Experiment with upgrades, new themes, plugins, updated layouts or content, without the risk of breaking the live site.</p>\n<p>Thereâ€™s no need to buy separate hosting or go through the installation process. Simply select the versions of WordPress and PHP youâ€™d like to set up and youâ€™re good to go.</p>\n<p>UpdraftClone is paid for in tokens.</p>\n<p>If your site is 25GB or less (most sites) it costs just one token to boot up the site and one token per week thereafter. 5 tokens over 4 weeks costs just $14.40. You can even use your tokens to boot <a href=\"https://updraftplus.com/updraftclone-gets-a-new-dashboard-update/\">empty WordPress installs</a> rather than cloning your existing site. Simply throw away the clone when youâ€™re finished.</p>\n<p><a href=\"https://updraftplus.com/shop/updraftclone-tokens\">Learn more about UpdraftClone</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/test-your-site-with-php-8-3-with-ease-with-updraftclone/\">Test your site with PHP 8.3 with ease, with UpdraftClone</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"How to back up your WordPress site to multiple locations\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://updraftplus.com/updraftplus-tips-tricks-backup-your-wordpress-site-to-multiple-locations/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Aug 2023 23:21:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:15:\"Tips and tricks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:15:\"tips and tricks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1884033\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:795:\"<p>Did you know that UpdraftPlus has a premium feature that allows you to back up your WordPress website to more than one location?Â  The concept of storing data in an additional location is known as data redundancy and is well &#8230; <a href=\"https://updraftplus.com/updraftplus-tips-tricks-backup-your-wordpress-site-to-multiple-locations/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-tips-tricks-backup-your-wordpress-site-to-multiple-locations/\">How to back up your WordPress site to multiple locations</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Chris Read\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5920:\"<p><strong>Did you know that<a href=\"https://updraftplus.com/\"> UpdraftPlus</a> has a premium feature that allows you to back up your WordPress website to more than one location?Â </strong></p>\n<p><span style=\"font-weight: 400;\">The concept of storing data in an additional location is known as data redundancy and is well regarded as best backup practice. Backing up your backups to a redundant location provides an extra layer of protection. If one backup location experiences issues, you have another copy to rely on.Â </span></p>\n<h2>Backup locations supported by UpdraftPlus Premium</h2>\n<p><a href=\"https://updraftplus.com/shop/updraftplus-premium/\"><span style=\"font-weight: 400;\">UpdraftPlus Premium</span></a><span style=\"font-weight: 400;\"> offers an array of backup locations to choose from, ensuring your data is stored securely across multiple platforms. These locations include:</span></p>\n<ul>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>FTP</b></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Google Drive</b></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Dropbox</b></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Amazon Web Services (AWS) S3</b></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Rackspace Cloud Files (S3 compatible R2 via V4 authentication</b><span style=\"font-weight: 400;\">)</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>DreamObjects</b></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Openstack SwiftÂ </b></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>EmailÂ </b></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Microsoft OneDrive (Premium only)Â </b></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>SFTP (Premium only)Â </b></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Microsoft Azure (Premium only)Â </b></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>WebDAV (Premium only)Â </b></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Google Cloud (Premium only)</b></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>SCP (Premium only)Â </b></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Backblaze (Premium only)Â </b></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>pCloud (Premium only)Â </b></li>\n</ul>\n<h2>UpdraftVault</h2>\n<p><a href=\"https://updraftplus.com/shop/updraftplus-vault-storage-5-gb/\"><b>UpdraftVault </b></a><span style=\"font-weight: 400;\">is integrated into UpdraftPlus so you donâ€™t need to bother with separate </span><span style=\"font-weight: 400;\">setups or passwords and backing up takes just a couple of clicks. If you already have <a href=\"http://www.updraftplus.com/shop/updraftplus-premium\">UpdraftPlus Premium</a>, youâ€™ve probably already got it (1GB space is included in every purchase).</span></p>\n<h2>Step-by-step guide: Backing up to multiple locations</h2>\n<p><span style=\"font-weight: 400;\">If youâ€™re familiar with UpdraftPlus, youâ€™ll find backing up to more than one location is as simple as choosing more than one location under the â€˜Settingsâ€™ tab. Alternatively, read on for a more detailed step-by-step guide.Â </span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2023/08/Screenshot-2023-08-24-001206.png\"><img decoding=\"async\" loading=\"lazy\" class=\"size-full wp-image-1884052 aligncenter\" src=\"https://updraftplus.com/wp-content/uploads/2023/08/Screenshot-2023-08-24-001206.png\" alt=\"\" width=\"742\" height=\"312\" srcset=\"https://updraftplus.com/wp-content/uploads/2023/08/Screenshot-2023-08-24-001206.png 742w, https://updraftplus.com/wp-content/uploads/2023/08/Screenshot-2023-08-24-001206-480x202.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 742px, 100vw\" /></a></p>\n<ol>\n<li><b> Install and Activate UpdraftPlus</b></li>\n</ol>\n<p><span style=\"font-weight: 400;\">If you haven&#8217;t already, purchase, install and activate </span><a href=\"http://updraftplus.com/shop/updraftplus-premium\"><span style=\"font-weight: 400;\">UpdraftPlus Premium</span></a><span style=\"font-weight: 400;\">.Â </span></p>\n<ol start=\"2\">\n<li><b> Configure UpdraftPlus settings</b></li>\n</ol>\n<p><span style=\"font-weight: 400;\">To open UpdraftPlus, navigate to &#8220;Settings&#8221; and click on &#8220;UpdraftPlus Backups.&#8221; In the UpdraftPlus &#8220;Settings&#8221; tab you can set your backup frequency, choose what to backup (such as plugins, themes etc.) and more.</span></p>\n<ol start=\"3\">\n<li><b> Choose multiple backup locations</b></li>\n</ol>\n<p><span style=\"font-weight: 400;\">Under the &#8220;Choose your remote storage&#8221; section, select the backup locations where you want to store your backups. You can select multiple options for maximum redundancy.Â </span></p>\n<ol start=\"4\">\n<li><b> Configure each backup location</b></li>\n</ol>\n<p><span style=\"font-weight: 400;\">For each selected backup location, follow the prompts to connect UpdraftPlus to that location. For instance, if you&#8217;re backing up to Google Drive, you&#8217;ll need to authenticate your Google account.</span></p>\n<ol start=\"5\">\n<li><b> Perform manual backups or schedule backups</b></li>\n</ol>\n<p><span style=\"font-weight: 400;\">Initiate a manual backup by clicking the &#8220;Backup Now&#8221; button in the &#8220;Backup / Restore&#8221; tab. Alternatively, set up scheduled backups under &#8220;Settings&#8221;. </span></p>\n<p><b>6. Monitor and restore backups</b></p>\n<p><span style=\"font-weight: 400;\">Monitor the status of your backups and restore your site from the same tab as before, in just a few clicks.</span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-tips-tricks-backup-your-wordpress-site-to-multiple-locations/\">How to back up your WordPress site to multiple locations</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"The Latest WordPress 6.3 Update: Whatâ€™s New\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://updraftplus.com/wordpress-6-3-is-here/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Aug 2023 22:55:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:13:\"Opinion piece\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:9:\"wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:13:\"WordPress 6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1884006\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:701:\"<p>We talked to Yordan Soares, a keen member of the WordPress community about his thoughts on WordPress 6.3. Yordan works for WP Overnight, part of the UpdraftPlus suite of plugins. Yordan and the team build and support quality extensions for &#8230; <a href=\"https://updraftplus.com/wordpress-6-3-is-here/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/wordpress-6-3-is-here/\">The Latest WordPress 6.3 Update: What&#8217;s New</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Chris Read\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9200:\"<p><strong>We talked to <a href=\"https://profiles.wordpress.org/yordansoares/\">Yordan Soares</a>, a keen member of the WordPress community about his thoughts on WordPress 6.3. </strong><strong>Yordan works for <a href=\"http://www.wpovernight.com\">WP Overnight,</a> part of the UpdraftPlus suite of plugins. Yordan and the team build and support quality extensions for WooCommerce, such as the five-star rated <a href=\"https://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/\">PDF invoice and packing slip</a> plugin.Â </strong></p>\n<p><span style=\"font-weight: 400;\">WordPress 6.3 represents a major release for WordPress. </span></p>\n<p><span style=\"font-weight: 400;\">It transforms content creation by bringing together content, templates and patterns into one central editor so changes can be made quickly and more efficiently.</span></p>\n<p><span style=\"font-weight: 400;\">Core changes include an improved user interface. You can now create and synchronize custom patterns, navigate quickly using the command palette and refine designs with advanced controls.Â </span></p>\n<p><span style=\"font-weight: 400;\">Performance and accessibility have also been a focus of this latest release, making WordPress more efficient and more inclusive overall. </span></p>\n<p><span style=\"font-weight: 400;\">Streamlined editing, theme previews, and design flexibility all help to improve productivity for WordPress users.</span></p>\n<p><span style=\"font-weight: 400;\">Let&#8217;s take a closer look at the major enhancements below.</span></p>\n<h2>Top changes</h2>\n<p><span style=\"font-weight: 400;\">WordPress 6.3 introduces several notable features. Here are some of our favorites:</span></p>\n<h3><b>Integrated Site Editor</b></h3>\n<p><span style=\"font-weight: 400;\">Brings content and templates together into one place, allowing you to add pages, explore styling variations, and have precise control over navigation menus. With this new enhancement, the need to switch between different areas of the site is eliminated, making navigation easier and increasing productivity.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2023/08/image-01.png\"><img decoding=\"async\" loading=\"lazy\" class=\"size-full wp-image-1884011 aligncenter\" src=\"https://updraftplus.com/wp-content/uploads/2023/08/image-01.png\" alt=\"\" width=\"930\" height=\"780\" srcset=\"https://updraftplus.com/wp-content/uploads/2023/08/image-01.png 930w, https://updraftplus.com/wp-content/uploads/2023/08/image-01-480x403.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 930px, 100vw\" /></a></p>\n<h3><b>Pattern creation and synchronization</b></h3>\n<p><span style=\"font-weight: 400;\">You can now organize blocks into custom patterns, and synchronize changes across the site. Patterns can be customized to suit each instance. This greater degree of flexibility will help admins to create a more consistent user experience for web visitors. The option to synchronize changes makes things quick and easy.Â </span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2023/08/image-02.png\"><img decoding=\"async\" loading=\"lazy\" class=\"size-full wp-image-1884013 aligncenter\" src=\"https://updraftplus.com/wp-content/uploads/2023/08/image-02.png\" alt=\"\" width=\"930\" height=\"780\" srcset=\"https://updraftplus.com/wp-content/uploads/2023/08/image-02.png 930w, https://updraftplus.com/wp-content/uploads/2023/08/image-02-480x403.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 930px, 100vw\" /></a></p>\n<h3><b>Command Palette</b></h3>\n<p><span style=\"font-weight: 400;\">Provides keyboard shortcuts for quick access to templates and editing preferences, improving navigation and efficiency in editorial tasks. This is another effective time-saving feature that will benefit site admins.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2023/08/image-03.png\"><img decoding=\"async\" loading=\"lazy\" class=\"size-full wp-image-1884015 aligncenter\" src=\"https://updraftplus.com/wp-content/uploads/2023/08/image-03.png\" alt=\"\" width=\"930\" height=\"780\" srcset=\"https://updraftplus.com/wp-content/uploads/2023/08/image-03.png 930w, https://updraftplus.com/wp-content/uploads/2023/08/image-03-480x403.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 930px, 100vw\" /></a></p>\n<h3><b>Style revisions</b></h3>\n<p><span style=\"font-weight: 400;\">Allow you to easily view and restore previous styles along a timeline. This can give you the confidence to experiment and get creative with your site, without fear of damaging it. This is a great feature that will encourage learning and creativity for site builders.</span></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2023/08/image-04.png\"><img decoding=\"async\" loading=\"lazy\" class=\"size-full wp-image-1884016 aligncenter\" src=\"https://updraftplus.com/wp-content/uploads/2023/08/image-04.png\" alt=\"\" width=\"930\" height=\"780\" srcset=\"https://updraftplus.com/wp-content/uploads/2023/08/image-04.png 930w, https://updraftplus.com/wp-content/uploads/2023/08/image-04-480x403.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 930px, 100vw\" /></a></p>\n<p>&nbsp;</p>\n<h2>Other new features for editing that we love:</h2>\n<p><b>Advanced layout controls</b><span style=\"font-weight: 400;\">: New tools are provided to customize caption styles and manage layout filters. The background block is enriched with text color settings, layout and border options.</span></p>\n<p><b>Footnotes block</b><span style=\"font-weight: 400;\">: You can now add convenient annotations throughout the content, linking notes to specific paragraphs. This is a very useful enhancement for text that requires additional context and one that many bloggers will love.</span></p>\n<p><b>Details block</b><span style=\"font-weight: 400;\">: Offers the ability to hide content, create interactive Q&amp;A sections, and more. This allows site builders to develop engaging experiences for users and have greater control over what displays on their site.</span></p>\n<p><b>Aspect ratios on images</b><span style=\"font-weight: 400;\">: Specifies aspect ratios to maintain design integrity when using images in patterns for a clean, consistent look and feel.</span></p>\n<p><b>Distraction-free design</b><span style=\"font-weight: 400;\">: Offers a distraction-free editing mode now also in the site editor, for improved focus and productivity.</span></p>\n<p><b>Revamped top toolbar:</b><span style=\"font-weight: 400;\"> Includes advanced selectors for nested blocks and options when selecting multiple blocks.</span></p>\n<p><b>List view enhancements</b><span style=\"font-weight: 400;\">: Allows drag-and-drop on content layers and easy block deletion &#8211; this is positive for website admin UX.</span></p>\n<p><b>Template creation with patterns:</b><span style=\"font-weight: 400;\"> Facilitates template creation with a pop-up window to access pattern selection.</span></p>\n<p><b>Preview block themes</b><span style=\"font-weight: 400;\">: Experiment with block themes before applying changes, allowing for pre-customization.</span></p>\n<h2>WordPress is faster and more accessible</h2>\n<p><span style=\"font-weight: 400;\">WordPress has made more than 170 improvements to speed up site loading, including script API optimization and delayed image loading. </span><span style=\"font-weight: 400;\">In addition, it has increased accessibility, incorporating more than 50 enhancements to greatly improve the experience for users who rely on assistive technologies.</span></p>\n<h2>Final words</h2>\n<p><span style=\"font-weight: 400;\">WordPress 6.3 is a leap forward in the evolution of the platform, completing phase 2 of a long-term </span><a href=\"https://wordpress.org/about/roadmap/\"><span style=\"font-weight: 400;\">WordPress Roadmap</span> </a><span style=\"font-weight: 400;\">focused on customization.</span></p>\n<p><span style=\"font-weight: 400;\">It brings huge improvements to key elements of its basic infrastructure, as well as performance and security enhancements. The combined result is that users are empowered to create, manage and maintain websites that are visually captivating and robust in functionality. This has far-reaching, positive implications for the future of not only WordPress, but the Internet itself.Â </span></p>\n<p><span style=\"font-weight: 400;\">As the digital landscape continues to evolve, WordPress remains a constant companion for creators and businesses looking to establish a solid online presence. Version 6.3 exemplifies the platform&#8217;s commitment to innovation, ease of use and adaptability.Â </span></p>\n<p><span style=\"font-weight: 400;\">Continued improvements to functionality, accessibility and user experience will ensure that WordPress remains at the forefront of the CMS market for many years to come.</span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/wordpress-6-3-is-here/\">The Latest WordPress 6.3 Update: What&#8217;s New</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WordPress Health Check: Tips for Peak Performance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://updraftplus.com/how-to-do-a-wordpress-website-health-check-updraftplus/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Aug 2023 22:36:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:24:\"Performance Optimization\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:15:\"tips and tricks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1883981\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:764:\"<p>At UpdraftPlus, we genuinely want to help you get more from your WordPress website. So we got &#8217;round a (virtual) table and discussed; what are some of the regular checks and actions new WordPress users should take to help maintain &#8230; <a href=\"https://updraftplus.com/how-to-do-a-wordpress-website-health-check-updraftplus/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/how-to-do-a-wordpress-website-health-check-updraftplus/\">WordPress Health Check: Tips for Peak Performance</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Chris Read\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:14950:\"<p>At UpdraftPlus, we genuinely want to help you get more from your WordPress website. So we got &#8217;round a (virtual) table and discussed; what are some of the regular checks and actions new WordPress users should take to help maintain good WordPress site health?</p>\n<p>We questioned our team of developers and came up with the most important WordPress health checks to improve the speed and overall health of your site:</p>\n<ol>\n<li><a href=\"#Check-your-e-Commerce-functionality\">Check your e-Commerce functionality</a></li>\n<li><a href=\"#use-the-wordpress-health-checker\">Use the WordPress health checker</a></li>\n<li><a href=\"#Check-for-updates\">Check for updates</a></li>\n<li><a href=\"#Clean-the-database-cache-and-compress-images\">Clean the database, cache and compress image</a></li>\n<li><a href=\"#check-user-privileges\">Check user privileges</a></li>\n<li><a href=\"#Check-for-malware-and-view-recent-file-changes\">Check for malware and view recent file changes</a></li>\n<li><a href=\"#Check-for-404-errors-and-broken-links-in-Google-Search-Console\">Check for broken links in Google Search Console</a></li>\n<li><a href=\"#Bonus-tip-for-managing-multiple-WordPress-websites\">Bonus tip for managing multiple WordPress websites</a></li>\n</ol>\n<h2 id=\"Check-your-e-Commerce-functionality\">Check your e-Commerce functionality</h2>\n<p><i><span style=\"font-weight: 400;\">â€˜If your WordPress website is also a WooCommerce store, itâ€™s worth running a few tests so you can be confident everything is behaving as it should for the end user.â€™</span></i></p>\n<p>Here are some key checks to carry out to make sure your store is working correctly:</p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Place test orders</b><span style=\"font-weight: 400;\">: Test the entire purchasing process by placing a test order using different payment methods.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Check payment gateways</b><span style=\"font-weight: 400;\">: Verify that payment gateways are processing payments correctly. Use a sandbox or test modes if available.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Inventory management</b><span style=\"font-weight: 400;\">: Create test products and check if inventory levels are accurately updated when orders are placed.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Shipping calculations</b><span style=\"font-weight: 400;\">: Test various shipping scenarios to ensure accurate calculations.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Checkout process</b><span style=\"font-weight: 400;\">: Assess and sense check the overall checkout experience to identify any potential issues, such as confusing buyer journeys, website errors, and post-purchase care.</span></li>\n</ol>\n<h2 id=\"use-the-wordpress-health-checker\">Use the WordPress health checker</h2>\n<p><span style=\"font-weight: 400;\">If you haven&#8217;t looked at it for a while, it&#8217;s probably worth revisiting the WordPress site health checker. This tool shows information about your WordPress configuration and items that need your attention, separated into critical issues and recommended actions. To find it:</span></p>\n<ul>\n<li aria-level=\"1\">Navigate to â€˜Toolsâ€™</li>\n<li aria-level=\"1\">Then, â€˜Site Healthâ€™</li>\n</ul>\n<p><span style=\"font-weight: 400;\">Critical issues include things like SSL not being enabled. Recommended actions may include removing inactive plugins or inactive themes. Itâ€™s worth checking what these are and taking the associated action to improve your WordPress site health.Â </span></p>\n<h2>Check for updates</h2>\n<p><i><span style=\"font-weight: 400;\">â€˜Regularly updating your website is of course critical to maintaining good WordPress site health. This should include plugins, themes, core WordPress, languages, and translation files.Â  </span></i><i><span style=\"font-weight: 400;\">Keeping these elements up to date helps keep your site secure and it ensures any bug fixes or compatibility issues are applied to your site.â€™Â Â </span></i></p>\n<p><span style=\"font-weight: 400;\">Follow these steps:</span></p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Log in to your WordPress Dashboard</b><span style=\"font-weight: 400;\">.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Navigate to the </span><b>Updates</b><span style=\"font-weight: 400;\"> section. You can find this under the </span><b>Dashboard</b><span style=\"font-weight: 400;\"> menu or by clicking on the </span><b>Updates</b><span style=\"font-weight: 400;\"> notification on the left sidebar.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Review the available updates for plugins, themes, and WordPress core.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Check the boxes next to the items you want to update, then click </span><b>Update Plugins</b><span style=\"font-weight: 400;\"> or </span><b>Update Themes.</b></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">For </span><b>core WordPress,</b><span style=\"font-weight: 400;\"> click </span><b>Update Now.</b></li>\n</ol>\n<p><span style=\"font-weight: 400;\">Or use </span><a href=\"http://www.easyupdatesmanager.com\"><span style=\"font-weight: 400;\">Easy Updates Manager</span></a><span style=\"font-weight: 400;\"> to customize which aspects of your site should be updated automatically.</span></p>\n<p><span style=\"font-weight: 400;\">Here&#8217;s how:</span></p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\"><strong>Get it for free</strong> from the </span><a href=\"https://wordpress.org/plugins/stops-core-theme-and-plugin-updates/\"><span style=\"font-weight: 400;\">WP plugin directory</span></a><span style=\"font-weight: 400;\">.Â </span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Install and activate Easy Updates Manager.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Go to the plugin&#8217;s settings from the </span><b>Dashboard</b><span style=\"font-weight: 400;\"> menu.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Configure your update settings e.g.Â  automatic updates for WordPress core.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Save your settings.</span></li>\n</ol>\n<h2>Clean the database, cache and compress images</h2>\n<p><i><span style=\"font-weight: 400;\">&#8216;Users care about how quickly they get to interact with your site. We recommend installing a website </span></i><a href=\"http://getwpo.com\"><i><span style=\"font-weight: 400;\">optimization plugin</span></i></a><i><span style=\"font-weight: 400;\"> like WP-Optimize and then running periodic optimizations.&#8217;</span></i></p>\n<p><a href=\"http://getwpo.com\"><span style=\"font-weight: 400;\">WP-Optimize</span></a><span style=\"font-weight: 400;\"> is particularly easy to use. Itâ€™s an all-in-one solution that speeds up your site by cleaning your database, compressing images</span><i><span style=\"font-weight: 400;\"> and</span></i><span style=\"font-weight: 400;\"> caching your site.</span></p>\n<p><span style=\"font-weight: 400;\">The free version packs a punch but to really turbo boost your site, you could consider installing </span><a href=\"http://www.getwpo.com/buy\"><span style=\"font-weight: 400;\">Premium</span></a><span style=\"font-weight: 400;\"> which preloads key requests, applies power tweaks to WordPress core and comes with premium features like lazy loading and the ability to identify orphaned / unused images.Â </span></p>\n<p><span style=\"font-weight: 400;\">Follow these steps:</span></p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Install and activate WP-Optimize </b><span style=\"font-weight: 400;\">Â (</span><a href=\"https://wordpress.org/plugins/wp-optimize/\"><span style=\"font-weight: 400;\">free</span></a><span style=\"font-weight: 400;\"> or </span><a href=\"http://www.getwpo.com/buy\"><span style=\"font-weight: 400;\">Premium</span></a><span style=\"font-weight: 400;\">).Â </span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\"><strong>In the Optimizations tab,</strong> check each box to instantly clean up things like database tables, post revisions, auto draft posts, spam and trashed comments. You can do this manually e.g. on a monthly basis or set a schedule (free and Premium).Â </span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\"><strong>Under â€˜Cachingâ€™ click â€˜Enable page cachingâ€™.</strong> WP-Optimize automatically detects and configure itself to work optimally on your WordPress website.Â </span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\"><strong>Choose your preferred level of image compression.</strong> Click once to automatically compress all new images to your preferred settings.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\"><strong>Consider enabling minification</strong> to reduce file sizes further and enhance loading speeds.Â </span></li>\n</ol>\n<h2>Check user privileges</h2>\n<p><i><span style=\"font-weight: 400;\">â€˜User privileges and security are paramount for your WordPress site health. Follow these steps to maintain robust security.</span></i><span style=\"font-weight: 400;\">â€™</span></p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Review user roles</b><span style=\"font-weight: 400;\">: Go to </span><b>Users</b><span style=\"font-weight: 400;\"> in your Dashboard. Check that the right users have the right level of access. Remove any freelancers, agency staff or employees no longer working with you and ensure admin and super admin privileges are given only to those who need them.Â </span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Implement two-factor authentication</b><span style=\"font-weight: 400;\">: Make sure existing and new users have two-factor authentication installed. Two-factor authentication requires the user to authenticate via an additional mechanism (over and above a username and password) providing an extra layer of protection for your WordPress website.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Consider installing a WordPress security plugin. </b><a href=\"http://aiosplugin.com\"><span style=\"font-weight: 400;\">All-In-One Security (AIOS)</span></a><span style=\"font-weight: 400;\"> is stacked with login security features including two-factor authentication, comprehensive firewall and content protection features. Its premium counterpart comes with added functionality whilst being cost-effective &#8211; particularly for large numbers of sites vs its nearest rival.Â </span></li>\n</ol>\n<h2>Check for malware and view any recent file changes</h2>\n<p><i><span style=\"font-weight: 400;\">&#8216;Plugins like AIOS allow users to view recent file changes and events on their sites. We recommend this is done regularly as part of a WordPress health check to ensure the security of your site. Users can see whether a change was genuine and authentic or whether something suspicious has been going on.Â </span></i><i><span style=\"font-weight: 400;\">Users should also undertake regular malware scans. Google can blacklist websites that contain malware. Malware scanning allows you to check for signs of trouble and take action, before itâ€™s too late.&#8217;</span></i></p>\n<p>Follow these steps to bring your site security up to scratch:</p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Install and activate the AIOS plugin</b><span style=\"font-weight: 400;\">.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Go to the plugin&#8217;s settings and configure malware scanning schedules.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Use the file change monitoring feature to detect unauthorized alterations promptly.</span></li>\n</ol>\n<h2>Check for broken links in Google Search Console</h2>\n<p>â€˜<i>Google Search Console </i><i><span style=\"font-weight: 400;\">helps website owners and webmasters monitor and manage their website&#8217;s health and presence in Google&#8217;s search results. It offers a range of tools and insights that assist in optimizing a website&#8217;s performance and visibility in Google&#8217;s search engine.Â </span></i><i><span style=\"font-weight: 400;\">Itâ€™s definitely worth integrating into a monthly WordPress health check. Pages might not be being </span></i><i>indexed</i><i><span style=\"font-weight: 400;\"> by Google or broken links may have appeared leading to 404 error pages. These things impact the user experience and can negatively impact SEO.â€™</span></i></p>\n<ol>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><a href=\"https://search.google.com/search-console\"><b>Sign up for Google Search Console</b></a><span style=\"font-weight: 400;\"> and verify your website.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Click on â€˜Overviewâ€™ in the consoleâ€™s panel to see a high-level view of your website&#8217;s performance and key metrics related to its presence in Google search results.</span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">View flagged errors, such as 404 pages, page indexing discrepancies, and broken links by clicking on â€˜full reportâ€™ on the â€˜Indexingâ€™ section in the console overview dashboard.Â </span></li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Filter further by clicking on one of the reasons listed beneath the â€˜Why pages arenâ€™t being indexedâ€™ section to see affected pages.</span></li>\n</ol>\n<h2>Bonus tip for managing multiple WordPress websites</h2>\n<p><span style=\"font-weight: 400;\">If youâ€™re responsible for overseeing multiple WordPress websites you may want to consider installing <a href=\"https://updraftplus.com/shop/updraftcentral-dashboard/\">UpdraftCentral</a>. It allows you to access all your WordPress websitesâ€™ dashboards with one master login. You can manage updates, users, pages, posts, plugins and backups from one location. Communications are RSA encrypted and signed. <em>And</em>, if you manage five WordPress websites or less, itâ€™s completely free. Try it for free by visiting &#8216;<a href=\"https://updraftplus.com/my-account/updraftcentral-remote-control/\">My account&#8217;</a> when logged into UpdraftPlus.Â </span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/how-to-do-a-wordpress-website-health-check-updraftplus/\">WordPress Health Check: Tips for Peak Performance</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Come see us at WordCamp US!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://updraftplus.com/come-see-us-at-wordcamp-us/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Aug 2023 09:32:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"UpdraftPlus News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1882904\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:313:\"<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/come-see-us-at-wordcamp-us/\">Come see us at WordCamp US!</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Chris Read\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2695:\"<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p><strong>We really enjoyed sponsoring WordCamp Europe earlier this year. It was a pleasure to meet some of you in person and to get more involved in this great community of ours.</strong></p>\n<p><a href=\"https://updraftplus.com/wp-content/uploads/2023/08/53076170739_c07af4bd56_c.jpg\"><img decoding=\"async\" loading=\"lazy\" class=\"size-full wp-image-1883682 aligncenter\" src=\"https://updraftplus.com/wp-content/uploads/2023/08/53076170739_c07af4bd56_c.jpg\" alt=\"\" width=\"800\" height=\"450\" srcset=\"https://updraftplus.com/wp-content/uploads/2023/08/53076170739_c07af4bd56_c.jpg 800w, https://updraftplus.com/wp-content/uploads/2023/08/53076170739_c07af4bd56_c-480x270.jpg 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 800px, 100vw\" /></a></p>\n<h4><strong>If youâ€™re coming to WordCamp, swing by booth 500 and say hello to our friendly team.</strong></h4>\n<p>Attending the event will be Gez Jones, our Partnership Manager and David James, Operations Director for UpdraftPlus.</p>\n<p><strong>Our main aim for the event this year is to identify opportunities for partnerships and acquisitions.</strong></p>\n<p>Weâ€™ve acquired a number of plugins over the past five years including <a href=\"https://getwpo.com/\">WP-Optimize</a>; <a href=\"https://aiosplugin.com/\">All-in-One Security (AIOS)</a>; <a href=\"https://wpovernight.com/\">WP-Overnight</a>, a suite of highly rated WooCommerce extensions; and <a href=\"https://www.internallinkjuicer.com/\">Internal Link Juicer</a>. Weâ€™re passionate about investing in WordPress plugin products, taking them from strength to strength and doing right by their customers and team.</p>\n<p>For more information, visit our <a href=\"https://updraftplus.com/ma-programme\">mergers and acquisitions program page</a>, or find us at <strong>booth 500, WordCamp US.</strong></p>\n<p>We can&#8217;t wait to see you there!</p></div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/come-see-us-at-wordcamp-us/\">Come see us at WordCamp US!</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"UpdraftPlus releases free WordPress migration features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://updraftplus.com/updraftplus-releases-free-wordpress-migration-features/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Aug 2023 14:47:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"UpdraftPlus News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1854557\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:803:\"<p>Migrate your WordPress website for free with UpdraftPlus UpdraftPlus has long been the worldâ€™s most popular WordPress backup plugin according to our number of active installations.Â  Tens of thousands of WordPress users have also relied on UpdraftPlus to migrate their &#8230; <a href=\"https://updraftplus.com/updraftplus-releases-free-wordpress-migration-features/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-releases-free-wordpress-migration-features/\">UpdraftPlus releases free WordPress migration features</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrea Howey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7136:\"<h2><span style=\"font-weight: 400;\">Migrate your WordPress website for free with UpdraftPlus</span></h2>\n<p><span style=\"font-weight: 400;\">UpdraftPlus has long been the <a href=\"https://updraftplus.com\">worldâ€™s most popular WordPress backup plugin</a> according to our number of active installations.Â </span></p>\n<p><span style=\"font-weight: 400;\">Tens of thousands of WordPress users have also relied on UpdraftPlus to migrate their WordPress websites to another URL or hosting company.</span></p>\n<p><span style=\"font-weight: 400;\">Until recently, customers had to purchase UpdraftMigrator as an add-on to the free plugin or the bundled UpdraftPlus Premium plugin to benefit from migration features.Â </span></p>\n<p><span style=\"font-weight: 400;\">UpdraftPlus release 1.23.8 changes all of that. Migration is now free! </span></p>\n<p><strong>All users can now migrate their WordPress websites using the <a href=\"https://wordpress.org/plugins/updraftplus/#\">free UpdraftPlus plugin</a>.</strong></p>\n<h4><b>UpdraftPlus free vs premium</b></h4>\n<p><span style=\"font-weight: 400;\">Weâ€™ve reserved some migration features for the premium (i.e. paid) product.Â </span></p>\n<p><span style=\"font-family: open sans, helvetica neue, helvetica, arial, sans-serif;\">To migrate with free UpdraftPlus, you must download your backups from the source site and then upload / restore these into the destination site.Â </span></p>\n<p><span style=\"font-family: open sans, helvetica neue, helvetica, arial, sans-serif;\">Only customers with UpdraftMigrator / UpdraftPlus:</span></p>\n<ul>\n<li><span style=\"font-family: open sans, helvetica neue, helvetica, arial, sans-serif;\">Can pick and choose which themes, plugins and database tables to migrate.Â </span></li>\n<li><span style=\"font-family: open sans, helvetica neue, helvetica, arial, sans-serif;\">Get Premium support. We can do more to support your migration than is allowed under WordPress forum guidelines e.g. we can look at your server configuration or access your site to diagnose issues.</span></li>\n<li><span style=\"font-family: open sans, helvetica neue, helvetica, arial, sans-serif;\">Can migrate a normal WordPress site into a subsite of a multisite.Â </span></li>\n</ul>\n<p><span style=\"font-family: open sans, helvetica neue, helvetica, arial, sans-serif;\">Premium is also a better option for users who regularly migrate between the same two WordPress websites e.g. if frequently updating a sandbox to reflect the live site or vice versa. Connect the sites once then migrate in a matter of clicks.Â </span></p>\n<p><span style=\"font-weight: 400;\">With UpdraftPlus Premium you also get premium backup features including the ability to take incremental backups, automatic backups before updates, more remote storage locations including Microsoft OneDrive, Microsoft Azure, SFTP, WebDAV and more. </span></p>\n<h4><b>So what does the free UpdraftPlus plugin do in respect to migration?</b></h4>\n<p><strong>You can migrate your WordPress website in the free plugin by taking a backup in the source site, and then uploading/restoring this in the destination site.Â </strong></p>\n<p><span style=\"font-weight: 400;\">As with premium, the free version includes a built-in â€˜search-and-replaceâ€™ engine which identifies old references, replacing these with the new ones, reducing the chances of missing files or broken links. </span></p>\n<p><span style=\"font-weight: 400;\">Both versions </span><span style=\"font-weight: 400;\">also perform </span><span style=\"font-weight: 400;\">various â€˜</span><span style=\"font-weight: 400;\">behind</span><span style=\"font-weight: 400;\"> the </span><span style=\"font-weight: 400;\">scenes&#8217;</span><span style=\"font-weight: 400;\"> clean-up tasks, maintaining compatibility with other plugins and things of that sort (our aim is never to have any â€œthe free version leaves things broken if youâ€™re using this-or-that plugin and you must pay to not have things broken!â€ situations).</span></p>\n<p><span style=\"font-weight: 400;\">Migrating your WordPress website with the free or premium plugins, takes minutes.</span></p>\n<p><span style=\"font-weight: 400;\">For a detailed explanation of the differences, visit our updated step-by-step </span><a href=\"https://updraftplus.com/faqs/how-do-i-migrate-to-a-new-site-location/\"><span style=\"font-weight: 400;\">WordPress migration guide.</span></a></p>\n<h4><b>Why the change?Â </b></h4>\n<p><span style=\"font-weight: 400;\">We want to bring migration to more of our customer base whilst providing an upgrade path to customers with additional migration needs.Â </span></p>\n<h4><b>Next steps</b></h4>\n<p><span style=\"font-weight: 400;\">Get the</span> <a href=\"https://wordpress.org/plugins/updraftplus/#\"><span style=\"font-weight: 400;\">free UpdraftPlus plugin now</span></a><span style=\"font-weight: 400;\">, from the WordPress directory or upgrade to </span><a href=\"https://updraftplus.com/shop/updraftplus-premium/\"><span style=\"font-weight: 400;\">UpdraftPlus Premium</span></a><span style=\"font-weight: 400;\"> to benefit from premium migration </span><i><span style=\"font-weight: 400;\">and </span></i><span style=\"font-weight: 400;\">premium backup features.</span></p>\n<h2><span style=\"font-weight: 400;\">Frequently Asked Questions</span></h2>\n<h4><b>Iâ€™ve just bought UpdraftMigrator as an add-on to the free product. Do I still need it?</b></h4>\n<p><span style=\"font-weight: 400;\">That depends on your needs.Â </span><b></b></p>\n<p><span style=\"font-weight: 400;\">If you need to migrate</span><i><span style=\"font-weight: 400;\">Â some</span></i> <span style=\"font-weight: 400;\">themes, plugins and database tables whilst leaving out others, youâ€™ll continue to need UpdraftMigrator or UpdraftPlus Premium. </span></p>\n<p><span style=\"font-weight: 400;\">If migrating a normal WordPress into a multisite network youâ€™ll also need UpdraftMigrator or UpdraftPlus Premium.Â  </span></p>\n<p><span style=\"font-weight: 400;\">Our team can also offer more support with Premium than is allowed via free support in the WordPress forums. We can do things like take a copy of your site (minus the user data) to replicate any errors you may be experiencing or access your server configuration.</span></p>\n<p><span style=\"font-weight: 400;\">Another advantage of the premium options (<a href=\"https://updraftplus.com/migrator/\">UpdraftMigrator</a> or <a href=\"https://updraftplus.com/shop/updraftplus-premium/\">UpdraftPlus Premium</a>) is you only need to connect two sites once to then make multiple migrations in just a few clicks.Â Â </span></p>\n<p><b><span style=\"font-weight: 400;\">For additional questions, please contact </span><a href=\"https://updraftplus.com/paid-support-requests/\"><span style=\"font-weight: 400;\">Support.</span></a>Â </b></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-releases-free-wordpress-migration-features/\">UpdraftPlus releases free WordPress migration features</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"UpdraftPlus 1.23.7: Resolves Dropbox and Remote Storage Issues\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://updraftplus.com/updraftplus-1-23-7-resolves-dropbox-and-remote-storage-issues/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Jul 2023 15:02:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"UpdraftPlus News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1849505\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:796:\"<p>Our most recent update ensures that any errors with Dropbox and SFTP remote storage solutions are correctly passed up to the logging layer, ensuring that data is actionable and remains up to date.Â  The logging layer is where errors, events, &#8230; <a href=\"https://updraftplus.com/updraftplus-1-23-7-resolves-dropbox-and-remote-storage-issues/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-1-23-7-resolves-dropbox-and-remote-storage-issues/\">UpdraftPlus 1.23.7: Resolves Dropbox and Remote Storage Issues</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Chris Read\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2197:\"<p><span style=\"font-weight: 400;\">Our most recent update ensures that any errors with Dropbox and SFTP remote storage solutions are correctly passed up to the logging layer, ensuring that data is actionable and remains up to date.Â </span></p>\n<p><span style=\"font-weight: 400;\">The logging layer is where errors, events, warnings and other important information is stored. The error meant that this process was not functioning correctly. The error started in 1.23.6, on 4th July 23, and has now been patched by our team.</span></p>\n<p><span style=\"font-weight: 400;\">Plugin users who work with Dropbox and SFTP solutions should ensure that they update to the most recent version of UpdraftPlus.</span></p>\n<p><span style=\"font-weight: 400;\">Please see below for a full breakdown of the changes that have been made.</span></p>\n<h2>Changelog</h2>\n<p><b>UpdraftPlus tag created: 1.23.7</b></p>\n<p><span style=\"font-weight: 400;\">= 1.23.7 &#8211; 04/Jul/2023 =</span></p>\n<p><span style=\"font-weight: 400;\">* FIX: When Dropbox returns an error, this error was not always correctly passed up to the logging layer</span></p>\n<p><span style=\"font-weight: 400;\">* FIX: Search / replace database not working on Admin dashboard &gt; Settings &gt; UpdraftPlus Backups &gt; Advanced Tools &gt; Search / replace database on PHP 8.2 due to stricter type checking</span></p>\n<p><span style=\"font-weight: 400;\">* FIX: The SFTP remote storage stopped working in the UpdraftPlus 2.23.6 release. Reverted the change &#8220;TWEAK: Validate SFTP key field on credential test and before save&#8221;</span></p>\n<p><span style=\"font-weight: 400;\">* TWEAK: Fixed Missing/ broken links for the pCloud image in addons tab</span></p>\n<p><span style=\"font-weight: 400;\">* TWEAK: Buying UpdraftClone tokens through inline checkout</span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-1-23-7-resolves-dropbox-and-remote-storage-issues/\">UpdraftPlus 1.23.7: Resolves Dropbox and Remote Storage Issues</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Essential Addons for Elementor Reveals a Critical Security Vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://updraftplus.com/essential-addons-for-elementor-reveals-a-critical-security-vulnerability/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Jun 2023 10:22:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"Elementor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1817399\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:854:\"<p>In the dynamic world of website building and content management systems, WordPress remains one of the most popular platforms. With its extensive library of plugins and themes, it offers great flexibility and functionality. However, like any software, WordPress is not &#8230; <a href=\"https://updraftplus.com/essential-addons-for-elementor-reveals-a-critical-security-vulnerability/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/essential-addons-for-elementor-reveals-a-critical-security-vulnerability/\">Essential Addons for Elementor Reveals a Critical Security Vulnerability</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Shane Gurney\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6035:\"<p><span style=\"font-weight: 400;\">In the dynamic world of website building and content management systems, WordPress remains one of the most popular platforms. With its extensive library of plugins and themes, it offers great flexibility and functionality. However, like any software, WordPress is not immune to </span><a href=\"https://aiosplugin.com/what-crucial-wordpress-security-issues-should-you-be-aware-of/\"><span style=\"font-weight: 400;\">security vulnerabilities</span></a><span style=\"font-weight: 400;\">. In this article, we will delve into </span><a href=\"https://patchstack.com/articles/critical-privilege-escalation-in-essential-addons-for-elementor-plugin-affecting-1-million-sites/\"><span style=\"font-weight: 400;\">a recent critical security flaw</span></a><span style=\"font-weight: 400;\"> found in the </span><a href=\"https://wordpress.org/plugins/essential-addons-for-elementor-lite/\"><span style=\"font-weight: 400;\">Essential Addons for Elementor plugin</span></a><span style=\"font-weight: 400;\">, affecting over 1 million WordPress sites. We will explain the vulnerability in simple terms, discuss its impact, and provide effective solutions to safeguard your website.</span></p>\n<h5><b>Understanding the Security Vulnerability:</b></h5>\n<p><span style=\"font-weight: 400;\">Recently, a critical security vulnerability was discovered in the widely used Essential Addons for Elementor plugin. This vulnerability, known as a &#8220;privilege escalation,&#8221; allows unauthorized users to gain elevated access to a website&#8217;s administrative features and potentially compromise its security.</span></p>\n<p><span style=\"font-weight: 400;\">In simple terms, privilege escalation means that an attacker can exploit a flaw in the Essential Addons for Elementor plugin to gain higher levels of access and control over a WordPress website than they should have. Normally, users are assigned specific roles and permissions that limit their actions within the website&#8217;s backend. However, due to this vulnerability, unauthorized individuals can bypass these restrictions and gain administrative privileges.</span></p>\n<h5><b>The Impact:</b></h5>\n<p><span style=\"font-weight: 400;\">With over a million WordPress sites using Essential Addons for Elementor, the potential consequences of this vulnerability are significant. Cybercriminals can exploit this flaw to manipulate sensitive data, inject malicious code, or even take complete control of your website. Such unauthorized access can lead to data breaches, defacement of your site, or distribution of malware to your visitors.</span></p>\n<h5><b>Recommended Actions:</b></h5>\n<p><span style=\"font-weight: 400;\">Â  Â  Â  Â 1. Update Essential Addons for Elementor:Â </span></p>\n<p><span style=\"font-weight: 400;\">The plugin developers have responded to the security vulnerability and released an updated version that addresses this issue. Ensure you update the plugin to the latest version promptly.</span></p>\n<p><span style=\"font-weight: 400;\">Â  Â  Â  Â 2. Regularly Update WordPress and Plugins:Â </span></p>\n<p><span style=\"font-weight: 400;\">Keeping your WordPress installation and all installed plugins up to date is vital for maintaining a secure website. Updates often contain important security patches that address known vulnerabilities.</span></p>\n<p><span style=\"font-weight: 400;\">Â  Â  Â  Â 3. Install a Security Plugin and implement Two-Factor Authentication (TFA):Â </span></p>\n<p><span style=\"font-weight: 400;\">By installing a Security plugin like our </span><a href=\"https://aiosplugin.com/\"><span style=\"font-weight: 400;\">All-In-One Security (AIOS) plugin</span></a><span style=\"font-weight: 400;\">, you can enhance the security of your WordPress website and prevent security vulnerabilities like this one. AIOS also offers the option to enable </span><a href=\"https://aiosplugin.com/why-should-you-add-two-factor-authentication-2fa-to-your-wordpress-site-in-2022/\"><span style=\"font-weight: 400;\">Two-Factor Authentication (TFA)</span></a><span style=\"font-weight: 400;\"> for an extra layer of security. </span><span style=\"font-weight: 400;\"><br />\n</span><span style=\"font-weight: 400;\"><br />\n</span><span style=\"font-weight: 400;\">Two-Factor Authentication adds a second form of verification, typically a unique code sent to your mobile device, in addition to your password. TFA is the number one thing users can do to protect themselves from security vulnerabilities. It significantly reduces the risk of unauthorized access, even if passwords are compromised. The </span><a href=\"https://wordpress.org/plugins/all-in-one-wp-security-and-firewall/\"><span style=\"font-weight: 400;\">free version of AIOS</span></a><span style=\"font-weight: 400;\"> includes a Simple TFA tool, and </span><a href=\"https://aiosplugin.com/product/all-in-one-wp-security-and-firewall-premium/\"><span style=\"font-weight: 400;\">the premium version</span></a><span style=\"font-weight: 400;\"> includes a more flexible and advanced TFA which allows for role specific configuration, time-based activation, emergency codes for lost devices and more.</span></p>\n<p><span style=\"font-weight: 400;\">The recent security vulnerability in Essential Addons for Elementor serves as a reminder of the importance of maintaining the security of your WordPress site. By promptly updating plugins, regularly patching your WordPress installation, and implementing additional security measures, you can significantly reduce the risk of falling victim to cyberattacks. Stay vigilant, follow best practices, and protect your website and its visitors from potential harm.</span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/essential-addons-for-elementor-reveals-a-critical-security-vulnerability/\">Essential Addons for Elementor Reveals a Critical Security Vulnerability</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Apply via GoHire\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/vacancies/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 May 2023 15:24:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Vacancies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"job post\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1712956\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:522:\"<p>To see every current vacancy across our suite of WordPress plugins, or to express a general interest in working with us (UpdraftPlus, WP-Optimize, All-In-One Security, Internal Link Juicer and WP Overnight) visit our GoHire page.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/vacancies/\">Apply via GoHire</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Team Updraft\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:793:\"<p><b>To see every current vacancy across our suite of WordPress plugins, or to express a general interest in working with us (<a href=\"http://updraftplus.com\">UpdraftPlus</a>, <a href=\"http://getwpo.com\">WP-Optimize</a>, <a href=\"http://aiosplugin.com\">All-In-One Security,</a> <a href=\"http://internallinkjuicer.com\">Internal Link Juicer</a> and <a href=\"http://wpovernight.com\">WP Overnight</a>) visit our <a href=\"https://jobs.gohire.io/updraft-wp-software-ltd-qlngukb8/\">GoHire </a></b><b>page.</b></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/vacancies/\">Apply via GoHire</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"https://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:29:\"https://updraftplus.com/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:19:{s:12:\"content-type\";s:23:\"text/xml; charset=utf-8\";s:4:\"vary\";s:46:\"Sec-Fetch-Dest, Sec-Fetch-Mode, Sec-Fetch-Site\";s:12:\"feedburnerv2\";s:0:\"\";s:13:\"last-modified\";s:29:\"Wed, 29 Nov 2023 13:36:41 GMT\";s:13:\"cache-control\";s:46:\"no-cache, no-store, max-age=0, must-revalidate\";s:6:\"pragma\";s:8:\"no-cache\";s:7:\"expires\";s:29:\"Mon, 01 Jan 1990 00:00:00 GMT\";s:4:\"date\";s:29:\"Wed, 29 Nov 2023 15:12:18 GMT\";s:23:\"content-security-policy\";s:243:\"require-trusted-types-for \'script\';report-uri /_/RaichuFeedServer/cspreport, script-src \'report-sample\' \'nonce-uUXXKPkmPo4xLv9Swou7IQ\' \'unsafe-inline\';object-src \'none\';base-uri \'self\';report-uri /_/RaichuFeedServer/cspreport;worker-src \'self\'\";s:26:\"cross-origin-opener-policy\";s:11:\"same-origin\";s:18:\"permissions-policy\";s:173:\"ch-ua-arch=*, ch-ua-bitness=*, ch-ua-full-version=*, ch-ua-full-version-list=*, ch-ua-model=*, ch-ua-wow64=*, ch-ua-form-factor=*, ch-ua-platform=*, ch-ua-platform-version=*\";s:9:\"accept-ch\";s:191:\"Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Model, Sec-CH-UA-WoW64, Sec-CH-UA-Form-Factor, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version\";s:28:\"cross-origin-resource-policy\";s:9:\"same-site\";s:16:\"content-encoding\";s:4:\"gzip\";s:6:\"server\";s:3:\"ESF\";s:16:\"x-xss-protection\";s:1:\"0\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:7:\"alt-svc\";s:46:\"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000\";}}s:5:\"build\";s:14:\"20210411122846\";}','no'),(777575,'_transient_timeout_feed_mod_e0061ca2fa5b884e483872aa34d3e7eb','1701313938','no'),(777576,'_transient_feed_mod_e0061ca2fa5b884e483872aa34d3e7eb','1701270738','no'),(777577,'_transient_timeout_updraftplus_dashboard_news','1701313938','no'),(777578,'_transient_updraftplus_dashboard_news','<div class=\"rss-widget\"><ul><li class=\"updraftplus_dashboard_news_item\"><a class=\'rsswidget\' href=\'https://updraftplus.com/wordpress-migration-checklist/\'>UpdraftPlus: WordPress migration checklist</a><a href=\"https://kingsvillelivestock.com/wp-admin/\" class=\"dashicons dashicons-no-alt\" title=\"Dismiss all UpdraftPlus news\" onClick=\"updraftplus_dismiss_dashboard_news(); return false;\" style=\"float: right; box-shadow: none;\"></li></a><li class=\"updraftplus_dashboard_news_item\"><a class=\'rsswidget\' href=\'https://updraftplus.com/test-your-site-with-php-8-3-with-ease-with-updraftclone/\'>UpdraftPlus: Test your site with PHP 8.3 with ease, with UpdraftClone</a><a href=\"https://kingsvillelivestock.com/wp-admin/\" class=\"dashicons dashicons-no-alt\" title=\"Dismiss all UpdraftPlus news\" onClick=\"updraftplus_dismiss_dashboard_news(); return false;\" style=\"float: right; box-shadow: none;\"></li></a></ul></div>','no'),(777579,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1701313938','no'),(777580,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/11/openverse-photo-directory-rewind/\'>WP Briefing: Episode 67: Openverse &amp; Photo Directory Rewind</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/11/state-of-the-word-2023-madrid-spain/\'>State of the Word 2023 â€“ Madrid, Spain</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/podcast/101-pooja-derashri-on-creating-educational-wordpress-content\'>WPTavern: #101 â€“ Pooja Derashri on Creating Educational WordPress Content</a></li><li><a class=\'rsswidget\' href=\'https://dothewoo.io/the-backstory-of-the-new-woo-branding-with-david-callaway/\'>Do The Woo Community: The Backstory of the New Woo Branding with David Callaway</a></li><li><a class=\'rsswidget\' href=\'https://dothewoo.io/all-things-wordpress-6-4-with-anne-mccarthy-and-bud-kraus/\'>Do The Woo Community: All Things WordPress 6.4 with Anne McCarthy and Bud Kraus</a></li></ul></div>','no'),(777584,'_site_transient_timeout_available_translations','1701281617','no');
INSERT INTO `b78GM7Ml_options` VALUES (777585,'_site_transient_available_translations','a:127:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-11-24 10:17:58\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"Ø§Ù„Ø¹Ø±Ø¨ÙŠØ©\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.8/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Ù…ØªØ§Ø¨Ø¹Ø©\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.23\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"Ø§Ù„Ø¹Ø±Ø¨ÙŠØ© Ø§Ù„Ù…ØºØ±Ø¨ÙŠØ©\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.23/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Ø§Ù„Ù…ØªØ§Ø¨Ø¹Ø©\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-09-08 17:57:56\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"à¦…à¦¸à¦®à§€à¦¯à¦¼à¦¾\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.8/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"Ú¯Ø¤Ù†Ø¦ÛŒ Ø¢Ø°Ø±Ø¨Ø§ÛŒØ¬Ø§Ù†\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"AzÉ™rbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Ð‘ÐµÐ»Ð°Ñ€ÑƒÑÐºÐ°Ñ Ð¼Ð¾Ð²Ð°\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.24/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"ÐŸÑ€Ð°Ñ†ÑÐ³Ð½ÑƒÑ†ÑŒ\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-30 17:34:05\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Ð‘ÑŠÐ»Ð³Ð°Ñ€ÑÐºÐ¸\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"ÐÐ°Ð¿Ñ€ÐµÐ´\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:6:\"5.4.14\";s:7:\"updated\";s:19:\"2020-10-31 08:48:37\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"à¦¬à¦¾à¦‚à¦²à¦¾\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.14/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:28:\"à¦šà¦¾à¦²à¦¿à§Ÿà§‡ à¦¯à¦¾à¦¨\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"à½–à½¼à½‘à¼‹à½¡à½²à½‚\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"à½˜à½´à¼‹à½˜à½à½´à½‘à¼‹à½‘à½´à¼\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-10-16 21:42:36\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-11-23 08:13:49\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"CatalÃ \";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.8/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-11-10 09:15:12\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"ÄŒeÅ¡tina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"PokraÄovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-18 09:36:21\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.8/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-06-11 19:56:46\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"FortsÃ¦t\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-07-22 10:24:47\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/5.8.8/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-07-22 10:24:20\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-07-10 12:19:50\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Ã–sterreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-12 22:05:27\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-12 22:03:41\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.8.8/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2022-07-09 16:47:33\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"DolnoserbÅ¡Ä‡ina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.8/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"à½¢à¾«à½¼à½„à¼‹à½\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-11-22 12:28:11\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Î•Î»Î»Î·Î½Î¹ÎºÎ¬\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.8/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Î£Ï…Î½Î­Ï‡ÎµÎ¹Î±\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-22 00:20:56\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-09-03 10:52:30\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-11-24 11:43:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-11-25 14:06:05\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-09-25 03:09:33\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-10-12 16:17:36\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.8/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"DaÅ­rigi\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-13 11:47:05\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"EspaÃ±ol\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-03-30 18:56:09\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"EspaÃ±ol de MÃ©xico\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-04-13 06:15:42\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"EspaÃ±ol de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2022-07-07 03:16:00\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"EspaÃ±ol de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2022-07-07 03:14:21\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"EspaÃ±ol de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"EspaÃ±ol de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"EspaÃ±ol de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.14\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"EspaÃ±ol de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.14/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.19\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"EspaÃ±ol de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.19/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-08-04 15:24:32\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"EspaÃ±ol de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"EspaÃ±ol de RepÃºblica Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"EspaÃ±ol de PerÃº\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-07-30 00:35:05\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"EspaÃ±ol de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"JÃ¤tka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-21 12:26:50\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.8/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-11-20 16:34:11\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(ÙØ§Ø±Ø³ÛŒ (Ø§ÙØºØ§Ù†Ø³ØªØ§Ù†\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Ø§Ø¯Ø§Ù…Ù‡\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-14 21:07:58\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"ÙØ§Ø±Ø³ÛŒ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Ø§Ø¯Ø§Ù…Ù‡\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-28 06:48:43\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.8/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-03-21 13:15:55\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"FranÃ§ais du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-03-11 10:44:04\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"FranÃ§ais\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"FranÃ§ais de Belgique\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.23\";s:7:\"updated\";s:19:\"2023-04-30 13:56:46\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.23/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"GÃ idhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-12 23:48:33\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2023-07-25 11:17:47\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"àª—à«àªœàª°àª¾àª¤à«€\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.24/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"àªšàª¾àª²à« àª°àª¾àª–à«‹\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.31\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"Ù‡Ø²Ø§Ø±Ù‡ Ú¯ÛŒ\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.31/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Ø§Ø¯Ø§Ù…Ù‡\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-02-05 13:50:31\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"×¢Ö´×‘Ö°×¨Ö´×™×ª\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"×”×ž×©×š\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:6:\"5.5.13\";s:7:\"updated\";s:19:\"2023-08-11 04:03:50\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"à¤¹à¤¿à¤¨à¥à¤¦à¥€\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.13/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"à¤œà¤¾à¤°à¥€ à¤°à¤–à¥‡à¤‚\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-03-22 10:46:03\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.8/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2022-07-09 16:46:59\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"HornjoserbÅ¡Ä‡ina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.8/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-07-22 17:27:53\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"FolytatÃ¡s\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Õ€Õ¡ÕµÕ¥Ö€Õ¥Õ¶\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Õ‡Õ¡Ö€Õ¸Ö‚Õ¶Õ¡Õ¯Õ¥Õ¬\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-13 08:03:13\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Ãslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.24/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Ãfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-13 19:16:38\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-13 01:59:27\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"æ—¥æœ¬èªž\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.8/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"æ¬¡ã¸\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.24/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"NerusakÃ©\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-31 08:45:56\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"áƒ¥áƒáƒ áƒ—áƒ£áƒšáƒ˜\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"áƒ’áƒáƒ’áƒ áƒ«áƒ”áƒšáƒ”áƒ‘áƒ\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-12-14 17:37:38\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.8/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"ÒšÐ°Ð·Ð°Ò› Ñ‚Ñ–Ð»Ñ–\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.24/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Ð–Ð°Ð»Ò“Ð°ÑÑ‚Ñ‹Ñ€Ñƒ\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.19\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"áž—áž¶ážŸáž¶ážáŸ’áž˜áŸ‚ážš\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.19/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"áž”áž“áŸ’áž\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-10-03 06:17:02\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"à²•à²¨à³à²¨à²¡\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.8/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"à²®à³à²‚à²¦à³à²µà²°à²¿à²¸à³\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-06-08 00:32:09\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"í•œêµ­ì–´\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"ê³„ì†\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-12-07 16:32:30\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"ÙƒÙˆØ±Ø¯ÛŒâ€Ž\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.8/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"Ø¨Ù‡â€ŒØ±Ø¯Ù‡â€ŒÙˆØ§Ù… Ø¨Ù‡â€Œ\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"àºžàº²àºªàº²àº¥àº²àº§\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"àº•à»à»ˆâ€‹à»„àº›\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-23 12:35:40\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"LietuviÅ³ kalba\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"TÄ™sti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-08-07 05:56:37\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"LatvieÅ¡u valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.8/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"TurpinÄt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:6:\"5.4.14\";s:7:\"updated\";s:19:\"2020-07-01 09:16:57\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"ÐœÐ°ÐºÐµÐ´Ð¾Ð½ÑÐºÐ¸ Ñ˜Ð°Ð·Ð¸Ðº\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.14/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"ÐŸÑ€Ð¾Ð´Ð¾Ð»Ð¶Ð¸\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"à´®à´²à´¯à´¾à´³à´‚\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"à´¤àµà´Ÿà´°àµà´•\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"ÐœÐ¾Ð½Ð³Ð¾Ð»\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"à¤®à¤°à¤¾à¤ à¥€\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.24/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"à¤¸à¥à¤°à¥ à¤ à¥‡à¤µà¤¾\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.13\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.13/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.36\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"á€—á€™á€¬á€…á€¬\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.36/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"á€†á€€á€ºá€œá€€á€ºá€œá€¯á€•á€ºá€†á€±á€¬á€„á€ºá€•á€«á‹\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-12 23:37:09\";s:12:\"english_name\";s:19:\"Norwegian (BokmÃ¥l)\";s:11:\"native_name\";s:13:\"Norsk bokmÃ¥l\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:6:\"5.2.19\";s:7:\"updated\";s:19:\"2020-05-31 16:07:59\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"à¤¨à¥‡à¤ªà¤¾à¤²à¥€\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.19/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"à¤œà¤¾à¤°à¥€ à¤°à¤¾à¤–à¥à¤¨à¥à¤¹à¥‹à¤¸à¥\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-11-14 12:51:29\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.8.8/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-09-10 16:25:20\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-11-22 10:26:45\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (BelgiÃ«)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.23\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.23/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:15:\"Panjabi (India)\";s:11:\"native_name\";s:18:\"à¨ªà©°à¨œà¨¾à¨¬à©€\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"à¨œà¨¾à¨°à©€ à¨°à©±à¨–à©‹\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-13 13:21:58\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.32\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"Ù¾ÚšØªÙˆ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.32/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"Ø¯ÙˆØ§Ù… ÙˆØ±Ú©Ú“Ù‡\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-18 18:21:49\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"PortuguÃªs do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-13 08:07:33\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"PortuguÃªs\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-09-28 12:14:48\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"PortuguÃªs (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/5.8.8/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-11-27 16:28:47\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"PortuguÃªs de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"RuÃ¡inga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-11-22 15:08:01\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"RomÃ¢nÄƒ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ContinuÄƒ\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-13 04:50:40\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Ð ÑƒÑÑÐºÐ¸Ð¹\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"ÐŸÑ€Ð¾Ð´Ð¾Ð»Ð¶Ð¸Ñ‚ÑŒ\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Ð¡Ð°Ñ…Ð°Ð»Ñ‹Ñ‹\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Ð¡Ð°Ð»Ò•Ð°Ð°\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.14\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"Ø³Ù†ÚŒÙŠ\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.14/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Ø§Ú³ØªÙŠ Ù‡Ù„Ùˆ\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"à·ƒà·’à¶‚à·„à¶½\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"à¶¯à·’à¶œà¶§à¶¸ à¶šà¶»à¶œà·™à¶± à¶ºà¶±à·Šà¶±\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-16 03:54:11\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"SlovenÄina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"PokraÄovaÅ¥\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-10-15 15:37:00\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"Ø³Ø±Ø§Ø¦ÛŒÚ©ÛŒ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.8/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"Ø¬Ø§Ø±ÛŒ Ø±Ú©Ú¾Ùˆ\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-11-23 08:11:23\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"SlovenÅ¡Äina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-14 09:30:41\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.8/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-08-01 21:21:06\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Ð¡Ñ€Ð¿ÑÐºÐ¸ Ñ˜ÐµÐ·Ð¸Ðº\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"ÐÐ°ÑÑ‚Ð°Ð²Ð¸\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-12 20:54:17\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"FortsÃ¤tt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:6:\"5.3.16\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.3.16/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"ÅšlÅnskÅ gÅdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"KÅntynuowaÄ‡\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"à®¤à®®à®¿à®´à¯\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"à®¤à¯Šà®Ÿà®°à®µà¯à®®à¯\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.36\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"à®¤à®®à®¿à®´à¯\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.36/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"à®¤à¯Šà®Ÿà®°à¯à®•\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"à°¤à±†à°²à±à°—à±\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"à°•à±Šà°¨à°¸à°¾à°—à°¿à°‚à°šà±\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2022-06-08 04:30:30\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"à¹„à¸—à¸¢\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.8/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"à¸•à¹ˆà¸­à¹„à¸›\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.23\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.23/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-11-04 22:42:27\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"TÃ¼rkÃ§e\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Ð¢Ð°Ñ‚Ð°Ñ€ Ñ‚ÐµÐ»Ðµ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"Ð´Ó™Ð²Ð°Ð¼ Ð¸Ñ‚Ò¯\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:6:\"4.9.24\";s:7:\"updated\";s:19:\"2021-07-03 18:41:33\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"Ø¦Û‡ÙŠØºÛ‡Ø±Ú†Û•\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.24/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"Ø¯Ø§Û‹Ø§Ù…Ù„Ø§Ø´ØªÛ‡Ø±Û‡Ø´\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2022-03-06 15:05:20\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Ð£ÐºÑ€Ð°Ñ—Ð½ÑÑŒÐºÐ°\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.8/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"ÐŸÑ€Ð¾Ð´Ð¾Ð²Ð¶Ð¸Ñ‚Ð¸\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.14\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"Ø§Ø±Ø¯Ùˆ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.14/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"Ø¬Ø§Ø±ÛŒ Ø±Ú©Ú¾ÛŒÚº\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"Oâ€˜zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2021-11-16 07:16:28\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiáº¿ng Viá»‡t\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.8/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiáº¿p tá»¥c\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2022-03-14 14:59:42\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:12:\"é¦™æ¸¯ä¸­æ–‡\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"ç¹¼çºŒ\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-10-12 21:15:45\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"ç®€ä½“ä¸­æ–‡\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"ç»§ç»­\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"5.8.8\";s:7:\"updated\";s:19:\"2023-11-10 16:44:52\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"ç¹é«”ä¸­æ–‡\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.8/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"ç¹¼çºŒ\";}}}','no'),(777631,'_transient_timeout_wflginfl_00000000000000000000ffff8d885b29','1701288059','no'),(777632,'_transient_wflginfl_00000000000000000000ffff8d885b29','1','no'),(777650,'_site_transient_timeout_browser_f529a32073a22388a8370c39e9b93c86','1701880442','no'),(777651,'_site_transient_browser_f529a32073a22388a8370c39e9b93c86','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"119.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(777653,'_site_transient_timeout_theme_roots','1701277444','no'),(777654,'_site_transient_theme_roots','a:1:{s:4:\"Divi\";s:7:\"/themes\";}','no'),(777656,'_site_transient_et_update_all_plugins','O:8:\"stdClass\":3:{s:7:\"checked\";a:13:{s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.2\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.5.3\";s:79:\"contact-form-7-dynamic-text-extension/contact-form-7-dynamic-text-extension.php\";s:5:\"2.0.3\";s:33:\"fusion-builder/fusion-builder.php\";s:3:\"1.9\";s:27:\"fusion-core/fusion-core.php\";s:3:\"3.9\";s:36:\"contact-form-7-honeypot/honeypot.php\";s:3:\"2.1\";s:15:\"worker/init.php\";s:6:\"4.9.17\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:5:\"5.2.2\";s:33:\"instagram-feed/instagram-feed.php\";s:5:\"2.9.9\";s:27:\"updraftplus/updraftplus.php\";s:8:\"2.15.7.1\";s:23:\"wordfence/wordfence.php\";s:5:\"7.5.7\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:5:\"3.2.1\";s:33:\"duplicate-post/duplicate-post.php\";s:3:\"4.3\";}s:8:\"response\";a:0:{}s:12:\"last_checked\";i:1701275645;}','no'),(777771,'_transient_doing_cron','1702487149.7616040706634521484375','yes'),(777772,'_transient_timeout_global_styles','1701281657','no'),(777773,'_transient_global_styles','body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--normal: 16px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--huge: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-normal-font-size{font-size: var(--wp--preset--font-size--normal) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-huge-font-size{font-size: var(--wp--preset--font-size--huge) !important;}','no'),(777777,'_transient_timeout_et_core_path','1702573549','no'),(777778,'_transient_et_core_path','/home/jeffgutowski/auction.jeffgutowski.com/wp-content/themes/Divi/core','no'),(777779,'_transient_timeout_fonts_cache_status','1702573563','no'),(777780,'_transient_fonts_cache_status','1','no'),(777781,'_transient_timeout_et_check_mod_pagespeed','1702573563','no'),(777782,'_transient_et_check_mod_pagespeed','','no');
/*!40000 ALTER TABLE `b78GM7Ml_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_postmeta`
--

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

--
-- Dumping data for table `b78GM7Ml_postmeta`
--

LOCK TABLES `b78GM7Ml_postmeta` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_postmeta` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_postmeta` VALUES (2,3,'_wp_page_template','default'),(3,5,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]'),(4,5,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:26:\"HPG Media \"[your-subject]\"\";s:6:\"sender\";s:38:\"HPG Media <wordpress@hpgmediatest.com>\";s:9:\"recipient\";s:19:\"justin@hpgmedia.com\";s:4:\"body\";s:178:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on HPG Media (http://kingsvillelivestock.com)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(5,5,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:32:\"Driftwood Media \"[your-subject]\"\";s:6:\"sender\";s:44:\"Driftwood Media <wordpress@hpgmediatest.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:126:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Driftwood Media (http://kingsvillelivestock.com)\";s:18:\"additional_headers\";s:29:\"Reply-To: justin@hpgmedia.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(6,5,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(7,5,'_additional_settings',''),(8,5,'_locale','en_US'),(395,29,'_edit_last','1'),(396,29,'_edit_lock','1558057855:1'),(398,29,'pyre_type','image'),(399,29,'pyre_youtube_id',''),(400,29,'pyre_vimeo_id',''),(401,29,'pyre_mp4',''),(402,29,'pyre_mp4_id',''),(403,29,'pyre_webm',''),(404,29,'pyre_webm_id',''),(405,29,'pyre_ogv',''),(406,29,'pyre_ogv_id',''),(407,29,'pyre_preview_image',''),(408,29,'pyre_preview_image_id',''),(409,29,'pyre_aspect_ratio',''),(410,29,'pyre_video_display','cover'),(411,29,'pyre_video_bg_color',''),(412,29,'pyre_mute_video','yes'),(413,29,'pyre_autoplay_video','yes'),(414,29,'pyre_loop_video','yes'),(415,29,'pyre_hide_video_controls','yes'),(416,29,'pyre_content_alignment','left'),(417,29,'pyre_heading','Make Your <br/>\r\nBusiness Sexy!'),(418,29,'pyre_heading_separator','none'),(419,29,'pyre_heading_size','2'),(420,29,'pyre_heading_font_size',''),(421,29,'pyre_heading_color','#fff'),(422,29,'pyre_heading_bg','no'),(423,29,'pyre_heading_bg_color','#000'),(424,29,'pyre_caption','We live, eat, & breathe to put your brand <br/>in front of the masses.'),(425,29,'pyre_caption_separator','none'),(426,29,'pyre_caption_size','3'),(427,29,'pyre_caption_font_size',''),(428,29,'pyre_caption_color','#fff'),(429,29,'pyre_caption_bg','no'),(430,29,'pyre_caption_bg_color',''),(431,29,'pyre_link_type','button'),(432,29,'pyre_slide_link',''),(433,29,'pyre_slide_target','yes'),(434,29,'pyre_button_1','[fusion_button link=\"#contact\" color=\"default\" size=\"\" type=\"\" shape=\"\" target=\"_self\" title=\"\" gradient_colors=\"|\" gradient_hover_colors=\"|\" accent_color=\"\" accent_hover_color=\"\" bevel_color=\"\" border_width=\"1px\" shadow=\"\" icon=\"\" icon_divider=\"yes\" icon_position=\"left\" modal=\"\" animation_type=\"0\" animation_direction=\"down\" animation_speed=\"0.1\" class=\"\" id=\"\"]Hire Us[/fusion_button]'),(435,29,'pyre_button_2',''),(2228,172,'_fusion_is_global','yes'),(2229,173,'_fusion_is_global','yes'),(2230,174,'_fusion_is_global','yes'),(2231,175,'_fusion_is_global','yes'),(2232,176,'_fusion_is_global','yes'),(2233,177,'_fusion_is_global','yes'),(2234,178,'_fusion_is_global','yes'),(2235,179,'_fusion_is_global','yes'),(2236,180,'_fusion_is_global','yes'),(2257,179,'pyre_slider_type','flex'),(2258,179,'pyre_slider','0'),(2259,179,'pyre_wooslider','homepage'),(2260,179,'pyre_revslider','0'),(2261,179,'pyre_elasticslider','0'),(2262,179,'pyre_slider_position','default'),(2263,179,'pyre_avada_rev_styles','default'),(2264,179,'pyre_fallback',''),(2265,179,'pyre_fallback_id',''),(2266,179,'pyre_demo_slider',''),(2267,179,'pyre_main_top_padding','0px'),(2268,179,'pyre_main_bottom_padding','0px'),(2269,179,'pyre_hundredp_padding',''),(2270,179,'pyre_show_first_featured_image','no'),(2271,179,'pyre_display_header','yes'),(2272,179,'pyre_header_100_width','default'),(2273,179,'pyre_combined_header_bg_color',''),(2274,179,'pyre_mobile_header_bg_color',''),(2275,179,'pyre_header_bg',''),(2276,179,'pyre_header_bg_id',''),(2277,179,'pyre_header_bg_full','no'),(2278,179,'pyre_header_bg_repeat','repeat'),(2279,179,'pyre_displayed_menu','default'),(2280,179,'pyre_display_footer','default'),(2281,179,'pyre_display_copyright','default'),(2282,179,'pyre_footer_100_width','default'),(2283,179,'pyre_sidebar_position','default'),(2284,179,'pyre_responsive_sidebar_order',''),(2285,179,'pyre_sidebar_sticky','default'),(2286,179,'pyre_sidebar_bg_color',''),(2287,179,'pyre_page_bg_layout','default'),(2288,179,'pyre_page_bg_color',''),(2289,179,'pyre_page_bg',''),(2290,179,'pyre_page_bg_id',''),(2291,179,'pyre_page_bg_full','default'),(2292,179,'pyre_page_bg_repeat','default'),(2293,179,'pyre_wide_page_bg_color',''),(2294,179,'pyre_wide_page_bg',''),(2295,179,'pyre_wide_page_bg_id',''),(2296,179,'pyre_wide_page_bg_full','default'),(2297,179,'pyre_wide_page_bg_repeat','default'),(2298,179,'pyre_page_title','no'),(2299,179,'pyre_page_title_breadcrumbs_search_bar','default'),(2300,179,'pyre_page_title_text','default'),(2301,179,'pyre_page_title_text_alignment','default'),(2302,179,'pyre_page_title_custom_text',''),(2303,179,'pyre_page_title_text_size',''),(2304,179,'pyre_page_title_line_height',''),(2305,179,'pyre_page_title_font_color',''),(2306,179,'pyre_page_title_custom_subheader',''),(2307,179,'pyre_page_title_custom_subheader_text_size',''),(2308,179,'pyre_page_title_subheader_font_color',''),(2309,179,'pyre_page_title_100_width','default'),(2310,179,'pyre_page_title_height',''),(2311,179,'pyre_page_title_mobile_height',''),(2312,179,'pyre_page_title_bar_bg_color',''),(2313,179,'pyre_page_title_bar_borders_color',''),(2314,179,'pyre_page_title_bar_bg',''),(2315,179,'pyre_page_title_bar_bg_id',''),(2316,179,'pyre_page_title_bar_bg_retina',''),(2317,179,'pyre_page_title_bar_bg_retina_id',''),(2318,179,'pyre_page_title_bar_bg_full','default'),(2319,179,'pyre_page_title_bg_parallax','default'),(2320,179,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(2321,179,'fusion_builder_status','active'),(2322,179,'kd_featured-image-2_page_id',''),(2323,179,'kd_featured-image-3_page_id',''),(2324,179,'kd_featured-image-4_page_id',''),(2325,179,'kd_featured-image-5_page_id',''),(2338,178,'pyre_slider_type','flex'),(2339,178,'pyre_slider','0'),(2340,178,'pyre_wooslider','homepage'),(2341,178,'pyre_revslider','0'),(2342,178,'pyre_elasticslider','0'),(2343,178,'pyre_slider_position','default'),(2344,178,'pyre_avada_rev_styles','default'),(2345,178,'pyre_fallback',''),(2346,178,'pyre_fallback_id',''),(2347,178,'pyre_demo_slider',''),(2348,178,'pyre_main_top_padding','0px'),(2349,178,'pyre_main_bottom_padding','0px'),(2350,178,'pyre_hundredp_padding',''),(2351,178,'pyre_show_first_featured_image','no'),(2352,178,'pyre_display_header','yes'),(2353,178,'pyre_header_100_width','default'),(2354,178,'pyre_combined_header_bg_color',''),(2355,178,'pyre_mobile_header_bg_color',''),(2356,178,'pyre_header_bg',''),(2357,178,'pyre_header_bg_id',''),(2358,178,'pyre_header_bg_full','no'),(2359,178,'pyre_header_bg_repeat','repeat'),(2360,178,'pyre_displayed_menu','default'),(2361,178,'pyre_display_footer','default'),(2362,178,'pyre_display_copyright','default'),(2363,178,'pyre_footer_100_width','default'),(2364,178,'pyre_sidebar_position','default'),(2365,178,'pyre_responsive_sidebar_order',''),(2366,178,'pyre_sidebar_sticky','default'),(2367,178,'pyre_sidebar_bg_color',''),(2368,178,'pyre_page_bg_layout','default'),(2369,178,'pyre_page_bg_color',''),(2370,178,'pyre_page_bg',''),(2371,178,'pyre_page_bg_id',''),(2372,178,'pyre_page_bg_full','default'),(2373,178,'pyre_page_bg_repeat','default'),(2374,178,'pyre_wide_page_bg_color',''),(2375,178,'pyre_wide_page_bg',''),(2376,178,'pyre_wide_page_bg_id',''),(2377,178,'pyre_wide_page_bg_full','default'),(2378,178,'pyre_wide_page_bg_repeat','default'),(2379,178,'pyre_page_title','no'),(2380,178,'pyre_page_title_breadcrumbs_search_bar','default'),(2381,178,'pyre_page_title_text','default'),(2382,178,'pyre_page_title_text_alignment','default'),(2383,178,'pyre_page_title_custom_text',''),(2384,178,'pyre_page_title_text_size',''),(2385,178,'pyre_page_title_line_height',''),(2386,178,'pyre_page_title_font_color',''),(2387,178,'pyre_page_title_custom_subheader',''),(2388,178,'pyre_page_title_custom_subheader_text_size',''),(2389,178,'pyre_page_title_subheader_font_color',''),(2390,178,'pyre_page_title_100_width','default'),(2391,178,'pyre_page_title_height',''),(2392,178,'pyre_page_title_mobile_height',''),(2393,178,'pyre_page_title_bar_bg_color',''),(2394,178,'pyre_page_title_bar_borders_color',''),(2395,178,'pyre_page_title_bar_bg',''),(2396,178,'pyre_page_title_bar_bg_id',''),(2397,178,'pyre_page_title_bar_bg_retina',''),(2398,178,'pyre_page_title_bar_bg_retina_id',''),(2399,178,'pyre_page_title_bar_bg_full','default'),(2400,178,'pyre_page_title_bg_parallax','default'),(2401,178,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(2402,178,'fusion_builder_status','active'),(2403,178,'kd_featured-image-2_page_id',''),(2404,178,'kd_featured-image-3_page_id',''),(2405,178,'kd_featured-image-4_page_id',''),(2406,178,'kd_featured-image-5_page_id',''),(2419,176,'pyre_slider_type','flex'),(2420,176,'pyre_slider','0'),(2421,176,'pyre_wooslider','homepage'),(2422,176,'pyre_revslider','0'),(2423,176,'pyre_elasticslider','0'),(2424,176,'pyre_slider_position','default'),(2425,176,'pyre_avada_rev_styles','default'),(2426,176,'pyre_fallback',''),(2427,176,'pyre_fallback_id',''),(2428,176,'pyre_demo_slider',''),(2429,176,'pyre_main_top_padding','0px'),(2430,176,'pyre_main_bottom_padding','0px'),(2431,176,'pyre_hundredp_padding',''),(2432,176,'pyre_show_first_featured_image','no'),(2433,176,'pyre_display_header','yes'),(2434,176,'pyre_header_100_width','default'),(2435,176,'pyre_combined_header_bg_color',''),(2436,176,'pyre_mobile_header_bg_color',''),(2437,176,'pyre_header_bg',''),(2438,176,'pyre_header_bg_id',''),(2439,176,'pyre_header_bg_full','no'),(2440,176,'pyre_header_bg_repeat','repeat'),(2441,176,'pyre_displayed_menu','default'),(2442,176,'pyre_display_footer','default'),(2443,176,'pyre_display_copyright','default'),(2444,176,'pyre_footer_100_width','default'),(2445,176,'pyre_sidebar_position','default'),(2446,176,'pyre_responsive_sidebar_order',''),(2447,176,'pyre_sidebar_sticky','default'),(2448,176,'pyre_sidebar_bg_color',''),(2449,176,'pyre_page_bg_layout','default'),(2450,176,'pyre_page_bg_color',''),(2451,176,'pyre_page_bg',''),(2452,176,'pyre_page_bg_id',''),(2453,176,'pyre_page_bg_full','default'),(2454,176,'pyre_page_bg_repeat','default'),(2455,176,'pyre_wide_page_bg_color',''),(2456,176,'pyre_wide_page_bg',''),(2457,176,'pyre_wide_page_bg_id',''),(2458,176,'pyre_wide_page_bg_full','default'),(2459,176,'pyre_wide_page_bg_repeat','default'),(2460,176,'pyre_page_title','no'),(2461,176,'pyre_page_title_breadcrumbs_search_bar','default'),(2462,176,'pyre_page_title_text','default'),(2463,176,'pyre_page_title_text_alignment','default'),(2464,176,'pyre_page_title_custom_text',''),(2465,176,'pyre_page_title_text_size',''),(2466,176,'pyre_page_title_line_height',''),(2467,176,'pyre_page_title_font_color',''),(2468,176,'pyre_page_title_custom_subheader',''),(2469,176,'pyre_page_title_custom_subheader_text_size',''),(2470,176,'pyre_page_title_subheader_font_color',''),(2471,176,'pyre_page_title_100_width','default'),(2472,176,'pyre_page_title_height',''),(2473,176,'pyre_page_title_mobile_height',''),(2474,176,'pyre_page_title_bar_bg_color',''),(2475,176,'pyre_page_title_bar_borders_color',''),(2476,176,'pyre_page_title_bar_bg',''),(2477,176,'pyre_page_title_bar_bg_id',''),(2478,176,'pyre_page_title_bar_bg_retina',''),(2479,176,'pyre_page_title_bar_bg_retina_id',''),(2480,176,'pyre_page_title_bar_bg_full','default'),(2481,176,'pyre_page_title_bg_parallax','default'),(2482,176,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(2483,176,'fusion_builder_status','active'),(2484,176,'kd_featured-image-2_page_id',''),(2485,176,'kd_featured-image-3_page_id',''),(2486,176,'kd_featured-image-4_page_id',''),(2487,176,'kd_featured-image-5_page_id',''),(2500,174,'pyre_slider_type','flex'),(2501,174,'pyre_slider','0'),(2502,174,'pyre_wooslider','homepage'),(2503,174,'pyre_revslider','0'),(2504,174,'pyre_elasticslider','0'),(2505,174,'pyre_slider_position','default'),(2506,174,'pyre_avada_rev_styles','default'),(2507,174,'pyre_fallback',''),(2508,174,'pyre_fallback_id',''),(2509,174,'pyre_demo_slider',''),(2510,174,'pyre_main_top_padding','0px'),(2511,174,'pyre_main_bottom_padding','0px'),(2512,174,'pyre_hundredp_padding',''),(2513,174,'pyre_show_first_featured_image','no'),(2514,174,'pyre_display_header','yes'),(2515,174,'pyre_header_100_width','default'),(2516,174,'pyre_combined_header_bg_color',''),(2517,174,'pyre_mobile_header_bg_color',''),(2518,174,'pyre_header_bg',''),(2519,174,'pyre_header_bg_id',''),(2520,174,'pyre_header_bg_full','no'),(2521,174,'pyre_header_bg_repeat','repeat'),(2522,174,'pyre_displayed_menu','default'),(2523,174,'pyre_display_footer','default'),(2524,174,'pyre_display_copyright','default'),(2525,174,'pyre_footer_100_width','default'),(2526,174,'pyre_sidebar_position','default'),(2527,174,'pyre_responsive_sidebar_order',''),(2528,174,'pyre_sidebar_sticky','default'),(2529,174,'pyre_sidebar_bg_color',''),(2530,174,'pyre_page_bg_layout','default'),(2531,174,'pyre_page_bg_color',''),(2532,174,'pyre_page_bg',''),(2533,174,'pyre_page_bg_id',''),(2534,174,'pyre_page_bg_full','default'),(2535,174,'pyre_page_bg_repeat','default'),(2536,174,'pyre_wide_page_bg_color',''),(2537,174,'pyre_wide_page_bg',''),(2538,174,'pyre_wide_page_bg_id',''),(2539,174,'pyre_wide_page_bg_full','default'),(2540,174,'pyre_wide_page_bg_repeat','default'),(2541,174,'pyre_page_title','no'),(2542,174,'pyre_page_title_breadcrumbs_search_bar','default'),(2543,174,'pyre_page_title_text','default'),(2544,174,'pyre_page_title_text_alignment','default'),(2545,174,'pyre_page_title_custom_text',''),(2546,174,'pyre_page_title_text_size',''),(2547,174,'pyre_page_title_line_height',''),(2548,174,'pyre_page_title_font_color',''),(2549,174,'pyre_page_title_custom_subheader',''),(2550,174,'pyre_page_title_custom_subheader_text_size',''),(2551,174,'pyre_page_title_subheader_font_color',''),(2552,174,'pyre_page_title_100_width','default'),(2553,174,'pyre_page_title_height',''),(2554,174,'pyre_page_title_mobile_height',''),(2555,174,'pyre_page_title_bar_bg_color',''),(2556,174,'pyre_page_title_bar_borders_color',''),(2557,174,'pyre_page_title_bar_bg',''),(2558,174,'pyre_page_title_bar_bg_id',''),(2559,174,'pyre_page_title_bar_bg_retina',''),(2560,174,'pyre_page_title_bar_bg_retina_id',''),(2561,174,'pyre_page_title_bar_bg_full','default'),(2562,174,'pyre_page_title_bg_parallax','default'),(2563,174,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(2564,174,'fusion_builder_status','active'),(2565,174,'kd_featured-image-2_page_id',''),(2566,174,'kd_featured-image-3_page_id',''),(2567,174,'kd_featured-image-4_page_id',''),(2568,174,'kd_featured-image-5_page_id',''),(2581,172,'pyre_slider_type','flex'),(2582,172,'pyre_slider','0'),(2583,172,'pyre_wooslider','homepage'),(2584,172,'pyre_revslider','0'),(2585,172,'pyre_elasticslider','0'),(2586,172,'pyre_slider_position','default'),(2587,172,'pyre_avada_rev_styles','default'),(2588,172,'pyre_fallback',''),(2589,172,'pyre_fallback_id',''),(2590,172,'pyre_demo_slider',''),(2591,172,'pyre_main_top_padding','0px'),(2592,172,'pyre_main_bottom_padding','0px'),(2593,172,'pyre_hundredp_padding',''),(2594,172,'pyre_show_first_featured_image','no'),(2595,172,'pyre_display_header','yes'),(2596,172,'pyre_header_100_width','default'),(2597,172,'pyre_combined_header_bg_color',''),(2598,172,'pyre_mobile_header_bg_color',''),(2599,172,'pyre_header_bg',''),(2600,172,'pyre_header_bg_id',''),(2601,172,'pyre_header_bg_full','no'),(2602,172,'pyre_header_bg_repeat','repeat'),(2603,172,'pyre_displayed_menu','default'),(2604,172,'pyre_display_footer','default'),(2605,172,'pyre_display_copyright','default'),(2606,172,'pyre_footer_100_width','default'),(2607,172,'pyre_sidebar_position','default'),(2608,172,'pyre_responsive_sidebar_order',''),(2609,172,'pyre_sidebar_sticky','default'),(2610,172,'pyre_sidebar_bg_color',''),(2611,172,'pyre_page_bg_layout','default'),(2612,172,'pyre_page_bg_color',''),(2613,172,'pyre_page_bg',''),(2614,172,'pyre_page_bg_id',''),(2615,172,'pyre_page_bg_full','default'),(2616,172,'pyre_page_bg_repeat','default'),(2617,172,'pyre_wide_page_bg_color',''),(2618,172,'pyre_wide_page_bg',''),(2619,172,'pyre_wide_page_bg_id',''),(2620,172,'pyre_wide_page_bg_full','default'),(2621,172,'pyre_wide_page_bg_repeat','default'),(2622,172,'pyre_page_title','no'),(2623,172,'pyre_page_title_breadcrumbs_search_bar','default'),(2624,172,'pyre_page_title_text','default'),(2625,172,'pyre_page_title_text_alignment','default'),(2626,172,'pyre_page_title_custom_text',''),(2627,172,'pyre_page_title_text_size',''),(2628,172,'pyre_page_title_line_height',''),(2629,172,'pyre_page_title_font_color',''),(2630,172,'pyre_page_title_custom_subheader',''),(2631,172,'pyre_page_title_custom_subheader_text_size',''),(2632,172,'pyre_page_title_subheader_font_color',''),(2633,172,'pyre_page_title_100_width','default'),(2634,172,'pyre_page_title_height',''),(2635,172,'pyre_page_title_mobile_height',''),(2636,172,'pyre_page_title_bar_bg_color',''),(2637,172,'pyre_page_title_bar_borders_color',''),(2638,172,'pyre_page_title_bar_bg',''),(2639,172,'pyre_page_title_bar_bg_id',''),(2640,172,'pyre_page_title_bar_bg_retina',''),(2641,172,'pyre_page_title_bar_bg_retina_id',''),(2642,172,'pyre_page_title_bar_bg_full','default'),(2643,172,'pyre_page_title_bg_parallax','default'),(2644,172,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(2645,172,'fusion_builder_status','active'),(2646,172,'kd_featured-image-2_page_id',''),(2647,172,'kd_featured-image-3_page_id',''),(2648,172,'kd_featured-image-4_page_id',''),(2649,172,'kd_featured-image-5_page_id',''),(3656,178,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3657,178,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(3658,178,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3659,178,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(3680,172,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3681,172,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(3682,172,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3683,172,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(3724,179,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3725,179,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(3726,179,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3727,179,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(3732,176,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3733,176,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(3734,176,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3735,176,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(3740,174,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(3741,174,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(3742,174,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(3743,174,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(3754,450,'_fusion_is_global','yes'),(3755,455,'_fusion_is_global','yes'),(3756,470,'_fusion_is_global','yes'),(3757,479,'_fusion_is_global','yes'),(3758,479,'_edit_lock','1557436643:1'),(3759,503,'_fusion_is_global','yes'),(3760,506,'_fusion_is_global','yes'),(3761,513,'_fusion_is_global','yes'),(3762,516,'_fusion_is_global','yes'),(3765,522,'_fusion_is_global','yes'),(3766,527,'_fusion_is_global','yes'),(3767,532,'_fusion_is_global','yes'),(3768,537,'_fusion_is_global','yes'),(3769,542,'_fusion_is_global','yes'),(3772,548,'_fusion_is_global','yes'),(3773,553,'_fusion_is_global','yes'),(3782,532,'pyre_slider_type','flex'),(3783,532,'pyre_slider','0'),(3784,532,'pyre_wooslider','homepage'),(3785,532,'pyre_revslider','0'),(3786,532,'pyre_elasticslider','0'),(3787,532,'pyre_slider_position','default'),(3788,532,'pyre_avada_rev_styles','default'),(3789,532,'pyre_fallback',''),(3790,532,'pyre_fallback_id',''),(3791,532,'pyre_demo_slider',''),(3792,532,'pyre_main_top_padding','0px'),(3793,532,'pyre_main_bottom_padding','0px'),(3794,532,'pyre_hundredp_padding',''),(3795,532,'pyre_show_first_featured_image','no'),(3796,532,'pyre_display_header','yes'),(3797,532,'pyre_header_100_width','default'),(3798,532,'pyre_combined_header_bg_color',''),(3799,532,'pyre_mobile_header_bg_color',''),(3800,532,'pyre_header_bg',''),(3801,532,'pyre_header_bg_id',''),(3802,532,'pyre_header_bg_full','no'),(3803,532,'pyre_header_bg_repeat','repeat'),(3804,532,'pyre_displayed_menu','default'),(3805,532,'pyre_display_footer','default'),(3806,532,'pyre_display_copyright','default'),(3807,532,'pyre_footer_100_width','default'),(3808,532,'pyre_sidebar_position','default'),(3809,532,'pyre_responsive_sidebar_order',''),(3810,532,'pyre_sidebar_sticky','default'),(3811,532,'pyre_sidebar_bg_color',''),(3812,532,'pyre_page_bg_layout','default'),(3813,532,'pyre_page_bg_color',''),(3814,532,'pyre_page_bg',''),(3815,532,'pyre_page_bg_id',''),(3816,532,'pyre_page_bg_full','default'),(3817,532,'pyre_page_bg_repeat','default'),(3818,532,'pyre_wide_page_bg_color',''),(3819,532,'pyre_wide_page_bg',''),(3820,532,'pyre_wide_page_bg_id',''),(3821,532,'pyre_wide_page_bg_full','default'),(3822,532,'pyre_wide_page_bg_repeat','default'),(3823,532,'pyre_page_title','no'),(3824,532,'pyre_page_title_breadcrumbs_search_bar','default'),(3825,532,'pyre_page_title_text','default'),(3826,532,'pyre_page_title_text_alignment','default'),(3827,532,'pyre_page_title_custom_text',''),(3828,532,'pyre_page_title_text_size',''),(3829,532,'pyre_page_title_line_height',''),(3830,532,'pyre_page_title_font_color',''),(3831,532,'pyre_page_title_custom_subheader',''),(3832,532,'pyre_page_title_custom_subheader_text_size',''),(3833,532,'pyre_page_title_subheader_font_color',''),(3834,532,'pyre_page_title_100_width','default'),(3835,532,'pyre_page_title_height',''),(3836,532,'pyre_page_title_mobile_height',''),(3837,532,'pyre_page_title_bar_bg_color',''),(3838,532,'pyre_page_title_bar_borders_color',''),(3839,532,'pyre_page_title_bar_bg',''),(3840,532,'pyre_page_title_bar_bg_id',''),(3841,532,'pyre_page_title_bar_bg_retina',''),(3842,532,'pyre_page_title_bar_bg_retina_id',''),(3843,532,'pyre_page_title_bar_bg_full','default'),(3844,532,'pyre_page_title_bg_parallax','default'),(3845,532,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(3846,532,'fusion_builder_status','active'),(3847,532,'kd_featured-image-2_page_id',''),(3848,532,'kd_featured-image-3_page_id',''),(3849,532,'kd_featured-image-4_page_id',''),(3850,532,'kd_featured-image-5_page_id',''),(3863,527,'pyre_slider_type','flex'),(3864,527,'pyre_slider','0'),(3865,527,'pyre_wooslider','homepage'),(3866,527,'pyre_revslider','0'),(3867,527,'pyre_elasticslider','0'),(3868,527,'pyre_slider_position','default'),(3869,527,'pyre_avada_rev_styles','default'),(3870,527,'pyre_fallback',''),(3871,527,'pyre_fallback_id',''),(3872,527,'pyre_demo_slider',''),(3873,527,'pyre_main_top_padding','0px'),(3874,527,'pyre_main_bottom_padding','0px'),(3875,527,'pyre_hundredp_padding',''),(3876,527,'pyre_show_first_featured_image','no'),(3877,527,'pyre_display_header','yes'),(3878,527,'pyre_header_100_width','default'),(3879,527,'pyre_combined_header_bg_color',''),(3880,527,'pyre_mobile_header_bg_color',''),(3881,527,'pyre_header_bg',''),(3882,527,'pyre_header_bg_id',''),(3883,527,'pyre_header_bg_full','no'),(3884,527,'pyre_header_bg_repeat','repeat'),(3885,527,'pyre_displayed_menu','default'),(3886,527,'pyre_display_footer','default'),(3887,527,'pyre_display_copyright','default'),(3888,527,'pyre_footer_100_width','default'),(3889,527,'pyre_sidebar_position','default'),(3890,527,'pyre_responsive_sidebar_order',''),(3891,527,'pyre_sidebar_sticky','default'),(3892,527,'pyre_sidebar_bg_color',''),(3893,527,'pyre_page_bg_layout','default'),(3894,527,'pyre_page_bg_color',''),(3895,527,'pyre_page_bg',''),(3896,527,'pyre_page_bg_id',''),(3897,527,'pyre_page_bg_full','default'),(3898,527,'pyre_page_bg_repeat','default'),(3899,527,'pyre_wide_page_bg_color',''),(3900,527,'pyre_wide_page_bg',''),(3901,527,'pyre_wide_page_bg_id',''),(3902,527,'pyre_wide_page_bg_full','default'),(3903,527,'pyre_wide_page_bg_repeat','default'),(3904,527,'pyre_page_title','no'),(3905,527,'pyre_page_title_breadcrumbs_search_bar','default'),(3906,527,'pyre_page_title_text','default'),(3907,527,'pyre_page_title_text_alignment','default'),(3908,527,'pyre_page_title_custom_text',''),(3909,527,'pyre_page_title_text_size',''),(3910,527,'pyre_page_title_line_height',''),(3911,527,'pyre_page_title_font_color',''),(3912,527,'pyre_page_title_custom_subheader',''),(3913,527,'pyre_page_title_custom_subheader_text_size',''),(3914,527,'pyre_page_title_subheader_font_color',''),(3915,527,'pyre_page_title_100_width','default'),(3916,527,'pyre_page_title_height',''),(3917,527,'pyre_page_title_mobile_height',''),(3918,527,'pyre_page_title_bar_bg_color',''),(3919,527,'pyre_page_title_bar_borders_color',''),(3920,527,'pyre_page_title_bar_bg',''),(3921,527,'pyre_page_title_bar_bg_id',''),(3922,527,'pyre_page_title_bar_bg_retina',''),(3923,527,'pyre_page_title_bar_bg_retina_id',''),(3924,527,'pyre_page_title_bar_bg_full','default'),(3925,527,'pyre_page_title_bg_parallax','default'),(3926,527,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(3927,527,'fusion_builder_status','active'),(3928,527,'kd_featured-image-2_page_id',''),(3929,527,'kd_featured-image-3_page_id',''),(3930,527,'kd_featured-image-4_page_id',''),(3931,527,'kd_featured-image-5_page_id',''),(3944,506,'pyre_slider_type','flex'),(3945,506,'pyre_slider','0'),(3946,506,'pyre_wooslider','homepage'),(3947,506,'pyre_revslider','0'),(3948,506,'pyre_elasticslider','0'),(3949,506,'pyre_slider_position','default'),(3950,506,'pyre_avada_rev_styles','default'),(3951,506,'pyre_fallback',''),(3952,506,'pyre_fallback_id',''),(3953,506,'pyre_demo_slider',''),(3954,506,'pyre_main_top_padding','0px'),(3955,506,'pyre_main_bottom_padding','0px'),(3956,506,'pyre_hundredp_padding',''),(3957,506,'pyre_show_first_featured_image','no'),(3958,506,'pyre_display_header','yes'),(3959,506,'pyre_header_100_width','default'),(3960,506,'pyre_combined_header_bg_color',''),(3961,506,'pyre_mobile_header_bg_color',''),(3962,506,'pyre_header_bg',''),(3963,506,'pyre_header_bg_id',''),(3964,506,'pyre_header_bg_full','no'),(3965,506,'pyre_header_bg_repeat','repeat'),(3966,506,'pyre_displayed_menu','default'),(3967,506,'pyre_display_footer','default'),(3968,506,'pyre_display_copyright','default'),(3969,506,'pyre_footer_100_width','default'),(3970,506,'pyre_sidebar_position','default'),(3971,506,'pyre_responsive_sidebar_order',''),(3972,506,'pyre_sidebar_sticky','default'),(3973,506,'pyre_sidebar_bg_color',''),(3974,506,'pyre_page_bg_layout','default'),(3975,506,'pyre_page_bg_color',''),(3976,506,'pyre_page_bg',''),(3977,506,'pyre_page_bg_id',''),(3978,506,'pyre_page_bg_full','default'),(3979,506,'pyre_page_bg_repeat','default'),(3980,506,'pyre_wide_page_bg_color',''),(3981,506,'pyre_wide_page_bg',''),(3982,506,'pyre_wide_page_bg_id',''),(3983,506,'pyre_wide_page_bg_full','default'),(3984,506,'pyre_wide_page_bg_repeat','default'),(3985,506,'pyre_page_title','no'),(3986,506,'pyre_page_title_breadcrumbs_search_bar','default'),(3987,506,'pyre_page_title_text','default'),(3988,506,'pyre_page_title_text_alignment','default'),(3989,506,'pyre_page_title_custom_text',''),(3990,506,'pyre_page_title_text_size',''),(3991,506,'pyre_page_title_line_height',''),(3992,506,'pyre_page_title_font_color',''),(3993,506,'pyre_page_title_custom_subheader',''),(3994,506,'pyre_page_title_custom_subheader_text_size',''),(3995,506,'pyre_page_title_subheader_font_color',''),(3996,506,'pyre_page_title_100_width','default'),(3997,506,'pyre_page_title_height',''),(3998,506,'pyre_page_title_mobile_height',''),(3999,506,'pyre_page_title_bar_bg_color',''),(4000,506,'pyre_page_title_bar_borders_color',''),(4001,506,'pyre_page_title_bar_bg',''),(4002,506,'pyre_page_title_bar_bg_id',''),(4003,506,'pyre_page_title_bar_bg_retina',''),(4004,506,'pyre_page_title_bar_bg_retina_id',''),(4005,506,'pyre_page_title_bar_bg_full','default'),(4006,506,'pyre_page_title_bg_parallax','default'),(4007,506,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(4008,506,'fusion_builder_status','active'),(4009,506,'kd_featured-image-2_page_id',''),(4010,506,'kd_featured-image-3_page_id',''),(4011,506,'kd_featured-image-4_page_id',''),(4012,506,'kd_featured-image-5_page_id',''),(4025,503,'pyre_slider_type','flex'),(4026,503,'pyre_slider','0'),(4027,503,'pyre_wooslider','homepage'),(4028,503,'pyre_revslider','0'),(4029,503,'pyre_elasticslider','0'),(4030,503,'pyre_slider_position','default'),(4031,503,'pyre_avada_rev_styles','default'),(4032,503,'pyre_fallback',''),(4033,503,'pyre_fallback_id',''),(4034,503,'pyre_demo_slider',''),(4035,503,'pyre_main_top_padding','0px'),(4036,503,'pyre_main_bottom_padding','0px'),(4037,503,'pyre_hundredp_padding',''),(4038,503,'pyre_show_first_featured_image','no'),(4039,503,'pyre_display_header','yes'),(4040,503,'pyre_header_100_width','default'),(4041,503,'pyre_combined_header_bg_color',''),(4042,503,'pyre_mobile_header_bg_color',''),(4043,503,'pyre_header_bg',''),(4044,503,'pyre_header_bg_id',''),(4045,503,'pyre_header_bg_full','no'),(4046,503,'pyre_header_bg_repeat','repeat'),(4047,503,'pyre_displayed_menu','default'),(4048,503,'pyre_display_footer','default'),(4049,503,'pyre_display_copyright','default'),(4050,503,'pyre_footer_100_width','default'),(4051,503,'pyre_sidebar_position','default'),(4052,503,'pyre_responsive_sidebar_order',''),(4053,503,'pyre_sidebar_sticky','default'),(4054,503,'pyre_sidebar_bg_color',''),(4055,503,'pyre_page_bg_layout','default'),(4056,503,'pyre_page_bg_color',''),(4057,503,'pyre_page_bg',''),(4058,503,'pyre_page_bg_id',''),(4059,503,'pyre_page_bg_full','default'),(4060,503,'pyre_page_bg_repeat','default'),(4061,503,'pyre_wide_page_bg_color',''),(4062,503,'pyre_wide_page_bg',''),(4063,503,'pyre_wide_page_bg_id',''),(4064,503,'pyre_wide_page_bg_full','default'),(4065,503,'pyre_wide_page_bg_repeat','default'),(4066,503,'pyre_page_title','no'),(4067,503,'pyre_page_title_breadcrumbs_search_bar','default'),(4068,503,'pyre_page_title_text','default'),(4069,503,'pyre_page_title_text_alignment','default'),(4070,503,'pyre_page_title_custom_text',''),(4071,503,'pyre_page_title_text_size',''),(4072,503,'pyre_page_title_line_height',''),(4073,503,'pyre_page_title_font_color',''),(4074,503,'pyre_page_title_custom_subheader',''),(4075,503,'pyre_page_title_custom_subheader_text_size',''),(4076,503,'pyre_page_title_subheader_font_color',''),(4077,503,'pyre_page_title_100_width','default'),(4078,503,'pyre_page_title_height',''),(4079,503,'pyre_page_title_mobile_height',''),(4080,503,'pyre_page_title_bar_bg_color',''),(4081,503,'pyre_page_title_bar_borders_color',''),(4082,503,'pyre_page_title_bar_bg',''),(4083,503,'pyre_page_title_bar_bg_id',''),(4084,503,'pyre_page_title_bar_bg_retina',''),(4085,503,'pyre_page_title_bar_bg_retina_id',''),(4086,503,'pyre_page_title_bar_bg_full','default'),(4087,503,'pyre_page_title_bg_parallax','default'),(4088,503,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(4089,503,'fusion_builder_status','active'),(4090,503,'kd_featured-image-2_page_id',''),(4091,503,'kd_featured-image-3_page_id',''),(4092,503,'kd_featured-image-4_page_id',''),(4093,503,'kd_featured-image-5_page_id',''),(4106,542,'pyre_slider_type','flex'),(4107,542,'pyre_slider','0'),(4108,542,'pyre_wooslider','homepage'),(4109,542,'pyre_revslider','0'),(4110,542,'pyre_elasticslider','0'),(4111,542,'pyre_slider_position','default'),(4112,542,'pyre_avada_rev_styles','default'),(4113,542,'pyre_fallback',''),(4114,542,'pyre_fallback_id',''),(4115,542,'pyre_demo_slider',''),(4116,542,'pyre_main_top_padding','0px'),(4117,542,'pyre_main_bottom_padding','0px'),(4118,542,'pyre_hundredp_padding',''),(4119,542,'pyre_show_first_featured_image','no'),(4120,542,'pyre_display_header','yes'),(4121,542,'pyre_header_100_width','default'),(4122,542,'pyre_combined_header_bg_color',''),(4123,542,'pyre_mobile_header_bg_color',''),(4124,542,'pyre_header_bg',''),(4125,542,'pyre_header_bg_id',''),(4126,542,'pyre_header_bg_full','no'),(4127,542,'pyre_header_bg_repeat','repeat'),(4128,542,'pyre_displayed_menu','default'),(4129,542,'pyre_display_footer','default'),(4130,542,'pyre_display_copyright','default'),(4131,542,'pyre_footer_100_width','default'),(4132,542,'pyre_sidebar_position','default'),(4133,542,'pyre_responsive_sidebar_order',''),(4134,542,'pyre_sidebar_sticky','default'),(4135,542,'pyre_sidebar_bg_color',''),(4136,542,'pyre_page_bg_layout','default'),(4137,542,'pyre_page_bg_color',''),(4138,542,'pyre_page_bg',''),(4139,542,'pyre_page_bg_id',''),(4140,542,'pyre_page_bg_full','default'),(4141,542,'pyre_page_bg_repeat','default'),(4142,542,'pyre_wide_page_bg_color',''),(4143,542,'pyre_wide_page_bg',''),(4144,542,'pyre_wide_page_bg_id',''),(4145,542,'pyre_wide_page_bg_full','default'),(4146,542,'pyre_wide_page_bg_repeat','default'),(4147,542,'pyre_page_title','no'),(4148,542,'pyre_page_title_breadcrumbs_search_bar','default'),(4149,542,'pyre_page_title_text','default'),(4150,542,'pyre_page_title_text_alignment','default'),(4151,542,'pyre_page_title_custom_text',''),(4152,542,'pyre_page_title_text_size',''),(4153,542,'pyre_page_title_line_height',''),(4154,542,'pyre_page_title_font_color',''),(4155,542,'pyre_page_title_custom_subheader',''),(4156,542,'pyre_page_title_custom_subheader_text_size',''),(4157,542,'pyre_page_title_subheader_font_color',''),(4158,542,'pyre_page_title_100_width','default'),(4159,542,'pyre_page_title_height',''),(4160,542,'pyre_page_title_mobile_height',''),(4161,542,'pyre_page_title_bar_bg_color',''),(4162,542,'pyre_page_title_bar_borders_color',''),(4163,542,'pyre_page_title_bar_bg',''),(4164,542,'pyre_page_title_bar_bg_id',''),(4165,542,'pyre_page_title_bar_bg_retina',''),(4166,542,'pyre_page_title_bar_bg_retina_id',''),(4167,542,'pyre_page_title_bar_bg_full','default'),(4168,542,'pyre_page_title_bg_parallax','default'),(4169,542,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(4170,542,'fusion_builder_status','active'),(4171,542,'kd_featured-image-2_page_id',''),(4172,542,'kd_featured-image-3_page_id',''),(4173,542,'kd_featured-image-4_page_id',''),(4174,542,'kd_featured-image-5_page_id',''),(4187,537,'pyre_slider_type','flex'),(4188,537,'pyre_slider','0'),(4189,537,'pyre_wooslider','homepage'),(4190,537,'pyre_revslider','0'),(4191,537,'pyre_elasticslider','0'),(4192,537,'pyre_slider_position','default'),(4193,537,'pyre_avada_rev_styles','default'),(4194,537,'pyre_fallback',''),(4195,537,'pyre_fallback_id',''),(4196,537,'pyre_demo_slider',''),(4197,537,'pyre_main_top_padding','0px'),(4198,537,'pyre_main_bottom_padding','0px'),(4199,537,'pyre_hundredp_padding',''),(4200,537,'pyre_show_first_featured_image','no'),(4201,537,'pyre_display_header','yes'),(4202,537,'pyre_header_100_width','default'),(4203,537,'pyre_combined_header_bg_color',''),(4204,537,'pyre_mobile_header_bg_color',''),(4205,537,'pyre_header_bg',''),(4206,537,'pyre_header_bg_id',''),(4207,537,'pyre_header_bg_full','no'),(4208,537,'pyre_header_bg_repeat','repeat'),(4209,537,'pyre_displayed_menu','default'),(4210,537,'pyre_display_footer','default'),(4211,537,'pyre_display_copyright','default'),(4212,537,'pyre_footer_100_width','default'),(4213,537,'pyre_sidebar_position','default'),(4214,537,'pyre_responsive_sidebar_order',''),(4215,537,'pyre_sidebar_sticky','default'),(4216,537,'pyre_sidebar_bg_color',''),(4217,537,'pyre_page_bg_layout','default'),(4218,537,'pyre_page_bg_color',''),(4219,537,'pyre_page_bg',''),(4220,537,'pyre_page_bg_id',''),(4221,537,'pyre_page_bg_full','default'),(4222,537,'pyre_page_bg_repeat','default'),(4223,537,'pyre_wide_page_bg_color',''),(4224,537,'pyre_wide_page_bg',''),(4225,537,'pyre_wide_page_bg_id',''),(4226,537,'pyre_wide_page_bg_full','default'),(4227,537,'pyre_wide_page_bg_repeat','default'),(4228,537,'pyre_page_title','no'),(4229,537,'pyre_page_title_breadcrumbs_search_bar','default'),(4230,537,'pyre_page_title_text','default'),(4231,537,'pyre_page_title_text_alignment','default'),(4232,537,'pyre_page_title_custom_text',''),(4233,537,'pyre_page_title_text_size',''),(4234,537,'pyre_page_title_line_height',''),(4235,537,'pyre_page_title_font_color',''),(4236,537,'pyre_page_title_custom_subheader',''),(4237,537,'pyre_page_title_custom_subheader_text_size',''),(4238,537,'pyre_page_title_subheader_font_color',''),(4239,537,'pyre_page_title_100_width','default'),(4240,537,'pyre_page_title_height',''),(4241,537,'pyre_page_title_mobile_height',''),(4242,537,'pyre_page_title_bar_bg_color',''),(4243,537,'pyre_page_title_bar_borders_color',''),(4244,537,'pyre_page_title_bar_bg',''),(4245,537,'pyre_page_title_bar_bg_id',''),(4246,537,'pyre_page_title_bar_bg_retina',''),(4247,537,'pyre_page_title_bar_bg_retina_id',''),(4248,537,'pyre_page_title_bar_bg_full','default'),(4249,537,'pyre_page_title_bg_parallax','default'),(4250,537,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(4251,537,'fusion_builder_status','active'),(4252,537,'kd_featured-image-2_page_id',''),(4253,537,'kd_featured-image-3_page_id',''),(4254,537,'kd_featured-image-4_page_id',''),(4255,537,'kd_featured-image-5_page_id',''),(4268,553,'pyre_slider_type','flex'),(4269,553,'pyre_slider','0'),(4270,553,'pyre_wooslider','homepage'),(4271,553,'pyre_revslider','0'),(4272,553,'pyre_elasticslider','0'),(4273,553,'pyre_slider_position','default'),(4274,553,'pyre_avada_rev_styles','default'),(4275,553,'pyre_fallback',''),(4276,553,'pyre_fallback_id',''),(4277,553,'pyre_demo_slider',''),(4278,553,'pyre_main_top_padding','0px'),(4279,553,'pyre_main_bottom_padding','0px'),(4280,553,'pyre_hundredp_padding',''),(4281,553,'pyre_show_first_featured_image','no'),(4282,553,'pyre_display_header','yes'),(4283,553,'pyre_header_100_width','default'),(4284,553,'pyre_combined_header_bg_color',''),(4285,553,'pyre_mobile_header_bg_color',''),(4286,553,'pyre_header_bg',''),(4287,553,'pyre_header_bg_id',''),(4288,553,'pyre_header_bg_full','no'),(4289,553,'pyre_header_bg_repeat','repeat'),(4290,553,'pyre_displayed_menu','default'),(4291,553,'pyre_display_footer','default'),(4292,553,'pyre_display_copyright','default'),(4293,553,'pyre_footer_100_width','default'),(4294,553,'pyre_sidebar_position','default'),(4295,553,'pyre_responsive_sidebar_order',''),(4296,553,'pyre_sidebar_sticky','default'),(4297,553,'pyre_sidebar_bg_color',''),(4298,553,'pyre_page_bg_layout','default'),(4299,553,'pyre_page_bg_color',''),(4300,553,'pyre_page_bg',''),(4301,553,'pyre_page_bg_id',''),(4302,553,'pyre_page_bg_full','default'),(4303,553,'pyre_page_bg_repeat','default'),(4304,553,'pyre_wide_page_bg_color',''),(4305,553,'pyre_wide_page_bg',''),(4306,553,'pyre_wide_page_bg_id',''),(4307,553,'pyre_wide_page_bg_full','default'),(4308,553,'pyre_wide_page_bg_repeat','default'),(4309,553,'pyre_page_title','no'),(4310,553,'pyre_page_title_breadcrumbs_search_bar','default'),(4311,553,'pyre_page_title_text','default'),(4312,553,'pyre_page_title_text_alignment','default'),(4313,553,'pyre_page_title_custom_text',''),(4314,553,'pyre_page_title_text_size',''),(4315,553,'pyre_page_title_line_height',''),(4316,553,'pyre_page_title_font_color',''),(4317,553,'pyre_page_title_custom_subheader',''),(4318,553,'pyre_page_title_custom_subheader_text_size',''),(4319,553,'pyre_page_title_subheader_font_color',''),(4320,553,'pyre_page_title_100_width','default'),(4321,553,'pyre_page_title_height',''),(4322,553,'pyre_page_title_mobile_height',''),(4323,553,'pyre_page_title_bar_bg_color',''),(4324,553,'pyre_page_title_bar_borders_color',''),(4325,553,'pyre_page_title_bar_bg',''),(4326,553,'pyre_page_title_bar_bg_id',''),(4327,553,'pyre_page_title_bar_bg_retina',''),(4328,553,'pyre_page_title_bar_bg_retina_id',''),(4329,553,'pyre_page_title_bar_bg_full','default'),(4330,553,'pyre_page_title_bg_parallax','default'),(4331,553,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(4332,553,'fusion_builder_status','active'),(4333,553,'kd_featured-image-2_page_id',''),(4334,553,'kd_featured-image-3_page_id',''),(4335,553,'kd_featured-image-4_page_id',''),(4336,553,'kd_featured-image-5_page_id',''),(4349,522,'pyre_slider_type','flex'),(4350,522,'pyre_slider','0'),(4351,522,'pyre_wooslider','homepage'),(4352,522,'pyre_revslider','0'),(4353,522,'pyre_elasticslider','0'),(4354,522,'pyre_slider_position','default'),(4355,522,'pyre_avada_rev_styles','default'),(4356,522,'pyre_fallback',''),(4357,522,'pyre_fallback_id',''),(4358,522,'pyre_demo_slider',''),(4359,522,'pyre_main_top_padding','0px'),(4360,522,'pyre_main_bottom_padding','0px'),(4361,522,'pyre_hundredp_padding',''),(4362,522,'pyre_show_first_featured_image','no'),(4363,522,'pyre_display_header','yes'),(4364,522,'pyre_header_100_width','default'),(4365,522,'pyre_combined_header_bg_color',''),(4366,522,'pyre_mobile_header_bg_color',''),(4367,522,'pyre_header_bg',''),(4368,522,'pyre_header_bg_id',''),(4369,522,'pyre_header_bg_full','no'),(4370,522,'pyre_header_bg_repeat','repeat'),(4371,522,'pyre_displayed_menu','default'),(4372,522,'pyre_display_footer','default'),(4373,522,'pyre_display_copyright','default'),(4374,522,'pyre_footer_100_width','default'),(4375,522,'pyre_sidebar_position','default'),(4376,522,'pyre_responsive_sidebar_order',''),(4377,522,'pyre_sidebar_sticky','default'),(4378,522,'pyre_sidebar_bg_color',''),(4379,522,'pyre_page_bg_layout','default'),(4380,522,'pyre_page_bg_color',''),(4381,522,'pyre_page_bg',''),(4382,522,'pyre_page_bg_id',''),(4383,522,'pyre_page_bg_full','default'),(4384,522,'pyre_page_bg_repeat','default'),(4385,522,'pyre_wide_page_bg_color',''),(4386,522,'pyre_wide_page_bg',''),(4387,522,'pyre_wide_page_bg_id',''),(4388,522,'pyre_wide_page_bg_full','default'),(4389,522,'pyre_wide_page_bg_repeat','default'),(4390,522,'pyre_page_title','no'),(4391,522,'pyre_page_title_breadcrumbs_search_bar','default'),(4392,522,'pyre_page_title_text','default'),(4393,522,'pyre_page_title_text_alignment','default'),(4394,522,'pyre_page_title_custom_text',''),(4395,522,'pyre_page_title_text_size',''),(4396,522,'pyre_page_title_line_height',''),(4397,522,'pyre_page_title_font_color',''),(4398,522,'pyre_page_title_custom_subheader',''),(4399,522,'pyre_page_title_custom_subheader_text_size',''),(4400,522,'pyre_page_title_subheader_font_color',''),(4401,522,'pyre_page_title_100_width','default'),(4402,522,'pyre_page_title_height',''),(4403,522,'pyre_page_title_mobile_height',''),(4404,522,'pyre_page_title_bar_bg_color',''),(4405,522,'pyre_page_title_bar_borders_color',''),(4406,522,'pyre_page_title_bar_bg',''),(4407,522,'pyre_page_title_bar_bg_id',''),(4408,522,'pyre_page_title_bar_bg_retina',''),(4409,522,'pyre_page_title_bar_bg_retina_id',''),(4410,522,'pyre_page_title_bar_bg_full','default'),(4411,522,'pyre_page_title_bg_parallax','default'),(4412,522,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(4413,522,'fusion_builder_status','active'),(4414,522,'kd_featured-image-2_page_id',''),(4415,522,'kd_featured-image-3_page_id',''),(4416,522,'kd_featured-image-4_page_id',''),(4417,522,'kd_featured-image-5_page_id',''),(4430,548,'pyre_slider_type','flex'),(4431,548,'pyre_slider','0'),(4432,548,'pyre_wooslider','homepage'),(4433,548,'pyre_revslider','0'),(4434,548,'pyre_elasticslider','0'),(4435,548,'pyre_slider_position','default'),(4436,548,'pyre_avada_rev_styles','default'),(4437,548,'pyre_fallback',''),(4438,548,'pyre_fallback_id',''),(4439,548,'pyre_demo_slider',''),(4440,548,'pyre_main_top_padding','0px'),(4441,548,'pyre_main_bottom_padding','0px'),(4442,548,'pyre_hundredp_padding',''),(4443,548,'pyre_show_first_featured_image','no'),(4444,548,'pyre_display_header','yes'),(4445,548,'pyre_header_100_width','default'),(4446,548,'pyre_combined_header_bg_color',''),(4447,548,'pyre_mobile_header_bg_color',''),(4448,548,'pyre_header_bg',''),(4449,548,'pyre_header_bg_id',''),(4450,548,'pyre_header_bg_full','no'),(4451,548,'pyre_header_bg_repeat','repeat'),(4452,548,'pyre_displayed_menu','default'),(4453,548,'pyre_display_footer','default'),(4454,548,'pyre_display_copyright','default'),(4455,548,'pyre_footer_100_width','default'),(4456,548,'pyre_sidebar_position','default'),(4457,548,'pyre_responsive_sidebar_order',''),(4458,548,'pyre_sidebar_sticky','default'),(4459,548,'pyre_sidebar_bg_color',''),(4460,548,'pyre_page_bg_layout','default'),(4461,548,'pyre_page_bg_color',''),(4462,548,'pyre_page_bg',''),(4463,548,'pyre_page_bg_id',''),(4464,548,'pyre_page_bg_full','default'),(4465,548,'pyre_page_bg_repeat','default'),(4466,548,'pyre_wide_page_bg_color',''),(4467,548,'pyre_wide_page_bg',''),(4468,548,'pyre_wide_page_bg_id',''),(4469,548,'pyre_wide_page_bg_full','default'),(4470,548,'pyre_wide_page_bg_repeat','default'),(4471,548,'pyre_page_title','no'),(4472,548,'pyre_page_title_breadcrumbs_search_bar','default'),(4473,548,'pyre_page_title_text','default'),(4474,548,'pyre_page_title_text_alignment','default'),(4475,548,'pyre_page_title_custom_text',''),(4476,548,'pyre_page_title_text_size',''),(4477,548,'pyre_page_title_line_height',''),(4478,548,'pyre_page_title_font_color',''),(4479,548,'pyre_page_title_custom_subheader',''),(4480,548,'pyre_page_title_custom_subheader_text_size',''),(4481,548,'pyre_page_title_subheader_font_color',''),(4482,548,'pyre_page_title_100_width','default'),(4483,548,'pyre_page_title_height',''),(4484,548,'pyre_page_title_mobile_height',''),(4485,548,'pyre_page_title_bar_bg_color',''),(4486,548,'pyre_page_title_bar_borders_color',''),(4487,548,'pyre_page_title_bar_bg',''),(4488,548,'pyre_page_title_bar_bg_id',''),(4489,548,'pyre_page_title_bar_bg_retina',''),(4490,548,'pyre_page_title_bar_bg_retina_id',''),(4491,548,'pyre_page_title_bar_bg_full','default'),(4492,548,'pyre_page_title_bg_parallax','default'),(4493,548,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(4494,548,'fusion_builder_status','active'),(4495,548,'kd_featured-image-2_page_id',''),(4496,548,'kd_featured-image-3_page_id',''),(4497,548,'kd_featured-image-4_page_id',''),(4498,548,'kd_featured-image-5_page_id',''),(4511,516,'pyre_slider_type','flex'),(4512,516,'pyre_slider','0'),(4513,516,'pyre_wooslider','homepage'),(4514,516,'pyre_revslider','0'),(4515,516,'pyre_elasticslider','0'),(4516,516,'pyre_slider_position','default'),(4517,516,'pyre_avada_rev_styles','default'),(4518,516,'pyre_fallback',''),(4519,516,'pyre_fallback_id',''),(4520,516,'pyre_demo_slider',''),(4521,516,'pyre_main_top_padding','0px'),(4522,516,'pyre_main_bottom_padding','0px'),(4523,516,'pyre_hundredp_padding',''),(4524,516,'pyre_show_first_featured_image','no'),(4525,516,'pyre_display_header','yes'),(4526,516,'pyre_header_100_width','default'),(4527,516,'pyre_combined_header_bg_color',''),(4528,516,'pyre_mobile_header_bg_color',''),(4529,516,'pyre_header_bg',''),(4530,516,'pyre_header_bg_id',''),(4531,516,'pyre_header_bg_full','no'),(4532,516,'pyre_header_bg_repeat','repeat'),(4533,516,'pyre_displayed_menu','default'),(4534,516,'pyre_display_footer','default'),(4535,516,'pyre_display_copyright','default'),(4536,516,'pyre_footer_100_width','default'),(4537,516,'pyre_sidebar_position','default'),(4538,516,'pyre_responsive_sidebar_order',''),(4539,516,'pyre_sidebar_sticky','default'),(4540,516,'pyre_sidebar_bg_color',''),(4541,516,'pyre_page_bg_layout','default'),(4542,516,'pyre_page_bg_color',''),(4543,516,'pyre_page_bg',''),(4544,516,'pyre_page_bg_id',''),(4545,516,'pyre_page_bg_full','default'),(4546,516,'pyre_page_bg_repeat','default'),(4547,516,'pyre_wide_page_bg_color',''),(4548,516,'pyre_wide_page_bg',''),(4549,516,'pyre_wide_page_bg_id',''),(4550,516,'pyre_wide_page_bg_full','default'),(4551,516,'pyre_wide_page_bg_repeat','default'),(4552,516,'pyre_page_title','no'),(4553,516,'pyre_page_title_breadcrumbs_search_bar','default'),(4554,516,'pyre_page_title_text','default'),(4555,516,'pyre_page_title_text_alignment','default'),(4556,516,'pyre_page_title_custom_text',''),(4557,516,'pyre_page_title_text_size',''),(4558,516,'pyre_page_title_line_height',''),(4559,516,'pyre_page_title_font_color',''),(4560,516,'pyre_page_title_custom_subheader',''),(4561,516,'pyre_page_title_custom_subheader_text_size',''),(4562,516,'pyre_page_title_subheader_font_color',''),(4563,516,'pyre_page_title_100_width','default'),(4564,516,'pyre_page_title_height',''),(4565,516,'pyre_page_title_mobile_height',''),(4566,516,'pyre_page_title_bar_bg_color',''),(4567,516,'pyre_page_title_bar_borders_color',''),(4568,516,'pyre_page_title_bar_bg',''),(4569,516,'pyre_page_title_bar_bg_id',''),(4570,516,'pyre_page_title_bar_bg_retina',''),(4571,516,'pyre_page_title_bar_bg_retina_id',''),(4572,516,'pyre_page_title_bar_bg_full','default'),(4573,516,'pyre_page_title_bg_parallax','default'),(4574,516,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(4575,516,'fusion_builder_status','active'),(4576,516,'kd_featured-image-2_page_id',''),(4577,516,'kd_featured-image-3_page_id',''),(4578,516,'kd_featured-image-4_page_id',''),(4579,516,'kd_featured-image-5_page_id',''),(4592,455,'pyre_slider_type','flex'),(4593,455,'pyre_slider','0'),(4594,455,'pyre_wooslider','homepage'),(4595,455,'pyre_revslider','0'),(4596,455,'pyre_elasticslider','0'),(4597,455,'pyre_slider_position','default'),(4598,455,'pyre_avada_rev_styles','default'),(4599,455,'pyre_fallback',''),(4600,455,'pyre_fallback_id',''),(4601,455,'pyre_demo_slider',''),(4602,455,'pyre_main_top_padding','0px'),(4603,455,'pyre_main_bottom_padding','0px'),(4604,455,'pyre_hundredp_padding',''),(4605,455,'pyre_show_first_featured_image','no'),(4606,455,'pyre_display_header','yes'),(4607,455,'pyre_header_100_width','default'),(4608,455,'pyre_combined_header_bg_color',''),(4609,455,'pyre_mobile_header_bg_color',''),(4610,455,'pyre_header_bg',''),(4611,455,'pyre_header_bg_id',''),(4612,455,'pyre_header_bg_full','no'),(4613,455,'pyre_header_bg_repeat','repeat'),(4614,455,'pyre_displayed_menu','default'),(4615,455,'pyre_display_footer','default'),(4616,455,'pyre_display_copyright','default'),(4617,455,'pyre_footer_100_width','default'),(4618,455,'pyre_sidebar_position','default'),(4619,455,'pyre_responsive_sidebar_order',''),(4620,455,'pyre_sidebar_sticky','default'),(4621,455,'pyre_sidebar_bg_color',''),(4622,455,'pyre_page_bg_layout','default'),(4623,455,'pyre_page_bg_color',''),(4624,455,'pyre_page_bg',''),(4625,455,'pyre_page_bg_id',''),(4626,455,'pyre_page_bg_full','default'),(4627,455,'pyre_page_bg_repeat','default'),(4628,455,'pyre_wide_page_bg_color',''),(4629,455,'pyre_wide_page_bg',''),(4630,455,'pyre_wide_page_bg_id',''),(4631,455,'pyre_wide_page_bg_full','default'),(4632,455,'pyre_wide_page_bg_repeat','default'),(4633,455,'pyre_page_title','no'),(4634,455,'pyre_page_title_breadcrumbs_search_bar','default'),(4635,455,'pyre_page_title_text','default'),(4636,455,'pyre_page_title_text_alignment','default'),(4637,455,'pyre_page_title_custom_text',''),(4638,455,'pyre_page_title_text_size',''),(4639,455,'pyre_page_title_line_height',''),(4640,455,'pyre_page_title_font_color',''),(4641,455,'pyre_page_title_custom_subheader',''),(4642,455,'pyre_page_title_custom_subheader_text_size',''),(4643,455,'pyre_page_title_subheader_font_color',''),(4644,455,'pyre_page_title_100_width','default'),(4645,455,'pyre_page_title_height',''),(4646,455,'pyre_page_title_mobile_height',''),(4647,455,'pyre_page_title_bar_bg_color',''),(4648,455,'pyre_page_title_bar_borders_color',''),(4649,455,'pyre_page_title_bar_bg',''),(4650,455,'pyre_page_title_bar_bg_id',''),(4651,455,'pyre_page_title_bar_bg_retina',''),(4652,455,'pyre_page_title_bar_bg_retina_id',''),(4653,455,'pyre_page_title_bar_bg_full','default'),(4654,455,'pyre_page_title_bg_parallax','default'),(4655,455,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(4656,455,'fusion_builder_status','active'),(4657,455,'kd_featured-image-2_page_id',''),(4658,455,'kd_featured-image-3_page_id',''),(4659,455,'kd_featured-image-4_page_id',''),(4660,455,'kd_featured-image-5_page_id',''),(4673,513,'pyre_slider_type','flex'),(4674,513,'pyre_slider','0'),(4675,513,'pyre_wooslider','homepage'),(4676,513,'pyre_revslider','0'),(4677,513,'pyre_elasticslider','0'),(4678,513,'pyre_slider_position','default'),(4679,513,'pyre_avada_rev_styles','default'),(4680,513,'pyre_fallback',''),(4681,513,'pyre_fallback_id',''),(4682,513,'pyre_demo_slider',''),(4683,513,'pyre_main_top_padding','0px'),(4684,513,'pyre_main_bottom_padding','0px'),(4685,513,'pyre_hundredp_padding',''),(4686,513,'pyre_show_first_featured_image','no'),(4687,513,'pyre_display_header','yes'),(4688,513,'pyre_header_100_width','default'),(4689,513,'pyre_combined_header_bg_color',''),(4690,513,'pyre_mobile_header_bg_color',''),(4691,513,'pyre_header_bg',''),(4692,513,'pyre_header_bg_id',''),(4693,513,'pyre_header_bg_full','no'),(4694,513,'pyre_header_bg_repeat','repeat'),(4695,513,'pyre_displayed_menu','default'),(4696,513,'pyre_display_footer','default'),(4697,513,'pyre_display_copyright','default'),(4698,513,'pyre_footer_100_width','default'),(4699,513,'pyre_sidebar_position','default'),(4700,513,'pyre_responsive_sidebar_order',''),(4701,513,'pyre_sidebar_sticky','default'),(4702,513,'pyre_sidebar_bg_color',''),(4703,513,'pyre_page_bg_layout','default'),(4704,513,'pyre_page_bg_color',''),(4705,513,'pyre_page_bg',''),(4706,513,'pyre_page_bg_id',''),(4707,513,'pyre_page_bg_full','default'),(4708,513,'pyre_page_bg_repeat','default'),(4709,513,'pyre_wide_page_bg_color',''),(4710,513,'pyre_wide_page_bg',''),(4711,513,'pyre_wide_page_bg_id',''),(4712,513,'pyre_wide_page_bg_full','default'),(4713,513,'pyre_wide_page_bg_repeat','default'),(4714,513,'pyre_page_title','no'),(4715,513,'pyre_page_title_breadcrumbs_search_bar','default'),(4716,513,'pyre_page_title_text','default'),(4717,513,'pyre_page_title_text_alignment','default'),(4718,513,'pyre_page_title_custom_text',''),(4719,513,'pyre_page_title_text_size',''),(4720,513,'pyre_page_title_line_height',''),(4721,513,'pyre_page_title_font_color',''),(4722,513,'pyre_page_title_custom_subheader',''),(4723,513,'pyre_page_title_custom_subheader_text_size',''),(4724,513,'pyre_page_title_subheader_font_color',''),(4725,513,'pyre_page_title_100_width','default'),(4726,513,'pyre_page_title_height',''),(4727,513,'pyre_page_title_mobile_height',''),(4728,513,'pyre_page_title_bar_bg_color',''),(4729,513,'pyre_page_title_bar_borders_color',''),(4730,513,'pyre_page_title_bar_bg',''),(4731,513,'pyre_page_title_bar_bg_id',''),(4732,513,'pyre_page_title_bar_bg_retina',''),(4733,513,'pyre_page_title_bar_bg_retina_id',''),(4734,513,'pyre_page_title_bar_bg_full','default'),(4735,513,'pyre_page_title_bg_parallax','default'),(4736,513,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(4737,513,'fusion_builder_status','active'),(4738,513,'kd_featured-image-2_page_id',''),(4739,513,'kd_featured-image-3_page_id',''),(4740,513,'kd_featured-image-4_page_id',''),(4741,513,'kd_featured-image-5_page_id',''),(4754,450,'pyre_slider_type','flex'),(4755,450,'pyre_slider','0'),(4756,450,'pyre_wooslider','homepage'),(4757,450,'pyre_revslider','0'),(4758,450,'pyre_elasticslider','0'),(4759,450,'pyre_slider_position','default'),(4760,450,'pyre_avada_rev_styles','default'),(4761,450,'pyre_fallback',''),(4762,450,'pyre_fallback_id',''),(4763,450,'pyre_demo_slider',''),(4764,450,'pyre_main_top_padding','0px'),(4765,450,'pyre_main_bottom_padding','0px'),(4766,450,'pyre_hundredp_padding',''),(4767,450,'pyre_show_first_featured_image','no'),(4768,450,'pyre_display_header','yes'),(4769,450,'pyre_header_100_width','default'),(4770,450,'pyre_combined_header_bg_color',''),(4771,450,'pyre_mobile_header_bg_color',''),(4772,450,'pyre_header_bg',''),(4773,450,'pyre_header_bg_id',''),(4774,450,'pyre_header_bg_full','no'),(4775,450,'pyre_header_bg_repeat','repeat'),(4776,450,'pyre_displayed_menu','default'),(4777,450,'pyre_display_footer','default'),(4778,450,'pyre_display_copyright','default'),(4779,450,'pyre_footer_100_width','default'),(4780,450,'pyre_sidebar_position','default'),(4781,450,'pyre_responsive_sidebar_order',''),(4782,450,'pyre_sidebar_sticky','default'),(4783,450,'pyre_sidebar_bg_color',''),(4784,450,'pyre_page_bg_layout','default'),(4785,450,'pyre_page_bg_color',''),(4786,450,'pyre_page_bg',''),(4787,450,'pyre_page_bg_id',''),(4788,450,'pyre_page_bg_full','default'),(4789,450,'pyre_page_bg_repeat','default'),(4790,450,'pyre_wide_page_bg_color',''),(4791,450,'pyre_wide_page_bg',''),(4792,450,'pyre_wide_page_bg_id',''),(4793,450,'pyre_wide_page_bg_full','default'),(4794,450,'pyre_wide_page_bg_repeat','default'),(4795,450,'pyre_page_title','no'),(4796,450,'pyre_page_title_breadcrumbs_search_bar','default'),(4797,450,'pyre_page_title_text','default'),(4798,450,'pyre_page_title_text_alignment','default'),(4799,450,'pyre_page_title_custom_text',''),(4800,450,'pyre_page_title_text_size',''),(4801,450,'pyre_page_title_line_height',''),(4802,450,'pyre_page_title_font_color',''),(4803,450,'pyre_page_title_custom_subheader',''),(4804,450,'pyre_page_title_custom_subheader_text_size',''),(4805,450,'pyre_page_title_subheader_font_color',''),(4806,450,'pyre_page_title_100_width','default'),(4807,450,'pyre_page_title_height',''),(4808,450,'pyre_page_title_mobile_height',''),(4809,450,'pyre_page_title_bar_bg_color',''),(4810,450,'pyre_page_title_bar_borders_color',''),(4811,450,'pyre_page_title_bar_bg',''),(4812,450,'pyre_page_title_bar_bg_id',''),(4813,450,'pyre_page_title_bar_bg_retina',''),(4814,450,'pyre_page_title_bar_bg_retina_id',''),(4815,450,'pyre_page_title_bar_bg_full','default'),(4816,450,'pyre_page_title_bg_parallax','default'),(4817,450,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(4818,450,'fusion_builder_status','active'),(4819,450,'kd_featured-image-2_page_id',''),(4820,450,'kd_featured-image-3_page_id',''),(4821,450,'kd_featured-image-4_page_id',''),(4822,450,'kd_featured-image-5_page_id',''),(4835,479,'pyre_slider_type','flex'),(4836,479,'pyre_slider','0'),(4837,479,'pyre_wooslider','homepage'),(4838,479,'pyre_revslider','0'),(4839,479,'pyre_elasticslider','0'),(4840,479,'pyre_slider_position','default'),(4841,479,'pyre_avada_rev_styles','default'),(4842,479,'pyre_fallback',''),(4843,479,'pyre_fallback_id',''),(4844,479,'pyre_demo_slider',''),(4845,479,'pyre_main_top_padding','0px'),(4846,479,'pyre_main_bottom_padding','0px'),(4847,479,'pyre_hundredp_padding',''),(4848,479,'pyre_show_first_featured_image','no'),(4849,479,'pyre_display_header','yes'),(4850,479,'pyre_header_100_width','default'),(4851,479,'pyre_combined_header_bg_color',''),(4852,479,'pyre_mobile_header_bg_color',''),(4853,479,'pyre_header_bg',''),(4854,479,'pyre_header_bg_id',''),(4855,479,'pyre_header_bg_full','no'),(4856,479,'pyre_header_bg_repeat','repeat'),(4857,479,'pyre_displayed_menu','default'),(4858,479,'pyre_display_footer','default'),(4859,479,'pyre_display_copyright','default'),(4860,479,'pyre_footer_100_width','default'),(4861,479,'pyre_sidebar_position','default'),(4862,479,'pyre_responsive_sidebar_order',''),(4863,479,'pyre_sidebar_sticky','default'),(4864,479,'pyre_sidebar_bg_color',''),(4865,479,'pyre_page_bg_layout','default'),(4866,479,'pyre_page_bg_color',''),(4867,479,'pyre_page_bg',''),(4868,479,'pyre_page_bg_id',''),(4869,479,'pyre_page_bg_full','default'),(4870,479,'pyre_page_bg_repeat','default'),(4871,479,'pyre_wide_page_bg_color',''),(4872,479,'pyre_wide_page_bg',''),(4873,479,'pyre_wide_page_bg_id',''),(4874,479,'pyre_wide_page_bg_full','default'),(4875,479,'pyre_wide_page_bg_repeat','default'),(4876,479,'pyre_page_title','no'),(4877,479,'pyre_page_title_breadcrumbs_search_bar','default'),(4878,479,'pyre_page_title_text','default'),(4879,479,'pyre_page_title_text_alignment','default'),(4880,479,'pyre_page_title_custom_text',''),(4881,479,'pyre_page_title_text_size',''),(4882,479,'pyre_page_title_line_height',''),(4883,479,'pyre_page_title_font_color',''),(4884,479,'pyre_page_title_custom_subheader',''),(4885,479,'pyre_page_title_custom_subheader_text_size',''),(4886,479,'pyre_page_title_subheader_font_color',''),(4887,479,'pyre_page_title_100_width','default'),(4888,479,'pyre_page_title_height',''),(4889,479,'pyre_page_title_mobile_height',''),(4890,479,'pyre_page_title_bar_bg_color',''),(4891,479,'pyre_page_title_bar_borders_color',''),(4892,479,'pyre_page_title_bar_bg',''),(4893,479,'pyre_page_title_bar_bg_id',''),(4894,479,'pyre_page_title_bar_bg_retina',''),(4895,479,'pyre_page_title_bar_bg_retina_id',''),(4896,479,'pyre_page_title_bar_bg_full','default'),(4897,479,'pyre_page_title_bg_parallax','default'),(4898,479,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(4899,479,'fusion_builder_status','active'),(4900,479,'kd_featured-image-2_page_id',''),(4901,479,'kd_featured-image-3_page_id',''),(4902,479,'kd_featured-image-4_page_id',''),(4903,479,'kd_featured-image-5_page_id',''),(4916,180,'pyre_slider_type','flex'),(4917,180,'pyre_slider','0'),(4918,180,'pyre_wooslider','homepage'),(4919,180,'pyre_revslider','0'),(4920,180,'pyre_elasticslider','0'),(4921,180,'pyre_slider_position','default'),(4922,180,'pyre_avada_rev_styles','default'),(4923,180,'pyre_fallback',''),(4924,180,'pyre_fallback_id',''),(4925,180,'pyre_demo_slider',''),(4926,180,'pyre_main_top_padding','0px'),(4927,180,'pyre_main_bottom_padding','0px'),(4928,180,'pyre_hundredp_padding',''),(4929,180,'pyre_show_first_featured_image','no'),(4930,180,'pyre_display_header','yes'),(4931,180,'pyre_header_100_width','default'),(4932,180,'pyre_combined_header_bg_color',''),(4933,180,'pyre_mobile_header_bg_color',''),(4934,180,'pyre_header_bg',''),(4935,180,'pyre_header_bg_id',''),(4936,180,'pyre_header_bg_full','no'),(4937,180,'pyre_header_bg_repeat','repeat'),(4938,180,'pyre_displayed_menu','default'),(4939,180,'pyre_display_footer','default'),(4940,180,'pyre_display_copyright','default'),(4941,180,'pyre_footer_100_width','default'),(4942,180,'pyre_sidebar_position','default'),(4943,180,'pyre_responsive_sidebar_order',''),(4944,180,'pyre_sidebar_sticky','default'),(4945,180,'pyre_sidebar_bg_color',''),(4946,180,'pyre_page_bg_layout','default'),(4947,180,'pyre_page_bg_color',''),(4948,180,'pyre_page_bg',''),(4949,180,'pyre_page_bg_id',''),(4950,180,'pyre_page_bg_full','default'),(4951,180,'pyre_page_bg_repeat','default'),(4952,180,'pyre_wide_page_bg_color',''),(4953,180,'pyre_wide_page_bg',''),(4954,180,'pyre_wide_page_bg_id',''),(4955,180,'pyre_wide_page_bg_full','default'),(4956,180,'pyre_wide_page_bg_repeat','default'),(4957,180,'pyre_page_title','no'),(4958,180,'pyre_page_title_breadcrumbs_search_bar','default'),(4959,180,'pyre_page_title_text','default'),(4960,180,'pyre_page_title_text_alignment','default'),(4961,180,'pyre_page_title_custom_text',''),(4962,180,'pyre_page_title_text_size',''),(4963,180,'pyre_page_title_line_height',''),(4964,180,'pyre_page_title_font_color',''),(4965,180,'pyre_page_title_custom_subheader',''),(4966,180,'pyre_page_title_custom_subheader_text_size',''),(4967,180,'pyre_page_title_subheader_font_color',''),(4968,180,'pyre_page_title_100_width','default'),(4969,180,'pyre_page_title_height',''),(4970,180,'pyre_page_title_mobile_height',''),(4971,180,'pyre_page_title_bar_bg_color',''),(4972,180,'pyre_page_title_bar_borders_color',''),(4973,180,'pyre_page_title_bar_bg',''),(4974,180,'pyre_page_title_bar_bg_id',''),(4975,180,'pyre_page_title_bar_bg_retina',''),(4976,180,'pyre_page_title_bar_bg_retina_id',''),(4977,180,'pyre_page_title_bar_bg_full','default'),(4978,180,'pyre_page_title_bg_parallax','default'),(4979,180,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(4980,180,'fusion_builder_status','active'),(4981,180,'kd_featured-image-2_page_id',''),(4982,180,'kd_featured-image-3_page_id',''),(4983,180,'kd_featured-image-4_page_id',''),(4984,180,'kd_featured-image-5_page_id',''),(4993,470,'pyre_slider_type','flex'),(4994,470,'pyre_slider','0'),(4995,470,'pyre_wooslider','homepage'),(4996,470,'pyre_revslider','0'),(4997,470,'pyre_elasticslider','0'),(4998,470,'pyre_slider_position','default'),(4999,470,'pyre_avada_rev_styles','default'),(5000,470,'pyre_fallback',''),(5001,470,'pyre_fallback_id',''),(5002,470,'pyre_demo_slider',''),(5003,470,'pyre_main_top_padding','0px'),(5004,470,'pyre_main_bottom_padding','0px'),(5005,470,'pyre_hundredp_padding',''),(5006,470,'pyre_show_first_featured_image','no'),(5007,470,'pyre_display_header','yes'),(5008,470,'pyre_header_100_width','default'),(5009,470,'pyre_combined_header_bg_color',''),(5010,470,'pyre_mobile_header_bg_color',''),(5011,470,'pyre_header_bg',''),(5012,470,'pyre_header_bg_id',''),(5013,470,'pyre_header_bg_full','no'),(5014,470,'pyre_header_bg_repeat','repeat'),(5015,470,'pyre_displayed_menu','default'),(5016,470,'pyre_display_footer','default'),(5017,470,'pyre_display_copyright','default'),(5018,470,'pyre_footer_100_width','default'),(5019,470,'pyre_sidebar_position','default'),(5020,470,'pyre_responsive_sidebar_order',''),(5021,470,'pyre_sidebar_sticky','default'),(5022,470,'pyre_sidebar_bg_color',''),(5023,470,'pyre_page_bg_layout','default'),(5024,470,'pyre_page_bg_color',''),(5025,470,'pyre_page_bg',''),(5026,470,'pyre_page_bg_id',''),(5027,470,'pyre_page_bg_full','default'),(5028,470,'pyre_page_bg_repeat','default'),(5029,470,'pyre_wide_page_bg_color',''),(5030,470,'pyre_wide_page_bg',''),(5031,470,'pyre_wide_page_bg_id',''),(5032,470,'pyre_wide_page_bg_full','default'),(5033,470,'pyre_wide_page_bg_repeat','default'),(5034,470,'pyre_page_title','no'),(5035,470,'pyre_page_title_breadcrumbs_search_bar','default'),(5036,470,'pyre_page_title_text','default'),(5037,470,'pyre_page_title_text_alignment','default'),(5038,470,'pyre_page_title_custom_text',''),(5039,470,'pyre_page_title_text_size',''),(5040,470,'pyre_page_title_line_height',''),(5041,470,'pyre_page_title_font_color',''),(5042,470,'pyre_page_title_custom_subheader',''),(5043,470,'pyre_page_title_custom_subheader_text_size',''),(5044,470,'pyre_page_title_subheader_font_color',''),(5045,470,'pyre_page_title_100_width','default'),(5046,470,'pyre_page_title_height',''),(5047,470,'pyre_page_title_mobile_height',''),(5048,470,'pyre_page_title_bar_bg_color',''),(5049,470,'pyre_page_title_bar_borders_color',''),(5050,470,'pyre_page_title_bar_bg',''),(5051,470,'pyre_page_title_bar_bg_id',''),(5052,470,'pyre_page_title_bar_bg_retina',''),(5053,470,'pyre_page_title_bar_bg_retina_id',''),(5054,470,'pyre_page_title_bar_bg_full','default'),(5055,470,'pyre_page_title_bg_parallax','default'),(5056,470,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(5057,470,'fusion_builder_status','active'),(5058,470,'kd_featured-image-2_page_id',''),(5059,470,'kd_featured-image-3_page_id',''),(5060,470,'kd_featured-image-4_page_id',''),(5061,470,'kd_featured-image-5_page_id',''),(5347,578,'_fusion_is_global','yes'),(5476,578,'pyre_slider_type','flex'),(5477,578,'pyre_slider','0'),(5478,578,'pyre_wooslider','homepage'),(5479,578,'pyre_revslider','0'),(5480,578,'pyre_elasticslider','0'),(5481,578,'pyre_slider_position','default'),(5482,578,'pyre_avada_rev_styles','default'),(5483,578,'pyre_fallback',''),(5484,578,'pyre_fallback_id',''),(5485,578,'pyre_demo_slider',''),(5486,578,'pyre_main_top_padding','0px'),(5487,578,'pyre_main_bottom_padding','0px'),(5488,578,'pyre_hundredp_padding',''),(5489,578,'pyre_show_first_featured_image','no'),(5490,578,'pyre_display_header','yes'),(5491,578,'pyre_header_100_width','default'),(5492,578,'pyre_combined_header_bg_color',''),(5493,578,'pyre_mobile_header_bg_color',''),(5494,578,'pyre_header_bg',''),(5495,578,'pyre_header_bg_id',''),(5496,578,'pyre_header_bg_full','no'),(5497,578,'pyre_header_bg_repeat','repeat'),(5498,578,'pyre_displayed_menu','default'),(5499,578,'pyre_display_footer','default'),(5500,578,'pyre_display_copyright','default'),(5501,578,'pyre_footer_100_width','default'),(5502,578,'pyre_sidebar_position','default'),(5503,578,'pyre_responsive_sidebar_order',''),(5504,578,'pyre_sidebar_sticky','default'),(5505,578,'pyre_sidebar_bg_color',''),(5506,578,'pyre_page_bg_layout','default'),(5507,578,'pyre_page_bg_color',''),(5508,578,'pyre_page_bg',''),(5509,578,'pyre_page_bg_id',''),(5510,578,'pyre_page_bg_full','default'),(5511,578,'pyre_page_bg_repeat','default'),(5512,578,'pyre_wide_page_bg_color',''),(5513,578,'pyre_wide_page_bg',''),(5514,578,'pyre_wide_page_bg_id',''),(5515,578,'pyre_wide_page_bg_full','default'),(5516,578,'pyre_wide_page_bg_repeat','default'),(5517,578,'pyre_page_title','no'),(5518,578,'pyre_page_title_breadcrumbs_search_bar','default'),(5519,578,'pyre_page_title_text','default'),(5520,578,'pyre_page_title_text_alignment','default'),(5521,578,'pyre_page_title_custom_text',''),(5522,578,'pyre_page_title_text_size',''),(5523,578,'pyre_page_title_line_height',''),(5524,578,'pyre_page_title_font_color',''),(5525,578,'pyre_page_title_custom_subheader',''),(5526,578,'pyre_page_title_custom_subheader_text_size',''),(5527,578,'pyre_page_title_subheader_font_color',''),(5528,578,'pyre_page_title_100_width','default'),(5529,578,'pyre_page_title_height',''),(5530,578,'pyre_page_title_mobile_height',''),(5531,578,'pyre_page_title_bar_bg_color',''),(5532,578,'pyre_page_title_bar_borders_color',''),(5533,578,'pyre_page_title_bar_bg',''),(5534,578,'pyre_page_title_bar_bg_id',''),(5535,578,'pyre_page_title_bar_bg_retina',''),(5536,578,'pyre_page_title_bar_bg_retina_id',''),(5537,578,'pyre_page_title_bar_bg_full','default'),(5538,578,'pyre_page_title_bg_parallax','default'),(5539,578,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(5540,578,'fusion_builder_status','active'),(5541,578,'kd_featured-image-2_page_id',''),(5542,578,'kd_featured-image-3_page_id',''),(5543,578,'kd_featured-image-4_page_id',''),(5544,578,'kd_featured-image-5_page_id',''),(5565,173,'pyre_slider_type','flex'),(5566,173,'pyre_slider','0'),(5567,173,'pyre_wooslider','homepage'),(5568,173,'pyre_revslider','0'),(5569,173,'pyre_elasticslider','0'),(5570,173,'pyre_slider_position','default'),(5571,173,'pyre_avada_rev_styles','default'),(5572,173,'pyre_fallback',''),(5573,173,'pyre_fallback_id',''),(5574,173,'pyre_demo_slider',''),(5575,173,'pyre_main_top_padding','0px'),(5576,173,'pyre_main_bottom_padding','0px'),(5577,173,'pyre_hundredp_padding',''),(5578,173,'pyre_show_first_featured_image','no'),(5579,173,'pyre_display_header','yes'),(5580,173,'pyre_header_100_width','default'),(5581,173,'pyre_combined_header_bg_color',''),(5582,173,'pyre_mobile_header_bg_color',''),(5583,173,'pyre_header_bg',''),(5584,173,'pyre_header_bg_id',''),(5585,173,'pyre_header_bg_full','no'),(5586,173,'pyre_header_bg_repeat','repeat'),(5587,173,'pyre_displayed_menu','default'),(5588,173,'pyre_display_footer','default'),(5589,173,'pyre_display_copyright','default'),(5590,173,'pyre_footer_100_width','default'),(5591,173,'pyre_sidebar_position','default'),(5592,173,'pyre_responsive_sidebar_order',''),(5593,173,'pyre_sidebar_sticky','default'),(5594,173,'pyre_sidebar_bg_color',''),(5595,173,'pyre_page_bg_layout','default'),(5596,173,'pyre_page_bg_color',''),(5597,173,'pyre_page_bg',''),(5598,173,'pyre_page_bg_id',''),(5599,173,'pyre_page_bg_full','default'),(5600,173,'pyre_page_bg_repeat','default'),(5601,173,'pyre_wide_page_bg_color',''),(5602,173,'pyre_wide_page_bg',''),(5603,173,'pyre_wide_page_bg_id',''),(5604,173,'pyre_wide_page_bg_full','default'),(5605,173,'pyre_wide_page_bg_repeat','default'),(5606,173,'pyre_page_title','no'),(5607,173,'pyre_page_title_breadcrumbs_search_bar','default'),(5608,173,'pyre_page_title_text','default'),(5609,173,'pyre_page_title_text_alignment','default'),(5610,173,'pyre_page_title_custom_text',''),(5611,173,'pyre_page_title_text_size',''),(5612,173,'pyre_page_title_line_height',''),(5613,173,'pyre_page_title_font_color',''),(5614,173,'pyre_page_title_custom_subheader',''),(5615,173,'pyre_page_title_custom_subheader_text_size',''),(5616,173,'pyre_page_title_subheader_font_color',''),(5617,173,'pyre_page_title_100_width','default'),(5618,173,'pyre_page_title_height',''),(5619,173,'pyre_page_title_mobile_height',''),(5620,173,'pyre_page_title_bar_bg_color',''),(5621,173,'pyre_page_title_bar_borders_color',''),(5622,173,'pyre_page_title_bar_bg',''),(5623,173,'pyre_page_title_bar_bg_id',''),(5624,173,'pyre_page_title_bar_bg_retina',''),(5625,173,'pyre_page_title_bar_bg_retina_id',''),(5626,173,'pyre_page_title_bar_bg_full','default'),(5627,173,'pyre_page_title_bg_parallax','default'),(5628,173,'_fusion_builder_custom_css','.fusion-image-carousel {\r\nmargin-bottom: 0px;\r\n}'),(5629,173,'fusion_builder_status','active'),(5630,173,'kd_featured-image-2_page_id',''),(5631,173,'kd_featured-image-3_page_id',''),(5632,173,'kd_featured-image-4_page_id',''),(5633,173,'kd_featured-image-5_page_id',''),(6182,516,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6183,516,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6184,516,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6185,516,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6190,455,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6191,455,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6192,455,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6193,455,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6198,513,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6199,513,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6200,513,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6201,513,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6206,450,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6207,450,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6208,450,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6209,450,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6214,479,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6215,479,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6216,479,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6217,479,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6222,180,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6223,180,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6224,180,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6225,180,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6230,578,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6231,578,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6232,578,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6233,578,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6238,470,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6239,470,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6240,470,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6241,470,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6246,173,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6247,173,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6248,173,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6249,173,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6422,532,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6423,532,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6424,532,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6425,532,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6430,527,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6431,527,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6432,527,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6433,527,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6438,553,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6439,553,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6440,553,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6441,553,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6446,506,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6447,506,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6448,506,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6449,506,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6454,503,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6455,503,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6456,503,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6457,503,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6462,522,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6463,522,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6464,522,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6465,522,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6470,542,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6471,542,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6472,542,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6473,542,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6478,537,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6479,537,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6480,537,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6481,537,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6486,548,'sbg_selected_sidebar','a:1:{i:0;s:1:\"0\";}'),(6487,548,'sbg_selected_sidebar_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6488,548,'sbg_selected_sidebar_2','a:1:{i:0;s:1:\"0\";}'),(6489,548,'sbg_selected_sidebar_2_replacement','a:1:{i:0;s:15:\"default_sidebar\";}'),(6550,639,'_edit_last','2'),(6551,639,'_wp_page_template','default'),(6552,639,'_et_pb_post_hide_nav','default'),(6553,639,'_et_pb_page_layout','et_right_sidebar'),(6554,639,'_et_pb_side_nav','off'),(6555,639,'fusion_builder_status',''),(6556,639,'_et_pb_use_builder','on'),(6557,639,'_et_pb_first_image',''),(6558,639,'_et_pb_truncate_post',''),(6559,639,'_et_pb_truncate_post_date',''),(6560,639,'_et_pb_old_content',''),(6561,639,'_edit_lock','1701120277:2'),(6604,639,'_et_pb_built_for_post_type','page'),(6605,639,'_et_pb_ab_subjects',''),(6606,639,'_et_pb_enable_shortcode_tracking',''),(6607,639,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"639\" /]'),(6608,639,'_et_pb_custom_css',''),(6609,639,'_et_pb_gutter_width','3'),(6611,639,'_et_builder_version','VB|Divi|4.23.1'),(6618,665,'_wp_attached_file','2020/01/cropped-Kingsville-Livestock-Favicon.png'),(6619,665,'_wp_attachment_context','site-icon'),(6620,665,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:48:\"2020/01/cropped-Kingsville-Livestock-Favicon.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"cropped-Kingsville-Livestock-Favicon-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"cropped-Kingsville-Livestock-Favicon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:48:\"cropped-Kingsville-Livestock-Favicon-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:48:\"cropped-Kingsville-Livestock-Favicon-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:48:\"cropped-Kingsville-Livestock-Favicon-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:48:\"cropped-Kingsville-Livestock-Favicon-400x512.png\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:48:\"cropped-Kingsville-Livestock-Favicon-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:48:\"cropped-Kingsville-Livestock-Favicon-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:48:\"cropped-Kingsville-Livestock-Favicon-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:48:\"cropped-Kingsville-Livestock-Favicon-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:46:\"cropped-Kingsville-Livestock-Favicon-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6635,679,'_edit_last','2'),(6636,679,'_edit_lock','1597250726:2'),(6637,679,'_wp_page_template','default'),(6638,679,'_et_pb_post_hide_nav','default'),(6639,679,'_et_pb_page_layout','et_right_sidebar'),(6640,679,'_et_pb_side_nav','off'),(6641,679,'_et_pb_use_builder','on'),(6642,679,'_et_pb_first_image',''),(6643,679,'_et_pb_truncate_post','<p><div class=\"et_pb_section et_pb_section_4 et_animated et_pb_fullwidth_section et_section_regular\" >\n				\n				\n				\n				\n					<section class=\"et_pb_module et_pb_fullwidth_header et_pb_fullwidth_header_1 et_hover_enabled et_pb_text_align_left et_pb_bg_layout_dark\">\n				\n				\n				<div class=\"et_pb_fullwidth_header_container left\">\n					<div class=\"header-content-container center\">\n					<div class=\"header-content\">\n						\n						<h2 class=\"et_pb_module_header\">About Us</h2>\n						\n						<div class=\"et_pb_header_content_wrapper\"></div>\n						\n					</div>\n				</div>\n					\n				</div>\n				<div class=\"et_pb_fullwidth_header_overlay\"></div>\n				<div class=\"et_pb_fullwidth_header_scroll\"></div>\n			</section>\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_5 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_0\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-21.jpg\" alt=\"\" title=\"\" /></span>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">How We Got Started</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Rick and Marcia purchased the Kingsville Livestock Auction in July 1988. Over the past 32 years, we have made several additions to our facilities to best serve our customers as Missouri&#8217;s West Central Foremost Livestock Auction.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div id=\"livestock\" class=\"et_pb_section et_pb_section_6 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Our Commitment</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_2_3 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">It doesn&#8217;t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_7 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_9 et_pb_equal_columns et_pb_gutters2\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_1\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-114.jpg\" alt=\"\" title=\"\" /></span>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_16  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_2\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-78.jpg\" alt=\"\" title=\"\" /></span>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_3 et_pb_column_17  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_image et_pb_image_3\">\n				\n				\n				<span class=\"et_pb_image_wrap \"><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-55.jpg\" alt=\"\" title=\"\" /></span>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_8 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_10\">\n				<div class=\"et_pb_column et_pb_column_2_5 et_pb_column_18  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Livestock Information</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_3_5 et_pb_column_19  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">In order to gain the most value out of your cattle, here at Kingsville Livestock Auctions we recommend:</p>\n<p>Weaning calves for at least 45 days and selling with two rounds of shots. (This option allows for the best overall value.)<br />\nSell non-weaned calves with two rounds of shots, and the bulls cut. (If you are unable to wean for a full 45 days this option will allow for the best value.)</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_11\">\n				<div class=\"et_pb_column et_pb_column_1_6 et_pb_column_20  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty\">\n				\n				\n				\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_6 et_pb_column_21  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty\">\n				\n				\n				\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_6 et_pb_column_22  et_pb_css_mix_blend_mode_passthrough et_pb_column_empty\">\n				\n				\n				\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_6 et_pb_column_23  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"\">BUY CATTLE</a>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_6 et_pb_column_24  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"\">SELL CATTLE</a>\n			</div>\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_6 et_pb_column_25  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_3_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_3 et_pb_bg_layout_light\" href=\"\">MARKET REPORTS</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --><div class=\"et_pb_section et_pb_section_10 et_pb_with_background et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_12\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_26  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_4_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_4 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/contact/\">Contact Us For All Your Auction Needs</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section --></p>\n'),(6644,679,'_et_pb_truncate_post_date','2020-04-14 16:19:04'),(6645,679,'_et_pb_old_content',''),(6657,679,'_et_pb_built_for_post_type','page'),(6658,679,'_et_pb_ab_subjects',''),(6659,679,'_et_pb_enable_shortcode_tracking',''),(6660,679,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"679\" /]'),(6661,679,'_et_pb_custom_css',''),(6662,679,'_et_pb_gutter_width','3'),(6664,679,'_et_builder_version','VB|Divi|4.2'),(6665,679,'_et_pb_show_page_creation','off'),(6666,688,'_et_pb_built_for_post_type','page'),(6667,688,'_et_pb_excluded_global_options','[]'),(6674,714,'_edit_last','2'),(6675,714,'_wp_page_template','default'),(6676,714,'_et_pb_post_hide_nav','default'),(6677,714,'_et_pb_page_layout','et_right_sidebar'),(6678,714,'_et_pb_side_nav','off'),(6679,714,'_et_pb_use_builder','on'),(6680,714,'_et_pb_first_image',''),(6681,714,'_et_pb_truncate_post',''),(6682,714,'_et_pb_truncate_post_date',''),(6683,714,'_et_pb_old_content',''),(6684,714,'_edit_lock','1679954018:2'),(6690,714,'_et_pb_built_for_post_type','page'),(6691,714,'_et_pb_ab_subjects',''),(6692,714,'_et_pb_enable_shortcode_tracking',''),(6693,714,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"714\" /]'),(6694,714,'_et_pb_custom_css',''),(6695,714,'_et_pb_gutter_width','3'),(6697,714,'_et_builder_version','VB|Divi|4.21.0'),(6698,714,'_et_pb_show_page_creation','off'),(6708,721,'_menu_item_type','post_type'),(6709,721,'_menu_item_menu_item_parent','0'),(6710,721,'_menu_item_object_id','679'),(6711,721,'_menu_item_object','page'),(6712,721,'_menu_item_target',''),(6713,721,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6714,721,'_menu_item_xfn',''),(6715,721,'_menu_item_url',''),(6717,722,'_menu_item_type','post_type'),(6718,722,'_menu_item_menu_item_parent','0'),(6719,722,'_menu_item_object_id','714'),(6720,722,'_menu_item_object','page'),(6721,722,'_menu_item_target',''),(6722,722,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6723,722,'_menu_item_xfn',''),(6724,722,'_menu_item_url',''),(6726,723,'_edit_last','1'),(6727,723,'_wp_page_template','default'),(6728,723,'_et_pb_post_hide_nav','default'),(6729,723,'_et_pb_page_layout','et_right_sidebar'),(6730,723,'_et_pb_side_nav','off'),(6731,723,'_et_pb_use_builder','on'),(6732,723,'_et_pb_first_image',''),(6733,723,'_et_pb_truncate_post',''),(6734,723,'_et_pb_truncate_post_date',''),(6735,723,'_et_pb_old_content',''),(6736,723,'_edit_lock','1628705155:2'),(6740,723,'_et_pb_built_for_post_type','page'),(6741,723,'_et_pb_ab_subjects',''),(6742,723,'_et_pb_enable_shortcode_tracking',''),(6743,723,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"723\" /]'),(6744,723,'_et_pb_custom_css',''),(6745,723,'_et_pb_gutter_width','3'),(6747,723,'_et_builder_version','VB|Divi|4.9.10'),(6748,723,'_et_pb_show_page_creation','off'),(6749,727,'_menu_item_type','post_type'),(6750,727,'_menu_item_menu_item_parent','0'),(6751,727,'_menu_item_object_id','723'),(6752,727,'_menu_item_object','page'),(6753,727,'_menu_item_target',''),(6754,727,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6755,727,'_menu_item_xfn',''),(6756,727,'_menu_item_url',''),(6757,723,'_thumbnail_id','0'),(6758,735,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-1.jpg'),(6759,735,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:34:\"2020/01/HPG-Media-KINGSVILLE-1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-1-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-1-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-1-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-1-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-1-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579007971\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6760,736,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-2.jpg'),(6761,736,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:34:\"2020/01/HPG-Media-KINGSVILLE-2.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-2-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-2-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-2-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-2-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-2-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-2-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-2-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-2-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579008088\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"31\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6762,737,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-3.jpg'),(6763,737,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:34:\"2020/01/HPG-Media-KINGSVILLE-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-3-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-3-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-3-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-3-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-3-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-3-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-3-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-3-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579008471\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6764,738,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-4.jpg'),(6765,738,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:34:\"2020/01/HPG-Media-KINGSVILLE-4.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-4-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-4-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-4-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-4-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-4-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-4-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-4-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-4-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-4-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579008499\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6766,739,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-5.jpg'),(6767,739,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:34:\"2020/01/HPG-Media-KINGSVILLE-5.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-5-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-5-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-5-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-5-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-5-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-5-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-5-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-5-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-5-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-5-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-5-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579008582\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6768,740,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-6.jpg'),(6769,740,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:34:\"2020/01/HPG-Media-KINGSVILLE-6.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-6-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-6-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-6-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-6-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-6-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-6-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-6-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-6-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-6-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-6-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-6-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-6-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-6-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579008645\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"26\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6770,741,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-7.jpg'),(6771,741,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:34:\"2020/01/HPG-Media-KINGSVILLE-7.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-7-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-7-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-7-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-7-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-7-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-7-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-7-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-7-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-7-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-7-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-7-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-7-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-7-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579008674\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"29\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6772,742,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-8.jpg'),(6773,742,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:34:\"2020/01/HPG-Media-KINGSVILLE-8.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-8-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-8-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-8-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-8-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-8-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-8-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-8-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-8-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-8-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-8-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-8-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-8-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-8-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579009283\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6774,743,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-9.jpg'),(6775,743,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:34:\"2020/01/HPG-Media-KINGSVILLE-9.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-9-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-9-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-9-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-9-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-9-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-9-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-9-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-9-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-9-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-9-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-9-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-9-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"HPG-Media-KINGSVILLE-9-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579009397\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6776,744,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-10.jpg'),(6777,744,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-10.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-10-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-10-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-10-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-10-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-10-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-10-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-10-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-10-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-10-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-10-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-10-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-10-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-10-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579009409\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6778,745,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-11.jpg'),(6779,745,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-11.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-11-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-11-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-11-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-11-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-11-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-11-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-11-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-11-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-11-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-11-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-11-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-11-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-11-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579009428\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6780,746,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-12.jpg'),(6781,746,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-12.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-12-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-12-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-12-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-12-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-12-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-12-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-12-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-12-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-12-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-12-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-12-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-12-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-12-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579009545\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:4:\"2500\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6782,747,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-13.jpg'),(6783,747,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-13.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-13-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-13-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-13-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-13-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-13-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-13-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-13-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-13-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-13-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-13-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-13-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-13-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-13-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579009702\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:4:\"2500\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6784,748,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-14.jpg'),(6785,748,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-14.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-14-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-14-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-14-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-14-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-14-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-14-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-14-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-14-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-14-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-14-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-14-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-14-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-14-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579010726\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6786,749,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-15.jpg'),(6787,749,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-15.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-15-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-15-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-15-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-15-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-15-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-15-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-15-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-15-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-15-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-15-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-15-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-15-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-15-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-15-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579010764\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6788,750,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-16.jpg'),(6789,750,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-16.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-16-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-16-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-16-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-16-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-16-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-16-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-16-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-16-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-16-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-16-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-16-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-16-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-16-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-16-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579010868\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6790,751,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-17.jpg'),(6791,751,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-17.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-17-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-17-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-17-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-17-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-17-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-17-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-17-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-17-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-17-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-17-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-17-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-17-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-17-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-17-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579010958\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6792,752,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-18.jpg'),(6793,752,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-18.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-18-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-18-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-18-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-18-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-18-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-18-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-18-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-18-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-18-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-18-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-18-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-18-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-18-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579011027\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6794,753,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-19.jpg'),(6795,753,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-19.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-19-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-19-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-19-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-19-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-19-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-19-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-19-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-19-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-19-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-19-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-19-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-19-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-19-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-19-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579014646\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6796,754,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-20.jpg'),(6797,754,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-20.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-20-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-20-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-20-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-20-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-20-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-20-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-20-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-20-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-20-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-20-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-20-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-20-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-20-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-20-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579014700\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6798,755,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-21.jpg'),(6799,755,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-21.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-21-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-21-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-21-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-21-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-21-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-21-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-21-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-21-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-21-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-21-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-21-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-21-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-21-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579011111\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6800,756,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-22.jpg'),(6801,756,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-22.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-22-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-22-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-22-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-22-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-22-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-22-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-22-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-22-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-22-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-22-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-22-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-22-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-22-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579011174\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6802,757,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-23.jpg'),(6803,757,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-23.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-23-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-23-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-23-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-23-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-23-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-23-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-23-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-23-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-23-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-23-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-23-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-23-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-23-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-23-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579011386\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6804,758,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-24.jpg'),(6805,758,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-24.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-24-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-24-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-24-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-24-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-24-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-24-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-24-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-24-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-24-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-24-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-24-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-24-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-24-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-24-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579015045\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6806,759,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-25.jpg'),(6807,759,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-25.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-25-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-25-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-25-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-25-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-25-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-25-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-25-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-25-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-25-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-25-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-25-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-25-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-25-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-25-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579011723\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"26\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6808,760,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-26.jpg'),(6809,760,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-26.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-26-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-26-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-26-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-26-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-26-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-26-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-26-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-26-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-26-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-26-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-26-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-26-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-26-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-26-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579015420\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"142\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6810,761,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-27.jpg'),(6811,761,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-27.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-27-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-27-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-27-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-27-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-27-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-27-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-27-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-27-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-27-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-27-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-27-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-27-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-27-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-27-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579015653\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"133\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:9:\"0.0003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6812,762,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-28.jpg'),(6813,762,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-28.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-28-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-28-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-28-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-28-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-28-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-28-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-28-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-28-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-28-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-28-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-28-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-28-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-28-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-28-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579015703\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"118\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.000625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6814,763,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-29.jpg'),(6815,763,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-29.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-29-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-29-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-29-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-29-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-29-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-29-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-29-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-29-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-29-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-29-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-29-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-29-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-29-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-29-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579015759\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.000625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6816,764,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-30.jpg'),(6817,764,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-30.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-30-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-30-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-30-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-30-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-30-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-30-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-30-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-30-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-30-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-30-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-30-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-30-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-30-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-30-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579012304\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6818,765,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-31.jpg'),(6819,765,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-31.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-31-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-31-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-31-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-31-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-31-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-31-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-31-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-31-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-31-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-31-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-31-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-31-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-31-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-31-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579012683\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6820,766,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-32.jpg'),(6821,766,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-32.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-32-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-32-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-32-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-32-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-32-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-32-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-32-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-32-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-32-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-32-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-32-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-32-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-32-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-32-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579016298\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6822,767,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-33.jpg'),(6823,767,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-33.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-33-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-33-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-33-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-33-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-33-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-33-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-33-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-33-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-33-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-33-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-33-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-33-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-33-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-33-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579012723\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6824,768,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-34.jpg'),(6825,768,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-34.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-34-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-34-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-34-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-34-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-34-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-34-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-34-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-34-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-34-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-34-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-34-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-34-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-34-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-34-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579016342\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6826,769,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-35.jpg'),(6827,769,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-35.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-35-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-35-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-35-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-35-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-35-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-35-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-35-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-35-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-35-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-35-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-35-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-35-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-35-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-35-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579012760\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6828,770,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-36.jpg'),(6829,770,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-36.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-36-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-36-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-36-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-36-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-36-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-36-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-36-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-36-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-36-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-36-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-36-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-36-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-36-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-36-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579012775\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6830,771,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-37.jpg'),(6831,771,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-37.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-37-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-37-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-37-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-37-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-37-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-37-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-37-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-37-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-37-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-37-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-37-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-37-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-37-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-37-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579012795\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6832,772,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-38.jpg'),(6833,772,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-38.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-38-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-38-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-38-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-38-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-38-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-38-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-38-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-38-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-38-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-38-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-38-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-38-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-38-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-38-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579016447\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"73\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6834,773,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-39.jpg'),(6835,773,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-39.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-39-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-39-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-39-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-39-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-39-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-39-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-39-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-39-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-39-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-39-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-39-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-39-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-39-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-39-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579016489\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6836,774,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-40.jpg'),(6837,774,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-40.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-40-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-40-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-40-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-40-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-40-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-40-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-40-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-40-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-40-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-40-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-40-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-40-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-40-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-40-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579012954\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6838,775,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-41.jpg'),(6839,775,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-41.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-41-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-41-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-41-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-41-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-41-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-41-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-41-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-41-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-41-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-41-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-41-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-41-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-41-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-41-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579016854\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6840,776,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-42.jpg'),(6841,776,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-42.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-42-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-42-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-42-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-42-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-42-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-42-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-42-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-42-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-42-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-42-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-42-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-42-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-42-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-42-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6842,777,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-43.jpg'),(6843,777,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-43.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-43-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-43-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-43-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-43-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-43-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-43-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-43-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-43-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-43-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-43-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-43-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-43-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-43-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-43-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579017161\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"132\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6844,778,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-44.jpg'),(6845,778,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-44.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-44-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-44-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-44-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-44-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-44-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-44-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-44-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-44-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-44-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-44-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-44-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-44-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-44-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-44-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579017686\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6846,779,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-45.jpg'),(6847,779,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-45.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-45-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-45-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-45-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-45-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-45-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-45-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-45-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-45-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-45-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-45-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-45-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-45-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-45-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-45-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579017780\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"134\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6848,780,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-46.jpg'),(6849,780,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-46.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-46-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-46-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-46-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-46-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-46-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-46-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-46-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-46-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-46-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-46-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-46-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-46-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-46-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-46-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6850,781,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-47.jpg'),(6851,781,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-47.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-47-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-47-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-47-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-47-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-47-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-47-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-47-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-47-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-47-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-47-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-47-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-47-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-47-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-47-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579018256\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"81\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6852,782,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-48.jpg'),(6853,782,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-48.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-48-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-48-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-48-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-48-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-48-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-48-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-48-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-48-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-48-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-48-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-48-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-48-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-48-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-48-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579018381\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6854,783,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-49.jpg'),(6855,783,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-49.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-49-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-49-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-49-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-49-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-49-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-49-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-49-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-49-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-49-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-49-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-49-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-49-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-49-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-49-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579018431\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"104\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6856,784,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-50.jpg'),(6857,784,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-50.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-50-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-50-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-50-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-50-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-50-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-50-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-50-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-50-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-50-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-50-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-50-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-50-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-50-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-50-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579018440\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6858,785,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-51.jpg'),(6859,785,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-51.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-51-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-51-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-51-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-51-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-51-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-51-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-51-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-51-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-51-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-51-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-51-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-51-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-51-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-51-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579018528\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6860,786,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-52.jpg'),(6861,786,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-52.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-52-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-52-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-52-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-52-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-52-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-52-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-52-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-52-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-52-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-52-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-52-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-52-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-52-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-52-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579018784\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"101\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6862,787,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-53.jpg'),(6863,787,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-53.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-53-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-53-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-53-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-53-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-53-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-53-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-53-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-53-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-53-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-53-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-53-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-53-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-53-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-53-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579019274\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"80\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6864,788,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-54.jpg'),(6865,788,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-54.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-54-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-54-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-54-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-54-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-54-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-54-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-54-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-54-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-54-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-54-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-54-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-54-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-54-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-54-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579016196\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6866,789,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-55.jpg'),(6867,789,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-55.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-55-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-55-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-55-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-55-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-55-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-55-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-55-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-55-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-55-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-55-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-55-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-55-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-55-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-55-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579016226\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6868,790,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-56.jpg'),(6869,790,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-56.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-56-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-56-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-56-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-56-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-56-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-56-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-56-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-56-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-56-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-56-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-56-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-56-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-56-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-56-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579019976\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"77\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6870,791,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-57.jpg'),(6871,791,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-57.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-57-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-57-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-57-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-57-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-57-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-57-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-57-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-57-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-57-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-57-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-57-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-57-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-57-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-57-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579020163\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6872,792,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-58.jpg'),(6873,792,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-58.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-58-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-58-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-58-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-58-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-58-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-58-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-58-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-58-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-58-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-58-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-58-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-58-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-58-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-58-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579016668\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6874,793,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-59.jpg'),(6875,793,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-59.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-59-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-59-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-59-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-59-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-59-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-59-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-59-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-59-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-59-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-59-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-59-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-59-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-59-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-59-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579020492\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6876,794,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-60.jpg'),(6877,794,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-60.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-60-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-60-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-60-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-60-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-60-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-60-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-60-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-60-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-60-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-60-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-60-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-60-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-60-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-60-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579020492\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6878,795,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-61.jpg'),(6879,795,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-61.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-61-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-61-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-61-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-61-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-61-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-61-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-61-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-61-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-61-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-61-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-61-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-61-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-61-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-61-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579020498\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6880,796,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-62.jpg'),(6881,796,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-62.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-62-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-62-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-62-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-62-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-62-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-62-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-62-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-62-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-62-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-62-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-62-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-62-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-62-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-62-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579021177\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6882,797,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-63.jpg'),(6883,797,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-63.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-63-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-63-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-63-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-63-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-63-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-63-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-63-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-63-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-63-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-63-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-63-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-63-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-63-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-63-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579021642\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"104\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6884,798,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-64.jpg'),(6885,798,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-64.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-64-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-64-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-64-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-64-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-64-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-64-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-64-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-64-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-64-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-64-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-64-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-64-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-64-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-64-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579021666\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"123\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6886,799,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-65.jpg'),(6887,799,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-65.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-65-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-65-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-65-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-65-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-65-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-65-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-65-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-65-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-65-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-65-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-65-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-65-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-65-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-65-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579021669\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"123\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6888,800,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-66.jpg'),(6889,800,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-66.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-66-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-66-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-66-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-66-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-66-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-66-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-66-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-66-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-66-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-66-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-66-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-66-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-66-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-66-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579018189\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"25\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6890,801,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-67.jpg'),(6891,801,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:1600;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-67.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-67-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-67-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-67-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-67-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-67-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-67-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-67-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-67-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-67-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-67-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-67-480x853.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579021793\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"95\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6892,802,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-68.jpg'),(6893,802,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-68.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-68-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-68-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-68-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-68-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-68-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-68-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-68-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-68-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-68-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-68-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-68-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-68-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-68-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-68-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579018252\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6894,803,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-69.jpg'),(6895,803,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-69.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-69-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-69-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-69-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-69-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-69-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-69-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-69-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-69-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-69-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-69-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-69-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-69-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-69-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-69-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579021870\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"146\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6896,804,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-70.jpg'),(6897,804,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-70.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-70-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-70-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-70-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-70-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-70-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-70-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-70-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-70-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-70-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-70-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-70-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-70-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-70-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-70-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579021901\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"102\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6898,805,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-71.jpg'),(6899,805,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-71.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-71-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-71-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-71-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-71-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-71-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-71-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-71-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-71-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-71-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-71-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-71-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-71-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-71-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-71-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579021923\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"154\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6900,806,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-72.jpg'),(6901,806,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-72.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-72-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-72-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-72-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-72-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-72-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-72-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-72-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-72-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-72-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-72-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-72-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-72-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-72-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-72-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579021927\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6902,807,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-73.jpg'),(6903,807,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-73.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-73-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-73-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-73-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-73-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-73-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-73-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-73-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-73-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-73-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-73-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-73-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-73-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-73-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-73-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579018340\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6904,808,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-74.jpg'),(6905,808,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-74.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-74-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-74-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-74-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-74-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-74-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-74-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-74-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-74-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-74-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-74-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-74-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-74-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-74-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-74-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579021942\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"151\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6906,809,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-75.jpg'),(6907,809,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-75.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-75-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-75-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-75-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-75-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-75-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-75-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-75-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-75-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-75-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-75-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-75-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-75-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-75-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-75-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579021958\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6908,810,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-76.jpg'),(6909,810,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-76.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-76-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-76-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-76-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-76-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-76-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-76-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-76-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-76-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-76-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-76-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-76-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-76-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-76-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-76-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579022124\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6910,811,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-77.jpg'),(6911,811,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-77.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-77-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-77-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-77-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-77-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-77-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-77-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-77-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-77-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-77-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-77-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-77-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-77-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-77-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-77-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579022182\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6912,812,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-78.jpg'),(6913,812,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-78.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-78-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-78-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-78-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-78-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-78-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-78-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-78-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-78-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-78-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-78-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-78-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-78-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-78-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-78-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579018877\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"25\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6914,813,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-79.jpg'),(6915,813,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-79.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-79-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-79-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-79-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-79-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-79-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-79-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-79-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-79-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-79-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-79-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-79-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-79-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-79-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-79-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579019113\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6916,814,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-80.jpg'),(6917,814,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-80.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-80-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-80-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-80-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-80-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-80-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-80-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-80-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-80-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-80-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-80-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-80-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-80-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-80-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-80-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579019452\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6918,815,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-81.jpg'),(6919,815,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-81.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-81-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-81-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-81-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-81-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-81-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-81-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-81-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-81-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-81-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-81-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-81-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-81-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-81-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-81-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579023845\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"171\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6920,816,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-82.jpg'),(6921,816,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-82.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-82-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-82-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-82-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-82-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-82-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-82-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-82-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-82-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-82-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-82-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-82-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-82-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-82-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-82-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579020587\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6922,817,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-83.jpg'),(6923,817,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-83.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-83-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-83-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-83-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-83-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-83-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-83-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-83-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-83-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-83-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-83-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-83-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-83-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-83-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-83-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579024241\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"113\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6924,818,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-84.jpg'),(6925,818,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-84.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-84-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-84-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-84-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-84-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-84-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-84-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-84-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-84-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-84-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-84-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-84-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-84-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-84-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-84-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579024252\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6926,819,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-85.jpg'),(6927,819,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-85.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-85-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-85-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-85-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-85-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-85-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-85-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-85-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-85-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-85-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-85-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-85-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-85-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-85-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-85-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579024258\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6928,820,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-86.jpg'),(6929,820,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-86.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-86-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-86-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-86-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-86-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-86-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-86-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-86-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-86-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-86-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-86-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-86-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-86-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-86-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-86-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579024643\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6930,821,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-87.jpg'),(6931,821,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-87.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-87-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-87-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-87-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-87-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-87-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-87-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-87-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-87-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-87-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-87-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-87-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-87-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-87-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-87-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579021331\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6932,822,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-88.jpg'),(6933,822,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-88.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-88-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-88-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-88-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-88-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-88-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-88-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-88-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-88-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-88-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-88-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-88-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-88-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-88-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-88-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579021349\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6934,823,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-89.jpg'),(6935,823,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:1600;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-89.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-89-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-89-576x1024.jpg\";s:5:\"width\";i:576;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-89-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-89-768x1365.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-89-864x1536.jpg\";s:5:\"width\";i:864;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-89-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-89-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-89-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-89-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-89-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-89-480x853.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:853;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579021817\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6936,824,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-90.jpg'),(6937,824,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-90.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-90-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-90-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-90-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-90-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-90-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-90-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-90-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-90-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-90-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-90-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-90-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-90-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-90-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-90-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579022188\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6938,825,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-91.jpg'),(6939,825,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-91.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-91-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-91-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-91-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-91-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-91-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-91-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-91-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-91-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-91-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-91-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-91-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-91-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-91-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-91-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579023453\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6940,826,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-92.jpg'),(6941,826,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-92.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-92-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-92-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-92-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-92-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-92-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-92-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-92-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-92-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-92-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-92-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-92-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-92-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-92-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-92-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579023472\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6942,827,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-93.jpg'),(6943,827,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-93.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-93-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-93-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-93-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-93-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-93-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-93-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-93-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-93-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-93-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-93-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-93-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-93-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-93-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-93-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579027111\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"72\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6944,828,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-94.jpg'),(6945,828,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-94.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-94-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-94-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-94-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-94-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-94-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-94-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-94-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-94-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-94-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-94-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-94-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-94-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-94-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-94-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579027333\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6946,829,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-95.jpg'),(6947,829,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-95.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-95-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-95-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-95-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-95-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-95-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-95-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-95-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-95-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-95-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-95-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-95-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-95-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-95-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-95-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579027334\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6948,830,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-96.jpg'),(6949,830,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-96.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-96-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-96-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-96-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-96-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-96-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-96-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-96-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-96-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-96-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-96-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-96-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-96-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-96-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-96-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579023978\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"29\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6950,831,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-97.jpg'),(6951,831,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-97.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-97-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-97-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-97-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-97-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-97-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-97-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-97-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-97-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-97-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-97-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-97-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-97-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-97-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-97-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579024008\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"29\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6952,832,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-98.jpg'),(6953,832,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-98.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-98-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-98-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-98-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-98-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-98-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-98-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-98-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-98-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-98-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-98-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-98-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-98-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-98-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-98-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579024209\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"20\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6954,833,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-99.jpg'),(6955,833,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-99.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-99-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-99-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-99-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-99-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-99-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-99-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-99-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-99-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-99-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-99-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-99-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-99-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-99-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-99-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579024273\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6956,834,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-100.jpg'),(6957,834,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-100.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-100-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-100-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-100-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-100-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-100-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-100-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-100-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-100-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-100-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-100-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-100-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-100-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-100-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-100-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579028034\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6958,835,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-101.jpg'),(6959,835,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-101.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-101-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-101-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-101-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-101-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-101-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-101-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-101-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-101-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-101-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-101-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-101-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-101-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-101-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-101-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579028045\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"84\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6960,836,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-102.jpg'),(6961,836,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-102.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-102-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-102-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-102-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-102-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-102-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-102-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-102-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-102-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-102-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-102-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-102-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-102-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-102-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-102-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579024460\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6962,837,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-103.jpg'),(6963,837,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-103.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-103-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-103-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-103-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-103-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-103-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-103-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-103-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-103-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-103-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-103-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-103-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-103-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-103-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-103-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579028211\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"137\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6964,838,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-104.jpg'),(6965,838,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-104.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-104-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-104-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-104-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-104-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-104-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-104-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-104-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-104-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-104-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-104-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-104-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-104-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-104-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-104-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579024611\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"19\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6966,839,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-105.jpg'),(6967,839,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-105.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-105-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-105-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-105-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-105-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-105-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-105-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-105-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-105-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-105-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-105-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-105-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-105-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-105-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-105-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579028243\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6968,840,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-106.jpg'),(6969,840,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-106.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-106-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-106-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-106-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-106-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-106-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-106-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-106-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-106-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-106-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-106-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-106-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-106-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-106-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-106-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579024656\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6970,841,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-107.jpg'),(6971,841,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-107.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-107-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-107-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-107-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-107-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-107-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-107-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-107-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-107-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-107-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-107-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-107-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-107-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-107-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-107-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579024774\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"31\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6972,842,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-108.jpg'),(6973,842,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-108.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-108-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-108-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-108-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-108-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-108-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-108-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-108-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-108-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-108-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-108-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-108-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-108-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-108-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-108-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579028451\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"147\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6974,843,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-109.jpg'),(6975,843,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-109.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-109-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-109-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-109-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-109-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-109-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-109-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-109-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-109-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-109-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-109-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-109-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-109-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-109-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-109-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579028524\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6976,844,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-110.jpg'),(6977,844,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-110.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-110-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-110-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-110-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-110-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-110-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-110-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-110-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-110-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-110-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-110-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-110-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-110-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-110-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-110-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579028534\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6978,845,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-111.jpg'),(6979,845,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-111.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-111-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-111-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-111-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-111-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-111-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-111-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-111-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-111-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-111-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-111-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-111-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-111-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-111-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-111-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579028720\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6980,846,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-112.jpg'),(6981,846,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-112.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-112-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-112-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-112-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-112-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-112-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-112-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-112-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-112-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-112-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-112-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-112-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-112-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-112-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-112-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579025176\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6982,847,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-113.jpg'),(6983,847,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-113.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-113-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-113-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-113-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-113-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-113-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-113-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-113-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-113-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-113-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-113-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-113-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-113-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-113-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-113-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579028828\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6984,848,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-114.jpg'),(6985,848,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-114.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-114-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-114-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-114-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-114-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-114-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-114-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-114-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-114-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-114-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-114-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-114-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-114-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-114-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-114-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579028886\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6986,849,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-115.jpg'),(6987,849,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-115.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-115-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-115-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-115-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-115-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-115-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-115-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-115-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-115-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-115-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-115-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-115-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-115-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-115-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-115-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579028900\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6988,850,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-116.jpg'),(6989,850,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-116.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-116-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-116-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-116-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-116-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-116-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-116-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-116-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-116-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-116-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-116-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-116-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-116-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-116-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-116-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579028923\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"106\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6990,851,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-117.jpg'),(6991,851,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-117.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-117-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-117-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-117-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-117-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-117-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-117-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-117-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-117-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-117-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-117-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-117-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-117-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-117-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-117-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579028943\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"92\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6992,852,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-118.jpg'),(6993,852,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-118.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-118-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-118-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-118-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-118-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-118-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-118-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-118-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-118-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-118-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-118-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-118-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-118-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-118-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-118-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579029066\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6994,853,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-119.jpg'),(6995,853,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-119.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-119-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-119-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-119-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-119-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-119-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-119-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-119-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-119-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-119-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-119-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-119-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-119-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-119-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-119-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579029100\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6996,854,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-120.jpg'),(6997,854,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-120.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-120-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-120-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-120-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-120-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-120-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-120-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-120-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-120-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-120-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-120-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-120-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-120-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-120-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-120-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579029106\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6998,855,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-121.jpg'),(6999,855,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-121.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-121-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-121-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-121-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-121-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-121-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-121-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-121-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-121-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-121-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-121-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-121-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-121-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-121-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-121-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579029111\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7000,856,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-122.jpg'),(7001,856,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-122.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-122-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-122-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-122-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-122-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-122-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-122-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-122-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-122-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-122-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-122-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-122-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-122-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-122-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-122-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579029149\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"107\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7002,857,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-123.jpg'),(7003,857,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-123.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-123-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-123-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-123-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-123-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-123-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-123-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-123-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-123-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-123-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-123-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-123-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-123-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-123-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-123-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579029481\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"118\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7004,858,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-124.jpg'),(7005,858,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-124.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-124-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-124-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-124-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-124-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-124-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-124-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-124-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-124-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-124-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-124-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-124-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-124-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-124-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-124-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579029623\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"114\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7006,859,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-125.jpg'),(7007,859,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-125.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-125-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-125-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-125-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-125-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-125-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-125-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-125-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-125-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-125-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-125-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-125-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-125-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-125-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-125-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579026047\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7008,860,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-126.jpg'),(7009,860,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-126.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-126-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-126-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-126-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-126-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-126-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-126-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-126-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-126-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-126-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-126-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-126-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-126-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-126-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-126-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579030142\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"122\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7010,861,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-127.jpg'),(7011,861,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-127.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-127-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-127-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-127-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-127-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-127-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-127-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-127-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-127-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-127-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-127-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-127-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-127-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-127-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-127-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579030320\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"86\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7012,862,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-128.jpg'),(7013,862,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-128.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-128-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-128-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-128-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-128-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-128-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-128-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-128-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-128-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-128-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-128-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-128-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-128-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-128-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-128-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579030422\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7014,863,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-129.jpg'),(7015,863,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-129.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-129-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-129-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-129-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-129-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-129-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-129-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-129-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-129-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-129-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-129-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-129-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-129-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-129-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-129-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579028211\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7016,864,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-130.jpg'),(7017,864,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-130.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-130-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-130-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-130-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-130-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-130-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-130-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-130-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-130-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-130-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-130-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-130-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-130-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-130-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-130-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579028230\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7018,865,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-131.jpg'),(7019,865,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:36:\"2020/01/HPG-Media-KINGSVILLE-131.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-131-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-131-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-131-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-131-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-131-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-131-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-131-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-131-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-131-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-131-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-131-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-131-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-131-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:36:\"HPG-Media-KINGSVILLE-131-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579028254\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7020,868,'_wp_attached_file','2020/01/Kingsville-Auctions.png'),(7021,868,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:31:\"2020/01/Kingsville-Auctions.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Kingsville-Auctions-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Kingsville-Auctions-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Kingsville-Auctions-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Kingsville-Auctions-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Kingsville-Auctions-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Kingsville-Auctions-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Kingsville-Auctions-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"Kingsville-Auctions-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"Kingsville-Auctions-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:31:\"Kingsville-Auctions-980x980.png\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:31:\"Kingsville-Auctions-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7022,869,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-96-1.jpg'),(7023,869,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:400;s:4:\"file\";s:37:\"2020/01/HPG-Media-KINGSVILLE-96-1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-96-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-96-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-96-1-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-96-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-96-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-96-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-96-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-96-1-480x240.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579009578\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"29\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(7050,894,'_et_pb_built_for_post_type','page'),(7051,894,'_et_pb_excluded_global_options','[]'),(7052,901,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-18.png'),(7053,901,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:724;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-18.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-18-249x300.png\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-18-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-18-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-18-600x675.png\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-18-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-18-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-18-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-18-480x579.png\";s:5:\"width\";i:480;s:6:\"height\";i:579;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7054,904,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-26.png'),(7055,904,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:724;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-26.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-26-249x300.png\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-26-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-26-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-26-600x675.png\";s:5:\"width\";i:600;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-26-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-26-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-26-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-26-480x579.png\";s:5:\"width\";i:480;s:6:\"height\";i:579;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7056,905,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-27.png'),(7057,905,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:35:\"2020/01/HPG-Media-KINGSVILLE-27.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-27-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-27-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-27-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-27-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-27-800x675.png\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-27-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-27-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-27-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:35:\"HPG-Media-KINGSVILLE-27-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7060,914,'_wp_attached_file','2020/01/HPG-Media-KINGSVILLE-38-1.jpg'),(7061,914,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:37:\"2020/01/HPG-Media-KINGSVILLE-38-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-38-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-38-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-38-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-38-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-38-1-800x675.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-38-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-38-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-38-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:37:\"HPG-Media-KINGSVILLE-38-1-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1578998447\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"73\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(7067,935,'_et_pb_built_for_post_type','page'),(7068,947,'_edit_last','1'),(7069,947,'_edit_lock','1579296251:1'),(7070,948,'_wp_attached_file','2020/01/thumb-maverick.jpg'),(7071,948,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:302;s:6:\"height\";i:151;s:4:\"file\";s:26:\"2020/01/thumb-maverick.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"thumb-maverick-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"thumb-maverick-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7072,949,'_wp_attached_file','2020/01/thumb-wrangler.jpg'),(7073,949,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:302;s:6:\"height\";i:151;s:4:\"file\";s:26:\"2020/01/thumb-wrangler.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"thumb-wrangler-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"thumb-wrangler-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7074,950,'_wp_attached_file','2020/01/Corral.jpg'),(7075,950,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:750;s:6:\"height\";i:225;s:4:\"file\";s:18:\"2020/01/Corral.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Corral-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Corral-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"Corral-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"Corral-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"Corral-510x225.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"Corral-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:18:\"Corral-480x144.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7076,951,'_wp_attached_file','2020/01/closed.jpg'),(7077,951,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:650;s:6:\"height\";i:286;s:4:\"file\";s:18:\"2020/01/closed.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"closed-300x132.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"closed-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"closed-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"closed-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"closed-510x286.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"closed-400x286.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:18:\"closed-480x211.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7078,952,'_wp_attached_file','2020/01/hay-trailer.jpg'),(7079,952,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:373;s:6:\"height\";i:286;s:4:\"file\";s:23:\"2020/01/hay-trailer.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"hay-trailer-300x230.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"hay-trailer-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"hay-trailer-373x250.jpg\";s:5:\"width\";i:373;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"hay-trailer-373x284.jpg\";s:5:\"width\";i:373;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7080,947,'_thumbnail_id','948'),(7082,947,'_et_post_bg_color','#ffffff'),(7083,947,'_et_post_bg_layout','light'),(7084,947,'_et_pb_show_title','on'),(7085,947,'_et_pb_post_hide_nav','default'),(7086,947,'_et_pb_page_layout','et_right_sidebar'),(7087,947,'_et_pb_side_nav','off'),(7088,947,'_et_pb_use_builder','on'),(7089,947,'_et_pb_first_image',''),(7090,947,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Trailer Info</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_2_3 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<br />\nDuis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident sunt in culpa qui officia deserunt mollit anim.Â Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n			<div id=\"et_pb_contact_form_0\" class=\"et_pb_module et_pb_contact_form_0 et_pb_contact_form_container clearfix\" data-form_unique_num=\"0\">\n				\n				\n				<h1 class=\"et_pb_contact_main_title\">Contact Us About Availability</h1>\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://kingsvillelivestock.com/wp-json/wp/v2/posts/947\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_0 et_pb_contact_field_half\" data-id=\"name\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_name_0\" class=\"et_pb_contact_form_label\">Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_0\" class=\"input\" value=\"\" name=\"et_pb_contact_name_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_1 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"phone\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_phone_0\" class=\"et_pb_contact_form_label\">Phone</label>\n				<input type=\"text\" id=\"et_pb_contact_phone_0\" class=\"input\" value=\"\" name=\"et_pb_contact_phone_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"phone\" placeholder=\"Phone\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_2 et_pb_contact_field_half\" data-id=\"email\" data-type=\"email\">\n				\n				\n				<label for=\"et_pb_contact_email_0\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_0\" class=\"input\" value=\"\" name=\"et_pb_contact_email_0\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_3 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"trailer_type\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_trailer_type_0\" class=\"et_pb_contact_form_label\">What type of trailer are you interested in?</label>\n				<input type=\"text\" id=\"et_pb_contact_trailer_type_0\" class=\"input\" value=\"\" name=\"et_pb_contact_trailer_type_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"trailer_type\" placeholder=\"What type of trailer are you interested in?\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_4 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				<label for=\"et_pb_contact_message_0\" class=\"et_pb_contact_form_label\">Message</label>\n				<textarea name=\"et_pb_contact_message_0\" id=\"et_pb_contact_message_0\" class=\"et_pb_contact_message input\" data-required_mark=\"required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message\"></textarea>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_0\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n			<div class=\"et_pb_contact_right\">\n				<p class=\"clearfix\">\n					<span class=\"et_pb_contact_captcha_question\">13 + 5</span> = <input type=\"text\" size=\"2\" class=\"input et_pb_contact_captcha\" data-first_digit=\"13\" data-second_digit=\"5\" value=\"\" name=\"et_pb_contact_captcha_0\" data-required_mark=\"required\" autocomplete=\"off\">\n				</p>\n			</div><!-- .et_pb_contact_right -->\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button\">SEND</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-0\" name=\"_wpnonce-et-pb-contact-form-submitted-0\" value=\"a58490147f\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-json/wp/v2/posts/947\" />\n					</form>\n				</div> <!-- .et_pb_contact -->\n			</div> <!-- .et_pb_contact_form_container -->\n			\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(7091,947,'_et_pb_truncate_post_date','2021-07-25 19:57:17'),(7092,947,'_et_pb_old_content','<h1>32\' 6-Bale Hay Trailers - 10 ply Tires - $4850</h1>'),(7105,947,'_et_pb_built_for_post_type','page'),(7107,947,'_et_pb_ab_subjects',''),(7108,947,'_et_pb_enable_shortcode_tracking',''),(7109,947,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"947\" /]'),(7110,947,'_et_pb_custom_css',''),(7111,947,'_et_pb_gutter_width','3'),(7112,947,'_et_builder_version','VB|Divi|4.2'),(7113,947,'_et_pb_show_page_creation','off'),(7118,947,'_wp_old_slug','32-6-bale-hay-trailers'),(7119,970,'_edit_last','1'),(7120,970,'_edit_lock','1579296273:1'),(7121,970,'_thumbnail_id','952'),(7123,970,'_et_post_bg_color','#ffffff'),(7124,970,'_et_post_bg_layout','light'),(7125,970,'_et_pb_show_title','on'),(7126,970,'_et_pb_post_hide_nav','default'),(7127,970,'_et_pb_page_layout','et_right_sidebar'),(7128,970,'_et_pb_side_nav','off'),(7129,970,'_et_pb_use_builder','on'),(7130,970,'_et_pb_first_image',''),(7131,970,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Trailer Info</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_2_3 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_5 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">32&#8242; 6-Bale Hay Trailers &#8211; 10 ply Tires<br />\nPrice: $4850</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n			<div id=\"et_pb_contact_form_2\" class=\"et_pb_module et_pb_contact_form_2 et_pb_contact_form_container clearfix\" data-form_unique_num=\"2\">\n				\n				\n				<h1 class=\"et_pb_contact_main_title\">Contact Us About Availability</h1>\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://kingsvillelivestock.com/?s=Trailers\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_10 et_pb_contact_field_half\" data-id=\"name\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_name_2\" class=\"et_pb_contact_form_label\">Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_2\" class=\"input\" value=\"\" name=\"et_pb_contact_name_2\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_11 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"phone\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_phone_2\" class=\"et_pb_contact_form_label\">Phone</label>\n				<input type=\"text\" id=\"et_pb_contact_phone_2\" class=\"input\" value=\"\" name=\"et_pb_contact_phone_2\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"phone\" placeholder=\"Phone\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_12 et_pb_contact_field_half\" data-id=\"email\" data-type=\"email\">\n				\n				\n				<label for=\"et_pb_contact_email_2\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_2\" class=\"input\" value=\"\" name=\"et_pb_contact_email_2\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_13 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"trailer_type\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_trailer_type_2\" class=\"et_pb_contact_form_label\">What type of trailer are you interested in?</label>\n				<input type=\"text\" id=\"et_pb_contact_trailer_type_2\" class=\"input\" value=\"\" name=\"et_pb_contact_trailer_type_2\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"trailer_type\" placeholder=\"What type of trailer are you interested in?\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_14 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				<label for=\"et_pb_contact_message_2\" class=\"et_pb_contact_form_label\">Message</label>\n				<textarea name=\"et_pb_contact_message_2\" id=\"et_pb_contact_message_2\" class=\"et_pb_contact_message input\" data-required_mark=\"required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message\"></textarea>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_2\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n			<div class=\"et_pb_contact_right\">\n				<p class=\"clearfix\">\n					<span class=\"et_pb_contact_captcha_question\">13 + 15</span> = <input type=\"text\" size=\"2\" class=\"input et_pb_contact_captcha\" data-first_digit=\"13\" data-second_digit=\"15\" value=\"\" name=\"et_pb_contact_captcha_2\" data-required_mark=\"required\" autocomplete=\"disabled\">\n				</p>\n			</div> <!-- .et_pb_contact_right -->\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button\">SEND</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-2\" name=\"_wpnonce-et-pb-contact-form-submitted-2\" value=\"c423f80eb8\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/?s=Trailers\" />\n					</form>\n				</div> <!-- .et_pb_contact -->\n			</div> <!-- .et_pb_contact_form_container -->\n			\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(7132,970,'_et_pb_truncate_post_date','2020-03-20 23:00:54'),(7133,970,'_et_pb_old_content','<h1>32\' 6-Bale Hay Trailers - 10 ply Tires - $4850</h1>'),(7136,970,'_et_pb_built_for_post_type','page'),(7138,970,'_et_pb_ab_subjects',''),(7139,970,'_et_pb_enable_shortcode_tracking',''),(7140,970,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"970\" /]'),(7141,970,'_et_pb_custom_css',''),(7142,970,'_et_pb_gutter_width','3'),(7143,970,'_et_builder_version','VB|Divi|4.2'),(7144,970,'_et_pb_show_page_creation','off'),(7147,987,'_et_pb_use_builder','on'),(7148,987,'_et_pb_show_page_creation','on'),(7150,992,'_et_autogenerated_title','0'),(7151,992,'_et_default','1'),(7152,992,'_et_enabled','1'),(7153,992,'_et_header_layout_id','0'),(7154,992,'_et_header_layout_enabled','1'),(7155,992,'_et_body_layout_id','0'),(7156,992,'_et_body_layout_enabled','1'),(7157,992,'_et_footer_layout_id','0'),(7158,992,'_et_footer_layout_enabled','1'),(7160,993,'_et_autogenerated_title','1'),(7161,993,'_et_default','0'),(7162,993,'_et_enabled','1'),(7163,993,'_et_header_layout_id','0'),(7164,993,'_et_header_layout_enabled','1'),(7165,993,'_et_body_layout_id','987'),(7166,993,'_et_body_layout_enabled','1'),(7167,993,'_et_footer_layout_id','0'),(7168,993,'_et_footer_layout_enabled','1'),(7169,993,'_et_use_on','singular:taxonomy:category:term:id:13'),(7183,1005,'_edit_last','1'),(7184,1005,'_edit_lock','1579296278:1'),(7185,1005,'_thumbnail_id','952'),(7186,1005,'_et_post_bg_color','#ffffff'),(7187,1005,'_et_post_bg_layout','light'),(7188,1005,'_et_pb_show_title','on'),(7189,1005,'_et_pb_post_hide_nav','default'),(7190,1005,'_et_pb_page_layout','et_right_sidebar'),(7191,1005,'_et_pb_side_nav','off'),(7192,1005,'_et_pb_use_builder','on'),(7193,1005,'_et_pb_first_image',''),(7194,1005,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Trailer Info</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_2_3 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_3 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">36&#8242; 7-Bale Hay Trailers &#8211; 10 ply Tires<br />\nPrice: $4950</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n			<div id=\"et_pb_contact_form_1\" class=\"et_pb_module et_pb_contact_form_1 et_pb_contact_form_container clearfix\" data-form_unique_num=\"1\">\n				\n				\n				<h1 class=\"et_pb_contact_main_title\">Contact Us About Availability</h1>\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://kingsvillelivestock.com/?s=Trailers\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_5 et_pb_contact_field_half\" data-id=\"name\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_name_1\" class=\"et_pb_contact_form_label\">Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_1\" class=\"input\" value=\"\" name=\"et_pb_contact_name_1\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_6 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"phone\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_phone_1\" class=\"et_pb_contact_form_label\">Phone</label>\n				<input type=\"text\" id=\"et_pb_contact_phone_1\" class=\"input\" value=\"\" name=\"et_pb_contact_phone_1\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"phone\" placeholder=\"Phone\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_7 et_pb_contact_field_half\" data-id=\"email\" data-type=\"email\">\n				\n				\n				<label for=\"et_pb_contact_email_1\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_1\" class=\"input\" value=\"\" name=\"et_pb_contact_email_1\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_8 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"trailer_type\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_trailer_type_1\" class=\"et_pb_contact_form_label\">What type of trailer are you interested in?</label>\n				<input type=\"text\" id=\"et_pb_contact_trailer_type_1\" class=\"input\" value=\"\" name=\"et_pb_contact_trailer_type_1\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"trailer_type\" placeholder=\"What type of trailer are you interested in?\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_9 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				<label for=\"et_pb_contact_message_1\" class=\"et_pb_contact_form_label\">Message</label>\n				<textarea name=\"et_pb_contact_message_1\" id=\"et_pb_contact_message_1\" class=\"et_pb_contact_message input\" data-required_mark=\"required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message\"></textarea>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_1\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n			<div class=\"et_pb_contact_right\">\n				<p class=\"clearfix\">\n					<span class=\"et_pb_contact_captcha_question\">9 + 9</span> = <input type=\"text\" size=\"2\" class=\"input et_pb_contact_captcha\" data-first_digit=\"9\" data-second_digit=\"9\" value=\"\" name=\"et_pb_contact_captcha_1\" data-required_mark=\"required\" autocomplete=\"disabled\">\n				</p>\n			</div> <!-- .et_pb_contact_right -->\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button\">SEND</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-1\" name=\"_wpnonce-et-pb-contact-form-submitted-1\" value=\"c423f80eb8\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/?s=Trailers\" />\n					</form>\n				</div> <!-- .et_pb_contact -->\n			</div> <!-- .et_pb_contact_form_container -->\n			\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(7195,1005,'_et_pb_truncate_post_date','2020-03-20 23:00:54'),(7196,1005,'_et_pb_old_content','<h1>36\' 7-Bale Hay Trailers - 10 ply Tires - $4950</h1>'),(7198,1005,'_et_pb_built_for_post_type','page'),(7199,1005,'_et_pb_ab_subjects',''),(7200,1005,'_et_pb_enable_shortcode_tracking',''),(7201,1005,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1005\" /]'),(7202,1005,'_et_pb_custom_css',''),(7203,1005,'_et_pb_gutter_width','3'),(7204,1005,'_et_builder_version','VB|Divi|4.2'),(7205,1005,'_et_pb_show_page_creation','off'),(7207,1011,'_et_pb_row_layout','4_4'),(7208,1011,'_et_pb_built_for_post_type','post'),(7209,1014,'_et_pb_module_type','et_pb_contact_form'),(7210,1014,'_et_pb_excluded_global_options','[]'),(7211,1014,'_et_pb_built_for_post_type','post'),(7214,1017,'_edit_last','1'),(7215,1017,'_edit_lock','1579296284:1'),(7217,1017,'_et_post_bg_color','#ffffff'),(7218,1017,'_et_post_bg_layout','light'),(7219,1017,'_et_pb_show_title','on'),(7220,1017,'_et_pb_post_hide_nav','default'),(7221,1017,'_et_pb_page_layout','et_right_sidebar'),(7222,1017,'_et_pb_side_nav','off'),(7223,1017,'_et_pb_use_builder','on'),(7224,1017,'_et_pb_first_image',''),(7225,1017,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Trailer Info</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_2_3 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">40&#8242; 8-Bale Hay Trailers &#8211; 14 ply Tires<br />\nPrice: $5550</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n			<div id=\"et_pb_contact_form_0\" class=\"et_pb_module et_pb_contact_form_0 et_pb_contact_form_container clearfix\" data-form_unique_num=\"0\">\n				\n				\n				<h1 class=\"et_pb_contact_main_title\">Contact Us About Availability</h1>\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://kingsvillelivestock.com/?s=Trailers\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_0 et_pb_contact_field_half\" data-id=\"name\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_name_0\" class=\"et_pb_contact_form_label\">Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_0\" class=\"input\" value=\"\" name=\"et_pb_contact_name_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_1 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"phone\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_phone_0\" class=\"et_pb_contact_form_label\">Phone</label>\n				<input type=\"text\" id=\"et_pb_contact_phone_0\" class=\"input\" value=\"\" name=\"et_pb_contact_phone_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"phone\" placeholder=\"Phone\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_2 et_pb_contact_field_half\" data-id=\"email\" data-type=\"email\">\n				\n				\n				<label for=\"et_pb_contact_email_0\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_0\" class=\"input\" value=\"\" name=\"et_pb_contact_email_0\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_3 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"trailer_type\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_trailer_type_0\" class=\"et_pb_contact_form_label\">What type of trailer are you interested in?</label>\n				<input type=\"text\" id=\"et_pb_contact_trailer_type_0\" class=\"input\" value=\"\" name=\"et_pb_contact_trailer_type_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"trailer_type\" placeholder=\"What type of trailer are you interested in?\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_4 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				<label for=\"et_pb_contact_message_0\" class=\"et_pb_contact_form_label\">Message</label>\n				<textarea name=\"et_pb_contact_message_0\" id=\"et_pb_contact_message_0\" class=\"et_pb_contact_message input\" data-required_mark=\"required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message\"></textarea>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_0\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n			<div class=\"et_pb_contact_right\">\n				<p class=\"clearfix\">\n					<span class=\"et_pb_contact_captcha_question\">11 + 12</span> = <input type=\"text\" size=\"2\" class=\"input et_pb_contact_captcha\" data-first_digit=\"11\" data-second_digit=\"12\" value=\"\" name=\"et_pb_contact_captcha_0\" data-required_mark=\"required\" autocomplete=\"disabled\">\n				</p>\n			</div> <!-- .et_pb_contact_right -->\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button\">SEND</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-0\" name=\"_wpnonce-et-pb-contact-form-submitted-0\" value=\"c423f80eb8\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/?s=Trailers\" />\n					</form>\n				</div> <!-- .et_pb_contact -->\n			</div> <!-- .et_pb_contact_form_container -->\n			\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(7226,1017,'_et_pb_truncate_post_date','2020-03-20 23:00:54'),(7227,1017,'_et_pb_old_content','<h1>40\' 8-Bale Hay Trailers - 14 ply Tires - $5550</h1>'),(7230,1017,'_et_pb_built_for_post_type','page'),(7232,1017,'_et_pb_ab_subjects',''),(7233,1017,'_et_pb_enable_shortcode_tracking',''),(7234,1017,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1017\" /]'),(7235,1017,'_et_pb_custom_css',''),(7236,1017,'_et_pb_gutter_width','3'),(7238,1017,'_et_builder_version','VB|Divi|4.2'),(7239,1017,'_et_pb_show_page_creation','off'),(7241,1017,'_thumbnail_id','952'),(7244,1023,'_edit_last','1'),(7245,1023,'_edit_lock','1579296065:1'),(7246,1023,'_thumbnail_id','950'),(7248,1023,'_et_post_bg_color','#ffffff'),(7249,1023,'_et_post_bg_layout','light'),(7250,1023,'_et_pb_show_title','on'),(7251,1023,'_et_pb_post_hide_nav','default'),(7252,1023,'_et_pb_page_layout','et_right_sidebar'),(7253,1023,'_et_pb_side_nav','off'),(7254,1023,'_et_pb_use_builder','on'),(7255,1023,'_et_pb_first_image',''),(7256,1023,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_1_3 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Trailer Info</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_2_3 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7 et_animated  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Diamond &#8220;W&#8221; Wheel Corrals</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n			<div id=\"et_pb_contact_form_0\" class=\"et_pb_module et_pb_contact_form_0 et_pb_contact_form_container clearfix\" data-form_unique_num=\"0\">\n				\n				\n				<h1 class=\"et_pb_contact_main_title\">Contact Us About Availability</h1>\n				<div class=\"et-pb-contact-message\"></div>\n				\n				<div class=\"et_pb_contact\">\n					<form class=\"et_pb_contact_form clearfix\" method=\"post\" action=\"https://kingsvillelivestock.com/author/admin/\">\n						<p class=\"et_pb_contact_field et_pb_contact_field_0 et_pb_contact_field_half\" data-id=\"name\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_name_0\" class=\"et_pb_contact_form_label\">Name</label>\n				<input type=\"text\" id=\"et_pb_contact_name_0\" class=\"input\" value=\"\" name=\"et_pb_contact_name_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"name\" placeholder=\"Name\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_1 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"phone\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_phone_0\" class=\"et_pb_contact_form_label\">Phone</label>\n				<input type=\"text\" id=\"et_pb_contact_phone_0\" class=\"input\" value=\"\" name=\"et_pb_contact_phone_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"phone\" placeholder=\"Phone\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_2 et_pb_contact_field_half\" data-id=\"email\" data-type=\"email\">\n				\n				\n				<label for=\"et_pb_contact_email_0\" class=\"et_pb_contact_form_label\">Email Address</label>\n				<input type=\"text\" id=\"et_pb_contact_email_0\" class=\"input\" value=\"\" name=\"et_pb_contact_email_0\" data-required_mark=\"required\" data-field_type=\"email\" data-original_id=\"email\" placeholder=\"Email Address\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_3 et_pb_contact_field_half et_pb_contact_field_last\" data-id=\"trailer_type\" data-type=\"input\">\n				\n				\n				<label for=\"et_pb_contact_trailer_type_0\" class=\"et_pb_contact_form_label\">What type of trailer are you interested in?</label>\n				<input type=\"text\" id=\"et_pb_contact_trailer_type_0\" class=\"input\" value=\"\" name=\"et_pb_contact_trailer_type_0\" data-required_mark=\"required\" data-field_type=\"input\" data-original_id=\"trailer_type\" placeholder=\"What type of trailer are you interested in?\">\n			</p><p class=\"et_pb_contact_field et_pb_contact_field_4 et_pb_contact_field_last\" data-id=\"message\" data-type=\"text\">\n				\n				\n				<label for=\"et_pb_contact_message_0\" class=\"et_pb_contact_form_label\">Message</label>\n				<textarea name=\"et_pb_contact_message_0\" id=\"et_pb_contact_message_0\" class=\"et_pb_contact_message input\" data-required_mark=\"required\" data-field_type=\"text\" data-original_id=\"message\" placeholder=\"Message\"></textarea>\n			</p>\n						<input type=\"hidden\" value=\"et_contact_proccess\" name=\"et_pb_contactform_submit_0\"/>\n						<div class=\"et_contact_bottom_container\">\n							\n			<div class=\"et_pb_contact_right\">\n				<p class=\"clearfix\">\n					<span class=\"et_pb_contact_captcha_question\">6 + 9</span> = <input type=\"text\" size=\"2\" class=\"input et_pb_contact_captcha\" data-first_digit=\"6\" data-second_digit=\"9\" value=\"\" name=\"et_pb_contact_captcha_0\" data-required_mark=\"required\" autocomplete=\"off\">\n				</p>\n			</div>\n							<button type=\"submit\" name=\"et_builder_submit_button\" class=\"et_pb_contact_submit et_pb_button\">SEND</button>\n						</div>\n						<input type=\"hidden\" id=\"_wpnonce-et-pb-contact-form-submitted-0\" name=\"_wpnonce-et-pb-contact-form-submitted-0\" value=\"bf4c974e45\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/author/admin/\" />\n					</form>\n				</div>\n			</div>\n			\n			</div>\n				\n				\n			</div>\n				\n				\n			</div>\n'),(7257,1023,'_et_pb_truncate_post_date','2021-10-14 14:14:07'),(7258,1023,'_et_pb_old_content','<p>Diamond \"W\" Wheel Corrals</p>'),(7261,1023,'_et_pb_built_for_post_type','page'),(7263,1023,'_et_pb_ab_subjects',''),(7264,1023,'_et_pb_enable_shortcode_tracking',''),(7265,1023,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1023\" /]'),(7266,1023,'_et_pb_custom_css',''),(7267,1023,'_et_pb_gutter_width','3'),(7268,1023,'_et_builder_version','VB|Divi|4.2'),(7269,1023,'_et_pb_show_page_creation','off'),(7282,1033,'_wp_attached_file','2020/01/logo.png'),(7283,1033,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:220;s:6:\"height\";i:79;s:4:\"file\";s:16:\"2020/01/logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"logo-150x79.png\";s:5:\"width\";i:150;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7284,1033,'_wp_attachment_image_alt','Coose Trailer MFG., INC.'),(7285,1034,'_wp_attached_file','2020/01/Eby-logo-flat-CMYK.png'),(7286,1034,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1772;s:6:\"height\";i:919;s:4:\"file\";s:30:\"2020/01/Eby-logo-flat-CMYK.png\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Eby-logo-flat-CMYK-300x156.png\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Eby-logo-flat-CMYK-1024x531.png\";s:5:\"width\";i:1024;s:6:\"height\";i:531;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Eby-logo-flat-CMYK-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Eby-logo-flat-CMYK-768x398.png\";s:5:\"width\";i:768;s:6:\"height\";i:398;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"Eby-logo-flat-CMYK-1536x797.png\";s:5:\"width\";i:1536;s:6:\"height\";i:797;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Eby-logo-flat-CMYK-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Eby-logo-flat-CMYK-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Eby-logo-flat-CMYK-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Eby-logo-flat-CMYK-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"Eby-logo-flat-CMYK-1080x560.png\";s:5:\"width\";i:1080;s:6:\"height\";i:560;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Eby-logo-flat-CMYK-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:31:\"Eby-logo-flat-CMYK-1280x664.png\";s:5:\"width\";i:1280;s:6:\"height\";i:664;s:9:\"mime-type\";s:9:\"image/png\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:30:\"Eby-logo-flat-CMYK-980x508.png\";s:5:\"width\";i:980;s:6:\"height\";i:508;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"Eby-logo-flat-CMYK-480x249.png\";s:5:\"width\";i:480;s:6:\"height\";i:249;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7287,1034,'_wp_attachment_image_alt','EBY Trailers'),(7288,1035,'_wp_attached_file','2020/01/2020-01-17_16-36-23.png'),(7289,1035,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:894;s:6:\"height\";i:147;s:4:\"file\";s:31:\"2020/01/2020-01-17_16-36-23.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"2020-01-17_16-36-23-300x49.png\";s:5:\"width\";i:300;s:6:\"height\";i:49;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"2020-01-17_16-36-23-150x147.png\";s:5:\"width\";i:150;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"2020-01-17_16-36-23-768x126.png\";s:5:\"width\";i:768;s:6:\"height\";i:126;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"2020-01-17_16-36-23-400x147.png\";s:5:\"width\";i:400;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"2020-01-17_16-36-23-400x147.png\";s:5:\"width\";i:400;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"2020-01-17_16-36-23-510x147.png\";s:5:\"width\";i:510;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"2020-01-17_16-36-23-400x147.png\";s:5:\"width\";i:400;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"2020-01-17_16-36-23-480x79.png\";s:5:\"width\";i:480;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7290,1035,'_wp_attachment_image_alt','EZ-Haul Hay Handler'),(7291,1062,'_et_pb_module_type','et_pb_map'),(7292,1062,'_et_pb_excluded_global_options','[]'),(7293,1062,'_et_pb_built_for_post_type','page'),(7302,1092,'_edit_last','1'),(7303,1092,'_edit_lock','1579832270:1'),(7304,1092,'_et_post_bg_color','#ffffff'),(7305,1092,'_et_post_bg_layout','light'),(7306,1092,'_et_pb_show_title','on'),(7307,1092,'_et_pb_post_hide_nav','default'),(7308,1092,'_et_pb_page_layout','et_right_sidebar'),(7309,1092,'_et_pb_side_nav','off'),(7310,1092,'_et_pb_use_builder','on'),(7311,1092,'_et_pb_first_image',''),(7312,1092,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Kingsville Livestock Auction January 7th, 2020 4185 hd; December 17th sale 1406hd; year ago 3907 hd. Feeder cattle 650 &amp; up sold steady. Feeder cattle 650 &amp; down sold 10-15 higher. Listen for our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$190.50</p>\n<p>400-500 </p>\n<p>$160.00-$193.00</p>\n<p>500-600</p>\n<p>$150.00-$180.50</p>\n<p>600-700</p>\n<p>$140.00-$165.00</p>\n<p>700-800</p>\n<p>$134.00-$160.00</p>\n<p>800-900<br />\n$130.00-$149.85</p>\n<p>900-1000Â <br />\n$124.00-$131.25</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400Â </p>\n<p>$150.00-$175.00</p>\n<p>400-500Â </p>\n<p>$150.00-$177.50</p>\n<p>500-600Â </p>\n<p>$140.00-$164.00</p>\n<p>600-700Â </p>\n<p>$133.00-$154.00</p>\n<p>700-800Â </p>\n<p>$125.00-$145.00</p>\n<p>800-900Â </p>\n<p>$117.00-$125.85</p>\n<p>900-1000Â </p>\n<p>$115.00-$121.75</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows</p>\n<p>Fat Cows</p>\n<p>$58 &#8211; $70</p>\n<p>Medium Kind<br />\n$44 &#8211; $53</p>\n<p>Low Yielding<br />\n$35 &#8211; $43</p>\n<p>Bulls<br />\n$70 &#8211; $86.50</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder Bulls</p>\n<p>300-500<br />\n$145 &#8211; $187.50</p>\n<p>500-700<br />\n$120 &#8211; $155</p>\n<p>700-800<br />\n$110 &#8211; $122</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>499lbs @ $189</p>\n<p>STEERS<br />\n848lbs @ $149.85</p>\n<p>947lbs @ $131.75</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"http://kingsvillelivestock.com/#upcoming-auctions\">UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(7313,1092,'_et_pb_truncate_post_date','2020-04-14 16:19:03'),(7314,1092,'_et_pb_old_content',''),(7316,1092,'_et_pb_built_for_post_type','page'),(7317,1092,'_et_pb_ab_subjects',''),(7318,1092,'_et_pb_enable_shortcode_tracking',''),(7319,1092,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1092\" /]'),(7320,1092,'_et_pb_custom_css',''),(7321,1092,'_et_pb_gutter_width','3'),(7323,1092,'_et_builder_version','VB|Divi|4.2'),(7324,1092,'_et_pb_show_page_creation','off'),(7326,1118,'_edit_last','1'),(7327,1118,'_wp_page_template','default'),(7328,1118,'_et_pb_post_hide_nav','default'),(7329,1118,'_et_pb_page_layout','et_right_sidebar'),(7330,1118,'_et_pb_side_nav','off'),(7331,1118,'_et_pb_use_builder','on'),(7332,1118,'_et_pb_first_image',''),(7333,1118,'_et_pb_truncate_post',''),(7334,1118,'_et_pb_truncate_post_date',''),(7335,1118,'_et_pb_old_content',''),(7336,1118,'_edit_lock','1655139471:2'),(7338,1118,'_et_pb_built_for_post_type','page'),(7339,1118,'_et_pb_ab_subjects',''),(7340,1118,'_et_pb_enable_shortcode_tracking',''),(7341,1118,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1118\" /]'),(7342,1118,'_et_pb_custom_css',''),(7343,1118,'_et_pb_gutter_width','3'),(7345,1118,'_et_builder_version','VB|Divi|4.9.10'),(7346,1118,'_et_pb_show_page_creation','off'),(7347,1123,'_menu_item_type','post_type'),(7348,1123,'_menu_item_menu_item_parent','0'),(7349,1123,'_menu_item_object_id','1118'),(7350,1123,'_menu_item_object','page'),(7351,1123,'_menu_item_target',''),(7352,1123,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7353,1123,'_menu_item_xfn',''),(7354,1123,'_menu_item_url',''),(7355,1118,'_thumbnail_id','0'),(7357,1092,'_wp_old_date','2020-01-23'),(7358,1092,'_thumbnail_id','786'),(7363,1139,'_edit_last','1'),(7364,1139,'_edit_lock','1579833315:1'),(7365,1139,'_et_post_bg_color','#ffffff'),(7366,1139,'_et_post_bg_layout','light'),(7367,1139,'_et_pb_show_title','on'),(7368,1139,'_et_pb_post_hide_nav','default'),(7369,1139,'_et_pb_page_layout','et_right_sidebar'),(7370,1139,'_et_pb_side_nav','off'),(7371,1139,'_et_pb_use_builder','on'),(7372,1139,'_et_pb_first_image',''),(7373,1139,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">January 14th, 2020 1135 hd; January 7th sale 4185 hd; year ago 2103 hd. Feeders sold steady. Smaller run due to bad weather &amp; rain, making it difficult to load cattle. Listen for our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00 &#8211; $184.00</p>\n<p>400-500 </p>\n<p>$155.00 &#8211; $184.00</p>\n<p>500-600</p>\n<p>$150.00 &#8211; $178.00</p>\n<p>600-700</p>\n<p>$140.00 &#8211; $163.00</p>\n<p>700-800</p>\n<p>$130.00 &#8211; $145.00</p>\n<p>800-900<br />\n$120.00 &#8211; $125.00</p>\n<p>900-1000Â <br />\nNo Test</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400Â </p>\n<p>$130.00-$154.00</p>\n<p>400-500Â </p>\n<p>$140.00-$158.50</p>\n<p>500-600Â </p>\n<p>$134.00-$161.50</p>\n<p>600-700Â </p>\n<p>$127.00-$143.50</p>\n<p>700-800Â </p>\n<p>$125.00-$139.25</p>\n<p>800-900Â </p>\n<p>$117.00-$124.50</p>\n<p>900-1000Â </p>\n<p>$105.00-$110.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows</p>\n<p>Fat Cows</p>\n<p>$58 &#8211; $70</p>\n<p>Medium Kind<br />\n$41 &#8211; $51</p>\n<p>Low Yielding<br />\n$24 &#8211; $40</p>\n<p>Bulls<br />\n$68 &#8211; $85</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder Bulls</p>\n<p>300-500<br />\n$140 &#8211; $185</p>\n<p>500-700<br />\n$120 &#8211; $145</p>\n<p>700-800<br />\n$110 &#8211; $122</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>HEIFERS<br />\n638lbs @ $143.75</p>\n<p>STEERS<br />\n610lbs @ $163.75</p>\n<p>788lbs @ $143</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"http://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(7374,1139,'_et_pb_truncate_post_date','2021-07-25 19:50:48'),(7375,1139,'_et_pb_old_content',''),(7377,1139,'_et_pb_built_for_post_type','page'),(7378,1139,'_et_pb_ab_subjects',''),(7379,1139,'_et_pb_enable_shortcode_tracking',''),(7380,1139,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1139\" /]'),(7381,1139,'_et_pb_custom_css',''),(7382,1139,'_et_pb_gutter_width','3'),(7384,1139,'_et_builder_version','VB|Divi|4.2'),(7385,1139,'_et_pb_show_page_creation','off'),(7387,1139,'_thumbnail_id','786'),(7392,1152,'_edit_last','1'),(7393,1152,'_edit_lock','1580930139:2'),(7394,1152,'_thumbnail_id','786'),(7395,1152,'_et_post_bg_color','#ffffff'),(7396,1152,'_et_post_bg_layout','light'),(7397,1152,'_et_pb_show_title','on'),(7398,1152,'_et_pb_post_hide_nav','default'),(7399,1152,'_et_pb_page_layout','et_right_sidebar'),(7400,1152,'_et_pb_side_nav','off'),(7401,1152,'_et_pb_use_builder','on'),(7402,1152,'_et_pb_first_image',''),(7403,1152,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">January 21st, 2020 2475 hd; January 14th sale 1135 hd; year ago 2817 hd.Feeder steers sold firm to 5 higher. Feeder heifers sold 3-6 lower. Listen for our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$200.00</p>\n<p>400-500 </p>\n<p>$160.00-$190.00</p>\n<p>500-600</p>\n<p>$150.00-$185.00</p>\n<p>600-700</p>\n<p>$134.00-$163.00</p>\n<p>700-800</p>\n<p>$134.00-$147.00</p>\n<p>800-900<br />\n$121.00-$141.25</p>\n<p>900-1000Â <br />\n$116.00-$123.25</p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400Â </p>\n<p>$145.00-$168.00</p>\n<p>400-500Â </p>\n<p>$140.00-$163.50</p>\n<p>500-600Â </p>\n<p>$134.00-$154.50</p>\n<p>600-700Â </p>\n<p>$128.00-$140.00</p>\n<p>700-800Â </p>\n<p>$125.00-$132.50</p>\n<p>800-900Â </p>\n<p>$115.00-$123.75</p>\n<p>900-1000Â </p>\n<p>$100.00-$108.00</p></div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows</p>\n<p>Fat Cows</p>\n<p>$60 &#8211; $72</p>\n<p>Medium Kind<br />\n$51 &#8211; $62</p>\n<p>Low Yielding<br />\n$41 &#8211; $50</p>\n<p>Bulls<br />\n$64 &#8211; $76</p></div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder Bulls</p>\n<p>300-500<br />\n$150 &#8211; $182.50</p>\n<p>500-700<br />\n$118 &#8211; $149</p>\n<p>700-800<br />\n$112 &#8211; $122</p></div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n665lbs @ $136</p>\n<p>683lbs @ $140</p>\n<p>STEERS<br />\n565lbs @ $176</p>\n<p>620lbs @ $163</p>\n<p>728lbs @ $148</p>\n<p>805lbs @ $140</p></div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"http://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div>\n'),(7404,1152,'_et_pb_truncate_post_date','2021-10-14 14:14:06'),(7405,1152,'_et_pb_old_content',''),(7407,1152,'_et_pb_built_for_post_type','page'),(7408,1152,'_et_pb_ab_subjects',''),(7409,1152,'_et_pb_enable_shortcode_tracking',''),(7410,1152,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1152\" /]'),(7411,1152,'_et_pb_custom_css',''),(7412,1152,'_et_pb_gutter_width','3'),(7413,1152,'_et_builder_version','VB|Divi|4.2'),(7414,1152,'_et_pb_show_page_creation','off'),(7477,1182,'_wp_attached_file','2020/01/Selling-Docs.pdf'),(7478,1182,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:20:\"Selling-Docs-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Selling-Docs-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Selling-Docs-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Selling-Docs-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(7479,1183,'_wp_attached_file','2020/01/buying-cattle-registration-form.pdf'),(7480,1183,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:39:\"buying-cattle-registration-form-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"buying-cattle-registration-form-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"buying-cattle-registration-form-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"buying-cattle-registration-form-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(7481,1192,'_menu_item_type','custom'),(7482,1192,'_menu_item_menu_item_parent','0'),(7483,1192,'_menu_item_object_id','1192'),(7484,1192,'_menu_item_object','custom'),(7485,1192,'_menu_item_target',''),(7486,1192,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7487,1192,'_menu_item_xfn',''),(7488,1192,'_menu_item_url','#'),(7489,1192,'_menu_item_orphaned','1579864361'),(7490,1193,'_wp_attached_file','2020/01/Kingsville-Logo-Redraw.png'),(7491,1193,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:939;s:6:\"height\";i:658;s:4:\"file\";s:34:\"2020/01/Kingsville-Logo-Redraw.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Kingsville-Logo-Redraw-300x210.png\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Kingsville-Logo-Redraw-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Kingsville-Logo-Redraw-768x538.png\";s:5:\"width\";i:768;s:6:\"height\";i:538;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"Kingsville-Logo-Redraw-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"Kingsville-Logo-Redraw-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"Kingsville-Logo-Redraw-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:34:\"Kingsville-Logo-Redraw-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:34:\"Kingsville-Logo-Redraw-480x336.png\";s:5:\"width\";i:480;s:6:\"height\";i:336;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7492,1197,'_thumbnail_id','786'),(7493,1197,'_et_post_bg_color','#ffffff'),(7494,1197,'_et_post_bg_layout','light'),(7495,1197,'_et_pb_show_title','on'),(7496,1197,'_et_pb_post_hide_nav','default'),(7497,1197,'_et_pb_page_layout','et_right_sidebar'),(7498,1197,'_et_pb_side_nav','off'),(7499,1197,'_et_pb_use_builder','on'),(7500,1197,'_et_pb_first_image',''),(7501,1197,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">February 4th, 2020 1867 hd; January 28th sale 1559 hd; year ago 2459 hd. Feeder steers and heifers sold $6-10 higher. Cows and bulls sold $3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$177.50</p>\n<p>400-500<br />\n$150.00-$187.50</p>\n<p>500-600<br />\n$150.00-$181.00</p>\n<p>600-700<br />\n$140.00-$160.00</p>\n<p>700-800<br />\n$135.00-$150.00</p>\n<p>800-900<br />\n$131.00-$141.75</p>\n<p>900-1000Â <br />\n$122.00-$129.50</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$160.00</p>\n<p>400-500<br />\n$140.00-$163.50</p>\n<p>500-600<br />\n$135.00-$162.50</p>\n<p>600-700<br />\n$130.00-$146.25</p>\n<p>700-800<br />\n$120.00-$132.50</p>\n<p>800-900<br />\n$114.00-$124.00</p>\n<p>900-1000Â <br />\n$110.00-$123.75</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows</p>\n<p>Fat Cows<br />\n$64.00 &#8211; $74.00</p>\n<p>Medium Kind<br />\n$55.00 &#8211; $63.00</p>\n<p>Low Yielding<br />\n$45.00 &#8211; $54.00</p>\n<p>Bulls<br />\n$75.00 &#8211; $95.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder Bulls</p>\n<p>300-500<br />\n$140.00 &#8211; $180.00</p>\n<p>500-700<br />\n$115.00 &#8211; $150.00</p>\n<p>700-800<br />\n$110.00 &#8211; $115.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n597lbs @ $140.75</p>\n<p>Â <br />\n640lbs @ $146.25</p>\n<p>STEERS<br />\n558lbs @ $175.00</p>\n<p>Â <br />\n700lbs @ $150.00</p>\n<p>Â <br />\n825lbs @ $141.25</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(7502,1197,'_et_pb_truncate_post_date','2020-07-25 00:40:14'),(7503,1197,'_et_pb_old_content',''),(7505,1197,'_et_pb_built_for_post_type','page'),(7506,1197,'_et_pb_ab_subjects',''),(7507,1197,'_et_pb_enable_shortcode_tracking',''),(7508,1197,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1197\" /]'),(7509,1197,'_et_pb_custom_css',''),(7510,1197,'_et_pb_gutter_width','3'),(7511,1197,'_et_builder_version','VB|Divi|4.2.2'),(7512,1197,'_et_pb_show_page_creation','off'),(7513,1197,'_dp_original','1152'),(7514,1197,'_edit_last','2'),(7515,1197,'_edit_lock','1581002052:2'),(7549,1209,'_thumbnail_id','786'),(7550,1209,'_et_post_bg_color','#ffffff'),(7551,1209,'_et_post_bg_layout','light'),(7552,1209,'_et_pb_show_title','on'),(7553,1209,'_et_pb_post_hide_nav','default'),(7554,1209,'_et_pb_page_layout','et_right_sidebar'),(7555,1209,'_et_pb_side_nav','off'),(7556,1209,'_et_pb_use_builder','on'),(7557,1209,'_et_pb_first_image',''),(7558,1209,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">February 11th, 2020 3389 hd; last week&#8217;s sale 1867 hd; year ago 1599 hd. Feeder cattle sold $3-5 higher. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$186.50</p>\n<p>400-500<br />\n$160.00-$198.50</p>\n<p>500-600<br />\n$155.00-$189.00</p>\n<p>600-700<br />\n$140.00-$170.00</p>\n<p>700-800<br />\n$135.00-$156.85</p>\n<p>800-900<br />\n$128.00-$140.50</p>\n<p>900-1000<br />\n$122.00-$125.25</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$181.00</p>\n<p>400-500<br />\n$150.00-$180.50</p>\n<p>500-600<br />\n$135.00-$163.75</p>\n<p>600-700<br />\n$133.00-$148.25</p>\n<p>700-800<br />\n$124.00-$144.25</p>\n<p>800-900<br />\n$120.00-$132.50</p>\n<p>900-1000<br />\n$105.00-$118.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows</p>\n<p>Fat Cows<br />\n$62.00 &#8211; $72.00</p>\n<p>Medium Kind<br />\n$51.00 &#8211; $61.00</p>\n<p>Low Yielding<br />\n$40.00 &#8211; $50.00</p>\n<p>Bulls<br />\n$74.00 &#8211; $90.50</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder Bulls</p>\n<p>300-500<br />\n$140.00 &#8211; $180.00</p>\n<p>500-700<br />\n$116.00 &#8211; $143.00</p>\n<p>700-800<br />\n$116.00 &#8211; $120.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n525lbs @ $163.50</p>\n<p>STEERS<br />\n517lbs @ $189.00</p>\n<p>Â <br />\n607lbs @ $170.00</p>\n<p>Â <br />\n658lbs @ $160.25</p>\n<p>Â <br />\n756lbs @ $148.25</p>\n<p>Â <br />\n860lbs @ $134.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(7559,1209,'_et_pb_truncate_post_date','2020-07-25 00:40:14'),(7560,1209,'_et_pb_old_content',''),(7562,1209,'_et_pb_built_for_post_type','page'),(7563,1209,'_et_pb_ab_subjects',''),(7564,1209,'_et_pb_enable_shortcode_tracking',''),(7565,1209,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1209\" /]'),(7566,1209,'_et_pb_custom_css',''),(7567,1209,'_et_pb_gutter_width','3'),(7568,1209,'_et_builder_version','VB|Divi|4.2.2'),(7569,1209,'_et_pb_show_page_creation','off'),(7571,1209,'_dp_original','1197'),(7572,1209,'_edit_lock','1581525661:2'),(7573,1209,'_edit_last','2'),(7592,1258,'_wp_attached_file','2020/02/Tuesday-February-11th-Feeder-Cattle-Consignments.pdf'),(7593,1258,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"Tuesday-February-11th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Tuesday-February-11th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"Tuesday-February-11th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"Tuesday-February-11th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(7666,1283,'_wp_attached_file','2020/02/Feb.-29th-Cow-Sale.pdf'),(7667,1283,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:26:\"Feb.-29th-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Feb.-29th-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Feb.-29th-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Feb.-29th-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(7682,1327,'_wp_attached_file','2020/02/Tuesday-February-18th-Feeder-Cattle-Consignments.pdf'),(7683,1327,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"Tuesday-February-18th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Tuesday-February-18th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"Tuesday-February-18th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"Tuesday-February-18th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(7685,1329,'_thumbnail_id','786'),(7686,1329,'_et_post_bg_color','#ffffff'),(7687,1329,'_et_post_bg_layout','light'),(7688,1329,'_et_pb_show_title','on'),(7689,1329,'_et_pb_post_hide_nav','default'),(7690,1329,'_et_pb_page_layout','et_right_sidebar'),(7691,1329,'_et_pb_side_nav','off'),(7692,1329,'_et_pb_use_builder','on'),(7693,1329,'_et_pb_first_image',''),(7694,1329,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_8 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">February 18th, 2020 3731 hd; last week&#8217;s sale 3389 hd; year ago 3502 hd. Steers and heifers weighing 400-550lb sold $5-10 higher, and 550lb and up sold steady. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$200.00</p>\n<p>400-500<br />\n$170.00-$207.00</p>\n<p>500-600<br />\n$165.00-$198.50</p>\n<p>600-700<br />\n$140.00-$171.50</p>\n<p>700-800<br />\n$140.00-$152.50</p>\n<p>800-900<br />\n$128.00-$137.35</p>\n<p>900-1000<br />\n$121.00-$130.35</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$165.00-$193.00</p>\n<p>400-500<br />\n$160.00-$186.00</p>\n<p>500-600<br />\n$140.00-$168.00</p>\n<p>600-700<br />\n$130.00-$146.25</p>\n<p>700-800<br />\n$127.00-$141.00</p>\n<p>800-900<br />\n$118.00-$132.50</p>\n<p>900-1000<br />\n$110.00-$118.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows</p>\n<p>Fat Cows<br />\n$60.00 &#8211; $72.00</p>\n<p>Medium Kind<br />\n$51.00 &#8211; $59.00</p>\n<p>Low Yielding<br />\n$43.00 &#8211; $50.00</p>\n<p>Bulls<br />\n$70.00 &#8211; $85.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder Bulls</p>\n<p>300-500<br />\n$150.00 &#8211; $195.00</p>\n<p>500-700<br />\n$125.00 &#8211; $156.00</p>\n<p>700-800<br />\n$115.00 &#8211; $125.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n650lbs @ $143.50</p>\n<p>Â <br />\n720lbs @ $136.50</p>\n<p>Â <br />\n830lbs @ $132.00</p>\n<p>STEERS<br />\n523lbs @ $195.00</p>\n<p>Â <br />\n597lbs @ $171.50</p>\n<p>Â <br />\n774lbs @ $142.50</p>\n<p>Â <br />\n884lbs @ $135.85</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_4_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_4 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(7695,1329,'_et_pb_truncate_post_date','2020-03-17 02:50:12'),(7696,1329,'_et_pb_old_content',''),(7698,1329,'_et_pb_built_for_post_type','page'),(7699,1329,'_et_pb_ab_subjects',''),(7700,1329,'_et_pb_enable_shortcode_tracking',''),(7701,1329,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1329\" /]'),(7702,1329,'_et_pb_custom_css',''),(7703,1329,'_et_pb_gutter_width','3'),(7704,1329,'_et_builder_version','VB|Divi|4.2.2'),(7705,1329,'_et_pb_show_page_creation','off'),(7707,1329,'_dp_original','1209'),(7708,1329,'_edit_lock','1582129388:2'),(7710,1329,'_edit_last','2'),(7711,1329,'_wp_old_slug','february-11-2020-market-report'),(7717,1346,'_wp_attached_file','2020/02/Tuesday-February-25th-Feeder-Cattle-Consignments.pdf'),(7718,1346,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"Tuesday-February-25th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Tuesday-February-25th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"Tuesday-February-25th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"Tuesday-February-25th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(7721,1325,'_edit_last','2'),(7722,1325,'_edit_lock','1582595033:2'),(7724,1325,'_et_post_bg_color','#ffffff'),(7725,1325,'_et_post_bg_layout','light'),(7726,1325,'_et_pb_show_title','on'),(7727,1325,'_et_pb_post_hide_nav','default'),(7728,1325,'_et_pb_page_layout','et_right_sidebar'),(7729,1325,'_et_pb_side_nav','off'),(7730,1325,'_et_pb_use_builder',''),(7731,1325,'_et_pb_first_image',''),(7732,1325,'_et_pb_truncate_post',''),(7733,1325,'_et_pb_truncate_post_date',''),(7734,1325,'_et_pb_old_content',''),(7738,1382,'_wp_attached_file','2020/02/photosShroder.pdf'),(7739,1382,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:21:\"photosShroder-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"photosShroder-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"photosShroder-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"photosShroder-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(7740,1384,'_wp_attached_file','2020/02/RandyShroderEstate.pdf'),(7741,1384,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:26:\"RandyShroderEstate-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"RandyShroderEstate-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"RandyShroderEstate-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"RandyShroderEstate-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(7744,1325,'_et_pb_show_page_creation','on'),(7754,1395,'_edit_lock','1594828331:2'),(7755,1395,'_edit_last','2'),(7757,1395,'_et_post_bg_color','#ffffff'),(7758,1395,'_et_post_bg_layout','light'),(7759,1395,'_et_pb_show_title','on'),(7760,1395,'_et_pb_post_hide_nav','default'),(7761,1395,'_et_pb_page_layout','et_right_sidebar'),(7762,1395,'_et_pb_side_nav','off'),(7763,1395,'_et_pb_use_builder',''),(7764,1395,'_et_pb_first_image',''),(7765,1395,'_et_pb_truncate_post',''),(7766,1395,'_et_pb_truncate_post_date',''),(7767,1395,'_et_pb_old_content',''),(7768,1397,'_wp_attached_file','2020/02/Raymond-Haile-Sale-Flyer.pdf'),(7769,1397,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"Raymond-Haile-Sale-Flyer-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Raymond-Haile-Sale-Flyer-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Raymond-Haile-Sale-Flyer-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Raymond-Haile-Sale-Flyer-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(7772,1400,'_thumbnail_id','786'),(7773,1400,'_et_post_bg_color','#ffffff'),(7774,1400,'_et_post_bg_layout','light'),(7775,1400,'_et_pb_show_title','on'),(7776,1400,'_et_pb_post_hide_nav','default'),(7777,1400,'_et_pb_page_layout','et_right_sidebar'),(7778,1400,'_et_pb_side_nav','off'),(7779,1400,'_et_pb_use_builder','on'),(7780,1400,'_et_pb_first_image',''),(7781,1400,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">February 25th, 2020 2809 hd; last week&#8217;s sale 3731 hd; year ago 3240 hd. Feeder cattle weighing 750lbs and up sold $2-6 lower, and cattle weighing 725lbs and down sold steady to $4 lower. Due to stock markets sharply lower, and coronavirus outbreak cattle sold lower, however there was a very good buyer demand. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$155.00-$182.50</p>\n<p>400-500<br />\n$170.00-$191.00</p>\n<p>500-600<br />\n$160.00-$184.00</p>\n<p>600-700<br />\n$145.00-$168.85</p>\n<p>700-800<br />\n$128.00-$147.50</p>\n<p>800-900<br />\n$120.00-$131.00</p>\n<p>900-1000<br />\nN/A</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$164.00</p>\n<p>400-500<br />\n$150.00-$183.00</p>\n<p>500-600<br />\n$130.00-$160.75</p>\n<p>600-700<br />\n$120.00-$145.10</p>\n<p>700-800<br />\n$117.00-$134.00</p>\n<p>800-900<br />\n$101.00-$109.00</p>\n<p>900-1000<br />\nN/A</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows</p>\n<p>Fat Cows<br />\n$64.00 &#8211; $73.50</p>\n<p>Medium Kind<br />\n$51.00 &#8211; $62.00</p>\n<p>Low Yielding<br />\n$41.00 &#8211; $50.00</p>\n<p>Bulls<br />\n$72.00 &#8211; $90.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder Bulls</p>\n<p>300-500<br />\n$135.00 &#8211; $160.00</p>\n<p>500-700<br />\n$120.00 &#8211; $150.00</p>\n<p>700-800<br />\n$110.00 &#8211; $124.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n492lbs @ $165.00</p>\n<p>Â <br />\n556lbs @ $156.50</p>\n<p>STEERS<br />\n605lbs @ $164.85</p>\n<p>Â <br />\n724lbs @ $147.50</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(7782,1400,'_et_pb_truncate_post_date','2020-03-17 02:06:37'),(7783,1400,'_et_pb_old_content',''),(7785,1400,'_et_pb_built_for_post_type','page'),(7786,1400,'_et_pb_ab_subjects',''),(7787,1400,'_et_pb_enable_shortcode_tracking',''),(7788,1400,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1400\" /]'),(7789,1400,'_et_pb_custom_css',''),(7790,1400,'_et_pb_gutter_width','3'),(7791,1400,'_et_builder_version','VB|Divi|4.2.2'),(7792,1400,'_et_pb_show_page_creation','off'),(7794,1400,'_wp_old_slug','february-11-2020-market-report'),(7795,1400,'_dp_original','1329'),(7796,1400,'_edit_lock','1583336329:2'),(7797,1400,'_edit_last','2'),(7860,1424,'_wp_attached_file','2020/03/Tuesday-March-3rd-Feeder-Cattle-Consignments.pdf'),(7861,1424,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"Tuesday-March-3rd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Tuesday-March-3rd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Tuesday-March-3rd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Tuesday-March-3rd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(7892,1438,'_wp_attached_file','2020/03/HAILE.jpg'),(7893,1438,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1249;s:6:\"height\";i:937;s:4:\"file\";s:17:\"2020/03/HAILE.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"HAILE-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"HAILE-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"HAILE-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"HAILE-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:17:\"HAILE-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:18:\"HAILE-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:17:\"HAILE-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:17:\"HAILE-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:18:\"HAILE-1080x810.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:17:\"HAILE-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:17:\"HAILE-980x735.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:735;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:17:\"HAILE-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7894,1439,'_wp_attached_file','2020/03/HAILE1.jpg'),(7895,1439,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:888;s:4:\"file\";s:18:\"2020/03/HAILE1.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"HAILE1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"HAILE1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"HAILE1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:18:\"HAILE1-666x675.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"HAILE1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"HAILE1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"HAILE1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:18:\"HAILE1-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7896,1440,'_wp_attached_file','2020/03/HAILE2.jpg'),(7897,1440,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:888;s:4:\"file\";s:18:\"2020/03/HAILE2.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"HAILE2-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"HAILE2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"HAILE2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:18:\"HAILE2-666x675.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"HAILE2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"HAILE2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"HAILE2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:18:\"HAILE2-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7898,1441,'_wp_attached_file','2020/03/HAILE3.jpg'),(7899,1441,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:666;s:6:\"height\";i:888;s:4:\"file\";s:18:\"2020/03/HAILE3.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"HAILE3-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"HAILE3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"HAILE3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:18:\"HAILE3-666x675.jpg\";s:5:\"width\";i:666;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"HAILE3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"HAILE3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"HAILE3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:18:\"HAILE3-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7915,1450,'_edit_lock','1699892893:2'),(7916,1450,'_edit_last','2'),(7917,1450,'_wp_page_template','default'),(7918,1451,'_et_pb_post_hide_nav','default'),(7919,1451,'_et_pb_page_layout','et_right_sidebar'),(7920,1451,'_et_pb_side_nav','off'),(7921,1451,'_et_pb_use_builder',''),(7922,1451,'_et_pb_first_image',''),(7923,1451,'_et_pb_truncate_post',''),(7924,1451,'_et_pb_truncate_post_date',''),(7925,1451,'_et_pb_old_content',''),(7926,1451,'_menu_item_type','post_type'),(7927,1451,'_menu_item_menu_item_parent','0'),(7928,1451,'_menu_item_object_id','1450'),(7929,1451,'_menu_item_object','page'),(7930,1451,'_menu_item_target',''),(7931,1451,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7932,1451,'_menu_item_xfn',''),(7933,1451,'_menu_item_url',''),(7934,1450,'_et_pb_post_hide_nav','default'),(7935,1450,'_et_pb_page_layout','et_right_sidebar'),(7936,1450,'_et_pb_side_nav','off'),(7937,1450,'_et_pb_use_builder','on'),(7938,1450,'_et_pb_first_image',''),(7939,1450,'_et_pb_truncate_post',''),(7940,1450,'_et_pb_truncate_post_date',''),(7941,1450,'_et_pb_old_content','<p style=\"text-align: center;\"><strong>UPCOMING SALE DATES</strong><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2020/02/Raymond-Haile-Sale-Flyer.pdf\">Â Â </a></p>\r\nMemorial Day Sale: Sunday & Monday May , 24, & 25th, 2020\r\n\r\n<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2020/05/2020-Memorial-Day-Sale-Flyer.pdf\">2020 Memorial Day Sale Flyer</a>\r\n\r\n<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2020/05/Memorial-Day-2020-Detailed-Consignment-List-4.pdf\">Memorial Day 2020 Detailed Consignment List</a>\r\n\r\nTo View Memorial Day Consignments: <a href=\"http://photos.app.goo.gl/pyRG4eV2e5TejxiD8\">http://photos.app.goo.gl/pyRG4eV2e5TejxiD8</a>\r\n\r\nÂ '),(7943,1453,'_wp_attached_file','2020/03/HAILE4.jpg'),(7944,1453,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:703;s:6:\"height\";i:937;s:4:\"file\";s:18:\"2020/03/HAILE4.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"HAILE4-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"HAILE4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"HAILE4-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:18:\"HAILE4-703x675.jpg\";s:5:\"width\";i:703;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"HAILE4-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:18:\"HAILE4-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"HAILE4-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:18:\"HAILE4-480x640.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7945,1454,'_wp_attached_file','2020/03/HAILE5.jpg'),(7946,1454,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:477;s:6:\"height\";i:358;s:4:\"file\";s:18:\"2020/03/HAILE5.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"HAILE5-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"HAILE5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:18:\"HAILE5-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:18:\"HAILE5-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:18:\"HAILE5-400x358.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:358;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7947,1457,'_thumbnail_id','786'),(7948,1457,'_et_post_bg_color','#ffffff'),(7949,1457,'_et_post_bg_layout','light'),(7950,1457,'_et_pb_show_title','on'),(7951,1457,'_et_pb_post_hide_nav','default'),(7952,1457,'_et_pb_page_layout','et_right_sidebar'),(7953,1457,'_et_pb_side_nav','off'),(7954,1457,'_et_pb_use_builder','on'),(7955,1457,'_et_pb_first_image',''),(7956,1457,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">March 3rd, 2020 1520 hd; last week&#8217;s sale 2089 hd; year ago 1155 hd. Feeder cattle of all classes sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$165.00-$195.00</p>\n<p>400-500<br />\n$160.00-$199.50</p>\n<p>500-600<br />\n$160.00-$194.00</p>\n<p>600-700<br />\n$140.00-$167.00</p>\n<p>700-800<br />\n$135.00-$151.00</p>\n<p>800-900<br />\n$123.50-$134.75</p>\n<p>900-1000<br />\nN/A</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$153.00</p>\n<p>400-500<br />\n$140.00-$165.00</p>\n<p>500-600<br />\n$132.00-$160.00</p>\n<p>600-700<br />\n$127.00-$150.25</p>\n<p>700-800<br />\n$115.00-$123.50</p>\n<p>800-900<br />\n$107.00-$111.00</p>\n<p>900-1000</p>\n<p>$120.00-$122.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows</p>\n<p>Fat Cows<br />\n$68.00 &#8211; $75.00</p>\n<p>Medium Kind<br />\n$53.00 &#8211; $65.00</p>\n<p>Low Yielding<br />\n$41.00 &#8211; $52.00</p>\n<p>Bulls<br />\n$70.00 &#8211; $89.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder Bulls</p>\n<p>300-500<br />\n$140.00 &#8211; $190.00</p>\n<p>500-700<br />\n$130.00 &#8211; $163.00</p>\n<p>700-800<br />\n$100.00 &#8211; $114.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n520lbs @ $160.00</p>\n<p>Â <br />\n600lbs @ $150.00</p>\n<p>Â <br />\n677lbs @ $136.85</p>\n<p>STEERS<br />\n703lbs@ $150.00</p>\n<p>Â <br />\n728lbs@ $153.60</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(7957,1457,'_et_pb_truncate_post_date','2020-03-17 02:06:37'),(7958,1457,'_et_pb_old_content',''),(7960,1457,'_et_pb_built_for_post_type','page'),(7961,1457,'_et_pb_ab_subjects',''),(7962,1457,'_et_pb_enable_shortcode_tracking',''),(7963,1457,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1457\" /]'),(7964,1457,'_et_pb_custom_css',''),(7965,1457,'_et_pb_gutter_width','3'),(7966,1457,'_et_builder_version','VB|Divi|4.2.2'),(7967,1457,'_et_pb_show_page_creation','off'),(7968,1457,'_wp_old_slug','february-11-2020-market-report'),(7970,1457,'_dp_original','1400'),(7971,1457,'_edit_lock','1583338377:2'),(7972,1457,'_edit_last','2'),(7974,1465,'_wp_attached_file','2020/03/Tuesday-March-10th-Feeder-Cattle-Consignments.pdf'),(7975,1465,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Tuesday-March-10th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Tuesday-March-10th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Tuesday-March-10th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"Tuesday-March-10th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(7980,1470,'_thumbnail_id','786'),(7981,1470,'_et_post_bg_color','#ffffff'),(7982,1470,'_et_post_bg_layout','light'),(7983,1470,'_et_pb_show_title','on'),(7984,1470,'_et_pb_post_hide_nav','default'),(7985,1470,'_et_pb_page_layout','et_right_sidebar'),(7986,1470,'_et_pb_side_nav','off'),(7987,1470,'_et_pb_use_builder','on'),(7988,1470,'_et_pb_first_image',''),(7989,1470,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">March 10th, 2020 1677 hd; last week&#8217;s sale 1520 hd; year ago 1905 hd. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$192.00</p>\n<p>400-500<br />\n$150.00-$178.50</p>\n<p>500-600<br />\n$144.00-$179.00</p>\n<p>600-700<br />\n$140.00-$161.75</p>\n<p>700-800<br />\n$130.00-$148.00</p>\n<p>800-900<br />\n$120.00-$140.00</p>\n<p>900-1000<br />\n$114.00-$120.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$167.00</p>\n<p>400-500<br />\n$135.00-$159.50</p>\n<p>500-600<br />\n$120.00-$155.00</p>\n<p>600-700<br />\n$117.00-$143.75</p>\n<p>700-800<br />\n$114.00-$123.25</p>\n<p>800-900<br />\n$110.00-$121.50</p>\n<p>900-1000<br />\n$95.00-$101.50</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows</p>\n<p>Fat Cows<br />\n$63.00 &#8211; $73.00</p>\n<p>Medium Kind<br />\n$52.00 &#8211; $62.00</p>\n<p>Low Yielding<br />\n$40.00 &#8211; $51.00</p>\n<p>Bulls<br />\n$71.00 &#8211; $90.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder Bulls</p>\n<p>300-500<br />\n$150.00 &#8211; $190.00</p>\n<p>500-700<br />\n$120.00 &#8211; $146.00</p>\n<p>700-800<br />\n$100.00 &#8211; $116.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n670lbs @ $138.50</p>\n<p>STEERS<br />\n804lbs@ $140.00</p>\n<p>Â <br />\n924lbs@ $120.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(7990,1470,'_et_pb_truncate_post_date','2020-03-17 02:06:37'),(7991,1470,'_et_pb_old_content',''),(7993,1470,'_et_pb_built_for_post_type','page'),(7994,1470,'_et_pb_ab_subjects',''),(7995,1470,'_et_pb_enable_shortcode_tracking',''),(7996,1470,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1470\" /]'),(7997,1470,'_et_pb_custom_css',''),(7998,1470,'_et_pb_gutter_width','3'),(7999,1470,'_et_builder_version','VB|Divi|4.2.2'),(8000,1470,'_et_pb_show_page_creation','off'),(8001,1470,'_wp_old_slug','february-11-2020-market-report'),(8003,1470,'_dp_original','1457'),(8004,1470,'_edit_lock','1583938235:2'),(8005,1470,'_edit_last','2'),(8009,1490,'_wp_attached_file','2020/03/Tuesday-March-10th-Feeder-Cattle-Consignments-1.pdf'),(8010,1490,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-March-10th-Feeder-Cattle-Consignments-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-March-10th-Feeder-Cattle-Consignments-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-March-10th-Feeder-Cattle-Consignments-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-March-10th-Feeder-Cattle-Consignments-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8035,639,'_et_pb_show_page_creation','off'),(8039,1506,'_wp_attached_file','2020/03/Tuesday-March-17th-Feeder-Cattle-Consignments.pdf'),(8040,1506,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Tuesday-March-17th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Tuesday-March-17th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Tuesday-March-17th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"Tuesday-March-17th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8041,1507,'_wp_attached_file','2020/03/Tuesday-March-17th-Feeder-Cattle-Consignments-1.pdf'),(8042,1507,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-March-17th-Feeder-Cattle-Consignments-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-March-17th-Feeder-Cattle-Consignments-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-March-17th-Feeder-Cattle-Consignments-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-March-17th-Feeder-Cattle-Consignments-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8043,1509,'_wp_attached_file','2020/03/2020Memorial-Day-Sale-flyer.pdf'),(8044,1509,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"2020Memorial-Day-Sale-flyer-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"2020Memorial-Day-Sale-flyer-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"2020Memorial-Day-Sale-flyer-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"2020Memorial-Day-Sale-flyer-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8045,1512,'_wp_attached_file','2020/03/Sales-in-Regards-to-Virus.docx'),(8046,1513,'_wp_attached_file','2020/03/Sales-in-Regards-to-Virus.pdf'),(8047,1513,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"Sales-in-Regards-to-Virus-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Sales-in-Regards-to-Virus-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Sales-in-Regards-to-Virus-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Sales-in-Regards-to-Virus-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8048,1514,'_wp_attached_file','2020/03/Tuesday-March-24th-Feeder-Cattle-Consignments.pdf'),(8049,1514,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Tuesday-March-24th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Tuesday-March-24th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Tuesday-March-24th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"Tuesday-March-24th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8050,1518,'_wp_attached_file','2020/03/Sales-in-Regards-to-Virus-1.pdf'),(8051,1518,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"Sales-in-Regards-to-Virus-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Sales-in-Regards-to-Virus-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Sales-in-Regards-to-Virus-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Sales-in-Regards-to-Virus-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8053,1521,'_wp_attached_file','2020/03/Tuesday-March-24th-Feeder-Cattle-Consignments-1.pdf'),(8054,1521,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-March-24th-Feeder-Cattle-Consignments-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-March-24th-Feeder-Cattle-Consignments-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-March-24th-Feeder-Cattle-Consignments-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-March-24th-Feeder-Cattle-Consignments-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8055,1524,'_thumbnail_id','786'),(8056,1524,'_et_post_bg_color','#ffffff'),(8057,1524,'_et_post_bg_layout','light'),(8058,1524,'_et_pb_show_title','on'),(8059,1524,'_et_pb_post_hide_nav','default'),(8060,1524,'_et_pb_page_layout','et_right_sidebar'),(8061,1524,'_et_pb_side_nav','off'),(8062,1524,'_et_pb_use_builder','on'),(8063,1524,'_et_pb_first_image',''),(8064,1524,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">March 17th, 2020 819 hd; last week&#8217;s sale 1677 hd; year ago 2633 hd. Feeder cattle sold $4-10 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$152.00</p>\n<p>400-500<br />\n$140.00-$154.00</p>\n<p>500-600<br />\n$130.00-$160.00</p>\n<p>600-700<br />\n$120.00-$150.00</p>\n<p>700-800<br />\n$114.00-$131.50</p>\n<p>800-900<br />\n$101.00-$116.35</p>\n<p>900-1000<br />\nN/A</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$130.00-$148.00</p>\n<p>400-500<br />\n$120.00-$138.00</p>\n<p>500-600<br />\n$100.00-$133.25</p>\n<p>600-700<br />\n$100.00-$124.50</p>\n<p>700-800<br />\n$101.00-$119.75</p>\n<p>800-900<br />\n$100.00-$103.00</p>\n<p>900-1000<br />\nN/A</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows</p>\n<p>Fat Cows<br />\n$63.00 &#8211; $73.00</p>\n<p>Medium Kind<br />\n$55.00 &#8211; $62.00</p>\n<p>Low Yielding<br />\n$48.00 &#8211; $54.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $100.50</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder Bulls</p>\n<p>300-500<br />\n$120.00 &#8211; $148.00</p>\n<p>500-700<br />\n$95.00 &#8211; $105.00</p>\n<p>700-800<br />\n$95.00 &#8211; $105.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n637lbs @ $124.75</p>\n<p>Â <br />\n720lbs @ $121.00</p>\n<p>STEERS<br />\n610lbs@ $150.00</p>\n<p>Â <br />\n699lbs@ $140.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(8065,1524,'_et_pb_truncate_post_date','2020-03-26 22:48:36'),(8066,1524,'_et_pb_old_content',''),(8068,1524,'_et_pb_built_for_post_type','page'),(8069,1524,'_et_pb_ab_subjects',''),(8070,1524,'_et_pb_enable_shortcode_tracking',''),(8071,1524,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1524\" /]'),(8072,1524,'_et_pb_custom_css',''),(8073,1524,'_et_pb_gutter_width','3'),(8074,1524,'_et_builder_version','VB|Divi|4.2.2'),(8075,1524,'_et_pb_show_page_creation','off'),(8076,1524,'_wp_old_slug','february-11-2020-market-report'),(8078,1524,'_dp_original','1470'),(8079,1524,'_edit_lock','1584544698:2'),(8080,1524,'_edit_last','2'),(8087,1540,'_thumbnail_id','786'),(8088,1540,'_et_post_bg_color','#ffffff'),(8089,1540,'_et_post_bg_layout','light'),(8090,1540,'_et_pb_show_title','on'),(8091,1540,'_et_pb_post_hide_nav','default'),(8092,1540,'_et_pb_page_layout','et_right_sidebar'),(8093,1540,'_et_pb_side_nav','off'),(8094,1540,'_et_pb_use_builder','on'),(8095,1540,'_et_pb_first_image',''),(8096,1540,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">March 24th, 2020 1166 hd; last week&#8217;s sale 819 hd; year ago 1718 hd. Weaned feeder cattle sold $7-15 higher with spots $20 higher, as Boxed Beef prices soared and few feeder cattle being traded the last few weeks. Very good buyer demand. Slaughter cows &amp; bulls sold $3-6 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\nN/A</p>\n<p>400-500<br />\n$150.00-$169.00</p>\n<p>500-600<br />\n$135.00-$160.00</p>\n<p>600-700<br />\n$140.00-$160.00</p>\n<p>700-800<br />\n$135.00-$158.35</p>\n<p>800-900<br />\n$136.00-$151.00</p>\n<p>900-1000<br />\n$123.60-&amp;126.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$150.00</p>\n<p>400-500<br />\n$140.00-$151.00</p>\n<p>500-600<br />\n$130.00-$148.00</p>\n<p>600-700<br />\n$122.50-$144.50</p>\n<p>700-800<br />\n$118.00-$134.00</p>\n<p>800-900<br />\n$114.00-$121.50</p>\n<p>900-1000<br />\n$85.00-$104.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows</p>\n<p>Fat Cows<br />\n$71.00 &#8211; $84.00</p>\n<p>Medium Kind<br />\n$61.00 &#8211; $70.00</p>\n<p>Low Yielding<br />\n$45.00 &#8211; $60.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $103.50</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder Bulls</p>\n<p>300-500<br />\nN/A</p>\n<p>500-700<br />\nN/A</p>\n<p>700-800<br />\nN/A</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n645lbs @ $144.50</p>\n<p>STEERS<br />\n757lbs @ $158.35</p>\n<p>Â <br />\n772lbs @ $141.00</p>\n<p>Â <br />\n816lbs @ $143.00</p>\n<p>Â <br />\n826lbs @ $151.00</p>\n<p>Â <br />\n919lbs @ $123.85</p>\n<p>Â <br />\n928lbs @ $126.60</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(8097,1540,'_et_pb_truncate_post_date','2020-03-26 22:48:36'),(8098,1540,'_et_pb_old_content',''),(8100,1540,'_et_pb_built_for_post_type','page'),(8101,1540,'_et_pb_ab_subjects',''),(8102,1540,'_et_pb_enable_shortcode_tracking',''),(8103,1540,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1540\" /]'),(8104,1540,'_et_pb_custom_css',''),(8105,1540,'_et_pb_gutter_width','3'),(8106,1540,'_et_builder_version','VB|Divi|4.2.2'),(8107,1540,'_et_pb_show_page_creation','off'),(8108,1540,'_wp_old_slug','february-11-2020-market-report'),(8110,1540,'_dp_original','1524'),(8111,1540,'_edit_lock','1585271741:2'),(8114,1546,'_wp_attached_file','2020/03/Tuesday-March-24th-Feeder-Cattle-Consignments-2.pdf'),(8115,1546,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-March-24th-Feeder-Cattle-Consignments-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-March-24th-Feeder-Cattle-Consignments-2-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-March-24th-Feeder-Cattle-Consignments-2-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-March-24th-Feeder-Cattle-Consignments-2-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8121,1540,'_edit_last','2'),(8123,1540,'_wp_old_slug','march-17th-2020-market-report'),(8124,1561,'_edit_lock','1585272189:2'),(8125,1561,'_et_pb_use_builder','on'),(8126,1561,'_edit_last','2'),(8129,1572,'_wp_attached_file','2020/03/Tuesday-March-31st-Feeder-Cattle-Consignments.pdf'),(8130,1572,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Tuesday-March-31st-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Tuesday-March-31st-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Tuesday-March-31st-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"Tuesday-March-31st-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8132,1574,'_thumbnail_id','786'),(8133,1574,'_et_post_bg_color','#ffffff'),(8134,1574,'_et_post_bg_layout','light'),(8135,1574,'_et_pb_show_title','on'),(8136,1574,'_et_pb_post_hide_nav','default'),(8137,1574,'_et_pb_page_layout','et_right_sidebar'),(8138,1574,'_et_pb_side_nav','off'),(8139,1574,'_et_pb_use_builder','on'),(8140,1574,'_et_pb_first_image',''),(8141,1574,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">March 31st, 2020 2737 hd; last week&#8217;s sale 1166 hd; year ago 1254 hd Compared to last week, steer and heifer calves sold mostly steady. Yearling steers 650lb and up sold $6-10 lower. Weigh cows and bulls sold $7-10 lower.. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$180.00</p>\n<p>400-500<br />\n$150.00-$174.50</p>\n<p>500-600<br />\n$143.00-$167.75</p>\n<p>600-700<br />\n$130.00-$159.75</p>\n<p>700-800<br />\n$118.50-$142.00</p>\n<p>800-900<br />\n$113.00-$129.25</p>\n<p>900-1000<br />\n$111.00-&amp;118.85</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$168.00</p>\n<p>400-500<br />\n$130.00-$157.00</p>\n<p>500-600<br />\n$120.00-$147.25</p>\n<p>600-700<br />\n$108.00-$135.00</p>\n<p>700-800<br />\n$105.00-$118.00</p>\n<p>800-900<br />\n$104.25-$108.85</p>\n<p>900-1000<br />\n$98.00-$106.50</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows</p>\n<p>Fat Cows<br />\n$57.00 &#8211; $66.00</p>\n<p>Medium Kind<br />\n$50.00 &#8211; $56.00</p>\n<p>Low Yielding<br />\n$37.00 &#8211; $49.00</p>\n<p>High Yielding Bulls<br />\n$65.00 &#8211; $92.50</p>\n<p>Low Yielding Bulls<br />\n$45.00 &#8211; $63.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder Bulls</p>\n<p>300-500<br />\n$130.00 &#8211; $189.00</p>\n<p>500-700<br />\n$105.00 &#8211; $149.00</p>\n<p>700-800<br />\n$96.00 &#8211; $110.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS</p>\n<p>750lbs-825lbsÂ  Â  Â  Â  Â  Â  Â  Â  Â  Â @ $106.85-$109.85</p>\n<p>STEERS<br />\n792lbs @ $132.00</p>\n<p>Â <br />\n901lbs @ $118.85</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(8142,1574,'_et_pb_truncate_post_date','2020-04-03 13:43:22'),(8143,1574,'_et_pb_old_content',''),(8145,1574,'_et_pb_built_for_post_type','page'),(8146,1574,'_et_pb_ab_subjects',''),(8147,1574,'_et_pb_enable_shortcode_tracking',''),(8148,1574,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1574\" /]'),(8149,1574,'_et_pb_custom_css',''),(8150,1574,'_et_pb_gutter_width','3'),(8151,1574,'_et_builder_version','VB|Divi|4.2.2'),(8152,1574,'_et_pb_show_page_creation','off'),(8153,1574,'_wp_old_slug','february-11-2020-market-report'),(8154,1574,'_wp_old_slug','march-17th-2020-market-report'),(8156,1574,'_dp_original','1540'),(8157,1574,'_edit_lock','1585755915:2'),(8158,1574,'_edit_last','2'),(8163,1587,'_wp_attached_file','2020/04/Cow-Sale-2020.pdf'),(8164,1587,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:21:\"Cow-Sale-2020-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Cow-Sale-2020-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Cow-Sale-2020-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Cow-Sale-2020-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8166,1591,'_wp_attached_file','2020/04/Tuesday-April-7th-Feeder-Cattle-Consignments.pdf'),(8167,1591,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"Tuesday-April-7th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Tuesday-April-7th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Tuesday-April-7th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Tuesday-April-7th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8175,1609,'_thumbnail_id','786'),(8176,1609,'_et_post_bg_color','#ffffff'),(8177,1609,'_et_post_bg_layout','light'),(8178,1609,'_et_pb_show_title','on'),(8179,1609,'_et_pb_post_hide_nav','default'),(8180,1609,'_et_pb_page_layout','et_right_sidebar'),(8181,1609,'_et_pb_side_nav','off'),(8182,1609,'_et_pb_use_builder','on'),(8183,1609,'_et_pb_first_image',''),(8184,1609,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_9 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">April 7th, 2020 1295 hd; last week&#8217;s sale 2737 hd; year ago 1512 hd. Feeder cattle under 700lbs sold $5-7 higher on long weaned yearlings. Light test on 700-900lb feeder cattle. Cows and bulls sold $3-6 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE: UNWEANED, SHORT WEANED, &amp; NEW CROP<br />\nPRICE: LONG TIME WEANED </p>\n<p>300-400<br />\n$145.00-$155.00<br />\n$157.00-$175.00</p>\n<p>400-500<br />\n$140.00-$155.50<br />\n$150.00-$175.00</p>\n<p>500-600<br />\n$130.00-$146.50<br />\n$145.00-$170.00</p>\n<p>600-700<br />\n$110.50-$125.00<br />\n$133.00-$154.00</p>\n<p>700-800<br />\nN/A<br />\n$122.00-$134.25</p>\n<p>800-900<br />\nN/A<br />\n$100.00-$105.75</p>\n<p>900-1000<br />\nN/A<br />\nN/A</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE: UNWEANED, SHORT WEANED, &amp; NEW CROP<br />\nPRICE: LONG TIME WEANED</p>\n<p>300-400<br />\n$135.00-$150.00<br />\n$150.00-$160.00</p>\n<p>400-500<br />\n$134.00-$141.00<br />\n$141.00-$153.50</p>\n<p>500-600<br />\n$100.00-$130.75<br />\n$135.00-$147.50</p>\n<p>600-700<br />\n$110.00-$116.00<br />\n$117.00-$135.00</p>\n<p>700-800<br />\n$94.50-$101.00<br />\n$101.00-$110.00</p>\n<p>800-900<br />\nN/A<br />\n$94.00-$105.00</p>\n<p>900-1000<br />\nN/A<br />\nN/A</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows</p>\n<p>High Yielding Cows<br />\n$52.00 &#8211; $62.00</p>\n<p>Medium Yielding Cows<br />\n$43.00 &#8211; $51.00</p>\n<p>Low Yielding Cows<br />\n$30.00 &#8211; $42.00</p>\n<p>Slaughter Bulls<br />\n$70.00 &#8211; $89.50</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder Bulls</p>\n<p>300-500<br />\n$150.00 &#8211; $170.00</p>\n<p>500-700<br />\n$113.00 &#8211; $125.00</p>\n<p>700-800<br />\n$85.00 &#8211; $100.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n537lbs @ $143.75</p>\n<p>Â <br />\n587lbs @ $139.00</p>\n<p>STEERS<br />\n505lbs @ $170.00</p>\n<p>Â <br />\n625lbs @ $150.10</p>\n<p>Â <br />\n694lbs @ $139.75</p>\n<p>Â <br />\n729lbs @ $134.25</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_4_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_4 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(8185,1609,'_et_pb_truncate_post_date','2020-04-14 12:42:07'),(8186,1609,'_et_pb_old_content',''),(8188,1609,'_et_pb_built_for_post_type','page'),(8189,1609,'_et_pb_ab_subjects',''),(8190,1609,'_et_pb_enable_shortcode_tracking',''),(8191,1609,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1609\" /]'),(8192,1609,'_et_pb_custom_css',''),(8193,1609,'_et_pb_gutter_width','3'),(8194,1609,'_et_builder_version','VB|Divi|4.2.2'),(8195,1609,'_et_pb_show_page_creation','off'),(8196,1609,'_wp_old_slug','february-11-2020-market-report'),(8197,1609,'_wp_old_slug','march-17th-2020-market-report'),(8200,1609,'_dp_original','1574'),(8201,1609,'_edit_lock','1586361800:2'),(8202,1609,'_edit_last','2'),(8234,1622,'_wp_attached_file','2020/04/Tuesday-April-14th-Feeder-Cattle-Consignments.pdf'),(8235,1622,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Tuesday-April-14th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Tuesday-April-14th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Tuesday-April-14th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"Tuesday-April-14th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8239,1625,'_thumbnail_id','786'),(8240,1625,'_et_post_bg_color','#ffffff'),(8241,1625,'_et_post_bg_layout','light'),(8242,1625,'_et_pb_show_title','on'),(8243,1625,'_et_pb_post_hide_nav','default'),(8244,1625,'_et_pb_page_layout','et_right_sidebar'),(8245,1625,'_et_pb_side_nav','off'),(8246,1625,'_et_pb_use_builder','on'),(8247,1625,'_et_pb_first_image',''),(8248,1625,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">April 14th, 2020 836 hd; last week&#8217;s sale 1295 hd; year ago 2976 hd. Compared to last week feeder cattle sold steady. Cows and bulls sold $6-10 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$148.00-$171.00</p>\n<p>400-500<br />\n$148.00-$171.25</p>\n<p>500-600<br />\n$140.00-$161.00</p>\n<p>600-700<br />\n$130.00-$153.00</p>\n<p>700-800<br />\n$110.00-$125.00</p>\n<p>800-900<br />\n$105.00-$122.50</p>\n<p>900-1000<br />\n$92.00-$102.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$135.00-$150.50</p>\n<p>400-500<br />\n$133.00-$150.00</p>\n<p>500-600<br />\n$120.00-$139.50</p>\n<p>600-700<br />\n$102.00-$132.00</p>\n<p>700-800</p>\n<p>$95.00-$112.50 Replacements Hfrs: $117.50</p>\n<p>800-900<br />\n$83.50-$98.00</p>\n<p>900-1000<br />\n$79.00-$90.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows</p>\n<p>High Yield<br />\n$62.00 &#8211; $73.00</p>\n<p>Medium Yield<br />\n$51.00 &#8211; $61.50</p>\n<p>Low Yield<br />\n$40.00 &#8211; $50.00</p>\n<p>Bulls<br />\n$75.00 &#8211; $94.50</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder Bulls</p>\n<p>300-500<br />\n$140.00 &#8211; $181.00</p>\n<p>500-600<br />\n$106.50 &#8211; $137.00</p>\n<p>700-800<br />\n$80.00 &#8211; $85.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n514lbs @ $139.25</p>\n<p>Â <br />\n621lbs @ $129.00</p>\n<p>ReplacementsÂ <br />\n757lbs @ $117.50</p>\n<p>STEERS<br />\n460lbs @ $171.00</p>\n<p>Â <br />\n509lbs @ $160.00</p>\n<p>Â <br />\n861lbs @ $118.85</p>\n<p>Â <br />\n864lbs @ $118.50</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(8249,1625,'_et_pb_truncate_post_date','2020-04-16 21:23:31'),(8250,1625,'_et_pb_old_content',''),(8252,1625,'_et_pb_built_for_post_type','page'),(8253,1625,'_et_pb_ab_subjects',''),(8254,1625,'_et_pb_enable_shortcode_tracking',''),(8255,1625,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1625\" /]'),(8256,1625,'_et_pb_custom_css',''),(8257,1625,'_et_pb_gutter_width','3'),(8258,1625,'_et_builder_version','VB|Divi|4.2.2'),(8259,1625,'_et_pb_show_page_creation','off'),(8260,1625,'_wp_old_slug','february-11-2020-market-report'),(8261,1625,'_wp_old_slug','march-17th-2020-market-report'),(8263,1625,'_dp_original','1574'),(8264,1625,'_edit_lock','1586963819:2'),(8265,1625,'_edit_last','2'),(8269,1633,'_wp_attached_file','2020/04/Tuesday-April-21st-Feeder-Cattle-Consignments.pdf'),(8270,1633,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Tuesday-April-21st-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Tuesday-April-21st-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Tuesday-April-21st-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"Tuesday-April-21st-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8274,1640,'_thumbnail_id','786'),(8275,1640,'_et_post_bg_color','#ffffff'),(8276,1640,'_et_post_bg_layout','light'),(8277,1640,'_et_pb_show_title','on'),(8278,1640,'_et_pb_post_hide_nav','default'),(8279,1640,'_et_pb_page_layout','et_right_sidebar'),(8280,1640,'_et_pb_side_nav','off'),(8281,1640,'_et_pb_use_builder','on'),(8282,1640,'_et_pb_first_image',''),(8283,1640,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">April 21st, 2020 2121 hd; last week&#8217;s sale 836 hd; year ago 1718 hd. Feeder steers sold mostly steady. Heifer calves under 525 sold $3-8 higher. Cows and bulls sold steady to $3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$196.00</p>\n<p>400-500<br />\n$160.00-$177.00</p>\n<p>500-600<br />\n$140.00-$163.75</p>\n<p>600-700<br />\n$128.00-$144.50</p>\n<p>700-800<br />\n$118.00-$138.00</p>\n<p>800-900<br />\n$110.00-$126.00</p>\n<p>900-1000<br />\n$104.25-$114.10</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$163.00</p>\n<p>400-500<br />\n$140.00-$158.00</p>\n<p>500-600<br />\n$130.00-$147.50</p>\n<p>600-700<br />\n$110.00-$127.50</p>\n<p>700-800<br />\n$100.00-$118.75</p>\n<p>800-900<br />\n$85.00-$101.50</p>\n<p>900-1000<br />\n$89.00-$105.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows</p>\n<p>High Yield<br />\n$66.00 &#8211; $76.00</p>\n<p>Medium Yield<br />\n$55.00 &#8211; $65.00</p>\n<p>Low Yield<br />\n$45.00 &#8211; $55.00</p>\n<p>Bulls<br />\n$70.00 &#8211; $93.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder Bulls</p>\n<p>300-500<br />\n$140.00 &#8211; $185.00</p>\n<p>500-600<br />\n$105.00 &#8211; $152.50</p>\n<p>700-800<br />\n$85.00 &#8211; $95.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n520lbs @ $152.25</p>\n<p>Â <br />\n596lbs @ $127.50</p>\n<p>STEERS<br />\n779lbs @ $130.00</p>\n<p>Â <br />\n802lbs @ $126.00</p>\n<p>Â <br />\n816lbs @ $124.00</p>\n<p>Â <br />\n866lbs @ $118.50</p>\n<p>Â <br />\n922lbs @ $114.10</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(8284,1640,'_et_pb_truncate_post_date','2020-04-22 19:58:00'),(8285,1640,'_et_pb_old_content',''),(8287,1640,'_et_pb_built_for_post_type','page'),(8288,1640,'_et_pb_ab_subjects',''),(8289,1640,'_et_pb_enable_shortcode_tracking',''),(8290,1640,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1640\" /]'),(8291,1640,'_et_pb_custom_css',''),(8292,1640,'_et_pb_gutter_width','3'),(8293,1640,'_et_builder_version','VB|Divi|4.2.2'),(8294,1640,'_et_pb_show_page_creation','off'),(8295,1640,'_wp_old_slug','february-11-2020-market-report'),(8296,1640,'_wp_old_slug','march-17th-2020-market-report'),(8298,1640,'_dp_original','1625'),(8299,1640,'_edit_lock','1587568523:2'),(8300,1640,'_edit_last','2'),(8306,1656,'_wp_attached_file','2020/04/Tuesday-April-28th-Feeder-Cattle-Consignments.pdf'),(8307,1656,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Tuesday-April-28th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Tuesday-April-28th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Tuesday-April-28th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"Tuesday-April-28th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8309,1667,'_thumbnail_id','786'),(8310,1667,'_et_post_bg_color','#ffffff'),(8311,1667,'_et_post_bg_layout','light'),(8312,1667,'_et_pb_show_title','on'),(8313,1667,'_et_pb_post_hide_nav','default'),(8314,1667,'_et_pb_page_layout','et_right_sidebar'),(8315,1667,'_et_pb_side_nav','off'),(8316,1667,'_et_pb_use_builder','on'),(8317,1667,'_et_pb_first_image',''),(8318,1667,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_10 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_10\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_16  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">April 28th, 2020 2745 hd; last week&#8217;s sale 2121 hd; year ago 2305 hd. Steers under 700lbs sold up to $7 higher. Yearling steers sold steady, and heifers sold steady. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_11\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_17  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$205.00</p>\n<p>400-500<br />\n$160.00-$177.00</p>\n<p>500-600<br />\n$140.00-$168.50</p>\n<p>600-700<br />\n$135.00-$158.50</p>\n<p>700-800<br />\n$110.00-$130.00</p>\n<p>800-900<br />\n$105.00-$122.00</p>\n<p>900-1000<br />\n$100.00-$114.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$160.50</p>\n<p>400-500<br />\n$132.00-$151.00</p>\n<p>500-600<br />\n$130.00-$150.00</p>\n<p>600-700<br />\n$115.00-$140.00</p>\n<p>700-800<br />\n$100.00-$114.00</p>\n<p>800-900<br />\n$95.00-$110.00</p>\n<p>900-1000<br />\n$81.00-$90.75</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_18  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows</p>\n<p>High Yield<br />\n$59.00 &#8211; $69.50</p>\n<p>Medium Yield<br />\n$50.00 &#8211; $58.00</p>\n<p>Low Yield<br />\n$35.00 &#8211; $49.00</p>\n<p>High Yield Bulls<br />\n$79.00 &#8211; $99.50</p>\n<p>Low Yield Bulls<br />\n$50.00-$70.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder Bulls</p>\n<p>300-500<br />\n$130.00 &#8211; $168.00</p>\n<p>500-600<br />\n$108.00 &#8211; $141.00</p>\n<p>700-800<br />\n$101.00 &#8211; $107.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n600lbs @ $140.00</p>\n<p>Â <br />\n730lbs @ $114.00</p>\n<p>Â <br />\n787lbs @ $109.50</p>\n<p>Â <br />\n788lbs @ $110.00</p>\n<p>STEERS<br />\n782lbs @ $124.85</p>\n<p>Â <br />\n825lbs @ $122.00</p>\n<p>Â <br />\n844lbs @ $116.00</p>\n<p>Â <br />\n900lbs @ $114.00</p>\n<p>Â <br />\n922lbs @ $112.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_12\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_19  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_5_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_5 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(8319,1667,'_et_pb_truncate_post_date','2020-05-12 13:03:45'),(8320,1667,'_et_pb_old_content',''),(8322,1667,'_et_pb_built_for_post_type','page'),(8323,1667,'_et_pb_ab_subjects',''),(8324,1667,'_et_pb_enable_shortcode_tracking',''),(8325,1667,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1667\" /]'),(8326,1667,'_et_pb_custom_css',''),(8327,1667,'_et_pb_gutter_width','3'),(8328,1667,'_et_builder_version','VB|Divi|4.2.2'),(8329,1667,'_et_pb_show_page_creation','off'),(8330,1667,'_wp_old_slug','february-11-2020-market-report'),(8331,1667,'_wp_old_slug','march-17th-2020-market-report'),(8334,1667,'_dp_original','1640'),(8335,1667,'_edit_lock','1588173012:2'),(8336,1667,'_edit_last','2'),(8338,1672,'_wp_attached_file','2020/04/Cow-Sale-Pic.docx'),(8339,1674,'_wp_attached_file','2020/04/Cow-Sale-Pic-1.docx'),(8340,1675,'_wp_attached_file','2020/04/Cow-Sale-Pic-2.docx'),(8341,1676,'_wp_attached_file','2020/04/2020-sms-fall-calving-flyer.pdf'),(8342,1677,'_wp_attached_file','2020/04/2020-sms-fall-calving-flyer-1.pdf'),(8344,1681,'_wp_attached_file','2020/04/Show-Me-Select-Fall-Calvers.pdf'),(8347,1685,'_wp_attached_file','2020/04/Show-Me-Select-Fall-Calving-Catalog.pdf'),(8351,1690,'_wp_attached_file','2020/04/Memorial-Day-Sale-Flyer-2020.pdf'),(8352,1692,'_wp_attached_file','2020/04/Memorial-Day-Sale-Flyer-2020-1.pdf'),(8356,1700,'_wp_attached_file','2020/05/Tuesday-May-5th-Feeder-Cattle-Consignments.pdf'),(8358,1703,'_wp_attached_file','2020/05/Tuesday-May-5th-Feeder-Cattle-Consignments-1.pdf'),(8359,1704,'_wp_attached_file','2020/05/Tuesday-May-5th-Feeder-Cattle-Consignments-2.pdf'),(8360,1705,'_wp_attached_file','2020/05/Tuesday-May-5th-Feeder-Cattle-Consignments-3.pdf'),(8361,1706,'_wp_attached_file','2020/05/Tuesday-May-5th-Feeder-Cattle-Consignments-4.pdf'),(8363,1710,'_wp_attached_file','2020/05/Tuesday-May-5th-Feeder-Cattle-Consignments-5.pdf'),(8364,1711,'_wp_attached_file','2020/05/Tuesday-May-5th-Feeder-Cattle-Consignments-6.pdf'),(8366,1716,'_wp_attached_file','2020/05/Tuesday-May-5th-Feeder-Cattle-Consignments-7.pdf'),(8367,1717,'_wp_attached_file','2020/05/Tuesday-May-5th-Feeder-Cattle-Consignments-8.pdf'),(8372,1725,'_thumbnail_id','786'),(8373,1725,'_et_post_bg_color','#ffffff'),(8374,1725,'_et_post_bg_layout','light'),(8375,1725,'_et_pb_show_title','on'),(8376,1725,'_et_pb_post_hide_nav','default'),(8377,1725,'_et_pb_page_layout','et_right_sidebar'),(8378,1725,'_et_pb_side_nav','off'),(8379,1725,'_et_pb_use_builder','on'),(8380,1725,'_et_pb_first_image',''),(8381,1725,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_9 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">May 5th, 2020 2147 hd; last week&#8217;s sale 2745 hd; year ago 1535 hd. Steers under 600lbs sold steady to $5 higher. Heifers sold steady to $5 lower. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$183.00</p>\n<p>400-500<br />\n$160.00-$184.50</p>\n<p>500-600<br />\n$150.00-$177.00</p>\n<p>600-700<br />\n$135.00-$150.00</p>\n<p>700-800<br />\n$110.00-$139.00</p>\n<p>800-900<br />\n$104.00-$122.00</p>\n<p>900-1000<br />\n$101.00-$108.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$165.00</p>\n<p>400-500<br />\n$130.00-$150.00</p>\n<p>500-600<br />\n$128.00-$142.00</p>\n<p>600-700<br />\n$117.00-$134.00</p>\n<p>700-800<br />\n$110.00-$124.50</p>\n<p>800-900<br />\n$97-$110.00</p>\n<p>900-1000<br />\n$94.75-$100.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows</p>\n<p>High Yield<br />\n$57.00 &#8211; $69.50</p>\n<p>Medium Yield<br />\n$49.00 &#8211; $56.00</p>\n<p>Low Yield<br />\n$35.00 &#8211; $48.00</p>\n<p>Bulls<br />\n$70.00 &#8211; $93.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder Bulls</p>\n<p>300-500<br />\n$140.00 &#8211; $187.00</p>\n<p>500-600<br />\n$107.00 &#8211; $135.00</p>\n<p>700-800<br />\n$99.00 &#8211; $100.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n574lbs @ $132.00</p>\n<p>Â <br />\n632lbs @ $134.50</p>\n<p>Â <br />\n724lbs @ $124.50</p>\n<p>STEERS<br />\n709lbs @ $139.00</p>\n<p>Â <br />\n899lbs @ $114.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_4_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_4 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(8382,1725,'_et_pb_truncate_post_date','2020-05-12 13:03:45'),(8383,1725,'_et_pb_old_content',''),(8385,1725,'_et_pb_built_for_post_type','page'),(8386,1725,'_et_pb_ab_subjects',''),(8387,1725,'_et_pb_enable_shortcode_tracking',''),(8388,1725,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1725\" /]'),(8389,1725,'_et_pb_custom_css',''),(8390,1725,'_et_pb_gutter_width','3'),(8391,1725,'_et_builder_version','VB|Divi|4.2.2'),(8392,1725,'_et_pb_show_page_creation','off'),(8393,1725,'_wp_old_slug','february-11-2020-market-report'),(8394,1725,'_wp_old_slug','march-17th-2020-market-report'),(8397,1725,'_dp_original','1667'),(8398,1725,'_edit_lock','1588780414:2'),(8399,1725,'_edit_last','2'),(8401,1734,'_wp_attached_file','2020/05/IMG_1115.jpg'),(8402,1734,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1115.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1115-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1115-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588418988\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:19:\"0.00087032201914708\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8403,1735,'_wp_attached_file','2020/05/IMG_1116.jpg'),(8404,1735,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1116.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1116-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1116-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419000\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0011376564277588\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8405,1736,'_wp_attached_file','2020/05/IMG_1117.jpg'),(8406,1736,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1117.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1117-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1117-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419016\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:19:\"0.00093896713615023\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8407,1737,'_wp_attached_file','2020/05/IMG_1118.jpg'),(8408,1737,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1118.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1118-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1118-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419030\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:19:\"0.00076982294072363\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8409,1738,'_wp_attached_file','2020/05/IMG_1119.jpg'),(8410,1738,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1119.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1119-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1119-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419040\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:19:\"0.00073099415204678\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8411,1739,'_wp_attached_file','2020/05/IMG_1120.jpg'),(8412,1739,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1120.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1120-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1120-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419051\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:18:\"0.0082644628099174\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8413,1740,'_wp_attached_file','2020/05/IMG_1121.jpg'),(8414,1740,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1121.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1121-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1121-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419051\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:18:\"0.0083333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8415,1741,'_wp_attached_file','2020/05/IMG_1122.jpg'),(8416,1741,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1122.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1122-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1122-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419063\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:18:\"0.0093457943925234\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8417,1742,'_wp_attached_file','2020/05/IMG_1123.jpg'),(8418,1742,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1123.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1123-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1123-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419078\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.011764705882353\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8419,1743,'_wp_attached_file','2020/05/IMG_1124.jpg'),(8420,1743,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1124.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1124-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1124-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419092\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.011494252873563\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8421,1744,'_wp_attached_file','2020/05/IMG_1125.jpg'),(8422,1744,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1125.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1125-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1125-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419114\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:18:\"0.0082644628099174\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8423,1745,'_wp_attached_file','2020/05/IMG_1126.jpg'),(8424,1745,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1126.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1126-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1126-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419150\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8425,1746,'_wp_attached_file','2020/05/IMG_1127.jpg'),(8426,1746,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1127.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1127-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1127-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419156\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8427,1747,'_wp_attached_file','2020/05/IMG_11281.jpg'),(8428,1747,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:21:\"2020/05/IMG_11281.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_11281-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_11281-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419162\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8429,1748,'_wp_attached_file','2020/05/IMG_1128.jpg'),(8430,1748,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1128.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1128-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1128-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419162\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8431,1749,'_wp_attached_file','2020/05/IMG_1129.jpg'),(8432,1749,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1129.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1129-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1129-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419169\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8433,1750,'_wp_attached_file','2020/05/IMG_1130.jpg'),(8434,1750,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1130.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1130-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1130-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419193\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8435,1751,'_wp_attached_file','2020/05/IMG_1131.jpg'),(8436,1751,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1131.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1131-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1131-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419208\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0081967213114754\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8437,1752,'_wp_attached_file','2020/05/IMG_1132.jpg'),(8438,1752,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1132.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1132-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1132-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419213\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:18:\"0.0081967213114754\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8439,1753,'_wp_attached_file','2020/05/IMG_1133.jpg'),(8440,1753,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1133.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1133-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1133-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419217\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0082644628099174\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8441,1754,'_wp_attached_file','2020/05/IMG_1134.jpg'),(8442,1754,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1134.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1134-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1134-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419222\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:18:\"0.0082644628099174\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8443,1755,'_wp_attached_file','2020/05/IMG_1135.jpg'),(8444,1755,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1135.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1135-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1135-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419235\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0017636684303351\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8445,1756,'_wp_attached_file','2020/05/IMG_1136-rotated.jpg'),(8446,1756,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/05/IMG_1136-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1136-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1136-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_1136-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_1136-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419282\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_1136.jpg\";}'),(8447,1757,'_wp_attached_file','2020/05/IMG_1137.jpg'),(8448,1757,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1137.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1137-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1137-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419289\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8449,1758,'_wp_attached_file','2020/05/IMG_1138.jpg'),(8450,1758,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1138.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1138-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1138-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419303\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0040322580645161\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8451,1759,'_wp_attached_file','2020/05/IMG_1139.jpg'),(8452,1759,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1139.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1139-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1139-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419309\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0032679738562092\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8453,1760,'_wp_attached_file','2020/05/IMG_1140.jpg'),(8454,1760,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1140.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1140-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1140-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419311\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0033898305084746\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8455,1761,'_wp_attached_file','2020/05/IMG_1141.jpg'),(8456,1761,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1141.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1141-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1141-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419329\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0011976047904192\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8457,1762,'_wp_attached_file','2020/05/IMG_1142.jpg'),(8458,1762,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1142.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1142-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1142-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419339\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:19:\"0.00090909090909091\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8459,1763,'_wp_attached_file','2020/05/IMG_1143.jpg'),(8460,1763,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1143.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1143-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1143-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419343\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:19:\"0.00092936802973978\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8461,1764,'_wp_attached_file','2020/05/IMG_1144.jpg'),(8462,1764,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1144.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1144-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1144-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419351\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0011376564277588\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8463,1765,'_wp_attached_file','2020/05/IMG_1145.jpg'),(8464,1765,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1145.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1145-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1145-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419359\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0010288065843621\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8465,1766,'_wp_attached_file','2020/05/IMG_1146-rotated.jpg'),(8466,1766,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/05/IMG_1146-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1146-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1146-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_1146-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_1146-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419709\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0028818443804035\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_1146.jpg\";}'),(8467,1767,'_wp_attached_file','2020/05/IMG_1147-rotated.jpg'),(8468,1767,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/05/IMG_1147-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1147-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1147-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_1147-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_1147-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419712\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0029850746268657\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_1147.jpg\";}'),(8469,1768,'_wp_attached_file','2020/05/IMG_1148-rotated.jpg'),(8470,1768,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/05/IMG_1148-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1148-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1148-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_1148-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_1148-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419916\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_1148.jpg\";}'),(8471,1769,'_wp_attached_file','2020/05/IMG_1149.jpg'),(8472,1769,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1149.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1149-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1149-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588420046\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8473,1770,'_wp_attached_file','2020/05/IMG_1150.jpg'),(8474,1770,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1150.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1150-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1150-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588420146\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.035714285714286\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8475,1771,'_wp_attached_file','2020/05/IMG_1151.jpg'),(8476,1771,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1151.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1151-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1151-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588420151\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8477,1772,'_wp_attached_file','2020/05/IMG_1152.jpg'),(8478,1772,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1152.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1152-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1152-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588420248\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0021505376344086\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8479,1773,'_wp_attached_file','2020/05/IMG_1153.jpg'),(8480,1773,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/05/IMG_1153.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1153-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1153-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588420254\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0013175230566535\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8481,1774,'_wp_attached_file','2020/05/IMG_1115-1.jpg'),(8482,1774,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1115-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1115-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1115-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588418988\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:19:\"0.00087032201914708\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8483,1775,'_wp_attached_file','2020/05/IMG_1116-1.jpg'),(8484,1775,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1116-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1116-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1116-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419000\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0011376564277588\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8485,1776,'_wp_attached_file','2020/05/IMG_1117-1.jpg'),(8486,1776,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1117-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1117-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1117-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419016\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:19:\"0.00093896713615023\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8487,1777,'_wp_attached_file','2020/05/IMG_1118-1.jpg'),(8488,1777,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1118-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1118-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1118-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419030\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:19:\"0.00076982294072363\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8489,1778,'_wp_attached_file','2020/05/IMG_1119-1.jpg'),(8490,1778,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1119-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1119-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1119-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419040\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:19:\"0.00073099415204678\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8491,1779,'_wp_attached_file','2020/05/IMG_1120-1.jpg'),(8492,1779,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1120-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1120-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1120-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419051\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:18:\"0.0082644628099174\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8493,1780,'_wp_attached_file','2020/05/IMG_1121-1.jpg'),(8494,1780,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1121-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1121-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1121-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419051\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:18:\"0.0083333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8495,1781,'_wp_attached_file','2020/05/IMG_1122-1.jpg'),(8496,1781,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1122-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1122-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1122-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419063\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:18:\"0.0093457943925234\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8497,1782,'_wp_attached_file','2020/05/IMG_1123-1.jpg'),(8498,1782,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1123-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1123-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1123-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419078\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.011764705882353\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8499,1783,'_wp_attached_file','2020/05/IMG_1124-1.jpg'),(8500,1783,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1124-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1124-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1124-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419092\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.011494252873563\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8501,1784,'_wp_attached_file','2020/05/IMG_1125-1.jpg'),(8502,1784,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1125-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1125-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1125-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419114\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:18:\"0.0082644628099174\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8503,1785,'_wp_attached_file','2020/05/IMG_1126-1.jpg'),(8504,1785,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1126-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1126-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1126-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419150\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8505,1786,'_wp_attached_file','2020/05/IMG_1127-1.jpg'),(8506,1786,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1127-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1127-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1127-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419156\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8507,1787,'_wp_attached_file','2020/05/IMG_11281-1.jpg'),(8508,1787,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:23:\"2020/05/IMG_11281-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"IMG_11281-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"IMG_11281-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419162\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8509,1788,'_wp_attached_file','2020/05/IMG_1128-1.jpg'),(8510,1788,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1128-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1128-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1128-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419162\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8511,1789,'_wp_attached_file','2020/05/IMG_1129-1.jpg'),(8512,1789,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1129-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1129-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1129-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419169\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8513,1790,'_wp_attached_file','2020/05/IMG_1130-1.jpg'),(8514,1790,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1130-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1130-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1130-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419193\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8515,1791,'_wp_attached_file','2020/05/IMG_1131-1.jpg'),(8516,1791,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1131-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1131-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1131-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419208\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0081967213114754\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8517,1792,'_wp_attached_file','2020/05/IMG_1132-1.jpg'),(8518,1792,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1132-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1132-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1132-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419213\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:18:\"0.0081967213114754\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8519,1793,'_wp_attached_file','2020/05/IMG_1133-1.jpg'),(8520,1793,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1133-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1133-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1133-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419217\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:18:\"0.0082644628099174\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8521,1794,'_wp_attached_file','2020/05/IMG_1134-1.jpg'),(8522,1794,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1134-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1134-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1134-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419222\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:18:\"0.0082644628099174\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8523,1795,'_wp_attached_file','2020/05/IMG_1135-1.jpg'),(8524,1795,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1135-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1135-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1135-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419235\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0017636684303351\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8525,1796,'_wp_attached_file','2020/05/IMG_1136-1-rotated.jpg'),(8526,1796,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:30:\"2020/05/IMG_1136-1-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1136-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1136-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"IMG_1136-1-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"IMG_1136-1-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419282\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_1136-1.jpg\";}'),(8527,1797,'_wp_attached_file','2020/05/IMG_1137-1.jpg'),(8528,1797,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1137-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1137-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1137-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419289\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8529,1798,'_wp_attached_file','2020/05/IMG_1138-1.jpg'),(8530,1798,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1138-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1138-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1138-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419303\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0040322580645161\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8531,1799,'_wp_attached_file','2020/05/IMG_1139-1.jpg'),(8532,1799,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1139-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1139-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1139-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419309\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0032679738562092\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8533,1800,'_wp_attached_file','2020/05/IMG_1140-1.jpg'),(8534,1800,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1140-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1140-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1140-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419311\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0033898305084746\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8535,1801,'_wp_attached_file','2020/05/IMG_1141-1.jpg'),(8536,1801,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1141-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1141-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1141-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419329\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0011976047904192\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8537,1802,'_wp_attached_file','2020/05/IMG_1142-1.jpg'),(8538,1802,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1142-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1142-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1142-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419339\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:19:\"0.00090909090909091\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8539,1803,'_wp_attached_file','2020/05/IMG_1143-1.jpg'),(8540,1803,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1143-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1143-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1143-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419343\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:19:\"0.00092936802973978\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8541,1804,'_wp_attached_file','2020/05/IMG_1144-1.jpg'),(8542,1804,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1144-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1144-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1144-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419351\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0011376564277588\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8543,1805,'_wp_attached_file','2020/05/IMG_1145-1.jpg'),(8544,1805,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1145-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1145-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1145-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419359\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0010288065843621\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8545,1806,'_wp_attached_file','2020/05/IMG_1146-1-rotated.jpg'),(8546,1806,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:30:\"2020/05/IMG_1146-1-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1146-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1146-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"IMG_1146-1-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"IMG_1146-1-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419709\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0028818443804035\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_1146-1.jpg\";}'),(8547,1807,'_wp_attached_file','2020/05/IMG_1147-1-rotated.jpg'),(8548,1807,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:30:\"2020/05/IMG_1147-1-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1147-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1147-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"IMG_1147-1-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"IMG_1147-1-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419712\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0029850746268657\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_1147-1.jpg\";}'),(8549,1808,'_wp_attached_file','2020/05/IMG_1148-1-rotated.jpg'),(8550,1808,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:30:\"2020/05/IMG_1148-1-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1148-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1148-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"IMG_1148-1-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"IMG_1148-1-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588419916\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_1148-1.jpg\";}'),(8551,1809,'_wp_attached_file','2020/05/IMG_1149-1.jpg'),(8552,1809,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1149-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1149-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1149-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588420046\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8553,1810,'_wp_attached_file','2020/05/IMG_1150-1.jpg'),(8554,1810,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1150-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1150-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1150-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588420146\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.035714285714286\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8555,1811,'_wp_attached_file','2020/05/IMG_1151-1.jpg'),(8556,1811,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1151-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1151-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1151-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588420151\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8557,1812,'_wp_attached_file','2020/05/IMG_1152-1.jpg'),(8558,1812,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1152-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1152-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1152-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588420248\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0021505376344086\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8559,1813,'_wp_attached_file','2020/05/IMG_1153-1.jpg'),(8560,1813,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/05/IMG_1153-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1153-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1153-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588420254\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:18:\"0.0013175230566535\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(8561,1450,'_oembed_790f282ca5a00d81a02d1318e8e8dd6b','{{unknown}}'),(8562,1450,'_oembed_a94ec14796eb5420665e089d9708b898','{{unknown}}'),(8563,1816,'_wp_attached_file','2020/05/Memorial-Day-2020-Detailed-Consignment-List.pdf'),(8565,1820,'_wp_attached_file','2020/05/2020-Memorial-Day-Sale-Flyer.pdf'),(8566,1821,'_wp_attached_file','2020/05/Memorial-Day-2020-Detailed-Consignment-List-1.pdf'),(8567,1824,'_wp_attached_file','2020/05/Tuesday-May-12th-Feeder-Cattle-Consignments.pdf'),(8569,1826,'_wp_attached_file','2020/05/Tuesday-May-12th-Feeder-Cattle-Consignments-1.pdf'),(8570,1827,'_wp_attached_file','2020/05/Tuesday-May-12th-Feeder-Cattle-Consignments-2.pdf'),(8575,1837,'_thumbnail_id','786'),(8576,1837,'_et_post_bg_color','#ffffff'),(8577,1837,'_et_post_bg_layout','light'),(8578,1837,'_et_pb_show_title','on'),(8579,1837,'_et_pb_post_hide_nav','default'),(8580,1837,'_et_pb_page_layout','et_right_sidebar'),(8581,1837,'_et_pb_side_nav','off'),(8582,1837,'_et_pb_use_builder','on'),(8583,1837,'_et_pb_first_image',''),(8584,1837,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">May 12th, 2020 2174 hd; last week&#8217;s sale 2147 hd; year ago 2847 hd. Steer and heifer calves sold mostly steady to $3 higher. Load lots of 700-850lb steers and heifers sold with a sharply higher undertone. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$178.00</p>\n<p>400-500<br />\n$150.00-$177.50</p>\n<p>500-600<br />\n$147.00-$172.00</p>\n<p>600-700<br />\n$135.00-$161.00</p>\n<p>700-800<br />\n$120.00-$146.75</p>\n<p>800-900<br />\n$120.00-$139.85</p>\n<p>900-1000<br />\nN/A</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$168.00</p>\n<p>400-500<br />\n$140.00-$167.50</p>\n<p>500-600<br />\n$130.00-$154.00</p>\n<p>600-700<br />\n$115.00-$147.50</p>\n<p>700-800<br />\n$108.00-$125.00</p>\n<p>800-900<br />\n$100.00-$108.00</p>\n<p>900-1000<br />\nN/A</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">FatsÂ </p>\n<p>Fat Cattle<br />\n$95.00-$100.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$61.00 &#8211; $70.50</p>\n<p>Medium Yield<br />\n$52.00 &#8211; $60.00</p>\n<p>Low Yield<br />\n$44.00 &#8211; $51.00</p>\n<p>Bulls<br />\n$75.00 &#8211; $100.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder Bulls</p>\n<p>300-500<br />\n$135.00 &#8211; $170.00</p>\n<p>500-600<br />\n$120.00 &#8211; $150.00</p>\n<p>700-800<br />\n$105.00 &#8211; $111.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n748lbs @ $125.00 (Black)</p>\n<p>Â <br />\n752lbs @ $117.10 (Colored)</p>\n<p>STEERS<br />\n810lbs @ $139.85</p>\n<p>Â <br />\n818lbs @ $138.85</p>\n<p>Â <br />\n833lbs @ $123.35</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(8585,1837,'_et_pb_truncate_post_date','2020-05-13 20:47:22'),(8586,1837,'_et_pb_old_content',''),(8588,1837,'_et_pb_built_for_post_type','page'),(8589,1837,'_et_pb_ab_subjects',''),(8590,1837,'_et_pb_enable_shortcode_tracking',''),(8591,1837,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1837\" /]'),(8592,1837,'_et_pb_custom_css',''),(8593,1837,'_et_pb_gutter_width','3'),(8594,1837,'_et_builder_version','VB|Divi|4.2.2'),(8595,1837,'_et_pb_show_page_creation','off'),(8596,1837,'_wp_old_slug','february-11-2020-market-report'),(8597,1837,'_wp_old_slug','march-17th-2020-market-report'),(8599,1837,'_dp_original','1725'),(8600,1837,'_edit_lock','1589384684:2'),(8601,1837,'_edit_last','2'),(8605,1845,'_wp_attached_file','2020/05/Memorial-Day-2020-Detailed-Consignment-List-2.pdf'),(8606,1847,'_wp_attached_file','2020/05/Memorial-Day-2020-Detailed-Consignment-List-3.pdf'),(8607,1850,'_wp_attached_file','2020/05/Tuesday-May-19th-Feeder-Cattle-Consignments.pdf'),(8609,1854,'_wp_attached_file','2020/05/Memorial-Day-2020-Detailed-Consignment-List-4.pdf'),(8610,1856,'_thumbnail_id','786'),(8611,1856,'_et_post_bg_color','#ffffff'),(8612,1856,'_et_post_bg_layout','light'),(8613,1856,'_et_pb_show_title','on'),(8614,1856,'_et_pb_post_hide_nav','default'),(8615,1856,'_et_pb_page_layout','et_right_sidebar'),(8616,1856,'_et_pb_side_nav','off'),(8617,1856,'_et_pb_use_builder','on'),(8618,1856,'_et_pb_first_image',''),(8619,1856,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">May 19th, 2020 3013 hd; last week&#8217;s sale 2174 hd; year ago 1788 hd. Feeders Sold $3-6 higher with very good buyer demand. Weigh cows and bulls sold $3-4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$195.00</p>\n<p>400-500<br />\n$160.00-$186.00</p>\n<p>500-600<br />\n$140.00-$181.00</p>\n<p>600-700<br />\n$130.00-$156.50</p>\n<p>700-800<br />\n$120.00-$142.50</p>\n<p>800-900<br />\n$112.50-$131.35</p>\n<p>900-1000<br />\n$105.00-$115.50</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$174.00</p>\n<p>400-500<br />\n$140.00-$160.00</p>\n<p>500-600<br />\n$120.00-$150.00</p>\n<p>600-700<br />\n$117.00-$134.00</p>\n<p>700-800<br />\n$113.00-$129.25</p>\n<p>800-900<br />\n$105.00-$120.00</p>\n<p>900-1000<br />\n$90.00-$106.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$63.00 &#8211; $74.50</p>\n<p>Medium Yield<br />\n$53.00 &#8211; $63.00</p>\n<p>Low Yield<br />\n$44.00 &#8211; $52.00</p>\n<p>Bulls<br />\n$75.00 &#8211; $97.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder Bulls</p>\n<p>300-500<br />\n$150.00 &#8211; $195.00</p>\n<p>500-600<br />\n$122.00 &#8211; $140.00</p>\n<p>700-800<br />\n$108.00 &#8211; $112.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n701lbs @ $129.25</p>\n<p>Â <br />\n847lbs @ $115.00</p>\n<p>STEERS<br />\n781lbs @ $135.85</p>\n<p>Â <br />\n808lbs @ $131.35</p>\n<p>Â <br />\n809lbs @ $125.00</p>\n<p>Â <br />\n845lbs @ $125.00</p>\n<p>Â <br />\n997lbs @ $115.50</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(8620,1856,'_et_pb_truncate_post_date','2020-06-10 09:53:33'),(8621,1856,'_et_pb_old_content',''),(8623,1856,'_et_pb_built_for_post_type','page'),(8624,1856,'_et_pb_ab_subjects',''),(8625,1856,'_et_pb_enable_shortcode_tracking',''),(8626,1856,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1856\" /]'),(8627,1856,'_et_pb_custom_css',''),(8628,1856,'_et_pb_gutter_width','3'),(8629,1856,'_et_builder_version','VB|Divi|4.2.2'),(8630,1856,'_et_pb_show_page_creation','off'),(8631,1856,'_wp_old_slug','february-11-2020-market-report'),(8632,1856,'_wp_old_slug','march-17th-2020-market-report'),(8634,1856,'_dp_original','1837'),(8635,1856,'_edit_lock','1592408877:2'),(8636,1856,'_edit_last','2'),(8639,1856,'_wp_old_slug','may-1th-2020-market-report-2'),(8640,1450,'_et_pb_show_page_creation','off'),(8641,1450,'_et_pb_built_for_post_type','page'),(8642,1450,'_et_pb_ab_subjects',''),(8643,1450,'_et_pb_enable_shortcode_tracking',''),(8644,1450,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1450\" /]'),(8645,1450,'_et_pb_custom_css',''),(8646,1450,'_et_pb_gutter_width','3'),(8648,1450,'_et_builder_version','VB|Divi|4.23.1'),(8649,1868,'_wp_attached_file','2020/05/Memorial-Day-2020-Detailed-Consignment-List-5.pdf'),(8650,1869,'_wp_attached_file','2020/05/Rhoades-Sale-Flyer.pdf'),(8652,665,'_edit_lock','1590001790:2'),(8656,1878,'_wp_attached_file','2020/05/Tuesday-May-26th-Feeder-Cattle-Consignments.pdf'),(8658,1881,'_thumbnail_id','786'),(8659,1881,'_et_post_bg_color','#ffffff'),(8660,1881,'_et_post_bg_layout','light'),(8661,1881,'_et_pb_show_title','on'),(8662,1881,'_et_pb_post_hide_nav','default'),(8663,1881,'_et_pb_page_layout','et_right_sidebar'),(8664,1881,'_et_pb_side_nav','off'),(8665,1881,'_et_pb_use_builder','on'),(8666,1881,'_et_pb_first_image',''),(8667,1881,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">May 26th, 2020 1050 hd; last week&#8217;s sale 3013 hd; year ago 488 hd. Feeder cattle sold steady to $3 higher, with good buyer activity. Cows and bulls sold $2-3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$194.00</p>\n<p>400-500<br />\n$165.00-$188.00</p>\n<p>500-600<br />\n$160.00-$177.00</p>\n<p>600-700<br />\n$140.00-$160.00</p>\n<p>700-800<br />\n$125.00-$140.00</p>\n<p>800-900<br />\n$118.00-$124.50</p>\n<p>900-1000<br />\n$119.00-$120.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$169.00</p>\n<p>400-500<br />\n$150.00-$160.00</p>\n<p>500-600<br />\n$135.00-$150.00</p>\n<p>600-700<br />\n$120.00-$134.50</p>\n<p>700-800<br />\n$114.00-$123.25</p>\n<p>800-900<br />\n$108.00-$111.25</p>\n<p>900-1000<br />\nN/A</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$60.00 &#8211; $75.00</p>\n<p>Medium Yield<br />\n$51.00 &#8211; $59.00</p>\n<p>Low Yield<br />\n$42.00 &#8211; $51.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $103.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n513bs @ $150.00</p>\n<p>STEERS<br />\n525lbs @ $177.00</p>\n<p>Â <br />\n644lbs @ $148.50</p>\n<p>Â <br />\n660lbs @ $149.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(8668,1881,'_et_pb_truncate_post_date','2020-06-10 09:53:33'),(8669,1881,'_et_pb_old_content',''),(8671,1881,'_et_pb_built_for_post_type','page'),(8672,1881,'_et_pb_ab_subjects',''),(8673,1881,'_et_pb_enable_shortcode_tracking',''),(8674,1881,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1881\" /]'),(8675,1881,'_et_pb_custom_css',''),(8676,1881,'_et_pb_gutter_width','3'),(8677,1881,'_et_builder_version','VB|Divi|4.2.2'),(8678,1881,'_et_pb_show_page_creation','off'),(8679,1881,'_wp_old_slug','february-11-2020-market-report'),(8680,1881,'_wp_old_slug','march-17th-2020-market-report'),(8681,1881,'_wp_old_slug','may-1th-2020-market-report-2'),(8683,1881,'_dp_original','1856'),(8684,1881,'_edit_lock','1590592216:2'),(8685,1881,'_edit_last','2'),(8686,1890,'_wp_attached_file','2020/06/Tuesday-June-2nd-Feeder-Cattle-Consignments.pdf'),(8687,1890,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"Tuesday-June-2nd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Tuesday-June-2nd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Tuesday-June-2nd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Tuesday-June-2nd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8691,1895,'_thumbnail_id','786'),(8692,1895,'_et_post_bg_color','#ffffff'),(8693,1895,'_et_post_bg_layout','light'),(8694,1895,'_et_pb_show_title','on'),(8695,1895,'_et_pb_post_hide_nav','default'),(8696,1895,'_et_pb_page_layout','et_right_sidebar'),(8697,1895,'_et_pb_side_nav','off'),(8698,1895,'_et_pb_use_builder','on'),(8699,1895,'_et_pb_first_image',''),(8700,1895,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">June 2nd, 2020 4365 hd; last week&#8217;s sale 1050 hd; year ago 2315 hd. Feeder cattle sold steady compared to the last two weeks. Cows and bulls sold $3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$188.00</p>\n<p>400-500<br />\n$150.00-$187.00</p>\n<p>500-600<br />\n$144.00-$168.00</p>\n<p>600-700<br />\n$135.00-$160.25</p>\n<p>700-800<br />\n$120.00-$144.75</p>\n<p>800-900<br />\n$115.00-$136.00</p>\n<p>900-1000<br />\n$111.00-$119.75</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$145.00-$175.00</p>\n<p>400-500<br />\n$140.00-$161.00</p>\n<p>500-600<br />\n$130.00-$161.00</p>\n<p>600-700<br />\n$120.00-$138.00</p>\n<p>700-800<br />\n$110.00-$136.35</p>\n<p>800-900<br />\n$110.00-$120.00</p>\n<p>900-1000<br />\nN/A</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$66.00 &#8211; $75.00</p>\n<p>Medium Yield<br />\n$54.00 &#8211; $65.00</p>\n<p>Low Yield<br />\n$45.00 &#8211; $53.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $105.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n712bs @ $133.00</p>\n<p>HEIFERS<br />\n705lbs @ $135.00</p>\n<p>HEIFERS<br />\n650lbs @ $136.35</p>\n<p>HEIFERS<br />\n605lbs @ $138.00</p>\n<p>STEERS<br />\n739lbs @140.00</p>\n<p>STEERS<br />\n768lbs @141.00</p>\n<p>STEERS<br />\n868lbs @126.75</p>\n<p>STEERS<br />\n460lbs @187.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(8701,1895,'_et_pb_truncate_post_date','2020-06-10 09:53:32'),(8702,1895,'_et_pb_old_content',''),(8704,1895,'_et_pb_built_for_post_type','page'),(8705,1895,'_et_pb_ab_subjects',''),(8706,1895,'_et_pb_enable_shortcode_tracking',''),(8707,1895,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1895\" /]'),(8708,1895,'_et_pb_custom_css',''),(8709,1895,'_et_pb_gutter_width','3'),(8710,1895,'_et_builder_version','VB|Divi|4.4.4'),(8711,1895,'_et_pb_show_page_creation','off'),(8712,1895,'_wp_old_slug','february-11-2020-market-report'),(8713,1895,'_wp_old_slug','march-17th-2020-market-report'),(8714,1895,'_wp_old_slug','may-1th-2020-market-report-2'),(8716,1895,'_dp_original','1881'),(8717,1895,'_edit_lock','1592408826:2'),(8718,1895,'_edit_last','2'),(8724,1911,'_wp_attached_file','2020/06/Tuesday-June-9th-Feeder-Cattle-Consignments.pdf'),(8725,1911,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"Tuesday-June-9th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Tuesday-June-9th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Tuesday-June-9th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Tuesday-June-9th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8731,1924,'_thumbnail_id','786'),(8732,1924,'_et_post_bg_color','#ffffff'),(8733,1924,'_et_post_bg_layout','light'),(8734,1924,'_et_pb_show_title','on'),(8735,1924,'_et_pb_post_hide_nav','default'),(8736,1924,'_et_pb_page_layout','et_right_sidebar'),(8737,1924,'_et_pb_side_nav','off'),(8738,1924,'_et_pb_use_builder','on'),(8739,1924,'_et_pb_first_image',''),(8740,1924,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">June 9th, 2020 2137 hd; last week&#8217;s sale 4365 hd; year ago 1854 hd. Compared to last week 650wt. steers sold $3-7 higher and all other sold steady. Heifers sold steady to $5 higher. Cows and bulls sold $2-4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$184.50</p>\n<p>400-500<br />\n$150.00-$183.00</p>\n<p>500-600<br />\n$138.00-$170.00</p>\n<p>600-700<br />\n$134.00-$158.00</p>\n<p>700-800<br />\n$125.00-$148.00</p>\n<p>800-900<br />\n$117.50-$135.00</p>\n<p>900-1000<br />\n$107.50-$112.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$169.00</p>\n<p>400-500<br />\n$145.00-$169.00</p>\n<p>500-600<br />\n$127.00-$152.50</p>\n<p>600-700<br />\n$114.00-$136.25</p>\n<p>700-800<br />\n$111.50-$126.75</p>\n<p>800-900<br />\n$100.00-$105.00</p>\n<p>900-1000<br />\nN/A</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$67.00 &#8211; $75.00</p>\n<p>Medium Yield<br />\n$58.00 &#8211; $67.00</p>\n<p>Low Yield<br />\n$46.00 &#8211; $57.00</p>\n<p>Bulls-High Yield<br />\n$85.00 &#8211; $107.00</p>\n<p>Low Yield<br />\n$60.00 &#8211; $78.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n647lbs @ $135.25-Black</p>\n<p>Â <br />\n684lbs @ $128.10-CharX</p>\n<p>STEERS<br />\n656lbs @ $149.00</p>\n<p>Â <br />\n775lbs @ $139.85</p>\n<p>Â <br />\n783lbs @139.25</p>\n<p>Â <br />\n832lbs @135.00</p>\n<p>Â <br />\n1050lbs @112.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(8741,1924,'_et_pb_truncate_post_date','2020-06-16 04:25:35'),(8742,1924,'_et_pb_old_content',''),(8744,1924,'_et_pb_built_for_post_type','page'),(8745,1924,'_et_pb_ab_subjects',''),(8746,1924,'_et_pb_enable_shortcode_tracking',''),(8747,1924,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1924\" /]'),(8748,1924,'_et_pb_custom_css',''),(8749,1924,'_et_pb_gutter_width','3'),(8750,1924,'_et_builder_version','VB|Divi|4.4.4'),(8751,1924,'_et_pb_show_page_creation','off'),(8752,1924,'_wp_old_slug','february-11-2020-market-report'),(8753,1924,'_wp_old_slug','march-17th-2020-market-report'),(8754,1924,'_wp_old_slug','may-1th-2020-market-report-2'),(8756,1924,'_dp_original','1895'),(8757,1924,'_edit_lock','1592408847:2'),(8758,1924,'_edit_last','2'),(8762,1933,'_wp_attached_file','2020/06/Drexel-Ranch-sale.pdf'),(8763,1933,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:25:\"Drexel-Ranch-sale-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Drexel-Ranch-sale-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Drexel-Ranch-sale-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Drexel-Ranch-sale-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8769,1945,'_wp_attached_file','2020/06/Tuesday-June-16th-Feeder-Cattle-Consignments.pdf'),(8770,1945,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"Tuesday-June-16th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Tuesday-June-16th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Tuesday-June-16th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Tuesday-June-16th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8772,1949,'_thumbnail_id','786'),(8773,1949,'_et_post_bg_color','#ffffff'),(8774,1949,'_et_post_bg_layout','light'),(8775,1949,'_et_pb_show_title','on'),(8776,1949,'_et_pb_post_hide_nav','default'),(8777,1949,'_et_pb_page_layout','et_right_sidebar'),(8778,1949,'_et_pb_side_nav','off'),(8779,1949,'_et_pb_use_builder','on'),(8780,1949,'_et_pb_first_image',''),(8781,1949,'_et_pb_truncate_post',''),(8782,1949,'_et_pb_truncate_post_date',''),(8783,1949,'_et_pb_old_content',''),(8785,1949,'_et_pb_built_for_post_type','page'),(8786,1949,'_et_pb_ab_subjects',''),(8787,1949,'_et_pb_enable_shortcode_tracking',''),(8788,1949,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1949\" /]'),(8789,1949,'_et_pb_custom_css',''),(8790,1949,'_et_pb_gutter_width','3'),(8791,1949,'_et_builder_version','VB|Divi|4.4.4'),(8792,1949,'_et_pb_show_page_creation','off'),(8793,1949,'_wp_old_slug','february-11-2020-market-report'),(8794,1949,'_wp_old_slug','march-17th-2020-market-report'),(8795,1949,'_wp_old_slug','may-1th-2020-market-report-2'),(8797,1949,'_dp_original','1924'),(8798,1949,'_edit_lock','1592409130:2'),(8799,1949,'_edit_last','2'),(8807,1967,'_wp_page_template','default'),(8808,1967,'_et_pb_post_hide_nav','default'),(8809,1967,'_et_pb_page_layout','et_right_sidebar'),(8810,1967,'_et_pb_side_nav','off'),(8811,1967,'fusion_builder_status',''),(8812,1967,'_et_pb_use_builder','on'),(8813,1967,'_et_pb_first_image',''),(8814,1967,'_et_pb_truncate_post',''),(8815,1967,'_et_pb_truncate_post_date',''),(8816,1967,'_et_pb_old_content',''),(8817,1967,'_et_pb_built_for_post_type','page'),(8818,1967,'_et_pb_ab_subjects',''),(8819,1967,'_et_pb_enable_shortcode_tracking',''),(8820,1967,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1967\" /]'),(8821,1967,'_et_pb_custom_css',''),(8822,1967,'_et_pb_gutter_width','3'),(8823,1967,'_et_builder_version','VB|Divi|4.23.1'),(8825,1967,'_et_pb_show_page_creation','off'),(8827,1967,'_dp_original','639'),(8828,1967,'_edit_lock','1701270864:2'),(8829,1969,'_wp_attached_file','2020/06/Tuesday-June-23rd-Feeder-Cattle-Consignments.pdf'),(8830,1969,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"Tuesday-June-23rd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Tuesday-June-23rd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Tuesday-June-23rd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Tuesday-June-23rd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8832,1973,'_wp_attached_file','2020/06/Tuesday-June-23rd-Feeder-Cattle-Consignments-1.pdf'),(8833,1973,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"Tuesday-June-23rd-Feeder-Cattle-Consignments-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Tuesday-June-23rd-Feeder-Cattle-Consignments-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"Tuesday-June-23rd-Feeder-Cattle-Consignments-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Tuesday-June-23rd-Feeder-Cattle-Consignments-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8835,1976,'_wp_attached_file','2020/06/Tuesday-June-23rd-Feeder-Cattle-Consignments-2.pdf'),(8836,1976,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"Tuesday-June-23rd-Feeder-Cattle-Consignments-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Tuesday-June-23rd-Feeder-Cattle-Consignments-2-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"Tuesday-June-23rd-Feeder-Cattle-Consignments-2-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Tuesday-June-23rd-Feeder-Cattle-Consignments-2-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8839,1979,'_thumbnail_id','786'),(8840,1979,'_et_post_bg_color','#ffffff'),(8841,1979,'_et_post_bg_layout','light'),(8842,1979,'_et_pb_show_title','on'),(8843,1979,'_et_pb_post_hide_nav','default'),(8844,1979,'_et_pb_page_layout','et_right_sidebar'),(8845,1979,'_et_pb_side_nav','off'),(8846,1979,'_et_pb_use_builder','on'),(8847,1979,'_et_pb_first_image',''),(8848,1979,'_et_pb_truncate_post',''),(8849,1979,'_et_pb_truncate_post_date',''),(8850,1979,'_et_pb_old_content',''),(8852,1979,'_et_pb_built_for_post_type','page'),(8853,1979,'_et_pb_ab_subjects',''),(8854,1979,'_et_pb_enable_shortcode_tracking',''),(8855,1979,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"1979\" /]'),(8856,1979,'_et_pb_custom_css',''),(8857,1979,'_et_pb_gutter_width','3'),(8858,1979,'_et_builder_version','VB|Divi|4.4.4'),(8859,1979,'_et_pb_show_page_creation','off'),(8860,1979,'_wp_old_slug','february-11-2020-market-report'),(8861,1979,'_wp_old_slug','march-17th-2020-market-report'),(8862,1979,'_wp_old_slug','may-1th-2020-market-report-2'),(8864,1979,'_dp_original','1949'),(8865,1979,'_edit_lock','1593017375:2'),(8866,1979,'_edit_last','2'),(8870,1989,'_wp_attached_file','2020/06/Tuesday-June-30th-Feeder-Cattle-Consignments.pdf'),(8871,1989,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"Tuesday-June-30th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Tuesday-June-30th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Tuesday-June-30th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Tuesday-June-30th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8877,1450,'_oembed_50bea804a1695eae26b625d19def84cc','{{unknown}}'),(8879,1450,'_oembed_cc7fea642d2ce6e86d9a70478611f0f7','{{unknown}}'),(8880,1450,'_oembed_620c8f2f6a719556adf561d39e38dfbc','{{unknown}}'),(8881,1450,'_oembed_951d223f87b1bcb66f86488ae76acdc8','{{unknown}}'),(8884,2007,'_thumbnail_id','786'),(8885,2007,'_et_post_bg_color','#ffffff'),(8886,2007,'_et_post_bg_layout','light'),(8887,2007,'_et_pb_show_title','on'),(8888,2007,'_et_pb_post_hide_nav','default'),(8889,2007,'_et_pb_page_layout','et_right_sidebar'),(8890,2007,'_et_pb_side_nav','off'),(8891,2007,'_et_pb_use_builder','on'),(8892,2007,'_et_pb_first_image',''),(8893,2007,'_et_pb_truncate_post',''),(8894,2007,'_et_pb_truncate_post_date',''),(8895,2007,'_et_pb_old_content',''),(8897,2007,'_et_pb_built_for_post_type','page'),(8898,2007,'_et_pb_ab_subjects',''),(8899,2007,'_et_pb_enable_shortcode_tracking',''),(8900,2007,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2007\" /]'),(8901,2007,'_et_pb_custom_css',''),(8902,2007,'_et_pb_gutter_width','3'),(8903,2007,'_et_builder_version','VB|Divi|4.4.4'),(8904,2007,'_et_pb_show_page_creation','off'),(8905,2007,'_wp_old_slug','february-11-2020-market-report'),(8906,2007,'_wp_old_slug','march-17th-2020-market-report'),(8907,2007,'_wp_old_slug','may-1th-2020-market-report-2'),(8910,2007,'_dp_original','1979'),(8911,2007,'_edit_lock','1593614203:2'),(8912,2007,'_edit_last','2'),(8914,2013,'_wp_attached_file','2020/07/Charles-E.-Breit-Sale-Bill.pdf'),(8915,2013,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:34:\"Charles-E.-Breit-Sale-Bill-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Charles-E.-Breit-Sale-Bill-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Charles-E.-Breit-Sale-Bill-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Charles-E.-Breit-Sale-Bill-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8919,2019,'_wp_attached_file','2020/07/Tuesday-July-7th-Feeder-Cattle-Consignments.pdf'),(8920,2019,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"Tuesday-July-7th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Tuesday-July-7th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Tuesday-July-7th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Tuesday-July-7th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8924,2025,'_thumbnail_id','786'),(8925,2025,'_et_post_bg_color','#ffffff'),(8926,2025,'_et_post_bg_layout','light'),(8927,2025,'_et_pb_show_title','on'),(8928,2025,'_et_pb_post_hide_nav','default'),(8929,2025,'_et_pb_page_layout','et_right_sidebar'),(8930,2025,'_et_pb_side_nav','off'),(8931,2025,'_et_pb_use_builder','on'),(8932,2025,'_et_pb_first_image',''),(8933,2025,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_12 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_15\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_25  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">July 7th, 2020 1329 hd; last week&#8217;s sale 1913 hd; year ago 1301 hd. Feeder cattle of all classes sold fully steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_16\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_26  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_24  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$183.00</p>\n<p>400-500<br />\n$150.00-$175.00</p>\n<p>500-600<br />\n$140.00-$167.00</p>\n<p>600-700<br />\n$130.00-$160.50</p>\n<p>700-800<br />\n$124.00-$149.00</p>\n<p>800-900<br />\n$122.00-$138.00</p>\n<p>900-1000<br />\n$100.00-$115.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$130.00-$164.50</p>\n<p>400-500<br />\n$130.00-$158.00</p>\n<p>500-600<br />\n$125.00-$143.25</p>\n<p>600-700<br />\n$117.00-$134.75</p>\n<p>700-800<br />\n$110.00-$128.75</p>\n<p>800-900<br />\n$106.00-$110.75</p>\n<p>900-1000<br />\nN/A</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_27  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_26  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$66.00 &#8211; $72.00</p>\n<p>Medium Yield<br />\n$58.00 &#8211; $65.00</p>\n<p>Low Yield<br />\n$45.00 &#8211; $57.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $95.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_27  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n649lbs @ $134.75</p>\n<p>Â <br />\n770lbs @ $121.60</p>\n<p>STEERS<br />\n840lbs @ $138.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_17\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_28  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_11_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_11 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(8934,2025,'_et_pb_truncate_post_date','2020-07-31 01:24:55'),(8935,2025,'_et_pb_old_content',''),(8937,2025,'_et_pb_built_for_post_type','page'),(8938,2025,'_et_pb_ab_subjects',''),(8939,2025,'_et_pb_enable_shortcode_tracking',''),(8940,2025,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2025\" /]'),(8941,2025,'_et_pb_custom_css',''),(8942,2025,'_et_pb_gutter_width','3'),(8943,2025,'_et_builder_version','VB|Divi|4.4.4'),(8944,2025,'_et_pb_show_page_creation','off'),(8945,2025,'_wp_old_slug','february-11-2020-market-report'),(8946,2025,'_wp_old_slug','march-17th-2020-market-report'),(8947,2025,'_wp_old_slug','may-1th-2020-market-report-2'),(8950,2025,'_dp_original','2007'),(8951,2025,'_edit_lock','1594220087:2'),(8952,2025,'_edit_last','2'),(8956,2035,'_wp_attached_file','2020/07/Jack-and-Michelle-Hughes-Sale-Bill.pdf'),(8957,2035,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:42:\"Jack-and-Michelle-Hughes-Sale-Bill-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Jack-and-Michelle-Hughes-Sale-Bill-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Jack-and-Michelle-Hughes-Sale-Bill-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Jack-and-Michelle-Hughes-Sale-Bill-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8959,2038,'_wp_attached_file','2020/07/Tuesday-July-14th-Feeder-Cattle-Consignments.pdf'),(8960,2038,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"Tuesday-July-14th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Tuesday-July-14th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Tuesday-July-14th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Tuesday-July-14th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(8962,2041,'_thumbnail_id','786'),(8963,2041,'_et_post_bg_color','#ffffff'),(8964,2041,'_et_post_bg_layout','light'),(8965,2041,'_et_pb_show_title','on'),(8966,2041,'_et_pb_post_hide_nav','default'),(8967,2041,'_et_pb_page_layout','et_right_sidebar'),(8968,2041,'_et_pb_side_nav','off'),(8969,2041,'_et_pb_use_builder','on'),(8970,2041,'_et_pb_first_image',''),(8971,2041,'_et_pb_truncate_post',''),(8972,2041,'_et_pb_truncate_post_date',''),(8973,2041,'_et_pb_old_content',''),(8975,2041,'_et_pb_built_for_post_type','page'),(8976,2041,'_et_pb_ab_subjects',''),(8977,2041,'_et_pb_enable_shortcode_tracking',''),(8978,2041,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2025\" /]'),(8979,2041,'_et_pb_custom_css',''),(8980,2041,'_et_pb_gutter_width','3'),(8981,2041,'_et_builder_version','VB|Divi|4.4.4'),(8982,2041,'_et_pb_show_page_creation','off'),(8983,2041,'_wp_old_slug','february-11-2020-market-report'),(8984,2041,'_wp_old_slug','march-17th-2020-market-report'),(8985,2041,'_wp_old_slug','may-1th-2020-market-report-2'),(8987,2041,'_dp_original','2025'),(8988,2041,'_edit_lock','1594770784:2'),(8989,2041,'_edit_last','2'),(9011,2054,'_wp_attached_file','2020/07/Charles-E.-Breit-Sale-Bill-1.pdf'),(9012,2054,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:36:\"Charles-E.-Breit-Sale-Bill-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Charles-E.-Breit-Sale-Bill-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"Charles-E.-Breit-Sale-Bill-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Charles-E.-Breit-Sale-Bill-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9016,2056,'_thumbnail_id','786'),(9017,2056,'_et_post_bg_color','#ffffff'),(9018,2056,'_et_post_bg_layout','light'),(9019,2056,'_et_pb_show_title','on'),(9020,2056,'_et_pb_post_hide_nav','default'),(9021,2056,'_et_pb_page_layout','et_right_sidebar'),(9022,2056,'_et_pb_side_nav','off'),(9023,2056,'_et_pb_use_builder','on'),(9024,2056,'_et_pb_first_image',''),(9025,2056,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_11 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_12\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_21  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">July 14th, 2020 1347 hd; last week&#8217;s sale 1329 hd; year ago 1832 hd. Feeder cattle 650lbs and up sold $2-4 higher. All other classes sold steady. Cows and bulls sold $2-3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_13\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_22  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$182.50</p>\n<p>400-500<br />\n$150.00-$167.50</p>\n<p>500-600<br />\n$145.00-$175.00</p>\n<p>600-700<br />\n$140.00-$165.00</p>\n<p>700-800<br />\n$133.00-$152.00</p>\n<p>800-900<br />\n$124.00-$133.00</p>\n<p>900-1000<br />\n$110.00-$120.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$145.00-$169.00</p>\n<p>400-500<br />\n$140.00-$167.25</p>\n<p>500-600<br />\n$130.00-$153.00</p>\n<p>600-700<br />\n$120.00-$138.50</p>\n<p>700-800<br />\n$118.50-$130.25</p>\n<p>800-900<br />\n$110.00-$117.00</p>\n<p>900-1000<br />\n$105.00-$112.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_23  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$60.00 &#8211; $72.00</p>\n<p>Medium Yield<br />\n$51.00 &#8211; $59.00</p>\n<p>Low Yield<br />\n$42.00 &#8211; $50.00</p>\n<p>Bulls<br />\n$79.00 &#8211; $98.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n680lbs @ $138.00</p>\n<p>STEERS<br />\n746lbs @ $145.85</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_14\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_24  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_10_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_10 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(9026,2056,'_et_pb_truncate_post_date','2020-07-31 01:24:55'),(9027,2056,'_et_pb_old_content',''),(9029,2056,'_et_pb_built_for_post_type','page'),(9030,2056,'_et_pb_ab_subjects',''),(9031,2056,'_et_pb_enable_shortcode_tracking',''),(9032,2056,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2056\" /]'),(9033,2056,'_et_pb_custom_css',''),(9034,2056,'_et_pb_gutter_width','3'),(9035,2056,'_et_builder_version','VB|Divi|4.4.4'),(9036,2056,'_et_pb_show_page_creation','off'),(9037,2056,'_wp_old_slug','february-11-2020-market-report'),(9038,2056,'_wp_old_slug','march-17th-2020-market-report'),(9039,2056,'_wp_old_slug','may-1th-2020-market-report-2'),(9041,2056,'_dp_original','2041'),(9042,2056,'_edit_lock','1594830602:2'),(9043,2056,'_edit_last','2'),(9047,2066,'_wp_attached_file','2020/07/Tuesday-July-21st-Feeder-Cattle-Consignments.pdf'),(9048,2066,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"Tuesday-July-21st-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Tuesday-July-21st-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Tuesday-July-21st-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Tuesday-July-21st-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9051,2071,'_thumbnail_id','786'),(9052,2071,'_et_post_bg_color','#ffffff'),(9053,2071,'_et_post_bg_layout','light'),(9054,2071,'_et_pb_show_title','on'),(9055,2071,'_et_pb_post_hide_nav','default'),(9056,2071,'_et_pb_page_layout','et_right_sidebar'),(9057,2071,'_et_pb_side_nav','off'),(9058,2071,'_et_pb_use_builder','on'),(9059,2071,'_et_pb_first_image',''),(9060,2071,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_10 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_17  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">July 21st, 2020 1211 hd; last week&#8217;s sale 1347 hd; year ago 1120 hd. Feeder cattle sold fully steady &#8211; $5 higher. Cows and bulls sold $2-3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_10\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_18  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$175.00</p>\n<p>400-500<br />\n$150.00-$175.50</p>\n<p>500-600<br />\n$143.00-$172.50</p>\n<p>600-700<br />\n$135.00-$164.00</p>\n<p>700-800<br />\n$127.00-$142.00</p>\n<p>800-900<br />\n$124.00-$127.60</p>\n<p>900-1000<br />\n$108.00-$116.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$145.00-$170.00</p>\n<p>400-500<br />\n$140.00-$158.00</p>\n<p>500-600<br />\n$130.00-$149.00</p>\n<p>600-700<br />\n$128.00-$140.75</p>\n<p>700-800<br />\n$120.00-$127.75</p>\n<p>800-900<br />\n$108.00-$120.00</p>\n<p>900-1000<br />\n$100.00-$108.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_19  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$65.00 &#8211; $75.00</p>\n<p>Medium Yield<br />\n$58.00 &#8211; $65.00</p>\n<p>Low Yield<br />\n$48.00 &#8211; $57.00</p>\n<p>Bulls<br />\n$77.00 &#8211; $106.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>STEERSÂ <br />\n868lbs @ $127.60</p>\n<p>STEERS<br />\n697lbs @ $146.85</p>\n<p>STEERS<br />\n681lbs @ $148.75</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_11\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_20  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_9_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_9 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(9061,2071,'_et_pb_truncate_post_date','2020-07-31 01:24:55'),(9062,2071,'_et_pb_old_content',''),(9064,2071,'_et_pb_built_for_post_type','page'),(9065,2071,'_et_pb_ab_subjects',''),(9066,2071,'_et_pb_enable_shortcode_tracking',''),(9067,2071,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2071\" /]'),(9068,2071,'_et_pb_custom_css',''),(9069,2071,'_et_pb_gutter_width','3'),(9070,2071,'_et_builder_version','VB|Divi|4.4.4'),(9071,2071,'_et_pb_show_page_creation','off'),(9072,2071,'_wp_old_slug','february-11-2020-market-report'),(9073,2071,'_wp_old_slug','march-17th-2020-market-report'),(9074,2071,'_wp_old_slug','may-1th-2020-market-report-2'),(9076,2071,'_dp_original','2056'),(9077,2071,'_edit_lock','1595433149:2'),(9078,2071,'_edit_last','2'),(9091,2096,'_wp_attached_file','2020/07/Tuesday-July-28th-Feeder-Cattle-Consignments.pdf'),(9092,2096,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"Tuesday-July-28th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Tuesday-July-28th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Tuesday-July-28th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Tuesday-July-28th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9095,2101,'_wp_attached_file','2020/07/IMG-1006-scaled-e1595879726664.jpg'),(9096,2101,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:42:\"2020/07/IMG-1006-scaled-e1595879726664.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"IMG-1006-scaled-e1595879726664-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"IMG-1006-scaled-e1595879726664-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"IMG-1006-scaled-e1595879726664-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"IMG-1006-scaled-e1595879726664-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:44:\"IMG-1006-scaled-e1595879726664-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:44:\"IMG-1006-scaled-e1595879726664-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"IMG-1006-scaled-e1595879726664-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:43:\"IMG-1006-scaled-e1595879726664-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:42:\"IMG-1006-scaled-e1595879726664-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:42:\"IMG-1006-scaled-e1595879726664-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:43:\"IMG-1006-scaled-e1595879726664-1080x810.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:42:\"IMG-1006-scaled-e1595879726664-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:44:\"IMG-1006-scaled-e1595879726664-2560x1800.jpg\";s:5:\"width\";i:2560;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:43:\"IMG-1006-scaled-e1595879726664-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:42:\"IMG-1006-scaled-e1595879726664-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:42:\"IMG-1006-scaled-e1595879726664-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 8\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1595861150\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:19:\"0.00020798668885191\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG-1006.jpg\";}'),(9097,2102,'_wp_attached_file','2020/07/IMG-1006-1-scaled.jpg'),(9098,2102,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:29:\"2020/07/IMG-1006-1-scaled.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG-1006-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"IMG-1006-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG-1006-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"IMG-1006-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"IMG-1006-1-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:24:\"IMG-1006-1-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"IMG-1006-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"IMG-1006-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"IMG-1006-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"IMG-1006-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 8\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1595861150\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:19:\"0.00020798668885191\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG-1006-1.jpg\";}'),(9099,2101,'_wp_attachment_backup_sizes','a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:19:\"IMG-1006-scaled.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:20:\"IMG-1006-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:20:\"IMG-1006-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:20:\"IMG-1006-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:21:\"IMG-1006-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"1536x1536-orig\";a:4:{s:4:\"file\";s:22:\"IMG-1006-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"2048x2048-orig\";a:4:{s:4:\"file\";s:22:\"IMG-1006-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"et-pb-post-main-image-orig\";a:4:{s:4:\"file\";s:20:\"IMG-1006-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:36:\"et-pb-post-main-image-fullwidth-orig\";a:4:{s:4:\"file\";s:21:\"IMG-1006-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"et-pb-portfolio-image-orig\";a:4:{s:4:\"file\";s:20:\"IMG-1006-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:33:\"et-pb-portfolio-module-image-orig\";a:4:{s:4:\"file\";s:20:\"IMG-1006-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(9100,2105,'_wp_attached_file','2020/07/IMG_1007-scaled.jpg'),(9101,2105,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:27:\"2020/07/IMG_1007-scaled.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1007-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_1007-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1007-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"IMG_1007-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"IMG_1007-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:22:\"IMG_1007-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_1007-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:21:\"IMG_1007-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_1007-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"IMG_1007-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:21:\"IMG_1007-1080x810.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 8\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1595861181\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:19:\"0.00035398230088496\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_1007.jpg\";}'),(9102,2106,'_wp_attached_file','2020/07/IMG_1007-1-scaled.jpg'),(9103,2106,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:29:\"2020/07/IMG_1007-1-scaled.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1007-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"IMG_1007-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1007-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"IMG_1007-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"IMG_1007-1-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:24:\"IMG_1007-1-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"IMG_1007-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"IMG_1007-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"IMG_1007-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"IMG_1007-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:23:\"IMG_1007-1-1080x810.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 8\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1595861181\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:19:\"0.00035398230088496\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_1007-1.jpg\";}'),(9104,2107,'_wp_attached_file','2020/07/IMG_1007-2-scaled.jpg'),(9105,2107,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:29:\"2020/07/IMG_1007-2-scaled.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1007-2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"IMG_1007-2-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1007-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"IMG_1007-2-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"IMG_1007-2-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:24:\"IMG_1007-2-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"IMG_1007-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"IMG_1007-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"IMG_1007-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"IMG_1007-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:23:\"IMG_1007-2-1080x810.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"IMG_1007-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 8\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1595861181\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:19:\"0.00035398230088496\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_1007-2.jpg\";}'),(9109,2115,'_wp_attached_file','2020/07/IMG_1008-1.pdf'),(9110,2115,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:18:\"IMG_1008-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"IMG_1008-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"IMG_1008-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"IMG_1008-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9111,2116,'_wp_attached_file','2020/07/IMG_1008-1.jpg'),(9112,2116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1297;s:6:\"height\";i:1869;s:4:\"file\";s:22:\"2020/07/IMG_1008-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1008-1-208x300.jpg\";s:5:\"width\";i:208;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"IMG_1008-1-711x1024.jpg\";s:5:\"width\";i:711;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1008-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"IMG_1008-1-768x1107.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1107;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"IMG_1008-1-1066x1536.jpg\";s:5:\"width\";i:1066;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"IMG_1008-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"IMG_1008-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"IMG_1008-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"IMG_1008-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"IMG_1008-1-1080x1556.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1556;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:22:\"IMG_1008-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:24:\"IMG_1008-1-1297x1800.jpg\";s:5:\"width\";i:1297;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:24:\"IMG_1008-1-1280x1845.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1845;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:23:\"IMG_1008-1-980x1412.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:1412;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:22:\"IMG_1008-1-480x692.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:692;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 8\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1595861201\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:19:\"0.00043706293706294\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9113,2117,'_wp_attached_file','2020/07/Gooseneck-Hay-Trailer--scaled.jpg'),(9114,2117,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:41:\"2020/07/Gooseneck-Hay-Trailer--scaled.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Gooseneck-Hay-Trailer--225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Gooseneck-Hay-Trailer--768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Gooseneck-Hay-Trailer--150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"Gooseneck-Hay-Trailer--768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"Gooseneck-Hay-Trailer--1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:36:\"Gooseneck-Hay-Trailer--1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"Gooseneck-Hay-Trailer--400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:35:\"Gooseneck-Hay-Trailer--1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"Gooseneck-Hay-Trailer--400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:34:\"Gooseneck-Hay-Trailer--510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 8\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1595861219\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:19:\"0.00035398230088496\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:26:\"Gooseneck-Hay-Trailer-.jpg\";}'),(9115,2118,'_wp_attached_file','2020/07/IMG_1009-1-scaled.jpg'),(9116,2118,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2020/07/IMG_1009-1-scaled.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_1009-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"IMG_1009-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_1009-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"IMG_1009-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"IMG_1009-1-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:24:\"IMG_1009-1-1536x2048.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"IMG_1009-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"IMG_1009-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"IMG_1009-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:22:\"IMG_1009-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 8\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1595861219\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:19:\"0.00035398230088496\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_1009-1.jpg\";}'),(9118,2122,'_thumbnail_id','786'),(9119,2122,'_et_post_bg_color','#ffffff'),(9120,2122,'_et_post_bg_layout','light'),(9121,2122,'_et_pb_show_title','on'),(9122,2122,'_et_pb_post_hide_nav','default'),(9123,2122,'_et_pb_page_layout','et_right_sidebar'),(9124,2122,'_et_pb_side_nav','off'),(9125,2122,'_et_pb_use_builder','on'),(9126,2122,'_et_pb_first_image',''),(9127,2122,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_9 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">July 28th, 2020 1007 hd; last week&#8217;s sale 1211 hd; a year ago 1188 hd. Feeder steers &amp; heifers 600lbs &amp; up-sold $3-6 higher. Feeder cattle under 600lbs sold steady-$2 higher. Cows and bulls sold $5-8 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$152.00-$173.00</p>\n<p>400-500<br />\n$152.00-$176.75</p>\n<p>500-600<br />\n$144.00-$173.25</p>\n<p>600-700<br />\n$138.00-$155.50</p>\n<p>700-800<br />\n$132.00-$143.50</p>\n<p>800-900<br />\n$125.00-$129.50</p>\n<p>900-1000<br />\n$130.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$171.00</p>\n<p>400-500<br />\n$140.00-$162.00</p>\n<p>500-600<br />\n$140.00-$157.50</p>\n<p>600-700<br />\n$130.00-$147.00</p>\n<p>700-800<br />\n$120.00-$130.35</p>\n<p>800-900<br />\n$110.00-$117.00</p>\n<p>900-1000<br />\n$100.00-$109.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$72.00 &#8211; $85.00</p>\n<p>Medium Yield<br />\n$62.00 &#8211; $71.50</p>\n<p>Low Yield<br />\n$50.00 &#8211; $61.00</p>\n<p>Bulls<br />\n$90.00 &#8211; $108.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>STEERS<br />\n930lbs @ $130.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_16  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_8_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_8 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(9128,2122,'_et_pb_truncate_post_date','2020-07-31 01:24:55'),(9129,2122,'_et_pb_old_content',''),(9131,2122,'_et_pb_built_for_post_type','page'),(9132,2122,'_et_pb_ab_subjects',''),(9133,2122,'_et_pb_enable_shortcode_tracking',''),(9134,2122,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2122\" /]'),(9135,2122,'_et_pb_custom_css',''),(9136,2122,'_et_pb_gutter_width','3'),(9137,2122,'_et_builder_version','VB|Divi|4.4.4'),(9138,2122,'_et_pb_show_page_creation','off'),(9139,2122,'_wp_old_slug','february-11-2020-market-report'),(9140,2122,'_wp_old_slug','march-17th-2020-market-report'),(9141,2122,'_wp_old_slug','may-1th-2020-market-report-2'),(9143,2122,'_dp_original','2071'),(9144,2122,'_edit_lock','1596038962:2'),(9146,2122,'_edit_last','2'),(9148,2122,'_wp_old_slug','july-21st-2020-market-report-2'),(9152,2132,'_wp_attached_file','2020/07/alum-cattle-trailer.jpg'),(9153,2132,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:31:\"2020/07/alum-cattle-trailer.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"alum-cattle-trailer-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"alum-cattle-trailer-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"alum-cattle-trailer-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"alum-cattle-trailer-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"alum-cattle-trailer-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"alum-cattle-trailer-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"alum-cattle-trailer-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"alum-cattle-trailer-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"alum-cattle-trailer-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:31:\"alum-cattle-trailer-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"alum-cattle-trailer-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:31:\"alum-cattle-trailer-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:32:\"alum-cattle-trailer-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:31:\"alum-cattle-trailer-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:31:\"alum-cattle-trailer-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596015162\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9160,2144,'_wp_attached_file','2020/07/Ez-Haul-Flat-Bed-scaled.jpg'),(9161,2144,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:35:\"2020/07/Ez-Haul-Flat-Bed-scaled.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Ez-Haul-Flat-Bed-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"Ez-Haul-Flat-Bed-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Ez-Haul-Flat-Bed-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"Ez-Haul-Flat-Bed-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"Ez-Haul-Flat-Bed-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:30:\"Ez-Haul-Flat-Bed-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Ez-Haul-Flat-Bed-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 8\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1595861287\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:19:\"0.00041597337770383\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:20:\"Ez-Haul-Flat-Bed.jpg\";}'),(9162,2145,'_wp_attached_file','2020/07/Ez-Haul-Flat-Bed-1-scaled.jpg'),(9163,2145,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:37:\"2020/07/Ez-Haul-Flat-Bed-1-scaled.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Ez-Haul-Flat-Bed-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Ez-Haul-Flat-Bed-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Ez-Haul-Flat-Bed-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Ez-Haul-Flat-Bed-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"Ez-Haul-Flat-Bed-1-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:32:\"Ez-Haul-Flat-Bed-1-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Ez-Haul-Flat-Bed-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Ez-Haul-Flat-Bed-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 8\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1595861287\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:19:\"0.00041597337770383\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:22:\"Ez-Haul-Flat-Bed-1.jpg\";}'),(9164,2146,'_wp_attached_file','2020/07/Ez-Haul-Flat-Bed-2-scaled.jpg'),(9165,2146,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:37:\"2020/07/Ez-Haul-Flat-Bed-2-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Ez-Haul-Flat-Bed-2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"Ez-Haul-Flat-Bed-2-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Ez-Haul-Flat-Bed-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"Ez-Haul-Flat-Bed-2-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"Ez-Haul-Flat-Bed-2-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:32:\"Ez-Haul-Flat-Bed-2-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Ez-Haul-Flat-Bed-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"Ez-Haul-Flat-Bed-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Ez-Haul-Flat-Bed-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Ez-Haul-Flat-Bed-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"Ez-Haul-Flat-Bed-2-1080x810.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"Ez-Haul-Flat-Bed-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:32:\"Ez-Haul-Flat-Bed-2-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:31:\"Ez-Haul-Flat-Bed-2-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:30:\"Ez-Haul-Flat-Bed-2-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"Ez-Haul-Flat-Bed-2-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 8\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1595861287\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:19:\"0.00041597337770383\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:22:\"Ez-Haul-Flat-Bed-2.jpg\";}'),(9166,2147,'_wp_attached_file','2020/07/ez-haul-flat-bed-3-scaled.jpg'),(9167,2147,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:37:\"2020/07/ez-haul-flat-bed-3-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"ez-haul-flat-bed-3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"ez-haul-flat-bed-3-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"ez-haul-flat-bed-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"ez-haul-flat-bed-3-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"ez-haul-flat-bed-3-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:32:\"ez-haul-flat-bed-3-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"ez-haul-flat-bed-3-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:31:\"ez-haul-flat-bed-3-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"ez-haul-flat-bed-3-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"ez-haul-flat-bed-3-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:31:\"ez-haul-flat-bed-3-1080x810.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:30:\"ez-haul-flat-bed-3-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:4:\"file\";s:32:\"ez-haul-flat-bed-3-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:31:\"ez-haul-flat-bed-3-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:30:\"ez-haul-flat-bed-3-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:30:\"ez-haul-flat-bed-3-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 8\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1595861245\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:19:\"0.00047892720306513\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:22:\"ez-haul-flat-bed-3.jpg\";}'),(9170,2152,'_wp_attached_file','2020/07/wheel-corral.jpg'),(9171,2152,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:24:\"2020/07/wheel-corral.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"wheel-corral-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"wheel-corral-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"wheel-corral-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"wheel-corral-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"wheel-corral-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:26:\"wheel-corral-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"wheel-corral-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:25:\"wheel-corral-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"wheel-corral-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"wheel-corral-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:25:\"wheel-corral-1080x608.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:608;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"wheel-corral-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:25:\"wheel-corral-1280x720.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:24:\"wheel-corral-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:24:\"wheel-corral-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9172,2153,'_wp_attached_file','2020/07/Wheel-Corral.png'),(9173,2153,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:882;s:6:\"height\";i:543;s:4:\"file\";s:24:\"2020/07/Wheel-Corral.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Wheel-Corral-300x185.png\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Wheel-Corral-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Wheel-Corral-768x473.png\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Wheel-Corral-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Wheel-Corral-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:24:\"Wheel-Corral-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:24:\"Wheel-Corral-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:24:\"Wheel-Corral-480x296.png\";s:5:\"width\";i:480;s:6:\"height\";i:296;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9177,1967,'_edit_last','2'),(9178,2157,'_menu_item_type','post_type'),(9179,2157,'_menu_item_menu_item_parent','0'),(9180,2157,'_menu_item_object_id','1967'),(9181,2157,'_menu_item_object','page'),(9182,2157,'_menu_item_target',''),(9183,2157,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9184,2157,'_menu_item_xfn',''),(9185,2157,'_menu_item_url',''),(9191,2171,'_wp_attached_file','2020/08/Tuesday-August-4th-Feeder-Cattle-Consignments.pdf'),(9192,2171,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Tuesday-August-4th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Tuesday-August-4th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Tuesday-August-4th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"Tuesday-August-4th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9196,2178,'_thumbnail_id','786'),(9197,2178,'_et_post_bg_color','#ffffff'),(9198,2178,'_et_post_bg_layout','light'),(9199,2178,'_et_pb_show_title','on'),(9200,2178,'_et_pb_post_hide_nav','default'),(9201,2178,'_et_pb_page_layout','et_right_sidebar'),(9202,2178,'_et_pb_side_nav','off'),(9203,2178,'_et_pb_use_builder','on'),(9204,2178,'_et_pb_first_image',''),(9205,2178,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>August 4th, 2020 1676 hd; last week&#8217;s sale 1007 hd; a year ago 1401 hd. Feeder cattle sold steady.Calves sold $2-$3 higher. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$182.50</p>\n<p>400-500<br />\n$160.00-$181.50</p>\n<p>500-600<br />\n$150.00-$179.00</p>\n<p>600-700<br />\n$142.00-$158.00</p>\n<p>700-800<br />\n$135.00-$150.60</p>\n<p>800-900<br />\n$120.00-$124.00</p>\n<p>900-1000<br />\n$120.00-$123.85</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$173.00</p>\n<p>400-500<br />\n$140.00-$166.00</p>\n<p>500-600<br />\n$130.00-$145.00</p>\n<p>600-700<br />\n$130.00-$144.75</p>\n<p>700-800<br />\n$126.00-$131.25</p>\n<p>800-900<br />\n$115.00-$120.00</p>\n<p>900-1000<br />\n$110.00-$114.00</p>\n<p>&nbsp;</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>Â  Â  Â  BULLS<br />\nÂ  Â  Â  Â  Â  PRICES</p>\n<p>300-500<br />\n$135.00-$165.00</p>\n<p>500-700<br />\n$110-$145.00</p>\n<p>700-800<br />\n$100.00-$119.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$71.00 &#8211; $82.00</p>\n<p>Medium Yield<br />\n$63.00 &#8211; $70.00</p>\n<p>Low Yield<br />\n$50.00 &#8211; $62.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $107.00</p>\n<p>&nbsp;</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n639lbs @ 144.75</p>\n<p>STEERS<br />\n558lbs @ 179.00</p>\n<p>STEERS<br />\n731lbs @ $150.60</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(9206,2178,'_et_pb_truncate_post_date','2020-08-19 17:45:04'),(9207,2178,'_et_pb_old_content',''),(9209,2178,'_et_pb_built_for_post_type','page'),(9210,2178,'_et_pb_ab_subjects',''),(9211,2178,'_et_pb_enable_shortcode_tracking',''),(9212,2178,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2178\" /]'),(9213,2178,'_et_pb_custom_css',''),(9214,2178,'_et_pb_gutter_width','3'),(9215,2178,'_et_builder_version','VB|Divi|4.4.4'),(9216,2178,'_et_pb_show_page_creation','off'),(9217,2178,'_wp_old_slug','february-11-2020-market-report'),(9218,2178,'_wp_old_slug','march-17th-2020-market-report'),(9219,2178,'_wp_old_slug','may-1th-2020-market-report-2'),(9220,2178,'_wp_old_slug','july-21st-2020-market-report-2'),(9222,2178,'_dp_original','2122'),(9223,2178,'_edit_lock','1596649503:2'),(9224,2178,'_edit_last','2'),(9231,2196,'_wp_attached_file','2020/08/Tuesday-August-11th-Feeder-Cattle-Consignments.pdf'),(9232,2196,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"Tuesday-August-11th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Tuesday-August-11th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"Tuesday-August-11th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Tuesday-August-11th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9238,2204,'_thumbnail_id','786'),(9239,2204,'_et_post_bg_color','#ffffff'),(9240,2204,'_et_post_bg_layout','light'),(9241,2204,'_et_pb_show_title','on'),(9242,2204,'_et_pb_post_hide_nav','default'),(9243,2204,'_et_pb_page_layout','et_right_sidebar'),(9244,2204,'_et_pb_side_nav','off'),(9245,2204,'_et_pb_use_builder','on'),(9246,2204,'_et_pb_first_image',''),(9247,2204,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">August 11th, 2020 1217 hd; last week&#8217;s sale 1676 hd; a year ago 494 hd. Feeder cattle sold $2-$4 higher. Cows and bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$175.00</p>\n<p>400-500<br />\n$150.00-$187.00</p>\n<p>500-600<br />\n$150.00-$181.00</p>\n<p>600-700<br />\n$140.00-$162.50</p>\n<p>700-800<br />\n$122.50-$151.50</p>\n<p>800-900<br />\n$120.00-$133.85</p>\n<p>900-1000<br />\n$120.00-$124.50</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$170.00</p>\n<p>400-500<br />\n$140.00-$169.50</p>\n<p>500-600<br />\n$133.00-$154.50</p>\n<p>600-700<br />\n$122.00-$143.85</p>\n<p>700-800<br />\n$120.00-$139.60</p>\n<p>800-900<br />\n$117.00-$121.25</p>\n<p>900-1000<br />\n$103.00-$113.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>Â  Â  Â  BULLS<br />\nÂ  Â  Â  Â  Â  PRICES</p>\n<p>300-500<br />\n$137.00-$172.00</p>\n<p>500-700<br />\n$116-$155.00</p>\n<p>700-800<br />\n$100.00-$120.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$68.00 &#8211; $80.00</p>\n<p>Medium Yield<br />\n$54.00 &#8211; $67.00</p>\n<p>Low Yield<br />\n$45.00 &#8211; $53.00</p>\n<p>Bulls<br />\n$65.00 &#8211; $103.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n628lbs @ 143.85</p>\n<p>HEIFERS<br />\n704lbs @ 139.60</p>\n<p>STEERS<br />\n711lbs @ 151.50</p>\n<p>STEERS<br />\n885lbs @ $133.85</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(9248,2204,'_et_pb_truncate_post_date','2020-08-19 17:45:04'),(9249,2204,'_et_pb_old_content',''),(9251,2204,'_et_pb_built_for_post_type','page'),(9252,2204,'_et_pb_ab_subjects',''),(9253,2204,'_et_pb_enable_shortcode_tracking',''),(9254,2204,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2204\" /]'),(9255,2204,'_et_pb_custom_css',''),(9256,2204,'_et_pb_gutter_width','3'),(9257,2204,'_et_builder_version','VB|Divi|4.4.4'),(9258,2204,'_et_pb_show_page_creation','off'),(9259,2204,'_wp_old_slug','february-11-2020-market-report'),(9260,2204,'_wp_old_slug','march-17th-2020-market-report'),(9261,2204,'_wp_old_slug','may-1th-2020-market-report-2'),(9262,2204,'_wp_old_slug','july-21st-2020-market-report-2'),(9264,2204,'_dp_original','2178'),(9265,2204,'_edit_lock','1597259583:2'),(9266,2204,'_edit_last','2'),(9268,2209,'_wp_page_template','default'),(9269,2209,'_et_pb_post_hide_nav','default'),(9270,2209,'_et_pb_page_layout','et_right_sidebar'),(9271,2209,'_et_pb_side_nav','off'),(9272,2209,'_et_pb_use_builder','on'),(9273,2209,'_et_pb_first_image',''),(9274,2209,'_et_pb_truncate_post',''),(9275,2209,'_et_pb_truncate_post_date',''),(9276,2209,'_et_pb_old_content',''),(9278,2209,'_et_pb_built_for_post_type','page'),(9279,2209,'_et_pb_ab_subjects',''),(9280,2209,'_et_pb_enable_shortcode_tracking',''),(9281,2209,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2209\" /]'),(9282,2209,'_et_pb_custom_css',''),(9283,2209,'_et_pb_gutter_width','3'),(9284,2209,'_et_builder_version','VB|Divi|4.23.1'),(9285,2209,'_et_pb_show_page_creation','off'),(9286,2209,'_dp_original','1174'),(9287,2209,'_edit_lock','1701104061:2'),(9291,2216,'_wp_attached_file','2020/08/Labor-Day-Sale-Flyer-2020.pdf'),(9292,2216,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"Labor-Day-Sale-Flyer-2020-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Labor-Day-Sale-Flyer-2020-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Labor-Day-Sale-Flyer-2020-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Labor-Day-Sale-Flyer-2020-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9293,2218,'_wp_attached_file','2020/08/Labor-Day-Sale-Flyer-2020-1.pdf'),(9294,2218,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"Labor-Day-Sale-Flyer-2020-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Labor-Day-Sale-Flyer-2020-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Labor-Day-Sale-Flyer-2020-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Labor-Day-Sale-Flyer-2020-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9295,1450,'_oembed_6d6ddb01146389246ca0084a3b649b88','{{unknown}}'),(9297,2225,'_wp_attached_file','2020/08/Tuesday-August-18th-Feeder-Cattle-Consignments.pdf'),(9298,2225,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"Tuesday-August-18th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Tuesday-August-18th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"Tuesday-August-18th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Tuesday-August-18th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9301,2230,'_wp_attached_file','2020/08/Tuesday-August-18th-Feeder-Cattle-Consignments-9.pages'),(9302,2231,'_wp_attached_file','2020/08/Collins-AG-Enterprise-LLC.pdf'),(9303,2231,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"Collins-AG-Enterprise-LLC-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Collins-AG-Enterprise-LLC-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Collins-AG-Enterprise-LLC-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Collins-AG-Enterprise-LLC-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9308,2246,'_thumbnail_id','786'),(9309,2246,'_et_post_bg_color','#ffffff'),(9310,2246,'_et_post_bg_layout','light'),(9311,2246,'_et_pb_show_title','on'),(9312,2246,'_et_pb_post_hide_nav','default'),(9313,2246,'_et_pb_page_layout','et_right_sidebar'),(9314,2246,'_et_pb_side_nav','off'),(9315,2246,'_et_pb_use_builder','on'),(9316,2246,'_et_pb_first_image',''),(9317,2246,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">August 18th, 2020 1404 hd; last week&#8217;s sale 1217 hd; a year ago 896 hd. Feeder cattle weighing 600-800 lbs sold steady-$5 higher. Heifers weighing 500-750 lbs sold steady &#8211; $3 higher. Cows sold steady-$2 lower. Bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$167.50</p>\n<p>400-500<br />\n$145.00-$179.25</p>\n<p>500-600<br />\n$145.00-$175.00</p>\n<p>600-700<br />\n$140.00-$170.00</p>\n<p>700-800<br />\n$130.00-$154.60</p>\n<p>800-900<br />\n$120.00-$135.75</p>\n<p>900-1000<br />\n$115.00-$122.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$170.00</p>\n<p>400-500<br />\n$140.00-$167.50</p>\n<p>500-600<br />\n$135.00-$157.25</p>\n<p>600-700<br />\n$124.00-$150.00</p>\n<p>700-800<br />\n$120.00-$142.00</p>\n<p>800-900<br />\n$115.00-$134.00</p>\n<p>900-1000<br />\n$100.00-$110.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>Â  Â  Â  BULLS<br />\nÂ  Â  Â  Â  Â  PRICES</p>\n<p>300-500<br />\n$144.00-$160.00</p>\n<p>500-700<br />\n$120-$154.00</p>\n<p>700-800<br />\n$114.00-$120.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$63.00 &#8211; $75.00</p>\n<p>Medium Yield<br />\n$54.00 &#8211; $62.00</p>\n<p>Low Yield<br />\n$45.00 &#8211; $53.00</p>\n<p>Bulls<br />\n$70.00 &#8211; $98.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n820lbs @ 134.00</p>\n<p>HEIFERS<br />\n729lbs @ 142.00</p>\n<p>STEERS<br />\n789lbs @ 148.10</p>\n<p>STEERS<br />\n603lbs @ $170.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(9318,2246,'_et_pb_truncate_post_date','2020-08-19 17:45:04'),(9319,2246,'_et_pb_old_content',''),(9321,2246,'_et_pb_built_for_post_type','page'),(9322,2246,'_et_pb_ab_subjects',''),(9323,2246,'_et_pb_enable_shortcode_tracking',''),(9324,2246,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2246\" /]'),(9325,2246,'_et_pb_custom_css',''),(9326,2246,'_et_pb_gutter_width','3'),(9327,2246,'_et_builder_version','VB|Divi|4.4.4'),(9328,2246,'_et_pb_show_page_creation','off'),(9329,2246,'_wp_old_slug','february-11-2020-market-report'),(9330,2246,'_wp_old_slug','march-17th-2020-market-report'),(9331,2246,'_wp_old_slug','may-1th-2020-market-report-2'),(9332,2246,'_wp_old_slug','july-21st-2020-market-report-2'),(9334,2246,'_dp_original','2204'),(9335,2246,'_edit_lock','1597851064:2'),(9336,2246,'_edit_last','2'),(9342,1450,'_oembed_36ccb70d16d4e2887b5c2643038a937b','{{unknown}}'),(9385,2267,'_wp_attached_file','2020/08/Tuesday-August-25th-Feeder-Cattle-Consignments.pdf'),(9386,2267,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"Tuesday-August-25th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Tuesday-August-25th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"Tuesday-August-25th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Tuesday-August-25th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9387,2268,'_menu_item_type','post_type'),(9388,2268,'_menu_item_menu_item_parent','0'),(9389,2268,'_menu_item_object_id','2209'),(9390,2268,'_menu_item_object','page'),(9391,2268,'_menu_item_target',''),(9392,2268,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(9393,2268,'_menu_item_xfn',''),(9394,2268,'_menu_item_url',''),(9396,2209,'_edit_last','2'),(9398,2273,'_wp_attached_file','2020/08/IMG_0138.jpg'),(9399,2273,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/08/IMG_0138.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0138-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0138-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9400,2274,'_wp_attached_file','2020/08/IMG_0138-1.jpg'),(9401,2274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/08/IMG_0138-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_0138-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_0138-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9402,2275,'_wp_attached_file','2020/08/IMG_0140.jpg'),(9403,2275,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/08/IMG_0140.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0140-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0140-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9404,2276,'_wp_attached_file','2020/08/IMG_0141.jpg'),(9405,2276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/08/IMG_0141.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0141-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0141-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9406,2277,'_wp_attached_file','2020/08/IMG_0139.jpg'),(9407,2277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/08/IMG_0139.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0139-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0139-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9408,2278,'_wp_attached_file','2020/08/IMG_0143-rotated.jpg'),(9409,2278,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/08/IMG_0143-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0143-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0143-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_0143-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_0143-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}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:\"1597423054\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"6\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:18:\"0.0083333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_0143.jpg\";}'),(9410,2279,'_wp_attached_file','2020/08/IMG_0025-1.jpg'),(9411,2279,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/08/IMG_0025-1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_0025-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_0025-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596732874\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9412,2280,'_wp_attached_file','2020/08/IMG_0025.jpg'),(9413,2280,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/08/IMG_0025.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0025-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0025-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596732874\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9414,2281,'_wp_attached_file','2020/08/IMG_0026.jpg'),(9415,2281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/08/IMG_0026.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0026-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0026-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596732886\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9416,2282,'_wp_attached_file','2020/08/IMG_0027.jpg'),(9417,2282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/08/IMG_0027.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0027-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0027-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596732895\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.032258064516129\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9418,2283,'_wp_attached_file','2020/08/IMG_0028.jpg'),(9419,2283,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/08/IMG_0028.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0028-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0028-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596732912\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.026315789473684\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9420,2284,'_wp_attached_file','2020/08/IMG_0029.jpg'),(9421,2284,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/08/IMG_0029.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0029-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0029-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596732917\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:17:\"0.018518518518519\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9422,2285,'_wp_attached_file','2020/08/IMG_0031.jpg'),(9423,2285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/08/IMG_0031.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0031-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0031-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596733323\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.026315789473684\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9424,2286,'_wp_attached_file','2020/08/IMG_0032-rotated.jpg'),(9425,2286,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/08/IMG_0032-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0032-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0032-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_0032-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_0032-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596733327\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_0032.jpg\";}'),(9426,2287,'_wp_attached_file','2020/08/IMG_0033.jpg'),(9427,2287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/08/IMG_0033.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0033-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0033-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596733331\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9428,2288,'_wp_attached_file','2020/08/IMG_0034.jpg'),(9429,2288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/08/IMG_0034.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0034-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0034-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596733380\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:17:\"0.038461538461538\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9430,2289,'_wp_attached_file','2020/08/IMG_0035-rotated.jpg'),(9431,2289,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/08/IMG_0035-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0035-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0035-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_0035-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_0035-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596733521\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_0035.jpg\";}'),(9432,2290,'_wp_attached_file','2020/08/IMG_0037.jpg'),(9433,2290,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/08/IMG_0037.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0037-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0037-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596733540\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9434,2291,'_wp_attached_file','2020/08/IMG_0036-rotated.jpg'),(9435,2291,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/08/IMG_0036-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0036-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0036-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_0036-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_0036-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596733531\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:16:\"0.03448275862069\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_0036.jpg\";}'),(9436,2292,'_wp_attached_file','2020/08/IMG_0038.jpg'),(9437,2292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/08/IMG_0038.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0038-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0038-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596733546\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9438,2293,'_wp_attached_file','2020/08/IMG_0039-rotated.jpg'),(9439,2293,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/08/IMG_0039-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0039-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0039-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_0039-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_0039-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596733552\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_0039.jpg\";}'),(9440,2294,'_wp_attached_file','2020/08/IMG_0040.jpg'),(9441,2294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/08/IMG_0040.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0040-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0040-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596733821\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:17:\"0.017543859649123\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9442,2295,'_wp_attached_file','2020/08/IMG_0041-rotated.jpg'),(9443,2295,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/08/IMG_0041-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0041-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0041-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_0041-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_0041-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596733833\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_0041.jpg\";}'),(9444,2296,'_wp_attached_file','2020/08/IMG_0043.jpg'),(9445,2296,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/08/IMG_0043.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0043-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0043-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596733842\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9446,2297,'_wp_attached_file','2020/08/IMG_0044.jpg'),(9447,2297,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/08/IMG_0044.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0044-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0044-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596734115\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9448,2298,'_wp_attached_file','2020/08/IMG_0047.jpg'),(9449,2298,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:240;s:4:\"file\";s:20:\"2020/08/IMG_0047.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0047-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0047-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596734791\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:19:\"0.00063897763578275\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(9450,2299,'_wp_attached_file','2020/08/IMG_0050-rotated.jpg'),(9451,2299,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/08/IMG_0050-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0050-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0050-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_0050-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_0050-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596734806\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:19:\"0.00080321285140562\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_0050.jpg\";}'),(9452,2300,'_wp_attached_file','2020/08/IMG_0051-rotated.jpg'),(9453,2300,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/08/IMG_0051-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0051-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0051-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_0051-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_0051-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596734817\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:19:\"0.00068306010928962\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_0051.jpg\";}'),(9454,2301,'_wp_attached_file','2020/08/IMG_0053-rotated.jpg'),(9455,2301,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/08/IMG_0053-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0053-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0053-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_0053-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_0053-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596734828\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:19:\"0.00038895371450797\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_0053.jpg\";}'),(9456,2302,'_wp_attached_file','2020/08/IMG_0056-rotated.jpg'),(9457,2302,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/08/IMG_0056-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0056-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0056-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_0056-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_0056-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596734844\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:18:\"0.0016920473773266\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_0056.jpg\";}'),(9458,2303,'_wp_attached_file','2020/08/IMG_0061-rotated.jpg'),(9459,2303,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/08/IMG_0061-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0061-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0061-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_0061-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_0061-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596735067\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:17:\"0.001338688085676\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_0061.jpg\";}'),(9460,2304,'_wp_attached_file','2020/08/IMG_0062-rotated.jpg'),(9461,2304,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/08/IMG_0062-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0062-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0062-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_0062-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_0062-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596735211\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_0062.jpg\";}'),(9462,2305,'_wp_attached_file','2020/08/IMG_0063-rotated.jpg'),(9463,2305,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/08/IMG_0063-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0063-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0063-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_0063-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_0063-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596735216\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_0063.jpg\";}'),(9464,2306,'_wp_attached_file','2020/08/IMG_00671-rotated.jpg'),(9465,2306,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:29:\"2020/08/IMG_00671-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_00671-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_00671-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"IMG_00671-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"IMG_00671-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596735435\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_00671.jpg\";}'),(9466,2307,'_wp_attached_file','2020/08/IMG_0068-rotated.jpg'),(9467,2307,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/08/IMG_0068-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0068-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0068-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_0068-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_0068-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596735628\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_0068.jpg\";}'),(9468,2308,'_wp_attached_file','2020/08/IMG_0071-rotated.jpg'),(9469,2308,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/08/IMG_0071-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0071-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0071-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_0071-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_0071-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596735652\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_0071.jpg\";}'),(9470,2309,'_wp_attached_file','2020/08/IMG_0073-rotated.jpg'),(9471,2309,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/08/IMG_0073-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0073-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0073-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_0073-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_0073-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596735679\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_0073.jpg\";}'),(9472,2310,'_wp_attached_file','2020/08/IMG_0076-rotated.jpg'),(9473,2310,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/08/IMG_0076-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0076-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0076-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_0076-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_0076-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596735991\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:6:\"0.0625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_0076.jpg\";}'),(9474,2311,'_wp_attached_file','2020/08/IMG_0077-rotated.jpg'),(9475,2311,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:28:\"2020/08/IMG_0077-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_0077-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0077-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_0077-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_0077-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596736027\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_0077.jpg\";}'),(9476,2312,'_wp_attached_file','2020/08/IMG_0076-1-rotated.jpg'),(9477,2312,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:240;s:6:\"height\";i:320;s:4:\"file\";s:30:\"2020/08/IMG_0076-1-rotated.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"IMG_0076-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"IMG_0076-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:22:\"IMG_0076-1-240x250.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:22:\"IMG_0076-1-240x284.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";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:\"1596735991\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:6:\"0.0625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_0076-1.jpg\";}'),(9488,2322,'_thumbnail_id','786'),(9489,2322,'_et_post_bg_color','#ffffff'),(9490,2322,'_et_post_bg_layout','light'),(9491,2322,'_et_pb_show_title','on'),(9492,2322,'_et_pb_post_hide_nav','default'),(9493,2322,'_et_pb_page_layout','et_right_sidebar'),(9494,2322,'_et_pb_side_nav','off'),(9495,2322,'_et_pb_use_builder','on'),(9496,2322,'_et_pb_first_image',''),(9497,2322,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_3 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">August 25th, 2020 1497 hd; last week&#8217;s sale 1404 hd; a year ago 1188 hd. Feeder steers sold mostly steady compared to last weeks market. Heifers last week sold steady-$2 lower.Â  Cows &amp; bulls sold $2-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_10\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$155.00-$167.50</p>\n<p>400-500<br />\n$155.00-$185.00</p>\n<p>500-600<br />\n$150.00-$182.00</p>\n<p>600-700<br />\n$140.00-$159.00</p>\n<p>700-800<br />\n$130.00-$144.75</p>\n<p>800-900<br />\n$128.00-$139.25</p>\n<p>900-1000<br />\n$108.50-$117.50</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$152.00</p>\n<p>400-500<br />\n$135.00-$164.75</p>\n<p>500-600<br />\n$130.00-$146.00</p>\n<p>600-700<br />\n$122.00-$144.85</p>\n<p>700-800<br />\n$120.00-$135.25</p>\n<p>800-900<br />\n$110.00-$126.00</p>\n<p>900-1000<br />\n$100.00-$110.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>Â  Â  Â  BULLS<br />\nÂ  Â  Â  Â  Â  PRICES</p>\n<p>300-500<br />\n$140.00-$170.00</p>\n<p>500-700<br />\n$80-$150.00</p>\n<p>700-800<br />\n$107.00-$135.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_24  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$62.00 &#8211; $75.00</p>\n<p>Medium Yield<br />\n$51.00 &#8211; $62.00</p>\n<p>Low Yield<br />\n$41.00 &#8211; $50.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $99.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n736lbs @ 134.25</p>\n<p>HEIFERS<br />\n688lbs @ 144.85</p>\n<p>STEERS<br />\n485lbs @ 185.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_26  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_11\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_3_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_3 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(9498,2322,'_et_pb_truncate_post_date','2020-09-27 00:32:25'),(9499,2322,'_et_pb_old_content',''),(9501,2322,'_et_pb_built_for_post_type','page'),(9502,2322,'_et_pb_ab_subjects',''),(9503,2322,'_et_pb_enable_shortcode_tracking',''),(9504,2322,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2322\" /]'),(9505,2322,'_et_pb_custom_css',''),(9506,2322,'_et_pb_gutter_width','3'),(9507,2322,'_et_builder_version','VB|Divi|4.4.4'),(9508,2322,'_et_pb_show_page_creation','off'),(9509,2322,'_wp_old_slug','february-11-2020-market-report'),(9510,2322,'_wp_old_slug','march-17th-2020-market-report'),(9511,2322,'_wp_old_slug','may-1th-2020-market-report-2'),(9512,2322,'_wp_old_slug','july-21st-2020-market-report-2'),(9514,2322,'_dp_original','2246'),(9515,2322,'_edit_lock','1598462388:2'),(9516,2322,'_edit_last','2'),(9520,2334,'_wp_attached_file','2020/08/Taylor-legal-sized.pdf'),(9521,2334,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:26:\"Taylor-legal-sized-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Taylor-legal-sized-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Taylor-legal-sized-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Taylor-legal-sized-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9526,2341,'_wp_attached_file','2020/09/Tuesday-September-1st-Feeder-Cattle-Consignments.pdf'),(9527,2341,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"Tuesday-September-1st-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Tuesday-September-1st-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"Tuesday-September-1st-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"Tuesday-September-1st-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9530,1450,'_oembed_d083bb501f2ec18d52bc5b1dfb62b5de','{{unknown}}'),(9532,2351,'_thumbnail_id','786'),(9533,2351,'_et_post_bg_color','#ffffff'),(9534,2351,'_et_post_bg_layout','light'),(9535,2351,'_et_pb_show_title','on'),(9536,2351,'_et_pb_post_hide_nav','default'),(9537,2351,'_et_pb_page_layout','et_right_sidebar'),(9538,2351,'_et_pb_side_nav','off'),(9539,2351,'_et_pb_use_builder','on'),(9540,2351,'_et_pb_first_image',''),(9541,2351,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">September 1st, 2020 1353 hd; last week&#8217;s sale 1497 hd; a year ago 741 hd. Feeder cattle weighing 600lbs &amp; up sold $2-$4.00 higher. All other class sold steady compared to last weeks market. Cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$155.00-$185.00</p>\n<p>400-500<br />\n$150.00-$169.50</p>\n<p>500-600<br />\n$150.00-$185.00</p>\n<p>600-700<br />\n$140.00-$158.00</p>\n<p>700-800<br />\n$134.00-$148.00</p>\n<p>800-900<br />\n$125.00-$140.00</p>\n<p>900-1000<br />\n$110.00-$115.50</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$150.00</p>\n<p>400-500<br />\n$140.00-$162.00</p>\n<p>500-600<br />\n$130.00-$147.75</p>\n<p>600-700<br />\n$125.00-$144.50</p>\n<p>700-800<br />\n$118.00-$131.10</p>\n<p>800-900<br />\n$125.00-$132.00</p>\n<p>900-1000<br />\n$108.00-$121.35</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>Â  Â  Â  BULLS<br />\nÂ  Â  Â  Â  Â  PRICES</p>\n<p>300-500<br />\n$145.00-$160.00</p>\n<p>500-700<br />\n$120-$150.00</p>\n<p>700-800<br />\n$115.00-$130.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$70.00 &#8211; $80.00</p>\n<p>Medium Yield<br />\n$61.00 &#8211; $70.00</p>\n<p>Low Yield<br />\n$48.00 &#8211; $60.00</p>\n<p>Bulls<br />\n$85.00 &#8211; $99.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n931lbs @ 121.35</p>\n<p>HEIFERS<br />\n660lbs @ 141.75</p>\n<p>HEIFERS<br />\n680lbs @ 139.85</p>\n<p>HEIFERS<br />\n844lbs @ 128.00</p>\n<p>STEERS<br />\n711lbs @ 143.75</p>\n<p>STEERS<br />\n810lbs @ 140.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(9542,2351,'_et_pb_truncate_post_date','2020-09-27 00:32:24'),(9543,2351,'_et_pb_old_content',''),(9545,2351,'_et_pb_built_for_post_type','page'),(9546,2351,'_et_pb_ab_subjects',''),(9547,2351,'_et_pb_enable_shortcode_tracking',''),(9548,2351,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2351\" /]'),(9549,2351,'_et_pb_custom_css',''),(9550,2351,'_et_pb_gutter_width','3'),(9551,2351,'_et_builder_version','VB|Divi|4.4.4'),(9552,2351,'_et_pb_show_page_creation','off'),(9553,2351,'_wp_old_slug','february-11-2020-market-report'),(9554,2351,'_wp_old_slug','march-17th-2020-market-report'),(9555,2351,'_wp_old_slug','may-1th-2020-market-report-2'),(9556,2351,'_wp_old_slug','july-21st-2020-market-report-2'),(9558,2351,'_dp_original','2322'),(9559,2351,'_edit_lock','1599061652:2'),(9560,2351,'_edit_last','2'),(9563,2357,'_wp_attached_file','2020/09/Labor-Day-2020-Detailed-Consignment-List.pdf'),(9564,2357,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:48:\"Labor-Day-2020-Detailed-Consignment-List-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Labor-Day-2020-Detailed-Consignment-List-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"Labor-Day-2020-Detailed-Consignment-List-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Labor-Day-2020-Detailed-Consignment-List-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9575,2374,'_wp_attached_file','2020/09/Labor-Day-2020-Detailed-Consignment-List-1.pdf'),(9576,2374,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"Labor-Day-2020-Detailed-Consignment-List-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"Labor-Day-2020-Detailed-Consignment-List-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"Labor-Day-2020-Detailed-Consignment-List-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Labor-Day-2020-Detailed-Consignment-List-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9578,2377,'_wp_attached_file','2020/09/Labor-Day-2020-Detailed-Consignment-List-2.pdf'),(9579,2377,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"Labor-Day-2020-Detailed-Consignment-List-2-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"Labor-Day-2020-Detailed-Consignment-List-2-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"Labor-Day-2020-Detailed-Consignment-List-2-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Labor-Day-2020-Detailed-Consignment-List-2-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9582,2381,'_wp_attached_file','2020/09/IMG_0421.png'),(9583,2381,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:230;s:4:\"file\";s:20:\"2020/09/IMG_0421.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"IMG_0421-300x86.png\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_0421-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"IMG_0421-768x221.png\";s:5:\"width\";i:768;s:6:\"height\";i:221;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:20:\"IMG_0421-400x230.png\";s:5:\"width\";i:400;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:20:\"IMG_0421-400x230.png\";s:5:\"width\";i:400;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:20:\"IMG_0421-510x230.png\";s:5:\"width\";i:510;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:20:\"IMG_0421-400x230.png\";s:5:\"width\";i:400;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:20:\"IMG_0421-480x138.png\";s:5:\"width\";i:480;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9585,2386,'_wp_attached_file','2020/09/Labor-Day-2020-Detailed-Consignment-List-3.pdf'),(9586,2386,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"Labor-Day-2020-Detailed-Consignment-List-3-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"Labor-Day-2020-Detailed-Consignment-List-3-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"Labor-Day-2020-Detailed-Consignment-List-3-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Labor-Day-2020-Detailed-Consignment-List-3-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9598,2411,'_wp_attached_file','2020/09/Tuesday-September-15th-Feeder-Cattle-Consignments.pdf'),(9599,2411,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:57:\"Tuesday-September-15th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:65:\"Tuesday-September-15th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:66:\"Tuesday-September-15th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:65:\"Tuesday-September-15th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9602,2417,'_thumbnail_id','786'),(9603,2417,'_et_post_bg_color','#ffffff'),(9604,2417,'_et_post_bg_layout','light'),(9605,2417,'_et_pb_show_title','on'),(9606,2417,'_et_pb_post_hide_nav','default'),(9607,2417,'_et_pb_page_layout','et_right_sidebar'),(9608,2417,'_et_pb_side_nav','off'),(9609,2417,'_et_pb_use_builder','on'),(9610,2417,'_et_pb_first_image',''),(9611,2417,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">September 15th, 2020 2789 hd; 2 week&#8217;s ago 1353 hd; a year ago 841 hd. Feeder cattle weighing 600lbs &amp; up sold steady- $4.00 higher. Weaned feeders weighing 600 &amp; down sold steady-$5 higher. Non-weaned cattle sold $2-$4 lower. Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$155.00-$189.00</p>\n<p>400-500<br />\n$150.00-$177.00</p>\n<p>500-600<br />\n$145.00-$177.00</p>\n<p>600-700<br />\n$138.00-$156.00</p>\n<p>700-800<br />\n$134.00-$150.00</p>\n<p>800-900<br />\n$130.00-$147.85</p>\n<p>900-1000<br />\n$110.00-$125.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$145.00-$171.00</p>\n<p>400-500<br />\n$140.00-$165.00</p>\n<p>500-600<br />\n$134.00-$160.00</p>\n<p>600-700<br />\n$130.00-$149.00</p>\n<p>700-800<br />\n$125.00-$143.00</p>\n<p>800-900<br />\n$108.25-$129.00</p>\n<p>900-1000<br />\n$107.25-$115.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>Â  Â  Â  BULLS<br />\nÂ  Â  Â  Â  Â  PRICES</p>\n<p>300-500<br />\n$146.00-$184.00</p>\n<p>500-700<br />\n$117-$146.50</p>\n<p>700-800<br />\n$90.00-$100.00</p></div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$66.00 &#8211; $75.00</p>\n<p>Medium Yield<br />\n$57.00 &#8211; $65.00</p>\n<p>Low Yield<br />\n$48.00 &#8211; $56.00</p>\n<p>Bulls<br />\n$70.00 &#8211; $98.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n711lbs @ 139.85</p>\n<p>HEIFERS<br />\n623lbs @ 145.00</p>\n<p>HEIFERS<br />\n639lbs @ 149.00</p>\n<p>STEERS<br />\n844lbs @ 140.85</p>\n<p>STEERS<br />\n852lbs @ 138.50</p>\n<p>STEERS<br />\n718lbs @ 147.00</p>\n<p>STEERS<br />\n730lbs @148.10</p>\n<p>STEERS<br />\n675lbs @154.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(9612,2417,'_et_pb_truncate_post_date','2020-09-27 00:32:24'),(9613,2417,'_et_pb_old_content',''),(9615,2417,'_et_pb_built_for_post_type','page'),(9616,2417,'_et_pb_ab_subjects',''),(9617,2417,'_et_pb_enable_shortcode_tracking',''),(9618,2417,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2417\" /]'),(9619,2417,'_et_pb_custom_css',''),(9620,2417,'_et_pb_gutter_width','3'),(9621,2417,'_et_builder_version','VB|Divi|4.4.4'),(9622,2417,'_et_pb_show_page_creation','off'),(9623,2417,'_wp_old_slug','february-11-2020-market-report'),(9624,2417,'_wp_old_slug','march-17th-2020-market-report'),(9625,2417,'_wp_old_slug','may-1th-2020-market-report-2'),(9626,2417,'_wp_old_slug','july-21st-2020-market-report-2'),(9628,2417,'_dp_original','2351'),(9629,2417,'_edit_lock','1600270065:2'),(9630,2417,'_edit_last','2'),(9632,2422,'_wp_page_template','default'),(9633,2422,'_et_pb_post_hide_nav','default'),(9634,2422,'_et_pb_page_layout','et_right_sidebar'),(9635,2422,'_et_pb_side_nav','off'),(9636,2422,'fusion_builder_status',''),(9637,2422,'_et_pb_use_builder','on'),(9638,2422,'_et_pb_first_image',''),(9639,2422,'_et_pb_truncate_post',''),(9640,2422,'_et_pb_truncate_post_date',''),(9641,2422,'_et_pb_old_content',''),(9642,2422,'_et_pb_built_for_post_type','page'),(9643,2422,'_et_pb_ab_subjects',''),(9644,2422,'_et_pb_enable_shortcode_tracking',''),(9645,2422,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2422\" /]'),(9646,2422,'_et_pb_custom_css',''),(9647,2422,'_et_pb_gutter_width','3'),(9648,2422,'_et_builder_version','VB|Divi|4.4.4'),(9650,2422,'_et_pb_show_page_creation','off'),(9652,2422,'_dp_original','1967'),(9653,2422,'_edit_lock','1633532900:2'),(9661,2436,'_wp_attached_file','2020/09/Tuesday-September-22nd-Feeder-Cattle-Consignments.pdf'),(9662,2436,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:57:\"Tuesday-September-22nd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:65:\"Tuesday-September-22nd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:66:\"Tuesday-September-22nd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:65:\"Tuesday-September-22nd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9665,2442,'_wp_attached_file','2020/09/Phelps-Sale-Bill.pdf'),(9666,2442,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:24:\"Phelps-Sale-Bill-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Phelps-Sale-Bill-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Phelps-Sale-Bill-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Phelps-Sale-Bill-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9669,2447,'_wp_attached_file','2020/09/Phelps-Sale-Bill-1.pdf'),(9670,2447,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:26:\"Phelps-Sale-Bill-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Phelps-Sale-Bill-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Phelps-Sale-Bill-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Phelps-Sale-Bill-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9674,2458,'_thumbnail_id','786'),(9675,2458,'_et_post_bg_color','#ffffff'),(9676,2458,'_et_post_bg_layout','light'),(9677,2458,'_et_pb_show_title','on'),(9678,2458,'_et_pb_post_hide_nav','default'),(9679,2458,'_et_pb_page_layout','et_right_sidebar'),(9680,2458,'_et_pb_side_nav','off'),(9681,2458,'_et_pb_use_builder','on'),(9682,2458,'_et_pb_first_image',''),(9683,2458,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">September 22nd, 2020Â 1384 hd; last weeks sale 2789 hd; a year ago 1981 hd. Feeder cattle long weaned &amp; on grass sold $4-$7 higher. Short weaned &amp; non-weaned calves sold steady. Cows &amp; Bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$183.50</p>\n<p>400-500<br />\n$155.00-$180.50</p>\n<p>500-600<br />\n$150.00-$180.00</p>\n<p>600-700<br />\n$140.00-$158.50</p>\n<p>700-800<br />\n$140.00-$160.00</p>\n<p>800-900<br />\n$130.50-$155.00</p>\n<p>900-1000<br />\n$113.00-$117.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$164.00</p>\n<p>400-500<br />\n$143.00-$159.00</p>\n<p>500-600<br />\n$135.00-$148.50</p>\n<p>600-700<br />\n$130.00-$153.75</p>\n<p>700-800<br />\n$124.00-$136.85</p>\n<p>800-900<br />\n$115.00-$129.10</p>\n<p>900-1000<br />\n$104.00-$112.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$60.00 &#8211; $71.50</p>\n<p>Medium Yield<br />\n$49.00 &#8211; $60.00</p>\n<p>Low Yield<br />\n$20.00 &#8211; $48.00</p>\n<p>Bulls<br />\n$78.00 &#8211; $97.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n770lbs @ 136.75</p>\n<p>HEIFERS<br />\n685lbs @ 149.75</p>\n<p>HEIFERS<br />\n625lbs @ 153.75</p>\n<p>STEERS<br />\n1003lbs @ 117.00</p>\n<p>STEERS<br />\n858lbs @ 142.00</p>\n<p>STEERS<br />\n812lbs @ 155.00</p>\n<p>STEERS<br />\n730lbs @143.25</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(9684,2458,'_et_pb_truncate_post_date','2020-09-27 00:32:24'),(9685,2458,'_et_pb_old_content',''),(9687,2458,'_et_pb_built_for_post_type','page'),(9688,2458,'_et_pb_ab_subjects',''),(9689,2458,'_et_pb_enable_shortcode_tracking',''),(9690,2458,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2458\" /]'),(9691,2458,'_et_pb_custom_css',''),(9692,2458,'_et_pb_gutter_width','3'),(9693,2458,'_et_builder_version','VB|Divi|4.4.4'),(9694,2458,'_et_pb_show_page_creation','off'),(9695,2458,'_wp_old_slug','february-11-2020-market-report'),(9696,2458,'_wp_old_slug','march-17th-2020-market-report'),(9697,2458,'_wp_old_slug','may-1th-2020-market-report-2'),(9698,2458,'_wp_old_slug','july-21st-2020-market-report-2'),(9700,2458,'_dp_original','2417'),(9701,2458,'_edit_lock','1600971595:2'),(9702,2458,'_edit_last','2'),(9706,1450,'_oembed_67805c0f164afdd88cafee75352b340c','{{unknown}}'),(9714,2481,'_wp_attached_file','2020/09/Tuesday-September-29th-Feeder-Cattle-Consignments.pdf'),(9715,2481,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:57:\"Tuesday-September-29th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:65:\"Tuesday-September-29th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:66:\"Tuesday-September-29th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:65:\"Tuesday-September-29th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9724,2502,'_thumbnail_id','786'),(9725,2502,'_et_post_bg_color','#ffffff'),(9726,2502,'_et_post_bg_layout','light'),(9727,2502,'_et_pb_show_title','on'),(9728,2502,'_et_pb_post_hide_nav','default'),(9729,2502,'_et_pb_page_layout','et_right_sidebar'),(9730,2502,'_et_pb_side_nav','off'),(9731,2502,'_et_pb_use_builder','on'),(9732,2502,'_et_pb_first_image',''),(9733,2502,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_3 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">September 29th, 2020, 2072 hd; last weeks sale 1384 hd; a year ago 1689 hd. Feeder cattle weighing 650lbs &amp; up-sold steady-$5 higher. Feeder cattle weighing 650lbs &amp; down sold fully steady. Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_10\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$180.00</p>\n<p>400-500<br />\n$150.00-$175.00</p>\n<p>500-600<br />\n$148.00-$167.00</p>\n<p>600-700<br />\n$140.00-$162.00</p>\n<p>700-800<br />\n$130.00-$156.25</p>\n<p>800-900<br />\n$130.00-$148.60</p>\n<p>900-1000<br />\n$120.00-$143.35</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$145.00-$158.00</p>\n<p>400-500<br />\n$140.00-$159.00</p>\n<p>500-600<br />\n$134.00-$154.00</p>\n<p>600-700<br />\n$130.00-$151.00</p>\n<p>700-800<br />\n$124.00-$145.00</p>\n<p>800-900<br />\n$114.00-$116.50</p>\n<p>900-1000<br />\n$104.00-$110.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$63.00 &#8211; $72.00</p>\n<p>Medium Yield<br />\n$52.00 &#8211; $62.00</p>\n<p>Low Yield<br />\n$40.00 &#8211; $51.00</p>\n<p>Bulls<br />\n$75.00 &#8211; $100.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n779lbs @ 145.10</p>\n<p>HEIFERS<br />\n661lbs @ 151.00</p>\n<p>HEIFERS<br />\n673lbs @ 144.50</p>\n<p>HEIFERS<br />\n676lbs @144.00</p>\n<p>HEIFERS<br />\n680lbs @146.00</p>\n<p>STEERS<br />\n730lbs @ 155.10</p>\n<p>STEERS<br />\n889lbs @ 143.00</p>\n<p>STEERS<br />\n882lbs @ 145.00</p>\n<p>STEERS<br />\n913lbs @143.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_11\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_3_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_3 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(9734,2502,'_et_pb_truncate_post_date','2020-10-21 21:11:59'),(9735,2502,'_et_pb_old_content',''),(9737,2502,'_et_pb_built_for_post_type','page'),(9738,2502,'_et_pb_ab_subjects',''),(9739,2502,'_et_pb_enable_shortcode_tracking',''),(9740,2502,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2502\" /]'),(9741,2502,'_et_pb_custom_css',''),(9742,2502,'_et_pb_gutter_width','3'),(9743,2502,'_et_builder_version','VB|Divi|4.4.4'),(9744,2502,'_et_pb_show_page_creation','off'),(9745,2502,'_wp_old_slug','february-11-2020-market-report'),(9746,2502,'_wp_old_slug','march-17th-2020-market-report'),(9747,2502,'_wp_old_slug','may-1th-2020-market-report-2'),(9748,2502,'_wp_old_slug','july-21st-2020-market-report-2'),(9750,2502,'_dp_original','2458'),(9751,2502,'_edit_lock','1601491700:2'),(9752,2502,'_edit_last','2'),(9755,2510,'_wp_attached_file','2020/10/Tuesday-October-6th-Feeder-Cattle-Consignments.pdf'),(9756,2510,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"Tuesday-October-6th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Tuesday-October-6th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"Tuesday-October-6th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Tuesday-October-6th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9759,2516,'_wp_attached_file','2020/10/Tuesday-October-6th-Feeder-Cattle-Consignments-1.pdf'),(9760,2516,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"Tuesday-October-6th-Feeder-Cattle-Consignments-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Tuesday-October-6th-Feeder-Cattle-Consignments-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"Tuesday-October-6th-Feeder-Cattle-Consignments-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"Tuesday-October-6th-Feeder-Cattle-Consignments-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9764,2520,'_thumbnail_id','786'),(9765,2520,'_et_post_bg_color','#ffffff'),(9766,2520,'_et_post_bg_layout','light'),(9767,2520,'_et_pb_show_title','on'),(9768,2520,'_et_pb_post_hide_nav','default'),(9769,2520,'_et_pb_page_layout','et_right_sidebar'),(9770,2520,'_et_pb_side_nav','off'),(9771,2520,'_et_pb_use_builder','on'),(9772,2520,'_et_pb_first_image',''),(9773,2520,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">October 6th, 2020, 1486 hd; last weeks sale 2072 hd; a year ago 1166 hd. Feeder cattle sold fully steady. Non-Weaned &amp; new crop calves sold $5.00 lower. Cows &amp; Bulls sold $3-$7.00. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$158.00-$175.00</p>\n<p>400-500<br />\n$155.00-$175.00</p>\n<p>500-600<br />\n$148.00-$164.00</p>\n<p>600-700<br />\n$135.00-$162.00</p>\n<p>700-800<br />\n$130.00-$152.50</p>\n<p>800-900<br />\n$130.00-$147.25</p>\n<p>900-1000<br />\n$115.00-$130.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$145.00-$159.50</p>\n<p>400-500<br />\n$140.00-$159.00</p>\n<p>500-600<br />\n$130.00-$144.50</p>\n<p>600-700<br />\n$125.00-$150.00</p>\n<p>700-800<br />\n$125.00-$148.00</p>\n<p>800-900<br />\n$116.00-$123.00</p>\n<p>900-1000<br />\n$110.00-$123.60</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$55.00 &#8211; $65.00</p>\n<p>Medium Yield<br />\n$47.00 &#8211; $54.00</p>\n<p>Low Yield<br />\n$25.00 &#8211; $46.00</p>\n<p>Bulls<br />\n$65.00 &#8211; $89.00</p>\n<p>Low Yield BullsÂ <br />\n$50.00 &#8211; $60.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n711lbs @ 139.75</p>\n<p>HEIFERS<br />\n798lbs @ 142.00</p>\n<p>HEIFERS<br />\n680lbs @ 144.50</p>\n<p>STEERS<br />\n792lbs @143.50</p>\n<p>STEERS<br />\n793lbs @144.50</p>\n<p>STEERS<br />\n809lbs @ 143.50</p>\n<p>STEERS<br />\n886lbs @ 139.85</p>\n<p>STEERS<br />\n894lbs @ 137.60</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(9774,2520,'_et_pb_truncate_post_date','2020-10-21 21:11:59'),(9775,2520,'_et_pb_old_content',''),(9777,2520,'_et_pb_built_for_post_type','page'),(9778,2520,'_et_pb_ab_subjects',''),(9779,2520,'_et_pb_enable_shortcode_tracking',''),(9780,2520,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2520\" /]'),(9781,2520,'_et_pb_custom_css',''),(9782,2520,'_et_pb_gutter_width','3'),(9783,2520,'_et_builder_version','VB|Divi|4.4.4'),(9784,2520,'_et_pb_show_page_creation','off'),(9785,2520,'_wp_old_slug','february-11-2020-market-report'),(9786,2520,'_wp_old_slug','march-17th-2020-market-report'),(9787,2520,'_wp_old_slug','may-1th-2020-market-report-2'),(9788,2520,'_wp_old_slug','july-21st-2020-market-report-2'),(9790,2520,'_dp_original','2502'),(9791,2520,'_edit_lock','1602083933:2'),(9792,2520,'_edit_last','2'),(9798,2538,'_wp_attached_file','2020/10/Camden-Sale-Bill.pdf'),(9799,2538,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:24:\"Camden-Sale-Bill-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Camden-Sale-Bill-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Camden-Sale-Bill-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Camden-Sale-Bill-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9804,2549,'_wp_attached_file','2020/10/Tuesday-October-13th-Feeder-Cattle-Consignments.pdf'),(9805,2549,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-October-13th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-October-13th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-October-13th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-October-13th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9809,2557,'_thumbnail_id','786'),(9810,2557,'_et_post_bg_color','#ffffff'),(9811,2557,'_et_post_bg_layout','light'),(9812,2557,'_et_pb_show_title','on'),(9813,2557,'_et_pb_post_hide_nav','default'),(9814,2557,'_et_pb_page_layout','et_right_sidebar'),(9815,2557,'_et_pb_side_nav','off'),(9816,2557,'_et_pb_use_builder','on'),(9817,2557,'_et_pb_first_image',''),(9818,2557,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">October 13th, 2020, 1617 hd; last weeks sale 1486 hd; a year ago 1362 hd. Compared to last week&#8217;s market yearlings sold steady. Non-Weaned &amp; new crop calves sold $5.00 lower. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$165.00-$175.00</p>\n<p>400-500<br />\n$155.00-$170.00</p>\n<p>500-600<br />\n$145.00-$172.00</p>\n<p>600-700<br />\n$140.00-$155.00</p>\n<p>700-800<br />\n$130.00-$156.00</p>\n<p>800-900<br />\n$127.00-$137.25</p>\n<p>900-1000<br />\n$123.00-$133.50</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$166.00</p>\n<p>400-500<br />\n$140.00-$162.00</p>\n<p>500-600<br />\n$130.00-$153.50</p>\n<p>600-700<br />\n$120.00-$145.00</p>\n<p>700-800<br />\n$125.00-$148.50</p>\n<p>800-900<br />\n$110.00-$119.50</p>\n<p>900-1000<br />\n$100.00-$104.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$60.00 &#8211; $67.00</p>\n<p>Medium Yield<br />\n$52.00 &#8211; $59.00</p>\n<p>Low Yield<br />\n$44.00 &#8211; $51.00</p>\n<p>Fat Cows 1500llbs &amp; up<br />\n$65.00-$71.00</p>\n<p>Bulls<br />\n$70.00 &#8211; $88.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n751lbs @ 148.50</p>\n<p>STEERS<br />\n751lbs @ 156.00</p>\n<p>STEERS<br />\n783lbs @ 142.85</p>\n<p>STEERS<br />\n760lbs @142.50</p>\n<p>STEERS<br />\n735lbs @144.00</p>\n<p>STEERS<br />\n950lbs @ 133.50</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(9819,2557,'_et_pb_truncate_post_date','2020-10-21 21:11:59'),(9820,2557,'_et_pb_old_content',''),(9822,2557,'_et_pb_built_for_post_type','page'),(9823,2557,'_et_pb_ab_subjects',''),(9824,2557,'_et_pb_enable_shortcode_tracking',''),(9825,2557,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2557\" /]'),(9826,2557,'_et_pb_custom_css',''),(9827,2557,'_et_pb_gutter_width','3'),(9828,2557,'_et_builder_version','VB|Divi|4.4.4'),(9829,2557,'_et_pb_show_page_creation','off'),(9830,2557,'_wp_old_slug','february-11-2020-market-report'),(9831,2557,'_wp_old_slug','march-17th-2020-market-report'),(9832,2557,'_wp_old_slug','may-1th-2020-market-report-2'),(9833,2557,'_wp_old_slug','july-21st-2020-market-report-2'),(9836,2557,'_dp_original','2520'),(9837,2557,'_edit_lock','1602686318:2'),(9838,2557,'_edit_last','2'),(9842,2572,'_wp_attached_file','2020/10/Camden.pdf'),(9843,2572,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:14:\"Camden-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Camden-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Camden-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Camden-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9846,2581,'_wp_attached_file','2020/10/Tuesday-October-20th-Feeder-Cattle-Consignments.pdf'),(9847,2581,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-October-20th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-October-20th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-October-20th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-October-20th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9850,2588,'_thumbnail_id','786'),(9851,2588,'_et_post_bg_color','#ffffff'),(9852,2588,'_et_post_bg_layout','light'),(9853,2588,'_et_pb_show_title','on'),(9854,2588,'_et_pb_post_hide_nav','default'),(9855,2588,'_et_pb_page_layout','et_right_sidebar'),(9856,2588,'_et_pb_side_nav','off'),(9857,2588,'_et_pb_use_builder','on'),(9858,2588,'_et_pb_first_image',''),(9859,2588,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">October 20th, 2020, 1665 hd; last weeks sale 1617 hd; a year ago 2186 hd. Compared to last week&#8217;s market feeder cattle &amp; yearlings traded $3-$6 lower with cattle futures trading lower at the beginning of the week. Slaughter Cows &amp; Bulls sold steady-$3.00 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$170.00</p>\n<p>400-500<br />\n$150.00-$181.50</p>\n<p>500-600<br />\n$145.00-$156.00</p>\n<p>600-700<br />\n$130.00-$150.50</p>\n<p>700-800<br />\n$125.00-$144.50</p>\n<p>800-900<br />\n$121.00-$138.50</p>\n<p>900-1000<br />\n$110.00-$116.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$146.00-$169.00</p>\n<p>400-500<br />\n$138.00-$153.00</p>\n<p>500-600<br />\n$128.00-$138.00</p>\n<p>600-700<br />\n$120.00-$135.25</p>\n<p>700-800<br />\n$110.00-$137.25</p>\n<p>800-900<br />\n$110.00-$115.00</p>\n<p>900-1000<br />\n$100.00-$110.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$55.00 &#8211; $65.00</p>\n<p>Medium Yield<br />\n$45.00 &#8211; $55.00</p>\n<p>Low Yield<br />\n$25.00 &#8211; $40.00</p>\n<p>Fat Cows 1500llbs &amp; up<br />\n$64.00-$70.50</p>\n<p>Bulls<br />\n$55.00 &#8211; $85.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n715lbs @ 135.50</p>\n<p>HEIFERS<br />\n742lbs @ 137.25</p>\n<p>STEERS<br />\n664lbs @ 144.75 (Char-Red)</p>\n<p>STEERS<br />\n727lbs @144.25</p>\n<p>STEERS<br />\n724lbs @143.50 (Char-Blk)</p>\n<p>STEERS<br />\n772lbs @ 137.75</p>\n<p>STEERS<br />\n836lbs @138.50</p>\n<p>STEERS<br />\n783lbs @ 136.00 (Char)</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(9860,2588,'_et_pb_truncate_post_date','2020-10-21 21:11:59'),(9861,2588,'_et_pb_old_content',''),(9863,2588,'_et_pb_built_for_post_type','page'),(9864,2588,'_et_pb_ab_subjects',''),(9865,2588,'_et_pb_enable_shortcode_tracking',''),(9866,2588,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2588\" /]'),(9867,2588,'_et_pb_custom_css',''),(9868,2588,'_et_pb_gutter_width','3'),(9869,2588,'_et_builder_version','VB|Divi|4.4.4'),(9870,2588,'_et_pb_show_page_creation','off'),(9871,2588,'_wp_old_slug','february-11-2020-market-report'),(9872,2588,'_wp_old_slug','march-17th-2020-market-report'),(9873,2588,'_wp_old_slug','may-1th-2020-market-report-2'),(9874,2588,'_wp_old_slug','july-21st-2020-market-report-2'),(9876,2588,'_dp_original','2557'),(9877,2588,'_edit_lock','1603295330:2'),(9878,2588,'_edit_last','2'),(9881,1967,'_thumbnail_id','0'),(9883,2605,'_wp_attached_file','2020/10/Tuesday-October-27th-Feeder-Cattle-Consignments.pdf'),(9884,2605,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-October-27th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-October-27th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-October-27th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-October-27th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9887,2609,'_wp_attached_file','2020/10/Wheeler-sale-bill.pdf'),(9888,2609,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:25:\"Wheeler-sale-bill-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Wheeler-sale-bill-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Wheeler-sale-bill-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Wheeler-sale-bill-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9890,2615,'_thumbnail_id','786'),(9891,2615,'_et_post_bg_color','#ffffff'),(9892,2615,'_et_post_bg_layout','light'),(9893,2615,'_et_pb_show_title','on'),(9894,2615,'_et_pb_post_hide_nav','default'),(9895,2615,'_et_pb_page_layout','et_right_sidebar'),(9896,2615,'_et_pb_side_nav','off'),(9897,2615,'_et_pb_use_builder','on'),(9898,2615,'_et_pb_first_image',''),(9899,2615,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">October 27th, 2020, 1080 hd; last weeks sale 1665 hd; a year ago 1660 hd. Compared to last week&#8217;s market feeder cattle weighing 650lbs &amp; up-sold steady-$2 higher in places. Calves weighing 650lbs &amp; down sold unevenly steady. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$170.00</p>\n<p>400-500<br />\n$140.00-$164.00</p>\n<p>500-600<br />\n$135.00-$158.00</p>\n<p>600-700<br />\n$130.00-$149.00</p>\n<p>700-800<br />\n$127.00-$146.00</p>\n<p>800-900<br />\n$118.00-$124.00</p>\n<p>900-1000<br />\nNA</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$124.00-$140.00</p>\n<p>400-500<br />\n$120.00-$143.50</p>\n<p>500-600<br />\n$118.00-$144.00</p>\n<p>600-700<br />\n$117.00-$145.00</p>\n<p>700-800<br />\n$115.00-$142.00</p>\n<p>800-900<br />\n$103.00-$109.00</p>\n<p>900-1000<br />\n$99.00-$105.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$55.00 &#8211; $64.00</p>\n<p>Medium Yield<br />\n$48.00 &#8211; $55.00</p>\n<p>Low Yield<br />\n$40.00 &#8211; $47.00</p>\n<p>Fat Cows 1500llbs &amp; up<br />\n$61.00-$68.00</p>\n<p>Bulls<br />\n$70.00 &#8211; $89.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n699lbs @ 145.00 74Hd BlkÂ </p>\n<p>HEIFERS<br />\n714lbs @ 142.00 74Hd Mix</p>\n<p>STEERS<br />\n527lbs @ 149.75 44Hd Brangus</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(9900,2615,'_et_pb_truncate_post_date','2020-11-04 02:18:58'),(9901,2615,'_et_pb_old_content',''),(9903,2615,'_et_pb_built_for_post_type','page'),(9904,2615,'_et_pb_ab_subjects',''),(9905,2615,'_et_pb_enable_shortcode_tracking',''),(9906,2615,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2615\" /]'),(9907,2615,'_et_pb_custom_css',''),(9908,2615,'_et_pb_gutter_width','3'),(9909,2615,'_et_builder_version','VB|Divi|4.4.4'),(9910,2615,'_et_pb_show_page_creation','off'),(9911,2615,'_wp_old_slug','february-11-2020-market-report'),(9912,2615,'_wp_old_slug','march-17th-2020-market-report'),(9913,2615,'_wp_old_slug','may-1th-2020-market-report-2'),(9914,2615,'_wp_old_slug','july-21st-2020-market-report-2'),(9916,2615,'_dp_original','2588'),(9917,2615,'_edit_lock','1603896645:2'),(9918,2615,'_edit_last','2'),(9920,2621,'_wp_attached_file','2020/11/Wheeler-sale-bill-2.pdf'),(9921,2621,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:27:\"Wheeler-sale-bill-2-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Wheeler-sale-bill-2-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Wheeler-sale-bill-2-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Wheeler-sale-bill-2-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9923,2625,'_wp_attached_file','2020/11/Tuesday-November-3rd-Feeder-Cattle-Consignments.pdf'),(9924,2625,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-November-3rd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-November-3rd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-November-3rd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-November-3rd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9926,2629,'_thumbnail_id','786'),(9927,2629,'_et_post_bg_color','#ffffff'),(9928,2629,'_et_post_bg_layout','light'),(9929,2629,'_et_pb_show_title','on'),(9930,2629,'_et_pb_post_hide_nav','default'),(9931,2629,'_et_pb_page_layout','et_right_sidebar'),(9932,2629,'_et_pb_side_nav','off'),(9933,2629,'_et_pb_use_builder','on'),(9934,2629,'_et_pb_first_image',''),(9935,2629,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">November 3rd, 2020, 1684 hd; last weeks sale 1080 hd; a year ago 2370 hd. Compared to last week&#8217;s market calves sold $2-$4 higher. Yearlings sold $2-$3 higher in places. Good buyer activity throughout the sale. Slaughter Cows &amp; Bulls sold $2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$180.00</p>\n<p>400-500<br />\n$152.00-$178.00</p>\n<p>500-600<br />\n$142.00-$169.00</p>\n<p>600-700<br />\n$137.00-$157.00</p>\n<p>700-800<br />\n$133.00-$150.50</p>\n<p>800-900<br />\n$125.00-$140.50</p>\n<p>900-1000<br />\n$112.00-$115.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$167.00</p>\n<p>400-500<br />\n$140.00-$152.50</p>\n<p>500-600<br />\n$134.00-$154.00</p>\n<p>600-700<br />\n$120.00-$145.25</p>\n<p>700-800<br />\n$120.00-$146.00</p>\n<p>800-900<br />\n$112.00-$117.50</p>\n<p>900-1000<br />\n$100.00-$108.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$51.00 &#8211; $57.00</p>\n<p>Medium Yield<br />\n$43.00 &#8211; $50.00</p>\n<p>Low Yield<br />\n$33.00 &#8211; $42.00</p>\n<p>Fat Cows 1450llbs &amp; up<br />\n$58.00-$66.00</p>\n<p>High Yielding Bulls<br />\n$70.00 &#8211; $86.00</p>\n<p>Low Yielding BullsÂ <br />\n$46.00 &#8211; $64.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n715lbs @ 146.00Â </p>\n<p>STEERS<br />\n764lbs @ 141.00Â </p>\n<p>STEERS<br />\n791lbs @ 150.50Â </p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(9936,2629,'_et_pb_truncate_post_date','2020-11-15 17:34:25'),(9937,2629,'_et_pb_old_content',''),(9939,2629,'_et_pb_built_for_post_type','page'),(9940,2629,'_et_pb_ab_subjects',''),(9941,2629,'_et_pb_enable_shortcode_tracking',''),(9942,2629,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2629\" /]'),(9943,2629,'_et_pb_custom_css',''),(9944,2629,'_et_pb_gutter_width','3'),(9945,2629,'_et_builder_version','VB|Divi|4.4.4'),(9946,2629,'_et_pb_show_page_creation','off'),(9947,2629,'_wp_old_slug','february-11-2020-market-report'),(9948,2629,'_wp_old_slug','march-17th-2020-market-report'),(9949,2629,'_wp_old_slug','may-1th-2020-market-report-2'),(9950,2629,'_wp_old_slug','july-21st-2020-market-report-2'),(9952,2629,'_dp_original','2615'),(9953,2629,'_edit_lock','1604507554:2'),(9954,2629,'_edit_last','2'),(9959,2641,'_wp_attached_file','2020/11/Tuesday-November-10th-Feeder-Cattle-Consignments.pdf'),(9960,2641,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"Tuesday-November-10th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Tuesday-November-10th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"Tuesday-November-10th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"Tuesday-November-10th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(9964,2422,'_edit_last','2'),(9965,2650,'_thumbnail_id','786'),(9966,2650,'_et_post_bg_color','#ffffff'),(9967,2650,'_et_post_bg_layout','light'),(9968,2650,'_et_pb_show_title','on'),(9969,2650,'_et_pb_post_hide_nav','default'),(9970,2650,'_et_pb_page_layout','et_right_sidebar'),(9971,2650,'_et_pb_side_nav','off'),(9972,2650,'_et_pb_use_builder','on'),(9973,2650,'_et_pb_first_image',''),(9974,2650,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">November 10th, 2020, 1862 hd; last weeks sale 1684 hd; a year ago 2105 hd. Compared to last week&#8217;s market feeder cattle weighing 650lbs &amp; up sold steady &#8211; $4 higher. Calves weighing under 650lbs sold steady. Slaughter Cows &amp; Bulls sold $2-$4 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$196.00</p>\n<p>400-500<br />\n$155.00-$178.00</p>\n<p>500-600<br />\n$150.00-$177.00</p>\n<p>600-700<br />\n$135.00-$150.00</p>\n<p>700-800<br />\n$130.00-$154.75</p>\n<p>800-900<br />\n$130.00-$143.35</p>\n<p>900-1000<br />\n$141.00-$141.10</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$171.00</p>\n<p>400-500<br />\n$145.00-$157.00</p>\n<p>500-600<br />\n$135.00-$154.00</p>\n<p>600-700<br />\n$130.00-$146.00</p>\n<p>700-800<br />\n$127.00-$142.25</p>\n<p>800-900<br />\n$110.00-$115.50</p>\n<p>900-1000<br />\n$105.00-$111.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$53.00 &#8211; $58.00</p>\n<p>Medium Yield<br />\n$45.00 &#8211; $52.00</p>\n<p>Low Yield<br />\n$37.00 &#8211; $44.00</p>\n<p>Fat Cows 1500lbs &amp; up<br />\n$60.00-$66.00</p>\n<p>Bulls<br />\n$60.00 &#8211; $87.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n650lbs @ 145.00</p>\n<p>HEIFERS<br />\n693lbs @145.00</p>\n<p>HEIFERS<br />\n693lbs @146.00</p>\n<p>HEIFERS<br />\n741lbs @140.25</p>\n<p>STEERS<br />\n906lbs @ 141.10</p>\n<p>STEERS<br />\n910lbs @ 141.00</p>\n<p>STEERS<br />\n883lbs @ 143.85</p>\n<p>STEERS<br />\n757lbs @154.75</p>\n<p>STEERS<br />\n860lbs @139.00</p>\n<p>STEERS<br />\n760lbs @145.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(9975,2650,'_et_pb_truncate_post_date','2020-11-19 02:27:08'),(9976,2650,'_et_pb_old_content',''),(9978,2650,'_et_pb_built_for_post_type','page'),(9979,2650,'_et_pb_ab_subjects',''),(9980,2650,'_et_pb_enable_shortcode_tracking',''),(9981,2650,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2650\" /]'),(9982,2650,'_et_pb_custom_css',''),(9983,2650,'_et_pb_gutter_width','3'),(9984,2650,'_et_builder_version','VB|Divi|4.4.4'),(9985,2650,'_et_pb_show_page_creation','off'),(9986,2650,'_wp_old_slug','february-11-2020-market-report'),(9987,2650,'_wp_old_slug','march-17th-2020-market-report'),(9988,2650,'_wp_old_slug','may-1th-2020-market-report-2'),(9989,2650,'_wp_old_slug','july-21st-2020-market-report-2'),(9991,2650,'_dp_original','2629'),(9992,2650,'_edit_lock','1605721510:2'),(9993,2650,'_edit_last','2'),(9996,2661,'_wp_attached_file','2020/11/Tuesday-November-17th-Feeder-Cattle-Consignments.pdf'),(9997,2661,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"Tuesday-November-17th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Tuesday-November-17th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"Tuesday-November-17th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"Tuesday-November-17th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10001,2676,'_thumbnail_id','786'),(10002,2676,'_et_post_bg_color','#ffffff'),(10003,2676,'_et_post_bg_layout','light'),(10004,2676,'_et_pb_show_title','on'),(10005,2676,'_et_pb_post_hide_nav','default'),(10006,2676,'_et_pb_page_layout','et_right_sidebar'),(10007,2676,'_et_pb_side_nav','off'),(10008,2676,'_et_pb_use_builder','on'),(10009,2676,'_et_pb_first_image',''),(10010,2676,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">November 17th, 2020, 3037 hd; last weeks sale 1862 hd; a year ago 2577 hd. Compared to last week&#8217;s market feeder cattle weighing 650lbs &amp; down sold steady &#8211; $5 higher. Compared to last weeks market yearlings sold fully steady. Slaughter Cows &amp; Bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$189.50</p>\n<p>400-500<br />\n$165.00-$189.00</p>\n<p>500-600<br />\n$145.00-$171.50</p>\n<p>600-700<br />\n$133.00-$154.50</p>\n<p>700-800<br />\n$130.00-$145.25</p>\n<p>800-900<br />\n$142.00-$145.25</p>\n<p>900-1000<br />\n$125.00-$139.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$144.00-$160.00</p>\n<p>400-500<br />\n$132.00-$159.50</p>\n<p>500-600<br />\n$124.00-$144.50</p>\n<p>600-700<br />\n$120.00-$145.25</p>\n<p>700-800<br />\n$133.00-$145.00 yearlings</p>\n<p>700-800<br />\n$120.00-$130.00 calves</p>\n<p>800-900<br />\n$120.00-$123.75</p>\n<p>900-1000<br />\nNA</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$51.00 &#8211; $61.00</p>\n<p>Medium Yield<br />\n$45.00 &#8211; $51.00</p>\n<p>Low Yield<br />\n$32.00 &#8211; $44.00</p>\n<p>Fat Cows 1500lbs &amp; up<br />\n$57.00-$66.00</p>\n<p>Bulls<br />\n$60.00 &#8211; $88.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n710lbs @ 137.10</p>\n<p>STEERS<br />\n767lbs @145.00</p>\n<p>STEERS<br />\n820lbs @144.00</p>\n<p>STEERS<br />\n870lbs @142.35</p>\n<p>STEERS<br />\n867lbs @ 142.25</p>\n<p>STEERS<br />\n891lbs @ 142.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10011,2676,'_et_pb_truncate_post_date','2020-11-19 02:27:08'),(10012,2676,'_et_pb_old_content',''),(10014,2676,'_et_pb_built_for_post_type','page'),(10015,2676,'_et_pb_ab_subjects',''),(10016,2676,'_et_pb_enable_shortcode_tracking',''),(10017,2676,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2676\" /]'),(10018,2676,'_et_pb_custom_css',''),(10019,2676,'_et_pb_gutter_width','3'),(10020,2676,'_et_builder_version','VB|Divi|4.4.4'),(10021,2676,'_et_pb_show_page_creation','off'),(10022,2676,'_wp_old_slug','february-11-2020-market-report'),(10023,2676,'_wp_old_slug','march-17th-2020-market-report'),(10024,2676,'_wp_old_slug','may-1th-2020-market-report-2'),(10025,2676,'_wp_old_slug','july-21st-2020-market-report-2'),(10027,2676,'_dp_original','2650'),(10028,2676,'_edit_lock','1605724705:2'),(10029,2676,'_edit_last','2'),(10031,2676,'_wp_old_slug','november-10th-2020-market-report'),(10034,2684,'_wp_attached_file','2020/11/Tuesday-November-24th-Feeder-Cattle-Consignments.pdf'),(10035,2684,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"Tuesday-November-24th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Tuesday-November-24th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"Tuesday-November-24th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"Tuesday-November-24th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10038,2697,'_thumbnail_id','786'),(10039,2697,'_et_post_bg_color','#ffffff'),(10040,2697,'_et_post_bg_layout','light'),(10041,2697,'_et_pb_show_title','on'),(10042,2697,'_et_pb_post_hide_nav','default'),(10043,2697,'_et_pb_page_layout','et_right_sidebar'),(10044,2697,'_et_pb_side_nav','off'),(10045,2697,'_et_pb_use_builder','on'),(10046,2697,'_et_pb_first_image',''),(10047,2697,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">November 24th, 2020, 1228 hd; last weeks sale 3037 hd; a year ago 888 hd. Compared to last week&#8217;s market feeder cattle weighing 650lbs &amp; down sold steady &amp; 650 lbs &amp; up-sold $2-$4 lower. Slaughter Cows &amp; Bulls sold $2-$4 lower. Buyers were very active with it being a holiday week. Happy Thanksgiving! Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$201.00</p>\n<p>400-500<br />\n$165.00-$189.00</p>\n<p>500-600<br />\n$150.00-$168.00</p>\n<p>600-700<br />\n$135.00-$160.00</p>\n<p>700-800<br />\n$125.00-$140.00</p>\n<p>800-900<br />\n$125.00-$134.00</p>\n<p>900-1000<br />\n$120.00-$124.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$158.00</p>\n<p>400-500<br />\n$133.00-$149.00</p>\n<p>500-600<br />\n$125.00-$147.00</p>\n<p>600-700<br />\n$120.00-$135.00</p>\n<p>700-800<br />\n$117.00-$127.85Â </p>\n<p>800-900<br />\n$116.00-$120.00</p>\n<p>900-1000<br />\n$110.00-$113.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$54.00 &#8211; $63.00</p>\n<p>Medium Yield<br />\n$44.00 &#8211; $53.00</p>\n<p>Low Yield<br />\n$32.00 &#8211; $44.00</p>\n<p>Bulls<br />\n$60.00 &#8211; $83.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n771lbs @ 127.85</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10048,2697,'_et_pb_truncate_post_date','2020-12-04 23:43:19'),(10049,2697,'_et_pb_old_content',''),(10051,2697,'_et_pb_built_for_post_type','page'),(10052,2697,'_et_pb_ab_subjects',''),(10053,2697,'_et_pb_enable_shortcode_tracking',''),(10054,2697,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2697\" /]'),(10055,2697,'_et_pb_custom_css',''),(10056,2697,'_et_pb_gutter_width','3'),(10057,2697,'_et_builder_version','VB|Divi|4.4.4'),(10058,2697,'_et_pb_show_page_creation','off'),(10059,2697,'_wp_old_slug','february-11-2020-market-report'),(10060,2697,'_wp_old_slug','march-17th-2020-market-report'),(10061,2697,'_wp_old_slug','may-1th-2020-market-report-2'),(10062,2697,'_wp_old_slug','july-21st-2020-market-report-2'),(10063,2697,'_wp_old_slug','november-10th-2020-market-report'),(10065,2697,'_dp_original','2676'),(10066,2697,'_edit_lock','1606319058:2'),(10067,2697,'_edit_last','2'),(10071,2704,'_wp_attached_file','2020/11/2020-SMS-Fall-Sale-Order.xlsx'),(10072,2707,'_wp_attached_file','2020/11/Tuesday-Decemeber-1st-Feeder-Cattle-Consignments.pdf'),(10073,2707,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"Tuesday-Decemeber-1st-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Tuesday-Decemeber-1st-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"Tuesday-Decemeber-1st-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"Tuesday-Decemeber-1st-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10075,2712,'_thumbnail_id','786'),(10076,2712,'_et_post_bg_color','#ffffff'),(10077,2712,'_et_post_bg_layout','light'),(10078,2712,'_et_pb_show_title','on'),(10079,2712,'_et_pb_post_hide_nav','default'),(10080,2712,'_et_pb_page_layout','et_right_sidebar'),(10081,2712,'_et_pb_side_nav','off'),(10082,2712,'_et_pb_use_builder','on'),(10083,2712,'_et_pb_first_image',''),(10084,2712,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">December 1st, 2020,Â 3691 hd; last weeks sale 1228 hd; a year ago 2229hd. Compared to the last two week&#8217;s market feeder cattle sold steady &#8211; $2 lower. Slaughter Cows &amp; Bulls sold fully steady. Â Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$198.00</p>\n<p>400-500<br />\n$150.00-$179.00</p>\n<p>500-600<br />\n$145.00-$168.00</p>\n<p>600-700<br />\n$133.00-$154.50</p>\n<p>700-800<br />\n$127.00-$149.75</p>\n<p>800-900<br />\n$124.00-$146.50</p>\n<p>900-1000<br />\n$117.00-$135.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$159.00</p>\n<p>400-500<br />\n$138.00-$158.00</p>\n<p>500-600<br />\n$124.00-$144.25</p>\n<p>600-700<br />\n$120.00-$145.25</p>\n<p>700-800<br />\n$120.00-$143.00Â </p>\n<p>800-900<br />\n$105.00-$120.50</p>\n<p>900-1000<br />\n$101.00-$108.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$53.00 &#8211; $66.00</p>\n<p>Medium Yield<br />\n$53.00 &#8211; $61.00</p>\n<p>Low Yield<br />\n$47.00 &#8211; $52.00</p>\n<p>Fat CowsÂ <br />\n$58.00 &#8211; $66.00</p>\n<p>Bulls<br />\n$60.00 &#8211; $83.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n692lbs @ 140.00</p>\n<p>HEFIERS<br />\n677lbs @ 141.25</p>\n<p>HEIFERS<br />\n693lbs @ 140.75</p>\n<p>HEIFERS<br />\n762lbs @ 136.00</p>\n<p>HEIFERS<br />\n787lbs @ 134.00</p>\n<p>STEERS<br />\n693lbs @ 152.00</p>\n<p>STEERS<br />\n726lbs @ 147.50</p>\n<p>STEERS<br />\n908lbs @ 135.00</p>\n<p>STEERS<br />\n944lbs @ 134.00</p>\n<p>STEERS<br />\n977lbs @ 133.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10085,2712,'_et_pb_truncate_post_date','2020-12-04 23:43:19'),(10086,2712,'_et_pb_old_content',''),(10088,2712,'_et_pb_built_for_post_type','page'),(10089,2712,'_et_pb_ab_subjects',''),(10090,2712,'_et_pb_enable_shortcode_tracking',''),(10091,2712,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2712\" /]'),(10092,2712,'_et_pb_custom_css',''),(10093,2712,'_et_pb_gutter_width','3'),(10094,2712,'_et_builder_version','VB|Divi|4.4.4'),(10095,2712,'_et_pb_show_page_creation','off'),(10096,2712,'_wp_old_slug','february-11-2020-market-report'),(10097,2712,'_wp_old_slug','march-17th-2020-market-report'),(10098,2712,'_wp_old_slug','may-1th-2020-market-report-2'),(10099,2712,'_wp_old_slug','july-21st-2020-market-report-2'),(10100,2712,'_wp_old_slug','november-10th-2020-market-report'),(10103,2712,'_dp_original','2697'),(10104,2712,'_edit_lock','1606960789:2'),(10105,2712,'_edit_last','2'),(10107,2722,'_wp_attached_file','2020/12/Tuesday-Decemeber-8th-Feeder-Cattle-Consignments.pdf'),(10108,2722,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"Tuesday-Decemeber-8th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Tuesday-Decemeber-8th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"Tuesday-Decemeber-8th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"Tuesday-Decemeber-8th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10111,2727,'_thumbnail_id','786'),(10112,2727,'_et_post_bg_color','#ffffff'),(10113,2727,'_et_post_bg_layout','light'),(10114,2727,'_et_pb_show_title','on'),(10115,2727,'_et_pb_post_hide_nav','default'),(10116,2727,'_et_pb_page_layout','et_right_sidebar'),(10117,2727,'_et_pb_side_nav','off'),(10118,2727,'_et_pb_use_builder','on'),(10119,2727,'_et_pb_first_image',''),(10120,2727,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">December 8th, 2020,Â 4311 hd; last weeks sale 3691 hd; a year ago 3691hd. Feeder steers sold steady-$3 lower and steady-$3 higher in spots. Feeder heifers sold steady-$2 higher. Heifers weighing 550lbs &amp; down sold steady-$2 higher and heifers weighing 600lbs &amp; up-sold steady-$5 lower. Slaughter Cows &amp; Bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$210.00</p>\n<p>400-500<br />\n$150.00-$180.00</p>\n<p>500-600<br />\n$140.00-$171.00</p>\n<p>600-700<br />\n$130.00-$157.00</p>\n<p>700-800<br />\n$129.00-$145.00</p>\n<p>800-900<br />\n$121.00-$144.25</p>\n<p>900-1000<br />\n$117.00-$138.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$149.00-$177.00</p>\n<p>400-500<br />\n$145.00-$174.00</p>\n<p>500-600<br />\n$120.00-$150.00</p>\n<p>600-700<br />\n$117.50-$140.00</p>\n<p>700-800<br />\n$112.00-$142.50Â </p>\n<p>800-900<br />\n$110.00-$120.00</p>\n<p>900-1000<br />\nNA</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$53.00 &#8211; $66.00</p>\n<p>Medium Yield<br />\n$53.00 &#8211; $61.00</p>\n<p>Low Yield<br />\n$47.00 &#8211; $52.00</p>\n<p>Fat CowsÂ <br />\n$58.00 &#8211; $66.00</p>\n<p>Bulls<br />\n$60.00 &#8211; $83.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n706lbs @ 142.50</p>\n<p>STEERS<br />\n889lbs @ 137.10</p>\n<p>STEERS<br />\n908lbs @ 138.00</p>\n<p>STEERS<br />\n886lbs @ 132.60</p>\n<p>STEERS<br />\n832lbs @ 133.75</p>\n<p>STEERS<br />\n858lbs @ 136.50</p>\n<p>STEERS<br />\n762lbs @ 135.10</p>\n<p>STEERS<br />\n802lbs @ 135.25</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10121,2727,'_et_pb_truncate_post_date','2021-01-15 01:14:05'),(10122,2727,'_et_pb_old_content',''),(10124,2727,'_et_pb_built_for_post_type','page'),(10125,2727,'_et_pb_ab_subjects',''),(10126,2727,'_et_pb_enable_shortcode_tracking',''),(10127,2727,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2727\" /]'),(10128,2727,'_et_pb_custom_css',''),(10129,2727,'_et_pb_gutter_width','3'),(10130,2727,'_et_builder_version','VB|Divi|4.4.4'),(10131,2727,'_et_pb_show_page_creation','off'),(10132,2727,'_wp_old_slug','february-11-2020-market-report'),(10133,2727,'_wp_old_slug','march-17th-2020-market-report'),(10134,2727,'_wp_old_slug','may-1th-2020-market-report-2'),(10135,2727,'_wp_old_slug','july-21st-2020-market-report-2'),(10136,2727,'_wp_old_slug','november-10th-2020-market-report'),(10138,2727,'_dp_original','2712'),(10139,2727,'_edit_lock','1607641566:2'),(10140,2727,'_edit_last','2'),(10144,2742,'_wp_attached_file','2020/12/Tuesday-Decemeber-15th-Feeder-Cattle-Consignments.pdf');
INSERT INTO `b78GM7Ml_postmeta` VALUES (10145,2742,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:57:\"Tuesday-Decemeber-15th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:65:\"Tuesday-Decemeber-15th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:66:\"Tuesday-Decemeber-15th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:65:\"Tuesday-Decemeber-15th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10148,2751,'_thumbnail_id','786'),(10149,2751,'_et_post_bg_color','#ffffff'),(10150,2751,'_et_post_bg_layout','light'),(10151,2751,'_et_pb_show_title','on'),(10152,2751,'_et_pb_post_hide_nav','default'),(10153,2751,'_et_pb_page_layout','et_right_sidebar'),(10154,2751,'_et_pb_side_nav','off'),(10155,2751,'_et_pb_use_builder','on'),(10156,2751,'_et_pb_first_image',''),(10157,2751,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">December 15th, 2020, 2544 hd; last weeks sale 4311 hd; a year ago 1400hd. Compared to last week steers sold steady-$3 higher. Heifers sold steady-$5 lower &amp; up to $5 higher in spots. Slaughter Cows &amp; Bulls sold $1-$2 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$205.00</p>\n<p>400-500<br />\n$150.00-$182.00</p>\n<p>500-600<br />\n$145.00-$174.00</p>\n<p>600-700<br />\n$132.00-$157.50</p>\n<p>700-800<br />\n$130.00-$146.25</p>\n<p>800-900<br />\n$120.00-$146.00</p>\n<p>900-1000<br />\n$109.00-$123.35</p>\n<p>1140<br />\n$104.50</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$168.00</p>\n<p>400-500<br />\n$140.00-$163.00</p>\n<p>500-600<br />\n$127.00-$147.00</p>\n<p>600-700<br />\n$118.00-$136.75</p>\n<p>700-800<br />\n$118.00-$138.00Â </p>\n<p>800-900<br />\n$113.00-$122.60</p>\n<p>900-1000<br />\n$106.00-$120.00</p>\n<p>1040<br />\n$104.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$54.00 &#8211; $61.00</p>\n<p>Medium Yield<br />\n$47.00 &#8211; $53.00</p>\n<p>Low Yield<br />\n$37.00 &#8211; $46.00</p>\n<p>Fat Cows<br />\n$62.00 &#8211; $70.00</p>\n<p>Bulls<br />\n$70.00 &#8211; $90.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>HEIFERS<br />\n877lbs @ 122.60</p>\n<p>STEERS<br />\n887lbs @ 138.10</p>\n<p>STEERS<br />\n579lbs @ 159.25</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10158,2751,'_et_pb_truncate_post_date','2021-01-15 01:14:05'),(10159,2751,'_et_pb_old_content',''),(10161,2751,'_et_pb_built_for_post_type','page'),(10162,2751,'_et_pb_ab_subjects',''),(10163,2751,'_et_pb_enable_shortcode_tracking',''),(10164,2751,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2751\" /]'),(10165,2751,'_et_pb_custom_css',''),(10166,2751,'_et_pb_gutter_width','3'),(10167,2751,'_et_builder_version','VB|Divi|4.4.4'),(10168,2751,'_et_pb_show_page_creation','off'),(10169,2751,'_wp_old_slug','february-11-2020-market-report'),(10170,2751,'_wp_old_slug','march-17th-2020-market-report'),(10171,2751,'_wp_old_slug','may-1th-2020-market-report-2'),(10172,2751,'_wp_old_slug','july-21st-2020-market-report-2'),(10173,2751,'_wp_old_slug','november-10th-2020-market-report'),(10175,2751,'_dp_original','2727'),(10176,2751,'_edit_lock','1608136359:2'),(10177,2751,'_edit_last','2'),(10184,2774,'_wp_attached_file','2020/12/Tuesday-December-22nd-Feeder-Cattle-Consignments.pdf'),(10185,2774,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"Tuesday-December-22nd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Tuesday-December-22nd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"Tuesday-December-22nd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"Tuesday-December-22nd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10186,2776,'_thumbnail_id','786'),(10187,2776,'_et_post_bg_color','#ffffff'),(10188,2776,'_et_post_bg_layout','light'),(10189,2776,'_et_pb_show_title','on'),(10190,2776,'_et_pb_post_hide_nav','default'),(10191,2776,'_et_pb_page_layout','et_right_sidebar'),(10192,2776,'_et_pb_side_nav','off'),(10193,2776,'_et_pb_use_builder','on'),(10194,2776,'_et_pb_first_image',''),(10195,2776,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">December 22nd, 2020, 894 hd; last weeks sale 2544 hd; a year ago N/A. Compared to last week in a limited test, Feeders steers under 500lbs sold $2-$5 higher, over 500lbs sold steady. Feeder heifers sold steady. No sale on December 29th due to holiday. Merry Christmas &amp; Happy New Year. Special calf &amp; yearling sale January 5, 2021. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$161.00-$185.00</p>\n<p>400-500<br />\n$153.00-$185.00</p>\n<p>500-600<br />\n$139.50-$164.00</p>\n<p>600-700<br />\n$131.00-$150.00</p>\n<p>700-800<br />\n$130.00-$147.50</p>\n<p>800-900<br />\n$100.00-$110.00</p>\n<p>900-1000<br />\n$95.00-$110.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$139.00-$147.00</p>\n<p>400-500<br />\n$130.00-$150.00</p>\n<p>500-600<br />\n$121.00-$142.50</p>\n<p>600-700<br />\n$110.00-$130.50</p>\n<p>700-800<br />\n$110.00-$123.25Â </p>\n<p>800-900<br />\n$103.00-$119.75</p>\n<p>900-1000<br />\n$88.00-$100.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$55.00 &#8211; $65.00</p>\n<p>Medium Yield<br />\n$42.00 &#8211; $54.00</p>\n<p>Low Yield<br />\n$20.00 &#8211; $38.00</p>\n<p>Bulls<br />\n$55.00 &#8211; $85.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\nNo-load lots this week!Â </div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10196,2776,'_et_pb_truncate_post_date','2021-01-15 01:14:04'),(10197,2776,'_et_pb_old_content',''),(10199,2776,'_et_pb_built_for_post_type','page'),(10200,2776,'_et_pb_ab_subjects',''),(10201,2776,'_et_pb_enable_shortcode_tracking',''),(10202,2776,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2776\" /]'),(10203,2776,'_et_pb_custom_css',''),(10204,2776,'_et_pb_gutter_width','3'),(10205,2776,'_et_builder_version','VB|Divi|4.4.4'),(10206,2776,'_et_pb_show_page_creation','off'),(10207,2776,'_wp_old_slug','february-11-2020-market-report'),(10208,2776,'_wp_old_slug','march-17th-2020-market-report'),(10209,2776,'_wp_old_slug','may-1th-2020-market-report-2'),(10210,2776,'_wp_old_slug','july-21st-2020-market-report-2'),(10211,2776,'_wp_old_slug','november-10th-2020-market-report'),(10213,2776,'_dp_original','2751'),(10214,2776,'_edit_lock','1608745962:2'),(10215,2776,'_edit_last','2'),(10217,2787,'_wp_attached_file','2021/01/Tuesday-January-5th-Feeder-Cattle-Consignments.pdf'),(10218,2787,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"Tuesday-January-5th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Tuesday-January-5th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"Tuesday-January-5th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Tuesday-January-5th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10220,2795,'_thumbnail_id','786'),(10221,2795,'_et_post_bg_color','#ffffff'),(10222,2795,'_et_post_bg_layout','light'),(10223,2795,'_et_pb_show_title','on'),(10224,2795,'_et_pb_post_hide_nav','default'),(10225,2795,'_et_pb_page_layout','et_right_sidebar'),(10226,2795,'_et_pb_side_nav','off'),(10227,2795,'_et_pb_use_builder','on'),(10228,2795,'_et_pb_first_image',''),(10229,2795,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_3 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">January 5th, 2021, 3568 hd; 2 weeks ago 894 hd; a year ago 3765. Feeders cattle of all classes sold steady as the feeder board continues to be volatile. There was good buyer demand. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_10\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$187.00</p>\n<p>400-500<br />\n$155.00-$195.00</p>\n<p>500-600<br />\n$140.00-$175.50</p>\n<p>600-700<br />\n$137.00-$153.00</p>\n<p>700-800<br />\n$130.00-$142.85</p>\n<p>800-900<br />\n$120.00-$135.25</p>\n<p>900-1000<br />\n$114.00-$128.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$145.00-$175.00</p>\n<p>400-500<br />\n$140.00-$170.00</p>\n<p>500-600<br />\n$125.00-$145.50</p>\n<p>600-700<br />\n$117.00-$136.00</p>\n<p>700-800<br />\n$117.00-$132.00</p>\n<p>800-900<br />\n$116.85-$117.75</p>\n<p>900-1000<br />\n$85.00-$104.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$55.00 &#8211; $65.00</p>\n<p>Medium Yield<br />\n$47.00 &#8211; $54.00</p>\n<p>Low Yield<br />\n$30.00 &#8211; $44.00</p>\n<p>Bulls<br />\n$65.00 &#8211; $87.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Heifers<br />\n676lbs @ 136</p>\n<p>Heifers<br />\n690lbs @ 129</p>\n<p>Heifers<br />\n754lbs @ 127.50</p>\n<p>Steers<br />\n812lbs @ 135.25</p>\n<p>Steers<br />\n874lbs @ 131.60</p>\n<p>Steers<br />\n954lbs @ 128</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_11\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_3_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_3 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10230,2795,'_et_pb_truncate_post_date','2021-01-27 17:02:14'),(10231,2795,'_et_pb_old_content',''),(10233,2795,'_et_pb_built_for_post_type','page'),(10234,2795,'_et_pb_ab_subjects',''),(10235,2795,'_et_pb_enable_shortcode_tracking',''),(10236,2795,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2795\" /]'),(10237,2795,'_et_pb_custom_css',''),(10238,2795,'_et_pb_gutter_width','3'),(10239,2795,'_et_builder_version','VB|Divi|4.4.4'),(10240,2795,'_et_pb_show_page_creation','off'),(10241,2795,'_wp_old_slug','february-11-2020-market-report'),(10242,2795,'_wp_old_slug','march-17th-2020-market-report'),(10243,2795,'_wp_old_slug','may-1th-2020-market-report-2'),(10244,2795,'_wp_old_slug','july-21st-2020-market-report-2'),(10245,2795,'_wp_old_slug','november-10th-2020-market-report'),(10247,2795,'_dp_original','2776'),(10248,2795,'_edit_lock','1609951176:2'),(10249,2795,'_edit_last','2'),(10252,2808,'_wp_attached_file','2021/01/Tuesday-January-12th-Feeder-Cattle-Consignments.pdf'),(10253,2808,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-January-12th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-January-12th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-January-12th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-January-12th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10257,2822,'_thumbnail_id','786'),(10258,2822,'_et_post_bg_color','#ffffff'),(10259,2822,'_et_post_bg_layout','light'),(10260,2822,'_et_pb_show_title','on'),(10261,2822,'_et_pb_post_hide_nav','default'),(10262,2822,'_et_pb_page_layout','et_right_sidebar'),(10263,2822,'_et_pb_side_nav','off'),(10264,2822,'_et_pb_use_builder','on'),(10265,2822,'_et_pb_first_image',''),(10266,2822,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">January 12th, 2021, 3471 hd; last week 3568 hd; a year ago 1135. Feeder cattle weighing 635lbs &amp; down sold steady &#8211; $5 higher &amp; 650lbs &amp; up-sold steady &#8211; $5 lower. As 2021 corn contracts keep increasing. Slaughter Cows &amp; Bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$195.00</p>\n<p>400-500<br />\n$160.00-$193.25</p>\n<p>500-600<br />\n$150.00-$180.00</p>\n<p>600-700<br />\n$130.00-$157.00</p>\n<p>700-800<br />\n$120.00-$143.50</p>\n<p>800-900<br />\n$115.00-$130.25</p>\n<p>900-1000<br />\n$110.00-$120.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$168.00</p>\n<p>400-500<br />\n$130.00-$162.00</p>\n<p>500-600<br />\n$120.00-$154.00</p>\n<p>600-700<br />\n$115.00-$135.00</p>\n<p>700-800<br />\n$115.00-$134.00</p>\n<p>800-900<br />\n$113.00-$122.00</p>\n<p>900-1000<br />\n$111.00-$114.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>Fat<br />\n$56.00 &#8211; $65.00</p>\n<p>Medium Yield<br />\n$48.00 &#8211; $56.00</p>\n<p>Low Yield<br />\n$37.00 &#8211; $47.00</p>\n<p>Bulls<br />\n$60.00 &#8211; $91.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Heifers<br />\n780lbs @ 130</p>\n<p>Steers<br />\n830lbs @ 130.60</p>\n<p>Steers<br />\n743lbs @ 131.60</p>\n<p>Steers<br />\n758lbs @ 137.10</p>\n<p>Steers<br />\n869lbs @ 126.85</p>\n<p>Steers<br />\n723lbs @ 143.60</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10267,2822,'_et_pb_truncate_post_date','2021-01-27 17:02:14'),(10268,2822,'_et_pb_old_content',''),(10270,2822,'_et_pb_built_for_post_type','page'),(10271,2822,'_et_pb_ab_subjects',''),(10272,2822,'_et_pb_enable_shortcode_tracking',''),(10273,2822,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2822\" /]'),(10274,2822,'_et_pb_custom_css',''),(10275,2822,'_et_pb_gutter_width','3'),(10276,2822,'_et_builder_version','VB|Divi|4.4.4'),(10277,2822,'_et_pb_show_page_creation','off'),(10278,2822,'_wp_old_slug','february-11-2020-market-report'),(10279,2822,'_wp_old_slug','march-17th-2020-market-report'),(10280,2822,'_wp_old_slug','may-1th-2020-market-report-2'),(10281,2822,'_wp_old_slug','july-21st-2020-market-report-2'),(10282,2822,'_wp_old_slug','november-10th-2020-market-report'),(10284,2822,'_dp_original','2795'),(10285,2822,'_edit_lock','1610558410:2'),(10286,2822,'_edit_last','2'),(10290,2833,'_wp_attached_file','2021/01/Tuesday-January-19th-Feeder-Cattle-Consignments.pdf'),(10291,2833,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-January-19th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-January-19th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-January-19th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-January-19th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10296,2843,'_thumbnail_id','786'),(10297,2843,'_et_post_bg_color','#ffffff'),(10298,2843,'_et_post_bg_layout','light'),(10299,2843,'_et_pb_show_title','on'),(10300,2843,'_et_pb_post_hide_nav','default'),(10301,2843,'_et_pb_page_layout','et_right_sidebar'),(10302,2843,'_et_pb_side_nav','off'),(10303,2843,'_et_pb_use_builder','on'),(10304,2843,'_et_pb_first_image',''),(10305,2843,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">January 19th, 2021, 3392 hd; last week 3471 hd; a year ago 2475. All classes of feeder cattle sold steady-$5 higher. Slaughter Cows &amp; Bulls sold steady-$1 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$196.00</p>\n<p>400-500<br />\n$155.00-$185.00</p>\n<p>500-600<br />\n$145.00-$175.00</p>\n<p>600-700<br />\n$132.00-$148.50</p>\n<p>700-800<br />\n$127.00-$147.00</p>\n<p>800-900<br />\n$120.00-$131.85</p>\n<p>900-1000<br />\n$112.00-$123.85</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$180.00</p>\n<p>400-500<br />\n$140.00-$167.50</p>\n<p>500-600<br />\n$127.00-$149.00</p>\n<p>600-700<br />\n$120.00-$139.50</p>\n<p>700-800<br />\n$118.00-$134.00</p>\n<p>800-900<br />\n$115.00-$132.75</p>\n<p>900-1000<br />\n$95.00-$110.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$54.00 &#8211; $60.00</p>\n<p>Medium Yield<br />\n$47.00 &#8211; $53.00</p>\n<p>Low Yield<br />\n$30.00 &#8211; $46.00</p>\n<p>Bulls<br />\n$62.00 &#8211; $88.00</p>\n<p>Bulls Low YieldÂ <br />\n$38.00 &#8211; $55.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Heifers<br />\n796lbs @ 132.50</p>\n<p>Steers<br />\n894lbs @ 131.85</p>\n<p>Steers<br />\n762lbs @ 134.85</p>\n<p>Steers<br />\n941lbs @ 123.35</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10306,2843,'_et_pb_truncate_post_date','2021-01-27 17:02:14'),(10307,2843,'_et_pb_old_content',''),(10309,2843,'_et_pb_built_for_post_type','page'),(10310,2843,'_et_pb_ab_subjects',''),(10311,2843,'_et_pb_enable_shortcode_tracking',''),(10312,2843,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2843\" /]'),(10313,2843,'_et_pb_custom_css',''),(10314,2843,'_et_pb_gutter_width','3'),(10315,2843,'_et_builder_version','VB|Divi|4.4.4'),(10316,2843,'_et_pb_show_page_creation','off'),(10317,2843,'_wp_old_slug','february-11-2020-market-report'),(10318,2843,'_wp_old_slug','march-17th-2020-market-report'),(10319,2843,'_wp_old_slug','may-1th-2020-market-report-2'),(10320,2843,'_wp_old_slug','july-21st-2020-market-report-2'),(10321,2843,'_wp_old_slug','november-10th-2020-market-report'),(10323,2843,'_dp_original','2822'),(10324,2843,'_edit_lock','1611164614:2'),(10325,2843,'_edit_last','2'),(10328,2853,'_wp_attached_file','2021/01/Tuesday-January-26th-Feeder-Cattle-Consignments.pdf'),(10329,2853,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-January-26th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-January-26th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-January-26th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-January-26th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10330,2857,'_thumbnail_id','786'),(10331,2857,'_et_post_bg_color','#ffffff'),(10332,2857,'_et_post_bg_layout','light'),(10333,2857,'_et_pb_show_title','on'),(10334,2857,'_et_pb_post_hide_nav','default'),(10335,2857,'_et_pb_page_layout','et_right_sidebar'),(10336,2857,'_et_pb_side_nav','off'),(10337,2857,'_et_pb_use_builder','on'),(10338,2857,'_et_pb_first_image',''),(10339,2857,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">January 26th, 2021, 1504 hd; last week 3392 hd; a year ago 1595. All classes of feeder cattle sold steady-$5 higher with very good buyer activity. Slaughter Cows &amp; Bulls sold steady $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$165.00-$189.00</p>\n<p>400-500<br />\n$160.00-$188.75</p>\n<p>500-600<br />\n$150.00-$175.50</p>\n<p>600-700<br />\n$140.00-$157.00</p>\n<p>700-800<br />\n$130.00-$148.00</p>\n<p>800-900<br />\n$120.00-$133.10</p>\n<p>900-1000<br />\n$120.00-$131.10</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$160.00</p>\n<p>400-500<br />\n$130.00-$156.75</p>\n<p>500-600<br />\n$127.00-$150.00</p>\n<p>600-700<br />\n$122.00-$138.25</p>\n<p>700-800<br />\n$118.00-$127.00</p>\n<p>800-900<br />\n$110.00-$118.00</p>\n<p>900-1000<br />\n$90.00-$106.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$55.00 &#8211; $62.00</p>\n<p>Medium Yield<br />\n$48.00 &#8211; $54.00</p>\n<p>Low Yield<br />\n$37.00 &#8211; $47.00</p>\n<p>Bulls<br />\n$63.00 &#8211; $88.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n545lbs @ 174.75</p>\n<p>Steers<br />\n800lbs @ 133.10</p>\n<p>Steers<br />\n915lbs @ 131.10</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10340,2857,'_et_pb_truncate_post_date','2021-01-27 17:02:14'),(10341,2857,'_et_pb_old_content',''),(10343,2857,'_et_pb_built_for_post_type','page'),(10344,2857,'_et_pb_ab_subjects',''),(10345,2857,'_et_pb_enable_shortcode_tracking',''),(10346,2857,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2857\" /]'),(10347,2857,'_et_pb_custom_css',''),(10348,2857,'_et_pb_gutter_width','3'),(10349,2857,'_et_builder_version','VB|Divi|4.4.4'),(10350,2857,'_et_pb_show_page_creation','off'),(10351,2857,'_wp_old_slug','february-11-2020-market-report'),(10352,2857,'_wp_old_slug','march-17th-2020-market-report'),(10353,2857,'_wp_old_slug','may-1th-2020-market-report-2'),(10354,2857,'_wp_old_slug','july-21st-2020-market-report-2'),(10355,2857,'_wp_old_slug','november-10th-2020-market-report'),(10357,2857,'_dp_original','2843'),(10358,2857,'_edit_lock','1611763920:2'),(10359,2857,'_edit_last','2'),(10362,2863,'_wp_attached_file','2021/02/Tuesday-February-2nd-Feeder-Cattle-Consignments.pdf'),(10363,2863,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-February-2nd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-February-2nd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-February-2nd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-February-2nd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10366,2870,'_thumbnail_id','786'),(10367,2870,'_et_post_bg_color','#ffffff'),(10368,2870,'_et_post_bg_layout','light'),(10369,2870,'_et_pb_show_title','on'),(10370,2870,'_et_pb_post_hide_nav','default'),(10371,2870,'_et_pb_page_layout','et_right_sidebar'),(10372,2870,'_et_pb_side_nav','off'),(10373,2870,'_et_pb_use_builder','on'),(10374,2870,'_et_pb_first_image',''),(10375,2870,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">February 2nd, 2021, 2174 hd; last week 1504 hd; a year ago 1867. Feeder cattle sold $3-$6 higher with very good buyer attendance. Slaughter Cows &amp; Bulls sold $3-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$188.00</p>\n<p>400-500<br />\n$160.00-$184.00</p>\n<p>500-600<br />\n$150.00-$181.00</p>\n<p>600-700<br />\n$137.00-$153.00</p>\n<p>700-800<br />\n$128.00-$144.75</p>\n<p>800-900<br />\n$120.00-$134.60</p>\n<p>900-1000<br />\n$120.00-$129.75</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$170.00</p>\n<p>400-500<br />\n$135.00-$161.00</p>\n<p>500-600<br />\n$124.00-$139.75</p>\n<p>600-700<br />\n$124.00-$138.75</p>\n<p>700-800<br />\n$120.00-$135.50</p>\n<p>800-900<br />\n$113.00-$120.00</p>\n<p>900-1000<br />\n$90.00-$104.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$61.00 &#8211; $72.00</p>\n<p>Medium Yield<br />\n$52.00 &#8211; $61.00</p>\n<p>Low Yield<br />\n$45.00 &#8211; $52.00</p>\n<p>Bulls<br />\n$75.00 &#8211; $94.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n792lbs @ 138.00</p>\n<p>Steers<br />\n818lbs @ 133.10</p>\n<p>Steers<br />\n908lbs @ 129.75</p>\n<p>Heifers<br />\n740lbs @ 135.50</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10376,2870,'_et_pb_truncate_post_date','2021-02-04 23:21:55'),(10377,2870,'_et_pb_old_content',''),(10379,2870,'_et_pb_built_for_post_type','page'),(10380,2870,'_et_pb_ab_subjects',''),(10381,2870,'_et_pb_enable_shortcode_tracking',''),(10382,2870,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2870\" /]'),(10383,2870,'_et_pb_custom_css',''),(10384,2870,'_et_pb_gutter_width','3'),(10385,2870,'_et_builder_version','VB|Divi|4.4.4'),(10386,2870,'_et_pb_show_page_creation','off'),(10387,2870,'_wp_old_slug','february-11-2020-market-report'),(10388,2870,'_wp_old_slug','march-17th-2020-market-report'),(10389,2870,'_wp_old_slug','may-1th-2020-market-report-2'),(10390,2870,'_wp_old_slug','july-21st-2020-market-report-2'),(10391,2870,'_wp_old_slug','november-10th-2020-market-report'),(10394,2870,'_dp_original','2857'),(10395,2870,'_edit_lock','1612391352:2'),(10396,2870,'_edit_last','2'),(10397,2875,'_wp_attached_file','2021/02/Anstine-Estate-Auction-Feb-2021.pdf'),(10398,2875,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:39:\"Anstine-Estate-Auction-Feb-2021-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Anstine-Estate-Auction-Feb-2021-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Anstine-Estate-Auction-Feb-2021-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Anstine-Estate-Auction-Feb-2021-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10400,2881,'_wp_attached_file','2021/02/Tuesday-February-9th-Feeder-Cattle-Consignments.pdf'),(10401,2881,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-February-9th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-February-9th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-February-9th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-February-9th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10405,2891,'_thumbnail_id','786'),(10406,2891,'_et_post_bg_color','#ffffff'),(10407,2891,'_et_post_bg_layout','light'),(10408,2891,'_et_pb_show_title','on'),(10409,2891,'_et_pb_post_hide_nav','default'),(10410,2891,'_et_pb_page_layout','et_right_sidebar'),(10411,2891,'_et_pb_side_nav','off'),(10412,2891,'_et_pb_use_builder','on'),(10413,2891,'_et_pb_first_image',''),(10414,2891,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">February 9th, 2021, 1955 hd; last week 2174 hd; a year ago 3389. Compared to last week steers sold steady except for 700-775lb steers selling up to $5 higher. Heifers sold steady-$6 higher w/ the advantage on those weighing 450-625lbs. Several nice strings, of home-raised cattle, were sold along with good buyer activity. Slaughter Cows &amp; Bulls sold steady &#8211; $2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$175.00</p>\n<p>400-500<br />\n$160.00-$181.75</p>\n<p>500-600<br />\n$150.00-$180.50</p>\n<p>600-700<br />\n$140.00-$154.00</p>\n<p>700-800<br />\n$130.00-$149.00</p>\n<p>800-900<br />\n$123.00-$132.85</p>\n<p>900-1000<br />\n$117.00-$122.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$161.00</p>\n<p>400-500<br />\n$140.00-$158.00</p>\n<p>500-600<br />\n$133.00-$157.10</p>\n<p>600-700<br />\n$130.00-$146.75</p>\n<p>700-800<br />\n$122.00-$133.00</p>\n<p>800-900<br />\n$118.00-$127.50</p>\n<p>900-1000<br />\n$101.00-$107.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$62.00 &#8211; $73.00</p>\n<p>Medium Yield<br />\n$53.00 &#8211; $61.00</p>\n<p>Low Yield<br />\n$41.00 &#8211; $52.00</p>\n<p>Bulls<br />\n$67.00 &#8211; $84.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n721lbs @ 149.00</p>\n<p>Steers<br />\n745lbs @ 145.00</p>\n<p>Steers<br />\n629lbs @ 152.35</p>\n<p>Steers<br />\n822lbs @ 132.85</p>\n<p>Steers<br />\n568lbs @ 165.85</p>\n<p>Steers<br />\n434lbs @ 181.75</p>\n<p>Steers<br />\n839lbs @ 129.85</p>\n<p>Heifers<br />\n542lbs @ 157.10</p>\n<p>Heifers<br />\n607lbs @ 146.75</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10415,2891,'_et_pb_truncate_post_date','2021-02-24 03:49:58'),(10416,2891,'_et_pb_old_content',''),(10418,2891,'_et_pb_built_for_post_type','page'),(10419,2891,'_et_pb_ab_subjects',''),(10420,2891,'_et_pb_enable_shortcode_tracking',''),(10421,2891,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2891\" /]'),(10422,2891,'_et_pb_custom_css',''),(10423,2891,'_et_pb_gutter_width','3'),(10424,2891,'_et_builder_version','VB|Divi|4.4.4'),(10425,2891,'_et_pb_show_page_creation','off'),(10426,2891,'_wp_old_slug','february-11-2020-market-report'),(10427,2891,'_wp_old_slug','march-17th-2020-market-report'),(10428,2891,'_wp_old_slug','may-1th-2020-market-report-2'),(10429,2891,'_wp_old_slug','july-21st-2020-market-report-2'),(10430,2891,'_wp_old_slug','november-10th-2020-market-report'),(10432,2891,'_dp_original','2870'),(10433,2891,'_edit_lock','1612975093:2'),(10434,2891,'_edit_last','2'),(10446,2925,'_wp_attached_file','2021/02/Tuesday-February-23rd-Feeder-Cattle-Consignments.pdf'),(10447,2925,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"Tuesday-February-23rd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"Tuesday-February-23rd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"Tuesday-February-23rd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"Tuesday-February-23rd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10451,2931,'_wp_attached_file','2021/02/Wagler-Real-Estate.pdf'),(10452,2931,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:26:\"Wagler-Real-Estate-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Wagler-Real-Estate-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Wagler-Real-Estate-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Wagler-Real-Estate-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10456,2937,'_wp_attached_file','2021/02/Wagler-Real-Estate-1.pdf'),(10457,2937,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:28:\"Wagler-Real-Estate-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Wagler-Real-Estate-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Wagler-Real-Estate-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Wagler-Real-Estate-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10458,2944,'_thumbnail_id','786'),(10459,2944,'_et_post_bg_color','#ffffff'),(10460,2944,'_et_post_bg_layout','light'),(10461,2944,'_et_pb_show_title','on'),(10462,2944,'_et_pb_post_hide_nav','default'),(10463,2944,'_et_pb_page_layout','et_right_sidebar'),(10464,2944,'_et_pb_side_nav','off'),(10465,2944,'_et_pb_use_builder','on'),(10466,2944,'_et_pb_first_image',''),(10467,2944,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">February 23rd, 2021,Â 4679 hd; 2 weeks ago 1955 hd; a year ago 2832hd. All classes of steers sold $3-$8 higher. Fancy heifers weighing 400-500 lbs sold up to $10 higher all other heifers sold steady-$5 higher. Slaughter Cows &amp; Bulls sold steady $2-$4 higher. Buyers were active after having a week of bad weather. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$165.00-$190.00</p>\n<p>400-500<br />\n$150.00-$190.00</p>\n<p>500-600<br />\n$145.00-$178.00</p>\n<p>600-700<br />\n$137.00-$165.00</p>\n<p>700-800<br />\n$133.00-$155.00</p>\n<p>800-900<br />\n$120.00-$140.10</p>\n<p>900-1000<br />\n$117.00-$132.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$176.00</p>\n<p>400-500<br />\n$140.00-$175.00</p>\n<p>500-600<br />\n$132.00-$158.50</p>\n<p>600-700<br />\n$127.00-$149.25</p>\n<p>700-800<br />\n$120.00-$136.50</p>\n<p>800-900<br />\n$114.00-$122.85</p>\n<p>900-1000<br />\n$100.00-$110.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$60.00 &#8211; $73.00</p>\n<p>Medium Yield<br />\n$48.00 &#8211; $59.00</p>\n<p>Low Yield<br />\n$20.00 &#8211; $47.00</p>\n<p>Bulls<br />\n$70.00 &#8211; $97.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n721lbs @ 155.00</p>\n<p>Steers<br />\n825lbs @ 137.00</p>\n<p>Steers<br />\n744lbs @ 144.75</p>\n<p>Steers<br />\n772lbs @ 142.25</p>\n<p>Steers<br />\n572lbs @ 168.00</p>\n<p>Heifers<br />\n754lbs @ 125.35</p>\n<p>Steers<br />\n740lbs @ 126.10</p>\n<p>Heifers<br />\n734lbs @ 126.35</p>\n<p>Heifers<br />\n642lbs @ 149.25</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10468,2944,'_et_pb_truncate_post_date','2021-03-15 19:24:20'),(10469,2944,'_et_pb_old_content',''),(10471,2944,'_et_pb_built_for_post_type','page'),(10472,2944,'_et_pb_ab_subjects',''),(10473,2944,'_et_pb_enable_shortcode_tracking',''),(10474,2944,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2944\" /]'),(10475,2944,'_et_pb_custom_css',''),(10476,2944,'_et_pb_gutter_width','3'),(10477,2944,'_et_builder_version','VB|Divi|4.4.4'),(10478,2944,'_et_pb_show_page_creation','off'),(10479,2944,'_wp_old_slug','february-11-2020-market-report'),(10480,2944,'_wp_old_slug','march-17th-2020-market-report'),(10481,2944,'_wp_old_slug','may-1th-2020-market-report-2'),(10482,2944,'_wp_old_slug','july-21st-2020-market-report-2'),(10483,2944,'_wp_old_slug','november-10th-2020-market-report'),(10485,2944,'_dp_original','2891'),(10486,2944,'_edit_lock','1614193067:2'),(10487,2944,'_edit_last','2'),(10490,2953,'_wp_attached_file','2021/03/Tuesday-March-2nd-Feeder-Cattle-Consignments.pdf'),(10491,2953,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"Tuesday-March-2nd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Tuesday-March-2nd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Tuesday-March-2nd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Tuesday-March-2nd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10493,2957,'_wp_attached_file','2021/03/Tuesday-March-2nd-Feeder-Cattle-Consignments-1.pdf'),(10494,2957,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"Tuesday-March-2nd-Feeder-Cattle-Consignments-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Tuesday-March-2nd-Feeder-Cattle-Consignments-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"Tuesday-March-2nd-Feeder-Cattle-Consignments-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Tuesday-March-2nd-Feeder-Cattle-Consignments-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10496,2962,'_thumbnail_id','786'),(10497,2962,'_et_post_bg_color','#ffffff'),(10498,2962,'_et_post_bg_layout','light'),(10499,2962,'_et_pb_show_title','on'),(10500,2962,'_et_pb_post_hide_nav','default'),(10501,2962,'_et_pb_page_layout','et_right_sidebar'),(10502,2962,'_et_pb_side_nav','off'),(10503,2962,'_et_pb_use_builder','on'),(10504,2962,'_et_pb_first_image',''),(10505,2962,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">March 2nd, 2021, 4271 hd;Â  last week 4679 hd; a year ago 1488hd. Steers weighing 650lbs &amp; down sold steady and in spots up to $5 higher. Steers weighing 650lbs -775 lbs sold steady-$3 lower. Steers weighing 850lbs-900lbs sold $4 lower. There was no recent comparison on steers weighing 900lbs &amp; up from previous weeks. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$195.00</p>\n<p>400-500<br />\n$160.00-$189.75</p>\n<p>500-600<br />\n$150.00-$179.50</p>\n<p>600-700<br />\n$139.00-$162.50</p>\n<p>700-800<br />\n$130.00-$147.75</p>\n<p>800-900<br />\n$120.00-$135.50</p>\n<p>900-1000<br />\n$120.00-$128.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$148.00-$170.00</p>\n<p>400-500<br />\n$140.00-$170.00</p>\n<p>500-600<br />\n$130.00-$159.75</p>\n<p>600-700<br />\n$124.00-$144.00</p>\n<p>700-800<br />\n$120.00-$137.75</p>\n<p>800-900<br />\n$115.00-$124.50</p>\n<p>900-1000<br />\n$100.00-$108.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$60200 &#8211; $75.50</p>\n<p>Medium Yield<br />\n$50.00 &#8211; $61.00</p>\n<p>Low Yield<br />\n$38.00 &#8211; $49.00</p>\n<p>Bulls<br />\n$70.00 &#8211; $92.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n746lbs @ 144.00</p>\n<p>Steers<br />\n966lbs @ 125.85</p>\n<p>Steers<br />\n806lbs @ 135.50</p>\n<p>Steers<br />\n920lbs @ 128.50</p>\n<p>Steers<br />\n739lbs @ 139.50</p>\n<p>Steers<br />\n943lbs @ 124.10</p>\n<p>Steers<br />\n735lbs @ 138.25</p>\n<p>Heifers<br />\n702lbs @ 130.00</p>\n<p>Heifers<br />\n722lbs @ 127.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10506,2962,'_et_pb_truncate_post_date','2021-03-15 19:24:20'),(10507,2962,'_et_pb_old_content',''),(10509,2962,'_et_pb_built_for_post_type','page'),(10510,2962,'_et_pb_ab_subjects',''),(10511,2962,'_et_pb_enable_shortcode_tracking',''),(10512,2962,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2962\" /]'),(10513,2962,'_et_pb_custom_css',''),(10514,2962,'_et_pb_gutter_width','3'),(10515,2962,'_et_builder_version','VB|Divi|4.4.4'),(10516,2962,'_et_pb_show_page_creation','off'),(10517,2962,'_wp_old_slug','february-11-2020-market-report'),(10518,2962,'_wp_old_slug','march-17th-2020-market-report'),(10519,2962,'_wp_old_slug','may-1th-2020-market-report-2'),(10520,2962,'_wp_old_slug','july-21st-2020-market-report-2'),(10521,2962,'_wp_old_slug','november-10th-2020-market-report'),(10523,2962,'_dp_original','2944'),(10524,2962,'_edit_lock','1614799162:2'),(10525,2962,'_edit_last','2'),(10529,2973,'_wp_attached_file','2021/03/Tuesday-March-9th-Feeder-Cattle-Consignments.pdf'),(10530,2973,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"Tuesday-March-9th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Tuesday-March-9th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Tuesday-March-9th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Tuesday-March-9th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10533,2983,'_wp_attached_file','2021/03/Phillips-Sale-Bill.pdf'),(10534,2983,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:26:\"Phillips-Sale-Bill-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Phillips-Sale-Bill-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Phillips-Sale-Bill-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Phillips-Sale-Bill-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10536,2990,'_thumbnail_id','786'),(10537,2990,'_et_post_bg_color','#ffffff'),(10538,2990,'_et_post_bg_layout','light'),(10539,2990,'_et_pb_show_title','on'),(10540,2990,'_et_pb_post_hide_nav','default'),(10541,2990,'_et_pb_page_layout','et_right_sidebar'),(10542,2990,'_et_pb_side_nav','off'),(10543,2990,'_et_pb_use_builder','on'),(10544,2990,'_et_pb_first_image',''),(10545,2990,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">March 9th, 2021, 2735 hd;Â  last week 4271 hd; a year ago 1672hd. Feeder cattle of all classes sold steady &#8211; $3 higher. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$194.50</p>\n<p>400-500<br />\n$160.00-$185.50</p>\n<p>500-600<br />\n$150.00-$189.00</p>\n<p>600-700<br />\n$140.00-$164.50</p>\n<p>700-800<br />\n$128.50-$144.25</p>\n<p>800-900<br />\n$120.00-$133.25</p>\n<p>900-1000<br />\n$118.00-$123.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$175.00</p>\n<p>400-500<br />\n$140.00-$168.00</p>\n<p>500-600<br />\n$130.00-$153.50</p>\n<p>600-700<br />\n$128.00-$146.85</p>\n<p>700-800<br />\n$120.00-$134.10</p>\n<p>800-900<br />\n$113.00-$117.00</p>\n<p>900-1000<br />\n$90.00-$103.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$60.00 &#8211; $69.00</p>\n<p>Medium Yield<br />\n$51.00 &#8211; $59.00</p>\n<p>Low Yield<br />\n$20.00 &#8211; $50.00</p>\n<p>Bulls<br />\n$62.50 &#8211; $95.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n859lbs @ 133.25</p>\n<p>Steers<br />\n746lbs @ 144.10</p>\n<p>HeifersÂ <br />\n645lbs @ 146.85</p>\n<p>Heifers<br />\n707lbs @ 134.10</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10546,2990,'_et_pb_truncate_post_date','2021-03-15 19:24:19'),(10547,2990,'_et_pb_old_content',''),(10549,2990,'_et_pb_built_for_post_type','page'),(10550,2990,'_et_pb_ab_subjects',''),(10551,2990,'_et_pb_enable_shortcode_tracking',''),(10552,2990,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2990\" /]'),(10553,2990,'_et_pb_custom_css',''),(10554,2990,'_et_pb_gutter_width','3'),(10555,2990,'_et_builder_version','VB|Divi|4.4.4'),(10556,2990,'_et_pb_show_page_creation','off'),(10557,2990,'_wp_old_slug','february-11-2020-market-report'),(10558,2990,'_wp_old_slug','march-17th-2020-market-report'),(10559,2990,'_wp_old_slug','may-1th-2020-market-report-2'),(10560,2990,'_wp_old_slug','july-21st-2020-market-report-2'),(10561,2990,'_wp_old_slug','november-10th-2020-market-report'),(10563,2990,'_dp_original','2962'),(10564,2990,'_edit_lock','1615398676:2'),(10565,2990,'_edit_last','2'),(10570,3004,'_wp_attached_file','2021/03/Tuesday-March-16th-Feeder-Cattle-Consignments.pdf'),(10571,3004,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Tuesday-March-16th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Tuesday-March-16th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Tuesday-March-16th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"Tuesday-March-16th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10573,3009,'_wp_attached_file','2021/03/CC-Performance-Sale-Catalog.pdf'),(10574,3009,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"CC-Performance-Sale-Catalog-pdf.jpg\";s:5:\"width\";i:1087;s:6:\"height\";i:1393;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"CC-Performance-Sale-Catalog-pdf-234x300.jpg\";s:5:\"width\";i:234;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"CC-Performance-Sale-Catalog-pdf-799x1024.jpg\";s:5:\"width\";i:799;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"CC-Performance-Sale-Catalog-pdf-117x150.jpg\";s:5:\"width\";i:117;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10576,3014,'_thumbnail_id','786'),(10577,3014,'_et_post_bg_color','#ffffff'),(10578,3014,'_et_post_bg_layout','light'),(10579,3014,'_et_pb_show_title','on'),(10580,3014,'_et_pb_post_hide_nav','default'),(10581,3014,'_et_pb_page_layout','et_right_sidebar'),(10582,3014,'_et_pb_side_nav','off'),(10583,3014,'_et_pb_use_builder','on'),(10584,3014,'_et_pb_first_image',''),(10585,3014,'_et_pb_truncate_post',''),(10586,3014,'_et_pb_truncate_post_date',''),(10587,3014,'_et_pb_old_content',''),(10589,3014,'_et_pb_built_for_post_type','page'),(10590,3014,'_et_pb_ab_subjects',''),(10591,3014,'_et_pb_enable_shortcode_tracking',''),(10592,3014,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3014\" /]'),(10593,3014,'_et_pb_custom_css',''),(10594,3014,'_et_pb_gutter_width','3'),(10595,3014,'_et_builder_version','VB|Divi|4.4.4'),(10596,3014,'_et_pb_show_page_creation','off'),(10597,3014,'_wp_old_slug','february-11-2020-market-report'),(10598,3014,'_wp_old_slug','march-17th-2020-market-report'),(10599,3014,'_wp_old_slug','may-1th-2020-market-report-2'),(10600,3014,'_wp_old_slug','july-21st-2020-market-report-2'),(10601,3014,'_wp_old_slug','november-10th-2020-market-report'),(10603,3014,'_dp_original','2990'),(10604,3014,'_edit_lock','1615994636:2'),(10605,3014,'_edit_last','2'),(10609,3028,'_wp_attached_file','2021/03/Tuesday-March-23rd-Feeder-Cattle-Consignments.pdf'),(10610,3028,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Tuesday-March-23rd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Tuesday-March-23rd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Tuesday-March-23rd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"Tuesday-March-23rd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10611,3033,'_thumbnail_id','786'),(10612,3033,'_et_post_bg_color','#ffffff'),(10613,3033,'_et_post_bg_layout','light'),(10614,3033,'_et_pb_show_title','on'),(10615,3033,'_et_pb_post_hide_nav','default'),(10616,3033,'_et_pb_page_layout','et_right_sidebar'),(10617,3033,'_et_pb_side_nav','off'),(10618,3033,'_et_pb_use_builder','on'),(10619,3033,'_et_pb_first_image',''),(10620,3033,'_et_pb_truncate_post',''),(10621,3033,'_et_pb_truncate_post_date',''),(10622,3033,'_et_pb_old_content',''),(10624,3033,'_et_pb_built_for_post_type','page'),(10625,3033,'_et_pb_ab_subjects',''),(10626,3033,'_et_pb_enable_shortcode_tracking',''),(10627,3033,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3033\" /]'),(10628,3033,'_et_pb_custom_css',''),(10629,3033,'_et_pb_gutter_width','3'),(10630,3033,'_et_builder_version','VB|Divi|4.4.4'),(10631,3033,'_et_pb_show_page_creation','off'),(10632,3033,'_wp_old_slug','february-11-2020-market-report'),(10633,3033,'_wp_old_slug','march-17th-2020-market-report'),(10634,3033,'_wp_old_slug','may-1th-2020-market-report-2'),(10635,3033,'_wp_old_slug','july-21st-2020-market-report-2'),(10636,3033,'_wp_old_slug','november-10th-2020-market-report'),(10638,3033,'_dp_original','3014'),(10639,3033,'_edit_lock','1617214899:2'),(10640,3033,'_edit_last','2'),(10642,3042,'_wp_attached_file','2021/03/Tuesday-March-30th-Feeder-Cattle-Consignments.pdf'),(10643,3042,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Tuesday-March-30th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Tuesday-March-30th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Tuesday-March-30th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"Tuesday-March-30th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10646,3050,'_thumbnail_id','786'),(10647,3050,'_et_post_bg_color','#ffffff'),(10648,3050,'_et_post_bg_layout','light'),(10649,3050,'_et_pb_show_title','on'),(10650,3050,'_et_pb_post_hide_nav','default'),(10651,3050,'_et_pb_page_layout','et_right_sidebar'),(10652,3050,'_et_pb_side_nav','off'),(10653,3050,'_et_pb_use_builder','on'),(10654,3050,'_et_pb_first_image',''),(10655,3050,'_et_pb_truncate_post',''),(10656,3050,'_et_pb_truncate_post_date',''),(10657,3050,'_et_pb_old_content',''),(10659,3050,'_et_pb_built_for_post_type','page'),(10660,3050,'_et_pb_ab_subjects',''),(10661,3050,'_et_pb_enable_shortcode_tracking',''),(10662,3050,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3033\" /]'),(10663,3050,'_et_pb_custom_css',''),(10664,3050,'_et_pb_gutter_width','3'),(10665,3050,'_et_builder_version','VB|Divi|4.4.4'),(10666,3050,'_et_pb_show_page_creation','off'),(10667,3050,'_wp_old_slug','february-11-2020-market-report'),(10668,3050,'_wp_old_slug','march-17th-2020-market-report'),(10669,3050,'_wp_old_slug','may-1th-2020-market-report-2'),(10670,3050,'_wp_old_slug','july-21st-2020-market-report-2'),(10671,3050,'_wp_old_slug','november-10th-2020-market-report'),(10673,3050,'_dp_original','3033'),(10678,3058,'_wp_attached_file','2021/03/Kelly-Borum-April-17th.pdf'),(10679,3058,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"Kelly-Borum-April-17th-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Kelly-Borum-April-17th-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"Kelly-Borum-April-17th-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Kelly-Borum-April-17th-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10680,3061,'_wp_attached_file','2021/03/April-10-2021-Horse-Tack-Small-Animal-Sale.pdf'),(10681,3061,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"April-10-2021-Horse-Tack-Small-Animal-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"April-10-2021-Horse-Tack-Small-Animal-Sale-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"April-10-2021-Horse-Tack-Small-Animal-Sale-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"April-10-2021-Horse-Tack-Small-Animal-Sale-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10682,3065,'_wp_attached_file','2021/03/April-10-2021-Horse-Tack-Small-Animal-Sale-1.pdf'),(10683,3065,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"April-10-2021-Horse-Tack-Small-Animal-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"April-10-2021-Horse-Tack-Small-Animal-Sale-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"April-10-2021-Horse-Tack-Small-Animal-Sale-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"April-10-2021-Horse-Tack-Small-Animal-Sale-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10684,3072,'_wp_attached_file','2021/04/Tuesday-April-6th-Feeder-Cattle-Consignments.pdf'),(10685,3072,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"Tuesday-April-6th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Tuesday-April-6th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Tuesday-April-6th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Tuesday-April-6th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10689,3077,'_wp_attached_file','2021/04/Tuesday-April-6th-Feeder-Cattle-Consignments-1.pdf'),(10690,3077,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"Tuesday-April-6th-Feeder-Cattle-Consignments-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Tuesday-April-6th-Feeder-Cattle-Consignments-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"Tuesday-April-6th-Feeder-Cattle-Consignments-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Tuesday-April-6th-Feeder-Cattle-Consignments-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10693,3088,'_thumbnail_id','786'),(10694,3088,'_et_post_bg_color','#ffffff'),(10695,3088,'_et_post_bg_layout','light'),(10696,3088,'_et_pb_show_title','on'),(10697,3088,'_et_pb_post_hide_nav','default'),(10698,3088,'_et_pb_page_layout','et_right_sidebar'),(10699,3088,'_et_pb_side_nav','off'),(10700,3088,'_et_pb_use_builder','on'),(10701,3088,'_et_pb_first_image',''),(10702,3088,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_9 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_27\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_36  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_54  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">April 6th, 2021, 2459 hd;Â  last week 2887 hd; a year ago 1293 hd.Feeder cattle of all classes sold $4-$8 higher. Slaughter Cows &amp; Bulls sold $3-$6 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_28\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_37  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_55  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$205.00</p>\n<p>400-500<br />\n$160.00-$193.00</p>\n<p>500-600<br />\n$154.00-$179.50</p>\n<p>600-700<br />\n$144.00-$170.00</p>\n<p>700-800<br />\n$134.75-$160.25</p>\n<p>800-900<br />\n$125.75-$142.10</p>\n<p>900-1000<br />\n$120.00-$130.35</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_56  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$165.00-$180.00</p>\n<p>400-500<br />\n$151.00-$181.00</p>\n<p>500-600<br />\n$140.00-$157.00</p>\n<p>600-700<br />\n$131.25-$155.00</p>\n<p>700-800<br />\n$128.25-$149.75</p>\n<p>800-900<br />\n$120.00-$134.00</p>\n<p>900-1000<br />\n$110.00-$132.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_38  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_57  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$66.00 &#8211; $77.00</p>\n<p>Medium Yield<br />\n$57.00 &#8211; $65.00</p>\n<p>Low Yield<br />\n$45.00 &#8211; $56.00</p>\n<p>Bulls<br />\n$78.00 &#8211; $110.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_58  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n601lbs @ 170.50</p>\n<p>Steers<br />\n680lbs @ 166.00</p>\n<p>Steers<br />\n717lbs @ 160.25</p>\n<p>Steers<br />\n860lbs @ 142.10</p>\n<p>Steers<br />\n920lbs @130.35</p>\n<p>Heifers<br />\n670lbs @ 154.25</p>\n<p>Heifers<br />\n674lbs @146.00</p>\n<p>Heifers<br />\n691lbs @ 145.00</p>\n<p>Heifers<br />\n722lbs @ 149.75</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_59  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_29\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_39  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_9_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_9 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10703,3088,'_et_pb_truncate_post_date','2021-06-12 09:46:24'),(10704,3088,'_et_pb_old_content',''),(10706,3088,'_et_pb_built_for_post_type','page'),(10707,3088,'_et_pb_ab_subjects',''),(10708,3088,'_et_pb_enable_shortcode_tracking',''),(10709,3088,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3088\" /]'),(10710,3088,'_et_pb_custom_css',''),(10711,3088,'_et_pb_gutter_width','3'),(10712,3088,'_et_builder_version','VB|Divi|4.4.4'),(10713,3088,'_et_pb_show_page_creation','off'),(10714,3088,'_wp_old_slug','february-11-2020-market-report'),(10715,3088,'_wp_old_slug','march-17th-2020-market-report'),(10716,3088,'_wp_old_slug','may-1th-2020-market-report-2'),(10717,3088,'_wp_old_slug','july-21st-2020-market-report-2'),(10718,3088,'_wp_old_slug','november-10th-2020-market-report'),(10720,3088,'_dp_original','3050'),(10721,3088,'_edit_lock','1617809751:2'),(10722,3088,'_edit_last','2'),(10728,3099,'_wp_attached_file','2021/04/Dusselier-Estate-May-1st.pdf'),(10729,3099,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"Dusselier-Estate-May-1st-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Dusselier-Estate-May-1st-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Dusselier-Estate-May-1st-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Dusselier-Estate-May-1st-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10731,3106,'_wp_attached_file','2021/04/Tuesday-April-13th-Feeder-Cattle-Consignments.pdf'),(10732,3106,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Tuesday-April-13th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Tuesday-April-13th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Tuesday-April-13th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"Tuesday-April-13th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10733,2209,'_global_colors_info','{}'),(10736,639,'_global_colors_info','{}'),(10737,1967,'_global_colors_info','{}'),(10738,3119,'_thumbnail_id','786'),(10739,3119,'_et_post_bg_color','#ffffff'),(10740,3119,'_et_post_bg_layout','light'),(10741,3119,'_et_pb_show_title','on'),(10742,3119,'_et_pb_post_hide_nav','default'),(10743,3119,'_et_pb_page_layout','et_right_sidebar'),(10744,3119,'_et_pb_side_nav','off'),(10745,3119,'_et_pb_use_builder','on'),(10746,3119,'_et_pb_first_image',''),(10747,3119,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_8 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_24\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_32  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_48  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">April 1th, 2021, 1955 hd;Â  last week 2459 hd; a year ago 852 hd.Feeder steers sold steady &#8211; $3 lower. Feeder heifers sold fully steady. Slaughter Cows &amp; Bulls sold steady -$1 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_25\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_33  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_49  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$175.00-$215.00</p>\n<p>400-500<br />\n$165.00-$190.50</p>\n<p>500-600<br />\n$150.00-$177.00</p>\n<p>600-700<br />\n$140.00-$159.75</p>\n<p>700-800<br />\n$133.00-$154.50</p>\n<p>800-900<br />\n$125.00-$145.35</p>\n<p>900-1000<br />\n$115.00-$130.85</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_50  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$187.50</p>\n<p>400-500<br />\n$144.00-$173.50</p>\n<p>500-600<br />\n$135.00-$155.00</p>\n<p>600-700<br />\n$130.00-$151.25</p>\n<p>700-800<br />\n$122.00-$135.75</p>\n<p>800-900<br />\n$120.00-$136.25</p>\n<p>900-1000<br />\n$110.00-$123.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_34  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_51  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$71.00 &#8211; $80.00</p>\n<p>Medium Yield<br />\n$62.00 &#8211; $70.00</p>\n<p>Low Yield<br />\n$50.00 &#8211; $61.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $110.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_52  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n740lbs @ 152.00</p>\n<p>Steers<br />\n808lbs @145.85</p>\n<p>SteersÂ <br />\n818lbs @ 141.00</p>\n<p>SteersÂ <br />\n911lbs @133.85</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_53  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_26\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_35  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_8_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_8 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10748,3119,'_et_pb_truncate_post_date','2021-06-12 09:46:24'),(10749,3119,'_et_pb_old_content',''),(10751,3119,'_et_pb_built_for_post_type','page'),(10752,3119,'_et_pb_ab_subjects',''),(10753,3119,'_et_pb_enable_shortcode_tracking',''),(10754,3119,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3119\" /]'),(10755,3119,'_et_pb_custom_css',''),(10756,3119,'_et_pb_gutter_width','3'),(10757,3119,'_et_builder_version','VB|Divi|4.4.4'),(10758,3119,'_et_pb_show_page_creation','off'),(10759,3119,'_wp_old_slug','february-11-2020-market-report'),(10760,3119,'_wp_old_slug','march-17th-2020-market-report'),(10761,3119,'_wp_old_slug','may-1th-2020-market-report-2'),(10762,3119,'_wp_old_slug','july-21st-2020-market-report-2'),(10763,3119,'_wp_old_slug','november-10th-2020-market-report'),(10765,3119,'_dp_original','3088'),(10766,3119,'_edit_lock','1618415997:2'),(10767,3119,'_edit_last','2'),(10769,3119,'_global_colors_info','{}'),(10770,1450,'_global_colors_info','{}'),(10771,3128,'_wp_attached_file','2021/04/Page-Estate-May-2nd.pdf'),(10772,3128,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:27:\"Page-Estate-May-2nd-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Page-Estate-May-2nd-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Page-Estate-May-2nd-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Page-Estate-May-2nd-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10774,3135,'_thumbnail_id','786'),(10775,3135,'_et_post_bg_color','#ffffff'),(10776,3135,'_et_post_bg_layout','light'),(10777,3135,'_et_pb_show_title','on'),(10778,3135,'_et_pb_post_hide_nav','default'),(10779,3135,'_et_pb_page_layout','et_right_sidebar'),(10780,3135,'_et_pb_side_nav','off'),(10781,3135,'_et_pb_use_builder','on'),(10782,3135,'_et_pb_first_image',''),(10783,3135,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_7 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_21\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_28  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_42  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">April 20th, 2021,Â 2286 hd;Â  last week 1955 hd; a year ago 2121 hd.Feeder cattle weighing 650-900 lbs sold steady. Feeder cattle weighing 650 lbs &amp; down steady &#8211; $3 lower in spots with several new crop calves coming to town. Â Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_22\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_29  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_43  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$200.00</p>\n<p>400-500<br />\n$150.00-$181.50</p>\n<p>500-600<br />\n$145.00-$180.00</p>\n<p>600-700<br />\n$137.00-$161.50</p>\n<p>700-800<br />\n$130.00-$148.75</p>\n<p>800-900<br />\n$121.00-$132.75</p>\n<p>900-1000<br />\n$107.00-$120.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_44  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$177.00</p>\n<p>400-500<br />\n$135.00-$173.00</p>\n<p>500-600<br />\n$130.00-$156.75</p>\n<p>600-700<br />\n$130.00-$145.25</p>\n<p>700-800<br />\n$122.00-$144.25</p>\n<p>800-900<br />\n$110.00-$126.00</p>\n<p>900-1000<br />\n$110.00-$126.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_30  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_45  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$68.00 &#8211; $78.00</p>\n<p>Medium Yield<br />\n$60.00 &#8211; $68.00</p>\n<p>Low Yield<br />\n$47.00 &#8211; $59.00</p>\n<p>Bulls<br />\n$70.00 &#8211; $104.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_46  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n678lbs @ 153.75</p>\n<p>Heifers<br />\n658lbs @137.50</p>\n<p>Heifers<br />\n723lbs @ 133.00Â </p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_47  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_23\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_31  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_7_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_7 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10784,3135,'_et_pb_truncate_post_date','2021-06-12 09:46:24'),(10785,3135,'_et_pb_old_content',''),(10787,3135,'_et_pb_built_for_post_type','page'),(10788,3135,'_et_pb_ab_subjects',''),(10789,3135,'_et_pb_enable_shortcode_tracking',''),(10790,3135,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3135\" /]'),(10791,3135,'_et_pb_custom_css',''),(10792,3135,'_et_pb_gutter_width','3'),(10793,3135,'_et_builder_version','VB|Divi|4.9.4'),(10794,3135,'_et_pb_show_page_creation','off'),(10795,3135,'_wp_old_slug','february-11-2020-market-report'),(10796,3135,'_wp_old_slug','march-17th-2020-market-report'),(10797,3135,'_wp_old_slug','may-1th-2020-market-report-2'),(10798,3135,'_wp_old_slug','july-21st-2020-market-report-2'),(10799,3135,'_wp_old_slug','november-10th-2020-market-report'),(10801,3135,'_global_colors_info','{}'),(10802,3135,'_dp_original','3119'),(10803,3135,'_edit_lock','1619105827:2'),(10804,3135,'_edit_last','2'),(10808,3145,'_wp_attached_file','2021/04/Tuesday-April-27th-Feeder-Cattle-Consignments.pdf'),(10809,3145,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Tuesday-April-27th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Tuesday-April-27th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Tuesday-April-27th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"Tuesday-April-27th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10811,3153,'_thumbnail_id','786'),(10812,3153,'_et_post_bg_color','#ffffff'),(10813,3153,'_et_post_bg_layout','light'),(10814,3153,'_et_pb_show_title','on'),(10815,3153,'_et_pb_post_hide_nav','default'),(10816,3153,'_et_pb_page_layout','et_right_sidebar'),(10817,3153,'_et_pb_side_nav','off'),(10818,3153,'_et_pb_use_builder','on'),(10819,3153,'_et_pb_first_image',''),(10820,3153,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_6 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_18\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_24  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_36  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">April 27th, 2021, 1654 hd;Â  last week 2286 hd; a year ago 2745 hd.Feeder cattle weighing 650 &amp; up sold $2-$4 lower. New crop calves that were short weaned sold $2-$4 lower. Heifers weighing 400-500 lbs sold $4&#8211;$6 lower, as corn prices reached $7 on Tuesday. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_19\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_25  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_37  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$197.00</p>\n<p>400-500<br />\n$150.00-$187.50</p>\n<p>500-600<br />\n$145.00-$170.50</p>\n<p>600-700<br />\n$138.00-$153.25</p>\n<p>700-800<br />\n$130.00-$145.25</p>\n<p>800-900<br />\n$120.00-$131.60</p>\n<p>900-1000<br />\n$108.00-$119.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_38  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$145.00-$169.00</p>\n<p>400-500<br />\n$138.00-$152.00</p>\n<p>500-600<br />\n$133.00-$153.50</p>\n<p>600-700<br />\n$118.00-$132.50</p>\n<p>700-800<br />\n$117.00-$129.60</p>\n<p>800-900<br />\n$115.00-$135.00</p>\n<p>900-1000<br />\n$90.00-$100.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_26  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_39  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$66.00 &#8211; $74.00</p>\n<p>Medium Yield<br />\n$50.00 &#8211; $65.00</p>\n<p>Low Yield<br />\n$30.00 &#8211; $49.00</p>\n<p>Bulls<br />\n$70.00 &#8211; $104.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_40  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n530lbs @ 170.50</p>\n<p>Steers<br />\n571lbs @163.50</p>\n<p>Steers<br />\n719lbs @ 144.60</p>\n<p>Steers<br />\n834lbs @ 131.10</p>\n<p>Heifers<br />\n550lbs @ 153.50</p>\n<p>Heifers<br />\n826lbs @ 135.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_41  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_20\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_27  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_6_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_6 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10821,3153,'_et_pb_truncate_post_date','2021-06-12 09:46:24'),(10822,3153,'_et_pb_old_content',''),(10824,3153,'_et_pb_built_for_post_type','page'),(10825,3153,'_et_pb_ab_subjects',''),(10826,3153,'_et_pb_enable_shortcode_tracking',''),(10827,3153,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3153\" /]'),(10828,3153,'_et_pb_custom_css',''),(10829,3153,'_et_pb_gutter_width','3'),(10830,3153,'_et_builder_version','VB|Divi|4.9.4'),(10831,3153,'_et_pb_show_page_creation','off'),(10832,3153,'_wp_old_slug','february-11-2020-market-report'),(10833,3153,'_wp_old_slug','march-17th-2020-market-report'),(10834,3153,'_wp_old_slug','may-1th-2020-market-report-2'),(10835,3153,'_wp_old_slug','july-21st-2020-market-report-2'),(10836,3153,'_wp_old_slug','november-10th-2020-market-report'),(10837,3153,'_global_colors_info','{}'),(10839,3153,'_dp_original','3135'),(10840,3153,'_edit_lock','1619631305:2'),(10841,3153,'_edit_last','2'),(10843,3159,'_wp_attached_file','2021/04/May-212021-Red-Angus-Sale.pdf'),(10844,3159,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"May-212021-Red-Angus-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"May-212021-Red-Angus-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"May-212021-Red-Angus-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"May-212021-Red-Angus-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10845,3169,'_wp_attached_file','2021/05/Tuesday-May-4th-Feeder-Cattle-Consignments.pdf'),(10846,3169,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"Tuesday-May-4th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"Tuesday-May-4th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"Tuesday-May-4th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"Tuesday-May-4th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10848,3172,'_wp_attached_file','2021/05/May-212021-Red-Angus-Sale.pdf'),(10849,3172,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"May-212021-Red-Angus-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"May-212021-Red-Angus-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"May-212021-Red-Angus-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"May-212021-Red-Angus-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10850,3176,'_wp_attached_file','2021/05/May-212021-Red-Angus-Sale-1.pdf'),(10851,3176,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"May-212021-Red-Angus-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"May-212021-Red-Angus-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"May-212021-Red-Angus-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"May-212021-Red-Angus-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10855,3187,'_wp_attached_file','2021/05/Strate-Estate-May-23rd.pdf'),(10856,3187,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"Strate-Estate-May-23rd-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Strate-Estate-May-23rd-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"Strate-Estate-May-23rd-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Strate-Estate-May-23rd-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10858,3192,'_thumbnail_id','786'),(10859,3192,'_et_post_bg_color','#ffffff'),(10860,3192,'_et_post_bg_layout','light'),(10861,3192,'_et_pb_show_title','on'),(10862,3192,'_et_pb_post_hide_nav','default'),(10863,3192,'_et_pb_page_layout','et_right_sidebar'),(10864,3192,'_et_pb_side_nav','off'),(10865,3192,'_et_pb_use_builder','on'),(10866,3192,'_et_pb_first_image',''),(10867,3192,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_5 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_15\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_20  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_30  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">May 4th, 2021, 2124 hd;Â  last week 1654 hd; a year ago 2147 hd.Feeder cattle sold steady-$5 lower w/ high corn prices. There was good buyer activity throughout the day.Â  Slaughter Cows &amp; Bulls sold $1-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_16\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_21  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_31  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$195.50</p>\n<p>400-500<br />\n$155.00-$183.00</p>\n<p>500-600<br />\n$145.00-$169.50</p>\n<p>600-700<br />\n$138.00-$155.00</p>\n<p>700-800<br />\n$124.00-$140.75</p>\n<p>800-900<br />\n$120.00-$129.00</p>\n<p>900-1000<br />\n$108.00-$127.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_32  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$169.50</p>\n<p>400-500<br />\n$134.00-$159.50</p>\n<p>500-600<br />\n$127.00-$143.25</p>\n<p>600-700<br />\n$123.00-$139.50</p>\n<p>700-800<br />\n$110.00-$115.85</p>\n<p>800-900<br />\n$100.00-$120.00</p>\n<p>900-1000<br />\n$100.00-$110.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_22  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_33  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$66.00 &#8211; $74.50</p>\n<p>Medium Yield<br />\n$57.00 &#8211; $65.00</p>\n<p>Low Yield<br />\n$45.00 &#8211; $56.00</p>\n<p>Bulls<br />\n$60.00 &#8211; $100.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_34  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n770lbs @ 140.75</p>\n<p>Steers<br />\n887lbs @128.10</p>\n<p>Steers<br />\n912lbs @ 127.00</p>\n<p>Heifers<br />\n661lbs @ 135.75</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_35  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_17\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_23  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_5_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_5 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10868,3192,'_et_pb_truncate_post_date','2021-06-12 09:46:23'),(10869,3192,'_et_pb_old_content',''),(10871,3192,'_et_pb_built_for_post_type','page'),(10872,3192,'_et_pb_ab_subjects',''),(10873,3192,'_et_pb_enable_shortcode_tracking',''),(10874,3192,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3192\" /]'),(10875,3192,'_et_pb_custom_css',''),(10876,3192,'_et_pb_gutter_width','3'),(10877,3192,'_et_builder_version','VB|Divi|4.9.4'),(10878,3192,'_et_pb_show_page_creation','off'),(10879,3192,'_wp_old_slug','february-11-2020-market-report'),(10880,3192,'_wp_old_slug','march-17th-2020-market-report'),(10881,3192,'_wp_old_slug','may-1th-2020-market-report-2'),(10882,3192,'_wp_old_slug','july-21st-2020-market-report-2'),(10883,3192,'_wp_old_slug','november-10th-2020-market-report'),(10884,3192,'_global_colors_info','{}'),(10886,3192,'_dp_original','3153'),(10887,3192,'_edit_lock','1620229394:2'),(10888,3192,'_edit_last','2'),(10890,3198,'_wp_attached_file','2021/05/Strate-Estate-May-23rd-1.pdf'),(10891,3198,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"Strate-Estate-May-23rd-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Strate-Estate-May-23rd-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Strate-Estate-May-23rd-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Strate-Estate-May-23rd-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10893,714,'_global_colors_info','{}'),(10895,3208,'_wp_attached_file','2021/05/Strate-Estate-May-23rd-2.pdf'),(10896,3208,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"Strate-Estate-May-23rd-2-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Strate-Estate-May-23rd-2-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Strate-Estate-May-23rd-2-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Strate-Estate-May-23rd-2-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10898,3217,'_wp_attached_file','2021/05/Tuesday-May-11th-Feeder-Cattle-Consignments.pdf'),(10899,3217,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"Tuesday-May-11th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Tuesday-May-11th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Tuesday-May-11th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Tuesday-May-11th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10900,3222,'_thumbnail_id','786'),(10901,3222,'_et_post_bg_color','#ffffff'),(10902,3222,'_et_post_bg_layout','light'),(10903,3222,'_et_pb_show_title','on'),(10904,3222,'_et_pb_post_hide_nav','default'),(10905,3222,'_et_pb_page_layout','et_right_sidebar'),(10906,3222,'_et_pb_side_nav','off'),(10907,3222,'_et_pb_use_builder','on'),(10908,3222,'_et_pb_first_image',''),(10909,3222,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_4 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_12\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_16  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_24  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">May 11th, 2021, 2267 hd;Â  last week 2124 hd; a year ago 2174 hd.Feeder cattle of all classes sold steady-$6 higher. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_13\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_17  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$161.00-$195.00</p>\n<p>400-500<br />\n$151.00-$189.75</p>\n<p>500-600<br />\n$150.00-$175.50</p>\n<p>600-700<br />\n$137.00-$152.00</p>\n<p>700-800<br />\n$130.00-$146.50</p>\n<p>800-900<br />\n$120.00-$135.00</p>\n<p>900-1000<br />\n$110.00-$125.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_26  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$179.00</p>\n<p>400-500<br />\n$138.00-$160.00</p>\n<p>500-600<br />\n$130.00-$145.75</p>\n<p>600-700<br />\n$125.00-$139.00</p>\n<p>700-800<br />\n$122.00-$134.00</p>\n<p>800-900<br />\n$108.00-$114.50</p>\n<p>900-1000<br />\n$98.00-$109.25</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_18  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_27  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$64.00 &#8211; $78.00</p>\n<p>Medium Yield<br />\n$57.00 &#8211; $63.50</p>\n<p>Low Yield<br />\n$45.00 &#8211; $56.00</p>\n<p>Bulls<br />\n$70.00 &#8211; $103.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_28  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n504lbs @ 175.50</p>\n<p>Steers<br />\n729lbs @146.50</p>\n<p>Steers<br />\n780lbs @ 140.00</p>\n<p>Heifers<br />\n716lbs @ 134.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_29  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_14\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_19  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_4_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_4 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10910,3222,'_et_pb_truncate_post_date','2021-06-12 09:46:23'),(10911,3222,'_et_pb_old_content',''),(10913,3222,'_et_pb_built_for_post_type','page'),(10914,3222,'_et_pb_ab_subjects',''),(10915,3222,'_et_pb_enable_shortcode_tracking',''),(10916,3222,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3222\" /]'),(10917,3222,'_et_pb_custom_css',''),(10918,3222,'_et_pb_gutter_width','3'),(10919,3222,'_et_builder_version','VB|Divi|4.9.4'),(10920,3222,'_et_pb_show_page_creation','off'),(10921,3222,'_wp_old_slug','february-11-2020-market-report'),(10922,3222,'_wp_old_slug','march-17th-2020-market-report'),(10923,3222,'_wp_old_slug','may-1th-2020-market-report-2'),(10924,3222,'_wp_old_slug','july-21st-2020-market-report-2'),(10925,3222,'_wp_old_slug','november-10th-2020-market-report'),(10926,3222,'_global_colors_info','{}'),(10928,3222,'_dp_original','3192'),(10929,3222,'_edit_lock','1620837184:2'),(10930,3222,'_edit_last','2'),(10935,3234,'_wp_attached_file','2021/05/May-212021-Red-Angus-Sale-2.pdf'),(10936,3234,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"May-212021-Red-Angus-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"May-212021-Red-Angus-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"May-212021-Red-Angus-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"May-212021-Red-Angus-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10937,3237,'_wp_attached_file','2021/05/2021-Memorial-Day-Sale-Flyer.pdf'),(10938,3237,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:36:\"2021-Memorial-Day-Sale-Flyer-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"2021-Memorial-Day-Sale-Flyer-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"2021-Memorial-Day-Sale-Flyer-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"2021-Memorial-Day-Sale-Flyer-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10939,3239,'_wp_attached_file','2021/05/Memorial-Day-2021-Detailed-Consignment-List.pdf'),(10940,3239,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"Memorial-Day-2021-Detailed-Consignment-List-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Memorial-Day-2021-Detailed-Consignment-List-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2021-Detailed-Consignment-List-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"Memorial-Day-2021-Detailed-Consignment-List-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10941,3244,'_wp_attached_file','2021/05/2021-Fall-Calving-Sale-Order.pdf'),(10942,3244,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:36:\"2021-Fall-Calving-Sale-Order-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:1088;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"2021-Fall-Calving-Sale-Order-pdf-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"2021-Fall-Calving-Sale-Order-pdf-1024x791.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"2021-Fall-Calving-Sale-Order-pdf-150x116.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10944,3250,'_wp_attached_file','2021/05/Memorial-Day-2021-Detailed-Consignment-List-1.pdf'),(10945,3250,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2021-Detailed-Consignment-List-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2021-Detailed-Consignment-List-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2021-Detailed-Consignment-List-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2021-Detailed-Consignment-List-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10946,3253,'_wp_attached_file','2021/05/Tuesday-May-18th-Feeder-Cattle-Consignments.pdf'),(10947,3253,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"Tuesday-May-18th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Tuesday-May-18th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Tuesday-May-18th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Tuesday-May-18th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10950,3259,'_wp_attached_file','2021/05/May-212021-Red-Angus-Sale-3.pdf'),(10951,3259,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"May-212021-Red-Angus-Sale-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"May-212021-Red-Angus-Sale-3-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"May-212021-Red-Angus-Sale-3-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"May-212021-Red-Angus-Sale-3-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10952,3262,'_wp_attached_file','2021/05/May-212021-Red-Angus-Sale-4.pdf'),(10953,3262,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"May-212021-Red-Angus-Sale-4-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"May-212021-Red-Angus-Sale-4-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"May-212021-Red-Angus-Sale-4-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"May-212021-Red-Angus-Sale-4-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10954,3265,'_wp_attached_file','2021/05/Untitled-document.pdf'),(10955,3265,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:25:\"Untitled-document-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Untitled-document-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Untitled-document-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Untitled-document-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10956,3268,'_wp_attached_file','2021/05/Untitled-document-1.pdf'),(10957,3268,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:27:\"Untitled-document-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Untitled-document-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Untitled-document-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Untitled-document-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10959,3273,'_wp_attached_file','2021/05/Untitled-document-2.pdf'),(10960,3273,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:27:\"Untitled-document-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Untitled-document-2-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Untitled-document-2-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Untitled-document-2-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10963,3278,'_wp_attached_file','2021/05/Memorial-Day-2021-Detailed-Consignment-List-2.pdf'),(10964,3278,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2021-Detailed-Consignment-List-2-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2021-Detailed-Consignment-List-2-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2021-Detailed-Consignment-List-2-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2021-Detailed-Consignment-List-2-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(10965,3283,'_thumbnail_id','786'),(10966,3283,'_et_post_bg_color','#ffffff'),(10967,3283,'_et_post_bg_layout','light'),(10968,3283,'_et_pb_show_title','on'),(10969,3283,'_et_pb_post_hide_nav','default'),(10970,3283,'_et_pb_page_layout','et_right_sidebar'),(10971,3283,'_et_pb_side_nav','off'),(10972,3283,'_et_pb_use_builder','on'),(10973,3283,'_et_pb_first_image',''),(10974,3283,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_3 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">May 18th, 2021, 1531 hd;Â  last week 2267 hd; a year ago 3013 hd.Compared to last week steers sold $3-$6 higher &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$2 higher.Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_10\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$196.00</p>\n<p>400-500<br />\n$150.00-$190.00</p>\n<p>500-600<br />\n$145.00-$178.75</p>\n<p>600-700<br />\n$130.00-$166.50</p>\n<p>700-800<br />\n122.50-$149.00</p>\n<p>800-900<br />\n$118.00-$130.25</p>\n<p>900-1000<br />\n$110.00-$115.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$170.25</p>\n<p>400-500<br />\n$135.00-$161.00</p>\n<p>500-600<br />\n$130.00-$152.50</p>\n<p>600-700<br />\n$125.00-$151.00</p>\n<p>700-800<br />\n$120.00-$133.00</p>\n<p>800-900<br />\n$110.00-$120.00</p>\n<p>900-1000<br />\n$100.00-$110.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$64.00 &#8211; $78.00</p>\n<p>Medium Yield<br />\n$54.00 &#8211; $63.00</p>\n<p>Low Yield<br />\n$47.00 &#8211; $53.00</p>\n<p>Bulls<br />\n$77.50.00 &#8211; $108</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n590lbs @ 162.25</p>\n<p>Steers<br />\n693lbs @153.00</p>\n<p>Steers<br />\n723lbs @ 149.00</p>\n<p>Heifers<br />\n720lbs @ 133.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_11\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_3_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_3 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(10975,3283,'_et_pb_truncate_post_date','2021-06-12 09:46:23'),(10976,3283,'_et_pb_old_content',''),(10978,3283,'_et_pb_built_for_post_type','page'),(10979,3283,'_et_pb_ab_subjects',''),(10980,3283,'_et_pb_enable_shortcode_tracking',''),(10981,3283,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3283\" /]'),(10982,3283,'_et_pb_custom_css',''),(10983,3283,'_et_pb_gutter_width','3'),(10984,3283,'_et_builder_version','VB|Divi|4.9.4'),(10985,3283,'_et_pb_show_page_creation','off'),(10986,3283,'_wp_old_slug','february-11-2020-market-report'),(10987,3283,'_wp_old_slug','march-17th-2020-market-report'),(10988,3283,'_wp_old_slug','may-1th-2020-market-report-2'),(10989,3283,'_wp_old_slug','july-21st-2020-market-report-2'),(10990,3283,'_wp_old_slug','november-10th-2020-market-report'),(10991,3283,'_global_colors_info','{}'),(10993,3283,'_dp_original','3222'),(10994,3283,'_edit_lock','1621442884:2'),(10995,3283,'_edit_last','2'),(10998,3291,'_wp_attached_file','2021/05/Memorial-Day-2021-Detailed-Consignment-List-3.pdf'),(10999,3291,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2021-Detailed-Consignment-List-3-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2021-Detailed-Consignment-List-3-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2021-Detailed-Consignment-List-3-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2021-Detailed-Consignment-List-3-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11000,3299,'_wp_attached_file','2021/05/Memorial-Day-2021-Detailed-Consignment-List-4.pdf'),(11001,3299,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2021-Detailed-Consignment-List-4-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2021-Detailed-Consignment-List-4-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2021-Detailed-Consignment-List-4-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2021-Detailed-Consignment-List-4-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11003,3309,'_wp_attached_file','2021/05/Tuesday-May-25th-Feeder-Cattle-Consignments.pdf'),(11004,3309,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"Tuesday-May-25th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Tuesday-May-25th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Tuesday-May-25th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Tuesday-May-25th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11007,3313,'_wp_attached_file','2021/05/Memorial-Day-2021-Detailed-Consignment-List-5.pdf'),(11008,3313,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2021-Detailed-Consignment-List-5-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2021-Detailed-Consignment-List-5-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2021-Detailed-Consignment-List-5-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2021-Detailed-Consignment-List-5-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11009,3317,'_thumbnail_id','786'),(11010,3317,'_et_post_bg_color','#ffffff'),(11011,3317,'_et_post_bg_layout','light'),(11012,3317,'_et_pb_show_title','on'),(11013,3317,'_et_pb_post_hide_nav','default'),(11014,3317,'_et_pb_page_layout','et_right_sidebar'),(11015,3317,'_et_pb_side_nav','off'),(11016,3317,'_et_pb_use_builder','on'),(11017,3317,'_et_pb_first_image',''),(11018,3317,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">May 25th, 2021, 2384 hd;Â  last week 1531 hd; a year ago 1050 hd. Steers sold steady-$3 higher &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$4 higher.Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$185.00</p>\n<p>400-500<br />\n$160.00-$189.75</p>\n<p>500-600<br />\n$150.00-$177.00</p>\n<p>600-700<br />\n$137.00-$163.50</p>\n<p>700-800<br />\n$130.00-$151.00</p>\n<p>800-900<br />\n$122.00-$134.85</p>\n<p>900-1000<br />\n$120.00-$126.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$178.00</p>\n<p>400-500<br />\n$145.00-$167.00</p>\n<p>500-600<br />\n$132.00-$156.25</p>\n<p>600-700<br />\n$124.00-$139.00</p>\n<p>700-800<br />\n$122.00-$138.00</p>\n<p>800-900<br />\n$115.00-$119.85</p>\n<p>900-1000<br />\n$100.00-$105.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$68.00 &#8211; $79.00</p>\n<p>Medium Yield<br />\n$59.00 &#8211; $67.00</p>\n<p>Low Yield<br />\n$48.00 &#8211; $58.00</p>\n<p>Bulls<br />\n$77.00 &#8211; $109</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n489lbs @ 189.75</p>\n<p>Steers<br />\n713lbs @151.00</p>\n<p>Steers<br />\n847lbs @ 134.85</p>\n<p>Steers<br />\n998lbs @ 123.85</p>\n<p>Steers<br />\n1009lbs @ 122.85</p>\n<p>Steers<br />\n1014lbs @ 121.85</p>\n<p>Steers<br />\n1020lbs @ 122.00</p>\n<p>Heifers<br />\n702lbs @ 135.50</p>\n<p>Heifers<br />\n738lbs @ 138.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(11019,3317,'_et_pb_truncate_post_date','2021-06-12 09:46:23'),(11020,3317,'_et_pb_old_content',''),(11022,3317,'_et_pb_built_for_post_type','page'),(11023,3317,'_et_pb_ab_subjects',''),(11024,3317,'_et_pb_enable_shortcode_tracking',''),(11025,3317,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3317\" /]'),(11026,3317,'_et_pb_custom_css',''),(11027,3317,'_et_pb_gutter_width','3'),(11028,3317,'_et_builder_version','VB|Divi|4.9.4'),(11029,3317,'_et_pb_show_page_creation','off'),(11030,3317,'_wp_old_slug','february-11-2020-market-report'),(11031,3317,'_wp_old_slug','march-17th-2020-market-report'),(11032,3317,'_wp_old_slug','may-1th-2020-market-report-2'),(11033,3317,'_wp_old_slug','july-21st-2020-market-report-2'),(11034,3317,'_wp_old_slug','november-10th-2020-market-report'),(11035,3317,'_global_colors_info','{}'),(11037,3317,'_dp_original','3283'),(11038,3317,'_edit_lock','1622046264:2'),(11039,3317,'_edit_last','2'),(11042,3324,'_wp_attached_file','2021/05/Memorial-Day-2021-Detailed-Consignment-List-6.pdf'),(11043,3324,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2021-Detailed-Consignment-List-6-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2021-Detailed-Consignment-List-6-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2021-Detailed-Consignment-List-6-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2021-Detailed-Consignment-List-6-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11044,3327,'_wp_attached_file','2021/05/Memorial-Day-2021-Detailed-Consignment-List-7.pdf'),(11045,3327,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2021-Detailed-Consignment-List-7-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2021-Detailed-Consignment-List-7-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2021-Detailed-Consignment-List-7-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2021-Detailed-Consignment-List-7-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11046,3330,'_wp_attached_file','2021/05/Memorial-Day-2021-Detailed-Consignment-List-8.pdf'),(11047,3330,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2021-Detailed-Consignment-List-8-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2021-Detailed-Consignment-List-8-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2021-Detailed-Consignment-List-8-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2021-Detailed-Consignment-List-8-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11048,3335,'_wp_attached_file','2021/05/Tuesday-June-1st-Feeder-Cattle-Consignments.pdf'),(11049,3335,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"Tuesday-June-1st-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Tuesday-June-1st-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Tuesday-June-1st-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Tuesday-June-1st-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11051,3344,'_thumbnail_id','786'),(11052,3344,'_et_post_bg_color','#ffffff'),(11053,3344,'_et_post_bg_layout','light'),(11054,3344,'_et_pb_show_title','on'),(11055,3344,'_et_pb_post_hide_nav','default'),(11056,3344,'_et_pb_page_layout','et_right_sidebar'),(11057,3344,'_et_pb_side_nav','off'),(11058,3344,'_et_pb_use_builder','on'),(11059,3344,'_et_pb_first_image',''),(11060,3344,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">June 1st, 2021, 1853 hd;Â  last week 2384 hd; a year ago 4365 hd. Compared to last week the steer calves sold steady. Heifer calves sold steady-$2 higher. Load lots of steers and heifers sold steady-$2 higher &amp; yearlings sold steady. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$184.00</p>\n<p>400-500<br />\n$155.00-$180.00</p>\n<p>500-600<br />\n$150.00-$174.50</p>\n<p>600-700<br />\n$135.00-$158.00</p>\n<p>700-800<br />\n$128.00-$137.50</p>\n<p>800-900<br />\n$131.85-$136.50</p>\n<p>900-1000<br />\n$130.85</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$146.00-$164.00</p>\n<p>400-500<br />\n$130.00-$156.50</p>\n<p>500-600<br />\n$130.00-$155.75</p>\n<p>600-700<br />\n$127.00-$140.50</p>\n<p>700-800<br />\n$122.00-$132.10</p>\n<p>800-900<br />\nNA</p>\n<p>900-1000<br />\nNA</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$70.00 &#8211; $80.50</p>\n<p>Medium Yield<br />\n$61.00 &#8211; $69.00</p>\n<p>Low Yield<br />\n$48.00 &#8211; $60.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $106.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n867lbs @ 136.50</p>\n<p>Steers<br />\n878lbs @ 133.00</p>\n<p>Steers<br />\n891lbs @ 131.85</p>\n<p>Steers<br />\n908lbs @ 130.85</p>\n<p>Heifers<br />\n692lbs @ 134.50</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(11061,3344,'_et_pb_truncate_post_date','2021-06-12 09:46:23'),(11062,3344,'_et_pb_old_content',''),(11064,3344,'_et_pb_built_for_post_type','page'),(11065,3344,'_et_pb_ab_subjects',''),(11066,3344,'_et_pb_enable_shortcode_tracking',''),(11067,3344,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3344\" /]'),(11068,3344,'_et_pb_custom_css',''),(11069,3344,'_et_pb_gutter_width','3'),(11070,3344,'_et_builder_version','VB|Divi|4.9.4'),(11071,3344,'_et_pb_show_page_creation','off'),(11072,3344,'_wp_old_slug','february-11-2020-market-report'),(11073,3344,'_wp_old_slug','march-17th-2020-market-report'),(11074,3344,'_wp_old_slug','may-1th-2020-market-report-2'),(11075,3344,'_wp_old_slug','july-21st-2020-market-report-2'),(11076,3344,'_wp_old_slug','november-10th-2020-market-report'),(11077,3344,'_global_colors_info','{}'),(11079,3344,'_dp_original','3317'),(11080,3344,'_edit_lock','1622651446:2'),(11081,3344,'_edit_last','2'),(11087,2209,'_thumbnail_id','0'),(11088,3358,'_wp_attached_file','2021/06/Tuesday-June-8th-Feeder-Cattle-Consignments.pdf'),(11089,3358,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"Tuesday-June-8th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Tuesday-June-8th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Tuesday-June-8th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Tuesday-June-8th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11090,3366,'_thumbnail_id','786'),(11091,3366,'_et_post_bg_color','#ffffff'),(11092,3366,'_et_post_bg_layout','light'),(11093,3366,'_et_pb_show_title','on'),(11094,3366,'_et_pb_post_hide_nav','default'),(11095,3366,'_et_pb_page_layout','et_right_sidebar'),(11096,3366,'_et_pb_side_nav','off'),(11097,3366,'_et_pb_use_builder','on'),(11098,3366,'_et_pb_first_image',''),(11099,3366,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">June 8th, 2021, 3096 hd;Â  last week 1853 hd; a year ago 2130 hd. Compared to last week,steers &amp; heifers sold steady-$3 higher. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$175.00-$190.00</p>\n<p>400-500<br />\n$170.00-$179.00</p>\n<p>500-600<br />\n$160.00-$179.00</p>\n<p>600-700<br />\n$150.00-$155.00</p>\n<p>700-800<br />\n$142.00-$155.00</p>\n<p>800-900<br />\n$125.00-$135.00</p>\n<p>900-1000<br />\n$120-$127.10</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$157.00-$174.00</p>\n<p>400-500<br />\n$145.00-$155.00</p>\n<p>500-600<br />\n$143.00-$168.00</p>\n<p>600-700<br />\n$134.00-$144.00</p>\n<p>700-800<br />\n$125.00-$135.00</p>\n<p>800-900<br />\n$115.00-$125.00</p>\n<p>900-1000<br />\n$95.00-$115.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$75.00 &#8211; $85.00</p>\n<p>Medium Yield<br />\n$68.00 &#8211; $75.00</p>\n<p>Low Yield<br />\n$45.00 &#8211; $65.00</p>\n<p>Bulls<br />\n$86.00 &#8211; $112.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n838lbs @ 138.00</p>\n<p>Steers<br />\n850lbs @ 140.50</p>\n<p>Steers<br />\n943lbs @ 127.10</p>\n<p>Heifers<br />\n720lbs @ 136.25</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(11100,3366,'_et_pb_truncate_post_date','2021-06-12 09:46:23'),(11101,3366,'_et_pb_old_content',''),(11103,3366,'_et_pb_built_for_post_type','page'),(11104,3366,'_et_pb_ab_subjects',''),(11105,3366,'_et_pb_enable_shortcode_tracking',''),(11106,3366,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3366\" /]'),(11107,3366,'_et_pb_custom_css',''),(11108,3366,'_et_pb_gutter_width','3'),(11109,3366,'_et_builder_version','VB|Divi|4.9.4'),(11110,3366,'_et_pb_show_page_creation','off'),(11111,3366,'_wp_old_slug','february-11-2020-market-report'),(11112,3366,'_wp_old_slug','march-17th-2020-market-report'),(11113,3366,'_wp_old_slug','may-1th-2020-market-report-2'),(11114,3366,'_wp_old_slug','july-21st-2020-market-report-2'),(11115,3366,'_wp_old_slug','november-10th-2020-market-report'),(11116,3366,'_global_colors_info','{}'),(11118,3366,'_dp_original','3344'),(11119,3366,'_edit_lock','1623253005:2'),(11120,3366,'_edit_last','2'),(11123,3376,'_wp_attached_file','2021/06/Hammond-Public-Auction-June-25th.pdf'),(11124,3376,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:40:\"Hammond-Public-Auction-June-25th-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Hammond-Public-Auction-June-25th-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Hammond-Public-Auction-June-25th-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Hammond-Public-Auction-June-25th-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11125,3380,'_wp_attached_file','2021/06/Tuesday-June-15th-Feeder-Cattle-Consignments.pdf'),(11126,3380,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"Tuesday-June-15th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Tuesday-June-15th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Tuesday-June-15th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Tuesday-June-15th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11127,3383,'_wp_attached_file','2021/06/Hammond-Public-Auction-June-25th-1.pdf'),(11128,3383,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:42:\"Hammond-Public-Auction-June-25th-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Hammond-Public-Auction-June-25th-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Hammond-Public-Auction-June-25th-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Hammond-Public-Auction-June-25th-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11129,3385,'_wp_attached_file','2021/06/Smith-Public-Auction-June-27th.pdf'),(11130,3385,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:38:\"Smith-Public-Auction-June-27th-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Smith-Public-Auction-June-27th-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Smith-Public-Auction-June-27th-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Smith-Public-Auction-June-27th-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11131,3390,'_thumbnail_id','786'),(11132,3390,'_et_post_bg_color','#ffffff'),(11133,3390,'_et_post_bg_layout','light'),(11134,3390,'_et_pb_show_title','on'),(11135,3390,'_et_pb_post_hide_nav','default'),(11136,3390,'_et_pb_page_layout','et_right_sidebar'),(11137,3390,'_et_pb_side_nav','off'),(11138,3390,'_et_pb_use_builder','on'),(11139,3390,'_et_pb_first_image',''),(11140,3390,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">June 15th, 2021, 1792 hd;Â  last week 3096 hd; a year ago 2225 hd. Feeder cattle of all classes sold steady-$5 higher. Steers weighing 500-550lbs sold up to $10 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$180.00</p>\n<p>400-500<br />\n$150.00-$179.50</p>\n<p>500-600<br />\n$150.00-$195.00</p>\n<p>600-700<br />\n$140.00-$160.75</p>\n<p>700-800<br />\n$132.00-$152.00</p>\n<p>800-900<br />\n$122.00-$142.00</p>\n<p>900-1000<br />\n$120-$132.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$145.00-$176.25</p>\n<p>400-500<br />\n$140.00-$165.50</p>\n<p>500-600<br />\n$137.00-$159.50</p>\n<p>600-700<br />\n$130.00-$150.00</p>\n<p>700-800<br />\n$122.00-$136.75</p>\n<p>800-900<br />\n$114.00-$121.75</p>\n<p>900-1000<br />\n$102.00-$116.25</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$71.00 &#8211; $82.00</p>\n<p>Medium Yield<br />\n$62.00 &#8211; $70.00</p>\n<p>Low Yield<br />\n$50.00 &#8211; $61.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $115.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n501lbs @195.00</p>\n<p>Steers<br />\n568lbs @170.00</p>\n<p>Steers<br />\n765lbs @149.75</p>\n<p>Steers<br />\n784lbs @ 143.50</p>\n<p>Steers<br />\n856lbs @ 142.00</p>\n<p>Steers<br />\n965lbs @ 131.75</p>\n<p>Steers<br />\n967lbs @ 131.85</p>\n<p>Steers<br />\n975lbs @ 132.50</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(11141,3390,'_et_pb_truncate_post_date','2021-06-21 13:18:33'),(11142,3390,'_et_pb_old_content',''),(11144,3390,'_et_pb_built_for_post_type','page'),(11145,3390,'_et_pb_ab_subjects',''),(11146,3390,'_et_pb_enable_shortcode_tracking',''),(11147,3390,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3390\" /]'),(11148,3390,'_et_pb_custom_css',''),(11149,3390,'_et_pb_gutter_width','3'),(11150,3390,'_et_builder_version','VB|Divi|4.9.4'),(11151,3390,'_et_pb_show_page_creation','off'),(11152,3390,'_wp_old_slug','february-11-2020-market-report'),(11153,3390,'_wp_old_slug','march-17th-2020-market-report'),(11154,3390,'_wp_old_slug','may-1th-2020-market-report-2'),(11155,3390,'_wp_old_slug','july-21st-2020-market-report-2'),(11156,3390,'_wp_old_slug','november-10th-2020-market-report'),(11157,3390,'_global_colors_info','{}'),(11160,3390,'_dp_original','3366'),(11161,3390,'_edit_lock','1623862577:2'),(11162,3390,'_edit_last','2'),(11163,3398,'_wp_attached_file','2021/06/Tuesday-June-22nd-Feeder-Cattle-Consignments.pdf'),(11164,3398,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"Tuesday-June-22nd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Tuesday-June-22nd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Tuesday-June-22nd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Tuesday-June-22nd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11165,3402,'_thumbnail_id','786'),(11166,3402,'_et_post_bg_color','#ffffff'),(11167,3402,'_et_post_bg_layout','light'),(11168,3402,'_et_pb_show_title','on'),(11169,3402,'_et_pb_post_hide_nav','default'),(11170,3402,'_et_pb_page_layout','et_right_sidebar'),(11171,3402,'_et_pb_side_nav','off'),(11172,3402,'_et_pb_use_builder','on'),(11173,3402,'_et_pb_first_image',''),(11174,3402,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">June 22nd, 2021, 2581 hd;Â  last week 1792 hd; a year ago 2653 hd. Feeder cattle sold steady-$6 higher. Load lots sold $3-$6 higher. Slaughter cows &amp; bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$194.00</p>\n<p>400-500<br />\n$160.00-$187.00</p>\n<p>500-600<br />\n$160.00-$187.50</p>\n<p>600-700<br />\n$140.00-$170.00</p>\n<p>700-800<br />\n$130.00-$152.50</p>\n<p>800-900<br />\n$130.00-$145.00</p>\n<p>900-1000<br />\n$125.00-$142.85</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$190.00</p>\n<p>400-500<br />\n$145.00-$164.00</p>\n<p>500-600<br />\n$135.00-$161.50</p>\n<p>600-700<br />\n$130.00-$147.00</p>\n<p>700-800<br />\n$124.00-$145.25</p>\n<p>800-900<br />\n$121.50-$123.50</p>\n<p>900-1000<br />\n$90.00-$105.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$65.00 &#8211; $79.00</p>\n<p>Medium Yield<br />\n$51.00 &#8211; $64.00</p>\n<p>Low Yield<br />\n$35.00 &#8211; $50.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $104.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n787lbs @151.85</p>\n<p>Steers<br />\n874lbs @145.00</p>\n<p>Steers<br />\n946lbs @142.85</p>\n<p>Steers<br />\n961lbs@138.00</p>\n<p>Steers<br />\n963lbs @ 137.50</p>\n<p>Steers<br />\n964lbs @ 137.50</p>\n<p>Heifers<br />\n712lbs @ 144.75</p>\n<p>Heifers<br />\n720lbs @ 144.75</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(11175,3402,'_et_pb_truncate_post_date','2021-06-26 21:03:36'),(11176,3402,'_et_pb_old_content',''),(11178,3402,'_et_pb_built_for_post_type','page'),(11179,3402,'_et_pb_ab_subjects',''),(11180,3402,'_et_pb_enable_shortcode_tracking',''),(11181,3402,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3402\" /]'),(11182,3402,'_et_pb_custom_css',''),(11183,3402,'_et_pb_gutter_width','3'),(11184,3402,'_et_builder_version','VB|Divi|4.9.4'),(11185,3402,'_et_pb_show_page_creation','off'),(11186,3402,'_wp_old_slug','february-11-2020-market-report'),(11187,3402,'_wp_old_slug','march-17th-2020-market-report'),(11188,3402,'_wp_old_slug','may-1th-2020-market-report-2'),(11189,3402,'_wp_old_slug','july-21st-2020-market-report-2'),(11190,3402,'_wp_old_slug','november-10th-2020-market-report'),(11191,3402,'_global_colors_info','{}'),(11193,3402,'_dp_original','3390'),(11194,3402,'_edit_lock','1624462517:2'),(11195,3402,'_edit_last','2'),(11198,3414,'_wp_attached_file','2021/06/Tuesday-June-29th-Feeder-Cattle-Consignments.pdf'),(11199,3414,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"Tuesday-June-29th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Tuesday-June-29th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Tuesday-June-29th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Tuesday-June-29th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11200,3418,'_thumbnail_id','786'),(11201,3418,'_et_post_bg_color','#ffffff'),(11202,3418,'_et_post_bg_layout','light'),(11203,3418,'_et_pb_show_title','on'),(11204,3418,'_et_pb_post_hide_nav','default'),(11205,3418,'_et_pb_page_layout','et_right_sidebar'),(11206,3418,'_et_pb_side_nav','off'),(11207,3418,'_et_pb_use_builder','on'),(11208,3418,'_et_pb_first_image',''),(11209,3418,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_6 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_18\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_24  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_36  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">June 29th, 2021, 2086 hd;Â  last week 2582 hd; a year ago 1885 hd. Feeder cattle of all classes sold steady-$4 higher with the most advance on yearlings. Slaughter cows &amp; bulls sold $2 higher. We will have a special feeder calf sale Tuesday, July 6th @ 10:30 am. Happy 4th from everyone at Kingsville Livestock! Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_19\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_25  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_37  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$201.00</p>\n<p>400-500<br />\n$160.00-$195.00</p>\n<p>500-600<br />\n$150.00-$183.00</p>\n<p>600-700<br />\n$140.00-$171.50</p>\n<p>700-800<br />\n$137.00-$160.00</p>\n<p>800-900<br />\n$130.00-$154.75</p>\n<p>900-1000<br />\n$115.00-$132</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_38  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$145.00-$163.00</p>\n<p>400-500<br />\n$140.00-$160.00</p>\n<p>500-600<br />\n$135.00-$165.00</p>\n<p>600-700<br />\n$128.00-$150.00</p>\n<p>700-800<br />\n$130.00-$149.25</p>\n<p>800-900<br />\n$113.00-$120.00</p>\n<p>900-1000<br />\n$110.00-$115.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_26  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_39  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$71.00 &#8211; $82.00</p>\n<p>Medium Yield<br />\n$62.00 &#8211; $70.00</p>\n<p>Low Yield<br />\n$48.00 &#8211; $61.00</p>\n<p>Bulls<br />\n$75.00 &#8211; $108.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_40  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n698lbs @156.00</p>\n<p>Steers<br />\n724lbs @153.85</p>\n<p>Steers<br />\n764lbs @154.75</p>\n<p>Steers<br />\n875lbs @142.75</p>\n<p>Heifers<br />\n642lbs @ 147.00</p>\n<p>Heifers<br />\n644lbs @ 146.75</p>\n<p>Heifers<br />\n665lbs @ 145.50</p>\n<p>Heifers<br />\n678lbs @ 145.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_41  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_20\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_27  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_6_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_6 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(11210,3418,'_et_pb_truncate_post_date','2021-07-24 06:19:00'),(11211,3418,'_et_pb_old_content',''),(11213,3418,'_et_pb_built_for_post_type','page'),(11214,3418,'_et_pb_ab_subjects',''),(11215,3418,'_et_pb_enable_shortcode_tracking',''),(11216,3418,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3418\" /]'),(11217,3418,'_et_pb_custom_css',''),(11218,3418,'_et_pb_gutter_width','3'),(11219,3418,'_et_builder_version','VB|Divi|4.9.7'),(11220,3418,'_et_pb_show_page_creation','off'),(11221,3418,'_wp_old_slug','february-11-2020-market-report'),(11222,3418,'_wp_old_slug','march-17th-2020-market-report'),(11223,3418,'_wp_old_slug','may-1th-2020-market-report-2'),(11224,3418,'_wp_old_slug','july-21st-2020-market-report-2'),(11225,3418,'_wp_old_slug','november-10th-2020-market-report'),(11226,3418,'_global_colors_info','{}'),(11228,3418,'_dp_original','3402'),(11229,3418,'_edit_lock','1625067031:2'),(11230,3418,'_edit_last','2'),(11233,3426,'_wp_attached_file','2021/07/Tuesday-July-6th-Feeder-Cattle-Consignments.pdf'),(11234,3426,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"Tuesday-July-6th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Tuesday-July-6th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Tuesday-July-6th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Tuesday-July-6th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11235,3429,'_wp_attached_file','2021/07/Baldus-Estate-July-18th.pdf'),(11236,3429,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:31:\"Baldus-Estate-July-18th-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Baldus-Estate-July-18th-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Baldus-Estate-July-18th-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Baldus-Estate-July-18th-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11237,3433,'_wp_attached_file','2021/07/Moran-Public-July-23rd.pdf'),(11238,3433,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"Moran-Public-July-23rd-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Moran-Public-July-23rd-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"Moran-Public-July-23rd-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Moran-Public-July-23rd-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11239,3435,'_wp_attached_file','2021/07/Moran-Public-July-23rd-1.pdf'),(11240,3435,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"Moran-Public-July-23rd-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Moran-Public-July-23rd-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Moran-Public-July-23rd-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Moran-Public-July-23rd-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11241,3441,'_thumbnail_id','786'),(11242,3441,'_et_post_bg_color','#ffffff'),(11243,3441,'_et_post_bg_layout','light'),(11244,3441,'_et_pb_show_title','on'),(11245,3441,'_et_pb_post_hide_nav','default'),(11246,3441,'_et_pb_page_layout','et_right_sidebar'),(11247,3441,'_et_pb_side_nav','off'),(11248,3441,'_et_pb_use_builder','on'),(11249,3441,'_et_pb_first_image',''),(11250,3441,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_4 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_12\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_16  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_24  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">July 6th, 2021, 889 hd;Â  last week 2086 hd; a year ago 1329 hd. Feeder steers and heifers traded steady &#8211; $5 higher. Slaughter cows &amp; bulls sold steady. We will have a special feeder calf sale Tuesday, July 6th @ 10:30 am. Happy 4th from everyone at Kingsville Livestock! Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_13\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_17  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$165.00-$184.50</p>\n<p>400-500<br />\n$160.00-$200.00</p>\n<p>500-600<br />\n$157.00-$192.00</p>\n<p>600-700<br />\n$149.00-$177.00</p>\n<p>700-800<br />\n$137.00-$153.85</p>\n<p>800-900<br />\n$122.00-$141.25</p>\n<p>900-1000<br />\n$127.00-$131.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_26  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$145.00-$160.00</p>\n<p>400-500<br />\n$138.00-$170.00</p>\n<p>500-600<br />\n$135.50-$148.50</p>\n<p>600-700<br />\n$138.50-$148.50</p>\n<p>700-800<br />\n$135.00-$146.60</p>\n<p>800-900<br />\n$120.00-$122.75</p>\n<p>900-1000<br />\n$110.00-$117.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_18  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_27  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$70.00 &#8211; $78.00</p>\n<p>Medium Yield<br />\n$61.00 &#8211; $69.00</p>\n<p>Low Yield<br />\n$51.00 &#8211; $60.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $105.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_28  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_29  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_14\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_19  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_4_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_4 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(11251,3441,'_et_pb_truncate_post_date','2021-07-24 06:19:00'),(11252,3441,'_et_pb_old_content',''),(11254,3441,'_et_pb_built_for_post_type','page'),(11255,3441,'_et_pb_ab_subjects',''),(11256,3441,'_et_pb_enable_shortcode_tracking',''),(11257,3441,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3441\" /]'),(11258,3441,'_et_pb_custom_css',''),(11259,3441,'_et_pb_gutter_width','3'),(11260,3441,'_et_builder_version','VB|Divi|4.9.7'),(11261,3441,'_et_pb_show_page_creation','off'),(11262,3441,'_wp_old_slug','february-11-2020-market-report'),(11263,3441,'_wp_old_slug','march-17th-2020-market-report'),(11264,3441,'_wp_old_slug','may-1th-2020-market-report-2'),(11265,3441,'_wp_old_slug','july-21st-2020-market-report-2'),(11266,3441,'_wp_old_slug','november-10th-2020-market-report'),(11267,3441,'_global_colors_info','{}'),(11269,3441,'_dp_original','3418'),(11270,3441,'_edit_lock','1625673726:2'),(11271,3441,'_edit_last','2'),(11273,3449,'_wp_attached_file','2021/07/Jennings-Public-Auction-August-7th.pdf'),(11274,3449,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:42:\"Jennings-Public-Auction-August-7th-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Jennings-Public-Auction-August-7th-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Jennings-Public-Auction-August-7th-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Jennings-Public-Auction-August-7th-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11275,3458,'_wp_attached_file','2021/07/Tuesday-July-13th-Feeder-Cattle-Consignments.pdf'),(11276,3458,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"Tuesday-July-13th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Tuesday-July-13th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Tuesday-July-13th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Tuesday-July-13th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11277,3462,'_wp_attached_file','2021/07/Colson-Auction-July-31st.pdf'),(11278,3462,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"Colson-Auction-July-31st-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Colson-Auction-July-31st-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Colson-Auction-July-31st-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Colson-Auction-July-31st-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11279,3468,'_thumbnail_id','786'),(11280,3468,'_et_post_bg_color','#ffffff'),(11281,3468,'_et_post_bg_layout','light'),(11282,3468,'_et_pb_show_title','on'),(11283,3468,'_et_pb_post_hide_nav','default'),(11284,3468,'_et_pb_page_layout','et_right_sidebar'),(11285,3468,'_et_pb_side_nav','off'),(11286,3468,'_et_pb_use_builder','on'),(11287,3468,'_et_pb_first_image',''),(11288,3468,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">July 13th, 2021,Â 987 hd;Â  last week 889 hd; a year ago 1329 hd. Feeder steers and heifers sold $3 &#8211; $7 higher with good buyer activity. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$167.50-$185</p>\n<p>400-500<br />\n$160.00-$200.00</p>\n<p>500-600<br />\n$150.00-$195.00</p>\n<p>600-700<br />\n$145.00-$176.00</p>\n<p>700-800<br />\n$140.00-$159.50</p>\n<p>800-900<br />\n$134.00-$153.10</p>\n<p>900-1000<br />\n$122.00-$137.25</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$145.00-$175.00</p>\n<p>400-500<br />\n$140.00-$163.00</p>\n<p>500-600<br />\n$135.00-$163.50</p>\n<p>600-700<br />\n$132.00-$149.25</p>\n<p>700-800<br />\n$158.00-$152.00</p>\n<p>800-900<br />\n$131.75-$137.00</p>\n<p>900-1000<br />\n$112.00-$120.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$68.00 &#8211; $77.00</p>\n<p>Medium Yield<br />\n$59.00 &#8211; $67.00</p>\n<p>Low Yield<br />\n$42.00 &#8211; $58.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $104.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n611lbs @$176.00</p>\n<p>Steers<br />\n728lbs @$158.50</p>\n<p>Steers<br />\n848lbs @$153.10</p>\n<p>Heifers<br />\n749lbs @$152.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(11289,3468,'_et_pb_truncate_post_date','2021-07-24 06:19:00'),(11290,3468,'_et_pb_old_content',''),(11292,3468,'_et_pb_built_for_post_type','page'),(11293,3468,'_et_pb_ab_subjects',''),(11294,3468,'_et_pb_enable_shortcode_tracking',''),(11295,3468,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3468\" /]'),(11296,3468,'_et_pb_custom_css',''),(11297,3468,'_et_pb_gutter_width','3'),(11298,3468,'_et_builder_version','VB|Divi|4.9.7'),(11299,3468,'_et_pb_show_page_creation','off'),(11300,3468,'_wp_old_slug','february-11-2020-market-report'),(11301,3468,'_wp_old_slug','march-17th-2020-market-report'),(11302,3468,'_wp_old_slug','may-1th-2020-market-report-2'),(11303,3468,'_wp_old_slug','july-21st-2020-market-report-2'),(11304,3468,'_wp_old_slug','november-10th-2020-market-report'),(11305,3468,'_global_colors_info','{}'),(11307,3468,'_dp_original','3441'),(11308,3468,'_edit_lock','1626463171:2'),(11309,3468,'_edit_last','2'),(11312,3473,'_wp_attached_file','2021/07/Tuesday-July-20th-Feeder-Cattle-Consignments.pdf'),(11313,3473,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"Tuesday-July-20th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Tuesday-July-20th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Tuesday-July-20th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Tuesday-July-20th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11314,3482,'_wp_attached_file','2021/07/August-62021-Cow-Sale.pdf'),(11315,3482,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:29:\"August-62021-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"August-62021-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"August-62021-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"August-62021-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11316,3483,'_wp_attached_file','2021/07/August-212021-Cow-Sale.pdf'),(11317,3483,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"August-212021-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"August-212021-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"August-212021-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"August-212021-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11319,3488,'_thumbnail_id','786'),(11320,3488,'_et_post_bg_color','#ffffff'),(11321,3488,'_et_post_bg_layout','light'),(11322,3488,'_et_pb_show_title','on'),(11323,3488,'_et_pb_post_hide_nav','default'),(11324,3488,'_et_pb_page_layout','et_right_sidebar'),(11325,3488,'_et_pb_side_nav','off'),(11326,3488,'_et_pb_use_builder','on'),(11327,3488,'_et_pb_first_image',''),(11328,3488,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">July 20th, 2021, 1289 hd;Â  last week 987 hd; a year ago 1211 hd. Steers &amp; heifers under 700lbs sold steady-$5 higher &amp; 700lbs &amp; up sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$175.00-$201.00</p>\n<p>400-500<br />\n$168.00-$201.00</p>\n<p>500-600<br />\n$155.00-$185.00</p>\n<p>600-700<br />\n$155.00-$181.00</p>\n<p>700-800<br />\n$146.00-$160.00</p>\n<p>800-900<br />\n$134.50-$152.50</p>\n<p>900-1000<br />\n$127.00-$136.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$148.00-$176.00</p>\n<p>400-500<br />\n$144.00-$175.50</p>\n<p>500-600<br />\n$137.00-$162.00</p>\n<p>600-700<br />\n$130.00-$154.00</p>\n<p>700-800<br />\n$133.00-$148.75</p>\n<p>800-900<br />\n$130.00-$138.50</p>\n<p>900-1000<br />\n$120.00-$122.25</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$68.00 &#8211; $80.00</p>\n<p>Medium Yield<br />\n$60.00 &#8211; $67.00</p>\n<p>Low Yield<br />\n$46.00 &#8211; $59.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $107.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n550lbs @$185.00</p>\n<p>Steers<br />\n601lbs @$181.00</p>\n<p>Steers<br />\n871lbs @$151.00</p>\n<p>Heifers<br />\n669lbs @$151.75</p>\n<p>HeifersÂ <br />\n799lbs @$144.75</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(11329,3488,'_et_pb_truncate_post_date','2021-07-24 06:18:59'),(11330,3488,'_et_pb_old_content',''),(11332,3488,'_et_pb_built_for_post_type','page'),(11333,3488,'_et_pb_ab_subjects',''),(11334,3488,'_et_pb_enable_shortcode_tracking',''),(11335,3488,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3488\" /]'),(11336,3488,'_et_pb_custom_css',''),(11337,3488,'_et_pb_gutter_width','3'),(11338,3488,'_et_builder_version','VB|Divi|4.9.7'),(11339,3488,'_et_pb_show_page_creation','off'),(11340,3488,'_wp_old_slug','february-11-2020-market-report'),(11341,3488,'_wp_old_slug','march-17th-2020-market-report'),(11342,3488,'_wp_old_slug','may-1th-2020-market-report-2'),(11343,3488,'_wp_old_slug','july-21st-2020-market-report-2'),(11344,3488,'_wp_old_slug','november-10th-2020-market-report'),(11345,3488,'_global_colors_info','{}'),(11347,3488,'_dp_original','3468'),(11348,3488,'_edit_lock','1626889186:2'),(11349,3488,'_edit_last','2'),(11351,3494,'_wp_attached_file','2021/07/August-62021-Cow-Sale-1.pdf'),(11352,3494,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:31:\"August-62021-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"August-62021-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"August-62021-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"August-62021-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11353,3501,'_wp_attached_file','2021/07/Tuesday-July-27th-Feeder-Cattle-Consignments.pdf'),(11354,3501,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"Tuesday-July-27th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Tuesday-July-27th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Tuesday-July-27th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Tuesday-July-27th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11355,3506,'_wp_attached_file','2021/07/August-212021-Cow-Sale-1.pdf'),(11356,3506,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"August-212021-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"August-212021-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"August-212021-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"August-212021-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11357,3512,'_thumbnail_id','786'),(11358,3512,'_et_post_bg_color','#ffffff'),(11359,3512,'_et_post_bg_layout','light'),(11360,3512,'_et_pb_show_title','on'),(11361,3512,'_et_pb_post_hide_nav','default'),(11362,3512,'_et_pb_page_layout','et_right_sidebar'),(11363,3512,'_et_pb_side_nav','off'),(11364,3512,'_et_pb_use_builder','on'),(11365,3512,'_et_pb_first_image',''),(11366,3512,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">July 27th, 2021, 989 hd;Â  last week 1289 hd; a year ago 987 hd. Steers &amp; heifers sold steady-$3 higher. Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$200.00</p>\n<p>400-500<br />\n$150.00-$197.00</p>\n<p>500-600<br />\n$150.00-$188.00</p>\n<p>600-700<br />\n$142.00-$176.00</p>\n<p>700-800<br />\n$145.00-$163.50</p>\n<p>800-900<br />\n$137.50-$147.75</p>\n<p>900-1050<br />\n$130.00-$136.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$181.00</p>\n<p>400-500<br />\n$145.00-$181.00</p>\n<p>500-600<br />\n$140.00-$161.25</p>\n<p>600-700<br />\n$145.00-$158.00</p>\n<p>700-800<br />\n$137.00-$150.00</p>\n<p>800-900<br />\n$120.00-$122.00</p>\n<p>1137<br />\n$101.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$71.00 &#8211; $80.00</p>\n<p>Medium Yield<br />\n$61.00 &#8211; $70.00</p>\n<p>Low Yield<br />\n$51.00 &#8211; $60.00</p>\n<p>Bulls<br />\n$79.00 &#8211; $114.00</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n727lbs @$163.50</p>\n<p>Steers<br />\n866lbs @$147.75</p>\n<p>Steers<br />\n1053lbs @$130.00</p>\n<p>Heifers<br />\n676lbs @$155.75</p>\n<p>Heifers<br />\n790lbs @$147.75</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(11367,3512,'_et_pb_truncate_post_date','2021-07-28 16:00:03'),(11368,3512,'_et_pb_old_content',''),(11370,3512,'_et_pb_built_for_post_type','page'),(11371,3512,'_et_pb_ab_subjects',''),(11372,3512,'_et_pb_enable_shortcode_tracking',''),(11373,3512,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3512\" /]'),(11374,3512,'_et_pb_custom_css',''),(11375,3512,'_et_pb_gutter_width','3'),(11376,3512,'_et_builder_version','VB|Divi|4.9.7'),(11377,3512,'_et_pb_show_page_creation','off'),(11378,3512,'_wp_old_slug','february-11-2020-market-report'),(11379,3512,'_wp_old_slug','march-17th-2020-market-report'),(11380,3512,'_wp_old_slug','may-1th-2020-market-report-2'),(11381,3512,'_wp_old_slug','july-21st-2020-market-report-2'),(11382,3512,'_wp_old_slug','november-10th-2020-market-report'),(11383,3512,'_global_colors_info','{}'),(11385,3512,'_dp_original','3488'),(11386,3512,'_edit_lock','1627484806:2'),(11387,3512,'_edit_last','2'),(11389,3522,'_wp_attached_file','2021/08/TuesdayAugust-3rd-Feeder-Cattle-Consignments.pdf'),(11390,3522,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"TuesdayAugust-3rd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"TuesdayAugust-3rd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-3rd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"TuesdayAugust-3rd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11391,3527,'_thumbnail_id','786'),(11392,3527,'_et_post_bg_color','#ffffff'),(11393,3527,'_et_post_bg_layout','light'),(11394,3527,'_et_pb_show_title','on'),(11395,3527,'_et_pb_post_hide_nav','default'),(11396,3527,'_et_pb_page_layout','et_right_sidebar'),(11397,3527,'_et_pb_side_nav','off'),(11398,3527,'_et_pb_use_builder','on'),(11399,3527,'_et_pb_first_image',''),(11400,3527,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">August 3, 2021, 1731 hd;Â  last week 989 hd; a year ago 1676 hd. Feeder cattle sold steady with spots selling up to $5 higher. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$177.00-$197.50</p>\n<p>400-500<br />\n$165.00-$198.50</p>\n<p>500-600<br />\n$155.00-$188.00</p>\n<p>600-700<br />\n$150.00-$180.00</p>\n<p>700-800<br />\n$145.00-$165.00</p>\n<p>800-900<br />\n$153.25-$154.60</p>\n<p>900-1000<br />\n$138.25</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$190.50</p>\n<p>400-500<br />\n$150.00-$161.00</p>\n<p>500-600<br />\n$143.00-$164.50</p>\n<p>600-700<br />\n$142.00-$162.00</p>\n<p>700-800<br />\n$141.25-$155.10</p>\n<p>800-900<br />\n$120.00-$130.00</p>\n<p>900-1000<br />\n$120.00-$125.25</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column --><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$73.00 &#8211; $82.00</p>\n<p>Medium Yield<br />\n$62.00 &#8211; $72.00</p>\n<p>Low Yield<br />\n$55.00 &#8211; $61.00</p>\n<p>Bulls<br />\n$82.00 &#8211; $102.50</p>\n<p>&nbsp;</div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n616lbs @$180.00</p>\n<p>Steers<br />\n716lbs @$165.00</p>\n<p>Steers<br />\n856lbs @$154.60</p>\n<p>Heifers<br />\n642lbs @$159.00</p></div>\n			</div> <!-- .et_pb_text --><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div> <!-- .et_pb_text -->\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row --><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div> <!-- .et_pb_column -->\n				\n				\n			</div> <!-- .et_pb_row -->\n				\n				\n			</div> <!-- .et_pb_section -->\n'),(11401,3527,'_et_pb_truncate_post_date','2021-08-05 21:41:11'),(11402,3527,'_et_pb_old_content',''),(11404,3527,'_et_pb_built_for_post_type','page'),(11405,3527,'_et_pb_ab_subjects',''),(11406,3527,'_et_pb_enable_shortcode_tracking',''),(11407,3527,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3527\" /]'),(11408,3527,'_et_pb_custom_css',''),(11409,3527,'_et_pb_gutter_width','3'),(11410,3527,'_et_builder_version','VB|Divi|4.9.7'),(11411,3527,'_et_pb_show_page_creation','off'),(11412,3527,'_wp_old_slug','february-11-2020-market-report'),(11413,3527,'_wp_old_slug','march-17th-2020-market-report'),(11414,3527,'_wp_old_slug','may-1th-2020-market-report-2'),(11415,3527,'_wp_old_slug','july-21st-2020-market-report-2'),(11416,3527,'_wp_old_slug','november-10th-2020-market-report'),(11417,3527,'_global_colors_info','{}'),(11419,3527,'_dp_original','3512'),(11420,3527,'_edit_lock','1628096616:2'),(11421,3527,'_edit_last','2'),(11424,1118,'_global_colors_info','{}'),(11425,3538,'_wp_attached_file','2021/08/TuesdayAugust-10th-Feeder-Cattle-Consignments.pdf'),(11426,3538,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"TuesdayAugust-10th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-10th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"TuesdayAugust-10th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-10th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11427,3540,'_wp_attached_file','2021/08/August-212021-Cow-Sale.pdf'),(11428,3540,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"August-212021-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"August-212021-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"August-212021-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"August-212021-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11429,3546,'_wp_attached_file','2021/08/August-212021-Cow-Sale-1.pdf'),(11430,3546,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"August-212021-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"August-212021-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"August-212021-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"August-212021-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11431,3550,'_thumbnail_id','786'),(11432,3550,'_et_post_bg_color','#ffffff'),(11433,3550,'_et_post_bg_layout','light'),(11434,3550,'_et_pb_show_title','on'),(11435,3550,'_et_pb_post_hide_nav','default'),(11436,3550,'_et_pb_page_layout','et_right_sidebar'),(11437,3550,'_et_pb_side_nav','off'),(11438,3550,'_et_pb_use_builder','on'),(11439,3550,'_et_pb_first_image',''),(11440,3550,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">August 10, 2021, 1375 hd;Â  last week 1731 hd; a year ago 1217 hd. Feeder cattle sold steady-$3 higher &amp; load lots sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$174.00-$200.00</p>\n<p>400-500<br />\n$160.00-$195.00</p>\n<p>500-600<br />\n$150.00-$192.75</p>\n<p>600-700<br />\n$150.00-$176.00</p>\n<p>700-800<br />\n$147.00-$165.00</p>\n<p>800-900<br />\n$136.00-$160.25</p>\n<p>900-1000<br />\n$141.85-$145.60</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$172.50</p>\n<p>400-500<br />\n$146.00-$172.50</p>\n<p>500-600<br />\n$137.00-$162.25</p>\n<p>600-700<br />\n$139.00-$153.50</p>\n<p>700-800<br />\n$140.00-$149.00</p>\n<p>800-900<br />\n$119.00-$122.00</p>\n<p>900-1000<br />\nNA</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$73.00 &#8211; $84.50</p>\n<p>Medium Yield<br />\n$62.00 &#8211; $72.00</p>\n<p>Low Yield<br />\n$50.00 &#8211; $61.00</p>\n<p>Bulls<br />\n$83.00 &#8211; $102.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n805lbs @$160.25</p>\n<p>Steers<br />\n886lbs @$147.10</p>\n<p>Steers<br />\n911lbs @$145.60</p>\n<p>Steers<br />\n963lbs @$142.85</p>\n<p>Steers<br />\n982lbs @$141.85</p>\n<p>Heifers<br />\n661lbs @$153.50</p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div>\n'),(11441,3550,'_et_pb_truncate_post_date','2021-08-20 13:25:19'),(11442,3550,'_et_pb_old_content',''),(11444,3550,'_et_pb_built_for_post_type','page'),(11445,3550,'_et_pb_ab_subjects',''),(11446,3550,'_et_pb_enable_shortcode_tracking',''),(11447,3550,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3550\" /]'),(11448,3550,'_et_pb_custom_css',''),(11449,3550,'_et_pb_gutter_width','3'),(11450,3550,'_et_builder_version','VB|Divi|4.9.7'),(11451,3550,'_et_pb_show_page_creation','off'),(11452,3550,'_wp_old_slug','february-11-2020-market-report'),(11453,3550,'_wp_old_slug','march-17th-2020-market-report'),(11454,3550,'_wp_old_slug','may-1th-2020-market-report-2'),(11455,3550,'_wp_old_slug','july-21st-2020-market-report-2'),(11456,3550,'_wp_old_slug','november-10th-2020-market-report'),(11457,3550,'_global_colors_info','{}'),(11459,3550,'_dp_original','3527'),(11460,3550,'_edit_lock','1628697091:2'),(11461,3550,'_edit_last','2'),(11463,3555,'_wp_attached_file','2021/08/2021-Labor-Day-Sale-Flyer.pdf'),(11464,3555,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"2021-Labor-Day-Sale-Flyer-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"2021-Labor-Day-Sale-Flyer-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"2021-Labor-Day-Sale-Flyer-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"2021-Labor-Day-Sale-Flyer-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11465,723,'_global_colors_info','{}'),(11466,3562,'_wp_attached_file','2021/08/August-212021-Cow-Sale-2.pdf'),(11467,3562,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"August-212021-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"August-212021-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"August-212021-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"August-212021-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11468,3567,'_wp_attached_file','2021/08/TuesdayAugust-17th-Feeder-Cattle-Consignments.pdf'),(11469,3567,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"TuesdayAugust-17th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-17th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"TuesdayAugust-17th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-17th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11470,3572,'_thumbnail_id','786'),(11471,3572,'_et_post_bg_color','#ffffff'),(11472,3572,'_et_post_bg_layout','light'),(11473,3572,'_et_pb_show_title','on'),(11474,3572,'_et_pb_post_hide_nav','default'),(11475,3572,'_et_pb_page_layout','et_right_sidebar'),(11476,3572,'_et_pb_side_nav','off'),(11477,3572,'_et_pb_use_builder','on'),(11478,3572,'_et_pb_first_image',''),(11479,3572,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">August 17, 2021, 1848 hd;Â  last week 1375 hd; a year ago 1404 hd. Feeder cattle sold steady-$3. Slaughter cows &amp; bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$197.00</p>\n<p>400-500<br />\n$160.00-$202.00</p>\n<p>500-600<br />\n$157.00-$192.00</p>\n<p>600-700<br />\n$142.00-$175.50</p>\n<p>700-800<br />\n$142.00-$168.25</p>\n<p>800-900<br />\n$137.00-$149.75</p>\n<p>900-1000<br />\n$124.00-$141.25</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$182.00</p>\n<p>400-500<br />\n$148.00-$179.00</p>\n<p>500-600<br />\n$133.00-$165.50</p>\n<p>600-700<br />\n$138.00-$162.25</p>\n<p>700-800<br />\n$132.00-$142.00</p>\n<p>800-900<br />\n$126.00-$134.00</p>\n<p>900-1000<br />\n$101.00-$110.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$70.00 &#8211; $78.00</p>\n<p>Medium Yield<br />\n$61.00 &#8211; $69.00</p>\n<p>Low Yield<br />\n$51.00 &#8211; $60.00</p>\n<p>Bulls<br />\n$82.00 &#8211; $107.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n688lbs @$165.00</p>\n<p>Steers<br />\n714lbs @$163.85</p>\n<p>Steers<br />\n720lbs @$166.75</p>\n<p>Steers<br />\n889lbs @$149.75</p>\n<p>Heifers<br />\n636lbs @$158.50</p>\n<p>Heifers<br />\n687lbs @$150.50</p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div>\n'),(11480,3572,'_et_pb_truncate_post_date','2021-08-20 13:25:19'),(11481,3572,'_et_pb_old_content',''),(11483,3572,'_et_pb_built_for_post_type','page'),(11484,3572,'_et_pb_ab_subjects',''),(11485,3572,'_et_pb_enable_shortcode_tracking',''),(11486,3572,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3572\" /]'),(11487,3572,'_et_pb_custom_css',''),(11488,3572,'_et_pb_gutter_width','3'),(11489,3572,'_et_builder_version','VB|Divi|4.9.7'),(11490,3572,'_et_pb_show_page_creation','off'),(11491,3572,'_wp_old_slug','february-11-2020-market-report'),(11492,3572,'_wp_old_slug','march-17th-2020-market-report'),(11493,3572,'_wp_old_slug','may-1th-2020-market-report-2'),(11494,3572,'_wp_old_slug','july-21st-2020-market-report-2'),(11495,3572,'_wp_old_slug','november-10th-2020-market-report'),(11496,3572,'_global_colors_info','{}'),(11498,3572,'_dp_original','3550'),(11499,3572,'_edit_lock','1629299864:2'),(11500,3572,'_edit_last','2'),(11818,3582,'_wp_attached_file','2021/08/TuesdayAugust-24th-Feeder-Cattle-Consignments.pdf'),(11819,3582,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"TuesdayAugust-24th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-24th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"TuesdayAugust-24th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-24th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11897,3586,'_thumbnail_id','786'),(11898,3586,'_et_post_bg_color','#ffffff'),(11899,3586,'_et_post_bg_layout','light'),(11900,3586,'_et_pb_show_title','on'),(11901,3586,'_et_pb_post_hide_nav','default'),(11902,3586,'_et_pb_page_layout','et_right_sidebar'),(11903,3586,'_et_pb_side_nav','off'),(11904,3586,'_et_pb_use_builder','on'),(11905,3586,'_et_pb_first_image',''),(11906,3586,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">August 24, 2021, 909 hd;Â  last week 1848 hd; a year ago 1497 hd. Feeder cattle sold $4-$8 higher compared to last week as the feeder board has had some nice gains. Slaughter cows &amp; bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$195.00-$203.00</p>\n<p>400-500<br />\n$165.00-$204.00</p>\n<p>500-600<br />\n$160.00-$198.00</p>\n<p>600-700<br />\n$150.00-$178.50</p>\n<p>700-800<br />\n$148.00-$161.00</p>\n<p>800-900<br />\n$150.00-$164.00</p>\n<p>900-1000<br />\n$146.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$194.00</p>\n<p>400-500<br />\n$155.00-$190.00</p>\n<p>500-600<br />\n$142.00-$164.25</p>\n<p>600-700<br />\n$138.00-$162.25</p>\n<p>700-800<br />\n$135.00-$163.00</p>\n<p>800-900<br />\n$120.00-$130.00</p>\n<p>900-1000<br />\nNAÂ </p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$72.00 &#8211; $82.50</p>\n<p>Medium Yield<br />\n$60.00 &#8211; $71.00</p>\n<p>Low Yield<br />\n$50.00 &#8211; $59.00</p>\n<p>Bulls<br />\n$70.00 &#8211; $104.50</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n839lbs @$164.00</p>\n<p>Steers<br />\n944lbs @$146.00</p>\n<p>Heifers<br />\n723lbs @$163.00</p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div>\n'),(11907,3586,'_et_pb_truncate_post_date','2021-09-03 02:30:17'),(11908,3586,'_et_pb_old_content',''),(11909,3586,'_et_pb_built_for_post_type','page'),(11910,3586,'_et_pb_ab_subjects',''),(11911,3586,'_et_pb_enable_shortcode_tracking',''),(11912,3586,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3586\" /]'),(11913,3586,'_et_pb_custom_css',''),(11914,3586,'_et_pb_gutter_width','3'),(11915,3586,'_et_builder_version','VB|Divi|4.9.7'),(11916,3586,'_et_pb_show_page_creation','off'),(11917,3586,'_wp_old_slug','february-11-2020-market-report'),(11918,3586,'_wp_old_slug','march-17th-2020-market-report'),(11919,3586,'_wp_old_slug','may-1th-2020-market-report-2'),(11920,3586,'_wp_old_slug','july-21st-2020-market-report-2'),(11921,3586,'_wp_old_slug','november-10th-2020-market-report'),(11922,3586,'_global_colors_info','{}'),(11927,3586,'_dp_original','3572'),(11928,3586,'_edit_lock','1629910197:2'),(11929,3586,'_edit_last','2'),(11934,3590,'_wp_attached_file','2021/08/2021-Labor-Day-Sale-Flyer-1.pdf'),(11935,3590,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"2021-Labor-Day-Sale-Flyer-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"2021-Labor-Day-Sale-Flyer-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"2021-Labor-Day-Sale-Flyer-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"2021-Labor-Day-Sale-Flyer-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(11936,3591,'_wp_attached_file','2021/08/Labor-Day-2021-Detailed-Consignment-List.pdf'),(11937,3591,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:48:\"Labor-Day-2021-Detailed-Consignment-List-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Labor-Day-2021-Detailed-Consignment-List-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"Labor-Day-2021-Detailed-Consignment-List-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Labor-Day-2021-Detailed-Consignment-List-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(12032,3595,'_wp_attached_file','2021/08/Tuesday-August-31st-Feeder-Cattle-Consignments.pdf'),(12033,3595,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"Tuesday-August-31st-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Tuesday-August-31st-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"Tuesday-August-31st-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Tuesday-August-31st-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(12046,3597,'_wp_attached_file','2021/08/September-252021-Cow-Sale.pdf'),(12047,3597,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"September-252021-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"September-252021-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"September-252021-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"September-252021-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(12174,3604,'_thumbnail_id','786'),(12175,3604,'_et_post_bg_color','#ffffff'),(12176,3604,'_et_post_bg_layout','light'),(12177,3604,'_et_pb_show_title','on'),(12178,3604,'_et_pb_post_hide_nav','default'),(12179,3604,'_et_pb_page_layout','et_right_sidebar'),(12180,3604,'_et_pb_side_nav','off'),(12181,3604,'_et_pb_use_builder','on'),(12182,3604,'_et_pb_first_image',''),(12183,3604,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">August 31, 2021, 1302 hd;Â  last week 909 hd; a year ago 1342 hd.Steers sold steady &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$165.00-$200.00</p>\n<p>400-500<br />\n$160.00-$197.00</p>\n<p>500-600<br />\n$158.00-$196.00</p>\n<p>600-700<br />\n$149.50-$179.50</p>\n<p>700-800<br />\n$151.50-$168.25</p>\n<p>800-900<br />\n$154.25-$156.00</p>\n<p>900-1000<br />\n$127.00-$135.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$175.00</p>\n<p>400-500<br />\n$155.00-$169.00</p>\n<p>500-600<br />\n$139.50-$168.00</p>\n<p>600-700<br />\n$138.50-$164.00</p>\n<p>700-800<br />\n$133.50-$147.00</p>\n<p>800-900<br />\n$133.00-$140.75</p>\n<p>900-1000<br />\n$108.00-$115.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$72.00 &#8211; $84.50</p>\n<p>Medium Yield<br />\n$60.00 &#8211; $71.00</p>\n<p>Low Yield<br />\n$50.00 &#8211; $59.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $107.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n720lbs @$163.25</p>\n<p>Steers<br />\n774lbs @$166.85</p>\n<p>Steers<br />\n839lbs @$156.00</p>\n<p>Heifers<br />\n657lbs @$160.00</p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div>\n'),(12184,3604,'_et_pb_truncate_post_date','2021-09-03 02:30:17'),(12185,3604,'_et_pb_old_content',''),(12186,3604,'_et_pb_built_for_post_type','page'),(12187,3604,'_et_pb_ab_subjects',''),(12188,3604,'_et_pb_enable_shortcode_tracking',''),(12189,3604,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3604\" /]'),(12190,3604,'_et_pb_custom_css',''),(12191,3604,'_et_pb_gutter_width','3'),(12192,3604,'_et_builder_version','VB|Divi|4.9.7'),(12193,3604,'_et_pb_show_page_creation','off'),(12194,3604,'_wp_old_slug','february-11-2020-market-report'),(12195,3604,'_wp_old_slug','march-17th-2020-market-report'),(12196,3604,'_wp_old_slug','may-1th-2020-market-report-2'),(12197,3604,'_wp_old_slug','july-21st-2020-market-report-2'),(12198,3604,'_wp_old_slug','november-10th-2020-market-report'),(12199,3604,'_global_colors_info','{}'),(12204,3604,'_dp_original','3586'),(12205,3604,'_edit_lock','1630512075:2'),(12206,3604,'_edit_last','2'),(12209,3609,'_wp_attached_file','2021/09/September-11-2021-Horse-Tack-Small-Animal-Sale.pdf'),(12210,3609,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"September-11-2021-Horse-Tack-Small-Animal-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"September-11-2021-Horse-Tack-Small-Animal-Sale-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"September-11-2021-Horse-Tack-Small-Animal-Sale-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"September-11-2021-Horse-Tack-Small-Animal-Sale-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(12225,3613,'_wp_attached_file','2021/09/September-252021-Cow-Sale.pdf'),(12226,3613,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"September-252021-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"September-252021-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"September-252021-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"September-252021-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(12235,3616,'_wp_attached_file','2021/09/Labor-Day-2021-Detailed-Consignment-List.pdf'),(12236,3616,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:48:\"Labor-Day-2021-Detailed-Consignment-List-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Labor-Day-2021-Detailed-Consignment-List-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"Labor-Day-2021-Detailed-Consignment-List-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Labor-Day-2021-Detailed-Consignment-List-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(12240,714,'_thumbnail_id','0'),(12276,3619,'_wp_attached_file','2021/09/Labor-Day-2021-Detailed-Consignment-List-1.pdf'),(12277,3619,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"Labor-Day-2021-Detailed-Consignment-List-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"Labor-Day-2021-Detailed-Consignment-List-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"Labor-Day-2021-Detailed-Consignment-List-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Labor-Day-2021-Detailed-Consignment-List-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(12318,3624,'_wp_attached_file','2021/09/TuesdaySeptember-7th-Feeder-Cattle-Consignments.pdf'),(12319,3624,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdaySeptember-7th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdaySeptember-7th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-7th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdaySeptember-7th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(12544,3633,'_wp_attached_file','2021/09/September-252021-Cow-Sale-1.pdf'),(12545,3633,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"September-252021-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"September-252021-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"September-252021-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"September-252021-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(12550,3635,'_wp_attached_file','2021/09/September-252021-Cow-Sale-2.pdf'),(12551,3635,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"September-252021-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"September-252021-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"September-252021-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"September-252021-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(12560,3638,'_wp_attached_file','2021/09/TuesdaySeptember-14th-Feeder-Cattle-Consignments.pdf'),(12561,3638,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"TuesdaySeptember-14th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-14th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"TuesdaySeptember-14th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-14th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(12585,3643,'_wp_attached_file','2021/09/September-252021-Cow-Sale-3.pdf'),(12586,3643,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"September-252021-Cow-Sale-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"September-252021-Cow-Sale-3-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"September-252021-Cow-Sale-3-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"September-252021-Cow-Sale-3-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(12591,3645,'_wp_attached_file','2021/09/September-252021-Cow-Sale-4.pdf'),(12592,3645,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"September-252021-Cow-Sale-4-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"September-252021-Cow-Sale-4-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"September-252021-Cow-Sale-4-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"September-252021-Cow-Sale-4-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(12604,3648,'_thumbnail_id','786'),(12605,3648,'_et_post_bg_color','#ffffff'),(12606,3648,'_et_post_bg_layout','light'),(12607,3648,'_et_pb_show_title','on'),(12608,3648,'_et_pb_post_hide_nav','default'),(12609,3648,'_et_pb_page_layout','et_right_sidebar'),(12610,3648,'_et_pb_side_nav','off'),(12611,3648,'_et_pb_use_builder','on'),(12612,3648,'_et_pb_first_image',''),(12613,3648,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_3 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">September 14, 2021, 2533 hd;Â  last week 701 hd; a year ago 2789 hd. Feeders sold on a steady market w/ several yearlings on hand off grass &amp; a very active market. New crop calves sold steady-$2 lower. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_10\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$210.00</p>\n<p>400-500<br />\n$160.00-$201.00</p>\n<p>500-600<br />\n$150.00-$190.050</p>\n<p>600-700<br />\n$150.00-$171.25</p>\n<p>700-800<br />\n$142.00-$169.75</p>\n<p>800-900<br />\n$124.00-$152.60</p>\n<p>900-1000<br />\n$120.00-$152.85</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$172.00</p>\n<p>400-500<br />\n$150.00-$171.00</p>\n<p>500-600<br />\n$140.00-$164.50</p>\n<p>600-700<br />\n$136.00-$166.00</p>\n<p>700-800<br />\n$130.00-$150.75</p>\n<p>800-900<br />\n$120.00-$141.60</p>\n<p>900-1000<br />\n$108.00-$131.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$70.00 &#8211; $82.50</p>\n<p>Medium Yield<br />\n$61.00 &#8211; $69.00</p>\n<p>Low Yield<br />\n$50.00 &#8211; $60.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $105.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n707lbs @$167.75</p>\n<p>Steers<br />\n878lbs @$152.75</p>\n<p>Steers<br />\n902lbs @$152.85</p>\n<p>Heifers<br />\n688lbs @$150.85</p>\n<p>Heifers<br />\n700lbs @$150.75</p>\n<p>Heifers<br />\n744lbs @$148.25</p>\n<p>Heifers<br />\n830lbs @$141.35</p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_11\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_3_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_3 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div>\n'),(12614,3648,'_et_pb_truncate_post_date','2021-10-07 06:24:07'),(12615,3648,'_et_pb_old_content',''),(12616,3648,'_et_pb_built_for_post_type','page'),(12617,3648,'_et_pb_ab_subjects',''),(12618,3648,'_et_pb_enable_shortcode_tracking',''),(12619,3648,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3648\" /]'),(12620,3648,'_et_pb_custom_css',''),(12621,3648,'_et_pb_gutter_width','3'),(12622,3648,'_et_builder_version','VB|Divi|4.9.7'),(12623,3648,'_et_pb_show_page_creation','off'),(12624,3648,'_wp_old_slug','february-11-2020-market-report'),(12625,3648,'_wp_old_slug','march-17th-2020-market-report'),(12626,3648,'_wp_old_slug','may-1th-2020-market-report-2'),(12627,3648,'_wp_old_slug','july-21st-2020-market-report-2'),(12628,3648,'_wp_old_slug','november-10th-2020-market-report'),(12629,3648,'_global_colors_info','{}'),(12634,3648,'_dp_original','3604'),(12635,3648,'_edit_lock','1631721661:2'),(12636,3648,'_edit_last','2'),(12736,3657,'_wp_attached_file','2021/09/September-252021-Cow-Sale-5.pdf'),(12737,3657,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"September-252021-Cow-Sale-5-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"September-252021-Cow-Sale-5-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"September-252021-Cow-Sale-5-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"September-252021-Cow-Sale-5-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(12750,3661,'_wp_attached_file','2021/09/TuesdaySeptember-21st-Feeder-Cattle-Consignments.pdf'),(12751,3661,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"TuesdaySeptember-21st-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-21st-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"TuesdaySeptember-21st-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-21st-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(12756,3663,'_wp_attached_file','2021/09/Ragland-Public-Auction-October-8th.pdf'),(12757,3663,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:42:\"Ragland-Public-Auction-October-8th-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Ragland-Public-Auction-October-8th-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Ragland-Public-Auction-October-8th-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Ragland-Public-Auction-October-8th-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(12830,3671,'_thumbnail_id','786'),(12831,3671,'_et_post_bg_color','#ffffff'),(12832,3671,'_et_post_bg_layout','light'),(12833,3671,'_et_pb_show_title','on'),(12834,3671,'_et_pb_post_hide_nav','default'),(12835,3671,'_et_pb_page_layout','et_right_sidebar'),(12836,3671,'_et_pb_side_nav','off'),(12837,3671,'_et_pb_use_builder','on'),(12838,3671,'_et_pb_first_image',''),(12839,3671,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">September 21, 2021, 1567 hd;Â  last week 2533 hd; a year ago 1384 hd New crop calves sold steady. 600-850lbs yearling steers &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$211.00</p>\n<p>400-500<br />\n$160.00-$195.00</p>\n<p>500-600<br />\n$150.00-$184.50</p>\n<p>600-700<br />\n$140.00-$171.00</p>\n<p>700-800<br />\n$140.00-$164.00</p>\n<p>800-900<br />\n$132.00-$160.00</p>\n<p>900-1000<br />\n$128.00-$138.50</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$170.00</p>\n<p>400-500<br />\n$147.00-$170.00</p>\n<p>500-600<br />\n$135.00-$167.00</p>\n<p>600-700<br />\n$132.00-$163.50</p>\n<p>700-800<br />\n$132.00-$159.10</p>\n<p>800-900<br />\n$124.00-$141.50</p>\n<p>900-1000<br />\n$103.00-$117.50</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls</p>\n<p>High Yield<br />\n$72.00 &#8211; $87.00</p>\n<p>Medium Yield<br />\n$60.00 &#8211; $71.00</p>\n<p>Low Yield<br />\n$45.00 &#8211; $59.00</p>\n<p>Bulls<br />\n$81.00 &#8211; $104.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n709lbs @$164.00</p>\n<p>Steers<br />\n738lbs @$160.00</p>\n<p>Steers<br />\n818lbs @$160.00</p>\n<p>Heifers<br />\n628lbs @$163.50</p>\n<p>Heifers<br />\n650lbs @$159.85</p>\n<p>Heifers<br />\n657lbs @$159.75</p>\n<p>Heifers<br />\n713lbs @$159.10</p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div>\n'),(12840,3671,'_et_pb_truncate_post_date','2021-10-07 06:24:07'),(12841,3671,'_et_pb_old_content',''),(12842,3671,'_et_pb_built_for_post_type','page'),(12843,3671,'_et_pb_ab_subjects',''),(12844,3671,'_et_pb_enable_shortcode_tracking',''),(12845,3671,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3671\" /]'),(12846,3671,'_et_pb_custom_css',''),(12847,3671,'_et_pb_gutter_width','3'),(12848,3671,'_et_builder_version','VB|Divi|4.9.7'),(12849,3671,'_et_pb_show_page_creation','off'),(12850,3671,'_wp_old_slug','february-11-2020-market-report'),(12851,3671,'_wp_old_slug','march-17th-2020-market-report'),(12852,3671,'_wp_old_slug','may-1th-2020-market-report-2'),(12853,3671,'_wp_old_slug','july-21st-2020-market-report-2'),(12854,3671,'_wp_old_slug','november-10th-2020-market-report'),(12855,3671,'_global_colors_info','{}'),(12860,3671,'_dp_original','3648'),(12861,3671,'_edit_lock','1632326551:2'),(12862,3671,'_edit_last','2'),(12865,3676,'_wp_attached_file','2021/09/Colson-Real-Estate-October-23rd.pdf'),(12866,3676,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:39:\"Colson-Real-Estate-October-23rd-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Colson-Real-Estate-October-23rd-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Colson-Real-Estate-October-23rd-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Colson-Real-Estate-October-23rd-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(13004,3684,'_wp_attached_file','2021/09/TuesdaySeptember-28th-Feeder-Cattle-Consignments.pdf'),(13005,3684,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"TuesdaySeptember-28th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-28th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"TuesdaySeptember-28th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-28th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(13047,3690,'_wp_attached_file','2021/09/Colson-Auction-October-23rd.pdf'),(13048,3690,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"Colson-Auction-October-23rd-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Colson-Auction-October-23rd-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Colson-Auction-October-23rd-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Colson-Auction-October-23rd-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(13051,3693,'_thumbnail_id','786'),(13052,3693,'_et_post_bg_color','#ffffff'),(13053,3693,'_et_post_bg_layout','light'),(13054,3693,'_et_pb_show_title','on'),(13055,3693,'_et_pb_post_hide_nav','default'),(13056,3693,'_et_pb_page_layout','et_right_sidebar'),(13057,3693,'_et_pb_side_nav','off'),(13058,3693,'_et_pb_use_builder','on'),(13059,3693,'_et_pb_first_image',''),(13060,3693,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">September 28, 2021, 1912 hd;Â  last week 1567 hd; a year ago 2072 hd New crop calves sold $2-$4 lower. Weaned yearlings sold steady-$3 higher. Fat cows sold steady &amp; all other cows &amp; bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$190.00</p>\n<p>400-500<br />\n$160.00-$185.00</p>\n<p>500-600<br />\n$152.00-$186.00</p>\n<p>600-700<br />\n$140.00-$175.00</p>\n<p>700-800<br />\n$140.00-$168.75</p>\n<p>800-900<br />\n$134.00-$155.75</p>\n<p>900-1000<br />\n$127.00-$140.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$170.00</p>\n<p>400-500<br />\n$142.00-$165.00</p>\n<p>500-600<br />\n$132.00-$157.00</p>\n<p>600-700<br />\n$132.00-$164.85</p>\n<p>700-800<br />\n$124.00-$143.75</p>\n<p>800-900<br />\n$114.00-$124.00</p>\n<p>900-1000<br />\n$104.00-$118.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>Fat<br />\n$70.00 &#8211; $80.50</p>\n<p>Medium Yield<br />\n$61.00 &#8211; $72.00</p>\n<p>Low Yield<br />\n$44.00 &#8211; $60.00</p>\n<p>Bulls<br />\n$75.00 &#8211; $107.50</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n653lbs @$175.00</p>\n<p>Steers<br />\n671lbs @$175.00</p>\n<p>Steers<br />\n738lbs @$158.00</p>\n<p>Steers<br />\n773lbs @$168.75</p>\n<p>Steers<br />\n857lbs @$154.85</p>\n<p>Steers<br />\n864lbs @$154.60</p>\n<p>Heifers<br />\n689lbs @$149.50</p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div>\n'),(13061,3693,'_et_pb_truncate_post_date','2021-10-07 06:24:07'),(13062,3693,'_et_pb_old_content',''),(13063,3693,'_et_pb_built_for_post_type','page'),(13064,3693,'_et_pb_ab_subjects',''),(13065,3693,'_et_pb_enable_shortcode_tracking',''),(13066,3693,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3693\" /]'),(13067,3693,'_et_pb_custom_css',''),(13068,3693,'_et_pb_gutter_width','3'),(13069,3693,'_et_builder_version','VB|Divi|4.9.7'),(13070,3693,'_et_pb_show_page_creation','off'),(13071,3693,'_wp_old_slug','february-11-2020-market-report'),(13072,3693,'_wp_old_slug','march-17th-2020-market-report'),(13073,3693,'_wp_old_slug','may-1th-2020-market-report-2'),(13074,3693,'_wp_old_slug','july-21st-2020-market-report-2'),(13075,3693,'_wp_old_slug','november-10th-2020-market-report'),(13076,3693,'_global_colors_info','{}'),(13081,3693,'_dp_original','3671'),(13082,3693,'_edit_lock','1633539922:2'),(13083,3693,'_edit_last','2'),(13088,3699,'_wp_attached_file','2021/09/October-9-2021-Horse-Tack-Small-Animal-Sale.pdf'),(13089,3699,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"October-9-2021-Horse-Tack-Small-Animal-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"October-9-2021-Horse-Tack-Small-Animal-Sale-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"October-9-2021-Horse-Tack-Small-Animal-Sale-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"October-9-2021-Horse-Tack-Small-Animal-Sale-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(13106,3704,'_wp_attached_file','2021/09/October-152021-Cow-Sale.pdf'),(13107,3704,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:31:\"October-152021-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"October-152021-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"October-152021-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"October-152021-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(13116,3707,'_wp_attached_file','2021/09/Ragland-Public-Auction-October-8th-1.pdf'),(13117,3707,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:44:\"Ragland-Public-Auction-October-8th-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"Ragland-Public-Auction-October-8th-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"Ragland-Public-Auction-October-8th-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Ragland-Public-Auction-October-8th-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(13271,3715,'_wp_attached_file','2021/10/October-152021-Cow-Sale.pdf'),(13272,3715,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:31:\"October-152021-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"October-152021-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"October-152021-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"October-152021-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(13281,3718,'_wp_attached_file','2021/10/TuesdayOctober-5th-Feeder-Cattle-Consignments.pdf'),(13282,3718,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"TuesdayOctober-5th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"TuesdayOctober-5th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-5th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"TuesdayOctober-5th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(13347,3723,'_wp_attached_file','2021/10/October-152021-Cow-Sale-1.pdf'),(13348,3723,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"October-152021-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"October-152021-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"October-152021-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"October-152021-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(13357,3727,'_thumbnail_id','786'),(13358,3727,'_et_post_bg_color','#ffffff'),(13359,3727,'_et_post_bg_layout','light'),(13360,3727,'_et_pb_show_title','on'),(13361,3727,'_et_pb_post_hide_nav','default'),(13362,3727,'_et_pb_page_layout','et_right_sidebar'),(13363,3727,'_et_pb_side_nav','off'),(13364,3727,'_et_pb_use_builder','on'),(13365,3727,'_et_pb_first_image',''),(13366,3727,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">October 5, 2021, 2130 hd;Â  last week 1912 hd; a year ago 1472 hd Feeder cattle weighing 650lbs &amp; up sold steady. New crop calves w/ shots &amp; cut sold $2-$3 higher. new crop calves that are bulls &amp; no shots sold $5-$7 lower as temperatures start to change. Slaughter cows &amp; bulls sold $2-$4 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$202.00</p>\n<p>400-500<br />\n$155.00-$201.00</p>\n<p>500-600<br />\n$150.00-$184.00</p>\n<p>600-700<br />\n$143.00-$165.50</p>\n<p>700-800<br />\n$140.00-$168.75</p>\n<p>800-900<br />\n$133.00-$154.75</p>\n<p>900-1000<br />\n$134.00-$143.50</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$147.00-$174.00</p>\n<p>400-500<br />\n$142.00-$159.00</p>\n<p>500-600<br />\n$130.00-$158.00</p>\n<p>600-700<br />\n$130.00-$156.50</p>\n<p>700-800<br />\n$124.00-$140.00</p>\n<p>800-900<br />\n$122.00-$135.50</p>\n<p>900-1000<br />\n$110.00-$131.50</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>Fat 1450lbs &amp; up<br />\n$71.00 &#8211; $79.00</p>\n<p>Medium Yield<br />\n$57.00 &#8211; $67.00</p>\n<p>Low Yield<br />\n$41.00 &#8211; $56.00</p>\n<p>Bulls<br />\n$65.00 &#8211; $98.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n474lbs @$187.00</p>\n<p>Steers<br />\n543lbs @$178.25</p>\n<p>Steers<br />\n601lbs @$165.50</p>\n<p>Steers<br />\n669lbs @$165.00</p>\n<p>Steers<br />\n719lbs @$165.25</p>\n<p>Steers<br />\n771lbs @$158.10</p>\n<p>Heifers<br />\n685lbs @$150.25</p>\n<p>Heifers<br />\n688lbs @$150.75</p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div>\n'),(13367,3727,'_et_pb_truncate_post_date','2021-10-07 06:24:07'),(13368,3727,'_et_pb_old_content',''),(13369,3727,'_et_pb_built_for_post_type','page'),(13370,3727,'_et_pb_ab_subjects',''),(13371,3727,'_et_pb_enable_shortcode_tracking',''),(13372,3727,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3727\" /]'),(13373,3727,'_et_pb_custom_css',''),(13374,3727,'_et_pb_gutter_width','3'),(13375,3727,'_et_builder_version','VB|Divi|4.9.7'),(13376,3727,'_et_pb_show_page_creation','off'),(13377,3727,'_wp_old_slug','february-11-2020-market-report'),(13378,3727,'_wp_old_slug','march-17th-2020-market-report'),(13379,3727,'_wp_old_slug','may-1th-2020-market-report-2'),(13380,3727,'_wp_old_slug','july-21st-2020-market-report-2'),(13381,3727,'_wp_old_slug','november-10th-2020-market-report'),(13382,3727,'_global_colors_info','{}'),(13387,3727,'_dp_original','3693'),(13388,3727,'_edit_lock','1633540719:2'),(13389,3727,'_edit_last','2'),(13396,3733,'_wp_attached_file','2021/10/October-152021-Cow-Sale-2.pdf'),(13397,3733,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"October-152021-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"October-152021-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"October-152021-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"October-152021-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(13582,3739,'_wp_attached_file','2021/10/TuesdayOctober-12th-Feeder-Cattle-Consignments.pdf'),(13583,3739,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"TuesdayOctober-12th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-12th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"TuesdayOctober-12th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-12th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(13630,3744,'_thumbnail_id','786'),(13631,3744,'_et_post_bg_color','#ffffff'),(13632,3744,'_et_post_bg_layout','light'),(13633,3744,'_et_pb_show_title','on'),(13634,3744,'_et_pb_post_hide_nav','default'),(13635,3744,'_et_pb_page_layout','et_right_sidebar'),(13636,3744,'_et_pb_side_nav','off'),(13637,3744,'_et_pb_use_builder','on'),(13638,3744,'_et_pb_first_image',''),(13639,3744,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">October 12, 2021, 1833 hd;Â  last week 2130 hd; a year ago 1617 hd Compared to last week yearling steers &amp; heifers sold steady-$6 higher. Calves sold steady to firm except steers weighing 400-500lbs sold w/ a higher undertone. Buyers were active throughout the day. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$212.00</p>\n<p>400-500<br />\n$167.00-$212.00</p>\n<p>500-600<br />\n$150.00-$177.00</p>\n<p>600-700<br />\n$147.00-$177.00</p>\n<p>700-800<br />\n$140.00-$167.00</p>\n<p>800-900<br />\n$138.00-$162.00</p>\n<p>900-1000<br />\n$130.00-$144.85</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$177.00</p>\n<p>400-500<br />\n$140.00-$170.00</p>\n<p>500-600<br />\n$132.00-$161.00</p>\n<p>600-700<br />\n$130.00-$161.75</p>\n<p>700-800<br />\n$132.00-$158.25</p>\n<p>800-900<br />\n$128.00-$147.50</p>\n<p>900-1000<br />\n$115.00-$135.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$64.00 &#8211; $77.50</p>\n<p>Medium Yield<br />\n$52.00 &#8211; $63.00</p>\n<p>Low Yield<br />\n$42.00 &#8211; $51.00</p>\n<p>Bulls<br />\n$77.00 &#8211; $97.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n693lbs @$169.50</p>\n<p>Steers<br />\n735lbs @$165.00</p>\n<p>Steers<br />\n791lbs @$160.00</p>\n<p>Steers<br />\n839lbs @$162.00</p>\n<p>Steers<br />\n930lbs @$144.85</p>\n<p>Heifers<br />\n666lbs @$153.25</p>\n<p>Heifers<br />\n687lbs @$145.75</p>\n<p>Heifers<br />\n705lbs @$150.00</p>\n<p>Heifers<br />\n778lbs @$149.85</p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div>\n'),(13640,3744,'_et_pb_truncate_post_date','2021-10-24 15:09:34'),(13641,3744,'_et_pb_old_content',''),(13642,3744,'_et_pb_built_for_post_type','page'),(13643,3744,'_et_pb_ab_subjects',''),(13644,3744,'_et_pb_enable_shortcode_tracking',''),(13645,3744,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3744\" /]'),(13646,3744,'_et_pb_custom_css',''),(13647,3744,'_et_pb_gutter_width','3'),(13648,3744,'_et_builder_version','VB|Divi|4.9.7'),(13649,3744,'_et_pb_show_page_creation','off'),(13650,3744,'_wp_old_slug','february-11-2020-market-report'),(13651,3744,'_wp_old_slug','march-17th-2020-market-report'),(13652,3744,'_wp_old_slug','may-1th-2020-market-report-2'),(13653,3744,'_wp_old_slug','july-21st-2020-market-report-2'),(13654,3744,'_wp_old_slug','november-10th-2020-market-report'),(13655,3744,'_global_colors_info','{}'),(13660,3744,'_dp_original','3727'),(13661,3744,'_edit_lock','1634139586:2'),(13662,3744,'_edit_last','2'),(13679,3752,'_wp_attached_file','2021/10/Estate-of-Various-Owners-October-24th.pdf'),(13680,3752,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:45:\"Estate-of-Various-Owners-October-24th-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"Estate-of-Various-Owners-October-24th-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"Estate-of-Various-Owners-October-24th-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"Estate-of-Various-Owners-October-24th-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(13839,3757,'_wp_attached_file','2021/10/TuesdayOctober-19th-Feeder-Cattle-Consignments.pdf'),(13840,3757,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"TuesdayOctober-19th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-19th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"TuesdayOctober-19th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-19th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(13856,3760,'_thumbnail_id','786'),(13857,3760,'_et_post_bg_color','#ffffff'),(13858,3760,'_et_post_bg_layout','light'),(13859,3760,'_et_pb_show_title','on'),(13860,3760,'_et_pb_post_hide_nav','default'),(13861,3760,'_et_pb_page_layout','et_right_sidebar'),(13862,3760,'_et_pb_side_nav','off'),(13863,3760,'_et_pb_use_builder','on'),(13864,3760,'_et_pb_first_image',''),(13865,3760,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">October 19, 2021, 2138 hd;Â  last week 1833 hd; a year ago 1665 hd Compared to last week steers &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$206.00</p>\n<p>400-500<br />\n$160.00-$203.00</p>\n<p>500-600<br />\n$150.00-$184.75</p>\n<p>600-700<br />\n$140.00-$176.75</p>\n<p>700-800<br />\n$140.00-$166.75</p>\n<p>800-900<br />\n$130.00-$154.75</p>\n<p>900-1000<br />\n$133.00-$142.75</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$186.00</p>\n<p>400-500<br />\n$145.00-$171.00</p>\n<p>500-600<br />\n$140.00-$172.50</p>\n<p>600-700<br />\n$134.00-$158.00</p>\n<p>700-800<br />\n$130.00-$158.00</p>\n<p>800-900<br />\n$118.00-$137.50</p>\n<p>900-1000<br />\n$115.00-$137.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$64.00 &#8211; $73.00</p>\n<p>Medium Yield<br />\n$53.00 &#8211; $63.00</p>\n<p>Low Yield<br />\n$41.00 &#8211; $52.00</p>\n<p>Bulls<br />\n$74.00 &#8211; $96.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\nnon weaned 518lbs @$180.50</p>\n<p>Steers<br />\n740lbs @$166.00</p>\n<p>Steers<br />\nRed &amp; Char 870lbs @$149.60</p>\n<p>Heifers<br />\n599lbs @$167.00</p>\n<p>Heifers<br />\n688lbs @$152.00</p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div>\n'),(13866,3760,'_et_pb_truncate_post_date','2021-11-09 04:40:24'),(13867,3760,'_et_pb_old_content',''),(13868,3760,'_et_pb_built_for_post_type','page'),(13869,3760,'_et_pb_ab_subjects',''),(13870,3760,'_et_pb_enable_shortcode_tracking',''),(13871,3760,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3760\" /]'),(13872,3760,'_et_pb_custom_css',''),(13873,3760,'_et_pb_gutter_width','3'),(13874,3760,'_et_builder_version','VB|Divi|4.9.7'),(13875,3760,'_et_pb_show_page_creation','off'),(13876,3760,'_wp_old_slug','february-11-2020-market-report'),(13877,3760,'_wp_old_slug','march-17th-2020-market-report'),(13878,3760,'_wp_old_slug','may-1th-2020-market-report-2'),(13879,3760,'_wp_old_slug','july-21st-2020-market-report-2'),(13880,3760,'_wp_old_slug','november-10th-2020-market-report'),(13881,3760,'_global_colors_info','{}'),(13886,3760,'_dp_original','3744'),(13887,3760,'_edit_lock','1635184714:2'),(13888,3760,'_edit_last','2'),(14042,3770,'_wp_attached_file','2021/10/TuesdayOctober-26th-Feeder-Cattle-Consignments.pdf'),(14043,3770,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"TuesdayOctober-26th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-26th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"TuesdayOctober-26th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-26th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(14129,3778,'_thumbnail_id','786'),(14130,3778,'_et_post_bg_color','#ffffff'),(14131,3778,'_et_post_bg_layout','light'),(14132,3778,'_et_pb_show_title','on'),(14133,3778,'_et_pb_post_hide_nav','default'),(14134,3778,'_et_pb_page_layout','et_right_sidebar'),(14135,3778,'_et_pb_side_nav','off'),(14136,3778,'_et_pb_use_builder','on'),(14137,3778,'_et_pb_first_image',''),(14138,3778,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Â October 26, 2021, 2200 hd;Â  last week 2138 hd; a year ago 1080 hd Yearling feeder cattle sold $3-$8 higher, selling w/ good demand. New crop calves sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$215.00</p>\n<p>400-500<br />\n$160.00-$187.00</p>\n<p>500-600<br />\n$150.00-$187.00</p>\n<p>600-700<br />\n$140.00-$162.00</p>\n<p>700-800<br />\n$140.00-$174.00</p>\n<p>800-900<br />\n$137.00-$166.00</p>\n<p>900-1000<br />\n$130.00-$155.85</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$167.00</p>\n<p>400-500<br />\n$135.00-$161.00</p>\n<p>500-600<br />\n$133.00-$161.50</p>\n<p>600-700<br />\n$130.00-$149.75</p>\n<p>700-800<br />\n$130.00-$153.25</p>\n<p>800-900<br />\n$120.00-$132.50</p>\n<p>900-1000<br />\n$109.00-$123.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$62.00 &#8211; $72.50</p>\n<p>Medium Yield<br />\n$53.00 &#8211; $61.00</p>\n<p>Low Yield<br />\n$41.00 &#8211; $52.00</p>\n<p>Bulls<br />\n$70.00 &#8211; $96.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\nÂ 712lbs @$174.00</p>\n<p>Steers<br />\n822lbs @$162.00</p>\n<p>Steers<br />\nÂ 841lbs @$166.00</p>\n<p>Steers<br />\n854lbs @$165.00</p>\n<p>Steers<br />\n882lbs @$156.00</p>\n<p>Steers<br />\n900lbs @$155.85</p>\n<p>Steers<br />\n903lbs @$155.50</p>\n<p>Heifers<br />\n706lbs @$153.25</p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div>\n'),(14139,3778,'_et_pb_truncate_post_date','2021-11-09 04:40:24'),(14140,3778,'_et_pb_old_content',''),(14141,3778,'_et_pb_built_for_post_type','page'),(14142,3778,'_et_pb_ab_subjects',''),(14143,3778,'_et_pb_enable_shortcode_tracking',''),(14144,3778,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3778\" /]'),(14145,3778,'_et_pb_custom_css',''),(14146,3778,'_et_pb_gutter_width','3'),(14147,3778,'_et_builder_version','VB|Divi|4.9.7'),(14148,3778,'_et_pb_show_page_creation','off'),(14149,3778,'_wp_old_slug','february-11-2020-market-report'),(14150,3778,'_wp_old_slug','march-17th-2020-market-report'),(14151,3778,'_wp_old_slug','may-1th-2020-market-report-2'),(14152,3778,'_wp_old_slug','july-21st-2020-market-report-2'),(14153,3778,'_wp_old_slug','november-10th-2020-market-report'),(14154,3778,'_global_colors_info','{}'),(14159,3778,'_dp_original','3760'),(14160,3778,'_edit_lock','1635350080:2'),(14161,3778,'_edit_last','2'),(14174,3785,'_wp_attached_file','2021/10/November-12th-Holmes-Auction.pdf'),(14175,3785,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:36:\"November-12th-Holmes-Auction-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"November-12th-Holmes-Auction-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"November-12th-Holmes-Auction-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"November-12th-Holmes-Auction-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(14178,3787,'_edit_last','2'),(14179,3787,'_edit_lock','1635955608:2'),(14345,3790,'_wp_attached_file','2021/11/TuesdayNovember-2nd-Feeder-Cattle-Consignments.pdf'),(14346,3790,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"TuesdayNovember-2nd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"TuesdayNovember-2nd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-2nd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"TuesdayNovember-2nd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(14359,3795,'_wp_attached_file','2021/11/November-202021-Cow-Sale.pdf'),(14360,3795,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"November-202021-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"November-202021-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"November-202021-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"November-202021-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(14520,3799,'_thumbnail_id','786'),(14521,3799,'_et_post_bg_color','#ffffff'),(14522,3799,'_et_post_bg_layout','light'),(14523,3799,'_et_pb_show_title','on'),(14524,3799,'_et_pb_post_hide_nav','default'),(14525,3799,'_et_pb_page_layout','et_right_sidebar'),(14526,3799,'_et_pb_side_nav','off'),(14527,3799,'_et_pb_use_builder','on'),(14528,3799,'_et_pb_first_image',''),(14529,3799,'_et_pb_truncate_post',''),(14530,3799,'_et_pb_truncate_post_date',''),(14531,3799,'_et_pb_old_content',''),(14532,3799,'_et_pb_built_for_post_type','page'),(14533,3799,'_et_pb_ab_subjects',''),(14534,3799,'_et_pb_enable_shortcode_tracking',''),(14535,3799,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3778\" /]'),(14536,3799,'_et_pb_custom_css',''),(14537,3799,'_et_pb_gutter_width','3'),(14538,3799,'_et_builder_version','VB|Divi|4.9.7'),(14539,3799,'_et_pb_show_page_creation','off'),(14540,3799,'_wp_old_slug','february-11-2020-market-report'),(14541,3799,'_wp_old_slug','march-17th-2020-market-report'),(14542,3799,'_wp_old_slug','may-1th-2020-market-report-2'),(14543,3799,'_wp_old_slug','july-21st-2020-market-report-2'),(14544,3799,'_wp_old_slug','november-10th-2020-market-report'),(14545,3799,'_global_colors_info','{}'),(14550,3799,'_dp_original','3778'),(14551,3800,'_thumbnail_id','786'),(14552,3800,'_et_post_bg_color','#ffffff'),(14553,3800,'_et_post_bg_layout','light'),(14554,3800,'_et_pb_show_title','on'),(14555,3800,'_et_pb_post_hide_nav','default'),(14556,3800,'_et_pb_page_layout','et_right_sidebar'),(14557,3800,'_et_pb_side_nav','off'),(14558,3800,'_et_pb_use_builder','on'),(14559,3800,'_et_pb_first_image',''),(14560,3800,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">November 2, 2021, 2132 hd;Â  last week 2200 hd; a year ago 1684 hd Feeders that were yearlings &amp; long weaned sold $2-$6 higher. Load lots &amp; new crop calves sold steady. Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$199.00</p>\n<p>400-500<br />\n$160.00-$194.00</p>\n<p>500-600<br />\n$145.00-$178.00</p>\n<p>600-700<br />\n$137.00-$167.75</p>\n<p>700-800<br />\n$142.00-$174.00</p>\n<p>800-900<br />\n$140.00-$155.50</p>\n<p>900-1000<br />\n$120.00-$140.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$165.00</p>\n<p>400-500<br />\n$140.00-$164.00</p>\n<p>500-600<br />\n$135.00-$160.00</p>\n<p>600-700<br />\n$130.00-$164.25</p>\n<p>700-800<br />\n$130.00-$164.10</p>\n<p>800-900<br />\n$117.00-$124.50</p>\n<p>900-1000<br />\n$119.00-$126.50</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$63.00 &#8211; $74.00</p>\n<p>Medium Yield<br />\n$53.00 &#8211; $62.00</p>\n<p>Low Yield<br />\n$42.00 &#8211; $52.00</p>\n<p>Bulls<br />\n$76.00 &#8211; $100.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n697lbs @$164.00</p>\n<p>Steers<br />\n797lbs @$156.00</p>\n<p>Steers<br />\nÂ 799lbs @$160.00</p>\n<p>Steers<br />\n856lbs @$155.50</p>\n<p>Steers<br />\n878lbs @$154.35</p>\n<p>Steers<br />\n900lbs @$155.85</p>\n<p>Heifers<br />\n620lbs @$164.00</p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div>\n'),(14561,3800,'_et_pb_truncate_post_date','2021-11-09 04:40:24'),(14562,3800,'_et_pb_old_content',''),(14563,3800,'_et_pb_built_for_post_type','page'),(14564,3800,'_et_pb_ab_subjects',''),(14565,3800,'_et_pb_enable_shortcode_tracking',''),(14566,3800,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3800\" /]'),(14567,3800,'_et_pb_custom_css',''),(14568,3800,'_et_pb_gutter_width','3'),(14569,3800,'_et_builder_version','VB|Divi|4.9.7'),(14570,3800,'_et_pb_show_page_creation','off'),(14571,3800,'_wp_old_slug','february-11-2020-market-report'),(14572,3800,'_wp_old_slug','march-17th-2020-market-report'),(14573,3800,'_wp_old_slug','may-1th-2020-market-report-2'),(14574,3800,'_wp_old_slug','july-21st-2020-market-report-2'),(14575,3800,'_wp_old_slug','november-10th-2020-market-report'),(14576,3800,'_global_colors_info','{}'),(14581,3800,'_dp_original','3778'),(14582,3800,'_edit_lock','1635956028:2'),(14583,3800,'_edit_last','2'),(14586,3804,'_wp_attached_file','2021/11/November-202021-Cow-Sale-1.pdf'),(14587,3804,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:34:\"November-202021-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"November-202021-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"November-202021-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"November-202021-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(14604,3807,'_wp_attached_file','2021/11/2021-Spring-Calving-Show-Me-Select-Catalog.pdf'),(14605,3807,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"2021-Spring-Calving-Show-Me-Select-Catalog-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"2021-Spring-Calving-Show-Me-Select-Catalog-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"2021-Spring-Calving-Show-Me-Select-Catalog-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"2021-Spring-Calving-Show-Me-Select-Catalog-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(14946,3812,'_wp_attached_file','2021/11/November-132021-Horse-Tack-Small-Animal-Sale.pdf'),(14947,3812,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"November-132021-Horse-Tack-Small-Animal-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"November-132021-Horse-Tack-Small-Animal-Sale-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"November-132021-Horse-Tack-Small-Animal-Sale-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"November-132021-Horse-Tack-Small-Animal-Sale-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(14956,3815,'_wp_attached_file','2021/11/tabloid-November-cowsale.pdf'),(14957,3815,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"tabloid-November-cowsale-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"tabloid-November-cowsale-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"tabloid-November-cowsale-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"tabloid-November-cowsale-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(14966,3818,'_wp_attached_file','2021/11/TuesdayNovember-9th-Feeder-Cattle-Consignments.pdf'),(14967,3818,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"TuesdayNovember-9th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"TuesdayNovember-9th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-9th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"TuesdayNovember-9th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(15087,3822,'_thumbnail_id','786'),(15088,3822,'_et_post_bg_color','#ffffff'),(15089,3822,'_et_post_bg_layout','light'),(15090,3822,'_et_pb_show_title','on'),(15091,3822,'_et_pb_post_hide_nav','default'),(15092,3822,'_et_pb_page_layout','et_right_sidebar'),(15093,3822,'_et_pb_side_nav','off'),(15094,3822,'_et_pb_use_builder','on'),(15095,3822,'_et_pb_first_image',''),(15096,3822,'_et_pb_truncate_post',''),(15097,3822,'_et_pb_truncate_post_date',''),(15098,3822,'_et_pb_old_content',''),(15099,3822,'_et_pb_built_for_post_type','page'),(15100,3822,'_et_pb_ab_subjects',''),(15101,3822,'_et_pb_enable_shortcode_tracking',''),(15102,3822,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3822\" /]'),(15103,3822,'_et_pb_custom_css',''),(15104,3822,'_et_pb_gutter_width','3'),(15105,3822,'_et_builder_version','VB|Divi|4.9.7'),(15106,3822,'_et_pb_show_page_creation','off'),(15107,3822,'_wp_old_slug','february-11-2020-market-report'),(15108,3822,'_wp_old_slug','march-17th-2020-market-report'),(15109,3822,'_wp_old_slug','may-1th-2020-market-report-2'),(15110,3822,'_wp_old_slug','july-21st-2020-market-report-2'),(15111,3822,'_wp_old_slug','november-10th-2020-market-report'),(15112,3822,'_global_colors_info','{}'),(15118,3822,'_dp_original','3800'),(15119,3822,'_edit_lock','1636568125:2'),(15120,3822,'_edit_last','2'),(15314,3831,'_wp_attached_file','2021/11/tabloid-November-cowsale-1.pdf'),(15315,3831,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:34:\"tabloid-November-cowsale-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"tabloid-November-cowsale-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"tabloid-November-cowsale-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"tabloid-November-cowsale-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(15330,3834,'_wp_attached_file','2021/11/TuesdayNovember-16th-Feeder-Cattle-Consignments.pdf'),(15331,3834,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdayNovember-16th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-16th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdayNovember-16th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-16th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(15340,3838,'_wp_attached_file','2021/11/tabloid-November-cowsale-2.pdf'),(15341,3838,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:34:\"tabloid-November-cowsale-2-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"tabloid-November-cowsale-2-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"tabloid-November-cowsale-2-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"tabloid-November-cowsale-2-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(15409,3841,'_thumbnail_id','786'),(15410,3841,'_et_post_bg_color','#ffffff'),(15411,3841,'_et_post_bg_layout','light'),(15412,3841,'_et_pb_show_title','on'),(15413,3841,'_et_pb_post_hide_nav','default'),(15414,3841,'_et_pb_page_layout','et_right_sidebar'),(15415,3841,'_et_pb_side_nav','off'),(15416,3841,'_et_pb_use_builder','on'),(15417,3841,'_et_pb_first_image',''),(15418,3841,'_et_pb_truncate_post',''),(15419,3841,'_et_pb_truncate_post_date',''),(15420,3841,'_et_pb_old_content',''),(15421,3841,'_et_pb_built_for_post_type','page'),(15422,3841,'_et_pb_ab_subjects',''),(15423,3841,'_et_pb_enable_shortcode_tracking',''),(15424,3841,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3841\" /]'),(15425,3841,'_et_pb_custom_css',''),(15426,3841,'_et_pb_gutter_width','3'),(15427,3841,'_et_builder_version','VB|Divi|4.9.7'),(15428,3841,'_et_pb_show_page_creation','off'),(15429,3841,'_wp_old_slug','february-11-2020-market-report'),(15430,3841,'_wp_old_slug','march-17th-2020-market-report'),(15431,3841,'_wp_old_slug','may-1th-2020-market-report-2'),(15432,3841,'_wp_old_slug','july-21st-2020-market-report-2'),(15433,3841,'_wp_old_slug','november-10th-2020-market-report'),(15434,3841,'_global_colors_info','{}'),(15440,3841,'_dp_original','3822'),(15441,3841,'_edit_lock','1637171229:2'),(15442,3841,'_edit_last','2'),(15483,3851,'_wp_attached_file','2021/11/2021-SMS-Fall-Sale-Order.pdf'),(15484,3851,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"2021-SMS-Fall-Sale-Order-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:1088;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"2021-SMS-Fall-Sale-Order-pdf-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"2021-SMS-Fall-Sale-Order-pdf-1024x791.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"2021-SMS-Fall-Sale-Order-pdf-150x116.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(15525,3856,'_wp_attached_file','2021/11/December-9th-10th-Cut-Rate-Lumber-Co.-Auction.pdf'),(15526,3856,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"December-9th-10th-Cut-Rate-Lumber-Co.-Auction-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"December-9th-10th-Cut-Rate-Lumber-Co.-Auction-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"December-9th-10th-Cut-Rate-Lumber-Co.-Auction-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"December-9th-10th-Cut-Rate-Lumber-Co.-Auction-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(15531,3858,'_wp_attached_file','2021/11/TuesdayNovember-23rd-Feeder-Cattle-Consignments.pdf'),(15532,3858,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdayNovember-23rd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-23rd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdayNovember-23rd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-23rd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(15668,3865,'_thumbnail_id','786'),(15669,3865,'_et_post_bg_color','#ffffff'),(15670,3865,'_et_post_bg_layout','light'),(15671,3865,'_et_pb_show_title','on'),(15672,3865,'_et_pb_post_hide_nav','default'),(15673,3865,'_et_pb_page_layout','et_right_sidebar'),(15674,3865,'_et_pb_side_nav','off'),(15675,3865,'_et_pb_use_builder','on'),(15676,3865,'_et_pb_first_image',''),(15677,3865,'_et_pb_truncate_post',''),(15678,3865,'_et_pb_truncate_post_date',''),(15679,3865,'_et_pb_old_content',''),(15680,3865,'_et_pb_built_for_post_type','page'),(15681,3865,'_et_pb_ab_subjects',''),(15682,3865,'_et_pb_enable_shortcode_tracking',''),(15683,3865,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3865\" /]'),(15684,3865,'_et_pb_custom_css',''),(15685,3865,'_et_pb_gutter_width','3'),(15686,3865,'_et_builder_version','VB|Divi|4.9.7'),(15687,3865,'_et_pb_show_page_creation','off'),(15688,3865,'_wp_old_slug','february-11-2020-market-report'),(15689,3865,'_wp_old_slug','march-17th-2020-market-report'),(15690,3865,'_wp_old_slug','may-1th-2020-market-report-2'),(15691,3865,'_wp_old_slug','july-21st-2020-market-report-2'),(15692,3865,'_wp_old_slug','november-10th-2020-market-report'),(15693,3865,'_global_colors_info','{}'),(15699,3865,'_dp_original','3841'),(15700,3865,'_edit_lock','1637773092:2'),(15701,3865,'_edit_last','2'),(16037,3870,'_wp_attached_file','2021/11/TuesdayNovember-30th-Feeder-Cattle-Consignments.pdf'),(16038,3870,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdayNovember-30th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-30th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdayNovember-30th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-30th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(16097,3874,'_thumbnail_id','786'),(16098,3874,'_et_post_bg_color','#ffffff'),(16099,3874,'_et_post_bg_layout','light'),(16100,3874,'_et_pb_show_title','on'),(16101,3874,'_et_pb_post_hide_nav','default'),(16102,3874,'_et_pb_page_layout','et_right_sidebar'),(16103,3874,'_et_pb_side_nav','off'),(16104,3874,'_et_pb_use_builder','on'),(16105,3874,'_et_pb_first_image',''),(16106,3874,'_et_pb_truncate_post',''),(16107,3874,'_et_pb_truncate_post_date',''),(16108,3874,'_et_pb_old_content',''),(16109,3874,'_et_pb_built_for_post_type','page'),(16110,3874,'_et_pb_ab_subjects',''),(16111,3874,'_et_pb_enable_shortcode_tracking',''),(16112,3874,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3874\" /]'),(16113,3874,'_et_pb_custom_css',''),(16114,3874,'_et_pb_gutter_width','3'),(16115,3874,'_et_builder_version','VB|Divi|4.9.7'),(16116,3874,'_et_pb_show_page_creation','off'),(16117,3874,'_wp_old_slug','february-11-2020-market-report'),(16118,3874,'_wp_old_slug','march-17th-2020-market-report'),(16119,3874,'_wp_old_slug','may-1th-2020-market-report-2'),(16120,3874,'_wp_old_slug','july-21st-2020-market-report-2'),(16121,3874,'_wp_old_slug','november-10th-2020-market-report'),(16122,3874,'_global_colors_info','{}'),(16128,3874,'_dp_original','3865'),(16129,3874,'_edit_lock','1638383345:2'),(16130,3874,'_edit_last','2'),(16344,3890,'_wp_attached_file','2021/12/TuesdayDecember-7th-Feeder-Cattle-Consignments.pdf'),(16345,3890,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"TuesdayDecember-7th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"TuesdayDecember-7th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"TuesdayDecember-7th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"TuesdayDecember-7th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(16398,3895,'_thumbnail_id','786'),(16399,3895,'_et_post_bg_color','#ffffff'),(16400,3895,'_et_post_bg_layout','light'),(16401,3895,'_et_pb_show_title','on'),(16402,3895,'_et_pb_post_hide_nav','default'),(16403,3895,'_et_pb_page_layout','et_right_sidebar'),(16404,3895,'_et_pb_side_nav','off'),(16405,3895,'_et_pb_use_builder','on'),(16406,3895,'_et_pb_first_image',''),(16407,3895,'_et_pb_truncate_post',''),(16408,3895,'_et_pb_truncate_post_date',''),(16409,3895,'_et_pb_old_content',''),(16410,3895,'_et_pb_built_for_post_type','page'),(16411,3895,'_et_pb_ab_subjects',''),(16412,3895,'_et_pb_enable_shortcode_tracking',''),(16413,3895,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3895\" /]'),(16414,3895,'_et_pb_custom_css',''),(16415,3895,'_et_pb_gutter_width','3'),(16416,3895,'_et_builder_version','VB|Divi|4.9.7'),(16417,3895,'_et_pb_show_page_creation','off'),(16418,3895,'_wp_old_slug','february-11-2020-market-report'),(16419,3895,'_wp_old_slug','march-17th-2020-market-report'),(16420,3895,'_wp_old_slug','may-1th-2020-market-report-2'),(16421,3895,'_wp_old_slug','july-21st-2020-market-report-2'),(16422,3895,'_wp_old_slug','november-10th-2020-market-report'),(16423,3895,'_global_colors_info','{}'),(16429,3895,'_dp_original','3874'),(16430,3895,'_edit_lock','1638988034:2'),(16431,3895,'_edit_last','2'),(16532,3907,'_wp_attached_file','2021/12/TuesdayDecember-14th-Feeder-Cattle-Consignments.pdf'),(16533,3907,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdayDecember-14th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdayDecember-14th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdayDecember-14th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdayDecember-14th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(16562,3913,'_thumbnail_id','786'),(16563,3913,'_et_post_bg_color','#ffffff'),(16564,3913,'_et_post_bg_layout','light'),(16565,3913,'_et_pb_show_title','on'),(16566,3913,'_et_pb_post_hide_nav','default'),(16567,3913,'_et_pb_page_layout','et_right_sidebar'),(16568,3913,'_et_pb_side_nav','off'),(16569,3913,'_et_pb_use_builder','on'),(16570,3913,'_et_pb_first_image',''),(16571,3913,'_et_pb_truncate_post',''),(16572,3913,'_et_pb_truncate_post_date',''),(16573,3913,'_et_pb_old_content',''),(16574,3913,'_et_pb_built_for_post_type','page'),(16575,3913,'_et_pb_ab_subjects',''),(16576,3913,'_et_pb_enable_shortcode_tracking',''),(16577,3913,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3913\" /]'),(16578,3913,'_et_pb_custom_css',''),(16579,3913,'_et_pb_gutter_width','3'),(16580,3913,'_et_builder_version','VB|Divi|4.9.7'),(16581,3913,'_et_pb_show_page_creation','off'),(16582,3913,'_wp_old_slug','february-11-2020-market-report'),(16583,3913,'_wp_old_slug','march-17th-2020-market-report'),(16584,3913,'_wp_old_slug','may-1th-2020-market-report-2'),(16585,3913,'_wp_old_slug','july-21st-2020-market-report-2'),(16586,3913,'_wp_old_slug','november-10th-2020-market-report'),(16587,3913,'_global_colors_info','{}'),(16594,3913,'_dp_original','3895'),(16595,3913,'_edit_lock','1639590163:2'),(16596,3913,'_edit_last','2'),(16614,3921,'_wp_attached_file','2021/12/December-29th-Cut-Rate-Lumber-Co.-Auction.pdf'),(16615,3921,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:49:\"December-29th-Cut-Rate-Lumber-Co.-Auction-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"December-29th-Cut-Rate-Lumber-Co.-Auction-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:58:\"December-29th-Cut-Rate-Lumber-Co.-Auction-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"December-29th-Cut-Rate-Lumber-Co.-Auction-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(16619,3923,'_wp_attached_file','2021/12/December-29th-Cut-Rate-Lumber-Co.-Auction-1.pdf'),(16620,3923,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"December-29th-Cut-Rate-Lumber-Co.-Auction-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"December-29th-Cut-Rate-Lumber-Co.-Auction-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"December-29th-Cut-Rate-Lumber-Co.-Auction-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"December-29th-Cut-Rate-Lumber-Co.-Auction-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(16683,3925,'_wp_attached_file','2021/12/Sale-Order-.pdf'),(16684,3925,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:18:\"Sale-Order-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Sale-Order-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Sale-Order-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Sale-Order-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(16802,3932,'_wp_attached_file','2021/12/TuesdayDecember-21st-Feeder-Cattle-Consignments.pdf'),(16803,3932,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdayDecember-21st-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdayDecember-21st-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdayDecember-21st-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdayDecember-21st-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(16865,3939,'_thumbnail_id','786'),(16866,3939,'_et_post_bg_color','#ffffff'),(16867,3939,'_et_post_bg_layout','light'),(16868,3939,'_et_pb_show_title','on'),(16869,3939,'_et_pb_post_hide_nav','default'),(16870,3939,'_et_pb_page_layout','et_right_sidebar'),(16871,3939,'_et_pb_side_nav','off'),(16872,3939,'_et_pb_use_builder','on'),(16873,3939,'_et_pb_first_image',''),(16874,3939,'_et_pb_truncate_post',''),(16875,3939,'_et_pb_truncate_post_date',''),(16876,3939,'_et_pb_old_content',''),(16877,3939,'_et_pb_built_for_post_type','page'),(16878,3939,'_et_pb_ab_subjects',''),(16879,3939,'_et_pb_enable_shortcode_tracking',''),(16880,3939,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3939\" /]'),(16881,3939,'_et_pb_custom_css',''),(16882,3939,'_et_pb_gutter_width','3'),(16883,3939,'_et_builder_version','VB|Divi|4.9.7'),(16884,3939,'_et_pb_show_page_creation','off'),(16885,3939,'_wp_old_slug','february-11-2020-market-report'),(16886,3939,'_wp_old_slug','march-17th-2020-market-report'),(16887,3939,'_wp_old_slug','may-1th-2020-market-report-2'),(16888,3939,'_wp_old_slug','july-21st-2020-market-report-2'),(16889,3939,'_wp_old_slug','november-10th-2020-market-report'),(16890,3939,'_global_colors_info','{}'),(16896,3939,'_dp_original','3913'),(16897,3939,'_edit_lock','1640201501:2'),(16898,3939,'_edit_last','2'),(17020,3948,'_wp_attached_file','2022/01/Tuesday-February-4th-Feeder-Cattle.pdf'),(17021,3948,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:42:\"Tuesday-February-4th-Feeder-Cattle-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Tuesday-February-4th-Feeder-Cattle-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Tuesday-February-4th-Feeder-Cattle-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Tuesday-February-4th-Feeder-Cattle-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(17026,3951,'_wp_attached_file','2022/01/TuesdayJanuary-4th-Feeder-Cattle-Consignments.pdf'),(17027,3951,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"TuesdayJanuary-4th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"TuesdayJanuary-4th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"TuesdayJanuary-4th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"TuesdayJanuary-4th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(17087,3955,'_thumbnail_id','786'),(17088,3955,'_et_post_bg_color','#ffffff'),(17089,3955,'_et_post_bg_layout','light'),(17090,3955,'_et_pb_show_title','on'),(17091,3955,'_et_pb_post_hide_nav','default'),(17092,3955,'_et_pb_page_layout','et_right_sidebar'),(17093,3955,'_et_pb_side_nav','off'),(17094,3955,'_et_pb_use_builder','on'),(17095,3955,'_et_pb_first_image',''),(17096,3955,'_et_pb_truncate_post',''),(17097,3955,'_et_pb_truncate_post_date',''),(17098,3955,'_et_pb_old_content',''),(17099,3955,'_et_pb_built_for_post_type','page'),(17100,3955,'_et_pb_ab_subjects',''),(17101,3955,'_et_pb_enable_shortcode_tracking',''),(17102,3955,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3955\" /]'),(17103,3955,'_et_pb_custom_css',''),(17104,3955,'_et_pb_gutter_width','3'),(17105,3955,'_et_builder_version','VB|Divi|4.14.5'),(17106,3955,'_et_pb_show_page_creation','off'),(17107,3955,'_wp_old_slug','february-11-2020-market-report'),(17108,3955,'_wp_old_slug','march-17th-2020-market-report'),(17109,3955,'_wp_old_slug','may-1th-2020-market-report-2'),(17110,3955,'_wp_old_slug','july-21st-2020-market-report-2'),(17111,3955,'_wp_old_slug','november-10th-2020-market-report'),(17112,3955,'_global_colors_info','{}'),(17118,3955,'_dp_original','3939'),(17119,3955,'_edit_lock','1641870796:2'),(17120,3955,'_edit_last','2'),(17344,3964,'_wp_attached_file','2022/01/January-222022-Cow-Sale.pdf'),(17345,3964,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:31:\"January-222022-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"January-222022-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"January-222022-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"January-222022-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(17354,3967,'_wp_attached_file','2022/01/Tuesday-January-11th-Feeder-Cattle-Consignments.pdf'),(17355,3967,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-January-11th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-January-11th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-January-11th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-January-11th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(17387,3973,'_thumbnail_id','786'),(17388,3973,'_et_post_bg_color','#ffffff'),(17389,3973,'_et_post_bg_layout','light'),(17390,3973,'_et_pb_show_title','on'),(17391,3973,'_et_pb_post_hide_nav','default'),(17392,3973,'_et_pb_page_layout','et_right_sidebar'),(17393,3973,'_et_pb_side_nav','off'),(17394,3973,'_et_pb_use_builder','on'),(17395,3973,'_et_pb_first_image',''),(17396,3973,'_et_pb_truncate_post',''),(17397,3973,'_et_pb_truncate_post_date',''),(17398,3973,'_et_pb_old_content',''),(17399,3973,'_et_pb_built_for_post_type','page'),(17400,3973,'_et_pb_ab_subjects',''),(17401,3973,'_et_pb_enable_shortcode_tracking',''),(17402,3973,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3973\" /]'),(17403,3973,'_et_pb_custom_css',''),(17404,3973,'_et_pb_gutter_width','3'),(17405,3973,'_et_builder_version','VB|Divi|4.14.5'),(17406,3973,'_et_pb_show_page_creation','off'),(17407,3973,'_wp_old_slug','february-11-2020-market-report'),(17408,3973,'_wp_old_slug','march-17th-2020-market-report'),(17409,3973,'_wp_old_slug','may-1th-2020-market-report-2'),(17410,3973,'_wp_old_slug','july-21st-2020-market-report-2'),(17411,3973,'_wp_old_slug','november-10th-2020-market-report'),(17412,3973,'_global_colors_info','{}'),(17418,3973,'_dp_original','3955'),(17419,3973,'_edit_lock','1642007070:2'),(17420,3973,'_edit_last','2'),(17570,3979,'_wp_attached_file','2022/01/January-222022-Cow-Sale-1.pdf'),(17571,3979,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"January-222022-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"January-222022-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"January-222022-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"January-222022-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(17584,3983,'_wp_attached_file','2022/01/January-222022-Cow-Sale-2.pdf'),(17585,3983,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"January-222022-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"January-222022-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"January-222022-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"January-222022-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(17594,3986,'_wp_attached_file','2022/01/January-222022-Cow-Sale-3.pdf'),(17595,3986,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"January-222022-Cow-Sale-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"January-222022-Cow-Sale-3-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"January-222022-Cow-Sale-3-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"January-222022-Cow-Sale-3-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(17783,3993,'_wp_attached_file','2022/01/January-222022-Cow-Sale-4.pdf'),(17784,3993,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"January-222022-Cow-Sale-4-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"January-222022-Cow-Sale-4-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"January-222022-Cow-Sale-4-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"January-222022-Cow-Sale-4-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(17793,3996,'_wp_attached_file','2022/01/TuesdayJanuary-18th-Feeder-Cattle-Consignments.pdf'),(17794,3996,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"TuesdayJanuary-18th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"TuesdayJanuary-18th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"TuesdayJanuary-18th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"TuesdayJanuary-18th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(17825,4000,'_thumbnail_id','786'),(17826,4000,'_et_post_bg_color','#ffffff'),(17827,4000,'_et_post_bg_layout','light'),(17828,4000,'_et_pb_show_title','on'),(17829,4000,'_et_pb_post_hide_nav','default'),(17830,4000,'_et_pb_page_layout','et_right_sidebar'),(17831,4000,'_et_pb_side_nav','off'),(17832,4000,'_et_pb_use_builder','on'),(17833,4000,'_et_pb_first_image',''),(17834,4000,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">January 18, 2022 3501 hd; Â  Last week; 3782 hd; a year ago 3392 hd. Feeder cattle sold steady-$4 higher. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$205.00</p>\n<p>400-500<br />\n$170.00-$211.00</p>\n<p>500-600<br />\n$160.00-$204.00</p>\n<p>600-700<br />\n$154.00-$183.00</p>\n<p>700-800<br />\n$150.00-$174.00</p>\n<p>800-900<br />\n$145.00-$161.50</p>\n<p>900-1000<br />\n$140.00-$145.75</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$180.00</p>\n<p>400-500<br />\n$150.00-$179.00</p>\n<p>500-600<br />\n$145.00-$174.25</p>\n<p>600-700<br />\n$140.00-$155.75</p>\n<p>700-800<br />\n$135.00-$155.00</p>\n<p>800-900<br />\n$130.00-$152.50</p>\n<p>900-1000<br />\n$122.00-$134.75</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$68.00 &#8211; $78.00</p>\n<p>Medium Yield<br />\n$59.00 &#8211; $67.00</p>\n<p>Low Yield<br />\n$48.00 &#8211; $58.00</p>\n<p>Bulls<br />\n$78.00 &#8211; $103.50</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n651lbs @$178.00</p>\n<p>Steers<br />\n683lbs @$168.50-Char</p>\n<p>Steers<br />\n735lbs @$163.75</p>\n<p>Steers<br />\n790lbs @$165.25</p>\n<p>Steers<br />\n817lbs @$155.85-Char</p>\n<p>Steers<br />\n827lbs @$158.25</p>\n<p>Steers<br />\n850lbs @$160.75</p>\n<p>Heifers<br />\n724lbs @$154.25</p>\n<p>Heifers<br />\n827lbs @$152.50</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(17835,4000,'_et_pb_truncate_post_date','2022-09-14 10:46:04'),(17836,4000,'_et_pb_old_content',''),(17837,4000,'_et_pb_built_for_post_type','page'),(17838,4000,'_et_pb_ab_subjects',''),(17839,4000,'_et_pb_enable_shortcode_tracking',''),(17840,4000,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4000\" /]'),(17841,4000,'_et_pb_custom_css',''),(17842,4000,'_et_pb_gutter_width','3'),(17843,4000,'_et_builder_version','VB|Divi|4.14.5'),(17844,4000,'_et_pb_show_page_creation','off'),(17845,4000,'_wp_old_slug','february-11-2020-market-report'),(17846,4000,'_wp_old_slug','march-17th-2020-market-report'),(17847,4000,'_wp_old_slug','may-1th-2020-market-report-2'),(17848,4000,'_wp_old_slug','july-21st-2020-market-report-2'),(17849,4000,'_wp_old_slug','november-10th-2020-market-report'),(17850,4000,'_global_colors_info','{}'),(17856,4000,'_dp_original','3973'),(17857,4000,'_edit_lock','1642570112:2'),(17858,4000,'_edit_last','2'),(17942,639,'_et_builder_dynamic_assets_loading_attr_threshold','7'),(17947,723,'_et_builder_dynamic_assets_loading_attr_threshold','2'),(17952,1118,'_et_builder_dynamic_assets_loading_attr_threshold','3'),(17960,2209,'_et_builder_dynamic_assets_loading_attr_threshold','3'),(17968,1967,'_et_builder_dynamic_assets_loading_attr_threshold','7'),(17974,679,'_et_builder_dynamic_assets_loading_attr_threshold','7'),(17994,714,'_et_builder_dynamic_assets_loading_attr_threshold','14'),(18323,4013,'_wp_attached_file','2022/01/Tuesday-January-25th-Feeder-Cattle-Consignments.pdf'),(18324,4013,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-January-25th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-January-25th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-January-25th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-January-25th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(18357,4019,'_thumbnail_id','786'),(18358,4019,'_et_post_bg_color','#ffffff'),(18359,4019,'_et_post_bg_layout','light'),(18360,4019,'_et_pb_show_title','on'),(18361,4019,'_et_pb_post_hide_nav','default'),(18362,4019,'_et_pb_page_layout','et_right_sidebar'),(18363,4019,'_et_pb_side_nav','off'),(18364,4019,'_et_pb_use_builder','on'),(18365,4019,'_et_pb_first_image',''),(18366,4019,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">January 25, 2022 4221 hd; Â  Last week; 3501 hd; a year ago 1487 hd. Feeder steers weighing 650lbs &amp; down &amp; heifers weighing 575lbs &amp; down sold steady-$5 higher. Heavier calves &amp; yearlings sold steady-$2 lower. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$175.00-$225.00</p>\n<p>400-500<br />\n$170.00-$215.00</p>\n<p>500-600<br />\n$160.00-$203.00</p>\n<p>600-700<br />\n$154.00-$180.75</p>\n<p>700-800<br />\n$150.00-$162.75</p>\n<p>800-900<br />\n$144.00-$154.00</p>\n<p>900-1000<br />\n$132.00-$141.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$155.00-$203.00</p>\n<p>400-500<br />\n$150.00-$185.50</p>\n<p>500-600<br />\n$145.00-$174.25</p>\n<p>600-700<br />\n$132.00-$152.00</p>\n<p>700-800<br />\n$132.00-$152.50</p>\n<p>800-900<br />\n$135.00-$145.00</p>\n<p>900-1000<br />\n$115.00-$130.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$72.00 &#8211; $83.00</p>\n<p>Medium Yield<br />\n$60.00 &#8211; $71.00</p>\n<p>Low Yield<br />\n$45.00 &#8211; $59.00</p>\n<p>Bulls<br />\n$75.00 &#8211; $110.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n472lbs @$214.50</p>\n<p>Steers<br />\n544lbs @$197.00</p>\n<p>Steers<br />\n739lbs @$162.50</p>\n<p>Steers<br />\n760lbs @$156.00</p>\n<p>Steers<br />\n874lbs @$154.00</p>\n<p>Heifers<br />\n466lbs @$185.25</p>\n<p>Heifers<br />\n720lbs @$147.00</p>\n<p>Heifers<br />\n720lbs @$152.00</p>\n<p>Heifers<br />\n734lbs @$147.00</p>\n<p>Heifers<br />\n807lbs@$144.10</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(18367,4019,'_et_pb_truncate_post_date','2022-09-14 10:46:04'),(18368,4019,'_et_pb_old_content',''),(18369,4019,'_et_pb_built_for_post_type','page'),(18370,4019,'_et_pb_ab_subjects',''),(18371,4019,'_et_pb_enable_shortcode_tracking',''),(18372,4019,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4019\" /]'),(18373,4019,'_et_pb_custom_css',''),(18374,4019,'_et_pb_gutter_width','3'),(18375,4019,'_et_builder_version','VB|Divi|4.14.5'),(18376,4019,'_et_pb_show_page_creation','off'),(18377,4019,'_wp_old_slug','february-11-2020-market-report'),(18378,4019,'_wp_old_slug','march-17th-2020-market-report'),(18379,4019,'_wp_old_slug','may-1th-2020-market-report-2'),(18380,4019,'_wp_old_slug','july-21st-2020-market-report-2'),(18381,4019,'_wp_old_slug','november-10th-2020-market-report'),(18382,4019,'_global_colors_info','{}'),(18388,4019,'_dp_original','4000'),(18389,4019,'_edit_lock','1643224340:2'),(18390,4019,'_edit_last','2'),(18423,4026,'_wp_attached_file','2022/01/Tuesday-February-1st-Feeder-Cattle-Consignments.pdf'),(18424,4026,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-February-1st-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-February-1st-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-February-1st-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-February-1st-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(18447,4031,'_thumbnail_id','786'),(18448,4031,'_et_post_bg_color','#ffffff'),(18449,4031,'_et_post_bg_layout','light'),(18450,4031,'_et_pb_show_title','on'),(18451,4031,'_et_pb_post_hide_nav','default'),(18452,4031,'_et_pb_page_layout','et_right_sidebar'),(18453,4031,'_et_pb_side_nav','off'),(18454,4031,'_et_pb_use_builder','on'),(18455,4031,'_et_pb_first_image',''),(18456,4031,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_4 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_12\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_16  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_24  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">February 1, 2022 3565 hd; Â  Last week; 4221 hd; a year ago 2141 hd. Feeder cattle sold $3-$7 higher in spots. There was god buyer activity on all classes of cattle. Slaughter cows &amp; bulls sold $3-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_13\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_17  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$214.00</p>\n<p>400-500<br />\n$170.00-$216.75</p>\n<p>500-600<br />\n$160.00-$211.50</p>\n<p>600-700<br />\n$155.00-$183.60</p>\n<p>700-800<br />\n$150.00-$173.00</p>\n<p>800-900<br />\n$150.00-$157.35</p>\n<p>900-1000<br />\n$139.00-$149.85</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_26  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$155.00-$184.50</p>\n<p>400-500<br />\n$150.00-$182.50</p>\n<p>500-600<br />\n$142.00-$184.75</p>\n<p>600-700<br />\n$140.00-$160.00</p>\n<p>700-800<br />\n$138.00-$155.00</p>\n<p>800-900<br />\n$128.50-$137.00</p>\n<p>900-1000<br />\n$120.00-$124.50</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_18  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_27  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$70.00 &#8211; $87.00</p>\n<p>Medium Yield<br />\n$61.00 &#8211; $69.00</p>\n<p>Low Yield<br />\n$48.00 &#8211; $60.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $115.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_28  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n586lbs @$188.00</p>\n<p>Steers<br />\n602lbs @$183.50</p>\n<p>Steers<br />\n694lbs @$173.85</p>\n<p>Steers<br />\n794lbs @$162.85</p>\n<p>Steers<br />\n885lbs @$156.85</p>\n<p>Heifers<br />\n579lbs @$162.25</p>\n<p>Heifers<br />\n669lbs @$157.50</p>\n<p>Heifers<br />\n724lbs @$154.50</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_29  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_14\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_19  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_4_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_4 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div>\n'),(18457,4031,'_et_pb_truncate_post_date','2022-03-09 22:25:44'),(18458,4031,'_et_pb_old_content',''),(18459,4031,'_et_pb_built_for_post_type','page'),(18460,4031,'_et_pb_ab_subjects',''),(18461,4031,'_et_pb_enable_shortcode_tracking',''),(18462,4031,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4031\" /]'),(18463,4031,'_et_pb_custom_css',''),(18464,4031,'_et_pb_gutter_width','3'),(18465,4031,'_et_builder_version','VB|Divi|4.14.5'),(18466,4031,'_et_pb_show_page_creation','off'),(18467,4031,'_wp_old_slug','february-11-2020-market-report'),(18468,4031,'_wp_old_slug','march-17th-2020-market-report'),(18469,4031,'_wp_old_slug','may-1th-2020-market-report-2'),(18470,4031,'_wp_old_slug','july-21st-2020-market-report-2'),(18471,4031,'_wp_old_slug','november-10th-2020-market-report'),(18472,4031,'_global_colors_info','{}'),(18478,4031,'_dp_original','4019'),(18479,4031,'_edit_lock','1643825406:2'),(18480,4031,'_edit_last','2'),(18482,4031,'_wp_old_slug','january-25-2022-market-report-2'),(18640,4036,'_wp_attached_file','2022/02/Tuesday-February-8th-Feeder-Cattle-Consignments.pdf'),(18641,4036,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-February-8th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-February-8th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-February-8th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-February-8th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(18649,4038,'_wp_attached_file','2022/02/February-192022-Cow-Sale.pdf'),(18650,4038,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"February-192022-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"February-192022-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"February-192022-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"February-192022-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(18713,4046,'_thumbnail_id','786'),(18714,4046,'_et_post_bg_color','#ffffff'),(18715,4046,'_et_post_bg_layout','light'),(18716,4046,'_et_pb_show_title','on'),(18717,4046,'_et_pb_post_hide_nav','default'),(18718,4046,'_et_pb_page_layout','et_right_sidebar'),(18719,4046,'_et_pb_side_nav','off'),(18720,4046,'_et_pb_use_builder','on'),(18721,4046,'_et_pb_first_image',''),(18722,4046,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_3 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">February 8, 2022 2145 hd;Â  Last week; 3565 hd; a year ago 1955 hd. Feeder steers &amp; heifers sold $4-$15 higher in spots w/ lots of big strings of long weaned cattle. Slaughter cows &amp; bulls sold $6-$8 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_10\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$215.50</p>\n<p>400-500<br />\n$170.00-$223.50</p>\n<p>500-600<br />\n$165.00-$214.00</p>\n<p>600-700<br />\n$145.00-$186.00</p>\n<p>700-800<br />\n$150.00-$175.00</p>\n<p>800-900<br />\n$145.00-$163.00</p>\n<p>900-1000<br />\n$140.00-$152.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$192.50</p>\n<p>400-500<br />\n$157.00-$189.00</p>\n<p>500-600<br />\n$150.00-$189.00</p>\n<p>600-700<br />\n$140.00-$162.50</p>\n<p>700-800<br />\n$130.00-$156.00</p>\n<p>800-900<br />\nN/A</p>\n<p>900-1000<br />\n$110.00-$122.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$77.00 &#8211; $91.00</p>\n<p>Medium Yield<br />\n$66.00 &#8211; $76.00</p>\n<p>Low Yield<br />\n$50.00 &#8211; $65.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $113.50</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n520lbs @$217.50</p>\n<p>Steers<br />\n596lbs @$187.50</p>\n<p>Steers<br />\n694lbs @$175.00</p>\n<p>Steers<br />\n744lbs @$172.75</p>\n<p>Steers<br />\n807lbs @$163.00</p>\n<p>SteersÂ <br />\n860lbs @$156.00</p>\n<p>Steers<br />\n944lbs @$152.00</p>\n<p>Heifers<br />\n672lbs @$157.50</p>\n<p>Heifers<br />\n721lbs @$152.85</p>\n<p>Heifers<br />\n747lbs@$151.75</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_11\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_3_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_3 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div>\n'),(18723,4046,'_et_pb_truncate_post_date','2022-03-09 22:25:44'),(18724,4046,'_et_pb_old_content',''),(18725,4046,'_et_pb_built_for_post_type','page'),(18726,4046,'_et_pb_ab_subjects',''),(18727,4046,'_et_pb_enable_shortcode_tracking',''),(18728,4046,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4046\" /]'),(18729,4046,'_et_pb_custom_css',''),(18730,4046,'_et_pb_gutter_width','3'),(18731,4046,'_et_builder_version','VB|Divi|4.14.5'),(18732,4046,'_et_pb_show_page_creation','off'),(18733,4046,'_wp_old_slug','february-11-2020-market-report'),(18734,4046,'_wp_old_slug','march-17th-2020-market-report'),(18735,4046,'_wp_old_slug','may-1th-2020-market-report-2'),(18736,4046,'_wp_old_slug','july-21st-2020-market-report-2'),(18737,4046,'_wp_old_slug','november-10th-2020-market-report'),(18738,4046,'_wp_old_slug','january-25-2022-market-report-2'),(18739,4046,'_global_colors_info','{}'),(18745,4046,'_dp_original','4031'),(18746,4046,'_edit_lock','1644424602:2'),(18747,4046,'_edit_last','2'),(18758,4055,'_wp_attached_file','2022/02/February-192022-Cow-Sale-1.pdf'),(18759,4055,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:34:\"February-192022-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"February-192022-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"February-192022-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"February-192022-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(18999,4061,'_wp_attached_file','2022/02/February-192022-Cow-Sale-2.pdf'),(19000,4061,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:34:\"February-192022-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"February-192022-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"February-192022-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"February-192022-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(19013,4065,'_wp_attached_file','2022/02/February-192022-Cow-Sale-3.pdf'),(19014,4065,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:34:\"February-192022-Cow-Sale-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"February-192022-Cow-Sale-3-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"February-192022-Cow-Sale-3-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"February-192022-Cow-Sale-3-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(19023,4068,'_wp_attached_file','2022/02/TuesdayFebruary-15th-Feeder-Cattle-Consignments.pdf'),(19024,4068,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdayFebruary-15th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdayFebruary-15th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdayFebruary-15th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdayFebruary-15th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(19037,4072,'_thumbnail_id','786'),(19038,4072,'_et_post_bg_color','#ffffff'),(19039,4072,'_et_post_bg_layout','light'),(19040,4072,'_et_pb_show_title','on'),(19041,4072,'_et_pb_post_hide_nav','default'),(19042,4072,'_et_pb_page_layout','et_right_sidebar'),(19043,4072,'_et_pb_side_nav','off'),(19044,4072,'_et_pb_use_builder','on'),(19045,4072,'_et_pb_first_image',''),(19046,4072,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">February 15, 2022 4436 hd; Last week; 2145 hd; a year ago N/A. Compared to last week steers under 700lbs sold $5-$7 higher &amp; heavier weights traded steady. Heifers sold steady-$6 higher. Lots of reputation cattle &amp; quality was very good. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$230.00</p>\n<p>400-500<br />\n$170.00-$223.75</p>\n<p>500-600<br />\n$165.00-$229.75</p>\n<p>600-700<br />\n$165.00-$199.00</p>\n<p>700-800<br />\n$150.00-$175.00</p>\n<p>800-900<br />\n$150.00-$163.00</p>\n<p>900-1000<br />\n$139.00-$153.50</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$200.00</p>\n<p>400-500<br />\n$155.00-$200.00</p>\n<p>500-600<br />\n$150.00-$187.50</p>\n<p>600-700<br />\n$140.00-$175.00</p>\n<p>700-800<br />\n$135.00-$158.00</p>\n<p>800-900<br />\n$124.00-$145.75</p>\n<p>900-1000<br />\n$115.00-$131.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$77.00 &#8211; $91.00</p>\n<p>Medium Yield<br />\n$66.00 &#8211; $76.00</p>\n<p>Low Yield<br />\n$50.00 &#8211; $65.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $113.50</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n491lbs @$229.75</p>\n<p>Steers<br />\n601lbs @$199.00</p>\n<p>Steers<br />\n648lbs @$187.75</p>\n<p>Steers<br />\n781lbs @$167.85</p>\n<p>Heifers<br />\n495lbs @$194.85</p>\n<p>Heifers<br />\n623lbs @$175.10</p>\n<p>Heifers<br />\n707lbs @$155.00</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div>\n'),(19047,4072,'_et_pb_truncate_post_date','2022-03-09 22:25:44'),(19048,4072,'_et_pb_old_content',''),(19049,4072,'_et_pb_built_for_post_type','page'),(19050,4072,'_et_pb_ab_subjects',''),(19051,4072,'_et_pb_enable_shortcode_tracking',''),(19052,4072,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4072\" /]'),(19053,4072,'_et_pb_custom_css',''),(19054,4072,'_et_pb_gutter_width','3'),(19055,4072,'_et_builder_version','VB|Divi|4.14.5'),(19056,4072,'_et_pb_show_page_creation','off'),(19057,4072,'_wp_old_slug','february-11-2020-market-report'),(19058,4072,'_wp_old_slug','march-17th-2020-market-report'),(19059,4072,'_wp_old_slug','may-1th-2020-market-report-2'),(19060,4072,'_wp_old_slug','july-21st-2020-market-report-2'),(19061,4072,'_wp_old_slug','november-10th-2020-market-report'),(19062,4072,'_wp_old_slug','january-25-2022-market-report-2'),(19063,4072,'_global_colors_info','{}'),(19069,4072,'_dp_original','4046'),(19070,4072,'_edit_lock','1645039483:2'),(19071,4072,'_edit_last','2'),(19081,4077,'_wp_attached_file','2022/02/February-192022-Cow-Sale-4.pdf'),(19082,4077,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:34:\"February-192022-Cow-Sale-4-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"February-192022-Cow-Sale-4-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"February-192022-Cow-Sale-4-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"February-192022-Cow-Sale-4-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(19274,4084,'_wp_attached_file','2022/02/TuesdayFebruary-22nd-Feeder-Cattle-Consignments.pdf'),(19275,4084,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdayFebruary-22nd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdayFebruary-22nd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdayFebruary-22nd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdayFebruary-22nd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(19313,4089,'_thumbnail_id','786'),(19314,4089,'_et_post_bg_color','#ffffff'),(19315,4089,'_et_post_bg_layout','light'),(19316,4089,'_et_pb_show_title','on'),(19317,4089,'_et_pb_post_hide_nav','default'),(19318,4089,'_et_pb_page_layout','et_right_sidebar'),(19319,4089,'_et_pb_side_nav','off'),(19320,4089,'_et_pb_use_builder','on'),(19321,4089,'_et_pb_first_image',''),(19322,4089,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">February 22, 2022 2115 hd; Last week; 4436 hd; a year ago 4382. Feeder cattle sold steady on a lighter test compared to the last few weeks. Slaughter cows &amp; bulls sold steady-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$165.00-$215.00</p>\n<p>400-500<br />\n$160.00-$215.50</p>\n<p>500-600<br />\n$160.00-$220.00</p>\n<p>600-700<br />\n$155.00-$188.50</p>\n<p>700-800<br />\n$145.00-$173.50</p>\n<p>800-900<br />\n$142.00-$155.75</p>\n<p>900-1000<br />\n$140.00-$151.25</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$205.00</p>\n<p>400-500<br />\n$160.00-$196.00</p>\n<p>500-600<br />\n$145.00-$178.50</p>\n<p>600-700<br />\n$140.00-$169.00</p>\n<p>700-800<br />\n$143.50-$157.00</p>\n<p>800-900<br />\n$125.00-$142.00</p>\n<p>900-1000<br />\n$122.00-$135.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$84.00 &#8211; $94.50</p>\n<p>Medium Yield<br />\n$70.00 &#8211; $83.00</p>\n<p>Low Yield<br />\n$52.00 &#8211; $69.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $122.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n676lbs @$177.00</p>\n<p>Steers<br />\n714lbs @$167.00</p>\n<p>Steers<br />\n764lbs @$162.25</p>\n<p>Heifers<br />\n640lbs @$167.00</p>\n<p>Heifers<br />\n674lbs @$157.25</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div>\n'),(19323,4089,'_et_pb_truncate_post_date','2022-03-09 22:25:44'),(19324,4089,'_et_pb_old_content',''),(19325,4089,'_et_pb_built_for_post_type','page'),(19326,4089,'_et_pb_ab_subjects',''),(19327,4089,'_et_pb_enable_shortcode_tracking',''),(19328,4089,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4089\" /]'),(19329,4089,'_et_pb_custom_css',''),(19330,4089,'_et_pb_gutter_width','3'),(19331,4089,'_et_builder_version','VB|Divi|4.14.5'),(19332,4089,'_et_pb_show_page_creation','off'),(19333,4089,'_wp_old_slug','february-11-2020-market-report'),(19334,4089,'_wp_old_slug','march-17th-2020-market-report'),(19335,4089,'_wp_old_slug','may-1th-2020-market-report-2'),(19336,4089,'_wp_old_slug','july-21st-2020-market-report-2'),(19337,4089,'_wp_old_slug','november-10th-2020-market-report'),(19338,4089,'_wp_old_slug','january-25-2022-market-report-2'),(19339,4089,'_global_colors_info','{}'),(19345,4089,'_dp_original','4072'),(19346,4089,'_edit_lock','1645637093:2'),(19347,4089,'_edit_last','2'),(19547,4095,'_wp_attached_file','2022/02/March-192022-Cow-Sale.pdf'),(19548,4095,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:29:\"March-192022-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"March-192022-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"March-192022-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"March-192022-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(19557,4098,'_wp_attached_file','2022/02/image000003.jpg'),(19558,4098,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1295;s:6:\"height\";i:971;s:4:\"file\";s:23:\"2022/02/image000003.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"image000003-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"image000003-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"image000003-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"image000003-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"image000003-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:24:\"image000003-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"image000003-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"image000003-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:24:\"image000003-1080x810.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"image000003-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:24:\"image000003-1280x960.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:23:\"image000003-980x735.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:735;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:23:\"image000003-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19563,4101,'_wp_attached_file','2022/02/TuesdayFebruary-22nd-Feeder-Cattle-Consignments-1.pdf'),(19564,4101,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:57:\"TuesdayFebruary-22nd-Feeder-Cattle-Consignments-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:65:\"TuesdayFebruary-22nd-Feeder-Cattle-Consignments-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:66:\"TuesdayFebruary-22nd-Feeder-Cattle-Consignments-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:65:\"TuesdayFebruary-22nd-Feeder-Cattle-Consignments-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(19569,4103,'_wp_attached_file','2022/02/TuesdayMarch-1st-Feeder-Cattle-Consignments.pdf'),(19570,4103,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"TuesdayMarch-1st-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"TuesdayMarch-1st-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"TuesdayMarch-1st-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"TuesdayMarch-1st-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(19598,4109,'_thumbnail_id','786'),(19599,4109,'_et_post_bg_color','#ffffff'),(19600,4109,'_et_post_bg_layout','light'),(19601,4109,'_et_pb_show_title','on'),(19602,4109,'_et_pb_post_hide_nav','default'),(19603,4109,'_et_pb_page_layout','et_right_sidebar'),(19604,4109,'_et_pb_side_nav','off'),(19605,4109,'_et_pb_use_builder','on'),(19606,4109,'_et_pb_first_image',''),(19607,4109,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n					<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">March 1, 2022 2306 hd; Last week; 2115 hd; a year ago 4023. Feeder steers weighing 700lbs &amp; down sold steady-$5 higher w/ heavier weights selling steady. Feeder heifers sold fully steady. Slaughter cows &amp; bulls sold $2-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$222.00</p>\n<p>400-500<br />\n$165.00-$22550</p>\n<p>500-600<br />\n$160.00-$225.00</p>\n<p>600-700<br />\n$162.00-$192.00</p>\n<p>700-800<br />\n$149.00-$169.85</p>\n<p>800-900<br />\n$138.00-$155.75</p>\n<p>900-1000<br />\n$136.00-$149.75</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$211.00</p>\n<p>400-500<br />\n$160.00-$197.00</p>\n<p>500-600<br />\n$155.00-$189.25</p>\n<p>600-700<br />\n$140.00-$170.00</p>\n<p>700-800<br />\n$137.00-$154.35</p>\n<p>800-900<br />\n$123.00-$147.00</p>\n<p>900-1000<br />\n$120.00-$125.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$87.00 &#8211; $97.00</p>\n<p>Medium Yield<br />\n$75.00 &#8211; $86.00</p>\n<p>Low Yield<br />\n$60.00 &#8211; $75.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $118.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n757lbs @$163.75</p>\n<p>Steers<br />\n783lbs @$158.00</p>\n<p>Heifers<br />\n716lbs @$153.60</p>\n<p>Heifers<br />\n836lbs @$147.00</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n			</div>\n				\n				\n			</div>\n'),(19608,4109,'_et_pb_truncate_post_date','2022-03-09 22:25:44'),(19609,4109,'_et_pb_old_content',''),(19610,4109,'_et_pb_built_for_post_type','page'),(19611,4109,'_et_pb_ab_subjects',''),(19612,4109,'_et_pb_enable_shortcode_tracking',''),(19613,4109,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4109\" /]'),(19614,4109,'_et_pb_custom_css',''),(19615,4109,'_et_pb_gutter_width','3'),(19616,4109,'_et_builder_version','VB|Divi|4.14.5'),(19617,4109,'_et_pb_show_page_creation','off'),(19618,4109,'_wp_old_slug','february-11-2020-market-report'),(19619,4109,'_wp_old_slug','march-17th-2020-market-report'),(19620,4109,'_wp_old_slug','may-1th-2020-market-report-2'),(19621,4109,'_wp_old_slug','july-21st-2020-market-report-2'),(19622,4109,'_wp_old_slug','november-10th-2020-market-report'),(19623,4109,'_wp_old_slug','january-25-2022-market-report-2'),(19624,4109,'_global_colors_info','{}'),(19630,4109,'_dp_original','4089'),(19631,4109,'_edit_lock','1646237033:2'),(19632,4109,'_edit_last','2'),(19637,4114,'_wp_attached_file','2022/03/March-HorseTack-Small-Animal.pdf'),(19638,4114,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:36:\"March-HorseTack-Small-Animal-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"March-HorseTack-Small-Animal-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"March-HorseTack-Small-Animal-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"March-HorseTack-Small-Animal-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(19896,4119,'_wp_attached_file','2022/03/TuesdayMarch-8th-Feeder-Cattle-Consignments.pdf'),(19897,4119,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"TuesdayMarch-8th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"TuesdayMarch-8th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"TuesdayMarch-8th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"TuesdayMarch-8th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(19906,4123,'_wp_attached_file','2022/03/March-192022-Cow-Sale.pdf'),(19907,4123,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:29:\"March-192022-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"March-192022-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"March-192022-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"March-192022-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(20003,4130,'_wp_attached_file','2022/03/Jerome-Auction-April-2nd.pdf'),(20004,4130,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"Jerome-Auction-April-2nd-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Jerome-Auction-April-2nd-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Jerome-Auction-April-2nd-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Jerome-Auction-April-2nd-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(20422,4133,'_wp_attached_file','2022/03/March-192022-Cow-Sale-1.pdf'),(20423,4133,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:31:\"March-192022-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"March-192022-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"March-192022-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"March-192022-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(20432,4136,'_wp_attached_file','2022/03/TuesdayMarch-15th-Feeder-Cattle-Consignments.pdf'),(20433,4136,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"TuesdayMarch-15th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"TuesdayMarch-15th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"TuesdayMarch-15th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"TuesdayMarch-15th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(20459,4143,'_wp_attached_file','2022/03/Sieker-Auction-April-8th-Garden-CIty.pdf'),(20460,4143,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:44:\"Sieker-Auction-April-8th-Garden-CIty-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"Sieker-Auction-April-8th-Garden-CIty-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"Sieker-Auction-April-8th-Garden-CIty-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Sieker-Auction-April-8th-Garden-CIty-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(20464,4145,'_thumbnail_id','786'),(20465,4145,'_et_post_bg_color','#ffffff'),(20466,4145,'_et_post_bg_layout','light'),(20467,4145,'_et_pb_show_title','on'),(20468,4145,'_et_pb_post_hide_nav','default'),(20469,4145,'_et_pb_page_layout','et_right_sidebar'),(20470,4145,'_et_pb_side_nav','off'),(20471,4145,'_et_pb_use_builder','on'),(20472,4145,'_et_pb_first_image',''),(20473,4145,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">March 15, 2022 1957 hd; Last week; 2488 hd; a year ago 1879.Feeder cattle sold $5-$8 higher. Slaughter cows &amp; bulls sold $3-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$211.00</p>\n<p>400-500<br />\n$170.00-$219.50</p>\n<p>500-600<br />\n$165.00-$208.50</p>\n<p>600-700<br />\n$160.00-$192.00</p>\n<p>700-800<br />\n$140.00-$170.85</p>\n<p>800-900<br />\n$137.00-$156.10</p>\n<p>900-1000<br />\n$128.00-$139.75</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$202.50</p>\n<p>400-500<br />\n$150.00-$188.00</p>\n<p>500-600<br />\n$140.00-$164.00</p>\n<p>600-700<br />\n$140.00-$162.25</p>\n<p>700-800<br />\n$135.00-$151.50</p>\n<p>800-900<br />\n$130.00-$140.00</p>\n<p>900-1000<br />\n$117.00-$127.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$86.00 &#8211; $100.00</p>\n<p>Medium Yield<br />\n$70.00 &#8211; $85.00</p>\n<p>Low Yield<br />\n$60.00 &#8211; $69.00</p>\n<p>Bulls<br />\n$90.00 &#8211; $125.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n712lbs @$170.85</p>\n<p>Steers<br />\n779lbs @$158.35</p>\n<p>Steers<br />\n867lbs @$156.10</p>\n<p>Heifers<br />\n680lbs @$158.75</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(20474,4145,'_et_pb_truncate_post_date','2022-03-31 21:45:45'),(20475,4145,'_et_pb_old_content',''),(20476,4145,'_et_pb_built_for_post_type','page'),(20477,4145,'_et_pb_ab_subjects',''),(20478,4145,'_et_pb_enable_shortcode_tracking',''),(20479,4145,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4145\" /]'),(20480,4145,'_et_pb_custom_css',''),(20481,4145,'_et_pb_gutter_width','3'),(20482,4145,'_et_builder_version','VB|Divi|4.14.5'),(20483,4145,'_et_pb_show_page_creation','off'),(20484,4145,'_wp_old_slug','february-11-2020-market-report'),(20485,4145,'_wp_old_slug','march-17th-2020-market-report'),(20486,4145,'_wp_old_slug','may-1th-2020-market-report-2'),(20487,4145,'_wp_old_slug','july-21st-2020-market-report-2'),(20488,4145,'_wp_old_slug','november-10th-2020-market-report'),(20489,4145,'_wp_old_slug','january-25-2022-market-report-2'),(20490,4145,'_global_colors_info','{}'),(20496,4145,'_dp_original','4109'),(20497,4145,'_edit_lock','1647448592:2'),(20498,4145,'_edit_last','2'),(20840,4156,'_wp_attached_file','2022/03/TuesdayMarch-22nd-Feeder-Cattle-Consignments.pdf'),(20841,4156,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"TuesdayMarch-22nd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"TuesdayMarch-22nd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"TuesdayMarch-22nd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"TuesdayMarch-22nd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(21108,4163,'_thumbnail_id','786'),(21109,4163,'_et_post_bg_color','#ffffff'),(21110,4163,'_et_post_bg_layout','light'),(21111,4163,'_et_pb_show_title','on'),(21112,4163,'_et_pb_post_hide_nav','default'),(21113,4163,'_et_pb_page_layout','et_right_sidebar'),(21114,4163,'_et_pb_side_nav','off'),(21115,4163,'_et_pb_use_builder','on'),(21116,4163,'_et_pb_first_image',''),(21117,4163,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">March 22, 2022 2345 hd; Last week; 1957 hd; a year ago 1360.Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$185.00-$227.00</p>\n<p>400-500<br />\n$170.00-$217.50</p>\n<p>500-600<br />\n$160.00-$210.00</p>\n<p>600-700<br />\n$155.00-$184.00</p>\n<p>700-800<br />\n$144.00-$168.00</p>\n<p>800-900<br />\n$140.00-$159.10</p>\n<p>900-1000<br />\n$132.00-$141.60</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$195.00</p>\n<p>400-500<br />\n$150.00-$188.00</p>\n<p>500-600<br />\n$140.00-$173.00</p>\n<p>600-700<br />\n$137.00-$159.00</p>\n<p>700-800<br />\n$135.00-$155.50</p>\n<p>800-900<br />\n$120.00-$130.00</p>\n<p>900-1000<br />\n$112.00-$123.50</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$92.00 &#8211; $103.00</p>\n<p>Medium Yield<br />\n$80.00 &#8211; $91.00</p>\n<p>Low Yield<br />\n$60.00 &#8211; $79.00</p>\n<p>Bulls<br />\n$90.00 &#8211; $125.50</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n670lbs @$180.00</p>\n<p>Steers<br />\n807lbs @$159.00</p>\n<p>Steers<br />\n825lbs @$156.75</p>\n<p>Steers<br />\n941lbs @$141.60</p>\n<p>Heifers<br />\n678lbs @$154.75</p>\n<p>Heifers<br />\n702lbs @$150.00</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(21118,4163,'_et_pb_truncate_post_date','2022-03-31 21:45:45'),(21119,4163,'_et_pb_old_content',''),(21120,4163,'_et_pb_built_for_post_type','page'),(21121,4163,'_et_pb_ab_subjects',''),(21122,4163,'_et_pb_enable_shortcode_tracking',''),(21123,4163,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4163\" /]'),(21124,4163,'_et_pb_custom_css',''),(21125,4163,'_et_pb_gutter_width','3'),(21126,4163,'_et_builder_version','VB|Divi|4.14.5'),(21127,4163,'_et_pb_show_page_creation','off'),(21128,4163,'_wp_old_slug','february-11-2020-market-report'),(21129,4163,'_wp_old_slug','march-17th-2020-market-report'),(21130,4163,'_wp_old_slug','may-1th-2020-market-report-2'),(21131,4163,'_wp_old_slug','july-21st-2020-market-report-2'),(21132,4163,'_wp_old_slug','november-10th-2020-market-report'),(21133,4163,'_wp_old_slug','january-25-2022-market-report-2'),(21134,4163,'_global_colors_info','{}'),(21141,4163,'_dp_original','4145'),(21142,4163,'_edit_lock','1648055732:2'),(21143,4163,'_edit_last','2'),(21151,4168,'_wp_attached_file','2022/03/TuesdayMarch-29th-Feeder-Cattle-Consignments.pdf'),(21152,4168,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"TuesdayMarch-29th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"TuesdayMarch-29th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"TuesdayMarch-29th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"TuesdayMarch-29th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(21157,4170,'_wp_attached_file','2022/03/Jerome-Auction-April-2nd-1.pdf'),(21158,4170,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:34:\"Jerome-Auction-April-2nd-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Jerome-Auction-April-2nd-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"Jerome-Auction-April-2nd-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Jerome-Auction-April-2nd-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(21159,4171,'_wp_attached_file','2022/03/Sieker-Auction-April-8th-Garden-CIty-1.pdf'),(21160,4171,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:46:\"Sieker-Auction-April-8th-Garden-CIty-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"Sieker-Auction-April-8th-Garden-CIty-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:55:\"Sieker-Auction-April-8th-Garden-CIty-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"Sieker-Auction-April-8th-Garden-CIty-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(21164,4173,'_wp_attached_file','2022/03/Jerome-Auction-April-2nd-Blairstown.pdf'),(21165,4173,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:43:\"Jerome-Auction-April-2nd-Blairstown-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"Jerome-Auction-April-2nd-Blairstown-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"Jerome-Auction-April-2nd-Blairstown-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Jerome-Auction-April-2nd-Blairstown-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(21186,4178,'_thumbnail_id','786'),(21187,4178,'_et_post_bg_color','#ffffff'),(21188,4178,'_et_post_bg_layout','light'),(21189,4178,'_et_pb_show_title','on'),(21190,4178,'_et_pb_post_hide_nav','default'),(21191,4178,'_et_pb_page_layout','et_right_sidebar'),(21192,4178,'_et_pb_side_nav','off'),(21193,4178,'_et_pb_use_builder','on'),(21194,4178,'_et_pb_first_image',''),(21195,4178,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">March 29, 2022 3090 hd; Last week; 2345 hd; a year ago 2887.Feeder steers &amp; heifers sold $3-$5 higher. Lightweight grazing cattle sold $4-$8 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$229.50</p>\n<p>400-500<br />\n$180.00-$230.00</p>\n<p>500-600<br />\n$160.00-$220.00</p>\n<p>600-700<br />\n$155.00-$186.00</p>\n<p>700-800<br />\n$144.00-$168.75</p>\n<p>800-900<br />\n$140.00-$162.60</p>\n<p>900-1000<br />\n$134.00-$137.75</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$207.00</p>\n<p>400-500<br />\n$160.00-$212.00</p>\n<p>500-600<br />\n$145.00-$169.75</p>\n<p>600-700<br />\n$142.00-$165.00</p>\n<p>700-800<br />\n$138.00-$158.50</p>\n<p>800-900<br />\n$124.00-$136.75</p>\n<p>900-1000<br />\n$120.00-$126.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$88.00 &#8211; $106.00</p>\n<p>Medium Yield<br />\n$75.00 &#8211; $87.00</p>\n<p>Low Yield<br />\n$60.00 &#8211; $74.00</p>\n<p>Bulls<br />\n$90.00 &#8211; $125.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n719lbs @$168.75</p>\n<p>Steers<br />\n735lbs @$166.10</p>\n<p>Steers<br />\n775lbs @$162.50</p>\n<p>Steers<br />\n801lbs @$162.10</p>\n<p>Steers<br />\n890lbs @$148.60</p>\n<p>Heifers<br />\n668lbs @$160.50</p>\n<p>Heifers<br />\n673lbs @$160.75</p>\n<p>Heifers<br />\n707lbs @$152.75</p>\n<p>Heifers<br />\n707lbs @$153.25</p>\n<p>Heifers<br />\n722lbs@$150.00</p>\n<p>Heifers<br />\n730lbs@$155.00</p>\n<p>Heifers<br />\n788lbs@$141.35</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(21196,4178,'_et_pb_truncate_post_date','2022-03-31 21:45:45'),(21197,4178,'_et_pb_old_content',''),(21198,4178,'_et_pb_built_for_post_type','page'),(21199,4178,'_et_pb_ab_subjects',''),(21200,4178,'_et_pb_enable_shortcode_tracking',''),(21201,4178,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4178\" /]'),(21202,4178,'_et_pb_custom_css',''),(21203,4178,'_et_pb_gutter_width','3'),(21204,4178,'_et_builder_version','VB|Divi|4.14.5'),(21205,4178,'_et_pb_show_page_creation','off'),(21206,4178,'_wp_old_slug','february-11-2020-market-report'),(21207,4178,'_wp_old_slug','march-17th-2020-market-report'),(21208,4178,'_wp_old_slug','may-1th-2020-market-report-2'),(21209,4178,'_wp_old_slug','july-21st-2020-market-report-2'),(21210,4178,'_wp_old_slug','november-10th-2020-market-report'),(21211,4178,'_wp_old_slug','january-25-2022-market-report-2'),(21212,4178,'_global_colors_info','{}'),(21218,4178,'_dp_original','4163'),(21219,4178,'_edit_lock','1648661786:2'),(21220,4178,'_edit_last','2'),(21235,4185,'_wp_attached_file','2022/03/Wheeler-Auction-April-15th-Pleasant-Hill.pdf'),(21236,4185,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:48:\"Wheeler-Auction-April-15th-Pleasant-Hill-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Wheeler-Auction-April-15th-Pleasant-Hill-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"Wheeler-Auction-April-15th-Pleasant-Hill-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Wheeler-Auction-April-15th-Pleasant-Hill-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(21413,4192,'_wp_attached_file','2022/04/April-9th-2022-Horse-Tack-Small-Animal-Sale.pdf'),(21414,4192,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"April-9th-2022-Horse-Tack-Small-Animal-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"April-9th-2022-Horse-Tack-Small-Animal-Sale-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"April-9th-2022-Horse-Tack-Small-Animal-Sale-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"April-9th-2022-Horse-Tack-Small-Animal-Sale-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(21419,4194,'_wp_attached_file','2022/04/TuesdayApril-5th-Feeder-Cattle-Consignments.pdf'),(21420,4194,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"TuesdayApril-5th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"TuesdayApril-5th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"TuesdayApril-5th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"TuesdayApril-5th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(21574,4204,'_thumbnail_id','786'),(21575,4204,'_et_post_bg_color','#ffffff'),(21576,4204,'_et_post_bg_layout','light'),(21577,4204,'_et_pb_show_title','on'),(21578,4204,'_et_pb_post_hide_nav','default'),(21579,4204,'_et_pb_page_layout','et_right_sidebar'),(21580,4204,'_et_pb_side_nav','off'),(21581,4204,'_et_pb_use_builder','on'),(21582,4204,'_et_pb_first_image',''),(21583,4204,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">April 5, 2022 1693 hd; Last week; 3090 hd; a year ago 2457.Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$218.00</p>\n<p>400-500<br />\n$170.00-$218.25</p>\n<p>500-600<br />\n$160.00-$202.50</p>\n<p>600-700<br />\n$160.00-$180.00</p>\n<p>700-800<br />\n$150.00-$171.75</p>\n<p>800-900<br />\n$134.50-$147.75</p>\n<p>900-1000<br />\n$132.00-$140.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$207.00</p>\n<p>400-500<br />\n$155.00-$193.00</p>\n<p>500-600<br />\n$150.00-$174.00</p>\n<p>600-700<br />\n$142.00-$162.00</p>\n<p>700-800<br />\n$133.00-$153.75</p>\n<p>800-900<br />\n$121.00-$132.50</p>\n<p>900-1000<br />\n$110.00-$129.50</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$86.00 &#8211; $101.00</p>\n<p>Medium Yield<br />\n$74.00 &#8211; $85.00</p>\n<p>Low Yield<br />\n$60.00 &#8211; $73.00</p>\n<p>Bulls<br />\n$90.00 &#8211; $127.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n701lbs @$171.75</p>\n<p>Steers<br />\n774lbs @$155.75</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(21584,4204,'_et_pb_truncate_post_date','2022-04-13 13:56:52'),(21585,4204,'_et_pb_old_content',''),(21586,4204,'_et_pb_built_for_post_type','page'),(21587,4204,'_et_pb_ab_subjects',''),(21588,4204,'_et_pb_enable_shortcode_tracking',''),(21589,4204,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4204\" /]'),(21590,4204,'_et_pb_custom_css',''),(21591,4204,'_et_pb_gutter_width','3'),(21592,4204,'_et_builder_version','VB|Divi|4.14.5'),(21593,4204,'_et_pb_show_page_creation','off'),(21594,4204,'_wp_old_slug','february-11-2020-market-report'),(21595,4204,'_wp_old_slug','march-17th-2020-market-report'),(21596,4204,'_wp_old_slug','may-1th-2020-market-report-2'),(21597,4204,'_wp_old_slug','july-21st-2020-market-report-2'),(21598,4204,'_wp_old_slug','november-10th-2020-market-report'),(21599,4204,'_wp_old_slug','january-25-2022-market-report-2'),(21600,4204,'_global_colors_info','{}'),(21607,4204,'_dp_original','4178'),(21608,4204,'_edit_lock','1649257922:2'),(21609,4204,'_edit_last','2'),(21614,4210,'_wp_attached_file','2022/04/Packingham-Auction-April-30th-Freeman.pdf'),(21615,4210,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:45:\"Packingham-Auction-April-30th-Freeman-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"Packingham-Auction-April-30th-Freeman-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"Packingham-Auction-April-30th-Freeman-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"Packingham-Auction-April-30th-Freeman-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(22184,1450,'_thumbnail_id','0'),(22192,4216,'_wp_attached_file','2022/04/April-22-2022-Cow-Sale.pdf'),(22193,4216,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"April-22-2022-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"April-22-2022-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"April-22-2022-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"April-22-2022-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(22194,4218,'_wp_attached_file','2022/04/doc00215820220406170713-1.pdf'),(22195,4218,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"doc00215820220406170713-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"doc00215820220406170713-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"doc00215820220406170713-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"doc00215820220406170713-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(22204,4222,'_wp_attached_file','2022/04/Packingham-Auction-April-30th-Freeman-1.pdf'),(22205,4222,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:47:\"Packingham-Auction-April-30th-Freeman-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"Packingham-Auction-April-30th-Freeman-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"Packingham-Auction-April-30th-Freeman-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"Packingham-Auction-April-30th-Freeman-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(22209,4224,'_wp_attached_file','2022/04/TuesdayApril-12th-Feeder-Cattle-Consignments.pdf'),(22210,4224,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"TuesdayApril-12th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"TuesdayApril-12th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"TuesdayApril-12th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"TuesdayApril-12th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(22215,4226,'_wp_attached_file','2022/04/April-22-2022-Cow-Sale-1.pdf'),(22216,4226,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"April-22-2022-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"April-22-2022-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"April-22-2022-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"April-22-2022-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(22225,4230,'_thumbnail_id','786'),(22226,4230,'_et_post_bg_color','#ffffff'),(22227,4230,'_et_post_bg_layout','light'),(22228,4230,'_et_pb_show_title','on'),(22229,4230,'_et_pb_post_hide_nav','default'),(22230,4230,'_et_pb_page_layout','et_right_sidebar'),(22231,4230,'_et_pb_side_nav','off'),(22232,4230,'_et_pb_use_builder','on'),(22233,4230,'_et_pb_first_image',''),(22234,4230,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_4 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_12\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_16  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_24  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">April 12, 2022 2394 hd; Last week; 1693 hd; a year ago 1955. Steers &amp; heifers sold steady-$5 higher in spots.Slaughter cows &amp; bulls sold steady-$2 lower.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_13\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_17  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$233.50</p>\n<p>400-500<br />\n$175.00-$219.50</p>\n<p>500-600<br />\n$170.00-$203.00</p>\n<p>600-700<br />\n$160.00-$193.00</p>\n<p>700-800<br />\n$148.00-$166.60</p>\n<p>800-900<br />\n$140-$158.50</p>\n<p>900-1000<br />\n$135.00-$149.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_26  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$165.00-$200.00</p>\n<p>400-500<br />\n$160.00-$184.00</p>\n<p>500-600<br />\n$150.00-$182.50</p>\n<p>600-700<br />\n$141.00-$165.50</p>\n<p>700-800<br />\n$130.00-$156.00</p>\n<p>800-900<br />\n$124.00-$137.50</p>\n<p>900-1000<br />\n$122.50-$128.50</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_18  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_27  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$83.00 &#8211; $96.00</p>\n<p>Medium Yield<br />\n$71.00 &#8211; $82.00</p>\n<p>Low Yield<br />\n$58.00 &#8211; $70.00</p>\n<p>Bulls<br />\n$90.00 &#8211; $116.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_28  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n554lbs @$203.00</p>\n<p>Steers<br />\n785lbs @$159.85</p>\n<p>Steers<br />\n843lbs @$157.00</p>\n<p>Heifers<br />\n716lbs@$156.00</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_29  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_14\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_19  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_4_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_4 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(22235,4230,'_et_pb_truncate_post_date','2022-05-16 23:42:51'),(22236,4230,'_et_pb_old_content',''),(22237,4230,'_et_pb_built_for_post_type','page'),(22238,4230,'_et_pb_ab_subjects',''),(22239,4230,'_et_pb_enable_shortcode_tracking',''),(22240,4230,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4230\" /]'),(22241,4230,'_et_pb_custom_css',''),(22242,4230,'_et_pb_gutter_width','3'),(22243,4230,'_et_builder_version','VB|Divi|4.14.5'),(22244,4230,'_et_pb_show_page_creation','off'),(22245,4230,'_wp_old_slug','february-11-2020-market-report'),(22246,4230,'_wp_old_slug','march-17th-2020-market-report'),(22247,4230,'_wp_old_slug','may-1th-2020-market-report-2'),(22248,4230,'_wp_old_slug','july-21st-2020-market-report-2'),(22249,4230,'_wp_old_slug','november-10th-2020-market-report'),(22250,4230,'_wp_old_slug','january-25-2022-market-report-2'),(22251,4230,'_global_colors_info','{}'),(22257,4230,'_dp_original','4204'),(22258,4230,'_edit_lock','1649867151:2'),(22259,4230,'_edit_last','2'),(22388,4239,'_wp_attached_file','2022/04/April-22-2022-Cow-Sale-2.pdf'),(22389,4239,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"April-22-2022-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"April-22-2022-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"April-22-2022-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"April-22-2022-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(22405,4244,'_wp_attached_file','2022/04/TuesdayApril-19th-Feeder-Cattle-Consignments.pdf'),(22406,4244,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"TuesdayApril-19th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"TuesdayApril-19th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"TuesdayApril-19th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"TuesdayApril-19th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(22813,4248,'_thumbnail_id','786'),(22814,4248,'_et_post_bg_color','#ffffff'),(22815,4248,'_et_post_bg_layout','light'),(22816,4248,'_et_pb_show_title','on'),(22817,4248,'_et_pb_post_hide_nav','default'),(22818,4248,'_et_pb_page_layout','et_right_sidebar'),(22819,4248,'_et_pb_side_nav','off'),(22820,4248,'_et_pb_use_builder','on'),(22821,4248,'_et_pb_first_image',''),(22822,4248,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_3 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">April 19, 2022 2365 hd; Last week; 2394 hd; a year ago 2286. Feeders sold steady-$5 higher w/ good buyer activity. Slaughter cows &amp; bulls sold fully steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_10\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$226.50</p>\n<p>400-500<br />\n$175.00-$218.00</p>\n<p>500-600<br />\n$160.00-$202.00</p>\n<p>600-700<br />\n$160.00-$185.00</p>\n<p>700-800<br />\n$150.00-$175.00</p>\n<p>800-900<br />\n$140-$152.50</p>\n<p>900-1000<br />\n$130.00-$145.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$200.00</p>\n<p>400-500<br />\n$160.00-$185.00</p>\n<p>500-600<br />\n$150.00-$174.00</p>\n<p>600-700<br />\n$144.00-$170.00</p>\n<p>700-800<br />\n$141.00-$159.00</p>\n<p>800-900<br />\n$124.00-$146.75</p>\n<p>900-1000<br />\n$108.00-$130.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$81.00 &#8211; $97.00</p>\n<p>Medium Yield<br />\n$65.00 &#8211; $80.00</p>\n<p>Low Yield<br />\n$52.00 &#8211; $64.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $120.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n683lbs @$175.00</p>\n<p>Steers<br />\n713lbs @$173.50</p>\n<p>Steers<br />\n883lbs @$152.50</p>\n<p>Heifers<br />\n609lbs@$170.00</p>\n<p>Heifers<br />\n706lbs@$159.00</p>\n<p>Heifers<br />\n711lbs@$157.50</p>\n<p>Heifers<br />\n750lbs@$155.50</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_11\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_3_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_3 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(22823,4248,'_et_pb_truncate_post_date','2022-05-16 23:42:51'),(22824,4248,'_et_pb_old_content',''),(22825,4248,'_et_pb_built_for_post_type','page'),(22826,4248,'_et_pb_ab_subjects',''),(22827,4248,'_et_pb_enable_shortcode_tracking',''),(22828,4248,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4248\" /]'),(22829,4248,'_et_pb_custom_css',''),(22830,4248,'_et_pb_gutter_width','3'),(22831,4248,'_et_builder_version','VB|Divi|4.14.5'),(22832,4248,'_et_pb_show_page_creation','off'),(22833,4248,'_wp_old_slug','february-11-2020-market-report'),(22834,4248,'_wp_old_slug','march-17th-2020-market-report'),(22835,4248,'_wp_old_slug','may-1th-2020-market-report-2'),(22836,4248,'_wp_old_slug','july-21st-2020-market-report-2'),(22837,4248,'_wp_old_slug','november-10th-2020-market-report'),(22838,4248,'_wp_old_slug','january-25-2022-market-report-2'),(22839,4248,'_global_colors_info','{}'),(22846,4248,'_dp_original','4230'),(22847,4248,'_edit_lock','1650476410:2'),(22848,4248,'_edit_last','2'),(23023,4258,'_wp_attached_file','2022/04/TuesdayApril-26th-Feeder-Cattle-Consignments.pdf'),(23024,4258,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"TuesdayApril-26th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"TuesdayApril-26th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"TuesdayApril-26th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"TuesdayApril-26th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(23479,4262,'_thumbnail_id','786'),(23480,4262,'_et_post_bg_color','#ffffff'),(23481,4262,'_et_post_bg_layout','light'),(23482,4262,'_et_pb_show_title','on'),(23483,4262,'_et_pb_post_hide_nav','default'),(23484,4262,'_et_pb_page_layout','et_right_sidebar'),(23485,4262,'_et_pb_side_nav','off'),(23486,4262,'_et_pb_use_builder','on'),(23487,4262,'_et_pb_first_image',''),(23488,4262,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">April 26, 2022 2894 hd; Last week; 2365 hd; a year ago 1654. Steers &amp; heifers sold fully steady w/ 850-900lbs steers selling $3-$6 higher as buyers were very active.Â  Slaughter cows &amp; bulls sold $2-$5 lower.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$230.00</p>\n<p>400-500<br />\n$180.00-$225.00</p>\n<p>500-600<br />\n$165.00-$205.00</p>\n<p>600-700<br />\n$163.00-$187.00</p>\n<p>700-800<br />\n$147.00-$169.60</p>\n<p>800-900<br />\n$142.00-$159.10</p>\n<p>900-1000<br />\n$134.00-$146.35</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$200.00</p>\n<p>400-500<br />\n$150.00-$188.50</p>\n<p>500-600<br />\n$146.00-$170.00</p>\n<p>600-700<br />\n$140.00-$160.00</p>\n<p>700-800<br />\n$136.00-$149.50</p>\n<p>800-900<br />\n$130.00-$147.50</p>\n<p>900-1000<br />\n$117.00-$129.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$80.00 &#8211; $94.00</p>\n<p>Medium Yield<br />\n$68.00 &#8211; $79.00</p>\n<p>Low Yield<br />\n$50.00 &#8211; $67.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $114.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n746lbs @$169.60</p>\n<p>Steers<br />\n790lbs @$168.00</p>\n<p>Steers<br />\n885lbs @$155.85</p>\n<p>SteersÂ <br />\n891lbs@$159.10</p>\n<p>Steers<br />\n895lbs@$149.10</p>\n<p>Steers<br />\n943lbs@$146.35</p>\n<p>Heifers<br />\n680lbs@$160.00</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(23489,4262,'_et_pb_truncate_post_date','2022-05-16 23:42:51'),(23490,4262,'_et_pb_old_content',''),(23491,4262,'_et_pb_built_for_post_type','page'),(23492,4262,'_et_pb_ab_subjects',''),(23493,4262,'_et_pb_enable_shortcode_tracking',''),(23494,4262,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4262\" /]'),(23495,4262,'_et_pb_custom_css',''),(23496,4262,'_et_pb_gutter_width','3'),(23497,4262,'_et_builder_version','VB|Divi|4.14.5'),(23498,4262,'_et_pb_show_page_creation','off'),(23499,4262,'_wp_old_slug','february-11-2020-market-report'),(23500,4262,'_wp_old_slug','march-17th-2020-market-report'),(23501,4262,'_wp_old_slug','may-1th-2020-market-report-2'),(23502,4262,'_wp_old_slug','july-21st-2020-market-report-2'),(23503,4262,'_wp_old_slug','november-10th-2020-market-report'),(23504,4262,'_wp_old_slug','january-25-2022-market-report-2'),(23505,4262,'_global_colors_info','{}'),(23511,4262,'_dp_original','4248'),(23512,4262,'_edit_lock','1651076553:2'),(23513,4262,'_edit_last','2'),(23524,4268,'_wp_attached_file','2022/04/May-7-2022-Cow-Sale.pdf'),(23525,4268,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:27:\"May-7-2022-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"May-7-2022-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"May-7-2022-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"May-7-2022-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(23542,4273,'_wp_attached_file','2022/04/May-7-2022-Cow-Sale-1.pdf'),(23543,4273,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:29:\"May-7-2022-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"May-7-2022-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"May-7-2022-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"May-7-2022-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(23568,4281,'_wp_attached_file','2022/05/TuesdayMay-3rd-Feeder-Cattle-Consignments.pdf'),(23569,4281,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:49:\"TuesdayMay-3rd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"TuesdayMay-3rd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:58:\"TuesdayMay-3rd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"TuesdayMay-3rd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(23574,4283,'_wp_attached_file','2022/05/May-7-2022-Cow-Sale.pdf'),(23575,4283,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:27:\"May-7-2022-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"May-7-2022-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"May-7-2022-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"May-7-2022-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(23598,4290,'_wp_attached_file','2022/05/2022-fall-calving-catalog.pdf'),(23599,4290,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"2022-fall-calving-catalog-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"2022-fall-calving-catalog-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"2022-fall-calving-catalog-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"2022-fall-calving-catalog-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(23608,4294,'_wp_attached_file','2022/05/Lane-Auction-May15th.pdf'),(23609,4294,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:28:\"Lane-Auction-May15th-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Lane-Auction-May15th-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Lane-Auction-May15th-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Lane-Auction-May15th-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(23621,4298,'_thumbnail_id','786'),(23622,4298,'_et_post_bg_color','#ffffff'),(23623,4298,'_et_post_bg_layout','light'),(23624,4298,'_et_pb_show_title','on'),(23625,4298,'_et_pb_post_hide_nav','default'),(23626,4298,'_et_pb_page_layout','et_right_sidebar'),(23627,4298,'_et_pb_side_nav','off'),(23628,4298,'_et_pb_use_builder','on'),(23629,4298,'_et_pb_first_image',''),(23630,4298,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">May 3, 2022 2761 hd; Last week; 2894 hd; a year ago 2117. Feeder cattle sold steady. Fall calves sold steady-$2 higher w/ very good buyer activity.Â  Slaughter cows &amp; bulls sold $2 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$219.00</p>\n<p>400-500<br />\n$180.00-$222.00</p>\n<p>500-600<br />\n$165.00-$209.50</p>\n<p>600-700<br />\n$160.00-$189.50</p>\n<p>700-800<br />\n$151.00-$165.50</p>\n<p>800-900<br />\n$148.50-$157.85</p>\n<p>900-1000<br />\n$120.00-$140.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$195.00</p>\n<p>400-500<br />\n$160.00-$204.50</p>\n<p>500-600<br />\n$148.00-$171.00</p>\n<p>600-700<br />\n$144.00-$167.50</p>\n<p>700-800<br />\n$137.00-$153.75</p>\n<p>800-900<br />\n$133.00-$147.00</p>\n<p>900-1000<br />\n$110.00-$124.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$80.00 &#8211; $93.00</p>\n<p>Medium Yield<br />\n$67.00 &#8211; $79.00</p>\n<p>Low Yield<br />\n$55.00 &#8211; $66.00</p>\n<p>Bulls<br />\n$90.00 &#8211; $118.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n630lbs @$189.50</p>\n<p>Steers<br />\n698lbs @$176.75</p>\n<p>Steers<br />\n877lbs @$157.75</p>\n<p>Heifers<br />\n685lbs@$160.00</p>\n<p>Heifers<br />\n724lbs@$153.75</p>\n<p>Heifers<br />\n741lbs@$151.75</p>\n<p>Heifers<br />\n804lbs@$144.50</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(23631,4298,'_et_pb_truncate_post_date','2022-05-16 23:42:51'),(23632,4298,'_et_pb_old_content',''),(23633,4298,'_et_pb_built_for_post_type','page'),(23634,4298,'_et_pb_ab_subjects',''),(23635,4298,'_et_pb_enable_shortcode_tracking',''),(23636,4298,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4298\" /]'),(23637,4298,'_et_pb_custom_css',''),(23638,4298,'_et_pb_gutter_width','3'),(23639,4298,'_et_builder_version','VB|Divi|4.14.5'),(23640,4298,'_et_pb_show_page_creation','off'),(23641,4298,'_wp_old_slug','february-11-2020-market-report'),(23642,4298,'_wp_old_slug','march-17th-2020-market-report'),(23643,4298,'_wp_old_slug','may-1th-2020-market-report-2'),(23644,4298,'_wp_old_slug','july-21st-2020-market-report-2'),(23645,4298,'_wp_old_slug','november-10th-2020-market-report'),(23646,4298,'_wp_old_slug','january-25-2022-market-report-2'),(23647,4298,'_global_colors_info','{}'),(23654,4298,'_dp_original','4262'),(23655,4298,'_edit_lock','1651676598:2'),(23656,4298,'_edit_last','2'),(23661,4303,'_wp_attached_file','2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale.pdf'),(23662,4303,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"May-14th-2022-Horse-Tack-Small-Animal-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"May-14th-2022-Horse-Tack-Small-Animal-Sale-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"May-14th-2022-Horse-Tack-Small-Animal-Sale-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"May-14th-2022-Horse-Tack-Small-Animal-Sale-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(23738,4308,'_wp_attached_file','2022/05/2022-fall-calving-catalog-1.pdf'),(23739,4308,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"2022-fall-calving-catalog-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"2022-fall-calving-catalog-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"2022-fall-calving-catalog-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"2022-fall-calving-catalog-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(23748,4311,'_wp_attached_file','2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-1.pdf'),(23749,4311,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"May-14th-2022-Horse-Tack-Small-Animal-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"May-14th-2022-Horse-Tack-Small-Animal-Sale-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"May-14th-2022-Horse-Tack-Small-Animal-Sale-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"May-14th-2022-Horse-Tack-Small-Animal-Sale-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(24220,4318,'_wp_attached_file','2022/05/TuesdayMay-10th-Feeder-Cattle-Consignments.pdf'),(24221,4318,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"TuesdayMay-10th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"TuesdayMay-10th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"TuesdayMay-10th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"TuesdayMay-10th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(24230,4321,'_wp_attached_file','2022/05/May-21-2022-Cow-Sale.pdf'),(24231,4321,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:28:\"May-21-2022-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"May-21-2022-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"May-21-2022-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"May-21-2022-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(24244,4325,'_wp_attached_file','2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-2.pdf'),(24245,4325,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"May-14th-2022-Horse-Tack-Small-Animal-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"May-14th-2022-Horse-Tack-Small-Animal-Sale-2-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"May-14th-2022-Horse-Tack-Small-Animal-Sale-2-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"May-14th-2022-Horse-Tack-Small-Animal-Sale-2-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(24266,4331,'_wp_attached_file','2022/05/2022-Memorial-Day-Sale-Flyer.pdf'),(24267,4331,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:36:\"2022-Memorial-Day-Sale-Flyer-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"2022-Memorial-Day-Sale-Flyer-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"2022-Memorial-Day-Sale-Flyer-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"2022-Memorial-Day-Sale-Flyer-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(24283,4337,'_wp_attached_file','2022/05/May-21-2022-Cow-Sale-1.pdf'),(24284,4337,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"May-21-2022-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"May-21-2022-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"May-21-2022-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"May-21-2022-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(24293,4340,'_thumbnail_id','786'),(24294,4340,'_et_post_bg_color','#ffffff'),(24295,4340,'_et_post_bg_layout','light'),(24296,4340,'_et_pb_show_title','on'),(24297,4340,'_et_pb_post_hide_nav','default'),(24298,4340,'_et_pb_page_layout','et_right_sidebar'),(24299,4340,'_et_pb_side_nav','off'),(24300,4340,'_et_pb_use_builder','on'),(24301,4340,'_et_pb_first_image',''),(24302,4340,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">May 10, 2022 2127 hd; Last week; 2761 hd; a year ago 2267. Steers &amp; heifers sold steady. Slaughter cows &amp; bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$233.00</p>\n<p>400-500<br />\n$170.00-$225.00</p>\n<p>500-600<br />\n$170.00-$204.50</p>\n<p>600-700<br />\n$155.00-$189.00</p>\n<p>700-800<br />\n$150.00-$168.50</p>\n<p>800-900<br />\n$146.00-$158.00</p>\n<p>900-1000<br />\n$140.00-$151.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$195.00</p>\n<p>400-500<br />\n$160.00-$189.00</p>\n<p>500-600<br />\n$150.00-$174.00</p>\n<p>600-700<br />\n$140.00-$165.25</p>\n<p>700-800<br />\n$138.00-$160.00</p>\n<p>800-900<br />\n$127.00-$139.00</p>\n<p>900-1000<br />\n$115.00-$129.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$80.00 &#8211; $96.00</p>\n<p>Medium Yield<br />\n$69.00 &#8211; $79.00</p>\n<p>Low Yield<br />\n$55.00 &#8211; $68.00</p>\n<p>Bulls<br />\n$88.00 &#8211; $115.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n632lbs @$189.00</p>\n<p>Steers<br />\n738lbs @$168.50</p>\n<p>Heifers<br />\n709lbs @$160.00</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(24303,4340,'_et_pb_truncate_post_date','2022-05-16 23:42:51'),(24304,4340,'_et_pb_old_content',''),(24305,4340,'_et_pb_built_for_post_type','page'),(24306,4340,'_et_pb_ab_subjects',''),(24307,4340,'_et_pb_enable_shortcode_tracking',''),(24308,4340,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4340\" /]'),(24309,4340,'_et_pb_custom_css',''),(24310,4340,'_et_pb_gutter_width','3'),(24311,4340,'_et_builder_version','VB|Divi|4.14.5'),(24312,4340,'_et_pb_show_page_creation','off'),(24313,4340,'_wp_old_slug','february-11-2020-market-report'),(24314,4340,'_wp_old_slug','march-17th-2020-market-report'),(24315,4340,'_wp_old_slug','may-1th-2020-market-report-2'),(24316,4340,'_wp_old_slug','july-21st-2020-market-report-2'),(24317,4340,'_wp_old_slug','november-10th-2020-market-report'),(24318,4340,'_wp_old_slug','january-25-2022-market-report-2'),(24319,4340,'_global_colors_info','{}'),(24325,4340,'_dp_original','4298'),(24326,4340,'_edit_lock','1652284542:2'),(24327,4340,'_edit_last','2'),(24408,4347,'_wp_attached_file','2022/05/May-21-2022-Cow-Sale-2.pdf'),(24409,4347,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"May-21-2022-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"May-21-2022-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"May-21-2022-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"May-21-2022-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(24421,4351,'_wp_attached_file','2022/05/TuesdayMay-17th-Feeder-Cattle-Consignments.pdf'),(24422,4351,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"TuesdayMay-17th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"TuesdayMay-17th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"TuesdayMay-17th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"TuesdayMay-17th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(24451,4355,'_wp_attached_file','2022/05/Memorial-Day-2022-Detailed-Consignment-List.pdf'),(24452,4355,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"Memorial-Day-2022-Detailed-Consignment-List-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Memorial-Day-2022-Detailed-Consignment-List-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2022-Detailed-Consignment-List-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"Memorial-Day-2022-Detailed-Consignment-List-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(24456,4357,'_thumbnail_id','786'),(24457,4357,'_et_post_bg_color','#ffffff'),(24458,4357,'_et_post_bg_layout','light'),(24459,4357,'_et_pb_show_title','on'),(24460,4357,'_et_pb_post_hide_nav','default'),(24461,4357,'_et_pb_page_layout','et_right_sidebar'),(24462,4357,'_et_pb_side_nav','off'),(24463,4357,'_et_pb_use_builder','on'),(24464,4357,'_et_pb_first_image',''),(24465,4357,'_et_pb_truncate_post',''),(24466,4357,'_et_pb_truncate_post_date',''),(24467,4357,'_et_pb_old_content',''),(24468,4357,'_et_pb_built_for_post_type','page'),(24469,4357,'_et_pb_ab_subjects',''),(24470,4357,'_et_pb_enable_shortcode_tracking',''),(24471,4357,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4357\" /]'),(24472,4357,'_et_pb_custom_css',''),(24473,4357,'_et_pb_gutter_width','3'),(24474,4357,'_et_builder_version','VB|Divi|4.14.5'),(24475,4357,'_et_pb_show_page_creation','off'),(24476,4357,'_wp_old_slug','february-11-2020-market-report'),(24477,4357,'_wp_old_slug','march-17th-2020-market-report'),(24478,4357,'_wp_old_slug','may-1th-2020-market-report-2'),(24479,4357,'_wp_old_slug','july-21st-2020-market-report-2'),(24480,4357,'_wp_old_slug','november-10th-2020-market-report'),(24481,4357,'_wp_old_slug','january-25-2022-market-report-2'),(24482,4357,'_global_colors_info','{}'),(24488,4357,'_dp_original','4340'),(24489,4357,'_edit_lock','1652891550:2'),(24490,4357,'_edit_last','2'),(24541,4365,'_wp_attached_file','2022/05/2022-Fall-Calving-SMS-Sale-Order.pdf'),(24542,4365,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:40:\"2022-Fall-Calving-SMS-Sale-Order-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:1088;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"2022-Fall-Calving-SMS-Sale-Order-pdf-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"2022-Fall-Calving-SMS-Sale-Order-pdf-1024x791.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"2022-Fall-Calving-SMS-Sale-Order-pdf-150x116.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(24591,4370,'_wp_attached_file','2022/05/TuesdayMay-24th-Feeder-Cattle-Consignments.pdf'),(24592,4370,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"TuesdayMay-24th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"TuesdayMay-24th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"TuesdayMay-24th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"TuesdayMay-24th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(24601,4373,'_wp_attached_file','2022/05/Memorial-Day-2022-Detailed-Consignment-List-1.pdf'),(24602,4373,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2022-Detailed-Consignment-List-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2022-Detailed-Consignment-List-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2022-Detailed-Consignment-List-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2022-Detailed-Consignment-List-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(24609,4376,'_wp_attached_file','2022/05/TuesdayMay-24th-Feeder-Cattle-Consignments-1.pdf'),(24610,4376,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"TuesdayMay-24th-Feeder-Cattle-Consignments-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"TuesdayMay-24th-Feeder-Cattle-Consignments-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"TuesdayMay-24th-Feeder-Cattle-Consignments-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"TuesdayMay-24th-Feeder-Cattle-Consignments-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(24624,4378,'_thumbnail_id','786'),(24625,4378,'_et_post_bg_color','#ffffff'),(24626,4378,'_et_post_bg_layout','light'),(24627,4378,'_et_pb_show_title','on'),(24628,4378,'_et_pb_post_hide_nav','default'),(24629,4378,'_et_pb_page_layout','et_right_sidebar'),(24630,4378,'_et_pb_side_nav','off'),(24631,4378,'_et_pb_use_builder','on'),(24632,4378,'_et_pb_first_image',''),(24633,4378,'_et_pb_truncate_post',''),(24634,4378,'_et_pb_truncate_post_date',''),(24635,4378,'_et_pb_old_content',''),(24636,4378,'_et_pb_built_for_post_type','page'),(24637,4378,'_et_pb_ab_subjects',''),(24638,4378,'_et_pb_enable_shortcode_tracking',''),(24639,4378,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4378\" /]'),(24640,4378,'_et_pb_custom_css',''),(24641,4378,'_et_pb_gutter_width','3'),(24642,4378,'_et_builder_version','VB|Divi|4.14.5'),(24643,4378,'_et_pb_show_page_creation','off'),(24644,4378,'_wp_old_slug','february-11-2020-market-report'),(24645,4378,'_wp_old_slug','march-17th-2020-market-report'),(24646,4378,'_wp_old_slug','may-1th-2020-market-report-2'),(24647,4378,'_wp_old_slug','july-21st-2020-market-report-2'),(24648,4378,'_wp_old_slug','november-10th-2020-market-report'),(24649,4378,'_wp_old_slug','january-25-2022-market-report-2'),(24650,4378,'_global_colors_info','{}'),(24656,4378,'_dp_original','4357'),(24657,4378,'_edit_lock','1653491835:2'),(24658,4378,'_edit_last','2'),(24676,4385,'_wp_attached_file','2022/05/Memorial-Day-2022-Detailed-Consignment-List-2.pdf'),(24677,4385,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2022-Detailed-Consignment-List-2-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2022-Detailed-Consignment-List-2-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2022-Detailed-Consignment-List-2-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2022-Detailed-Consignment-List-2-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25038,4392,'_wp_attached_file','2022/05/Memorial-Day-2022-Detailed-Consignment-List-3.pdf'),(25039,4392,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2022-Detailed-Consignment-List-3-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2022-Detailed-Consignment-List-3-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2022-Detailed-Consignment-List-3-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2022-Detailed-Consignment-List-3-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25043,4394,'_wp_attached_file','2022/05/Memorial-Day-2022-Detailed-Consignment-List-4.pdf'),(25044,4394,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2022-Detailed-Consignment-List-4-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2022-Detailed-Consignment-List-4-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2022-Detailed-Consignment-List-4-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2022-Detailed-Consignment-List-4-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25048,4396,'_wp_attached_file','2022/05/Memorial-Day-2022-Detailed-Consignment-List-5.pdf'),(25049,4396,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2022-Detailed-Consignment-List-5-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2022-Detailed-Consignment-List-5-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2022-Detailed-Consignment-List-5-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2022-Detailed-Consignment-List-5-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25057,4400,'_wp_attached_file','2022/05/TuesdayMay-31st-Feeder-Cattle-Consignments.pdf'),(25058,4400,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"TuesdayMay-31st-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"TuesdayMay-31st-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"TuesdayMay-31st-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"TuesdayMay-31st-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25063,4402,'_wp_attached_file','2022/05/TuesdayMay-31st-Feeder-Cattle-Consignments-1.pdf'),(25064,4402,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"TuesdayMay-31st-Feeder-Cattle-Consignments-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"TuesdayMay-31st-Feeder-Cattle-Consignments-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"TuesdayMay-31st-Feeder-Cattle-Consignments-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"TuesdayMay-31st-Feeder-Cattle-Consignments-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25069,4404,'_wp_attached_file','2022/05/June-17-2022-Cow-Sale.pdf'),(25070,4404,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:29:\"June-17-2022-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"June-17-2022-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"June-17-2022-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"June-17-2022-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25094,4411,'_thumbnail_id','786'),(25095,4411,'_et_post_bg_color','#ffffff'),(25096,4411,'_et_post_bg_layout','light'),(25097,4411,'_et_pb_show_title','on'),(25098,4411,'_et_pb_post_hide_nav','default'),(25099,4411,'_et_pb_page_layout','et_right_sidebar'),(25100,4411,'_et_pb_side_nav','off'),(25101,4411,'_et_pb_use_builder','on'),(25102,4411,'_et_pb_first_image',''),(25103,4411,'_et_pb_truncate_post',''),(25104,4411,'_et_pb_truncate_post_date',''),(25105,4411,'_et_pb_old_content',''),(25106,4411,'_et_pb_built_for_post_type','page'),(25107,4411,'_et_pb_ab_subjects',''),(25108,4411,'_et_pb_enable_shortcode_tracking',''),(25109,4411,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4411\" /]'),(25110,4411,'_et_pb_custom_css',''),(25111,4411,'_et_pb_gutter_width','3'),(25112,4411,'_et_builder_version','VB|Divi|4.14.5'),(25113,4411,'_et_pb_show_page_creation','off'),(25114,4411,'_wp_old_slug','february-11-2020-market-report'),(25115,4411,'_wp_old_slug','march-17th-2020-market-report'),(25116,4411,'_wp_old_slug','may-1th-2020-market-report-2'),(25117,4411,'_wp_old_slug','july-21st-2020-market-report-2'),(25118,4411,'_wp_old_slug','november-10th-2020-market-report'),(25119,4411,'_wp_old_slug','january-25-2022-market-report-2'),(25120,4411,'_global_colors_info','{}'),(25126,4411,'_dp_original','4378'),(25127,4411,'_edit_lock','1654099864:2'),(25128,4411,'_edit_last','2'),(25138,4417,'_wp_attached_file','2022/06/June-17-2022-Cow-Sale.pdf'),(25139,4417,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:29:\"June-17-2022-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"June-17-2022-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"June-17-2022-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"June-17-2022-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25144,4419,'_wp_attached_file','2022/06/June-17-2022-Cow-Sale-1.pdf'),(25145,4419,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:31:\"June-17-2022-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"June-17-2022-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"June-17-2022-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"June-17-2022-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25150,4421,'_wp_attached_file','2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf'),(25151,4421,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:47:\"June-July-2022-2-HorseTack-Small-Animal-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"June-July-2022-2-HorseTack-Small-Animal-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"June-July-2022-2-HorseTack-Small-Animal-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"June-July-2022-2-HorseTack-Small-Animal-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25254,4425,'_wp_attached_file','2022/06/TuesdayJune-7th-Feeder-Cattle-Consignments.pdf'),(25255,4425,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"TuesdayJune-7th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"TuesdayJune-7th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"TuesdayJune-7th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"TuesdayJune-7th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25312,4435,'_thumbnail_id','786'),(25313,4435,'_et_post_bg_color','#ffffff'),(25314,4435,'_et_post_bg_layout','light'),(25315,4435,'_et_pb_show_title','on'),(25316,4435,'_et_pb_post_hide_nav','default'),(25317,4435,'_et_pb_page_layout','et_right_sidebar'),(25318,4435,'_et_pb_side_nav','off'),(25319,4435,'_et_pb_use_builder','on'),(25320,4435,'_et_pb_first_image',''),(25321,4435,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_4 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_12\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_16  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_24  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">June 7, 2022, 4435 hd; Last week; 1985 hd; a year ago 3095. All classes of feeder cattle sold $5-$15 higher. Slaughter cows &amp; bulls sold $2-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_13\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_17  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$227.50</p>\n<p>400-500<br />\n$170.00-$221.50</p>\n<p>500-600<br />\n$168.00-$217.50</p>\n<p>600-700<br />\n$160.00-$193.50</p>\n<p>700-800<br />\n$150.00-$179.75</p>\n<p>800-900<br />\n$140.00-$166.60</p>\n<p>900-1000<br />\n$134.00-$146.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_26  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$165.00-$206.00</p>\n<p>400-500<br />\n$160.00-$192.75</p>\n<p>500-600<br />\n$152.00-$183.00</p>\n<p>600-700<br />\n$140.00-$163.75</p>\n<p>700-800<br />\n$137.00-$156.00</p>\n<p>800-900<br />\n$128.50-$136.50</p>\n<p>900-1000<br />\n$110.00-$132.50</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_18  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_27  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$85.00 &#8211; $102.00</p>\n<p>Medium Yield<br />\n$76.00 &#8211; $84.00</p>\n<p>Low Yield<br />\n$60.00 &#8211; $75.00</p>\n<p>Bulls<br />\n$90.00 &#8211; $121.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_28  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n681lbs @$165.75</p>\n<p>Steers<br />\n792lbs @$162.82</p>\n<p>Steers<br />\n799lbs @$163.85</p>\n<p>Steers<br />\n801lbs @$164.50</p>\n<p>Steers<br />\n814lbs @$161.35</p>\n<p>Steers<br />\n846lbs @$166.60</p>\n<p>Steers<br />\n855lbs @$165.75</p>\n<p>Heifers<br />\n725lbs @$156.00</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_29  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_14\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_19  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_4_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_4 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(25322,4435,'_et_pb_truncate_post_date','2022-08-20 13:42:38'),(25323,4435,'_et_pb_old_content',''),(25324,4435,'_et_pb_built_for_post_type','page'),(25325,4435,'_et_pb_ab_subjects',''),(25326,4435,'_et_pb_enable_shortcode_tracking',''),(25327,4435,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4435\" /]'),(25328,4435,'_et_pb_custom_css',''),(25329,4435,'_et_pb_gutter_width','3'),(25330,4435,'_et_builder_version','VB|Divi|4.14.5'),(25331,4435,'_et_pb_show_page_creation','off'),(25332,4435,'_wp_old_slug','february-11-2020-market-report'),(25333,4435,'_wp_old_slug','march-17th-2020-market-report'),(25334,4435,'_wp_old_slug','may-1th-2020-market-report-2'),(25335,4435,'_wp_old_slug','july-21st-2020-market-report-2'),(25336,4435,'_wp_old_slug','november-10th-2020-market-report'),(25337,4435,'_wp_old_slug','january-25-2022-market-report-2'),(25338,4435,'_global_colors_info','{}'),(25344,4435,'_dp_original','4411'),(25345,4435,'_edit_lock','1654706179:2'),(25346,4435,'_edit_last','2'),(25353,4440,'_wp_attached_file','2022/06/June-17-2022-Cow-Sale-2.pdf'),(25354,4440,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:31:\"June-17-2022-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"June-17-2022-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"June-17-2022-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"June-17-2022-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25366,4443,'_wp_attached_file','2022/06/James-Auction-June-24th-Odessa.pdf'),(25367,4443,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:38:\"James-Auction-June-24th-Odessa-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"James-Auction-June-24th-Odessa-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"James-Auction-June-24th-Odessa-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"James-Auction-June-24th-Odessa-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25784,4447,'_wp_attached_file','2022/06/James-Auction-June-24th-Odessa-2.pdf'),(25785,4447,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:40:\"James-Auction-June-24th-Odessa-2-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"James-Auction-June-24th-Odessa-2-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"James-Auction-June-24th-Odessa-2-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"James-Auction-June-24th-Odessa-2-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25797,4451,'_wp_attached_file','2022/06/Weeks-Auction-June-24th-Chilhowee.pdf'),(25798,4451,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:41:\"Weeks-Auction-June-24th-Chilhowee-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Weeks-Auction-June-24th-Chilhowee-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Weeks-Auction-June-24th-Chilhowee-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Weeks-Auction-June-24th-Chilhowee-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25799,4452,'_wp_attached_file','2022/06/Zimmerman-Auction-July-9th-Peculiar.pdf'),(25800,4452,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:43:\"Zimmerman-Auction-July-9th-Peculiar-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"Zimmerman-Auction-July-9th-Peculiar-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"Zimmerman-Auction-July-9th-Peculiar-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Zimmerman-Auction-July-9th-Peculiar-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25804,4454,'_wp_attached_file','2022/06/TuesdayJune-7th-Feeder-Cattle-Consignments-1.pdf'),(25805,4454,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"TuesdayJune-7th-Feeder-Cattle-Consignments-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"TuesdayJune-7th-Feeder-Cattle-Consignments-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"TuesdayJune-7th-Feeder-Cattle-Consignments-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"TuesdayJune-7th-Feeder-Cattle-Consignments-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25806,4455,'_wp_attached_file','2022/06/TuesdayJune-14th-Feeder-Cattle-Consignments.pdf'),(25807,4455,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"TuesdayJune-14th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"TuesdayJune-14th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"TuesdayJune-14th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"TuesdayJune-14th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25812,4457,'_wp_attached_file','2022/06/Weeks-Auction-June-25th-Chilhowee.pdf'),(25813,4457,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:41:\"Weeks-Auction-June-25th-Chilhowee-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Weeks-Auction-June-25th-Chilhowee-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Weeks-Auction-June-25th-Chilhowee-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Weeks-Auction-June-25th-Chilhowee-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25836,4462,'_thumbnail_id','786'),(25837,4462,'_et_post_bg_color','#ffffff'),(25838,4462,'_et_post_bg_layout','light'),(25839,4462,'_et_pb_show_title','on'),(25840,4462,'_et_pb_post_hide_nav','default'),(25841,4462,'_et_pb_page_layout','et_right_sidebar'),(25842,4462,'_et_pb_side_nav','off'),(25843,4462,'_et_pb_use_builder','on'),(25844,4462,'_et_pb_first_image',''),(25845,4462,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_3 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">June 14, 2022, 1906 hd; Last week; 4435 hd; a year ago 1792. Feeder cattle sold steady-$2 lower. Slaughter cows &amp; bulls sold steady-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_10\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$216.00</p>\n<p>400-500<br />\n$175.00-$210.25</p>\n<p>500-600<br />\n$170.00-$201.50</p>\n<p>600-700<br />\n$160.00-$188.00</p>\n<p>700-800<br />\n$155.00-$170.60</p>\n<p>800-900<br />\n$144.00-$152.50</p>\n<p>900-1000<br />\n$140.00-$150.75</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$195.00</p>\n<p>400-500<br />\n$160.00-$191.50</p>\n<p>500-600<br />\n$150.00-$176.50</p>\n<p>600-700<br />\n$140.00-$160.75</p>\n<p>700-800<br />\n$137.00-$151.75</p>\n<p>800-900<br />\n$127.00-$135.00</p>\n<p>900-1000<br />\n$120.00-$130.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$90.00 &#8211; $103.00</p>\n<p>Medium Yield<br />\n$78.00 &#8211; $89.00</p>\n<p>Low Yield<br />\n$65.00 &#8211; $77.00</p>\n<p>Bulls<br />\n$90.00 &#8211; $126.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n588lbs @$195.25</p>\n<p>Steers<br />\n735lbs @$170.60</p>\n<p>Steers<br />\n942lbs @$150.75</p>\n<p>Heifers<br />\n688lbs @$160.75</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_11\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_3_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_3 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(25846,4462,'_et_pb_truncate_post_date','2022-08-20 13:42:38'),(25847,4462,'_et_pb_old_content',''),(25848,4462,'_et_pb_built_for_post_type','page'),(25849,4462,'_et_pb_ab_subjects',''),(25850,4462,'_et_pb_enable_shortcode_tracking',''),(25851,4462,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4462\" /]'),(25852,4462,'_et_pb_custom_css',''),(25853,4462,'_et_pb_gutter_width','3'),(25854,4462,'_et_builder_version','VB|Divi|4.14.5'),(25855,4462,'_et_pb_show_page_creation','off'),(25856,4462,'_wp_old_slug','february-11-2020-market-report'),(25857,4462,'_wp_old_slug','march-17th-2020-market-report'),(25858,4462,'_wp_old_slug','may-1th-2020-market-report-2'),(25859,4462,'_wp_old_slug','july-21st-2020-market-report-2'),(25860,4462,'_wp_old_slug','november-10th-2020-market-report'),(25861,4462,'_wp_old_slug','january-25-2022-market-report-2'),(25862,4462,'_global_colors_info','{}'),(25868,4462,'_dp_original','4435'),(25869,4462,'_edit_lock','1655304086:2'),(25870,4462,'_edit_last','2'),(25888,4470,'_wp_attached_file','2022/06/TuesdayJune-21st-Feeder-Cattle-Consignments.pdf'),(25889,4470,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"TuesdayJune-21st-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"TuesdayJune-21st-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"TuesdayJune-21st-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"TuesdayJune-21st-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25902,4474,'_thumbnail_id','786'),(25903,4474,'_et_post_bg_color','#ffffff'),(25904,4474,'_et_post_bg_layout','light'),(25905,4474,'_et_pb_show_title','on'),(25906,4474,'_et_pb_post_hide_nav','default'),(25907,4474,'_et_pb_page_layout','et_right_sidebar'),(25908,4474,'_et_pb_side_nav','off'),(25909,4474,'_et_pb_use_builder','on'),(25910,4474,'_et_pb_first_image',''),(25911,4474,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">June 21, 2022, 1961 hd; Last week; 1906 hd; a year ago 2581. Feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$228.00</p>\n<p>400-500<br />\n$180.00-$230.75</p>\n<p>500-600<br />\n$170.00-$214.00</p>\n<p>600-700<br />\n$160.00-$191.00</p>\n<p>700-800<br />\n$159.00-$175.85</p>\n<p>800-900<br />\n$145.00-$160.00</p>\n<p>900-1000<br />\n$150.85-$159.85</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$209.00</p>\n<p>400-500<br />\n$176.00-$199.00</p>\n<p>500-600<br />\n$166.00-$183.00</p>\n<p>600-700<br />\n$154.00-$175.00</p>\n<p>700-800<br />\n$155.00-$158.00</p>\n<p>800-900<br />\n$140.00-$147.85</p>\n<p>900-1000<br />\n$110.00-$130.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$95.00 &#8211; $106.00</p>\n<p>Medium Yield<br />\n$80.00 &#8211; $94.00</p>\n<p>Low Yield<br />\n$50.00 &#8211; $79.00</p>\n<p>Bulls<br />\n$104.00 &#8211; $130.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n908lbs @$159.85</p>\n<p>Steers<br />\n945lbs @$156.00</p>\n<p>Steers<br />\n1010lbs @$152.00</p>\n<p>Heifers<br />\n750lbs @$158.00</p>\n<p>Heifers<br />\n785lbs @$155.00</p>\n<p>Heifers<br />\n1245lbs @$140.75</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(25912,4474,'_et_pb_truncate_post_date','2022-08-20 13:42:38'),(25913,4474,'_et_pb_old_content',''),(25914,4474,'_et_pb_built_for_post_type','page'),(25915,4474,'_et_pb_ab_subjects',''),(25916,4474,'_et_pb_enable_shortcode_tracking',''),(25917,4474,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4474\" /]'),(25918,4474,'_et_pb_custom_css',''),(25919,4474,'_et_pb_gutter_width','3'),(25920,4474,'_et_builder_version','VB|Divi|4.14.5'),(25921,4474,'_et_pb_show_page_creation','off'),(25922,4474,'_wp_old_slug','february-11-2020-market-report'),(25923,4474,'_wp_old_slug','march-17th-2020-market-report'),(25924,4474,'_wp_old_slug','may-1th-2020-market-report-2'),(25925,4474,'_wp_old_slug','july-21st-2020-market-report-2'),(25926,4474,'_wp_old_slug','november-10th-2020-market-report'),(25927,4474,'_wp_old_slug','january-25-2022-market-report-2'),(25928,4474,'_global_colors_info','{}'),(25934,4474,'_dp_original','4462'),(25935,4474,'_edit_lock','1655909316:2'),(25936,4474,'_edit_last','2'),(25950,4482,'_wp_attached_file','2022/06/Zimmerman-Auction-July-9th-Peculiar-1.pdf'),(25951,4482,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:45:\"Zimmerman-Auction-July-9th-Peculiar-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"Zimmerman-Auction-July-9th-Peculiar-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"Zimmerman-Auction-July-9th-Peculiar-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"Zimmerman-Auction-July-9th-Peculiar-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25952,4483,'_wp_attached_file','2022/06/Zimmerman-Auction-July-9th-Peculiar-2.pdf'),(25953,4483,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:45:\"Zimmerman-Auction-July-9th-Peculiar-2-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"Zimmerman-Auction-July-9th-Peculiar-2-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"Zimmerman-Auction-July-9th-Peculiar-2-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"Zimmerman-Auction-July-9th-Peculiar-2-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25965,4488,'_wp_attached_file','2022/06/TuesdayJune-28th-Feeder-Cattle-Consignments.pdf'),(25966,4488,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"TuesdayJune-28th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"TuesdayJune-28th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"TuesdayJune-28th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"TuesdayJune-28th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(25979,4492,'_thumbnail_id','786'),(25980,4492,'_et_post_bg_color','#ffffff'),(25981,4492,'_et_post_bg_layout','light'),(25982,4492,'_et_pb_show_title','on'),(25983,4492,'_et_pb_post_hide_nav','default'),(25984,4492,'_et_pb_page_layout','et_right_sidebar'),(25985,4492,'_et_pb_side_nav','off'),(25986,4492,'_et_pb_use_builder','on'),(25987,4492,'_et_pb_first_image',''),(25988,4492,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">June 28, 2022, 3195 hd; Last week; 1961 hd; a year ago 2086. All classes of feeder cattle sold steady-$3 higher. Load lots sold $5-$7 higher. Slaughter cows &amp; bulls sold $3-$5 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$225.50</p>\n<p>400-500<br />\n$180.00-$223.50</p>\n<p>500-600<br />\n$175.00-$213.50</p>\n<p>600-700<br />\n$165.00-$200.50</p>\n<p>700-800<br />\n$160.00-$177.00</p>\n<p>800-900<br />\n$150.00-$171.00</p>\n<p>900-1000<br />\n$140.00-$164.75</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$206.50</p>\n<p>400-500<br />\n$160.00-$205.00</p>\n<p>500-600<br />\n$155.00-$182.00</p>\n<p>600-700<br />\n$150.00-$180.00</p>\n<p>700-800<br />\n$147.00-$175.00</p>\n<p>800-900<br />\n$131.00-$145.25</p>\n<p>900-1000<br />\n$124.00-$143.75</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$95.00 &#8211; $109.00</p>\n<p>Medium Yield<br />\n$81.00 &#8211; $94.50</p>\n<p>Low Yield<br />\n$66.00 &#8211; $80.00</p>\n<p>Bulls<br />\n$98.00 &#8211; $119.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n520lbs @$215.00</p>\n<p>Steers<br />\n620lbs @$200.50</p>\n<p>Steers<br />\n650lbs @$187.00</p>\n<p>Steers<br />\n792lbs @$171.60</p>\n<p>Steers<br />\n842lbs @$171.00</p>\n<p>Steers<br />\n901lbs @$164.75</p>\n<p>Heifers<br />\n490lbs@ $196.50</p>\n<p>Heifers<br />\n701lbs @$168.00</p>\n<p>Heifers<br />\n710lbs @$175.00</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(25989,4492,'_et_pb_truncate_post_date','2022-08-20 13:42:38'),(25990,4492,'_et_pb_old_content',''),(25991,4492,'_et_pb_built_for_post_type','page'),(25992,4492,'_et_pb_ab_subjects',''),(25993,4492,'_et_pb_enable_shortcode_tracking',''),(25994,4492,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4492\" /]'),(25995,4492,'_et_pb_custom_css',''),(25996,4492,'_et_pb_gutter_width','3'),(25997,4492,'_et_builder_version','VB|Divi|4.14.5'),(25998,4492,'_et_pb_show_page_creation','off'),(25999,4492,'_wp_old_slug','february-11-2020-market-report'),(26000,4492,'_wp_old_slug','march-17th-2020-market-report'),(26001,4492,'_wp_old_slug','may-1th-2020-market-report-2'),(26002,4492,'_wp_old_slug','july-21st-2020-market-report-2'),(26003,4492,'_wp_old_slug','november-10th-2020-market-report'),(26004,4492,'_wp_old_slug','january-25-2022-market-report-2'),(26005,4492,'_global_colors_info','{}'),(26011,4492,'_dp_original','4474'),(26012,4492,'_edit_lock','1656516746:2'),(26013,4492,'_edit_last','2'),(26560,4503,'_wp_attached_file','2022/07/TuesdayJuly-12th-Feeder-Cattle-Consignments.pdf'),(26561,4503,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"TuesdayJuly-12th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"TuesdayJuly-12th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"TuesdayJuly-12th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"TuesdayJuly-12th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(26621,4507,'_thumbnail_id','786'),(26622,4507,'_et_post_bg_color','#ffffff'),(26623,4507,'_et_post_bg_layout','light'),(26624,4507,'_et_pb_show_title','on'),(26625,4507,'_et_pb_post_hide_nav','default'),(26626,4507,'_et_pb_page_layout','et_right_sidebar'),(26627,4507,'_et_pb_side_nav','off'),(26628,4507,'_et_pb_use_builder','on'),(26629,4507,'_et_pb_first_image',''),(26630,4507,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_4 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_12\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_16  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_24  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">July 12, 2022, 2840 hd; Last week; 3195 hd; a year ago 973. Compared to 2 weeks ago feeder cattle 550-750lbs sold $5-$12 higher &amp; all other classes sold steady. Slaughter cows &amp; bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_13\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_17  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$232.50</p>\n<p>400-500<br />\n$175.00-$232.50</p>\n<p>500-600<br />\n$170.00-$221.00</p>\n<p>600-700<br />\n$170.00-$208.00</p>\n<p>700-800<br />\n$155.00-$193.50</p>\n<p>800-900<br />\n$150.00-$173.85</p>\n<p>900-1000<br />\n$140.00-$163.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_26  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$204.00</p>\n<p>400-500<br />\n$170.00-$207.00</p>\n<p>500-600<br />\n$158.00-$194.50</p>\n<p>600-700<br />\n$152.00-$185.00</p>\n<p>700-800<br />\n$146.00-$172.00</p>\n<p>800-900<br />\n$125.00-$153.60</p>\n<p>900-1000<br />\n$110.00-$127.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_18  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_27  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$90.00 &#8211; $107.00</p>\n<p>Medium Yield<br />\n$77.00 &#8211; $90.00</p>\n<p>Low Yield<br />\n$60.00 &#8211; $76.00</p>\n<p>Bulls<br />\n$85.00 &#8211; $118.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_28  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n697lbs @$187.50</p>\n<p>Steers<br />\n698lbs @$173.75</p>\n<p>Steers<br />\n700lbs @$192.00</p>\n<p>Steers<br />\n700lbs @$183.50</p>\n<p>Steers<br />\n739lbs @$193.50</p>\n<p>Steers<br />\n765lbs @$183.50</p>\n<p>Steers<br />\n823lbs@ $173.85</p>\n<p>Heifers<br />\n680lbs @$172.00</p>\n<p>Heifers<br />\n689lbs @$173.75</p>\n<p>Heifers<br />\n807lbs@$153.60</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_29  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_14\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_19  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_4_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_4 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(26631,4507,'_et_pb_truncate_post_date','2022-08-16 21:08:29'),(26632,4507,'_et_pb_old_content',''),(26633,4507,'_et_pb_built_for_post_type','page'),(26634,4507,'_et_pb_ab_subjects',''),(26635,4507,'_et_pb_enable_shortcode_tracking',''),(26636,4507,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4507\" /]'),(26637,4507,'_et_pb_custom_css',''),(26638,4507,'_et_pb_gutter_width','3'),(26639,4507,'_et_builder_version','VB|Divi|4.14.5'),(26640,4507,'_et_pb_show_page_creation','off'),(26641,4507,'_wp_old_slug','february-11-2020-market-report'),(26642,4507,'_wp_old_slug','march-17th-2020-market-report'),(26643,4507,'_wp_old_slug','may-1th-2020-market-report-2'),(26644,4507,'_wp_old_slug','july-21st-2020-market-report-2'),(26645,4507,'_wp_old_slug','november-10th-2020-market-report'),(26646,4507,'_wp_old_slug','january-25-2022-market-report-2'),(26647,4507,'_global_colors_info','{}'),(26653,4507,'_dp_original','4492'),(26654,4507,'_edit_lock','1657727030:2'),(26655,4507,'_edit_last','2'),(26932,4518,'_wp_attached_file','2022/07/TuesdayJuly-19th-Feeder-Cattle-Consignments.pdf'),(26933,4518,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"TuesdayJuly-19th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"TuesdayJuly-19th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"TuesdayJuly-19th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"TuesdayJuly-19th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(26950,4522,'_wp_attached_file','2022/07/Voorhees-Auction-August-5th-6th-Holden.pdf'),(26951,4522,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:46:\"Voorhees-Auction-August-5th-6th-Holden-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"Voorhees-Auction-August-5th-6th-Holden-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:55:\"Voorhees-Auction-August-5th-6th-Holden-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"Voorhees-Auction-August-5th-6th-Holden-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(26967,4527,'_thumbnail_id','786'),(26968,4527,'_et_post_bg_color','#ffffff'),(26969,4527,'_et_post_bg_layout','light'),(26970,4527,'_et_pb_show_title','on'),(26971,4527,'_et_pb_post_hide_nav','default'),(26972,4527,'_et_pb_page_layout','et_right_sidebar'),(26973,4527,'_et_pb_side_nav','off'),(26974,4527,'_et_pb_use_builder','on'),(26975,4527,'_et_pb_first_image',''),(26976,4527,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_3 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">July 19, 2022, 2013 hd; Last week, 2840 hd; a year ago 1289. Feeder cattle sold fully steady w/ several nice groups of weaned cattle &amp; load lots of yearlings. Slaughter cows &amp; bulls traded $10 lower due to cows moving in from the south because ofÂ the drought.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_10\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$230.00</p>\n<p>400-500<br />\n$180.00-$219.00</p>\n<p>500-600<br />\n$170.00-$211.00</p>\n<p>600-700<br />\n$165.00-$199.00</p>\n<p>700-800<br />\n$155.00-$183.60</p>\n<p>800-900<br />\n$142.00-$163.75</p>\n<p>900-1000<br />\n$135.00-$150.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$164.00-$205.00</p>\n<p>400-500<br />\n$160.00-$200.00</p>\n<p>500-600<br />\n$150.00-$185.00</p>\n<p>600-700<br />\n$148.00-$172.50</p>\n<p>700-800<br />\n$142.00-$162.75</p>\n<p>800-900<br />\n$135.00-$155.00</p>\n<p>900-1000<br />\n$130.00-$137.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$70.00 &#8211; $90.00</p>\n<p>Medium Yield<br />\n$60.00 &#8211; $70.00</p>\n<p>Low Yield<br />\n$51.00 &#8211; $60.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $110.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n719lbs @$179.60</p>\n<p>Steers<br />\n738lbs @$183.60</p>\n<p>Steers<br />\n752lbs @$171.00</p>\n<p>Steers<br />\n766lbs @$180.60</p>\n<p>Steers<br />\n847bs @$163.75</p>\n<p>Heifers<br />\n687lbs @$172.75</p>\n<p>Heifers<br />\n737lbs@ $162.75</p>\n<p>Heifers<br />\n823lbs @$155.00</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_11\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_3_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_3 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(26977,4527,'_et_pb_truncate_post_date','2022-08-16 21:08:29'),(26978,4527,'_et_pb_old_content',''),(26979,4527,'_et_pb_built_for_post_type','page'),(26980,4527,'_et_pb_ab_subjects',''),(26981,4527,'_et_pb_enable_shortcode_tracking',''),(26982,4527,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4527\" /]'),(26983,4527,'_et_pb_custom_css',''),(26984,4527,'_et_pb_gutter_width','3'),(26985,4527,'_et_builder_version','VB|Divi|4.14.5'),(26986,4527,'_et_pb_show_page_creation','off'),(26987,4527,'_wp_old_slug','february-11-2020-market-report'),(26988,4527,'_wp_old_slug','march-17th-2020-market-report'),(26989,4527,'_wp_old_slug','may-1th-2020-market-report-2'),(26990,4527,'_wp_old_slug','july-21st-2020-market-report-2'),(26991,4527,'_wp_old_slug','november-10th-2020-market-report'),(26992,4527,'_wp_old_slug','january-25-2022-market-report-2'),(26993,4527,'_global_colors_info','{}'),(26999,4527,'_dp_original','4507'),(27000,4527,'_edit_lock','1658331084:2'),(27001,4527,'_edit_last','2'),(27007,4532,'_wp_attached_file','2022/07/Voorhees-Auction-August-5th-6th-Holden-1.pdf'),(27008,4532,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:48:\"Voorhees-Auction-August-5th-6th-Holden-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Voorhees-Auction-August-5th-6th-Holden-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"Voorhees-Auction-August-5th-6th-Holden-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Voorhees-Auction-August-5th-6th-Holden-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(27009,4533,'_wp_attached_file','2022/07/Price-Auction-August-13th-Clinton.pdf'),(27010,4533,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:41:\"Price-Auction-August-13th-Clinton-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Price-Auction-August-13th-Clinton-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Price-Auction-August-13th-Clinton-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Price-Auction-August-13th-Clinton-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(27122,4535,'_wp_attached_file','2022/07/TuesdayJuly-26th-Feeder-Cattle-Consignments.pdf'),(27123,4535,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"TuesdayJuly-26th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"TuesdayJuly-26th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"TuesdayJuly-26th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"TuesdayJuly-26th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(27148,4539,'_thumbnail_id','786'),(27149,4539,'_et_post_bg_color','#ffffff'),(27150,4539,'_et_post_bg_layout','light'),(27151,4539,'_et_pb_show_title','on'),(27152,4539,'_et_pb_post_hide_nav','default'),(27153,4539,'_et_pb_page_layout','et_right_sidebar'),(27154,4539,'_et_pb_side_nav','off'),(27155,4539,'_et_pb_use_builder','on'),(27156,4539,'_et_pb_first_image',''),(27157,4539,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">July 26, 2022, 1707 hd; Last week, 2013 hd; a year ago 989. Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady. There was good buyer activity throughout the day. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$215.00</p>\n<p>400-500<br />\n$180.00-$225.00</p>\n<p>500-600<br />\n$170.00-$214.00</p>\n<p>600-700<br />\n$160.00-$204.00</p>\n<p>700-800<br />\n$150.00-$180.00</p>\n<p>800-900<br />\n$145.00-$160.50</p>\n<p>900-1000<br />\n$144.00-$159.50</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$210.00</p>\n<p>400-500<br />\n$160.00-$200.00</p>\n<p>500-600<br />\n$160.00-$184.25</p>\n<p>600-700<br />\n$150.00-$175.00</p>\n<p>700-800<br />\n$140.00-$164.00</p>\n<p>800-900<br />\n$140.00-$145.00</p>\n<p>900-1000<br />\n$120.00-$140.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$72.00 &#8211; $89.00</p>\n<p>Medium Yield<br />\n$62.00 &#8211; $71.00</p>\n<p>Low Yield<br />\n$50.00 &#8211; $61.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $116.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n566lbs @$201.00</p>\n<p>Steers<br />\n665lbs @$189.75</p>\n<p>Heifers<br />\n495lbs @$181.25</p>\n<p>Heifers<br />\n651lbs @$174.00</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(27158,4539,'_et_pb_truncate_post_date','2022-08-16 21:08:29'),(27159,4539,'_et_pb_old_content',''),(27160,4539,'_et_pb_built_for_post_type','page'),(27161,4539,'_et_pb_ab_subjects',''),(27162,4539,'_et_pb_enable_shortcode_tracking',''),(27163,4539,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4539\" /]'),(27164,4539,'_et_pb_custom_css',''),(27165,4539,'_et_pb_gutter_width','3'),(27166,4539,'_et_builder_version','VB|Divi|4.14.5'),(27167,4539,'_et_pb_show_page_creation','off'),(27168,4539,'_wp_old_slug','february-11-2020-market-report'),(27169,4539,'_wp_old_slug','march-17th-2020-market-report'),(27170,4539,'_wp_old_slug','may-1th-2020-market-report-2'),(27171,4539,'_wp_old_slug','july-21st-2020-market-report-2'),(27172,4539,'_wp_old_slug','november-10th-2020-market-report'),(27173,4539,'_wp_old_slug','january-25-2022-market-report-2'),(27174,4539,'_global_colors_info','{}'),(27180,4539,'_dp_original','4527'),(27181,4539,'_edit_lock','1658933729:2'),(27182,4539,'_edit_last','2'),(27220,4547,'_wp_attached_file','2022/08/TuesdayAugust-2nd-Feeder-Cattle-Consignments.pdf'),(27221,4547,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"TuesdayAugust-2nd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"TuesdayAugust-2nd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-2nd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"TuesdayAugust-2nd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(27234,4551,'_wp_attached_file','2022/08/Comer-Auction-August-10th.pdf'),(27235,4551,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"Comer-Auction-August-10th-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Comer-Auction-August-10th-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Comer-Auction-August-10th-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Comer-Auction-August-10th-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(27263,4555,'_thumbnail_id','786'),(27264,4555,'_et_post_bg_color','#ffffff'),(27265,4555,'_et_post_bg_layout','light'),(27266,4555,'_et_pb_show_title','on'),(27267,4555,'_et_pb_post_hide_nav','default'),(27268,4555,'_et_pb_page_layout','et_right_sidebar'),(27269,4555,'_et_pb_side_nav','off'),(27270,4555,'_et_pb_use_builder','on'),(27271,4555,'_et_pb_first_image',''),(27272,4555,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">August 2, 2022, 1767 hd; Last week, 1707 hd; a year ago 1731. Feeder steers weighing 450-630lbs sold $10-$15 higher. Heifers &amp; all other steers sold $2-$5 higher. Slaughter cows &amp; bulls sold $2-$6 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$230.00</p>\n<p>400-500<br />\n$170.00-$228.75</p>\n<p>500-600<br />\n$170.00-$219.50</p>\n<p>600-700<br />\n$170.00-$209.50</p>\n<p>700-800<br />\n$155.00-$184.85</p>\n<p>800-900<br />\n$142.00-$165.00</p>\n<p>900-1000<br />\n$140.00-$159.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$212.00</p>\n<p>400-500<br />\n$170.00-$211.00</p>\n<p>500-600<br />\n$160.00-$188.00</p>\n<p>600-700<br />\n$152.00-$180.00</p>\n<p>700-800<br />\n$140.00-$173.50</p>\n<p>800-900<br />\n$132.00-$145.00</p>\n<p>900-1000<br />\n$130.00-$136.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$81.00 &#8211; $95.00</p>\n<p>Medium Yield<br />\n$70.00 &#8211; $80.00</p>\n<p>Low Yield<br />\n$52.00 &#8211; $69.00</p>\n<p>Bulls<br />\n$81.50 &#8211; $119.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n458lbs @$228.75</p>\n<p>Steers<br />\n569lbs @$219.50</p>\n<p>Steers<br />\n713lbs @$183.10</p>\n<p>Steers<br />\n735lbs @$184.85</p>\n<p>Steers<br />\n979lbs@$159.00</p>\n<p>Heifers<br />\n707lbs@$173.50</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(27273,4555,'_et_pb_truncate_post_date','2022-08-16 21:08:29'),(27274,4555,'_et_pb_old_content',''),(27275,4555,'_et_pb_built_for_post_type','page'),(27276,4555,'_et_pb_ab_subjects',''),(27277,4555,'_et_pb_enable_shortcode_tracking',''),(27278,4555,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4555\" /]'),(27279,4555,'_et_pb_custom_css',''),(27280,4555,'_et_pb_gutter_width','3'),(27281,4555,'_et_builder_version','VB|Divi|4.14.5'),(27282,4555,'_et_pb_show_page_creation','off'),(27283,4555,'_wp_old_slug','february-11-2020-market-report'),(27284,4555,'_wp_old_slug','march-17th-2020-market-report'),(27285,4555,'_wp_old_slug','may-1th-2020-market-report-2'),(27286,4555,'_wp_old_slug','july-21st-2020-market-report-2'),(27287,4555,'_wp_old_slug','november-10th-2020-market-report'),(27288,4555,'_wp_old_slug','january-25-2022-market-report-2'),(27289,4555,'_global_colors_info','{}'),(27295,4555,'_dp_original','4539'),(27296,4555,'_edit_lock','1659542280:2'),(27297,4555,'_edit_last','2'),(27303,4560,'_wp_attached_file','2022/08/August-2022-HorseTack-Small-Animal.pdf'),(27304,4560,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:42:\"August-2022-HorseTack-Small-Animal-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"August-2022-HorseTack-Small-Animal-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"August-2022-HorseTack-Small-Animal-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"August-2022-HorseTack-Small-Animal-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(27893,4569,'_wp_attached_file','2022/08/August-20-2022-Cow-Sale.pdf'),(27894,4569,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:31:\"August-20-2022-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"August-20-2022-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"August-20-2022-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"August-20-2022-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(27903,4572,'_wp_attached_file','2022/08/TuesdayAugust-9th-Feeder-Cattle-Consignments.pdf'),(27904,4572,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"TuesdayAugust-9th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"TuesdayAugust-9th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-9th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"TuesdayAugust-9th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(27909,4574,'_wp_attached_file','2022/08/2022-Labor-Day-Sale-Flyer.pdf'),(27910,4574,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"2022-Labor-Day-Sale-Flyer-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"2022-Labor-Day-Sale-Flyer-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"2022-Labor-Day-Sale-Flyer-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"2022-Labor-Day-Sale-Flyer-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(27922,4577,'_wp_attached_file','2022/08/August-20-2022-Cow-Sale-1.pdf'),(27923,4577,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"August-20-2022-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"August-20-2022-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"August-20-2022-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"August-20-2022-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(27944,4584,'_thumbnail_id','786'),(27945,4584,'_et_post_bg_color','#ffffff'),(27946,4584,'_et_post_bg_layout','light'),(27947,4584,'_et_pb_show_title','on'),(27948,4584,'_et_pb_post_hide_nav','default'),(27949,4584,'_et_pb_page_layout','et_right_sidebar'),(27950,4584,'_et_pb_side_nav','off'),(27951,4584,'_et_pb_use_builder','on'),(27952,4584,'_et_pb_first_image',''),(27953,4584,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">August 9, 2022, 1551 hd; Last week, 1767 hd; a year ago 1375. Steers sold full steady &amp; heifers sold $3-$7 higher. Slaughter cows &amp; bulls sold $3-$7 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$190.00-$230.00</p>\n<p>400-500<br />\n$180.00-$220.00</p>\n<p>500-600<br />\n$170.00-$212.75</p>\n<p>600-700<br />\n$170.00-$209.50</p>\n<p>700-800<br />\n$160.00-$182.75</p>\n<p>800-900<br />\n$142.00-$178.00</p>\n<p>900-1000<br />\n$153.00-$162.85</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$214.00</p>\n<p>400-500<br />\n$170.00-$210.00</p>\n<p>500-600<br />\n$160.00-$192.50</p>\n<p>600-700<br />\n$155.00-$185.75</p>\n<p>700-800<br />\n$150.00-$179.85</p>\n<p>800-900<br />\n$140.00-$151.50</p>\n<p>900-1000<br />\n$120.00-$135.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n92.00 &#8211; $107.00</p>\n<p>Medium Yield<br />\n$78.00 &#8211; $91.00</p>\n<p>Low Yield<br />\n$68.00 &#8211; $77.00</p>\n<p>Bulls<br />\n$89.00 &#8211; $132.50</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n649lbs @$195.50</p>\n<p>Steers<br />\n842lbs @$178.00</p>\n<p>Steers<br />\n938lbs @$162.85</p>\n<p>Heifers<br />\n634lbs @$181.75</p>\n<p>Heifers<br />\n713lbs@$179.85</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(27954,4584,'_et_pb_truncate_post_date','2022-08-16 21:08:29'),(27955,4584,'_et_pb_old_content',''),(27956,4584,'_et_pb_built_for_post_type','page'),(27957,4584,'_et_pb_ab_subjects',''),(27958,4584,'_et_pb_enable_shortcode_tracking',''),(27959,4584,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4584\" /]'),(27960,4584,'_et_pb_custom_css',''),(27961,4584,'_et_pb_gutter_width','3'),(27962,4584,'_et_builder_version','VB|Divi|4.14.5'),(27963,4584,'_et_pb_show_page_creation','off'),(27964,4584,'_wp_old_slug','february-11-2020-market-report'),(27965,4584,'_wp_old_slug','march-17th-2020-market-report'),(27966,4584,'_wp_old_slug','may-1th-2020-market-report-2'),(27967,4584,'_wp_old_slug','july-21st-2020-market-report-2'),(27968,4584,'_wp_old_slug','november-10th-2020-market-report'),(27969,4584,'_wp_old_slug','january-25-2022-market-report-2'),(27970,4584,'_global_colors_info','{}'),(27976,4584,'_dp_original','4555'),(27977,4584,'_edit_lock','1660145507:2'),(27978,4584,'_edit_last','2'),(27984,4590,'_wp_attached_file','2022/08/image000000.jpg'),(27985,4590,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:915;s:6:\"height\";i:686;s:4:\"file\";s:23:\"2022/08/image000000.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"image000000-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"image000000-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"image000000-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"image000000-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:23:\"image000000-915x675.jpg\";s:5:\"width\";i:915;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"image000000-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"image000000-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"image000000-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:23:\"image000000-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27990,4592,'_wp_attached_file','2022/08/August-20-2022-Cow-Sale-2.pdf'),(27991,4592,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"August-20-2022-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"August-20-2022-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"August-20-2022-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"August-20-2022-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(28149,4598,'_wp_attached_file','2022/08/TuesdayAugust-15th-Feeder-Cattle-Consignments.pdf'),(28150,4598,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"TuesdayAugust-15th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-15th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"TuesdayAugust-15th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-15th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(28202,4603,'_thumbnail_id','786'),(28203,4603,'_et_post_bg_color','#ffffff'),(28204,4603,'_et_post_bg_layout','light'),(28205,4603,'_et_pb_show_title','on'),(28206,4603,'_et_pb_post_hide_nav','default'),(28207,4603,'_et_pb_page_layout','et_right_sidebar'),(28208,4603,'_et_pb_side_nav','off'),(28209,4603,'_et_pb_use_builder','on'),(28210,4603,'_et_pb_first_image',''),(28211,4603,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">August 16, 2022, 1551 hd; Last week, 1747 hd; a year ago 1848. Compared to last week feeder steers traded steady-$6 higher w/ feeder heifers trading steady Slaughter cows &amp; bulls sold $2-$5 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$211.00-$229.00</p>\n<p>400-500<br />\n$190.00-$240.00</p>\n<p>500-600<br />\n$180.00-$219.00</p>\n<p>600-700<br />\n$175.00-$209.00</p>\n<p>700-800<br />\n$165.00-$190.00</p>\n<p>800-900<br />\n$155.00-$177.50</p>\n<p>900-1000<br />\n$145.00-$166.50</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$205.00</p>\n<p>400-500<br />\n$170.00-$204.00</p>\n<p>500-600<br />\n$163.00-$194.00</p>\n<p>600-700<br />\n$152.00-$185.75</p>\n<p>700-800<br />\n$150.00-$174.00</p>\n<p>800-900<br />\n$135.00-$145.00</p>\n<p>900-1000<br />\n$125.00-$137.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n90.00 &#8211; $102.00</p>\n<p>Medium Yield<br />\n$77.00 &#8211; $89.00</p>\n<p>Low Yield<br />\n$60.00 &#8211; $76.00</p>\n<p>Bulls<br />\n$90.00 &#8211; $116.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n717lbs @$190.00</p>\n<p>Steers<br />\n875lbs @$177.50</p>\n<p>Heifers<br />\n676lbs @$185.75</p>\n<p>Heifers<br />\n689lbs @$181.85</p>\n<p>Heifers<br />\n719lbs @$170.60</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(28212,4603,'_et_pb_truncate_post_date','2022-08-20 13:42:38'),(28213,4603,'_et_pb_old_content',''),(28214,4603,'_et_pb_built_for_post_type','page'),(28215,4603,'_et_pb_ab_subjects',''),(28216,4603,'_et_pb_enable_shortcode_tracking',''),(28217,4603,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4603\" /]'),(28218,4603,'_et_pb_custom_css',''),(28219,4603,'_et_pb_gutter_width','3'),(28220,4603,'_et_builder_version','VB|Divi|4.14.5'),(28221,4603,'_et_pb_show_page_creation','off'),(28222,4603,'_wp_old_slug','february-11-2020-market-report'),(28223,4603,'_wp_old_slug','march-17th-2020-market-report'),(28224,4603,'_wp_old_slug','may-1th-2020-market-report-2'),(28225,4603,'_wp_old_slug','july-21st-2020-market-report-2'),(28226,4603,'_wp_old_slug','november-10th-2020-market-report'),(28227,4603,'_wp_old_slug','january-25-2022-market-report-2'),(28228,4603,'_global_colors_info','{}'),(28234,4603,'_dp_original','4584'),(28235,4603,'_edit_lock','1660753181:2'),(28236,4603,'_edit_last','2'),(28646,4613,'_wp_attached_file','2022/08/TuesdayAugust-23rd-Feeder-Cattle-Consignments.pdf'),(28647,4613,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"TuesdayAugust-23rd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-23rd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"TuesdayAugust-23rd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-23rd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(28671,4620,'_wp_attached_file','2022/08/Labor-Day-2022-Detailed-Consignment-List.pdf'),(28672,4620,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:48:\"Labor-Day-2022-Detailed-Consignment-List-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Labor-Day-2022-Detailed-Consignment-List-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"Labor-Day-2022-Detailed-Consignment-List-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Labor-Day-2022-Detailed-Consignment-List-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(28676,4622,'_thumbnail_id','786'),(28677,4622,'_et_post_bg_color','#ffffff'),(28678,4622,'_et_post_bg_layout','light'),(28679,4622,'_et_pb_show_title','on'),(28680,4622,'_et_pb_post_hide_nav','default'),(28681,4622,'_et_pb_page_layout','et_right_sidebar'),(28682,4622,'_et_pb_side_nav','off'),(28683,4622,'_et_pb_use_builder','on'),(28684,4622,'_et_pb_first_image',''),(28685,4622,'_et_pb_truncate_post',''),(28686,4622,'_et_pb_truncate_post_date',''),(28687,4622,'_et_pb_old_content',''),(28688,4622,'_et_pb_built_for_post_type','page'),(28689,4622,'_et_pb_ab_subjects',''),(28690,4622,'_et_pb_enable_shortcode_tracking',''),(28691,4622,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4622\" /]'),(28692,4622,'_et_pb_custom_css',''),(28693,4622,'_et_pb_gutter_width','3'),(28694,4622,'_et_builder_version','VB|Divi|4.14.5'),(28695,4622,'_et_pb_show_page_creation','off'),(28696,4622,'_wp_old_slug','february-11-2020-market-report'),(28697,4622,'_wp_old_slug','march-17th-2020-market-report'),(28698,4622,'_wp_old_slug','may-1th-2020-market-report-2'),(28699,4622,'_wp_old_slug','july-21st-2020-market-report-2'),(28700,4622,'_wp_old_slug','november-10th-2020-market-report'),(28701,4622,'_wp_old_slug','january-25-2022-market-report-2'),(28702,4622,'_global_colors_info','{}'),(28709,4622,'_dp_original','4603'),(28710,4622,'_edit_lock','1661356764:2'),(28711,4622,'_edit_last','2'),(28717,4628,'_wp_attached_file','2022/08/Labor-Day-2022-Detailed-Consignment-List-1.pdf'),(28718,4628,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"Labor-Day-2022-Detailed-Consignment-List-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"Labor-Day-2022-Detailed-Consignment-List-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"Labor-Day-2022-Detailed-Consignment-List-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Labor-Day-2022-Detailed-Consignment-List-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(28722,4630,'_wp_attached_file','2022/08/TuesdayAugust-30th-Feeder-Cattle-Consignments.pdf'),(28723,4630,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"TuesdayAugust-30th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-30th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"TuesdayAugust-30th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-30th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(28736,4635,'_thumbnail_id','786'),(28737,4635,'_et_post_bg_color','#ffffff'),(28738,4635,'_et_post_bg_layout','light'),(28739,4635,'_et_pb_show_title','on'),(28740,4635,'_et_pb_post_hide_nav','default'),(28741,4635,'_et_pb_page_layout','et_right_sidebar'),(28742,4635,'_et_pb_side_nav','off'),(28743,4635,'_et_pb_use_builder','on'),(28744,4635,'_et_pb_first_image',''),(28745,4635,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_4 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_12\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_16  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_24  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">August 30, 2022, 1345 hd; Last week, 1345 hd; a year ago 1290. Yearling steers &amp; heifers sold steady-$5 higher. All other classes of feeder cattle sold fully steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_13\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_17  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$175.00-$220.00</p>\n<p>400-500<br />\n$170.00-$230.00</p>\n<p>500-600<br />\n$170.00-$214.00</p>\n<p>600-700<br />\n$170.00-$217.00</p>\n<p>700-800<br />\n$165.00-$199.75</p>\n<p>800-900<br />\n$150.00-$180.00</p>\n<p>900-1000<br />\nNA</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_26  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$228.00</p>\n<p>400-500<br />\n$170.00-$212.50</p>\n<p>500-600<br />\n$170.00-$201.75</p>\n<p>600-700<br />\n$160.00-$196.00</p>\n<p>700-800<br />\n$154.00-$180.00</p>\n<p>800-900<br />\n$150.00-$168.00</p>\n<p>900-1000<br />\n$130.00-$140.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_18  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_27  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$88.00 &#8211; $102.50</p>\n<p>Medium Yield<br />\n$77.00 &#8211; $87.00</p>\n<p>Low Yield<br />\n$50.00 &#8211; $76.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $125.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_28  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots</p>\n<p>Steers<br />\n629lbs @$217.00</p>\n<p>Steers<br />\n644lbs @$213.00</p>\n<p>Steers<br />\n712lbs @$192.00</p>\n<p>Steers<br />\n754lbs @$186.60</p>\n<p>Steers<br />\n758lbs @$191.00</p>\n<p>Steers<br />\n791lbs @$187.75</p>\n<p>Heifers<br />\n590lbs@$201.75</p>\n<p>Heifers<br />\n690lbs @$179.00</p>\n<p>Heifers<br />\n703lbs@$179.50</p>\n<p>Heifers<br />\n753lbs@$180.00</p>\n<p>Heifers<br />\n845lbs@$168.00</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_29  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_14\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_19  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_4_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_4 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(28746,4635,'_et_pb_truncate_post_date','2022-10-06 03:59:23'),(28747,4635,'_et_pb_old_content',''),(28748,4635,'_et_pb_built_for_post_type','page'),(28749,4635,'_et_pb_ab_subjects',''),(28750,4635,'_et_pb_enable_shortcode_tracking',''),(28751,4635,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4635\" /]'),(28752,4635,'_et_pb_custom_css',''),(28753,4635,'_et_pb_gutter_width','3'),(28754,4635,'_et_builder_version','VB|Divi|4.14.5'),(28755,4635,'_et_pb_show_page_creation','off'),(28756,4635,'_wp_old_slug','february-11-2020-market-report'),(28757,4635,'_wp_old_slug','march-17th-2020-market-report'),(28758,4635,'_wp_old_slug','may-1th-2020-market-report-2'),(28759,4635,'_wp_old_slug','july-21st-2020-market-report-2'),(28760,4635,'_wp_old_slug','november-10th-2020-market-report'),(28761,4635,'_wp_old_slug','january-25-2022-market-report-2'),(28762,4635,'_global_colors_info','{}'),(28769,4635,'_dp_original','4622'),(28770,4635,'_edit_lock','1661961245:2'),(28771,4635,'_edit_last','2'),(28773,4640,'_wp_attached_file','2022/08/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf'),(28774,4640,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"September-10th2022-Horse-Tack-Small-Animal-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"September-10th2022-Horse-Tack-Small-Animal-Sale-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"September-10th2022-Horse-Tack-Small-Animal-Sale-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"September-10th2022-Horse-Tack-Small-Animal-Sale-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(28790,4644,'_wp_attached_file','2022/08/Labor-Day-2022-Detailed-Consignment-List-2.pdf'),(28791,4644,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"Labor-Day-2022-Detailed-Consignment-List-2-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"Labor-Day-2022-Detailed-Consignment-List-2-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"Labor-Day-2022-Detailed-Consignment-List-2-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Labor-Day-2022-Detailed-Consignment-List-2-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(28803,4648,'_wp_attached_file','2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf'),(28804,4648,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"Roberts-Gun-Auction-October-29th-Warrensburg-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Roberts-Gun-Auction-October-29th-Warrensburg-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Roberts-Gun-Auction-October-29th-Warrensburg-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Roberts-Gun-Auction-October-29th-Warrensburg-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(28811,4651,'_wp_attached_file','2022/09/Labor-Day-2022-Detailed-Consignment-List.pdf'),(28812,4651,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:48:\"Labor-Day-2022-Detailed-Consignment-List-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"Labor-Day-2022-Detailed-Consignment-List-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"Labor-Day-2022-Detailed-Consignment-List-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"Labor-Day-2022-Detailed-Consignment-List-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(28816,4653,'_wp_attached_file','2022/09/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf'),(28817,4653,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"September-10th2022-Horse-Tack-Small-Animal-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"September-10th2022-Horse-Tack-Small-Animal-Sale-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"September-10th2022-Horse-Tack-Small-Animal-Sale-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"September-10th2022-Horse-Tack-Small-Animal-Sale-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(28830,4657,'_wp_attached_file','2022/09/Labor-Day-2022-Detailed-Consignment-List-1.pdf'),(28831,4657,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"Labor-Day-2022-Detailed-Consignment-List-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"Labor-Day-2022-Detailed-Consignment-List-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"Labor-Day-2022-Detailed-Consignment-List-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Labor-Day-2022-Detailed-Consignment-List-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(28835,4659,'_wp_attached_file','2022/09/Labor-Day-2022-Detailed-Consignment-List-2.pdf'),(28836,4659,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"Labor-Day-2022-Detailed-Consignment-List-2-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"Labor-Day-2022-Detailed-Consignment-List-2-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"Labor-Day-2022-Detailed-Consignment-List-2-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Labor-Day-2022-Detailed-Consignment-List-2-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(28870,4662,'_wp_attached_file','2022/09/Labor-Day-2022-Detailed-Consignment-List-3.pdf'),(28871,4662,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"Labor-Day-2022-Detailed-Consignment-List-3-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"Labor-Day-2022-Detailed-Consignment-List-3-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"Labor-Day-2022-Detailed-Consignment-List-3-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Labor-Day-2022-Detailed-Consignment-List-3-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(28949,4666,'_wp_attached_file','2022/09/TuesdaySeptember-6th-Feeder-Cattle-Consignments.pdf'),(28950,4666,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdaySeptember-6th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdaySeptember-6th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-6th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdaySeptember-6th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(29444,4671,'_thumbnail_id','786'),(29445,4671,'_et_post_bg_color','#ffffff'),(29446,4671,'_et_post_bg_layout','light'),(29447,4671,'_et_pb_show_title','on'),(29448,4671,'_et_pb_post_hide_nav','default'),(29449,4671,'_et_pb_page_layout','et_right_sidebar'),(29450,4671,'_et_pb_side_nav','off'),(29451,4671,'_et_pb_use_builder','on'),(29452,4671,'_et_pb_first_image',''),(29453,4671,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_3 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">September 6, 2022, 744 hd; Last week, 2222 hd; a year ago. Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_10\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$227.00</p>\n<p>400-500<br />\n$175.00-$232.50</p>\n<p>500-600<br />\n$170.00-$204.00</p>\n<p>600-700<br />\n$170.00-$210.00</p>\n<p>700-800<br />\n$160.00-$195.75</p>\n<p>800-900<br />\n$162.00-$176.00</p>\n<p>900-1000<br />\n$143.00-$162.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$227.00</p>\n<p>400-500<br />\n$164.00-$220.00</p>\n<p>500-600<br />\n$165.00-$204.00</p>\n<p>600-700<br />\n$150.00-$182.00</p>\n<p>700-800<br />\n$140.00-$154.00</p>\n<p>800-900<br />\n$127.00-$150.00</p>\n<p>900-1000<br />\n$123.00-$147.50</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$87.00 &#8211; $101.00</p>\n<p>Medium Yield<br />\n$77.00 &#8211; $86.00</p>\n<p>Low Yield<br />\n$60.00 &#8211; $76.00</p>\n<p>Bulls<br />\n$70.00 &#8211; $122.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n888lbs @$176.00</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_11\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_3_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_3 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(29454,4671,'_et_pb_truncate_post_date','2022-10-06 03:59:23'),(29455,4671,'_et_pb_old_content',''),(29456,4671,'_et_pb_built_for_post_type','page'),(29457,4671,'_et_pb_ab_subjects',''),(29458,4671,'_et_pb_enable_shortcode_tracking',''),(29459,4671,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4671\" /]'),(29460,4671,'_et_pb_custom_css',''),(29461,4671,'_et_pb_gutter_width','3'),(29462,4671,'_et_builder_version','VB|Divi|4.14.5'),(29463,4671,'_et_pb_show_page_creation','off'),(29464,4671,'_wp_old_slug','february-11-2020-market-report'),(29465,4671,'_wp_old_slug','march-17th-2020-market-report'),(29466,4671,'_wp_old_slug','may-1th-2020-market-report-2'),(29467,4671,'_wp_old_slug','july-21st-2020-market-report-2'),(29468,4671,'_wp_old_slug','november-10th-2020-market-report'),(29469,4671,'_wp_old_slug','january-25-2022-market-report-2'),(29470,4671,'_global_colors_info','{}'),(29476,4671,'_dp_original','4635'),(29477,4671,'_edit_lock','1662560134:2'),(29478,4671,'_edit_last','2'),(29484,4676,'_wp_attached_file','2022/09/September-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf'),(29485,4676,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:57:\"September-10th2022-Horse-Tack-Small-Animal-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:65:\"September-10th2022-Horse-Tack-Small-Animal-Sale-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:66:\"September-10th2022-Horse-Tack-Small-Animal-Sale-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:65:\"September-10th2022-Horse-Tack-Small-Animal-Sale-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(29506,4684,'_wp_attached_file','2022/09/TuesdaySeptember-13th-Feeder-Cattle-Consignments.pdf'),(29507,4684,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"TuesdaySeptember-13th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-13th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"TuesdaySeptember-13th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-13th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(29524,4691,'_thumbnail_id','786'),(29525,4691,'_et_post_bg_color','#ffffff'),(29526,4691,'_et_post_bg_layout','light'),(29527,4691,'_et_pb_show_title','on'),(29528,4691,'_et_pb_post_hide_nav','default'),(29529,4691,'_et_pb_page_layout','et_right_sidebar'),(29530,4691,'_et_pb_side_nav','off'),(29531,4691,'_et_pb_use_builder','on'),(29532,4691,'_et_pb_first_image',''),(29533,4691,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">September 13, 2022, 3452 hd; Last week, 744 hd; 2518 a year ago. Steers &amp; heifers sold steady-$3 higher. Several yearlings &amp; long-weaned cattle were sold.Â  Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$237.00</p>\n<p>400-500<br />\n$180.00-$236.00</p>\n<p>500-600<br />\n$170.00-$223.00</p>\n<p>600-700<br />\n$165.00-$217.50</p>\n<p>700-800<br />\n$160.00-$195.50</p>\n<p>800-900<br />\n$160.00-$183.50</p>\n<p>900-1000<br />\n$160.00-$177.85</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$228.00</p>\n<p>400-500<br />\n$160.00-$210.00</p>\n<p>500-600<br />\n$160.00-$200.00</p>\n<p>600-700<br />\n$150.00-$193.00</p>\n<p>700-800<br />\n$150.00-$182.35</p>\n<p>800-900<br />\n$140.00-$162.85</p>\n<p>900-1000<br />\n$121.00-$145.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$88.00 &#8211; $98.50</p>\n<p>Medium Yield<br />\n$75.00 &#8211; $87.00</p>\n<p>Low Yield<br />\n$60.00 &#8211; $74.00</p>\n<p>Bulls<br />\n$88.00 &#8211; $118.50</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n559lbs @$223.00</p>\n<p>Steers<br />\n610lbs @$215.00</p>\n<p>Steers<br />\n667lbs @$207.00</p>\n<p>Steers<br />\n724lbs @$190.50</p>\n<p>Steers<br />\n726lbs @$195.50</p>\n<p>Steers<br />\n798lbs @$182.35</p>\n<p>Steers<br />\n823lbs @$183.50</p>\n<p>Heifers<br />\n580lbs @$200.00</p>\n<p>Heifers<br />\n622lbs @$186.75</p>\n<p>Heifers<br />\n658lbs@$185.00</p>\n<p>Heifers<br />\n723lbs@$176.25</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(29534,4691,'_et_pb_truncate_post_date','2022-10-06 03:59:23'),(29535,4691,'_et_pb_old_content',''),(29536,4691,'_et_pb_built_for_post_type','page'),(29537,4691,'_et_pb_ab_subjects',''),(29538,4691,'_et_pb_enable_shortcode_tracking',''),(29539,4691,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4691\" /]'),(29540,4691,'_et_pb_custom_css',''),(29541,4691,'_et_pb_gutter_width','3'),(29542,4691,'_et_builder_version','VB|Divi|4.14.5'),(29543,4691,'_et_pb_show_page_creation','off'),(29544,4691,'_wp_old_slug','february-11-2020-market-report'),(29545,4691,'_wp_old_slug','march-17th-2020-market-report'),(29546,4691,'_wp_old_slug','may-1th-2020-market-report-2'),(29547,4691,'_wp_old_slug','july-21st-2020-market-report-2'),(29548,4691,'_wp_old_slug','november-10th-2020-market-report'),(29549,4691,'_wp_old_slug','january-25-2022-market-report-2'),(29550,4691,'_global_colors_info','{}'),(29556,4691,'_dp_original','4671'),(29557,4691,'_edit_lock','1663171768:2'),(29558,4691,'_edit_last','2'),(29564,4695,'_wp_attached_file','2022/09/September-24-2022-Cow-Sale.pdf'),(29565,4695,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:34:\"September-24-2022-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"September-24-2022-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"September-24-2022-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"September-24-2022-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(29582,4700,'_wp_attached_file','2022/09/September-24-2022-Cow-Sale-1.pdf'),(29583,4700,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:36:\"September-24-2022-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"September-24-2022-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"September-24-2022-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"September-24-2022-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(29592,4703,'_wp_attached_file','2022/09/TuesdaySeptember-20th-Feeder-Cattle-Consignments.pdf'),(29593,4703,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"TuesdaySeptember-20th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-20th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"TuesdaySeptember-20th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-20th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(29628,4713,'_thumbnail_id','786'),(29629,4713,'_et_post_bg_color','#ffffff'),(29630,4713,'_et_post_bg_layout','light'),(29631,4713,'_et_pb_show_title','on'),(29632,4713,'_et_pb_post_hide_nav','default'),(29633,4713,'_et_pb_page_layout','et_right_sidebar'),(29634,4713,'_et_pb_side_nav','off'),(29635,4713,'_et_pb_use_builder','on'),(29636,4713,'_et_pb_first_image',''),(29637,4713,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">September 20, 2022, 2198 hd; Last week, 3452 hd; 1567 a year ago. Feeder cattle of all classes soldsteady-$3 lower. Slaughter cows &amp; bulls sold steady-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$226.00</p>\n<p>400-500<br />\n$170.00-$216.00</p>\n<p>500-600<br />\n$160.00-$206.50</p>\n<p>600-700<br />\n$160.00-$195.50</p>\n<p>700-800<br />\n$150.00-$182.50</p>\n<p>800-900<br />\n$157.50-$176.50</p>\n<p>900-1000<br />\n$145.00-$160.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$165.00-$200.00</p>\n<p>400-500<br />\n$165.00-$195.00</p>\n<p>500-600<br />\n$150.00-$192.00</p>\n<p>600-700<br />\n$150.00-$184.00</p>\n<p>700-800<br />\n$147.00-$177.50</p>\n<p>800-900<br />\n$142.00-$166.75</p>\n<p>900-1000<br />\n$145.00-$150.85</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$81.00 &#8211; $90.00</p>\n<p>Medium Yield<br />\n$69.00 &#8211; $80.00</p>\n<p>Low Yield<br />\n$57.00 &#8211; $68.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $123.50</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n701lbs @$179.00</p>\n<p>Steers<br />\n818lbs @$176.50</p>\n<p>Steers<br />\n889lbs @$171.50</p>\n<p>Heifers<br />\n683lbs @$179.50</p>\n<p>Heifers<br />\n724lbs @$173.00</p>\n<p>Heifers<br />\n739lbs @$161.75</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(29638,4713,'_et_pb_truncate_post_date','2022-10-06 03:59:23'),(29639,4713,'_et_pb_old_content',''),(29640,4713,'_et_pb_built_for_post_type','page'),(29641,4713,'_et_pb_ab_subjects',''),(29642,4713,'_et_pb_enable_shortcode_tracking',''),(29643,4713,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4713\" /]'),(29644,4713,'_et_pb_custom_css',''),(29645,4713,'_et_pb_gutter_width','3'),(29646,4713,'_et_builder_version','VB|Divi|4.14.5'),(29647,4713,'_et_pb_show_page_creation','off'),(29648,4713,'_wp_old_slug','february-11-2020-market-report'),(29649,4713,'_wp_old_slug','march-17th-2020-market-report'),(29650,4713,'_wp_old_slug','may-1th-2020-market-report-2'),(29651,4713,'_wp_old_slug','july-21st-2020-market-report-2'),(29652,4713,'_wp_old_slug','november-10th-2020-market-report'),(29653,4713,'_wp_old_slug','january-25-2022-market-report-2'),(29654,4713,'_global_colors_info','{}'),(29660,4713,'_dp_original','4691'),(29661,4713,'_edit_lock','1663773165:2'),(29662,4713,'_edit_last','2'),(29668,4718,'_wp_attached_file','2022/09/Henley-Auction-October-1st-Pleasant-Hill-MO.pdf'),(29669,4718,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"Henley-Auction-October-1st-Pleasant-Hill-MO-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Henley-Auction-October-1st-Pleasant-Hill-MO-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Henley-Auction-October-1st-Pleasant-Hill-MO-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"Henley-Auction-October-1st-Pleasant-Hill-MO-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(29670,4719,'_wp_attached_file','2022/09/Gunn-Auction-October-7th.pdf'),(29671,4719,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"Gunn-Auction-October-7th-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Gunn-Auction-October-7th-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Gunn-Auction-October-7th-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Gunn-Auction-October-7th-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(29694,4726,'_wp_attached_file','2022/09/TuesdaySeptember-27th-Feeder-Cattle-Consignments.pdf'),(29695,4726,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"TuesdaySeptember-27th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-27th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"TuesdaySeptember-27th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-27th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(29712,4733,'_thumbnail_id','786'),(29713,4733,'_et_post_bg_color','#ffffff'),(29714,4733,'_et_post_bg_layout','light'),(29715,4733,'_et_pb_show_title','on'),(29716,4733,'_et_pb_post_hide_nav','default'),(29717,4733,'_et_pb_page_layout','et_right_sidebar'),(29718,4733,'_et_pb_side_nav','off'),(29719,4733,'_et_pb_use_builder','on'),(29720,4733,'_et_pb_first_image',''),(29721,4733,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">September 27, 2022, 2910 hd; Last week, 2198 hd; 1861 a year ago. Feeder cattle sold $3-$7 higher. New crop calves sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$175.00-$228.00</p>\n<p>400-500<br />\n$170.00-$231.25</p>\n<p>500-600<br />\n$160.00-$223.00</p>\n<p>600-700<br />\n$160.00-$208.50</p>\n<p>700-800<br />\n$160.00-$190.00</p>\n<p>800-900<br />\n$160.00-$185.75</p>\n<p>900-1000<br />\n$140.00-$170.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$202.00</p>\n<p>400-500<br />\n$150.00-$203.50</p>\n<p>500-600<br />\n$150.00-$180.50</p>\n<p>600-700<br />\n$145.00-$187.50</p>\n<p>700-800<br />\n$145.00-$179.75</p>\n<p>800-900<br />\n$140.00-$161.75</p>\n<p>900-1000<br />\n$122.00-$136.50</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$80.00 &#8211; $92.50</p>\n<p>Medium Yield<br />\n$70.00 &#8211; $79.00</p>\n<p>Low Yield<br />\n$52.00 &#8211; $69.00</p>\n<p>Bulls<br />\n$85.00 &#8211; $115.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n470lbs @$231.25</p>\n<p>Steers<br />\n656lbs @$208.50</p>\n<p>Steers<br />\n826lbs @$177.00</p>\n<p>Steers<br />\n845lbs @$177.50</p>\n<p>Heifers<br />\n633lbs @$187.50</p>\n<p>Heifers<br />\n662lbs @$186.75</p>\n<p>Heifers<br />\n715lbs @$177.25</p>\n<p>Heifers<br />\n717lbs @$175.75</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(29722,4733,'_et_pb_truncate_post_date','2022-10-06 03:59:23'),(29723,4733,'_et_pb_old_content',''),(29724,4733,'_et_pb_built_for_post_type','page'),(29725,4733,'_et_pb_ab_subjects',''),(29726,4733,'_et_pb_enable_shortcode_tracking',''),(29727,4733,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4733\" /]'),(29728,4733,'_et_pb_custom_css',''),(29729,4733,'_et_pb_gutter_width','3'),(29730,4733,'_et_builder_version','VB|Divi|4.14.5'),(29731,4733,'_et_pb_show_page_creation','off'),(29732,4733,'_wp_old_slug','february-11-2020-market-report'),(29733,4733,'_wp_old_slug','march-17th-2020-market-report'),(29734,4733,'_wp_old_slug','may-1th-2020-market-report-2'),(29735,4733,'_wp_old_slug','july-21st-2020-market-report-2'),(29736,4733,'_wp_old_slug','november-10th-2020-market-report'),(29737,4733,'_wp_old_slug','january-25-2022-market-report-2'),(29738,4733,'_global_colors_info','{}'),(29744,4733,'_dp_original','4713'),(29745,4733,'_edit_lock','1664381108:2'),(29746,4733,'_edit_last','2'),(29752,4738,'_wp_attached_file','2022/09/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf'),(29753,4738,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"October-8th2022-Horse-Tack-Small-Animal-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"October-8th2022-Horse-Tack-Small-Animal-Sale-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"October-8th2022-Horse-Tack-Small-Animal-Sale-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"October-8th2022-Horse-Tack-Small-Animal-Sale-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(29855,4744,'_wp_attached_file','2022/10/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf'),(29856,4744,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"October-8th2022-Horse-Tack-Small-Animal-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"October-8th2022-Horse-Tack-Small-Animal-Sale-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"October-8th2022-Horse-Tack-Small-Animal-Sale-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"October-8th2022-Horse-Tack-Small-Animal-Sale-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(29865,4747,'_wp_attached_file','2022/10/TuesdayOctober-4th-Feeder-Cattle-Consignments.pdf'),(29866,4747,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"TuesdayOctober-4th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"TuesdayOctober-4th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-4th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"TuesdayOctober-4th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(29875,4749,'_thumbnail_id','786'),(29876,4749,'_et_post_bg_color','#ffffff'),(29877,4749,'_et_post_bg_layout','light'),(29878,4749,'_et_pb_show_title','on'),(29879,4749,'_et_pb_post_hide_nav','default'),(29880,4749,'_et_pb_page_layout','et_right_sidebar'),(29881,4749,'_et_pb_side_nav','off'),(29882,4749,'_et_pb_use_builder','on'),(29883,4749,'_et_pb_first_image',''),(29884,4749,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">October 4, 2022, 2317 hd; Last week, 2910 hd; 2130 a year ago. Feeder cattle that were long weaned sold steady-$2 higher. New crop steers 650lbs &amp; down sold stead-$5 lower &amp; heifers sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$223.00</p>\n<p>400-500<br />\n$170.00-$210.00</p>\n<p>500-600<br />\n$160.00-$197.00</p>\n<p>600-700<br />\n$160.00-$197.85</p>\n<p>700-800<br />\n$157.00-$189.50</p>\n<p>800-900<br />\n$155.00-$182.75</p>\n<p>900-1000<br />\n$140.00-$165.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$165.00-$205.00</p>\n<p>400-500<br />\n$160.00-$192.50</p>\n<p>500-600<br />\n$160.00-$189.00</p>\n<p>600-700<br />\n$150.00-$190.00</p>\n<p>700-800<br />\n$140.00-$178.00</p>\n<p>800-900<br />\n$133.00-$148.25</p>\n<p>900-1000<br />\n$120.00-$135.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$75.00 &#8211; $90.00</p>\n<p>Medium Yield<br />\n$62.00 &#8211; $74.00</p>\n<p>Low Yield<br />\n$45.00 &#8211; $61.00</p>\n<p>Bulls<br />\n$85.00 &#8211; $118.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n687lbs @$197.85</p>\n<p>Steers<br />\n752lbs @$180.85</p>\n<p>Steers<br />\n806lbs @$180.00</p>\n<p>Steers<br />\n820lbs @$183.00</p>\n<p>Steers<br />\n884lbs @$180.00</p>\n<p>Heifers<br />\n618lbs @$190.00</p>\n<p>Heifers<br />\n656lbs @$180.00</p>\n<p>Heifers<br />\n723lbs @$172.00</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(29885,4749,'_et_pb_truncate_post_date','2022-10-23 15:39:00'),(29886,4749,'_et_pb_old_content',''),(29887,4749,'_et_pb_built_for_post_type','page'),(29888,4749,'_et_pb_ab_subjects',''),(29889,4749,'_et_pb_enable_shortcode_tracking',''),(29890,4749,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4749\" /]'),(29891,4749,'_et_pb_custom_css',''),(29892,4749,'_et_pb_gutter_width','3'),(29893,4749,'_et_builder_version','VB|Divi|4.14.5'),(29894,4749,'_et_pb_show_page_creation','off'),(29895,4749,'_wp_old_slug','february-11-2020-market-report'),(29896,4749,'_wp_old_slug','march-17th-2020-market-report'),(29897,4749,'_wp_old_slug','may-1th-2020-market-report-2'),(29898,4749,'_wp_old_slug','july-21st-2020-market-report-2'),(29899,4749,'_wp_old_slug','november-10th-2020-market-report'),(29900,4749,'_wp_old_slug','january-25-2022-market-report-2'),(29901,4749,'_global_colors_info','{}'),(29907,4749,'_dp_original','4733'),(29908,4749,'_edit_lock','1664989568:2'),(29909,4749,'_edit_last','2'),(29924,4756,'_wp_attached_file','2022/10/Barnett-Auction-October-15th-Blairstown-MO.pdf'),(29925,4756,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"Barnett-Auction-October-15th-Blairstown-MO-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"Barnett-Auction-October-15th-Blairstown-MO-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"Barnett-Auction-October-15th-Blairstown-MO-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Barnett-Auction-October-15th-Blairstown-MO-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(30541,4767,'_wp_attached_file','2022/10/TuesdayOctober-11th-Feeder-Cattle-Consignments.pdf'),(30542,4767,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"TuesdayOctober-11th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-11th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"TuesdayOctober-11th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-11th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(30559,4772,'_thumbnail_id','786'),(30560,4772,'_et_post_bg_color','#ffffff'),(30561,4772,'_et_post_bg_layout','light'),(30562,4772,'_et_pb_show_title','on'),(30563,4772,'_et_pb_post_hide_nav','default'),(30564,4772,'_et_pb_page_layout','et_right_sidebar'),(30565,4772,'_et_pb_side_nav','off'),(30566,4772,'_et_pb_use_builder','on'),(30567,4772,'_et_pb_first_image',''),(30568,4772,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">October 11, 2022, 2934 hd; Last week, 2317 hd; 1819 a year ago. Long-weaned yearlings &amp; load lots sold fully steady. Calves sold steady-$2 higher.Â  Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$224.50</p>\n<p>400-500<br />\n$160.00-$211.00</p>\n<p>500-600<br />\n$155.00-$197.00</p>\n<p>600-700<br />\n$150.00-$187.50</p>\n<p>700-800<br />\n$150.00-$182.50</p>\n<p>800-900<br />\n$150.00-$184.00</p>\n<p>900-1000<br />\n$145.00-$176.10</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$189.00</p>\n<p>400-500<br />\n$150.00-$187.50</p>\n<p>500-600<br />\n$145.00-$182.50</p>\n<p>600-700<br />\n$140.00-$182.50</p>\n<p>700-800<br />\n$140.00-$178.10</p>\n<p>800-900<br />\n$135.00-$154.75</p>\n<p>900-1000<br />\n$124.00-$147.75</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$77.00 &#8211; $88.00</p>\n<p>Medium Yield<br />\n$68.00 &#8211; $76.00</p>\n<p>Low Yield<br />\n$50.00 &#8211; $67.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $122.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n751lbs @$182.50</p>\n<p>Steers<br />\n762lbs @$181.10</p>\n<p>Steers<br />\n797lbs @$176.50</p>\n<p>Steers<br />\n830lbs @$181.00</p>\n<p>Steers<br />\n832lbs @$184.00</p>\n<p>Steers<br />\n896lbs @$178.50</p>\n<p>Steers<br />\n917lbs @$176.10</p>\n<p>Heifers<br />\n714lbs @$178.10</p>\n<p>Heifers<br />\n737lbs @$173.00</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(30569,4772,'_et_pb_truncate_post_date','2022-10-23 15:39:00'),(30570,4772,'_et_pb_old_content',''),(30571,4772,'_et_pb_built_for_post_type','page'),(30572,4772,'_et_pb_ab_subjects',''),(30573,4772,'_et_pb_enable_shortcode_tracking',''),(30574,4772,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4772\" /]'),(30575,4772,'_et_pb_custom_css',''),(30576,4772,'_et_pb_gutter_width','3'),(30577,4772,'_et_builder_version','VB|Divi|4.14.5'),(30578,4772,'_et_pb_show_page_creation','off'),(30579,4772,'_wp_old_slug','february-11-2020-market-report'),(30580,4772,'_wp_old_slug','march-17th-2020-market-report'),(30581,4772,'_wp_old_slug','may-1th-2020-market-report-2'),(30582,4772,'_wp_old_slug','july-21st-2020-market-report-2'),(30583,4772,'_wp_old_slug','november-10th-2020-market-report'),(30584,4772,'_wp_old_slug','january-25-2022-market-report-2'),(30585,4772,'_global_colors_info','{}'),(30591,4772,'_dp_original','4749'),(30592,4772,'_edit_lock','1665588894:2'),(30593,4772,'_edit_last','2'),(30604,4778,'_wp_attached_file','2022/10/October-22-2022-Cow-Sale.pdf'),(30605,4778,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"October-22-2022-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"October-22-2022-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"October-22-2022-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"October-22-2022-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(30614,4782,'_wp_attached_file','2022/10/October-22-2022-Cow-Sale-1.pdf'),(30615,4782,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:34:\"October-22-2022-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"October-22-2022-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"October-22-2022-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"October-22-2022-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(30639,4790,'_wp_attached_file','2022/10/October-22-2022-Cow-Sale-2.pdf'),(30640,4790,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:34:\"October-22-2022-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"October-22-2022-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"October-22-2022-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"October-22-2022-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(30653,4794,'_wp_attached_file','2022/10/October-22-2022-Cow-Sale-3.pdf'),(30654,4794,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:34:\"October-22-2022-Cow-Sale-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"October-22-2022-Cow-Sale-3-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"October-22-2022-Cow-Sale-3-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"October-22-2022-Cow-Sale-3-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(30667,4798,'_wp_attached_file','2022/10/TuesdayOctober-18th-Feeder-Cattle-Consignments.pdf'),(30668,4798,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"TuesdayOctober-18th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-18th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"TuesdayOctober-18th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-18th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(30689,4805,'_wp_attached_file','2022/10/3-Person-Estate-October-30th.pdf'),(30690,4805,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:36:\"3-Person-Estate-October-30th-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"3-Person-Estate-October-30th-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"3-Person-Estate-October-30th-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"3-Person-Estate-October-30th-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(30694,4808,'_thumbnail_id','786'),(30695,4808,'_et_post_bg_color','#ffffff'),(30696,4808,'_et_post_bg_layout','light'),(30697,4808,'_et_pb_show_title','on'),(30698,4808,'_et_pb_post_hide_nav','default'),(30699,4808,'_et_pb_page_layout','et_right_sidebar'),(30700,4808,'_et_pb_side_nav','off'),(30701,4808,'_et_pb_use_builder','on'),(30702,4808,'_et_pb_first_image',''),(30703,4808,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">October 18, 2022, 1832 hd; Last week, 2934 hd; 2047 a year ago. Yearling feeder cattle sold steady. New crop calves sold $2-$4 lower.Â  Slaughter cows &amp; bulls sold $2-$5 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$165.00-$217.00</p>\n<p>400-500<br />\n$160.00-$197.00</p>\n<p>500-600<br />\n$155.00-$196.50</p>\n<p>600-700<br />\n$150.00-$185.00</p>\n<p>700-800<br />\n$144.00-$184.00</p>\n<p>800-900<br />\n$144.00-$175.75</p>\n<p>900-1000<br />\n$140.00-$57.75</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$145.00-$184.00</p>\n<p>400-500<br />\n$150.00-$181.00</p>\n<p>500-600<br />\n$140.00-$172.00</p>\n<p>600-700<br />\n$135.00-$164.25</p>\n<p>700-800<br />\n$150.00-$179.00</p>\n<p>800-900<br />\n$130.00-$162.75</p>\n<p>900-1000<br />\n$120.00-$130.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$68.00 &#8211; $78.00</p>\n<p>Medium Yield<br />\n$58.00 &#8211; $67.00</p>\n<p>Low Yield<br />\n$45.00 &#8211; $57.00</p>\n<p>Bulls<br />\n$75.00 &#8211; $110.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n772lbs @$184.00</p>\n<p>Steers<br />\n785lbs @$178.75</p>\n<p>Steers<br />\n806lbs @$175.75</p>\n<p>Heifers<br />\n727lbs @$179.00</p>\n<p>Heifers<br />\n755lbs @$169.50</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(30704,4808,'_et_pb_truncate_post_date','2022-10-23 15:39:00'),(30705,4808,'_et_pb_old_content',''),(30706,4808,'_et_pb_built_for_post_type','page'),(30707,4808,'_et_pb_ab_subjects',''),(30708,4808,'_et_pb_enable_shortcode_tracking',''),(30709,4808,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4808\" /]'),(30710,4808,'_et_pb_custom_css',''),(30711,4808,'_et_pb_gutter_width','3'),(30712,4808,'_et_builder_version','VB|Divi|4.14.5'),(30713,4808,'_et_pb_show_page_creation','off'),(30714,4808,'_wp_old_slug','february-11-2020-market-report'),(30715,4808,'_wp_old_slug','march-17th-2020-market-report'),(30716,4808,'_wp_old_slug','may-1th-2020-market-report-2'),(30717,4808,'_wp_old_slug','july-21st-2020-market-report-2'),(30718,4808,'_wp_old_slug','november-10th-2020-market-report'),(30719,4808,'_wp_old_slug','january-25-2022-market-report-2'),(30720,4808,'_global_colors_info','{}'),(30727,4808,'_dp_original','4772'),(30728,4808,'_edit_lock','1666198494:2'),(30729,4808,'_edit_last','2'),(30753,4818,'_wp_attached_file','2022/10/TuesdayOctober-25th-Feeder-Cattle-Consignments.pdf'),(30754,4818,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"TuesdayOctober-25th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-25th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"TuesdayOctober-25th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-25th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(30775,4825,'_thumbnail_id','786'),(30776,4825,'_et_post_bg_color','#ffffff'),(30777,4825,'_et_post_bg_layout','light'),(30778,4825,'_et_pb_show_title','on'),(30779,4825,'_et_pb_post_hide_nav','default'),(30780,4825,'_et_pb_page_layout','et_right_sidebar'),(30781,4825,'_et_pb_side_nav','off'),(30782,4825,'_et_pb_use_builder','on'),(30783,4825,'_et_pb_first_image',''),(30784,4825,'_et_pb_truncate_post',''),(30785,4825,'_et_pb_truncate_post_date',''),(30786,4825,'_et_pb_old_content',''),(30787,4825,'_et_pb_built_for_post_type','page'),(30788,4825,'_et_pb_ab_subjects',''),(30789,4825,'_et_pb_enable_shortcode_tracking',''),(30790,4825,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4825\" /]'),(30791,4825,'_et_pb_custom_css',''),(30792,4825,'_et_pb_gutter_width','3'),(30793,4825,'_et_builder_version','VB|Divi|4.18.0'),(30794,4825,'_et_pb_show_page_creation','off'),(30795,4825,'_wp_old_slug','february-11-2020-market-report'),(30796,4825,'_wp_old_slug','march-17th-2020-market-report'),(30797,4825,'_wp_old_slug','may-1th-2020-market-report-2'),(30798,4825,'_wp_old_slug','july-21st-2020-market-report-2'),(30799,4825,'_wp_old_slug','november-10th-2020-market-report'),(30800,4825,'_wp_old_slug','january-25-2022-market-report-2'),(30801,4825,'_global_colors_info','{}'),(30807,4825,'_dp_original','4808'),(30808,4825,'_edit_lock','1666802382:2'),(30809,4825,'_edit_last','2'),(30820,4831,'_wp_attached_file','2022/10/2022-spring-calving-catalog.pdf'),(30821,4831,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"2022-spring-calving-catalog-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"2022-spring-calving-catalog-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"2022-spring-calving-catalog-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"2022-spring-calving-catalog-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(30830,4834,'_wp_attached_file','2022/10/2022-spring-calving-catalog-1.pdf'),(30831,4834,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:37:\"2022-spring-calving-catalog-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"2022-spring-calving-catalog-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"2022-spring-calving-catalog-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"2022-spring-calving-catalog-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(30840,4837,'_wp_attached_file','2022/10/2022-spring-calving-catalog-1-1.pdf'),(30841,4837,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:39:\"2022-spring-calving-catalog-1-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"2022-spring-calving-catalog-1-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"2022-spring-calving-catalog-1-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"2022-spring-calving-catalog-1-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(31032,4842,'_wp_attached_file','2022/10/TuesdayNovember-1st-Feeder-Cattle-Consignments.pdf'),(31033,4842,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"TuesdayNovember-1st-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"TuesdayNovember-1st-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-1st-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"TuesdayNovember-1st-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(31649,4846,'_thumbnail_id','786'),(31650,4846,'_et_post_bg_color','#ffffff'),(31651,4846,'_et_post_bg_layout','light'),(31652,4846,'_et_pb_show_title','on'),(31653,4846,'_et_pb_post_hide_nav','default'),(31654,4846,'_et_pb_page_layout','et_right_sidebar'),(31655,4846,'_et_pb_side_nav','off'),(31656,4846,'_et_pb_use_builder','on'),(31657,4846,'_et_pb_first_image',''),(31658,4846,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_4 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_12\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_16  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_24  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">November 1, 2022, 2738 hd; Last week, 1870 hd; 2127 a year ago. Yearling steers &amp; heifers sold $4-$7 higher in spots. New crop calves sold $2-$4 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_13\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_17  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$215.00</p>\n<p>400-500<br />\n$170.00-$214.50</p>\n<p>500-600<br />\n$150.00-$206.00</p>\n<p>600-700<br />\n$150.00-$206.50</p>\n<p>700-800<br />\n$150.00-$209.00</p>\n<p>800-900<br />\n$145.00-$185.50</p>\n<p>900-1000<br />\n$135.00-$170.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_26  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$181.00</p>\n<p>400-500<br />\n$140.00-$177.00</p>\n<p>500-600<br />\n$140.00-$170.00</p>\n<p>600-700<br />\n$145.00-$185.75</p>\n<p>700-800<br />\n$150.00-$188.00</p>\n<p>800-900<br />\n$135.00-$154.75</p>\n<p>900-1000<br />\n$120.00-$134.50</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_18  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_27  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$72.00 &#8211; $86.00</p>\n<p>Medium Yield<br />\n$63.00 &#8211; $71.00</p>\n<p>Low Yield<br />\n$50.00 &#8211; $62.00</p>\n<p>Bulls<br />\n$75.00 &#8211; $115.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_28  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n712lbs @$206.60</p>\n<p>Steers<br />\n766lbs @$174.25</p>\n<p>Steers<br />\n767lbs @$184.85</p>\n<p>Steers<br />\n775lbs @$181.85</p>\n<p>Steers<br />\n788lbs @$187.50</p>\n<p>Steers<br />\n806lbs@$179.85</p>\n<p>Steers<br />\n813lbs@$179.00</p>\n<p>Steers<br />\n834lbs@$185.50</p>\n<p>Steers<br />\n890lbs@$183.25</p>\n<p>Heifers<br />\n726lbs@$176.75</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_29  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_14\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_19  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_4_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_4 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(31659,4846,'_et_pb_truncate_post_date','2023-01-13 12:12:41'),(31660,4846,'_et_pb_old_content',''),(31661,4846,'_et_pb_built_for_post_type','page'),(31662,4846,'_et_pb_ab_subjects',''),(31663,4846,'_et_pb_enable_shortcode_tracking',''),(31664,4846,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4846\" /]'),(31665,4846,'_et_pb_custom_css',''),(31666,4846,'_et_pb_gutter_width','3'),(31667,4846,'_et_builder_version','VB|Divi|4.18.0'),(31668,4846,'_et_pb_show_page_creation','off'),(31669,4846,'_wp_old_slug','february-11-2020-market-report'),(31670,4846,'_wp_old_slug','march-17th-2020-market-report'),(31671,4846,'_wp_old_slug','may-1th-2020-market-report-2'),(31672,4846,'_wp_old_slug','july-21st-2020-market-report-2'),(31673,4846,'_wp_old_slug','november-10th-2020-market-report'),(31674,4846,'_wp_old_slug','january-25-2022-market-report-2'),(31675,4846,'_global_colors_info','{}'),(31681,4846,'_dp_original','4825'),(31682,4846,'_edit_lock','1667404287:2'),(31683,4846,'_edit_last','2'),(31920,4853,'_wp_attached_file','2022/11/TuesdayNovember-8th-Feeder-Cattle-Consignments.pdf'),(31921,4853,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"TuesdayNovember-8th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"TuesdayNovember-8th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-8th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"TuesdayNovember-8th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(32305,4857,'_thumbnail_id','786'),(32306,4857,'_et_post_bg_color','#ffffff'),(32307,4857,'_et_post_bg_layout','light'),(32308,4857,'_et_pb_show_title','on'),(32309,4857,'_et_pb_post_hide_nav','default'),(32310,4857,'_et_pb_page_layout','et_right_sidebar'),(32311,4857,'_et_pb_side_nav','off'),(32312,4857,'_et_pb_use_builder','on'),(32313,4857,'_et_pb_first_image',''),(32314,4857,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_4 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_12\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_16  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_24  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">November 8, 2022, 2404 hd; Last week, 2738 hd; 2931 a year ago. Yearlings sold steady, all other classes of feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_13\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_17  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_25  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$231.00</p>\n<p>400-500<br />\n$170.00-$226.00</p>\n<p>500-600<br />\n$160.00-$199.00</p>\n<p>600-700<br />\n$155.00-$190.25</p>\n<p>700-800<br />\n$155.00-$192.00</p>\n<p>800-900<br />\n$150.00-$184.50</p>\n<p>900-1000<br />\n$145.00-$174.50</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_26  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$211.00</p>\n<p>400-500<br />\n$150.00-$183.00</p>\n<p>500-600<br />\n$145.00-$178.00</p>\n<p>600-700<br />\n$147.00-$170.00</p>\n<p>700-800<br />\n$140.00-$184.00</p>\n<p>800-900<br />\n$128.00-$158.50</p>\n<p>900-1000<br />\n$120.00-$135.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_18  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_27  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$72.00 &#8211; $89.00</p>\n<p>Medium Yield<br />\n$60.00 &#8211; $72.00</p>\n<p>Low Yield<br />\n$45.00 &#8211; $59.00</p>\n<p>Bulls<br />\n$75.00 &#8211; $115.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_28  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n715lbs @$192.00</p>\n<p>Steers<br />\n870lbs @$182.35</p>\n<p>Steers<br />\n920lbs @$174.00</p>\n<p>Heifers<br />\n716lbs @$184.00</p>\n<p>Heifers<br />\n739lbs @$177.25</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_29  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_14\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_19  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_4_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_4 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(32315,4857,'_et_pb_truncate_post_date','2022-12-08 05:39:29'),(32316,4857,'_et_pb_old_content',''),(32317,4857,'_et_pb_built_for_post_type','page'),(32318,4857,'_et_pb_ab_subjects',''),(32319,4857,'_et_pb_enable_shortcode_tracking',''),(32320,4857,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4857\" /]'),(32321,4857,'_et_pb_custom_css',''),(32322,4857,'_et_pb_gutter_width','3'),(32323,4857,'_et_builder_version','VB|Divi|4.19.0'),(32324,4857,'_et_pb_show_page_creation','off'),(32325,4857,'_wp_old_slug','february-11-2020-market-report'),(32326,4857,'_wp_old_slug','march-17th-2020-market-report'),(32327,4857,'_wp_old_slug','may-1th-2020-market-report-2'),(32328,4857,'_wp_old_slug','july-21st-2020-market-report-2'),(32329,4857,'_wp_old_slug','november-10th-2020-market-report'),(32330,4857,'_wp_old_slug','january-25-2022-market-report-2'),(32331,4857,'_global_colors_info','{}'),(32337,4857,'_dp_original','4846'),(32338,4857,'_edit_lock','1668014680:2'),(32339,4857,'_edit_last','2'),(32355,4865,'_wp_attached_file','2022/11/November-19-2022-Cow-Sale.pdf'),(32356,4865,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"November-19-2022-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"November-19-2022-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"November-19-2022-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"November-19-2022-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(32368,4867,'_wp_attached_file','2022/11/November-19-2022-Cow-Sale-1.pdf'),(32369,4867,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"November-19-2022-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"November-19-2022-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"November-19-2022-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"November-19-2022-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(32382,4871,'_wp_attached_file','2022/11/TuesdayNovember-15th-Feeder-Cattle-Consignments.pdf'),(32383,4871,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdayNovember-15th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-15th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdayNovember-15th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-15th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(32408,4878,'_thumbnail_id','786'),(32409,4878,'_et_post_bg_color','#ffffff'),(32410,4878,'_et_post_bg_layout','light'),(32411,4878,'_et_pb_show_title','on'),(32412,4878,'_et_pb_post_hide_nav','default'),(32413,4878,'_et_pb_page_layout','et_right_sidebar'),(32414,4878,'_et_pb_side_nav','off'),(32415,4878,'_et_pb_use_builder','on'),(32416,4878,'_et_pb_first_image',''),(32417,4878,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_3 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">November 15, 2022, 2843hd; Last week, 2404 hd; 2699 a year ago. Feeder cattle 600lbs &amp; up sold steady-$4 higher. Weaned &amp; Non-Weaned calves w/ shots sold $4-$10 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_10\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$237.00</p>\n<p>400-500<br />\n$175.00-$237.00</p>\n<p>500-600<br />\n$170.00-$227.00</p>\n<p>600-700<br />\n$163.00-$204.00</p>\n<p>700-800<br />\n$160.00-$185.75</p>\n<p>800-900<br />\n$150.00-$177.00</p>\n<p>900-1000<br />\n$137.00-$152.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$180.00</p>\n<p>400-500<br />\n$150.00-$191.50</p>\n<p>500-600<br />\n$150.00-$187.25</p>\n<p>600-700<br />\n$150.00-$190.00</p>\n<p>700-800<br />\n$145.00-$189.00</p>\n<p>800-900<br />\n$137.00-$160.25</p>\n<p>900-1000<br />\n$125.00-$144.50</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$70.00 &#8211; $84.00</p>\n<p>Medium Yield<br />\n$55.00 &#8211; $69.00</p>\n<p>Low Yield<br />\n$20.00 &#8211; $54.00</p>\n<p>Bulls<br />\n$70.00 &#8211; $112.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n619lbs @$190.75</p>\n<p>Steers<br />\n645lbs @$198.00</p>\n<p>Steers<br />\n741lbs @$185.75</p>\n<p>Steers<br />\n742lbs @$184.75</p>\n<p>Steers<br />\n770lbs @$174.00</p>\n<p>Heifers<br />\n589lbs@$187.25</p>\n<p>Heifers<br />\n657lbs@$185.00</p>\n<p>Heifers<br />\n698lbs@$176.75</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_11\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_3_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_3 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(32418,4878,'_et_pb_truncate_post_date','2022-12-08 05:39:29'),(32419,4878,'_et_pb_old_content',''),(32420,4878,'_et_pb_built_for_post_type','page'),(32421,4878,'_et_pb_ab_subjects',''),(32422,4878,'_et_pb_enable_shortcode_tracking',''),(32423,4878,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4878\" /]'),(32424,4878,'_et_pb_custom_css',''),(32425,4878,'_et_pb_gutter_width','3'),(32426,4878,'_et_builder_version','VB|Divi|4.19.0'),(32427,4878,'_et_pb_show_page_creation','off'),(32428,4878,'_wp_old_slug','february-11-2020-market-report'),(32429,4878,'_wp_old_slug','march-17th-2020-market-report'),(32430,4878,'_wp_old_slug','may-1th-2020-market-report-2'),(32431,4878,'_wp_old_slug','july-21st-2020-market-report-2'),(32432,4878,'_wp_old_slug','november-10th-2020-market-report'),(32433,4878,'_wp_old_slug','january-25-2022-market-report-2'),(32434,4878,'_global_colors_info','{}'),(32440,4878,'_dp_original','4857'),(32441,4878,'_edit_lock','1668616162:2'),(32442,4878,'_edit_last','2'),(32666,4883,'_wp_attached_file','2022/11/Fall-2022-SMS-Kingsville-Sale-Order.pdf'),(32667,4883,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:43:\"Fall-2022-SMS-Kingsville-Sale-Order-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:1088;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"Fall-2022-SMS-Kingsville-Sale-Order-pdf-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"Fall-2022-SMS-Kingsville-Sale-Order-pdf-1024x791.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"Fall-2022-SMS-Kingsville-Sale-Order-pdf-150x116.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(32695,4886,'_wp_attached_file','2022/11/Fall-2022-SMS-Kingsville-Sale-Order-1.pdf'),(32696,4886,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:45:\"Fall-2022-SMS-Kingsville-Sale-Order-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:1088;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"Fall-2022-SMS-Kingsville-Sale-Order-1-pdf-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"Fall-2022-SMS-Kingsville-Sale-Order-1-pdf-1024x791.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"Fall-2022-SMS-Kingsville-Sale-Order-1-pdf-150x116.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(32729,4892,'_wp_attached_file','2022/11/TuesdayNovember-22nd-Feeder-Cattle-Consignments.pdf'),(32730,4892,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdayNovember-22nd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-22nd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdayNovember-22nd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-22nd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(32751,4896,'_thumbnail_id','786'),(32752,4896,'_et_post_bg_color','#ffffff'),(32753,4896,'_et_post_bg_layout','light'),(32754,4896,'_et_pb_show_title','on'),(32755,4896,'_et_pb_post_hide_nav','default'),(32756,4896,'_et_pb_page_layout','et_right_sidebar'),(32757,4896,'_et_pb_side_nav','off'),(32758,4896,'_et_pb_use_builder','on'),(32759,4896,'_et_pb_first_image',''),(32760,4896,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">November 22, 2022, 1993 hd; Last week, 2843 hd; 1020 a year ago. Compared to last week feeder cattle sold steady. Slaughter cows &amp; bulls sold steady-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$238.00</p>\n<p>400-500<br />\n$170.00-$227.00</p>\n<p>500-600<br />\n$165.00-$214.00</p>\n<p>600-700<br />\n$160.00-$205.00</p>\n<p>700-800<br />\n$150.00-$174.25</p>\n<p>800-900<br />\n$150.00-$173.00</p>\n<p>900-1000<br />\n$140.00-$159.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$201.00</p>\n<p>400-500<br />\n$155.00-$192.00</p>\n<p>500-600<br />\n$150.00-$180.50</p>\n<p>600-700<br />\n$142.00-$176.00</p>\n<p>700-800<br />\n$137.00-$165.00</p>\n<p>800-900<br />\n$135.00-$158.00</p>\n<p>900-1000<br />\n$110.00-$154.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$70.00 &#8211; $80.00</p>\n<p>Medium Yield<br />\n$57.00 &#8211; $69.00</p>\n<p>Low Yield<br />\n$45.00 &#8211; $56.00</p>\n<p>Bulls<br />\n$50.00 &#8211; $102.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n614lbs @$198.00</p>\n<p>Steers<br />\n773lbs @$174.25</p>\n<p>Heifers<br />\n525lbs @$168.00</p>\n<p>Heifers<br />\n742lbs @$184.75</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(32761,4896,'_et_pb_truncate_post_date','2022-12-08 05:39:29'),(32762,4896,'_et_pb_old_content',''),(32763,4896,'_et_pb_built_for_post_type','page'),(32764,4896,'_et_pb_ab_subjects',''),(32765,4896,'_et_pb_enable_shortcode_tracking',''),(32766,4896,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4896\" /]'),(32767,4896,'_et_pb_custom_css',''),(32768,4896,'_et_pb_gutter_width','3'),(32769,4896,'_et_builder_version','VB|Divi|4.19.0'),(32770,4896,'_et_pb_show_page_creation','off'),(32771,4896,'_wp_old_slug','february-11-2020-market-report'),(32772,4896,'_wp_old_slug','march-17th-2020-market-report'),(32773,4896,'_wp_old_slug','may-1th-2020-market-report-2'),(32774,4896,'_wp_old_slug','july-21st-2020-market-report-2'),(32775,4896,'_wp_old_slug','november-10th-2020-market-report'),(32776,4896,'_wp_old_slug','january-25-2022-market-report-2'),(32777,4896,'_global_colors_info','{}'),(32783,4896,'_dp_original','4878'),(32784,4896,'_edit_lock','1669220889:2'),(32785,4896,'_edit_last','2'),(33079,4902,'_wp_attached_file','2022/11/TuesdayNovember-29th-Feeder-Cattle-Consignments.pdf'),(33080,4902,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdayNovember-29th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-29th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdayNovember-29th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-29th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(33136,4909,'_thumbnail_id','786'),(33137,4909,'_et_post_bg_color','#ffffff'),(33138,4909,'_et_post_bg_layout','light'),(33139,4909,'_et_pb_show_title','on'),(33140,4909,'_et_pb_post_hide_nav','default'),(33141,4909,'_et_pb_page_layout','et_right_sidebar'),(33142,4909,'_et_pb_side_nav','off'),(33143,4909,'_et_pb_use_builder','on'),(33144,4909,'_et_pb_first_image',''),(33145,4909,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">November 29, 2022, 3367 hd; Last week, 1993 hd; 3051 a year ago. Compared to last week feeder cattle sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$220.00</p>\n<p>400-500<br />\n$165.00-$219.00</p>\n<p>500-600<br />\n$160.00-$209.00</p>\n<p>600-700<br />\n$160.00-$197.00</p>\n<p>700-800<br />\n$155.00-$185.00</p>\n<p>800-900<br />\n$150.00-$190.10</p>\n<p>900-1000<br />\n$145.00-$175.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$187.00</p>\n<p>400-500<br />\n$150.00-$182.50</p>\n<p>500-600<br />\n$150.00-$187.00</p>\n<p>600-700<br />\n$145.00-$180.00</p>\n<p>700-800<br />\n$140.00-$170.00</p>\n<p>800-900<br />\n$125.00-$156.50</p>\n<p>900-1000<br />\n$125.00-$151.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$70.00 &#8211; $80.00</p>\n<p>Medium Yield<br />\n$60.00 &#8211; $69.00</p>\n<p>Low Yield<br />\n$45.00 &#8211; $59.50</p>\n<p>Bulls<br />\n$65.00 &#8211; $106.50</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n688lbs @$196.50</p>\n<p>Steers<br />\n753lbs @$185.00</p>\n<p>Steers<br />\n824lbs @$181.00</p>\n<p>Steers<br />\n841lbs @$190.10</p>\n<p>Heifers<br />\n565lbs@$177.00</p>\n<p>Heifers<br />\n651lbs@$180.00</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(33146,4909,'_et_pb_truncate_post_date','2022-12-08 05:39:29'),(33147,4909,'_et_pb_old_content',''),(33148,4909,'_et_pb_built_for_post_type','page'),(33149,4909,'_et_pb_ab_subjects',''),(33150,4909,'_et_pb_enable_shortcode_tracking',''),(33151,4909,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4909\" /]'),(33152,4909,'_et_pb_custom_css',''),(33153,4909,'_et_pb_gutter_width','3'),(33154,4909,'_et_builder_version','VB|Divi|4.19.0'),(33155,4909,'_et_pb_show_page_creation','off'),(33156,4909,'_wp_old_slug','february-11-2020-market-report'),(33157,4909,'_wp_old_slug','march-17th-2020-market-report'),(33158,4909,'_wp_old_slug','may-1th-2020-market-report-2'),(33159,4909,'_wp_old_slug','july-21st-2020-market-report-2'),(33160,4909,'_wp_old_slug','november-10th-2020-market-report'),(33161,4909,'_wp_old_slug','january-25-2022-market-report-2'),(33162,4909,'_global_colors_info','{}'),(33168,4909,'_dp_original','4896'),(33169,4909,'_edit_lock','1669830327:2'),(33170,4909,'_edit_last','2'),(33178,4914,'_wp_attached_file','2022/11/Estate-Auction-Dec.-7th.pdf'),(33179,4914,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:31:\"Estate-Auction-Dec.-7th-pdf.jpg\";s:5:\"width\";i:887;s:6:\"height\";i:1260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Estate-Auction-Dec.-7th-pdf-211x300.jpg\";s:5:\"width\";i:211;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Estate-Auction-Dec.-7th-pdf-721x1024.jpg\";s:5:\"width\";i:721;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Estate-Auction-Dec.-7th-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(33353,4920,'_wp_attached_file','2022/12/TuesdayDecember-6th-Feeder-Cattle-Consignments.pdf'),(33354,4920,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"TuesdayDecember-6th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"TuesdayDecember-6th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"TuesdayDecember-6th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"TuesdayDecember-6th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(33399,4926,'_wp_attached_file','2022/12/Dec.-10th2022-Horse-Tack-Small-Animal-Sale.pdf'),(33400,4926,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"Dec.-10th2022-Horse-Tack-Small-Animal-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"Dec.-10th2022-Horse-Tack-Small-Animal-Sale-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"Dec.-10th2022-Horse-Tack-Small-Animal-Sale-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"Dec.-10th2022-Horse-Tack-Small-Animal-Sale-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(33409,4929,'_thumbnail_id','786'),(33410,4929,'_et_post_bg_color','#ffffff'),(33411,4929,'_et_post_bg_layout','light'),(33412,4929,'_et_pb_show_title','on'),(33413,4929,'_et_pb_post_hide_nav','default'),(33414,4929,'_et_pb_page_layout','et_right_sidebar'),(33415,4929,'_et_pb_side_nav','off'),(33416,4929,'_et_pb_use_builder','on'),(33417,4929,'_et_pb_first_image',''),(33418,4929,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">December 6, 2022, 4824 hd; Last week, 3367 hd; 3476 a year ago. Compared to last week feeder cattle sold steady-$6 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$265.00</p>\n<p>400-500<br />\n$180.00-$250.00</p>\n<p>500-600<br />\n$168.00-$209.00</p>\n<p>600-700<br />\n$160.00-$195.00</p>\n<p>700-800<br />\n$160.00-$185.00</p>\n<p>800-900<br />\n$150.00-$173.75</p>\n<p>900-1000<br />\n$143.00-$162.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$210.00</p>\n<p>400-500<br />\n$160.00-$203.00</p>\n<p>500-600<br />\n$145.00-$184.00</p>\n<p>600-700<br />\n$140.00-$182.00</p>\n<p>700-800<br />\n$140.00-$174.75</p>\n<p>800-900<br />\n$130.00-$155.00</p>\n<p>900-1000<br />\n$118.00-$140.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$60.00 &#8211; $72.00</p>\n<p>Medium Yield<br />\n$50.00 &#8211; $59.00</p>\n<p>Low Yield<br />\n$42.00 &#8211; $49.50</p>\n<p>Bulls<br />\n$80.00 &#8211; $105.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n762lbs @$185.00</p>\n<p>Steers<br />\n767lbs @$173.85</p>\n<p>Steers<br />\n783lbs @$180.75</p>\n<p>Steers<br />\n891lbs @$173.75</p>\n<p>Heifers<br />\n678lbs@$182.00</p>\n<p>Heifers<br />\n685lbs@$172.35</p>\n<p>Heifers<br />\n723lbs@$173.00</p>\n<p>Heifers<br />\n727lbs@$173.75</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(33419,4929,'_et_pb_truncate_post_date','2022-12-08 05:39:29'),(33420,4929,'_et_pb_old_content',''),(33421,4929,'_et_pb_built_for_post_type','page'),(33422,4929,'_et_pb_ab_subjects',''),(33423,4929,'_et_pb_enable_shortcode_tracking',''),(33424,4929,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4929\" /]'),(33425,4929,'_et_pb_custom_css',''),(33426,4929,'_et_pb_gutter_width','3'),(33427,4929,'_et_builder_version','VB|Divi|4.19.0'),(33428,4929,'_et_pb_show_page_creation','off'),(33429,4929,'_wp_old_slug','february-11-2020-market-report'),(33430,4929,'_wp_old_slug','march-17th-2020-market-report'),(33431,4929,'_wp_old_slug','may-1th-2020-market-report-2'),(33432,4929,'_wp_old_slug','july-21st-2020-market-report-2'),(33433,4929,'_wp_old_slug','november-10th-2020-market-report'),(33434,4929,'_wp_old_slug','january-25-2022-market-report-2'),(33435,4929,'_global_colors_info','{}'),(33442,4929,'_dp_original','4909'),(33443,4929,'_edit_lock','1670432032:2'),(33444,4929,'_edit_last','2'),(33676,4943,'_wp_attached_file','2022/12/Dec.-17-2022-Cow-Sale.pdf'),(33677,4943,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:29:\"Dec.-17-2022-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Dec.-17-2022-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Dec.-17-2022-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Dec.-17-2022-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(33686,4946,'_wp_attached_file','2022/12/TuesdayDecember-13th-Feeder-Cattle-Consignments.pdf'),(33687,4946,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdayDecember-13th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdayDecember-13th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdayDecember-13th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdayDecember-13th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(33700,4949,'_wp_attached_file','2022/12/Dec.-17-2022-Cow-Sale-1.pdf'),(33701,4949,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:31:\"Dec.-17-2022-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Dec.-17-2022-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Dec.-17-2022-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Dec.-17-2022-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(33773,4956,'_wp_attached_file','2022/12/Dec.-17-2022-Cow-Sale-2.pdf'),(33774,4956,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:31:\"Dec.-17-2022-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Dec.-17-2022-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Dec.-17-2022-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Dec.-17-2022-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(33787,4959,'_wp_attached_file','2022/12/Dec.-17-2022-Cow-Sale-3.pdf'),(33788,4959,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:31:\"Dec.-17-2022-Cow-Sale-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Dec.-17-2022-Cow-Sale-3-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Dec.-17-2022-Cow-Sale-3-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Dec.-17-2022-Cow-Sale-3-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(33809,4965,'_thumbnail_id','786'),(33810,4965,'_et_post_bg_color','#ffffff'),(33811,4965,'_et_post_bg_layout','light'),(33812,4965,'_et_pb_show_title','on'),(33813,4965,'_et_pb_post_hide_nav','default'),(33814,4965,'_et_pb_page_layout','et_right_sidebar'),(33815,4965,'_et_pb_side_nav','off'),(33816,4965,'_et_pb_use_builder','on'),(33817,4965,'_et_pb_first_image',''),(33818,4965,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_3 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_9\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_12  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_18  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">December 13, 2022, 3016 hd; Last week, 4824 hd; 3601 a year ago. Compared to last week steers &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady. No sale Tuesday, December 27th due to Christmas. Merry Christmas &amp; Happy New Year from the Anstine family!Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_10\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_13  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_19  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$242.00</p>\n<p>400-500<br />\n$170.00-$235.00</p>\n<p>500-600<br />\n$165.00-$221.50</p>\n<p>600-700<br />\n$160.00-$198.00</p>\n<p>700-800<br />\n$160.00-$184.75</p>\n<p>800-900<br />\n$150.00-$175.00</p>\n<p>900-1000<br />\n$150.00-$165.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_20  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$155.00-$181.00</p>\n<p>400-500<br />\n$150.00-$193.00</p>\n<p>500-600<br />\n$150.00-$185.00</p>\n<p>600-700<br />\n$142.00-$179.50</p>\n<p>700-800<br />\n$140.00-$170.25</p>\n<p>800-900<br />\n$135.00-$155.00</p>\n<p>900-1000<br />\n$120.00-$144.50</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_14  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_21  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$70.00 &#8211; $84.00</p>\n<p>Medium Yield<br />\n$61.00 &#8211; $69.00</p>\n<p>Low Yield<br />\n$44.00 &#8211; $60.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $103.50</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_22  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n557lbs @$214.00</p>\n<p>Steers<br />\n635lbs @$198.00</p>\n<p>Steers<br />\n762lbs @$180.50</p>\n<p>Steers<br />\n770lbs @$184.85</p>\n<p>Steers<br />\n773lbs@$180.00</p>\n<p>Heifers<br />\n687lbs@$179.50</p>\n<p>Heifers<br />\n689lbs@$178.00</p>\n<p>Heifers<br />\n776lbs@$170.25</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_23  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_11\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_15  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_3_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_3 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(33819,4965,'_et_pb_truncate_post_date','2023-01-13 12:12:41'),(33820,4965,'_et_pb_old_content',''),(33821,4965,'_et_pb_built_for_post_type','page'),(33822,4965,'_et_pb_ab_subjects',''),(33823,4965,'_et_pb_enable_shortcode_tracking',''),(33824,4965,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4965\" /]'),(33825,4965,'_et_pb_custom_css',''),(33826,4965,'_et_pb_gutter_width','3'),(33827,4965,'_et_builder_version','VB|Divi|4.19.0'),(33828,4965,'_et_pb_show_page_creation','off'),(33829,4965,'_wp_old_slug','february-11-2020-market-report'),(33830,4965,'_wp_old_slug','march-17th-2020-market-report'),(33831,4965,'_wp_old_slug','may-1th-2020-market-report-2'),(33832,4965,'_wp_old_slug','july-21st-2020-market-report-2'),(33833,4965,'_wp_old_slug','november-10th-2020-market-report'),(33834,4965,'_wp_old_slug','january-25-2022-market-report-2'),(33835,4965,'_global_colors_info','{}'),(33841,4965,'_dp_original','4929'),(33842,4965,'_edit_lock','1671039402:2'),(33843,4965,'_edit_last','2'),(34256,4973,'_wp_attached_file','2022/12/TuesdayDecember-20th-Feeder-Cattle-Consignments.pdf'),(34257,4973,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdayDecember-20th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdayDecember-20th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdayDecember-20th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdayDecember-20th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(34298,4978,'_thumbnail_id','786'),(34299,4978,'_et_post_bg_color','#ffffff'),(34300,4978,'_et_post_bg_layout','light'),(34301,4978,'_et_pb_show_title','on'),(34302,4978,'_et_pb_post_hide_nav','default'),(34303,4978,'_et_pb_page_layout','et_right_sidebar'),(34304,4978,'_et_pb_side_nav','off'),(34305,4978,'_et_pb_use_builder','on'),(34306,4978,'_et_pb_first_image',''),(34307,4978,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">December 20, 2022, 1839 hd; Last week, 3016 hd; 1604 a year ago. Feeder cattle sold steady-$4 lower. Yearling heifers sold fully steady. Slaughter cows &amp; bulls sold steady-$2 higher. No sale Tuesday, December 27th due to Christmas. Merry Christmas &amp; Happy New Year from the Anstine family!Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$160.00-$210.00</p>\n<p>400-500<br />\n$165.00-$210.00</p>\n<p>500-600<br />\n$160.00-$211.00</p>\n<p>600-700<br />\n$160.00-$184.00</p>\n<p>700-800<br />\n$160.00-$181.00</p>\n<p>800-900<br />\n$149.00-$168.00</p>\n<p>900-1000<br />\n$130.00-$160.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$140.00-$170.00</p>\n<p>400-500<br />\n$140.00-$177.50</p>\n<p>500-600<br />\n$140.00-$178.50</p>\n<p>600-700<br />\n$140.00-$186.75</p>\n<p>700-800<br />\n$140.00-$173.00</p>\n<p>800-900<br />\n$135.00-$154.00</p>\n<p>900-1000<br />\n$140.00-$147.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$70.00 &#8211; $78.00</p>\n<p>Medium Yield<br />\n$61.00 &#8211; $69.50</p>\n<p>Low Yield<br />\n$45.00 &#8211; $60.00</p>\n<p>Bulls<br />\n$75.00 &#8211; $106.50</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n590lbs @$194.25</p>\n<p>Heifers<br />\n691lbs @$180.00</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(34308,4978,'_et_pb_truncate_post_date','2023-01-13 12:12:40'),(34309,4978,'_et_pb_old_content',''),(34310,4978,'_et_pb_built_for_post_type','page'),(34311,4978,'_et_pb_ab_subjects',''),(34312,4978,'_et_pb_enable_shortcode_tracking',''),(34313,4978,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4978\" /]'),(34314,4978,'_et_pb_custom_css',''),(34315,4978,'_et_pb_gutter_width','3'),(34316,4978,'_et_builder_version','VB|Divi|4.19.0'),(34317,4978,'_et_pb_show_page_creation','off'),(34318,4978,'_wp_old_slug','february-11-2020-market-report'),(34319,4978,'_wp_old_slug','march-17th-2020-market-report'),(34320,4978,'_wp_old_slug','may-1th-2020-market-report-2'),(34321,4978,'_wp_old_slug','july-21st-2020-market-report-2'),(34322,4978,'_wp_old_slug','november-10th-2020-market-report'),(34323,4978,'_wp_old_slug','january-25-2022-market-report-2'),(34324,4978,'_global_colors_info','{}'),(34330,4978,'_dp_original','4965'),(34331,4978,'_edit_lock','1671639870:2'),(34332,4978,'_edit_last','2'),(34445,4988,'_wp_attached_file','2022/12/image000002.jpg'),(34446,4988,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:23:\"2022/12/image000002.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"image000002-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"image000002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"image000002-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:23:\"image000002-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:23:\"image000002-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:23:\"image000002-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:23:\"image000002-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:23:\"image000002-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(34574,4992,'_wp_attached_file','2023/01/Tuesday-January-3rd-Feeder-Cattle-Consignments.pdf'),(34575,4992,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"Tuesday-January-3rd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"Tuesday-January-3rd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"Tuesday-January-3rd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Tuesday-January-3rd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(34643,4998,'_thumbnail_id','786'),(34644,4998,'_et_post_bg_color','#ffffff'),(34645,4998,'_et_post_bg_layout','light'),(34646,4998,'_et_pb_show_title','on'),(34647,4998,'_et_pb_post_hide_nav','default'),(34648,4998,'_et_pb_page_layout','et_right_sidebar'),(34649,4998,'_et_pb_side_nav','off'),(34650,4998,'_et_pb_use_builder','on'),(34651,4998,'_et_pb_first_image',''),(34652,4998,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">January 3, 2023, 3516 hd; Last week, 1839 hd; 2068 a year ago. Compared to 2 weeks ago feeder cattle sold $3-$7 higher &amp; cattle weighing 800lbs &amp; up-sold fully steady. Slaughter cows &amp; bulls sold $6-$10 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$230.00</p>\n<p>400-500<br />\n$175.00-$230.00</p>\n<p>500-600<br />\n$170.00-$222.00</p>\n<p>600-700<br />\n$160.00-$207.00</p>\n<p>700-800<br />\n$160.00-$188.00</p>\n<p>800-900<br />\n$150.00-$179.50</p>\n<p>900-1000<br />\n$140.00-$161.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$170.00-$204.50</p>\n<p>400-500<br />\n$160.00-$200.00</p>\n<p>500-600<br />\n$150.00-$186.50</p>\n<p>600-700<br />\n$145.00-$179.75</p>\n<p>700-800<br />\n$142.00-$174.75</p>\n<p>800-900<br />\n$133.00-$160.35</p>\n<p>900-1000<br />\n$125.00-$147.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$80.00 &#8211; $78.00</p>\n<p>Medium Yield<br />\n$70.00 &#8211; $79.00</p>\n<p>Low Yield<br />\n$61.00 &#8211; $69.00</p>\n<p>Bulls<br />\n$70.00 &#8211; $113.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n706lbs @$188.00</p>\n<p>Steers<br />\n808lbs @$179.50</p>\n<p>Steers<br />\n893lbs@$177.00</p>\n<p>Heifers<br />\n668lbs@$179.75</p>\n<p>Heifers<br />\n753lbs@$169.25</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(34653,4998,'_et_pb_truncate_post_date','2023-01-13 12:12:40'),(34654,4998,'_et_pb_old_content',''),(34655,4998,'_et_pb_built_for_post_type','page'),(34656,4998,'_et_pb_ab_subjects',''),(34657,4998,'_et_pb_enable_shortcode_tracking',''),(34658,4998,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"4998\" /]'),(34659,4998,'_et_pb_custom_css',''),(34660,4998,'_et_pb_gutter_width','3'),(34661,4998,'_et_builder_version','VB|Divi|4.19.0'),(34662,4998,'_et_pb_show_page_creation','off'),(34663,4998,'_wp_old_slug','february-11-2020-market-report'),(34664,4998,'_wp_old_slug','march-17th-2020-market-report'),(34665,4998,'_wp_old_slug','may-1th-2020-market-report-2'),(34666,4998,'_wp_old_slug','july-21st-2020-market-report-2'),(34667,4998,'_wp_old_slug','november-10th-2020-market-report'),(34668,4998,'_wp_old_slug','january-25-2022-market-report-2'),(34669,4998,'_global_colors_info','{}'),(34675,4998,'_dp_original','4978'),(34676,4998,'_edit_lock','1672845810:2'),(34677,4998,'_edit_last','2'),(34679,4998,'_wp_old_slug','january-3-2022-market-report'),(34736,5004,'_wp_attached_file','2023/01/Tuesday-January-10th-Feeder-Cattle-Consignments.pdf'),(34737,5004,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-January-10th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-January-10th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-January-10th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-January-10th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(34758,5008,'_thumbnail_id','786'),(34759,5008,'_et_post_bg_color','#ffffff'),(34760,5008,'_et_post_bg_layout','light'),(34761,5008,'_et_pb_show_title','on'),(34762,5008,'_et_pb_post_hide_nav','default'),(34763,5008,'_et_pb_page_layout','et_right_sidebar'),(34764,5008,'_et_pb_side_nav','off'),(34765,5008,'_et_pb_use_builder','on'),(34766,5008,'_et_pb_first_image',''),(34767,5008,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">January 10, 2023, 3754 hd; Last week, 3516 hd; 3782 a year ago. Feeder cattle sold $5-$15 higher w/ several strings of preconditioned feeder &amp; grass cattle. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$190.00-$240.00</p>\n<p>400-500<br />\n$180.00-$237.00</p>\n<p>500-600<br />\n$170.00-$237.50</p>\n<p>600-700<br />\n$165.00-$204.50</p>\n<p>700-800<br />\n$165.00-$191.00</p>\n<p>800-900<br />\n$170.00-$182.50</p>\n<p>900-1000<br />\n$156.00-$177.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$190.00-$239.00</p>\n<p>400-500<br />\n$175.00-$219.00</p>\n<p>500-600<br />\n$160.00-$197.00</p>\n<p>600-700<br />\n$155.00-$181.75</p>\n<p>700-800<br />\n$150.00-$174.00</p>\n<p>800-900<br />\n$145.00-$158.00</p>\n<p>900-1000<br />\n$131.00-$141.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$81.00 &#8211; $90.00</p>\n<p>Medium Yield<br />\n$72.00 &#8211; $80.00</p>\n<p>Low Yield<br />\n$57.00 &#8211; $71.00</p>\n<p>Bulls<br />\n$60.00 &#8211; $110.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n508lbs @$237.50</p>\n<p>Steers<br />\n629lbs @$200.00</p>\n<p>Steers<br />\n802lbs@$182.50</p>\n<p>Steers<br />\n917lbs@$177.00</p>\n<p>Heifers<br />\n688lbs@$175.00</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(34768,5008,'_et_pb_truncate_post_date','2023-01-13 12:12:40'),(34769,5008,'_et_pb_old_content',''),(34770,5008,'_et_pb_built_for_post_type','page'),(34771,5008,'_et_pb_ab_subjects',''),(34772,5008,'_et_pb_enable_shortcode_tracking',''),(34773,5008,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5008\" /]'),(34774,5008,'_et_pb_custom_css',''),(34775,5008,'_et_pb_gutter_width','3'),(34776,5008,'_et_builder_version','VB|Divi|4.19.0'),(34777,5008,'_et_pb_show_page_creation','off'),(34778,5008,'_wp_old_slug','february-11-2020-market-report'),(34779,5008,'_wp_old_slug','march-17th-2020-market-report'),(34780,5008,'_wp_old_slug','may-1th-2020-market-report-2'),(34781,5008,'_wp_old_slug','july-21st-2020-market-report-2'),(34782,5008,'_wp_old_slug','november-10th-2020-market-report'),(34783,5008,'_wp_old_slug','january-25-2022-market-report-2'),(34784,5008,'_wp_old_slug','january-3-2022-market-report'),(34785,5008,'_global_colors_info','{}'),(34791,5008,'_dp_original','4998'),(34792,5008,'_edit_lock','1673453702:2'),(34793,5008,'_edit_last','2'),(34864,5022,'_wp_attached_file','2023/01/Tuesday-January-10th-Feeder-Cattle-Consignments-1.pdf'),(34865,5022,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:57:\"Tuesday-January-10th-Feeder-Cattle-Consignments-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:65:\"Tuesday-January-10th-Feeder-Cattle-Consignments-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:66:\"Tuesday-January-10th-Feeder-Cattle-Consignments-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:65:\"Tuesday-January-10th-Feeder-Cattle-Consignments-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(34866,5023,'_wp_attached_file','2023/01/Tuesday-January-17th-Feeder-Cattle-Consignments.pdf'),(34867,5023,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-January-17th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-January-17th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-January-17th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-January-17th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(34924,5032,'_thumbnail_id','786'),(34925,5032,'_et_post_bg_color','#ffffff'),(34926,5032,'_et_post_bg_layout','light'),(34927,5032,'_et_pb_show_title','on'),(34928,5032,'_et_pb_post_hide_nav','default'),(34929,5032,'_et_pb_page_layout','et_right_sidebar'),(34930,5032,'_et_pb_side_nav','off'),(34931,5032,'_et_pb_use_builder','on'),(34932,5032,'_et_pb_first_image',''),(34933,5032,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_2 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_6\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_8  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_12  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">January 17, 2023, 5064 hd; Last week, 3754 hd; 3501 a year ago. Feeder cattle sold fully steady w/ several strings of reputation feeder &amp; grass cattle w/ good buyer demand. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_7\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_9  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_13  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$239.00</p>\n<p>400-500<br />\n$180.00-$241.00</p>\n<p>500-600<br />\n$180.00-$234.50</p>\n<p>600-700<br />\n$165.00-$205.50</p>\n<p>700-800<br />\n$160.00-$187.10</p>\n<p>800-900<br />\n$160.50-$178.85</p>\n<p>900-1000<br />\n$150.00-$165.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_14  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$205.00</p>\n<p>400-500<br />\n$160.00-$226.50</p>\n<p>500-600<br />\n$150.00-$197.00</p>\n<p>600-700<br />\n$145.00-$182.00</p>\n<p>700-800<br />\n$140.00-$174.50</p>\n<p>800-900<br />\n$130.00-$155.00</p>\n<p>900-1000<br />\n$120.00-$140.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_10  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_15  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$80.00 &#8211; $92.50</p>\n<p>Medium Yield<br />\n$70.00 &#8211; $79.00</p>\n<p>Low Yield<br />\n$55.00 &#8211; $69.00</p>\n<p>Bulls<br />\n$85.00 &#8211; $108.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_16  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n688lbs @$191.75</p>\n<p>Steers<br />\n771lbs @$176.00</p>\n<p>Steers<br />\n778lbs@$183.00</p>\n<p>Steers<br />\n795lbs ( colored) @$173.10</p>\n<p>Steers<br />\n813lbs@$178.85</p>\n<p>Steers<br />\n823lbs@$174.10</p>\n<p>Heifers<br />\n680lbs@$176.25</p>\n<p>Heifers<br />\n688lbs@$175.50</p>\n<p>Heifers<br />\n693lbs@$176.00</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_17  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_8\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_11  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_2_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_2 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(34934,5032,'_et_pb_truncate_post_date','2023-02-03 01:31:47'),(34935,5032,'_et_pb_old_content',''),(34936,5032,'_et_pb_built_for_post_type','page'),(34937,5032,'_et_pb_ab_subjects',''),(34938,5032,'_et_pb_enable_shortcode_tracking',''),(34939,5032,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5032\" /]'),(34940,5032,'_et_pb_custom_css',''),(34941,5032,'_et_pb_gutter_width','3'),(34942,5032,'_et_builder_version','VB|Divi|4.19.0'),(34943,5032,'_et_pb_show_page_creation','off'),(34944,5032,'_wp_old_slug','february-11-2020-market-report'),(34945,5032,'_wp_old_slug','march-17th-2020-market-report'),(34946,5032,'_wp_old_slug','may-1th-2020-market-report-2'),(34947,5032,'_wp_old_slug','july-21st-2020-market-report-2'),(34948,5032,'_wp_old_slug','november-10th-2020-market-report'),(34949,5032,'_wp_old_slug','january-25-2022-market-report-2'),(34950,5032,'_wp_old_slug','january-3-2022-market-report'),(34951,5032,'_global_colors_info','{}'),(34957,5032,'_dp_original','5008'),(34958,5032,'_edit_lock','1674061193:2'),(34959,5032,'_edit_last','2'),(34994,5039,'_wp_attached_file','2023/01/Jan-27-2023-Cow-Sale.pdf'),(34995,5039,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:28:\"Jan-27-2023-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"Jan-27-2023-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Jan-27-2023-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Jan-27-2023-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(35013,5043,'_thumbnail_id','786'),(35014,5043,'_et_post_bg_color','#ffffff'),(35015,5043,'_et_post_bg_layout','light'),(35016,5043,'_et_pb_show_title','on'),(35017,5043,'_et_pb_post_hide_nav','default'),(35018,5043,'_et_pb_page_layout','et_right_sidebar'),(35019,5043,'_et_pb_side_nav','off'),(35020,5043,'_et_pb_use_builder','on'),(35021,5043,'_et_pb_first_image',''),(35022,5043,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_1 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_3\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_4  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_6  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">January 24, 2023, 1981 hd; Last week, 5064 hd; 4108 a year ago. Compared to last week feeder cattle sold fully steady. Slaughter cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_4\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_5  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_7  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$245.00</p>\n<p>400-500<br />\n$180.00-$234.00</p>\n<p>500-600<br />\n$170.00-$227.50</p>\n<p>600-700<br />\n$165.00-$205.00</p>\n<p>700-800<br />\n$150.00-$187.75</p>\n<p>800-900<br />\n$146.00-$176.50</p>\n<p>900-1000<br />\n$135.00-$155.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_8  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$150.00-$202.00</p>\n<p>400-500<br />\n$165.00-$202.50</p>\n<p>500-600<br />\n$150.00-$186.00</p>\n<p>600-700<br />\n$143.00-$177.50</p>\n<p>700-800<br />\n$134.00-$159.00</p>\n<p>800-900<br />\n$123.00-$150.00</p>\n<p>900-1000<br />\n$120.00-$134.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_6  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_9  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$84.00 &#8211; $99.00</p>\n<p>Medium Yield<br />\n$74.00 &#8211; $83.00</p>\n<p>Low Yield<br />\n$60.00 &#8211; $73.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $110.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_10  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n565lbs @$214.75</p>\n<p>Steers<br />\n678lbs @$196.85</p>\n<p>Steers<br />\n894lbs@$176.50</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_11  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_5\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_7  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_1_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_1 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(35023,5043,'_et_pb_truncate_post_date','2023-02-03 01:31:47'),(35024,5043,'_et_pb_old_content',''),(35025,5043,'_et_pb_built_for_post_type','page'),(35026,5043,'_et_pb_ab_subjects',''),(35027,5043,'_et_pb_enable_shortcode_tracking',''),(35028,5043,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5043\" /]'),(35029,5043,'_et_pb_custom_css',''),(35030,5043,'_et_pb_gutter_width','3'),(35031,5043,'_et_builder_version','VB|Divi|4.19.4'),(35032,5043,'_et_pb_show_page_creation','off'),(35033,5043,'_wp_old_slug','february-11-2020-market-report'),(35034,5043,'_wp_old_slug','march-17th-2020-market-report'),(35035,5043,'_wp_old_slug','may-1th-2020-market-report-2'),(35036,5043,'_wp_old_slug','july-21st-2020-market-report-2'),(35037,5043,'_wp_old_slug','november-10th-2020-market-report'),(35038,5043,'_wp_old_slug','january-25-2022-market-report-2'),(35039,5043,'_wp_old_slug','january-3-2022-market-report'),(35040,5043,'_global_colors_info','{}'),(35047,5043,'_dp_original','5032'),(35048,5043,'_edit_lock','1674663101:2'),(35049,5043,'_edit_last','2'),(35219,5055,'_wp_attached_file','2023/01/Tuesday-January-31st-Feeder-Cattle-Consignments.pdf'),(35220,5055,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Tuesday-January-31st-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Tuesday-January-31st-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Tuesday-January-31st-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"Tuesday-January-31st-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(35242,5057,'_wp_attached_file','2023/01/Tuesday-January-31st-Feeder-Cattle-Consignments-1.pdf'),(35243,5057,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:57:\"Tuesday-January-31st-Feeder-Cattle-Consignments-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:65:\"Tuesday-January-31st-Feeder-Cattle-Consignments-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:66:\"Tuesday-January-31st-Feeder-Cattle-Consignments-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:65:\"Tuesday-January-31st-Feeder-Cattle-Consignments-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(35295,5061,'_wp_attached_file','2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale.pdf'),(35296,5061,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"Feb.-11th2022-Horse-Tack-Small-Animal-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"Feb.-11th2022-Horse-Tack-Small-Animal-Sale-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"Feb.-11th2022-Horse-Tack-Small-Animal-Sale-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"Feb.-11th2022-Horse-Tack-Small-Animal-Sale-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(35305,5064,'_thumbnail_id','786'),(35306,5064,'_et_post_bg_color','#ffffff'),(35307,5064,'_et_post_bg_layout','light'),(35308,5064,'_et_pb_show_title','on'),(35309,5064,'_et_pb_post_hide_nav','default'),(35310,5064,'_et_pb_page_layout','et_right_sidebar'),(35311,5064,'_et_pb_side_nav','off'),(35312,5064,'_et_pb_use_builder','on'),(35313,5064,'_et_pb_first_image',''),(35314,5064,'_et_pb_truncate_post','<div class=\"et_pb_section et_pb_section_0 et_section_regular\" >\n				\n				\n				\n				\n				\n				\n				<div class=\"et_pb_row et_pb_row_0\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_0  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">January 31, 2023, 2670 hd; Last week, 1981 hd; 3565 a year ago. Calves under 650lbs sold $5-$10 higher. Feeders weighing 650lbs &amp; up-sold steady $ 3 higher. Slaughter cows &amp; bulls sold $4-$8 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_1\">\n				<div class=\"et_pb_column et_pb_column_1_2 et_pb_column_1  et_pb_css_mix_blend_mode_passthrough\">\n				\n				\n				\n				\n				<div class=\"et_pb_module et_pb_text et_pb_text_1  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>STEERS<br />\nPRICE</p>\n<p>300-400<br />\n$200.00-$250.00</p>\n<p>400-500<br />\n$190.00-$260.50</p>\n<p>500-600<br />\n$190.00-$241.00</p>\n<p>600-700<br />\n$175.00-$215.00</p>\n<p>700-800<br />\n$160.00-$191.25</p>\n<p>800-900<br />\n$160.00-$183.00</p>\n<p>900-1000<br />\n$160.00-$175.00</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_2  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\"><p>HEIFERS<br />\nPRICE</p>\n<p>300-400<br />\n$180.00-$219.00</p>\n<p>400-500<br />\n$175.00-$212.00</p>\n<p>500-600<br />\n$160.00-$195.00</p>\n<p>600-700<br />\n$150.00-$180.00</p>\n<p>700-800<br />\n$148.00-$176.00</p>\n<p>800-900<br />\n$141.50-$157.00</p>\n<p>900-1000<br />\n$130.00-$139.00</p>\n<p>&nbsp;</div>\n			</div>\n			</div><div class=\"et_pb_column et_pb_column_1_2 et_pb_column_2  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_3  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Slaughter Cows &amp; Bulls<br />\n&nbsp;</p>\n<p>High Yielding<br />\n$92.00 &#8211; $100.50</p>\n<p>Medium Yield<br />\n$80.00 &#8211; $91.00</p>\n<p>Low Yield<br />\n$65.00 &#8211; $79.00</p>\n<p>Bulls<br />\n$80.00 &#8211; $113.50</p>\n<p>&nbsp;</div>\n			</div><div class=\"et_pb_with_border et_pb_module et_pb_text et_pb_text_4  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Load Lots<br />\n&nbsp;</p>\n<p>Steers<br />\n570lbs @$228.50</p>\n<p>Steers<br />\n697lbs @$192.50</p>\n<p>Steers<br />\n740lbs@$189.85</p>\n<p>Steers<br />\n808lbs@$182.00</p>\n<p>Steers<br />\n888lbs@$179.00</p>\n<p>Steers<br />\n896lbs@$175.50</p>\n<p>Steers<br />\n906lbs@$175.00</p>\n<p>Heifers<br />\n736lbs@$176.00</p>\n<p>Heifers<br />\n853lbs@$157.00</p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p>\n<p>Â <br />\nÂ </p></div>\n			</div><div class=\"et_pb_module et_pb_text et_pb_text_5  et_pb_text_align_left et_pb_bg_layout_light\">\n				\n				\n				\n				\n				<div class=\"et_pb_text_inner\">Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</div>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div><div class=\"et_pb_row et_pb_row_2\">\n				<div class=\"et_pb_column et_pb_column_4_4 et_pb_column_3  et_pb_css_mix_blend_mode_passthrough et-last-child\">\n				\n				\n				\n				\n				<div class=\"et_pb_button_module_wrapper et_pb_button_0_wrapper et_pb_button_alignment_center et_pb_module \">\n				<a class=\"et_pb_button et_pb_button_0 et_pb_bg_layout_light\" href=\"https://kingsvillelivestock.com/#upcoming-auctions\">VIEW UPCOMING AUCTION SCHEDULE</a>\n			</div>\n			</div>\n				\n				\n				\n				\n			</div>\n				\n				\n			</div>\n'),(35315,5064,'_et_pb_truncate_post_date','2023-02-03 01:31:47'),(35316,5064,'_et_pb_old_content',''),(35317,5064,'_et_pb_built_for_post_type','page'),(35318,5064,'_et_pb_ab_subjects',''),(35319,5064,'_et_pb_enable_shortcode_tracking',''),(35320,5064,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5064\" /]'),(35321,5064,'_et_pb_custom_css',''),(35322,5064,'_et_pb_gutter_width','3'),(35323,5064,'_et_builder_version','VB|Divi|4.19.4'),(35324,5064,'_et_pb_show_page_creation','off'),(35325,5064,'_wp_old_slug','february-11-2020-market-report'),(35326,5064,'_wp_old_slug','march-17th-2020-market-report'),(35327,5064,'_wp_old_slug','may-1th-2020-market-report-2'),(35328,5064,'_wp_old_slug','july-21st-2020-market-report-2'),(35329,5064,'_wp_old_slug','november-10th-2020-market-report'),(35330,5064,'_wp_old_slug','january-25-2022-market-report-2'),(35331,5064,'_wp_old_slug','january-3-2022-market-report'),(35332,5064,'_global_colors_info','{}'),(35337,5064,'_dp_original','5043'),(35338,5064,'_edit_lock','1675270541:2'),(35339,5064,'_edit_last','2'),(35442,5070,'_wp_attached_file','2023/02/TuesdayFebruary-7th-Feeder-Cattle-Consignments.pdf'),(35443,5070,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"TuesdayFebruary-7th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"TuesdayFebruary-7th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"TuesdayFebruary-7th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"TuesdayFebruary-7th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(35455,5074,'_wp_attached_file','2023/02/Feb.-18-2023-Cow-Sale.pdf'),(35456,5074,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:29:\"Feb.-18-2023-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Feb.-18-2023-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"Feb.-18-2023-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Feb.-18-2023-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(35509,5081,'_wp_page_template','default'),(35510,5081,'_et_pb_post_hide_nav','default'),(35511,5081,'_et_pb_page_layout','et_right_sidebar'),(35512,5081,'_et_pb_side_nav','off'),(35513,5081,'_et_pb_use_builder','on'),(35514,5081,'_et_pb_first_image',''),(35515,5081,'_et_pb_truncate_post',''),(35516,5081,'_et_pb_truncate_post_date',''),(35517,5081,'_et_pb_old_content',''),(35518,5081,'_et_pb_built_for_post_type','page'),(35519,5081,'_et_pb_ab_subjects',''),(35520,5081,'_et_pb_enable_shortcode_tracking',''),(35521,5081,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"2209\" /]'),(35522,5081,'_et_pb_custom_css',''),(35523,5081,'_et_pb_gutter_width','3'),(35524,5081,'_et_builder_version','VB|Divi|4.19.5'),(35525,5081,'_et_pb_show_page_creation','off'),(35527,5081,'_global_colors_info','{}'),(35528,5081,'_thumbnail_id','0'),(35529,5081,'_et_builder_dynamic_assets_loading_attr_threshold','3'),(35534,5081,'_dp_original','2209'),(35543,5084,'_wp_attached_file','2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale-1.pdf'),(35544,5084,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"Feb.-11th2022-Horse-Tack-Small-Animal-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"Feb.-11th2022-Horse-Tack-Small-Animal-Sale-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"Feb.-11th2022-Horse-Tack-Small-Animal-Sale-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Feb.-11th2022-Horse-Tack-Small-Animal-Sale-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(35557,5088,'_thumbnail_id','786'),(35558,5088,'_et_post_bg_color','#ffffff'),(35559,5088,'_et_post_bg_layout','light'),(35560,5088,'_et_pb_show_title','on'),(35561,5088,'_et_pb_post_hide_nav','default'),(35562,5088,'_et_pb_page_layout','et_right_sidebar'),(35563,5088,'_et_pb_side_nav','off'),(35564,5088,'_et_pb_use_builder','on'),(35565,5088,'_et_pb_first_image',''),(35566,5088,'_et_pb_truncate_post',''),(35567,5088,'_et_pb_truncate_post_date',''),(35568,5088,'_et_pb_old_content',''),(35569,5088,'_et_pb_built_for_post_type','page'),(35570,5088,'_et_pb_ab_subjects',''),(35571,5088,'_et_pb_enable_shortcode_tracking',''),(35572,5088,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5088\" /]'),(35573,5088,'_et_pb_custom_css',''),(35574,5088,'_et_pb_gutter_width','3'),(35575,5088,'_et_builder_version','VB|Divi|4.19.4'),(35576,5088,'_et_pb_show_page_creation','off'),(35577,5088,'_wp_old_slug','february-11-2020-market-report'),(35578,5088,'_wp_old_slug','march-17th-2020-market-report'),(35579,5088,'_wp_old_slug','may-1th-2020-market-report-2'),(35580,5088,'_wp_old_slug','july-21st-2020-market-report-2'),(35581,5088,'_wp_old_slug','november-10th-2020-market-report'),(35582,5088,'_wp_old_slug','january-25-2022-market-report-2'),(35583,5088,'_wp_old_slug','january-3-2022-market-report'),(35584,5088,'_global_colors_info','{}'),(35590,5088,'_dp_original','5064'),(35591,5088,'_edit_lock','1675878450:2'),(35592,5088,'_edit_last','2'),(35597,5093,'_wp_attached_file','2023/02/Feb.-18-2023-Cow-Sale-1.pdf'),(35598,5093,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:31:\"Feb.-18-2023-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Feb.-18-2023-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Feb.-18-2023-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Feb.-18-2023-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(35649,5097,'_wp_attached_file','2023/02/Feb.-18-2023-Cow-Sale-2.pdf'),(35650,5097,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:31:\"Feb.-18-2023-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Feb.-18-2023-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Feb.-18-2023-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Feb.-18-2023-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(35663,5101,'_wp_attached_file','2023/02/Feb.-18-2023-Cow-Sale-3.pdf'),(35664,5101,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:31:\"Feb.-18-2023-Cow-Sale-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Feb.-18-2023-Cow-Sale-3-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Feb.-18-2023-Cow-Sale-3-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Feb.-18-2023-Cow-Sale-3-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(35665,5102,'_wp_attached_file','2023/02/TuesdayFebruary-14th-Feeder-Cattle-Consignments.pdf'),(35666,5102,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdayFebruary-14th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdayFebruary-14th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdayFebruary-14th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdayFebruary-14th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(35710,5107,'_thumbnail_id','786'),(35711,5107,'_et_post_bg_color','#ffffff'),(35712,5107,'_et_post_bg_layout','light'),(35713,5107,'_et_pb_show_title','on'),(35714,5107,'_et_pb_post_hide_nav','default'),(35715,5107,'_et_pb_page_layout','et_right_sidebar'),(35716,5107,'_et_pb_side_nav','off'),(35717,5107,'_et_pb_use_builder','on'),(35718,5107,'_et_pb_first_image',''),(35719,5107,'_et_pb_truncate_post',''),(35720,5107,'_et_pb_truncate_post_date',''),(35721,5107,'_et_pb_old_content',''),(35722,5107,'_et_pb_built_for_post_type','page'),(35723,5107,'_et_pb_ab_subjects',''),(35724,5107,'_et_pb_enable_shortcode_tracking',''),(35725,5107,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5107\" /]'),(35726,5107,'_et_pb_custom_css',''),(35727,5107,'_et_pb_gutter_width','3'),(35728,5107,'_et_builder_version','VB|Divi|4.19.4'),(35729,5107,'_et_pb_show_page_creation','off'),(35730,5107,'_wp_old_slug','february-11-2020-market-report'),(35731,5107,'_wp_old_slug','march-17th-2020-market-report'),(35732,5107,'_wp_old_slug','may-1th-2020-market-report-2'),(35733,5107,'_wp_old_slug','july-21st-2020-market-report-2'),(35734,5107,'_wp_old_slug','november-10th-2020-market-report'),(35735,5107,'_wp_old_slug','january-25-2022-market-report-2'),(35736,5107,'_wp_old_slug','january-3-2022-market-report'),(35737,5107,'_global_colors_info','{}'),(35743,5107,'_dp_original','5088'),(35744,5107,'_edit_lock','1676481773:2'),(35745,5107,'_edit_last','2'),(35920,5120,'_wp_attached_file','2023/02/TuesdayFebruary-21st-Feeder-Cattle-Consignments.pdf'),(35921,5120,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdayFebruary-21st-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdayFebruary-21st-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdayFebruary-21st-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdayFebruary-21st-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(35926,5122,'_wp_attached_file','2023/02/White-Auction-March-10th-Holden.pdf'),(35927,5122,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:39:\"White-Auction-March-10th-Holden-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"White-Auction-March-10th-Holden-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"White-Auction-March-10th-Holden-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"White-Auction-March-10th-Holden-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(35969,5126,'_thumbnail_id','786'),(35970,5126,'_et_post_bg_color','#ffffff'),(35971,5126,'_et_post_bg_layout','light'),(35972,5126,'_et_pb_show_title','on'),(35973,5126,'_et_pb_post_hide_nav','default'),(35974,5126,'_et_pb_page_layout','et_right_sidebar'),(35975,5126,'_et_pb_side_nav','off'),(35976,5126,'_et_pb_use_builder','on'),(35977,5126,'_et_pb_first_image',''),(35978,5126,'_et_pb_truncate_post',''),(35979,5126,'_et_pb_truncate_post_date',''),(35980,5126,'_et_pb_old_content',''),(35981,5126,'_et_pb_built_for_post_type','page'),(35982,5126,'_et_pb_ab_subjects',''),(35983,5126,'_et_pb_enable_shortcode_tracking',''),(35984,5126,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5126\" /]'),(35985,5126,'_et_pb_custom_css',''),(35986,5126,'_et_pb_gutter_width','3'),(35987,5126,'_et_builder_version','VB|Divi|4.19.4'),(35988,5126,'_et_pb_show_page_creation','off'),(35989,5126,'_wp_old_slug','february-11-2020-market-report'),(35990,5126,'_wp_old_slug','march-17th-2020-market-report'),(35991,5126,'_wp_old_slug','may-1th-2020-market-report-2'),(35992,5126,'_wp_old_slug','july-21st-2020-market-report-2'),(35993,5126,'_wp_old_slug','november-10th-2020-market-report'),(35994,5126,'_wp_old_slug','january-25-2022-market-report-2'),(35995,5126,'_wp_old_slug','january-3-2022-market-report'),(35996,5126,'_global_colors_info','{}'),(36002,5126,'_dp_original','5107'),(36003,5126,'_edit_lock','1677082667:2'),(36004,5126,'_edit_last','2'),(36076,5134,'_wp_attached_file','2023/02/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf'),(36077,5134,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"March-11th2022-Horse-Tack-Small-Animal-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"March-11th2022-Horse-Tack-Small-Animal-Sale-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"March-11th2022-Horse-Tack-Small-Animal-Sale-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"March-11th2022-Horse-Tack-Small-Animal-Sale-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(36086,5137,'_wp_attached_file','2023/02/TuesdayFebruary-28th-Feeder-Cattle-Consignments.pdf'),(36087,5137,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdayFebruary-28th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdayFebruary-28th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdayFebruary-28th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdayFebruary-28th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(36093,1967,'_oembed_e1b05e9b97858124cc05e42bf60178ee','{{unknown}}'),(36097,5142,'_wp_attached_file','2023/02/qr-code-1.png'),(36098,5142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:21:\"2023/02/qr-code-1.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"qr-code-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"qr-code-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:21:\"qr-code-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:21:\"qr-code-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:21:\"qr-code-1-500x382.png\";s:5:\"width\";i:500;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:21:\"qr-code-1-400x500.png\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:21:\"qr-code-1-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(36264,5147,'_thumbnail_id','786'),(36265,5147,'_et_post_bg_color','#ffffff'),(36266,5147,'_et_post_bg_layout','light'),(36267,5147,'_et_pb_show_title','on'),(36268,5147,'_et_pb_post_hide_nav','default'),(36269,5147,'_et_pb_page_layout','et_right_sidebar'),(36270,5147,'_et_pb_side_nav','off'),(36271,5147,'_et_pb_use_builder','on'),(36272,5147,'_et_pb_first_image',''),(36273,5147,'_et_pb_truncate_post',''),(36274,5147,'_et_pb_truncate_post_date',''),(36275,5147,'_et_pb_old_content',''),(36276,5147,'_et_pb_built_for_post_type','page'),(36277,5147,'_et_pb_ab_subjects',''),(36278,5147,'_et_pb_enable_shortcode_tracking',''),(36279,5147,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5147\" /]'),(36280,5147,'_et_pb_custom_css',''),(36281,5147,'_et_pb_gutter_width','3'),(36282,5147,'_et_builder_version','VB|Divi|4.19.4'),(36283,5147,'_et_pb_show_page_creation','off'),(36284,5147,'_wp_old_slug','february-11-2020-market-report'),(36285,5147,'_wp_old_slug','march-17th-2020-market-report'),(36286,5147,'_wp_old_slug','may-1th-2020-market-report-2'),(36287,5147,'_wp_old_slug','july-21st-2020-market-report-2'),(36288,5147,'_wp_old_slug','november-10th-2020-market-report'),(36289,5147,'_wp_old_slug','january-25-2022-market-report-2'),(36290,5147,'_wp_old_slug','january-3-2022-market-report'),(36291,5147,'_global_colors_info','{}'),(36297,5147,'_dp_original','5126'),(36298,5147,'_edit_lock','1677687216:2'),(36299,5147,'_edit_last','2'),(36517,5154,'_wp_attached_file','2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf'),(36518,5154,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"March-11th2022-Horse-Tack-Small-Animal-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"March-11th2022-Horse-Tack-Small-Animal-Sale-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"March-11th2022-Horse-Tack-Small-Animal-Sale-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"March-11th2022-Horse-Tack-Small-Animal-Sale-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(36539,5157,'_wp_attached_file','2023/03/TuesdayMarch-7th-Feeder-Cattle-Consignments.pdf'),(36540,5157,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"TuesdayMarch-7th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"TuesdayMarch-7th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"TuesdayMarch-7th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"TuesdayMarch-7th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(36567,5165,'_wp_attached_file','2023/03/Wilson-Auction-April-1st-Urich.pdf'),(36568,5165,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:38:\"Wilson-Auction-April-1st-Urich-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Wilson-Auction-April-1st-Urich-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Wilson-Auction-April-1st-Urich-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Wilson-Auction-April-1st-Urich-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(36572,5167,'_wp_attached_file','2023/03/Wilson-Auction-April-1st-Urich-1.pdf'),(36573,5167,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:40:\"Wilson-Auction-April-1st-Urich-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Wilson-Auction-April-1st-Urich-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Wilson-Auction-April-1st-Urich-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Wilson-Auction-April-1st-Urich-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(36683,5172,'_thumbnail_id','786'),(36684,5172,'_et_post_bg_color','#ffffff'),(36685,5172,'_et_post_bg_layout','light'),(36686,5172,'_et_pb_show_title','on'),(36687,5172,'_et_pb_post_hide_nav','default'),(36688,5172,'_et_pb_page_layout','et_right_sidebar'),(36689,5172,'_et_pb_side_nav','off'),(36690,5172,'_et_pb_use_builder','on'),(36691,5172,'_et_pb_first_image',''),(36692,5172,'_et_pb_truncate_post',''),(36693,5172,'_et_pb_truncate_post_date',''),(36694,5172,'_et_pb_old_content',''),(36695,5172,'_et_pb_built_for_post_type','page'),(36696,5172,'_et_pb_ab_subjects',''),(36697,5172,'_et_pb_enable_shortcode_tracking',''),(36698,5172,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5172\" /]'),(36699,5172,'_et_pb_custom_css',''),(36700,5172,'_et_pb_gutter_width','3'),(36701,5172,'_et_builder_version','VB|Divi|4.19.4'),(36702,5172,'_et_pb_show_page_creation','off'),(36703,5172,'_wp_old_slug','february-11-2020-market-report'),(36704,5172,'_wp_old_slug','march-17th-2020-market-report'),(36705,5172,'_wp_old_slug','may-1th-2020-market-report-2'),(36706,5172,'_wp_old_slug','july-21st-2020-market-report-2'),(36707,5172,'_wp_old_slug','november-10th-2020-market-report'),(36708,5172,'_wp_old_slug','january-25-2022-market-report-2'),(36709,5172,'_wp_old_slug','january-3-2022-market-report'),(36710,5172,'_global_colors_info','{}'),(36716,5172,'_dp_original','5147'),(36717,5172,'_edit_lock','1678298339:2'),(36718,5172,'_edit_last','2'),(36732,5180,'_wp_attached_file','2023/03/March-18-2023-Cow-Sale.pdf'),(36733,5180,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"March-18-2023-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"March-18-2023-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"March-18-2023-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"March-18-2023-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(36951,5184,'_wp_attached_file','2023/03/March-18-2023-Cow-Sale-1.pdf'),(36952,5184,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"March-18-2023-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"March-18-2023-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"March-18-2023-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"March-18-2023-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(36968,5189,'_wp_attached_file','2023/03/March-18-2023-Cow-Sale-2.pdf'),(36969,5189,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"March-18-2023-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"March-18-2023-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"March-18-2023-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"March-18-2023-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(36970,5190,'_wp_attached_file','2023/03/March-18-2023-Cow-Sale-3.pdf'),(36971,5190,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"March-18-2023-Cow-Sale-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"March-18-2023-Cow-Sale-3-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"March-18-2023-Cow-Sale-3-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"March-18-2023-Cow-Sale-3-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(36980,5193,'_wp_attached_file','2023/03/TuesdayMarch-14th-Feeder-Cattle-Consignments.pdf'),(36981,5193,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"TuesdayMarch-14th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"TuesdayMarch-14th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"TuesdayMarch-14th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"TuesdayMarch-14th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(37019,5198,'_thumbnail_id','786'),(37020,5198,'_et_post_bg_color','#ffffff'),(37021,5198,'_et_post_bg_layout','light'),(37022,5198,'_et_pb_show_title','on'),(37023,5198,'_et_pb_post_hide_nav','default'),(37024,5198,'_et_pb_page_layout','et_right_sidebar'),(37025,5198,'_et_pb_side_nav','off'),(37026,5198,'_et_pb_use_builder','on'),(37027,5198,'_et_pb_first_image',''),(37028,5198,'_et_pb_truncate_post',''),(37029,5198,'_et_pb_truncate_post_date',''),(37030,5198,'_et_pb_old_content',''),(37031,5198,'_et_pb_built_for_post_type','page'),(37032,5198,'_et_pb_ab_subjects',''),(37033,5198,'_et_pb_enable_shortcode_tracking',''),(37034,5198,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5198\" /]'),(37035,5198,'_et_pb_custom_css',''),(37036,5198,'_et_pb_gutter_width','3'),(37037,5198,'_et_builder_version','VB|Divi|4.19.4'),(37038,5198,'_et_pb_show_page_creation','off'),(37039,5198,'_wp_old_slug','february-11-2020-market-report'),(37040,5198,'_wp_old_slug','march-17th-2020-market-report'),(37041,5198,'_wp_old_slug','may-1th-2020-market-report-2'),(37042,5198,'_wp_old_slug','july-21st-2020-market-report-2'),(37043,5198,'_wp_old_slug','november-10th-2020-market-report'),(37044,5198,'_wp_old_slug','january-25-2022-market-report-2'),(37045,5198,'_wp_old_slug','january-3-2022-market-report'),(37046,5198,'_global_colors_info','{}'),(37052,5198,'_dp_original','5172'),(37053,5198,'_edit_lock','1678895831:2'),(37054,5198,'_edit_last','2'),(37062,5203,'_wp_attached_file','2023/03/Jennings-Sale-March-25th-Kingsville-legal.pdf'),(37063,5203,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:49:\"Jennings-Sale-March-25th-Kingsville-legal-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"Jennings-Sale-March-25th-Kingsville-legal-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:58:\"Jennings-Sale-March-25th-Kingsville-legal-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"Jennings-Sale-March-25th-Kingsville-legal-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(37231,5208,'_wp_attached_file','2023/03/TuesdayMarch-21st-Feeder-Cattle-Consignments.pdf'),(37232,5208,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"TuesdayMarch-21st-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"TuesdayMarch-21st-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"TuesdayMarch-21st-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"TuesdayMarch-21st-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(37263,5215,'_thumbnail_id','786'),(37264,5215,'_et_post_bg_color','#ffffff'),(37265,5215,'_et_post_bg_layout','light'),(37266,5215,'_et_pb_show_title','on'),(37267,5215,'_et_pb_post_hide_nav','default'),(37268,5215,'_et_pb_page_layout','et_right_sidebar'),(37269,5215,'_et_pb_side_nav','off'),(37270,5215,'_et_pb_use_builder','on'),(37271,5215,'_et_pb_first_image',''),(37272,5215,'_et_pb_truncate_post',''),(37273,5215,'_et_pb_truncate_post_date',''),(37274,5215,'_et_pb_old_content',''),(37275,5215,'_et_pb_built_for_post_type','page'),(37276,5215,'_et_pb_ab_subjects',''),(37277,5215,'_et_pb_enable_shortcode_tracking',''),(37278,5215,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5215\" /]'),(37279,5215,'_et_pb_custom_css',''),(37280,5215,'_et_pb_gutter_width','3'),(37281,5215,'_et_builder_version','VB|Divi|4.19.4'),(37282,5215,'_et_pb_show_page_creation','off'),(37283,5215,'_wp_old_slug','february-11-2020-market-report'),(37284,5215,'_wp_old_slug','march-17th-2020-market-report'),(37285,5215,'_wp_old_slug','may-1th-2020-market-report-2'),(37286,5215,'_wp_old_slug','july-21st-2020-market-report-2'),(37287,5215,'_wp_old_slug','november-10th-2020-market-report'),(37288,5215,'_wp_old_slug','january-25-2022-market-report-2'),(37289,5215,'_wp_old_slug','january-3-2022-market-report'),(37290,5215,'_global_colors_info','{}'),(37296,5215,'_dp_original','5198'),(37297,5215,'_edit_lock','1679504426:2'),(37298,5215,'_edit_last','2'),(37350,5229,'_wp_attached_file','2023/03/TuesdayMarch-28th-Feeder-Cattle-Consignments.pdf'),(37351,5229,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"TuesdayMarch-28th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"TuesdayMarch-28th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"TuesdayMarch-28th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"TuesdayMarch-28th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(37374,5235,'_wp_attached_file','2023/03/image000000-1.jpg'),(37375,5235,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1023;s:6:\"height\";i:767;s:4:\"file\";s:25:\"2023/03/image000000-1.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"image000000-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"image000000-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"image000000-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"image000000-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:26:\"image000000-1-1023x675.jpg\";s:5:\"width\";i:1023;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"image000000-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"image000000-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"image000000-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:25:\"image000000-1-980x735.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:735;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:25:\"image000000-1-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(37404,5240,'_thumbnail_id','786'),(37405,5240,'_et_post_bg_color','#ffffff'),(37406,5240,'_et_post_bg_layout','light'),(37407,5240,'_et_pb_show_title','on'),(37408,5240,'_et_pb_post_hide_nav','default'),(37409,5240,'_et_pb_page_layout','et_right_sidebar'),(37410,5240,'_et_pb_side_nav','off'),(37411,5240,'_et_pb_use_builder','on'),(37412,5240,'_et_pb_first_image',''),(37413,5240,'_et_pb_truncate_post',''),(37414,5240,'_et_pb_truncate_post_date',''),(37415,5240,'_et_pb_old_content',''),(37416,5240,'_et_pb_built_for_post_type','page'),(37417,5240,'_et_pb_ab_subjects',''),(37418,5240,'_et_pb_enable_shortcode_tracking',''),(37419,5240,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5240\" /]'),(37420,5240,'_et_pb_custom_css',''),(37421,5240,'_et_pb_gutter_width','3'),(37422,5240,'_et_builder_version','VB|Divi|4.19.4'),(37423,5240,'_et_pb_show_page_creation','off'),(37424,5240,'_wp_old_slug','february-11-2020-market-report'),(37425,5240,'_wp_old_slug','march-17th-2020-market-report'),(37426,5240,'_wp_old_slug','may-1th-2020-market-report-2'),(37427,5240,'_wp_old_slug','july-21st-2020-market-report-2'),(37428,5240,'_wp_old_slug','november-10th-2020-market-report'),(37429,5240,'_wp_old_slug','january-25-2022-market-report-2'),(37430,5240,'_wp_old_slug','january-3-2022-market-report'),(37431,5240,'_global_colors_info','{}'),(37437,5240,'_dp_original','5215'),(37438,5240,'_edit_lock','1680102819:2'),(37439,5240,'_edit_last','2'),(37448,5246,'_wp_attached_file','2023/03/April-15-2023-Cow-Sale.pdf'),(37449,5246,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"April-15-2023-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"April-15-2023-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"April-15-2023-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"April-15-2023-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(37462,5250,'_wp_attached_file','2023/03/April-15-2023-Cow-Sale-1.pdf'),(37463,5250,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"April-15-2023-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"April-15-2023-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"April-15-2023-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"April-15-2023-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(37743,5255,'_wp_attached_file','2023/04/April-15-2023-Cow-Sale.pdf'),(37744,5255,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"April-15-2023-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"April-15-2023-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"April-15-2023-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"April-15-2023-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(37749,5257,'_wp_attached_file','2023/04/April-15-2023-Cow-Sale-1.pdf'),(37750,5257,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"April-15-2023-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"April-15-2023-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"April-15-2023-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"April-15-2023-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(37765,5259,'_wp_attached_file','2023/04/TuesdayApril-4th-Feeder-Cattle-Consignments.pdf'),(37766,5259,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"TuesdayApril-4th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"TuesdayApril-4th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"TuesdayApril-4th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"TuesdayApril-4th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(37779,5263,'_wp_attached_file','2023/04/April-15-2023-Cow-Sale-2.pdf'),(37780,5263,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"April-15-2023-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"April-15-2023-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"April-15-2023-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"April-15-2023-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(37872,5270,'_thumbnail_id','786'),(37873,5270,'_et_post_bg_color','#ffffff'),(37874,5270,'_et_post_bg_layout','light'),(37875,5270,'_et_pb_show_title','on'),(37876,5270,'_et_pb_post_hide_nav','default'),(37877,5270,'_et_pb_page_layout','et_right_sidebar'),(37878,5270,'_et_pb_side_nav','off'),(37879,5270,'_et_pb_use_builder','on'),(37880,5270,'_et_pb_first_image',''),(37881,5270,'_et_pb_truncate_post',''),(37882,5270,'_et_pb_truncate_post_date',''),(37883,5270,'_et_pb_old_content',''),(37884,5270,'_et_pb_built_for_post_type','page'),(37885,5270,'_et_pb_ab_subjects',''),(37886,5270,'_et_pb_enable_shortcode_tracking',''),(37887,5270,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5270\" /]'),(37888,5270,'_et_pb_custom_css',''),(37889,5270,'_et_pb_gutter_width','3'),(37890,5270,'_et_builder_version','VB|Divi|4.19.4'),(37891,5270,'_et_pb_show_page_creation','off'),(37892,5270,'_wp_old_slug','february-11-2020-market-report'),(37893,5270,'_wp_old_slug','march-17th-2020-market-report'),(37894,5270,'_wp_old_slug','may-1th-2020-market-report-2'),(37895,5270,'_wp_old_slug','july-21st-2020-market-report-2'),(37896,5270,'_wp_old_slug','november-10th-2020-market-report'),(37897,5270,'_wp_old_slug','january-25-2022-market-report-2'),(37898,5270,'_wp_old_slug','january-3-2022-market-report'),(37899,5270,'_global_colors_info','{}'),(37905,5270,'_dp_original','5240'),(37906,5270,'_edit_lock','1680716043:2'),(37907,5270,'_edit_last','2'),(37927,5280,'_wp_attached_file','2023/04/April-15-2023-Cow-Sale-3.pdf'),(37928,5280,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"April-15-2023-Cow-Sale-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"April-15-2023-Cow-Sale-3-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"April-15-2023-Cow-Sale-3-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"April-15-2023-Cow-Sale-3-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(38051,5283,'_wp_attached_file','2023/04/tabloid-April-cowsale-2023.pdf'),(38052,5283,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:34:\"tabloid-April-cowsale-2023-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"tabloid-April-cowsale-2023-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"tabloid-April-cowsale-2023-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"tabloid-April-cowsale-2023-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(38077,5291,'_wp_attached_file','2023/04/tabloid-April-cowsale-2023-1.pdf'),(38078,5291,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:36:\"tabloid-April-cowsale-2023-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"tabloid-April-cowsale-2023-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"tabloid-April-cowsale-2023-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"tabloid-April-cowsale-2023-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(38090,5294,'_wp_attached_file','2023/04/TuesdayApril-11th-Feeder-Cattle-Consignments.pdf'),(38091,5294,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"TuesdayApril-11th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"TuesdayApril-11th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"TuesdayApril-11th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"TuesdayApril-11th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(38119,5302,'_thumbnail_id','786'),(38120,5302,'_et_post_bg_color','#ffffff'),(38121,5302,'_et_post_bg_layout','light'),(38122,5302,'_et_pb_show_title','on'),(38123,5302,'_et_pb_post_hide_nav','default'),(38124,5302,'_et_pb_page_layout','et_right_sidebar'),(38125,5302,'_et_pb_side_nav','off'),(38126,5302,'_et_pb_use_builder','on'),(38127,5302,'_et_pb_first_image',''),(38128,5302,'_et_pb_truncate_post',''),(38129,5302,'_et_pb_truncate_post_date',''),(38130,5302,'_et_pb_old_content',''),(38131,5302,'_et_pb_built_for_post_type','page'),(38132,5302,'_et_pb_ab_subjects',''),(38133,5302,'_et_pb_enable_shortcode_tracking',''),(38134,5302,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5302\" /]'),(38135,5302,'_et_pb_custom_css',''),(38136,5302,'_et_pb_gutter_width','3'),(38137,5302,'_et_builder_version','VB|Divi|4.19.4'),(38138,5302,'_et_pb_show_page_creation','off'),(38139,5302,'_wp_old_slug','february-11-2020-market-report'),(38140,5302,'_wp_old_slug','march-17th-2020-market-report'),(38141,5302,'_wp_old_slug','may-1th-2020-market-report-2'),(38142,5302,'_wp_old_slug','july-21st-2020-market-report-2'),(38143,5302,'_wp_old_slug','november-10th-2020-market-report'),(38144,5302,'_wp_old_slug','january-25-2022-market-report-2'),(38145,5302,'_wp_old_slug','january-3-2022-market-report'),(38146,5302,'_global_colors_info','{}'),(38152,5302,'_dp_original','5270'),(38153,5302,'_edit_lock','1681311019:2'),(38154,5302,'_edit_last','2'),(38161,5308,'_wp_attached_file','2023/04/tabloid-April-cowsale-2023-2.pdf'),(38162,5308,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:36:\"tabloid-April-cowsale-2023-2-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"tabloid-April-cowsale-2023-2-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"tabloid-April-cowsale-2023-2-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"tabloid-April-cowsale-2023-2-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(38173,5311,'_wp_attached_file','2023/04/Francy-Auction-May-13th-Pleasant-Hill.pdf'),(38174,5311,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:45:\"Francy-Auction-May-13th-Pleasant-Hill-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"Francy-Auction-May-13th-Pleasant-Hill-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:54:\"Francy-Auction-May-13th-Pleasant-Hill-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"Francy-Auction-May-13th-Pleasant-Hill-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(38313,5318,'_wp_attached_file','2023/04/TuesdayApril-18th-Feeder-Cattle-Consignments.pdf'),(38314,5318,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"TuesdayApril-18th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"TuesdayApril-18th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"TuesdayApril-18th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"TuesdayApril-18th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(38336,5322,'_thumbnail_id','786'),(38337,5322,'_et_post_bg_color','#ffffff'),(38338,5322,'_et_post_bg_layout','light'),(38339,5322,'_et_pb_show_title','on'),(38340,5322,'_et_pb_post_hide_nav','default'),(38341,5322,'_et_pb_page_layout','et_right_sidebar'),(38342,5322,'_et_pb_side_nav','off'),(38343,5322,'_et_pb_use_builder','on'),(38344,5322,'_et_pb_first_image',''),(38345,5322,'_et_pb_truncate_post',''),(38346,5322,'_et_pb_truncate_post_date',''),(38347,5322,'_et_pb_old_content',''),(38348,5322,'_et_pb_built_for_post_type','page'),(38349,5322,'_et_pb_ab_subjects',''),(38350,5322,'_et_pb_enable_shortcode_tracking',''),(38351,5322,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5322\" /]'),(38352,5322,'_et_pb_custom_css',''),(38353,5322,'_et_pb_gutter_width','3'),(38354,5322,'_et_builder_version','VB|Divi|4.19.4'),(38355,5322,'_et_pb_show_page_creation','off'),(38356,5322,'_wp_old_slug','february-11-2020-market-report'),(38357,5322,'_wp_old_slug','march-17th-2020-market-report'),(38358,5322,'_wp_old_slug','may-1th-2020-market-report-2'),(38359,5322,'_wp_old_slug','july-21st-2020-market-report-2'),(38360,5322,'_wp_old_slug','november-10th-2020-market-report'),(38361,5322,'_wp_old_slug','january-25-2022-market-report-2'),(38362,5322,'_wp_old_slug','january-3-2022-market-report'),(38363,5322,'_global_colors_info','{}'),(38369,5322,'_dp_original','5302'),(38370,5322,'_edit_lock','1681927331:2'),(38371,5322,'_edit_last','2'),(38401,5327,'_wp_attached_file','2023/04/2023-fall-calving-catalog.pdf'),(38402,5327,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"2023-fall-calving-catalog-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"2023-fall-calving-catalog-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"2023-fall-calving-catalog-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"2023-fall-calving-catalog-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(38411,5330,'_wp_attached_file','2023/04/TuesdayApril-25th-Feeder-Cattle-Consignments.pdf'),(38412,5330,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"TuesdayApril-25th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"TuesdayApril-25th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"TuesdayApril-25th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"TuesdayApril-25th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(38506,5335,'_thumbnail_id','786'),(38507,5335,'_et_post_bg_color','#ffffff'),(38508,5335,'_et_post_bg_layout','light'),(38509,5335,'_et_pb_show_title','on'),(38510,5335,'_et_pb_post_hide_nav','default'),(38511,5335,'_et_pb_page_layout','et_right_sidebar'),(38512,5335,'_et_pb_side_nav','off'),(38513,5335,'_et_pb_use_builder','on'),(38514,5335,'_et_pb_first_image',''),(38515,5335,'_et_pb_truncate_post',''),(38516,5335,'_et_pb_truncate_post_date',''),(38517,5335,'_et_pb_old_content',''),(38518,5335,'_et_pb_built_for_post_type','page'),(38519,5335,'_et_pb_ab_subjects',''),(38520,5335,'_et_pb_enable_shortcode_tracking',''),(38521,5335,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5335\" /]'),(38522,5335,'_et_pb_custom_css',''),(38523,5335,'_et_pb_gutter_width','3'),(38524,5335,'_et_builder_version','VB|Divi|4.19.4'),(38525,5335,'_et_pb_show_page_creation','off'),(38526,5335,'_wp_old_slug','february-11-2020-market-report'),(38527,5335,'_wp_old_slug','march-17th-2020-market-report'),(38528,5335,'_wp_old_slug','may-1th-2020-market-report-2'),(38529,5335,'_wp_old_slug','july-21st-2020-market-report-2'),(38530,5335,'_wp_old_slug','november-10th-2020-market-report'),(38531,5335,'_wp_old_slug','january-25-2022-market-report-2'),(38532,5335,'_wp_old_slug','january-3-2022-market-report'),(38533,5335,'_global_colors_info','{}'),(38539,5335,'_dp_original','5322'),(38540,5335,'_edit_lock','1682528510:2'),(38541,5335,'_edit_last','2'),(38657,5340,'_wp_attached_file','2023/05/TuesdayMay-2nd-Feeder-Cattle-Consignments.pdf'),(38658,5340,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:49:\"TuesdayMay-2nd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"TuesdayMay-2nd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:58:\"TuesdayMay-2nd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"TuesdayMay-2nd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(38686,5343,'_thumbnail_id','786'),(38687,5343,'_et_post_bg_color','#ffffff'),(38688,5343,'_et_post_bg_layout','light'),(38689,5343,'_et_pb_show_title','on'),(38690,5343,'_et_pb_post_hide_nav','default'),(38691,5343,'_et_pb_page_layout','et_right_sidebar'),(38692,5343,'_et_pb_side_nav','off'),(38693,5343,'_et_pb_use_builder','on'),(38694,5343,'_et_pb_first_image',''),(38695,5343,'_et_pb_truncate_post',''),(38696,5343,'_et_pb_truncate_post_date',''),(38697,5343,'_et_pb_old_content',''),(38698,5343,'_et_pb_built_for_post_type','page'),(38699,5343,'_et_pb_ab_subjects',''),(38700,5343,'_et_pb_enable_shortcode_tracking',''),(38701,5343,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5343\" /]'),(38702,5343,'_et_pb_custom_css',''),(38703,5343,'_et_pb_gutter_width','3'),(38704,5343,'_et_builder_version','VB|Divi|4.19.4'),(38705,5343,'_et_pb_show_page_creation','off'),(38706,5343,'_wp_old_slug','february-11-2020-market-report'),(38707,5343,'_wp_old_slug','march-17th-2020-market-report'),(38708,5343,'_wp_old_slug','may-1th-2020-market-report-2'),(38709,5343,'_wp_old_slug','july-21st-2020-market-report-2'),(38710,5343,'_wp_old_slug','november-10th-2020-market-report'),(38711,5343,'_wp_old_slug','january-25-2022-market-report-2'),(38712,5343,'_wp_old_slug','january-3-2022-market-report'),(38713,5343,'_global_colors_info','{}'),(38719,5343,'_dp_original','5335'),(38720,5343,'_edit_lock','1683129028:2'),(38721,5343,'_edit_last','2'),(38823,5353,'_wp_attached_file','2023/05/TuesdayMay-9th-Feeder-Cattle-Consignments.pdf'),(38824,5353,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:49:\"TuesdayMay-9th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"TuesdayMay-9th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:58:\"TuesdayMay-9th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"TuesdayMay-9th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(38848,5359,'_thumbnail_id','786'),(38849,5359,'_et_post_bg_color','#ffffff'),(38850,5359,'_et_post_bg_layout','light'),(38851,5359,'_et_pb_show_title','on'),(38852,5359,'_et_pb_post_hide_nav','default'),(38853,5359,'_et_pb_page_layout','et_right_sidebar'),(38854,5359,'_et_pb_side_nav','off'),(38855,5359,'_et_pb_use_builder','on'),(38856,5359,'_et_pb_first_image',''),(38857,5359,'_et_pb_truncate_post',''),(38858,5359,'_et_pb_truncate_post_date',''),(38859,5359,'_et_pb_old_content',''),(38860,5359,'_et_pb_built_for_post_type','page'),(38861,5359,'_et_pb_ab_subjects',''),(38862,5359,'_et_pb_enable_shortcode_tracking',''),(38863,5359,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5359\" /]'),(38864,5359,'_et_pb_custom_css',''),(38865,5359,'_et_pb_gutter_width','3'),(38866,5359,'_et_builder_version','VB|Divi|4.19.4'),(38867,5359,'_et_pb_show_page_creation','off'),(38868,5359,'_wp_old_slug','february-11-2020-market-report'),(38869,5359,'_wp_old_slug','march-17th-2020-market-report'),(38870,5359,'_wp_old_slug','may-1th-2020-market-report-2'),(38871,5359,'_wp_old_slug','july-21st-2020-market-report-2'),(38872,5359,'_wp_old_slug','november-10th-2020-market-report'),(38873,5359,'_wp_old_slug','january-25-2022-market-report-2'),(38874,5359,'_wp_old_slug','january-3-2022-market-report'),(38875,5359,'_global_colors_info','{}'),(38881,5359,'_dp_original','5343'),(38882,5359,'_edit_lock','1683737845:2'),(38883,5359,'_edit_last','2'),(38892,5365,'_wp_attached_file','2023/05/May-20-2023-Cow-Sale.pdf'),(38893,5365,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:28:\"May-20-2023-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"May-20-2023-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"May-20-2023-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"May-20-2023-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(38902,5368,'_wp_attached_file','2023/05/2023-Memorial-Day-Sale-Flyer.pdf'),(38903,5368,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:36:\"2023-Memorial-Day-Sale-Flyer-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"2023-Memorial-Day-Sale-Flyer-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"2023-Memorial-Day-Sale-Flyer-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"2023-Memorial-Day-Sale-Flyer-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(38947,5377,'_wp_attached_file','2023/05/Auction-May-27th-Kingsville.pdf'),(38948,5377,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"Auction-May-27th-Kingsville-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Auction-May-27th-Kingsville-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Auction-May-27th-Kingsville-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Auction-May-27th-Kingsville-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(38956,5380,'_wp_attached_file','2023/05/May-20-2023-Cow-Sale-1.pdf'),(38957,5380,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"May-20-2023-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"May-20-2023-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"May-20-2023-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"May-20-2023-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(38985,5383,'_wp_attached_file','2023/05/May-20-2023-Cow-Sale-2.pdf'),(38986,5383,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"May-20-2023-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"May-20-2023-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"May-20-2023-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"May-20-2023-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39002,5388,'_wp_attached_file','2023/05/TuesdayMay-16th-Feeder-Cattle-Consignments.pdf'),(39003,5388,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"TuesdayMay-16th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"TuesdayMay-16th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"TuesdayMay-16th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"TuesdayMay-16th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39008,5390,'_wp_attached_file','2023/05/May-20-2023-Cow-Sale-3.pdf'),(39009,5390,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"May-20-2023-Cow-Sale-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"May-20-2023-Cow-Sale-3-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"May-20-2023-Cow-Sale-3-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"May-20-2023-Cow-Sale-3-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39046,5400,'_wp_attached_file','2023/05/May-20-2023-Cow-Sale-4.pdf'),(39047,5400,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"May-20-2023-Cow-Sale-4-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"May-20-2023-Cow-Sale-4-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"May-20-2023-Cow-Sale-4-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"May-20-2023-Cow-Sale-4-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39056,5403,'_thumbnail_id','786'),(39057,5403,'_et_post_bg_color','#ffffff'),(39058,5403,'_et_post_bg_layout','light'),(39059,5403,'_et_pb_show_title','on'),(39060,5403,'_et_pb_post_hide_nav','default'),(39061,5403,'_et_pb_page_layout','et_right_sidebar'),(39062,5403,'_et_pb_side_nav','off'),(39063,5403,'_et_pb_use_builder','on'),(39064,5403,'_et_pb_first_image',''),(39065,5403,'_et_pb_truncate_post',''),(39066,5403,'_et_pb_truncate_post_date',''),(39067,5403,'_et_pb_old_content',''),(39068,5403,'_et_pb_built_for_post_type','page'),(39069,5403,'_et_pb_ab_subjects',''),(39070,5403,'_et_pb_enable_shortcode_tracking',''),(39071,5403,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5403\" /]'),(39072,5403,'_et_pb_custom_css',''),(39073,5403,'_et_pb_gutter_width','3'),(39074,5403,'_et_builder_version','VB|Divi|4.19.4'),(39075,5403,'_et_pb_show_page_creation','off'),(39076,5403,'_wp_old_slug','february-11-2020-market-report'),(39077,5403,'_wp_old_slug','march-17th-2020-market-report'),(39078,5403,'_wp_old_slug','may-1th-2020-market-report-2'),(39079,5403,'_wp_old_slug','july-21st-2020-market-report-2'),(39080,5403,'_wp_old_slug','november-10th-2020-market-report'),(39081,5403,'_wp_old_slug','january-25-2022-market-report-2'),(39082,5403,'_wp_old_slug','january-3-2022-market-report'),(39083,5403,'_global_colors_info','{}'),(39089,5403,'_dp_original','5359'),(39090,5403,'_edit_lock','1684343220:2'),(39091,5403,'_edit_last','2'),(39097,5408,'_wp_attached_file','2023/05/Memorial-Day-2023-Detailed-Consignment-List.pdf'),(39098,5408,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"Memorial-Day-2023-Detailed-Consignment-List-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Memorial-Day-2023-Detailed-Consignment-List-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2023-Detailed-Consignment-List-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"Memorial-Day-2023-Detailed-Consignment-List-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39118,5410,'_wp_attached_file','2023/05/Memorial-Day-2023-Detailed-Consignment-List-1.pdf'),(39119,5410,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2023-Detailed-Consignment-List-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2023-Detailed-Consignment-List-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2023-Detailed-Consignment-List-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2023-Detailed-Consignment-List-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39123,5412,'_wp_attached_file','2023/05/Memorial-Day-2023-Detailed-Consignment-List-2.pdf'),(39124,5412,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2023-Detailed-Consignment-List-2-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2023-Detailed-Consignment-List-2-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2023-Detailed-Consignment-List-2-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2023-Detailed-Consignment-List-2-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39149,5417,'_wp_attached_file','2023/05/TuesdayMay-23rd-Feeder-Cattle-Consignments.pdf'),(39150,5417,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"TuesdayMay-23rd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"TuesdayMay-23rd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"TuesdayMay-23rd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"TuesdayMay-23rd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39155,5419,'_wp_attached_file','2023/05/Memorial-Day-2023-Detailed-Consignment-List-3.pdf'),(39156,5419,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2023-Detailed-Consignment-List-3-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2023-Detailed-Consignment-List-3-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2023-Detailed-Consignment-List-3-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2023-Detailed-Consignment-List-3-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39160,5421,'_wp_attached_file','2023/05/Memorial-Day-2023-Detailed-Consignment-List-4.pdf'),(39161,5421,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2023-Detailed-Consignment-List-4-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2023-Detailed-Consignment-List-4-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2023-Detailed-Consignment-List-4-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2023-Detailed-Consignment-List-4-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39194,5426,'_thumbnail_id','786'),(39195,5426,'_et_post_bg_color','#ffffff'),(39196,5426,'_et_post_bg_layout','light'),(39197,5426,'_et_pb_show_title','on'),(39198,5426,'_et_pb_post_hide_nav','default'),(39199,5426,'_et_pb_page_layout','et_right_sidebar'),(39200,5426,'_et_pb_side_nav','off'),(39201,5426,'_et_pb_use_builder','on'),(39202,5426,'_et_pb_first_image',''),(39203,5426,'_et_pb_truncate_post',''),(39204,5426,'_et_pb_truncate_post_date',''),(39205,5426,'_et_pb_old_content',''),(39206,5426,'_et_pb_built_for_post_type','page'),(39207,5426,'_et_pb_ab_subjects',''),(39208,5426,'_et_pb_enable_shortcode_tracking',''),(39209,5426,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5426\" /]'),(39210,5426,'_et_pb_custom_css',''),(39211,5426,'_et_pb_gutter_width','3'),(39212,5426,'_et_builder_version','VB|Divi|4.19.4'),(39213,5426,'_et_pb_show_page_creation','off'),(39214,5426,'_wp_old_slug','february-11-2020-market-report'),(39215,5426,'_wp_old_slug','march-17th-2020-market-report'),(39216,5426,'_wp_old_slug','may-1th-2020-market-report-2'),(39217,5426,'_wp_old_slug','july-21st-2020-market-report-2'),(39218,5426,'_wp_old_slug','november-10th-2020-market-report'),(39219,5426,'_wp_old_slug','january-25-2022-market-report-2'),(39220,5426,'_wp_old_slug','january-3-2022-market-report'),(39221,5426,'_global_colors_info','{}'),(39228,5426,'_dp_original','5403'),(39229,5426,'_edit_lock','1684949878:2'),(39230,5426,'_edit_last','2'),(39235,5431,'_wp_attached_file','2023/05/Memorial-Day-2023-Detailed-Consignment-List-5.pdf'),(39236,5431,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2023-Detailed-Consignment-List-5-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2023-Detailed-Consignment-List-5-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2023-Detailed-Consignment-List-5-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2023-Detailed-Consignment-List-5-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39240,5433,'_wp_attached_file','2023/05/Memorial-Day-2023-Detailed-Consignment-List-6.pdf'),(39241,5433,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2023-Detailed-Consignment-List-6-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2023-Detailed-Consignment-List-6-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2023-Detailed-Consignment-List-6-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2023-Detailed-Consignment-List-6-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39245,5435,'_wp_attached_file','2023/05/Memorial-Day-2023-Detailed-Consignment-List-7.pdf'),(39246,5435,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2023-Detailed-Consignment-List-7-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2023-Detailed-Consignment-List-7-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2023-Detailed-Consignment-List-7-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2023-Detailed-Consignment-List-7-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39264,5439,'_wp_attached_file','2023/05/Memorial-Day-2023-Detailed-Consignment-List-8.pdf'),(39265,5439,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2023-Detailed-Consignment-List-8-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2023-Detailed-Consignment-List-8-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2023-Detailed-Consignment-List-8-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2023-Detailed-Consignment-List-8-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39269,5441,'_wp_attached_file','2023/05/Memorial-Day-2023-Detailed-Consignment-List-9.pdf'),(39270,5441,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Memorial-Day-2023-Detailed-Consignment-List-9-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Memorial-Day-2023-Detailed-Consignment-List-9-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Memorial-Day-2023-Detailed-Consignment-List-9-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Memorial-Day-2023-Detailed-Consignment-List-9-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39292,5446,'_wp_attached_file','2023/05/TuesdayMay-30th-Feeder-Cattle-Consignments.pdf'),(39293,5446,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"TuesdayMay-30th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"TuesdayMay-30th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"TuesdayMay-30th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"TuesdayMay-30th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39416,5451,'_thumbnail_id','786'),(39417,5451,'_et_post_bg_color','#ffffff'),(39418,5451,'_et_post_bg_layout','light'),(39419,5451,'_et_pb_show_title','on'),(39420,5451,'_et_pb_post_hide_nav','default'),(39421,5451,'_et_pb_page_layout','et_right_sidebar'),(39422,5451,'_et_pb_side_nav','off'),(39423,5451,'_et_pb_use_builder','on'),(39424,5451,'_et_pb_first_image',''),(39425,5451,'_et_pb_truncate_post',''),(39426,5451,'_et_pb_truncate_post_date',''),(39427,5451,'_et_pb_old_content',''),(39428,5451,'_et_pb_built_for_post_type','page'),(39429,5451,'_et_pb_ab_subjects',''),(39430,5451,'_et_pb_enable_shortcode_tracking',''),(39431,5451,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5451\" /]'),(39432,5451,'_et_pb_custom_css',''),(39433,5451,'_et_pb_gutter_width','3'),(39434,5451,'_et_builder_version','VB|Divi|4.19.4'),(39435,5451,'_et_pb_show_page_creation','off'),(39436,5451,'_wp_old_slug','february-11-2020-market-report'),(39437,5451,'_wp_old_slug','march-17th-2020-market-report'),(39438,5451,'_wp_old_slug','may-1th-2020-market-report-2'),(39439,5451,'_wp_old_slug','july-21st-2020-market-report-2'),(39440,5451,'_wp_old_slug','november-10th-2020-market-report'),(39441,5451,'_wp_old_slug','january-25-2022-market-report-2'),(39442,5451,'_wp_old_slug','january-3-2022-market-report'),(39443,5451,'_global_colors_info','{}'),(39448,5451,'_dp_original','5426'),(39449,5451,'_edit_lock','1685548367:2'),(39450,5451,'_edit_last','2'),(39457,5457,'_wp_attached_file','2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale.pdf'),(39458,5457,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"June-10th2022-Horse-Tack-Small-Animal-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"June-10th2022-Horse-Tack-Small-Animal-Sale-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"June-10th2022-Horse-Tack-Small-Animal-Sale-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"June-10th2022-Horse-Tack-Small-Animal-Sale-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39459,5458,'_wp_attached_file','2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf'),(39460,5458,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"June-10th2022-Horse-Tack-Small-Animal-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"June-10th2022-Horse-Tack-Small-Animal-Sale-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"June-10th2022-Horse-Tack-Small-Animal-Sale-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"June-10th2022-Horse-Tack-Small-Animal-Sale-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39921,5463,'_wp_attached_file','2023/06/TuesdayJune-6th-Feeder-Cattle-Consignments.pdf'),(39922,5463,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:50:\"TuesdayJune-6th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"TuesdayJune-6th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"TuesdayJune-6th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"TuesdayJune-6th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39945,5468,'_wp_attached_file','2023/06/MarketReportfornewspaper-June-62023.pdf'),(39946,5468,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:43:\"MarketReportfornewspaper-June-62023-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"MarketReportfornewspaper-June-62023-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"MarketReportfornewspaper-June-62023-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"MarketReportfornewspaper-June-62023-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39947,5469,'_wp_attached_file','2023/06/June-162023-Cow-Sale.pdf'),(39948,5469,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:28:\"June-162023-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"June-162023-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"June-162023-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"June-162023-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(39957,5472,'_thumbnail_id','786'),(39958,5472,'_et_post_bg_color','#ffffff'),(39959,5472,'_et_post_bg_layout','light'),(39960,5472,'_et_pb_show_title','on'),(39961,5472,'_et_pb_post_hide_nav','default'),(39962,5472,'_et_pb_page_layout','et_right_sidebar'),(39963,5472,'_et_pb_side_nav','off'),(39964,5472,'_et_pb_use_builder','on'),(39965,5472,'_et_pb_first_image',''),(39966,5472,'_et_pb_truncate_post',''),(39967,5472,'_et_pb_truncate_post_date',''),(39968,5472,'_et_pb_old_content',''),(39969,5472,'_et_pb_built_for_post_type','page'),(39970,5472,'_et_pb_ab_subjects',''),(39971,5472,'_et_pb_enable_shortcode_tracking',''),(39972,5472,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5472\" /]'),(39973,5472,'_et_pb_custom_css',''),(39974,5472,'_et_pb_gutter_width','3'),(39975,5472,'_et_builder_version','VB|Divi|4.19.4'),(39976,5472,'_et_pb_show_page_creation','off'),(39977,5472,'_wp_old_slug','february-11-2020-market-report'),(39978,5472,'_wp_old_slug','march-17th-2020-market-report'),(39979,5472,'_wp_old_slug','may-1th-2020-market-report-2'),(39980,5472,'_wp_old_slug','july-21st-2020-market-report-2'),(39981,5472,'_wp_old_slug','november-10th-2020-market-report'),(39982,5472,'_wp_old_slug','january-25-2022-market-report-2'),(39983,5472,'_wp_old_slug','january-3-2022-market-report'),(39984,5472,'_global_colors_info','{}'),(39990,5472,'_dp_original','5451'),(39991,5472,'_edit_lock','1686159830:2'),(39992,5472,'_edit_last','2'),(39996,5477,'_wp_attached_file','2023/06/June-162023-Cow-Sale-1.pdf'),(39997,5477,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"June-162023-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"June-162023-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"June-162023-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"June-162023-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40017,5483,'_wp_page_template','default'),(40018,5483,'_et_pb_post_hide_nav','default'),(40019,5483,'_et_pb_page_layout','et_right_sidebar'),(40020,5483,'_et_pb_side_nav','off'),(40021,5483,'fusion_builder_status',''),(40022,5483,'_et_pb_use_builder','on'),(40023,5483,'_et_pb_first_image',''),(40024,5483,'_et_pb_truncate_post',''),(40025,5483,'_et_pb_truncate_post_date',''),(40026,5483,'_et_pb_old_content',''),(40027,5483,'_et_pb_built_for_post_type','page'),(40028,5483,'_et_pb_ab_subjects',''),(40029,5483,'_et_pb_enable_shortcode_tracking',''),(40030,5483,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5483\" /]'),(40031,5483,'_et_pb_custom_css',''),(40032,5483,'_et_pb_gutter_width','3'),(40033,5483,'_et_builder_version','VB|Divi|4.21.0'),(40034,5483,'_et_pb_show_page_creation','off'),(40036,5483,'_thumbnail_id','0'),(40037,5483,'_global_colors_info','{}'),(40038,5483,'_et_builder_dynamic_assets_loading_attr_threshold','7'),(40039,5483,'_oembed_e1b05e9b97858124cc05e42bf60178ee','{{unknown}}'),(40044,5483,'_dp_original','1967'),(40045,5483,'_edit_lock','1686326416:2'),(40050,639,'_thumbnail_id','0'),(40055,5487,'_wp_attached_file','2023/06/TuesdayJune-12th-Feeder-Cattle-Consignments.pdf'),(40056,5487,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"TuesdayJune-12th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"TuesdayJune-12th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"TuesdayJune-12th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"TuesdayJune-12th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40061,5489,'_wp_attached_file','2023/06/TuesdayJune-12th-Feeder-Cattle-Consignments-1.pdf'),(40062,5489,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"TuesdayJune-12th-Feeder-Cattle-Consignments-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"TuesdayJune-12th-Feeder-Cattle-Consignments-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"TuesdayJune-12th-Feeder-Cattle-Consignments-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"TuesdayJune-12th-Feeder-Cattle-Consignments-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40063,5490,'_wp_attached_file','2023/06/June-162023-Cow-Sale-2.pdf'),(40064,5490,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"June-162023-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"June-162023-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"June-162023-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"June-162023-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40085,5497,'_thumbnail_id','786'),(40086,5497,'_et_post_bg_color','#ffffff'),(40087,5497,'_et_post_bg_layout','light'),(40088,5497,'_et_pb_show_title','on'),(40089,5497,'_et_pb_post_hide_nav','default'),(40090,5497,'_et_pb_page_layout','et_right_sidebar'),(40091,5497,'_et_pb_side_nav','off'),(40092,5497,'_et_pb_use_builder','on'),(40093,5497,'_et_pb_first_image',''),(40094,5497,'_et_pb_truncate_post',''),(40095,5497,'_et_pb_truncate_post_date',''),(40096,5497,'_et_pb_old_content',''),(40097,5497,'_et_pb_built_for_post_type','page'),(40098,5497,'_et_pb_ab_subjects',''),(40099,5497,'_et_pb_enable_shortcode_tracking',''),(40100,5497,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5497\" /]'),(40101,5497,'_et_pb_custom_css',''),(40102,5497,'_et_pb_gutter_width','3'),(40103,5497,'_et_builder_version','VB|Divi|4.19.4'),(40104,5497,'_et_pb_show_page_creation','off'),(40105,5497,'_wp_old_slug','february-11-2020-market-report'),(40106,5497,'_wp_old_slug','march-17th-2020-market-report'),(40107,5497,'_wp_old_slug','may-1th-2020-market-report-2'),(40108,5497,'_wp_old_slug','july-21st-2020-market-report-2'),(40109,5497,'_wp_old_slug','november-10th-2020-market-report'),(40110,5497,'_wp_old_slug','january-25-2022-market-report-2'),(40111,5497,'_wp_old_slug','january-3-2022-market-report'),(40112,5497,'_global_colors_info','{}'),(40118,5497,'_dp_original','5472'),(40119,5497,'_edit_lock','1686765979:2'),(40120,5497,'_edit_last','2'),(40130,5504,'_wp_attached_file','2023/06/June-162023-Cow-Sale-3.pdf'),(40131,5504,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"June-162023-Cow-Sale-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"June-162023-Cow-Sale-3-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"June-162023-Cow-Sale-3-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"June-162023-Cow-Sale-3-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40140,5507,'_wp_attached_file','2023/06/June-162023-Cow-Sale-4.pdf'),(40141,5507,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"June-162023-Cow-Sale-4-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"June-162023-Cow-Sale-4-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"June-162023-Cow-Sale-4-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"June-162023-Cow-Sale-4-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40171,5515,'_wp_attached_file','2023/06/TuesdayJune-20th-Feeder-Cattle-Consignments.pdf'),(40172,5515,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"TuesdayJune-20th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"TuesdayJune-20th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"TuesdayJune-20th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"TuesdayJune-20th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40185,5519,'_thumbnail_id','786'),(40186,5519,'_et_post_bg_color','#ffffff'),(40187,5519,'_et_post_bg_layout','light'),(40188,5519,'_et_pb_show_title','on'),(40189,5519,'_et_pb_post_hide_nav','default'),(40190,5519,'_et_pb_page_layout','et_right_sidebar'),(40191,5519,'_et_pb_side_nav','off'),(40192,5519,'_et_pb_use_builder','on'),(40193,5519,'_et_pb_first_image',''),(40194,5519,'_et_pb_truncate_post',''),(40195,5519,'_et_pb_truncate_post_date',''),(40196,5519,'_et_pb_old_content',''),(40197,5519,'_et_pb_built_for_post_type','page'),(40198,5519,'_et_pb_ab_subjects',''),(40199,5519,'_et_pb_enable_shortcode_tracking',''),(40200,5519,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5519\" /]'),(40201,5519,'_et_pb_custom_css',''),(40202,5519,'_et_pb_gutter_width','3'),(40203,5519,'_et_builder_version','VB|Divi|4.19.4'),(40204,5519,'_et_pb_show_page_creation','off'),(40205,5519,'_wp_old_slug','february-11-2020-market-report'),(40206,5519,'_wp_old_slug','march-17th-2020-market-report'),(40207,5519,'_wp_old_slug','may-1th-2020-market-report-2'),(40208,5519,'_wp_old_slug','july-21st-2020-market-report-2'),(40209,5519,'_wp_old_slug','november-10th-2020-market-report'),(40210,5519,'_wp_old_slug','january-25-2022-market-report-2'),(40211,5519,'_wp_old_slug','january-3-2022-market-report'),(40212,5519,'_global_colors_info','{}'),(40218,5519,'_dp_original','5497'),(40219,5519,'_edit_lock','1687359361:2'),(40220,5519,'_edit_last','2'),(40243,5530,'_wp_attached_file','2023/06/TuesdayJune-26th-Feeder-Cattle-Consignments.pdf'),(40244,5530,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"TuesdayJune-26th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"TuesdayJune-26th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"TuesdayJune-26th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"TuesdayJune-26th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40257,5534,'_wp_attached_file','2023/06/July-11-2023-Cow-Sale.pdf'),(40258,5534,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:29:\"July-11-2023-Cow-Sale-pdf.jpg\";s:5:\"width\";i:746;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"July-11-2023-Cow-Sale-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"July-11-2023-Cow-Sale-pdf-722x1024.jpg\";s:5:\"width\";i:722;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"July-11-2023-Cow-Sale-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40271,5538,'_thumbnail_id','786'),(40272,5538,'_et_post_bg_color','#ffffff'),(40273,5538,'_et_post_bg_layout','light'),(40274,5538,'_et_pb_show_title','on'),(40275,5538,'_et_pb_post_hide_nav','default'),(40276,5538,'_et_pb_page_layout','et_right_sidebar'),(40277,5538,'_et_pb_side_nav','off'),(40278,5538,'_et_pb_use_builder','on'),(40279,5538,'_et_pb_first_image',''),(40280,5538,'_et_pb_truncate_post',''),(40281,5538,'_et_pb_truncate_post_date',''),(40282,5538,'_et_pb_old_content',''),(40283,5538,'_et_pb_built_for_post_type','page'),(40284,5538,'_et_pb_ab_subjects',''),(40285,5538,'_et_pb_enable_shortcode_tracking',''),(40286,5538,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5538\" /]'),(40287,5538,'_et_pb_custom_css',''),(40288,5538,'_et_pb_gutter_width','3'),(40289,5538,'_et_builder_version','VB|Divi|4.19.4'),(40290,5538,'_et_pb_show_page_creation','off'),(40291,5538,'_wp_old_slug','february-11-2020-market-report'),(40292,5538,'_wp_old_slug','march-17th-2020-market-report'),(40293,5538,'_wp_old_slug','may-1th-2020-market-report-2'),(40294,5538,'_wp_old_slug','july-21st-2020-market-report-2'),(40295,5538,'_wp_old_slug','november-10th-2020-market-report'),(40296,5538,'_wp_old_slug','january-25-2022-market-report-2'),(40297,5538,'_wp_old_slug','january-3-2022-market-report'),(40298,5538,'_global_colors_info','{}'),(40304,5538,'_dp_original','5519'),(40305,5538,'_edit_lock','1687968854:2'),(40306,5538,'_edit_last','2'),(40316,5544,'_wp_attached_file','2023/06/July-112023-Cow-Sale.pdf'),(40317,5544,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:28:\"July-112023-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"July-112023-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"July-112023-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"July-112023-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40322,5546,'_wp_attached_file','2023/06/July-112023-Cow-Sale-1.pdf'),(40323,5546,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"July-112023-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"July-112023-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"July-112023-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"July-112023-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40332,5549,'_wp_attached_file','2023/06/July-112023-Cow-Sale-2.pdf'),(40333,5549,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"July-112023-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"July-112023-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"July-112023-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"July-112023-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40622,5556,'_wp_attached_file','2023/07/July-112023-Cow-Sale.pdf'),(40623,5556,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:28:\"July-112023-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"July-112023-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"July-112023-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"July-112023-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40632,5559,'_wp_attached_file','2023/07/TuesdayJuly-11th-Feeder-Cattle-Consignments.pdf'),(40633,5559,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"TuesdayJuly-11th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"TuesdayJuly-11th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"TuesdayJuly-11th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"TuesdayJuly-11th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40680,5567,'_wp_attached_file','2023/07/July-212023-Cow-Sale.pdf'),(40681,5567,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:28:\"July-212023-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"July-212023-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"July-212023-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"July-212023-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40690,5570,'_thumbnail_id','786'),(40691,5570,'_et_post_bg_color','#ffffff'),(40692,5570,'_et_post_bg_layout','light'),(40693,5570,'_et_pb_show_title','on'),(40694,5570,'_et_pb_post_hide_nav','default'),(40695,5570,'_et_pb_page_layout','et_right_sidebar'),(40696,5570,'_et_pb_side_nav','off'),(40697,5570,'_et_pb_use_builder','on'),(40698,5570,'_et_pb_first_image',''),(40699,5570,'_et_pb_truncate_post',''),(40700,5570,'_et_pb_truncate_post_date',''),(40701,5570,'_et_pb_old_content',''),(40702,5570,'_et_pb_built_for_post_type','page'),(40703,5570,'_et_pb_ab_subjects',''),(40704,5570,'_et_pb_enable_shortcode_tracking',''),(40705,5570,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5538\" /]'),(40706,5570,'_et_pb_custom_css',''),(40707,5570,'_et_pb_gutter_width','3'),(40708,5570,'_et_builder_version','VB|Divi|4.19.4'),(40709,5570,'_et_pb_show_page_creation','off'),(40710,5570,'_wp_old_slug','february-11-2020-market-report'),(40711,5570,'_wp_old_slug','march-17th-2020-market-report'),(40712,5570,'_wp_old_slug','may-1th-2020-market-report-2'),(40713,5570,'_wp_old_slug','july-21st-2020-market-report-2'),(40714,5570,'_wp_old_slug','november-10th-2020-market-report'),(40715,5570,'_wp_old_slug','january-25-2022-market-report-2'),(40716,5570,'_wp_old_slug','january-3-2022-market-report'),(40717,5570,'_global_colors_info','{}'),(40723,5570,'_dp_original','5538'),(40724,5571,'_thumbnail_id','786'),(40725,5571,'_et_post_bg_color','#ffffff'),(40726,5571,'_et_post_bg_layout','light'),(40727,5571,'_et_pb_show_title','on'),(40728,5571,'_et_pb_post_hide_nav','default'),(40729,5571,'_et_pb_page_layout','et_right_sidebar'),(40730,5571,'_et_pb_side_nav','off'),(40731,5571,'_et_pb_use_builder','on'),(40732,5571,'_et_pb_first_image',''),(40733,5571,'_et_pb_truncate_post',''),(40734,5571,'_et_pb_truncate_post_date',''),(40735,5571,'_et_pb_old_content',''),(40736,5571,'_et_pb_built_for_post_type','page'),(40737,5571,'_et_pb_ab_subjects',''),(40738,5571,'_et_pb_enable_shortcode_tracking',''),(40739,5571,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5571\" /]'),(40740,5571,'_et_pb_custom_css',''),(40741,5571,'_et_pb_gutter_width','3'),(40742,5571,'_et_builder_version','VB|Divi|4.19.4'),(40743,5571,'_et_pb_show_page_creation','off'),(40744,5571,'_wp_old_slug','february-11-2020-market-report'),(40745,5571,'_wp_old_slug','march-17th-2020-market-report'),(40746,5571,'_wp_old_slug','may-1th-2020-market-report-2'),(40747,5571,'_wp_old_slug','july-21st-2020-market-report-2'),(40748,5571,'_wp_old_slug','november-10th-2020-market-report'),(40749,5571,'_wp_old_slug','january-25-2022-market-report-2'),(40750,5571,'_wp_old_slug','january-3-2022-market-report'),(40751,5571,'_global_colors_info','{}'),(40757,5571,'_dp_original','5570'),(40758,5571,'_edit_lock','1689278454:2'),(40759,5571,'_edit_last','2'),(40761,5571,'_wp_old_slug','june-27-2023-market-report-2'),(40782,5576,'_wp_attached_file','2023/07/July-212023-Cow-Sale-1.pdf'),(40783,5576,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"July-212023-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"July-212023-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"July-212023-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"July-212023-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40792,5579,'_wp_attached_file','2023/07/TuesdayJuly-18th-Feeder-Cattle-Consignments.pdf'),(40793,5579,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"TuesdayJuly-18th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"TuesdayJuly-18th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"TuesdayJuly-18th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"TuesdayJuly-18th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40816,5586,'_wp_attached_file','2023/07/July-212023-Cow-Sale-2.pdf'),(40817,5586,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"July-212023-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"July-212023-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"July-212023-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"July-212023-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40826,5589,'_wp_attached_file','2023/07/Cunningham-Legal-paper.pdf'),(40827,5589,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"Cunningham-Legal-paper-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Cunningham-Legal-paper-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"Cunningham-Legal-paper-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Cunningham-Legal-paper-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40850,5596,'_wp_attached_file','2023/07/July-212023-Cow-Sale-3.pdf'),(40851,5596,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"July-212023-Cow-Sale-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"July-212023-Cow-Sale-3-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"July-212023-Cow-Sale-3-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"July-212023-Cow-Sale-3-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(40868,5601,'_thumbnail_id','786'),(40869,5601,'_et_post_bg_color','#ffffff'),(40870,5601,'_et_post_bg_layout','light'),(40871,5601,'_et_pb_show_title','on'),(40872,5601,'_et_pb_post_hide_nav','default'),(40873,5601,'_et_pb_page_layout','et_right_sidebar'),(40874,5601,'_et_pb_side_nav','off'),(40875,5601,'_et_pb_use_builder','on'),(40876,5601,'_et_pb_first_image',''),(40877,5601,'_et_pb_truncate_post',''),(40878,5601,'_et_pb_truncate_post_date',''),(40879,5601,'_et_pb_old_content',''),(40880,5601,'_et_pb_built_for_post_type','page'),(40881,5601,'_et_pb_ab_subjects',''),(40882,5601,'_et_pb_enable_shortcode_tracking',''),(40883,5601,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5601\" /]'),(40884,5601,'_et_pb_custom_css',''),(40885,5601,'_et_pb_gutter_width','3'),(40886,5601,'_et_builder_version','VB|Divi|4.19.4'),(40887,5601,'_et_pb_show_page_creation','off'),(40888,5601,'_wp_old_slug','february-11-2020-market-report'),(40889,5601,'_wp_old_slug','march-17th-2020-market-report'),(40890,5601,'_wp_old_slug','may-1th-2020-market-report-2'),(40891,5601,'_wp_old_slug','july-21st-2020-market-report-2'),(40892,5601,'_wp_old_slug','november-10th-2020-market-report'),(40893,5601,'_wp_old_slug','january-25-2022-market-report-2'),(40894,5601,'_wp_old_slug','january-3-2022-market-report'),(40895,5601,'_wp_old_slug','june-27-2023-market-report-2'),(40896,5601,'_global_colors_info','{}'),(40902,5601,'_dp_original','5571'),(40903,5601,'_edit_lock','1689781510:2'),(40904,5601,'_edit_last','2'),(40992,5609,'_wp_attached_file','2023/07/Cunningham-Legal-paper-1.pdf'),(40993,5609,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"Cunningham-Legal-paper-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Cunningham-Legal-paper-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Cunningham-Legal-paper-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Cunningham-Legal-paper-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(41003,5611,'_wp_attached_file','2023/07/TuesdayJuly-25th-Feeder-Cattle-Consignments.pdf'),(41004,5611,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:51:\"TuesdayJuly-25th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"TuesdayJuly-25th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"TuesdayJuly-25th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"TuesdayJuly-25th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(41032,5619,'_thumbnail_id','786'),(41033,5619,'_et_post_bg_color','#ffffff'),(41034,5619,'_et_post_bg_layout','light'),(41035,5619,'_et_pb_show_title','on'),(41036,5619,'_et_pb_post_hide_nav','default'),(41037,5619,'_et_pb_page_layout','et_right_sidebar'),(41038,5619,'_et_pb_side_nav','off'),(41039,5619,'_et_pb_use_builder','on'),(41040,5619,'_et_pb_first_image',''),(41041,5619,'_et_pb_truncate_post',''),(41042,5619,'_et_pb_truncate_post_date',''),(41043,5619,'_et_pb_old_content',''),(41044,5619,'_et_pb_built_for_post_type','page'),(41045,5619,'_et_pb_ab_subjects',''),(41046,5619,'_et_pb_enable_shortcode_tracking',''),(41047,5619,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5619\" /]'),(41048,5619,'_et_pb_custom_css',''),(41049,5619,'_et_pb_gutter_width','3'),(41050,5619,'_et_builder_version','VB|Divi|4.19.4'),(41051,5619,'_et_pb_show_page_creation','off'),(41052,5619,'_wp_old_slug','february-11-2020-market-report'),(41053,5619,'_wp_old_slug','march-17th-2020-market-report'),(41054,5619,'_wp_old_slug','may-1th-2020-market-report-2'),(41055,5619,'_wp_old_slug','july-21st-2020-market-report-2'),(41056,5619,'_wp_old_slug','november-10th-2020-market-report'),(41057,5619,'_wp_old_slug','january-25-2022-market-report-2'),(41058,5619,'_wp_old_slug','january-3-2022-market-report'),(41059,5619,'_wp_old_slug','june-27-2023-market-report-2'),(41060,5619,'_global_colors_info','{}'),(41066,5619,'_dp_original','5601'),(41067,5619,'_edit_lock','1690388548:2'),(41068,5619,'_edit_last','2'),(41157,5627,'_wp_attached_file','2023/07/August-192023-Cow-Sale.pdf'),(41158,5627,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"August-192023-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"August-192023-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"August-192023-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"August-192023-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(41229,5634,'_thumbnail_id','786'),(41230,5634,'_et_post_bg_color','#ffffff'),(41231,5634,'_et_post_bg_layout','light'),(41232,5634,'_et_pb_show_title','on'),(41233,5634,'_et_pb_post_hide_nav','default'),(41234,5634,'_et_pb_page_layout','et_right_sidebar'),(41235,5634,'_et_pb_side_nav','off'),(41236,5634,'_et_pb_use_builder','on'),(41237,5634,'_et_pb_first_image',''),(41238,5634,'_et_pb_truncate_post',''),(41239,5634,'_et_pb_truncate_post_date',''),(41240,5634,'_et_pb_old_content',''),(41241,5634,'_et_pb_built_for_post_type','page'),(41242,5634,'_et_pb_ab_subjects',''),(41243,5634,'_et_pb_enable_shortcode_tracking',''),(41244,5634,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5634\" /]'),(41245,5634,'_et_pb_custom_css',''),(41246,5634,'_et_pb_gutter_width','3'),(41247,5634,'_et_builder_version','VB|Divi|4.19.4'),(41248,5634,'_et_pb_show_page_creation','off'),(41249,5634,'_wp_old_slug','february-11-2020-market-report'),(41250,5634,'_wp_old_slug','march-17th-2020-market-report'),(41251,5634,'_wp_old_slug','may-1th-2020-market-report-2'),(41252,5634,'_wp_old_slug','july-21st-2020-market-report-2'),(41253,5634,'_wp_old_slug','november-10th-2020-market-report'),(41254,5634,'_wp_old_slug','january-25-2022-market-report-2'),(41255,5634,'_wp_old_slug','january-3-2022-market-report'),(41256,5634,'_wp_old_slug','june-27-2023-market-report-2'),(41257,5634,'_global_colors_info','{}'),(41263,5634,'_dp_original','5619'),(41264,5634,'_edit_lock','1690988865:2'),(41265,5634,'_edit_last','2'),(41274,5640,'_wp_attached_file','2023/08/August-192023-Cow-Sale.pdf'),(41275,5640,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"August-192023-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"August-192023-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"August-192023-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"August-192023-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(41284,5644,'_wp_attached_file','2023/08/image000000-2.jpg'),(41285,5644,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:25:\"2023/08/image000000-2.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"image000000-2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"image000000-2-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"image000000-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"image000000-2-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"image000000-2-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"image000000-2-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:26:\"image000000-2-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"image000000-2-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:25:\"image000000-2-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:26:\"image000000-2-1080x810.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:810;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:4:\"file\";s:25:\"image000000-2-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:4:\"file\";s:26:\"image000000-2-1280x960.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:4:\"file\";s:25:\"image000000-2-980x735.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:735;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"et-pb-image--responsive--phone\";a:4:{s:4:\"file\";s:25:\"image000000-2-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(41409,5649,'_wp_attached_file','2023/08/Equipment-Auction-October-13th.pdf'),(41410,5649,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:38:\"Equipment-Auction-October-13th-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"Equipment-Auction-October-13th-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"Equipment-Auction-October-13th-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"Equipment-Auction-October-13th-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(41418,5653,'_wp_attached_file','2023/08/August-192023-Cow-Sale-1.pdf'),(41419,5653,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"August-192023-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"August-192023-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"August-192023-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"August-192023-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(41432,5657,'_wp_attached_file','2023/08/August-192023-Cow-Sale-2.pdf'),(41433,5657,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"August-192023-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"August-192023-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"August-192023-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"August-192023-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(41442,5660,'_wp_attached_file','2023/08/TuesdayAugust-8th-Feeder-Cattle-Consignments.pdf'),(41443,5660,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:52:\"TuesdayAugust-8th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"TuesdayAugust-8th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-8th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"TuesdayAugust-8th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(41466,5665,'_wp_attached_file','2023/08/August-192023-Cow-Sale-3.pdf'),(41467,5665,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"August-192023-Cow-Sale-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"August-192023-Cow-Sale-3-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"August-192023-Cow-Sale-3-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"August-192023-Cow-Sale-3-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(41487,5670,'_thumbnail_id','786'),(41488,5670,'_et_post_bg_color','#ffffff'),(41489,5670,'_et_post_bg_layout','light'),(41490,5670,'_et_pb_show_title','on'),(41491,5670,'_et_pb_post_hide_nav','default'),(41492,5670,'_et_pb_page_layout','et_right_sidebar'),(41493,5670,'_et_pb_side_nav','off'),(41494,5670,'_et_pb_use_builder','on'),(41495,5670,'_et_pb_first_image',''),(41496,5670,'_et_pb_truncate_post',''),(41497,5670,'_et_pb_truncate_post_date',''),(41498,5670,'_et_pb_old_content',''),(41499,5670,'_et_pb_built_for_post_type','page'),(41500,5670,'_et_pb_ab_subjects',''),(41501,5670,'_et_pb_enable_shortcode_tracking',''),(41502,5670,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5670\" /]'),(41503,5670,'_et_pb_custom_css',''),(41504,5670,'_et_pb_gutter_width','3'),(41505,5670,'_et_builder_version','VB|Divi|4.19.4'),(41506,5670,'_et_pb_show_page_creation','off'),(41507,5670,'_wp_old_slug','february-11-2020-market-report'),(41508,5670,'_wp_old_slug','march-17th-2020-market-report'),(41509,5670,'_wp_old_slug','may-1th-2020-market-report-2'),(41510,5670,'_wp_old_slug','july-21st-2020-market-report-2'),(41511,5670,'_wp_old_slug','november-10th-2020-market-report'),(41512,5670,'_wp_old_slug','january-25-2022-market-report-2'),(41513,5670,'_wp_old_slug','january-3-2022-market-report'),(41514,5670,'_wp_old_slug','june-27-2023-market-report-2'),(41515,5670,'_global_colors_info','{}'),(41521,5670,'_dp_original','5634'),(41522,5670,'_edit_lock','1691545627:2'),(41523,5670,'_edit_last','2'),(41709,5677,'_wp_attached_file','2023/08/TuesdayAugust-15th-Feeder-Cattle-Consignments.pdf'),(41710,5677,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"TuesdayAugust-15th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-15th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"TuesdayAugust-15th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-15th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(41730,5683,'_wp_attached_file','2023/08/August-192023-Cow-Sale-4.pdf'),(41731,5683,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:32:\"August-192023-Cow-Sale-4-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"August-192023-Cow-Sale-4-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"August-192023-Cow-Sale-4-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"August-192023-Cow-Sale-4-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(41753,5686,'_thumbnail_id','786'),(41754,5686,'_et_post_bg_color','#ffffff'),(41755,5686,'_et_post_bg_layout','light'),(41756,5686,'_et_pb_show_title','on'),(41757,5686,'_et_pb_post_hide_nav','default'),(41758,5686,'_et_pb_page_layout','et_right_sidebar'),(41759,5686,'_et_pb_side_nav','off'),(41760,5686,'_et_pb_use_builder','on'),(41761,5686,'_et_pb_first_image',''),(41762,5686,'_et_pb_truncate_post',''),(41763,5686,'_et_pb_truncate_post_date',''),(41764,5686,'_et_pb_old_content',''),(41765,5686,'_et_pb_built_for_post_type','page'),(41766,5686,'_et_pb_ab_subjects',''),(41767,5686,'_et_pb_enable_shortcode_tracking',''),(41768,5686,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5686\" /]'),(41769,5686,'_et_pb_custom_css',''),(41770,5686,'_et_pb_gutter_width','3'),(41771,5686,'_et_builder_version','VB|Divi|4.19.4'),(41772,5686,'_et_pb_show_page_creation','off'),(41773,5686,'_wp_old_slug','february-11-2020-market-report'),(41774,5686,'_wp_old_slug','march-17th-2020-market-report'),(41775,5686,'_wp_old_slug','may-1th-2020-market-report-2'),(41776,5686,'_wp_old_slug','july-21st-2020-market-report-2'),(41777,5686,'_wp_old_slug','november-10th-2020-market-report'),(41778,5686,'_wp_old_slug','january-25-2022-market-report-2'),(41779,5686,'_wp_old_slug','january-3-2022-market-report'),(41780,5686,'_wp_old_slug','june-27-2023-market-report-2'),(41781,5686,'_global_colors_info','{}'),(41787,5686,'_dp_original','5670'),(41788,5686,'_edit_lock','1692198512:2'),(41789,5686,'_edit_last','2'),(41792,5692,'_wp_attached_file','2023/08/Equipment-Auction-October-13th-1.pdf'),(41793,5692,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:40:\"Equipment-Auction-October-13th-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Equipment-Auction-October-13th-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Equipment-Auction-October-13th-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Equipment-Auction-October-13th-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(41926,5697,'_wp_attached_file','2023/08/TuesdayAugust-22nd-Feeder-Cattle-Consignments.pdf'),(41927,5697,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"TuesdayAugust-22nd-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-22nd-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"TuesdayAugust-22nd-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-22nd-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(41956,5702,'_thumbnail_id','786'),(41957,5702,'_et_post_bg_color','#ffffff'),(41958,5702,'_et_post_bg_layout','light'),(41959,5702,'_et_pb_show_title','on'),(41960,5702,'_et_pb_post_hide_nav','default'),(41961,5702,'_et_pb_page_layout','et_right_sidebar'),(41962,5702,'_et_pb_side_nav','off'),(41963,5702,'_et_pb_use_builder','on'),(41964,5702,'_et_pb_first_image',''),(41965,5702,'_et_pb_truncate_post',''),(41966,5702,'_et_pb_truncate_post_date',''),(41967,5702,'_et_pb_old_content',''),(41968,5702,'_et_pb_built_for_post_type','page'),(41969,5702,'_et_pb_ab_subjects',''),(41970,5702,'_et_pb_enable_shortcode_tracking',''),(41971,5702,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5702\" /]'),(41972,5702,'_et_pb_custom_css',''),(41973,5702,'_et_pb_gutter_width','3'),(41974,5702,'_et_builder_version','VB|Divi|4.19.4'),(41975,5702,'_et_pb_show_page_creation','off'),(41976,5702,'_wp_old_slug','february-11-2020-market-report'),(41977,5702,'_wp_old_slug','march-17th-2020-market-report'),(41978,5702,'_wp_old_slug','may-1th-2020-market-report-2'),(41979,5702,'_wp_old_slug','july-21st-2020-market-report-2'),(41980,5702,'_wp_old_slug','november-10th-2020-market-report'),(41981,5702,'_wp_old_slug','january-25-2022-market-report-2'),(41982,5702,'_wp_old_slug','january-3-2022-market-report'),(41983,5702,'_wp_old_slug','june-27-2023-market-report-2'),(41984,5702,'_global_colors_info','{}'),(41990,5702,'_dp_original','5686'),(41991,5702,'_edit_lock','1692801105:2'),(41992,5702,'_edit_last','2'),(42043,5707,'_wp_attached_file','2023/08/TuesdayAugust-29th-Feeder-Cattle-Consignments.pdf'),(42044,5707,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"TuesdayAugust-29th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-29th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"TuesdayAugust-29th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"TuesdayAugust-29th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(42087,5711,'_wp_attached_file','2023/08/bid_now-proxibid-b-164.png'),(42088,5711,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:65;s:4:\"file\";s:34:\"2023/08/bid_now-proxibid-b-164.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(42092,5713,'_wp_attached_file','2023/08/bid_now-proxibid-b-164-1.png'),(42093,5713,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:65;s:4:\"file\";s:36:\"2023/08/bid_now-proxibid-b-164-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(42094,5714,'_wp_attached_file','2023/08/bid_now-proxibid-b-164-2.png'),(42095,5714,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:144;s:6:\"height\";i:65;s:4:\"file\";s:36:\"2023/08/bid_now-proxibid-b-164-2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(42194,5718,'_thumbnail_id','786'),(42195,5718,'_et_post_bg_color','#ffffff'),(42196,5718,'_et_post_bg_layout','light'),(42197,5718,'_et_pb_show_title','on'),(42198,5718,'_et_pb_post_hide_nav','default'),(42199,5718,'_et_pb_page_layout','et_right_sidebar'),(42200,5718,'_et_pb_side_nav','off'),(42201,5718,'_et_pb_use_builder','on'),(42202,5718,'_et_pb_first_image',''),(42203,5718,'_et_pb_truncate_post',''),(42204,5718,'_et_pb_truncate_post_date',''),(42205,5718,'_et_pb_old_content',''),(42206,5718,'_et_pb_built_for_post_type','page'),(42207,5718,'_et_pb_ab_subjects',''),(42208,5718,'_et_pb_enable_shortcode_tracking',''),(42209,5718,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5718\" /]'),(42210,5718,'_et_pb_custom_css',''),(42211,5718,'_et_pb_gutter_width','3'),(42212,5718,'_et_builder_version','VB|Divi|4.19.4'),(42213,5718,'_et_pb_show_page_creation','off'),(42214,5718,'_wp_old_slug','february-11-2020-market-report'),(42215,5718,'_wp_old_slug','march-17th-2020-market-report'),(42216,5718,'_wp_old_slug','may-1th-2020-market-report-2'),(42217,5718,'_wp_old_slug','july-21st-2020-market-report-2'),(42218,5718,'_wp_old_slug','november-10th-2020-market-report'),(42219,5718,'_wp_old_slug','january-25-2022-market-report-2'),(42220,5718,'_wp_old_slug','january-3-2022-market-report'),(42221,5718,'_wp_old_slug','june-27-2023-market-report-2'),(42222,5718,'_global_colors_info','{}'),(42228,5718,'_dp_original','5702'),(42229,5718,'_edit_lock','1693410085:2'),(42230,5718,'_edit_last','2'),(42384,5731,'_wp_attached_file','2023/09/TuesdaySeptember-5th-Feeder-Cattle-Consignments.pdf'),(42385,5731,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdaySeptember-5th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdaySeptember-5th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-5th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdaySeptember-5th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(42485,5735,'_thumbnail_id','786'),(42486,5735,'_et_post_bg_color','#ffffff'),(42487,5735,'_et_post_bg_layout','light'),(42488,5735,'_et_pb_show_title','on'),(42489,5735,'_et_pb_post_hide_nav','default'),(42490,5735,'_et_pb_page_layout','et_right_sidebar'),(42491,5735,'_et_pb_side_nav','off'),(42492,5735,'_et_pb_use_builder','on'),(42493,5735,'_et_pb_first_image',''),(42494,5735,'_et_pb_truncate_post',''),(42495,5735,'_et_pb_truncate_post_date',''),(42496,5735,'_et_pb_old_content',''),(42497,5735,'_et_pb_built_for_post_type','page'),(42498,5735,'_et_pb_ab_subjects',''),(42499,5735,'_et_pb_enable_shortcode_tracking',''),(42500,5735,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5735\" /]'),(42501,5735,'_et_pb_custom_css',''),(42502,5735,'_et_pb_gutter_width','3'),(42503,5735,'_et_builder_version','VB|Divi|4.19.4'),(42504,5735,'_et_pb_show_page_creation','off'),(42505,5735,'_wp_old_slug','february-11-2020-market-report'),(42506,5735,'_wp_old_slug','march-17th-2020-market-report'),(42507,5735,'_wp_old_slug','may-1th-2020-market-report-2'),(42508,5735,'_wp_old_slug','july-21st-2020-market-report-2'),(42509,5735,'_wp_old_slug','november-10th-2020-market-report'),(42510,5735,'_wp_old_slug','january-25-2022-market-report-2'),(42511,5735,'_wp_old_slug','january-3-2022-market-report'),(42512,5735,'_wp_old_slug','june-27-2023-market-report-2'),(42513,5735,'_global_colors_info','{}'),(42519,5735,'_dp_original','5718'),(42520,5735,'_edit_lock','1694013088:2'),(42521,5735,'_edit_last','2'),(42527,5739,'_wp_attached_file','2023/09/Estate-Ralph-Pearl-Wilkinson-Sept.-28th.pdf'),(42528,5739,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:47:\"Estate-Ralph-Pearl-Wilkinson-Sept.-28th-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"Estate-Ralph-Pearl-Wilkinson-Sept.-28th-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"Estate-Ralph-Pearl-Wilkinson-Sept.-28th-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"Estate-Ralph-Pearl-Wilkinson-Sept.-28th-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(42816,5746,'_wp_attached_file','2023/09/TuesdaySeptember-12th-Feeder-Cattle-Consignments.pdf'),(42817,5746,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"TuesdaySeptember-12th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-12th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"TuesdaySeptember-12th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-12th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(42829,5750,'_wp_attached_file','2023/09/September-232023-Cow-Sale.pdf'),(42830,5750,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"September-232023-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"September-232023-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"September-232023-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"September-232023-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(42847,5756,'_wp_attached_file','2023/09/September-232023-Cow-Sale-1.pdf'),(42848,5756,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"September-232023-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"September-232023-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"September-232023-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"September-232023-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(42857,5759,'_thumbnail_id','786'),(42858,5759,'_et_post_bg_color','#ffffff'),(42859,5759,'_et_post_bg_layout','light'),(42860,5759,'_et_pb_show_title','on'),(42861,5759,'_et_pb_post_hide_nav','default'),(42862,5759,'_et_pb_page_layout','et_right_sidebar'),(42863,5759,'_et_pb_side_nav','off'),(42864,5759,'_et_pb_use_builder','on'),(42865,5759,'_et_pb_first_image',''),(42866,5759,'_et_pb_truncate_post',''),(42867,5759,'_et_pb_truncate_post_date',''),(42868,5759,'_et_pb_old_content',''),(42869,5759,'_et_pb_built_for_post_type','page'),(42870,5759,'_et_pb_ab_subjects',''),(42871,5759,'_et_pb_enable_shortcode_tracking',''),(42872,5759,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5759\" /]'),(42873,5759,'_et_pb_custom_css',''),(42874,5759,'_et_pb_gutter_width','3'),(42875,5759,'_et_builder_version','VB|Divi|4.19.4'),(42876,5759,'_et_pb_show_page_creation','off'),(42877,5759,'_wp_old_slug','february-11-2020-market-report'),(42878,5759,'_wp_old_slug','march-17th-2020-market-report'),(42879,5759,'_wp_old_slug','may-1th-2020-market-report-2'),(42880,5759,'_wp_old_slug','july-21st-2020-market-report-2'),(42881,5759,'_wp_old_slug','november-10th-2020-market-report'),(42882,5759,'_wp_old_slug','january-25-2022-market-report-2'),(42883,5759,'_wp_old_slug','january-3-2022-market-report'),(42884,5759,'_wp_old_slug','june-27-2023-market-report-2'),(42885,5759,'_global_colors_info','{}'),(42891,5759,'_dp_original','5735'),(42892,5759,'_edit_lock','1694619145:2'),(42893,5759,'_edit_last','2'),(42899,5764,'_wp_attached_file','2023/09/TuesdaySeptember-19th-Feeder-Cattle-Consignments.pdf'),(42900,5764,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"TuesdaySeptember-19th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-19th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"TuesdaySeptember-19th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-19th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(42917,5769,'_thumbnail_id','786'),(42918,5769,'_et_post_bg_color','#ffffff'),(42919,5769,'_et_post_bg_layout','light'),(42920,5769,'_et_pb_show_title','on'),(42921,5769,'_et_pb_post_hide_nav','default'),(42922,5769,'_et_pb_page_layout','et_right_sidebar'),(42923,5769,'_et_pb_side_nav','off'),(42924,5769,'_et_pb_use_builder','on'),(42925,5769,'_et_pb_first_image',''),(42926,5769,'_et_pb_truncate_post',''),(42927,5769,'_et_pb_truncate_post_date',''),(42928,5769,'_et_pb_old_content',''),(42929,5769,'_et_pb_built_for_post_type','page'),(42930,5769,'_et_pb_ab_subjects',''),(42931,5769,'_et_pb_enable_shortcode_tracking',''),(42932,5769,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5769\" /]'),(42933,5769,'_et_pb_custom_css',''),(42934,5769,'_et_pb_gutter_width','3'),(42935,5769,'_et_builder_version','VB|Divi|4.19.4'),(42936,5769,'_et_pb_show_page_creation','off'),(42937,5769,'_wp_old_slug','february-11-2020-market-report'),(42938,5769,'_wp_old_slug','march-17th-2020-market-report'),(42939,5769,'_wp_old_slug','may-1th-2020-market-report-2'),(42940,5769,'_wp_old_slug','july-21st-2020-market-report-2'),(42941,5769,'_wp_old_slug','november-10th-2020-market-report'),(42942,5769,'_wp_old_slug','january-25-2022-market-report-2'),(42943,5769,'_wp_old_slug','january-3-2022-market-report'),(42944,5769,'_wp_old_slug','june-27-2023-market-report-2'),(42945,5769,'_global_colors_info','{}'),(42951,5769,'_dp_original','5759'),(42952,5769,'_edit_lock','1695221221:2'),(42953,5769,'_edit_last','2'),(42987,5781,'_wp_attached_file','2023/09/Stumpff-Chaney-Auction-Sept.-30th.pdf'),(42988,5781,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:41:\"Stumpff-Chaney-Auction-Sept.-30th-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Stumpff-Chaney-Auction-Sept.-30th-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Stumpff-Chaney-Auction-Sept.-30th-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Stumpff-Chaney-Auction-Sept.-30th-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43035,5788,'_wp_attached_file','2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale.pdf'),(43036,5788,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"October-14th2022-Horse-Tack-Small-Animal-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"October-14th2022-Horse-Tack-Small-Animal-Sale-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"October-14th2022-Horse-Tack-Small-Animal-Sale-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"October-14th2022-Horse-Tack-Small-Animal-Sale-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43215,5795,'_wp_attached_file','2023/09/TuesdaySeptember-26th-Feeder-Cattle-Consignments.pdf'),(43216,5795,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:56:\"TuesdaySeptember-26th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-26th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"TuesdaySeptember-26th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"TuesdaySeptember-26th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43224,5797,'_wp_attached_file','2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf'),(43225,5797,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"October-14th2022-Horse-Tack-Small-Animal-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"October-14th2022-Horse-Tack-Small-Animal-Sale-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"October-14th2022-Horse-Tack-Small-Animal-Sale-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"October-14th2022-Horse-Tack-Small-Animal-Sale-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43262,5804,'_thumbnail_id','786'),(43263,5804,'_et_post_bg_color','#ffffff'),(43264,5804,'_et_post_bg_layout','light'),(43265,5804,'_et_pb_show_title','on'),(43266,5804,'_et_pb_post_hide_nav','default'),(43267,5804,'_et_pb_page_layout','et_right_sidebar'),(43268,5804,'_et_pb_side_nav','off'),(43269,5804,'_et_pb_use_builder','on'),(43270,5804,'_et_pb_first_image',''),(43271,5804,'_et_pb_truncate_post',''),(43272,5804,'_et_pb_truncate_post_date',''),(43273,5804,'_et_pb_old_content',''),(43274,5804,'_et_pb_built_for_post_type','page'),(43275,5804,'_et_pb_ab_subjects',''),(43276,5804,'_et_pb_enable_shortcode_tracking',''),(43277,5804,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5804\" /]'),(43278,5804,'_et_pb_custom_css',''),(43279,5804,'_et_pb_gutter_width','3'),(43280,5804,'_et_builder_version','VB|Divi|4.19.4'),(43281,5804,'_et_pb_show_page_creation','off'),(43282,5804,'_wp_old_slug','february-11-2020-market-report'),(43283,5804,'_wp_old_slug','march-17th-2020-market-report'),(43284,5804,'_wp_old_slug','may-1th-2020-market-report-2'),(43285,5804,'_wp_old_slug','july-21st-2020-market-report-2'),(43286,5804,'_wp_old_slug','november-10th-2020-market-report'),(43287,5804,'_wp_old_slug','january-25-2022-market-report-2'),(43288,5804,'_wp_old_slug','january-3-2022-market-report'),(43289,5804,'_wp_old_slug','june-27-2023-market-report-2'),(43290,5804,'_global_colors_info','{}'),(43296,5804,'_dp_original','5769'),(43297,5804,'_edit_lock','1695831921:2'),(43298,5804,'_edit_last','2'),(43305,5809,'_wp_attached_file','2023/09/Oct.-13th-tabloid.pdf'),(43306,5809,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:25:\"Oct.-13th-tabloid-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Oct.-13th-tabloid-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Oct.-13th-tabloid-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Oct.-13th-tabloid-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43318,5813,'_wp_attached_file','2023/09/Gary-Piercey-Deborah-Johnson-Auction-Oct.-7th.pdf'),(43319,5813,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"Gary-Piercey-Deborah-Johnson-Auction-Oct.-7th-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"Gary-Piercey-Deborah-Johnson-Auction-Oct.-7th-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"Gary-Piercey-Deborah-Johnson-Auction-Oct.-7th-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"Gary-Piercey-Deborah-Johnson-Auction-Oct.-7th-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43348,5816,'_wp_attached_file','2023/09/Gary-Piercey-Deborah-Johnson-Auction-Oct.-7th-1.pdf'),(43349,5816,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"Gary-Piercey-Deborah-Johnson-Auction-Oct.-7th-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"Gary-Piercey-Deborah-Johnson-Auction-Oct.-7th-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"Gary-Piercey-Deborah-Johnson-Auction-Oct.-7th-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"Gary-Piercey-Deborah-Johnson-Auction-Oct.-7th-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43498,5823,'_wp_attached_file','2023/10/Kelley-Estate-Oct.-21st.pdf'),(43499,5823,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:31:\"Kelley-Estate-Oct.-21st-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Kelley-Estate-Oct.-21st-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Kelley-Estate-Oct.-21st-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Kelley-Estate-Oct.-21st-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43506,5826,'_wp_attached_file','2023/10/Kelley-Estate-Oct.-21st-1.pdf'),(43507,5826,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"Kelley-Estate-Oct.-21st-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Kelley-Estate-Oct.-21st-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Kelley-Estate-Oct.-21st-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Kelley-Estate-Oct.-21st-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43508,5827,'_wp_attached_file','2023/10/Oct.-13th-tabloid.pdf'),(43509,5827,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:25:\"Oct.-13th-tabloid-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Oct.-13th-tabloid-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Oct.-13th-tabloid-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Oct.-13th-tabloid-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43513,5829,'_wp_attached_file','2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale.pdf'),(43514,5829,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:53:\"October-14th2022-Horse-Tack-Small-Animal-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"October-14th2022-Horse-Tack-Small-Animal-Sale-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"October-14th2022-Horse-Tack-Small-Animal-Sale-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"October-14th2022-Horse-Tack-Small-Animal-Sale-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43530,5833,'_wp_attached_file','2023/10/TuesdayOctober-10th-Feeder-Cattle-Consignments.pdf'),(43531,5833,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"TuesdayOctober-10th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-10th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"TuesdayOctober-10th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-10th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43539,5835,'_wp_attached_file','2023/10/Kelley-Estate-Oct.-21st-2.pdf'),(43540,5835,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"Kelley-Estate-Oct.-21st-2-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Kelley-Estate-Oct.-21st-2-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Kelley-Estate-Oct.-21st-2-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Kelley-Estate-Oct.-21st-2-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43541,5836,'_wp_attached_file','2023/10/Oct.-13th-tabloid-1.pdf'),(43542,5836,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:27:\"Oct.-13th-tabloid-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Oct.-13th-tabloid-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Oct.-13th-tabloid-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Oct.-13th-tabloid-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43543,5837,'_wp_attached_file','2023/10/Oct.-13th-tabloid-2.pdf'),(43544,5837,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:27:\"Oct.-13th-tabloid-2-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Oct.-13th-tabloid-2-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Oct.-13th-tabloid-2-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Oct.-13th-tabloid-2-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43567,5839,'_thumbnail_id','786'),(43568,5839,'_et_post_bg_color','#ffffff'),(43569,5839,'_et_post_bg_layout','light'),(43570,5839,'_et_pb_show_title','on'),(43571,5839,'_et_pb_post_hide_nav','default'),(43572,5839,'_et_pb_page_layout','et_right_sidebar'),(43573,5839,'_et_pb_side_nav','off'),(43574,5839,'_et_pb_use_builder','on'),(43575,5839,'_et_pb_first_image',''),(43576,5839,'_et_pb_truncate_post',''),(43577,5839,'_et_pb_truncate_post_date',''),(43578,5839,'_et_pb_old_content',''),(43579,5839,'_et_pb_built_for_post_type','page'),(43580,5839,'_et_pb_ab_subjects',''),(43581,5839,'_et_pb_enable_shortcode_tracking',''),(43582,5839,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5839\" /]'),(43583,5839,'_et_pb_custom_css',''),(43584,5839,'_et_pb_gutter_width','3'),(43585,5839,'_et_builder_version','VB|Divi|4.19.4'),(43586,5839,'_et_pb_show_page_creation','off'),(43587,5839,'_wp_old_slug','february-11-2020-market-report'),(43588,5839,'_wp_old_slug','march-17th-2020-market-report'),(43589,5839,'_wp_old_slug','may-1th-2020-market-report-2'),(43590,5839,'_wp_old_slug','july-21st-2020-market-report-2'),(43591,5839,'_wp_old_slug','november-10th-2020-market-report'),(43592,5839,'_wp_old_slug','january-25-2022-market-report-2'),(43593,5839,'_wp_old_slug','january-3-2022-market-report'),(43594,5839,'_wp_old_slug','june-27-2023-market-report-2'),(43595,5839,'_global_colors_info','{}'),(43601,5839,'_dp_original','5804'),(43602,5839,'_edit_lock','1697038887:2'),(43603,5839,'_edit_last','2'),(43612,5844,'_wp_attached_file','2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf'),(43613,5844,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"October-14th2022-Horse-Tack-Small-Animal-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"October-14th2022-Horse-Tack-Small-Animal-Sale-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"October-14th2022-Horse-Tack-Small-Animal-Sale-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"October-14th2022-Horse-Tack-Small-Animal-Sale-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43626,5848,'_wp_attached_file','2023/10/Kelley-Estate-Oct.-21st-3.pdf'),(43627,5848,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"Kelley-Estate-Oct.-21st-3-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Kelley-Estate-Oct.-21st-3-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Kelley-Estate-Oct.-21st-3-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Kelley-Estate-Oct.-21st-3-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43631,5850,'_wp_attached_file','2023/10/Oct.-13th-tabloid-3.pdf'),(43632,5850,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:27:\"Oct.-13th-tabloid-3-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Oct.-13th-tabloid-3-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Oct.-13th-tabloid-3-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Oct.-13th-tabloid-3-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43683,5854,'_wp_attached_file','2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale-2.pdf'),(43684,5854,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"October-14th2022-Horse-Tack-Small-Animal-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"October-14th2022-Horse-Tack-Small-Animal-Sale-2-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"October-14th2022-Horse-Tack-Small-Animal-Sale-2-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"October-14th2022-Horse-Tack-Small-Animal-Sale-2-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43749,5862,'_wp_attached_file','2023/10/TuesdayOctober-17th-Feeder-Cattle-Consignments.pdf'),(43750,5862,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"TuesdayOctober-17th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-17th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"TuesdayOctober-17th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-17th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43774,5869,'_wp_attached_file','2023/10/Kelley-Estate-November-10th.pdf'),(43775,5869,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"Kelley-Estate-November-10th-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Kelley-Estate-November-10th-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Kelley-Estate-November-10th-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Kelley-Estate-November-10th-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43786,5872,'_wp_attached_file','2023/10/Kelley-Estate-November-10th-1.pdf'),(43787,5872,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:37:\"Kelley-Estate-November-10th-1-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Kelley-Estate-November-10th-1-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Kelley-Estate-November-10th-1-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Kelley-Estate-November-10th-1-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43788,5873,'_wp_attached_file','2023/10/Kelley-Estate-Oct.-21st-4.pdf'),(43789,5873,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"Kelley-Estate-Oct.-21st-4-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:2176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Kelley-Estate-Oct.-21st-4-pdf-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Kelley-Estate-Oct.-21st-4-pdf-663x1024.jpg\";s:5:\"width\";i:663;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Kelley-Estate-Oct.-21st-4-pdf-97x150.jpg\";s:5:\"width\";i:97;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43829,5879,'_thumbnail_id','786'),(43830,5879,'_et_post_bg_color','#ffffff'),(43831,5879,'_et_post_bg_layout','light'),(43832,5879,'_et_pb_show_title','on'),(43833,5879,'_et_pb_post_hide_nav','default'),(43834,5879,'_et_pb_page_layout','et_right_sidebar'),(43835,5879,'_et_pb_side_nav','off'),(43836,5879,'_et_pb_use_builder','on'),(43837,5879,'_et_pb_first_image',''),(43838,5879,'_et_pb_truncate_post',''),(43839,5879,'_et_pb_truncate_post_date',''),(43840,5879,'_et_pb_old_content',''),(43841,5879,'_et_pb_built_for_post_type','page'),(43842,5879,'_et_pb_ab_subjects',''),(43843,5879,'_et_pb_enable_shortcode_tracking',''),(43844,5879,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5879\" /]'),(43845,5879,'_et_pb_custom_css',''),(43846,5879,'_et_pb_gutter_width','3'),(43847,5879,'_et_builder_version','VB|Divi|4.19.4'),(43848,5879,'_et_pb_show_page_creation','off'),(43849,5879,'_wp_old_slug','february-11-2020-market-report'),(43850,5879,'_wp_old_slug','march-17th-2020-market-report'),(43851,5879,'_wp_old_slug','may-1th-2020-market-report-2'),(43852,5879,'_wp_old_slug','july-21st-2020-market-report-2'),(43853,5879,'_wp_old_slug','november-10th-2020-market-report'),(43854,5879,'_wp_old_slug','january-25-2022-market-report-2'),(43855,5879,'_wp_old_slug','january-3-2022-market-report'),(43856,5879,'_wp_old_slug','june-27-2023-market-report-2'),(43857,5879,'_global_colors_info','{}'),(43864,5879,'_dp_original','5839'),(43865,5879,'_edit_lock','1697641359:2'),(43866,5879,'_edit_last','2'),(43879,5886,'_wp_attached_file','2023/10/October-282023-Cow-Sale.pdf'),(43880,5886,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:31:\"October-282023-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"October-282023-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"October-282023-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"October-282023-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43889,5890,'_wp_attached_file','2023/10/2023-spring-calving-catalog.pdf'),(43890,5890,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"2023-spring-calving-catalog-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"2023-spring-calving-catalog-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"2023-spring-calving-catalog-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"2023-spring-calving-catalog-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(43891,5891,'_wp_attached_file','2023/10/2023-sms-spring-calving-flyer.pdf'),(43892,5891,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:37:\"2023-sms-spring-calving-flyer-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"2023-sms-spring-calving-flyer-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"2023-sms-spring-calving-flyer-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"2023-sms-spring-calving-flyer-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(44271,5899,'_wp_attached_file','2023/10/October-282023-Cow-Sale-1.pdf'),(44272,5899,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"October-282023-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"October-282023-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"October-282023-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"October-282023-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(44273,5900,'_wp_attached_file','2023/10/October-282023-Cow-Sale-2.pdf'),(44274,5900,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"October-282023-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"October-282023-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"October-282023-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"October-282023-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(44283,5903,'_wp_attached_file','2023/10/TuesdayOctober-24th-Feeder-Cattle-Consignments.pdf'),(44284,5903,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"TuesdayOctober-24th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-24th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"TuesdayOctober-24th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-24th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(44310,5905,'_wp_attached_file','2023/10/October-282023-Cow-Sale-3.pdf'),(44311,5905,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"October-282023-Cow-Sale-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"October-282023-Cow-Sale-3-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"October-282023-Cow-Sale-3-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"October-282023-Cow-Sale-3-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(44433,5912,'_thumbnail_id','786'),(44434,5912,'_et_post_bg_color','#ffffff'),(44435,5912,'_et_post_bg_layout','light'),(44436,5912,'_et_pb_show_title','on'),(44437,5912,'_et_pb_post_hide_nav','default'),(44438,5912,'_et_pb_page_layout','et_right_sidebar'),(44439,5912,'_et_pb_side_nav','off'),(44440,5912,'_et_pb_use_builder','on'),(44441,5912,'_et_pb_first_image',''),(44442,5912,'_et_pb_truncate_post',''),(44443,5912,'_et_pb_truncate_post_date',''),(44444,5912,'_et_pb_old_content',''),(44445,5912,'_et_pb_built_for_post_type','page'),(44446,5912,'_et_pb_ab_subjects',''),(44447,5912,'_et_pb_enable_shortcode_tracking',''),(44448,5912,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5912\" /]'),(44449,5912,'_et_pb_custom_css',''),(44450,5912,'_et_pb_gutter_width','3'),(44451,5912,'_et_builder_version','VB|Divi|4.19.4'),(44452,5912,'_et_pb_show_page_creation','off'),(44453,5912,'_wp_old_slug','february-11-2020-market-report'),(44454,5912,'_wp_old_slug','march-17th-2020-market-report'),(44455,5912,'_wp_old_slug','may-1th-2020-market-report-2'),(44456,5912,'_wp_old_slug','july-21st-2020-market-report-2'),(44457,5912,'_wp_old_slug','november-10th-2020-market-report'),(44458,5912,'_wp_old_slug','january-25-2022-market-report-2'),(44459,5912,'_wp_old_slug','january-3-2022-market-report'),(44460,5912,'_wp_old_slug','june-27-2023-market-report-2'),(44461,5912,'_global_colors_info','{}'),(44467,5912,'_dp_original','5879'),(44468,5912,'_edit_lock','1698250575:2'),(44469,5912,'_edit_last','2'),(44842,5922,'_wp_attached_file','2023/10/TuesdayOctober-31st-Feeder-Cattle-Consignments.pdf'),(44843,5922,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"TuesdayOctober-31st-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-31st-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"TuesdayOctober-31st-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"TuesdayOctober-31st-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(44929,5926,'_thumbnail_id','786'),(44930,5926,'_et_post_bg_color','#ffffff'),(44931,5926,'_et_post_bg_layout','light'),(44932,5926,'_et_pb_show_title','on'),(44933,5926,'_et_pb_post_hide_nav','default'),(44934,5926,'_et_pb_page_layout','et_right_sidebar'),(44935,5926,'_et_pb_side_nav','off'),(44936,5926,'_et_pb_use_builder','on'),(44937,5926,'_et_pb_first_image',''),(44938,5926,'_et_pb_truncate_post',''),(44939,5926,'_et_pb_truncate_post_date',''),(44940,5926,'_et_pb_old_content',''),(44941,5926,'_et_pb_built_for_post_type','page'),(44942,5926,'_et_pb_ab_subjects',''),(44943,5926,'_et_pb_enable_shortcode_tracking',''),(44944,5926,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5926\" /]'),(44945,5926,'_et_pb_custom_css',''),(44946,5926,'_et_pb_gutter_width','3'),(44947,5926,'_et_builder_version','VB|Divi|4.23'),(44948,5926,'_et_pb_show_page_creation','off'),(44949,5926,'_wp_old_slug','february-11-2020-market-report'),(44950,5926,'_wp_old_slug','march-17th-2020-market-report'),(44951,5926,'_wp_old_slug','may-1th-2020-market-report-2'),(44952,5926,'_wp_old_slug','july-21st-2020-market-report-2'),(44953,5926,'_wp_old_slug','november-10th-2020-market-report'),(44954,5926,'_wp_old_slug','january-25-2022-market-report-2'),(44955,5926,'_wp_old_slug','january-3-2022-market-report'),(44956,5926,'_wp_old_slug','june-27-2023-market-report-2'),(44957,5926,'_global_colors_info','{}'),(44963,5926,'_dp_original','5912'),(44964,5926,'_edit_lock','1698848229:2'),(44965,5926,'_edit_last','2'),(45157,5935,'_wp_attached_file','2023/11/TuesdayNovember-7th-Feeder-Cattle-Consignments.pdf'),(45158,5935,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:54:\"TuesdayNovember-7th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"TuesdayNovember-7th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-7th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"TuesdayNovember-7th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(45166,5937,'_wp_attached_file','2023/11/2023-spring-calving-catalog-1.pdf'),(45167,5937,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:37:\"2023-spring-calving-catalog-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"2023-spring-calving-catalog-1-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"2023-spring-calving-catalog-1-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"2023-spring-calving-catalog-1-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(45175,5939,'_wp_attached_file','2023/11/November-18-2023-Cow-Sale.pdf'),(45176,5939,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:33:\"November-18-2023-Cow-Sale-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"November-18-2023-Cow-Sale-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"November-18-2023-Cow-Sale-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"November-18-2023-Cow-Sale-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(45385,5945,'_thumbnail_id','786'),(45386,5945,'_et_post_bg_color','#ffffff'),(45387,5945,'_et_post_bg_layout','light'),(45388,5945,'_et_pb_show_title','on'),(45389,5945,'_et_pb_post_hide_nav','default'),(45390,5945,'_et_pb_page_layout','et_right_sidebar'),(45391,5945,'_et_pb_side_nav','off'),(45392,5945,'_et_pb_use_builder','on'),(45393,5945,'_et_pb_first_image',''),(45394,5945,'_et_pb_truncate_post',''),(45395,5945,'_et_pb_truncate_post_date',''),(45396,5945,'_et_pb_old_content',''),(45397,5945,'_et_pb_built_for_post_type','page'),(45398,5945,'_et_pb_ab_subjects',''),(45399,5945,'_et_pb_enable_shortcode_tracking',''),(45400,5945,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5945\" /]'),(45401,5945,'_et_pb_custom_css',''),(45402,5945,'_et_pb_gutter_width','3'),(45403,5945,'_et_builder_version','VB|Divi|4.23'),(45404,5945,'_et_pb_show_page_creation','off'),(45405,5945,'_wp_old_slug','february-11-2020-market-report'),(45406,5945,'_wp_old_slug','march-17th-2020-market-report'),(45407,5945,'_wp_old_slug','may-1th-2020-market-report-2'),(45408,5945,'_wp_old_slug','july-21st-2020-market-report-2'),(45409,5945,'_wp_old_slug','november-10th-2020-market-report'),(45410,5945,'_wp_old_slug','january-25-2022-market-report-2'),(45411,5945,'_wp_old_slug','january-3-2022-market-report'),(45412,5945,'_wp_old_slug','june-27-2023-market-report-2'),(45413,5945,'_global_colors_info','{}'),(45418,5945,'_dp_original','5926'),(45419,5945,'_edit_lock','1699469008:2'),(45420,5945,'_edit_last','2'),(45425,5950,'_wp_attached_file','2023/11/November-18-2023-Cow-Sale-1.pdf'),(45426,5950,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"November-18-2023-Cow-Sale-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"November-18-2023-Cow-Sale-1-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"November-18-2023-Cow-Sale-1-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"November-18-2023-Cow-Sale-1-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(45431,5952,'_wp_attached_file','2023/11/November-18-2023-Cow-Sale-2.pdf'),(45432,5952,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"November-18-2023-Cow-Sale-2-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"November-18-2023-Cow-Sale-2-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"November-18-2023-Cow-Sale-2-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"November-18-2023-Cow-Sale-2-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(45768,5955,'_wp_attached_file','2023/11/November-18-2023-Cow-Sale-3.pdf'),(45769,5955,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"November-18-2023-Cow-Sale-3-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"November-18-2023-Cow-Sale-3-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"November-18-2023-Cow-Sale-3-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"November-18-2023-Cow-Sale-3-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(45787,5959,'_wp_attached_file','2023/11/TuesdayNovember-14th-Feeder-Cattle-Consignments.pdf'),(45788,5959,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdayNovember-14th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-14th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdayNovember-14th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-14th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(45842,5968,'_thumbnail_id','786'),(45843,5968,'_et_post_bg_color','#ffffff'),(45844,5968,'_et_post_bg_layout','light'),(45845,5968,'_et_pb_show_title','on'),(45846,5968,'_et_pb_post_hide_nav','default'),(45847,5968,'_et_pb_page_layout','et_right_sidebar'),(45848,5968,'_et_pb_side_nav','off'),(45849,5968,'_et_pb_use_builder','on'),(45850,5968,'_et_pb_first_image',''),(45851,5968,'_et_pb_truncate_post',''),(45852,5968,'_et_pb_truncate_post_date',''),(45853,5968,'_et_pb_old_content',''),(45854,5968,'_et_pb_built_for_post_type','page'),(45855,5968,'_et_pb_ab_subjects',''),(45856,5968,'_et_pb_enable_shortcode_tracking',''),(45857,5968,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5968\" /]'),(45858,5968,'_et_pb_custom_css',''),(45859,5968,'_et_pb_gutter_width','3'),(45860,5968,'_et_builder_version','VB|Divi|4.23'),(45861,5968,'_et_pb_show_page_creation','off'),(45862,5968,'_wp_old_slug','february-11-2020-market-report'),(45863,5968,'_wp_old_slug','march-17th-2020-market-report'),(45864,5968,'_wp_old_slug','may-1th-2020-market-report-2'),(45865,5968,'_wp_old_slug','july-21st-2020-market-report-2'),(45866,5968,'_wp_old_slug','november-10th-2020-market-report'),(45867,5968,'_wp_old_slug','january-25-2022-market-report-2'),(45868,5968,'_wp_old_slug','january-3-2022-market-report'),(45869,5968,'_wp_old_slug','june-27-2023-market-report-2'),(45870,5968,'_global_colors_info','{}'),(45876,5968,'_dp_original','5945'),(45877,5968,'_edit_lock','1700063394:2'),(45878,5968,'_edit_last','2'),(45887,5973,'_wp_attached_file','2023/11/MarketReportfornewspaper-November-142023.pdf'),(45888,5973,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:48:\"MarketReportfornewspaper-November-142023-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"MarketReportfornewspaper-November-142023-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"MarketReportfornewspaper-November-142023-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"MarketReportfornewspaper-November-142023-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(45889,5974,'_wp_attached_file','2023/11/November-18-2023-Cow-Sale-4.pdf'),(45890,5974,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"November-18-2023-Cow-Sale-4-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"November-18-2023-Cow-Sale-4-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"November-18-2023-Cow-Sale-4-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"November-18-2023-Cow-Sale-4-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(45899,5977,'_wp_attached_file','2023/11/November-18-2023-Cow-Sale-5.pdf'),(45900,5977,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:35:\"November-18-2023-Cow-Sale-5-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1792;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"November-18-2023-Cow-Sale-5-pdf-182x300.jpg\";s:5:\"width\";i:182;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"November-18-2023-Cow-Sale-5-pdf-622x1024.jpg\";s:5:\"width\";i:622;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"November-18-2023-Cow-Sale-5-pdf-91x150.jpg\";s:5:\"width\";i:91;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(45905,5979,'_wp_page_template','default'),(45906,5979,'_et_pb_post_hide_nav','default'),(45907,5979,'_et_pb_page_layout','et_right_sidebar'),(45908,5979,'_et_pb_side_nav','off'),(45909,5979,'fusion_builder_status',''),(45910,5979,'_et_pb_use_builder','on'),(45911,5979,'_et_pb_first_image',''),(45912,5979,'_et_pb_truncate_post',''),(45913,5979,'_et_pb_truncate_post_date',''),(45914,5979,'_et_pb_old_content',''),(45915,5979,'_et_pb_built_for_post_type','page'),(45916,5979,'_et_pb_ab_subjects',''),(45917,5979,'_et_pb_enable_shortcode_tracking',''),(45918,5979,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"639\" /]'),(45919,5979,'_et_pb_custom_css',''),(45920,5979,'_et_pb_gutter_width','3'),(45921,5979,'_et_builder_version','VB|Divi|4.23.1'),(45922,5979,'_et_pb_show_page_creation','off'),(45923,5979,'_global_colors_info','{}'),(45924,5979,'_et_builder_dynamic_assets_loading_attr_threshold','7'),(45925,5979,'_thumbnail_id','0'),(45930,5979,'_dp_original','639'),(45991,5984,'_wp_attached_file','2023/11/2023-fall-calving-sale-order.pdf'),(45992,5984,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:36:\"2023-fall-calving-sale-order-pdf.jpg\";s:5:\"width\";i:1408;s:6:\"height\";i:1088;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"2023-fall-calving-sale-order-pdf-300x232.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"2023-fall-calving-sale-order-pdf-1024x791.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:791;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"2023-fall-calving-sale-order-pdf-150x116.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(46047,5989,'_wp_attached_file','2023/11/TuesdayNovember-21st-Feeder-Cattle-Consignments.pdf'),(46048,5989,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdayNovember-21st-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-21st-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdayNovember-21st-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-21st-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(46062,5994,'_thumbnail_id','786'),(46063,5994,'_et_post_bg_color','#ffffff'),(46064,5994,'_et_post_bg_layout','light'),(46065,5994,'_et_pb_show_title','on'),(46066,5994,'_et_pb_post_hide_nav','default'),(46067,5994,'_et_pb_page_layout','et_right_sidebar'),(46068,5994,'_et_pb_side_nav','off'),(46069,5994,'_et_pb_use_builder','on'),(46070,5994,'_et_pb_first_image',''),(46071,5994,'_et_pb_truncate_post',''),(46072,5994,'_et_pb_truncate_post_date',''),(46073,5994,'_et_pb_old_content',''),(46074,5994,'_et_pb_built_for_post_type','page'),(46075,5994,'_et_pb_ab_subjects',''),(46076,5994,'_et_pb_enable_shortcode_tracking',''),(46077,5994,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"5994\" /]'),(46078,5994,'_et_pb_custom_css',''),(46079,5994,'_et_pb_gutter_width','3'),(46080,5994,'_et_builder_version','VB|Divi|4.23'),(46081,5994,'_et_pb_show_page_creation','off'),(46082,5994,'_wp_old_slug','february-11-2020-market-report'),(46083,5994,'_wp_old_slug','march-17th-2020-market-report'),(46084,5994,'_wp_old_slug','may-1th-2020-market-report-2'),(46085,5994,'_wp_old_slug','july-21st-2020-market-report-2'),(46086,5994,'_wp_old_slug','november-10th-2020-market-report'),(46087,5994,'_wp_old_slug','january-25-2022-market-report-2'),(46088,5994,'_wp_old_slug','january-3-2022-market-report'),(46089,5994,'_wp_old_slug','june-27-2023-market-report-2'),(46090,5994,'_global_colors_info','{}'),(46096,5994,'_dp_original','5968'),(46097,5994,'_edit_lock','1700669447:2'),(46098,5994,'_edit_last','2'),(46112,3441,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46113,3441,'_et_dynamic_cached_attributes','a:0:{}'),(46114,3441,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46115,679,'_et_dynamic_cached_shortcodes','a:9:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:8;s:11:\"et_pb_blurb\";i:10;s:12:\"et_pb_button\";i:14;s:18:\"et_pb_contact_form\";i:20;s:22:\"et_pb_fullwidth_header\";i:31;s:11:\"et_pb_image\";i:50;s:10:\"et_pb_text\";}'),(46116,679,'_et_dynamic_cached_attributes','a:4:{s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:5:\"slide\";}s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"2\";}}'),(46117,679,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46118,679,'_et_builder_module_features_cache','a:2:{i:0;s:56:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"tb\":[],\"wpe\":[]}\";i:1;a:35:{s:46:\"et_pb_section_49f2b8c0899fd30631a06b0ebe5b6c4e\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_8bad0856f29161ec767542f90af6c066\";a:10:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"hov\";b:1;}s:46:\"et_pb_section_9e6f7d9369a7b88f6e88a8ac163c3148\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_fc8a19fac72337e6d87c3ea737836bdc\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d9ebbe0787bf9cba7404577ee64cdbee\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_213b5139a411d5be6f89d403d49f3674\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_711bd89ee9f93d46754a8c1bbe277c09\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_90e7d8ec07c23c7bed7071f3c90781ba\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_2c5f2e47d821b694b423d68a47ba45d5\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_2db04f7d7343c8dd301f333e8fc07be8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_9447accadee1287904623ce75326f6be\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_543e5f9431e6365d0e7dc505b27f6767\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_5453b5877c3f7c48c6ab68f647f850cb\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_7e5e406decbb79870da63f30b9c052f9\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_0598cd60c860594d9549d326d6ac5e0c\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_607e95e5faac9d632fe380c31c3a3051\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_e34d9a6f4cf8bf1f53391097a242ba6e\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d4d1d30500da3e9b4cfec6afdfa49c93\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_321dc34495bed4e4356efd7afe895e51\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_4c216cfc26dc6ab795740f4ad80f1f8e\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_feaf9ed6173c012c4cac5b7af33a4abf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_e219665973de319b4650410d34e02061\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_52018e3fa948d25eac601bd45b740cd6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_2f6d9cf1bb3243904ea11787a4f6a425\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_3d8608973fe2d3c581e721ebcce73b44\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_facf7d7aaa5834d27444f3d6fe0c1f38\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_a338f8534467fcc80c9df410f80adf0f\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_a69ad0ced38486b2b0753719464aa69e\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_2a441bb791491659b7d43be165ae9ac0\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_c4ea921c6e108e5d29f7e55dc58bd29a\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_5d63ffaeb51183273b1eb02bff1ee6b5\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_195b25aae4be76da0ab08ec1ac17da72\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d767fb9ddb6fd198c8aec30a038888b8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d3ddbd0e40fc3dcf2b15440ccca4d9be\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_aaead05979a44e1a60b62df4cef39134\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}'),(46123,1118,'_et_dynamic_cached_shortcodes','a:7:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:7;s:10:\"et_pb_blog\";i:10;s:12:\"et_pb_button\";i:20;s:22:\"et_pb_fullwidth_header\";i:50;s:10:\"et_pb_text\";}'),(46124,1118,'_et_dynamic_cached_attributes','a:3:{s:9:\"fullwidth\";a:2:{i:0;s:2:\"on\";i:1;s:3:\"off\";}s:15:\"animation_style\";a:1:{i:0;s:5:\"slide\";}s:10:\"hover_icon\";a:1:{i:0;s:6:\"%%49%%\";}}'),(46125,1118,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46130,1450,'_et_dynamic_cached_shortcodes','a:4:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:50;s:10:\"et_pb_text\";}'),(46131,1450,'_et_dynamic_cached_attributes','a:0:{}'),(46132,1450,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46133,723,'_et_dynamic_cached_shortcodes','a:10:{i:0;s:19:\"et_pb_contact_field\";i:1;s:13:\"et_pb_map_pin\";i:2;s:13:\"et_pb_section\";i:3;s:9:\"et_pb_row\";i:4;s:12:\"et_pb_column\";i:5;s:11:\"et_pb_blurb\";i:6;s:18:\"et_pb_contact_form\";i:7;s:22:\"et_pb_fullwidth_header\";i:8;s:9:\"et_pb_map\";i:9;s:10:\"et_pb_text\";}'),(46134,723,'_et_dynamic_cached_attributes','a:3:{s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:3:{i:0;s:5:\"slide\";i:1;s:4:\"fold\";i:2;s:4:\"fade\";}s:9:\"font_icon\";a:4:{i:0;s:7:\"%%249%%\";i:1;s:7:\"%%238%%\";i:2;s:7:\"%%264%%\";i:3;s:7:\"%%268%%\";}}'),(46135,723,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46136,723,'_et_builder_module_features_cache','a:2:{i:0;s:56:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"tb\":[],\"wpe\":[]}\";i:1;a:30:{s:46:\"et_pb_section_1e617bd16d52c7c4254a4cec4536e661\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_9d244d73e667e84e0fe418eb3d43ca20\";a:10:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"hov\";b:1;}s:46:\"et_pb_section_81816669ace3a3f9ecdd74cee87df3dc\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_407b14f5fccb3aae2e527df21c9ccbb0\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_131c9ae91dd22114f893adc9ca175ab0\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_07279e7abad8c48702e3104617f7948b\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_14616206d2cfc5e5a822cb541b1bf8b2\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_bcbcd71dad87537541f1c96100f930fd\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_0854e1b195dce3473d0da6788f37e9eb\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_8525e3c28b1d05e55017d689e6ae2240\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d9ebbe0787bf9cba7404577ee64cdbee\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_df8c3180594f5d5d73f4bcbf66914750\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_contact_form_20c66b7b7abb1921815b145468505e3c\";a:8:{s:4:\"glde\";a:7:{s:15:\"title_font_size\";s:2:\"26\";s:20:\"title_letter_spacing\";s:3:\"0px\";s:17:\"title_line_height\";s:3:\"1em\";s:17:\"captcha_font_size\";s:2:\"14\";s:20:\"form_field_font_size\";s:2:\"14\";s:25:\"form_field_letter_spacing\";s:3:\"0px\";s:22:\"form_field_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_00c12f6e2fd69698f39f3c4c7b5fcdd0\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_8b38936c2ee5fcb118521c00f34e75c9\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_d755820a39724480130ec1da468c5f4b\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_9ed34686024889f2517e9a75bece2ab2\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:52:\"et_pb_contact_field_f2730d26b1581f3fb55140f343c299bc\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_8cdf8ba1ad2299edecca4022f06ca120\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_73ec4c8ea19e13325a6517b1abee83d0\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_e1518487d19fa5fedf51965adba4c7c1\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d4d1d30500da3e9b4cfec6afdfa49c93\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_9c2e3604660ac665f48c4f9da2c2b509\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_433cf7bef317b7d67183544ed2c3b52c\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_blurb_f11cf8c3637243a6b1477ebf2e689f69\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_1bd07cf5a334de71772e536c66edae00\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_56b341e1a23021226edd48e146f22ed4\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_f08595692fe9c1f0622dbd4a60d90a77\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_map_pin_f38356b852c380b6f74e206b5ab2f5f1\";a:1:{s:4:\"anim\";b:1;}s:42:\"et_pb_map_a55a3d59c0dc9a72a7a4be247e849c6a\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}}}'),(46137,5994,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46138,5994,'_et_dynamic_cached_attributes','a:0:{}'),(46139,5994,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46140,5879,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46141,5879,'_et_dynamic_cached_attributes','a:0:{}'),(46142,5879,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46143,5839,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46144,5839,'_et_dynamic_cached_attributes','a:0:{}'),(46145,5839,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46146,2007,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46147,2007,'_et_dynamic_cached_attributes','a:0:{}'),(46148,2007,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46149,5968,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46150,5968,'_et_dynamic_cached_attributes','a:0:{}'),(46151,5968,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46152,5198,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46153,5198,'_et_dynamic_cached_attributes','a:0:{}'),(46154,5198,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46155,2629,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46156,2629,'_et_dynamic_cached_attributes','a:0:{}'),(46157,2629,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46158,1895,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46159,1895,'_et_dynamic_cached_attributes','a:0:{}'),(46160,1895,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46161,5126,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46162,5126,'_et_dynamic_cached_attributes','a:0:{}'),(46163,5126,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46164,3913,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46165,3913,'_et_dynamic_cached_attributes','a:0:{}'),(46166,3913,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46167,1017,'_et_dynamic_cached_shortcodes','a:6:{i:0;s:19:\"et_pb_contact_field\";i:1;s:13:\"et_pb_section\";i:2;s:9:\"et_pb_row\";i:3;s:12:\"et_pb_column\";i:4;s:18:\"et_pb_contact_form\";i:5;s:10:\"et_pb_text\";}'),(46168,1017,'_et_dynamic_cached_attributes','a:1:{s:15:\"animation_style\";a:1:{i:0;s:4:\"flip\";}}'),(46169,1017,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46170,714,'_et_dynamic_cached_shortcodes','a:6:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:20;s:22:\"et_pb_fullwidth_header\";i:50;s:10:\"et_pb_text\";}'),(46171,714,'_et_dynamic_cached_attributes','a:2:{s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:2:{i:0;s:5:\"slide\";i:1;s:4:\"zoom\";}}'),(46172,714,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46173,5994,'_et_builder_module_features_cache','a:2:{i:0;s:56:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"tb\":[],\"wpe\":[]}\";i:1;a:19:{s:46:\"et_pb_section_7d668aed0d5bdedffac52b290eae9d36\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dc6ace5e96424f3cedb35c78fbec407d\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_f36ce9620f73f9a2d0cb24e4f86e7a63\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_72c51ebb983b20a3e114cd9919b2d9e3\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_e1b013ef6bc9321f1ac1672fecf9ef06\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_5cc518d939583598f3d35a346e79e973\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_d1ec1d8e4a77a12094610db200b0fca1\";a:8:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9cfe251e2b60992a4b5f849f31a1f5eb\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_8f4120a41bb7dd1777889a63e24d66eb\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_8d3f15718c5507ff63dd1d1f5d00d2d6\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_94ea81aaaadd218cd5393a2a5eed8d48\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_d89e1c15de8004b46e58e83def5fafcf\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_a25fc71d28cf46498d289eb7d050f4fc\";a:8:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f7d41bdedcbbd74197333897affd94a5\";a:8:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_b047caac2415db102cffbdb8447b09d8\";a:8:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_430daa45fac79dda0e07f2b6b6c59e5b\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_345572164654f3ae5f8bcbb8548b6ef3\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_35b7423673f7ba6d8b474e7c39bbebc4\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_ba54282aeea4005aaa7e71da6c7a0af7\";a:8:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}'),(46174,5497,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46175,5497,'_et_dynamic_cached_attributes','a:0:{}'),(46176,5497,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46177,3222,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46178,3222,'_et_dynamic_cached_attributes','a:0:{}'),(46179,3222,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46180,4031,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46181,4031,'_et_dynamic_cached_attributes','a:0:{}'),(46182,4031,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46183,5804,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46184,5804,'_et_dynamic_cached_attributes','a:0:{}'),(46185,5804,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46186,4772,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46187,4772,'_et_dynamic_cached_attributes','a:0:{}'),(46188,4772,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46189,3390,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46190,3390,'_et_dynamic_cached_attributes','a:0:{}'),(46191,3390,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46192,4089,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46193,4089,'_et_dynamic_cached_attributes','a:0:{}'),(46194,4089,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46195,2458,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46196,2458,'_et_dynamic_cached_attributes','a:0:{}'),(46197,2458,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46198,4691,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46199,4691,'_et_dynamic_cached_attributes','a:0:{}'),(46200,4691,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46201,4527,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46202,4527,'_et_dynamic_cached_attributes','a:0:{}'),(46203,4527,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46204,5172,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46205,5172,'_et_dynamic_cached_attributes','a:0:{}'),(46206,5172,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46207,1005,'_et_dynamic_cached_shortcodes','a:6:{i:0;s:19:\"et_pb_contact_field\";i:1;s:13:\"et_pb_section\";i:2;s:9:\"et_pb_row\";i:3;s:12:\"et_pb_column\";i:4;s:18:\"et_pb_contact_form\";i:5;s:10:\"et_pb_text\";}'),(46208,1005,'_et_dynamic_cached_attributes','a:1:{s:15:\"animation_style\";a:1:{i:0;s:4:\"flip\";}}'),(46209,1005,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46210,5519,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46211,5519,'_et_dynamic_cached_attributes','a:0:{}'),(46212,5519,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46213,4072,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46214,4072,'_et_dynamic_cached_attributes','a:0:{}'),(46215,4072,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46220,2712,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46221,2712,'_et_dynamic_cached_attributes','a:0:{}'),(46222,2712,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46223,2751,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46224,2751,'_et_dynamic_cached_attributes','a:0:{}'),(46225,2751,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46226,4019,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46227,4019,'_et_dynamic_cached_attributes','a:0:{}'),(46228,4019,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46229,2944,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46230,2944,'_et_dynamic_cached_attributes','a:0:{}'),(46231,2944,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46236,5945,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46237,5945,'_et_dynamic_cached_attributes','a:0:{}'),(46238,5945,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46239,3800,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46240,3800,'_et_dynamic_cached_attributes','a:0:{}'),(46241,3800,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46242,2990,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46243,2990,'_et_dynamic_cached_attributes','a:0:{}'),(46244,2990,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46245,3822,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46246,3822,'_et_dynamic_cached_attributes','a:0:{}'),(46247,3822,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46248,2822,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46249,2822,'_et_dynamic_cached_attributes','a:0:{}'),(46250,2822,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46251,6000,'_wp_attached_file','2023/11/TuesdayNovember-28th-Feeder-Cattle-Consignments.pdf'),(46252,6000,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:55:\"TuesdayNovember-28th-Feeder-Cattle-Consignments-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-28th-Feeder-Cattle-Consignments-pdf-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:64:\"TuesdayNovember-28th-Feeder-Cattle-Consignments-pdf-791x1024.jpg\";s:5:\"width\";i:791;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:63:\"TuesdayNovember-28th-Feeder-Cattle-Consignments-pdf-116x150.jpg\";s:5:\"width\";i:116;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(46257,4230,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46258,4230,'_et_dynamic_cached_attributes','a:0:{}'),(46259,4230,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46260,3586,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46261,3586,'_et_dynamic_cached_attributes','a:0:{}'),(46262,3586,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46263,5926,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46264,5926,'_et_dynamic_cached_attributes','a:0:{}'),(46265,5926,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46266,5759,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46267,5759,'_et_dynamic_cached_attributes','a:0:{}'),(46268,5759,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46269,5769,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46270,5769,'_et_dynamic_cached_attributes','a:0:{}'),(46271,5769,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46272,2209,'_et_dynamic_cached_shortcodes','a:7:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:17;s:13:\"et_pb_divider\";i:20;s:22:\"et_pb_fullwidth_header\";i:50;s:10:\"et_pb_text\";}'),(46273,2209,'_et_dynamic_cached_attributes','a:2:{s:9:\"fullwidth\";a:1:{i:0;s:2:\"on\";}s:15:\"animation_style\";a:1:{i:0;s:5:\"slide\";}}'),(46274,2209,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46275,2209,'_et_builder_module_features_cache','a:2:{i:0;s:56:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"tb\":[],\"wpe\":[]}\";i:1;a:36:{s:46:\"et_pb_section_e5bdcae1a4ffca8f874fe6b774437daf\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_b501bd405e866295879026bca9577cd8\";a:10:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"hov\";b:1;}s:46:\"et_pb_section_7d668aed0d5bdedffac52b290eae9d36\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_8f4120a41bb7dd1777889a63e24d66eb\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_f36ce9620f73f9a2d0cb24e4f86e7a63\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_8f4120a41bb7dd1777889a63e24d66eb\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_e01f384613a29e19c98aea3c17354574\";a:4:{s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_69897870fcb501127dad94fb97e1390e\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_b572febeab75a9bb72e6bf8975c885cc\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_cae0d8c55369fb4c8cdb3f9670286b2e\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_7a744018aa2aa1b8c4b65539a44fd4eb\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_881a8e31aca8baaaf2d6a617ada5afd0\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_bf50d882fbb1b4118d5dc43719666b24\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_ae8432486e1f002eb2daa903b103a035\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_69c1a830daf81400bc16f472d84bcf7e\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_a364efe81588812eb78297bb14e99fe6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_e178bd7cd5b983d9dfa4d6316aecbc39\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_b269c088daed299c7ceff480c1883fd5\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_0ec7a97b05fff8ee54189162d7cb0e7f\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_bfb5422a207442a8d834ed08b2c5080d\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f960504b53778bc20624589bb8c80e68\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_9fc3df578a94aa13aa8ee456a39c6997\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_c9a2b979a6b8bc976cf07f35b09dc13e\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_7fce6c75ad1321f974afdaf59aee44b3\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_b4671a86669dc39b40fae86903324fcd\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_divider_34150a967651f231c96f2d5cc290c4ff\";a:4:{s:4:\"glde\";a:4:{s:13:\"divider_style\";s:5:\"solid\";s:16:\"divider_position\";s:3:\"top\";s:14:\"divider_weight\";s:1:\"1\";s:6:\"height\";s:1:\"1\";}s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_2a628617ec1ac1da858300de46f9a41b\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9a6bc0395e80f8c9844463f9c1441db4\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_fed95800d25d9c69a2e8a3d78394ce2a\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_43c80bca41a04a418b97e58f376d60da\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_67e1da3299325245603e086a615178d2\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_8bdad8ff4c6e3ec9b2c5cd98ee59d23d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_195b25aae4be76da0ab08ec1ac17da72\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d767fb9ddb6fd198c8aec30a038888b8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d3ddbd0e40fc3dcf2b15440ccca4d9be\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_aaead05979a44e1a60b62df4cef39134\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}'),(46284,5147,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46285,5147,'_et_dynamic_cached_attributes','a:0:{}'),(46286,5147,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46287,4808,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46288,4808,'_et_dynamic_cached_attributes','a:0:{}'),(46289,4808,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46290,5912,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46291,5912,'_et_dynamic_cached_attributes','a:0:{}'),(46292,5912,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46293,3895,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46294,3895,'_et_dynamic_cached_attributes','a:0:{}'),(46295,3895,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46296,2122,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46297,2122,'_et_dynamic_cached_attributes','a:0:{}'),(46298,2122,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46299,4749,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46300,4749,'_et_dynamic_cached_attributes','a:0:{}'),(46301,4749,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46302,3604,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46303,3604,'_et_dynamic_cached_attributes','a:0:{}'),(46304,3604,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46305,1881,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46306,1881,'_et_dynamic_cached_attributes','a:0:{}'),(46307,1881,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46308,1949,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46309,1949,'_et_dynamic_cached_attributes','a:0:{}'),(46310,1949,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46311,3648,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46312,3648,'_et_dynamic_cached_attributes','a:0:{}'),(46313,3648,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46314,3153,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46315,3153,'_et_dynamic_cached_attributes','a:0:{}');
INSERT INTO `b78GM7Ml_postmeta` VALUES (46316,3153,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46317,5064,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46318,5064,'_et_dynamic_cached_attributes','a:0:{}'),(46319,5064,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46320,4857,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46321,4857,'_et_dynamic_cached_attributes','a:0:{}'),(46322,4857,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46323,1540,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46324,1540,'_et_dynamic_cached_attributes','a:0:{}'),(46325,1540,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46326,5032,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46327,5032,'_et_dynamic_cached_attributes','a:0:{}'),(46328,5032,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46329,1023,'_et_dynamic_cached_shortcodes','a:6:{i:0;s:19:\"et_pb_contact_field\";i:1;s:13:\"et_pb_section\";i:2;s:9:\"et_pb_row\";i:3;s:12:\"et_pb_column\";i:4;s:18:\"et_pb_contact_form\";i:5;s:10:\"et_pb_text\";}'),(46330,1023,'_et_dynamic_cached_attributes','a:1:{s:15:\"animation_style\";a:1:{i:0;s:4:\"flip\";}}'),(46331,1023,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46332,4555,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46333,4555,'_et_dynamic_cached_attributes','a:0:{}'),(46334,4555,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46335,3418,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46336,3418,'_et_dynamic_cached_attributes','a:0:{}'),(46337,3418,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46338,2870,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46339,2870,'_et_dynamic_cached_attributes','a:0:{}'),(46340,2870,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46341,4622,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46342,4622,'_et_dynamic_cached_attributes','a:0:{}'),(46343,4622,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46344,1574,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46345,1574,'_et_dynamic_cached_attributes','a:0:{}'),(46346,1574,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46347,4733,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46348,4733,'_et_dynamic_cached_attributes','a:0:{}'),(46349,4733,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46350,3402,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46351,3402,'_et_dynamic_cached_attributes','a:0:{}'),(46352,3402,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46353,1856,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46354,1856,'_et_dynamic_cached_attributes','a:0:{}'),(46355,1856,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46356,5322,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46357,5322,'_et_dynamic_cached_attributes','a:0:{}'),(46358,5322,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46359,3550,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46360,3550,'_et_dynamic_cached_attributes','a:0:{}'),(46361,3550,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46362,3512,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46363,3512,'_et_dynamic_cached_attributes','a:0:{}'),(46364,3512,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46365,5619,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46366,5619,'_et_dynamic_cached_attributes','a:0:{}'),(46367,5619,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46368,4357,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46369,4357,'_et_dynamic_cached_attributes','a:0:{}'),(46370,4357,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46371,4178,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46372,4178,'_et_dynamic_cached_attributes','a:0:{}'),(46373,4178,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46374,3841,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46375,3841,'_et_dynamic_cached_attributes','a:0:{}'),(46376,3841,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46377,5718,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46378,5718,'_et_dynamic_cached_attributes','a:0:{}'),(46379,5718,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46380,4204,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46381,4204,'_et_dynamic_cached_attributes','a:0:{}'),(46382,4204,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46383,5343,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46384,5343,'_et_dynamic_cached_attributes','a:0:{}'),(46385,5343,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46386,4145,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46387,4145,'_et_dynamic_cached_attributes','a:0:{}'),(46388,4145,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46389,4248,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46390,4248,'_et_dynamic_cached_attributes','a:0:{}'),(46391,4248,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46392,5472,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46393,5472,'_et_dynamic_cached_attributes','a:0:{}'),(46394,5472,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46395,3693,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46396,3693,'_et_dynamic_cached_attributes','a:0:{}'),(46397,3693,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46398,1979,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46399,1979,'_et_dynamic_cached_attributes','a:0:{}'),(46400,1979,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46401,1837,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46402,1837,'_et_dynamic_cached_attributes','a:0:{}'),(46403,1837,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46404,2650,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46405,2650,'_et_dynamic_cached_attributes','a:0:{}'),(46406,2650,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46407,3192,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46408,3192,'_et_dynamic_cached_attributes','a:0:{}'),(46409,3192,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46410,5735,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46411,5735,'_et_dynamic_cached_attributes','a:0:{}'),(46412,5735,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46413,5270,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46414,5270,'_et_dynamic_cached_attributes','a:0:{}'),(46415,5270,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46416,4825,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46417,4825,'_et_dynamic_cached_attributes','a:0:{}'),(46418,4825,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46419,3033,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46420,3033,'_et_dynamic_cached_attributes','a:0:{}'),(46421,3033,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46422,4527,'_et_builder_module_features_cache','a:2:{i:0;s:56:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"tb\":[],\"wpe\":[]}\";i:1;a:9:{s:46:\"et_pb_section_7d668aed0d5bdedffac52b290eae9d36\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_8f4120a41bb7dd1777889a63e24d66eb\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_f36ce9620f73f9a2d0cb24e4f86e7a63\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_d7bc99acb1d038eae3db3c96455f736f\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_1841172d63a13950e00e353f82c73ce3\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_5cc518d939583598f3d35a346e79e973\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f4d699ba835502a0a956b09f99ccbcfd\";a:8:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_efca6fbe285bb492be50bd4175254971\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_8d3f15718c5507ff63dd1d1f5d00d2d6\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}'),(46423,4163,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46424,4163,'_et_dynamic_cached_attributes','a:0:{}'),(46425,4163,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46426,2857,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46427,2857,'_et_dynamic_cached_attributes','a:0:{}'),(46428,2857,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46429,2676,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46430,2676,'_et_dynamic_cached_attributes','a:0:{}'),(46431,2676,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46432,3874,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46433,3874,'_et_dynamic_cached_attributes','a:0:{}'),(46434,3874,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46435,3344,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46436,3344,'_et_dynamic_cached_attributes','a:0:{}'),(46437,3344,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46438,3865,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46439,3865,'_et_dynamic_cached_attributes','a:0:{}'),(46440,3865,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46441,1725,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46442,1725,'_et_dynamic_cached_attributes','a:0:{}'),(46443,1725,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46444,2697,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46445,2697,'_et_dynamic_cached_attributes','a:0:{}'),(46446,2697,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46447,3527,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46448,3527,'_et_dynamic_cached_attributes','a:0:{}'),(46449,3527,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46450,639,'_et_dynamic_cached_shortcodes','a:14:{i:0;s:18:\"et_pb_column_inner\";i:1;s:13:\"et_pb_map_pin\";i:2;s:11:\"et_pb_slide\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:15:\"et_pb_row_inner\";i:7;s:10:\"et_pb_blog\";i:8;s:12:\"et_pb_button\";i:9;s:22:\"et_pb_fullwidth_header\";i:10;s:22:\"et_pb_fullwidth_slider\";i:11;s:11:\"et_pb_image\";i:12;s:9:\"et_pb_map\";i:13;s:10:\"et_pb_text\";}'),(46451,639,'_et_dynamic_cached_attributes','a:7:{s:9:\"fullwidth\";a:2:{i:0;s:2:\"on\";i:2;s:3:\"off\";}s:15:\"animation_style\";a:2:{i:0;s:5:\"slide\";i:2;s:4:\"flip\";}s:9:\"specialty\";a:1:{i:0;s:2:\"on\";}s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"1\";}s:16:\"show_in_lightbox\";a:1:{i:0;s:2:\"on\";}s:10:\"hover_icon\";a:1:{i:0;s:17:\"&#x30;||divi||400\";}}'),(46452,639,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46453,639,'_et_builder_module_features_cache','a:2:{i:0;s:56:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"tb\":[],\"wpe\":[]}\";i:1;a:60:{s:46:\"et_pb_section_c34478f9f2bd0ce2b4aec0b43c75eee9\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_093ccb28b8dc8a1b03531ea132346371\";a:10:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"hov\";b:1;}s:46:\"et_pb_section_7d668aed0d5bdedffac52b290eae9d36\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_5131155b0bc69a347881fa965cdeed44\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_a6660090d595172f21e6d46d3c3ccbc5\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_a447e17110fcb3a1e78566812016bbe6\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_ecf3649ba063f2ddbbd7f48c5222a260\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_a2e666cab0e3014bba087dfcdcdb1085\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_1cbbf0b081502e29097e34b7e7ad7953\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_f2dc3c7fecdcad151180c04f819d99b3\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_0f86d8b6d955fe863dee2d3ba9bb9e31\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_1120c437301fdd3bec3a650d79b9f1f1\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_05ca35a1a1ce028025cc90604a32e637\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_009e1b2cd8ab3598ad501187ac1d735c\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_475715598bccc3169d0c12d8a243123d\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_5df382005410bbf4d62c1941331da081\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_57f5c5c4495ce792d41e0210055393dd\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_ced0257a7ca04bf6e6c563f75c758419\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_map_pin_f38356b852c380b6f74e206b5ab2f5f1\";a:1:{s:4:\"anim\";b:1;}s:42:\"et_pb_map_14fca050695c2f8e1f5b754e49ca4283\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_8f92a997e028fdcb9365e1b98a77c5fc\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_5605bd4d791a82546fd4af4fe463dfda\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_6394b998b16c915e1784894fea6998e0\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_7ad83af45f86c2645bed5301b3b947c4\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_661e5952f66b16d81351e3e5c3aae8d4\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_8d82d616fbb62ce3d4f92890d95a1fca\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_2d71dc6c95a33b96f094cce608b1d0cd\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_b205c0fa340cc41030551090951b322f\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_94915d39dcecaec0a7b2e426ac2bd32e\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ea4529f3c7773ccc1961db029d3f0df3\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4fde47a6e09c6e6ba4eadb3be6e31003\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_ef5eda878d4b1927a96336aca91db1d2\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_685158ebdd611f773418252736a6ec9b\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f960504b53778bc20624589bb8c80e68\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_11a5f2ed82dd2895840c2e7569300307\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f0120afd2ee9012c294a3682ed5ac0bb\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_0e4ec413f28a90ab4690efce597fc174\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66f60faece501249e74a78811cffc220\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_352c551bdb9abf37f663ced3bff3da03\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_da1d49c48f93e9d1784f6f947c9d1547\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_499712af0e4f4d937991b9fbab8597e9\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9138faeb00504db8c552eb862f407cfa\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_73485ba47a7a3a7b65395055bfe536f7\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_slider_d0fb6ebad8b8c5eb6e88ee3dc7307199\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"46\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"16\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_slide_60f06371500d567bc19693a80d1462ff\";a:6:{s:4:\"glde\";a:7:{s:16:\"header_font_size\";s:4:\"26px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:4:\"16px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_879b672b994197f73f18fc9e54adae85\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dad8774f97e7c911edac386033372f59\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_694d213bc81a56bc1b8fce9db19e1cfc\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_3cbf253f3b18877abade0a9169fe087c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_735185868ee3b7548a4975c35c2f45ba\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_713087107c20fffd2e91ffdcecf5f8ed\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_8f4120a41bb7dd1777889a63e24d66eb\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_f36ce9620f73f9a2d0cb24e4f86e7a63\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_blog_806fa5e99d2fbdb8ddb85d58c1b35f82\";a:7:{s:4:\"glde\";a:14:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:5:\"1.7em\";s:19:\"read_more_font_size\";s:4:\"14px\";s:21:\"read_more_line_height\";s:5:\"1.7em\";s:20:\"pagination_font_size\";s:2:\"14\";s:25:\"pagination_letter_spacing\";s:3:\"0px\";s:22:\"pagination_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_8595f6280ac4dbd5a111f8b85c952289\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_8bdad8ff4c6e3ec9b2c5cd98ee59d23d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_195b25aae4be76da0ab08ec1ac17da72\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d767fb9ddb6fd198c8aec30a038888b8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d3ddbd0e40fc3dcf2b15440ccca4d9be\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_aaead05979a44e1a60b62df4cef39134\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}'),(46454,1967,'_et_dynamic_cached_shortcodes','a:14:{i:0;s:18:\"et_pb_column_inner\";i:1;s:13:\"et_pb_map_pin\";i:2;s:11:\"et_pb_slide\";i:3;s:13:\"et_pb_section\";i:4;s:9:\"et_pb_row\";i:5;s:12:\"et_pb_column\";i:6;s:15:\"et_pb_row_inner\";i:7;s:10:\"et_pb_blog\";i:8;s:12:\"et_pb_button\";i:9;s:22:\"et_pb_fullwidth_header\";i:10;s:22:\"et_pb_fullwidth_slider\";i:11;s:11:\"et_pb_image\";i:12;s:9:\"et_pb_map\";i:13;s:10:\"et_pb_text\";}'),(46455,1967,'_et_dynamic_cached_attributes','a:7:{s:9:\"fullwidth\";a:2:{i:0;s:2:\"on\";i:2;s:3:\"off\";}s:15:\"animation_style\";a:2:{i:0;s:5:\"slide\";i:2;s:4:\"flip\";}s:9:\"specialty\";a:1:{i:0;s:2:\"on\";}s:17:\"use_custom_gutter\";a:1:{i:0;s:2:\"on\";}s:12:\"gutter_width\";a:1:{i:0;s:1:\"1\";}s:16:\"show_in_lightbox\";a:1:{i:0;s:2:\"on\";}s:10:\"hover_icon\";a:1:{i:0;s:17:\"&#x30;||divi||400\";}}'),(46456,1967,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:2:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";s:10:\"et-gf-lato\";s:75:\"Lato:100,100italic,300,300italic,regular,italic,700,700italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46457,1967,'_et_builder_module_features_cache','a:2:{i:0;s:56:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"tb\":[],\"wpe\":[]}\";i:1;a:60:{s:46:\"et_pb_section_c34478f9f2bd0ce2b4aec0b43c75eee9\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_header_093ccb28b8dc8a1b03531ea132346371\";a:10:{s:4:\"glde\";a:8:{s:21:\"scroll_down_icon_size\";s:4:\"50px\";s:17:\"subhead_font_size\";s:4:\"18px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:24:\"button_one_border_radius\";s:3:\"3px\";s:24:\"button_two_border_radius\";s:3:\"3px\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;s:3:\"hov\";b:1;}s:46:\"et_pb_section_7d668aed0d5bdedffac52b290eae9d36\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_5131155b0bc69a347881fa965cdeed44\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_a6660090d595172f21e6d46d3c3ccbc5\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_a447e17110fcb3a1e78566812016bbe6\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_ecf3649ba063f2ddbbd7f48c5222a260\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_a2e666cab0e3014bba087dfcdcdb1085\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_1cbbf0b081502e29097e34b7e7ad7953\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_f2dc3c7fecdcad151180c04f819d99b3\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_0f86d8b6d955fe863dee2d3ba9bb9e31\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_1120c437301fdd3bec3a650d79b9f1f1\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_05ca35a1a1ce028025cc90604a32e637\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_009e1b2cd8ab3598ad501187ac1d735c\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_475715598bccc3169d0c12d8a243123d\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_5df382005410bbf4d62c1941331da081\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_57f5c5c4495ce792d41e0210055393dd\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_ced0257a7ca04bf6e6c563f75c758419\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_map_pin_f38356b852c380b6f74e206b5ab2f5f1\";a:1:{s:4:\"anim\";b:1;}s:42:\"et_pb_map_14fca050695c2f8e1f5b754e49ca4283\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_8f92a997e028fdcb9365e1b98a77c5fc\";a:6:{s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_5605bd4d791a82546fd4af4fe463dfda\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_6394b998b16c915e1784894fea6998e0\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_7ad83af45f86c2645bed5301b3b947c4\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_661e5952f66b16d81351e3e5c3aae8d4\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:48:\"et_pb_row_inner_8d82d616fbb62ce3d4f92890d95a1fca\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:51:\"et_pb_column_inner_2d71dc6c95a33b96f094cce608b1d0cd\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_b205c0fa340cc41030551090951b322f\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_94915d39dcecaec0a7b2e426ac2bd32e\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_ea4529f3c7773ccc1961db029d3f0df3\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_4fde47a6e09c6e6ba4eadb3be6e31003\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_ef5eda878d4b1927a96336aca91db1d2\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_685158ebdd611f773418252736a6ec9b\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f960504b53778bc20624589bb8c80e68\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_11a5f2ed82dd2895840c2e7569300307\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_f0120afd2ee9012c294a3682ed5ac0bb\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_0e4ec413f28a90ab4690efce597fc174\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_66f60faece501249e74a78811cffc220\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_352c551bdb9abf37f663ced3bff3da03\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_da1d49c48f93e9d1784f6f947c9d1547\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_499712af0e4f4d937991b9fbab8597e9\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_9138faeb00504db8c552eb862f407cfa\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_73485ba47a7a3a7b65395055bfe536f7\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:55:\"et_pb_fullwidth_slider_d0fb6ebad8b8c5eb6e88ee3dc7307199\";a:7:{s:4:\"glde\";a:10:{s:16:\"header_font_size\";s:2:\"46\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"16\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_slide_60f06371500d567bc19693a80d1462ff\";a:6:{s:4:\"glde\";a:7:{s:16:\"header_font_size\";s:4:\"26px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:4:\"16px\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_879b672b994197f73f18fc9e54adae85\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_dad8774f97e7c911edac386033372f59\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_694d213bc81a56bc1b8fce9db19e1cfc\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_3cbf253f3b18877abade0a9169fe087c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_735185868ee3b7548a4975c35c2f45ba\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_713087107c20fffd2e91ffdcecf5f8ed\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_8f4120a41bb7dd1777889a63e24d66eb\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_f36ce9620f73f9a2d0cb24e4f86e7a63\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_blog_806fa5e99d2fbdb8ddb85d58c1b35f82\";a:7:{s:4:\"glde\";a:14:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:5:\"1.7em\";s:19:\"read_more_font_size\";s:4:\"14px\";s:21:\"read_more_line_height\";s:5:\"1.7em\";s:20:\"pagination_font_size\";s:2:\"14\";s:25:\"pagination_letter_spacing\";s:3:\"0px\";s:22:\"pagination_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_8595f6280ac4dbd5a111f8b85c952289\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_8bdad8ff4c6e3ec9b2c5cd98ee59d23d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_195b25aae4be76da0ab08ec1ac17da72\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d767fb9ddb6fd198c8aec30a038888b8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d3ddbd0e40fc3dcf2b15440ccca4d9be\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_aaead05979a44e1a60b62df4cef39134\";a:5:{s:4:\"tesh\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}}}'),(46458,2071,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46459,2071,'_et_dynamic_cached_attributes','a:0:{}'),(46460,2071,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46461,6007,'_thumbnail_id','786'),(46462,6007,'_et_post_bg_color','#ffffff'),(46463,6007,'_et_post_bg_layout','light'),(46464,6007,'_et_pb_show_title','on'),(46465,6007,'_et_pb_post_hide_nav','default'),(46466,6007,'_et_pb_page_layout','et_right_sidebar'),(46467,6007,'_et_pb_side_nav','off'),(46468,6007,'_et_pb_use_builder','on'),(46469,6007,'_et_pb_first_image',''),(46470,6007,'_et_pb_truncate_post',''),(46471,6007,'_et_pb_truncate_post_date',''),(46472,6007,'_et_pb_old_content',''),(46473,6007,'_et_pb_built_for_post_type','page'),(46474,6007,'_et_pb_ab_subjects',''),(46475,6007,'_et_pb_enable_shortcode_tracking',''),(46476,6007,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"6007\" /]'),(46477,6007,'_et_pb_custom_css',''),(46478,6007,'_et_pb_gutter_width','3'),(46479,6007,'_et_builder_version','VB|Divi|4.23'),(46480,6007,'_et_pb_show_page_creation','off'),(46481,6007,'_wp_old_slug','february-11-2020-market-report'),(46482,6007,'_wp_old_slug','march-17th-2020-market-report'),(46483,6007,'_wp_old_slug','may-1th-2020-market-report-2'),(46484,6007,'_wp_old_slug','july-21st-2020-market-report-2'),(46485,6007,'_wp_old_slug','november-10th-2020-market-report'),(46486,6007,'_wp_old_slug','january-25-2022-market-report-2'),(46487,6007,'_wp_old_slug','january-3-2022-market-report'),(46488,6007,'_wp_old_slug','june-27-2023-market-report-2'),(46489,6007,'_global_colors_info','{}'),(46495,6007,'_dp_original','5994'),(46496,6007,'_edit_lock','1701276089:2'),(46497,6007,'_edit_last','2'),(46499,6007,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46500,6007,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46501,6007,'_et_dynamic_cached_attributes','a:0:{}'),(46502,4000,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46503,4000,'_et_dynamic_cached_attributes','a:0:{}'),(46504,4000,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}'),(46505,4978,'_et_dynamic_cached_shortcodes','a:5:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:50;s:10:\"et_pb_text\";}'),(46506,4978,'_et_dynamic_cached_attributes','a:0:{}'),(46507,4978,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:12:\"et-gf-nunito\";s:105:\"Nunito:200,200italic,300,300italic,regular,italic,600,600italic,700,700italic,800,800italic,900,900italic\";}s:6:\"subset\";a:2:{i:0;s:5:\"latin\";i:1;s:9:\"latin-ext\";}s:9:\"cache_key\";s:75:\"{\"gph\":-1,\"divi\":\"4.23.1\",\"wp\":\"5.8.8\",\"enable_all_character_sets\":\"false\"}\";}');
/*!40000 ALTER TABLE `b78GM7Ml_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_posts`
--

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

--
-- Dumping data for table `b78GM7Ml_posts`
--

LOCK TABLES `b78GM7Ml_posts` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_posts` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_posts` VALUES (3,1,'2019-03-31 22:45:01','2019-03-31 22:45:01','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: http://kingsvillelivestock.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An 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.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If 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.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If 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.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If 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.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When 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 &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If 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.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles 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.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These 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.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If 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.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For 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.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If 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.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2019-03-31 22:45:01','2019-03-31 22:45:01','',0,'http://hpgmediatest.com/driftwood-media/?page_id=3',0,'page','',0),(5,1,'2019-04-04 00:11:19','2019-04-04 00:11:19','<label> Your Name (required)\r\n    [text* your-name] </label>\r\n\r\n<label> Your Email (required)\r\n    [email* your-email] </label>\r\n\r\n<label> Subject\r\n    [text your-subject] </label>\r\n\r\n<label> Your Message\r\n    [textarea your-message] </label>\r\n\r\n[submit \"Send\"]\n1\nHPG Media \"[your-subject]\"\nHPG Media <wordpress@hpgmediatest.com>\njustin@hpgmedia.com\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on HPG Media (http://kingsvillelivestock.com)\nReply-To: [your-email]\n\n\n\n\nDriftwood Media \"[your-subject]\"\nDriftwood Media <wordpress@hpgmediatest.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Driftwood Media (http://kingsvillelivestock.com)\nReply-To: justin@hpgmedia.com\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2019-11-23 17:33:41','2019-11-23 17:33:41','',0,'http://hpgmediatest.com/driftwood-media/?post_type=wpcf7_contact_form&#038;p=5',0,'wpcf7_contact_form','',0),(29,1,'2019-04-12 00:50:45','2019-04-12 00:50:45','','Homepage Slide 1','','publish','closed','closed','','homepage-slide-1','','','2019-05-17 01:35:03','2019-05-17 01:35:03','',0,'http://hpgmediatest.com/driftwood-media/?post_type=slide&#038;p=29',0,'slide','',0),(62,1,'2019-04-16 05:16:29','2019-04-16 05:16:29','[fusion_builder_column type=\"1_2\" layout=\"1_2\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_color=\"\" background_image=\"\" background_image_id=\"\" background_position=\"left top\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius=\"\" box_shadow=\"no\" dimension_box_shadow=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" last=\"no\"][fusion_title hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"left\" size=\"1\" font_size=\"\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\"]\r\n\r\nLet\'s Get Started\r\n\r\n[/fusion_title][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n\r\n[contact-form-7 id=\"5\" title=\"Contact form 1\"]\r\n\r\n[/fusion_text][/fusion_builder_column]','contact 1','','publish','closed','closed','','contact-1','','','2019-04-16 05:16:29','2019-04-16 05:16:29','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/contact-1/',0,'fusion_element','',0),(172,1,'2019-04-26 15:33:05','2019-04-26 15:33:05','[fusion_builder_column type=\"1_3\" layout=\"1_3\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" undefined=\"\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.6\" animation_offset=\"\" last=\"no\" ][fusion_global id=\"173\"][/fusion_builder_column]','Brand Awareness Image','','publish','closed','closed','','brand-awareness-image','','','2019-05-09 21:15:52','2019-05-09 21:15:52','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/brand-awareness-image/',0,'fusion_element','',0),(173,1,'2019-04-26 15:33:15','2019-04-26 15:33:15','[fusion_imageframe image_id=\"162|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" ]http://kingsvillelivestock.com/wp-content/uploads/2019/04/BrandAwareness-5.png[/fusion_imageframe]','Brand Awareness Image','','publish','closed','closed','','brand-awareness-image-2','','','2019-05-09 21:40:34','2019-05-09 21:40:34','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/brand-awareness-image-2/',0,'fusion_element','',0),(174,1,'2019-04-26 15:33:32','2019-04-26 15:33:32','[fusion_builder_column type=\"1_3\" layout=\"1_3\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" undefined=\"\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.6\" animation_offset=\"\" last=\"no\" ][fusion_global id=\"175\"][/fusion_builder_column]','Photography Image','','publish','closed','closed','','photography-image','','','2019-05-09 21:14:04','2019-05-09 21:14:04','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/photography-image/',0,'fusion_element','',0),(175,1,'2019-04-26 15:33:38','2019-04-26 15:33:38','[fusion_imageframe image_id=\"164|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" ]http://kingsvillelivestock.com/wp-content/uploads/2019/04/Photography.png[/fusion_imageframe]','Photography Image','','publish','closed','closed','','photography-image-2','','','2019-05-09 21:14:03','2019-05-09 21:14:03','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/photography-image-2/',0,'fusion_element','',0),(176,1,'2019-04-26 15:33:47','2019-04-26 15:33:47','[fusion_builder_column type=\"1_3\" layout=\"1_3\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" undefined=\"\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.6\" animation_offset=\"\" last=\"no\" ][fusion_global id=\"177\"][/fusion_builder_column]','Events Image','','publish','closed','closed','','events-image','','','2019-05-09 21:14:03','2019-05-09 21:14:03','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/events-image/',0,'fusion_element','',0),(177,1,'2019-04-26 15:33:52','2019-04-26 15:33:52','[fusion_imageframe image_id=\"170|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" ]http://kingsvillelivestock.com/wp-content/uploads/2019/04/Events.png[/fusion_imageframe]','Events Image','','publish','closed','closed','','events-image-2','','','2019-05-09 21:14:03','2019-05-09 21:14:03','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/events-image-2/',0,'fusion_element','',0),(178,1,'2019-04-26 15:34:05','2019-04-26 15:34:05','[fusion_builder_column type=\"1_3\" layout=\"1_3\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"#ffffff\" background_image=\"\" background_position=\"left top\" undefined=\"\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"-21px\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.6\" animation_offset=\"\" last=\"no\" ][fusion_title hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\"]<p>Social Media Management</p>[/fusion_title][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<p>Text Here</p>[/fusion_text][/fusion_builder_column]','Brand Awareness Text','','publish','closed','closed','','brand-awareness-text','','','2019-05-09 21:14:56','2019-05-09 21:14:56','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/brand-awareness-text/',0,'fusion_element','',0),(179,1,'2019-04-26 15:34:27','2019-04-26 15:34:27','[fusion_builder_column type=\"1_3\" layout=\"1_3\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"#ffffff\" background_image=\"\" background_position=\"left top\" undefined=\"\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"-21px\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.6\" animation_offset=\"\" last=\"no\" ][fusion_title hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\"]\n\nBrand Photography\n\n[/fusion_title][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\n\nWith a focus on getting your brand out to all mediums, we recommend and offer our high-end photography.\n\n[/fusion_text][/fusion_builder_column]','Photography Text','','publish','closed','closed','','photography-text','','','2019-05-09 21:14:03','2019-05-09 21:14:03','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/photography-text/',0,'fusion_element','',0),(180,1,'2019-04-26 15:34:41','2019-04-26 15:34:41','[fusion_title  hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\"]<p>Brand Photography</p>[/fusion_title]','Brand Awareness Text','','publish','closed','closed','','brand-awareness-text-2','','','2019-05-17 01:32:31','2019-05-17 01:32:31','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/brand-awareness-text-2/',0,'fusion_element','',0),(184,1,'2019-04-26 15:36:12','2019-04-26 15:36:12','[fusion_imageframe image_id=\"170|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" ]http://kingsvillelivestock.com/wp-content/uploads/2019/04/Events.png[/fusion_imageframe]','Events Image','','inherit','closed','closed','','177-revision-v1','','','2019-04-26 15:36:12','2019-04-26 15:36:12','',177,'http://hpgmediatest.com/driftwood-media/2019/04/26/177-revision-v1/',0,'revision','',0),(185,1,'2019-04-26 15:36:12','2019-04-26 15:36:12','[fusion_imageframe image_id=\"164|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" ]http://kingsvillelivestock.com/wp-content/uploads/2019/04/Photography.png[/fusion_imageframe]','Photography Image','','inherit','closed','closed','','175-revision-v1','','','2019-04-26 15:36:12','2019-04-26 15:36:12','',175,'http://hpgmediatest.com/driftwood-media/2019/04/26/175-revision-v1/',0,'revision','',0),(187,1,'2019-04-26 15:36:12','2019-04-26 15:36:12','[fusion_title hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\" ]\r\n\r\nBrand Awareness\r\n\r\n[/fusion_title]','Brand Awareness Text','','inherit','closed','closed','','180-revision-v1','','','2019-04-26 15:36:12','2019-04-26 15:36:12','',180,'http://hpgmediatest.com/driftwood-media/2019/04/26/180-revision-v1/',0,'revision','',0),(283,1,'2019-04-26 15:37:16','2019-04-26 15:37:16','[fusion_builder_column type=\"1_1\" layout=\"1_3\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"#ffffff\" background_image=\"\" background_position=\"left top\" undefined=\"\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"-21px\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.6\" animation_offset=\"\" last=\"no\" ][fusion_title hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\"]\r\n\r\nBrand Photography\r\n\r\n[/fusion_title][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n\r\nWith a focus on getting your brand out to all mediums, we recommend and offer our high-end photography.\r\n\r\n[/fusion_text][/fusion_builder_column]','Photography Text','','inherit','closed','closed','','179-revision-v1','','','2019-04-26 15:37:16','2019-04-26 15:37:16','',179,'http://hpgmediatest.com/driftwood-media/2019/04/26/179-revision-v1/',0,'revision','',0),(286,1,'2019-04-26 15:37:16','2019-04-26 15:37:16','[fusion_global id=\"179\"]','Photography Text','','inherit','closed','closed','','179-revision-v1','','','2019-04-26 15:37:16','2019-04-26 15:37:16','',179,'http://hpgmediatest.com/driftwood-media/2019/04/26/179-revision-v1/',0,'revision','',0),(289,1,'2019-04-26 15:37:16','2019-04-26 15:37:16','[fusion_builder_column type=\"1_1\" layout=\"1_3\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" undefined=\"\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.6\" animation_offset=\"\" last=\"no\" ][fusion_global id=\"177\"][/fusion_builder_column]','Events Image','','inherit','closed','closed','','176-revision-v1','','','2019-04-26 15:37:16','2019-04-26 15:37:16','',176,'http://hpgmediatest.com/driftwood-media/2019/04/26/176-revision-v1/',0,'revision','',0),(290,1,'2019-04-26 15:37:16','2019-04-26 15:37:16','[fusion_global id=\"176\"]','Events Image','','inherit','closed','closed','','176-revision-v1','','','2019-04-26 15:37:16','2019-04-26 15:37:16','',176,'http://hpgmediatest.com/driftwood-media/2019/04/26/176-revision-v1/',0,'revision','',0),(297,1,'2019-04-26 15:37:23','2019-04-26 15:37:23','[fusion_builder_column type=\"1_1\" layout=\"1_3\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" undefined=\"\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.6\" animation_offset=\"\" last=\"no\" ][fusion_global id=\"177\"][/fusion_builder_column]','Events Image','','inherit','closed','closed','','176-revision-v1','','','2019-04-26 15:37:23','2019-04-26 15:37:23','',176,'http://hpgmediatest.com/driftwood-media/2019/04/26/176-revision-v1/',0,'revision','',0),(298,1,'2019-04-26 15:37:23','2019-04-26 15:37:23','[fusion_global id=\"176\"]','Events Image','','inherit','closed','closed','','176-revision-v1','','','2019-04-26 15:37:23','2019-04-26 15:37:23','',176,'http://hpgmediatest.com/driftwood-media/2019/04/26/176-revision-v1/',0,'revision','',0),(299,1,'2019-04-26 15:37:23','2019-04-26 15:37:23','[fusion_builder_column type=\"1_1\" layout=\"1_3\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"#ffffff\" background_image=\"\" background_position=\"left top\" undefined=\"\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"-21px\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.6\" animation_offset=\"\" last=\"no\" ][fusion_title hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\"]\r\n\r\nBrand Photography\r\n\r\n[/fusion_title][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n\r\nWith a focus on getting your brand out to all mediums, we recommend and offer our high-end photography.\r\n\r\n[/fusion_text][/fusion_builder_column]','Photography Text','','inherit','closed','closed','','179-revision-v1','','','2019-04-26 15:37:23','2019-04-26 15:37:23','',179,'http://hpgmediatest.com/driftwood-media/2019/04/26/179-revision-v1/',0,'revision','',0),(300,1,'2019-04-26 15:37:23','2019-04-26 15:37:23','[fusion_global id=\"179\"]','Photography Text','','inherit','closed','closed','','179-revision-v1','','','2019-04-26 15:37:23','2019-04-26 15:37:23','',179,'http://hpgmediatest.com/driftwood-media/2019/04/26/179-revision-v1/',0,'revision','',0),(333,1,'2019-04-26 15:38:41','2019-04-26 15:38:41','[fusion_builder_column type=\"1_1\" layout=\"1_3\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" undefined=\"\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.6\" animation_offset=\"\" last=\"no\" ][fusion_global id=\"175\"][/fusion_builder_column]','Photography Image','','inherit','closed','closed','','174-revision-v1','','','2019-04-26 15:38:41','2019-04-26 15:38:41','',174,'http://hpgmediatest.com/driftwood-media/2019/04/26/174-revision-v1/',0,'revision','',0),(334,1,'2019-04-26 15:38:41','2019-04-26 15:38:41','[fusion_global id=\"174\"]','Photography Image','','inherit','closed','closed','','174-revision-v1','','','2019-04-26 15:38:41','2019-04-26 15:38:41','',174,'http://hpgmediatest.com/driftwood-media/2019/04/26/174-revision-v1/',0,'revision','',0),(337,1,'2019-04-26 15:38:44','2019-04-26 15:38:44','[fusion_builder_column type=\"1_1\" layout=\"1_3\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" undefined=\"\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.6\" animation_offset=\"\" last=\"no\" ][fusion_global id=\"175\"][/fusion_builder_column]','Photography Image','','inherit','closed','closed','','174-revision-v1','','','2019-04-26 15:38:44','2019-04-26 15:38:44','',174,'http://hpgmediatest.com/driftwood-media/2019/04/26/174-revision-v1/',0,'revision','',0),(338,1,'2019-04-26 15:38:44','2019-04-26 15:38:44','[fusion_global id=\"174\"]','Photography Image','','inherit','closed','closed','','174-revision-v1','','','2019-04-26 15:38:44','2019-04-26 15:38:44','',174,'http://hpgmediatest.com/driftwood-media/2019/04/26/174-revision-v1/',0,'revision','',0),(339,1,'2019-04-26 15:39:15','2019-04-26 15:39:15','[fusion_builder_column type=\"1_3\" layout=\"1_3\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"#ffffff\" background_image=\"\" background_position=\"left top\" undefined=\"\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"-21px\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.6\" animation_offset=\"\" last=\"no\" ][fusion_title hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\"]\r\n\r\nBrand Photography\r\n\r\n[/fusion_title][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n\r\nWith a focus on getting your brand out to all mediums, we recommend and offer our high-end photography.\r\n\r\n[/fusion_text][/fusion_builder_column]','Photography Text','','inherit','closed','closed','','179-revision-v1','','','2019-04-26 15:39:15','2019-04-26 15:39:15','',179,'http://hpgmediatest.com/driftwood-media/2019/04/26/179-revision-v1/',0,'revision','',0),(341,1,'2019-04-26 15:39:15','2019-04-26 15:39:15','[fusion_builder_column type=\"1_3\" layout=\"1_3\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" undefined=\"\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.6\" animation_offset=\"\" last=\"no\" ][fusion_global id=\"177\"][/fusion_builder_column]','Events Image','','inherit','closed','closed','','176-revision-v1','','','2019-04-26 15:39:15','2019-04-26 15:39:15','',176,'http://hpgmediatest.com/driftwood-media/2019/04/26/176-revision-v1/',0,'revision','',0),(342,1,'2019-04-26 15:39:15','2019-04-26 15:39:15','[fusion_builder_column type=\"1_3\" layout=\"1_3\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" undefined=\"\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.6\" animation_offset=\"\" last=\"no\" ][fusion_global id=\"175\"][/fusion_builder_column]','Photography Image','','inherit','closed','closed','','174-revision-v1','','','2019-04-26 15:39:15','2019-04-26 15:39:15','',174,'http://hpgmediatest.com/driftwood-media/2019/04/26/174-revision-v1/',0,'revision','',0),(433,1,'2019-05-09 21:14:40','2019-05-09 21:14:40','[fusion_global id=\"178\"]','Brand Awareness Text','','inherit','closed','closed','','178-revision-v1','','','2019-05-09 21:14:40','2019-05-09 21:14:40','',178,'http://hpgmediatest.com/driftwood-media/2019/05/09/178-revision-v1/',0,'revision','',0),(438,1,'2019-05-09 21:14:54','2019-05-09 21:14:54','[fusion_builder_column type=\"1_3\" layout=\"1_3\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"#ffffff\" background_image=\"\" background_position=\"left top\" undefined=\"\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"-21px\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.6\" animation_offset=\"\" last=\"no\" ][fusion_title hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\"]<p>Media Relations &amp; Events</p>[/fusion_title][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<p>Driftwood has the organized capability to set up an entire tailored event and help with facilitating tradeshow support. We contact our tried and true media outlets for coverage of your product to ensure a great launch is held around your brand.</p>[/fusion_text][/fusion_builder_column]','Brand Awareness Text','','inherit','closed','closed','','178-revision-v1','','','2019-05-09 21:14:54','2019-05-09 21:14:54','',178,'http://hpgmediatest.com/driftwood-media/2019/05/09/178-revision-v1/',0,'revision','',0),(439,1,'2019-05-09 21:14:54','2019-05-09 21:14:54','[fusion_global id=\"178\"]','Brand Awareness Text','','inherit','closed','closed','','178-revision-v1','','','2019-05-09 21:14:54','2019-05-09 21:14:54','',178,'http://hpgmediatest.com/driftwood-media/2019/05/09/178-revision-v1/',0,'revision','',0),(444,1,'2019-05-09 21:14:56','2019-05-09 21:14:56','[fusion_builder_column type=\"1_3\" layout=\"1_3\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"#ffffff\" background_image=\"\" background_position=\"left top\" undefined=\"\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"20px\" padding_right=\"20px\" padding_bottom=\"20px\" padding_left=\"20px\" margin_top=\"-21px\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.6\" animation_offset=\"\" last=\"no\" ][fusion_title hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\"]<p>Social Media Management</p>[/fusion_title][fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<p>Text Here</p>[/fusion_text][/fusion_builder_column]','Brand Awareness Text','','inherit','closed','closed','','178-revision-v1','','','2019-05-09 21:14:56','2019-05-09 21:14:56','',178,'http://hpgmediatest.com/driftwood-media/2019/05/09/178-revision-v1/',0,'revision','',0),(445,1,'2019-05-09 21:14:56','2019-05-09 21:14:56','[fusion_global id=\"178\"]','Brand Awareness Text','','inherit','closed','closed','','178-revision-v1','','','2019-05-09 21:14:56','2019-05-09 21:14:56','',178,'http://hpgmediatest.com/driftwood-media/2019/05/09/178-revision-v1/',0,'revision','',0),(450,1,'2019-05-09 21:15:09','2019-05-09 21:15:09','[fusion_title hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\" ]\r\n\r\nMedia Relations &amp; Events\r\n\r\n[/fusion_title]','Media Relations Title','','publish','closed','closed','','media-relations-title','','','2019-05-09 21:40:34','2019-05-09 21:40:34','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/media-relations-title/',0,'fusion_element','',0),(455,1,'2019-05-09 21:15:36','2019-05-09 21:15:36','[fusion_title hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\" ]\r\n\r\nSocial Media Management\r\n\r\n[/fusion_title]','Social Media Title','','publish','closed','closed','','social-media-title','','','2019-05-09 21:40:33','2019-05-09 21:40:33','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/social-media-title/',0,'fusion_element','',0),(456,1,'2019-05-09 21:15:37','2019-05-09 21:15:37','[fusion_builder_column type=\"1_3\" layout=\"1_3\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" undefined=\"\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.6\" animation_offset=\"\" last=\"no\" ][fusion_imageframe image_id=\"170|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]http://kingsvillelivestock.com/wp-content/uploads/2019/04/Events.png[/fusion_imageframe][/fusion_builder_column]','Brand Awareness Image','','inherit','closed','closed','','172-revision-v1','','','2019-05-09 21:15:37','2019-05-09 21:15:37','',172,'http://hpgmediatest.com/driftwood-media/2019/05/09/172-revision-v1/',0,'revision','',0),(462,1,'2019-05-09 21:15:50','2019-05-09 21:15:50','[fusion_builder_column type=\"1_3\" layout=\"1_3\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" undefined=\"\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.6\" animation_offset=\"\" last=\"no\" ][fusion_imageframe image_id=\"170|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]http://kingsvillelivestock.com/wp-content/uploads/2019/04/Events.png[/fusion_imageframe][/fusion_builder_column]','Brand Awareness Image','','inherit','closed','closed','','172-revision-v1','','','2019-05-09 21:15:50','2019-05-09 21:15:50','',172,'http://hpgmediatest.com/driftwood-media/2019/05/09/172-revision-v1/',0,'revision','',0),(463,1,'2019-05-09 21:15:50','2019-05-09 21:15:50','[fusion_global id=\"172\"]','Brand Awareness Image','','inherit','closed','closed','','172-revision-v1','','','2019-05-09 21:15:50','2019-05-09 21:15:50','',172,'http://hpgmediatest.com/driftwood-media/2019/05/09/172-revision-v1/',0,'revision','',0),(467,1,'2019-05-09 21:15:52','2019-05-09 21:15:52','[fusion_builder_column type=\"1_3\" layout=\"1_3\" spacing=\"\" center_content=\"no\" link=\"\" target=\"_self\" min_height=\"none\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" background_image_id=\"\" background_color=\"\" background_image=\"\" background_position=\"left top\" undefined=\"\" background_repeat=\"no-repeat\" hover_type=\"none\" border_size=\"0\" border_color=\"\" border_style=\"solid\" border_position=\"all\" border_radius_top_left=\"\" border_radius_top_right=\"\" border_radius_bottom_left=\"\" border_radius_bottom_right=\"\" box_shadow=\"no\" box_shadow_vertical=\"\" box_shadow_horizontal=\"\" box_shadow_blur=\"0\" box_shadow_spread=\"0\" box_shadow_color=\"\" box_shadow_style=\"\" padding_top=\"\" padding_right=\"\" padding_bottom=\"\" padding_left=\"\" margin_top=\"\" margin_bottom=\"\" animation_type=\"fade\" animation_direction=\"up\" animation_speed=\"0.6\" animation_offset=\"\" last=\"no\" ][fusion_global id=\"173\"][/fusion_builder_column]','Brand Awareness Image','','inherit','closed','closed','','172-revision-v1','','','2019-05-09 21:15:52','2019-05-09 21:15:52','',172,'http://hpgmediatest.com/driftwood-media/2019/05/09/172-revision-v1/',0,'revision','',0),(468,1,'2019-05-09 21:15:51','2019-05-09 21:15:51','[fusion_global id=\"172\"]','Brand Awareness Image','','inherit','closed','closed','','172-revision-v1','','','2019-05-09 21:15:51','2019-05-09 21:15:51','',172,'http://hpgmediatest.com/driftwood-media/2019/05/09/172-revision-v1/',0,'revision','',0),(470,1,'2019-05-09 21:16:11','2019-05-09 21:16:11','[fusion_imageframe image_id=\"170|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" ]http://kingsvillelivestock.com/wp-content/uploads/2019/04/Events.png[/fusion_imageframe]','Media Relations Main Image','','publish','closed','closed','','media-relations-main-image','','','2019-05-09 21:40:34','2019-05-09 21:40:34','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/media-relations-main-image/',0,'fusion_element','',0),(479,1,'2019-05-09 21:17:19','2019-05-09 21:17:19','[fusion_text  columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<p>With almost 2 decades behind the lens, one of HPG Media\'s biggest assets to any business is brand imagery.</p>[/fusion_text]','brand awareness test','','publish','closed','closed','','brand-awareness-test','','','2019-05-17 01:33:55','2019-05-17 01:33:55','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/brand-awareness-test/',0,'fusion_element','',0),(503,1,'2019-05-09 21:19:32','2019-05-09 21:19:32','[fusion_title hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\" ]\r\n\r\nConsulting Strategy\r\n\r\n[/fusion_title]','Consulting Strategy Title','','publish','closed','closed','','consulting-strategy-title','','','2019-05-17 01:28:56','2019-05-17 01:28:56','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/consulting-strategy-title/',0,'fusion_element','',0),(506,1,'2019-05-09 21:19:47','2019-05-09 21:19:47','[fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" ]\r\n<p class=\"p1\"><span class=\"s1\">Strategic planning several months prior to major announcements is critical for generating positive publicity during times of key activity. We will proactively design launch strategies that revolve around your business and category needs. </span></p>\r\n[/fusion_text]','consulting strategy text','','publish','closed','closed','','consulting-strategy-text','','','2019-05-17 01:28:56','2019-05-17 01:28:56','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/consulting-strategy-text/',0,'fusion_element','',0),(513,1,'2019-05-09 21:20:22','2019-05-09 21:20:22','[fusion_text  columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<p>Hands-on product seminars, hunts and shooting events are an extremely productive activity for generating product and brand exposure.Â We contact our tried and true media outlets for coverage of your product to ensure a great launch is held around your brand.</p>[/fusion_text]','Media Relations Events Text','','publish','closed','closed','','media-relations-events-text','','','2019-05-10 21:37:07','2019-05-10 21:37:07','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/media-relations-events-text/',0,'fusion_element','',0),(516,1,'2019-05-09 21:20:36','2019-05-09 21:20:36','[fusion_text  columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<p class=\"p2\">Authenticity matters in your social media presence! Driftwood team members have decades of experience in all aspects of the outdoor and firearms industry. Driftwood Media will manage the daily posting and maintenance on social channels.</p>[/fusion_text]','social media text','','publish','closed','closed','','social-media-text','','','2019-05-10 21:37:07','2019-05-10 21:37:07','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/social-media-text/',0,'fusion_element','',0),(522,1,'2019-05-09 21:24:12','2019-05-09 21:24:12','[fusion_imageframe image_id=\"519|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" ]http://kingsvillelivestock.com/wp-content/uploads/2019/05/Consulting-Strategy.png[/fusion_imageframe]','consulting strategy image','','publish','closed','closed','','consulting-strategy-image','','','2019-05-17 01:28:56','2019-05-17 01:28:56','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/consulting-strategy-image/',0,'fusion_element','',0),(527,1,'2019-05-09 21:24:44','2019-05-09 21:24:44','[fusion_title hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\" ]\r\n\r\nCreative Imagery\r\n\r\n[/fusion_title]','creative imagery title','','publish','closed','closed','','creative-imagery-title','','','2019-05-17 01:28:56','2019-05-17 01:28:56','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/creative-imagery-title/',0,'fusion_element','',0),(532,1,'2019-05-09 21:25:31','2019-05-09 21:25:31','[fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" ]\r\n\r\nWith a focus on getting your brand out to all mediums, we recommend and offer our high-end photography.\r\n\r\n[/fusion_text]','creative imagery text','','publish','closed','closed','','creative-imagery-text','','','2019-05-17 01:28:56','2019-05-17 01:28:56','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/creative-imagery-text/',0,'fusion_element','',0),(537,1,'2019-05-09 21:26:23','2019-05-09 21:26:23','[fusion_title hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\" ]\r\n\r\nProduct Test &amp; Evaluation Management\r\n\r\n[/fusion_title]','media text and evaluation management','','publish','closed','closed','','media-text-and-evaluation-management','','','2019-05-17 01:28:56','2019-05-17 01:28:56','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/media-text-and-evaluation-management/',0,'fusion_element','',0),(542,1,'2019-05-09 21:26:50','2019-05-09 21:26:50','[fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" ]\r\n<p class=\"p1\"><span class=\"s1\">Managing an efficient product consignment program ensures timely publicity while limiting cost to the manufacturer. Hands-on product seminars, hunts and shooting events are an extremely productive activity for generating product and brand exposure. This should be an integral part of new product launches while ensuring positive relationships with the industryâ€™s top influencers.</span></p>\r\n[/fusion_text]','media text and eval text','','publish','closed','closed','','media-text-and-eval-text','','','2019-05-17 01:28:56','2019-05-17 01:28:56','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/media-text-and-eval-text/',0,'fusion_element','',0),(548,1,'2019-05-09 21:27:34','2019-05-09 21:27:34','[fusion_imageframe image_id=\"545|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" ]http://kingsvillelivestock.com/wp-content/uploads/2019/05/product-testing.png[/fusion_imageframe]','media test and evaluation image','','publish','closed','closed','','media-test-and-evaluation-image','','','2019-05-17 01:28:56','2019-05-17 01:28:56','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/media-test-and-evaluation-image/',0,'fusion_element','',0),(553,1,'2019-05-09 21:30:07','2019-05-09 21:30:07','[fusion_imageframe image_id=\"164|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" ]http://kingsvillelivestock.com/wp-content/uploads/2019/04/Photography.png[/fusion_imageframe]','creative imagery image','','publish','closed','closed','','creative-imagery-image','','','2019-05-17 01:28:56','2019-05-17 01:28:56','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/creative-imagery-image/',0,'fusion_element','',0),(556,1,'2019-05-09 21:30:43','2019-05-09 21:30:43','[fusion_imageframe  image_id=\"421|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]http://kingsvillelivestock.com/wp-content/uploads/2019/05/social-media-management.png[/fusion_imageframe]','Brand Awareness Image','','inherit','closed','closed','','173-revision-v1','','','2019-05-09 21:30:43','2019-05-09 21:30:43','',173,'http://hpgmediatest.com/driftwood-media/2019/05/09/173-revision-v1/',0,'revision','',0),(557,1,'2019-05-09 21:30:43','2019-05-09 21:30:43','[fusion_global id=\"173\"]','Brand Awareness Image','','inherit','closed','closed','','173-revision-v1','','','2019-05-09 21:30:43','2019-05-09 21:30:43','',173,'http://hpgmediatest.com/driftwood-media/2019/05/09/173-revision-v1/',0,'revision','',0),(558,1,'2019-05-09 21:31:13','2019-05-09 21:31:13','[fusion_text  columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n\r\nWith a focus on getting your brand out to all mediums, we recommend and offer our high-end photography.\r\n\r\n[/fusion_text]','creative imagery text','','inherit','closed','closed','','532-revision-v1','','','2019-05-09 21:31:13','2019-05-09 21:31:13','',532,'http://hpgmediatest.com/driftwood-media/2019/05/09/532-revision-v1/',0,'revision','',0),(559,1,'2019-05-09 21:31:13','2019-05-09 21:31:13','[fusion_title hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\" ]\r\n\r\nCreative Imagery\r\n\r\n[/fusion_title]','creative imagery title','','inherit','closed','closed','','527-revision-v1','','','2019-05-09 21:31:13','2019-05-09 21:31:13','',527,'http://hpgmediatest.com/driftwood-media/2019/05/09/527-revision-v1/',0,'revision','',0),(560,1,'2019-05-09 21:31:13','2019-05-09 21:31:13','[fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" ]\r\n\r\nText Here\r\n\r\n[/fusion_text]','consulting strategy text','','inherit','closed','closed','','506-revision-v1','','','2019-05-09 21:31:13','2019-05-09 21:31:13','',506,'http://hpgmediatest.com/driftwood-media/2019/05/09/506-revision-v1/',0,'revision','',0),(561,1,'2019-05-09 21:31:14','2019-05-09 21:31:14','[fusion_title hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\" ]\r\n\r\nConsulting Strategy\r\n\r\n[/fusion_title]','Consulting Strategy Title','','inherit','closed','closed','','503-revision-v1','','','2019-05-09 21:31:14','2019-05-09 21:31:14','',503,'http://hpgmediatest.com/driftwood-media/2019/05/09/503-revision-v1/',0,'revision','',0),(564,1,'2019-05-09 21:31:14','2019-05-09 21:31:14','[fusion_imageframe image_id=\"164|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" ]http://kingsvillelivestock.com/wp-content/uploads/2019/04/Photography.png[/fusion_imageframe]','creative imagery image','','inherit','closed','closed','','553-revision-v1','','','2019-05-09 21:31:14','2019-05-09 21:31:14','',553,'http://hpgmediatest.com/driftwood-media/2019/05/09/553-revision-v1/',0,'revision','',0),(565,1,'2019-05-09 21:31:14','2019-05-09 21:31:14','[fusion_imageframe image_id=\"519|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" ]http://kingsvillelivestock.com/wp-content/uploads/2019/05/Consulting-Strategy.png[/fusion_imageframe]','consulting strategy image','','inherit','closed','closed','','522-revision-v1','','','2019-05-09 21:31:14','2019-05-09 21:31:14','',522,'http://hpgmediatest.com/driftwood-media/2019/05/09/522-revision-v1/',0,'revision','',0),(566,1,'2019-05-09 21:31:14','2019-05-09 21:31:14','[fusion_imageframe image_id=\"545|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" ]http://kingsvillelivestock.com/wp-content/uploads/2019/05/product-testing.png[/fusion_imageframe]','media test and evaluation image','','inherit','closed','closed','','548-revision-v1','','','2019-05-09 21:31:14','2019-05-09 21:31:14','',548,'http://hpgmediatest.com/driftwood-media/2019/05/09/548-revision-v1/',0,'revision','',0),(568,1,'2019-05-09 21:31:15','2019-05-09 21:31:15','[fusion_title hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\" ]\r\n\r\nSocial Media Management\r\n\r\n[/fusion_title]','Social Media Title','','inherit','closed','closed','','455-revision-v1','','','2019-05-09 21:31:15','2019-05-09 21:31:15','',455,'http://hpgmediatest.com/driftwood-media/2019/05/09/455-revision-v1/',0,'revision','',0),(570,1,'2019-05-09 21:31:15','2019-05-09 21:31:15','[fusion_title hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\" ]\r\n\r\nMedia Relations &amp; Events\r\n\r\n[/fusion_title]','Media Relations Title','','inherit','closed','closed','','450-revision-v1','','','2019-05-09 21:31:15','2019-05-09 21:31:15','',450,'http://hpgmediatest.com/driftwood-media/2019/05/09/450-revision-v1/',0,'revision','',0),(571,1,'2019-05-09 21:31:15','2019-05-09 21:31:15','[fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" ]\r\n\r\nWith decades of experience, we take the guesswork out of it for you. We take the time to understand your brand and its message, then strategically place across all necessary channels.\r\n\r\n[/fusion_text]','brand awareness test','','inherit','closed','closed','','479-revision-v1','','','2019-05-09 21:31:15','2019-05-09 21:31:15','',479,'http://hpgmediatest.com/driftwood-media/2019/05/09/479-revision-v1/',0,'revision','',0),(572,1,'2019-05-09 21:31:15','2019-05-09 21:31:15','[fusion_imageframe image_id=\"170|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" ]http://kingsvillelivestock.com/wp-content/uploads/2019/04/Events.png[/fusion_imageframe]','Media Relations Main Image','','inherit','closed','closed','','470-revision-v1','','','2019-05-09 21:31:15','2019-05-09 21:31:15','',470,'http://hpgmediatest.com/driftwood-media/2019/05/09/470-revision-v1/',0,'revision','',0),(574,1,'2019-05-09 21:31:55','2019-05-09 21:31:55','[fusion_imageframe  image_id=\"162|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\"]http://kingsvillelivestock.com/wp-content/uploads/2019/04/BrandAwareness-5.png[/fusion_imageframe]','Brand Awareness Image','','inherit','closed','closed','','173-revision-v1','','','2019-05-09 21:31:55','2019-05-09 21:31:55','',173,'http://hpgmediatest.com/driftwood-media/2019/05/09/173-revision-v1/',0,'revision','',0),(575,1,'2019-05-09 21:31:55','2019-05-09 21:31:55','[fusion_global id=\"173\"]','Brand Awareness Image','','inherit','closed','closed','','173-revision-v1','','','2019-05-09 21:31:55','2019-05-09 21:31:55','',173,'http://hpgmediatest.com/driftwood-media/2019/05/09/173-revision-v1/',0,'revision','',0),(576,1,'2019-05-09 21:31:59','2019-05-09 21:31:59','[fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" ]\r\n\r\nWith a focus on getting your brand out to all mediums, we recommend and offer our high-end photography.\r\n\r\n[/fusion_text]','creative imagery text','','inherit','closed','closed','','532-revision-v1','','','2019-05-09 21:31:59','2019-05-09 21:31:59','',532,'http://hpgmediatest.com/driftwood-media/2019/05/09/532-revision-v1/',0,'revision','',0),(578,1,'2019-05-09 21:33:01','2019-05-09 21:33:01','[fusion_imageframe image_id=\"421|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" ]http://kingsvillelivestock.com/wp-content/uploads/2019/05/social-media-management.png[/fusion_imageframe]','social media image','','publish','closed','closed','','social-media-image','','','2019-05-09 21:40:34','2019-05-09 21:40:34','',0,'http://hpgmediatest.com/driftwood-media/fusion_element/social-media-image/',0,'fusion_element','',0),(579,1,'2019-05-09 21:33:07','2019-05-09 21:33:07','[fusion_imageframe image_id=\"421|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" ]http://kingsvillelivestock.com/wp-content/uploads/2019/05/social-media-management.png[/fusion_imageframe]','social media image','','inherit','closed','closed','','578-revision-v1','','','2019-05-09 21:33:07','2019-05-09 21:33:07','',578,'http://hpgmediatest.com/driftwood-media/2019/05/09/578-revision-v1/',0,'revision','',0),(580,1,'2019-05-09 21:33:07','2019-05-09 21:33:07','[fusion_imageframe image_id=\"162|full\" max_width=\"\" style_type=\"\" blur=\"\" stylecolor=\"\" hover_type=\"none\" bordersize=\"\" bordercolor=\"\" borderradius=\"\" align=\"center\" lightbox=\"no\" gallery_id=\"\" lightbox_image=\"\" lightbox_image_id=\"\" alt=\"\" link=\"\" linktarget=\"_self\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" animation_type=\"\" animation_direction=\"left\" animation_speed=\"0.3\" animation_offset=\"\" ]http://kingsvillelivestock.com/wp-content/uploads/2019/04/BrandAwareness-5.png[/fusion_imageframe]','Brand Awareness Image','','inherit','closed','closed','','173-revision-v1','','','2019-05-09 21:33:07','2019-05-09 21:33:07','',173,'http://hpgmediatest.com/driftwood-media/2019/05/09/173-revision-v1/',0,'revision','',0),(583,1,'2019-05-09 21:40:33','2019-05-09 21:40:33','[fusion_text  columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]\r\n<p class=\"p1\"><span class=\"s1\">Strategic planning several months prior to major announcements is critical for generating positive publicity during times of key activity. We will proactively design launch strategies that revolve around your business and category needs. </span></p>\r\n[/fusion_text]','consulting strategy text','','inherit','closed','closed','','506-revision-v1','','','2019-05-09 21:40:33','2019-05-09 21:40:33','',506,'http://hpgmediatest.com/driftwood-media/2019/05/09/506-revision-v1/',0,'revision','',0),(589,1,'2019-05-10 21:34:48','2019-05-10 21:34:48','[fusion_text  columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<p>With decades of experience, we take the guesswork out of it for you. We take the time to understand your brand and its message, then strategically place across all necessary channels.</p><p>Custom, technical press release writing and distribution will ensure your news reaches the Industryâ€™s most influential editors, freelance contributors and social media infuencers.</p>[/fusion_text]','brand awareness test','','inherit','closed','closed','','479-revision-v1','','','2019-05-10 21:34:48','2019-05-10 21:34:48','',479,'http://hpgmediatest.com/driftwood-media/2019/05/10/479-revision-v1/',0,'revision','',0),(590,1,'2019-05-10 21:34:48','2019-05-10 21:34:48','[fusion_global id=\"479\"]','brand awareness test','','inherit','closed','closed','','479-revision-v1','','','2019-05-10 21:34:48','2019-05-10 21:34:48','',479,'http://hpgmediatest.com/driftwood-media/2019/05/10/479-revision-v1/',0,'revision','',0),(597,1,'2019-05-10 21:36:32','2019-05-10 21:36:32','[fusion_text  columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<p>Hands-on product seminars, hunts and shooting events are an extremely productive activity for generating product and brand exposure.Â We contact our tried and true media outlets for coverage of your product to ensure a great launch is held around your brand.</p>[/fusion_text]','Media Relations Events Text','','inherit','closed','closed','','513-revision-v1','','','2019-05-10 21:36:32','2019-05-10 21:36:32','',513,'http://hpgmediatest.com/driftwood-media/2019/05/10/513-revision-v1/',0,'revision','',0),(600,1,'2019-05-10 21:36:32','2019-05-10 21:36:32','[fusion_global id=\"516\"]','social media text','','inherit','closed','closed','','516-revision-v1','','','2019-05-10 21:36:32','2019-05-10 21:36:32','',516,'http://hpgmediatest.com/driftwood-media/2019/05/10/516-revision-v1/',0,'revision','',0),(603,1,'2019-05-10 21:37:02','2019-05-10 21:37:02','[fusion_text  columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<p>Hands-on product seminars, hunts and shooting events are an extremely productive activity for generating product and brand exposure.Â We contact our tried and true media outlets for coverage of your product to ensure a great launch is held around your brand.</p>[/fusion_text]','Media Relations Events Text','','inherit','closed','closed','','513-revision-v1','','','2019-05-10 21:37:02','2019-05-10 21:37:02','',513,'http://hpgmediatest.com/driftwood-media/2019/05/10/513-revision-v1/',0,'revision','',0),(604,1,'2019-05-10 21:37:02','2019-05-10 21:37:02','[fusion_global id=\"513\"]','Media Relations Events Text','','inherit','closed','closed','','513-revision-v1','','','2019-05-10 21:37:02','2019-05-10 21:37:02','',513,'http://hpgmediatest.com/driftwood-media/2019/05/10/513-revision-v1/',0,'revision','',0),(605,1,'2019-05-10 21:37:03','2019-05-10 21:37:03','[fusion_title  hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\"]<p>Product Test &amp; Evaluation Management</p>[/fusion_title]','media text and evaluation management','','inherit','closed','closed','','537-revision-v1','','','2019-05-10 21:37:03','2019-05-10 21:37:03','',537,'http://hpgmediatest.com/driftwood-media/2019/05/10/537-revision-v1/',0,'revision','',0),(606,1,'2019-05-10 21:37:03','2019-05-10 21:37:03','[fusion_global id=\"537\"]','media text and evaluation management','','inherit','closed','closed','','537-revision-v1','','','2019-05-10 21:37:03','2019-05-10 21:37:03','',537,'http://hpgmediatest.com/driftwood-media/2019/05/10/537-revision-v1/',0,'revision','',0),(607,1,'2019-05-10 21:37:03','2019-05-10 21:37:03','[fusion_text  columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<p class=\"p2\">Authenticity matters in your social media presence! Driftwood team members have decades of experience in all aspects of the outdoor and firearms industry. Driftwood Media will manage the daily posting and maintenance on social channels.</p>[/fusion_text]','social media text','','inherit','closed','closed','','516-revision-v1','','','2019-05-10 21:37:03','2019-05-10 21:37:03','',516,'http://hpgmediatest.com/driftwood-media/2019/05/10/516-revision-v1/',0,'revision','',0),(608,1,'2019-05-10 21:37:03','2019-05-10 21:37:03','[fusion_global id=\"516\"]','social media text','','inherit','closed','closed','','516-revision-v1','','','2019-05-10 21:37:03','2019-05-10 21:37:03','',516,'http://hpgmediatest.com/driftwood-media/2019/05/10/516-revision-v1/',0,'revision','',0),(609,1,'2019-05-10 21:37:03','2019-05-10 21:37:03','[fusion_text  columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<p class=\"p1\"><span class=\"s1\">Managing an efficient product consignment program ensures timely publicity while limiting cost to the manufacturer.Hands-on product seminars, hunts and shooting events are an extremely productive activity for generating product and brand exposure. This should be an integral part of new product launches while ensuring positive relationships with the industryâ€™s top influencers.</span></p>[/fusion_text]','media text and eval text','','inherit','closed','closed','','542-revision-v1','','','2019-05-10 21:37:03','2019-05-10 21:37:03','',542,'http://hpgmediatest.com/driftwood-media/2019/05/10/542-revision-v1/',0,'revision','',0),(610,1,'2019-05-10 21:37:03','2019-05-10 21:37:03','[fusion_global id=\"542\"]','media text and eval text','','inherit','closed','closed','','542-revision-v1','','','2019-05-10 21:37:03','2019-05-10 21:37:03','',542,'http://hpgmediatest.com/driftwood-media/2019/05/10/542-revision-v1/',0,'revision','',0),(611,1,'2019-05-10 21:37:07','2019-05-10 21:37:07','[fusion_text  columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<p class=\"p2\">Authenticity matters in your social media presence! Driftwood team members have decades of experience in all aspects of the outdoor and firearms industry. Driftwood Media will manage the daily posting and maintenance on social channels.</p>[/fusion_text]','social media text','','inherit','closed','closed','','516-revision-v1','','','2019-05-10 21:37:07','2019-05-10 21:37:07','',516,'http://hpgmediatest.com/driftwood-media/2019/05/10/516-revision-v1/',0,'revision','',0),(612,1,'2019-05-10 21:37:07','2019-05-10 21:37:07','[fusion_global id=\"516\"]','social media text','','inherit','closed','closed','','516-revision-v1','','','2019-05-10 21:37:07','2019-05-10 21:37:07','',516,'http://hpgmediatest.com/driftwood-media/2019/05/10/516-revision-v1/',0,'revision','',0),(613,1,'2019-05-10 21:37:07','2019-05-10 21:37:07','[fusion_title  hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\"]<p>Product Test &amp; Evaluation Management</p>[/fusion_title]','media text and evaluation management','','inherit','closed','closed','','537-revision-v1','','','2019-05-10 21:37:07','2019-05-10 21:37:07','',537,'http://hpgmediatest.com/driftwood-media/2019/05/10/537-revision-v1/',0,'revision','',0),(614,1,'2019-05-10 21:37:07','2019-05-10 21:37:07','[fusion_text  columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<p>Hands-on product seminars, hunts and shooting events are an extremely productive activity for generating product and brand exposure.Â We contact our tried and true media outlets for coverage of your product to ensure a great launch is held around your brand.</p>[/fusion_text]','Media Relations Events Text','','inherit','closed','closed','','513-revision-v1','','','2019-05-10 21:37:07','2019-05-10 21:37:07','',513,'http://hpgmediatest.com/driftwood-media/2019/05/10/513-revision-v1/',0,'revision','',0),(615,1,'2019-05-10 21:37:07','2019-05-10 21:37:07','[fusion_global id=\"537\"]','media text and evaluation management','','inherit','closed','closed','','537-revision-v1','','','2019-05-10 21:37:07','2019-05-10 21:37:07','',537,'http://hpgmediatest.com/driftwood-media/2019/05/10/537-revision-v1/',0,'revision','',0),(616,1,'2019-05-10 21:37:07','2019-05-10 21:37:07','[fusion_global id=\"513\"]','Media Relations Events Text','','inherit','closed','closed','','513-revision-v1','','','2019-05-10 21:37:07','2019-05-10 21:37:07','',513,'http://hpgmediatest.com/driftwood-media/2019/05/10/513-revision-v1/',0,'revision','',0),(617,1,'2019-05-10 21:37:07','2019-05-10 21:37:07','[fusion_text  columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<p class=\"p1\"><span class=\"s1\">Managing an efficient product consignment program ensures timely publicity while limiting cost to the manufacturer. Hands-on product seminars, hunts and shooting events are an extremely productive activity for generating product and brand exposure. This should be an integral part of new product launches while ensuring positive relationships with the industryâ€™s top influencers.</span></p>[/fusion_text]','media text and eval text','','inherit','closed','closed','','542-revision-v1','','','2019-05-10 21:37:07','2019-05-10 21:37:07','',542,'http://hpgmediatest.com/driftwood-media/2019/05/10/542-revision-v1/',0,'revision','',0),(618,1,'2019-05-10 21:37:07','2019-05-10 21:37:07','[fusion_global id=\"542\"]','media text and eval text','','inherit','closed','closed','','542-revision-v1','','','2019-05-10 21:37:07','2019-05-10 21:37:07','',542,'http://hpgmediatest.com/driftwood-media/2019/05/10/542-revision-v1/',0,'revision','',0),(622,1,'2019-05-17 01:28:56','2019-05-17 01:28:56','[fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" ]\r\n<p class=\"p1\"><span class=\"s1\">Strategic planning several months prior to major announcements is critical for generating positive publicity during times of key activity. We will proactively design launch strategies that revolve around your business and category needs. </span></p>\r\n[/fusion_text]','consulting strategy text','','inherit','closed','closed','','506-revision-v1','','','2019-05-17 01:28:56','2019-05-17 01:28:56','',506,'http://hpgmediatest.com/boiler/2019/05/17/506-revision-v1/',0,'revision','',0),(623,1,'2019-05-17 01:28:56','2019-05-17 01:28:56','[fusion_text columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" ]\r\n<p class=\"p1\"><span class=\"s1\">Managing an efficient product consignment program ensures timely publicity while limiting cost to the manufacturer. Hands-on product seminars, hunts and shooting events are an extremely productive activity for generating product and brand exposure. This should be an integral part of new product launches while ensuring positive relationships with the industryâ€™s top influencers.</span></p>\r\n[/fusion_text]','media text and eval text','','inherit','closed','closed','','542-revision-v1','','','2019-05-17 01:28:56','2019-05-17 01:28:56','',542,'http://hpgmediatest.com/boiler/2019/05/17/542-revision-v1/',0,'revision','',0),(624,1,'2019-05-17 01:28:56','2019-05-17 01:28:56','[fusion_title hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\" ]\r\n\r\nProduct Test &amp; Evaluation Management\r\n\r\n[/fusion_title]','media text and evaluation management','','inherit','closed','closed','','537-revision-v1','','','2019-05-17 01:28:56','2019-05-17 01:28:56','',537,'http://hpgmediatest.com/boiler/2019/05/17/537-revision-v1/',0,'revision','',0),(627,1,'2019-05-17 01:32:31','2019-05-17 01:32:31','[fusion_title  hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\" content_align=\"center\" size=\"1\" font_size=\"25px\" line_height=\"\" letter_spacing=\"\" margin_top=\"\" margin_bottom=\"\" margin_top_mobile=\"\" margin_bottom_mobile=\"\" text_color=\"\" style_type=\"default\" sep_color=\"\"]<p>Brand Photography</p>[/fusion_title]','Brand Awareness Text','','inherit','closed','closed','','180-revision-v1','','','2019-05-17 01:32:31','2019-05-17 01:32:31','',180,'http://hpgmediatest.com/boiler/2019/05/17/180-revision-v1/',0,'revision','',0),(628,1,'2019-05-17 01:32:31','2019-05-17 01:32:31','[fusion_global id=\"180\"]','Brand Awareness Text','','inherit','closed','closed','','180-revision-v1','','','2019-05-17 01:32:31','2019-05-17 01:32:31','',180,'http://hpgmediatest.com/boiler/2019/05/17/180-revision-v1/',0,'revision','',0),(629,1,'2019-05-17 01:33:55','2019-05-17 01:33:55','[fusion_text  columns=\"\" column_min_width=\"\" column_spacing=\"\" rule_style=\"default\" rule_size=\"\" rule_color=\"\" hide_on_mobile=\"small-visibility,medium-visibility,large-visibility\" class=\"\" id=\"\"]<p>With almost 2 decades behind the lens, one of HPG Media\'s biggest assets to any business is brand imagery.</p>[/fusion_text]','brand awareness test','','inherit','closed','closed','','479-revision-v1','','','2019-05-17 01:33:55','2019-05-17 01:33:55','',479,'http://hpgmediatest.com/boiler/2019/05/17/479-revision-v1/',0,'revision','',0),(630,1,'2019-05-17 01:33:55','2019-05-17 01:33:55','[fusion_global id=\"479\"]','brand awareness test','','inherit','closed','closed','','479-revision-v1','','','2019-05-17 01:33:55','2019-05-17 01:33:55','',479,'http://hpgmediatest.com/boiler/2019/05/17/479-revision-v1/',0,'revision','',0),(637,1,'2020-01-16 19:21:44','2020-01-16 19:21:44','','Divi','','publish','closed','closed','','divi','','','2021-04-12 14:33:49','2021-04-12 14:33:49','',0,'http://hpgmediatest.com/kingsville-livestock/2020/01/16/divi/',0,'custom_css','',0),(638,1,'2020-01-16 19:21:44','2020-01-16 19:21:44','','Divi','','inherit','closed','closed','','637-revision-v1','','','2020-01-16 19:21:44','2020-01-16 19:21:44','',637,'http://hpgmediatest.com/kingsville-livestock/2020/01/16/637-revision-v1/',0,'revision','',0),(639,1,'2020-01-16 20:05:43','2020-01-16 20:05:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am -<span style=\"color: #ff00ff;\"> Customer Appreciation Dinner 10 am-6 pm!</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal sale in December!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','publish','closed','closed','','home','','','2023-11-29 15:14:06','2023-11-29 15:14:06','',0,'http://hpgmediatest.com/kingsville-livestock/?page_id=639',0,'page','',0),(665,1,'2020-01-16 19:29:52','2020-01-16 19:29:52','http://kingsvillelivestock.com/wp-content/uploads/2020/01/cropped-Kingsville-Livestock-Favicon.png','cropped-Kingsville-Livestock-Favicon.png','','inherit','open','closed','','cropped-kingsville-livestock-favicon-png','','','2020-01-16 19:29:52','2020-01-16 19:29:52','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/cropped-Kingsville-Livestock-Favicon.png',0,'attachment','image/png',0),(679,1,'2020-01-16 20:26:07','2020-01-16 20:26:07','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\"][et_pb_fullwidth_header title=\"About Us\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-76.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Story Section\" _builder_version=\"3.22\" custom_padding=\"60px||60px||true|\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Our Story Area\" _builder_version=\"3.25\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-21.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>How We Got Started</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" animation_direction=\"left\"]<p>Rick and Marcia purchased the Kingsville Livestock Auction in July 1988. Over the past 32 years, we have made several additions to our facilities to best serve our customers as Missouri\'s West Central Foremost Livestock Auction.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Mission Section\" module_id=\"livestock\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" custom_padding=\"60px||60px||true|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Our Mission Area\" _builder_version=\"3.25\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Our Commitment</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" animation_direction=\"left\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" custom_padding=\"0px||0px||true|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"4.2\" width=\"100%\" max_width=\"1800px\" module_alignment=\"center\" custom_padding=\"0px||0px||true|false\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" custom_padding=\"|0px||0px|false|false\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-114.jpg\" _builder_version=\"4.2\" custom_margin=\"|-20px||-20px|false|true\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-78.jpg\" _builder_version=\"4.2\" custom_margin=\"|-20px||-20px|false|true\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-55.jpg\" _builder_version=\"4.2.2\" custom_margin=\"|-20px||-20px|false|true\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Livestock Information</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p>In order to gain the most value out of your cattle, here at Kingsville Livestock Auctions we recommend:</p>\n<ol>\n<li>Weaning calves for at least 45 days and selling with two rounds of shots. (This option allows for the best overall value.)</li>\n<li>Sell non-weaned calves with two rounds of shots, and the bulls cut. (If you are unable to wean for a full 45 days this option will allow for the best value.)</li>\n</ol>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_6,1_6,1_6,1_6,1_6,1_6\" _builder_version=\"4.2\"][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][et_pb_button button_text=\"BUY CATTLE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][et_pb_button button_text=\"SELL CATTLE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][et_pb_button button_text=\"MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"8%||8%||true|false\" global_module=\"894\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Contact Us</h2>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"#f1ece9\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<p><span>P.O. Box 127<br />Hwy 58 East<br />Kingsville, MO 64061</span></p>[/et_pb_text][et_pb_blurb title=\"(816) 597-3331\" use_icon=\"on\" font_icon=\"%%264%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][et_pb_blurb title=\"(816) 597-3971\" use_icon=\"on\" font_icon=\"%%268%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Have A Question?\" custom_message=\"This message is from the site footer.||et_pb_line_break_holder||||et_pb_line_break_holder||Please contact %name% at %email%.  ||et_pb_line_break_holder||||et_pb_line_break_holder||%message%\" success_message=\"Success! We\'ll get back to you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" form_field_background_color=\"#f1ece9\" form_field_text_color=\"#7d7a73\" form_field_focus_background_color=\"#f1ece9\" form_field_focus_text_color=\"#7d7a73\" title_font=\"Lato||||||||\" title_text_color=\"#f1ece9\" title_font_size=\"36px\" captcha_font=\"|700|||||||\" captcha_text_color=\"#f1ece9\" custom_button=\"on\" button_text_color=\"#696353\" button_bg_color=\"#f1ece9\" button_border_color=\"#f1ece9\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT US','','publish','closed','closed','','about-us','','','2020-02-06 15:14:02','2020-02-06 15:14:02','',0,'http://hpgmediatest.com/kingsville-livestock/?page_id=679',0,'page','',0),(688,1,'2020-01-16 20:28:34','2020-01-16 20:28:34','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Call to Action\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" saved_tabs=\"all\" locked=\"off\" template_type=\"section\"][/et_pb_section]','FOOTER LAYOUT','','publish','closed','closed','','footer-layout','','','2020-01-17 18:55:09','2020-01-17 18:55:09','',0,'http://hpgmediatest.com/kingsville-livestock/et_pb_layout/footer-layout/',0,'et_pb_layout','',0),(689,1,'2020-01-16 20:28:46','2020-01-16 20:28:46','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Call to Action\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" locked=\"off\" saved_tabs=\"all\" template_type=\"section\"][et_pb_fullwidth_header title=\"Become a Merchant or Donate Today!\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"http://kingsvillelivestock.com/wp-content/uploads/2020/01/produce-09.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"8%||8%|\" hover_enabled=\"0\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section]','FOOTER LAYOUT','','inherit','closed','closed','','688-revision-v1','','','2020-01-16 20:28:46','2020-01-16 20:28:46','',688,'http://hpgmediatest.com/kingsville-livestock/2020/01/16/688-revision-v1/',0,'revision','',0),(691,1,'2020-01-16 20:29:03','2020-01-16 20:29:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Call to Action\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" locked=\"off\" saved_tabs=\"all\" template_type=\"section\"][et_pb_fullwidth_header title=\"Become a Merchant Today!\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"http://kingsvillelivestock.com/wp-content/uploads/2020/01/produce-09.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"8%||8%|\" hover_enabled=\"0\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section]','FOOTER LAYOUT','','inherit','closed','closed','','688-revision-v1','','','2020-01-16 20:29:03','2020-01-16 20:29:03','',688,'http://hpgmediatest.com/kingsville-livestock/2020/01/16/688-revision-v1/',0,'revision','',0),(714,1,'2020-01-16 22:37:52','2020-01-16 22:37:52','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Call to Action\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Trailers For Sale\" content_max_width=\"800px\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-30.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Event Section\" _builder_version=\"4.16\" custom_padding=\"60px||60px||true|false\" animation_style=\"zoom\" animation_intensity_zoom=\"6%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>We carry a wide variety of trailers to meet all of your needs.</p>\n<p><strong><a href=\"https://kingsvillelivestock.com/contact/\">Contact us</a></strong> for a FREE QUOTE today.</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/image000003-300x225.jpg\" width=\"143\" height=\"107\" alt=\"\" class=\"wp-image-4098 alignnone size-medium\" />Â  7\' X 24 2023 Eby Ruffneck 2 8k axles. 17.5 tires &amp; spare.Â  <strong>Coming Soon!Â </strong></p>\n<p><strong></strong></p>\n<p><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/image000000-2-300x225.jpg\" width=\"142\" height=\"107\" alt=\"\" class=\"wp-image-5644 alignnone size-medium\" />Â  6\' 8\'\' X 24\' Gooseneck rubber floor w / 2 cross gates, 7K axles &amp; 12 ply tires &amp; spare. <strong>$17,100.00</strong></p>\n<p><strong></strong></p>\n<p><img class=\"wp-image-2101 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG-1006-scaled-e1595879726664-300x225.jpg\" alt=\"\" width=\"147\" height=\"110\" />Â  Â  Eby 7\'1\" X 24\' Punch Panel Maverick Livestock Trailer. 14 ply tires, 7k axels, Alum. wheels, &amp; 2 cross gatesÂ  <strong>Not in Stock, Call Now for pricing &amp; to order!Â </strong></p>\n<p><strong></strong></p>\n<p><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/image000000-1-300x225.jpg\" width=\"172\" height=\"129\" alt=\"\" class=\"wp-image-5235 alignnone size-medium\" /> 2014 Horse Trailer. Call for additional pictures &amp; prices! Been used 4 times</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><img class=\"wp-image-2116 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1008-1-208x300.jpg\" alt=\"\" width=\"102\" height=\"147\" />Â  EZ Haul 32\' Bumper Pull Hay Trailer. 6 Bale <strong>$6,800.00</strong></p>\n<p><img class=\"wp-image-2117 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" alt=\"\" width=\"101\" height=\"135\" />Â  EZ Haul 32\' Gooseneck Hay Trailer. 6 Bale, $6,900.00<strong> In Stock!</strong></p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"97\" height=\"130\" />EZ Haul 36\' Gooseneck Hay Trailer. 7 Bale,<strong> $7,100.00<span style=\"color: #ff0000;\"> In Stock!Â <span style=\"color: #000000;\"> Also available in EZ Haul Hydraulic dumpÂ </span></span></strong></p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"100\" height=\"134\" />EZ Haul 42\' Gooseneck Hay Trailer. 8 Bale,<strong> $7,600.00</strong></p>\n<p><img class=\"wp-image-2146 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Ez-Haul-Flat-Bed-2-300x225.jpg\" alt=\"\" width=\"139\" height=\"104\" />Â  Â 27\' EZ Haul Flat Bed. 22+5 Dove, 3 ramps, low profile, 10k axels, 14 ply tires. <strong>Call for price!</strong></p>\n<p><img class=\"wp-image-2147 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/ez-haul-flat-bed-3-300x225.jpg\" alt=\"\" width=\"144\" height=\"108\" /> EZ Haul 20\' Flat Bed Bumper Pull. 18+2 Dove, 2 4\' ramps, 7k axels, 10 ply tires. <strong>Out of Stock, call for price!Â </strong></p>\n<p><img class=\"wp-image-2153 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Wheel-Corral-300x185.png\" alt=\"\" width=\"172\" height=\"106\" /> Diamond \"W\" Wheel Corral <strong>$21,800.00Â </strong></p>\n<h1 style=\"text-align: center;\"><span style=\"color: #0000ff;\"><strong>Hay season special $200.00 off all hay trailers!</strong></span></h1>\n<h2><span style=\"color: #ff00ff;\">For additional questions about the trailers or wheel corral call the office @ 816-597-3331 or Derrick @ 816-726-3456</span></h2>\n<p><span style=\"color: #ff0000;\"><strong>Updated on August 2, 2023Â </strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','TRAILERS FOR SALE','','publish','closed','closed','','trailers-for-sale','','','2023-08-02 16:26:11','2023-08-02 16:26:11','',0,'http://hpgmediatest.com/kingsville-livestock/?page_id=714',0,'page','',0),(721,1,'2020-01-16 23:27:55','2020-01-16 23:27:55',' ','','','publish','closed','closed','','721','','','2020-01-24 11:06:18','2020-01-24 11:06:18','',0,'http://hpgmediatest.com/kingsville-livestock/?p=721',1,'nav_menu_item','',0),(722,1,'2020-01-16 23:27:55','2020-01-16 23:27:55',' ','','','publish','closed','closed','','722','','','2020-01-24 11:06:18','2020-01-24 11:06:18','',0,'http://hpgmediatest.com/kingsville-livestock/?p=722',4,'nav_menu_item','',0),(723,1,'2020-01-16 23:29:46','2020-01-16 23:29:46','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_fullwidth_header title=\"Contact Us\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-117.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Contact Section\" _builder_version=\"4.2\" custom_padding=\"60px||60px||true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"60px||10px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Contact Area\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" hover_enabled=\"0\" custom_padding__hover=\"|||\" sticky_enabled=\"0\"][et_pb_text _builder_version=\"4.2\" header_font_size=\"36px\"]<h1>Contact Information</h1>[/et_pb_text][et_pb_blurb title=\"Address\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%249%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>P.O. Box 127<br /> Hwy 58 East<br /> Kingsville, MO 64061</span></p>[/et_pb_blurb][et_pb_blurb title=\"anstineauction@gmail.com\" url=\"mailto:anstineauctions@earthlink.net\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%238%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Office (816) 597-3331\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"][/et_pb_blurb][et_pb_blurb title=\"Fax (816) 597-3971\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%268%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"]<h2>Get In Touch</h2>[/et_pb_text][et_pb_contact_form email=\"Anstineauction@gmail.com\" custom_message=\"Message From: %%First_Name%% %%Last_Name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Interested in: %%Interested_In%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message: %%Message%%\" success_message=\"Success! Someone will get back to you shortly.\" submit_button_text=\"SEND\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.1\" title_font=\"||||||||\" form_field_font=\"||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#696353\" animation_style=\"fade\" button_text_color_tablet=\"\" button_text_color_phone=\"#696353\" button_text_color_last_edited=\"on|phone\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#02d002\" button_border_color_hover=\"#02d002\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"0\"][et_pb_contact_field field_id=\"First_Name\" field_title=\"First Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Last_Name\" field_title=\"Last Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.4.1\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Interested_In\" field_title=\"I am Interested In\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" header_font_size=\"36px\"]<h1>Owners and Operators</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.2\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_blurb title=\"Rick\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>(816) 258-3421</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_blurb title=\"Jeremy\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>(816) 716-9288</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_blurb title=\"Jared\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>(816) 878-5229</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Map Section\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#f7f7f7\" custom_padding=\"60px||60px||true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"10px||60px||false|false\"][et_pb_row _builder_version=\"3.25\" max_width=\"1440px\" custom_padding=\"|||\" use_custom_width=\"on\" custom_width_px=\"1440px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" saved_tabs=\"all\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','publish','closed','closed','','contact','','','2021-08-11 18:06:39','2021-08-11 18:06:39','',0,'http://hpgmediatest.com/kingsville-livestock/?page_id=723',0,'page','',0),(727,1,'2020-01-16 23:29:46','2020-01-16 23:29:46',' ','','','publish','closed','closed','','727','','','2020-01-24 11:06:18','2020-01-24 11:06:18','',0,'http://hpgmediatest.com/kingsville-livestock/2020/01/16/727/',5,'nav_menu_item','',0),(735,1,'2020-01-17 17:26:55','2020-01-17 17:26:55','','HPG Media - KINGSVILLE-1','','inherit','open','closed','','hpg-media-kingsville-1','','','2020-01-17 17:26:55','2020-01-17 17:26:55','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-1.jpg',0,'attachment','image/jpeg',0),(736,1,'2020-01-17 17:27:00','2020-01-17 17:27:00','','HPG Media - KINGSVILLE-2','','inherit','open','closed','','hpg-media-kingsville-2','','','2020-01-17 17:27:00','2020-01-17 17:27:00','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-2.jpg',0,'attachment','image/jpeg',0),(737,1,'2020-01-17 17:27:06','2020-01-17 17:27:06','','HPG Media - KINGSVILLE-3','','inherit','open','closed','','hpg-media-kingsville-3','','','2020-01-17 17:27:06','2020-01-17 17:27:06','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-3.jpg',0,'attachment','image/jpeg',0),(738,1,'2020-01-17 17:27:10','2020-01-17 17:27:10','','HPG Media - KINGSVILLE-4','','inherit','open','closed','','hpg-media-kingsville-4','','','2020-01-17 17:27:10','2020-01-17 17:27:10','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-4.jpg',0,'attachment','image/jpeg',0),(739,1,'2020-01-17 17:27:14','2020-01-17 17:27:14','','HPG Media - KINGSVILLE-5','','inherit','open','closed','','hpg-media-kingsville-5','','','2020-01-17 17:27:14','2020-01-17 17:27:14','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-5.jpg',0,'attachment','image/jpeg',0),(740,1,'2020-01-17 17:27:19','2020-01-17 17:27:19','','HPG Media - KINGSVILLE-6','','inherit','open','closed','','hpg-media-kingsville-6','','','2020-01-17 17:27:19','2020-01-17 17:27:19','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-6.jpg',0,'attachment','image/jpeg',0),(741,1,'2020-01-17 17:27:23','2020-01-17 17:27:23','','HPG Media - KINGSVILLE-7','','inherit','open','closed','','hpg-media-kingsville-7','','','2020-01-17 17:27:23','2020-01-17 17:27:23','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-7.jpg',0,'attachment','image/jpeg',0),(742,1,'2020-01-17 17:27:26','2020-01-17 17:27:26','','HPG Media - KINGSVILLE-8','','inherit','open','closed','','hpg-media-kingsville-8','','','2020-01-17 17:27:26','2020-01-17 17:27:26','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-8.jpg',0,'attachment','image/jpeg',0),(743,1,'2020-01-17 17:27:32','2020-01-17 17:27:32','','HPG Media - KINGSVILLE-9','','inherit','open','closed','','hpg-media-kingsville-9','','','2020-01-17 17:27:32','2020-01-17 17:27:32','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-9.jpg',0,'attachment','image/jpeg',0),(744,1,'2020-01-17 17:27:36','2020-01-17 17:27:36','','HPG Media - KINGSVILLE-10','','inherit','open','closed','','hpg-media-kingsville-10','','','2020-01-17 17:27:36','2020-01-17 17:27:36','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-10.jpg',0,'attachment','image/jpeg',0),(745,1,'2020-01-17 17:27:41','2020-01-17 17:27:41','','HPG Media - KINGSVILLE-11','','inherit','open','closed','','hpg-media-kingsville-11','','','2020-01-17 17:27:41','2020-01-17 17:27:41','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-11.jpg',0,'attachment','image/jpeg',0),(746,1,'2020-01-17 17:27:45','2020-01-17 17:27:45','','HPG Media - KINGSVILLE-12','','inherit','open','closed','','hpg-media-kingsville-12','','','2020-01-17 17:27:45','2020-01-17 17:27:45','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-12.jpg',0,'attachment','image/jpeg',0),(747,1,'2020-01-17 17:27:49','2020-01-17 17:27:49','','HPG Media - KINGSVILLE-13','','inherit','open','closed','','hpg-media-kingsville-13','','','2020-01-17 17:27:49','2020-01-17 17:27:49','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-13.jpg',0,'attachment','image/jpeg',0),(748,1,'2020-01-17 17:27:55','2020-01-17 17:27:55','','HPG Media - KINGSVILLE-14','','inherit','open','closed','','hpg-media-kingsville-14','','','2020-01-17 17:27:55','2020-01-17 17:27:55','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-14.jpg',0,'attachment','image/jpeg',0),(749,1,'2020-01-17 17:28:00','2020-01-17 17:28:00','','HPG Media - KINGSVILLE-15','','inherit','open','closed','','hpg-media-kingsville-15','','','2020-01-17 17:28:00','2020-01-17 17:28:00','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-15.jpg',0,'attachment','image/jpeg',0),(750,1,'2020-01-17 17:28:04','2020-01-17 17:28:04','','HPG Media - KINGSVILLE-16','','inherit','open','closed','','hpg-media-kingsville-16','','','2020-01-17 17:28:04','2020-01-17 17:28:04','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-16.jpg',0,'attachment','image/jpeg',0),(751,1,'2020-01-17 17:28:08','2020-01-17 17:28:08','','HPG Media - KINGSVILLE-17','','inherit','open','closed','','hpg-media-kingsville-17','','','2020-01-17 17:28:08','2020-01-17 17:28:08','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-17.jpg',0,'attachment','image/jpeg',0),(752,1,'2020-01-17 17:28:11','2020-01-17 17:28:11','','HPG Media - KINGSVILLE-18','','inherit','open','closed','','hpg-media-kingsville-18','','','2020-01-17 17:28:11','2020-01-17 17:28:11','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.jpg',0,'attachment','image/jpeg',0),(753,1,'2020-01-17 17:28:14','2020-01-17 17:28:14','','HPG Media - KINGSVILLE-19','','inherit','open','closed','','hpg-media-kingsville-19','','','2020-01-17 17:28:14','2020-01-17 17:28:14','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-19.jpg',0,'attachment','image/jpeg',0),(754,1,'2020-01-17 17:28:17','2020-01-17 17:28:17','','HPG Media - KINGSVILLE-20','','inherit','open','closed','','hpg-media-kingsville-20','','','2020-01-17 17:28:17','2020-01-17 17:28:17','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-20.jpg',0,'attachment','image/jpeg',0),(755,1,'2020-01-17 17:28:21','2020-01-17 17:28:21','','HPG Media - KINGSVILLE-21','','inherit','open','closed','','hpg-media-kingsville-21','','','2020-01-17 17:28:21','2020-01-17 17:28:21','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-21.jpg',0,'attachment','image/jpeg',0),(756,1,'2020-01-17 17:28:26','2020-01-17 17:28:26','','HPG Media - KINGSVILLE-22','','inherit','open','closed','','hpg-media-kingsville-22','','','2020-01-17 17:28:26','2020-01-17 17:28:26','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-22.jpg',0,'attachment','image/jpeg',0),(757,1,'2020-01-17 17:28:29','2020-01-17 17:28:29','','HPG Media - KINGSVILLE-23','','inherit','open','closed','','hpg-media-kingsville-23','','','2020-01-17 17:28:29','2020-01-17 17:28:29','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-23.jpg',0,'attachment','image/jpeg',0),(758,1,'2020-01-17 17:28:32','2020-01-17 17:28:32','','HPG Media - KINGSVILLE-24','','inherit','open','closed','','hpg-media-kingsville-24','','','2020-01-17 17:28:32','2020-01-17 17:28:32','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-24.jpg',0,'attachment','image/jpeg',0),(759,1,'2020-01-17 17:28:36','2020-01-17 17:28:36','','HPG Media - KINGSVILLE-25','','inherit','open','closed','','hpg-media-kingsville-25','','','2020-01-17 17:28:36','2020-01-17 17:28:36','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-25.jpg',0,'attachment','image/jpeg',0),(760,1,'2020-01-17 17:28:39','2020-01-17 17:28:39','','HPG Media - KINGSVILLE-26','','inherit','open','closed','','hpg-media-kingsville-26','','','2020-01-17 17:28:39','2020-01-17 17:28:39','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.jpg',0,'attachment','image/jpeg',0),(761,1,'2020-01-17 17:28:42','2020-01-17 17:28:42','','HPG Media - KINGSVILLE-27','','inherit','open','closed','','hpg-media-kingsville-27','','','2020-01-17 17:28:42','2020-01-17 17:28:42','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.jpg',0,'attachment','image/jpeg',0),(762,1,'2020-01-17 17:28:45','2020-01-17 17:28:45','','HPG Media - KINGSVILLE-28','','inherit','open','closed','','hpg-media-kingsville-28','','','2020-01-17 17:28:45','2020-01-17 17:28:45','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-28.jpg',0,'attachment','image/jpeg',0),(763,1,'2020-01-17 17:28:48','2020-01-17 17:28:48','','HPG Media - KINGSVILLE-29','','inherit','open','closed','','hpg-media-kingsville-29','','','2020-01-17 17:28:48','2020-01-17 17:28:48','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-29.jpg',0,'attachment','image/jpeg',0),(764,1,'2020-01-17 17:28:52','2020-01-17 17:28:52','','HPG Media - KINGSVILLE-30','','inherit','open','closed','','hpg-media-kingsville-30','','','2020-01-17 17:28:52','2020-01-17 17:28:52','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-30.jpg',0,'attachment','image/jpeg',0),(765,1,'2020-01-17 17:28:54','2020-01-17 17:28:54','','HPG Media - KINGSVILLE-31','','inherit','open','closed','','hpg-media-kingsville-31','','','2020-01-17 17:28:54','2020-01-17 17:28:54','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-31.jpg',0,'attachment','image/jpeg',0),(766,1,'2020-01-17 17:28:57','2020-01-17 17:28:57','','HPG Media - KINGSVILLE-32','','inherit','open','closed','','hpg-media-kingsville-32','','','2020-01-17 17:28:57','2020-01-17 17:28:57','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-32.jpg',0,'attachment','image/jpeg',0),(767,1,'2020-01-17 17:29:01','2020-01-17 17:29:01','','HPG Media - KINGSVILLE-33','','inherit','open','closed','','hpg-media-kingsville-33','','','2020-01-17 17:29:01','2020-01-17 17:29:01','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg',0,'attachment','image/jpeg',0),(768,1,'2020-01-17 17:29:04','2020-01-17 17:29:04','','HPG Media - KINGSVILLE-34','','inherit','open','closed','','hpg-media-kingsville-34','','','2020-01-17 17:29:04','2020-01-17 17:29:04','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-34.jpg',0,'attachment','image/jpeg',0),(769,1,'2020-01-17 17:29:07','2020-01-17 17:29:07','','HPG Media - KINGSVILLE-35','','inherit','open','closed','','hpg-media-kingsville-35','','','2020-01-17 17:29:07','2020-01-17 17:29:07','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-35.jpg',0,'attachment','image/jpeg',0),(770,1,'2020-01-17 17:29:09','2020-01-17 17:29:09','','HPG Media - KINGSVILLE-36','','inherit','open','closed','','hpg-media-kingsville-36','','','2020-01-17 17:29:09','2020-01-17 17:29:09','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-36.jpg',0,'attachment','image/jpeg',0),(771,1,'2020-01-17 17:29:12','2020-01-17 17:29:12','','HPG Media - KINGSVILLE-37','','inherit','open','closed','','hpg-media-kingsville-37','','','2020-01-17 17:29:12','2020-01-17 17:29:12','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-37.jpg',0,'attachment','image/jpeg',0),(772,1,'2020-01-17 17:29:15','2020-01-17 17:29:15','','HPG Media - KINGSVILLE-38','','inherit','open','closed','','hpg-media-kingsville-38','','','2020-01-17 17:29:15','2020-01-17 17:29:15','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38.jpg',0,'attachment','image/jpeg',0),(773,1,'2020-01-17 17:29:18','2020-01-17 17:29:18','','HPG Media - KINGSVILLE-39','','inherit','open','closed','','hpg-media-kingsville-39','','','2020-01-17 17:29:18','2020-01-17 17:29:18','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg',0,'attachment','image/jpeg',0),(774,1,'2020-01-17 17:29:20','2020-01-17 17:29:20','','HPG Media - KINGSVILLE-40','','inherit','open','closed','','hpg-media-kingsville-40','','','2020-01-17 17:29:20','2020-01-17 17:29:20','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-40.jpg',0,'attachment','image/jpeg',0),(775,1,'2020-01-17 17:29:23','2020-01-17 17:29:23','','HPG Media - KINGSVILLE-41','','inherit','open','closed','','hpg-media-kingsville-41','','','2020-01-17 17:29:23','2020-01-17 17:29:23','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-41.jpg',0,'attachment','image/jpeg',0),(776,1,'2020-01-17 17:29:25','2020-01-17 17:29:25','','HPG Media - KINGSVILLE-42','','inherit','open','closed','','hpg-media-kingsville-42','','','2020-01-17 17:29:25','2020-01-17 17:29:25','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-42.jpg',0,'attachment','image/jpeg',0),(777,1,'2020-01-17 17:29:28','2020-01-17 17:29:28','','HPG Media - KINGSVILLE-43','','inherit','open','closed','','hpg-media-kingsville-43','','','2020-01-17 17:29:28','2020-01-17 17:29:28','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-43.jpg',0,'attachment','image/jpeg',0),(778,1,'2020-01-17 17:29:32','2020-01-17 17:29:32','','HPG Media - KINGSVILLE-44','','inherit','open','closed','','hpg-media-kingsville-44','','','2020-01-17 17:29:32','2020-01-17 17:29:32','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-44.jpg',0,'attachment','image/jpeg',0),(779,1,'2020-01-17 17:29:35','2020-01-17 17:29:35','','HPG Media - KINGSVILLE-45','','inherit','open','closed','','hpg-media-kingsville-45','','','2020-01-17 17:29:35','2020-01-17 17:29:35','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-45.jpg',0,'attachment','image/jpeg',0),(780,1,'2020-01-17 17:29:38','2020-01-17 17:29:38','','HPG Media - KINGSVILLE-46','','inherit','open','closed','','hpg-media-kingsville-46','','','2020-01-17 17:29:38','2020-01-17 17:29:38','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-46.jpg',0,'attachment','image/jpeg',0),(781,1,'2020-01-17 17:29:41','2020-01-17 17:29:41','','HPG Media - KINGSVILLE-47','','inherit','open','closed','','hpg-media-kingsville-47','','','2020-01-17 17:29:41','2020-01-17 17:29:41','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-47.jpg',0,'attachment','image/jpeg',0),(782,1,'2020-01-17 17:29:44','2020-01-17 17:29:44','','HPG Media - KINGSVILLE-48','','inherit','open','closed','','hpg-media-kingsville-48','','','2020-01-17 17:29:44','2020-01-17 17:29:44','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-48.jpg',0,'attachment','image/jpeg',0),(783,1,'2020-01-17 17:29:46','2020-01-17 17:29:46','','HPG Media - KINGSVILLE-49','','inherit','open','closed','','hpg-media-kingsville-49','','','2020-01-17 17:29:46','2020-01-17 17:29:46','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-49.jpg',0,'attachment','image/jpeg',0),(784,1,'2020-01-17 17:29:49','2020-01-17 17:29:49','','HPG Media - KINGSVILLE-50','','inherit','open','closed','','hpg-media-kingsville-50','','','2020-01-17 17:29:49','2020-01-17 17:29:49','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-50.jpg',0,'attachment','image/jpeg',0),(785,1,'2020-01-17 17:29:52','2020-01-17 17:29:52','','HPG Media - KINGSVILLE-51','','inherit','open','closed','','hpg-media-kingsville-51','','','2020-01-17 17:29:52','2020-01-17 17:29:52','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-51.jpg',0,'attachment','image/jpeg',0),(786,1,'2020-01-17 17:29:55','2020-01-17 17:29:55','','HPG Media - KINGSVILLE-52','','inherit','open','closed','','hpg-media-kingsville-52','','','2020-01-17 17:29:55','2020-01-17 17:29:55','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-52.jpg',0,'attachment','image/jpeg',0),(787,1,'2020-01-17 17:29:58','2020-01-17 17:29:58','','HPG Media - KINGSVILLE-53','','inherit','open','closed','','hpg-media-kingsville-53','','','2020-01-17 17:29:58','2020-01-17 17:29:58','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-53.jpg',0,'attachment','image/jpeg',0),(788,1,'2020-01-17 17:30:01','2020-01-17 17:30:01','','HPG Media - KINGSVILLE-54','','inherit','open','closed','','hpg-media-kingsville-54','','','2020-01-17 17:30:01','2020-01-17 17:30:01','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-54.jpg',0,'attachment','image/jpeg',0),(789,1,'2020-01-17 17:30:06','2020-01-17 17:30:06','','HPG Media - KINGSVILLE-55','','inherit','open','closed','','hpg-media-kingsville-55','','','2020-01-17 17:30:06','2020-01-17 17:30:06','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-55.jpg',0,'attachment','image/jpeg',0),(790,1,'2020-01-17 17:30:10','2020-01-17 17:30:10','','HPG Media - KINGSVILLE-56','','inherit','open','closed','','hpg-media-kingsville-56','','','2020-01-17 17:30:10','2020-01-17 17:30:10','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-56.jpg',0,'attachment','image/jpeg',0),(791,1,'2020-01-17 17:30:13','2020-01-17 17:30:13','','HPG Media - KINGSVILLE-57','','inherit','open','closed','','hpg-media-kingsville-57','','','2020-01-17 17:30:13','2020-01-17 17:30:13','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-57.jpg',0,'attachment','image/jpeg',0),(792,1,'2020-01-17 17:30:15','2020-01-17 17:30:15','','HPG Media - KINGSVILLE-58','','inherit','open','closed','','hpg-media-kingsville-58','','','2020-01-17 17:30:15','2020-01-17 17:30:15','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-58.jpg',0,'attachment','image/jpeg',0),(793,1,'2020-01-17 17:30:18','2020-01-17 17:30:18','','HPG Media - KINGSVILLE-59','','inherit','open','closed','','hpg-media-kingsville-59','','','2020-01-17 17:30:18','2020-01-17 17:30:18','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-59.jpg',0,'attachment','image/jpeg',0),(794,1,'2020-01-17 17:30:21','2020-01-17 17:30:21','','HPG Media - KINGSVILLE-60','','inherit','open','closed','','hpg-media-kingsville-60','','','2020-01-17 17:30:21','2020-01-17 17:30:21','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-60.jpg',0,'attachment','image/jpeg',0),(795,1,'2020-01-17 17:30:24','2020-01-17 17:30:24','','HPG Media - KINGSVILLE-61','','inherit','open','closed','','hpg-media-kingsville-61','','','2020-01-17 17:30:24','2020-01-17 17:30:24','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-61.jpg',0,'attachment','image/jpeg',0),(796,1,'2020-01-17 17:30:27','2020-01-17 17:30:27','','HPG Media - KINGSVILLE-62','','inherit','open','closed','','hpg-media-kingsville-62','','','2020-01-17 17:30:27','2020-01-17 17:30:27','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-62.jpg',0,'attachment','image/jpeg',0),(797,1,'2020-01-17 17:30:31','2020-01-17 17:30:31','','HPG Media - KINGSVILLE-63','','inherit','open','closed','','hpg-media-kingsville-63','','','2020-01-17 17:30:31','2020-01-17 17:30:31','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-63.jpg',0,'attachment','image/jpeg',0),(798,1,'2020-01-17 17:30:35','2020-01-17 17:30:35','','HPG Media - KINGSVILLE-64','','inherit','open','closed','','hpg-media-kingsville-64','','','2020-01-17 17:30:35','2020-01-17 17:30:35','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-64.jpg',0,'attachment','image/jpeg',0),(799,1,'2020-01-17 17:30:39','2020-01-17 17:30:39','','HPG Media - KINGSVILLE-65','','inherit','open','closed','','hpg-media-kingsville-65','','','2020-01-17 17:30:39','2020-01-17 17:30:39','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-65.jpg',0,'attachment','image/jpeg',0),(800,1,'2020-01-17 17:30:44','2020-01-17 17:30:44','','HPG Media - KINGSVILLE-66','','inherit','open','closed','','hpg-media-kingsville-66','','','2020-01-17 17:30:44','2020-01-17 17:30:44','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-66.jpg',0,'attachment','image/jpeg',0),(801,1,'2020-01-17 17:30:49','2020-01-17 17:30:49','','HPG Media - KINGSVILLE-67','','inherit','open','closed','','hpg-media-kingsville-67','','','2020-01-17 17:30:49','2020-01-17 17:30:49','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-67.jpg',0,'attachment','image/jpeg',0),(802,1,'2020-01-17 17:30:53','2020-01-17 17:30:53','','HPG Media - KINGSVILLE-68','','inherit','open','closed','','hpg-media-kingsville-68','','','2020-01-17 17:30:53','2020-01-17 17:30:53','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-68.jpg',0,'attachment','image/jpeg',0),(803,1,'2020-01-17 17:30:57','2020-01-17 17:30:57','','HPG Media - KINGSVILLE-69','','inherit','open','closed','','hpg-media-kingsville-69','','','2020-01-17 17:30:57','2020-01-17 17:30:57','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-69.jpg',0,'attachment','image/jpeg',0),(804,1,'2020-01-17 17:31:00','2020-01-17 17:31:00','','HPG Media - KINGSVILLE-70','','inherit','open','closed','','hpg-media-kingsville-70','','','2020-01-17 17:31:00','2020-01-17 17:31:00','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-70.jpg',0,'attachment','image/jpeg',0),(805,1,'2020-01-17 17:31:05','2020-01-17 17:31:05','','HPG Media - KINGSVILLE-71','','inherit','open','closed','','hpg-media-kingsville-71','','','2020-01-17 17:31:05','2020-01-17 17:31:05','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-71.jpg',0,'attachment','image/jpeg',0),(806,1,'2020-01-17 17:31:09','2020-01-17 17:31:09','','HPG Media - KINGSVILLE-72','','inherit','open','closed','','hpg-media-kingsville-72','','','2020-01-17 17:31:09','2020-01-17 17:31:09','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-72.jpg',0,'attachment','image/jpeg',0),(807,1,'2020-01-17 17:31:12','2020-01-17 17:31:12','','HPG Media - KINGSVILLE-73','','inherit','open','closed','','hpg-media-kingsville-73','','','2020-01-17 17:31:12','2020-01-17 17:31:12','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-73.jpg',0,'attachment','image/jpeg',0),(808,1,'2020-01-17 17:31:14','2020-01-17 17:31:14','','HPG Media - KINGSVILLE-74','','inherit','open','closed','','hpg-media-kingsville-74','','','2020-01-17 17:31:14','2020-01-17 17:31:14','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg',0,'attachment','image/jpeg',0),(809,1,'2020-01-17 17:31:18','2020-01-17 17:31:18','','HPG Media - KINGSVILLE-75','','inherit','open','closed','','hpg-media-kingsville-75','','','2020-01-17 17:31:18','2020-01-17 17:31:18','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-75.jpg',0,'attachment','image/jpeg',0),(810,1,'2020-01-17 17:31:22','2020-01-17 17:31:22','','HPG Media - KINGSVILLE-76','','inherit','open','closed','','hpg-media-kingsville-76','','','2020-01-17 17:31:22','2020-01-17 17:31:22','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-76.jpg',0,'attachment','image/jpeg',0),(811,1,'2020-01-17 17:31:27','2020-01-17 17:31:27','','HPG Media - KINGSVILLE-77','','inherit','open','closed','','hpg-media-kingsville-77','','','2020-01-17 17:31:27','2020-01-17 17:31:27','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-77.jpg',0,'attachment','image/jpeg',0),(812,1,'2020-01-17 17:31:31','2020-01-17 17:31:31','','HPG Media - KINGSVILLE-78','','inherit','open','closed','','hpg-media-kingsville-78','','','2020-01-17 17:31:31','2020-01-17 17:31:31','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-78.jpg',0,'attachment','image/jpeg',0),(813,1,'2020-01-17 17:31:35','2020-01-17 17:31:35','','HPG Media - KINGSVILLE-79','','inherit','open','closed','','hpg-media-kingsville-79','','','2020-01-17 17:31:35','2020-01-17 17:31:35','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg',0,'attachment','image/jpeg',0),(814,1,'2020-01-17 17:31:39','2020-01-17 17:31:39','','HPG Media - KINGSVILLE-80','','inherit','open','closed','','hpg-media-kingsville-80','','','2020-01-17 17:31:39','2020-01-17 17:31:39','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-80.jpg',0,'attachment','image/jpeg',0),(815,1,'2020-01-17 17:31:42','2020-01-17 17:31:42','','HPG Media - KINGSVILLE-81','','inherit','open','closed','','hpg-media-kingsville-81','','','2020-01-17 17:31:42','2020-01-17 17:31:42','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-81.jpg',0,'attachment','image/jpeg',0),(816,1,'2020-01-17 17:31:44','2020-01-17 17:31:44','','HPG Media - KINGSVILLE-82','','inherit','open','closed','','hpg-media-kingsville-82','','','2020-01-17 17:31:44','2020-01-17 17:31:44','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-82.jpg',0,'attachment','image/jpeg',0),(817,1,'2020-01-17 17:31:47','2020-01-17 17:31:47','','HPG Media - KINGSVILLE-83','','inherit','open','closed','','hpg-media-kingsville-83','','','2020-01-17 17:31:47','2020-01-17 17:31:47','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-83.jpg',0,'attachment','image/jpeg',0),(818,1,'2020-01-17 17:31:49','2020-01-17 17:31:49','','HPG Media - KINGSVILLE-84','','inherit','open','closed','','hpg-media-kingsville-84','','','2020-01-17 17:31:49','2020-01-17 17:31:49','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-84.jpg',0,'attachment','image/jpeg',0),(819,1,'2020-01-17 17:31:51','2020-01-17 17:31:51','','HPG Media - KINGSVILLE-85','','inherit','open','closed','','hpg-media-kingsville-85','','','2020-01-17 17:31:51','2020-01-17 17:31:51','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-85.jpg',0,'attachment','image/jpeg',0),(820,1,'2020-01-17 17:31:54','2020-01-17 17:31:54','','HPG Media - KINGSVILLE-86','','inherit','open','closed','','hpg-media-kingsville-86','','','2020-01-17 17:31:54','2020-01-17 17:31:54','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-86.jpg',0,'attachment','image/jpeg',0),(821,1,'2020-01-17 17:31:56','2020-01-17 17:31:56','','HPG Media - KINGSVILLE-87','','inherit','open','closed','','hpg-media-kingsville-87','','','2020-01-17 17:31:56','2020-01-17 17:31:56','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-87.jpg',0,'attachment','image/jpeg',0),(822,1,'2020-01-17 17:31:58','2020-01-17 17:31:58','','HPG Media - KINGSVILLE-88','','inherit','open','closed','','hpg-media-kingsville-88','','','2020-01-17 17:31:58','2020-01-17 17:31:58','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-88.jpg',0,'attachment','image/jpeg',0),(823,1,'2020-01-17 17:32:02','2020-01-17 17:32:02','','HPG Media - KINGSVILLE-89','','inherit','open','closed','','hpg-media-kingsville-89','','','2020-01-17 17:32:02','2020-01-17 17:32:02','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-89.jpg',0,'attachment','image/jpeg',0),(824,1,'2020-01-17 17:32:05','2020-01-17 17:32:05','','HPG Media - KINGSVILLE-90','','inherit','open','closed','','hpg-media-kingsville-90','','','2020-01-17 17:32:05','2020-01-17 17:32:05','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-90.jpg',0,'attachment','image/jpeg',0),(825,1,'2020-01-17 17:32:08','2020-01-17 17:32:08','','HPG Media - KINGSVILLE-91','','inherit','open','closed','','hpg-media-kingsville-91','','','2020-01-17 17:32:08','2020-01-17 17:32:08','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-91.jpg',0,'attachment','image/jpeg',0),(826,1,'2020-01-17 17:32:10','2020-01-17 17:32:10','','HPG Media - KINGSVILLE-92','','inherit','open','closed','','hpg-media-kingsville-92','','','2020-01-17 17:32:10','2020-01-17 17:32:10','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-92.jpg',0,'attachment','image/jpeg',0),(827,1,'2020-01-17 17:32:13','2020-01-17 17:32:13','','HPG Media - KINGSVILLE-93','','inherit','open','closed','','hpg-media-kingsville-93','','','2020-01-17 17:32:13','2020-01-17 17:32:13','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-93.jpg',0,'attachment','image/jpeg',0),(828,1,'2020-01-17 17:32:16','2020-01-17 17:32:16','','HPG Media - KINGSVILLE-94','','inherit','open','closed','','hpg-media-kingsville-94','','','2020-01-17 17:32:16','2020-01-17 17:32:16','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-94.jpg',0,'attachment','image/jpeg',0),(829,1,'2020-01-17 17:32:19','2020-01-17 17:32:19','','HPG Media - KINGSVILLE-95','','inherit','open','closed','','hpg-media-kingsville-95','','','2020-01-17 17:32:19','2020-01-17 17:32:19','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-95.jpg',0,'attachment','image/jpeg',0),(830,1,'2020-01-17 17:32:21','2020-01-17 17:32:21','','HPG Media - KINGSVILLE-96','','inherit','open','closed','','hpg-media-kingsville-96','','','2020-01-17 17:32:21','2020-01-17 17:32:21','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg',0,'attachment','image/jpeg',0),(831,1,'2020-01-17 17:32:24','2020-01-17 17:32:24','','HPG Media - KINGSVILLE-97','','inherit','open','closed','','hpg-media-kingsville-97','','','2020-01-17 17:32:24','2020-01-17 17:32:24','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-97.jpg',0,'attachment','image/jpeg',0),(832,1,'2020-01-17 17:32:26','2020-01-17 17:32:26','','HPG Media - KINGSVILLE-98','','inherit','open','closed','','hpg-media-kingsville-98','','','2020-01-17 17:32:26','2020-01-17 17:32:26','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-98.jpg',0,'attachment','image/jpeg',0),(833,1,'2020-01-17 17:32:29','2020-01-17 17:32:29','','HPG Media - KINGSVILLE-99','','inherit','open','closed','','hpg-media-kingsville-99','','','2020-01-17 17:32:29','2020-01-17 17:32:29','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-99.jpg',0,'attachment','image/jpeg',0),(834,1,'2020-01-17 17:32:32','2020-01-17 17:32:32','','HPG Media - KINGSVILLE-100','','inherit','open','closed','','hpg-media-kingsville-100','','','2020-01-17 17:32:32','2020-01-17 17:32:32','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-100.jpg',0,'attachment','image/jpeg',0),(835,1,'2020-01-17 17:32:35','2020-01-17 17:32:35','','HPG Media - KINGSVILLE-101','','inherit','open','closed','','hpg-media-kingsville-101','','','2020-01-17 17:32:35','2020-01-17 17:32:35','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-101.jpg',0,'attachment','image/jpeg',0),(836,1,'2020-01-17 17:32:37','2020-01-17 17:32:37','','HPG Media - KINGSVILLE-102','','inherit','open','closed','','hpg-media-kingsville-102','','','2020-01-17 17:32:37','2020-01-17 17:32:37','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-102.jpg',0,'attachment','image/jpeg',0),(837,1,'2020-01-17 17:32:40','2020-01-17 17:32:40','','HPG Media - KINGSVILLE-103','','inherit','open','closed','','hpg-media-kingsville-103','','','2020-01-17 17:32:40','2020-01-17 17:32:40','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-103.jpg',0,'attachment','image/jpeg',0),(838,1,'2020-01-17 17:32:42','2020-01-17 17:32:42','','HPG Media - KINGSVILLE-104','','inherit','open','closed','','hpg-media-kingsville-104','','','2020-01-17 17:32:42','2020-01-17 17:32:42','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-104.jpg',0,'attachment','image/jpeg',0),(839,1,'2020-01-17 17:32:45','2020-01-17 17:32:45','','HPG Media - KINGSVILLE-105','','inherit','open','closed','','hpg-media-kingsville-105','','','2020-01-17 17:32:45','2020-01-17 17:32:45','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-105.jpg',0,'attachment','image/jpeg',0),(840,1,'2020-01-17 17:32:50','2020-01-17 17:32:50','','HPG Media - KINGSVILLE-106','','inherit','open','closed','','hpg-media-kingsville-106','','','2020-01-17 17:32:50','2020-01-17 17:32:50','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-106.jpg',0,'attachment','image/jpeg',0),(841,1,'2020-01-17 17:32:54','2020-01-17 17:32:54','','HPG Media - KINGSVILLE-107','','inherit','open','closed','','hpg-media-kingsville-107','','','2020-01-17 17:32:54','2020-01-17 17:32:54','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-107.jpg',0,'attachment','image/jpeg',0),(842,1,'2020-01-17 17:32:56','2020-01-17 17:32:56','','HPG Media - KINGSVILLE-108','','inherit','open','closed','','hpg-media-kingsville-108','','','2020-01-17 17:32:56','2020-01-17 17:32:56','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-108.jpg',0,'attachment','image/jpeg',0),(843,1,'2020-01-17 17:32:58','2020-01-17 17:32:58','','HPG Media - KINGSVILLE-109','','inherit','open','closed','','hpg-media-kingsville-109','','','2020-01-17 17:32:58','2020-01-17 17:32:58','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-109.jpg',0,'attachment','image/jpeg',0),(844,1,'2020-01-17 17:32:59','2020-01-17 17:32:59','','HPG Media - KINGSVILLE-110','','inherit','open','closed','','hpg-media-kingsville-110','','','2020-01-17 17:32:59','2020-01-17 17:32:59','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-110.jpg',0,'attachment','image/jpeg',0),(845,1,'2020-01-17 17:33:02','2020-01-17 17:33:02','','HPG Media - KINGSVILLE-111','','inherit','open','closed','','hpg-media-kingsville-111','','','2020-01-17 17:33:02','2020-01-17 17:33:02','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-111.jpg',0,'attachment','image/jpeg',0),(846,1,'2020-01-17 17:33:05','2020-01-17 17:33:05','','HPG Media - KINGSVILLE-112','','inherit','open','closed','','hpg-media-kingsville-112','','','2020-01-17 17:33:05','2020-01-17 17:33:05','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-112.jpg',0,'attachment','image/jpeg',0),(847,1,'2020-01-17 17:33:07','2020-01-17 17:33:07','','HPG Media - KINGSVILLE-113','','inherit','open','closed','','hpg-media-kingsville-113','','','2020-01-17 17:33:07','2020-01-17 17:33:07','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-113.jpg',0,'attachment','image/jpeg',0),(848,1,'2020-01-17 17:33:09','2020-01-17 17:33:09','','HPG Media - KINGSVILLE-114','','inherit','open','closed','','hpg-media-kingsville-114','','','2020-01-17 17:33:09','2020-01-17 17:33:09','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-114.jpg',0,'attachment','image/jpeg',0),(849,1,'2020-01-17 17:33:11','2020-01-17 17:33:11','','HPG Media - KINGSVILLE-115','','inherit','open','closed','','hpg-media-kingsville-115','','','2020-01-17 17:33:11','2020-01-17 17:33:11','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-115.jpg',0,'attachment','image/jpeg',0),(850,1,'2020-01-17 17:33:14','2020-01-17 17:33:14','','HPG Media - KINGSVILLE-116','','inherit','open','closed','','hpg-media-kingsville-116','','','2020-01-17 17:33:14','2020-01-17 17:33:14','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-116.jpg',0,'attachment','image/jpeg',0),(851,1,'2020-01-17 17:33:16','2020-01-17 17:33:16','','HPG Media - KINGSVILLE-117','','inherit','open','closed','','hpg-media-kingsville-117','','','2020-01-17 17:33:16','2020-01-17 17:33:16','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-117.jpg',0,'attachment','image/jpeg',0),(852,1,'2020-01-17 17:33:18','2020-01-17 17:33:18','','HPG Media - KINGSVILLE-118','','inherit','open','closed','','hpg-media-kingsville-118','','','2020-01-17 17:33:18','2020-01-17 17:33:18','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-118.jpg',0,'attachment','image/jpeg',0),(853,1,'2020-01-17 17:33:21','2020-01-17 17:33:21','','HPG Media - KINGSVILLE-119','','inherit','open','closed','','hpg-media-kingsville-119','','','2020-01-17 17:33:21','2020-01-17 17:33:21','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-119.jpg',0,'attachment','image/jpeg',0),(854,1,'2020-01-17 17:33:23','2020-01-17 17:33:23','','HPG Media - KINGSVILLE-120','','inherit','open','closed','','hpg-media-kingsville-120','','','2020-01-17 17:33:23','2020-01-17 17:33:23','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-120.jpg',0,'attachment','image/jpeg',0),(855,1,'2020-01-17 17:33:25','2020-01-17 17:33:25','','HPG Media - KINGSVILLE-121','','inherit','open','closed','','hpg-media-kingsville-121','','','2020-01-17 17:33:25','2020-01-17 17:33:25','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-121.jpg',0,'attachment','image/jpeg',0),(856,1,'2020-01-17 17:33:27','2020-01-17 17:33:27','','HPG Media - KINGSVILLE-122','','inherit','open','closed','','hpg-media-kingsville-122','','','2020-01-17 17:33:27','2020-01-17 17:33:27','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-122.jpg',0,'attachment','image/jpeg',0),(857,1,'2020-01-17 17:33:29','2020-01-17 17:33:29','','HPG Media - KINGSVILLE-123','','inherit','open','closed','','hpg-media-kingsville-123','','','2020-01-17 17:33:29','2020-01-17 17:33:29','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-123.jpg',0,'attachment','image/jpeg',0),(858,1,'2020-01-17 17:33:32','2020-01-17 17:33:32','','HPG Media - KINGSVILLE-124','','inherit','open','closed','','hpg-media-kingsville-124','','','2020-01-17 17:33:32','2020-01-17 17:33:32','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-124.jpg',0,'attachment','image/jpeg',0),(859,1,'2020-01-17 17:33:35','2020-01-17 17:33:35','','HPG Media - KINGSVILLE-125','','inherit','open','closed','','hpg-media-kingsville-125','','','2020-01-17 17:33:35','2020-01-17 17:33:35','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-125.jpg',0,'attachment','image/jpeg',0),(860,1,'2020-01-17 17:33:36','2020-01-17 17:33:36','','HPG Media - KINGSVILLE-126','','inherit','open','closed','','hpg-media-kingsville-126','','','2020-01-17 17:33:36','2020-01-17 17:33:36','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-126.jpg',0,'attachment','image/jpeg',0),(861,1,'2020-01-17 17:33:39','2020-01-17 17:33:39','','HPG Media - KINGSVILLE-127','','inherit','open','closed','','hpg-media-kingsville-127','','','2020-01-17 17:33:39','2020-01-17 17:33:39','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-127.jpg',0,'attachment','image/jpeg',0),(862,1,'2020-01-17 17:33:41','2020-01-17 17:33:41','','HPG Media - KINGSVILLE-128','','inherit','open','closed','','hpg-media-kingsville-128','','','2020-01-17 17:33:41','2020-01-17 17:33:41','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-128.jpg',0,'attachment','image/jpeg',0),(863,1,'2020-01-17 17:33:43','2020-01-17 17:33:43','','HPG Media - KINGSVILLE-129','','inherit','open','closed','','hpg-media-kingsville-129','','','2020-01-17 17:33:43','2020-01-17 17:33:43','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-129.jpg',0,'attachment','image/jpeg',0),(864,1,'2020-01-17 17:33:45','2020-01-17 17:33:45','','HPG Media - KINGSVILLE-130','','inherit','open','closed','','hpg-media-kingsville-130','','','2020-01-17 17:33:45','2020-01-17 17:33:45','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-130.jpg',0,'attachment','image/jpeg',0),(865,1,'2020-01-17 17:33:48','2020-01-17 17:33:48','','HPG Media - KINGSVILLE-131','','inherit','open','closed','','hpg-media-kingsville-131','','','2020-01-17 17:33:48','2020-01-17 17:33:48','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-131.jpg',0,'attachment','image/jpeg',0),(868,1,'2020-01-17 17:41:18','2020-01-17 17:41:18','','Kingsville Auctions','','inherit','open','closed','','kingsville-auctions','','','2020-01-17 17:41:18','2020-01-17 17:41:18','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/Kingsville-Auctions.png',0,'attachment','image/png',0),(869,1,'2020-01-17 17:47:41','2020-01-17 17:47:41','','HPG Media - KINGSVILLE-96','','inherit','open','closed','','hpg-media-kingsville-96-2','','','2020-01-17 17:47:41','2020-01-17 17:47:41','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg',0,'attachment','image/jpeg',0),(894,1,'2020-01-17 18:12:37','2020-01-17 18:12:37','[et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Footer Layout','','publish','closed','closed','','footer-layout-2','','','2020-03-03 00:25:21','2020-03-03 00:25:21','',0,'http://hpgmediatest.com/kingsville-livestock/et_pb_layout/footer-layout-2/',0,'et_pb_layout','',0),(901,1,'2020-01-17 18:19:08','2020-01-17 18:19:08','','HPG Media - KINGSVILLE-18','','inherit','open','closed','','hpg-media-kingsville-18-2','','','2020-01-17 18:19:08','2020-01-17 18:19:08','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png',0,'attachment','image/png',0),(904,1,'2020-01-17 18:28:26','2020-01-17 18:28:26','','HPG Media - KINGSVILLE-26','','inherit','open','closed','','hpg-media-kingsville-26-2','','','2020-01-17 18:28:26','2020-01-17 18:28:26','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png',0,'attachment','image/png',0),(905,1,'2020-01-17 18:30:09','2020-01-17 18:30:09','','HPG Media - KINGSVILLE-27','','inherit','open','closed','','hpg-media-kingsville-27-2','','','2020-01-17 18:30:09','2020-01-17 18:30:09','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png',0,'attachment','image/png',0),(914,1,'2020-01-17 18:40:07','2020-01-17 18:40:07','','HPG Media - KINGSVILLE-38','','inherit','open','closed','','hpg-media-kingsville-38-2','','','2020-01-17 18:40:07','2020-01-17 18:40:07','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg',0,'attachment','image/jpeg',0),(930,1,'2020-01-17 18:55:09','2020-01-17 18:55:09','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Call to Action\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" saved_tabs=\"all\" locked=\"off\" template_type=\"section\"][/et_pb_section]','FOOTER LAYOUT','','inherit','closed','closed','','688-revision-v1','','','2020-01-17 18:55:09','2020-01-17 18:55:09','',688,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/688-revision-v1/',0,'revision','',0),(935,1,'2020-01-17 18:59:10','2020-01-17 18:59:10','[et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" template_type=\"section\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"%%15%%\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"%%15%%\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"%%15%%\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"%%15%%\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Photo Grid','','publish','closed','closed','','photo-grid','','','2020-01-17 18:59:10','2020-01-17 18:59:10','',0,'http://hpgmediatest.com/kingsville-livestock/et_pb_layout/photo-grid/',0,'et_pb_layout','',0),(947,1,'2020-01-17 19:42:19','2020-01-17 19:42:19','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident sunt in culpa qui officia deserunt mollit anim.Â Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This message about %%trailer_type%% availability.||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" global_module=\"1014\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"trailer_type\" field_title=\"What type of trailer are you interested in?\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','EZ Haul Flatbed Gooseneck','','publish','open','open','','ez-haul-flatbed-gooseneck','','','2020-01-17 21:24:11','2020-01-17 21:24:11','',0,'http://hpgmediatest.com/kingsville-livestock/?p=947',0,'post','',0),(948,1,'2020-01-17 19:42:05','2020-01-17 19:42:05','','thumb-maverick','','inherit','open','closed','','thumb-maverick','','','2020-01-17 19:42:05','2020-01-17 19:42:05','',947,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/thumb-maverick.jpg',0,'attachment','image/jpeg',0),(949,1,'2020-01-17 19:42:05','2020-01-17 19:42:05','','thumb-wrangler','','inherit','open','closed','','thumb-wrangler','','','2020-01-17 19:42:05','2020-01-17 19:42:05','',947,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/thumb-wrangler.jpg',0,'attachment','image/jpeg',0),(950,1,'2020-01-17 19:42:06','2020-01-17 19:42:06','','Corral','','inherit','open','closed','','corral','','','2020-01-17 19:42:06','2020-01-17 19:42:06','',947,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/Corral.jpg',0,'attachment','image/jpeg',0),(951,1,'2020-01-17 19:42:08','2020-01-17 19:42:08','','closed','','inherit','open','closed','','closed','','','2020-01-17 19:42:08','2020-01-17 19:42:08','',947,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/closed.jpg',0,'attachment','image/jpeg',0),(952,1,'2020-01-17 19:42:09','2020-01-17 19:42:09','','hay trailer','','inherit','open','closed','','hay-trailer','','','2020-01-17 19:42:09','2020-01-17 19:42:09','',947,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/hay-trailer.jpg',0,'attachment','image/jpeg',0),(964,1,'2020-01-17 19:56:58','2020-01-17 19:56:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\"][et_pb_fullwidth_header title=\"EZ Haul Flatbed Gooseneck\" content_max_width=\"700px\" _builder_version=\"4.2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"http://kingsvillelivestock.com/wp-content/uploads/2020/01/produce-25.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%|\" hover_enabled=\"0\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>Â </p>\n<p>Mauris porta nulla vitae aliquam luctus. Vestibulum non tempus libero. Sed ultricies diam ligula, vitae vestibulum lectus aliquam ut. Quisque ut justo a arcu luctus hendrerit nec at nisi. Nullam pulvinar rutrum faucibus.</p>\n<p>Â </p>[/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident sunt in culpa qui officia deserunt mollit anim.Â Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column _builder_version=\"4.2\" type=\"4_4\"][et_pb_contact_form _builder_version=\"4.2\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" custom_message=\"You have received a message about your %page_title%.||et_pb_line_break_holder||||et_pb_line_break_holder||%message%||et_pb_line_break_holder||||et_pb_line_break_holder||Please contact %name% at either %email% or %phone%.\" hover_enabled=\"0\" title=\"Contact Us About Availability\" email=\"jessica@givewings.com\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" hover_enabled=\"0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.2\" hover_enabled=\"0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" fullwidth_field=\"on\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','32\' 6-Bale Hay Trailers','','inherit','closed','closed','','947-revision-v1','','','2020-01-17 19:56:58','2020-01-17 19:56:58','',947,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/947-revision-v1/',0,'revision','',0),(967,1,'2020-01-17 20:00:30','2020-01-17 20:00:30','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident sunt in culpa qui officia deserunt mollit anim.Â Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column _builder_version=\"4.2\" type=\"4_4\"][et_pb_text _builder_version=\"4.2\" hover_enabled=\"0\"]<h1>EZ Haul Flatbed Gooseneck</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givewings.com\" title=\"Contact Us About Availability\" custom_message=\"You have received a message about your %page_title%.||et_pb_line_break_holder||||et_pb_line_break_holder||%message%||et_pb_line_break_holder||||et_pb_line_break_holder||Please contact %name% at either %email% or %phone%.\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','32\' 6-Bale Hay Trailers','','inherit','closed','closed','','947-revision-v1','','','2020-01-17 20:00:30','2020-01-17 20:00:30','',947,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/947-revision-v1/',0,'revision','',0),(968,1,'2020-01-17 20:00:38','2020-01-17 20:00:38','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident sunt in culpa qui officia deserunt mollit anim.Â Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column _builder_version=\"4.2\" type=\"4_4\"][et_pb_text _builder_version=\"4.2\" hover_enabled=\"0\"]<h1>EZ Haul Flatbed Gooseneck</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givewings.com\" title=\"Contact Us About Availability\" custom_message=\"You have received a message about your %page_title%.||et_pb_line_break_holder||||et_pb_line_break_holder||%message%||et_pb_line_break_holder||||et_pb_line_break_holder||Please contact %name% at either %email% or %phone%.\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','EZ Haul Flatbed Gooseneck','','inherit','closed','closed','','947-revision-v1','','','2020-01-17 20:00:38','2020-01-17 20:00:38','',947,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/947-revision-v1/',0,'revision','',0),(969,1,'2020-01-17 20:01:12','2020-01-17 20:01:12','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident sunt in culpa qui officia deserunt mollit anim.Â Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givewings.com\" title=\"Contact Us About Availability\" custom_message=\"You have received a message about your %page_title%.||et_pb_line_break_holder||||et_pb_line_break_holder||%message%||et_pb_line_break_holder||||et_pb_line_break_holder||Please contact %name% at either %email% or %phone%.\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','EZ Haul Flatbed Gooseneck','','inherit','closed','closed','','947-revision-v1','','','2020-01-17 20:01:12','2020-01-17 20:01:12','',947,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/947-revision-v1/',0,'revision','',0),(970,1,'2020-01-17 20:17:16','2020-01-17 20:17:16','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<h1>32\' 6-Bale Hay Trailers - 10 ply Tires</h1>\n<h1>Price: $4850</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This message about %%trailer_type%% availability.||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" global_module=\"1014\" saved_tabs=\"all\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"trailer_type\" field_title=\"What type of trailer are you interested in?\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','32\' 6-Bale Hay Trailers','32\' 6-Bale Hay Trailers - 10 ply Tires - Sale $4850','publish','closed','open','','32-6-bale-hay-trailers','','','2020-01-17 21:24:33','2020-01-17 21:24:33','',0,'http://hpgmediatest.com/kingsville-livestock/?p=970',0,'post','',0),(987,1,'2020-01-17 20:29:50','2020-01-17 20:29:50','','Theme Builder Layout','','publish','closed','closed','','theme-builder-layout','','','2020-01-17 20:29:50','2020-01-17 20:29:50','',0,'http://hpgmediatest.com/kingsville-livestock/et_body_layout/theme-builder-layout/',0,'et_body_layout','',0),(992,1,'2020-01-17 20:30:35','2020-01-17 20:30:35','','Default Website Template','','publish','closed','closed','','default-website-template','','','2020-01-17 20:32:37','2020-01-17 20:32:37','',0,'http://hpgmediatest.com/kingsville-livestock/et_template/default-website-template/',0,'et_template','',0),(993,1,'2020-01-17 20:30:35','2020-01-17 20:30:35','','Posts in Specific Categories: Trailers For Sale','','publish','closed','closed','','posts-in-specific-categories-trailers-for-sale','','','2020-01-17 20:30:35','2020-01-17 20:30:35','',0,'http://hpgmediatest.com/kingsville-livestock/et_template/posts-in-specific-categories-trailers-for-sale/',0,'et_template','',0),(997,1,'2020-01-17 20:33:48','2020-01-17 20:33:48','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<h1>32\' 6-Bale Hay Trailers - 10 ply Tires</h1>\n<h1>Price: $4850</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This mess is from %%page_title%%||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||Message: %%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','32\' 6-Bale Hay Trailers','32\' 6-Bale Hay Trailers - 10 ply Tires - Sale $4850','inherit','closed','closed','','970-revision-v1','','','2020-01-17 20:33:48','2020-01-17 20:33:48','',970,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/970-revision-v1/',0,'revision','',0),(1000,1,'2020-01-17 20:55:57','2020-01-17 20:55:57','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<h1>32\' 6-Bale Hay Trailers - 10 ply Tires</h1>\n<h1>Price: $4850</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This mess is from %%page_title%%||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||Message: %%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" fullwidth_field=\"on\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][et_pb_code _builder_version=\"4.2\" hover_enabled=\"0\"][contact-form-7 id=\"998\" title=\"Trailer Contact Form\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','32\' 6-Bale Hay Trailers','32\' 6-Bale Hay Trailers - 10 ply Tires - Sale $4850','inherit','closed','closed','','970-revision-v1','','','2020-01-17 20:55:57','2020-01-17 20:55:57','',970,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/970-revision-v1/',0,'revision','',0),(1002,1,'2020-01-17 21:01:57','2020-01-17 21:01:57','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<h1>32\' 6-Bale Hay Trailers - 10 ply Tires</h1>\n<h1>Price: $4850</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This message about the %%trailer_type%%||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.2\" hover_enabled=\"0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"trailer_type\" field_title=\"What type of trailer are you interested in?\" _builder_version=\"4.2\" hover_enabled=\"0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','32\' 6-Bale Hay Trailers','32\' 6-Bale Hay Trailers - 10 ply Tires - Sale $4850','inherit','closed','closed','','970-revision-v1','','','2020-01-17 21:01:57','2020-01-17 21:01:57','',970,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/970-revision-v1/',0,'revision','',0),(1004,1,'2020-01-17 21:06:16','2020-01-17 21:06:16','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<h1>32\' 6-Bale Hay Trailers - 10 ply Tires</h1>\n<h1>Price: $4850</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This message about %%trailer_type%% availability.||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"trailer_type\" field_title=\"What type of trailer are you interested in?\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','32\' 6-Bale Hay Trailers','32\' 6-Bale Hay Trailers - 10 ply Tires - Sale $4850','inherit','closed','closed','','970-revision-v1','','','2020-01-17 21:06:16','2020-01-17 21:06:16','',970,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/970-revision-v1/',0,'revision','',0),(1005,1,'2020-01-17 21:14:35','2020-01-17 21:14:35','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<h1>36\' 7-Bale Hay Trailers - 10 ply Tires</h1>\n<h1>Price: $4950</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_module=\"1011\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This message about %%trailer_type%% availability.||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"trailer_type\" field_title=\"What type of trailer are you interested in?\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','36\' 7-Bale Hay Trailers','36\' 7-Bale Hay Trailers - 10 ply Tires - $4950','publish','closed','open','','36-7-bale-hay-trailers','','','2020-01-17 21:24:38','2020-01-17 21:24:38','',0,'http://hpgmediatest.com/kingsville-livestock/?p=1005',0,'post','',0),(1006,1,'2020-01-17 21:13:15','2020-01-17 21:13:15','[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text]\r\n<h1>36\' 7-Bale Hay Trailers - 10 ply Tires - $4950</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','36\' 7-Bale Hay Trailers','36\' 7-Bale Hay Trailers - 10 ply Tires - $4950','inherit','closed','closed','','1005-revision-v1','','','2020-01-17 21:13:15','2020-01-17 21:13:15','',1005,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/1005-revision-v1/',0,'revision','',0),(1008,1,'2020-01-17 21:13:56','2020-01-17 21:13:56','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<h1>32\' 6-Bale Hay Trailers - 10 ply Tires</h1>\n<h1>Price: $4850</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This message about %%trailer_type%% availability.||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"trailer_type\" field_title=\"What type of trailer are you interested in?\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','36\' 7-Bale Hay Trailers','36\' 7-Bale Hay Trailers - 10 ply Tires - $4950','inherit','closed','closed','','1005-revision-v1','','','2020-01-17 21:13:56','2020-01-17 21:13:56','',1005,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/1005-revision-v1/',0,'revision','',0),(1009,1,'2020-01-17 21:14:35','2020-01-17 21:14:35','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<h1>36\' 7-Bale Hay Trailers - 10 ply Tires</h1>\n<h1>Price: $4950</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This message about %%trailer_type%% availability.||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"trailer_type\" field_title=\"What type of trailer are you interested in?\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','36\' 7-Bale Hay Trailers','36\' 7-Bale Hay Trailers - 10 ply Tires - $4950','inherit','closed','closed','','1005-revision-v1','','','2020-01-17 21:14:35','2020-01-17 21:14:35','',1005,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/1005-revision-v1/',0,'revision','',0),(1011,1,'2020-01-17 21:15:11','2020-01-17 21:15:11','[et_pb_row _builder_version=\"4.2\" template_type=\"row\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This message about %%trailer_type%% availability.||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"trailer_type\" field_title=\"What type of trailer are you interested in?\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row]','Trailer Contact Form','','publish','closed','closed','','trailer-contact-form','','','2020-01-17 21:15:11','2020-01-17 21:15:11','',0,'http://hpgmediatest.com/kingsville-livestock/et_pb_layout/trailer-contact-form/',0,'et_pb_layout','',0),(1012,1,'2020-01-17 21:15:17','2020-01-17 21:15:17','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<h1>36\' 7-Bale Hay Trailers - 10 ply Tires</h1>\n<h1>Price: $4950</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_module=\"1011\" saved_tabs=\"all\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This message about %%trailer_type%% availability.||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"trailer_type\" field_title=\"What type of trailer are you interested in?\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','36\' 7-Bale Hay Trailers','36\' 7-Bale Hay Trailers - 10 ply Tires - $4950','inherit','closed','closed','','1005-revision-v1','','','2020-01-17 21:15:17','2020-01-17 21:15:17','',1005,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/1005-revision-v1/',0,'revision','',0),(1014,1,'2020-01-17 21:16:44','2020-01-17 21:16:44','[et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This message about %%trailer_type%% availability.||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" template_type=\"module\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"trailer_type\" field_title=\"What type of trailer are you interested in?\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form]','Trailer Contact Form','','publish','closed','closed','','trailer-contact-form-2','','','2020-01-17 21:16:44','2020-01-17 21:16:44','',0,'http://hpgmediatest.com/kingsville-livestock/et_pb_layout/trailer-contact-form-2/',0,'et_pb_layout','',0),(1015,1,'2020-01-17 21:16:47','2020-01-17 21:16:47','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<h1>32\' 6-Bale Hay Trailers - 10 ply Tires</h1>\n<h1>Price: $4850</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This message about %%trailer_type%% availability.||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" global_module=\"1014\" saved_tabs=\"all\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"trailer_type\" field_title=\"What type of trailer are you interested in?\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','32\' 6-Bale Hay Trailers','32\' 6-Bale Hay Trailers - 10 ply Tires - Sale $4850','inherit','closed','closed','','970-revision-v1','','','2020-01-17 21:16:47','2020-01-17 21:16:47','',970,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/970-revision-v1/',0,'revision','',0),(1016,1,'2020-01-17 21:17:12','2020-01-17 21:17:12','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>\n<p>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident sunt in culpa qui officia deserunt mollit anim.Â Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This message about %%trailer_type%% availability.||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" global_module=\"1014\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"trailer_type\" field_title=\"What type of trailer are you interested in?\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','EZ Haul Flatbed Gooseneck','','inherit','closed','closed','','947-revision-v1','','','2020-01-17 21:17:12','2020-01-17 21:17:12','',947,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/947-revision-v1/',0,'revision','',0),(1017,1,'2020-01-17 21:17:59','2020-01-17 21:17:59','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<h1>40\' 8-Bale Hay Trailers - 14 ply Tires</h1>\n<h1>Price: $5550</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This message about %%trailer_type%% availability.||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" global_module=\"1014\" saved_tabs=\"all\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"trailer_type\" field_title=\"What type of trailer are you interested in?\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','40\' 8-Bale Hay Trailers','40\' 8-Bale Hay Trailers - 14 ply Tires - $5550','publish','closed','open','','40-8-bale-hay-trailers','','','2020-01-17 21:24:44','2020-01-17 21:24:44','',0,'http://hpgmediatest.com/kingsville-livestock/?p=1017',0,'post','',0),(1018,1,'2020-01-17 21:17:59','2020-01-17 21:17:59','<h1>40\' 8-Bale Hay Trailers - 14 ply Tires - $5550</h1>','40\' 8-Bale Hay Trailers','40\' 8-Bale Hay Trailers - 14 ply Tires - $5550','inherit','closed','closed','','1017-revision-v1','','','2020-01-17 21:17:59','2020-01-17 21:17:59','',1017,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/1017-revision-v1/',0,'revision','',0),(1019,1,'2020-01-17 21:18:06','2020-01-17 21:18:06','[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text]\r\n<h1>40\' 8-Bale Hay Trailers - 14 ply Tires - $5550</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','40\' 8-Bale Hay Trailers','40\' 8-Bale Hay Trailers - 14 ply Tires - $5550','inherit','closed','closed','','1017-revision-v1','','','2020-01-17 21:18:06','2020-01-17 21:18:06','',1017,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/1017-revision-v1/',0,'revision','',0),(1021,1,'2020-01-17 21:18:31','2020-01-17 21:18:31','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<h1>32\' 6-Bale Hay Trailers - 10 ply Tires</h1>\n<h1>Price: $4850</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This message about %%trailer_type%% availability.||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" global_module=\"1014\" saved_tabs=\"all\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"trailer_type\" field_title=\"What type of trailer are you interested in?\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','40\' 8-Bale Hay Trailers','40\' 8-Bale Hay Trailers - 14 ply Tires - $5550','inherit','closed','closed','','1017-revision-v1','','','2020-01-17 21:18:31','2020-01-17 21:18:31','',1017,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/1017-revision-v1/',0,'revision','',0),(1022,1,'2020-01-17 21:18:53','2020-01-17 21:18:53','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<h1>40\' 8-Bale Hay Trailers - 14 ply Tires</h1>\n<h1>Price: $5550</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This message about %%trailer_type%% availability.||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" global_module=\"1014\" saved_tabs=\"all\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"trailer_type\" field_title=\"What type of trailer are you interested in?\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','40\' 8-Bale Hay Trailers','40\' 8-Bale Hay Trailers - 14 ply Tires - $5550','inherit','closed','closed','','1017-revision-v1','','','2020-01-17 21:18:53','2020-01-17 21:18:53','',1017,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/1017-revision-v1/',0,'revision','',0),(1023,1,'2020-01-17 21:20:20','2020-01-17 21:20:20','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<h1><span>Diamond \"W\" Wheel Corrals</span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This message about %%trailer_type%% availability.||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" global_module=\"1014\" saved_tabs=\"all\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"trailer_type\" field_title=\"What type of trailer are you interested in?\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Diamond \"W\" Wheel Corrals','Diamond \"W\" Wheel Corrals','publish','closed','open','','diamond-w-wheel-corrals','','','2020-01-17 21:21:22','2020-01-17 21:21:22','',0,'http://hpgmediatest.com/kingsville-livestock/?p=1023',0,'post','',0),(1024,1,'2020-01-17 21:20:20','2020-01-17 21:20:20','Diamond \"W\" Wheel Corrals','Diamond \"W\" Wheel Corrals','Diamond \"W\" Wheel Corrals','inherit','closed','closed','','1023-revision-v1','','','2020-01-17 21:20:20','2020-01-17 21:20:20','',1023,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/1023-revision-v1/',0,'revision','',0),(1025,1,'2020-01-17 21:20:25','2020-01-17 21:20:25','[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text]\r\n\r\nDiamond \"W\" Wheel Corrals\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Diamond \"W\" Wheel Corrals','Diamond \"W\" Wheel Corrals','inherit','closed','closed','','1023-revision-v1','','','2020-01-17 21:20:25','2020-01-17 21:20:25','',1023,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/1023-revision-v1/',0,'revision','',0),(1027,1,'2020-01-17 21:21:01','2020-01-17 21:21:01','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<h1>40\' 8-Bale Hay Trailers - 14 ply Tires</h1>\n<h1>Price: $5550</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This message about %%trailer_type%% availability.||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" global_module=\"1014\" saved_tabs=\"all\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"trailer_type\" field_title=\"What type of trailer are you interested in?\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Diamond \"W\" Wheel Corrals','Diamond \"W\" Wheel Corrals','inherit','closed','closed','','1023-revision-v1','','','2020-01-17 21:21:01','2020-01-17 21:21:01','',1023,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/1023-revision-v1/',0,'revision','',0),(1028,1,'2020-01-17 21:21:22','2020-01-17 21:21:22','[et_pb_section fb_built=\"1\" admin_label=\"Market Information Section\" _builder_version=\"3.22\" custom_padding=\"100px||100px|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Market Information Title Area\" _builder_version=\"3.25\" custom_padding=\"40px|0px|40px|0px\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailer Info</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<h1><span>Diamond \"W\" Wheel Corrals</span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Contact Us About Availability\" custom_message=\"This message about %%trailer_type%% availability.||et_pb_line_break_holder||||et_pb_line_break_holder||From: %%name%%||et_pb_line_break_holder||Phone: %%phone%%||et_pb_line_break_holder||Email: %%email%%||et_pb_line_break_holder||||et_pb_line_break_holder||%%message%%\" success_message=\"Success!  Someone will contact you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" global_module=\"1014\" saved_tabs=\"all\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Phone\" field_title=\"Phone\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"trailer_type\" field_title=\"What type of trailer are you interested in?\" _builder_version=\"4.2\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','Diamond \"W\" Wheel Corrals','Diamond \"W\" Wheel Corrals','inherit','closed','closed','','1023-revision-v1','','','2020-01-17 21:21:22','2020-01-17 21:21:22','',1023,'http://hpgmediatest.com/kingsville-livestock/2020/01/17/1023-revision-v1/',0,'revision','',0),(1033,1,'2020-01-17 21:31:28','2020-01-17 21:31:28','','Coose Trailer MFG., INC.','','inherit','closed','closed','','logo','','','2020-01-17 21:31:45','2020-01-17 21:31:45','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/logo.png',0,'attachment','image/png',0),(1034,1,'2020-01-17 21:33:08','2020-01-17 21:33:08','','Eby-logo-flat-CMYK','','inherit','closed','closed','','eby-logo-flat-cmyk','','','2020-01-17 21:33:35','2020-01-17 21:33:35','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/Eby-logo-flat-CMYK.png',0,'attachment','image/png',0),(1035,1,'2020-01-17 21:37:51','2020-01-17 21:37:51','','EZ-Haul Hay Handler','','inherit','closed','closed','','2020-01-17_16-36-23','','','2020-01-17 21:38:06','2020-01-17 21:38:06','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/2020-01-17_16-36-23.png',0,'attachment','image/png',0),(1062,1,'2020-01-17 22:41:27','2020-01-17 22:41:27','[et_pb_map address=\"MO-58, Kingsville, MO, USA\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" hover_enabled=\"0\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" zoom_level=\"17\" template_type=\"module\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\"][/et_pb_map_pin][/et_pb_map]','Location Map','','publish','closed','closed','','location-map','','','2020-02-12 18:27:26','2020-02-12 18:27:26','',0,'http://hpgmediatest.com/kingsville-livestock/et_pb_layout/location-map/',0,'et_pb_layout','',0),(1069,1,'2020-01-18 00:23:42','2020-01-18 00:23:42','[et_pb_map address=\"MO-58, Kingsville, MO, USA\" address_lat=\"38.7438514\" address_lng=\"-94.069595\" _builder_version=\"4.2\" hover_enabled=\"0\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" template_type=\"module\"][et_pb_map_pin title=\"Kingsville Livestock Auction Site\" pin_address=\"MO-58, Kingsville, MO, USA\" pin_address_lat=\"38.7438514\" pin_address_lng=\"-94.069595\" _builder_version=\"4.2\"][/et_pb_map_pin][/et_pb_map]','Location Map','','inherit','closed','closed','','1062-revision-v1','','','2020-01-18 00:23:42','2020-01-18 00:23:42','',1062,'http://hpgmediatest.com/kingsville-livestock/2020/01/18/1062-revision-v1/',0,'revision','',0),(1089,1,'2020-01-18 01:12:09','2020-01-18 01:12:09','[et_pb_map address=\"MO-58, Kingsville, MO, USA\" address_lat=\"38.7438514\" address_lng=\"-94.069595\" _builder_version=\"4.2\" hover_enabled=\"0\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" height=\"600px\" template_type=\"module\"][et_pb_map_pin title=\"Kingsville Livestock Auction Site\" pin_address=\"MO-58, Kingsville, MO, USA\" pin_address_lat=\"38.7438514\" pin_address_lng=\"-94.069595\" _builder_version=\"4.2\"][/et_pb_map_pin][/et_pb_map]','Location Map','','inherit','closed','closed','','1062-revision-v1','','','2020-01-18 01:12:09','2020-01-18 01:12:09','',1062,'http://hpgmediatest.com/kingsville-livestock/2020/01/18/1062-revision-v1/',0,'revision','',0),(1092,1,'2020-01-24 02:13:12','2020-01-24 02:13:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<p><b>Kingsville Livestock Auction</b> <b>January 7th, 2020</b> <span style=\"font-weight: 400;\">4185 hd; December 17th sale 1406hd; year ago 3907 hd. Feeder cattle 650 &amp; up sold steady. Feeder cattle 650 &amp; down sold 10-15 higher. Listen for our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span>$160.00-$190.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>400-500</span> <span></span></td>\n<td style=\"width: 157px;\">\n<p><span>$160.00-$193.00</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span></p>\n</td>\n<td style=\"width: 157px;\"><span>$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span></p>\n</td>\n<td style=\"width: 157px;\"><span>$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span></p>\n</td>\n<td style=\"width: 157px;\"><span>$134.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>800-900</span></td>\n<td style=\"width: 157px;\"><span>$130.00-$149.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>900-1000Â </span></td>\n<td style=\"width: 157px;\"><span>$124.00-$131.25</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">300-400</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>400-500</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$150.00-$177.50</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$140.00-$164.00</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$133.00-$154.00</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$125.00-$145.00</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>800-900</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$117.00-$125.85</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>900-1000Â </span></p>\n</td>\n<td style=\"width: 157px;\"><span>$115.00-$121.75</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">\n<p>Fat Cows</p>\n</td>\n<td style=\"width: 156.5px;\">$58 - $70</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$44 - $53</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$35 - $43</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70 - $86.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$145 - $187.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$120 - $155</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110 - $122</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">499lbs @ $189</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">848lbs @ $149.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">947lbs @ $131.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"http://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 7, 2020 - Market Report','','publish','closed','open','','january-7-2020-market-report','','','2020-01-24 02:17:09','2020-01-24 02:17:09','',0,'http://hpgmediatest.com/kingsville-livestock/?p=1092',0,'post','',0),(1093,1,'2020-01-23 21:07:05','2020-01-23 21:07:05','','January 7, 2020 - Market Report','','inherit','closed','closed','','1092-revision-v1','','','2020-01-23 21:07:05','2020-01-23 21:07:05','',1092,'http://hpgmediatest.com/kingsville-livestock/2020/01/23/1092-revision-v1/',0,'revision','',0),(1095,1,'2020-01-23 21:09:40','2020-01-23 21:09:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column _builder_version=\"4.2\" type=\"4_4\"][et_pb_text _builder_version=\"4.2\" hover_enabled=\"0\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','January 7, 2020 - Market Report','','inherit','closed','closed','','1092-revision-v1','','','2020-01-23 21:09:40','2020-01-23 21:09:40','',1092,'http://hpgmediatest.com/kingsville-livestock/2020/01/23/1092-revision-v1/',0,'revision','',0),(1118,1,'2020-01-24 01:57:35','2020-01-24 01:57:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\"][et_pb_fullwidth_header title=\"Market Reports\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-97.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Mission Section\" module_id=\"livestock\" _builder_version=\"4.2\" background_color=\"#f6f8f7\" custom_padding=\"60px||60px||false|\"][et_pb_row admin_label=\"Our Mission Area\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" animation_direction=\"left\"]<h2>Below are the market reports from each auction. Â Click on the link to review the reports from that day.</h2>[/et_pb_text][et_pb_blog fullwidth=\"off\" include_categories=\"41\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" use_overlay=\"on\" overlay_icon_color=\"#829869\" hover_icon=\"%%49%%\" _builder_version=\"4.9.10\" header_font=\"|700|||||||\" header_text_color=\"#7b6847\" body_text_align=\"left\" read_more_font=\"|700|||||||\" read_more_text_color=\"#829869\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blog][et_pb_button button_url=\"https://drive.google.com/drive/folders/1rkVzmbRGDkMUoaGHw5yADpaIlPsiAm9H\" button_text=\"View 2019 Market Reports\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','MARKET REPORTS','','publish','closed','closed','','market-reports','','','2021-08-04 17:04:54','2021-08-04 17:04:54','',0,'http://hpgmediatest.com/kingsville-livestock/?page_id=1118',0,'page','',0),(1123,1,'2020-01-24 01:57:35','2020-01-24 01:57:35',' ','','','publish','closed','closed','','1123','','','2020-01-24 11:06:18','2020-01-24 11:06:18','',0,'http://hpgmediatest.com/kingsville-livestock/2020/01/24/1123/',6,'nav_menu_item','',0),(1125,1,'2020-01-24 01:57:58','2020-01-24 01:57:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\"][et_pb_fullwidth_header title=\"Market Reports\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"http://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-76.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Mission Section\" module_id=\"livestock\" _builder_version=\"4.2\" background_color=\"#f6f8f7\" custom_padding=\"60px||60px||false|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Our Mission Area\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" animation_direction=\"left\" hover_enabled=\"0\"]<h2>Below are the market reports from each auction. Â Click on the link to review the reports from that day.</h2>[/et_pb_text][et_pb_blog _builder_version=\"4.2\" include_categories=\"41\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_categories=\"off\" show_date=\"off\" use_overlay=\"on\" hover_enabled=\"0\"][/et_pb_blog][et_pb_button button_text=\"View 2019 Market Reports\" _builder_version=\"4.2\" button_alignment=\"center\" button_url=\"https://drive.google.com/drive/folders/1rkVzmbRGDkMUoaGHw5yADpaIlPsiAm9H\" hover_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"http://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"8%||8%||true|false\" global_module=\"894\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Contact Us</h2>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"#f1ece9\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<p><span>P.O. Box 127<br />Hwy 58 East<br />Kingsville, MO 64061</span></p>[/et_pb_text][et_pb_blurb title=\"(816) 597-3331\" use_icon=\"on\" font_icon=\"%%264%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][et_pb_blurb title=\"(816) 597-3971\" use_icon=\"on\" font_icon=\"%%268%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Have A Question?\" custom_message=\"This message is from the site footer.||et_pb_line_break_holder||||et_pb_line_break_holder||Please contact %name% at %email%.  ||et_pb_line_break_holder||||et_pb_line_break_holder||%message%\" success_message=\"Success! We\'ll get back to you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" form_field_background_color=\"#f1ece9\" form_field_text_color=\"#7d7a73\" form_field_focus_background_color=\"#f1ece9\" form_field_focus_text_color=\"#7d7a73\" title_font=\"Lato||||||||\" title_text_color=\"#f1ece9\" title_font_size=\"36px\" captcha_font=\"|700|||||||\" captcha_text_color=\"#f1ece9\" custom_button=\"on\" button_text_color=\"#696353\" button_bg_color=\"#f1ece9\" button_border_color=\"#f1ece9\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','MARKET REPORTS','','inherit','closed','closed','','1118-revision-v1','','','2020-01-24 01:57:58','2020-01-24 01:57:58','',1118,'http://hpgmediatest.com/kingsville-livestock/2020/01/24/1118-revision-v1/',0,'revision','',0),(1127,1,'2020-01-24 01:58:34','2020-01-24 01:58:34','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\"][et_pb_fullwidth_header title=\"Market Reports\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"http://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-97.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" hover_enabled=\"0\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Mission Section\" module_id=\"livestock\" _builder_version=\"4.2\" background_color=\"#f6f8f7\" custom_padding=\"60px||60px||false|\" hover_enabled=\"0\"][et_pb_row admin_label=\"Our Mission Area\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" animation_direction=\"left\" hover_enabled=\"0\"]<h2>Below are the market reports from each auction. Â Click on the link to review the reports from that day.</h2>[/et_pb_text][et_pb_blog _builder_version=\"4.2\" include_categories=\"41\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_categories=\"off\" show_date=\"off\" use_overlay=\"on\" hover_enabled=\"0\"][/et_pb_blog][et_pb_button button_text=\"View 2019 Market Reports\" _builder_version=\"4.2\" button_alignment=\"center\" button_url=\"https://drive.google.com/drive/folders/1rkVzmbRGDkMUoaGHw5yADpaIlPsiAm9H\" hover_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"http://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"8%||8%||true|false\" global_module=\"894\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Contact Us</h2>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"#f1ece9\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<p><span>P.O. Box 127<br />Hwy 58 East<br />Kingsville, MO 64061</span></p>[/et_pb_text][et_pb_blurb title=\"(816) 597-3331\" use_icon=\"on\" font_icon=\"%%264%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][et_pb_blurb title=\"(816) 597-3971\" use_icon=\"on\" font_icon=\"%%268%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Have A Question?\" custom_message=\"This message is from the site footer.||et_pb_line_break_holder||||et_pb_line_break_holder||Please contact %name% at %email%.  ||et_pb_line_break_holder||||et_pb_line_break_holder||%message%\" success_message=\"Success! We\'ll get back to you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" form_field_background_color=\"#f1ece9\" form_field_text_color=\"#7d7a73\" form_field_focus_background_color=\"#f1ece9\" form_field_focus_text_color=\"#7d7a73\" title_font=\"Lato||||||||\" title_text_color=\"#f1ece9\" title_font_size=\"36px\" captcha_font=\"|700|||||||\" captcha_text_color=\"#f1ece9\" custom_button=\"on\" button_text_color=\"#696353\" button_bg_color=\"#f1ece9\" button_border_color=\"#f1ece9\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','MARKET REPORTS','','inherit','closed','closed','','1118-revision-v1','','','2020-01-24 01:58:34','2020-01-24 01:58:34','',1118,'http://hpgmediatest.com/kingsville-livestock/2020/01/24/1118-revision-v1/',0,'revision','',0),(1130,1,'2020-01-24 02:13:12','2020-01-24 02:13:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" hover_enabled=\"0\"]<p><b>Kingsville Livestock Auction</b> <b>January 7th, 2020</b> <span style=\"font-weight: 400;\">4185 hd; December 17th sale 1406hd; year ago 3907 hd. Feeder cattle 650 &amp; up sold steady. Feeder cattle 650 &amp; down sold 10-15 higher. Listen for our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" column_structure=\"1_2,1_2\"][et_pb_column _builder_version=\"4.2\" type=\"1_2\"][et_pb_text _builder_version=\"4.2\" hover_enabled=\"0\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span>$160.00-$190.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>400-500</span> <span></span></td>\n<td style=\"width: 157px;\">\n<p><span>$160.00-$193.00</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span></p>\n</td>\n<td style=\"width: 157px;\"><span>$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span></p>\n</td>\n<td style=\"width: 157px;\"><span>$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span></p>\n</td>\n<td style=\"width: 157px;\"><span>$134.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>800-900</span></td>\n<td style=\"width: 157px;\"><span>$130.00-$149.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>900-1000Â </span></td>\n<td style=\"width: 157px;\"><span>$124.00-$131.25</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2\" hover_enabled=\"0\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">300-400</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>400-500</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$150.00-$177.50</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$140.00-$164.00</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$133.00-$154.00</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$125.00-$145.00</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>800-900</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$117.00-$125.85</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>900-1000Â </span></p>\n</td>\n<td style=\"width: 157px;\"><span>$115.00-$121.75</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.2\" type=\"1_2\"][et_pb_text _builder_version=\"4.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">\n<p>Fat Cows</p>\n</td>\n<td style=\"width: 156.5px;\">$58 - $70</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$44 - $53</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$35 - $43</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70 - $86.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$145 - $187.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$120 - $155</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110 - $122</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">499lbs @ $189</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">848lbs @ $149.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">947lbs @ $131.75</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','January 7, 2020 - Market Report','','inherit','closed','closed','','1092-revision-v1','','','2020-01-24 02:13:12','2020-01-24 02:13:12','',1092,'http://hpgmediatest.com/kingsville-livestock/2020/01/24/1092-revision-v1/',0,'revision','',0),(1132,1,'2020-01-24 02:14:59','2020-01-24 02:14:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" hover_enabled=\"0\"]<p><b>Kingsville Livestock Auction</b> <b>January 7th, 2020</b> <span style=\"font-weight: 400;\">4185 hd; December 17th sale 1406hd; year ago 3907 hd. Feeder cattle 650 &amp; up sold steady. Feeder cattle 650 &amp; down sold 10-15 higher. Listen for our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</span></p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" column_structure=\"1_2,1_2\"][et_pb_column _builder_version=\"4.2\" type=\"1_2\"][et_pb_text _builder_version=\"4.2\" hover_enabled=\"0\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span>$160.00-$190.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>400-500</span> <span></span></td>\n<td style=\"width: 157px;\">\n<p><span>$160.00-$193.00</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span></p>\n</td>\n<td style=\"width: 157px;\"><span>$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span></p>\n</td>\n<td style=\"width: 157px;\"><span>$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span></p>\n</td>\n<td style=\"width: 157px;\"><span>$134.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>800-900</span></td>\n<td style=\"width: 157px;\"><span>$130.00-$149.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>900-1000Â </span></td>\n<td style=\"width: 157px;\"><span>$124.00-$131.25</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2\" hover_enabled=\"0\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">300-400</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>400-500</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$150.00-$177.50</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$140.00-$164.00</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$133.00-$154.00</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$125.00-$145.00</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>800-900</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$117.00-$125.85</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>900-1000Â </span></p>\n</td>\n<td style=\"width: 157px;\"><span>$115.00-$121.75</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.2\" type=\"1_2\"][et_pb_text _builder_version=\"4.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">\n<p>Fat Cows</p>\n</td>\n<td style=\"width: 156.5px;\">$58 - $70</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$44 - $53</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$35 - $43</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70 - $86.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$145 - $187.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$120 - $155</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110 - $122</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">499lbs @ $189</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">848lbs @ $149.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">947lbs @ $131.75</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column _builder_version=\"4.2\" type=\"4_4\"][et_pb_button button_text=\"UPCOMING AUCTION SCHEDULE\" _builder_version=\"4.2\" button_alignment=\"center\" button_url=\"http://kingsvillelivestock.com/#upcoming-auctions\" hover_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 7, 2020 - Market Report','','inherit','closed','closed','','1092-revision-v1','','','2020-01-24 02:14:59','2020-01-24 02:14:59','',1092,'http://hpgmediatest.com/kingsville-livestock/2020/01/24/1092-revision-v1/',0,'revision','',0),(1133,1,'2020-01-24 02:15:39','2020-01-24 02:15:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<p><b>Kingsville Livestock Auction</b> <b>January 7th, 2020</b> <span style=\"font-weight: 400;\">4185 hd; December 17th sale 1406hd; year ago 3907 hd. Feeder cattle 650 &amp; up sold steady. Feeder cattle 650 &amp; down sold 10-15 higher. Listen for our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span>$160.00-$190.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>400-500</span> <span></span></td>\n<td style=\"width: 157px;\">\n<p><span>$160.00-$193.00</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span></p>\n</td>\n<td style=\"width: 157px;\"><span>$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span></p>\n</td>\n<td style=\"width: 157px;\"><span>$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span></p>\n</td>\n<td style=\"width: 157px;\"><span>$134.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>800-900</span></td>\n<td style=\"width: 157px;\"><span>$130.00-$149.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>900-1000Â </span></td>\n<td style=\"width: 157px;\"><span>$124.00-$131.25</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">300-400</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>400-500</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$150.00-$177.50</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$140.00-$164.00</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$133.00-$154.00</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$125.00-$145.00</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>800-900</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$117.00-$125.85</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>900-1000Â </span></p>\n</td>\n<td style=\"width: 157px;\"><span>$115.00-$121.75</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">\n<p>Fat Cows</p>\n</td>\n<td style=\"width: 156.5px;\">$58 - $70</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$44 - $53</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$35 - $43</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70 - $86.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$145 - $187.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$120 - $155</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110 - $122</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">499lbs @ $189</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">848lbs @ $149.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">947lbs @ $131.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"http://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 7, 2020 - Market Report','','inherit','closed','closed','','1092-revision-v1','','','2020-01-24 02:15:39','2020-01-24 02:15:39','',1092,'http://hpgmediatest.com/kingsville-livestock/2020/01/24/1092-revision-v1/',0,'revision','',0),(1134,1,'2020-01-24 02:16:50','2020-01-24 02:16:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\"][et_pb_fullwidth_header title=\"Market Reports\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"http://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-97.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Mission Section\" module_id=\"livestock\" _builder_version=\"4.2\" background_color=\"#f6f8f7\" custom_padding=\"60px||60px||false|\"][et_pb_row admin_label=\"Our Mission Area\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" animation_direction=\"left\"]<h2>Below are the market reports from each auction. Â Click on the link to review the reports from that day.</h2>[/et_pb_text][et_pb_blog include_categories=\"41\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" use_overlay=\"on\" _builder_version=\"4.2\" hover_enabled=\"0\" fullwidth=\"off\"][/et_pb_blog][et_pb_button button_url=\"https://drive.google.com/drive/folders/1rkVzmbRGDkMUoaGHw5yADpaIlPsiAm9H\" button_text=\"View 2019 Market Reports\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"http://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"8%||8%||true|false\" global_module=\"894\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Contact Us</h2>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"#f1ece9\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<p><span>P.O. Box 127<br />Hwy 58 East<br />Kingsville, MO 64061</span></p>[/et_pb_text][et_pb_blurb title=\"(816) 597-3331\" use_icon=\"on\" font_icon=\"%%264%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][et_pb_blurb title=\"(816) 597-3971\" use_icon=\"on\" font_icon=\"%%268%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Have A Question?\" custom_message=\"This message is from the site footer.||et_pb_line_break_holder||||et_pb_line_break_holder||Please contact %name% at %email%.  ||et_pb_line_break_holder||||et_pb_line_break_holder||%message%\" success_message=\"Success! We\'ll get back to you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" form_field_background_color=\"#f1ece9\" form_field_text_color=\"#7d7a73\" form_field_focus_background_color=\"#f1ece9\" form_field_focus_text_color=\"#7d7a73\" title_font=\"Lato||||||||\" title_text_color=\"#f1ece9\" title_font_size=\"36px\" captcha_font=\"|700|||||||\" captcha_text_color=\"#f1ece9\" custom_button=\"on\" button_text_color=\"#696353\" button_bg_color=\"#f1ece9\" button_border_color=\"#f1ece9\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','MARKET REPORTS','','inherit','closed','closed','','1118-revision-v1','','','2020-01-24 02:16:50','2020-01-24 02:16:50','',1118,'http://hpgmediatest.com/kingsville-livestock/2020/01/24/1118-revision-v1/',0,'revision','',0),(1137,1,'2020-01-24 02:20:06','2020-01-24 02:20:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\"][et_pb_fullwidth_header title=\"Market Reports\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"http://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-97.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Mission Section\" module_id=\"livestock\" _builder_version=\"4.2\" background_color=\"#f6f8f7\" custom_padding=\"60px||60px||false|\"][et_pb_row admin_label=\"Our Mission Area\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" animation_direction=\"left\"]<h2>Below are the market reports from each auction. Â Click on the link to review the reports from that day.</h2>[/et_pb_text][et_pb_blog fullwidth=\"off\" include_categories=\"41\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" use_overlay=\"on\" _builder_version=\"4.2\" hover_enabled=\"0\" overlay_icon_color=\"#829869\" hover_icon=\"%%49%%\" header_font=\"|700|||||||\" header_text_color=\"#7b6847\" body_text_align=\"left\" read_more_text_color=\"#829869\" read_more_font=\"|700|||||||\"][/et_pb_blog][et_pb_button button_url=\"https://drive.google.com/drive/folders/1rkVzmbRGDkMUoaGHw5yADpaIlPsiAm9H\" button_text=\"View 2019 Market Reports\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"http://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"8%||8%||true|false\" global_module=\"894\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Contact Us</h2>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"#f1ece9\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<p><span>P.O. Box 127<br />Hwy 58 East<br />Kingsville, MO 64061</span></p>[/et_pb_text][et_pb_blurb title=\"(816) 597-3331\" use_icon=\"on\" font_icon=\"%%264%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][et_pb_blurb title=\"(816) 597-3971\" use_icon=\"on\" font_icon=\"%%268%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Have A Question?\" custom_message=\"This message is from the site footer.||et_pb_line_break_holder||||et_pb_line_break_holder||Please contact %name% at %email%.  ||et_pb_line_break_holder||||et_pb_line_break_holder||%message%\" success_message=\"Success! We\'ll get back to you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" form_field_background_color=\"#f1ece9\" form_field_text_color=\"#7d7a73\" form_field_focus_background_color=\"#f1ece9\" form_field_focus_text_color=\"#7d7a73\" title_font=\"Lato||||||||\" title_text_color=\"#f1ece9\" title_font_size=\"36px\" captcha_font=\"|700|||||||\" captcha_text_color=\"#f1ece9\" custom_button=\"on\" button_text_color=\"#696353\" button_bg_color=\"#f1ece9\" button_border_color=\"#f1ece9\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','MARKET REPORTS','','inherit','closed','closed','','1118-revision-v1','','','2020-01-24 02:20:06','2020-01-24 02:20:06','',1118,'http://hpgmediatest.com/kingsville-livestock/2020/01/24/1118-revision-v1/',0,'revision','',0),(1139,1,'2020-01-24 02:26:44','2020-01-24 02:26:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<p><b>January 14th, 2020 <span style=\"font-weight: 400;\">1135 hd; January 7th sale 4185 hd; year ago 2103 hd. Feeders sold steady. Smaller run due to bad weather &amp; rain, making it difficult to load cattle. Listen for our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</span></b></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span>$150.00 - $184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>400-500</span> <span></span></td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$155.00 - $184.00</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00 - $178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00 - $163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00 - $145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>800-900</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00 - $125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>900-1000Â </span></td>\n<td style=\"width: 157px;\"><span>No Test</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">300-400</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>400-500</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$161.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$143.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$139.25</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>800-900</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$124.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>900-1000Â </span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$110.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">\n<p>Fat Cows</p>\n</td>\n<td style=\"width: 156.5px;\">$58 - $70</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$41 - $51</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$24 - $40</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$68 - $85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140 - $185</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$120 - $145</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110 - $122</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">638lbs @ $143.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">610lbs @ $163.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">788lbs @ $143</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"http://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 14, 2020 - Market Report','','publish','closed','open','','january-14-2020-market-report','','','2020-01-24 02:35:15','2020-01-24 02:35:15','',0,'http://hpgmediatest.com/kingsville-livestock/?p=1139',0,'post','',0),(1140,1,'2020-01-24 02:20:49','2020-01-24 02:20:49','','January 14, 2020 - Market Report','','inherit','closed','closed','','1139-revision-v1','','','2020-01-24 02:20:49','2020-01-24 02:20:49','',1139,'http://hpgmediatest.com/kingsville-livestock/2020/01/24/1139-revision-v1/',0,'revision','',0),(1142,1,'2020-01-24 02:21:11','2020-01-24 02:21:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<p><b>Kingsville Livestock Auction</b> <b>January 7th, 2020</b> <span style=\"font-weight: 400;\">4185 hd; December 17th sale 1406hd; year ago 3907 hd. Feeder cattle 650 &amp; up sold steady. Feeder cattle 650 &amp; down sold 10-15 higher. Listen for our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span>$160.00-$190.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>400-500</span> <span></span></td>\n<td style=\"width: 157px;\">\n<p><span>$160.00-$193.00</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span></p>\n</td>\n<td style=\"width: 157px;\"><span>$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span></p>\n</td>\n<td style=\"width: 157px;\"><span>$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span></p>\n</td>\n<td style=\"width: 157px;\"><span>$134.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>800-900</span></td>\n<td style=\"width: 157px;\"><span>$130.00-$149.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>900-1000Â </span></td>\n<td style=\"width: 157px;\"><span>$124.00-$131.25</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">300-400</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>400-500</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$150.00-$177.50</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$140.00-$164.00</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$133.00-$154.00</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$125.00-$145.00</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>800-900</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span>$117.00-$125.85</span><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>900-1000Â </span></p>\n</td>\n<td style=\"width: 157px;\"><span>$115.00-$121.75</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">\n<p>Fat Cows</p>\n</td>\n<td style=\"width: 156.5px;\">$58 - $70</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$44 - $53</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$35 - $43</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70 - $86.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$145 - $187.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$120 - $155</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110 - $122</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">499lbs @ $189</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">848lbs @ $149.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">947lbs @ $131.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"http://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 14, 2020 - Market Report','','inherit','closed','closed','','1139-revision-v1','','','2020-01-24 02:21:11','2020-01-24 02:21:11','',1139,'http://hpgmediatest.com/kingsville-livestock/2020/01/24/1139-revision-v1/',0,'revision','',0),(1144,1,'2020-01-24 02:26:44','2020-01-24 02:26:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<p><b>January 14th, 2020 <span style=\"font-weight: 400;\">1135 hd; January 7th sale 4185 hd; year ago 2103 hd. Feeders sold steady. Smaller run due to bad weather &amp; rain, making it difficult to load cattle. Listen for our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</span></b></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span>$150.00 - $184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>400-500</span> <span></span></td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$155.00 - $184.00</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00 - $178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00 - $163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00 - $145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>800-900</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00 - $125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>900-1000Â </span></td>\n<td style=\"width: 157px;\"><span>No Test</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">300-400</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>400-500</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$161.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$143.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$139.25</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>800-900</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$124.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>900-1000Â </span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$110.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">\n<p>Fat Cows</p>\n</td>\n<td style=\"width: 156.5px;\">$58 - $70</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$41 - $51</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$24 - $40</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$68 - $85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140 - $185</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$120 - $145</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110 - $122</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">638lbs @ $143.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">610lbs @ $163.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">788lbs @ $143</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"http://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 14, 2020 - Market Report','','inherit','closed','closed','','1139-revision-v1','','','2020-01-24 02:26:44','2020-01-24 02:26:44','',1139,'http://hpgmediatest.com/kingsville-livestock/2020/01/24/1139-revision-v1/',0,'revision','',0),(1146,1,'2020-01-24 02:27:15','2020-01-24 02:27:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<p><b>January 14th, 2020 <span style=\"font-weight: 400;\">1135 hd; January 7th sale 4185 hd; year ago 2103 hd. Feeders sold steady. Smaller run due to bad weather &amp; rain, making it difficult to load cattle. Listen for our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</span></b></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span>$150.00 - $184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>400-500</span> <span></span></td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$155.00 - $184.00</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00 - $178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00 - $163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00 - $145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>800-900</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00 - $125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>900-1000Â </span></td>\n<td style=\"width: 157px;\"><span>No Test</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">300-400</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>400-500</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$161.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$143.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$139.25</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>800-900</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$124.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>900-1000Â </span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$110.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">\n<p>Fat Cows</p>\n</td>\n<td style=\"width: 156.5px;\">$58 - $70</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$41 - $51</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$24 - $40</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$68 - $85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140 - $185</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$120 - $145</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110 - $122</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">638lbs @ $143.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">610lbs @ $163.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">788lbs @ $143</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"http://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\" hover_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 14, 2020 - Market Report','','inherit','closed','closed','','1139-revision-v1','','','2020-01-24 02:27:15','2020-01-24 02:27:15','',1139,'http://hpgmediatest.com/kingsville-livestock/2020/01/24/1139-revision-v1/',0,'revision','',0),(1147,1,'2020-01-24 02:29:18','2020-01-24 02:29:18','[et_pb_map address=\"MO-58, Kingsville, MO, USA\" address_lat=\"38.7438514\" address_lng=\"-94.069595\" _builder_version=\"4.2\" height=\"600px\" hover_enabled=\"0\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" template_type=\"module\"][et_pb_map_pin title=\"Kingsville Livestock Auction Site\" pin_address=\"MO-58, Kingsville, MO, USA\" pin_address_lat=\"38.7438514\" pin_address_lng=\"-94.069595\" _builder_version=\"4.2\"][/et_pb_map_pin][/et_pb_map]','Location Map','','inherit','closed','closed','','1062-revision-v1','','','2020-01-24 02:29:18','2020-01-24 02:29:18','',1062,'http://hpgmediatest.com/kingsville-livestock/2020/01/24/1062-revision-v1/',0,'revision','',0),(1151,1,'2020-01-24 02:35:11','2020-01-24 02:35:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<p><b>January 14th, 2020 <span style=\"font-weight: 400;\">1135 hd; January 7th sale 4185 hd; year ago 2103 hd. Feeders sold steady. Smaller run due to bad weather &amp; rain, making it difficult to load cattle. Listen for our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</span></b></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span>$150.00 - $184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>400-500</span> <span></span></td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$155.00 - $184.00</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00 - $178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00 - $163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00 - $145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>800-900</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00 - $125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>900-1000Â </span></td>\n<td style=\"width: 157px;\"><span>No Test</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">300-400</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>400-500</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$161.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$143.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$139.25</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>800-900</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$124.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>900-1000Â </span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$110.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">\n<p>Fat Cows</p>\n</td>\n<td style=\"width: 156.5px;\">$58 - $70</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$41 - $51</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$24 - $40</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$68 - $85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140 - $185</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$120 - $145</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110 - $122</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">638lbs @ $143.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">610lbs @ $163.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">788lbs @ $143</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"http://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 14, 2020 - Market Report','','inherit','closed','closed','','1139-revision-v1','','','2020-01-24 02:35:11','2020-01-24 02:35:11','',1139,'http://hpgmediatest.com/kingsville-livestock/2020/01/24/1139-revision-v1/',0,'revision','',0),(1152,1,'2020-01-24 02:42:51','2020-01-24 02:42:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<p><b>January 21st, 2020</b> <span style=\"font-weight: 400;\">2475 hd; January 14th sale 1135 hd; year ago 2817 hd.Feeder steers sold firm to 5 higher. Feeder heifers sold 3-6 lower. Listen for our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>400-500</span> <span></span></td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$160.00-$190.00</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>800-900</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$141.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>900-1000Â </span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.00-$123.25</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">300-400</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>400-500</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$154.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$140.00</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$132.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>800-900</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$123.75</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>900-1000Â </span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$108.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">\n<p>Fat Cows</p>\n</td>\n<td style=\"width: 156.5px;\">$60 - $72</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$51 - $62</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$41 - $50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$64 - $76</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$150 - $182.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$118 - $149</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$112 - $122</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">665lbs @ $136</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">683lbs @ $140</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">565lbs @ $176</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">620lbs @ $163</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">728lbs @ $148</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">805lbs @ $140</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"http://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 21, 2020 - Market Report','','publish','closed','open','','january-21-2020-market-report','','','2020-01-24 02:42:57','2020-01-24 02:42:57','',0,'http://hpgmediatest.com/kingsville-livestock/?p=1152',0,'post','',0),(1153,1,'2020-01-24 02:36:03','2020-01-24 02:36:03','','January 21, 2020 - Market Report','','inherit','closed','closed','','1152-revision-v1','','','2020-01-24 02:36:03','2020-01-24 02:36:03','',1152,'http://hpgmediatest.com/kingsville-livestock/2020/01/24/1152-revision-v1/',0,'revision','',0),(1155,1,'2020-01-24 02:36:27','2020-01-24 02:36:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<p><b>January 14th, 2020 <span style=\"font-weight: 400;\">1135 hd; January 7th sale 4185 hd; year ago 2103 hd. Feeders sold steady. Smaller run due to bad weather &amp; rain, making it difficult to load cattle. Listen for our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</span></b></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span>$150.00 - $184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>400-500</span> <span></span></td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$155.00 - $184.00</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00 - $178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00 - $163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00 - $145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>800-900</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00 - $125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>900-1000Â </span></td>\n<td style=\"width: 157px;\"><span>No Test</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">300-400</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>400-500</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$161.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$143.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$139.25</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>800-900</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$124.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>900-1000Â </span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$110.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">\n<p>Fat Cows</p>\n</td>\n<td style=\"width: 156.5px;\">$58 - $70</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$41 - $51</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$24 - $40</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$68 - $85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140 - $185</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$120 - $145</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110 - $122</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">638lbs @ $143.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">610lbs @ $163.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">788lbs @ $143</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"http://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 21, 2020 - Market Report','','inherit','closed','closed','','1152-revision-v1','','','2020-01-24 02:36:27','2020-01-24 02:36:27','',1152,'http://hpgmediatest.com/kingsville-livestock/2020/01/24/1152-revision-v1/',0,'revision','',0),(1157,1,'2020-01-24 02:42:51','2020-01-24 02:42:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<p><b>January 21st, 2020</b> <span style=\"font-weight: 400;\">2475 hd; January 14th sale 1135 hd; year ago 2817 hd.Feeder steers sold firm to 5 higher. Feeder heifers sold 3-6 lower. Listen for our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>400-500</span> <span></span></td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$160.00-$190.00</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>800-900</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$141.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>900-1000Â </span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.00-$123.25</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">300-400</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>400-500</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$154.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$140.00</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$132.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>800-900</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$123.75</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>900-1000Â </span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$108.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">\n<p>Fat Cows</p>\n</td>\n<td style=\"width: 156.5px;\">$60 - $72</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$51 - $62</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$41 - $50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$64 - $85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$150 - $182.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$118 - $145</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110 - $122</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">665lbs @ $136</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">683lbs @ $140</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">565lbs @ $176</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">620lbs @ $163</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">728lbs @ $148</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">805lbs @ $140</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"http://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 21, 2020 - Market Report','','inherit','closed','closed','','1152-revision-v1','','','2020-01-24 02:42:51','2020-01-24 02:42:51','',1152,'http://hpgmediatest.com/kingsville-livestock/2020/01/24/1152-revision-v1/',0,'revision','',0),(1158,1,'2020-01-24 02:42:57','2020-01-24 02:42:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<p><b>January 21st, 2020</b> <span style=\"font-weight: 400;\">2475 hd; January 14th sale 1135 hd; year ago 2817 hd.Feeder steers sold firm to 5 higher. Feeder heifers sold 3-6 lower. Listen for our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>400-500</span> <span></span></td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$160.00-$190.00</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>800-900</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$141.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>900-1000Â </span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.00-$123.25</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">300-400</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>400-500</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$154.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$140.00</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$132.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>800-900</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$123.75</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>900-1000Â </span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$108.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">\n<p>Fat Cows</p>\n</td>\n<td style=\"width: 156.5px;\">$60 - $72</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$51 - $62</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$41 - $50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$64 - $76</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$150 - $182.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$118 - $149</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$112 - $122</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">665lbs @ $136</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">683lbs @ $140</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">565lbs @ $176</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">620lbs @ $163</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">728lbs @ $148</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">805lbs @ $140</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"http://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 21, 2020 - Market Report','','inherit','closed','closed','','1152-revision-v1','','','2020-01-24 02:42:57','2020-01-24 02:42:57','',1152,'http://hpgmediatest.com/kingsville-livestock/2020/01/24/1152-revision-v1/',0,'revision','',0),(1182,1,'2020-01-24 03:26:42','2020-01-24 03:26:42','','Selling Docs','','inherit','closed','closed','','selling-docs','','','2020-01-24 03:26:42','2020-01-24 03:26:42','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/Selling-Docs.pdf',0,'attachment','application/pdf',0),(1183,1,'2020-01-24 03:27:11','2020-01-24 03:27:11','','buying-cattle-registration-form','','inherit','closed','closed','','buying-cattle-registration-form','','','2020-01-24 03:27:11','2020-01-24 03:27:11','',0,'http://hpgmediatest.com/kingsville-livestock/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf',0,'attachment','application/pdf',0),(1192,1,'2020-01-24 11:12:41','0000-00-00 00:00:00','','Cattle','','draft','closed','closed','','','','','2020-01-24 11:12:41','0000-00-00 00:00:00','',0,'http://hpgmediatest.com/kingsville-livestock/?p=1192',1,'nav_menu_item','',0),(1193,1,'2020-01-25 04:19:02','2020-01-25 04:19:02','','Kingsville-Logo-Redraw','','inherit','closed','closed','','kingsville-logo-redraw','','','2020-01-25 04:19:02','2020-01-25 04:19:02','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Logo-Redraw.png',0,'attachment','image/png',0),(1197,1,'2020-02-05 18:32:51','2020-02-05 18:32:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<p><strong>February 4th, 2020</strong> 1867 hd; January 28th sale 1559 hd; year ago 2459 hd. Feeder steers and heifers sold $6-10 higher. Cows and bulls sold $3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)<br />716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.00-$141.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000Â </td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$129.50</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$124.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000Â </td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$123.75</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$64.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$55.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$45.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $95.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140.00 - $180.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$115.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110.00 - $115.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">597lbs @ $140.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">640lbs @ $146.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">558lbs @ $175.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">700lbs @ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">825lbs @ $141.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 4, 2020 - Market Report','','publish','closed','open','','february-4-2020-market-report','','','2020-02-06 15:15:47','2020-02-06 15:15:47','',0,'https://kingsvillelivestock.com/?p=1197',0,'post','',0),(1198,1,'2020-02-05 18:33:34','2020-02-05 18:33:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<p><b>January 21st, 2020</b> <span style=\"font-weight: 400;\">2475 hd; January 14th sale 1135 hd; year ago 2817 hd.Feeder steers sold firm to 5 higher. Feeder heifers sold 3-6 lower. Listen for our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>400-500</span> <span></span></td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$160.00-$190.00</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>800-900</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$141.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>900-1000Â </span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.00-$123.25</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">300-400</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>400-500</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$154.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$140.00</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$132.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>800-900</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$123.75</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>900-1000Â </span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$108.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">\n<p>Fat Cows</p>\n</td>\n<td style=\"width: 156.5px;\">$60 - $72</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$51 - $62</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$41 - $50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$64 - $76</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$150 - $182.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$118 - $149</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$112 - $122</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">665lbs @ $136</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">683lbs @ $140</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">565lbs @ $176</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">620lbs @ $163</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">728lbs @ $148</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">805lbs @ $140</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"http://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 4, 2020 - Market Report','','inherit','closed','closed','','1197-revision-v1','','','2020-02-05 18:33:34','2020-02-05 18:33:34','',1197,'https://kingsvillelivestock.com/2020/02/05/1197-revision-v1/',0,'revision','',0),(1199,1,'2020-02-05 18:34:05','2020-02-05 18:34:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<p><b>January 21st, 2020</b> <span style=\"font-weight: 400;\">2475 hd; January 14th sale 1135 hd; year ago 2817 hd.Feeder steers sold firm to 5 higher. Feeder heifers sold 3-6 lower. Listen for our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>400-500</span> <span></span></td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$160.00-$190.00</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>800-900</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$141.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span>900-1000Â </span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.00-$123.25</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\"]<table width=\"330\" height=\"180\" style=\"margin-left: auto; margin-right: auto;\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">300-400</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>400-500</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>500-600</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$154.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>600-700</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$140.00</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>700-800</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$132.50</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>800-900</span>Â </p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$123.75</span><br /><span></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">\n<p><span>900-1000Â </span></p>\n</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$108.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">\n<p>Fat Cows</p>\n</td>\n<td style=\"width: 156.5px;\">$60 - $72</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$51 - $62</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$41 - $50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$64 - $76</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$150 - $182.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$118 - $149</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$112 - $122</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\" height=\"120\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">665lbs @ $136</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">683lbs @ $140</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">565lbs @ $176</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">620lbs @ $163</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">728lbs @ $148</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\"></td>\n<td style=\"width: 156.5px;\">805lbs @ $140</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 4, 2020 - Market Report','','inherit','closed','closed','','1197-revision-v1','','','2020-02-05 18:34:05','2020-02-05 18:34:05','',1197,'https://kingsvillelivestock.com/2020/02/05/1197-revision-v1/',0,'revision','',0),(1202,2,'2020-02-05 19:32:30','2020-02-05 19:32:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>February 4th, 2020</strong> 1867 hd;January 28th sale 1559 hd; year ago 2459 hd. Feeder steers and heifers sold $6-10 higher. Cows and bulls sold $3 higher. Listen to our market report on 100.7KMZU every Wednesday at12:30 pm and again on Thursday at 6:30 am &amp; 12:30pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)<br />716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.00-$141.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000Â </td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$129.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$124.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000Â </td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$123.75</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$64.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$55.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$45.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $95.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140.00 - $180.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$115.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">597lbs @ $140.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">640lbs @ $146.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">558lbs @ $175.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">700lbs @ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">825lbs @ $141.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\" hover_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 4, 2020 - Market Report','','inherit','closed','closed','','1197-revision-v1','','','2020-02-05 19:32:30','2020-02-05 19:32:30','',1197,'https://kingsvillelivestock.com/2020/02/05/1197-revision-v1/',0,'revision','',0),(1204,2,'2020-02-05 19:33:39','2020-02-05 19:33:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>February 4th, 2020</strong> 1867 hd; January 28th sale 1559 hd; year ago 2459 hd. Feeder steers and heifers sold $6-10 higher. Cows and bulls sold $3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)<br />716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.00-$141.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000Â </td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$129.50</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$124.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000Â </td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$123.75</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$64.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$55.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$45.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $95.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140.00 - $180.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$115.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110.00 - $115.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">597lbs @ $140.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">640lbs @ $146.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">558lbs @ $175.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">700lbs @ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">825lbs @ $141.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 4, 2020 - Market Report','','inherit','closed','closed','','1197-revision-v1','','','2020-02-05 19:33:39','2020-02-05 19:33:39','',1197,'https://kingsvillelivestock.com/2020/02/05/1197-revision-v1/',0,'revision','',0),(1209,2,'2020-02-12 16:20:19','2020-02-12 16:20:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>February 11th, 2020</strong> 3389 hd; last week\'s sale 1867 hd; year ago 1599 hd. Feeder cattle sold $3-5 higher. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)<br />716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$186.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$198.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$156.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$140.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$125.25</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$163.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$148.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$118.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$62.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$40.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$74.00 - $90.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140.00 - $180.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$116.00 - $143.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$116.00 - $120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">525lbs @ $163.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">517lbs @ $189.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">607lbs @ $170.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">658lbs @ $160.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">756lbs @ $148.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">860lbs @ $134.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 11, 2020 - Market Report','','publish','closed','open','','february-11-2020-market-report-2','','','2020-02-12 16:20:23','2020-02-12 16:20:23','',0,'https://kingsvillelivestock.com/?p=1209',0,'post','',0),(1210,2,'2020-02-05 19:38:01','2020-02-05 19:38:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>February 11th, 2020</strong> 1867 hd; January 28th sale 1559 hd; year ago 2459 hd. Feeder steers and heifers sold $6-10 higher. Cows and bulls sold $3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)<br />716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.00-$141.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000Â </td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$129.50</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$124.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000Â </td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$123.75</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$64.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$55.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$45.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $95.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140.00 - $180.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$115.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110.00 - $115.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">597lbs @ $140.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">640lbs @ $146.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">558lbs @ $175.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">700lbs @ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">825lbs @ $141.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 4, 2020 - Market Report','','inherit','closed','closed','','1209-revision-v1','','','2020-02-05 19:38:01','2020-02-05 19:38:01','',1209,'https://kingsvillelivestock.com/2020/02/05/1209-revision-v1/',0,'revision','',0),(1211,2,'2020-02-05 19:39:03','2020-02-05 19:39:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<p><strong>February 11th, 2020</strong> 1867 hd; January 28th sale 1559 hd; year ago 2459 hd. Feeder steers and heifers sold $6-10 higher. Cows and bulls sold $3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)<br />716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.00-$141.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000Â </td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$129.50</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$124.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000Â </td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$123.75</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$64.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$55.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$45.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $95.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140.00 - $180.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$115.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110.00 - $115.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">597lbs @ $140.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">640lbs @ $146.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">558lbs @ $175.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">700lbs @ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">825lbs @ $141.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 4, 2020 - Market Report','','inherit','closed','closed','','1209-revision-v1','','','2020-02-05 19:39:03','2020-02-05 19:39:03','',1209,'https://kingsvillelivestock.com/2020/02/05/1209-revision-v1/',0,'revision','',0),(1212,2,'2020-02-05 19:39:06','2020-02-05 19:39:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<p><strong>February 11th, 2020</strong> 1867 hd; January 28th sale 1559 hd; year ago 2459 hd. Feeder steers and heifers sold $6-10 higher. Cows and bulls sold $3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)<br />716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.00-$141.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000Â </td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$129.50</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$124.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000Â </td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$123.75</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$64.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$55.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$45.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $95.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140.00 - $180.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$115.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110.00 - $115.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">597lbs @ $140.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">640lbs @ $146.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">558lbs @ $175.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">700lbs @ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">825lbs @ $141.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 11, 2020 - Market Report','','inherit','closed','closed','','1209-revision-v1','','','2020-02-05 19:39:06','2020-02-05 19:39:06','',1209,'https://kingsvillelivestock.com/2020/02/05/1209-revision-v1/',0,'revision','',0),(1216,2,'2020-02-05 19:51:02','2020-02-05 19:51:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<p><strong>February 4th, 2020</strong> 1867 hd; January 28th sale 1559 hd; year ago 2459 hd. Feeder steers and heifers sold $6-10 higher. Cows and bulls sold $3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)<br />716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.00-$141.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000Â </td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$129.50</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$124.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000Â </td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$123.75</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$64.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$55.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$45.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $95.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140.00 - $180.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$115.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110.00 - $115.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">597lbs @ $140.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">640lbs @ $146.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">558lbs @ $175.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">700lbs @ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">825lbs @ $141.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 4, 2020 - Market Report','','inherit','closed','closed','','1197-revision-v1','','','2020-02-05 19:51:02','2020-02-05 19:51:02','',1197,'https://kingsvillelivestock.com/2020/02/05/1197-revision-v1/',0,'revision','',0),(1218,2,'2020-02-06 15:07:10','2020-02-06 15:07:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\"][et_pb_fullwidth_header title=\"About Us\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-76.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Story Section\" _builder_version=\"3.22\" custom_padding=\"60px||60px||true|\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Our Story Area\" _builder_version=\"3.25\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-21.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" hover_enabled=\"0\"]<h2>How We Got Started</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" animation_direction=\"left\" hover_enabled=\"0\"]<p>Rick and Marcia purchased the Kingsville Livestock Auction in July 1988. Over the past 32 years, we have made several additions to our facilities to best serve our customers as Missouri\'s West Central Foremost Livestock Auction.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Mission Section\" module_id=\"livestock\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" custom_padding=\"60px||60px||true|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Our Mission Area\" _builder_version=\"3.25\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Our Commitment</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" animation_direction=\"left\" hover_enabled=\"0\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" custom_padding=\"0px||0px||true|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"4.2\" width=\"100%\" max_width=\"1800px\" module_alignment=\"center\" custom_padding=\"0px||0px||true|false\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" custom_padding=\"|0px||0px|false|false\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-114.jpg\" _builder_version=\"4.2\" custom_margin=\"|-20px||-20px|false|true\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-78.jpg\" _builder_version=\"4.2\" custom_margin=\"|-20px||-20px|false|true\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-73.jpg\" _builder_version=\"4.2\" custom_margin=\"|-20px||-20px|false|true\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Livestock Information</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p>In order to gain the most value out of your cattle here at Kingsville Livestock Auctions we recommend:</p>\n<ol>\n<li>Weaning calves for at least 45 days and selling with two rounds of shots. (This allows for the best value.)</li>\n<li>Sell non-weaned calves with two rounds of shots, and bulls are cut. (If you are unable to wean for a full 45 days this option will allow for the best value.)</li>\n</ol>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_6,1_6,1_6,1_6,1_6,1_6\" _builder_version=\"4.2\"][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][et_pb_button button_text=\"BUY CATTLE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][et_pb_button button_text=\"SELL CATTLE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][et_pb_button button_text=\"MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"8%||8%||true|false\" global_module=\"894\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Contact Us</h2>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"#f1ece9\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<p><span>P.O. Box 127<br />Hwy 58 East<br />Kingsville, MO 64061</span></p>[/et_pb_text][et_pb_blurb title=\"(816) 597-3331\" use_icon=\"on\" font_icon=\"%%264%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][et_pb_blurb title=\"(816) 597-3971\" use_icon=\"on\" font_icon=\"%%268%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Have A Question?\" custom_message=\"This message is from the site footer.||et_pb_line_break_holder||||et_pb_line_break_holder||Please contact %name% at %email%.  ||et_pb_line_break_holder||||et_pb_line_break_holder||%message%\" success_message=\"Success! We\'ll get back to you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" form_field_background_color=\"#f1ece9\" form_field_text_color=\"#7d7a73\" form_field_focus_background_color=\"#f1ece9\" form_field_focus_text_color=\"#7d7a73\" title_font=\"Lato||||||||\" title_text_color=\"#f1ece9\" title_font_size=\"36px\" captcha_font=\"|700|||||||\" captcha_text_color=\"#f1ece9\" custom_button=\"on\" button_text_color=\"#696353\" button_bg_color=\"#f1ece9\" button_border_color=\"#f1ece9\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT US','','inherit','closed','closed','','679-revision-v1','','','2020-02-06 15:07:10','2020-02-06 15:07:10','',679,'https://kingsvillelivestock.com/2020/02/06/679-revision-v1/',0,'revision','',0),(1220,2,'2020-02-06 15:09:23','2020-02-06 15:09:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\"][et_pb_fullwidth_header title=\"About Us\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-76.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Story Section\" _builder_version=\"3.22\" custom_padding=\"60px||60px||true|\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Our Story Area\" _builder_version=\"3.25\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-21.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>How We Got Started</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" animation_direction=\"left\"]<p>Rick and Marcia purchased the Kingsville Livestock Auction in July 1988. Over the past 32 years, we have made several additions to our facilities to best serve our customers as Missouri\'s West Central Foremost Livestock Auction.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Mission Section\" module_id=\"livestock\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" custom_padding=\"60px||60px||true|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Our Mission Area\" _builder_version=\"3.25\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Our Commitment</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" animation_direction=\"left\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" custom_padding=\"0px||0px||true|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"4.2\" width=\"100%\" max_width=\"1800px\" module_alignment=\"center\" custom_padding=\"0px||0px||true|false\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" custom_padding=\"|0px||0px|false|false\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-114.jpg\" _builder_version=\"4.2\" custom_margin=\"|-20px||-20px|false|true\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-78.jpg\" _builder_version=\"4.2\" custom_margin=\"|-20px||-20px|false|true\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-73.jpg\" _builder_version=\"4.2\" custom_margin=\"|-20px||-20px|false|true\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Livestock Information</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p>In order to gain the most value out of your cattle here at Kingsville Livestock Auctions we recommend:</p>\n<ol>\n<li>Weaning calves for at least 45 days and selling with two rounds of shots. (This allows for the best value.)</li>\n<li>Sell non-weaned calves with two rounds of shots, and the bulls cut. (If you are unable to wean for a full 45 days this option will allow for the best value.)</li>\n</ol>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_6,1_6,1_6,1_6,1_6,1_6\" _builder_version=\"4.2\"][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][et_pb_button button_text=\"BUY CATTLE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][et_pb_button button_text=\"SELL CATTLE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][et_pb_button button_text=\"MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"8%||8%||true|false\" global_module=\"894\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Contact Us</h2>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"#f1ece9\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<p><span>P.O. Box 127<br />Hwy 58 East<br />Kingsville, MO 64061</span></p>[/et_pb_text][et_pb_blurb title=\"(816) 597-3331\" use_icon=\"on\" font_icon=\"%%264%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][et_pb_blurb title=\"(816) 597-3971\" use_icon=\"on\" font_icon=\"%%268%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Have A Question?\" custom_message=\"This message is from the site footer.||et_pb_line_break_holder||||et_pb_line_break_holder||Please contact %name% at %email%.  ||et_pb_line_break_holder||||et_pb_line_break_holder||%message%\" success_message=\"Success! We\'ll get back to you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" form_field_background_color=\"#f1ece9\" form_field_text_color=\"#7d7a73\" form_field_focus_background_color=\"#f1ece9\" form_field_focus_text_color=\"#7d7a73\" title_font=\"Lato||||||||\" title_text_color=\"#f1ece9\" title_font_size=\"36px\" captcha_font=\"|700|||||||\" captcha_text_color=\"#f1ece9\" custom_button=\"on\" button_text_color=\"#696353\" button_bg_color=\"#f1ece9\" button_border_color=\"#f1ece9\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT US','','inherit','closed','closed','','679-revision-v1','','','2020-02-06 15:09:23','2020-02-06 15:09:23','',679,'https://kingsvillelivestock.com/2020/02/06/679-revision-v1/',0,'revision','',0),(1223,2,'2020-02-06 15:11:10','2020-02-06 15:11:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\"][et_pb_fullwidth_header title=\"About Us\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-76.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Story Section\" _builder_version=\"3.22\" custom_padding=\"60px||60px||true|\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Our Story Area\" _builder_version=\"3.25\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-21.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>How We Got Started</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" animation_direction=\"left\"]<p>Rick and Marcia purchased the Kingsville Livestock Auction in July 1988. Over the past 32 years, we have made several additions to our facilities to best serve our customers as Missouri\'s West Central Foremost Livestock Auction.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Mission Section\" module_id=\"livestock\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" custom_padding=\"60px||60px||true|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Our Mission Area\" _builder_version=\"3.25\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Our Commitment</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" animation_direction=\"left\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" custom_padding=\"0px||0px||true|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"4.2\" width=\"100%\" max_width=\"1800px\" module_alignment=\"center\" custom_padding=\"0px||0px||true|false\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" custom_padding=\"|0px||0px|false|false\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-114.jpg\" _builder_version=\"4.2\" custom_margin=\"|-20px||-20px|false|true\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-78.jpg\" _builder_version=\"4.2\" custom_margin=\"|-20px||-20px|false|true\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.jpg\" _builder_version=\"4.2.2\" custom_margin=\"|-20px||-20px|false|true\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Livestock Information</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<p>In order to gain the most value out of your cattle here at Kingsville Livestock Auctions we recommend:</p>\n<ol>\n<li>Weaning calves for at least 45 days and selling with two rounds of shots. (This allows for the best value.)</li>\n<li>Sell non-weaned calves with two rounds of shots, and the bulls cut. (If you are unable to wean for a full 45 days this option will allow for the best value.)</li>\n</ol>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_6,1_6,1_6,1_6,1_6,1_6\" _builder_version=\"4.2\"][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][et_pb_button button_text=\"BUY CATTLE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][et_pb_button button_text=\"SELL CATTLE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][et_pb_button button_text=\"MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"8%||8%||true|false\" global_module=\"894\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Contact Us</h2>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"#f1ece9\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<p><span>P.O. Box 127<br />Hwy 58 East<br />Kingsville, MO 64061</span></p>[/et_pb_text][et_pb_blurb title=\"(816) 597-3331\" use_icon=\"on\" font_icon=\"%%264%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][et_pb_blurb title=\"(816) 597-3971\" use_icon=\"on\" font_icon=\"%%268%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Have A Question?\" custom_message=\"This message is from the site footer.||et_pb_line_break_holder||||et_pb_line_break_holder||Please contact %name% at %email%.  ||et_pb_line_break_holder||||et_pb_line_break_holder||%message%\" success_message=\"Success! We\'ll get back to you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" form_field_background_color=\"#f1ece9\" form_field_text_color=\"#7d7a73\" form_field_focus_background_color=\"#f1ece9\" form_field_focus_text_color=\"#7d7a73\" title_font=\"Lato||||||||\" title_text_color=\"#f1ece9\" title_font_size=\"36px\" captcha_font=\"|700|||||||\" captcha_text_color=\"#f1ece9\" custom_button=\"on\" button_text_color=\"#696353\" button_bg_color=\"#f1ece9\" button_border_color=\"#f1ece9\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT US','','inherit','closed','closed','','679-revision-v1','','','2020-02-06 15:11:10','2020-02-06 15:11:10','',679,'https://kingsvillelivestock.com/2020/02/06/679-revision-v1/',0,'revision','',0),(1226,2,'2020-02-06 15:12:26','2020-02-06 15:12:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\"][et_pb_fullwidth_header title=\"About Us\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-76.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Story Section\" _builder_version=\"3.22\" custom_padding=\"60px||60px||true|\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Our Story Area\" _builder_version=\"3.25\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-21.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>How We Got Started</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" animation_direction=\"left\"]<p>Rick and Marcia purchased the Kingsville Livestock Auction in July 1988. Over the past 32 years, we have made several additions to our facilities to best serve our customers as Missouri\'s West Central Foremost Livestock Auction.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Mission Section\" module_id=\"livestock\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" custom_padding=\"60px||60px||true|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Our Mission Area\" _builder_version=\"3.25\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Our Commitment</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" animation_direction=\"left\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" custom_padding=\"0px||0px||true|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"4.2\" width=\"100%\" max_width=\"1800px\" module_alignment=\"center\" custom_padding=\"0px||0px||true|false\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" custom_padding=\"|0px||0px|false|false\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-114.jpg\" _builder_version=\"4.2\" custom_margin=\"|-20px||-20px|false|true\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-78.jpg\" _builder_version=\"4.2\" custom_margin=\"|-20px||-20px|false|true\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-55.jpg\" _builder_version=\"4.2.2\" custom_margin=\"|-20px||-20px|false|true\" hover_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Livestock Information</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<p>In order to gain the most value out of your cattle here at Kingsville Livestock Auctions we recommend:</p>\n<ol>\n<li>Weaning calves for at least 45 days and selling with two rounds of shots. (This allows for the best value.)</li>\n<li>Sell non-weaned calves with two rounds of shots, and the bulls cut. (If you are unable to wean for a full 45 days this option will allow for the best value.)</li>\n</ol>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_6,1_6,1_6,1_6,1_6,1_6\" _builder_version=\"4.2\"][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][et_pb_button button_text=\"BUY CATTLE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][et_pb_button button_text=\"SELL CATTLE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][et_pb_button button_text=\"MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"8%||8%||true|false\" global_module=\"894\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Contact Us</h2>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"#f1ece9\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<p><span>P.O. Box 127<br />Hwy 58 East<br />Kingsville, MO 64061</span></p>[/et_pb_text][et_pb_blurb title=\"(816) 597-3331\" use_icon=\"on\" font_icon=\"%%264%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][et_pb_blurb title=\"(816) 597-3971\" use_icon=\"on\" font_icon=\"%%268%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Have A Question?\" custom_message=\"This message is from the site footer.||et_pb_line_break_holder||||et_pb_line_break_holder||Please contact %name% at %email%.  ||et_pb_line_break_holder||||et_pb_line_break_holder||%message%\" success_message=\"Success! We\'ll get back to you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" form_field_background_color=\"#f1ece9\" form_field_text_color=\"#7d7a73\" form_field_focus_background_color=\"#f1ece9\" form_field_focus_text_color=\"#7d7a73\" title_font=\"Lato||||||||\" title_text_color=\"#f1ece9\" title_font_size=\"36px\" captcha_font=\"|700|||||||\" captcha_text_color=\"#f1ece9\" custom_button=\"on\" button_text_color=\"#696353\" button_bg_color=\"#f1ece9\" button_border_color=\"#f1ece9\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT US','','inherit','closed','closed','','679-revision-v1','','','2020-02-06 15:12:26','2020-02-06 15:12:26','',679,'https://kingsvillelivestock.com/2020/02/06/679-revision-v1/',0,'revision','',0),(1228,2,'2020-02-06 15:13:58','2020-02-06 15:13:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\"][et_pb_fullwidth_header title=\"About Us\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-76.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Story Section\" _builder_version=\"3.22\" custom_padding=\"60px||60px||true|\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Our Story Area\" _builder_version=\"3.25\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-21.jpg\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>How We Got Started</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" animation_direction=\"left\"]<p>Rick and Marcia purchased the Kingsville Livestock Auction in July 1988. Over the past 32 years, we have made several additions to our facilities to best serve our customers as Missouri\'s West Central Foremost Livestock Auction.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Mission Section\" module_id=\"livestock\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" custom_padding=\"60px||60px||true|\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Our Mission Area\" _builder_version=\"3.25\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Our Commitment</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" text_font_size=\"16px\" animation_direction=\"left\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" custom_padding=\"0px||0px||true|false\"][et_pb_row column_structure=\"1_3,1_3,1_3\" use_custom_gutter=\"on\" gutter_width=\"2\" make_equal=\"on\" _builder_version=\"4.2\" width=\"100%\" max_width=\"1800px\" module_alignment=\"center\" custom_padding=\"0px||0px||true|false\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" custom_padding=\"|0px||0px|false|false\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-114.jpg\" _builder_version=\"4.2\" custom_margin=\"|-20px||-20px|false|true\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-78.jpg\" _builder_version=\"4.2\" custom_margin=\"|-20px||-20px|false|true\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-55.jpg\" _builder_version=\"4.2.2\" custom_margin=\"|-20px||-20px|false|true\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Livestock Information</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p>In order to gain the most value out of your cattle, here at Kingsville Livestock Auctions we recommend:</p>\n<ol>\n<li>Weaning calves for at least 45 days and selling with two rounds of shots. (This option allows for the best overall value.)</li>\n<li>Sell non-weaned calves with two rounds of shots, and the bulls cut. (If you are unable to wean for a full 45 days this option will allow for the best value.)</li>\n</ol>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_6,1_6,1_6,1_6,1_6,1_6\" _builder_version=\"4.2\"][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][et_pb_button button_text=\"BUY CATTLE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][et_pb_button button_text=\"SELL CATTLE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_6\" _builder_version=\"4.2\"][et_pb_button button_text=\"MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"8%||8%||true|false\" global_module=\"894\" saved_tabs=\"all\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Contact Us</h2>[/et_pb_text][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"#f1ece9\" header_font=\"||||||||\" header_text_color=\"#f1ece9\" header_2_font=\"Lato||||||||\" header_2_text_color=\"#f1ece9\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<p><span>P.O. Box 127<br />Hwy 58 East<br />Kingsville, MO 64061</span></p>[/et_pb_text][et_pb_blurb title=\"(816) 597-3331\" use_icon=\"on\" font_icon=\"%%264%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][et_pb_blurb title=\"(816) 597-3971\" use_icon=\"on\" font_icon=\"%%268%%\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"25px\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_contact_form email=\"jessica@givenwings.com\" title=\"Have A Question?\" custom_message=\"This message is from the site footer.||et_pb_line_break_holder||||et_pb_line_break_holder||Please contact %name% at %email%.  ||et_pb_line_break_holder||||et_pb_line_break_holder||%message%\" success_message=\"Success! We\'ll get back to you shortly.\" submit_button_text=\"SEND\" _builder_version=\"4.2\" form_field_background_color=\"#f1ece9\" form_field_text_color=\"#7d7a73\" form_field_focus_background_color=\"#f1ece9\" form_field_focus_text_color=\"#7d7a73\" title_font=\"Lato||||||||\" title_text_color=\"#f1ece9\" title_font_size=\"36px\" captcha_font=\"|700|||||||\" captcha_text_color=\"#f1ece9\" custom_button=\"on\" button_text_color=\"#696353\" button_bg_color=\"#f1ece9\" button_border_color=\"#f1ece9\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][/et_pb_section]','ABOUT US','','inherit','closed','closed','','679-revision-v1','','','2020-02-06 15:13:58','2020-02-06 15:13:58','',679,'https://kingsvillelivestock.com/2020/02/06/679-revision-v1/',0,'revision','',0),(1256,1,'2020-02-07 20:03:55','2020-02-07 20:03:55','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_fullwidth_header title=\"Contact Us\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-117.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Contact Section\" _builder_version=\"4.2\" custom_padding=\"60px||60px||true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"60px||10px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Contact Area\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" header_font_size=\"36px\"]<h1>Contact Information</h1>[/et_pb_text][et_pb_blurb title=\"Address\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%249%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>P.O. Box 127<br /> Hwy 58 East<br /> Kingsville, MO 64061</span></p>[/et_pb_blurb][et_pb_blurb title=\"anstineauctions@earthlink.net\" url=\"mailto:anstineauctions@earthlink.net\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%238%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"][/et_pb_blurb][et_pb_blurb title=\"Office (816) 597-3331\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"][/et_pb_blurb][et_pb_blurb title=\"Fax (816) 597-3971\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%268%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"]<h2>Get In Touch</h2>[/et_pb_text][et_pb_contact_form success_message=\"Success! Someone will get back to you shortly.\" submit_button_text=\"SEND\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.2.2\" title_font=\"||||||||\" form_field_font=\"||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#696353\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_tablet=\"\" button_text_color_phone=\"#696353\" button_text_color_last_edited=\"on|phone\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#02d002\" button_border_color_hover=\"#02d002\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"0\" email=\"Anstineauction@gmail.com\"][et_pb_contact_field field_id=\"First_Name\" field_title=\"First Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Last_Name\" field_title=\"Last Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Interested_In\" field_title=\"I am Interested In\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" header_font_size=\"36px\"]<h1>Owners and Operators</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.2\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_blurb title=\"Rick\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>(816) 258-3421</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_blurb title=\"Jeremy\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>(816) 716-9288</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_blurb title=\"Jared\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>(816) 878-5229</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Map Section\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#f7f7f7\" custom_padding=\"60px||60px||true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"10px||60px||false|false\"][et_pb_row _builder_version=\"3.25\" max_width=\"1440px\" custom_padding=\"|||\" use_custom_width=\"on\" custom_width_px=\"1440px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" address_lat=\"38.7438514\" address_lng=\"-94.069595\" _builder_version=\"4.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" saved_tabs=\"all\"][et_pb_map_pin title=\"Kingsville Livestock Auction Site\" pin_address=\"MO-58, Kingsville, MO, USA\" pin_address_lat=\"38.7438514\" pin_address_lng=\"-94.069595\" _builder_version=\"4.2\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','723-revision-v1','','','2020-02-07 20:03:55','2020-02-07 20:03:55','',723,'https://kingsvillelivestock.com/2020/02/07/723-revision-v1/',0,'revision','',0),(1258,2,'2020-02-10 19:45:48','2020-02-10 19:45:48','','Tuesday, February 11th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-february-11th-feeder-cattle-consignments','','','2020-02-10 19:45:48','2020-02-10 19:45:48','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/02/Tuesday-February-11th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1263,2,'2020-02-12 16:20:19','2020-02-12 16:20:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>February 11th, 2020</strong> 3389 hd; last week\'s sale 1867 hd; year ago 1599 hd. Feeder cattle sold $3-5 higher. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)<br />716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$186.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$198.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$156.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$140.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$125.25</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$163.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$148.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$118.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$62.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$40.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$74.00 - $90.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140.00 - $180.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$116.00 - $143.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$116.00 - $120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">525lbs @ $163.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">517lbs @ $189.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">607lbs @ $170.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">658lbs @ $160.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">756lbs @ $148.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">860lbs @ $134.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 11, 2020 - Market Report','','inherit','closed','closed','','1209-revision-v1','','','2020-02-12 16:20:19','2020-02-12 16:20:19','',1209,'https://kingsvillelivestock.com/2020/02/12/1209-revision-v1/',0,'revision','',0),(1283,2,'2020-02-12 16:52:19','2020-02-12 16:52:19','','Feb. 29th Cow Sale','','inherit','closed','closed','','feb-29th-cow-sale','','','2020-02-12 16:52:19','2020-02-12 16:52:19','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/02/Feb.-29th-Cow-Sale.pdf',0,'attachment','application/pdf',0),(1306,2,'2020-02-12 18:25:28','2020-02-12 18:25:28','[et_pb_map address=\"MO-58, Kingsville, MO, USA\" address_lat=\"38.7438514\" address_lng=\"-94.069595\" _builder_version=\"4.2.2\" height=\"600px\" hover_enabled=\"0\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" template_type=\"module\"][et_pb_map_pin _builder_version=\"4.2.2\" title=\"Kingsville Livestock Auction\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" hover_enabled=\"0\"][/et_pb_map_pin][/et_pb_map]','Location Map','','inherit','closed','closed','','1062-revision-v1','','','2020-02-12 18:25:28','2020-02-12 18:25:28','',1062,'https://kingsvillelivestock.com/2020/02/12/1062-revision-v1/',0,'revision','',0),(1309,2,'2020-02-12 18:27:26','2020-02-12 18:27:26','[et_pb_map address=\"MO-58, Kingsville, MO, USA\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" hover_enabled=\"0\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" zoom_level=\"17\" template_type=\"module\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\"][/et_pb_map_pin][/et_pb_map]','Location Map','','inherit','closed','closed','','1062-revision-v1','','','2020-02-12 18:27:26','2020-02-12 18:27:26','',1062,'https://kingsvillelivestock.com/2020/02/12/1062-revision-v1/',0,'revision','',0),(1325,2,'2020-02-24 23:26:35','2020-02-24 23:26:35','&nbsp;\r\n\r\n<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2020/02/photosShroder.pdf\">Shroder photosÂ  </a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2020/02/RandyShroderEstate.pdf\">RandyShroder Estate flyer</a>','March 13, 2020 Property of the Late Randy Shroder','','publish','closed','open','','anstine-auctions','','','2020-02-24 23:45:47','2020-02-24 23:45:47','',0,'https://kingsvillelivestock.com/?p=1325',0,'post','',0),(1327,2,'2020-02-17 20:13:03','2020-02-17 20:13:03','','Tuesday, February 18th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-february-18th-feeder-cattle-consignments','','','2020-02-17 20:13:03','2020-02-17 20:13:03','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/02/Tuesday-February-18th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1329,2,'2020-02-19 16:02:27','2020-02-19 16:02:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>February 18th, 2020</strong> 3731 hd; last week\'s sale 3389 hd; year ago 3502 hd. Steers and heifers weighing 400-550lb sold $5-10 higher, and 550lb and up sold steady. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)<br />716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$198.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$171.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$137.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$130.35</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$141.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$118.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$60.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$43.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $85.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$150.00 - $195.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$125.00 - $156.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$115.00 - $125.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">650lbs @ $143.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">720lbs @ $136.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">830lbs @ $132.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">523lbs @ $195.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">597lbs @ $171.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">774lbs @ $142.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">884lbs @ $135.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 18, 2020 - Market Report','','publish','closed','open','','february-18-2020-market-report','','','2020-02-19 16:25:17','2020-02-19 16:25:17','',0,'https://kingsvillelivestock.com/?p=1329',0,'post','',0),(1330,2,'2020-02-19 16:02:27','2020-02-19 16:02:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<p><strong>February 11th, 2020</strong> 3389 hd; last week\'s sale 1867 hd; year ago 1599 hd. Feeder cattle sold $3-5 higher. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)<br />716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$186.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$198.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$156.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$140.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$125.25</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$163.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$148.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$118.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$62.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$40.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$74.00 - $90.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140.00 - $180.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$116.00 - $143.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$116.00 - $120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">525lbs @ $163.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">517lbs @ $189.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">607lbs @ $170.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">658lbs @ $160.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">756lbs @ $148.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">860lbs @ $134.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 11, 2020 - Market Report','','inherit','closed','closed','','1329-revision-v1','','','2020-02-19 16:02:27','2020-02-19 16:02:27','',1329,'https://kingsvillelivestock.com/2020/02/19/1329-revision-v1/',0,'revision','',0),(1331,2,'2020-02-19 16:02:30','2020-02-19 16:02:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<p><strong>February 11th, 2020</strong> 3389 hd; last week\'s sale 1867 hd; year ago 1599 hd. Feeder cattle sold $3-5 higher. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)<br />716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$186.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$198.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$156.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$140.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$125.25</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$163.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$148.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$118.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$62.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$40.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$74.00 - $90.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140.00 - $180.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$116.00 - $143.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$116.00 - $120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">525lbs @ $163.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">517lbs @ $189.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">607lbs @ $170.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">658lbs @ $160.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">756lbs @ $148.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">860lbs @ $134.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 18, 2020 - Market Report','','inherit','closed','closed','','1329-revision-v1','','','2020-02-19 16:02:30','2020-02-19 16:02:30','',1329,'https://kingsvillelivestock.com/2020/02/19/1329-revision-v1/',0,'revision','',0),(1334,2,'2020-02-19 16:17:43','2020-02-19 16:17:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>February 18th, 2020</strong> 3731 hd; last week\'s sale 3389 hd; year ago 3502 hd. Steers and hiefers weighing 400-550lb sold $5-10 higher, and 550lb and up sold steady. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)<br />716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$198.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$171.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$137.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$130.35</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$141.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$118.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$60.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$43.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $85.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$150.00 - $195.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$125.00 - $156.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$115.00 - $125.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">650lbs @ $143.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">720lbs @ $136.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">830lbs @ $132.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">523lbs @ $195.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">597lbs @ $171.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">774lbs @ $142.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">884lbs @ $135.85</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" hover_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 18, 2020 - Market Report','','inherit','closed','closed','','1329-revision-v1','','','2020-02-19 16:17:43','2020-02-19 16:17:43','',1329,'https://kingsvillelivestock.com/2020/02/19/1329-revision-v1/',0,'revision','',0),(1335,2,'2020-02-19 16:25:14','2020-02-19 16:25:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>February 18th, 2020</strong> 3731 hd; last week\'s sale 3389 hd; year ago 3502 hd. Steers and heifers weighing 400-550lb sold $5-10 higher, and 550lb and up sold steady. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)<br />716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$198.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$171.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$137.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$130.35</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$141.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$118.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$60.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$43.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $85.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$150.00 - $195.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$125.00 - $156.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$115.00 - $125.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">650lbs @ $143.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">720lbs @ $136.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">830lbs @ $132.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">523lbs @ $195.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">597lbs @ $171.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">774lbs @ $142.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">884lbs @ $135.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 18, 2020 - Market Report','','inherit','closed','closed','','1329-revision-v1','','','2020-02-19 16:25:14','2020-02-19 16:25:14','',1329,'https://kingsvillelivestock.com/2020/02/19/1329-revision-v1/',0,'revision','',0),(1346,2,'2020-02-24 19:03:36','2020-02-24 19:03:36','','Tuesday, February 25th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-february-25th-feeder-cattle-consignments','','','2020-02-24 19:03:36','2020-02-24 19:03:36','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/02/Tuesday-February-25th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1367,1,'2020-02-24 23:18:58','2020-02-24 23:18:58','[et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" min_height=\"123px\"][et_pb_column type=\"1_2\" _builder_version=\"4.2.2\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\"]<h2 style=\"text-align: center;\"><strong>When the Gavel Falls, You\'ll Always Find Yourself on Top with \"Anstine Auction LLC\"</strong></h2>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Footer Layout','','inherit','closed','closed','','894-revision-v1','','','2020-02-24 23:18:58','2020-02-24 23:18:58','',894,'https://kingsvillelivestock.com/2020/02/24/894-revision-v1/',0,'revision','',0),(1368,1,'2020-02-24 23:19:05','2020-02-24 23:19:05','[et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" min_height=\"123px\"][et_pb_column type=\"1_2\" _builder_version=\"4.2.2\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Footer Layout','','inherit','closed','closed','','894-revision-v1','','','2020-02-24 23:19:05','2020-02-24 23:19:05','',894,'https://kingsvillelivestock.com/2020/02/24/894-revision-v1/',0,'revision','',0),(1370,1,'2020-02-24 23:19:47','2020-02-24 23:19:47','[et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" min_height=\"123px\"][et_pb_column type=\"1_2\" _builder_version=\"4.2.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][/et_pb_column][/et_pb_row][/et_pb_section]','Footer Layout','','inherit','closed','closed','','894-revision-v1','','','2020-02-24 23:19:47','2020-02-24 23:19:47','',894,'https://kingsvillelivestock.com/2020/02/24/894-revision-v1/',0,'revision','',0),(1371,1,'2020-02-24 23:19:47','2020-02-24 23:19:47','[et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" min_height=\"123px\"][et_pb_column type=\"1_2\" _builder_version=\"4.2.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][/et_pb_column][/et_pb_row][/et_pb_section]','Footer Layout','','inherit','closed','closed','','894-revision-v1','','','2020-02-24 23:19:47','2020-02-24 23:19:47','',894,'https://kingsvillelivestock.com/2020/02/24/894-revision-v1/',0,'revision','',0),(1372,1,'2020-02-24 23:19:53','2020-02-24 23:19:53','[et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" saved_tabs=\"all\" template_type=\"section\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Footer Layout','','inherit','closed','closed','','894-revision-v1','','','2020-02-24 23:19:53','2020-02-24 23:19:53','',894,'https://kingsvillelivestock.com/2020/02/24/894-revision-v1/',0,'revision','',0),(1382,2,'2020-02-24 23:32:14','2020-02-24 23:32:14','','photosShroder','','inherit','closed','closed','','photosshroder','','','2020-02-24 23:32:14','2020-02-24 23:32:14','',1325,'https://kingsvillelivestock.com/wp-content/uploads/2020/02/photosShroder.pdf',0,'attachment','application/pdf',0),(1384,2,'2020-02-24 23:32:27','2020-02-24 23:32:27','','RandyShroderEstate','','inherit','closed','closed','','randyshroderestate','','','2020-02-24 23:32:27','2020-02-24 23:32:27','',1325,'https://kingsvillelivestock.com/wp-content/uploads/2020/02/RandyShroderEstate.pdf',0,'attachment','application/pdf',0),(1390,1,'2020-02-24 23:40:35','2020-02-24 23:40:35','[et_pb_section admin_label=\"section\"]\n			[et_pb_row admin_label=\"row\"]\n				[et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"]Sale Dates\r\n\r\nMarch 6Â  Raymond Haile\r\n\r\nMarch 13Â  Property of the Late Randy Shroder <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2020/02/photosShroder.pdf\">Shroder photosÂ  </a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2020/02/RandyShroderEstate.pdf\">RandyShroder Estate flyer</a>[/et_pb_text][/et_pb_column]\n			[/et_pb_row]\n		[/et_pb_section]','Anstine Auctions','','inherit','closed','closed','','1325-revision-v1','','','2020-02-24 23:40:35','2020-02-24 23:40:35','',1325,'https://kingsvillelivestock.com/2020/02/24/1325-revision-v1/',0,'revision','',0),(1391,1,'2020-02-24 23:41:09','2020-02-24 23:41:09','Sale Dates March 6Â  Raymond Haile March 13Â  Property of the Late Randy Shroder <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2020/02/photosShroder.pdf\">Shroder photosÂ  </a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2020/02/RandyShroderEstate.pdf\">RandyShroder Estate flyer</a>','Anstine Auctions','','inherit','closed','closed','','1325-revision-v1','','','2020-02-24 23:41:09','2020-02-24 23:41:09','',1325,'https://kingsvillelivestock.com/2020/02/24/1325-revision-v1/',0,'revision','',0),(1392,1,'2020-02-24 23:42:05','2020-02-24 23:42:05','Sale Dates\r\n\r\nMarch 6Â  Raymond Haile\r\n\r\nMarch 13Â  Property of the Late Randy Shroder <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2020/02/photosShroder.pdf\">Shroder photosÂ  </a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2020/02/RandyShroderEstate.pdf\">RandyShroder Estate flyer</a>','Anstine Auctions','','inherit','closed','closed','','1325-revision-v1','','','2020-02-24 23:42:05','2020-02-24 23:42:05','',1325,'https://kingsvillelivestock.com/2020/02/24/1325-revision-v1/',0,'revision','',0),(1393,2,'2020-02-24 23:45:38','2020-02-24 23:45:38','&nbsp;\n\n<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2020/02/photosShroder.pdf\">Shroder photosÂ  </a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2020/02/RandyShroderEstate.pdf\">RandyShroder Estate flyer</a>','March 13, 2020 Property of the Late Randy Shr','','inherit','closed','closed','','1325-autosave-v1','','','2020-02-24 23:45:38','2020-02-24 23:45:38','',1325,'https://kingsvillelivestock.com/2020/02/24/1325-autosave-v1/',0,'revision','',0),(1394,2,'2020-02-24 23:45:47','2020-02-24 23:45:47','&nbsp;\r\n\r\n<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2020/02/photosShroder.pdf\">Shroder photosÂ  </a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2020/02/RandyShroderEstate.pdf\">RandyShroder Estate flyer</a>','March 13, 2020 Property of the Late Randy Shroder','','inherit','closed','closed','','1325-revision-v1','','','2020-02-24 23:45:47','2020-02-24 23:45:47','',1325,'https://kingsvillelivestock.com/2020/02/24/1325-revision-v1/',0,'revision','',0),(1395,2,'2020-02-24 23:46:33','2020-02-24 23:46:33','<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2020/02/Raymond-Haile-Sale-Flyer.pdf\">Raymond Haile Sale Flyer</a>','March 6, 2020  Raymond Haile','','publish','closed','open','','march-6-2020-raymond-haile','','','2020-02-25 00:10:18','2020-02-25 00:10:18','',0,'https://kingsvillelivestock.com/?p=1395',0,'post','',0),(1396,2,'2020-02-24 23:46:33','2020-02-24 23:46:33','','March 6, 2020  Raymond Haile','','inherit','closed','closed','','1395-revision-v1','','','2020-02-24 23:46:33','2020-02-24 23:46:33','',1395,'https://kingsvillelivestock.com/2020/02/24/1395-revision-v1/',0,'revision','',0),(1397,2,'2020-02-25 00:09:54','2020-02-25 00:09:54','','Raymond Haile Sale Flyer','','inherit','closed','closed','','raymond-haile-sale-flyer','','','2020-02-25 00:09:54','2020-02-25 00:09:54','',1395,'https://kingsvillelivestock.com/wp-content/uploads/2020/02/Raymond-Haile-Sale-Flyer.pdf',0,'attachment','application/pdf',0),(1398,2,'2020-02-25 00:10:09','2020-02-25 00:10:09','<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2020/02/Raymond-Haile-Sale-Flyer.pdf\">Raymond Haile Sale Flyer</a>','March 6, 2020  Raymond Haile','','inherit','closed','closed','','1395-autosave-v1','','','2020-02-25 00:10:09','2020-02-25 00:10:09','',1395,'https://kingsvillelivestock.com/2020/02/25/1395-autosave-v1/',0,'revision','',0),(1399,2,'2020-02-25 00:10:18','2020-02-25 00:10:18','<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2020/02/Raymond-Haile-Sale-Flyer.pdf\">Raymond Haile Sale Flyer</a>','March 6, 2020  Raymond Haile','','inherit','closed','closed','','1395-revision-v1','','','2020-02-25 00:10:18','2020-02-25 00:10:18','',1395,'https://kingsvillelivestock.com/2020/02/25/1395-revision-v1/',0,'revision','',0),(1400,2,'2020-02-26 16:57:09','2020-02-26 16:57:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>February 25th, 2020</strong> 2809 hd; last week\'s sale 3731 hd; year ago 3240 hd. Feeder cattle weighing 750lbs and up sold $2-6 lower, and cattle weighing 725lbs and down sold steady to $4 lower. Due to stock markets sharply lower, and coronavirus outbreak cattle sold lower, however there was a very good buyer demand. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$191.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$168.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$131.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$101.00-$109.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$64.00 - $73.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$51.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$41.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$72.00 - $90.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$135.00 - $160.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$120.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110.00 - $124.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">492lbs @ $165.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">556lbs @ $156.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">605lbs @ $164.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">724lbs @ $147.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 25, 2020 - Market Report','','publish','closed','open','','february-25-2020-market-report-2','','','2020-02-26 17:53:36','2020-02-26 17:53:36','',0,'https://kingsvillelivestock.com/?p=1400',0,'post','',0),(1404,2,'2020-02-26 16:43:32','2020-02-26 16:43:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>February 25th, 2020</strong> 2809 hd; last week\'s sale 3731 hd; year ago 3240 hd. Feeder cattle weighing 750lbs and up sold $2-6 lowerListen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)<br />716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$198.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$171.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$137.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$130.35</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$141.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$118.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$60.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$43.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $85.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$150.00 - $195.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$125.00 - $156.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$115.00 - $125.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">650lbs @ $143.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">720lbs @ $136.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">830lbs @ $132.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">523lbs @ $195.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">597lbs @ $171.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">774lbs @ $142.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">884lbs @ $135.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 25, 2020 - Market Report','','inherit','closed','closed','','1400-revision-v1','','','2020-02-26 16:43:32','2020-02-26 16:43:32','',1400,'https://kingsvillelivestock.com/2020/02/26/1400-revision-v1/',0,'revision','',0),(1406,2,'2020-02-26 16:57:09','2020-02-26 16:57:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>February 25th, 2020</strong> 2809 hd; last week\'s sale 3731 hd; year ago 3240 hd. Feeder cattle weighing 750lbs and up sold $2-6 lower, and cattle weighing 725lbs and down sold steady to $4 lower. Due to stock markets sharply lower, and coronavirus outbreak cattle sold lower, however there was a very good buyer demand. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)<br />716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$198.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$171.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$137.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$130.35</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$141.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$118.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$60.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$43.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $85.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$150.00 - $195.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$125.00 - $156.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$115.00 - $125.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">650lbs @ $143.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">720lbs @ $136.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">830lbs @ $132.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">523lbs @ $195.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">597lbs @ $171.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">774lbs @ $142.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">884lbs @ $135.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 25, 2020 - Market Report','','inherit','closed','closed','','1400-revision-v1','','','2020-02-26 16:57:09','2020-02-26 16:57:09','',1400,'https://kingsvillelivestock.com/2020/02/26/1400-revision-v1/',0,'revision','',0),(1408,2,'2020-02-26 17:12:22','2020-02-26 17:12:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>February 25th, 2020</strong> 2809 hd; last week\'s sale 3731 hd; year ago 3240 hd. Feeder cattle weighing 750lbs and up sold $2-6 lower, and cattle weighing 725lbs and down sold steady to $4 lower. Due to stock markets sharply lower, and coronavirus outbreak cattle sold lower, however there was a very good buyer demand. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)<br />716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$191.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$168.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$131.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$101.00-$109.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$64.00 - $73.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$51.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$41.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$72.00 - $90.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$135.00 - $160.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$120.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110.00 - $124.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">492lbs @ $165.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">556lbs @ $156.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">605lbs @ $164.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">724lbs @ $147.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" hover_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 25, 2020 - Market Report','','inherit','closed','closed','','1400-revision-v1','','','2020-02-26 17:12:22','2020-02-26 17:12:22','',1400,'https://kingsvillelivestock.com/2020/02/26/1400-revision-v1/',0,'revision','',0),(1409,2,'2020-02-26 17:13:37','2020-02-26 17:13:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<p><strong>February 25th, 2020</strong> 2809 hd; last week\'s sale 3731 hd; year ago 3240 hd. Feeder cattle weighing 750lbs and up sold $2-6 lower, and cattle weighing 725lbs and down sold steady to $4 lower. Due to stock markets sharply lower, and coronavirus outbreak cattle sold lower, however there was a very good buyer demand. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816)<br />716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$191.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$168.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$131.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$101.00-$109.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$64.00 - $73.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$51.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$41.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$72.00 - $90.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$135.00 - $160.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$120.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110.00 - $124.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">492lbs @ $165.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">556lbs @ $156.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">605lbs @ $164.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">724lbs @ $147.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 25, 2020 - Market Report','','inherit','closed','closed','','1400-revision-v1','','','2020-02-26 17:13:37','2020-02-26 17:13:37','',1400,'https://kingsvillelivestock.com/2020/02/26/1400-revision-v1/',0,'revision','',0),(1421,2,'2020-02-26 17:53:33','2020-02-26 17:53:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>February 25th, 2020</strong> 2809 hd; last week\'s sale 3731 hd; year ago 3240 hd. Feeder cattle weighing 750lbs and up sold $2-6 lower, and cattle weighing 725lbs and down sold steady to $4 lower. Due to stock markets sharply lower, and coronavirus outbreak cattle sold lower, however there was a very good buyer demand. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$191.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$168.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$131.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$101.00-$109.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$64.00 - $73.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$51.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$41.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$72.00 - $90.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$135.00 - $160.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$120.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$110.00 - $124.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">492lbs @ $165.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">556lbs @ $156.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">605lbs @ $164.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">724lbs @ $147.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 25, 2020 - Market Report','','inherit','closed','closed','','1400-revision-v1','','','2020-02-26 17:53:33','2020-02-26 17:53:33','',1400,'https://kingsvillelivestock.com/2020/02/26/1400-revision-v1/',0,'revision','',0),(1424,2,'2020-03-02 19:03:49','2020-03-02 19:03:49','','Tuesday, March 3rd Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-march-3rd-feeder-cattle-consignments','','','2020-03-02 19:03:49','2020-03-02 19:03:49','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/03/Tuesday-March-3rd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1438,2,'2020-03-03 00:45:25','2020-03-03 00:45:25','','','','inherit','closed','closed','','haile','','','2020-03-03 00:46:32','2020-03-03 00:46:32','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/03/HAILE.jpg',0,'attachment','image/jpeg',0),(1439,2,'2020-03-03 00:45:37','2020-03-03 00:45:37','','HAILE1','','inherit','closed','closed','','haile1','','','2020-03-03 00:45:37','2020-03-03 00:45:37','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/03/HAILE1.jpg',0,'attachment','image/jpeg',0),(1440,2,'2020-03-03 00:45:44','2020-03-03 00:45:44','','HAILE2','','inherit','closed','closed','','haile2','','','2020-03-03 00:45:44','2020-03-03 00:45:44','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/03/HAILE2.jpg',0,'attachment','image/jpeg',0),(1441,2,'2020-03-03 00:45:51','2020-03-03 00:45:51','','HAILE3','','inherit','closed','closed','','haile3','','','2020-03-03 00:45:51','2020-03-03 00:45:51','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/03/HAILE3.jpg',0,'attachment','image/jpeg',0),(1450,2,'2020-03-03 01:21:16','2020-03-03 01:21:16','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.23.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<h1 style=\"text-align: center;\"><span style=\"color: #0000ff;\"><strong>Â Check back for upcoming auctions!Â </strong></span></h1>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','publish','closed','closed','','anstine-auction-llc','','','2023-11-13 16:30:00','2023-11-13 16:30:00','',0,'https://kingsvillelivestock.com/?page_id=1450',0,'page','',0),(1451,2,'2020-03-03 01:21:17','2020-03-03 01:21:17',' ','','','publish','closed','closed','','1451','','','2020-03-03 01:21:17','2020-03-03 01:21:17','',0,'https://kingsvillelivestock.com/2020/03/03/1451/',10,'nav_menu_item','',0),(1453,2,'2020-03-03 01:24:45','2020-03-03 01:24:45','','HAILE4','','inherit','closed','closed','','haile4','','','2020-03-03 01:24:45','2020-03-03 01:24:45','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/03/HAILE4.jpg',0,'attachment','image/jpeg',0),(1454,2,'2020-03-03 01:24:58','2020-03-03 01:24:58','','HAILE5','','inherit','closed','closed','','haile5','','','2020-03-03 01:24:58','2020-03-03 01:24:58','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/03/HAILE5.jpg',0,'attachment','image/jpeg',0),(1457,2,'2020-03-04 15:53:41','2020-03-04 15:53:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>March 3rd, 2020</strong> 1520 hd; last week\'s sale 2089 hd; year ago 1155 hd. Feeder cattle of all classes sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$199.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.50-$134.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$150.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$123.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$107.00-$111.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$120.00-$122.00</span></p>\n</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$68.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$53.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$41.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $89.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140.00 - $190.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$130.00 - $163.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$100.00 - $114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">520lbs @ $160.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">600lbs @ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">677lbs @ $136.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">703lbs@ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">728lbs@ $153.60</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 3rd, 2020 - Market Report','','publish','closed','open','','march-3-2020-market-report','','','2020-03-04 15:53:44','2020-03-04 15:53:44','',0,'https://kingsvillelivestock.com/?p=1457',0,'post','',0),(1459,2,'2020-03-04 15:53:41','2020-03-04 15:53:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>March 3rd, 2020</strong> 1520 hd; last week\'s sale 2089 hd; year ago 1155 hd. Feeder cattle of all classes sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$199.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.50-$134.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$150.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$123.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$107.00-$111.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$120.00-$122.00</span></p>\n</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$68.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$53.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$41.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $89.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140.00 - $190.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$130.00 - $163.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$100.00 - $114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">520lbs @ $160.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">600lbs @ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">677lbs @ $136.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">703lbs@ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">728lbs@ $153.60</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 3rd, 2020 - Market Report','','inherit','closed','closed','','1457-revision-v1','','','2020-03-04 15:53:41','2020-03-04 15:53:41','',1457,'https://kingsvillelivestock.com/2020/03/04/1457-revision-v1/',0,'revision','',0),(1460,2,'2020-03-04 15:53:41','2020-03-04 15:53:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>March 3rd, 2020</strong> 1520 hd; last week\'s sale 2089 hd; year ago 1155 hd. Feeder cattle of all classes sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$199.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.50-$134.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$150.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$123.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$107.00-$111.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$120.00-$122.00</span></p>\n</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$68.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$53.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$41.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $89.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140.00 - $190.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$130.00 - $163.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$100.00 - $114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">520lbs @ $160.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">600lbs @ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">677lbs @ $136.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">703lbs@ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">728lbs@ $153.60</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 25, 2020 - Market Report','','inherit','closed','closed','','1457-revision-v1','','','2020-03-04 15:53:41','2020-03-04 15:53:41','',1457,'https://kingsvillelivestock.com/2020/03/04/1457-revision-v1/',0,'revision','',0),(1461,2,'2020-03-04 15:53:44','2020-03-04 15:53:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>March 3rd, 2020</strong> 1520 hd; last week\'s sale 2089 hd; year ago 1155 hd. Feeder cattle of all classes sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$199.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.50-$134.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$150.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$123.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$107.00-$111.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$120.00-$122.00</span></p>\n</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$68.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$53.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$41.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $89.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$140.00 - $190.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$130.00 - $163.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$100.00 - $114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">520lbs @ $160.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">600lbs @ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">677lbs @ $136.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">703lbs@ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">728lbs@ $153.60</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 3rd, 2020 - Market Report','','inherit','closed','closed','','1457-revision-v1','','','2020-03-04 15:53:44','2020-03-04 15:53:44','',1457,'https://kingsvillelivestock.com/2020/03/04/1457-revision-v1/',0,'revision','',0),(1465,2,'2020-03-09 19:47:30','2020-03-09 19:47:30','','Tuesday, March 10th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-march-10th-feeder-cattle-consignments','','','2020-03-09 19:47:30','2020-03-09 19:47:30','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/03/Tuesday-March-10th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1470,2,'2020-03-11 14:52:37','2020-03-11 14:52:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>March 10th, 2020</strong> 1677 hd; last week\'s sale 1520 hd; year ago 1905 hd. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$143.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$123.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$121.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$95.00-$101.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$63.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$52.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$40.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$71.00 - $90.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$150.00 - $190.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$120.00 - $146.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$100.00 - $116.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">670lbs @ $138.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">804lbs@ $140.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">924lbs@ $120.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" hover_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 10th, 2020 - Market Report','','publish','closed','open','','march-10th-2020-market-report','','','2020-03-11 14:52:41','2020-03-11 14:52:41','',0,'https://kingsvillelivestock.com/?p=1470',0,'post','',0),(1472,2,'2020-03-11 14:52:37','2020-03-11 14:52:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>March 10th, 2020</strong> 1677 hd; last week\'s sale 1520 hd; year ago 1905 hd. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$143.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$123.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$121.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$95.00-$101.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$63.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$52.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$40.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$71.00 - $90.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$150.00 - $190.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$120.00 - $146.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$100.00 - $116.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">670lbs @ $138.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">804lbs@ $140.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">924lbs@ $120.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" hover_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 10th, 2020 - Market Report','','inherit','closed','closed','','1470-revision-v1','','','2020-03-11 14:52:37','2020-03-11 14:52:37','',1470,'https://kingsvillelivestock.com/2020/03/11/1470-revision-v1/',0,'revision','',0),(1473,2,'2020-03-11 14:52:37','2020-03-11 14:52:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>March 10th, 2020</strong> 1677 hd; last week\'s sale 1520 hd; year ago 1905 hd. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$143.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$123.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$121.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$95.00-$101.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$63.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$52.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$40.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$71.00 - $90.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$150.00 - $190.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$120.00 - $146.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$100.00 - $116.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">670lbs @ $138.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">804lbs@ $140.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">924lbs@ $120.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" hover_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 3rd, 2020 - Market Report','','inherit','closed','closed','','1470-revision-v1','','','2020-03-11 14:52:37','2020-03-11 14:52:37','',1470,'https://kingsvillelivestock.com/2020/03/11/1470-revision-v1/',0,'revision','',0),(1474,2,'2020-03-11 14:52:41','2020-03-11 14:52:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<p><strong>March 10th, 2020</strong> 1677 hd; last week\'s sale 1520 hd; year ago 1905 hd. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$143.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$123.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$121.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$95.00-$101.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$63.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$52.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$40.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$71.00 - $90.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$150.00 - $190.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$120.00 - $146.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$100.00 - $116.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.2.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">670lbs @ $138.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">804lbs@ $140.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">924lbs@ $120.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" hover_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 10th, 2020 - Market Report','','inherit','closed','closed','','1470-revision-v1','','','2020-03-11 14:52:41','2020-03-11 14:52:41','',1470,'https://kingsvillelivestock.com/2020/03/11/1470-revision-v1/',0,'revision','',0),(1490,2,'2020-03-16 15:33:50','2020-03-16 15:33:50','','Tuesday, March 10th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-march-10th-feeder-cattle-consignments-2','','','2020-03-16 15:33:50','2020-03-16 15:33:50','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/03/Tuesday-March-10th-Feeder-Cattle-Consignments-1.pdf',0,'attachment','application/pdf',0),(1506,2,'2020-03-16 17:27:00','2020-03-16 17:27:00','','Tuesday, March 17th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-march-17th-feeder-cattle-consignments','','','2020-03-16 17:27:00','2020-03-16 17:27:00','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/03/Tuesday-March-17th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1507,2,'2020-03-16 17:27:34','2020-03-16 17:27:34','','Tuesday, March 17th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-march-17th-feeder-cattle-consignments-2','','','2020-03-16 17:27:34','2020-03-16 17:27:34','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/03/Tuesday-March-17th-Feeder-Cattle-Consignments-1.pdf',0,'attachment','application/pdf',0),(1509,2,'2020-03-17 14:25:19','2020-03-17 14:25:19','','2020Memorial Day Sale flyer','','inherit','closed','closed','','2020memorial-day-sale-flyer','','','2020-03-17 14:25:19','2020-03-17 14:25:19','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/03/2020Memorial-Day-Sale-flyer.pdf',0,'attachment','application/pdf',0),(1512,2,'2020-03-17 15:18:20','2020-03-17 15:18:20','','Sales in Regards to Virus','','inherit','closed','closed','','sales-in-regards-to-virus','','','2020-03-17 15:18:20','2020-03-17 15:18:20','',639,'https://kingsvillelivestock.com/wp-content/uploads/2020/03/Sales-in-Regards-to-Virus.docx',0,'attachment','application/vnd.openxmlformats-officedocument.wordprocessingml.document',0),(1513,2,'2020-03-17 15:18:42','2020-03-17 15:18:42','','Sales in Regards to Virus','','inherit','closed','closed','','sales-in-regards-to-virus-2','','','2020-03-17 15:18:42','2020-03-17 15:18:42','',639,'https://kingsvillelivestock.com/wp-content/uploads/2020/03/Sales-in-Regards-to-Virus.pdf',0,'attachment','application/pdf',0),(1514,2,'2020-03-17 15:19:11','2020-03-17 15:19:11','','Tuesday, March 24th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-march-24th-feeder-cattle-consignments','','','2020-03-17 15:19:11','2020-03-17 15:19:11','',639,'https://kingsvillelivestock.com/wp-content/uploads/2020/03/Tuesday-March-24th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1518,2,'2020-03-17 15:21:19','2020-03-17 15:21:19','','Sales in Regards to Virus','','inherit','closed','closed','','sales-in-regards-to-virus-3','','','2020-03-17 15:21:19','2020-03-17 15:21:19','',639,'https://kingsvillelivestock.com/wp-content/uploads/2020/03/Sales-in-Regards-to-Virus-1.pdf',0,'attachment','application/pdf',0),(1521,2,'2020-03-17 15:23:01','2020-03-17 15:23:01','','Tuesday, March 24th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-march-24th-feeder-cattle-consignments-2','','','2020-03-17 15:23:01','2020-03-17 15:23:01','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/03/Tuesday-March-24th-Feeder-Cattle-Consignments-1.pdf',0,'attachment','application/pdf',0),(1524,2,'2020-03-18 15:18:25','2020-03-18 15:18:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>March 17th, 2020</strong> 819 hd; last week\'s sale 1677 hd; year ago 2633 hd. Feeder cattle sold $4-10 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$131.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$101.00-$116.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$133.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$101.00-$119.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$103.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$63.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$55.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$48.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $100.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$120.00 - $148.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$95.00 - $105.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$95.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">637lbs @ $124.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">720lbs @ $121.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">610lbs@ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">699lbs@ $140.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 17th, 2020 - Market Report','','publish','closed','open','','march-17th-2020-market-report-2','','','2020-03-18 15:20:33','2020-03-18 15:20:33','',0,'https://kingsvillelivestock.com/?p=1524',0,'post','',0),(1526,2,'2020-03-18 15:18:25','2020-03-18 15:18:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>March 10th, 2020</strong> 819 hd; last week\'s sale 1677 hd; year ago 2633 hd. Feeder cattle sold $4-10 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$131.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$101.00-$116.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$133.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$101.00-$119.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$103.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$63.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$55.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$48.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $100.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$120.00 - $148.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$95.00 - $105.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$95.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">637lbs @ $124.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">720lbs @ $121.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">610lbs@ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">699lbs@ $140.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" hover_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 17th, 2020 - Market Report','','inherit','closed','closed','','1524-revision-v1','','','2020-03-18 15:18:25','2020-03-18 15:18:25','',1524,'https://kingsvillelivestock.com/2020/03/18/1524-revision-v1/',0,'revision','',0),(1527,2,'2020-03-18 15:18:25','2020-03-18 15:18:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>March 10th, 2020</strong> 819 hd; last week\'s sale 1677 hd; year ago 2633 hd. Feeder cattle sold $4-10 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$131.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$101.00-$116.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$133.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$101.00-$119.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$103.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$63.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$55.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$48.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $100.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$120.00 - $148.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$95.00 - $105.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$95.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">637lbs @ $124.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">720lbs @ $121.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">610lbs@ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">699lbs@ $140.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" hover_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 10th, 2020 - Market Report','','inherit','closed','closed','','1524-revision-v1','','','2020-03-18 15:18:25','2020-03-18 15:18:25','',1524,'https://kingsvillelivestock.com/2020/03/18/1524-revision-v1/',0,'revision','',0),(1528,2,'2020-03-18 15:18:29','2020-03-18 15:18:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>March 10th, 2020</strong> 819 hd; last week\'s sale 1677 hd; year ago 2633 hd. Feeder cattle sold $4-10 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$131.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$101.00-$116.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$133.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$101.00-$119.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$103.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$63.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$55.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$48.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $100.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$120.00 - $148.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$95.00 - $105.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$95.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">637lbs @ $124.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">720lbs @ $121.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">610lbs@ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">699lbs@ $140.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" hover_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 17th, 2020 - Market Report','','inherit','closed','closed','','1524-revision-v1','','','2020-03-18 15:18:29','2020-03-18 15:18:29','',1524,'https://kingsvillelivestock.com/2020/03/18/1524-revision-v1/',0,'revision','',0),(1529,2,'2020-03-18 15:20:30','2020-03-18 15:20:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>March 17th, 2020</strong> 819 hd; last week\'s sale 1677 hd; year ago 2633 hd. Feeder cattle sold $4-10 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$131.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$101.00-$116.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$133.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$101.00-$119.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$103.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$63.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$55.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$48.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $100.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px;\">$120.00 - $148.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px;\">$95.00 - $105.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px;\">$95.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">637lbs @ $124.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">720lbs @ $121.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">610lbs@ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">699lbs@ $140.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 17th, 2020 - Market Report','','inherit','closed','closed','','1524-revision-v1','','','2020-03-18 15:20:30','2020-03-18 15:20:30','',1524,'https://kingsvillelivestock.com/2020/03/18/1524-revision-v1/',0,'revision','',0),(1531,1,'2020-03-18 17:30:54','2020-03-18 17:30:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_fullwidth_header title=\"Contact Us\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-117.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Contact Section\" _builder_version=\"4.2\" custom_padding=\"60px||60px||true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"60px||10px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Contact Area\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" header_font_size=\"36px\"]<h1>Contact Information</h1>[/et_pb_text][et_pb_blurb title=\"Address\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%249%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>P.O. Box 127<br /> Hwy 58 East<br /> Kingsville, MO 64061</span></p>[/et_pb_blurb][et_pb_blurb title=\"anstineauctions@earthlink.net\" url=\"mailto:anstineauctions@earthlink.net\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%238%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"][/et_pb_blurb][et_pb_blurb title=\"Office (816) 597-3331\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"][/et_pb_blurb][et_pb_blurb title=\"Fax (816) 597-3971\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%268%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"]<h2>Get In Touch</h2>[/et_pb_text][et_pb_contact_form email=\"Anstineauction@gmail.com, justin@hpgmedia.com\" success_message=\"Success! Someone will get back to you shortly.\" submit_button_text=\"SEND\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.1\" title_font=\"||||||||\" form_field_font=\"||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#696353\" animation_style=\"fade\" button_text_color_tablet=\"\" button_text_color_phone=\"#696353\" button_text_color_last_edited=\"on|phone\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#02d002\" button_border_color_hover=\"#02d002\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"0\" custom_message=\"Message From: %%First_Name%% %%Last_Name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email: %%Eamil%%||et_pb_line_break_holder||||et_pb_line_break_holder||Interested in: %%Interested_In%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message: %%Message%%\" hover_enabled=\"0\"][et_pb_contact_field field_id=\"First_Name\" field_title=\"First Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Last_Name\" field_title=\"Last Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.4.1\" hover_enabled=\"0\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Interested_In\" field_title=\"I am Interested In\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" header_font_size=\"36px\"]<h1>Owners and Operators</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.2\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_blurb title=\"Rick\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>(816) 258-3421</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_blurb title=\"Jeremy\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>(816) 716-9288</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_blurb title=\"Jared\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>(816) 878-5229</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Map Section\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#f7f7f7\" custom_padding=\"60px||60px||true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"10px||60px||false|false\"][et_pb_row _builder_version=\"3.25\" max_width=\"1440px\" custom_padding=\"|||\" use_custom_width=\"on\" custom_width_px=\"1440px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" saved_tabs=\"all\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','723-revision-v1','','','2020-03-18 17:30:54','2020-03-18 17:30:54','',723,'https://kingsvillelivestock.com/2020/03/18/723-revision-v1/',0,'revision','',0),(1532,1,'2020-03-18 17:32:21','2020-03-18 17:32:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_fullwidth_header title=\"Contact Us\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-117.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Contact Section\" _builder_version=\"4.2\" custom_padding=\"60px||60px||true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"60px||10px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Contact Area\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" header_font_size=\"36px\"]<h1>Contact Information</h1>[/et_pb_text][et_pb_blurb title=\"Address\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%249%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>P.O. Box 127<br /> Hwy 58 East<br /> Kingsville, MO 64061</span></p>[/et_pb_blurb][et_pb_blurb title=\"anstineauctions@earthlink.net\" url=\"mailto:anstineauctions@earthlink.net\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%238%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"][/et_pb_blurb][et_pb_blurb title=\"Office (816) 597-3331\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"][/et_pb_blurb][et_pb_blurb title=\"Fax (816) 597-3971\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%268%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"]<h2>Get In Touch</h2>[/et_pb_text][et_pb_contact_form email=\"Anstineauction@gmail.com, justin@hpgmedia.com\" custom_message=\"Message From: %%First_Name%% %%Last_Name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Interested in: %%Interested_In%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message: %%Message%%\" success_message=\"Success! Someone will get back to you shortly.\" submit_button_text=\"SEND\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.1\" title_font=\"||||||||\" form_field_font=\"||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#696353\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_tablet=\"\" button_text_color_phone=\"#696353\" button_text_color_last_edited=\"on|phone\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#02d002\" button_border_color_hover=\"#02d002\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"0\"][et_pb_contact_field field_id=\"First_Name\" field_title=\"First Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Last_Name\" field_title=\"Last Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.4.1\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Interested_In\" field_title=\"I am Interested In\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" header_font_size=\"36px\"]<h1>Owners and Operators</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.2\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_blurb title=\"Rick\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>(816) 258-3421</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_blurb title=\"Jeremy\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>(816) 716-9288</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_blurb title=\"Jared\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>(816) 878-5229</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Map Section\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#f7f7f7\" custom_padding=\"60px||60px||true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"10px||60px||false|false\"][et_pb_row _builder_version=\"3.25\" max_width=\"1440px\" custom_padding=\"|||\" use_custom_width=\"on\" custom_width_px=\"1440px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" saved_tabs=\"all\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','723-revision-v1','','','2020-03-18 17:32:21','2020-03-18 17:32:21','',723,'https://kingsvillelivestock.com/2020/03/18/723-revision-v1/',0,'revision','',0),(1536,1,'2020-03-18 17:57:56','2020-03-18 17:57:56','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_fullwidth_header title=\"Contact Us\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-117.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Contact Section\" _builder_version=\"4.2\" custom_padding=\"60px||60px||true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"60px||10px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Contact Area\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" header_font_size=\"36px\"]<h1>Contact Information</h1>[/et_pb_text][et_pb_blurb title=\"Address\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%249%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>P.O. Box 127<br /> Hwy 58 East<br /> Kingsville, MO 64061</span></p>[/et_pb_blurb][et_pb_blurb title=\"anstineauctions@earthlink.net\" url=\"mailto:anstineauctions@earthlink.net\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%238%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"][/et_pb_blurb][et_pb_blurb title=\"Office (816) 597-3331\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"][/et_pb_blurb][et_pb_blurb title=\"Fax (816) 597-3971\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%268%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"]<h2>Get In Touch</h2>[/et_pb_text][et_pb_contact_form email=\"Anstineauction@gmail.com\" custom_message=\"Message From: %%First_Name%% %%Last_Name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Interested in: %%Interested_In%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message: %%Message%%\" success_message=\"Success! Someone will get back to you shortly.\" submit_button_text=\"SEND\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.1\" title_font=\"||||||||\" form_field_font=\"||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#696353\" animation_style=\"fade\" hover_enabled=\"0\" button_text_color_tablet=\"\" button_text_color_phone=\"#696353\" button_text_color_last_edited=\"on|phone\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#02d002\" button_border_color_hover=\"#02d002\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"0\"][et_pb_contact_field field_id=\"First_Name\" field_title=\"First Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Last_Name\" field_title=\"Last Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.4.1\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Interested_In\" field_title=\"I am Interested In\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" header_font_size=\"36px\"]<h1>Owners and Operators</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.2\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_blurb title=\"Rick\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>(816) 258-3421</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_blurb title=\"Jeremy\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>(816) 716-9288</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_blurb title=\"Jared\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>(816) 878-5229</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Map Section\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#f7f7f7\" custom_padding=\"60px||60px||true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"10px||60px||false|false\"][et_pb_row _builder_version=\"3.25\" max_width=\"1440px\" custom_padding=\"|||\" use_custom_width=\"on\" custom_width_px=\"1440px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" saved_tabs=\"all\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','723-revision-v1','','','2020-03-18 17:57:56','2020-03-18 17:57:56','',723,'https://kingsvillelivestock.com/2020/03/18/723-revision-v1/',0,'revision','',0),(1540,2,'2020-03-24 21:57:01','2020-03-24 21:57:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>March 24th, 2020</strong> 1166 hd; last week\'s sale 819 hd; year ago 1718 hd. Weaned feeder cattle sold $7-15 higher with spots $20 higher, as Boxed Beef prices soared and few feeder cattle being traded the last few weeks. Very good buyer demand. Slaughter cows &amp; bulls sold $3-6 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$158.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$136.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.60-&amp;126.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.50-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$121.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$85.00-$104.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$71.00 - $84.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$45.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">N/A</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px; text-align: center;\">N/A</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">645lbs @ $144.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">757lbs @ $158.35</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">772lbs @ $141.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">816lbs @ $143.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">826lbs @ $151.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">919lbs @ $123.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">928lbs @ $126.60</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 24th, 2020 - Market Report','','publish','closed','open','','march-24th-2020-market-report','','','2020-03-24 21:57:05','2020-03-24 21:57:05','',0,'https://kingsvillelivestock.com/?p=1540',0,'post','',0),(1546,2,'2020-03-23 17:29:39','2020-03-23 17:29:39','','Tuesday, March 24th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-march-24th-feeder-cattle-consignments-3','','','2020-03-23 17:29:39','2020-03-23 17:29:39','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/03/Tuesday-March-24th-Feeder-Cattle-Consignments-2.pdf',0,'attachment','application/pdf',0),(1558,2,'2020-03-24 21:57:01','2020-03-24 21:57:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>March 24th, 2020</strong> 1166 hd; last week\'s sale 819 hd; year ago 1718 hd. Weaned feeder cattle sold $7-15 higher with spots $20 higher, as Boxed Beef prices soared and few feeder cattle being traded the last few weeks. Very good buyer demand. Slaughter cows &amp; bulls sold $3-6 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$158.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$136.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.60-&amp;126.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.50-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$121.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$85.00-$104.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$71.00 - $84.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$45.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">N/A</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px; text-align: center;\">N/A</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">645lbs @ $144.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">757lbs @ $158.35</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">772lbs @ $141.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">816lbs @ $143.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">826lbs @ $151.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">919lbs @ $123.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">928lbs @ $126.60</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 17th, 2020 - Market Report','','inherit','closed','closed','','1540-revision-v1','','','2020-03-24 21:57:01','2020-03-24 21:57:01','',1540,'https://kingsvillelivestock.com/2020/03/24/1540-revision-v1/',0,'revision','',0),(1559,2,'2020-03-24 21:57:05','2020-03-24 21:57:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>March 24th, 2020</strong> 1166 hd; last week\'s sale 819 hd; year ago 1718 hd. Weaned feeder cattle sold $7-15 higher with spots $20 higher, as Boxed Beef prices soared and few feeder cattle being traded the last few weeks. Very good buyer demand. Slaughter cows &amp; bulls sold $3-6 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$158.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$136.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.60-&amp;126.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.50-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$121.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$85.00-$104.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$71.00 - $84.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$45.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">N/A</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px; text-align: center;\">N/A</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">645lbs @ $144.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">757lbs @ $158.35</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">772lbs @ $141.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">816lbs @ $143.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">826lbs @ $151.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">919lbs @ $123.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">928lbs @ $126.60</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 24th, 2020 - Market Report','','inherit','closed','closed','','1540-revision-v1','','','2020-03-24 21:57:05','2020-03-24 21:57:05','',1540,'https://kingsvillelivestock.com/2020/03/24/1540-revision-v1/',0,'revision','',0),(1561,2,'2020-03-27 01:24:29','0000-00-00 00:00:00','','Auto Draft','','draft','closed','open','','','','','2020-03-27 01:24:29','2020-03-27 01:24:29','',0,'https://kingsvillelivestock.com/?p=1561',0,'post','',0),(1562,2,'2020-03-27 01:24:29','2020-03-27 01:24:29','','Auto Draft','','inherit','closed','closed','','1561-revision-v1','','','2020-03-27 01:24:29','2020-03-27 01:24:29','',1561,'https://kingsvillelivestock.com/2020/03/27/1561-revision-v1/',0,'revision','',0),(1572,2,'2020-03-30 19:05:47','2020-03-30 19:05:47','','Tuesday, March 31st Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-march-31st-feeder-cattle-consignments','','','2020-03-30 19:05:47','2020-03-30 19:05:47','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/03/Tuesday-March-31st-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1574,2,'2020-04-01 15:47:24','2020-04-01 15:47:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>March 31st, 2020</strong> 2737 hd; last week\'s sale 1166 hd; year ago 1254 hd Compared to last week, steer and heifer calves sold mostly steady. Yearling steers 650lb and up sold $6-10 lower. Weigh cows and bulls sold $7-10 lower.. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$174.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$167.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$159.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.50-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$129.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$111.00-&amp;118.85</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$147.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$118.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$104.25-$108.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$98.00-$106.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$57.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$50.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$37.00 - $49.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $92.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding Bulls</td>\n<td style=\"width: 156.5px;\">$45.00 - $63.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$130.00 - $189.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px; text-align: center;\">$105.00 - $149.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$96.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">\n<p>750lbs-825lbsÂ  Â  Â  Â  Â  Â  Â  Â  Â  Â @ $106.85-$109.85</p>\n</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">792lbs @ $132.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">901lbs @ $118.85</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 31st, 2020 - Market Report','','publish','closed','open','','march-31st-2020-market-report-2','','','2020-04-01 15:47:27','2020-04-01 15:47:27','',0,'https://kingsvillelivestock.com/?p=1574',0,'post','',0),(1575,2,'2020-04-01 14:50:17','2020-04-01 14:50:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>March 31st, 2020</strong> 2737 hd; last week\'s sale 1166 hd; year ago 1254 hd. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$158.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$136.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.60-&amp;126.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.50-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$121.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$85.00-$104.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$71.00 - $84.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$45.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $103.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">N/A</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px; text-align: center;\">N/A</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">645lbs @ $144.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">757lbs @ $158.35</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">772lbs @ $141.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">816lbs @ $143.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">826lbs @ $151.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">919lbs @ $123.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">928lbs @ $126.60</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 31st, 2020 - Market Report','','inherit','closed','closed','','1574-revision-v1','','','2020-04-01 14:50:17','2020-04-01 14:50:17','',1574,'https://kingsvillelivestock.com/2020/04/01/1574-revision-v1/',0,'revision','',0),(1576,2,'2020-04-01 14:50:18','2020-04-01 14:50:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>March 31st, 2020</strong> 2737 hd; last week\'s sale 1166 hd; year ago 1254 hd. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$158.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$136.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.60-&amp;126.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.50-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$121.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$85.00-$104.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$71.00 - $84.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$45.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $103.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">N/A</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px; text-align: center;\">N/A</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">645lbs @ $144.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">757lbs @ $158.35</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">772lbs @ $141.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">816lbs @ $143.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">826lbs @ $151.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">919lbs @ $123.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">928lbs @ $126.60</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 24th, 2020 - Market Report','','inherit','closed','closed','','1574-revision-v1','','','2020-04-01 14:50:18','2020-04-01 14:50:18','',1574,'https://kingsvillelivestock.com/2020/04/01/1574-revision-v1/',0,'revision','',0),(1577,2,'2020-04-01 14:50:20','2020-04-01 14:50:20','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>March 31st, 2020</strong> 2737 hd; last week\'s sale 1166 hd; year ago 1254 hd. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$158.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$136.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.60-&amp;126.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.50-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$121.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$85.00-$104.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$71.00 - $84.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$45.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $103.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">N/A</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px; text-align: center;\">N/A</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">645lbs @ $144.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">757lbs @ $158.35</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">772lbs @ $141.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">816lbs @ $143.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">826lbs @ $151.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">919lbs @ $123.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">928lbs @ $126.60</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 31st, 2020 - Market Report','','inherit','closed','closed','','1574-revision-v1','','','2020-04-01 14:50:20','2020-04-01 14:50:20','',1574,'https://kingsvillelivestock.com/2020/04/01/1574-revision-v1/',0,'revision','',0),(1585,2,'2020-04-01 15:47:24','2020-04-01 15:47:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>March 31st, 2020</strong> 2737 hd; last week\'s sale 1166 hd; year ago 1254 hd Compared to last week, steer and heifer calves sold mostly steady. Yearling steers 650lb and up sold $6-10 lower. Weigh cows and bulls sold $7-10 lower.. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$174.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$167.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$159.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.50-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$129.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$111.00-&amp;118.85</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$147.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$118.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$104.25-$108.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$98.00-$106.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$57.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Kind</td>\n<td style=\"width: 156.5px;\">$50.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding</td>\n<td style=\"width: 156.5px;\">$37.00 - $49.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $92.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding Bulls</td>\n<td style=\"width: 156.5px;\">$45.00 - $63.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$130.00 - $189.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px; text-align: center;\">$105.00 - $149.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$96.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">\n<p>750lbs-825lbsÂ  Â  Â  Â  Â  Â  Â  Â  Â  Â @ $106.85-$109.85</p>\n</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">792lbs @ $132.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">901lbs @ $118.85</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 31st, 2020 - Market Report','','inherit','closed','closed','','1574-revision-v1','','','2020-04-01 15:47:24','2020-04-01 15:47:24','',1574,'https://kingsvillelivestock.com/2020/04/01/1574-revision-v1/',0,'revision','',0),(1587,2,'2020-04-01 18:36:14','2020-04-01 18:36:14','','Cow Sale 2020','','inherit','closed','closed','','cow-sale-2020','','','2020-04-01 18:36:14','2020-04-01 18:36:14','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/04/Cow-Sale-2020.pdf',0,'attachment','application/pdf',0),(1591,2,'2020-04-06 18:29:30','2020-04-06 18:29:30','','Tuesday, April 7th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-april-7th-feeder-cattle-consignments','','','2020-04-06 18:29:30','2020-04-06 18:29:30','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/04/Tuesday-April-7th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1609,2,'2020-04-08 16:05:20','2020-04-08 16:05:20','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>April 7th, 2020</strong> 1295 hd; last week\'s sale 2737 hd; year ago 1512 hd. Feeder cattle under 700lbs sold $5-7 higher on long weaned yearlings. Light test on 700-900lb feeder cattle. Cows and bulls sold $3-6 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 291px;\" width=\"465\">\n<tbody>\n<tr style=\"height: 80px;\">\n<td style=\"width: 146px; text-align: center; height: 80px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 168px; text-align: center; height: 80px;\"><span style=\"text-decoration: underline;\"><strong>PRICE: UNWEANED, SHORT WEANED, &amp; NEW CROP</strong></span></td>\n<td style=\"width: 129px; text-align: center; height: 80px;\"><span style=\"text-decoration: underline;\"><strong>PRICE: LONG TIME WEANED </strong></span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">300-400</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$155.00</span></td>\n<td style=\"width: 129px; height: 23px;\">$157.00-$175.00</td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">400-500</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$155.50</span></td>\n<td style=\"width: 129px; height: 23px;\">$150.00-$175.00</td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">500-600</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$146.50</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">600-700</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">$110.50-$125.00</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">$133.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">700-800</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$134.25</span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">800-900</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">$100.00-$105.75</span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">900-1000</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 237px;\" width=\"491\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 176px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE: UNWEANED, SHORT WEANED, &amp; NEW CROP</strong></span></td>\n<td style=\"width: 136px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE: LONG TIME WEANED</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$150.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">$134.00-$141.00</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$141.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">$100.00-$130.75</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$135.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">$110.00-$116.00</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$117.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 176px;\">$94.50-$101.00</td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$101.00-$110.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$94.00-$105.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 176px;\">N/A</td>\n<td style=\"width: 136px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding Cows</td>\n<td style=\"width: 156.5px;\">$52.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yielding Cows</td>\n<td style=\"width: 156.5px;\">$43.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding Cows</td>\n<td style=\"width: 156.5px;\">$30.00 - $42.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Slaughter Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $89.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$150.00 - $170.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px; text-align: center;\">$113.00 - $125.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$85.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">537lbs @ $143.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">587lbs @ $139.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">505lbs @ $170.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">625lbs @ $150.10</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">694lbs @ $139.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">729lbs @ $134.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 7th, 2020 - Market Report','','publish','closed','open','','april-7th-2020-market-report','','','2020-04-08 16:05:23','2020-04-08 16:05:23','',0,'https://kingsvillelivestock.com/?p=1609',0,'post','',0),(1611,2,'2020-04-08 16:05:20','2020-04-08 16:05:20','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>April 7th, 2020</strong> 1295 hd; last week\'s sale 2737 hd; year ago 1512 hd. Feeder cattle under 700lbs sold $5-7 higher on long weaned yearlings. Light test on 700-900lb feeder cattle. Cows and bulls sold $3-6 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 291px;\" width=\"465\">\n<tbody>\n<tr style=\"height: 80px;\">\n<td style=\"width: 146px; text-align: center; height: 80px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 168px; text-align: center; height: 80px;\"><span style=\"text-decoration: underline;\"><strong>PRICE: UNWEANED, SHORT WEANED, &amp; NEW CROP</strong></span></td>\n<td style=\"width: 129px; text-align: center; height: 80px;\"><span style=\"text-decoration: underline;\"><strong>PRICE: LONG TIME WEANED </strong></span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">300-400</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$155.00</span></td>\n<td style=\"width: 129px; height: 23px;\">$157.00-$175.00</td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">400-500</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$155.50</span></td>\n<td style=\"width: 129px; height: 23px;\">$150.00-$175.00</td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">500-600</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$146.50</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">600-700</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">$110.50-$125.00</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">$133.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">700-800</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$134.25</span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">800-900</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">$100.00-$105.75</span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">900-1000</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 237px;\" width=\"491\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 176px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE: UNWEANED, SHORT WEANED, &amp; NEW CROP</strong></span></td>\n<td style=\"width: 136px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE: LONG TIME WEANED</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$150.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">$134.00-$141.00</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$141.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">$100.00-$130.75</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$135.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">$110.00-$116.00</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$117.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 176px;\">$94.50-$101.00</td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$101.00-$110.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$94.00-$105.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 176px;\">N/A</td>\n<td style=\"width: 136px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding Cows</td>\n<td style=\"width: 156.5px;\">$52.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yielding Cows</td>\n<td style=\"width: 156.5px;\">$43.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding Cows</td>\n<td style=\"width: 156.5px;\">$30.00 - $42.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Slaughter Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $89.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$150.00 - $170.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px; text-align: center;\">$113.00 - $125.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$85.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">537lbs @ $143.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">587lbs @ $139.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">505lbs @ $170.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">625lbs @ $150.10</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">694lbs @ $139.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">729lbs @ $134.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 7th, 2020 - Market Report','','inherit','closed','closed','','1609-revision-v1','','','2020-04-08 16:05:20','2020-04-08 16:05:20','',1609,'https://kingsvillelivestock.com/2020/04/08/1609-revision-v1/',0,'revision','',0),(1612,2,'2020-04-08 16:05:20','2020-04-08 16:05:20','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>April 7th, 2020</strong> 1295 hd; last week\'s sale 2737 hd; year ago 1512 hd. Feeder cattle under 700lbs sold $5-7 higher on long weaned yearlings. Light test on 700-900lb feeder cattle. Cows and bulls sold $3-6 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 291px;\" width=\"465\">\n<tbody>\n<tr style=\"height: 80px;\">\n<td style=\"width: 146px; text-align: center; height: 80px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 168px; text-align: center; height: 80px;\"><span style=\"text-decoration: underline;\"><strong>PRICE: UNWEANED, SHORT WEANED, &amp; NEW CROP</strong></span></td>\n<td style=\"width: 129px; text-align: center; height: 80px;\"><span style=\"text-decoration: underline;\"><strong>PRICE: LONG TIME WEANED </strong></span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">300-400</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$155.00</span></td>\n<td style=\"width: 129px; height: 23px;\">$157.00-$175.00</td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">400-500</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$155.50</span></td>\n<td style=\"width: 129px; height: 23px;\">$150.00-$175.00</td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">500-600</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$146.50</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">600-700</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">$110.50-$125.00</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">$133.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">700-800</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$134.25</span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">800-900</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">$100.00-$105.75</span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">900-1000</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 237px;\" width=\"491\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 176px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE: UNWEANED, SHORT WEANED, &amp; NEW CROP</strong></span></td>\n<td style=\"width: 136px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE: LONG TIME WEANED</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$150.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">$134.00-$141.00</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$141.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">$100.00-$130.75</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$135.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">$110.00-$116.00</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$117.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 176px;\">$94.50-$101.00</td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$101.00-$110.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$94.00-$105.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 176px;\">N/A</td>\n<td style=\"width: 136px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding Cows</td>\n<td style=\"width: 156.5px;\">$52.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yielding Cows</td>\n<td style=\"width: 156.5px;\">$43.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding Cows</td>\n<td style=\"width: 156.5px;\">$30.00 - $42.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Slaughter Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $89.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$150.00 - $170.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px; text-align: center;\">$113.00 - $125.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$85.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">537lbs @ $143.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">587lbs @ $139.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">505lbs @ $170.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">625lbs @ $150.10</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">694lbs @ $139.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">729lbs @ $134.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 31st, 2020 - Market Report','','inherit','closed','closed','','1609-revision-v1','','','2020-04-08 16:05:20','2020-04-08 16:05:20','',1609,'https://kingsvillelivestock.com/2020/04/08/1609-revision-v1/',0,'revision','',0),(1613,2,'2020-04-08 16:05:23','2020-04-08 16:05:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>April 7th, 2020</strong> 1295 hd; last week\'s sale 2737 hd; year ago 1512 hd. Feeder cattle under 700lbs sold $5-7 higher on long weaned yearlings. Light test on 700-900lb feeder cattle. Cows and bulls sold $3-6 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 291px;\" width=\"465\">\n<tbody>\n<tr style=\"height: 80px;\">\n<td style=\"width: 146px; text-align: center; height: 80px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 168px; text-align: center; height: 80px;\"><span style=\"text-decoration: underline;\"><strong>PRICE: UNWEANED, SHORT WEANED, &amp; NEW CROP</strong></span></td>\n<td style=\"width: 129px; text-align: center; height: 80px;\"><span style=\"text-decoration: underline;\"><strong>PRICE: LONG TIME WEANED </strong></span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">300-400</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$155.00</span></td>\n<td style=\"width: 129px; height: 23px;\">$157.00-$175.00</td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">400-500</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$155.50</span></td>\n<td style=\"width: 129px; height: 23px;\">$150.00-$175.00</td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">500-600</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$146.50</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">600-700</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">$110.50-$125.00</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">$133.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">700-800</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$134.25</span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">800-900</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">$100.00-$105.75</span></td>\n</tr>\n<tr style=\"text-align: center; height: 23px;\">\n<td style=\"width: 146px; height: 23px;\">900-1000</td>\n<td style=\"width: 168px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n<td style=\"width: 129px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 237px;\" width=\"491\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 176px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE: UNWEANED, SHORT WEANED, &amp; NEW CROP</strong></span></td>\n<td style=\"width: 136px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE: LONG TIME WEANED</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$150.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">$134.00-$141.00</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$141.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">$100.00-$130.75</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$135.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">$110.00-$116.00</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$117.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 176px;\">$94.50-$101.00</td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$101.00-$110.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 176px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n<td style=\"width: 136px;\"><span style=\"font-weight: 400;\">$94.00-$105.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 176px;\">N/A</td>\n<td style=\"width: 136px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding Cows</td>\n<td style=\"width: 156.5px;\">$52.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yielding Cows</td>\n<td style=\"width: 156.5px;\">$43.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding Cows</td>\n<td style=\"width: 156.5px;\">$30.00 - $42.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Slaughter Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $89.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$150.00 - $170.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700</td>\n<td style=\"width: 156.5px; text-align: center;\">$113.00 - $125.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$85.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">537lbs @ $143.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">587lbs @ $139.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">505lbs @ $170.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">625lbs @ $150.10</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">694lbs @ $139.75</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">729lbs @ $134.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 7th, 2020 - Market Report','','inherit','closed','closed','','1609-revision-v1','','','2020-04-08 16:05:23','2020-04-08 16:05:23','',1609,'https://kingsvillelivestock.com/2020/04/08/1609-revision-v1/',0,'revision','',0),(1622,2,'2020-04-13 18:50:15','2020-04-13 18:50:15','','Tuesday, April 14th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-april-14th-feeder-cattle-consignments','','','2020-04-13 18:50:15','2020-04-13 18:50:15','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/04/Tuesday-April-14th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1625,2,'2020-04-15 14:51:10','2020-04-15 14:51:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>April 14th, 2020</strong> 836 hd; last week\'s sale 1295 hd; year ago 2976 hd. Compared to last week feeder cattle sold steady. Cows and bulls sold $6-10 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$171.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$122.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$92.00-$102.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$102.00-$132.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$95.00-$112.50 Replacements Hfrs: $117.50</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$83.50-$98.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$79.00-$90.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $94.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$140.00 - $181.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$106.50 - $137.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$80.00 - $85.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">514lbs @ $139.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">621lbs @ $129.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">ReplacementsÂ </td>\n<td style=\"width: 156.5px;\">757lbs @ $117.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">460lbs @ $171.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">509lbs @ $160.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">861lbs @ $118.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">864lbs @ $118.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 14th, 2020 - Market Report','','publish','closed','open','','april-14th-2020-market-report','','','2020-04-15 14:51:14','2020-04-15 14:51:14','',0,'https://kingsvillelivestock.com/?p=1625',0,'post','',0),(1627,2,'2020-04-15 14:51:10','2020-04-15 14:51:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>April 14th, 2020</strong> 836 hd; last week\'s sale 1295 hd; year ago 2976 hd. Compared to last week feeder cattle sold steady. Cows and bulls sold $6-10 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$171.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$122.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$92.00-$102.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$102.00-$132.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$95.00-$112.50 Replacements Hfrs: $117.50</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$83.50-$98.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$79.00-$90.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $94.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$140.00 - $181.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$106.50 - $137.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$80.00 - $85.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">514lbs @ $139.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">621lbs @ $129.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">ReplacementsÂ </td>\n<td style=\"width: 156.5px;\">757lbs @ $117.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">460lbs @ $171.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">509lbs @ $160.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">861lbs @ $118.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">864lbs @ $118.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 14th, 2020 - Market Report','','inherit','closed','closed','','1625-revision-v1','','','2020-04-15 14:51:10','2020-04-15 14:51:10','',1625,'https://kingsvillelivestock.com/2020/04/15/1625-revision-v1/',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (1628,2,'2020-04-15 14:51:10','2020-04-15 14:51:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>April 14th, 2020</strong> 836 hd; last week\'s sale 1295 hd; year ago 2976 hd. Compared to last week feeder cattle sold steady. Cows and bulls sold $6-10 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$171.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$122.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$92.00-$102.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$102.00-$132.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$95.00-$112.50 Replacements Hfrs: $117.50</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$83.50-$98.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$79.00-$90.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $94.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$140.00 - $181.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$106.50 - $137.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$80.00 - $85.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">514lbs @ $139.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">621lbs @ $129.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">ReplacementsÂ </td>\n<td style=\"width: 156.5px;\">757lbs @ $117.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">460lbs @ $171.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">509lbs @ $160.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">861lbs @ $118.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">864lbs @ $118.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 31st, 2020 - Market Report','','inherit','closed','closed','','1625-revision-v1','','','2020-04-15 14:51:10','2020-04-15 14:51:10','',1625,'https://kingsvillelivestock.com/2020/04/15/1625-revision-v1/',0,'revision','',0),(1629,2,'2020-04-15 14:51:14','2020-04-15 14:51:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>April 14th, 2020</strong> 836 hd; last week\'s sale 1295 hd; year ago 2976 hd. Compared to last week feeder cattle sold steady. Cows and bulls sold $6-10 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$171.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$122.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$92.00-$102.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$102.00-$132.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$95.00-$112.50 Replacements Hfrs: $117.50</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$83.50-$98.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$79.00-$90.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $94.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$140.00 - $181.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$106.50 - $137.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$80.00 - $85.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">514lbs @ $139.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">621lbs @ $129.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">ReplacementsÂ </td>\n<td style=\"width: 156.5px;\">757lbs @ $117.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">460lbs @ $171.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">509lbs @ $160.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">861lbs @ $118.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">864lbs @ $118.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 14th, 2020 - Market Report','','inherit','closed','closed','','1625-revision-v1','','','2020-04-15 14:51:14','2020-04-15 14:51:14','',1625,'https://kingsvillelivestock.com/2020/04/15/1625-revision-v1/',0,'revision','',0),(1633,2,'2020-04-20 18:21:07','2020-04-20 18:21:07','','Tuesday, April 21st Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-april-21st-feeder-cattle-consignments','','','2020-04-20 18:21:07','2020-04-20 18:21:07','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/04/Tuesday-April-21st-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1640,2,'2020-04-22 15:17:22','2020-04-22 15:17:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.3\" hover_enabled=\"0\"]<p><strong>April 21st, 2020</strong> 2121 hd; last week\'s sale 836 hd; year ago 1718 hd. Feeder steers sold mostly steady. Heifer calves under 525 sold $3-8 higher. Cows and bulls sold steady to $3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.3\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$126.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$104.25-$114.10</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.3\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$127.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$118.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$85.00-$101.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$89.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $93.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$140.00 - $185.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$105.00 - $152.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$85.00 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">520lbs @ $152.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">596lbs @ $127.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">779lbs @ $130.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">802lbs @ $126.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">816lbs @ $124.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">866lbs @ $118.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">922lbs @ $114.10</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 21st, 2020 - Market Report','','publish','closed','open','','april-21st-2020-market-report-2','','','2020-04-22 15:17:25','2020-04-22 15:17:25','',0,'https://kingsvillelivestock.com/?p=1640',0,'post','',0),(1642,2,'2020-04-22 14:09:53','2020-04-22 14:09:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>April 21st, 2020</strong> 2121 hd; last week\'s sale 836 hd; year ago 1718 hd. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$171.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$122.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$92.00-$102.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$102.00-$132.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$95.00-$112.50 Replacements Hfrs: $117.50</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$83.50-$98.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$79.00-$90.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $94.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$140.00 - $181.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$106.50 - $137.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$80.00 - $85.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">514lbs @ $139.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">621lbs @ $129.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">ReplacementsÂ </td>\n<td style=\"width: 156.5px;\">757lbs @ $117.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">460lbs @ $171.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">509lbs @ $160.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">861lbs @ $118.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">864lbs @ $118.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 21st, 2020 - Market Report','','inherit','closed','closed','','1640-revision-v1','','','2020-04-22 14:09:53','2020-04-22 14:09:53','',1640,'https://kingsvillelivestock.com/2020/04/22/1640-revision-v1/',0,'revision','',0),(1643,2,'2020-04-22 14:09:53','2020-04-22 14:09:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>April 21st, 2020</strong> 2121 hd; last week\'s sale 836 hd; year ago 1718 hd. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$171.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$122.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$92.00-$102.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$102.00-$132.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$95.00-$112.50 Replacements Hfrs: $117.50</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$83.50-$98.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$79.00-$90.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $94.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$140.00 - $181.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$106.50 - $137.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$80.00 - $85.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">514lbs @ $139.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">621lbs @ $129.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">ReplacementsÂ </td>\n<td style=\"width: 156.5px;\">757lbs @ $117.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">460lbs @ $171.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">509lbs @ $160.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">861lbs @ $118.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">864lbs @ $118.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 14th, 2020 - Market Report','','inherit','closed','closed','','1640-revision-v1','','','2020-04-22 14:09:53','2020-04-22 14:09:53','',1640,'https://kingsvillelivestock.com/2020/04/22/1640-revision-v1/',0,'revision','',0),(1644,2,'2020-04-22 14:09:56','2020-04-22 14:09:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<p><strong>April 21st, 2020</strong> 2121 hd; last week\'s sale 836 hd; year ago 1718 hd. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$171.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$122.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$92.00-$102.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$102.00-$132.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\">\n<p><span style=\"font-weight: 400;\">$95.00-$112.50 Replacements Hfrs: $117.50</span></p>\n</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$83.50-$98.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$79.00-$90.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $94.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$140.00 - $181.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$106.50 - $137.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$80.00 - $85.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.1\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">514lbs @ $139.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">621lbs @ $129.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">ReplacementsÂ </td>\n<td style=\"width: 156.5px;\">757lbs @ $117.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">460lbs @ $171.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">509lbs @ $160.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">861lbs @ $118.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">864lbs @ $118.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 21st, 2020 - Market Report','','inherit','closed','closed','','1640-revision-v1','','','2020-04-22 14:09:56','2020-04-22 14:09:56','',1640,'https://kingsvillelivestock.com/2020/04/22/1640-revision-v1/',0,'revision','',0),(1648,2,'2020-04-22 15:17:22','2020-04-22 15:17:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.3\" hover_enabled=\"0\"]<p><strong>April 21st, 2020</strong> 2121 hd; last week\'s sale 836 hd; year ago 1718 hd. Feeder steers sold mostly steady. Heifer calves under 525 sold $3-8 higher. Cows and bulls sold steady to $3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.3\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$126.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$104.25-$114.10</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.3\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$127.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$118.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$85.00-$101.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$89.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $93.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$140.00 - $185.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$105.00 - $152.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$85.00 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">520lbs @ $152.25</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">596lbs @ $127.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">779lbs @ $130.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">802lbs @ $126.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">816lbs @ $124.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">866lbs @ $118.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">922lbs @ $114.10</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 21st, 2020 - Market Report','','inherit','closed','closed','','1640-revision-v1','','','2020-04-22 15:17:22','2020-04-22 15:17:22','',1640,'https://kingsvillelivestock.com/2020/04/22/1640-revision-v1/',0,'revision','',0),(1656,2,'2020-04-27 18:05:49','2020-04-27 18:05:49','','Tuesday, April 28th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-april-28th-feeder-cattle-consignments','','','2020-04-27 18:05:49','2020-04-27 18:05:49','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/04/Tuesday-April-28th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1667,2,'2020-04-29 15:10:08','2020-04-29 15:10:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>April 28th, 2020</strong> 2745 hd; last week\'s sale 2121 hd; year ago 2305 hd. Steers under 700lbs sold up to $7 higher. Yearling steers sold steady, and heifers sold steady. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$130.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$114.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$114.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$95.00-$110.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$81.00-$90.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$59.00 - $69.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$35.00 - $49.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">High Yield Bulls</td>\n<td style=\"width: 156.5px;\">$79.00 - $99.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield Bulls</td>\n<td style=\"width: 156.5px;\">$50.00-$70.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$130.00 - $168.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$108.00 - $141.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$101.00 - $107.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">600lbs @ $140.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">730lbs @ $114.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">787lbs @ $109.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">788lbs @ $110.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">782lbs @ $124.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">825lbs @ $122.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">844lbs @ $116.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">900lbs @ $114.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">922lbs @ $112.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 28th, 2020 - Market Report','','publish','closed','open','','april-28th-2020-market-report','','','2020-04-29 15:10:11','2020-04-29 15:10:11','',0,'https://kingsvillelivestock.com/?p=1667',0,'post','',0),(1670,2,'2020-04-29 15:10:08','2020-04-29 15:10:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>April 28th, 2020</strong> 2745 hd; last week\'s sale 2121 hd; year ago 2305 hd. Steers under 700lbs sold up to $7 higher. Yearling steers sold steady, and heifers sold steady. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$130.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$114.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$114.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$95.00-$110.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$81.00-$90.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$59.00 - $69.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$35.00 - $49.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">High Yield Bulls</td>\n<td style=\"width: 156.5px;\">$79.00 - $99.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield Bulls</td>\n<td style=\"width: 156.5px;\">$50.00-$70.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$130.00 - $168.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$108.00 - $141.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$101.00 - $107.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">600lbs @ $140.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">730lbs @ $114.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">787lbs @ $109.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">788lbs @ $110.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">782lbs @ $124.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">825lbs @ $122.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">844lbs @ $116.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">900lbs @ $114.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">922lbs @ $112.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 28th, 2020 - Market Report','','inherit','closed','closed','','1667-revision-v1','','','2020-04-29 15:10:08','2020-04-29 15:10:08','',1667,'https://kingsvillelivestock.com/2020/04/29/1667-revision-v1/',0,'revision','',0),(1672,2,'2020-04-29 17:20:51','2020-04-29 17:20:51','','Cow Sale Pic','','inherit','closed','closed','','cow-sale-pic','','','2020-04-29 17:20:51','2020-04-29 17:20:51','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/04/Cow-Sale-Pic.docx',0,'attachment','application/vnd.openxmlformats-officedocument.wordprocessingml.document',0),(1674,2,'2020-04-29 17:24:34','2020-04-29 17:24:34','','Cow Sale Pic','','inherit','closed','closed','','cow-sale-pic-2','','','2020-04-29 17:24:34','2020-04-29 17:24:34','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/04/Cow-Sale-Pic-1.docx',0,'attachment','application/vnd.openxmlformats-officedocument.wordprocessingml.document',0),(1675,2,'2020-04-29 17:25:39','2020-04-29 17:25:39','','Cow Sale Pic','','inherit','closed','closed','','cow-sale-pic-3','','','2020-04-29 17:25:39','2020-04-29 17:25:39','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/04/Cow-Sale-Pic-2.docx',0,'attachment','application/vnd.openxmlformats-officedocument.wordprocessingml.document',0),(1676,2,'2020-04-29 17:25:52','2020-04-29 17:25:52','','2020 sms fall calving flyer','','inherit','closed','closed','','2020-sms-fall-calving-flyer','','','2020-04-29 17:25:52','2020-04-29 17:25:52','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/04/2020-sms-fall-calving-flyer.pdf',0,'attachment','application/pdf',0),(1677,2,'2020-04-29 17:26:37','2020-04-29 17:26:37','','2020 sms fall calving flyer','','inherit','closed','closed','','2020-sms-fall-calving-flyer-2','','','2020-04-29 17:26:37','2020-04-29 17:26:37','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/04/2020-sms-fall-calving-flyer-1.pdf',0,'attachment','application/pdf',0),(1681,2,'2020-04-29 17:28:56','2020-04-29 17:28:56','','Show-Me-Select-Fall Calvers','','inherit','closed','closed','','show-me-select-fall-calvers','','','2020-04-29 17:28:56','2020-04-29 17:28:56','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/04/Show-Me-Select-Fall-Calvers.pdf',0,'attachment','application/pdf',0),(1685,2,'2020-04-29 17:31:21','2020-04-29 17:31:21','','Show-Me-Select- Fall Calving Catalog','','inherit','closed','closed','','show-me-select-fall-calving-catalog','','','2020-04-29 17:31:21','2020-04-29 17:31:21','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/04/Show-Me-Select-Fall-Calving-Catalog.pdf',0,'attachment','application/pdf',0),(1690,2,'2020-04-29 18:47:09','2020-04-29 18:47:09','','Memorial Day Sale Flyer 2020','','inherit','closed','closed','','memorial-day-sale-flyer-2020','','','2020-04-29 18:47:09','2020-04-29 18:47:09','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/04/Memorial-Day-Sale-Flyer-2020.pdf',0,'attachment','application/pdf',0),(1692,2,'2020-04-29 18:49:00','2020-04-29 18:49:00','','Memorial Day Sale Flyer 2020','','inherit','closed','closed','','memorial-day-sale-flyer-2020-2','','','2020-04-29 18:49:00','2020-04-29 18:49:00','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/04/Memorial-Day-Sale-Flyer-2020-1.pdf',0,'attachment','application/pdf',0),(1700,2,'2020-05-04 19:36:04','2020-05-04 19:36:04','','Tuesday, May 5th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-may-5th-feeder-cattle-consignments','','','2020-05-04 19:36:04','2020-05-04 19:36:04','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Tuesday-May-5th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1703,2,'2020-05-04 19:37:56','2020-05-04 19:37:56','','Tuesday, May 5th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-may-5th-feeder-cattle-consignments-2','','','2020-05-04 19:37:56','2020-05-04 19:37:56','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Tuesday-May-5th-Feeder-Cattle-Consignments-1.pdf',0,'attachment','application/pdf',0),(1704,2,'2020-05-04 19:38:21','2020-05-04 19:38:21','','Tuesday, May 5th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-may-5th-feeder-cattle-consignments-3','','','2020-05-04 19:38:21','2020-05-04 19:38:21','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Tuesday-May-5th-Feeder-Cattle-Consignments-2.pdf',0,'attachment','application/pdf',0),(1705,2,'2020-05-04 19:38:37','2020-05-04 19:38:37','','Tuesday, May 5th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-may-5th-feeder-cattle-consignments-4','','','2020-05-04 19:38:37','2020-05-04 19:38:37','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Tuesday-May-5th-Feeder-Cattle-Consignments-3.pdf',0,'attachment','application/pdf',0),(1706,2,'2020-05-04 19:38:54','2020-05-04 19:38:54','','Tuesday, May 5th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-may-5th-feeder-cattle-consignments-5','','','2020-05-04 19:38:54','2020-05-04 19:38:54','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Tuesday-May-5th-Feeder-Cattle-Consignments-4.pdf',0,'attachment','application/pdf',0),(1710,2,'2020-05-04 19:40:23','2020-05-04 19:40:23','','Tuesday, May 5th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-may-5th-feeder-cattle-consignments-6','','','2020-05-04 19:40:23','2020-05-04 19:40:23','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Tuesday-May-5th-Feeder-Cattle-Consignments-5.pdf',0,'attachment','application/pdf',0),(1711,2,'2020-05-04 19:41:03','2020-05-04 19:41:03','','Tuesday, May 5th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-may-5th-feeder-cattle-consignments-7','','','2020-05-04 19:41:03','2020-05-04 19:41:03','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Tuesday-May-5th-Feeder-Cattle-Consignments-6.pdf',0,'attachment','application/pdf',0),(1716,2,'2020-05-04 19:48:16','2020-05-04 19:48:16','','Tuesday, May 5th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-may-5th-feeder-cattle-consignments-8','','','2020-05-04 19:48:16','2020-05-04 19:48:16','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Tuesday-May-5th-Feeder-Cattle-Consignments-7.pdf',0,'attachment','application/pdf',0),(1717,2,'2020-05-04 19:48:24','2020-05-04 19:48:24','','Tuesday, May 5th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-may-5th-feeder-cattle-consignments-9','','','2020-05-04 19:48:24','2020-05-04 19:48:24','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Tuesday-May-5th-Feeder-Cattle-Consignments-8.pdf',0,'attachment','application/pdf',0),(1725,2,'2020-05-06 15:54:45','2020-05-06 15:54:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>May 5th, 2020</strong> 2147 hd; last week\'s sale 2745 hd; year ago 1535 hd. Steers under 600lbs sold steady to $5 higher. Heifers sold steady to $5 lower. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$139.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$104.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$101.00-$108.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$97-$110.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$94.75-$100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $69.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$49.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$35.00 - $48.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $93.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$140.00 - $187.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$107.00 - $135.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$99.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">574lbs @ $132.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">632lbs @ $134.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">724lbs @ $124.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">709lbs @ $139.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">899lbs @ $114.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 5th, 2020 - Market Report','','publish','closed','open','','may-5th-2020-market-report-2','','','2020-05-06 15:54:49','2020-05-06 15:54:49','',0,'https://kingsvillelivestock.com/?p=1725',0,'post','',0),(1727,2,'2020-05-06 14:22:09','2020-05-06 14:22:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>May 5th, 2020</strong> 2147 hd; last week\'s sale 2745 hd; year ago 2305 hd.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$130.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$114.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$114.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$95.00-$110.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$81.00-$90.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$59.00 - $69.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$35.00 - $49.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">High Yield Bulls</td>\n<td style=\"width: 156.5px;\">$79.00 - $99.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield Bulls</td>\n<td style=\"width: 156.5px;\">$50.00-$70.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$130.00 - $168.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$108.00 - $141.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$101.00 - $107.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">600lbs @ $140.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">730lbs @ $114.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">787lbs @ $109.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">788lbs @ $110.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">782lbs @ $124.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">825lbs @ $122.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">844lbs @ $116.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">900lbs @ $114.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">922lbs @ $112.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 5th, 2020 - Market Report','','inherit','closed','closed','','1725-revision-v1','','','2020-05-06 14:22:09','2020-05-06 14:22:09','',1725,'https://kingsvillelivestock.com/2020/05/06/1725-revision-v1/',0,'revision','',0),(1728,2,'2020-05-06 14:22:09','2020-05-06 14:22:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>May 5th, 2020</strong> 2147 hd; last week\'s sale 2745 hd; year ago 2305 hd.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$130.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$114.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$114.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$95.00-$110.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$81.00-$90.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$59.00 - $69.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$35.00 - $49.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">High Yield Bulls</td>\n<td style=\"width: 156.5px;\">$79.00 - $99.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield Bulls</td>\n<td style=\"width: 156.5px;\">$50.00-$70.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$130.00 - $168.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$108.00 - $141.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$101.00 - $107.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">600lbs @ $140.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">730lbs @ $114.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">787lbs @ $109.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">788lbs @ $110.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">782lbs @ $124.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">825lbs @ $122.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">844lbs @ $116.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">900lbs @ $114.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">922lbs @ $112.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 28th, 2020 - Market Report','','inherit','closed','closed','','1725-revision-v1','','','2020-05-06 14:22:09','2020-05-06 14:22:09','',1725,'https://kingsvillelivestock.com/2020/05/06/1725-revision-v1/',0,'revision','',0),(1729,2,'2020-05-06 14:22:12','2020-05-06 14:22:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>May 5th, 2020</strong> 2147 hd; last week\'s sale 2745 hd; year ago 2305 hd.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$130.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$114.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$114.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$95.00-$110.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$81.00-$90.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$59.00 - $69.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$35.00 - $49.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">High Yield Bulls</td>\n<td style=\"width: 156.5px;\">$79.00 - $99.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield Bulls</td>\n<td style=\"width: 156.5px;\">$50.00-$70.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$130.00 - $168.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$108.00 - $141.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$101.00 - $107.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">600lbs @ $140.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">730lbs @ $114.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">787lbs @ $109.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">788lbs @ $110.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">782lbs @ $124.85</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">825lbs @ $122.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">844lbs @ $116.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">900lbs @ $114.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">922lbs @ $112.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 5th, 2020 - Market Report','','inherit','closed','closed','','1725-revision-v1','','','2020-05-06 14:22:12','2020-05-06 14:22:12','',1725,'https://kingsvillelivestock.com/2020/05/06/1725-revision-v1/',0,'revision','',0),(1732,2,'2020-05-06 15:54:45','2020-05-06 15:54:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>May 5th, 2020</strong> 2147 hd; last week\'s sale 2745 hd; year ago 1535 hd. Steers under 600lbs sold steady to $5 higher. Heifers sold steady to $5 lower. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$139.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$104.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$101.00-$108.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$97-$110.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$94.75-$100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $69.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$49.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$35.00 - $48.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $93.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$140.00 - $187.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$107.00 - $135.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$99.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">574lbs @ $132.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">632lbs @ $134.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">724lbs @ $124.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">709lbs @ $139.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">899lbs @ $114.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 5th, 2020 - Market Report','','inherit','closed','closed','','1725-revision-v1','','','2020-05-06 15:54:45','2020-05-06 15:54:45','',1725,'https://kingsvillelivestock.com/2020/05/06/1725-revision-v1/',0,'revision','',0),(1734,2,'2020-05-06 16:33:31','2020-05-06 16:33:31','','IMG_1115','','inherit','closed','closed','','img_1115','','','2020-05-06 16:33:31','2020-05-06 16:33:31','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1115.jpg',0,'attachment','image/jpeg',0),(1735,2,'2020-05-06 16:33:32','2020-05-06 16:33:32','','IMG_1116','','inherit','closed','closed','','img_1116','','','2020-05-06 16:33:32','2020-05-06 16:33:32','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1116.jpg',0,'attachment','image/jpeg',0),(1736,2,'2020-05-06 16:33:33','2020-05-06 16:33:33','','IMG_1117','','inherit','closed','closed','','img_1117','','','2020-05-06 16:33:33','2020-05-06 16:33:33','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1117.jpg',0,'attachment','image/jpeg',0),(1737,2,'2020-05-06 16:33:34','2020-05-06 16:33:34','','IMG_1118','','inherit','closed','closed','','img_1118','','','2020-05-06 16:33:34','2020-05-06 16:33:34','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1118.jpg',0,'attachment','image/jpeg',0),(1738,2,'2020-05-06 16:33:35','2020-05-06 16:33:35','','IMG_1119','','inherit','closed','closed','','img_1119','','','2020-05-06 16:33:35','2020-05-06 16:33:35','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1119.jpg',0,'attachment','image/jpeg',0),(1739,2,'2020-05-06 16:33:36','2020-05-06 16:33:36','','IMG_1120','','inherit','closed','closed','','img_1120','','','2020-05-06 16:33:36','2020-05-06 16:33:36','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1120.jpg',0,'attachment','image/jpeg',0),(1740,2,'2020-05-06 16:33:37','2020-05-06 16:33:37','','IMG_1121','','inherit','closed','closed','','img_1121','','','2020-05-06 16:33:37','2020-05-06 16:33:37','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1121.jpg',0,'attachment','image/jpeg',0),(1741,2,'2020-05-06 16:33:38','2020-05-06 16:33:38','','IMG_1122','','inherit','closed','closed','','img_1122','','','2020-05-06 16:33:38','2020-05-06 16:33:38','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1122.jpg',0,'attachment','image/jpeg',0),(1742,2,'2020-05-06 16:33:40','2020-05-06 16:33:40','','IMG_1123','','inherit','closed','closed','','img_1123','','','2020-05-06 16:33:40','2020-05-06 16:33:40','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1123.jpg',0,'attachment','image/jpeg',0),(1743,2,'2020-05-06 16:33:40','2020-05-06 16:33:40','','IMG_1124','','inherit','closed','closed','','img_1124','','','2020-05-06 16:33:40','2020-05-06 16:33:40','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1124.jpg',0,'attachment','image/jpeg',0),(1744,2,'2020-05-06 16:33:42','2020-05-06 16:33:42','','IMG_1125','','inherit','closed','closed','','img_1125','','','2020-05-06 16:33:42','2020-05-06 16:33:42','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1125.jpg',0,'attachment','image/jpeg',0),(1745,2,'2020-05-06 16:33:43','2020-05-06 16:33:43','','IMG_1126','','inherit','closed','closed','','img_1126','','','2020-05-06 16:33:43','2020-05-06 16:33:43','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1126.jpg',0,'attachment','image/jpeg',0),(1746,2,'2020-05-06 16:33:44','2020-05-06 16:33:44','','IMG_1127','','inherit','closed','closed','','img_1127','','','2020-05-06 16:33:44','2020-05-06 16:33:44','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1127.jpg',0,'attachment','image/jpeg',0),(1747,2,'2020-05-06 16:33:44','2020-05-06 16:33:44','','IMG_1128(1)','','inherit','closed','closed','','img_11281','','','2020-05-06 16:33:44','2020-05-06 16:33:44','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_11281.jpg',0,'attachment','image/jpeg',0),(1748,2,'2020-05-06 16:33:45','2020-05-06 16:33:45','','IMG_1128','','inherit','closed','closed','','img_1128','','','2020-05-06 16:33:45','2020-05-06 16:33:45','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1128.jpg',0,'attachment','image/jpeg',0),(1749,2,'2020-05-06 16:33:46','2020-05-06 16:33:46','','IMG_1129','','inherit','closed','closed','','img_1129','','','2020-05-06 16:33:46','2020-05-06 16:33:46','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1129.jpg',0,'attachment','image/jpeg',0),(1750,2,'2020-05-06 16:33:47','2020-05-06 16:33:47','','IMG_1130','','inherit','closed','closed','','img_1130','','','2020-05-06 16:33:47','2020-05-06 16:33:47','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1130.jpg',0,'attachment','image/jpeg',0),(1751,2,'2020-05-06 16:33:48','2020-05-06 16:33:48','','IMG_1131','','inherit','closed','closed','','img_1131','','','2020-05-06 16:33:48','2020-05-06 16:33:48','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1131.jpg',0,'attachment','image/jpeg',0),(1752,2,'2020-05-06 16:33:49','2020-05-06 16:33:49','','IMG_1132','','inherit','closed','closed','','img_1132','','','2020-05-06 16:33:49','2020-05-06 16:33:49','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1132.jpg',0,'attachment','image/jpeg',0),(1753,2,'2020-05-06 16:33:51','2020-05-06 16:33:51','','IMG_1133','','inherit','closed','closed','','img_1133','','','2020-05-06 16:33:51','2020-05-06 16:33:51','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1133.jpg',0,'attachment','image/jpeg',0),(1754,2,'2020-05-06 16:33:52','2020-05-06 16:33:52','','IMG_1134','','inherit','closed','closed','','img_1134','','','2020-05-06 16:33:52','2020-05-06 16:33:52','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1134.jpg',0,'attachment','image/jpeg',0),(1755,2,'2020-05-06 16:33:53','2020-05-06 16:33:53','','IMG_1135','','inherit','closed','closed','','img_1135','','','2020-05-06 16:33:53','2020-05-06 16:33:53','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1135.jpg',0,'attachment','image/jpeg',0),(1756,2,'2020-05-06 16:33:54','2020-05-06 16:33:54','','IMG_1136','','inherit','closed','closed','','img_1136','','','2020-05-06 16:33:54','2020-05-06 16:33:54','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1136.jpg',0,'attachment','image/jpeg',0),(1757,2,'2020-05-06 16:33:55','2020-05-06 16:33:55','','IMG_1137','','inherit','closed','closed','','img_1137','','','2020-05-06 16:33:55','2020-05-06 16:33:55','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1137.jpg',0,'attachment','image/jpeg',0),(1758,2,'2020-05-06 16:33:56','2020-05-06 16:33:56','','IMG_1138','','inherit','closed','closed','','img_1138','','','2020-05-06 16:33:56','2020-05-06 16:33:56','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1138.jpg',0,'attachment','image/jpeg',0),(1759,2,'2020-05-06 16:33:57','2020-05-06 16:33:57','','IMG_1139','','inherit','closed','closed','','img_1139','','','2020-05-06 16:33:57','2020-05-06 16:33:57','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1139.jpg',0,'attachment','image/jpeg',0),(1760,2,'2020-05-06 16:33:59','2020-05-06 16:33:59','','IMG_1140','','inherit','closed','closed','','img_1140','','','2020-05-06 16:33:59','2020-05-06 16:33:59','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1140.jpg',0,'attachment','image/jpeg',0),(1761,2,'2020-05-06 16:33:59','2020-05-06 16:33:59','','IMG_1141','','inherit','closed','closed','','img_1141','','','2020-05-06 16:33:59','2020-05-06 16:33:59','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1141.jpg',0,'attachment','image/jpeg',0),(1762,2,'2020-05-06 16:34:00','2020-05-06 16:34:00','','IMG_1142','','inherit','closed','closed','','img_1142','','','2020-05-06 16:34:00','2020-05-06 16:34:00','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1142.jpg',0,'attachment','image/jpeg',0),(1763,2,'2020-05-06 16:34:01','2020-05-06 16:34:01','','IMG_1143','','inherit','closed','closed','','img_1143','','','2020-05-06 16:34:01','2020-05-06 16:34:01','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1143.jpg',0,'attachment','image/jpeg',0),(1764,2,'2020-05-06 16:34:02','2020-05-06 16:34:02','','IMG_1144','','inherit','closed','closed','','img_1144','','','2020-05-06 16:34:02','2020-05-06 16:34:02','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1144.jpg',0,'attachment','image/jpeg',0),(1765,2,'2020-05-06 16:34:04','2020-05-06 16:34:04','','IMG_1145','','inherit','closed','closed','','img_1145','','','2020-05-06 16:34:04','2020-05-06 16:34:04','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1145.jpg',0,'attachment','image/jpeg',0),(1766,2,'2020-05-06 16:34:05','2020-05-06 16:34:05','','IMG_1146','','inherit','closed','closed','','img_1146','','','2020-05-06 16:34:05','2020-05-06 16:34:05','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1146.jpg',0,'attachment','image/jpeg',0),(1767,2,'2020-05-06 16:34:06','2020-05-06 16:34:06','','IMG_1147','','inherit','closed','closed','','img_1147','','','2020-05-06 16:34:06','2020-05-06 16:34:06','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1147.jpg',0,'attachment','image/jpeg',0),(1768,2,'2020-05-06 16:34:07','2020-05-06 16:34:07','','IMG_1148','','inherit','closed','closed','','img_1148','','','2020-05-06 16:34:07','2020-05-06 16:34:07','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1148.jpg',0,'attachment','image/jpeg',0),(1769,2,'2020-05-06 16:34:08','2020-05-06 16:34:08','','IMG_1149','','inherit','closed','closed','','img_1149','','','2020-05-06 16:34:08','2020-05-06 16:34:08','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1149.jpg',0,'attachment','image/jpeg',0),(1770,2,'2020-05-06 16:34:09','2020-05-06 16:34:09','','IMG_1150','','inherit','closed','closed','','img_1150','','','2020-05-06 16:34:09','2020-05-06 16:34:09','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1150.jpg',0,'attachment','image/jpeg',0),(1771,2,'2020-05-06 16:34:10','2020-05-06 16:34:10','','IMG_1151','','inherit','closed','closed','','img_1151','','','2020-05-06 16:34:10','2020-05-06 16:34:10','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1151.jpg',0,'attachment','image/jpeg',0),(1772,2,'2020-05-06 16:34:11','2020-05-06 16:34:11','','IMG_1152','','inherit','closed','closed','','img_1152','','','2020-05-06 16:34:11','2020-05-06 16:34:11','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1152.jpg',0,'attachment','image/jpeg',0),(1773,2,'2020-05-06 16:34:12','2020-05-06 16:34:12','','IMG_1153','','inherit','closed','closed','','img_1153','','','2020-05-06 16:34:12','2020-05-06 16:34:12','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1153.jpg',0,'attachment','image/jpeg',0),(1774,2,'2020-05-06 16:35:59','2020-05-06 16:35:59','','IMG_1115','','inherit','closed','closed','','img_1115-2','','','2020-05-06 16:35:59','2020-05-06 16:35:59','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1115-1.jpg',0,'attachment','image/jpeg',0),(1775,2,'2020-05-06 16:36:00','2020-05-06 16:36:00','','IMG_1116','','inherit','closed','closed','','img_1116-2','','','2020-05-06 16:36:00','2020-05-06 16:36:00','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1116-1.jpg',0,'attachment','image/jpeg',0),(1776,2,'2020-05-06 16:36:01','2020-05-06 16:36:01','','IMG_1117','','inherit','closed','closed','','img_1117-2','','','2020-05-06 16:36:01','2020-05-06 16:36:01','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1117-1.jpg',0,'attachment','image/jpeg',0),(1777,2,'2020-05-06 16:36:02','2020-05-06 16:36:02','','IMG_1118','','inherit','closed','closed','','img_1118-2','','','2020-05-06 16:36:02','2020-05-06 16:36:02','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1118-1.jpg',0,'attachment','image/jpeg',0),(1778,2,'2020-05-06 16:36:03','2020-05-06 16:36:03','','IMG_1119','','inherit','closed','closed','','img_1119-2','','','2020-05-06 16:36:03','2020-05-06 16:36:03','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1119-1.jpg',0,'attachment','image/jpeg',0),(1779,2,'2020-05-06 16:36:04','2020-05-06 16:36:04','','IMG_1120','','inherit','closed','closed','','img_1120-2','','','2020-05-06 16:36:04','2020-05-06 16:36:04','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1120-1.jpg',0,'attachment','image/jpeg',0),(1780,2,'2020-05-06 16:36:05','2020-05-06 16:36:05','','IMG_1121','','inherit','closed','closed','','img_1121-2','','','2020-05-06 16:36:05','2020-05-06 16:36:05','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1121-1.jpg',0,'attachment','image/jpeg',0),(1781,2,'2020-05-06 16:36:06','2020-05-06 16:36:06','','IMG_1122','','inherit','closed','closed','','img_1122-2','','','2020-05-06 16:36:06','2020-05-06 16:36:06','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1122-1.jpg',0,'attachment','image/jpeg',0),(1782,2,'2020-05-06 16:36:07','2020-05-06 16:36:07','','IMG_1123','','inherit','closed','closed','','img_1123-2','','','2020-05-06 16:36:07','2020-05-06 16:36:07','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1123-1.jpg',0,'attachment','image/jpeg',0),(1783,2,'2020-05-06 16:36:08','2020-05-06 16:36:08','','IMG_1124','','inherit','closed','closed','','img_1124-2','','','2020-05-06 16:36:08','2020-05-06 16:36:08','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1124-1.jpg',0,'attachment','image/jpeg',0),(1784,2,'2020-05-06 16:36:09','2020-05-06 16:36:09','','IMG_1125','','inherit','closed','closed','','img_1125-2','','','2020-05-06 16:36:09','2020-05-06 16:36:09','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1125-1.jpg',0,'attachment','image/jpeg',0),(1785,2,'2020-05-06 16:36:10','2020-05-06 16:36:10','','IMG_1126','','inherit','closed','closed','','img_1126-2','','','2020-05-06 16:36:10','2020-05-06 16:36:10','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1126-1.jpg',0,'attachment','image/jpeg',0),(1786,2,'2020-05-06 16:36:11','2020-05-06 16:36:11','','IMG_1127','','inherit','closed','closed','','img_1127-2','','','2020-05-06 16:36:11','2020-05-06 16:36:11','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1127-1.jpg',0,'attachment','image/jpeg',0),(1787,2,'2020-05-06 16:36:12','2020-05-06 16:36:12','','IMG_1128(1)','','inherit','closed','closed','','img_11281-2','','','2020-05-06 16:36:12','2020-05-06 16:36:12','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_11281-1.jpg',0,'attachment','image/jpeg',0),(1788,2,'2020-05-06 16:36:13','2020-05-06 16:36:13','','IMG_1128','','inherit','closed','closed','','img_1128-2','','','2020-05-06 16:36:13','2020-05-06 16:36:13','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1128-1.jpg',0,'attachment','image/jpeg',0),(1789,2,'2020-05-06 16:36:14','2020-05-06 16:36:14','','IMG_1129','','inherit','closed','closed','','img_1129-2','','','2020-05-06 16:36:14','2020-05-06 16:36:14','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1129-1.jpg',0,'attachment','image/jpeg',0),(1790,2,'2020-05-06 16:36:15','2020-05-06 16:36:15','','IMG_1130','','inherit','closed','closed','','img_1130-2','','','2020-05-06 16:36:15','2020-05-06 16:36:15','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1130-1.jpg',0,'attachment','image/jpeg',0),(1791,2,'2020-05-06 16:36:16','2020-05-06 16:36:16','','IMG_1131','','inherit','closed','closed','','img_1131-2','','','2020-05-06 16:36:16','2020-05-06 16:36:16','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1131-1.jpg',0,'attachment','image/jpeg',0),(1792,2,'2020-05-06 16:36:17','2020-05-06 16:36:17','','IMG_1132','','inherit','closed','closed','','img_1132-2','','','2020-05-06 16:36:17','2020-05-06 16:36:17','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1132-1.jpg',0,'attachment','image/jpeg',0),(1793,2,'2020-05-06 16:36:19','2020-05-06 16:36:19','','IMG_1133','','inherit','closed','closed','','img_1133-2','','','2020-05-06 16:36:19','2020-05-06 16:36:19','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1133-1.jpg',0,'attachment','image/jpeg',0),(1794,2,'2020-05-06 16:36:19','2020-05-06 16:36:19','','IMG_1134','','inherit','closed','closed','','img_1134-2','','','2020-05-06 16:36:19','2020-05-06 16:36:19','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1134-1.jpg',0,'attachment','image/jpeg',0),(1795,2,'2020-05-06 16:36:20','2020-05-06 16:36:20','','IMG_1135','','inherit','closed','closed','','img_1135-2','','','2020-05-06 16:36:20','2020-05-06 16:36:20','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1135-1.jpg',0,'attachment','image/jpeg',0),(1796,2,'2020-05-06 16:36:21','2020-05-06 16:36:21','','IMG_1136','','inherit','closed','closed','','img_1136-2','','','2020-05-06 16:36:21','2020-05-06 16:36:21','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1136-1.jpg',0,'attachment','image/jpeg',0),(1797,2,'2020-05-06 16:36:22','2020-05-06 16:36:22','','IMG_1137','','inherit','closed','closed','','img_1137-2','','','2020-05-06 16:36:22','2020-05-06 16:36:22','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1137-1.jpg',0,'attachment','image/jpeg',0),(1798,2,'2020-05-06 16:36:23','2020-05-06 16:36:23','','IMG_1138','','inherit','closed','closed','','img_1138-2','','','2020-05-06 16:36:23','2020-05-06 16:36:23','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1138-1.jpg',0,'attachment','image/jpeg',0),(1799,2,'2020-05-06 16:36:25','2020-05-06 16:36:25','','IMG_1139','','inherit','closed','closed','','img_1139-2','','','2020-05-06 16:36:25','2020-05-06 16:36:25','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1139-1.jpg',0,'attachment','image/jpeg',0),(1800,2,'2020-05-06 16:36:26','2020-05-06 16:36:26','','IMG_1140','','inherit','closed','closed','','img_1140-2','','','2020-05-06 16:36:26','2020-05-06 16:36:26','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1140-1.jpg',0,'attachment','image/jpeg',0),(1801,2,'2020-05-06 16:36:27','2020-05-06 16:36:27','','IMG_1141','','inherit','closed','closed','','img_1141-2','','','2020-05-06 16:36:27','2020-05-06 16:36:27','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1141-1.jpg',0,'attachment','image/jpeg',0),(1802,2,'2020-05-06 16:36:28','2020-05-06 16:36:28','','IMG_1142','','inherit','closed','closed','','img_1142-2','','','2020-05-06 16:36:28','2020-05-06 16:36:28','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1142-1.jpg',0,'attachment','image/jpeg',0),(1803,2,'2020-05-06 16:36:29','2020-05-06 16:36:29','','IMG_1143','','inherit','closed','closed','','img_1143-2','','','2020-05-06 16:36:29','2020-05-06 16:36:29','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1143-1.jpg',0,'attachment','image/jpeg',0),(1804,2,'2020-05-06 16:36:30','2020-05-06 16:36:30','','IMG_1144','','inherit','closed','closed','','img_1144-2','','','2020-05-06 16:36:30','2020-05-06 16:36:30','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1144-1.jpg',0,'attachment','image/jpeg',0),(1805,2,'2020-05-06 16:36:31','2020-05-06 16:36:31','','IMG_1145','','inherit','closed','closed','','img_1145-2','','','2020-05-06 16:36:31','2020-05-06 16:36:31','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1145-1.jpg',0,'attachment','image/jpeg',0),(1806,2,'2020-05-06 16:36:32','2020-05-06 16:36:32','','IMG_1146','','inherit','closed','closed','','img_1146-2','','','2020-05-06 16:36:32','2020-05-06 16:36:32','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1146-1.jpg',0,'attachment','image/jpeg',0),(1807,2,'2020-05-06 16:36:33','2020-05-06 16:36:33','','IMG_1147','','inherit','closed','closed','','img_1147-2','','','2020-05-06 16:36:33','2020-05-06 16:36:33','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1147-1.jpg',0,'attachment','image/jpeg',0),(1808,2,'2020-05-06 16:36:34','2020-05-06 16:36:34','','IMG_1148','','inherit','closed','closed','','img_1148-2','','','2020-05-06 16:36:34','2020-05-06 16:36:34','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1148-1.jpg',0,'attachment','image/jpeg',0),(1809,2,'2020-05-06 16:36:34','2020-05-06 16:36:34','','IMG_1149','','inherit','closed','closed','','img_1149-2','','','2020-05-06 16:36:34','2020-05-06 16:36:34','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1149-1.jpg',0,'attachment','image/jpeg',0),(1810,2,'2020-05-06 16:36:35','2020-05-06 16:36:35','','IMG_1150','','inherit','closed','closed','','img_1150-2','','','2020-05-06 16:36:35','2020-05-06 16:36:35','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1150-1.jpg',0,'attachment','image/jpeg',0),(1811,2,'2020-05-06 16:36:36','2020-05-06 16:36:36','','IMG_1151','','inherit','closed','closed','','img_1151-2','','','2020-05-06 16:36:36','2020-05-06 16:36:36','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1151-1.jpg',0,'attachment','image/jpeg',0),(1812,2,'2020-05-06 16:36:37','2020-05-06 16:36:37','','IMG_1152','','inherit','closed','closed','','img_1152-2','','','2020-05-06 16:36:37','2020-05-06 16:36:37','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1152-1.jpg',0,'attachment','image/jpeg',0),(1813,2,'2020-05-06 16:36:38','2020-05-06 16:36:38','','IMG_1153','','inherit','closed','closed','','img_1153-2','','','2020-05-06 16:36:38','2020-05-06 16:36:38','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/IMG_1153-1.jpg',0,'attachment','image/jpeg',0),(1816,2,'2020-05-06 19:28:57','2020-05-06 19:28:57','','Memorial Day 2020 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2020-detailed-consignment-list','','','2020-05-06 19:28:57','2020-05-06 19:28:57','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Memorial-Day-2020-Detailed-Consignment-List.pdf',0,'attachment','application/pdf',0),(1820,2,'2020-05-11 15:09:31','2020-05-11 15:09:31','','2020 Memorial Day Sale Flyer','','inherit','closed','closed','','2020-memorial-day-sale-flyer','','','2020-05-11 15:09:31','2020-05-11 15:09:31','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/2020-Memorial-Day-Sale-Flyer.pdf',0,'attachment','application/pdf',0),(1821,2,'2020-05-11 15:09:56','2020-05-11 15:09:56','','Memorial Day 2020 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2020-detailed-consignment-list-2','','','2020-05-11 15:09:56','2020-05-11 15:09:56','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Memorial-Day-2020-Detailed-Consignment-List-1.pdf',0,'attachment','application/pdf',0),(1824,2,'2020-05-11 17:56:51','2020-05-11 17:56:51','','Tuesday, May 12th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-may-12th-feeder-cattle-consignments','','','2020-05-11 17:56:51','2020-05-11 17:56:51','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Tuesday-May-12th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1826,2,'2020-05-11 17:58:41','2020-05-11 17:58:41','','Tuesday, May 12th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-may-12th-feeder-cattle-consignments-2','','','2020-05-11 17:58:41','2020-05-11 17:58:41','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Tuesday-May-12th-Feeder-Cattle-Consignments-1.pdf',0,'attachment','application/pdf',0),(1827,2,'2020-05-11 17:59:52','2020-05-11 17:59:52','','Tuesday, May 12th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-may-12th-feeder-cattle-consignments-3','','','2020-05-11 17:59:52','2020-05-11 17:59:52','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Tuesday-May-12th-Feeder-Cattle-Consignments-2.pdf',0,'attachment','application/pdf',0),(1837,2,'2020-05-13 15:45:29','2020-05-13 15:45:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>May 12th, 2020</strong> 2174 hd; last week\'s sale 2147 hd; year ago 2847 hd. Steer and heifer calves sold mostly steady to $3 higher. Load lots of 700-850lb steers and heifers sold with a sharply higher undertone. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$147.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$146.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$108.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<p><strong><span style=\"text-decoration: underline;\">FatsÂ </span></strong></p>\n<table style=\"height: 63px;\" width=\"243\">\n<tbody>\n<tr>\n<td style=\"width: 113px;\">Fat Cattle</td>\n<td style=\"width: 114px;\">$95.00-$100.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$135.00 - $170.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$120.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$105.00 - $111.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px;\">\n<tbody>\n<tr>\n<td style=\"width: 156px;\">HEIFERS</td>\n<td style=\"width: 180px;\">748lbs @ $125.00 (Black)</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">752lbs @ $117.10 (Colored)</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">STEERS</td>\n<td style=\"width: 180px;\">810lbs @ $139.85</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">818lbs @ $138.85</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">833lbs @ $123.35</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 12th, 2020 - Market Report','','publish','closed','open','','may-12th-2020-market-report','','','2020-05-13 15:47:00','2020-05-13 15:47:00','',0,'https://kingsvillelivestock.com/?p=1837',0,'post','',0),(1838,2,'2020-05-13 14:59:48','2020-05-13 14:59:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>May 12th, 2020</strong> 2174 hd; last week\'s sale 2147 hd; year ago 2847 hd. . Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$139.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$104.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$101.00-$108.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$97-$110.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$94.75-$100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $69.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$49.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$35.00 - $48.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $93.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$140.00 - $187.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$107.00 - $135.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$99.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">574lbs @ $132.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">632lbs @ $134.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">724lbs @ $124.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">709lbs @ $139.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">899lbs @ $114.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 12th, 2020 - Market Report','','inherit','closed','closed','','1837-revision-v1','','','2020-05-13 14:59:48','2020-05-13 14:59:48','',1837,'https://kingsvillelivestock.com/2020/05/13/1837-revision-v1/',0,'revision','',0),(1839,2,'2020-05-13 14:59:48','2020-05-13 14:59:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>May 12th, 2020</strong> 2174 hd; last week\'s sale 2147 hd; year ago 2847 hd. . Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$139.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$104.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$101.00-$108.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$97-$110.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$94.75-$100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $69.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$49.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$35.00 - $48.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $93.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$140.00 - $187.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$107.00 - $135.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$99.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">574lbs @ $132.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">632lbs @ $134.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">724lbs @ $124.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">709lbs @ $139.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">899lbs @ $114.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 5th, 2020 - Market Report','','inherit','closed','closed','','1837-revision-v1','','','2020-05-13 14:59:48','2020-05-13 14:59:48','',1837,'https://kingsvillelivestock.com/2020/05/13/1837-revision-v1/',0,'revision','',0),(1840,2,'2020-05-13 14:59:51','2020-05-13 14:59:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>May 12th, 2020</strong> 2174 hd; last week\'s sale 2147 hd; year ago 2847 hd. . Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$139.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$104.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$101.00-$108.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$97-$110.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$94.75-$100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $69.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$49.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$35.00 - $48.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $93.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$140.00 - $187.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$107.00 - $135.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$99.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">HEIFERS</td>\n<td style=\"width: 156.5px;\">574lbs @ $132.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">632lbs @ $134.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">724lbs @ $124.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">STEERS</td>\n<td style=\"width: 156.5px;\">709lbs @ $139.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Â </td>\n<td style=\"width: 156.5px;\">899lbs @ $114.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 12th, 2020 - Market Report','','inherit','closed','closed','','1837-revision-v1','','','2020-05-13 14:59:51','2020-05-13 14:59:51','',1837,'https://kingsvillelivestock.com/2020/05/13/1837-revision-v1/',0,'revision','',0),(1842,2,'2020-05-13 15:45:29','2020-05-13 15:45:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>May 12th, 2020</strong> 2174 hd; last week\'s sale 2147 hd; year ago 2847 hd. Steer and heifer calves sold mostly steady to $3 higher. Load lots of 700-850lb steers and heifers sold with a sharply higher undertone. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$147.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$146.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$108.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong><span style=\"text-decoration: underline;\">FatsÂ </span></strong></p>\n<table style=\"height: 63px;\" width=\"243\">\n<tbody>\n<tr>\n<td style=\"width: 113px;\">Fat Cattle</td>\n<td style=\"width: 114px;\">$95.00-$100.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$135.00 - $170.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$120.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$105.00 - $111.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px;\">\n<tbody>\n<tr>\n<td style=\"width: 156px;\">HEIFERS</td>\n<td style=\"width: 180px;\">748lbs @ $125.00 (Black)</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">752lbs @ $117.10 (Colored)</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">STEERS</td>\n<td style=\"width: 180px;\">810lbs @ $139.85</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">818lbs @ $138.85</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">833lbs @ $123.35</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 12th, 2020 - Market Report','','inherit','closed','closed','','1837-revision-v1','','','2020-05-13 15:45:29','2020-05-13 15:45:29','',1837,'https://kingsvillelivestock.com/2020/05/13/1837-revision-v1/',0,'revision','',0),(1844,2,'2020-05-13 15:46:57','2020-05-13 15:46:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>May 12th, 2020</strong> 2174 hd; last week\'s sale 2147 hd; year ago 2847 hd. Steer and heifer calves sold mostly steady to $3 higher. Load lots of 700-850lb steers and heifers sold with a sharply higher undertone. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$147.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$146.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$108.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<p><strong><span style=\"text-decoration: underline;\">FatsÂ </span></strong></p>\n<table style=\"height: 63px;\" width=\"243\">\n<tbody>\n<tr>\n<td style=\"width: 113px;\">Fat Cattle</td>\n<td style=\"width: 114px;\">$95.00-$100.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$135.00 - $170.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$120.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$105.00 - $111.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px;\">\n<tbody>\n<tr>\n<td style=\"width: 156px;\">HEIFERS</td>\n<td style=\"width: 180px;\">748lbs @ $125.00 (Black)</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">752lbs @ $117.10 (Colored)</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">STEERS</td>\n<td style=\"width: 180px;\">810lbs @ $139.85</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">818lbs @ $138.85</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">833lbs @ $123.35</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 12th, 2020 - Market Report','','inherit','closed','closed','','1837-revision-v1','','','2020-05-13 15:46:57','2020-05-13 15:46:57','',1837,'https://kingsvillelivestock.com/2020/05/13/1837-revision-v1/',0,'revision','',0),(1845,2,'2020-05-13 16:32:00','2020-05-13 16:32:00','','Memorial Day 2020 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2020-detailed-consignment-list-3','','','2020-05-13 16:32:00','2020-05-13 16:32:00','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Memorial-Day-2020-Detailed-Consignment-List-2.pdf',0,'attachment','application/pdf',0),(1847,2,'2020-05-13 17:57:45','2020-05-13 17:57:45','','Memorial Day 2020 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2020-detailed-consignment-list-4','','','2020-05-13 17:57:45','2020-05-13 17:57:45','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Memorial-Day-2020-Detailed-Consignment-List-3.pdf',0,'attachment','application/pdf',0),(1850,2,'2020-05-18 17:04:53','2020-05-18 17:04:53','','Tuesday, May 19th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-may-19th-feeder-cattle-consignments','','','2020-05-18 17:04:53','2020-05-18 17:04:53','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Tuesday-May-19th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1854,2,'2020-05-18 17:57:09','2020-05-18 17:57:09','','Memorial Day 2020 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2020-detailed-consignment-list-5','','','2020-05-18 17:57:09','2020-05-18 17:57:09','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Memorial-Day-2020-Detailed-Consignment-List-4.pdf',0,'attachment','application/pdf',0),(1856,2,'2020-05-20 16:12:53','2020-05-20 16:12:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>May 19th, 2020</strong> 3013 hd; last week\'s sale 2174 hd; year ago 1788 hd. Feeders Sold $3-6 higher with very good buyer demand. Weigh cows and bulls sold $3-4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$142.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.50-$131.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$115.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$129.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$106.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$63.00 - $74.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$150.00 - $195.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$122.00 - $140.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$108.00 - $112.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px;\">\n<tbody>\n<tr>\n<td style=\"width: 156px;\">HEIFERS</td>\n<td style=\"width: 180px;\">701lbs @ $129.25</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">847lbs @ $115.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">STEERS</td>\n<td style=\"width: 180px;\">781lbs @ $135.85</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">808lbs @ $131.35</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">809lbs @ $125.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">845lbs @ $125.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">997lbs @ $115.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 19th, 2020 - Market Report','','publish','closed','open','','may-19th-2020-market-report-2','','','2020-05-20 16:12:56','2020-05-20 16:12:56','',0,'https://kingsvillelivestock.com/?p=1856',0,'post','',0),(1858,2,'2020-05-20 15:30:28','2020-05-20 15:30:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>May 20th, 2020</strong> 3013 hd; last week\'s sale 2174 hd; year ago 1788 hd. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$147.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$146.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$108.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<p><strong><span style=\"text-decoration: underline;\">FatsÂ </span></strong></p>\n<table style=\"height: 63px;\" width=\"243\">\n<tbody>\n<tr>\n<td style=\"width: 113px;\">Fat Cattle</td>\n<td style=\"width: 114px;\">$95.00-$100.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$135.00 - $170.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$120.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$105.00 - $111.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px;\">\n<tbody>\n<tr>\n<td style=\"width: 156px;\">HEIFERS</td>\n<td style=\"width: 180px;\">748lbs @ $125.00 (Black)</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">752lbs @ $117.10 (Colored)</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">STEERS</td>\n<td style=\"width: 180px;\">810lbs @ $139.85</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">818lbs @ $138.85</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">833lbs @ $123.35</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 12th, 2020 - Market Report','','inherit','closed','closed','','1856-revision-v1','','','2020-05-20 15:30:28','2020-05-20 15:30:28','',1856,'https://kingsvillelivestock.com/2020/05/20/1856-revision-v1/',0,'revision','',0),(1861,2,'2020-05-20 16:12:53','2020-05-20 16:12:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>May 19th, 2020</strong> 3013 hd; last week\'s sale 2174 hd; year ago 1788 hd. Feeders Sold $3-6 higher with very good buyer demand. Weigh cows and bulls sold $3-4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$142.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.50-$131.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$115.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$129.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$106.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$63.00 - $74.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$150.00 - $195.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$122.00 - $140.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$108.00 - $112.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px;\">\n<tbody>\n<tr>\n<td style=\"width: 156px;\">HEIFERS</td>\n<td style=\"width: 180px;\">701lbs @ $129.25</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">847lbs @ $115.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">STEERS</td>\n<td style=\"width: 180px;\">781lbs @ $135.85</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">808lbs @ $131.35</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">809lbs @ $125.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">845lbs @ $125.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">997lbs @ $115.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 19th, 2020 - Market Report','','inherit','closed','closed','','1856-revision-v1','','','2020-05-20 16:12:53','2020-05-20 16:12:53','',1856,'https://kingsvillelivestock.com/2020/05/20/1856-revision-v1/',0,'revision','',0),(1862,2,'2020-05-20 16:12:53','2020-05-20 16:12:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>May 19th, 2020</strong> 3013 hd; last week\'s sale 2174 hd; year ago 1788 hd. Feeders Sold $3-6 higher with very good buyer demand. Weigh cows and bulls sold $3-4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$142.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.50-$131.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$115.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$129.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$106.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$63.00 - $74.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$150.00 - $195.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$122.00 - $140.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$108.00 - $112.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px;\">\n<tbody>\n<tr>\n<td style=\"width: 156px;\">HEIFERS</td>\n<td style=\"width: 180px;\">701lbs @ $129.25</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">847lbs @ $115.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">STEERS</td>\n<td style=\"width: 180px;\">781lbs @ $135.85</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">808lbs @ $131.35</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">809lbs @ $125.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">845lbs @ $125.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">997lbs @ $115.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 12th, 2020 - Market Report','','inherit','closed','closed','','1856-revision-v1','','','2020-05-20 16:12:53','2020-05-20 16:12:53','',1856,'https://kingsvillelivestock.com/2020/05/20/1856-revision-v1/',0,'revision','',0),(1863,2,'2020-05-20 16:12:56','2020-05-20 16:12:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>May 19th, 2020</strong> 3013 hd; last week\'s sale 2174 hd; year ago 1788 hd. Feeders Sold $3-6 higher with very good buyer demand. Weigh cows and bulls sold $3-4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$142.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.50-$131.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$115.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$129.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$106.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$63.00 - $74.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500</td>\n<td style=\"width: 156.5px; text-align: center;\">$150.00 - $195.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-600</td>\n<td style=\"width: 156.5px; text-align: center;\">$122.00 - $140.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800</td>\n<td style=\"width: 156.5px; text-align: center;\">$108.00 - $112.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px;\">\n<tbody>\n<tr>\n<td style=\"width: 156px;\">HEIFERS</td>\n<td style=\"width: 180px;\">701lbs @ $129.25</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">847lbs @ $115.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">STEERS</td>\n<td style=\"width: 180px;\">781lbs @ $135.85</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">808lbs @ $131.35</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">809lbs @ $125.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">845lbs @ $125.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">997lbs @ $115.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 19th, 2020 - Market Report','','inherit','closed','closed','','1856-revision-v1','','','2020-05-20 16:12:56','2020-05-20 16:12:56','',1856,'https://kingsvillelivestock.com/2020/05/20/1856-revision-v1/',0,'revision','',0),(1868,2,'2020-05-20 16:32:09','2020-05-20 16:32:09','','Memorial Day 2020 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2020-detailed-consignment-list-6','','','2020-05-20 16:32:09','2020-05-20 16:32:09','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Memorial-Day-2020-Detailed-Consignment-List-5.pdf',0,'attachment','application/pdf',0),(1869,2,'2020-05-20 16:33:51','2020-05-20 16:33:51','','Rhoades Sale Flyer','','inherit','closed','closed','','rhoades-sale-flyer','','','2020-05-20 16:33:51','2020-05-20 16:33:51','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Rhoades-Sale-Flyer.pdf',0,'attachment','application/pdf',0),(1871,2,'2020-05-20 18:45:38','2020-05-20 18:45:38','','cropped-Kingsville-Livestock-Favicon.png','','inherit','closed','closed','','665-autosave-v1','','','2020-05-20 18:45:38','2020-05-20 18:45:38','',665,'https://kingsvillelivestock.com/2020/05/20/665-autosave-v1/',0,'revision','',0),(1878,2,'2020-05-25 21:50:40','2020-05-25 21:50:40','','Tuesday, May 26th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-may-26th-feeder-cattle-consignments','','','2020-05-25 21:50:40','2020-05-25 21:50:40','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/05/Tuesday-May-26th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1881,2,'2020-05-27 15:12:25','2020-05-27 15:12:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>May 26th, 2020</strong> 1050 hd; last week\'s sale 3013 hd; year ago 488 hd. Feeder cattle sold steady to $3 higher, with good buyer activity. Cows and bulls sold $2-3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$123.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$111.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px;\">\n<tbody>\n<tr>\n<td style=\"width: 156px;\">HEIFERS</td>\n<td style=\"width: 180px;\">513bs @ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">STEERS</td>\n<td style=\"width: 180px;\">525lbs @ $177.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">644lbs @ $148.50</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">660lbs @ $149.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 26th, 2020 - Market Report','','publish','closed','open','','may-26th-2020-market-report','','','2020-05-27 15:12:29','2020-05-27 15:12:29','',0,'https://kingsvillelivestock.com/?p=1881',0,'post','',0),(1883,2,'2020-05-27 15:12:25','2020-05-27 15:12:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>May 26th, 2020</strong> 1050 hd; last week\'s sale 3013 hd; year ago 488 hd. Feeder cattle sold steady to $3 higher, with good buyer activity. Cows and bulls sold $2-3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$123.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$111.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px;\">\n<tbody>\n<tr>\n<td style=\"width: 156px;\">HEIFERS</td>\n<td style=\"width: 180px;\">513bs @ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">STEERS</td>\n<td style=\"width: 180px;\">525lbs @ $177.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">644lbs @ $148.50</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">660lbs @ $149.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 26th, 2020 - Market Report','','inherit','closed','closed','','1881-revision-v1','','','2020-05-27 15:12:25','2020-05-27 15:12:25','',1881,'https://kingsvillelivestock.com/2020/05/27/1881-revision-v1/',0,'revision','',0),(1884,2,'2020-05-27 15:12:25','2020-05-27 15:12:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>May 26th, 2020</strong> 1050 hd; last week\'s sale 3013 hd; year ago 488 hd. Feeder cattle sold steady to $3 higher, with good buyer activity. Cows and bulls sold $2-3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$123.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$111.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px;\">\n<tbody>\n<tr>\n<td style=\"width: 156px;\">HEIFERS</td>\n<td style=\"width: 180px;\">513bs @ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">STEERS</td>\n<td style=\"width: 180px;\">525lbs @ $177.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">644lbs @ $148.50</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">660lbs @ $149.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 19th, 2020 - Market Report','','inherit','closed','closed','','1881-revision-v1','','','2020-05-27 15:12:25','2020-05-27 15:12:25','',1881,'https://kingsvillelivestock.com/2020/05/27/1881-revision-v1/',0,'revision','',0),(1885,2,'2020-05-27 15:12:29','2020-05-27 15:12:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>May 26th, 2020</strong> 1050 hd; last week\'s sale 3013 hd; year ago 488 hd. Feeder cattle sold steady to $3 higher, with good buyer activity. Cows and bulls sold $2-3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$123.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$111.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px;\">\n<tbody>\n<tr>\n<td style=\"width: 156px;\">HEIFERS</td>\n<td style=\"width: 180px;\">513bs @ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">STEERS</td>\n<td style=\"width: 180px;\">525lbs @ $177.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">644lbs @ $148.50</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">660lbs @ $149.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 26th, 2020 - Market Report','','inherit','closed','closed','','1881-revision-v1','','','2020-05-27 15:12:29','2020-05-27 15:12:29','',1881,'https://kingsvillelivestock.com/2020/05/27/1881-revision-v1/',0,'revision','',0),(1890,2,'2020-06-01 17:55:16','2020-06-01 17:55:16','','Tuesday, June 2nd Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-june-2nd-feeder-cattle-consignments','','','2020-06-01 17:55:16','2020-06-01 17:55:16','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/06/Tuesday-June-2nd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1895,2,'2020-06-03 17:28:57','2020-06-03 17:28:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>June 2nd, 2020</strong> 4365 hd; last week\'s sale 1050 hd; year ago 2315 hd. Feeder cattle sold steady compared to the last two weeks. Cows and bulls sold $3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$160.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$144.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$136.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$111.00-$119.75</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$136.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $105.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 311px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">712bs @ $133.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">705lbs @ $135.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">650lbs @ $136.35</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">605lbs @ $138.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">739lbs @140.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">768lbs @141.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">868lbs @126.75</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">460lbs @187.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 2nd, 2020 - Market Report','','publish','closed','open','','june-2nd-2020-market-report-2','','','2020-06-03 17:46:57','2020-06-03 17:46:57','',0,'https://kingsvillelivestock.com/?p=1895',0,'post','',0),(1896,2,'2020-06-03 14:21:52','2020-06-03 14:21:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>May 26th, 2020</strong> 1050 hd; last week\'s sale 3013 hd; year ago 488 hd. Feeder cattle sold steady to $3 higher, with good buyer activity. Cows and bulls sold $2-3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$123.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$111.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px;\">\n<tbody>\n<tr>\n<td style=\"width: 156px;\">HEIFERS</td>\n<td style=\"width: 180px;\">513bs @ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">STEERS</td>\n<td style=\"width: 180px;\">525lbs @ $177.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">644lbs @ $148.50</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">660lbs @ $149.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 26th, 2020 - Market Report','','inherit','closed','closed','','1895-revision-v1','','','2020-06-03 14:21:52','2020-06-03 14:21:52','',1895,'https://kingsvillelivestock.com/2020/06/03/1895-revision-v1/',0,'revision','',0),(1897,2,'2020-06-03 14:23:01','2020-06-03 14:23:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>May 26th, 2020</strong> 1050 hd; last week\'s sale 3013 hd; year ago 488 hd. Feeder cattle sold steady to $3 higher, with good buyer activity. Cows and bulls sold $2-3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$123.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$111.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px;\">\n<tbody>\n<tr>\n<td style=\"width: 156px;\">HEIFERS</td>\n<td style=\"width: 180px;\">513bs @ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">STEERS</td>\n<td style=\"width: 180px;\">525lbs @ $177.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">644lbs @ $148.50</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">660lbs @ $149.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 26th, 2020 - Market Report','','inherit','closed','closed','','1895-revision-v1','','','2020-06-03 14:23:01','2020-06-03 14:23:01','',1895,'https://kingsvillelivestock.com/2020/06/03/1895-revision-v1/',0,'revision','',0),(1898,2,'2020-06-03 14:23:05','2020-06-03 14:23:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>May 26th, 2020</strong> 1050 hd; last week\'s sale 3013 hd; year ago 488 hd. Feeder cattle sold steady to $3 higher, with good buyer activity. Cows and bulls sold $2-3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$123.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$111.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px;\">\n<tbody>\n<tr>\n<td style=\"width: 156px;\">HEIFERS</td>\n<td style=\"width: 180px;\">513bs @ $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">STEERS</td>\n<td style=\"width: 180px;\">525lbs @ $177.00</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">644lbs @ $148.50</td>\n</tr>\n<tr>\n<td style=\"width: 156px;\">Â </td>\n<td style=\"width: 180px;\">660lbs @ $149.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 2nd, 2020 - Market Report','','inherit','closed','closed','','1895-revision-v1','','','2020-06-03 14:23:05','2020-06-03 14:23:05','',1895,'https://kingsvillelivestock.com/2020/06/03/1895-revision-v1/',0,'revision','',0),(1905,2,'2020-06-03 17:28:57','2020-06-03 17:28:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>June 2nd, 2020</strong> 4365 hd; last week\'s sale 1050 hd; year ago 2315 hd. Feeder cattle sold steady compared to the last two weeks. Cows and bulls sold $3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$160.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$144.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$136.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$111.00-$119.75</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$136.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $105.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 311px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">712bs @ $133.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">705lbs @ $135.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">650lbs @ $136.35</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">605lbs @ $138.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">739lbs @140.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">768lbs @141.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">868lbs @126.75</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">460lbs @187.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 2nd, 2020 - Market Report','','inherit','closed','closed','','1895-revision-v1','','','2020-06-03 17:28:57','2020-06-03 17:28:57','',1895,'https://kingsvillelivestock.com/2020/06/03/1895-revision-v1/',0,'revision','',0),(1906,2,'2020-06-03 17:46:53','2020-06-03 17:46:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>June 2nd, 2020</strong> 4365 hd; last week\'s sale 1050 hd; year ago 2315 hd. Feeder cattle sold steady compared to the last two weeks. Cows and bulls sold $3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$160.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$144.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$136.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$111.00-$119.75</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$136.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $105.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 311px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">712bs @ $133.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">705lbs @ $135.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">650lbs @ $136.35</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">605lbs @ $138.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">739lbs @140.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">768lbs @141.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">868lbs @126.75</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">460lbs @187.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 2nd, 2020 - Market Report','','inherit','closed','closed','','1895-revision-v1','','','2020-06-03 17:46:53','2020-06-03 17:46:53','',1895,'https://kingsvillelivestock.com/2020/06/03/1895-revision-v1/',0,'revision','',0),(1911,2,'2020-06-08 18:09:35','2020-06-08 18:09:35','','Tuesday, June 9th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-june-9th-feeder-cattle-consignments','','','2020-06-08 18:09:35','2020-06-08 18:09:35','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/06/Tuesday-June-9th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1924,2,'2020-06-10 15:32:19','2020-06-10 15:32:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>June 9th, 2020</strong> 2137 hd; last week\'s sale 4365 hd; year ago 1854 hd. Compared to last week 650wt. steers sold $3-7 higher and all other sold steady. Heifers sold steady to $5 higher. Cows and bulls sold $2-4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.50-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$107.50-$112.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$136.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$111.50-$126.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$105.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$67.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$46.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls-High Yield</td>\n<td style=\"width: 156.5px;\">$85.00 - $107.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $78.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 311px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">647lbs @ $135.25-Black</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">684lbs @ $128.10-CharX</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">656lbs @ $149.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">775lbs @ $139.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">783lbs @139.25</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">832lbs @135.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">1050lbs @112.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 9th, 2020 - Market Report','','publish','closed','open','','june-9th-2020-market-report','','','2020-06-10 15:36:19','2020-06-10 15:36:19','',0,'https://kingsvillelivestock.com/?p=1924',0,'post','',0),(1926,2,'2020-06-10 15:32:19','2020-06-10 15:32:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>June 9th, 2020</strong> 2137 hd; last week\'s sale 4365 hd; year ago 1854 hd. Compared to last week 650wt. steers sold $3-7 higher and all other sold steady. Heifers sold steady to $5 higher. Cows and bulls sold $2-4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.50-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$107.50-$112.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$136.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$111.50-$126.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$105.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$67.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$46.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls-High Yield</td>\n<td style=\"width: 156.5px;\">$85.00 - $107.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $78.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 311px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">647lbs @ $135.25-Black</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">684lbs @ $128.10-CharX</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">656lbs @ $149.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">775lbs @ $139.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">783lbs @139.25</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">832lbs @135.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">1050lbs @112.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 9th, 2020 - Market Report','','inherit','closed','closed','','1924-revision-v1','','','2020-06-10 15:32:19','2020-06-10 15:32:19','',1924,'https://kingsvillelivestock.com/2020/06/10/1924-revision-v1/',0,'revision','',0),(1927,2,'2020-06-10 15:32:19','2020-06-10 15:32:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>June 9th, 2020</strong> 2137 hd; last week\'s sale 4365 hd; year ago 1854 hd. Compared to last week 650wt. steers sold $3-7 higher and all other sold steady. Heifers sold steady to $5 higher. Cows and bulls sold $2-4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.50-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$107.50-$112.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$136.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$111.50-$126.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$105.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$67.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$46.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls-High Yield</td>\n<td style=\"width: 156.5px;\">$85.00 - $107.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $78.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 311px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">647lbs @ $135.25-Black</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">684lbs @ $128.10-CharX</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">656lbs @ $149.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">775lbs @ $139.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">783lbs @139.25</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">832lbs @135.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">1050lbs @112.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 2nd, 2020 - Market Report','','inherit','closed','closed','','1924-revision-v1','','','2020-06-10 15:32:19','2020-06-10 15:32:19','',1924,'https://kingsvillelivestock.com/2020/06/10/1924-revision-v1/',0,'revision','',0),(1928,2,'2020-06-10 15:32:23','2020-06-10 15:32:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>June 9th, 2020</strong> 2137 hd; last week\'s sale 4365 hd; year ago 1854 hd. Compared to last week 650wt. steers sold $3-7 higher and all other sold steady. Heifers sold steady to $5 higher. Cows and bulls sold $2-4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.50-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$107.50-$112.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$136.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$111.50-$126.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$105.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$67.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$46.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls-High Yield</td>\n<td style=\"width: 156.5px;\">$85.00 - $107.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $78.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 311px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">647lbs @ $135.25-Black</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">684lbs @ $128.10-CharX</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">656lbs @ $149.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">775lbs @ $139.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">783lbs @139.25</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">832lbs @135.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">1050lbs @112.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 9th, 2020 - Market Report','','inherit','closed','closed','','1924-revision-v1','','','2020-06-10 15:32:23','2020-06-10 15:32:23','',1924,'https://kingsvillelivestock.com/2020/06/10/1924-revision-v1/',0,'revision','',0),(1929,2,'2020-06-10 15:36:16','2020-06-10 15:36:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>June 9th, 2020</strong> 2137 hd; last week\'s sale 4365 hd; year ago 1854 hd. Compared to last week 650wt. steers sold $3-7 higher and all other sold steady. Heifers sold steady to $5 higher. Cows and bulls sold $2-4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.50-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$107.50-$112.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$136.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$111.50-$126.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$105.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$67.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$46.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls-High Yield</td>\n<td style=\"width: 156.5px;\">$85.00 - $107.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $78.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 311px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">647lbs @ $135.25-Black</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">684lbs @ $128.10-CharX</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">656lbs @ $149.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">775lbs @ $139.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">783lbs @139.25</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">832lbs @135.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">1050lbs @112.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 9th, 2020 - Market Report','','inherit','closed','closed','','1924-revision-v1','','','2020-06-10 15:36:16','2020-06-10 15:36:16','',1924,'https://kingsvillelivestock.com/2020/06/10/1924-revision-v1/',0,'revision','',0),(1933,2,'2020-06-10 19:28:07','2020-06-10 19:28:07','','Drexel Ranch sale','','inherit','closed','closed','','drexel-ranch-sale','','','2020-06-10 19:28:07','2020-06-10 19:28:07','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/06/Drexel-Ranch-sale.pdf',0,'attachment','application/pdf',0),(1945,2,'2020-06-15 19:41:39','2020-06-15 19:41:39','','Tuesday, June 16th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-june-16th-feeder-cattle-consignments','','','2020-06-15 19:41:39','2020-06-15 19:41:39','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/06/Tuesday-June-16th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1949,2,'2020-06-17 15:48:53','2020-06-17 15:48:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>June 16th, 2020</strong> 2225 hd; last week\'s sale 2137 hd; year ago 2385 hd. Compared to last week 450-550wt steers sold $5-7 higher, 600-700wt sold firm to $2 higher. Feeder heifers sold steady to $2 higher and $2 lower in spots. Cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$134.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$110.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$168.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$129.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.75-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.50-$115.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$95.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$67.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$85.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">300-500lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$140.00 - $168.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">500-700lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$105.00 - $129.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">700-800lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$85.00 - $105.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 311px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">690lbs @ $138.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">769lbs @ $138.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">702lbs @ $148.35</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">825lbs @ $134.35</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">858lbs @130.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 16th, 2020 - Market Report','','publish','closed','open','','june-16th-2020-market-report-2','','','2020-06-17 15:54:14','2020-06-17 15:54:14','',0,'https://kingsvillelivestock.com/?p=1949',0,'post','',0),(1951,2,'2020-06-17 15:01:02','2020-06-17 15:01:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>June 16th, 2020</strong> 2225 hd; last week\'s sale 2137 hd; year ago 2385 hd. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.50-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$107.50-$112.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$136.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$111.50-$126.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$105.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$67.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$46.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls-High Yield</td>\n<td style=\"width: 156.5px;\">$85.00 - $107.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $78.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 311px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">647lbs @ $135.25-Black</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">684lbs @ $128.10-CharX</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">656lbs @ $149.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">775lbs @ $139.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">783lbs @139.25</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">832lbs @135.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">1050lbs @112.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 16th, 2020 - Market Report','','inherit','closed','closed','','1949-revision-v1','','','2020-06-17 15:01:02','2020-06-17 15:01:02','',1949,'https://kingsvillelivestock.com/2020/06/17/1949-revision-v1/',0,'revision','',0),(1953,2,'2020-06-17 15:01:05','2020-06-17 15:01:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>June 16th, 2020</strong> 2225 hd; last week\'s sale 2137 hd; year ago 2385 hd. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.50-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$107.50-$112.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$136.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$111.50-$126.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$105.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$67.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$46.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls-High Yield</td>\n<td style=\"width: 156.5px;\">$85.00 - $107.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $78.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 311px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">647lbs @ $135.25-Black</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">684lbs @ $128.10-CharX</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">656lbs @ $149.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">775lbs @ $139.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">783lbs @139.25</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">832lbs @135.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">1050lbs @112.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 16th, 2020 - Market Report','','inherit','closed','closed','','1949-revision-v1','','','2020-06-17 15:01:05','2020-06-17 15:01:05','',1949,'https://kingsvillelivestock.com/2020/06/17/1949-revision-v1/',0,'revision','',0),(1957,2,'2020-06-17 15:48:53','2020-06-17 15:48:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>June 16th, 2020</strong> 2225 hd; last week\'s sale 2137 hd; year ago 2385 hd. Compared to last week 450-550wt steers sold $5-7 higher, 600-700wt sold firm to $2 higher. Feeder heifers sold steady to $2 higher and $2 lower in spots. Cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$134.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$110.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$168.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$129.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.75-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.50-$115.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$95.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$67.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$85.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">300-500lbs</td>\n<td style=\"width: 156.5px;\">$140.00 - $168.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">500-700lbs</td>\n<td style=\"width: 156.5px;\">$105.00 - $129.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">700-800lbs</td>\n<td style=\"width: 156.5px;\">$85.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 311px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">690lbs @ $138.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">769lbs @ $138.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">702lbs @ $148.35</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">825lbs @ $134.35</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">858lbs @130.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 16th, 2020 - Market Report','','inherit','closed','closed','','1949-revision-v1','','','2020-06-17 15:48:53','2020-06-17 15:48:53','',1949,'https://kingsvillelivestock.com/2020/06/17/1949-revision-v1/',0,'revision','',0),(1959,2,'2020-06-17 15:52:13','2020-06-17 15:52:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>June 16th, 2020</strong> 2225 hd; last week\'s sale 2137 hd; year ago 2385 hd. Compared to last week 450-550wt steers sold $5-7 higher, 600-700wt sold firm to $2 higher. Feeder heifers sold steady to $2 higher and $2 lower in spots. Cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$134.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$110.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$168.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$129.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.75-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.50-$115.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$95.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$67.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$85.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">300-500lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$140.00 - $168.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">500-700lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$105.00 - $129.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">700-800lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$85.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 311px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">690lbs @ $138.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">769lbs @ $138.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">702lbs @ $148.35</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">825lbs @ $134.35</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">858lbs @130.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 16th, 2020 - Market Report','','inherit','closed','closed','','1949-revision-v1','','','2020-06-17 15:52:13','2020-06-17 15:52:13','',1949,'https://kingsvillelivestock.com/2020/06/17/1949-revision-v1/',0,'revision','',0),(1961,2,'2020-06-17 15:54:10','2020-06-17 15:54:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>June 16th, 2020</strong> 2225 hd; last week\'s sale 2137 hd; year ago 2385 hd. Compared to last week 450-550wt steers sold $5-7 higher, 600-700wt sold firm to $2 higher. Feeder heifers sold steady to $2 higher and $2 lower in spots. Cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$134.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$110.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$168.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$129.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.75-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.50-$115.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$95.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$67.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$85.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">300-500lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$140.00 - $168.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">500-700lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$105.00 - $129.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">700-800lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$85.00 - $105.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 311px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">690lbs @ $138.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">769lbs @ $138.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">702lbs @ $148.35</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">825lbs @ $134.35</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">858lbs @130.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 16th, 2020 - Market Report','','inherit','closed','closed','','1949-revision-v1','','','2020-06-17 15:54:10','2020-06-17 15:54:10','',1949,'https://kingsvillelivestock.com/2020/06/17/1949-revision-v1/',0,'revision','',0),(1967,2,'2020-07-29 15:58:00','2020-07-29 15:58:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am-<span style=\"color: #ff00ff;\"> Customer Appreciation Dinner 10 am-6 pm!</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal sale in December!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','publish','closed','closed','','home-2','','','2023-11-29 15:14:44','2023-11-29 15:14:44','',0,'https://kingsvillelivestock.com/?page_id=1967',0,'page','',0),(1969,2,'2020-06-22 18:13:51','2020-06-22 18:13:51','','Tuesday, June 23rd Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-june-23rd-feeder-cattle-consignments','','','2020-06-22 18:13:51','2020-06-22 18:13:51','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/06/Tuesday-June-23rd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(1973,2,'2020-06-22 19:01:54','2020-06-22 19:01:54','','Tuesday, June 23rd Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-june-23rd-feeder-cattle-consignments-2','','','2020-06-22 19:01:54','2020-06-22 19:01:54','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/06/Tuesday-June-23rd-Feeder-Cattle-Consignments-1.pdf',0,'attachment','application/pdf',0),(1976,2,'2020-06-22 19:13:02','2020-06-22 19:13:02','','Tuesday, June 23rd Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-june-23rd-feeder-cattle-consignments-3','','','2020-06-22 19:13:02','2020-06-22 19:13:02','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/06/Tuesday-June-23rd-Feeder-Cattle-Consignments-2.pdf',0,'attachment','application/pdf',0),(1979,2,'2020-06-24 16:38:55','2020-06-24 16:38:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>June 23rd, 2020</strong> 2653 hd; last week\'s sale 2225 hd; year ago 2164 hd. Feeder cattle weighing 450-550lbs sold $2-5 lower compared to last week, and steady to the week prior. Cows and bulls sold $2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$163.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$136.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$135.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1046</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$156.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.50-$126.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$118.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1500</td>\n<td style=\"width: 157px;\">$97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls-High Yield</td>\n<td style=\"width: 156.5px;\">$90.00 - $104.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$76.00- $82.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">300-500lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$130.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">500-700lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$110.00 - $135.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">700-800lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$90.00 - $105.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 351px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 202px;\">722lbs @ $126.75</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 202px;\">767lbs @ $143.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">798lbs @ $137.25</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">818lbs @ $132.85 (Red/Char)</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">849lbs @ $129.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">867lbs @ $135.10</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 23rd, 2020 - Market Report','','publish','closed','open','','june-23rd-2020-market-report','','','2020-06-24 16:51:52','2020-06-24 16:51:52','',0,'https://kingsvillelivestock.com/?p=1979',0,'post','',0),(1980,2,'2020-06-24 14:16:31','2020-06-24 14:16:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>June 23rd, 2020</strong> 2653 hd; last week\'s sale 2225 hd; year ago 2385 hd. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$134.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$110.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$168.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$129.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.75-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.50-$115.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$95.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$67.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$85.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">300-500lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$140.00 - $168.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">500-700lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$105.00 - $129.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">700-800lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$85.00 - $105.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 311px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 162px;\">690lbs @ $138.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">769lbs @ $138.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 162px;\">702lbs @ $148.35</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">825lbs @ $134.35</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 162px;\">858lbs @130.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 16th, 2020 - Market Report','','inherit','closed','closed','','1979-revision-v1','','','2020-06-24 14:16:31','2020-06-24 14:16:31','',1979,'https://kingsvillelivestock.com/2020/06/24/1979-revision-v1/',0,'revision','',0),(1982,2,'2020-06-24 16:38:55','2020-06-24 16:38:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>June 23rd, 2020</strong> 2653 hd; last week\'s sale 2225 hd; year ago 2164 hd. Feeder cattle weighing 450-550 sold $2-5 lower compared to last week, and steady to the week prior. Cows and bulls sold $2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$163.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$136.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$135.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1046</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$156.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.50-$126.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$118.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1500</td>\n<td style=\"width: 157px;\">$97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls-High Yield</td>\n<td style=\"width: 156.5px;\">$90.00 - $104.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$76.00- $82.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">300-500lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$130.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">500-700lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$110.00 - $135.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">700-800lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$90.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 351px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 202px;\">722lbs @ $126.75</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 202px;\">767lbs @ $143.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">798lbs @ $137.25</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">818lbs @ $132.85 (Red/Char)</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">849lbs @ $129.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">867lbs @ $135.10</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 23rd, 2020 - Market Report','','inherit','closed','closed','','1979-revision-v1','','','2020-06-24 16:38:55','2020-06-24 16:38:55','',1979,'https://kingsvillelivestock.com/2020/06/24/1979-revision-v1/',0,'revision','',0),(1983,2,'2020-06-24 16:38:55','2020-06-24 16:38:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>June 23rd, 2020</strong> 2653 hd; last week\'s sale 2225 hd; year ago 2164 hd. Feeder cattle weighing 450-550 sold $2-5 lower compared to last week, and steady to the week prior. Cows and bulls sold $2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$163.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$136.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$135.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1046</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$156.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.50-$126.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$118.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1500</td>\n<td style=\"width: 157px;\">$97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls-High Yield</td>\n<td style=\"width: 156.5px;\">$90.00 - $104.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$76.00- $82.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">300-500lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$130.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">500-700lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$110.00 - $135.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">700-800lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$90.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 351px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 202px;\">722lbs @ $126.75</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 202px;\">767lbs @ $143.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">798lbs @ $137.25</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">818lbs @ $132.85 (Red/Char)</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">849lbs @ $129.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">867lbs @ $135.10</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 16th, 2020 - Market Report','','inherit','closed','closed','','1979-revision-v1','','','2020-06-24 16:38:55','2020-06-24 16:38:55','',1979,'https://kingsvillelivestock.com/2020/06/24/1979-revision-v1/',0,'revision','',0),(1984,2,'2020-06-24 16:38:58','2020-06-24 16:38:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>June 23rd, 2020</strong> 2653 hd; last week\'s sale 2225 hd; year ago 2164 hd. Feeder cattle weighing 450-550 sold $2-5 lower compared to last week, and steady to the week prior. Cows and bulls sold $2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$163.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$136.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$135.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1046</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$156.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.50-$126.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$118.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1500</td>\n<td style=\"width: 157px;\">$97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls-High Yield</td>\n<td style=\"width: 156.5px;\">$90.00 - $104.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$76.00- $82.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">300-500lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$130.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">500-700lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$110.00 - $135.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">700-800lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$90.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 351px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 202px;\">722lbs @ $126.75</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 202px;\">767lbs @ $143.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">798lbs @ $137.25</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">818lbs @ $132.85 (Red/Char)</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">849lbs @ $129.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">867lbs @ $135.10</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 23rd, 2020 - Market Report','','inherit','closed','closed','','1979-revision-v1','','','2020-06-24 16:38:58','2020-06-24 16:38:58','',1979,'https://kingsvillelivestock.com/2020/06/24/1979-revision-v1/',0,'revision','',0),(1986,2,'2020-06-24 16:51:48','2020-06-24 16:51:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>June 23rd, 2020</strong> 2653 hd; last week\'s sale 2225 hd; year ago 2164 hd. Feeder cattle weighing 450-550lbs sold $2-5 lower compared to last week, and steady to the week prior. Cows and bulls sold $2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$163.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$136.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$135.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1046</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$156.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.50-$126.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$118.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1500</td>\n<td style=\"width: 157px;\">$97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls-High Yield</td>\n<td style=\"width: 156.5px;\">$90.00 - $104.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$76.00- $82.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Feeder Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">300-500lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$130.00 - $150.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">500-700lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$110.00 - $135.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px; text-align: center;\">700-800lbs</td>\n<td style=\"width: 156.5px; text-align: center;\">$90.00 - $105.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 351px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 202px;\">722lbs @ $126.75</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 202px;\">767lbs @ $143.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">798lbs @ $137.25</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">818lbs @ $132.85 (Red/Char)</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">849lbs @ $129.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">867lbs @ $135.10</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 23rd, 2020 - Market Report','','inherit','closed','closed','','1979-revision-v1','','','2020-06-24 16:51:48','2020-06-24 16:51:48','',1979,'https://kingsvillelivestock.com/2020/06/24/1979-revision-v1/',0,'revision','',0),(1989,2,'2020-06-29 17:49:04','2020-06-29 17:49:04','','Tuesday, June 30th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-june-30th-feeder-cattle-consignments','','','2020-06-29 17:49:04','2020-06-29 17:49:04','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/06/Tuesday-June-30th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2007,2,'2020-07-01 14:38:48','2020-07-01 14:38:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>June 30th, 2020</strong> 1913 hd; last week\'s sale 2653 hd; year ago, no sale due to the holiday. Feeder cattle 700lbs and up sold steady to $3 lower, 700lbs and down sold steady to $3 higher. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$153.50-$170.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$143.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$130.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$141.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$166.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$150.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$135.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.10-$115.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$113.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$95.00-$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $81.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $70.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$83.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 351px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 202px;\">912lbs @ $126.50</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">861lbs @ $130.10</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">731lbs @ $140.50</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 202px;\">775lbs @ $115.10Â </td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">635lbs @ $135.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 30th, 2020 - Market Report','','publish','closed','open','','june-30th-2020-market-report-2','','','2020-07-01 14:38:52','2020-07-01 14:38:52','',0,'https://kingsvillelivestock.com/?p=2007',0,'post','',0),(2009,2,'2020-07-01 14:38:48','2020-07-01 14:38:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>June 30th, 2020</strong> 1913 hd; last week\'s sale 2653 hd; year ago, no sale due to the holiday. Feeder cattle 700lbs and up sold steady to $3 lower, 700lbs and down sold steady to $3 higher. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$153.50-$170.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$143.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$130.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$141.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$166.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$150.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$135.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.10-$115.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$113.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$95.00-$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $81.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $70.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$83.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 351px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 202px;\">912lbs @ $126.50</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">861lbs @ $130.10</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">731lbs @ $140.50</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 202px;\">775lbs @ $115.10Â </td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">635lbs @ $135.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 30th, 2020 - Market Report','','inherit','closed','closed','','2007-revision-v1','','','2020-07-01 14:38:48','2020-07-01 14:38:48','',2007,'https://kingsvillelivestock.com/2020/07/01/2007-revision-v1/',0,'revision','',0),(2010,2,'2020-07-01 14:38:48','2020-07-01 14:38:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>June 30th, 2020</strong> 1913 hd; last week\'s sale 2653 hd; year ago, no sale due to the holiday. Feeder cattle 700lbs and up sold steady to $3 lower, 700lbs and down sold steady to $3 higher. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$153.50-$170.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$143.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$130.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$141.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$166.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$150.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$135.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.10-$115.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$113.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$95.00-$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $81.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $70.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$83.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 351px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 202px;\">912lbs @ $126.50</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">861lbs @ $130.10</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">731lbs @ $140.50</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 202px;\">775lbs @ $115.10Â </td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">635lbs @ $135.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 23rd, 2020 - Market Report','','inherit','closed','closed','','2007-revision-v1','','','2020-07-01 14:38:48','2020-07-01 14:38:48','',2007,'https://kingsvillelivestock.com/2020/07/01/2007-revision-v1/',0,'revision','',0),(2011,2,'2020-07-01 14:38:52','2020-07-01 14:38:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>June 30th, 2020</strong> 1913 hd; last week\'s sale 2653 hd; year ago, no sale due to the holiday. Feeder cattle 700lbs and up sold steady to $3 lower, 700lbs and down sold steady to $3 higher. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$153.50-$170.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$143.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$130.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$141.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$166.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$150.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$135.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.10-$115.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$113.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$95.00-$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $81.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $70.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$83.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 351px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 202px;\">912lbs @ $126.50</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">861lbs @ $130.10</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">731lbs @ $140.50</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 202px;\">775lbs @ $115.10Â </td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">635lbs @ $135.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 30th, 2020 - Market Report','','inherit','closed','closed','','2007-revision-v1','','','2020-07-01 14:38:52','2020-07-01 14:38:52','',2007,'https://kingsvillelivestock.com/2020/07/01/2007-revision-v1/',0,'revision','',0),(2013,2,'2020-07-01 14:46:23','2020-07-01 14:46:23','','Charles E. Breit Sale Bill','','inherit','closed','closed','','charles-e-breit-sale-bill','','','2020-07-01 14:46:23','2020-07-01 14:46:23','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/Charles-E.-Breit-Sale-Bill.pdf',0,'attachment','application/pdf',0),(2019,2,'2020-07-06 17:50:12','2020-07-06 17:50:12','','Tuesday, July 7th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-july-7th-feeder-cattle-consignments','','','2020-07-06 17:50:12','2020-07-06 17:50:12','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/Tuesday-July-7th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2025,2,'2020-07-08 14:34:47','2020-07-08 14:34:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>July 7th, 2020</strong> 1329 hd; last week\'s sale 1913 hd; year ago 1301 hd. Feeder cattle of all classes sold fully steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$115.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$143.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$128.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$106.00-$110.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 351px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 202px;\">649lbs @ $134.75</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">770lbs @ $121.60</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 202px;\">840lbs @ $138.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 7th, 2020 - Market Report','','publish','closed','open','','july-7th-2020-market-report','','','2020-07-08 14:54:29','2020-07-08 14:54:29','',0,'https://kingsvillelivestock.com/?p=2025',0,'post','',0),(2027,2,'2020-07-08 14:34:47','2020-07-08 14:34:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>July 7th, 2020</strong> 1329 hd; last week\'s sale 1913 hd; year ago,. Feeder cattle of all classes sold fully steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$115.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$143.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$128.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$106.00-$110.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 351px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 202px;\">649lbs @ $134.75</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">770lbs @ $121.60</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 202px;\">840lbs @ $138.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 7th, 2020 - Market Report','','inherit','closed','closed','','2025-revision-v1','','','2020-07-08 14:34:47','2020-07-08 14:34:47','',2025,'https://kingsvillelivestock.com/2020/07/08/2025-revision-v1/',0,'revision','',0),(2028,2,'2020-07-08 14:34:47','2020-07-08 14:34:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>July 7th, 2020</strong> 1329 hd; last week\'s sale 1913 hd; year ago,. Feeder cattle of all classes sold fully steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$115.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$143.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$128.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$106.00-$110.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 351px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 202px;\">649lbs @ $134.75</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">770lbs @ $121.60</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 202px;\">840lbs @ $138.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 30th, 2020 - Market Report','','inherit','closed','closed','','2025-revision-v1','','','2020-07-08 14:34:47','2020-07-08 14:34:47','',2025,'https://kingsvillelivestock.com/2020/07/08/2025-revision-v1/',0,'revision','',0),(2029,2,'2020-07-08 14:34:51','2020-07-08 14:34:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>July 7th, 2020</strong> 1329 hd; last week\'s sale 1913 hd; year ago,. Feeder cattle of all classes sold fully steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$115.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$143.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$128.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$106.00-$110.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 351px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 202px;\">649lbs @ $134.75</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">770lbs @ $121.60</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 202px;\">840lbs @ $138.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 7th, 2020 - Market Report','','inherit','closed','closed','','2025-revision-v1','','','2020-07-08 14:34:51','2020-07-08 14:34:51','',2025,'https://kingsvillelivestock.com/2020/07/08/2025-revision-v1/',0,'revision','',0),(2030,2,'2020-07-08 14:37:26','2020-07-08 14:37:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>July 7th, 2020</strong> 1329 hd; last week\'s sale 1913 hd; year ago,. Feeder cattle of all classes sold fully steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$115.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$143.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$128.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$106.00-$110.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 351px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 202px;\">649lbs @ $134.75</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">770lbs @ $121.60</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 202px;\">840lbs @ $138.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 7th, 2020 - Market Report','','inherit','closed','closed','','2025-revision-v1','','','2020-07-08 14:37:26','2020-07-08 14:37:26','',2025,'https://kingsvillelivestock.com/2020/07/08/2025-revision-v1/',0,'revision','',0),(2031,2,'2020-07-08 14:54:26','2020-07-08 14:54:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>July 7th, 2020</strong> 1329 hd; last week\'s sale 1913 hd; year ago 1301 hd. Feeder cattle of all classes sold fully steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$115.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$143.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$128.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$106.00-$110.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 351px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 202px;\">649lbs @ $134.75</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">Â </td>\n<td style=\"width: 202px;\">770lbs @ $121.60</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 202px;\">840lbs @ $138.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 7th, 2020 - Market Report','','inherit','closed','closed','','2025-revision-v1','','','2020-07-08 14:54:26','2020-07-08 14:54:26','',2025,'https://kingsvillelivestock.com/2020/07/08/2025-revision-v1/',0,'revision','',0),(2035,2,'2020-07-13 15:27:37','2020-07-13 15:27:37','','Jack and Michelle Hughes Sale Bill','','inherit','closed','closed','','jack-and-michelle-hughes-sale-bill','','','2020-07-13 15:27:37','2020-07-13 15:27:37','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/Jack-and-Michelle-Hughes-Sale-Bill.pdf',0,'attachment','application/pdf',0),(2038,2,'2020-07-13 19:30:59','2020-07-13 19:30:59','','Tuesday, July 14th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-july-14th-feeder-cattle-consignments','','','2020-07-13 19:30:59','2020-07-13 19:30:59','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/Tuesday-July-14th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2041,2,'2020-07-14 15:17:03','0000-00-00 00:00:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]\n\n<strong>July 7th, 2020</strong> 1329 hd; last week\'s sale 1913 hd; year ago 1301 hd. Feeder cattle of all classes sold fully steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]\n<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$115.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]\n<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$143.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$134.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$128.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$106.00-$110.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">N/A</td>\n</tr>\n</tbody>\n</table>\n&nbsp;\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $95.00</td>\n</tr>\n</tbody>\n</table>\n&nbsp;\n\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n&nbsp;\n<table style=\"width: 351px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 202px;\">649lbs @ $134.75</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\"></td>\n<td style=\"width: 202px;\">770lbs @ $121.60</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 202px;\">840lbs @ $138.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 14th, 2020 - Market Report','','draft','closed','open','','july-14th-2020-market-report-2','','','2020-07-14 15:17:03','2020-07-14 15:17:03','',0,'https://kingsvillelivestock.com/?p=2041',0,'post','',0),(2054,2,'2020-07-15 16:02:52','2020-07-15 16:02:52','','Charles E. Breit Sale Bill','','inherit','closed','closed','','charles-e-breit-sale-bill-2','','','2020-07-15 16:02:52','2020-07-15 16:02:52','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/Charles-E.-Breit-Sale-Bill-1.pdf',0,'attachment','application/pdf',0),(2056,2,'2020-07-15 16:26:37','2020-07-15 16:26:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>July 14th, 2020</strong> 1347 hd; last week\'s sale 1329 hd; year ago 1832 hd. Feeder cattle 650lbs and up sold $2-4 higher. All other classes sold steady. Cows and bulls sold $2-3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$133.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$138.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.50-$130.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$117.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$105.00-$112.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$79.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 351px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 202px;\">680lbs @ $138.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 202px;\">746lbs @ $145.85</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 14th, 2020 - Market Report','','publish','closed','open','','july-14th-2020-market-report','','','2020-07-15 16:26:41','2020-07-15 16:26:41','',0,'https://kingsvillelivestock.com/?p=2056',0,'post','',0),(2058,2,'2020-07-15 16:26:37','2020-07-15 16:26:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>July 14th, 2020</strong> 1347 hd; last week\'s sale 1329 hd; year ago 1832 hd. Feeder cattle 650lbs and up sold $2-4 higher. All other classes sold steady. Cows and bulls sold $2-3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$133.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$138.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.50-$130.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$117.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$105.00-$112.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$79.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 351px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">HEIFERS</td>\n<td style=\"width: 202px;\">680lbs @ $138.00</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 202px;\">746lbs @ $145.85</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 14th, 2020 - Market Report','','inherit','closed','closed','','2056-revision-v1','','','2020-07-15 16:26:37','2020-07-15 16:26:37','',2056,'https://kingsvillelivestock.com/2020/07/15/2056-revision-v1/',0,'revision','',0),(2066,2,'2020-07-20 17:30:51','2020-07-20 17:30:51','','Tuesday, July 21st Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-july-21st-feeder-cattle-consignments','','','2020-07-20 17:30:51','2020-07-20 17:30:51','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/Tuesday-July-21st-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2071,2,'2020-07-22 15:36:59','2020-07-22 15:36:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>July 21st, 2020</strong> 1211 hd; last week\'s sale 1347 hd; year ago 1120 hd. Feeder cattle sold fully steady - $5 higher. Cows and bulls sold $2-3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$127.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$116.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$140.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$127.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.00 - $106.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">STEERSÂ </td>\n<td style=\"width: 204px;\">868lbs @ $127.60</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 204px;\">697lbs @ $146.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 204px;\">681lbs @ $148.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 21st, 2020 - Market Report','','publish','closed','open','','july-21st-2020-market-report','','','2020-07-22 15:54:47','2020-07-22 15:54:47','',0,'https://kingsvillelivestock.com/?p=2071',0,'post','',0),(2073,2,'2020-07-22 15:36:59','2020-07-22 15:36:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>July 14th, 2020</strong> 1211 hd; last week\'s sale 1347 hd; year ago 1120 hd. Feeder cattle sold fully steady - $5 higher. Cows and bulls sold $2-3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$127.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$116.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$140.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$127.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.00 - $106.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">STEERSÂ </td>\n<td style=\"width: 204px;\">868lbs @ $127.60</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 204px;\">697lbs @ $146.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 204px;\">681lbs @ $148.75</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" hover_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 21st, 2020 - Market Report','','inherit','closed','closed','','2071-revision-v1','','','2020-07-22 15:36:59','2020-07-22 15:36:59','',2071,'https://kingsvillelivestock.com/2020/07/22/2071-revision-v1/',0,'revision','',0),(2075,2,'2020-07-22 15:37:03','2020-07-22 15:37:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>July 14th, 2020</strong> 1211 hd; last week\'s sale 1347 hd; year ago 1120 hd. Feeder cattle sold fully steady - $5 higher. Cows and bulls sold $2-3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$127.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$116.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$140.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$127.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.00 - $106.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">STEERSÂ </td>\n<td style=\"width: 204px;\">868lbs @ $127.60</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 204px;\">697lbs @ $146.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 204px;\">681lbs @ $148.75</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" hover_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 21st, 2020 - Market Report','','inherit','closed','closed','','2071-revision-v1','','','2020-07-22 15:37:03','2020-07-22 15:37:03','',2071,'https://kingsvillelivestock.com/2020/07/22/2071-revision-v1/',0,'revision','',0),(2076,2,'2020-07-22 15:37:12','2020-07-22 15:37:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>July 14th, 2020</strong> 1211 hd; last week\'s sale 1347 hd; year ago 1120 hd. Feeder cattle sold fully steady - $5 higher. Cows and bulls sold $2-3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$127.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$116.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$140.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$127.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.00 - $106.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">STEERSÂ </td>\n<td style=\"width: 204px;\">868lbs @ $127.60</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 204px;\">697lbs @ $146.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 204px;\">681lbs @ $148.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 21st, 2020 - Market Report','','inherit','closed','closed','','2071-revision-v1','','','2020-07-22 15:37:12','2020-07-22 15:37:12','',2071,'https://kingsvillelivestock.com/2020/07/22/2071-revision-v1/',0,'revision','',0),(2077,2,'2020-07-22 15:39:25','2020-07-22 15:39:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_row _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>July 21st, 2020</strong> 1211 hd; last week\'s sale 1347 hd; year ago 1120 hd. Feeder cattle sold fully steady - $5 higher. Cows and bulls sold $2-3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$127.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$116.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$140.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$127.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.00 - $106.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">STEERSÂ </td>\n<td style=\"width: 204px;\">868lbs @ $127.60</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 204px;\">697lbs @ $146.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 204px;\">681lbs @ $148.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 21st, 2020 - Market Report','','inherit','closed','closed','','2071-revision-v1','','','2020-07-22 15:39:25','2020-07-22 15:39:25','',2071,'https://kingsvillelivestock.com/2020/07/22/2071-revision-v1/',0,'revision','',0),(2078,2,'2020-07-22 15:54:43','2020-07-22 15:54:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>July 21st, 2020</strong> 1211 hd; last week\'s sale 1347 hd; year ago 1120 hd. Feeder cattle sold fully steady - $5 higher. Cows and bulls sold $2-3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$127.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$116.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$140.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$127.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.00 - $106.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">STEERSÂ </td>\n<td style=\"width: 204px;\">868lbs @ $127.60</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 204px;\">697lbs @ $146.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 204px;\">681lbs @ $148.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 21st, 2020 - Market Report','','inherit','closed','closed','','2071-revision-v1','','','2020-07-22 15:54:43','2020-07-22 15:54:43','',2071,'https://kingsvillelivestock.com/2020/07/22/2071-revision-v1/',0,'revision','',0),(2096,2,'2020-07-27 17:56:09','2020-07-27 17:56:09','','Tuesday, July 28th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-july-28th-feeder-cattle-consignments','','','2020-07-27 17:56:09','2020-07-27 17:56:09','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/Tuesday-July-28th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2101,2,'2020-07-27 19:52:33','2020-07-27 19:52:33','','IMG-1006','','inherit','closed','closed','','img-1006','','','2020-07-27 19:52:33','2020-07-27 19:52:33','',714,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG-1006.jpg',0,'attachment','image/jpeg',0),(2102,2,'2020-07-27 19:52:41','2020-07-27 19:52:41','','IMG-1006','','inherit','closed','closed','','img-1006-2','','','2020-07-27 19:52:41','2020-07-27 19:52:41','',714,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG-1006-1.jpg',0,'attachment','image/jpeg',0),(2105,2,'2020-07-27 20:05:27','2020-07-27 20:05:27','','IMG_1007','','inherit','closed','closed','','img_1007','','','2020-07-27 20:05:27','2020-07-27 20:05:27','',714,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1007.jpg',0,'attachment','image/jpeg',0),(2106,2,'2020-07-27 20:06:16','2020-07-27 20:06:16','','IMG_1007','','inherit','closed','closed','','img_1007-2','','','2020-07-27 20:06:16','2020-07-27 20:06:16','',714,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1007-1.jpg',0,'attachment','image/jpeg',0),(2107,2,'2020-07-27 20:06:47','2020-07-27 20:06:47','','IMG_1007','','inherit','closed','closed','','img_1007-3','','','2020-07-27 20:06:47','2020-07-27 20:06:47','',714,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1007-2.jpg',0,'attachment','image/jpeg',0),(2115,2,'2020-07-27 20:23:58','2020-07-27 20:23:58','','IMG_1008 (1)','','inherit','closed','closed','','img_1008-1','','','2020-07-27 20:23:58','2020-07-27 20:23:58','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1008-1.pdf',0,'attachment','application/pdf',0),(2116,2,'2020-07-27 20:26:05','2020-07-27 20:26:05','','IMG_1008 (1)','','inherit','closed','closed','','img_1008-1-2','','','2020-07-27 20:26:05','2020-07-27 20:26:05','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1008-1.jpg',0,'attachment','image/jpeg',0),(2117,2,'2020-07-27 20:31:14','2020-07-27 20:31:14','','Gooseneck Hay Trailer','','inherit','closed','closed','','gooseneck-hay-trailer','','','2020-07-27 20:31:14','2020-07-27 20:31:14','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer-.jpg',0,'attachment','image/jpeg',0),(2118,2,'2020-07-27 20:35:47','2020-07-27 20:35:47','','IMG_1009 (1)','','inherit','closed','closed','','img_1009-1','','','2020-07-27 20:35:47','2020-07-27 20:35:47','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1009-1.jpg',0,'attachment','image/jpeg',0),(2122,2,'2020-07-28 22:56:43','2020-07-28 22:56:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>July 28th, 2020</strong> 1007 hd; last week\'s sale 1211 hd; a year ago 1188 hd. Feeder steers &amp; heifers 600lbs &amp; up-sold $3-6 higher. Feeder cattle under 600lbs sold steady-$2 higher. Cows and bulls sold $5-8 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$152.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$152.00-$176.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$173.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$155.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$143.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$129.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$157.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$117.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$109.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$72.00 - $85.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $71.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 57px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">930lbs @ $130.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 28th, 2020 - Market Report','','publish','closed','open','','july-28th-2020-market-report','','','2020-07-29 00:05:26','2020-07-29 00:05:26','',0,'https://kingsvillelivestock.com/?p=2122',0,'post','',0),(2123,2,'2020-07-28 22:56:43','2020-07-28 22:56:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>July 21st, 2020</strong> 1211 hd; last week\'s sale 1347 hd; year ago 1120 hd. Feeder cattle sold fully steady - $5 higher. Cows and bulls sold $2-3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$127.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$116.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$140.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$127.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.00 - $106.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">STEERSÂ </td>\n<td style=\"width: 204px;\">868lbs @ $127.60</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 204px;\">697lbs @ $146.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 204px;\">681lbs @ $148.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 21st, 2020 - Market Report','','inherit','closed','closed','','2122-revision-v1','','','2020-07-28 22:56:43','2020-07-28 22:56:43','',2122,'https://kingsvillelivestock.com/2020/07/28/2122-revision-v1/',0,'revision','',0),(2124,2,'2020-07-28 22:56:46','2020-07-28 22:56:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>July 21st, 2020</strong> 1211 hd; last week\'s sale 1347 hd; year ago 1120 hd. Feeder cattle sold fully steady - $5 higher. Cows and bulls sold $2-3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$127.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$116.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$140.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$127.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.00 - $106.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 353px; height: 173px;\">\n<tbody>\n<tr>\n<td style=\"width: 133px;\">STEERSÂ </td>\n<td style=\"width: 204px;\">868lbs @ $127.60</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 204px;\">697lbs @ $146.85</td>\n</tr>\n<tr>\n<td style=\"width: 133px;\">STEERS</td>\n<td style=\"width: 204px;\">681lbs @ $148.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 28th, 2020 - Market Report','','inherit','closed','closed','','2122-revision-v1','','','2020-07-28 22:56:46','2020-07-28 22:56:46','',2122,'https://kingsvillelivestock.com/2020/07/28/2122-revision-v1/',0,'revision','',0),(2129,2,'2020-07-29 00:05:10','2020-07-29 00:05:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>July 28th, 2020</strong> 1007 hd; last week\'s sale 1211 hd; a year ago 1188 hd. Feeder steers &amp; heifers 600lbs &amp; up-sold $3-6 higher. Feeder cattle under 600lbs sold steady-$2 higher. Cows and bulls sold $5-8 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$152.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$152.00-$176.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$173.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$155.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$143.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$129.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$157.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$117.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$109.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$72.00 - $85.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $71.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 57px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">930lbs @ $130.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" hover_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 28th, 2020 - Market Report','','inherit','closed','closed','','2122-revision-v1','','','2020-07-29 00:05:10','2020-07-29 00:05:10','',2122,'https://kingsvillelivestock.com/2020/07/29/2122-revision-v1/',0,'revision','',0),(2130,2,'2020-07-29 00:05:22','2020-07-29 00:05:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>July 28th, 2020</strong> 1007 hd; last week\'s sale 1211 hd; a year ago 1188 hd. Feeder steers &amp; heifers 600lbs &amp; up-sold $3-6 higher. Feeder cattle under 600lbs sold steady-$2 higher. Cows and bulls sold $5-8 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$152.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$152.00-$176.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$173.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$155.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$143.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$129.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$157.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$117.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$109.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$72.00 - $85.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $71.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 57px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">930lbs @ $130.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 28th, 2020 - Market Report','','inherit','closed','closed','','2122-revision-v1','','','2020-07-29 00:05:22','2020-07-29 00:05:22','',2122,'https://kingsvillelivestock.com/2020/07/29/2122-revision-v1/',0,'revision','',0),(2132,2,'2020-07-29 14:34:55','2020-07-29 14:34:55','','alum cattle trailer','','inherit','closed','closed','','alum-cattle-trailer','','','2020-07-29 14:34:55','2020-07-29 14:34:55','',714,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/alum-cattle-trailer.jpg',0,'attachment','image/jpeg',0),(2144,2,'2020-07-29 15:11:49','2020-07-29 15:11:49','','Ez Haul Flat Bed','','inherit','closed','closed','','ez-haul-flat-bed','','','2020-07-29 15:11:49','2020-07-29 15:11:49','',714,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/Ez-Haul-Flat-Bed.jpg',0,'attachment','image/jpeg',0),(2145,2,'2020-07-29 15:13:26','2020-07-29 15:13:26','','Ez Haul Flat Bed','','inherit','closed','closed','','ez-haul-flat-bed-2','','','2020-07-29 15:13:26','2020-07-29 15:13:26','',714,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/Ez-Haul-Flat-Bed-1.jpg',0,'attachment','image/jpeg',0),(2146,2,'2020-07-29 15:14:21','2020-07-29 15:14:21','','Ez Haul Flat Bed','','inherit','closed','closed','','ez-haul-flat-bed-3','','','2020-07-29 15:14:21','2020-07-29 15:14:21','',714,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/Ez-Haul-Flat-Bed-2.jpg',0,'attachment','image/jpeg',0),(2147,2,'2020-07-29 15:19:45','2020-07-29 15:19:45','','ez haul flat bed','','inherit','closed','closed','','ez-haul-flat-bed-4','','','2020-07-29 15:19:45','2020-07-29 15:19:45','',714,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/ez-haul-flat-bed-3.jpg',0,'attachment','image/jpeg',0),(2152,2,'2020-07-29 15:40:40','2020-07-29 15:40:40','','wheel corral','','inherit','closed','closed','','wheel-corral','','','2020-07-29 15:40:40','2020-07-29 15:40:40','',714,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/wheel-corral.jpg',0,'attachment','image/jpeg',0),(2153,2,'2020-07-29 15:45:30','2020-07-29 15:45:30','','Wheel Corral','','inherit','closed','closed','','wheel-corral-2','','','2020-07-29 15:45:30','2020-07-29 15:45:30','',714,'https://kingsvillelivestock.com/wp-content/uploads/2020/07/Wheel-Corral.png',0,'attachment','image/png',0),(2157,2,'2020-07-29 15:58:00','2020-07-29 15:58:00',' ','','','publish','closed','closed','','2157','','','2020-07-29 15:58:00','2020-07-29 15:58:00','',0,'https://kingsvillelivestock.com/2020/07/29/2157/',7,'nav_menu_item','',0),(2171,2,'2020-08-03 18:34:48','2020-08-03 18:34:48','','Tuesday, August 4th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-august-4th-feeder-cattle-consignments','','','2020-08-03 18:34:48','2020-08-03 18:34:48','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/Tuesday-August-4th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2178,2,'2020-08-05 15:27:23','2020-08-05 15:27:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]\r\n\r\n<strong>August 4th, 2020</strong> 1676 hd; last week\'s sale 1007 hd; a year ago 1401 hd. Feeder cattle sold steady.Calves sold $2-$3 higher. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]\r\n<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$182.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">400-500</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$181.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">500-600</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">600-700</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$158.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">700-800</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.60</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">800-900</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$124.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">900-1000</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$123.85</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]\r\n<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$173.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">400-500</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$166.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">500-600</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">600-700</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$144.75</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">700-800</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$131.25</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">800-900</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$120.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">900-1000</td>\r\n<td style=\"width: 157px;\">$110.00-$114.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]\r\n<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\r\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 114px;\">300-500</td>\r\n<td style=\"width: 157px;\">$135.00-$165.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 114px;\">500-700</td>\r\n<td style=\"width: 157px;\">$110-$145.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 114px; text-align: left;\">700-800</td>\r\n<td style=\"width: 157px; text-align: left;\">$100.00-$119.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\r\n\r\n<table width=\"329\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 156.5px;\">High Yield</td>\r\n<td style=\"width: 156.5px;\">$71.00 - $82.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Medium Yield</td>\r\n<td style=\"width: 156.5px;\">$63.00 - $70.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Low Yield</td>\r\n<td style=\"width: 156.5px;\">$50.00 - $62.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Bulls</td>\r\n<td style=\"width: 156.5px;\">$80.00 - $107.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\r\n&nbsp;\r\n<table style=\"width: 361px; height: 124px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 135px;\">HEIFERS</td>\r\n<td style=\"width: 210px;\">639lbs @ 144.75</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 135px;\">STEERS</td>\r\n<td style=\"width: 210px;\">558lbs @ 179.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 135px;\">STEERS</td>\r\n<td style=\"width: 210px;\">731lbs @ $150.60</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 4th, 2020 - Market Report','','publish','closed','open','','august-4th-2020-market-report','','','2020-08-05 15:27:33','2020-08-05 15:27:33','',0,'https://kingsvillelivestock.com/?p=2178',0,'post','',0),(2180,2,'2020-08-05 15:27:23','2020-08-05 15:27:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>August 4th, 2020</strong> 1676 hd; last week\'s sale 1007 hd; a year ago 1401 hd. Feeder cattle sold steady.Calves sold $2-$3 higher. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$181.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$124.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$123.85</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$144.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$131.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â   <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$135.00-$165.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$110-$145.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$100.00-$119.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$63.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">639lbs @ 144.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">558lbs @ 179.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">731lbs @ $150.60</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 4th, 2020 - Market Report','','inherit','closed','closed','','2178-revision-v1','','','2020-08-05 15:27:23','2020-08-05 15:27:23','',2178,'https://kingsvillelivestock.com/2020/08/05/2178-revision-v1/',0,'revision','',0),(2181,2,'2020-08-05 15:27:23','2020-08-05 15:27:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>August 4th, 2020</strong> 1676 hd; last week\'s sale 1007 hd; a year ago 1401 hd. Feeder cattle sold steady.Calves sold $2-$3 higher. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$181.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$124.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$123.85</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$144.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$131.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â   <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$135.00-$165.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$110-$145.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$100.00-$119.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$63.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">639lbs @ 144.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">558lbs @ 179.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">731lbs @ $150.60</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 28th, 2020 - Market Report','','inherit','closed','closed','','2178-revision-v1','','','2020-08-05 15:27:23','2020-08-05 15:27:23','',2178,'https://kingsvillelivestock.com/2020/08/05/2178-revision-v1/',0,'revision','',0),(2183,2,'2020-08-05 15:27:26','2020-08-05 15:27:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>August 4th, 2020</strong> 1676 hd; last week\'s sale 1007 hd; a year ago 1401 hd. Feeder cattle sold steady.Calves sold $2-$3 higher. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$181.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$124.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$123.85</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$144.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$131.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â   <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$135.00-$165.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$110-$145.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$100.00-$119.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$63.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">639lbs @ 144.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">558lbs @ 179.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">731lbs @ $150.60</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 4th, 2020 - Market Report','','inherit','closed','closed','','2178-revision-v1','','','2020-08-05 15:27:26','2020-08-05 15:27:26','',2178,'https://kingsvillelivestock.com/2020/08/05/2178-revision-v1/',0,'revision','',0),(2184,2,'2020-08-05 15:27:33','2020-08-05 15:27:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]\r\n\r\n<strong>August 4th, 2020</strong> 1676 hd; last week\'s sale 1007 hd; a year ago 1401 hd. Feeder cattle sold steady.Calves sold $2-$3 higher. Cows and bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]\r\n<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$182.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">400-500</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$181.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">500-600</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">600-700</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$158.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">700-800</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.60</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">800-900</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$124.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">900-1000</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$123.85</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]\r\n<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$173.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">400-500</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$166.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">500-600</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">600-700</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$144.75</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">700-800</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$131.25</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">800-900</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$120.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">900-1000</td>\r\n<td style=\"width: 157px;\">$110.00-$114.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]\r\n<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\r\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 114px;\">300-500</td>\r\n<td style=\"width: 157px;\">$135.00-$165.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 114px;\">500-700</td>\r\n<td style=\"width: 157px;\">$110-$145.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 114px; text-align: left;\">700-800</td>\r\n<td style=\"width: 157px; text-align: left;\">$100.00-$119.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\r\n\r\n<table width=\"329\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 156.5px;\">High Yield</td>\r\n<td style=\"width: 156.5px;\">$71.00 - $82.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Medium Yield</td>\r\n<td style=\"width: 156.5px;\">$63.00 - $70.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Low Yield</td>\r\n<td style=\"width: 156.5px;\">$50.00 - $62.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Bulls</td>\r\n<td style=\"width: 156.5px;\">$80.00 - $107.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\r\n&nbsp;\r\n<table style=\"width: 361px; height: 124px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 135px;\">HEIFERS</td>\r\n<td style=\"width: 210px;\">639lbs @ 144.75</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 135px;\">STEERS</td>\r\n<td style=\"width: 210px;\">558lbs @ 179.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 135px;\">STEERS</td>\r\n<td style=\"width: 210px;\">731lbs @ $150.60</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 4th, 2020 - Market Report','','inherit','closed','closed','','2178-revision-v1','','','2020-08-05 15:27:33','2020-08-05 15:27:33','',2178,'https://kingsvillelivestock.com/2020/08/05/2178-revision-v1/',0,'revision','',0),(2192,2,'2020-08-08 15:18:53','2020-08-08 15:18:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Call to Action\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_fullwidth_header title=\"Trailers For Sale\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-30.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Event Section\" _builder_version=\"4.2\" custom_padding=\"60px||60px||true|false\" animation_style=\"zoom\" animation_intensity_zoom=\"6%\" animation_starting_opacity=\"100%\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" text_orientation=\"center\"]<p>We carry a wide variety of trailers to meet all of your needs. Â </p>\n<p><strong><a href=\"https://kingsvillelivestock.com/contact/\">Contact us</a></strong> for a FREE QUOTE today.</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><img class=\"wp-image-2101 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG-1006-scaled-e1595879726664-300x225.jpg\" alt=\"\" width=\"147\" height=\"110\" />Â  Â  2020 Eby 7\'1\" X 24\' Punch Panel Maverick Livestock Trailer. 14 ply tires, 7k axels, Alum. wheels, &amp; 2 cross gates $24,500.00</p>\n<p><img class=\"wp-image-2106 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1007-1-300x225.jpg\" alt=\"\" width=\"151\" height=\"113\" />Â  Â 2019 Gooseneck 6\'8\" X 24\' Livestock Trailer. Tarp top, rubber floors, 12 ply tires, 7k axels. $13,600.00</p>\n<p>&nbsp;</p>\n<p><img class=\"wp-image-2132 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/alum-cattle-trailer-300x169.jpg\" alt=\"\" width=\"165\" height=\"93\" />Â  1998 6\'8\" X 20\' Alumalite Livestock Trailer, 14 ply tires. $10,000.00</p>\n<p><img class=\"wp-image-2116 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1008-1-208x300.jpg\" alt=\"\" width=\"102\" height=\"147\" />Â  EZ Haul 32\' Bumper Pull Hay Trailer. 6 Bale, $4,650.00</p>\n<p><img class=\"wp-image-2117 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" alt=\"\" width=\"101\" height=\"135\" />Â  EZ Haul 32\' Gooseneck Hay Trailer. 6 Bale, $4,950.00</p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"97\" height=\"130\" />EZ Haul 36\' Gooseneck Hay Trailer. 7 Bale, $5,050.00</p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"100\" height=\"134\" />EZ Haul 42\' Gooseneck Hay Trailer. 8 Bale, $5,450.00</p>\n<p><img class=\"wp-image-2146 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Ez-Haul-Flat-Bed-2-300x225.jpg\" alt=\"\" width=\"139\" height=\"104\" />Â  Â 27\' EZ Haul Flat Bed. 22+5 Dove, 3 ramps, low profile, 10k axels, 14 ply tires. $10,885.00</p>\n<p><img class=\"wp-image-2147 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/ez-haul-flat-bed-3-300x225.jpg\" alt=\"\" width=\"144\" height=\"108\" /> EZ Haul 20\' Flat Bed Bumper Pull. 18+2 Dove, 2 4\' ramps, 7k axels, 10 ply tires. $4,525.00</p>\n<p><img class=\"wp-image-2153 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Wheel-Corral-300x185.png\" alt=\"\" width=\"172\" height=\"106\" /> Diamond \"W\" Wheel Corral $15,800.00</p>\n<h2>For additional questions about the trailers or wheel corral call the office @ 816-597-3331 or Derrick @ 816-726-3456</h2>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\"][et_pb_row _builder_version=\"4.4.4\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.4\"][/et_pb_column][/et_pb_row][/et_pb_section]','TRAILERS FOR SALE','','inherit','closed','closed','','714-revision-v1','','','2020-08-08 15:18:53','2020-08-08 15:18:53','',714,'https://kingsvillelivestock.com/2020/08/08/714-revision-v1/',0,'revision','',0),(2193,2,'2020-08-08 15:19:34','2020-08-08 15:19:34','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Call to Action\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_fullwidth_header title=\"Trailers For Sale\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-30.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Event Section\" _builder_version=\"4.2\" custom_padding=\"60px||60px||true|false\" animation_style=\"zoom\" animation_intensity_zoom=\"6%\" animation_starting_opacity=\"100%\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" text_orientation=\"center\"]<p>We carry a wide variety of trailers to meet all of your needs. Â </p>\n<p><strong><a href=\"https://kingsvillelivestock.com/contact/\">Contact us</a></strong> for a FREE QUOTE today.</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><img class=\"wp-image-2101 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG-1006-scaled-e1595879726664-300x225.jpg\" alt=\"\" width=\"147\" height=\"110\" />Â  Â  2020 Eby 7\'1\" X 24\' Punch Panel Maverick Livestock Trailer. 14 ply tires, 7k axels, Alum. wheels, &amp; 2 cross gates $24,500.00</p>\n<p><img class=\"wp-image-2106 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1007-1-300x225.jpg\" alt=\"\" width=\"151\" height=\"113\" />Â  Â 2019 Gooseneck 6\'8\" X 24\' Livestock Trailer. Tarp top, rubber floors, 12 ply tires, 7k axels. $13,600.00</p>\n<p>&nbsp;</p>\n<p><img class=\"wp-image-2132 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/alum-cattle-trailer-300x169.jpg\" alt=\"\" width=\"165\" height=\"93\" />Â  1998 6\'8\" X 20\' Alumalite Livestock Trailer, 14 ply tires. $10,000.00</p>\n<p><img class=\"wp-image-2116 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1008-1-208x300.jpg\" alt=\"\" width=\"102\" height=\"147\" />Â  EZ Haul 32\' Bumper Pull Hay Trailer. 6 Bale, $4,650.00</p>\n<p><img class=\"wp-image-2117 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" alt=\"\" width=\"101\" height=\"135\" />Â  EZ Haul 32\' Gooseneck Hay Trailer. 6 Bale, $4,950.00</p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"97\" height=\"130\" />EZ Haul 36\' Gooseneck Hay Trailer. 7 Bale, $5,050.00</p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"100\" height=\"134\" />EZ Haul 42\' Gooseneck Hay Trailer. 8 Bale, $5,550.00</p>\n<p><img class=\"wp-image-2146 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Ez-Haul-Flat-Bed-2-300x225.jpg\" alt=\"\" width=\"139\" height=\"104\" />Â  Â 27\' EZ Haul Flat Bed. 22+5 Dove, 3 ramps, low profile, 10k axels, 14 ply tires. $10,885.00</p>\n<p><img class=\"wp-image-2147 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/ez-haul-flat-bed-3-300x225.jpg\" alt=\"\" width=\"144\" height=\"108\" /> EZ Haul 20\' Flat Bed Bumper Pull. 18+2 Dove, 2 4\' ramps, 7k axels, 10 ply tires. $4,525.00</p>\n<p><img class=\"wp-image-2153 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Wheel-Corral-300x185.png\" alt=\"\" width=\"172\" height=\"106\" /> Diamond \"W\" Wheel Corral $15,800.00</p>\n<h2>For additional questions about the trailers or wheel corral call the office @ 816-597-3331 or Derrick @ 816-726-3456</h2>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\"][et_pb_row _builder_version=\"4.4.4\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.4\"][/et_pb_column][/et_pb_row][/et_pb_section]','TRAILERS FOR SALE','','inherit','closed','closed','','714-revision-v1','','','2020-08-08 15:19:34','2020-08-08 15:19:34','',714,'https://kingsvillelivestock.com/2020/08/08/714-revision-v1/',0,'revision','',0),(2196,2,'2020-08-10 17:05:25','2020-08-10 17:05:25','','Tuesday, August 11th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-august-11th-feeder-cattle-consignments','','','2020-08-10 17:05:25','2020-08-10 17:05:25','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/Tuesday-August-11th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2204,2,'2020-08-12 16:05:32','2020-08-12 16:05:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>August 11th, 2020</strong> 1217 hd; last week\'s sale 1676 hd; a year ago 494 hd. Feeder cattle sold $2-$4 higher. Cows and bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.50-$151.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$124.50</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$154.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$143.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$121.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$103.00-$113.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$137.00-$172.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$116-$155.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$100.00-$120.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $103.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">628lbs @ 143.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">704lbs @ 139.60</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">711lbs @ 151.50</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">885lbs @ $133.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 11th, 2020 - Market Report','','publish','closed','open','','august-11th-2020-market-report','','','2020-08-12 16:45:38','2020-08-12 16:45:38','',0,'https://kingsvillelivestock.com/?p=2204',0,'post','',0),(2206,2,'2020-08-12 16:05:32','2020-08-12 16:05:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>August 11th, 2020</strong> 1217 hd; last week\'s sale 1676 hd; a year ago 494 hd. Feeder cattle sold $2-$4 higher. Cows and bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.50-$151.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$124.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$154.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$143.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$121.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$103.00-$113.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$137.00-$172.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$116-$155.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$100.00-$120.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $103.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">628lbs @ 143.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">704lbs @ 139.60</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">711lbs @ 151.50</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">885lbs @ $133.85</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than from the reported prices below.</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 11th, 2020 - Market Report','','inherit','closed','closed','','2204-revision-v1','','','2020-08-12 16:05:32','2020-08-12 16:05:32','',2204,'https://kingsvillelivestock.com/2020/08/12/2204-revision-v1/',0,'revision','',0),(2207,2,'2020-08-12 16:05:32','2020-08-12 16:05:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>August 11th, 2020</strong> 1217 hd; last week\'s sale 1676 hd; a year ago 494 hd. Feeder cattle sold $2-$4 higher. Cows and bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.50-$151.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$124.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$154.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$143.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$121.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$103.00-$113.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$137.00-$172.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$116-$155.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$100.00-$120.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $103.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">628lbs @ 143.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">704lbs @ 139.60</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">711lbs @ 151.50</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">885lbs @ $133.85</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than from the reported prices below.</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 4th, 2020 - Market Report','','inherit','closed','closed','','2204-revision-v1','','','2020-08-12 16:05:32','2020-08-12 16:05:32','',2204,'https://kingsvillelivestock.com/2020/08/12/2204-revision-v1/',0,'revision','',0),(2208,2,'2020-08-12 16:05:36','2020-08-12 16:05:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>August 11th, 2020</strong> 1217 hd; last week\'s sale 1676 hd; a year ago 494 hd. Feeder cattle sold $2-$4 higher. Cows and bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.50-$151.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$124.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$154.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$143.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$121.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$103.00-$113.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$137.00-$172.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$116-$155.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$100.00-$120.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $103.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">628lbs @ 143.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">704lbs @ 139.60</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">711lbs @ 151.50</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">885lbs @ $133.85</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than from the reported prices below.</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 11th, 2020 - Market Report','','inherit','closed','closed','','2204-revision-v1','','','2020-08-12 16:05:36','2020-08-12 16:05:36','',2204,'https://kingsvillelivestock.com/2020/08/12/2204-revision-v1/',0,'revision','',0),(2209,2,'2020-08-24 17:21:12','2020-08-24 17:21:12','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/TuesdayNovember-28th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-6000\">Tuesday,November 28th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.23.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.23.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale-Saturday, December 16th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.23.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Aust Land &amp; Cattle: </b>Â <b>100 </b>Â Fancy Blk Angus 2 yr. old, 1050lbs bred heifers. All heifers were AI bred on April 17th to Bismarck Blk Angus bulls &amp; cleaned up w/ Kaiser Reg. Angus LBWT bulls. All heifers originated off Star Ranch, had all shots, gentle &amp; start calving Feb. 10th.</li>\n<li><b>Double J Farms: </b><b>26 </b>Blk Sim-Angus 2 yr. old, 1200lbs bred heifers all 1/2 sisters. All Heifers were AI bred on April 29th to Teheama Tahoe &amp; cleaned up w/ Frank Hazelrigg Blk Angus Show-Me-Select bulls. All heifers are current on all shots, been ultra sounded twice &amp; gentle. Start calving Feb. 1st.</li>\n<li><b>Randy Meyer Inc. Complete Dispersal: </b><b>40 </b>Red Angus 3-4 yr. old, 2nd period. <b>25</b> Red Angus 5-6Â  yr. old,2nd period. <b>25</b> Red Angus 7 yr. old cows,2nd period. <b>25</b> Red Angus 8-9 yr. old cows,2nd period. <b>25</b> Red Angus SS,2nd period. <b>8 </b>Red Angus 6-8 yr. old cows w/ 250lbs calves at side. <b>10 </b>Red Angus 650lbs open heifers. All cows bred Reg. Red Angus Bulls. Bloodlines on bulls: Son of Mulberry, KJL/CLZB Complete, Milwillan Marble Bar, Bieber Rollin Deep, HXC Declaration, Brown JYJ Redemption, &amp; WFL Merlin. Cows start calving on Feb.10th, gentle, had all shots &amp; home-raised, Outstanding set of cows &amp; 1st time to town. Cows will sell at 12 noon on Saturday!Â  Check out our website for pictures &amp; videos!<a href=\"https://drive.google.com/drive/folders/1FbgRlISzlBo2mVetq6TCkAvA9JhgfwcU?usp=sharing\">Randy Meyer Bull Reg info &amp; videos</a></li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','publish','closed','closed','','cattle-sales-2','','','2023-11-27 21:06:40','2023-11-27 21:06:40','',0,'https://kingsvillelivestock.com/?page_id=2209',0,'page','',0),(2210,2,'2020-08-12 16:44:42','2020-08-12 16:44:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>August 11th, 2020</strong> 1217 hd; last week\'s sale 1676 hd; a year ago 494 hd. Feeder cattle sold $2-$4 higher. Cows and bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.50-$151.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$124.50</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$154.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$143.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$121.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$103.00-$113.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$137.00-$172.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$116-$155.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$100.00-$120.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $103.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">628lbs @ 143.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">704lbs @ 139.60</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">711lbs @ 151.50</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">885lbs @ $133.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 11th, 2020 - Market Report','','inherit','closed','closed','','2204-revision-v1','','','2020-08-12 16:44:42','2020-08-12 16:44:42','',2204,'https://kingsvillelivestock.com/2020/08/12/2204-revision-v1/',0,'revision','',0),(2211,2,'2020-08-12 16:45:34','2020-08-12 16:45:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>August 11th, 2020</strong> 1217 hd; last week\'s sale 1676 hd; a year ago 494 hd. Feeder cattle sold $2-$4 higher. Cows and bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.50-$151.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$124.50</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$154.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$143.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$121.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$103.00-$113.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$137.00-$172.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$116-$155.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$100.00-$120.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $103.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">628lbs @ 143.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">704lbs @ 139.60</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">711lbs @ 151.50</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">885lbs @ $133.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 11th, 2020 - Market Report','','inherit','closed','closed','','2204-revision-v1','','','2020-08-12 16:45:34','2020-08-12 16:45:34','',2204,'https://kingsvillelivestock.com/2020/08/12/2204-revision-v1/',0,'revision','',0),(2216,2,'2020-08-12 17:27:49','2020-08-12 17:27:49','','Labor Day Sale Flyer 2020','','inherit','closed','closed','','labor-day-sale-flyer-2020','','','2020-08-12 17:27:49','2020-08-12 17:27:49','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/Labor-Day-Sale-Flyer-2020.pdf',0,'attachment','application/pdf',0),(2218,2,'2020-08-12 17:29:33','2020-08-12 17:29:33','','Labor Day Sale Flyer 2020','','inherit','closed','closed','','labor-day-sale-flyer-2020-2','','','2020-08-12 17:29:33','2020-08-12 17:29:33','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/Labor-Day-Sale-Flyer-2020-1.pdf',0,'attachment','application/pdf',0),(2225,2,'2020-08-17 17:22:25','2020-08-17 17:22:25','','Tuesday, August 18th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-august-18th-feeder-cattle-consignments','','','2020-08-17 17:22:25','2020-08-17 17:22:25','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/Tuesday-August-18th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2230,2,'2020-08-17 21:18:58','2020-08-17 21:18:58','','Tuesday, August 18th Feeder Cattle Consignments (9)','','inherit','closed','closed','','tuesday-august-18th-feeder-cattle-consignments-9','','','2020-08-17 21:18:58','2020-08-17 21:18:58','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/Tuesday-August-18th-Feeder-Cattle-Consignments-9.pages',0,'attachment','application/vnd.apple.pages',0),(2231,2,'2020-08-17 21:19:31','2020-08-17 21:19:31','','Collins AG Enterprise LLC','','inherit','closed','closed','','collins-ag-enterprise-llc','','','2020-08-17 21:19:31','2020-08-17 21:19:31','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/Collins-AG-Enterprise-LLC.pdf',0,'attachment','application/pdf',0),(2232,2,'2020-08-17 21:20:48','2020-08-17 21:20:48','{{unknown}}','','','publish','closed','closed','','8c8643888c28cc9a93e4f34f36c21d37','','','2020-08-17 21:20:48','2020-08-17 21:20:48','',0,'https://kingsvillelivestock.com/2020/08/17/8c8643888c28cc9a93e4f34f36c21d37/',0,'oembed_cache','',0),(2246,2,'2020-08-19 15:21:04','2020-08-19 15:21:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>August 18th, 2020</strong> 1404 hd; last week\'s sale 1217 hd; a year ago 896 hd. Feeder cattle weighing 600-800 lbs sold steady-$5 higher. Heifers weighing 500-750 lbs sold steady - $3 higher. Cows sold steady-$2 lower. Bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$167.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">400-500</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$179.25</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">500-600</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">600-700</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">700-800</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.60</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">800-900</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.75</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">900-1000</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$122.00</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">400-500</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">500-600</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$157.25</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">600-700</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$150.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">700-800</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$142.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">800-900</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$134.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">900-1000</td>\r\n<td style=\"width: 157px;\">$100.00-$110.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\r\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 114px;\">300-500</td>\r\n<td style=\"width: 157px;\">$144.00-$160.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 114px;\">500-700</td>\r\n<td style=\"width: 157px;\">$120-$154.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 114px; text-align: left;\">700-800</td>\r\n<td style=\"width: 157px; text-align: left;\">$114.00-$120.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\r\n\r\n<table width=\"329\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 156.5px;\">High Yield</td>\r\n<td style=\"width: 156.5px;\">$63.00 - $75.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Medium Yield</td>\r\n<td style=\"width: 156.5px;\">$54.00 - $62.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Low Yield</td>\r\n<td style=\"width: 156.5px;\">$45.00 - $53.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Bulls</td>\r\n<td style=\"width: 156.5px;\">$70.00 - $98.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\r\n&nbsp;\r\n<table style=\"width: 361px; height: 124px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 135px;\">HEIFERS</td>\r\n<td style=\"width: 210px;\">820lbs @ 134.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 135px;\">HEIFERS</td>\r\n<td style=\"width: 210px;\">729lbs @ 142.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 135px;\">STEERS</td>\r\n<td style=\"width: 210px;\">789lbs @ 148.10</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 135px;\">STEERS</td>\r\n<td style=\"width: 210px;\">603lbs @ $170.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 18th, 2020 - Market Report','','publish','closed','open','','august-11th-2020-market-report-2','','','2020-08-19 15:32:23','2020-08-19 15:32:23','',0,'https://kingsvillelivestock.com/?p=2246',0,'post','',0),(2248,2,'2020-08-19 15:21:04','2020-08-19 15:21:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>August 18th, 2020</strong> 1404 hd; last week\'s sale 1217 hd; a year ago 896 hd. Feeder cattle weighing 600--800 lbs sold steady -$5 higher. Heifers weighing 500-750 lbs sold steady - $3 higher. Cows sold steady-$2 lower. Bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$179.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$122.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$157.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$144.00-$160.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$120-$154.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$114.00-$120.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$63.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">820lbs @ 134.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">729lbs @ 142.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">789lbs @ 148.10</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">603lbs @ $170.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 11th, 2020 - Market Report','','inherit','closed','closed','','2246-revision-v1','','','2020-08-19 15:21:04','2020-08-19 15:21:04','',2246,'https://kingsvillelivestock.com/2020/08/19/2246-revision-v1/',0,'revision','',0),(2249,2,'2020-08-19 15:22:47','2020-08-19 15:22:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>August 18th, 2020</strong> 1404 hd; last week\'s sale 1217 hd; a year ago 896 hd. Feeder cattle weighing 600--800 lbs sold steady -$5 higher. Heifers weighing 500-750 lbs sold steady - $3 higher. Cows sold steady-$2 lower. Bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$179.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$122.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$157.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$144.00-$160.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$120-$154.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$114.00-$120.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$63.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">820lbs @ 134.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">729lbs @ 142.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">789lbs @ 148.10</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">603lbs @ $170.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 11th, 2020 - Market Report','','inherit','closed','closed','','2246-revision-v1','','','2020-08-19 15:22:47','2020-08-19 15:22:47','',2246,'https://kingsvillelivestock.com/2020/08/19/2246-revision-v1/',0,'revision','',0),(2250,2,'2020-08-19 15:22:58','2020-08-19 15:22:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]\r\n\r\n<strong>August 18th, 2020</strong> 1404 hd; last week\'s sale 1217 hd; a year ago 896 hd. Feeder cattle weighing 600--800 lbs sold steady -$5 higher. Heifers weighing 500-750 lbs sold steady - $3 higher. Cows sold steady-$2 lower. Bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]\r\n<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$167.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">400-500</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$179.25</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">500-600</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">600-700</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">700-800</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.60</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">800-900</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.75</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">900-1000</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$122.00</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]\r\n<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">400-500</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">500-600</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$157.25</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">600-700</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$150.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">700-800</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$142.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">800-900</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$134.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">900-1000</td>\r\n<td style=\"width: 157px;\">$100.00-$110.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]\r\n<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\r\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 114px;\">300-500</td>\r\n<td style=\"width: 157px;\">$144.00-$160.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 114px;\">500-700</td>\r\n<td style=\"width: 157px;\">$120-$154.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 114px; text-align: left;\">700-800</td>\r\n<td style=\"width: 157px; text-align: left;\">$114.00-$120.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\r\n\r\n<table width=\"329\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 156.5px;\">High Yield</td>\r\n<td style=\"width: 156.5px;\">$63.00 - $75.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Medium Yield</td>\r\n<td style=\"width: 156.5px;\">$54.00 - $62.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Low Yield</td>\r\n<td style=\"width: 156.5px;\">$45.00 - $53.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Bulls</td>\r\n<td style=\"width: 156.5px;\">$70.00 - $98.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\r\n&nbsp;\r\n<table style=\"width: 361px; height: 124px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 135px;\">HEIFERS</td>\r\n<td style=\"width: 210px;\">820lbs @ 134.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 135px;\">HEIFERS</td>\r\n<td style=\"width: 210px;\">729lbs @ 142.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 135px;\">STEERS</td>\r\n<td style=\"width: 210px;\">789lbs @ 148.10</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 135px;\">STEERS</td>\r\n<td style=\"width: 210px;\">603lbs @ $170.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]\r\n<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 18th, 2020 - Market Report','','inherit','closed','closed','','2246-revision-v1','','','2020-08-19 15:22:58','2020-08-19 15:22:58','',2246,'https://kingsvillelivestock.com/2020/08/19/2246-revision-v1/',0,'revision','',0),(2251,2,'2020-08-19 15:30:07','2020-08-19 15:30:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<strong>August 18th, 2020</strong> 1404 hd; last week\'s sale 1217 hd; a year ago 896 hd. Feeder cattle weighing 600--800 lbs sold steady -$5 higher. Heifers weighing 500-750 lbs sold steady - $3 higher. Cows sold steady-$2 lower. Bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$167.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">400-500</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$179.25</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">500-600</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">600-700</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">700-800</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.60</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">800-900</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.75</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">900-1000</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$122.00</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">400-500</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">500-600</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$157.25</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">600-700</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$150.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">700-800</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$142.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">800-900</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$134.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">900-1000</td>\r\n<td style=\"width: 157px;\">$100.00-$110.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\r\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 114px;\">300-500</td>\r\n<td style=\"width: 157px;\">$144.00-$160.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 114px;\">500-700</td>\r\n<td style=\"width: 157px;\">$120-$154.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 114px; text-align: left;\">700-800</td>\r\n<td style=\"width: 157px; text-align: left;\">$114.00-$120.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\r\n\r\n<table width=\"329\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 156.5px;\">High Yield</td>\r\n<td style=\"width: 156.5px;\">$63.00 - $75.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Medium Yield</td>\r\n<td style=\"width: 156.5px;\">$54.00 - $62.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Low Yield</td>\r\n<td style=\"width: 156.5px;\">$45.00 - $53.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Bulls</td>\r\n<td style=\"width: 156.5px;\">$70.00 - $98.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\r\n&nbsp;\r\n<table style=\"width: 361px; height: 124px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 135px;\">HEIFERS</td>\r\n<td style=\"width: 210px;\">820lbs @ 134.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 135px;\">HEIFERS</td>\r\n<td style=\"width: 210px;\">729lbs @ 142.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 135px;\">STEERS</td>\r\n<td style=\"width: 210px;\">789lbs @ 148.10</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 135px;\">STEERS</td>\r\n<td style=\"width: 210px;\">603lbs @ $170.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 18th, 2020 - Market Report','','inherit','closed','closed','','2246-revision-v1','','','2020-08-19 15:30:07','2020-08-19 15:30:07','',2246,'https://kingsvillelivestock.com/2020/08/19/2246-revision-v1/',0,'revision','',0),(2253,2,'2020-08-19 15:32:23','2020-08-19 15:32:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>August 18th, 2020</strong> 1404 hd; last week\'s sale 1217 hd; a year ago 896 hd. Feeder cattle weighing 600-800 lbs sold steady-$5 higher. Heifers weighing 500-750 lbs sold steady - $3 higher. Cows sold steady-$2 lower. Bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$167.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">400-500</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$179.25</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">500-600</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">600-700</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">700-800</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.60</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">800-900</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.75</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">900-1000</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$122.00</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">400-500</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">500-600</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$157.25</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">600-700</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$150.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">700-800</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$142.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">800-900</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$134.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">900-1000</td>\r\n<td style=\"width: 157px;\">$100.00-$110.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\r\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 114px;\">300-500</td>\r\n<td style=\"width: 157px;\">$144.00-$160.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 114px;\">500-700</td>\r\n<td style=\"width: 157px;\">$120-$154.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 114px; text-align: left;\">700-800</td>\r\n<td style=\"width: 157px; text-align: left;\">$114.00-$120.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\r\n\r\n<table width=\"329\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 156.5px;\">High Yield</td>\r\n<td style=\"width: 156.5px;\">$63.00 - $75.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Medium Yield</td>\r\n<td style=\"width: 156.5px;\">$54.00 - $62.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Low Yield</td>\r\n<td style=\"width: 156.5px;\">$45.00 - $53.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Bulls</td>\r\n<td style=\"width: 156.5px;\">$70.00 - $98.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\r\n&nbsp;\r\n<table style=\"width: 361px; height: 124px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 135px;\">HEIFERS</td>\r\n<td style=\"width: 210px;\">820lbs @ 134.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 135px;\">HEIFERS</td>\r\n<td style=\"width: 210px;\">729lbs @ 142.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 135px;\">STEERS</td>\r\n<td style=\"width: 210px;\">789lbs @ 148.10</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 135px;\">STEERS</td>\r\n<td style=\"width: 210px;\">603lbs @ $170.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 18th, 2020 - Market Report','','inherit','closed','closed','','2246-revision-v1','','','2020-08-19 15:32:23','2020-08-19 15:32:23','',2246,'https://kingsvillelivestock.com/2020/08/19/2246-revision-v1/',0,'revision','',0),(2267,2,'2020-08-24 17:21:05','2020-08-24 17:21:05','','Tuesday, August 25th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-august-25th-feeder-cattle-consignments','','','2020-08-24 17:21:05','2020-08-24 17:21:05','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/Tuesday-August-25th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2268,2,'2020-08-24 17:21:12','2020-08-24 17:21:12',' ','','','publish','closed','closed','','2268','','','2020-08-24 17:21:12','2020-08-24 17:21:12','',0,'https://kingsvillelivestock.com/2020/08/24/2268/',9,'nav_menu_item','',0),(2273,2,'2020-08-24 20:01:25','2020-08-24 20:01:25','','IMG_0138','','inherit','closed','closed','','img_0138','','','2020-08-24 20:01:25','2020-08-24 20:01:25','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0138.jpg',0,'attachment','image/jpeg',0),(2274,2,'2020-08-24 20:01:48','2020-08-24 20:01:48','','IMG_0138','','inherit','closed','closed','','img_0138-2','','','2020-08-24 20:01:48','2020-08-24 20:01:48','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0138-1.jpg',0,'attachment','image/jpeg',0),(2275,2,'2020-08-24 20:02:00','2020-08-24 20:02:00','','IMG_0140','','inherit','closed','closed','','img_0140','','','2020-08-24 20:02:00','2020-08-24 20:02:00','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0140.jpg',0,'attachment','image/jpeg',0),(2276,2,'2020-08-24 20:02:11','2020-08-24 20:02:11','','IMG_0141','','inherit','closed','closed','','img_0141','','','2020-08-24 20:02:11','2020-08-24 20:02:11','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0141.jpg',0,'attachment','image/jpeg',0),(2277,2,'2020-08-24 20:02:22','2020-08-24 20:02:22','','IMG_0139','','inherit','closed','closed','','img_0139','','','2020-08-24 20:02:22','2020-08-24 20:02:22','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0139.jpg',0,'attachment','image/jpeg',0),(2278,2,'2020-08-24 20:02:37','2020-08-24 20:02:37','','IMG_0143','','inherit','closed','closed','','img_0143','','','2020-08-24 20:02:37','2020-08-24 20:02:37','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0143.jpg',0,'attachment','image/jpeg',0),(2279,2,'2020-08-24 20:02:50','2020-08-24 20:02:50','','IMG_0025 (1)','','inherit','closed','closed','','img_0025-1','','','2020-08-24 20:02:50','2020-08-24 20:02:50','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0025-1.jpg',0,'attachment','image/jpeg',0),(2280,2,'2020-08-24 20:02:56','2020-08-24 20:02:56','','IMG_0025','','inherit','closed','closed','','img_0025','','','2020-08-24 20:02:56','2020-08-24 20:02:56','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0025.jpg',0,'attachment','image/jpeg',0),(2281,2,'2020-08-24 20:03:02','2020-08-24 20:03:02','','IMG_0026','','inherit','closed','closed','','img_0026','','','2020-08-24 20:03:02','2020-08-24 20:03:02','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0026.jpg',0,'attachment','image/jpeg',0),(2282,2,'2020-08-24 20:03:08','2020-08-24 20:03:08','','IMG_0027','','inherit','closed','closed','','img_0027','','','2020-08-24 20:03:08','2020-08-24 20:03:08','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0027.jpg',0,'attachment','image/jpeg',0),(2283,2,'2020-08-24 20:03:14','2020-08-24 20:03:14','','IMG_0028','','inherit','closed','closed','','img_0028','','','2020-08-24 20:03:14','2020-08-24 20:03:14','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0028.jpg',0,'attachment','image/jpeg',0),(2284,2,'2020-08-24 20:03:20','2020-08-24 20:03:20','','IMG_0029','','inherit','closed','closed','','img_0029','','','2020-08-24 20:03:20','2020-08-24 20:03:20','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0029.jpg',0,'attachment','image/jpeg',0),(2285,2,'2020-08-24 20:03:27','2020-08-24 20:03:27','','IMG_0031','','inherit','closed','closed','','img_0031','','','2020-08-24 20:03:27','2020-08-24 20:03:27','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0031.jpg',0,'attachment','image/jpeg',0),(2286,2,'2020-08-24 20:03:32','2020-08-24 20:03:32','','IMG_0032','','inherit','closed','closed','','img_0032','','','2020-08-24 20:03:32','2020-08-24 20:03:32','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0032.jpg',0,'attachment','image/jpeg',0),(2287,2,'2020-08-24 20:03:38','2020-08-24 20:03:38','','IMG_0033','','inherit','closed','closed','','img_0033','','','2020-08-24 20:03:38','2020-08-24 20:03:38','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0033.jpg',0,'attachment','image/jpeg',0),(2288,2,'2020-08-24 20:03:49','2020-08-24 20:03:49','','IMG_0034','','inherit','closed','closed','','img_0034','','','2020-08-24 20:03:49','2020-08-24 20:03:49','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0034.jpg',0,'attachment','image/jpeg',0),(2289,2,'2020-08-24 20:03:57','2020-08-24 20:03:57','','IMG_0035','','inherit','closed','closed','','img_0035','','','2020-08-24 20:03:57','2020-08-24 20:03:57','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0035.jpg',0,'attachment','image/jpeg',0),(2290,2,'2020-08-24 20:04:06','2020-08-24 20:04:06','','IMG_0037','','inherit','closed','closed','','img_0037','','','2020-08-24 20:04:06','2020-08-24 20:04:06','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0037.jpg',0,'attachment','image/jpeg',0),(2291,2,'2020-08-24 20:04:15','2020-08-24 20:04:15','','IMG_0036','','inherit','closed','closed','','img_0036','','','2020-08-24 20:04:15','2020-08-24 20:04:15','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0036.jpg',0,'attachment','image/jpeg',0),(2292,2,'2020-08-24 20:04:24','2020-08-24 20:04:24','','IMG_0038','','inherit','closed','closed','','img_0038','','','2020-08-24 20:04:24','2020-08-24 20:04:24','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0038.jpg',0,'attachment','image/jpeg',0),(2293,2,'2020-08-24 20:04:40','2020-08-24 20:04:40','','IMG_0039','','inherit','closed','closed','','img_0039','','','2020-08-24 20:04:40','2020-08-24 20:04:40','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0039.jpg',0,'attachment','image/jpeg',0),(2294,2,'2020-08-24 20:04:49','2020-08-24 20:04:49','','IMG_0040','','inherit','closed','closed','','img_0040','','','2020-08-24 20:04:49','2020-08-24 20:04:49','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0040.jpg',0,'attachment','image/jpeg',0),(2295,2,'2020-08-24 20:04:55','2020-08-24 20:04:55','','IMG_0041','','inherit','closed','closed','','img_0041','','','2020-08-24 20:04:55','2020-08-24 20:04:55','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0041.jpg',0,'attachment','image/jpeg',0),(2296,2,'2020-08-24 20:05:47','2020-08-24 20:05:47','','IMG_0043','','inherit','closed','closed','','img_0043','','','2020-08-24 20:05:47','2020-08-24 20:05:47','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0043.jpg',0,'attachment','image/jpeg',0),(2297,2,'2020-08-24 20:06:06','2020-08-24 20:06:06','','IMG_0044','','inherit','closed','closed','','img_0044','','','2020-08-24 20:06:06','2020-08-24 20:06:06','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0044.jpg',0,'attachment','image/jpeg',0),(2298,2,'2020-08-24 20:06:27','2020-08-24 20:06:27','','IMG_0047','','inherit','closed','closed','','img_0047','','','2020-08-24 20:06:27','2020-08-24 20:06:27','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0047.jpg',0,'attachment','image/jpeg',0),(2299,2,'2020-08-24 20:06:54','2020-08-24 20:06:54','','IMG_0050','','inherit','closed','closed','','img_0050','','','2020-08-24 20:06:54','2020-08-24 20:06:54','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0050.jpg',0,'attachment','image/jpeg',0),(2300,2,'2020-08-24 20:07:23','2020-08-24 20:07:23','','IMG_0051','','inherit','closed','closed','','img_0051','','','2020-08-24 20:07:23','2020-08-24 20:07:23','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0051.jpg',0,'attachment','image/jpeg',0),(2301,2,'2020-08-24 20:07:45','2020-08-24 20:07:45','','IMG_0053','','inherit','closed','closed','','img_0053','','','2020-08-24 20:07:45','2020-08-24 20:07:45','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0053.jpg',0,'attachment','image/jpeg',0),(2302,2,'2020-08-24 20:08:14','2020-08-24 20:08:14','','IMG_0056','','inherit','closed','closed','','img_0056','','','2020-08-24 20:08:14','2020-08-24 20:08:14','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0056.jpg',0,'attachment','image/jpeg',0),(2303,2,'2020-08-24 20:08:39','2020-08-24 20:08:39','','IMG_0061','','inherit','closed','closed','','img_0061','','','2020-08-24 20:08:39','2020-08-24 20:08:39','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0061.jpg',0,'attachment','image/jpeg',0),(2304,2,'2020-08-24 20:09:01','2020-08-24 20:09:01','','IMG_0062','','inherit','closed','closed','','img_0062','','','2020-08-24 20:09:01','2020-08-24 20:09:01','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0062.jpg',0,'attachment','image/jpeg',0),(2305,2,'2020-08-24 20:09:21','2020-08-24 20:09:21','','IMG_0063','','inherit','closed','closed','','img_0063','','','2020-08-24 20:09:21','2020-08-24 20:09:21','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0063.jpg',0,'attachment','image/jpeg',0),(2306,2,'2020-08-24 20:09:38','2020-08-24 20:09:38','','IMG_0067(1)','','inherit','closed','closed','','img_00671','','','2020-08-24 20:09:38','2020-08-24 20:09:38','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_00671.jpg',0,'attachment','image/jpeg',0),(2307,2,'2020-08-24 20:09:55','2020-08-24 20:09:55','','IMG_0068','','inherit','closed','closed','','img_0068','','','2020-08-24 20:09:55','2020-08-24 20:09:55','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0068.jpg',0,'attachment','image/jpeg',0),(2308,2,'2020-08-24 20:10:08','2020-08-24 20:10:08','','IMG_0071','','inherit','closed','closed','','img_0071','','','2020-08-24 20:10:08','2020-08-24 20:10:08','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0071.jpg',0,'attachment','image/jpeg',0),(2309,2,'2020-08-24 20:10:28','2020-08-24 20:10:28','','IMG_0073','','inherit','closed','closed','','img_0073','','','2020-08-24 20:10:28','2020-08-24 20:10:28','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0073.jpg',0,'attachment','image/jpeg',0),(2310,2,'2020-08-24 20:11:16','2020-08-24 20:11:16','','IMG_0076','','inherit','closed','closed','','img_0076','','','2020-08-24 20:11:16','2020-08-24 20:11:16','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0076.jpg',0,'attachment','image/jpeg',0),(2311,2,'2020-08-24 20:11:42','2020-08-24 20:11:42','','IMG_0077','','inherit','closed','closed','','img_0077','','','2020-08-24 20:11:42','2020-08-24 20:11:42','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0077.jpg',0,'attachment','image/jpeg',0),(2312,2,'2020-08-24 20:11:52','2020-08-24 20:11:52','','IMG_0076','','inherit','closed','closed','','img_0076-2','','','2020-08-24 20:11:52','2020-08-24 20:11:52','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/IMG_0076-1.jpg',0,'attachment','image/jpeg',0),(2322,2,'2020-08-26 17:16:26','2020-08-26 17:16:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>August 25th, 2020</strong> 1497 hd; last week\'s sale 1404 hd; a year ago 1188 hd. Feeder steers sold mostly steady compared to last weeks market. Heifers last week sold steady-$2 lower.Â  Cows &amp; bulls sold $2-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$144.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$139.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.50-$117.50</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$164.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$144.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$126.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$140.00-$170.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$80-$150.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$107.00-$135.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $99.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">736lbs @ 134.25</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">688lbs @ 144.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">485lbs @ 185.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 25th, 2020 - Market Report','','publish','closed','open','','august-25th-2020-market-report','','','2020-08-26 17:20:17','2020-08-26 17:20:17','',0,'https://kingsvillelivestock.com/?p=2322',0,'post','',0),(2324,2,'2020-08-26 17:16:26','2020-08-26 17:16:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>August 25th, 2020</strong> 1497 hd; last week\'s sale 1404 hd; a year ago 1188 hd. Feeder steers sold mostly compared to last week. Heifers last week sold steady-$2 lower.Â  Cows &amp; bulls sold $2-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$144.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$139.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.50-$117.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$164.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$144.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$126.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$140.00-$170.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$80-$150.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$107.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $99.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">736lbs @ 134.25</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">688lbs @ 144.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">485lbs @ 185.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 25th, 2020 - Market Report','','inherit','closed','closed','','2322-revision-v1','','','2020-08-26 17:16:26','2020-08-26 17:16:26','',2322,'https://kingsvillelivestock.com/2020/08/26/2322-revision-v1/',0,'revision','',0),(2325,2,'2020-08-26 17:16:26','2020-08-26 17:16:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>August 25th, 2020</strong> 1497 hd; last week\'s sale 1404 hd; a year ago 1188 hd. Feeder steers sold mostly compared to last week. Heifers last week sold steady-$2 lower.Â  Cows &amp; bulls sold $2-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$144.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$139.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.50-$117.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$164.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$144.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$126.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$140.00-$170.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$80-$150.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$107.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $99.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">736lbs @ 134.25</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">688lbs @ 144.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">485lbs @ 185.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 18th, 2020 - Market Report','','inherit','closed','closed','','2322-revision-v1','','','2020-08-26 17:16:26','2020-08-26 17:16:26','',2322,'https://kingsvillelivestock.com/2020/08/26/2322-revision-v1/',0,'revision','',0),(2327,2,'2020-08-26 17:16:29','2020-08-26 17:16:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>August 25th, 2020</strong> 1497 hd; last week\'s sale 1404 hd; a year ago 1188 hd. Feeder steers sold mostly compared to last week. Heifers last week sold steady-$2 lower.Â  Cows &amp; bulls sold $2-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$144.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$139.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.50-$117.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$164.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$144.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$126.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$140.00-$170.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$80-$150.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$107.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $99.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">736lbs @ 134.25</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">688lbs @ 144.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">485lbs @ 185.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 25th, 2020 - Market Report','','inherit','closed','closed','','2322-revision-v1','','','2020-08-26 17:16:29','2020-08-26 17:16:29','',2322,'https://kingsvillelivestock.com/2020/08/26/2322-revision-v1/',0,'revision','',0),(2328,2,'2020-08-26 17:20:17','2020-08-26 17:20:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>August 25th, 2020</strong> 1497 hd; last week\'s sale 1404 hd; a year ago 1188 hd. Feeder steers sold mostly steady compared to last weeks market. Heifers last week sold steady-$2 lower.Â  Cows &amp; bulls sold $2-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$144.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$139.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.50-$117.50</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$164.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$144.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$126.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$140.00-$170.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$80-$150.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$107.00-$135.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $99.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">736lbs @ 134.25</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">688lbs @ 144.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">485lbs @ 185.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 25th, 2020 - Market Report','','inherit','closed','closed','','2322-revision-v1','','','2020-08-26 17:20:17','2020-08-26 17:20:17','',2322,'https://kingsvillelivestock.com/2020/08/26/2322-revision-v1/',0,'revision','',0),(2334,2,'2020-08-26 17:45:01','2020-08-26 17:45:01','','Taylor legal sized','','inherit','closed','closed','','taylor-legal-sized','','','2020-08-26 17:45:01','2020-08-26 17:45:01','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/08/Taylor-legal-sized.pdf',0,'attachment','application/pdf',0),(2341,2,'2020-09-01 00:22:11','2020-09-01 00:22:11','','Tuesday, September 1st Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-september-1st-feeder-cattle-consignments','','','2020-09-01 00:22:11','2020-09-01 00:22:11','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2020/09/Tuesday-September-1st-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2351,2,'2020-09-02 15:49:13','2020-09-02 15:49:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>September 1st, 2020</strong> 1353 hd; last week\'s sale 1497 hd; a year ago 741 hd. Feeder cattle weighing 600lbs &amp; up sold $2-$4.00 higher. All other class sold steady compared to last weeks market. Cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$115.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$131.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$132.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$108.00-$121.35</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$145.00-$160.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$120-$150.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$115.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$85.00 - $99.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">931lbs @ 121.35</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">660lbs @ 141.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">680lbs @ 139.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">844lbs @ 128.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">711lbs @ 143.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">810lbs @ 140.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 1st, 2020 - Market Report','','publish','closed','open','','september-1st-2020-market-report','','','2020-09-02 15:49:16','2020-09-02 15:49:16','',0,'https://kingsvillelivestock.com/?p=2351',0,'post','',0),(2353,2,'2020-09-02 15:49:13','2020-09-02 15:49:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>September 1st, 2020</strong> 1353 hd; last week\'s sale 1497 hd; a year ago 741 hd. Feeder cattle weighing 600lbs &amp; up sold $2-$4.00 higher. All other class sold steady compared to last weeks market. Cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$115.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$131.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$132.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$108.00-$121.35</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$145.00-$160.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$120-$150.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$115.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$85.00 - $99.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">931lbs @ 121.35</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">660lbs @ 141.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">680lbs @ 139.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">844lbs @ 128.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">711lbs @ 143.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">810lbs @ 140.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 1st, 2020 - Market Report','','inherit','closed','closed','','2351-revision-v1','','','2020-09-02 15:49:13','2020-09-02 15:49:13','',2351,'https://kingsvillelivestock.com/2020/09/02/2351-revision-v1/',0,'revision','',0),(2354,2,'2020-09-02 15:49:13','2020-09-02 15:49:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>September 1st, 2020</strong> 1353 hd; last week\'s sale 1497 hd; a year ago 741 hd. Feeder cattle weighing 600lbs &amp; up sold $2-$4.00 higher. All other class sold steady compared to last weeks market. Cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$115.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$131.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$132.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$108.00-$121.35</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$145.00-$160.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$120-$150.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$115.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$85.00 - $99.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">931lbs @ 121.35</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">660lbs @ 141.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">680lbs @ 139.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">844lbs @ 128.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">711lbs @ 143.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">810lbs @ 140.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 25th, 2020 - Market Report','','inherit','closed','closed','','2351-revision-v1','','','2020-09-02 15:49:13','2020-09-02 15:49:13','',2351,'https://kingsvillelivestock.com/2020/09/02/2351-revision-v1/',0,'revision','',0),(2355,2,'2020-09-02 15:49:16','2020-09-02 15:49:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>September 1st, 2020</strong> 1353 hd; last week\'s sale 1497 hd; a year ago 741 hd. Feeder cattle weighing 600lbs &amp; up sold $2-$4.00 higher. All other class sold steady compared to last weeks market. Cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$115.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$131.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$132.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$108.00-$121.35</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$145.00-$160.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$120-$150.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$115.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$85.00 - $99.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">931lbs @ 121.35</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">660lbs @ 141.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">680lbs @ 139.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">844lbs @ 128.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">711lbs @ 143.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">810lbs @ 140.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 1st, 2020 - Market Report','','inherit','closed','closed','','2351-revision-v1','','','2020-09-02 15:49:16','2020-09-02 15:49:16','',2351,'https://kingsvillelivestock.com/2020/09/02/2351-revision-v1/',0,'revision','',0),(2357,2,'2020-09-02 18:14:13','2020-09-02 18:14:13','','Labor Day 2020 Detailed Consignment List','','inherit','closed','closed','','labor-day-2020-detailed-consignment-list','','','2020-09-02 18:14:13','2020-09-02 18:14:13','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/09/Labor-Day-2020-Detailed-Consignment-List.pdf',0,'attachment','application/pdf',0),(2374,2,'2020-09-02 19:33:02','2020-09-02 19:33:02','','Labor Day 2020 Detailed Consignment List','','inherit','closed','closed','','labor-day-2020-detailed-consignment-list-2','','','2020-09-02 19:33:02','2020-09-02 19:33:02','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/09/Labor-Day-2020-Detailed-Consignment-List-1.pdf',0,'attachment','application/pdf',0),(2377,2,'2020-09-02 20:05:50','2020-09-02 20:05:50','','Labor Day 2020 Detailed Consignment List','','inherit','closed','closed','','labor-day-2020-detailed-consignment-list-3','','','2020-09-02 20:05:50','2020-09-02 20:05:50','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/09/Labor-Day-2020-Detailed-Consignment-List-2.pdf',0,'attachment','application/pdf',0),(2381,2,'2020-09-02 21:10:57','2020-09-02 21:10:57','','IMG_0421','','inherit','closed','closed','','img_0421','','','2020-09-02 21:10:57','2020-09-02 21:10:57','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/09/IMG_0421.png',0,'attachment','image/png',0),(2386,2,'2020-09-03 19:32:17','2020-09-03 19:32:17','','Labor Day 2020 Detailed Consignment List','','inherit','closed','closed','','labor-day-2020-detailed-consignment-list-4','','','2020-09-03 19:32:17','2020-09-03 19:32:17','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/09/Labor-Day-2020-Detailed-Consignment-List-3.pdf',0,'attachment','application/pdf',0),(2411,2,'2020-09-14 19:54:18','2020-09-14 19:54:18','','Tuesday, September 15th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-september-15th-feeder-cattle-consignments','','','2020-09-14 19:54:18','2020-09-14 19:54:18','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2020/09/Tuesday-September-15th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2417,2,'2020-09-16 15:29:52','2020-09-16 15:29:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>September 15th, 2020</strong> 2789 hd; 2 week\'s ago 1353 hd; a year ago 841 hd. Feeder cattle weighing 600lbs &amp; up sold steady- $4.00 higher. Weaned feeders weighing 600 &amp; down sold steady-$5 higher. Non-weaned cattle sold $2-$4 lower. Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$125.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$143.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.25-$129.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$107.25-$115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$146.00-$184.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$117-$146.50</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$90.00-$100.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">711lbs @ 139.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">623lbs @ 145.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">639lbs @ 149.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">844lbs @ 140.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">852lbs @ 138.50</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">718lbs @ 147.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">730lbs @148.10</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">675lbs @154.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 15th, 2020 - Market Report','','publish','closed','open','','september-15th-2020-market-report','','','2020-09-16 15:29:56','2020-09-16 15:29:56','',0,'https://kingsvillelivestock.com/?p=2417',0,'post','',0),(2419,2,'2020-09-16 15:29:52','2020-09-16 15:29:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>September 15th, 2020</strong> 2789 hd; 2 week\'s ago 1353 hd; a year ago 841 hd. Feeder cattle weighing 600lbs &amp; up sold steady- $4.00 higher. Weaned feeders weighing 600 &amp; down sold steady-$5 higher. Non-weaned cattle sold $2-$4 lower. Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$125.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$143.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.25-$129.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$107.25-$115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$146.00-$184.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$117-$146.50</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$90.00-$100.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">711lbs @ 139.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">623lbs @ 145.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">639lbs @ 149.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">844lbs @ 140.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">852lbs @ 138.50</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">718lbs @ 147.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">730lbs @148.10</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">675lbs @154.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 15th, 2020 - Market Report','','inherit','closed','closed','','2417-revision-v1','','','2020-09-16 15:29:52','2020-09-16 15:29:52','',2417,'https://kingsvillelivestock.com/2020/09/16/2417-revision-v1/',0,'revision','',0),(2420,2,'2020-09-16 15:29:52','2020-09-16 15:29:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>September 15th, 2020</strong> 2789 hd; 2 week\'s ago 1353 hd; a year ago 841 hd. Feeder cattle weighing 600lbs &amp; up sold steady- $4.00 higher. Weaned feeders weighing 600 &amp; down sold steady-$5 higher. Non-weaned cattle sold $2-$4 lower. Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$125.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$143.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.25-$129.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$107.25-$115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$146.00-$184.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$117-$146.50</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$90.00-$100.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">711lbs @ 139.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">623lbs @ 145.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">639lbs @ 149.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">844lbs @ 140.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">852lbs @ 138.50</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">718lbs @ 147.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">730lbs @148.10</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">675lbs @154.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 1st, 2020 - Market Report','','inherit','closed','closed','','2417-revision-v1','','','2020-09-16 15:29:52','2020-09-16 15:29:52','',2417,'https://kingsvillelivestock.com/2020/09/16/2417-revision-v1/',0,'revision','',0),(2421,2,'2020-09-16 15:29:56','2020-09-16 15:29:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>September 15th, 2020</strong> 2789 hd; 2 week\'s ago 1353 hd; a year ago 841 hd. Feeder cattle weighing 600lbs &amp; up sold steady- $4.00 higher. Weaned feeders weighing 600 &amp; down sold steady-$5 higher. Non-weaned cattle sold $2-$4 lower. Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$125.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$143.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.25-$129.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$107.25-$115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table class=\" aligncenter\" style=\"height: 118px;\" width=\"287\">\n<tbody>\n<tr>\n<td style=\"width: 114px;\">Â  Â  Â  <span style=\"text-decoration: underline;\"><strong>BULLS</strong></span></td>\n<td style=\"width: 157px; text-align: left;\">Â  Â  Â  Â  <strong>Â  <span style=\"text-decoration: underline;\">PRICES</span></strong></td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">300-500</td>\n<td style=\"width: 157px;\">$146.00-$184.00</td>\n</tr>\n<tr>\n<td style=\"width: 114px;\">500-700</td>\n<td style=\"width: 157px;\">$117-$146.50</td>\n</tr>\n<tr>\n<td style=\"width: 114px; text-align: left;\">700-800</td>\n<td style=\"width: 157px; text-align: left;\">$90.00-$100.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">711lbs @ 139.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">623lbs @ 145.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">639lbs @ 149.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">844lbs @ 140.85</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">852lbs @ 138.50</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">718lbs @ 147.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">730lbs @148.10</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">675lbs @154.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 15th, 2020 - Market Report','','inherit','closed','closed','','2417-revision-v1','','','2020-09-16 15:29:56','2020-09-16 15:29:56','',2417,'https://kingsvillelivestock.com/2020/09/16/2417-revision-v1/',0,'revision','',0),(2422,2,'2020-11-11 03:58:56','0000-00-00 00:00:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\"][et_pb_row _builder_version=\"4.2.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\"][et_pb_text _builder_version=\"4.4.4\" custom_padding=\"1px|||||\" hover_enabled=\"0\"]<h1><strong>Kingsville Livestock Auction Customers,</strong></h1>\n<p>We would like to thank you for sticking with us through these difficult times. While we are trying to get back into our normal routine, we ask that you continue to follow the CDC guidelines on social distancing. Please continue to check our website or call our office at 816-597-3331 for any updates. Again, we thank you for your business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\"][et_pb_text _builder_version=\"4.4.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\"]<p>&nbsp;</p>\n<h1><strong>NOVEMBER 2020 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 10th @ 10:30am</strong><br />Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov. 14th @ 8:30am</strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 14th @ 5pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 17th @ 10:30am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 24th @ 10:30am</strong><br />Feeder Cattle Sale</p>\n<p><strong>Nov. 28th @ 11am</strong><br />Special Cow &amp; Bull Sale &amp; Show-Me-Select Bred Heifer Sale</p>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"%%15%%\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"%%15%%\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"%%15%%\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"%%15%%\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','draft','closed','closed','','','','','2020-11-11 03:58:56','2020-11-11 03:58:56','',0,'https://kingsvillelivestock.com/?page_id=2422',0,'page','',0),(2436,2,'2020-09-21 19:54:50','2020-09-21 19:54:50','','Tuesday, September 22nd Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-september-22nd-feeder-cattle-consignments','','','2020-09-21 19:54:50','2020-09-21 19:54:50','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2020/09/Tuesday-September-22nd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2442,2,'2020-09-22 00:37:31','2020-09-22 00:37:31','','Phelps Sale Bill','','inherit','closed','closed','','phelps-sale-bill','','','2020-09-22 00:37:31','2020-09-22 00:37:31','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/09/Phelps-Sale-Bill.pdf',0,'attachment','application/pdf',0),(2447,2,'2020-09-22 22:48:48','2020-09-22 22:48:48','','Phelps Sale Bill','','inherit','closed','closed','','phelps-sale-bill-2','','','2020-09-22 22:48:48','2020-09-22 22:48:48','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/09/Phelps-Sale-Bill-1.pdf',0,'attachment','application/pdf',0),(2458,2,'2020-09-24 18:08:20','2020-09-24 18:08:20','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>September 22nd, 2020</strong>Â 1384 hd; last weeks sale 2789 hd; a year ago 1981 hd. Feeder cattle long weaned &amp; on grass sold $4-$7 higher. Short weaned &amp; non-weaned calves sold steady. Cows &amp; Bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$183.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.50-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$117.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$136.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$129.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$104.00-$112.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$49.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $48.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$78.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">770lbs @ 136.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">685lbs @ 149.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">625lbs @ 153.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">1003lbs @ 117.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">858lbs @ 142.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">812lbs @ 155.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">730lbs @143.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 22nd, 2020 - Market Report','','publish','closed','open','','september-22nd-2020-market-report','','','2020-09-24 18:18:31','2020-09-24 18:18:31','',0,'https://kingsvillelivestock.com/?p=2458',0,'post','',0),(2460,2,'2020-09-24 18:08:20','2020-09-24 18:08:20','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>September 22nd, 2020</strong>Â 1384 hd; last week ago 2789 hd; a year ago 1981 hd. Feeder cattle long weaned &amp; on grass sold $4-$7 higher. Short weaned &amp; non-weaned calves sold steady. Cows &amp; Bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$183.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.50-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$117.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$136.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$129.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$104.00-$112.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$49.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $48.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$78.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">770lbs @ 136.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">685lbs @ 149.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">625lbs @ 153.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">1003lbs @ 117.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">858lbs @ 142.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">812lbs @ 155.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">730lbs @143.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 22nd, 2020 - Market Report','','inherit','closed','closed','','2458-revision-v1','','','2020-09-24 18:08:20','2020-09-24 18:08:20','',2458,'https://kingsvillelivestock.com/2020/09/24/2458-revision-v1/',0,'revision','',0),(2461,2,'2020-09-24 18:08:20','2020-09-24 18:08:20','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>September 22nd, 2020</strong>Â 1384 hd; last week ago 2789 hd; a year ago 1981 hd. Feeder cattle long weaned &amp; on grass sold $4-$7 higher. Short weaned &amp; non-weaned calves sold steady. Cows &amp; Bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$183.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.50-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$117.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$136.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$129.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$104.00-$112.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$49.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $48.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$78.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">770lbs @ 136.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">685lbs @ 149.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">625lbs @ 153.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">1003lbs @ 117.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">858lbs @ 142.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">812lbs @ 155.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">730lbs @143.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 15th, 2020 - Market Report','','inherit','closed','closed','','2458-revision-v1','','','2020-09-24 18:08:20','2020-09-24 18:08:20','',2458,'https://kingsvillelivestock.com/2020/09/24/2458-revision-v1/',0,'revision','',0),(2462,2,'2020-09-24 18:08:24','2020-09-24 18:08:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>September 22nd, 2020</strong>Â 1384 hd; last week ago 2789 hd; a year ago 1981 hd. Feeder cattle long weaned &amp; on grass sold $4-$7 higher. Short weaned &amp; non-weaned calves sold steady. Cows &amp; Bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$183.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.50-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$117.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$136.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$129.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$104.00-$112.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$49.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $48.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$78.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">770lbs @ 136.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">685lbs @ 149.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">625lbs @ 153.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">1003lbs @ 117.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">858lbs @ 142.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">812lbs @ 155.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">730lbs @143.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 22nd, 2020 - Market Report','','inherit','closed','closed','','2458-revision-v1','','','2020-09-24 18:08:24','2020-09-24 18:08:24','',2458,'https://kingsvillelivestock.com/2020/09/24/2458-revision-v1/',0,'revision','',0),(2468,2,'2020-09-24 18:18:27','2020-09-24 18:18:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>September 22nd, 2020</strong>Â 1384 hd; last weeks sale 2789 hd; a year ago 1981 hd. Feeder cattle long weaned &amp; on grass sold $4-$7 higher. Short weaned &amp; non-weaned calves sold steady. Cows &amp; Bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$183.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.50-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$117.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$136.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$129.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$104.00-$112.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$49.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $48.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$78.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">770lbs @ 136.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">685lbs @ 149.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">625lbs @ 153.75</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">1003lbs @ 117.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">858lbs @ 142.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">812lbs @ 155.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">730lbs @143.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 22nd, 2020 - Market Report','','inherit','closed','closed','','2458-revision-v1','','','2020-09-24 18:18:27','2020-09-24 18:18:27','',2458,'https://kingsvillelivestock.com/2020/09/24/2458-revision-v1/',0,'revision','',0),(2481,2,'2020-09-28 20:32:30','2020-09-28 20:32:30','','Tuesday, September 29th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-september-29th-feeder-cattle-consignments','','','2020-09-28 20:32:30','2020-09-28 20:32:30','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2020/09/Tuesday-September-29th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2502,2,'2020-09-30 15:16:15','2020-09-30 15:16:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>September 29th, 2020,</strong> 2072 hd; last weeks sale 1384 hd; a year ago 1689 hd. Feeder cattle weighing 650lbs &amp; up-sold steady-$5 higher. Feeder cattle weighing 650lbs &amp; down sold fully steady. Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$143.35</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$116.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$104.00-$110.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$63.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">779lbs @ 145.10</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">661lbs @ 151.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">673lbs @ 144.50</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">676lbs @144.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">680lbs @146.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">730lbs @ 155.10</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">889lbs @ 143.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">882lbs @ 145.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">913lbs @143.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 29th, 2020 - Market Report','','publish','closed','open','','september-29th-2020-market-report','','','2020-09-30 15:16:18','2020-09-30 15:16:18','',0,'https://kingsvillelivestock.com/?p=2502',0,'post','',0),(2504,2,'2020-09-30 15:16:15','2020-09-30 15:16:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>September 29th, 2020,</strong> 2072 hd; last weeks sale 1384 hd; a year ago 1689 hd. Feeder cattle weighing 650lbs &amp; up-sold steady-$5 higher. Feeder cattle weighing 650lbs &amp; down sold fully steady. Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$143.35</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$116.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$104.00-$110.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$63.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">779lbs @ 145.10</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">661lbs @ 151.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">673lbs @ 144.50</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">676lbs @144.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">680lbs @146.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">730lbs @ 155.10</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">889lbs @ 143.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">882lbs @ 145.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">913lbs @143.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 29th, 2020 - Market Report','','inherit','closed','closed','','2502-revision-v1','','','2020-09-30 15:16:15','2020-09-30 15:16:15','',2502,'https://kingsvillelivestock.com/2020/09/30/2502-revision-v1/',0,'revision','',0),(2505,2,'2020-09-30 15:16:15','2020-09-30 15:16:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>September 29th, 2020,</strong> 2072 hd; last weeks sale 1384 hd; a year ago 1689 hd. Feeder cattle weighing 650lbs &amp; up-sold steady-$5 higher. Feeder cattle weighing 650lbs &amp; down sold fully steady. Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$143.35</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$116.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$104.00-$110.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$63.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">779lbs @ 145.10</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">661lbs @ 151.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">673lbs @ 144.50</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">676lbs @144.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">680lbs @146.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">730lbs @ 155.10</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">889lbs @ 143.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">882lbs @ 145.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">913lbs @143.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 22nd, 2020 - Market Report','','inherit','closed','closed','','2502-revision-v1','','','2020-09-30 15:16:15','2020-09-30 15:16:15','',2502,'https://kingsvillelivestock.com/2020/09/30/2502-revision-v1/',0,'revision','',0),(2506,2,'2020-09-30 15:16:18','2020-09-30 15:16:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>September 29th, 2020,</strong> 2072 hd; last weeks sale 1384 hd; a year ago 1689 hd. Feeder cattle weighing 650lbs &amp; up-sold steady-$5 higher. Feeder cattle weighing 650lbs &amp; down sold fully steady. Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$143.35</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$116.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$104.00-$110.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$63.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 361px; height: 124px;\">\n<tbody>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">779lbs @ 145.10</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">661lbs @ 151.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">673lbs @ 144.50</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">676lbs @144.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">HEIFERS</td>\n<td style=\"width: 210px;\">680lbs @146.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">730lbs @ 155.10</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">889lbs @ 143.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">882lbs @ 145.00</td>\n</tr>\n<tr>\n<td style=\"width: 135px;\">STEERS</td>\n<td style=\"width: 210px;\">913lbs @143.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 29th, 2020 - Market Report','','inherit','closed','closed','','2502-revision-v1','','','2020-09-30 15:16:18','2020-09-30 15:16:18','',2502,'https://kingsvillelivestock.com/2020/09/30/2502-revision-v1/',0,'revision','',0),(2510,2,'2020-10-05 16:52:28','2020-10-05 16:52:28','','Tuesday, October 6th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-october-6th-feeder-cattle-consignments','','','2020-10-05 16:52:28','2020-10-05 16:52:28','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2020/10/Tuesday-October-6th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2516,2,'2020-10-05 17:58:37','2020-10-05 17:58:37','','Tuesday, October 6th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-october-6th-feeder-cattle-consignments-2','','','2020-10-05 17:58:37','2020-10-05 17:58:37','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2020/10/Tuesday-October-6th-Feeder-Cattle-Consignments-1.pdf',0,'attachment','application/pdf',0),(2520,2,'2020-10-07 15:21:00','2020-10-07 15:21:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 6th, 2020,</strong> 1486 hd; last weeks sale 2072 hd; a year ago 1166 hd. Feeder cattle sold fully steady. Non-Weaned &amp; new crop calves sold $5.00 lower. Cows &amp; Bulls sold $3-$7.00. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$158.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$130.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.00-$123.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$123.60</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$25.00 - $46.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $89.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield BullsÂ </td>\n<td style=\"width: 156.5px;\">$50.00 - $60.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">711lbs @ 139.75</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">798lbs @ 142.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">680lbs @ 144.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">792lbs @143.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">793lbs @144.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">809lbs @ 143.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">886lbs @ 139.85</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">894lbs @ 137.60</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 6th, 2020 - Market Report','','publish','closed','open','','october-6th-2020-market-report','','','2020-10-07 15:21:03','2020-10-07 15:21:03','',0,'https://kingsvillelivestock.com/?p=2520',0,'post','',0),(2522,2,'2020-10-07 15:21:00','2020-10-07 15:21:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 6th, 2020,</strong> 1486 hd; last weeks sale 2072 hd; a year ago 1166 hd. Feeder cattle sold fully steady. Non-Weaned &amp; new crop calves sold $5.00 lower. Cows &amp; Bulls sold $3-$7.00. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$158.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$130.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.00-$123.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$123.60</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$25.00 - $46.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $89.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield BullsÂ </td>\n<td style=\"width: 156.5px;\">$50.00 - $60.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">711lbs @ 139.75</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">798lbs @ 142.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">680lbs @ 144.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">792lbs @143.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">793lbs @144.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">809lbs @ 143.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">886lbs @ 139.85</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">894lbs @ 137.60</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 6th, 2020 - Market Report','','inherit','closed','closed','','2520-revision-v1','','','2020-10-07 15:21:00','2020-10-07 15:21:00','',2520,'https://kingsvillelivestock.com/2020/10/07/2520-revision-v1/',0,'revision','',0),(2523,2,'2020-10-07 15:21:00','2020-10-07 15:21:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 6th, 2020,</strong> 1486 hd; last weeks sale 2072 hd; a year ago 1166 hd. Feeder cattle sold fully steady. Non-Weaned &amp; new crop calves sold $5.00 lower. Cows &amp; Bulls sold $3-$7.00. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$158.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$130.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.00-$123.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$123.60</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$25.00 - $46.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $89.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield BullsÂ </td>\n<td style=\"width: 156.5px;\">$50.00 - $60.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">711lbs @ 139.75</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">798lbs @ 142.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">680lbs @ 144.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">792lbs @143.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">793lbs @144.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">809lbs @ 143.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">886lbs @ 139.85</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">894lbs @ 137.60</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 29th, 2020 - Market Report','','inherit','closed','closed','','2520-revision-v1','','','2020-10-07 15:21:00','2020-10-07 15:21:00','',2520,'https://kingsvillelivestock.com/2020/10/07/2520-revision-v1/',0,'revision','',0),(2525,2,'2020-10-07 15:21:03','2020-10-07 15:21:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 6th, 2020,</strong> 1486 hd; last weeks sale 2072 hd; a year ago 1166 hd. Feeder cattle sold fully steady. Non-Weaned &amp; new crop calves sold $5.00 lower. Cows &amp; Bulls sold $3-$7.00. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$158.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$130.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.00-$123.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$123.60</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$25.00 - $46.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $89.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield BullsÂ </td>\n<td style=\"width: 156.5px;\">$50.00 - $60.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">711lbs @ 139.75</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">798lbs @ 142.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">680lbs @ 144.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">792lbs @143.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">793lbs @144.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">809lbs @ 143.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">886lbs @ 139.85</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">894lbs @ 137.60</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 6th, 2020 - Market Report','','inherit','closed','closed','','2520-revision-v1','','','2020-10-07 15:21:03','2020-10-07 15:21:03','',2520,'https://kingsvillelivestock.com/2020/10/07/2520-revision-v1/',0,'revision','',0),(2538,2,'2020-10-07 17:46:43','2020-10-07 17:46:43','','Camden Sale Bill','','inherit','closed','closed','','camden-sale-bill','','','2020-10-07 17:46:43','2020-10-07 17:46:43','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/10/Camden-Sale-Bill.pdf',0,'attachment','application/pdf',0),(2549,2,'2020-10-12 20:13:09','2020-10-12 20:13:09','','Tuesday, October 13th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-october-13th-feeder-cattle-consignments','','','2020-10-12 20:13:09','2020-10-12 20:13:09','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2020/10/Tuesday-October-13th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2557,2,'2020-10-14 14:40:31','2020-10-14 14:40:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 13th, 2020,</strong> 1617 hd; last weeks sale 1486 hd; a year ago 1362 hd. Compared to last week\'s market yearlings sold steady. Non-Weaned &amp; new crop calves sold $5.00 lower. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$137.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.00-$133.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$119.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500llbs &amp; up</td>\n<td style=\"width: 156.5px;\">$65.00-$71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $88.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">751lbs @ 148.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">751lbs @ 156.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">783lbs @ 142.85</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">760lbs @142.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">735lbs @144.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">950lbs @ 133.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 13th, 2020 - Market Report','','publish','closed','open','','october-13th-2020-market-report','','','2020-10-14 14:40:35','2020-10-14 14:40:35','',0,'https://kingsvillelivestock.com/?p=2557',0,'post','',0),(2559,2,'2020-10-14 14:40:31','2020-10-14 14:40:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 13th, 2020,</strong> 1617 hd; last weeks sale 1486 hd; a year ago 1362 hd. Compared to last week\'s market yearlings sold steady. Non-Weaned &amp; new crop calves sold $5.00 lower. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$137.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.00-$133.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$119.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500llbs &amp; up</td>\n<td style=\"width: 156.5px;\">$65.00-$71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $88.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">751lbs @ 148.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">751lbs @ 156.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">783lbs @ 142.85</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">760lbs @142.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">735lbs @144.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">950lbs @ 133.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 13th, 2020 - Market Report','','inherit','closed','closed','','2557-revision-v1','','','2020-10-14 14:40:31','2020-10-14 14:40:31','',2557,'https://kingsvillelivestock.com/2020/10/14/2557-revision-v1/',0,'revision','',0),(2560,2,'2020-10-14 14:40:31','2020-10-14 14:40:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 13th, 2020,</strong> 1617 hd; last weeks sale 1486 hd; a year ago 1362 hd. Compared to last week\'s market yearlings sold steady. Non-Weaned &amp; new crop calves sold $5.00 lower. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$137.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.00-$133.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$119.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500llbs &amp; up</td>\n<td style=\"width: 156.5px;\">$65.00-$71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $88.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">751lbs @ 148.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">751lbs @ 156.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">783lbs @ 142.85</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">760lbs @142.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">735lbs @144.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">950lbs @ 133.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 6th, 2020 - Market Report','','inherit','closed','closed','','2557-revision-v1','','','2020-10-14 14:40:31','2020-10-14 14:40:31','',2557,'https://kingsvillelivestock.com/2020/10/14/2557-revision-v1/',0,'revision','',0),(2561,2,'2020-10-14 14:40:35','2020-10-14 14:40:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 13th, 2020,</strong> 1617 hd; last weeks sale 1486 hd; a year ago 1362 hd. Compared to last week\'s market yearlings sold steady. Non-Weaned &amp; new crop calves sold $5.00 lower. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$137.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.00-$133.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$119.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500llbs &amp; up</td>\n<td style=\"width: 156.5px;\">$65.00-$71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $88.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">751lbs @ 148.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">751lbs @ 156.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">783lbs @ 142.85</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">760lbs @142.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">735lbs @144.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">950lbs @ 133.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 13th, 2020 - Market Report','','inherit','closed','closed','','2557-revision-v1','','','2020-10-14 14:40:35','2020-10-14 14:40:35','',2557,'https://kingsvillelivestock.com/2020/10/14/2557-revision-v1/',0,'revision','',0),(2572,2,'2020-10-15 16:39:28','2020-10-15 16:39:28','','Camden','','inherit','closed','closed','','camden','','','2020-10-15 16:39:28','2020-10-15 16:39:28','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/10/Camden.pdf',0,'attachment','application/pdf',0),(2581,2,'2020-10-19 19:46:42','2020-10-19 19:46:42','','Tuesday, October 20th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-october-20th-feeder-cattle-consignments','','','2020-10-19 19:46:42','2020-10-19 19:46:42','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2020/10/Tuesday-October-20th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2588,2,'2020-10-21 15:39:59','2020-10-21 15:39:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 20th, 2020,</strong> 1665 hd; last weeks sale 1617 hd; a year ago 2186 hd. Compared to last week\'s market feeder cattle &amp; yearlings traded $3-$6 lower with cattle futures trading lower at the beginning of the week. Slaughter Cows &amp; Bulls sold steady-$3.00 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$138.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$116.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$146.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$137.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$115.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$25.00 - $40.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500llbs &amp; up</td>\n<td style=\"width: 156.5px;\">$64.00-$70.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$55.00 - $85.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">715lbs @ 135.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">742lbs @ 137.25</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">664lbs @ 144.75 (Char-Red)</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">727lbs @144.25</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">724lbs @143.50 (Char-Blk)</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">772lbs @ 137.75</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">836lbs @138.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">783lbs @ 136.00 (Char)</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 20th, 2020 - Market Report','','publish','closed','open','','october-20th-2020-market-report','','','2020-10-21 15:48:44','2020-10-21 15:48:44','',0,'https://kingsvillelivestock.com/?p=2588',0,'post','',0),(2590,2,'2020-10-21 15:39:59','2020-10-21 15:39:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 20th, 2020,</strong> 1665 hd; last weeks sale 1617 hd; a year ago 2186 hd. Compared to last week\'s market feeder cattle &amp; yearlings traded $3-$6 lower with cattle futures trading lower at the beginning of the week. Slaughter Cows &amp; Bulls sold steady-$3.00 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$138.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$116.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$146.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$137.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$115.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$25.00 - $40.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500llbs &amp; up</td>\n<td style=\"width: 156.5px;\">$64.00-$70.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$55.00 - $85.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">715lbs @ 135.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">742lbs @ 137.25</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">664lbs @ 144.75 (Char-Red)</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">727lbs @144.25</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">724lbs @143.50 (Char-Blk)</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">772lbs @ 137.75</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">836lbs @138.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">783lbs @ 136.00 (Char)</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 20th, 2020 - Market Report','','inherit','closed','closed','','2588-revision-v1','','','2020-10-21 15:39:59','2020-10-21 15:39:59','',2588,'https://kingsvillelivestock.com/2020/10/21/2588-revision-v1/',0,'revision','',0),(2591,2,'2020-10-21 15:39:59','2020-10-21 15:39:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 20th, 2020,</strong> 1665 hd; last weeks sale 1617 hd; a year ago 2186 hd. Compared to last week\'s market feeder cattle &amp; yearlings traded $3-$6 lower with cattle futures trading lower at the beginning of the week. Slaughter Cows &amp; Bulls sold steady-$3.00 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$138.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$116.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$146.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$137.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$115.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$25.00 - $40.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500llbs &amp; up</td>\n<td style=\"width: 156.5px;\">$64.00-$70.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$55.00 - $85.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">715lbs @ 135.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">742lbs @ 137.25</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">664lbs @ 144.75 (Char-Red)</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">727lbs @144.25</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">724lbs @143.50 (Char-Blk)</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">772lbs @ 137.75</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">836lbs @138.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">783lbs @ 136.00 (Char)</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 13th, 2020 - Market Report','','inherit','closed','closed','','2588-revision-v1','','','2020-10-21 15:39:59','2020-10-21 15:39:59','',2588,'https://kingsvillelivestock.com/2020/10/21/2588-revision-v1/',0,'revision','',0),(2592,2,'2020-10-21 15:40:02','2020-10-21 15:40:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 20th, 2020,</strong> 1665 hd; last weeks sale 1617 hd; a year ago 2186 hd. Compared to last week\'s market feeder cattle &amp; yearlings traded $3-$6 lower with cattle futures trading lower at the beginning of the week. Slaughter Cows &amp; Bulls sold steady-$3.00 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$138.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$116.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$146.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$137.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$115.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$25.00 - $40.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500llbs &amp; up</td>\n<td style=\"width: 156.5px;\">$64.00-$70.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$55.00 - $85.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">715lbs @ 135.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">742lbs @ 137.25</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">664lbs @ 144.75 (Char-Red)</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">727lbs @144.25</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">724lbs @143.50 (Char-Blk)</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">772lbs @ 137.75</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">836lbs @138.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">783lbs @ 136.00 (Char)</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 20th, 2020 - Market Report','','inherit','closed','closed','','2588-revision-v1','','','2020-10-21 15:40:02','2020-10-21 15:40:02','',2588,'https://kingsvillelivestock.com/2020/10/21/2588-revision-v1/',0,'revision','',0),(2593,2,'2020-10-21 15:48:44','2020-10-21 15:48:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 20th, 2020,</strong> 1665 hd; last weeks sale 1617 hd; a year ago 2186 hd. Compared to last week\'s market feeder cattle &amp; yearlings traded $3-$6 lower with cattle futures trading lower at the beginning of the week. Slaughter Cows &amp; Bulls sold steady-$3.00 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$138.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$116.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$146.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$137.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$115.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$25.00 - $40.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500llbs &amp; up</td>\n<td style=\"width: 156.5px;\">$64.00-$70.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$55.00 - $85.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">715lbs @ 135.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">742lbs @ 137.25</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">664lbs @ 144.75 (Char-Red)</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">727lbs @144.25</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">724lbs @143.50 (Char-Blk)</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">772lbs @ 137.75</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">836lbs @138.50</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">783lbs @ 136.00 (Char)</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 20th, 2020 - Market Report','','inherit','closed','closed','','2588-revision-v1','','','2020-10-21 15:48:44','2020-10-21 15:48:44','',2588,'https://kingsvillelivestock.com/2020/10/21/2588-revision-v1/',0,'revision','',0),(2605,2,'2020-10-26 19:43:36','2020-10-26 19:43:36','','Tuesday, October 27th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-october-27th-feeder-cattle-consignments','','','2020-10-26 19:43:36','2020-10-26 19:43:36','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2020/10/Tuesday-October-27th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2609,2,'2020-10-27 02:01:01','2020-10-27 02:01:01','','Wheeler sale bill','','inherit','closed','closed','','wheeler-sale-bill','','','2020-10-27 02:01:01','2020-10-27 02:01:01','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/10/Wheeler-sale-bill.pdf',0,'attachment','application/pdf',0);
INSERT INTO `b78GM7Ml_posts` VALUES (2615,2,'2020-10-28 14:51:41','2020-10-28 14:51:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 27th, 2020,</strong> 1080 hd; last weeks sale 1665 hd; a year ago 1660 hd. Compared to last week\'s market feeder cattle weighing 650lbs &amp; up-sold steady-$2 higher in places. Calves weighing 650lbs &amp; down sold unevenly steady. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$124.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">NA</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$143.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$144.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$103.00-$109.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$99.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $64.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500llbs &amp; up</td>\n<td style=\"width: 156.5px;\">$61.00-$68.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $89.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">699lbs @ 145.00 74Hd BlkÂ </td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">714lbs @ 142.00 74Hd Mix</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">527lbs @ 149.75 44Hd Brangus</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 27th, 2020 - Market Report','','publish','closed','open','','october-27th-2020-market-report','','','2020-10-28 14:51:45','2020-10-28 14:51:45','',0,'https://kingsvillelivestock.com/?p=2615',0,'post','',0),(2617,2,'2020-10-28 14:51:41','2020-10-28 14:51:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 27th, 2020,</strong> 1080 hd; last weeks sale 1665 hd; a year ago 1660 hd. Compared to last week\'s market feeder cattle weighing 650lbs &amp; up-sold steady-$2 higher in places. Calves weighing 650lbs &amp; down sold unevenly steady. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$124.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">NA</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$143.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$144.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$103.00-$109.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$99.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $64.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500llbs &amp; up</td>\n<td style=\"width: 156.5px;\">$61.00-$68.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $89.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">699lbs @ 145.00 74Hd BlkÂ </td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">714lbs @ 142.00 74Hd Mix</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">527lbs @ 149.75 44Hd Brangus</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 27th, 2020 - Market Report','','inherit','closed','closed','','2615-revision-v1','','','2020-10-28 14:51:41','2020-10-28 14:51:41','',2615,'https://kingsvillelivestock.com/2020/10/28/2615-revision-v1/',0,'revision','',0),(2618,2,'2020-10-28 14:51:41','2020-10-28 14:51:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 27th, 2020,</strong> 1080 hd; last weeks sale 1665 hd; a year ago 1660 hd. Compared to last week\'s market feeder cattle weighing 650lbs &amp; up-sold steady-$2 higher in places. Calves weighing 650lbs &amp; down sold unevenly steady. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$124.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">NA</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$143.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$144.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$103.00-$109.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$99.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $64.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500llbs &amp; up</td>\n<td style=\"width: 156.5px;\">$61.00-$68.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $89.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">699lbs @ 145.00 74Hd BlkÂ </td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">714lbs @ 142.00 74Hd Mix</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">527lbs @ 149.75 44Hd Brangus</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 20th, 2020 - Market Report','','inherit','closed','closed','','2615-revision-v1','','','2020-10-28 14:51:41','2020-10-28 14:51:41','',2615,'https://kingsvillelivestock.com/2020/10/28/2615-revision-v1/',0,'revision','',0),(2619,2,'2020-10-28 14:51:45','2020-10-28 14:51:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 27th, 2020,</strong> 1080 hd; last weeks sale 1665 hd; a year ago 1660 hd. Compared to last week\'s market feeder cattle weighing 650lbs &amp; up-sold steady-$2 higher in places. Calves weighing 650lbs &amp; down sold unevenly steady. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$124.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">NA</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$143.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$144.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$103.00-$109.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$99.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $64.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500llbs &amp; up</td>\n<td style=\"width: 156.5px;\">$61.00-$68.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $89.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">699lbs @ 145.00 74Hd BlkÂ </td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">714lbs @ 142.00 74Hd Mix</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">527lbs @ 149.75 44Hd Brangus</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 27th, 2020 - Market Report','','inherit','closed','closed','','2615-revision-v1','','','2020-10-28 14:51:45','2020-10-28 14:51:45','',2615,'https://kingsvillelivestock.com/2020/10/28/2615-revision-v1/',0,'revision','',0),(2621,2,'2020-11-02 22:07:18','2020-11-02 22:07:18','','Wheeler sale bill-2','','inherit','closed','closed','','wheeler-sale-bill-2','','','2020-11-02 22:07:18','2020-11-02 22:07:18','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2020/11/Wheeler-sale-bill-2.pdf',0,'attachment','application/pdf',0),(2625,2,'2020-11-02 22:10:52','2020-11-02 22:10:52','','Tuesday, November 3rd Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-november-3rd-feeder-cattle-consignments','','','2020-11-02 22:10:52','2020-11-02 22:10:52','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/11/Tuesday-November-3rd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2629,2,'2020-11-04 15:49:45','2020-11-04 15:49:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>November 3rd, 2020,</strong> 1684 hd; last weeks sale 1080 hd; a year ago 2370 hd. Compared to last week\'s market calves sold $2-$4 higher. Yearlings sold $2-$3 higher in places. Good buyer activity throughout the sale. Slaughter Cows &amp; Bulls sold $2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$152.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$115.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$117.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$43.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$33.00 - $42.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1450llbs &amp; up</td>\n<td style=\"width: 156.5px;\">$58.00-$66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $86.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding BullsÂ </td>\n<td style=\"width: 156.5px;\">$46.00 - $64.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">715lbs @ 146.00Â </td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">764lbs @ 141.00Â </td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">791lbs @ 150.50Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 3rd, 2020 - Market Report','','publish','closed','open','','november-3rd-2020-market-report','','','2020-11-04 16:34:47','2020-11-04 16:34:47','',0,'https://kingsvillelivestock.com/?p=2629',0,'post','',0),(2631,2,'2020-11-04 15:49:45','2020-11-04 15:49:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 27th, 2020,</strong> 1684 hd; last weeks sale 1080 hd; a year ago 2370 hd. Compared to last week\'s market calves sold $2-$4 higher. Yearlings sold $2-$3 higher in places. Good buyer activity throughout the sale. Slaughter Cows &amp; Bulls sold $2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$152.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$115.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$117.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$43.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$33.00 - $42.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1450llbs &amp; up</td>\n<td style=\"width: 156.5px;\">$58.00-$66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $86.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding BullsÂ </td>\n<td style=\"width: 156.5px;\">$46.00 - $64.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">715lbs @ 146.00Â </td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">764lbs @ 141.00Â </td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">791lbs @ 150.50Â </td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 3rd, 2020 - Market Report','','inherit','closed','closed','','2629-revision-v1','','','2020-11-04 15:49:45','2020-11-04 15:49:45','',2629,'https://kingsvillelivestock.com/2020/11/04/2629-revision-v1/',0,'revision','',0),(2632,2,'2020-11-04 15:49:45','2020-11-04 15:49:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 27th, 2020,</strong> 1684 hd; last weeks sale 1080 hd; a year ago 2370 hd. Compared to last week\'s market calves sold $2-$4 higher. Yearlings sold $2-$3 higher in places. Good buyer activity throughout the sale. Slaughter Cows &amp; Bulls sold $2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$152.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$115.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$117.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$43.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$33.00 - $42.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1450llbs &amp; up</td>\n<td style=\"width: 156.5px;\">$58.00-$66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $86.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding BullsÂ </td>\n<td style=\"width: 156.5px;\">$46.00 - $64.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">715lbs @ 146.00Â </td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">764lbs @ 141.00Â </td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">791lbs @ 150.50Â </td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 27th, 2020 - Market Report','','inherit','closed','closed','','2629-revision-v1','','','2020-11-04 15:49:45','2020-11-04 15:49:45','',2629,'https://kingsvillelivestock.com/2020/11/04/2629-revision-v1/',0,'revision','',0),(2633,2,'2020-11-04 15:49:49','2020-11-04 15:49:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>October 27th, 2020,</strong> 1684 hd; last weeks sale 1080 hd; a year ago 2370 hd. Compared to last week\'s market calves sold $2-$4 higher. Yearlings sold $2-$3 higher in places. Good buyer activity throughout the sale. Slaughter Cows &amp; Bulls sold $2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$152.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$115.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$117.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$43.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$33.00 - $42.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1450llbs &amp; up</td>\n<td style=\"width: 156.5px;\">$58.00-$66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $86.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding BullsÂ </td>\n<td style=\"width: 156.5px;\">$46.00 - $64.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">715lbs @ 146.00Â </td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">764lbs @ 141.00Â </td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">791lbs @ 150.50Â </td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 3rd, 2020 - Market Report','','inherit','closed','closed','','2629-revision-v1','','','2020-11-04 15:49:49','2020-11-04 15:49:49','',2629,'https://kingsvillelivestock.com/2020/11/04/2629-revision-v1/',0,'revision','',0),(2634,2,'2020-11-04 15:53:23','2020-11-04 15:53:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>November 3rd, 2020,</strong> 1684 hd; last weeks sale 1080 hd; a year ago 2370 hd. Compared to last week\'s market calves sold $2-$4 higher. Yearlings sold $2-$3 higher in places. Good buyer activity throughout the sale. Slaughter Cows &amp; Bulls sold $2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$152.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$115.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$117.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$43.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$33.00 - $42.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1450llbs &amp; up</td>\n<td style=\"width: 156.5px;\">$58.00-$66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $86.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding BullsÂ </td>\n<td style=\"width: 156.5px;\">$46.00 - $64.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">715lbs @ 146.00Â </td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">764lbs @ 141.00Â </td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">791lbs @ 150.50Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 3rd, 2020 - Market Report','','inherit','closed','closed','','2629-revision-v1','','','2020-11-04 15:53:23','2020-11-04 15:53:23','',2629,'https://kingsvillelivestock.com/2020/11/04/2629-revision-v1/',0,'revision','',0),(2636,2,'2020-11-04 16:34:43','2020-11-04 16:34:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>November 3rd, 2020,</strong> 1684 hd; last weeks sale 1080 hd; a year ago 2370 hd. Compared to last week\'s market calves sold $2-$4 higher. Yearlings sold $2-$3 higher in places. Good buyer activity throughout the sale. Slaughter Cows &amp; Bulls sold $2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$152.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$115.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$117.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $57.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$43.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$33.00 - $42.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1450llbs &amp; up</td>\n<td style=\"width: 156.5px;\">$58.00-$66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $86.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yielding BullsÂ </td>\n<td style=\"width: 156.5px;\">$46.00 - $64.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">715lbs @ 146.00Â </td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">764lbs @ 141.00Â </td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">791lbs @ 150.50Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 3rd, 2020 - Market Report','','inherit','closed','closed','','2629-revision-v1','','','2020-11-04 16:34:43','2020-11-04 16:34:43','',2629,'https://kingsvillelivestock.com/2020/11/04/2629-revision-v1/',0,'revision','',0),(2641,2,'2020-11-09 18:44:58','2020-11-09 18:44:58','','Tuesday, November 10th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-november-10th-feeder-cattle-consignments','','','2020-11-09 18:44:58','2020-11-09 18:44:58','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2020/11/Tuesday-November-10th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2648,2,'2020-11-11 03:58:53','2020-11-11 03:58:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\"][et_pb_row _builder_version=\"4.2.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\"][et_pb_text _builder_version=\"4.4.4\" custom_padding=\"1px|||||\" hover_enabled=\"0\"]<h1><strong>Kingsville Livestock Auction Customers,</strong></h1>\n<p>We would like to thank you for sticking with us through these difficult times. While we are trying to get back into our normal routine, we ask that you continue to follow the CDC guidelines on social distancing. Please continue to check our website or call our office at 816-597-3331 for any updates. Again, we thank you for your business.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\"][et_pb_text _builder_version=\"4.4.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\"]<p>&nbsp;</p>\n<h1><strong>NOVEMBER 2020 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 10th @ 10:30am</strong><br />Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov. 14th @ 8:30am</strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 14th @ 5pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 17th @ 10:30am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 24th @ 10:30am</strong><br />Feeder Cattle Sale</p>\n<p><strong>Nov. 28th @ 11am</strong><br />Special Cow &amp; Bull Sale &amp; Show-Me-Select Bred Heifer Sale</p>\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"%%15%%\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"%%15%%\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"%%15%%\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"%%15%%\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','2422-revision-v1','','','2020-11-11 03:58:53','2020-11-11 03:58:53','',2422,'https://kingsvillelivestock.com/2020/11/11/2422-revision-v1/',0,'revision','',0),(2650,2,'2020-11-11 20:19:14','2020-11-11 20:19:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>November 10th, 2020,</strong> 1862 hd; last weeks sale 1684 hd; a year ago 2105 hd. Compared to last week\'s market feeder cattle weighing 650lbs &amp; up sold steady - $4 higher. Calves weighing under 650lbs sold steady. Slaughter Cows &amp; Bulls sold $2-$4 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$143.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$141.00-$141.10</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$142.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$115.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$105.00-$111.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $44.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500lbs &amp; up</td>\n<td style=\"width: 156.5px;\">$60.00-$66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $87.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">650lbs @ 145.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">693lbs @145.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">693lbs @146.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">741lbs @140.25</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">906lbs @ 141.10</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">910lbs @ 141.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">883lbs @ 143.85</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">757lbs @154.75</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">860lbs @139.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">760lbs @145.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 10th, 2020 - Market Report','','publish','closed','open','','november-3rd-2020-market-report-2','','','2020-11-18 17:47:28','2020-11-18 17:47:28','',0,'https://kingsvillelivestock.com/?p=2650',0,'post','',0),(2652,2,'2020-11-11 20:19:14','2020-11-11 20:19:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>November 10th, 2020,</strong> 1862 hd; last weeks sale 1684 hd; a year ago 2105 hd. Compared to last week\'s market feeder cattle weighing 650lbs &amp; up sold steady - $4 higher. Calves weighing under 650lbs sold steady. Slaughter Cows &amp; Bulls sold $2-$4 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$143.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$141.00-$141.10</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$142.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$115.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$105.00-$111.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $44.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500lbs &amp; up</td>\n<td style=\"width: 156.5px;\">$60.00-$66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $87.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">650lbs @ 145.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">693lbs @145.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">693lbs @146.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">741lbs @140.25</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">906lbs @ 141.10</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">910lbs @ 141.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">883lbs @ 143.85</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">757lbs @154.75</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">860lbs @139.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">760lbs @145.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 3rd, 2020 - Market Report','','inherit','closed','closed','','2650-revision-v1','','','2020-11-11 20:19:14','2020-11-11 20:19:14','',2650,'https://kingsvillelivestock.com/2020/11/11/2650-revision-v1/',0,'revision','',0),(2661,2,'2020-11-16 21:59:06','2020-11-16 21:59:06','','Tuesday, November 17th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-november-17th-feeder-cattle-consignments','','','2020-11-16 21:59:06','2020-11-16 21:59:06','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2020/11/Tuesday-November-17th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2674,2,'2020-11-18 17:47:25','2020-11-18 17:47:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>November 10th, 2020,</strong> 1862 hd; last weeks sale 1684 hd; a year ago 2105 hd. Compared to last week\'s market feeder cattle weighing 650lbs &amp; up sold steady - $4 higher. Calves weighing under 650lbs sold steady. Slaughter Cows &amp; Bulls sold $2-$4 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$143.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$141.00-$141.10</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$142.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$115.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$105.00-$111.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $44.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500lbs &amp; up</td>\n<td style=\"width: 156.5px;\">$60.00-$66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $87.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">650lbs @ 145.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">693lbs @145.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">693lbs @146.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">741lbs @140.25</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">906lbs @ 141.10</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">910lbs @ 141.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">883lbs @ 143.85</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">757lbs @154.75</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">860lbs @139.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">760lbs @145.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 3rd, 2020 - Market Report','','inherit','closed','closed','','2650-revision-v1','','','2020-11-18 17:47:25','2020-11-18 17:47:25','',2650,'https://kingsvillelivestock.com/2020/11/18/2650-revision-v1/',0,'revision','',0),(2675,2,'2020-11-18 17:47:28','2020-11-18 17:47:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>November 10th, 2020,</strong> 1862 hd; last weeks sale 1684 hd; a year ago 2105 hd. Compared to last week\'s market feeder cattle weighing 650lbs &amp; up sold steady - $4 higher. Calves weighing under 650lbs sold steady. Slaughter Cows &amp; Bulls sold $2-$4 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$143.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$141.00-$141.10</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$142.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$115.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$105.00-$111.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $44.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500lbs &amp; up</td>\n<td style=\"width: 156.5px;\">$60.00-$66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $87.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">650lbs @ 145.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">693lbs @145.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">693lbs @146.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">741lbs @140.25</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">906lbs @ 141.10</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">910lbs @ 141.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">883lbs @ 143.85</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">757lbs @154.75</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">860lbs @139.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">760lbs @145.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 10th, 2020 - Market Report','','inherit','closed','closed','','2650-revision-v1','','','2020-11-18 17:47:28','2020-11-18 17:47:28','',2650,'https://kingsvillelivestock.com/2020/11/18/2650-revision-v1/',0,'revision','',0),(2676,2,'2020-11-18 17:58:12','2020-11-18 17:58:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>November 17th, 2020,</strong> 3037 hd; last weeks sale 1862 hd; a year ago 2577 hd. Compared to last week\'s market feeder cattle weighing 650lbs &amp; down sold steady - $5 higher. Compared to last weeks market yearlings sold fully steady. Slaughter Cows &amp; Bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$189.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$171.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$154.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$139.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$145.00 yearlings</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.00 calves</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$123.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NA</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$32.00 - $44.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500lbs &amp; up</td>\n<td style=\"width: 156.5px;\">$57.00-$66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $88.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">710lbs @ 137.10</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">767lbs @145.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">820lbs @144.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">870lbs @142.35</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">867lbs @ 142.25</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">891lbs @ 142.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 17th, 2020 - Market Report','','publish','closed','open','','november-17th-2020-market-report','','','2020-11-18 18:00:29','2020-11-18 18:00:29','',0,'https://kingsvillelivestock.com/?p=2676',0,'post','',0),(2678,2,'2020-11-18 17:58:12','2020-11-18 17:58:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>November 17th, 2020,</strong> 3037 hd; last weeks sale 1862 hd; a year ago 2577 hd. Compared to last week\'s market feeder cattle weighing 650lbs &amp; down sold steady - $5 higher. Compared to last weeks market yearlings sold fully steady. Slaughter Cows &amp; Bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$189.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$171.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$154.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$139.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$145.00 yearlings</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.00 calves</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$123.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NA</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$32.00 - $44.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500lbs &amp; up</td>\n<td style=\"width: 156.5px;\">$57.00-$66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $88.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">710lbs @ 137.10</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">767lbs @145.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">820lbs @144.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">870lbs @142.35</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">867lbs @ 142.25</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">891lbs @ 142.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 10th, 2020 - Market Report','','inherit','closed','closed','','2676-revision-v1','','','2020-11-18 17:58:12','2020-11-18 17:58:12','',2676,'https://kingsvillelivestock.com/2020/11/18/2676-revision-v1/',0,'revision','',0),(2679,2,'2020-11-18 17:58:16','2020-11-18 17:58:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>November 17th, 2020,</strong> 3037 hd; last weeks sale 1862 hd; a year ago 2577 hd. Compared to last week\'s market feeder cattle weighing 650lbs &amp; down sold steady - $5 higher. Compared to last weeks market yearlings sold fully steady. Slaughter Cows &amp; Bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$189.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$171.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$154.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$139.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$145.00 yearlings</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.00 calves</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$123.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NA</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$32.00 - $44.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500lbs &amp; up</td>\n<td style=\"width: 156.5px;\">$57.00-$66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $88.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">710lbs @ 137.10</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">767lbs @145.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">820lbs @144.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">870lbs @142.35</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">867lbs @ 142.25</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">891lbs @ 142.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 17th, 2020 - Market Report','','inherit','closed','closed','','2676-revision-v1','','','2020-11-18 17:58:16','2020-11-18 17:58:16','',2676,'https://kingsvillelivestock.com/2020/11/18/2676-revision-v1/',0,'revision','',0),(2680,2,'2020-11-18 18:00:25','2020-11-18 18:00:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>November 17th, 2020,</strong> 3037 hd; last weeks sale 1862 hd; a year ago 2577 hd. Compared to last week\'s market feeder cattle weighing 650lbs &amp; down sold steady - $5 higher. Compared to last weeks market yearlings sold fully steady. Slaughter Cows &amp; Bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$189.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$171.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$154.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$139.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$144.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$145.00 yearlings</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.00 calves</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$123.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NA</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$32.00 - $44.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows 1500lbs &amp; up</td>\n<td style=\"width: 156.5px;\">$57.00-$66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $88.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 358px; height: 247px;\">\n<tbody>\n<tr>\n<td style=\"width: 134px;\">HEIFERS</td>\n<td style=\"width: 208px;\">710lbs @ 137.10</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">767lbs @145.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">820lbs @144.00</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">870lbs @142.35</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">867lbs @ 142.25</td>\n</tr>\n<tr>\n<td style=\"width: 134px;\">STEERS</td>\n<td style=\"width: 208px;\">891lbs @ 142.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 17th, 2020 - Market Report','','inherit','closed','closed','','2676-revision-v1','','','2020-11-18 18:00:25','2020-11-18 18:00:25','',2676,'https://kingsvillelivestock.com/2020/11/18/2676-revision-v1/',0,'revision','',0),(2684,2,'2020-11-23 19:29:57','2020-11-23 19:29:57','','Tuesday, November 24th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-november-24th-feeder-cattle-consignments','','','2020-11-23 19:29:57','2020-11-23 19:29:57','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2020/11/Tuesday-November-24th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2697,2,'2020-11-25 15:39:38','2020-11-25 15:39:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>November 24th, 2020,</strong> 1228 hd; last weeks sale 3037 hd; a year ago 888 hd. Compared to last week\'s market feeder cattle weighing 650lbs &amp; down sold steady &amp; 650 lbs &amp; up-sold $2-$4 lower. Slaughter Cows &amp; Bulls sold $2-$4 lower. Buyers were very active with it being a holiday week. Happy Thanksgiving! Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$124.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$127.85Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$113.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$32.00 - $44.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $83.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 367px; height: 59px;\">\n<tbody>\n<tr>\n<td style=\"width: 136px;\">HEIFERS</td>\n<td style=\"width: 215px;\">771lbs @ 127.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 25th, 2020 - Market Report','','publish','closed','open','','november-25th-2020-market-report','','','2020-11-25 15:40:15','2020-11-25 15:40:15','',0,'https://kingsvillelivestock.com/?p=2697',0,'post','',0),(2699,2,'2020-11-25 15:39:38','2020-11-25 15:39:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>November 24th, 2020,</strong> 1228 hd; last weeks sale 3037 hd; a year ago 888 hd. Compared to last week\'s market feeder cattle weighing 650lbs &amp; down sold steady &amp; 650 lbs &amp; up-sold $2-$4 lower. Slaughter Cows &amp; Bulls sold $2-$4 lower. Buyers were very active with it being a holiday week. Happy Thanksgiving! Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$124.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$127.85Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$113.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$32.00 - $44.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $83.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 367px; height: 59px;\">\n<tbody>\n<tr>\n<td style=\"width: 136px;\">HEIFERS</td>\n<td style=\"width: 215px;\">771lbs @ 127.85</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 25th, 2020 - Market Report','','inherit','closed','closed','','2697-revision-v1','','','2020-11-25 15:39:38','2020-11-25 15:39:38','',2697,'https://kingsvillelivestock.com/2020/11/25/2697-revision-v1/',0,'revision','',0),(2700,2,'2020-11-25 15:39:38','2020-11-25 15:39:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>November 24th, 2020,</strong> 1228 hd; last weeks sale 3037 hd; a year ago 888 hd. Compared to last week\'s market feeder cattle weighing 650lbs &amp; down sold steady &amp; 650 lbs &amp; up-sold $2-$4 lower. Slaughter Cows &amp; Bulls sold $2-$4 lower. Buyers were very active with it being a holiday week. Happy Thanksgiving! Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$124.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$127.85Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$113.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$32.00 - $44.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $83.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 367px; height: 59px;\">\n<tbody>\n<tr>\n<td style=\"width: 136px;\">HEIFERS</td>\n<td style=\"width: 215px;\">771lbs @ 127.85</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 17th, 2020 - Market Report','','inherit','closed','closed','','2697-revision-v1','','','2020-11-25 15:39:38','2020-11-25 15:39:38','',2697,'https://kingsvillelivestock.com/2020/11/25/2697-revision-v1/',0,'revision','',0),(2701,2,'2020-11-25 15:39:41','2020-11-25 15:39:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>November 24th, 2020,</strong> 1228 hd; last weeks sale 3037 hd; a year ago 888 hd. Compared to last week\'s market feeder cattle weighing 650lbs &amp; down sold steady &amp; 650 lbs &amp; up-sold $2-$4 lower. Slaughter Cows &amp; Bulls sold $2-$4 lower. Buyers were very active with it being a holiday week. Happy Thanksgiving! Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$124.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$127.85Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$113.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$32.00 - $44.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $83.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 367px; height: 59px;\">\n<tbody>\n<tr>\n<td style=\"width: 136px;\">HEIFERS</td>\n<td style=\"width: 215px;\">771lbs @ 127.85</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 25th, 2020 - Market Report','','inherit','closed','closed','','2697-revision-v1','','','2020-11-25 15:39:41','2020-11-25 15:39:41','',2697,'https://kingsvillelivestock.com/2020/11/25/2697-revision-v1/',0,'revision','',0),(2702,2,'2020-11-25 15:40:11','2020-11-25 15:40:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>November 24th, 2020,</strong> 1228 hd; last weeks sale 3037 hd; a year ago 888 hd. Compared to last week\'s market feeder cattle weighing 650lbs &amp; down sold steady &amp; 650 lbs &amp; up-sold $2-$4 lower. Slaughter Cows &amp; Bulls sold $2-$4 lower. Buyers were very active with it being a holiday week. Happy Thanksgiving! Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$124.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$127.85Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$113.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$32.00 - $44.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $83.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 367px; height: 59px;\">\n<tbody>\n<tr>\n<td style=\"width: 136px;\">HEIFERS</td>\n<td style=\"width: 215px;\">771lbs @ 127.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 25th, 2020 - Market Report','','inherit','closed','closed','','2697-revision-v1','','','2020-11-25 15:40:11','2020-11-25 15:40:11','',2697,'https://kingsvillelivestock.com/2020/11/25/2697-revision-v1/',0,'revision','',0),(2704,2,'2020-11-28 02:37:12','2020-11-28 02:37:12','','2020 SMS Fall Sale Order','','inherit','closed','closed','','2020-sms-fall-sale-order','','','2020-11-28 02:37:12','2020-11-28 02:37:12','',639,'https://kingsvillelivestock.com/wp-content/uploads/2020/11/2020-SMS-Fall-Sale-Order.xlsx',0,'attachment','application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',0),(2707,2,'2020-11-30 21:35:15','2020-11-30 21:35:15','','Tuesday, Decemeber 1st Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-decemeber-1st-feeder-cattle-consignments','','','2020-11-30 21:35:15','2020-11-30 21:35:15','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2020/11/Tuesday-Decemeber-1st-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2712,2,'2020-12-03 01:57:43','2020-12-03 01:57:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>December 1st, 2020,</strong>Â 3691 hd; last weeks sale 1228 hd; a year ago 2229hd. Compared to the last two week\'s market feeder cattle sold steady - $2 lower. Slaughter Cows &amp; Bulls sold fully steady. Â Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$154.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$146.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$135.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$143.00Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$120.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$101.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat CowsÂ </td>\n<td style=\"width: 156.5px;\">$58.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $83.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 370px; height: 316px;\">\n<tbody>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">692lbs @ 140.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">HEFIERS</td>\n<td style=\"width: 216.84375px;\">677lbs @ 141.25</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">693lbs @ 140.75</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">762lbs @ 136.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">787lbs @ 134.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">693lbs @ 152.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">726lbs @ 147.50</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">908lbs @ 135.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">944lbs @ 134.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">977lbs @ 133.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 1st, 2020 - Market Report','','publish','closed','open','','december-1st-2020-market-report','','','2020-12-03 01:57:46','2020-12-03 01:57:46','',0,'https://kingsvillelivestock.com/?p=2712',0,'post','',0),(2714,2,'2020-12-03 01:57:43','2020-12-03 01:57:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>December 1st, 2020,</strong>Â 3691 hd; last weeks sale 1228 hd; a year ago 2229hd. Compared to the last two week\'s market feeder cattle sold steady - $2 lower. Slaughter Cows &amp; Bulls sold fully steady. Â Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$154.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$146.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$135.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$143.00Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$120.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$101.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat CowsÂ </td>\n<td style=\"width: 156.5px;\">$58.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $83.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 370px; height: 316px;\">\n<tbody>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">692lbs @ 140.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">HEFIERS</td>\n<td style=\"width: 216.84375px;\">677lbs @ 141.25</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">693lbs @ 140.75</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">762lbs @ 136.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">787lbs @ 134.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">693lbs @ 152.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">726lbs @ 147.50</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">908lbs @ 135.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">944lbs @ 134.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">977lbs @ 133.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 1st, 2020 - Market Report','','inherit','closed','closed','','2712-revision-v1','','','2020-12-03 01:57:43','2020-12-03 01:57:43','',2712,'https://kingsvillelivestock.com/2020/12/03/2712-revision-v1/',0,'revision','',0),(2715,2,'2020-12-03 01:57:43','2020-12-03 01:57:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>December 1st, 2020,</strong>Â 3691 hd; last weeks sale 1228 hd; a year ago 2229hd. Compared to the last two week\'s market feeder cattle sold steady - $2 lower. Slaughter Cows &amp; Bulls sold fully steady. Â Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$154.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$146.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$135.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$143.00Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$120.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$101.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat CowsÂ </td>\n<td style=\"width: 156.5px;\">$58.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $83.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 370px; height: 316px;\">\n<tbody>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">692lbs @ 140.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">HEFIERS</td>\n<td style=\"width: 216.84375px;\">677lbs @ 141.25</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">693lbs @ 140.75</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">762lbs @ 136.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">787lbs @ 134.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">693lbs @ 152.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">726lbs @ 147.50</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">908lbs @ 135.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">944lbs @ 134.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">977lbs @ 133.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 25th, 2020 - Market Report','','inherit','closed','closed','','2712-revision-v1','','','2020-12-03 01:57:43','2020-12-03 01:57:43','',2712,'https://kingsvillelivestock.com/2020/12/03/2712-revision-v1/',0,'revision','',0),(2716,2,'2020-12-03 01:57:46','2020-12-03 01:57:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>December 1st, 2020,</strong>Â 3691 hd; last weeks sale 1228 hd; a year ago 2229hd. Compared to the last two week\'s market feeder cattle sold steady - $2 lower. Slaughter Cows &amp; Bulls sold fully steady. Â Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$154.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$146.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$135.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$143.00Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$105.00-$120.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$101.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat CowsÂ </td>\n<td style=\"width: 156.5px;\">$58.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $83.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 370px; height: 316px;\">\n<tbody>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">692lbs @ 140.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">HEFIERS</td>\n<td style=\"width: 216.84375px;\">677lbs @ 141.25</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">693lbs @ 140.75</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">762lbs @ 136.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">787lbs @ 134.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">693lbs @ 152.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">726lbs @ 147.50</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">908lbs @ 135.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">944lbs @ 134.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">977lbs @ 133.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 1st, 2020 - Market Report','','inherit','closed','closed','','2712-revision-v1','','','2020-12-03 01:57:46','2020-12-03 01:57:46','',2712,'https://kingsvillelivestock.com/2020/12/03/2712-revision-v1/',0,'revision','',0),(2722,2,'2020-12-07 16:50:32','2020-12-07 16:50:32','','Tuesday, Decemeber 8th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-decemeber-8th-feeder-cattle-consignments','','','2020-12-07 16:50:32','2020-12-07 16:50:32','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2020/12/Tuesday-Decemeber-8th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2727,2,'2020-12-09 20:49:49','2020-12-09 20:49:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>December 8th, 2020,</strong>Â 4311 hd; last weeks sale 3691 hd; a year ago 3691hd. Feeder steers sold steady-$3 lower and steady-$3 higher in spots. Feeder heifers sold steady-$2 higher. Heifers weighing 550lbs &amp; down sold steady-$2 higher and heifers weighing 600lbs &amp; up-sold steady-$5 lower. Slaughter Cows &amp; Bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$129.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$138.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$149.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.50-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$142.50Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NA</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat CowsÂ </td>\n<td style=\"width: 156.5px;\">$58.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $83.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 370px; height: 316px;\">\n<tbody>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">706lbs @ 142.50</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">889lbs @ 137.10</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">908lbs @ 138.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">886lbs @ 132.60</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">832lbs @ 133.75</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">858lbs @ 136.50</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">762lbs @ 135.10</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">802lbs @ 135.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 8th, 2020 - Market Report','','publish','closed','open','','december-8th-2020-market-report','','','2020-12-10 23:02:01','2020-12-10 23:02:01','',0,'https://kingsvillelivestock.com/?p=2727',0,'post','',0),(2729,2,'2020-12-09 20:49:49','2020-12-09 20:49:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>December 8th, 2020,</strong> 3691 hd; last weeks sale 3691 hd; a year ago 3691hd. Feeder steers sold steady-$3 lower and steady-$3 higher in spots. Feeder heifers sold steady-$2 higher. Heifers weighing 550lbs &amp; down sold steady-$2 higher and heifers weighing 600lbs &amp; up-sold steady-$5 lower. Slaughter Cows &amp; Bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$129.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$138.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$149.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.50-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$142.50Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NA</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat CowsÂ </td>\n<td style=\"width: 156.5px;\">$58.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $83.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 370px; height: 316px;\">\n<tbody>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">706lbs @ 142.50</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">889lbs @ 137.10</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">908lbs @ 138.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">886lbs @ 132.60</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">832lbs @ 133.75</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">858lbs @ 136.50</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">762lbs @ 135.10</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">802lbs @ 135.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 8th, 2020 - Market Report','','inherit','closed','closed','','2727-revision-v1','','','2020-12-09 20:49:49','2020-12-09 20:49:49','',2727,'https://kingsvillelivestock.com/2020/12/09/2727-revision-v1/',0,'revision','',0),(2730,2,'2020-12-09 20:49:49','2020-12-09 20:49:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>December 8th, 2020,</strong> 3691 hd; last weeks sale 3691 hd; a year ago 3691hd. Feeder steers sold steady-$3 lower and steady-$3 higher in spots. Feeder heifers sold steady-$2 higher. Heifers weighing 550lbs &amp; down sold steady-$2 higher and heifers weighing 600lbs &amp; up-sold steady-$5 lower. Slaughter Cows &amp; Bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$129.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$138.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$149.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.50-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$142.50Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NA</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat CowsÂ </td>\n<td style=\"width: 156.5px;\">$58.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $83.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 370px; height: 316px;\">\n<tbody>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">706lbs @ 142.50</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">889lbs @ 137.10</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">908lbs @ 138.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">886lbs @ 132.60</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">832lbs @ 133.75</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">858lbs @ 136.50</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">762lbs @ 135.10</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">802lbs @ 135.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 1st, 2020 - Market Report','','inherit','closed','closed','','2727-revision-v1','','','2020-12-09 20:49:49','2020-12-09 20:49:49','',2727,'https://kingsvillelivestock.com/2020/12/09/2727-revision-v1/',0,'revision','',0),(2731,2,'2020-12-09 20:49:52','2020-12-09 20:49:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>December 8th, 2020,</strong> 3691 hd; last weeks sale 3691 hd; a year ago 3691hd. Feeder steers sold steady-$3 lower and steady-$3 higher in spots. Feeder heifers sold steady-$2 higher. Heifers weighing 550lbs &amp; down sold steady-$2 higher and heifers weighing 600lbs &amp; up-sold steady-$5 lower. Slaughter Cows &amp; Bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$129.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$138.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$149.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.50-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$142.50Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NA</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat CowsÂ </td>\n<td style=\"width: 156.5px;\">$58.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $83.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 370px; height: 316px;\">\n<tbody>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">706lbs @ 142.50</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">889lbs @ 137.10</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">908lbs @ 138.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">886lbs @ 132.60</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">832lbs @ 133.75</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">858lbs @ 136.50</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">762lbs @ 135.10</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">802lbs @ 135.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 8th, 2020 - Market Report','','inherit','closed','closed','','2727-revision-v1','','','2020-12-09 20:49:52','2020-12-09 20:49:52','',2727,'https://kingsvillelivestock.com/2020/12/09/2727-revision-v1/',0,'revision','',0),(2738,2,'2020-12-10 23:01:58','2020-12-10 23:01:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>December 8th, 2020,</strong>Â 4311 hd; last weeks sale 3691 hd; a year ago 3691hd. Feeder steers sold steady-$3 lower and steady-$3 higher in spots. Feeder heifers sold steady-$2 higher. Heifers weighing 550lbs &amp; down sold steady-$2 higher and heifers weighing 600lbs &amp; up-sold steady-$5 lower. Slaughter Cows &amp; Bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$129.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$138.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$149.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.50-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$142.50Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NA</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat CowsÂ </td>\n<td style=\"width: 156.5px;\">$58.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $83.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 370px; height: 316px;\">\n<tbody>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">706lbs @ 142.50</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">889lbs @ 137.10</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">908lbs @ 138.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">886lbs @ 132.60</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">832lbs @ 133.75</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">858lbs @ 136.50</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">762lbs @ 135.10</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">802lbs @ 135.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 8th, 2020 - Market Report','','inherit','closed','closed','','2727-revision-v1','','','2020-12-10 23:01:58','2020-12-10 23:01:58','',2727,'https://kingsvillelivestock.com/2020/12/10/2727-revision-v1/',0,'revision','',0),(2742,2,'2020-12-14 18:55:58','2020-12-14 18:55:58','','Tuesday, Decemeber 15th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-decemeber-15th-feeder-cattle-consignments','','','2020-12-14 18:55:58','2020-12-14 18:55:58','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2020/12/Tuesday-Decemeber-15th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2751,2,'2020-12-16 16:27:00','2020-12-16 16:27:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>December 15th, 2020,</strong> 2544 hd; last weeks sale 4311 hd; a year ago 1400hd. Compared to last week steers sold steady-$3 higher. Heifers sold steady-$5 lower &amp; up to $5 higher in spots. Slaughter Cows &amp; Bulls sold $1-$2 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$157.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$109.00-$123.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1140</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$104.50</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$136.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$138.00Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$122.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$106.00-$120.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1040</td>\n<td style=\"width: 157px;\">$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $46.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$62.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $90.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 370px; height: 316px;\">\n<tbody>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">877lbs @ 122.60</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">887lbs @ 138.10</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">579lbs @ 159.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 15th, 2020 - Market Report','','publish','closed','open','','december-15th-2020-market-report','','','2020-12-16 16:33:00','2020-12-16 16:33:00','',0,'https://kingsvillelivestock.com/?p=2751',0,'post','',0),(2753,2,'2020-12-16 16:27:00','2020-12-16 16:27:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>December 8th, 2020,</strong> 2544 hd; last weeks sale 4311 hd; a year ago 1400hd. Compared to last week steers sold steady-$3 higher. Heifers sold steady-$5 lower &amp; up to $5 higher in spots. Slaughter Cows &amp; Bulls sold $1-$2 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$157.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$109.00-$123.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1140</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$104.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$136.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$138.00Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$122.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$106.00-$120.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1040</td>\n<td style=\"width: 157px;\">$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $46.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$62.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $90.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 370px; height: 316px;\">\n<tbody>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">877lbs @ 122.60</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">887lbs @ 138.10</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">579lbs @ 159.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 15th, 2020 - Market Report','','inherit','closed','closed','','2751-revision-v1','','','2020-12-16 16:27:00','2020-12-16 16:27:00','',2751,'https://kingsvillelivestock.com/2020/12/16/2751-revision-v1/',0,'revision','',0),(2754,2,'2020-12-16 16:27:00','2020-12-16 16:27:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>December 8th, 2020,</strong> 2544 hd; last weeks sale 4311 hd; a year ago 1400hd. Compared to last week steers sold steady-$3 higher. Heifers sold steady-$5 lower &amp; up to $5 higher in spots. Slaughter Cows &amp; Bulls sold $1-$2 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$157.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$109.00-$123.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1140</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$104.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$136.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$138.00Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$122.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$106.00-$120.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1040</td>\n<td style=\"width: 157px;\">$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $46.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$62.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $90.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 370px; height: 316px;\">\n<tbody>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">877lbs @ 122.60</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">887lbs @ 138.10</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">579lbs @ 159.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 8th, 2020 - Market Report','','inherit','closed','closed','','2751-revision-v1','','','2020-12-16 16:27:00','2020-12-16 16:27:00','',2751,'https://kingsvillelivestock.com/2020/12/16/2751-revision-v1/',0,'revision','',0),(2755,2,'2020-12-16 16:27:03','2020-12-16 16:27:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>December 8th, 2020,</strong> 2544 hd; last weeks sale 4311 hd; a year ago 1400hd. Compared to last week steers sold steady-$3 higher. Heifers sold steady-$5 lower &amp; up to $5 higher in spots. Slaughter Cows &amp; Bulls sold $1-$2 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$157.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$109.00-$123.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1140</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$104.50</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$136.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$138.00Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$122.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$106.00-$120.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1040</td>\n<td style=\"width: 157px;\">$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $46.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$62.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $90.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 370px; height: 316px;\">\n<tbody>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">877lbs @ 122.60</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">887lbs @ 138.10</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">579lbs @ 159.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 15th, 2020 - Market Report','','inherit','closed','closed','','2751-revision-v1','','','2020-12-16 16:27:03','2020-12-16 16:27:03','',2751,'https://kingsvillelivestock.com/2020/12/16/2751-revision-v1/',0,'revision','',0),(2756,2,'2020-12-16 16:33:00','2020-12-16 16:33:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\" hover_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>December 15th, 2020,</strong> 2544 hd; last weeks sale 4311 hd; a year ago 1400hd. Compared to last week steers sold steady-$3 higher. Heifers sold steady-$5 lower &amp; up to $5 higher in spots. Slaughter Cows &amp; Bulls sold $1-$2 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$157.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$109.00-$123.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1140</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$104.50</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$136.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$138.00Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$122.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$106.00-$120.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1040</td>\n<td style=\"width: 157px;\">$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $46.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Fat Cows</td>\n<td style=\"width: 156.5px;\">$62.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $90.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"width: 370px; height: 316px;\">\n<tbody>\n<tr>\n<td style=\"width: 137.171875px;\">HEIFERS</td>\n<td style=\"width: 216.84375px;\">877lbs @ 122.60</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">887lbs @ 138.10</td>\n</tr>\n<tr>\n<td style=\"width: 137.171875px;\">STEERS</td>\n<td style=\"width: 216.84375px;\">579lbs @ 159.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 15th, 2020 - Market Report','','inherit','closed','closed','','2751-revision-v1','','','2020-12-16 16:33:00','2020-12-16 16:33:00','',2751,'https://kingsvillelivestock.com/2020/12/16/2751-revision-v1/',0,'revision','',0),(2774,2,'2020-12-21 20:07:21','2020-12-21 20:07:21','','Tuesday, December 22nd Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-december-22nd-feeder-cattle-consignments','','','2020-12-21 20:07:21','2020-12-21 20:07:21','',0,'https://kingsvillelivestock.com/wp-content/uploads/2020/12/Tuesday-December-22nd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2776,2,'2020-12-23 17:54:41','2020-12-23 17:54:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>December 22nd, 2020,</strong> 894 hd; last weeks sale 2544 hd; a year ago N/A. Compared to last week in a limited test, Feeders steers under 500lbs sold $2-$5 higher, over 500lbs sold steady. Feeder heifers sold steady. No sale on December 29th due to holiday. Merry Christmas &amp; Happy New Year. Special calf &amp; yearling sale January 5, 2021. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$161.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$153.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.50-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$110.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$95.00-$110.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$142.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$130.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$123.25Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$103.00-$119.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$88.00-$100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $38.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$55.00 - $85.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>No-load lots this week!Â </p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 22nd, 2020 - Market Report','','publish','closed','open','','december-22nd-2020-market-report','','','2020-12-23 17:54:45','2020-12-23 17:54:45','',0,'https://kingsvillelivestock.com/?p=2776',0,'post','',0),(2778,2,'2020-12-23 17:54:41','2020-12-23 17:54:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>December 22nd, 2020,</strong> 894 hd; last weeks sale 2544 hd; a year ago N/A. Compared to last week in a limited test, Feeders steers under 500lbs sold $2-$5 higher, over 500lbs sold steady. Feeder heifers sold steady. No sale on December 29th due to holiday. Merry Christmas &amp; Happy New Year. Special calf &amp; yearling sale January 5, 2021. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$161.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$153.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.50-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$110.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$95.00-$110.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$142.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$130.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$123.25Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$103.00-$119.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$88.00-$100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $38.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$55.00 - $85.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>No-load lots this week!Â </p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 22nd, 2020 - Market Report','','inherit','closed','closed','','2776-revision-v1','','','2020-12-23 17:54:41','2020-12-23 17:54:41','',2776,'https://kingsvillelivestock.com/2020/12/23/2776-revision-v1/',0,'revision','',0),(2779,2,'2020-12-23 17:54:41','2020-12-23 17:54:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>December 22nd, 2020,</strong> 894 hd; last weeks sale 2544 hd; a year ago N/A. Compared to last week in a limited test, Feeders steers under 500lbs sold $2-$5 higher, over 500lbs sold steady. Feeder heifers sold steady. No sale on December 29th due to holiday. Merry Christmas &amp; Happy New Year. Special calf &amp; yearling sale January 5, 2021. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$161.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$153.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.50-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$110.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$95.00-$110.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$142.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$130.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$123.25Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$103.00-$119.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$88.00-$100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $38.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$55.00 - $85.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>No-load lots this week!Â </p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 15th, 2020 - Market Report','','inherit','closed','closed','','2776-revision-v1','','','2020-12-23 17:54:41','2020-12-23 17:54:41','',2776,'https://kingsvillelivestock.com/2020/12/23/2776-revision-v1/',0,'revision','',0),(2780,2,'2020-12-23 17:54:45','2020-12-23 17:54:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>December 22nd, 2020,</strong> 894 hd; last weeks sale 2544 hd; a year ago N/A. Compared to last week in a limited test, Feeders steers under 500lbs sold $2-$5 higher, over 500lbs sold steady. Feeder heifers sold steady. No sale on December 29th due to holiday. Merry Christmas &amp; Happy New Year. Special calf &amp; yearling sale January 5, 2021. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$161.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$153.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.50-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$110.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$95.00-$110.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$142.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$130.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$123.25Â </span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$103.00-$119.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$88.00-$100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $38.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$55.00 - $85.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>No-load lots this week!Â </p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 22nd, 2020 - Market Report','','inherit','closed','closed','','2776-revision-v1','','','2020-12-23 17:54:45','2020-12-23 17:54:45','',2776,'https://kingsvillelivestock.com/2020/12/23/2776-revision-v1/',0,'revision','',0),(2787,2,'2021-01-04 19:07:29','2021-01-04 19:07:29','','Tuesday, January 5th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-january-5th-feeder-cattle-consignments','','','2021-01-04 19:07:29','2021-01-04 19:07:29','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/01/Tuesday-January-5th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2795,2,'2021-01-06 16:40:51','2021-01-06 16:40:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>January 5th, 2021,</strong> 3568 hd; 2 weeks ago 894 hd; a year ago 3765. Feeders cattle of all classes sold steady as the feeder board continues to be volatile. There was good buyer demand. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$142.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$128.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$145.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$136.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$132.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.85-$117.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$85.00-$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$30.00 - $44.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $87.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">676lbs @ 136</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">690lbs @ 129</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">754lbs @ 127.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">812lbs @ 135.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">874lbs @ 131.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">954lbs @ 128</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 5th, 2021 - Market Report','','publish','closed','open','','january-5th-2021-market-report','','','2021-01-06 16:40:55','2021-01-06 16:40:55','',0,'https://kingsvillelivestock.com/?p=2795',0,'post','',0),(2797,2,'2021-01-06 16:40:51','2021-01-06 16:40:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>January 5th, 2021,</strong> 3568 hd; 2 weeks ago 894 hd; a year ago 3765. Feeders cattle of all classes sold steady as the feeder board continues to be volatile. There was good buyer demand. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$142.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$128.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$145.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$136.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$132.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.85-$117.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$85.00-$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$30.00 - $44.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $87.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">676lbs @ 136</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">690lbs @ 129</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">754lbs @ 127.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">812lbs @ 135.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">874lbs @ 131.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">954lbs @ 128</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 5th, 2021 - Market Report','','inherit','closed','closed','','2795-revision-v1','','','2021-01-06 16:40:51','2021-01-06 16:40:51','',2795,'https://kingsvillelivestock.com/2021/01/06/2795-revision-v1/',0,'revision','',0),(2798,2,'2021-01-06 16:40:51','2021-01-06 16:40:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>January 5th, 2021,</strong> 3568 hd; 2 weeks ago 894 hd; a year ago 3765. Feeders cattle of all classes sold steady as the feeder board continues to be volatile. There was good buyer demand. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$142.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$128.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$145.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$136.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$132.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.85-$117.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$85.00-$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$30.00 - $44.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $87.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">676lbs @ 136</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">690lbs @ 129</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">754lbs @ 127.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">812lbs @ 135.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">874lbs @ 131.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">954lbs @ 128</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 22nd, 2020 - Market Report','','inherit','closed','closed','','2795-revision-v1','','','2021-01-06 16:40:51','2021-01-06 16:40:51','',2795,'https://kingsvillelivestock.com/2021/01/06/2795-revision-v1/',0,'revision','',0),(2799,2,'2021-01-06 16:40:55','2021-01-06 16:40:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>January 5th, 2021,</strong> 3568 hd; 2 weeks ago 894 hd; a year ago 3765. Feeders cattle of all classes sold steady as the feeder board continues to be volatile. There was good buyer demand. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$142.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$128.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$145.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$136.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$132.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.85-$117.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$85.00-$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$30.00 - $44.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $87.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">676lbs @ 136</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">690lbs @ 129</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">754lbs @ 127.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">812lbs @ 135.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">874lbs @ 131.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">954lbs @ 128</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 5th, 2021 - Market Report','','inherit','closed','closed','','2795-revision-v1','','','2021-01-06 16:40:55','2021-01-06 16:40:55','',2795,'https://kingsvillelivestock.com/2021/01/06/2795-revision-v1/',0,'revision','',0),(2808,2,'2021-01-11 20:01:01','2021-01-11 20:01:01','','Tuesday, January 12th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-january-12th-feeder-cattle-consignments','','','2021-01-11 20:01:01','2021-01-11 20:01:01','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/01/Tuesday-January-12th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2822,2,'2021-01-13 17:19:04','2021-01-13 17:19:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>January 12th, 2021,</strong> 3471 hd; last week 3568 hd; a year ago 1135. Feeder cattle weighing 635lbs &amp; down sold steady - $5 higher &amp; 650lbs &amp; up-sold steady - $5 lower. As 2021 corn contracts keep increasing. Slaughter Cows &amp; Bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$193.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$143.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$130.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$111.00-$114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat</td>\n<td style=\"width: 156.5px;\">$56.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $91.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">780lbs @ 130</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">830lbs @ 130.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">743lbs @ 131.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">758lbs @ 137.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">869lbs @ 126.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">723lbs @ 143.60</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 12th, 2021 - Market Report','','publish','closed','open','','january-12th-2021-market-report','','','2021-01-13 17:20:09','2021-01-13 17:20:09','',0,'https://kingsvillelivestock.com/?p=2822',0,'post','',0),(2824,2,'2021-01-13 17:19:04','2021-01-13 17:19:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>January 12th, 2021,</strong> 3471 hd; last week 3568 hd; a year ago 1135. Feeder cattle weighing 635lbs &amp; down sold steady - $5 higher &amp; 650lbs &amp; up-sold steady - $5 lower. As 2021 corn contracts keep increasing. Slaughter Cows &amp; Bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$193.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$143.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$130.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$111.00-$114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat</td>\n<td style=\"width: 156.5px;\">$56.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $91.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">780lbs @ 130</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">830lbs @ 130.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">743lbs @ 131.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">758lbs @ 137.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">869lbs @ 126.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">723lbs @ 143.60</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 12th, 2021 - Market Report','','inherit','closed','closed','','2822-revision-v1','','','2021-01-13 17:19:04','2021-01-13 17:19:04','',2822,'https://kingsvillelivestock.com/2021/01/13/2822-revision-v1/',0,'revision','',0),(2825,2,'2021-01-13 17:19:04','2021-01-13 17:19:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>January 12th, 2021,</strong> 3471 hd; last week 3568 hd; a year ago 1135. Feeder cattle weighing 635lbs &amp; down sold steady - $5 higher &amp; 650lbs &amp; up-sold steady - $5 lower. As 2021 corn contracts keep increasing. Slaughter Cows &amp; Bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$193.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$143.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$130.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$111.00-$114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat</td>\n<td style=\"width: 156.5px;\">$56.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $91.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">780lbs @ 130</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">830lbs @ 130.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">743lbs @ 131.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">758lbs @ 137.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">869lbs @ 126.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">723lbs @ 143.60</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 5th, 2021 - Market Report','','inherit','closed','closed','','2822-revision-v1','','','2021-01-13 17:19:04','2021-01-13 17:19:04','',2822,'https://kingsvillelivestock.com/2021/01/13/2822-revision-v1/',0,'revision','',0),(2826,2,'2021-01-13 17:19:07','2021-01-13 17:19:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>January 12th, 2021,</strong> 3471 hd; last week 3568 hd; a year ago 1135. Feeder cattle weighing 635lbs &amp; down sold steady - $5 higher &amp; 650lbs &amp; up-sold steady - $5 lower. As 2021 corn contracts keep increasing. Slaughter Cows &amp; Bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$193.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$143.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$130.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$111.00-$114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat</td>\n<td style=\"width: 156.5px;\">$56.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $91.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">780lbs @ 130</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">830lbs @ 130.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">743lbs @ 131.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">758lbs @ 137.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">869lbs @ 126.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">723lbs @ 143.60</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 12th, 2021 - Market Report','','inherit','closed','closed','','2822-revision-v1','','','2021-01-13 17:19:07','2021-01-13 17:19:07','',2822,'https://kingsvillelivestock.com/2021/01/13/2822-revision-v1/',0,'revision','',0),(2827,2,'2021-01-13 17:20:09','2021-01-13 17:20:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>January 12th, 2021,</strong> 3471 hd; last week 3568 hd; a year ago 1135. Feeder cattle weighing 635lbs &amp; down sold steady - $5 higher &amp; 650lbs &amp; up-sold steady - $5 lower. As 2021 corn contracts keep increasing. Slaughter Cows &amp; Bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$193.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$143.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$130.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$111.00-$114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat</td>\n<td style=\"width: 156.5px;\">$56.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $91.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">780lbs @ 130</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">830lbs @ 130.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">743lbs @ 131.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">758lbs @ 137.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">869lbs @ 126.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">723lbs @ 143.60</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 12th, 2021 - Market Report','','inherit','closed','closed','','2822-revision-v1','','','2021-01-13 17:20:09','2021-01-13 17:20:09','',2822,'https://kingsvillelivestock.com/2021/01/13/2822-revision-v1/',0,'revision','',0),(2828,2,'2021-01-13 17:20:10','2021-01-13 17:20:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>January 12th, 2021,</strong> 3471 hd; last week 3568 hd; a year ago 1135. Feeder cattle weighing 635lbs &amp; down sold steady - $5 higher &amp; 650lbs &amp; up-sold steady - $5 lower. As 2021 corn contracts keep increasing. Slaughter Cows &amp; Bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$193.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$143.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$130.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$111.00-$114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat</td>\n<td style=\"width: 156.5px;\">$56.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $91.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">780lbs @ 130</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">830lbs @ 130.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">743lbs @ 131.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">758lbs @ 137.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">869lbs @ 126.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">723lbs @ 143.60</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 12th, 2021 - Market Report','','inherit','closed','closed','','2822-autosave-v1','','','2021-01-13 17:20:10','2021-01-13 17:20:10','',2822,'https://kingsvillelivestock.com/2021/01/13/2822-autosave-v1/',0,'revision','',0),(2833,2,'2021-01-18 16:14:27','2021-01-18 16:14:27','','Tuesday, January 19th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-january-19th-feeder-cattle-consignments','','','2021-01-18 16:14:27','2021-01-18 16:14:27','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/01/Tuesday-January-19th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2843,2,'2021-01-20 17:45:06','2021-01-20 17:45:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>January 19th, 2021,</strong> 3392 hd; last week 3471 hd; a year ago 2475. All classes of feeder cattle sold steady-$5 higher. Slaughter Cows &amp; Bulls sold steady-$1 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$131.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$123.85</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$132.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$95.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$30.00 - $46.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$62.00 - $88.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls Low YieldÂ </td>\n<td style=\"width: 156.5px;\">$38.00 - $55.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">796lbs @ 132.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">894lbs @ 131.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">762lbs @ 134.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">941lbs @ 123.35</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 19th, 2021 - Market Report','','publish','closed','open','','january-19th-2021-market-report','','','2021-01-20 17:45:10','2021-01-20 17:45:10','',0,'https://kingsvillelivestock.com/?p=2843',0,'post','',0),(2845,2,'2021-01-20 17:45:06','2021-01-20 17:45:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>January 19th, 2021,</strong> 3392 hd; last week 3471 hd; a year ago 2475. All classes of feeder cattle sold steady-$5 higher. Slaughter Cows &amp; Bulls sold steady-$1 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$131.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$123.85</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$132.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$95.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$30.00 - $46.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$62.00 - $88.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls Low YieldÂ </td>\n<td style=\"width: 156.5px;\">$38.00 - $55.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">796lbs @ 132.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">894lbs @ 131.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">762lbs @ 134.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">941lbs @ 123.35</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 19th, 2021 - Market Report','','inherit','closed','closed','','2843-revision-v1','','','2021-01-20 17:45:06','2021-01-20 17:45:06','',2843,'https://kingsvillelivestock.com/2021/01/20/2843-revision-v1/',0,'revision','',0),(2846,2,'2021-01-20 17:45:07','2021-01-20 17:45:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>January 19th, 2021,</strong> 3392 hd; last week 3471 hd; a year ago 2475. All classes of feeder cattle sold steady-$5 higher. Slaughter Cows &amp; Bulls sold steady-$1 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$131.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$123.85</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$132.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$95.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$30.00 - $46.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$62.00 - $88.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls Low YieldÂ </td>\n<td style=\"width: 156.5px;\">$38.00 - $55.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">796lbs @ 132.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">894lbs @ 131.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">762lbs @ 134.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">941lbs @ 123.35</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 12th, 2021 - Market Report','','inherit','closed','closed','','2843-revision-v1','','','2021-01-20 17:45:07','2021-01-20 17:45:07','',2843,'https://kingsvillelivestock.com/2021/01/20/2843-revision-v1/',0,'revision','',0),(2847,2,'2021-01-20 17:45:10','2021-01-20 17:45:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>January 19th, 2021,</strong> 3392 hd; last week 3471 hd; a year ago 2475. All classes of feeder cattle sold steady-$5 higher. Slaughter Cows &amp; Bulls sold steady-$1 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$131.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$112.00-$123.85</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$139.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$132.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$95.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$30.00 - $46.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$62.00 - $88.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls Low YieldÂ </td>\n<td style=\"width: 156.5px;\">$38.00 - $55.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">796lbs @ 132.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">894lbs @ 131.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">762lbs @ 134.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">941lbs @ 123.35</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 19th, 2021 - Market Report','','inherit','closed','closed','','2843-revision-v1','','','2021-01-20 17:45:10','2021-01-20 17:45:10','',2843,'https://kingsvillelivestock.com/2021/01/20/2843-revision-v1/',0,'revision','',0),(2853,2,'2021-01-25 19:58:50','2021-01-25 19:58:50','','Tuesday, January 26th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-january-26th-feeder-cattle-consignments','','','2021-01-25 19:58:50','2021-01-25 19:58:50','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/01/Tuesday-January-26th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2857,2,'2021-01-27 16:14:12','2021-01-27 16:14:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>January 26th, 2021,</strong> 1504 hd; last week 3392 hd; a year ago 1595. All classes of feeder cattle sold steady-$5 higher with very good buyer activity. Slaughter Cows &amp; Bulls sold steady $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$188.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$131.10</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$138.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$127.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$118.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$106.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$63.00 - $88.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">545lbs @ 174.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">800lbs @ 133.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">915lbs @ 131.10</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 26th, 2021 - Market Report','','publish','closed','open','','january-26th-2021-market-report','','','2021-01-27 16:14:15','2021-01-27 16:14:15','',0,'https://kingsvillelivestock.com/?p=2857',0,'post','',0),(2859,2,'2021-01-27 16:14:12','2021-01-27 16:14:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>January 26th, 2021,</strong> 1504 hd; last week 3392 hd; a year ago 1595. All classes of feeder cattle sold steady-$5 higher with very good buyer activity. Slaughter Cows &amp; Bulls sold steady $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$188.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$131.10</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$138.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$127.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$118.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$106.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$63.00 - $88.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">545lbs @ 174.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">800lbs @ 133.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">915lbs @ 131.10</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 26th, 2021 - Market Report','','inherit','closed','closed','','2857-revision-v1','','','2021-01-27 16:14:12','2021-01-27 16:14:12','',2857,'https://kingsvillelivestock.com/2021/01/27/2857-revision-v1/',0,'revision','',0),(2860,2,'2021-01-27 16:14:12','2021-01-27 16:14:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>January 26th, 2021,</strong> 1504 hd; last week 3392 hd; a year ago 1595. All classes of feeder cattle sold steady-$5 higher with very good buyer activity. Slaughter Cows &amp; Bulls sold steady $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$188.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$131.10</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$138.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$127.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$118.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$106.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$63.00 - $88.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">545lbs @ 174.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">800lbs @ 133.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">915lbs @ 131.10</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 19th, 2021 - Market Report','','inherit','closed','closed','','2857-revision-v1','','','2021-01-27 16:14:12','2021-01-27 16:14:12','',2857,'https://kingsvillelivestock.com/2021/01/27/2857-revision-v1/',0,'revision','',0),(2861,2,'2021-01-27 16:14:15','2021-01-27 16:14:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>January 26th, 2021,</strong> 1504 hd; last week 3392 hd; a year ago 1595. All classes of feeder cattle sold steady-$5 higher with very good buyer activity. Slaughter Cows &amp; Bulls sold steady $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$188.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$131.10</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$138.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$127.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$118.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$106.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $54.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$63.00 - $88.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">545lbs @ 174.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">800lbs @ 133.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">915lbs @ 131.10</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 26th, 2021 - Market Report','','inherit','closed','closed','','2857-revision-v1','','','2021-01-27 16:14:15','2021-01-27 16:14:15','',2857,'https://kingsvillelivestock.com/2021/01/27/2857-revision-v1/',0,'revision','',0),(2863,2,'2021-02-01 19:20:36','2021-02-01 19:20:36','','Tuesday, February 2nd Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-february-2nd-feeder-cattle-consignments','','','2021-02-01 19:20:36','2021-02-01 19:20:36','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/02/Tuesday-February-2nd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2870,2,'2021-02-03 16:31:43','2021-02-03 16:31:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>February 2nd, 2021,</strong> 2174 hd; last week 1504 hd; a year ago 1867. Feeder cattle sold $3-$6 higher with very good buyer attendance. Slaughter Cows &amp; Bulls sold $3-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$144.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$129.75</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$139.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$138.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $94.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">792lbs @ 138.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">818lbs @ 133.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">908lbs @ 129.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">740lbs @ 135.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 2nd, 2021 - Market Report','','publish','closed','open','','february-2nd-2021-market-report','','','2021-02-03 16:31:46','2021-02-03 16:31:46','',0,'https://kingsvillelivestock.com/?p=2870',0,'post','',0),(2871,2,'2021-02-03 16:31:43','2021-02-03 16:31:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>February 2nd, 2021,</strong> 2174 hd; last week 1504 hd; a year ago 1867. Feeder cattle sold $3-$6 higher with very good buyer attendance. Slaughter Cows &amp; Bulls sold $3-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$144.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$129.75</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$139.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$138.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $94.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">792lbs @ 138.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">818lbs @ 133.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">908lbs @ 129.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">740lbs @ 135.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 2nd, 2021 - Market Report','','inherit','closed','closed','','2870-revision-v1','','','2021-02-03 16:31:43','2021-02-03 16:31:43','',2870,'https://kingsvillelivestock.com/2021/02/03/2870-revision-v1/',0,'revision','',0),(2872,2,'2021-02-03 16:31:43','2021-02-03 16:31:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>February 2nd, 2021,</strong> 2174 hd; last week 1504 hd; a year ago 1867. Feeder cattle sold $3-$6 higher with very good buyer attendance. Slaughter Cows &amp; Bulls sold $3-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$144.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$129.75</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$139.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$138.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $94.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">792lbs @ 138.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">818lbs @ 133.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">908lbs @ 129.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">740lbs @ 135.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 26th, 2021 - Market Report','','inherit','closed','closed','','2870-revision-v1','','','2021-02-03 16:31:43','2021-02-03 16:31:43','',2870,'https://kingsvillelivestock.com/2021/02/03/2870-revision-v1/',0,'revision','',0),(2873,2,'2021-02-03 16:31:46','2021-02-03 16:31:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>February 2nd, 2021,</strong> 2174 hd; last week 1504 hd; a year ago 1867. Feeder cattle sold $3-$6 higher with very good buyer attendance. Slaughter Cows &amp; Bulls sold $3-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$153.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$144.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$129.75</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$139.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$138.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $94.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">792lbs @ 138.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">818lbs @ 133.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">908lbs @ 129.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">740lbs @ 135.50</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 2nd, 2021 - Market Report','','inherit','closed','closed','','2870-revision-v1','','','2021-02-03 16:31:46','2021-02-03 16:31:46','',2870,'https://kingsvillelivestock.com/2021/02/03/2870-revision-v1/',0,'revision','',0),(2875,2,'2021-02-03 22:24:53','2021-02-03 22:24:53','','Anstine Estate Auction Feb 2021','','inherit','closed','closed','','anstine-estate-auction-feb-2021','','','2021-02-03 22:24:53','2021-02-03 22:24:53','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2021/02/Anstine-Estate-Auction-Feb-2021.pdf',0,'attachment','application/pdf',0),(2881,2,'2021-02-08 18:51:20','2021-02-08 18:51:20','','Tuesday, February 9th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-february-9th-feeder-cattle-consignments','','','2021-02-08 18:51:20','2021-02-08 18:51:20','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/02/Tuesday-February-9th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2891,2,'2021-02-10 16:36:06','2021-02-10 16:36:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>February 9th, 2021,</strong> 1955 hd; last week 2174 hd; a year ago 3389. Compared to last week steers sold steady except for 700-775lb steers selling up to $5 higher. Heifers sold steady-$6 higher w/ the advantage on those weighing 450-625lbs. Several nice strings, of home-raised cattle, were sold along with good buyer activity. Slaughter Cows &amp; Bulls sold steady - $2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$181.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.00-$132.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$122.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$157.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$133.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$127.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$101.00-$107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$67.00 - $84.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">721lbs @ 149.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">745lbs @ 145.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">629lbs @ 152.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">822lbs @ 132.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">568lbs @ 165.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">434lbs @ 181.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">839lbs @ 129.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">542lbs @ 157.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">607lbs @ 146.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 9th, 2021 - Market Report','','publish','closed','open','','february-9th-2021-market-report','','','2021-02-10 16:38:36','2021-02-10 16:38:36','',0,'https://kingsvillelivestock.com/?p=2891',0,'post','',0),(2893,2,'2021-02-10 16:36:06','2021-02-10 16:36:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>February 9th, 2021,</strong> 1955 hd; last week 2174 hd; a year ago 3389. Compared to last week steers sold steady except for 700-775lb steers selling up to $5 higher. Heifers sold steady-$6 higher w/ the advantage on those weighing 450-625lbs. Several nice strings, of home-raised cattle, were sold along with good buyer activity. Slaughter Cows &amp; Bulls sold steady - $2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$181.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.00-$132.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$122.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$157.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$133.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$127.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$101.00-$107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$67.00 - $84.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">721lbs @ 149.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">745lbs @ 145.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">629lbs @ 152.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">822lbs @ 132.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">568lbs @ 165.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">434lbs @ 181.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">839lbs @ 129.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">542lbs @ 157.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">607lbs @ 146.75</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 9th, 2021 - Market Report','','inherit','closed','closed','','2891-revision-v1','','','2021-02-10 16:36:06','2021-02-10 16:36:06','',2891,'https://kingsvillelivestock.com/2021/02/10/2891-revision-v1/',0,'revision','',0),(2894,2,'2021-02-10 16:36:06','2021-02-10 16:36:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>February 9th, 2021,</strong> 1955 hd; last week 2174 hd; a year ago 3389. Compared to last week steers sold steady except for 700-775lb steers selling up to $5 higher. Heifers sold steady-$6 higher w/ the advantage on those weighing 450-625lbs. Several nice strings, of home-raised cattle, were sold along with good buyer activity. Slaughter Cows &amp; Bulls sold steady - $2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$181.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.00-$132.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$122.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$157.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$133.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$127.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$101.00-$107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$67.00 - $84.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">721lbs @ 149.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">745lbs @ 145.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">629lbs @ 152.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">822lbs @ 132.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">568lbs @ 165.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">434lbs @ 181.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">839lbs @ 129.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">542lbs @ 157.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">607lbs @ 146.75</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 2nd, 2021 - Market Report','','inherit','closed','closed','','2891-revision-v1','','','2021-02-10 16:36:06','2021-02-10 16:36:06','',2891,'https://kingsvillelivestock.com/2021/02/10/2891-revision-v1/',0,'revision','',0),(2895,2,'2021-02-10 16:36:10','2021-02-10 16:36:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>February 9th, 2021,</strong> 1955 hd; last week 2174 hd; a year ago 3389. Compared to last week steers sold steady except for 700-775lb steers selling up to $5 higher. Heifers sold steady-$6 higher w/ the advantage on those weighing 450-625lbs. Several nice strings, of home-raised cattle, were sold along with good buyer activity. Slaughter Cows &amp; Bulls sold steady - $2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$181.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.00-$132.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$122.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$157.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$133.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$127.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$101.00-$107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$67.00 - $84.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">721lbs @ 149.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">745lbs @ 145.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">629lbs @ 152.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">822lbs @ 132.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">568lbs @ 165.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">434lbs @ 181.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">839lbs @ 129.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">542lbs @ 157.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">607lbs @ 146.75</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 9th, 2021 - Market Report','','inherit','closed','closed','','2891-revision-v1','','','2021-02-10 16:36:10','2021-02-10 16:36:10','',2891,'https://kingsvillelivestock.com/2021/02/10/2891-revision-v1/',0,'revision','',0),(2896,2,'2021-02-10 16:38:33','2021-02-10 16:38:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>February 9th, 2021,</strong> 1955 hd; last week 2174 hd; a year ago 3389. Compared to last week steers sold steady except for 700-775lb steers selling up to $5 higher. Heifers sold steady-$6 higher w/ the advantage on those weighing 450-625lbs. Several nice strings, of home-raised cattle, were sold along with good buyer activity. Slaughter Cows &amp; Bulls sold steady - $2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$181.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.00-$132.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$122.00</span></td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$157.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$133.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$127.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$101.00-$107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$67.00 - $84.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">721lbs @ 149.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">745lbs @ 145.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">629lbs @ 152.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">822lbs @ 132.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">568lbs @ 165.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">434lbs @ 181.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">839lbs @ 129.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">542lbs @ 157.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">607lbs @ 146.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 9th, 2021 - Market Report','','inherit','closed','closed','','2891-revision-v1','','','2021-02-10 16:38:33','2021-02-10 16:38:33','',2891,'https://kingsvillelivestock.com/2021/02/10/2891-revision-v1/',0,'revision','',0),(2925,2,'2021-02-22 15:38:32','2021-02-22 15:38:32','','Tuesday, February 23rd Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-february-23rd-feeder-cattle-consignments','','','2021-02-22 15:38:32','2021-02-22 15:38:32','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/02/Tuesday-February-23rd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2931,2,'2021-02-22 23:34:26','2021-02-22 23:34:26','','Wagler Real Estate','','inherit','closed','closed','','wagler-real-estate','','','2021-02-22 23:34:26','2021-02-22 23:34:26','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2021/02/Wagler-Real-Estate.pdf',0,'attachment','application/pdf',0),(2937,2,'2021-02-23 04:21:55','2021-02-23 04:21:55','','Wagler Real Estate','','inherit','closed','closed','','wagler-real-estate-2','','','2021-02-23 04:21:55','2021-02-23 04:21:55','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2021/02/Wagler-Real-Estate-1.pdf',0,'attachment','application/pdf',0),(2944,2,'2021-02-24 18:42:00','2021-02-24 18:42:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>February 23rd, 2021,</strong>Â 4679 hd; 2 weeks ago 1955 hd; a year ago 2832hd. All classes of steers sold $3-$8 higher. Fancy heifers weighing 400-500 lbs sold up to $10 higher all other heifers sold steady-$5 higher. Slaughter Cows &amp; Bulls sold steady $2-$4 higher. Buyers were active after having a week of bad weather. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$140.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$132.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$149.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$136.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$122.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">721lbs @ 155.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">825lbs @ 137.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">744lbs @ 144.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">772lbs @ 142.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">572lbs @ 168.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">754lbs @ 125.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">740lbs @ 126.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">734lbs @ 126.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">642lbs @ 149.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 23rd, 2021 - Market Report','','publish','closed','open','','february-23rd-2021-market-report','','','2021-02-24 18:42:04','2021-02-24 18:42:04','',0,'https://kingsvillelivestock.com/?p=2944',0,'post','',0),(2946,2,'2021-02-24 18:42:00','2021-02-24 18:42:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>February 23rd, 2021,</strong>Â 4679 hd; 2 weeks ago 1955 hd; a year ago 2832hd. All classes of steers sold $3-$8 higher. Fancy heifers weighing 400-500 lbs sold up to $10 higher all other heifers sold steady-$5 higher. Slaughter Cows &amp; Bulls sold steady $2-$4 higher. Buyers were active after having a week of bad weather. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$140.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$132.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$149.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$136.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$122.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">721lbs @ 155.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">825lbs @ 137.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">744lbs @ 144.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">772lbs @ 142.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">572lbs @ 168.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">754lbs @ 125.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">740lbs @ 126.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">734lbs @ 126.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">642lbs @ 149.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 23rd, 2021 - Market Report','','inherit','closed','closed','','2944-revision-v1','','','2021-02-24 18:42:00','2021-02-24 18:42:00','',2944,'https://kingsvillelivestock.com/2021/02/24/2944-revision-v1/',0,'revision','',0),(2947,2,'2021-02-24 18:42:00','2021-02-24 18:42:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>February 23rd, 2021,</strong>Â 4679 hd; 2 weeks ago 1955 hd; a year ago 2832hd. All classes of steers sold $3-$8 higher. Fancy heifers weighing 400-500 lbs sold up to $10 higher all other heifers sold steady-$5 higher. Slaughter Cows &amp; Bulls sold steady $2-$4 higher. Buyers were active after having a week of bad weather. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$140.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$132.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$149.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$136.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$122.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">721lbs @ 155.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">825lbs @ 137.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">744lbs @ 144.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">772lbs @ 142.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">572lbs @ 168.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">754lbs @ 125.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">740lbs @ 126.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">734lbs @ 126.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">642lbs @ 149.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 9th, 2021 - Market Report','','inherit','closed','closed','','2944-revision-v1','','','2021-02-24 18:42:00','2021-02-24 18:42:00','',2944,'https://kingsvillelivestock.com/2021/02/24/2944-revision-v1/',0,'revision','',0),(2948,2,'2021-02-24 18:42:04','2021-02-24 18:42:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>February 23rd, 2021,</strong>Â 4679 hd; 2 weeks ago 1955 hd; a year ago 2832hd. All classes of steers sold $3-$8 higher. Fancy heifers weighing 400-500 lbs sold up to $10 higher all other heifers sold steady-$5 higher. Slaughter Cows &amp; Bulls sold steady $2-$4 higher. Buyers were active after having a week of bad weather. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$140.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$132.00</span></td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$149.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$136.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$122.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">721lbs @ 155.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">825lbs @ 137.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">744lbs @ 144.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">772lbs @ 142.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">572lbs @ 168.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">754lbs @ 125.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">740lbs @ 126.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">734lbs @ 126.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">642lbs @ 149.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 23rd, 2021 - Market Report','','inherit','closed','closed','','2944-revision-v1','','','2021-02-24 18:42:04','2021-02-24 18:42:04','',2944,'https://kingsvillelivestock.com/2021/02/24/2944-revision-v1/',0,'revision','',0),(2953,2,'2021-03-01 18:42:45','2021-03-01 18:42:45','','Tuesday, March 2nd Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-march-2nd-feeder-cattle-consignments','','','2021-03-01 18:42:45','2021-03-01 18:42:45','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/03/Tuesday-March-2nd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2957,2,'2021-03-01 19:40:57','2021-03-01 19:40:57','','Tuesday, March 2nd Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-march-2nd-feeder-cattle-consignments-2','','','2021-03-01 19:40:57','2021-03-01 19:40:57','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/03/Tuesday-March-2nd-Feeder-Cattle-Consignments-1.pdf',0,'attachment','application/pdf',0),(2962,2,'2021-03-03 17:01:45','2021-03-03 17:01:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>March 2nd, 2021,</strong> 4271 hd;Â  last week 4679 hd; a year ago 1488hd. Steers weighing 650lbs &amp; down sold steady and in spots up to $5 higher. Steers weighing 650lbs -775 lbs sold steady-$3 lower. Steers weighing 850lbs-900lbs sold $4 lower. There was no recent comparison on steers weighing 900lbs &amp; up from previous weeks. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$189.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$128.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$159.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$144.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$137.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60200 - $75.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$38.00 - $49.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $92.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">746lbs @ 144.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">966lbs @ 125.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">806lbs @ 135.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">920lbs @ 128.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">739lbs @ 139.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">943lbs @ 124.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">735lbs @ 138.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">702lbs @ 130.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">722lbs @ 127.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 2nd, 2021 - Market Report','','publish','closed','open','','march-2nd-2021-market-report','','','2021-03-03 17:53:02','2021-03-03 17:53:02','',0,'https://kingsvillelivestock.com/?p=2962',0,'post','',0),(2964,2,'2021-03-03 17:01:45','2021-03-03 17:01:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>March 2nd, 2021,</strong> 4271 hd;Â  last week 4679 hd; a year ago 1488hd. Steers weighing 650lbs &amp; down sold steady and in spots up to $5 higher. Steers weighing 650lbs -775 lbs sold steady-$3 lower. Steers weighing 850lbs-900lbs sold $4 lower. There was no recent comparison on steers weighing 900lbs &amp; up from previous weeks. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$189.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$128.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$159.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$144.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$137.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">746lbs @ 144.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">966lbs @ 125.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">806lbs @ 135.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">920lbs @ 128.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">739lbs @ 139.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">943lbs @ 124.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">735lbs @ 138.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">702lbs @ 130.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">722lbs @ 127.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 2nd, 2021 - Market Report','','inherit','closed','closed','','2962-revision-v1','','','2021-03-03 17:01:45','2021-03-03 17:01:45','',2962,'https://kingsvillelivestock.com/2021/03/03/2962-revision-v1/',0,'revision','',0),(2966,2,'2021-03-03 17:01:49','2021-03-03 17:01:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>March 2nd, 2021,</strong> 4271 hd;Â  last week 4679 hd; a year ago 1488hd. Steers weighing 650lbs &amp; down sold steady and in spots up to $5 higher. Steers weighing 650lbs -775 lbs sold steady-$3 lower. Steers weighing 850lbs-900lbs sold $4 lower. There was no recent comparison on steers weighing 900lbs &amp; up from previous weeks. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$189.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$128.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$159.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$144.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$137.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">746lbs @ 144.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">966lbs @ 125.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">806lbs @ 135.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">920lbs @ 128.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">739lbs @ 139.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">943lbs @ 124.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">735lbs @ 138.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">702lbs @ 130.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">722lbs @ 127.00</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 2nd, 2021 - Market Report','','inherit','closed','closed','','2962-revision-v1','','','2021-03-03 17:01:49','2021-03-03 17:01:49','',2962,'https://kingsvillelivestock.com/2021/03/03/2962-revision-v1/',0,'revision','',0),(2967,2,'2021-03-03 17:03:21','2021-03-03 17:03:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>March 2nd, 2021,</strong> 4271 hd;Â  last week 4679 hd; a year ago 1488hd. Steers weighing 650lbs &amp; down sold steady and in spots up to $5 higher. Steers weighing 650lbs -775 lbs sold steady-$3 lower. Steers weighing 850lbs-900lbs sold $4 lower. There was no recent comparison on steers weighing 900lbs &amp; up from previous weeks. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$189.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$128.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$159.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$144.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$137.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $47.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">746lbs @ 144.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">966lbs @ 125.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">806lbs @ 135.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">920lbs @ 128.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">739lbs @ 139.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">943lbs @ 124.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">735lbs @ 138.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">702lbs @ 130.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">722lbs @ 127.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 2nd, 2021 - Market Report','','inherit','closed','closed','','2962-revision-v1','','','2021-03-03 17:03:21','2021-03-03 17:03:21','',2962,'https://kingsvillelivestock.com/2021/03/03/2962-revision-v1/',0,'revision','',0),(2970,2,'2021-03-03 17:16:39','2021-03-03 17:16:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>March 2nd, 2021,</strong> 4271 hd;Â  last week 4679 hd; a year ago 1488hd. Steers weighing 650lbs &amp; down sold steady and in spots up to $5 higher. Steers weighing 650lbs -775 lbs sold steady-$3 lower. Steers weighing 850lbs-900lbs sold $4 lower. There was no recent comparison on steers weighing 900lbs &amp; up from previous weeks. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$189.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$128.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$159.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$144.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$137.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60200 - $75.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$38.00 - $49.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $92.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">746lbs @ 144.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">966lbs @ 125.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">806lbs @ 135.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">920lbs @ 128.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">739lbs @ 139.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">943lbs @ 124.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">735lbs @ 138.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">702lbs @ 130.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">722lbs @ 127.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 2nd, 2021 - Market Report','','inherit','closed','closed','','2962-revision-v1','','','2021-03-03 17:16:39','2021-03-03 17:16:39','',2962,'https://kingsvillelivestock.com/2021/03/03/2962-revision-v1/',0,'revision','',0),(2971,2,'2021-03-03 17:52:59','2021-03-03 17:52:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>March 2nd, 2021,</strong> 4271 hd;Â  last week 4679 hd; a year ago 1488hd. Steers weighing 650lbs &amp; down sold steady and in spots up to $5 higher. Steers weighing 650lbs -775 lbs sold steady-$3 lower. Steers weighing 850lbs-900lbs sold $4 lower. There was no recent comparison on steers weighing 900lbs &amp; up from previous weeks. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$189.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$128.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$159.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$144.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$137.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60200 - $75.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$38.00 - $49.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $92.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">746lbs @ 144.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">966lbs @ 125.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">806lbs @ 135.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">920lbs @ 128.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">739lbs @ 139.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">943lbs @ 124.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">735lbs @ 138.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">702lbs @ 130.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">722lbs @ 127.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 2nd, 2021 - Market Report','','inherit','closed','closed','','2962-revision-v1','','','2021-03-03 17:52:59','2021-03-03 17:52:59','',2962,'https://kingsvillelivestock.com/2021/03/03/2962-revision-v1/',0,'revision','',0),(2973,2,'2021-03-08 19:38:13','2021-03-08 19:38:13','','Tuesday, March 9th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-march-9th-feeder-cattle-consignments','','','2021-03-08 19:38:13','2021-03-08 19:38:13','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/03/Tuesday-March-9th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(2983,2,'2021-03-10 02:57:22','2021-03-10 02:57:22','','Phillips Sale Bill','','inherit','closed','closed','','phillips-sale-bill','','','2021-03-10 02:57:22','2021-03-10 02:57:22','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/03/Phillips-Sale-Bill.pdf',0,'attachment','application/pdf',0),(2990,2,'2021-03-10 17:47:47','2021-03-10 17:47:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>March 9th, 2021,</strong> 2735 hd;Â  last week 4271 hd; a year ago 1672hd. Feeder cattle of all classes sold steady - $3 higher. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$194.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$185.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.50-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$123.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$146.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$117.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$103.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$62.50 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">859lbs @ 133.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">746lbs @ 144.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">HeifersÂ </td>\n<td style=\"width: 161px;\">645lbs @ 146.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">707lbs @ 134.10</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 9th, 2021 - Market Report','','publish','closed','open','','march-9th-2021-market-report','','','2021-03-10 17:48:16','2021-03-10 17:48:16','',0,'https://kingsvillelivestock.com/?p=2990',0,'post','',0),(2992,2,'2021-03-10 17:47:47','2021-03-10 17:47:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>March 9th, 2021,</strong> 2735 hd;Â  last week 4271 hd; a year ago 1672hd. Feeder cattle of all classes sold steady - $3 higher. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$194.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$185.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.50-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$123.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$146.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$117.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$103.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$62.50 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">859lbs @ 133.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">746lbs @ 144.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">HeifersÂ </td>\n<td style=\"width: 161px;\">645lbs @ 146.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">707lbs @ 134.10</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 9th, 2021 - Market Report','','inherit','closed','closed','','2990-revision-v1','','','2021-03-10 17:47:47','2021-03-10 17:47:47','',2990,'https://kingsvillelivestock.com/2021/03/10/2990-revision-v1/',0,'revision','',0),(2993,2,'2021-03-10 17:47:48','2021-03-10 17:47:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>March 9th, 2021,</strong> 2735 hd;Â  last week 4271 hd; a year ago 1672hd. Feeder cattle of all classes sold steady - $3 higher. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$194.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$185.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.50-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$123.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$146.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$117.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$103.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$62.50 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">859lbs @ 133.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">746lbs @ 144.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">HeifersÂ </td>\n<td style=\"width: 161px;\">645lbs @ 146.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">707lbs @ 134.10</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 2nd, 2021 - Market Report','','inherit','closed','closed','','2990-revision-v1','','','2021-03-10 17:47:48','2021-03-10 17:47:48','',2990,'https://kingsvillelivestock.com/2021/03/10/2990-revision-v1/',0,'revision','',0),(2994,2,'2021-03-10 17:47:51','2021-03-10 17:47:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>March 9th, 2021,</strong> 2735 hd;Â  last week 4271 hd; a year ago 1672hd. Feeder cattle of all classes sold steady - $3 higher. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$194.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$185.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.50-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$123.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$146.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$117.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$103.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$62.50 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">859lbs @ 133.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">746lbs @ 144.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">HeifersÂ </td>\n<td style=\"width: 161px;\">645lbs @ 146.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">707lbs @ 134.10</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 9th, 2021 - Market Report','','inherit','closed','closed','','2990-revision-v1','','','2021-03-10 17:47:51','2021-03-10 17:47:51','',2990,'https://kingsvillelivestock.com/2021/03/10/2990-revision-v1/',0,'revision','',0),(2995,2,'2021-03-10 17:48:13','2021-03-10 17:48:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>March 9th, 2021,</strong> 2735 hd;Â  last week 4271 hd; a year ago 1672hd. Feeder cattle of all classes sold steady - $3 higher. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$194.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$185.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.50-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$123.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$146.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$117.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$103.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$20.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$62.50 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">859lbs @ 133.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">746lbs @ 144.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">HeifersÂ </td>\n<td style=\"width: 161px;\">645lbs @ 146.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">707lbs @ 134.10</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 9th, 2021 - Market Report','','inherit','closed','closed','','2990-revision-v1','','','2021-03-10 17:48:13','2021-03-10 17:48:13','',2990,'https://kingsvillelivestock.com/2021/03/10/2990-revision-v1/',0,'revision','',0),(3004,2,'2021-03-15 20:16:57','2021-03-15 20:16:57','','Tuesday, March 16th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-march-16th-feeder-cattle-consignments','','','2021-03-15 20:16:57','2021-03-15 20:16:57','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/03/Tuesday-March-16th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3009,2,'2021-03-16 00:54:25','2021-03-16 00:54:25','','C&C Performance Sale Catalog','','inherit','closed','closed','','cc-performance-sale-catalog','','','2021-03-16 00:54:25','2021-03-16 00:54:25','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/03/CC-Performance-Sale-Catalog.pdf',0,'attachment','application/pdf',0),(3014,2,'2021-03-17 14:30:07','2021-03-17 14:30:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>March 16th, 2021,</strong> 1879 hd;Â  last week 2735 hd; a year ago 819hd.Steers and heifers sold steady - $3 higher and grass cattle sold steady. Slaughter Cows &amp; Bulls sold steady -$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$178.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$163.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$136.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.75-$123.10</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$142.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.50-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$120.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$113.00-$114.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">612lbs @ 163.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">714lbs @ 147.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">745lbs @ 138.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">835lbs @ 134.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">670lbs @ 136.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">690lbs @134.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">740lbs @ 132.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">831lbs @ 119.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 16th, 2021 - Market Report','','publish','closed','open','','march-16th-2021-market-report','','','2021-03-17 15:24:00','2021-03-17 15:24:00','',0,'https://kingsvillelivestock.com/?p=3014',0,'post','',0),(3016,2,'2021-03-17 14:30:07','2021-03-17 14:30:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>March 16th, 2021,</strong> 1879 hd;Â  last week 2735 hd; a year ago 819hd.Steers and heifers sold steady - $3 higher and grass cattle sold steady. Slaughter Cows &amp; Bulls sold steady -$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$178.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$163.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$136.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.75-$123.10</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$142.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.50-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$120.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$113.00-$114.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">612lbs @ 163.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">714lbs @ 147.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">745lbs @ 138.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">835lbs @ 134.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">670lbs @ 136.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">690lbs @134.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">740lbs @ 132.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">831lbs @ 119.85</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 16th, 2021 - Market Report','','inherit','closed','closed','','3014-revision-v1','','','2021-03-17 14:30:07','2021-03-17 14:30:07','',3014,'https://kingsvillelivestock.com/2021/03/17/3014-revision-v1/',0,'revision','',0),(3017,2,'2021-03-17 14:30:07','2021-03-17 14:30:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>March 16th, 2021,</strong> 1879 hd;Â  last week 2735 hd; a year ago 819hd.Steers and heifers sold steady - $3 higher and grass cattle sold steady. Slaughter Cows &amp; Bulls sold steady -$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$178.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$163.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$136.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.75-$123.10</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$142.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.50-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$120.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$113.00-$114.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">612lbs @ 163.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">714lbs @ 147.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">745lbs @ 138.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">835lbs @ 134.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">670lbs @ 136.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">690lbs @134.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">740lbs @ 132.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">831lbs @ 119.85</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 9th, 2021 - Market Report','','inherit','closed','closed','','3014-revision-v1','','','2021-03-17 14:30:07','2021-03-17 14:30:07','',3014,'https://kingsvillelivestock.com/2021/03/17/3014-revision-v1/',0,'revision','',0),(3018,2,'2021-03-17 14:30:11','2021-03-17 14:30:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>March 16th, 2021,</strong> 1879 hd;Â  last week 2735 hd; a year ago 819hd.Steers and heifers sold steady - $3 higher and grass cattle sold steady. Slaughter Cows &amp; Bulls sold steady -$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$178.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$163.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$136.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.75-$123.10</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$142.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.50-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$120.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$113.00-$114.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">612lbs @ 163.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">714lbs @ 147.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">745lbs @ 138.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">835lbs @ 134.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">670lbs @ 136.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">690lbs @134.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">740lbs @ 132.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">831lbs @ 119.85</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 16th, 2021 - Market Report','','inherit','closed','closed','','3014-revision-v1','','','2021-03-17 14:30:11','2021-03-17 14:30:11','',3014,'https://kingsvillelivestock.com/2021/03/17/3014-revision-v1/',0,'revision','',0),(3020,2,'2021-03-17 15:23:59','2021-03-17 15:23:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>March 16th, 2021,</strong> 1879 hd;Â  last week 2735 hd; a year ago 819hd.Steers and heifers sold steady - $3 higher and grass cattle sold steady. Slaughter Cows &amp; Bulls sold steady -$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$178.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$163.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$136.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.75-$123.10</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$142.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.50-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$120.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$113.00-$114.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $61.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">612lbs @ 163.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">714lbs @ 147.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">745lbs @ 138.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">835lbs @ 134.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">670lbs @ 136.25</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">690lbs @134.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">740lbs @ 132.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">831lbs @ 119.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 16th, 2021 - Market Report','','inherit','closed','closed','','3014-revision-v1','','','2021-03-17 15:23:59','2021-03-17 15:23:59','',3014,'https://kingsvillelivestock.com/2021/03/17/3014-revision-v1/',0,'revision','',0),(3028,2,'2021-03-22 17:37:42','2021-03-22 17:37:42','','Tuesday, March 23rd Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-march-23rd-feeder-cattle-consignments','','','2021-03-22 17:37:42','2021-03-22 17:37:42','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/03/Tuesday-March-23rd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3033,2,'2021-03-24 15:18:49','2021-03-24 15:18:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>March 30th, 2021,</strong> 2887 hd;Â  last week 1360 hd; a year ago 2737 hd.Feeder steers sold $3 higher, except 600-675lbs sold $4-$7 higher. Heifers sold steady-$5 higher. Thin fleshed heifers weighing 500lbs sold $8-$10 higher with a light comparison to last week. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$175.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$159.00-$189.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.50-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$141.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$130.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$163.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$147.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-550</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$141.50-$164.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">550-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.25-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.50-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.25-$125.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $74.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">620lbs @ 169.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">639lbs @167.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">678lbs @159.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">680lbs @ 155.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">793lbs @ 141.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">824lbs @ 139.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">892lbs @ 131.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">598lbs @154.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">HeifersÂ </td>\n<td style=\"width: 161px;\">678lbs @142.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">688lbs @133.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">748lbs @ 140.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">756lbs @ 128.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">800lbs @ 124.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">816lbs @124.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 30th, 2021 - Market Report','','publish','closed','open','','march-23rd-2021-market-report','','','2021-03-31 15:48:16','2021-03-31 15:48:16','',0,'https://kingsvillelivestock.com/?p=3033',0,'post','',0),(3037,2,'2021-03-24 15:18:53','2021-03-24 15:18:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>March 23rd, 2021,</strong> 1360 hd;Â  last week 1879 hd; a year ago 1156 hd.Feeder cattle weighing 700 lbs &amp; up sold steady - $2 higher. Grass weight cattle sold $2-$4 higher and new crop calves sold steady. Slaughter Cows &amp; Bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$159.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.25-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$131.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$124.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$146.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.50-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$129.50-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$132.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$134.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$111.25-$120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">551lbs @ 176.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">702lbs @ 149.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">764lbs @ 145.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">870lbs @ 131.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">643lbs @ 147.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">680lbs @141.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">815lbs @ 134.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">927lbs @ 120.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 23rd, 2021 - Market Report','','inherit','closed','closed','','3033-revision-v1','','','2021-03-24 15:18:53','2021-03-24 15:18:53','',3033,'https://kingsvillelivestock.com/2021/03/24/3033-revision-v1/',0,'revision','',0),(3042,2,'2021-03-29 16:27:26','2021-03-29 16:27:26','','Tuesday, March 30th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-march-30th-feeder-cattle-consignments','','','2021-03-29 16:27:26','2021-03-29 16:27:26','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/03/Tuesday-March-30th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3050,2,'2021-03-31 15:21:49','0000-00-00 00:00:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>March 23rd, 2021,</strong> 1360 hd;Â  last week 1879 hd; a year ago 1156 hd.Feeder cattle weighing 700 lbs &amp; up sold steady - $2 higher. Grass weight cattle sold $2-$4 higher and new crop calves sold steady. Slaughter Cows &amp; Bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$159.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.25-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$131.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$124.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$146.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$158.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.50-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$129.50-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$132.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$134.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$111.25-$120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">551lbs @ 176.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">702lbs @ 149.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">764lbs @ 145.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">870lbs @ 131.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">643lbs @ 147.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">680lbs @141.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">815lbs @ 134.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">927lbs @ 120.25</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 23rd, 2021 - Market Report','','draft','closed','open','','','','','2021-03-31 15:21:49','0000-00-00 00:00:00','',0,'https://kingsvillelivestock.com/?p=3050',0,'post','',0),(3052,2,'2021-03-31 15:44:19','2021-03-31 15:44:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>March 30th, 2021,</strong> 2887 hd;Â  last week 1360 hd; a year ago 2737 hd.Feeder steers sold $3 higher, except 600-675lbs sold $4-$7 higher. Heifers sold steady-$5 higher. Thin fleshed heifers weighing 500lbs sold $8-$10 higher with a light comparison to last week. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$175.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$159.00-$189.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.50-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$141.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$130.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$163.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$147.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-550</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$141.50-$164.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">550-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.25-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.50-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.25-$125.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $74.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">620lbs @ 169.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">639lbs @167.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">678lbs @159.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">680lbs @ 155.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">793lbs @ 141.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">824lbs @ 139.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">892lbs @ 131.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">688lbs @133.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">756lbs @ 128.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">800lbs @ 124.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">HeifersÂ </td>\n<td style=\"width: 161px;\">816lbs @124.85</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 23rd, 2021 - Market Report','','inherit','closed','closed','','3033-revision-v1','','','2021-03-31 15:44:19','2021-03-31 15:44:19','',3033,'https://kingsvillelivestock.com/2021/03/31/3033-revision-v1/',0,'revision','',0),(3053,2,'2021-03-31 15:44:23','2021-03-31 15:44:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>March 30th, 2021,</strong> 2887 hd;Â  last week 1360 hd; a year ago 2737 hd.Feeder steers sold $3 higher, except 600-675lbs sold $4-$7 higher. Heifers sold steady-$5 higher. Thin fleshed heifers weighing 500lbs sold $8-$10 higher with a light comparison to last week. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$175.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$159.00-$189.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.50-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$141.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$130.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$163.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$147.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-550</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$141.50-$164.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">550-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.25-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.50-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.25-$125.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $74.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">620lbs @ 169.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">639lbs @167.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">678lbs @159.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">680lbs @ 155.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">793lbs @ 141.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">824lbs @ 139.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">892lbs @ 131.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">688lbs @133.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">756lbs @ 128.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">800lbs @ 124.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">HeifersÂ </td>\n<td style=\"width: 161px;\">816lbs @124.85</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 30th, 2021 - Market Report','','inherit','closed','closed','','3033-revision-v1','','','2021-03-31 15:44:23','2021-03-31 15:44:23','',3033,'https://kingsvillelivestock.com/2021/03/31/3033-revision-v1/',0,'revision','',0),(3055,2,'2021-03-31 15:46:18','2021-03-31 15:46:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<p><strong>March 30th, 2021,</strong> 2887 hd;Â  last week 1360 hd; a year ago 2737 hd.Feeder steers sold $3 higher, except 600-675lbs sold $4-$7 higher. Heifers sold steady-$5 higher. Thin fleshed heifers weighing 500lbs sold $8-$10 higher with a light comparison to last week. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$175.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$159.00-$189.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.50-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$141.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$130.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$163.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$147.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-550</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$141.50-$164.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">550-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.25-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.50-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.25-$125.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $74.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">620lbs @ 169.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">639lbs @167.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">678lbs @159.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">680lbs @ 155.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">793lbs @ 141.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">824lbs @ 139.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">892lbs @ 131.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">598lbs @154.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">HeifersÂ </td>\n<td style=\"width: 161px;\">678lbs @142.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">688lbs @133.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">748lbs @ 140.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">756lbs @ 128.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">800lbs @ 124.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">816lbs @124.85</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 30th, 2021 - Market Report','','inherit','closed','closed','','3033-revision-v1','','','2021-03-31 15:46:18','2021-03-31 15:46:18','',3033,'https://kingsvillelivestock.com/2021/03/31/3033-revision-v1/',0,'revision','',0),(3056,2,'2021-03-31 15:48:13','2021-03-31 15:48:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>March 30th, 2021,</strong> 2887 hd;Â  last week 1360 hd; a year ago 2737 hd.Feeder steers sold $3 higher, except 600-675lbs sold $4-$7 higher. Heifers sold steady-$5 higher. Thin fleshed heifers weighing 500lbs sold $8-$10 higher with a light comparison to last week. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$175.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$159.00-$189.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.50-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$141.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$130.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$163.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$147.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-550</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$141.50-$164.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">550-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.25-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.50-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$116.25-$125.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $74.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">620lbs @ 169.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">639lbs @167.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">678lbs @159.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">680lbs @ 155.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">793lbs @ 141.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">824lbs @ 139.75</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">892lbs @ 131.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">598lbs @154.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">HeifersÂ </td>\n<td style=\"width: 161px;\">678lbs @142.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">688lbs @133.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">748lbs @ 140.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">756lbs @ 128.35</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">800lbs @ 124.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">816lbs @124.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 30th, 2021 - Market Report','','inherit','closed','closed','','3033-revision-v1','','','2021-03-31 15:48:13','2021-03-31 15:48:13','',3033,'https://kingsvillelivestock.com/2021/03/31/3033-revision-v1/',0,'revision','',0),(3058,2,'2021-03-31 18:24:38','2021-03-31 18:24:38','','Kelly Borum April 17th','','inherit','closed','closed','','kelly-borum-april-17th','','','2021-03-31 18:24:38','2021-03-31 18:24:38','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/03/Kelly-Borum-April-17th.pdf',0,'attachment','application/pdf',0),(3061,2,'2021-03-31 18:31:17','2021-03-31 18:31:17','','April 10, 2021 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','april-10-2021-horse-tack-small-animal-sale','','','2021-03-31 18:31:17','2021-03-31 18:31:17','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/03/April-10-2021-Horse-Tack-Small-Animal-Sale.pdf',0,'attachment','application/pdf',0),(3062,2,'2021-03-31 18:32:39','2021-03-31 18:32:39','{{unknown}}','','','publish','closed','closed','','d66a790c9e5c0dfbc6fe42dd3a723c17','','','2021-03-31 18:32:39','2021-03-31 18:32:39','',0,'https://kingsvillelivestock.com/2021/03/31/d66a790c9e5c0dfbc6fe42dd3a723c17/',0,'oembed_cache','',0),(3065,2,'2021-03-31 18:34:38','2021-03-31 18:34:38','','April 10, 2021 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','april-10-2021-horse-tack-small-animal-sale-2','','','2021-03-31 18:34:38','2021-03-31 18:34:38','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/03/April-10-2021-Horse-Tack-Small-Animal-Sale-1.pdf',0,'attachment','application/pdf',0),(3072,2,'2021-04-05 14:55:17','2021-04-05 14:55:17','','Tuesday, April 6th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-april-6th-feeder-cattle-consignments','','','2021-04-05 14:55:17','2021-04-05 14:55:17','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/04/Tuesday-April-6th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3077,2,'2021-04-05 14:59:51','2021-04-05 14:59:51','','Tuesday, April 6th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-april-6th-feeder-cattle-consignments-2','','','2021-04-05 14:59:51','2021-04-05 14:59:51','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/04/Tuesday-April-6th-Feeder-Cattle-Consignments-1.pdf',0,'attachment','application/pdf',0),(3088,2,'2021-04-07 15:28:50','2021-04-07 15:28:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>April 6th, 2021,</strong> 2459 hd;Â  last week 2887 hd; a year ago 1293 hd.Feeder cattle of all classes sold $4-$8 higher. Slaughter Cows &amp; Bulls sold $3-$6 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$180.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$154.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.75-$160.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.75-$142.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.35</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$151.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.25-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.25-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$132.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$78.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 17px;\">\n<td style=\"width: 161px; height: 17px;\">Steers</td>\n<td style=\"width: 161px; height: 17px;\">601lbs @ 170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">680lbs @ 166.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">717lbs @ 160.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">860lbs @ 142.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">920lbs @130.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">670lbs @ 154.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">674lbs @146.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">691lbs @ 145.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">722lbs @ 149.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 6, 2021 - Market Report','','publish','closed','open','','april-6-2021-market-report','','','2021-04-07 15:30:21','2021-04-07 15:30:21','',0,'https://kingsvillelivestock.com/?p=3088',0,'post','',0),(3090,2,'2021-04-07 15:28:50','2021-04-07 15:28:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>April 6th, 2021,</strong> 2459 hd;Â  last week 1360 hd; a year ago 1293 hd.Feeder cattle of all classes sold $4-$8 higher. Slaughter Cows &amp; Bulls sold $3-$6 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$180.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$154.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.75-$160.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.75-$142.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.35</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$151.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.25-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.25-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$132.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$78.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 17px;\">\n<td style=\"width: 161px; height: 17px;\">Steers</td>\n<td style=\"width: 161px; height: 17px;\">601lbs @ 170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">680lbs @ 166.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">717lbs @ 160.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">860lbs @ 142.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">920lbs @130.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">670lbs @ 154.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">674lbs @146.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">691lbs @ 145.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">722lbs @ 149.75</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 6, 2021 - Market Report','','inherit','closed','closed','','3088-revision-v1','','','2021-04-07 15:28:50','2021-04-07 15:28:50','',3088,'https://kingsvillelivestock.com/2021/04/07/3088-revision-v1/',0,'revision','',0),(3091,2,'2021-04-07 15:28:50','2021-04-07 15:28:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>April 6th, 2021,</strong> 2459 hd;Â  last week 1360 hd; a year ago 1293 hd.Feeder cattle of all classes sold $4-$8 higher. Slaughter Cows &amp; Bulls sold $3-$6 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$180.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$154.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.75-$160.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.75-$142.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.35</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$151.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.25-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.25-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$132.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$78.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 17px;\">\n<td style=\"width: 161px; height: 17px;\">Steers</td>\n<td style=\"width: 161px; height: 17px;\">601lbs @ 170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">680lbs @ 166.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">717lbs @ 160.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">860lbs @ 142.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">920lbs @130.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">670lbs @ 154.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">674lbs @146.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">691lbs @ 145.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">722lbs @ 149.75</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 23rd, 2021 - Market Report','','inherit','closed','closed','','3088-revision-v1','','','2021-04-07 15:28:50','2021-04-07 15:28:50','',3088,'https://kingsvillelivestock.com/2021/04/07/3088-revision-v1/',0,'revision','',0),(3092,2,'2021-04-07 15:28:54','2021-04-07 15:28:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>April 6th, 2021,</strong> 2459 hd;Â  last week 1360 hd; a year ago 1293 hd.Feeder cattle of all classes sold $4-$8 higher. Slaughter Cows &amp; Bulls sold $3-$6 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$180.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$154.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.75-$160.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.75-$142.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.35</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$151.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.25-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.25-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$132.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$78.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 17px;\">\n<td style=\"width: 161px; height: 17px;\">Steers</td>\n<td style=\"width: 161px; height: 17px;\">601lbs @ 170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">680lbs @ 166.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">717lbs @ 160.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">860lbs @ 142.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">920lbs @130.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">670lbs @ 154.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">674lbs @146.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">691lbs @ 145.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">722lbs @ 149.75</td>\n</tr>\n</tbody>\n</table>\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 6, 2021 - Market Report','','inherit','closed','closed','','3088-revision-v1','','','2021-04-07 15:28:54','2021-04-07 15:28:54','',3088,'https://kingsvillelivestock.com/2021/04/07/3088-revision-v1/',0,'revision','',0),(3093,2,'2021-04-07 15:30:17','2021-04-07 15:30:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\"]<p><strong>April 6th, 2021,</strong> 2459 hd;Â  last week 2887 hd; a year ago 1293 hd.Feeder cattle of all classes sold $4-$8 higher. Slaughter Cows &amp; Bulls sold $3-$6 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$180.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$154.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.75-$160.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.75-$142.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.35</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$151.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.25-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.25-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$132.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$78.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 17px;\">\n<td style=\"width: 161px; height: 17px;\">Steers</td>\n<td style=\"width: 161px; height: 17px;\">601lbs @ 170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">680lbs @ 166.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">717lbs @ 160.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">860lbs @ 142.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">920lbs @130.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">670lbs @ 154.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">674lbs @146.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">691lbs @ 145.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">722lbs @ 149.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 6, 2021 - Market Report','','inherit','closed','closed','','3088-revision-v1','','','2021-04-07 15:30:17','2021-04-07 15:30:17','',3088,'https://kingsvillelivestock.com/2021/04/07/3088-revision-v1/',0,'revision','',0),(3099,2,'2021-04-07 17:24:39','2021-04-07 17:24:39','','Dusselier Estate May 1st','','inherit','closed','closed','','dusselier-estate-may-1st','','','2021-04-07 17:24:39','2021-04-07 17:24:39','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2021/04/Dusselier-Estate-May-1st.pdf',0,'attachment','application/pdf',0),(3106,2,'2021-04-12 17:41:32','2021-04-12 17:41:32','','Tuesday, April 13th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-april-13th-feeder-cattle-consignments','','','2021-04-12 17:41:32','2021-04-12 17:41:32','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/04/Tuesday-April-13th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3119,2,'2021-04-14 14:58:03','2021-04-14 14:58:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>April 1th, 2021,</strong> 1955 hd;Â  last week 2459 hd; a year ago 852 hd.Feeder steers sold steady - $3 lower. Feeder heifers sold fully steady. Slaughter Cows &amp; Bulls sold steady -$1 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$175.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$190.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$154.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$145.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$130.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$173.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$151.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$135.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$136.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$123.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">740lbs @ 152.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">808lbs @145.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161px; height: 23px;\">818lbs @ 141.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161px; height: 23px;\">911lbs @133.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 13, 2021 - Market Report','','publish','closed','open','','april-13-2021-market-report','','','2021-04-14 14:58:06','2021-04-14 14:58:06','',0,'https://kingsvillelivestock.com/?p=3119',0,'post','',0),(3121,2,'2021-04-14 14:58:03','2021-04-14 14:58:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>April 1th, 2021,</strong> 1955 hd;Â  last week 2459 hd; a year ago 852 hd.Feeder steers sold steady - $3 lower. Feeder heifers sold fully steady. Slaughter Cows &amp; Bulls sold steady -$1 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$175.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$190.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$154.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$145.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$130.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$173.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$151.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$135.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$136.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$123.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">740lbs @ 152.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">808lbs @145.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161px; height: 23px;\">818lbs @ 141.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161px; height: 23px;\">911lbs @133.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 13, 2021 - Market Report','','inherit','closed','closed','','3119-revision-v1','','','2021-04-14 14:58:03','2021-04-14 14:58:03','',3119,'https://kingsvillelivestock.com/?p=3121',0,'revision','',0),(3122,2,'2021-04-14 14:58:03','2021-04-14 14:58:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>April 1th, 2021,</strong> 1955 hd;Â  last week 2459 hd; a year ago 852 hd.Feeder steers sold steady - $3 lower. Feeder heifers sold fully steady. Slaughter Cows &amp; Bulls sold steady -$1 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$175.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$190.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$154.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$145.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$130.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$173.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$151.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$135.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$136.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$123.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">740lbs @ 152.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">808lbs @145.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161px; height: 23px;\">818lbs @ 141.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161px; height: 23px;\">911lbs @133.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 6, 2021 - Market Report','','inherit','closed','closed','','3119-revision-v1','','','2021-04-14 14:58:03','2021-04-14 14:58:03','',3119,'https://kingsvillelivestock.com/?p=3122',0,'revision','',0),(3123,2,'2021-04-14 14:58:06','2021-04-14 14:58:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>April 1th, 2021,</strong> 1955 hd;Â  last week 2459 hd; a year ago 852 hd.Feeder steers sold steady - $3 lower. Feeder heifers sold fully steady. Slaughter Cows &amp; Bulls sold steady -$1 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$175.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$165.00-$190.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$159.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$154.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$145.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$130.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$173.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$151.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$135.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$136.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$123.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">740lbs @ 152.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">808lbs @145.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161px; height: 23px;\">818lbs @ 141.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161px; height: 23px;\">911lbs @133.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 13, 2021 - Market Report','','inherit','closed','closed','','3119-revision-v1','','','2021-04-14 14:58:06','2021-04-14 14:58:06','',3119,'https://kingsvillelivestock.com/?p=3123',0,'revision','',0),(3128,2,'2021-04-19 20:12:50','2021-04-19 20:12:50','','Page Estate May 2nd','','inherit','closed','closed','','page-estate-may-2nd','','','2021-04-19 20:12:50','2021-04-19 20:12:50','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/04/Page-Estate-May-2nd.pdf',0,'attachment','application/pdf',0),(3129,2,'2021-04-19 20:14:03','2021-04-19 20:14:03','{{unknown}}','','','publish','closed','closed','','ad85083026835934a15ca6e93ba56735','','','2021-04-19 20:14:03','2021-04-19 20:14:03','',0,'https://kingsvillelivestock.com/2021/04/19/ad85083026835934a15ca6e93ba56735/',0,'oembed_cache','',0),(3135,2,'2021-04-22 15:36:44','2021-04-22 15:36:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>April 20th, 2021,</strong>Â 2286 hd;Â  last week 1955 hd; a year ago 2121 hd.Feeder cattle weighing 650-900 lbs sold steady. Feeder cattle weighing 650 lbs &amp; down steady - $3 lower in spots with several new crop calves coming to town. Â Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$161.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$132.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$107.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$126.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$126.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $68.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">678lbs @ 153.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">658lbs @137.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">723lbs @ 133.00Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 20, 2021 - Market Report','','publish','closed','open','','april-20-2021-market-report','','','2021-04-22 15:37:15','2021-04-22 15:37:15','',0,'https://kingsvillelivestock.com/?p=3135',0,'post','',0),(3137,2,'2021-04-22 15:36:44','2021-04-22 15:36:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>April 20th, 2021,</strong>Â 2286 hd;Â  last week 1955 hd; a year ago 2121 hd.Feeder cattle weighing 650-900 lbs sold steady. Feeder cattle weighing 650 lbs &amp; down steady - $3 lower in spots with several new crop calves coming to town. Â Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$161.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$132.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$107.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$126.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$126.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $68.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">678lbs @ 153.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">658lbs @137.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">723lbs @ 133.00Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 20, 2021 - Market Report','','inherit','closed','closed','','3135-revision-v1','','','2021-04-22 15:36:44','2021-04-22 15:36:44','',3135,'https://kingsvillelivestock.com/?p=3137',0,'revision','',0),(3138,2,'2021-04-22 15:36:45','2021-04-22 15:36:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>April 20th, 2021,</strong>Â 2286 hd;Â  last week 1955 hd; a year ago 2121 hd.Feeder cattle weighing 650-900 lbs sold steady. Feeder cattle weighing 650 lbs &amp; down steady - $3 lower in spots with several new crop calves coming to town. Â Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$161.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$132.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$107.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$126.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$126.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $68.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">678lbs @ 153.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">658lbs @137.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">723lbs @ 133.00Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 13, 2021 - Market Report','','inherit','closed','closed','','3135-revision-v1','','','2021-04-22 15:36:45','2021-04-22 15:36:45','',3135,'https://kingsvillelivestock.com/?p=3138',0,'revision','',0),(3139,2,'2021-04-22 15:36:48','2021-04-22 15:36:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>April 20th, 2021,</strong>Â 2286 hd;Â  last week 1955 hd; a year ago 2121 hd.Feeder cattle weighing 650-900 lbs sold steady. Feeder cattle weighing 650 lbs &amp; down steady - $3 lower in spots with several new crop calves coming to town. Â Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$161.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$132.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$107.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$126.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$126.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $68.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">678lbs @ 153.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">658lbs @137.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">723lbs @ 133.00Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 20, 2021 - Market Report','','inherit','closed','closed','','3135-revision-v1','','','2021-04-22 15:36:48','2021-04-22 15:36:48','',3135,'https://kingsvillelivestock.com/?p=3139',0,'revision','',0),(3140,2,'2021-04-22 15:37:15','2021-04-22 15:37:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>April 20th, 2021,</strong>Â 2286 hd;Â  last week 1955 hd; a year ago 2121 hd.Feeder cattle weighing 650-900 lbs sold steady. Feeder cattle weighing 650 lbs &amp; down steady - $3 lower in spots with several new crop calves coming to town. Â Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$161.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$148.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$132.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$107.00-$120.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$144.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$126.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$126.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $68.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 199px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">678lbs @ 153.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">658lbs @137.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Heifers</td>\n<td style=\"width: 161px; height: 23px;\">723lbs @ 133.00Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 20, 2021 - Market Report','','inherit','closed','closed','','3135-revision-v1','','','2021-04-22 15:37:15','2021-04-22 15:37:15','',3135,'https://kingsvillelivestock.com/?p=3140',0,'revision','',0),(3145,2,'2021-04-26 19:52:54','2021-04-26 19:52:54','','Tuesday, April 27th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-april-27th-feeder-cattle-consignments','','','2021-04-26 19:52:54','2021-04-26 19:52:54','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/04/Tuesday-April-27th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3153,2,'2021-04-28 16:25:57','2021-04-28 16:25:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>April 27th, 2021,</strong> 1654 hd;Â  last week 2286 hd; a year ago 2745 hd.Feeder cattle weighing 650 &amp; up sold $2-$4 lower. New crop calves that were short weaned sold $2-$4 lower. Heifers weighing 400-500 lbs sold $4--$6 lower, as corn prices reached $7 on Tuesday. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$170.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$153.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$131.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$119.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$129.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$30.00 - $49.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 70px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">530lbs @ 170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">571lbs @163.50</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">719lbs @ 144.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">834lbs @ 131.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">550lbs @ 153.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">826lbs @ 135.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 27, 2021 - Market Report','','publish','closed','open','','april-27-2021-market-report','','','2021-04-28 16:26:01','2021-04-28 16:26:01','',0,'https://kingsvillelivestock.com/?p=3153',0,'post','',0),(3155,2,'2021-04-28 16:25:57','2021-04-28 16:25:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>April 27th, 2021,</strong> 1654 hd;Â  last week 2286 hd; a year ago 2745 hd.Feeder cattle weighing 650 &amp; up sold $2-$4 lower. New crop calves that were short weaned sold $2-$4 lower. Heifers weighing 400-500 lbs sold $4--$6 lower, as corn prices reached $7 on Tuesday. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$170.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$153.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$131.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$119.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$129.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$30.00 - $49.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 70px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">530lbs @ 170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">571lbs @163.50</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">719lbs @ 144.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">834lbs @ 131.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">550lbs @ 153.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">826lbs @ 135.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 27, 2021 - Market Report','','inherit','closed','closed','','3153-revision-v1','','','2021-04-28 16:25:57','2021-04-28 16:25:57','',3153,'https://kingsvillelivestock.com/?p=3155',0,'revision','',0),(3156,2,'2021-04-28 16:25:57','2021-04-28 16:25:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>April 27th, 2021,</strong> 1654 hd;Â  last week 2286 hd; a year ago 2745 hd.Feeder cattle weighing 650 &amp; up sold $2-$4 lower. New crop calves that were short weaned sold $2-$4 lower. Heifers weighing 400-500 lbs sold $4--$6 lower, as corn prices reached $7 on Tuesday. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$170.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$153.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$131.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$119.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$129.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$30.00 - $49.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 70px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">530lbs @ 170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">571lbs @163.50</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">719lbs @ 144.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">834lbs @ 131.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">550lbs @ 153.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">826lbs @ 135.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 20, 2021 - Market Report','','inherit','closed','closed','','3153-revision-v1','','','2021-04-28 16:25:57','2021-04-28 16:25:57','',3153,'https://kingsvillelivestock.com/?p=3156',0,'revision','',0),(3157,2,'2021-04-28 16:26:01','2021-04-28 16:26:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>April 27th, 2021,</strong> 1654 hd;Â  last week 2286 hd; a year ago 2745 hd.Feeder cattle weighing 650 &amp; up sold $2-$4 lower. New crop calves that were short weaned sold $2-$4 lower. Heifers weighing 400-500 lbs sold $4--$6 lower, as corn prices reached $7 on Tuesday. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$170.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$153.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$131.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$119.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$129.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$30.00 - $49.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 70px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">530lbs @ 170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">571lbs @163.50</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">719lbs @ 144.60</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">834lbs @ 131.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">550lbs @ 153.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">826lbs @ 135.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 27, 2021 - Market Report','','inherit','closed','closed','','3153-revision-v1','','','2021-04-28 16:26:01','2021-04-28 16:26:01','',3153,'https://kingsvillelivestock.com/?p=3157',0,'revision','',0),(3159,2,'2021-04-28 17:41:28','2021-04-28 17:41:28','','May 21,2021 Red Angus Sale','','inherit','closed','closed','','may-212021-red-angus-sale','','','2021-04-28 17:41:28','2021-04-28 17:41:28','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/04/May-212021-Red-Angus-Sale.pdf',0,'attachment','application/pdf',0),(3169,2,'2021-05-03 17:27:12','2021-05-03 17:27:12','','Tuesday, May 4th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-may-4th-feeder-cattle-consignments','','','2021-05-03 17:27:12','2021-05-03 17:27:12','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Tuesday-May-4th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3172,2,'2021-05-03 18:04:15','2021-05-03 18:04:15','','May 21,2021 Red Angus Sale','','inherit','closed','closed','','may-212021-red-angus-sale-2','','','2021-05-03 18:04:15','2021-05-03 18:04:15','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/May-212021-Red-Angus-Sale.pdf',0,'attachment','application/pdf',0),(3176,2,'2021-05-03 18:09:46','2021-05-03 18:09:46','','May 21,2021 Red Angus Sale','','inherit','closed','closed','','may-212021-red-angus-sale-3','','','2021-05-03 18:09:46','2021-05-03 18:09:46','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/May-212021-Red-Angus-Sale-1.pdf',0,'attachment','application/pdf',0),(3187,2,'2021-05-03 18:22:43','2021-05-03 18:22:43','','Strate Estate May 23rd','','inherit','closed','closed','','strate-estate-may-23rd','','','2021-05-03 18:22:43','2021-05-03 18:22:43','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Strate-Estate-May-23rd.pdf',0,'attachment','application/pdf',0),(3192,2,'2021-05-05 15:16:52','2021-05-05 15:16:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>May 4th, 2021,</strong> 2124 hd;Â  last week 1654 hd; a year ago 2147 hd.Feeder cattle sold steady-$5 lower w/ high corn prices. There was good buyer activity throughout the day.Â  Slaughter Cows &amp; Bulls sold $1-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$195.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$140.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$129.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$127.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$143.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.00-$139.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$115.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $74.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $100.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 70px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">770lbs @ 140.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">887lbs @128.10</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">912lbs @ 127.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">661lbs @ 135.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 4, 2021 - Market Report','','publish','closed','open','','may-4-2021-market-report','','','2021-05-05 15:16:56','2021-05-05 15:16:56','',0,'https://kingsvillelivestock.com/?p=3192',0,'post','',0),(3194,2,'2021-05-05 15:16:52','2021-05-05 15:16:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>May 4th, 2021,</strong> 2124 hd;Â  last week 1654 hd; a year ago 2147 hd.Feeder cattle sold steady-$5 lower w/ high corn prices. There was good buyer activity throughout the day.Â  Slaughter Cows &amp; Bulls sold $1-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$195.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$140.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$129.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$127.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$143.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.00-$139.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$115.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $74.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $100.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 70px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">770lbs @ 140.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">887lbs @128.10</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">912lbs @ 127.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">661lbs @ 135.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 4, 2021 - Market Report','','inherit','closed','closed','','3192-revision-v1','','','2021-05-05 15:16:52','2021-05-05 15:16:52','',3192,'https://kingsvillelivestock.com/?p=3194',0,'revision','',0),(3195,2,'2021-05-05 15:16:52','2021-05-05 15:16:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>May 4th, 2021,</strong> 2124 hd;Â  last week 1654 hd; a year ago 2147 hd.Feeder cattle sold steady-$5 lower w/ high corn prices. There was good buyer activity throughout the day.Â  Slaughter Cows &amp; Bulls sold $1-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$195.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$140.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$129.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$127.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$143.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.00-$139.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$115.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $74.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $100.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 70px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">770lbs @ 140.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">887lbs @128.10</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">912lbs @ 127.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">661lbs @ 135.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 27, 2021 - Market Report','','inherit','closed','closed','','3192-revision-v1','','','2021-05-05 15:16:52','2021-05-05 15:16:52','',3192,'https://kingsvillelivestock.com/?p=3195',0,'revision','',0),(3196,2,'2021-05-05 15:16:56','2021-05-05 15:16:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>May 4th, 2021,</strong> 2124 hd;Â  last week 1654 hd; a year ago 2147 hd.Feeder cattle sold steady-$5 lower w/ high corn prices. There was good buyer activity throughout the day.Â  Slaughter Cows &amp; Bulls sold $1-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$195.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$140.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$129.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$127.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$143.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$123.00-$139.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$115.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$100.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $74.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $100.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 70px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">770lbs @ 140.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">887lbs @128.10</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">912lbs @ 127.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">661lbs @ 135.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 4, 2021 - Market Report','','inherit','closed','closed','','3192-revision-v1','','','2021-05-05 15:16:56','2021-05-05 15:16:56','',3192,'https://kingsvillelivestock.com/?p=3196',0,'revision','',0),(3198,2,'2021-05-05 16:22:30','2021-05-05 16:22:30','','Strate Estate May 23rd','','inherit','closed','closed','','strate-estate-may-23rd-2','','','2021-05-05 16:22:30','2021-05-05 16:22:30','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Strate-Estate-May-23rd-1.pdf',0,'attachment','application/pdf',0),(3201,2,'2021-05-05 16:58:16','2021-05-05 16:58:16','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Call to Action\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_fullwidth_header title=\"Trailers For Sale\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-30.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Event Section\" _builder_version=\"4.2\" custom_padding=\"60px||60px||true|false\" animation_style=\"zoom\" animation_intensity_zoom=\"6%\" animation_starting_opacity=\"100%\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>We carry a wide variety of trailers to meet all of your needs.</p>\n<p><strong><a href=\"https://kingsvillelivestock.com/contact/\">Contact us</a></strong> for a FREE QUOTE today.</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><img class=\"wp-image-2101 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG-1006-scaled-e1595879726664-300x225.jpg\" alt=\"\" width=\"147\" height=\"110\" />Â  Â  2020 Eby 7\'1\" X 24\' Punch Panel Maverick Livestock Trailer. 14 ply tires, 7k axels, Alum. wheels, &amp; 2 cross gates $24,500.00 - <strong>Not in Stock, Call Now to Order!Â </strong></p>\n<p>&nbsp;</p>\n<p><img class=\"wp-image-2132 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/alum-cattle-trailer-300x169.jpg\" alt=\"\" width=\"165\" height=\"93\" />Â  1998 6\'8\" X 20\' Alumalite Livestock Trailer, 14 ply tires. $11,000.00</p>\n<p><img class=\"wp-image-2116 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1008-1-208x300.jpg\" alt=\"\" width=\"102\" height=\"147\" />Â  EZ Haul 32\' Bumper Pull Hay Trailer. 6 Bale, $4,850.00 - <strong>Old Stock, New Stock will be $600 higher</strong></p>\n<p><img class=\"wp-image-2117 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" alt=\"\" width=\"101\" height=\"135\" />Â  EZ Haul 32\' Gooseneck Hay Trailer. 6 Bale, $5,700.00</p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"97\" height=\"130\" />EZ Haul 36\' Gooseneck Hay Trailer. 7 Bale, $5,800.00</p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"100\" height=\"134\" />EZ Haul 42\' Gooseneck Hay Trailer. 8 Bale, $6,050.00</p>\n<p><img class=\"wp-image-2146 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Ez-Haul-Flat-Bed-2-300x225.jpg\" alt=\"\" width=\"139\" height=\"104\" />Â  Â 27\' EZ Haul Flat Bed. 22+5 Dove, 3 ramps, low profile, 10k axels, 14 ply tires. $10,885.00</p>\n<p><img class=\"wp-image-2147 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/ez-haul-flat-bed-3-300x225.jpg\" alt=\"\" width=\"144\" height=\"108\" /> EZ Haul 20\' Flat Bed Bumper Pull. 18+2 Dove, 2 4\' ramps, 7k axels, 10 ply tires. $5,050.00</p>\n<p>Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â 77WW Used Livestock Trailer 5 X 18 $2,500.00</p>\n<p><img class=\"wp-image-2153 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Wheel-Corral-300x185.png\" alt=\"\" width=\"172\" height=\"106\" /> Diamond \"W\" Wheel Corral $15,800.00</p>\n<h2>For additional questions about the trailers or wheel corral call the office @ 816-597-3331 or Derrick @ 816-726-3456</h2>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\"][et_pb_row _builder_version=\"4.4.4\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.4\"][/et_pb_column][/et_pb_row][/et_pb_section]','TRAILERS FOR SALE','','inherit','closed','closed','','714-revision-v1','','','2021-05-05 16:58:16','2021-05-05 16:58:16','',714,'https://kingsvillelivestock.com/?p=3201',0,'revision','',0),(3202,2,'2021-05-05 16:58:51','2021-05-05 16:58:51','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Call to Action\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_fullwidth_header title=\"Trailers For Sale\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-30.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Event Section\" _builder_version=\"4.2\" custom_padding=\"60px||60px||true|false\" animation_style=\"zoom\" animation_intensity_zoom=\"6%\" animation_starting_opacity=\"100%\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" text_orientation=\"center\"]<p>We carry a wide variety of trailers to meet all of your needs.</p>\n<p><strong><a href=\"https://kingsvillelivestock.com/contact/\">Contact us</a></strong> for a FREE QUOTE today.</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<p><img class=\"wp-image-2101 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG-1006-scaled-e1595879726664-300x225.jpg\" alt=\"\" width=\"147\" height=\"110\" />Â  Â  2020 Eby 7\'1\" X 24\' Punch Panel Maverick Livestock Trailer. 14 ply tires, 7k axels, Alum. wheels, &amp; 2 cross gates $24,500.00 - <strong>Not in Stock, Call Now to Order!Â </strong></p>\n<p>&nbsp;</p>\n<p><img class=\"wp-image-2132 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/alum-cattle-trailer-300x169.jpg\" alt=\"\" width=\"165\" height=\"93\" />Â  1998 6\'8\" X 20\' Alumalite Livestock Trailer, 14 ply tires. $11,000.00</p>\n<p><img class=\"wp-image-2116 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1008-1-208x300.jpg\" alt=\"\" width=\"102\" height=\"147\" />Â  EZ Haul 32\' Bumper Pull Hay Trailer. 6 Bale, $4,850.00 - <strong>Old Stock, New Stock will be $600 higher</strong></p>\n<p><img class=\"wp-image-2117 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" alt=\"\" width=\"101\" height=\"135\" />Â  EZ Haul 32\' Gooseneck Hay Trailer. 6 Bale, $5,700.00</p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"97\" height=\"130\" />EZ Haul 36\' Gooseneck Hay Trailer. 7 Bale, $5,800.00</p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"100\" height=\"134\" />EZ Haul 42\' Gooseneck Hay Trailer. 8 Bale, $6,050.00</p>\n<p><img class=\"wp-image-2146 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Ez-Haul-Flat-Bed-2-300x225.jpg\" alt=\"\" width=\"139\" height=\"104\" />Â  Â 27\' EZ Haul Flat Bed. 22+5 Dove, 3 ramps, low profile, 10k axels, 14 ply tires. $10,885.00</p>\n<p><img class=\"wp-image-2147 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/ez-haul-flat-bed-3-300x225.jpg\" alt=\"\" width=\"144\" height=\"108\" /> EZ Haul 20\' Flat Bed Bumper Pull. 18+2 Dove, 2 4\' ramps, 7k axels, 10 ply tires. $5,050.00</p>\n<p>Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â 77WW Used Livestock Trailer 5 X 18 $2,500.00</p>\n<p><img class=\"wp-image-2153 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Wheel-Corral-300x185.png\" alt=\"\" width=\"172\" height=\"106\" /> Diamond \"W\" Wheel Corral $15,800.00</p>\n<h2>For additional questions about the trailers or wheel corral call the office @ 816-597-3331 or Derrick @ 816-726-3456</h2>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\"][et_pb_row _builder_version=\"4.4.4\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.4\"][/et_pb_column][/et_pb_row][/et_pb_section]','TRAILERS FOR SALE','','inherit','closed','closed','','714-revision-v1','','','2021-05-05 16:58:51','2021-05-05 16:58:51','',714,'https://kingsvillelivestock.com/?p=3202',0,'revision','',0),(3208,2,'2021-05-05 17:08:38','2021-05-05 17:08:38','','Strate Estate May 23rd','','inherit','closed','closed','','strate-estate-may-23rd-3','','','2021-05-05 17:08:38','2021-05-05 17:08:38','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Strate-Estate-May-23rd-2.pdf',0,'attachment','application/pdf',0),(3217,2,'2021-05-10 19:23:23','2021-05-10 19:23:23','','Tuesday, May 11th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-may-11th-feeder-cattle-consignments','','','2021-05-10 19:23:23','2021-05-10 19:23:23','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Tuesday-May-11th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3222,2,'2021-05-12 15:48:43','2021-05-12 15:48:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\"]<p><strong>May 11th, 2021,</strong> 2267 hd;Â  last week 2124 hd; a year ago 2174 hd.Feeder cattle of all classes sold steady-$6 higher. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$161.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$151.00-$189.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$125.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$139.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$114.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$98.00-$109.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$64.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $63.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 70px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">504lbs @ 175.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">729lbs @146.50</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">780lbs @ 140.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">716lbs @ 134.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 11, 2021 - Market Report','','publish','closed','open','','may-11-2021-market-report','','','2021-05-12 15:49:03','2021-05-12 15:49:03','',0,'https://kingsvillelivestock.com/?p=3222',0,'post','',0),(3224,2,'2021-05-12 15:48:43','2021-05-12 15:48:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>May 11th, 2021,</strong> 2267 hd;Â  last week 2124 hd; a year ago 2174 hd.Feeder cattle of all classes sold steady-$6 higher. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$161.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$151.00-$189.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$125.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$139.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$114.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$98.00-$109.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$64.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $63.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 70px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">504lbs @ 175.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">729lbs @146.50</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">780lbs @ 140.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">716lbs @ 134.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 11, 2021 - Market Report','','inherit','closed','closed','','3222-revision-v1','','','2021-05-12 15:48:43','2021-05-12 15:48:43','',3222,'https://kingsvillelivestock.com/?p=3224',0,'revision','',0),(3225,2,'2021-05-12 15:48:43','2021-05-12 15:48:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>May 11th, 2021,</strong> 2267 hd;Â  last week 2124 hd; a year ago 2174 hd.Feeder cattle of all classes sold steady-$6 higher. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$161.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$151.00-$189.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$125.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$139.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$114.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$98.00-$109.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$64.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $63.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 70px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">504lbs @ 175.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">729lbs @146.50</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">780lbs @ 140.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">716lbs @ 134.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 4, 2021 - Market Report','','inherit','closed','closed','','3222-revision-v1','','','2021-05-12 15:48:43','2021-05-12 15:48:43','',3222,'https://kingsvillelivestock.com/?p=3225',0,'revision','',0),(3227,2,'2021-05-12 15:48:46','2021-05-12 15:48:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>May 11th, 2021,</strong> 2267 hd;Â  last week 2124 hd; a year ago 2174 hd.Feeder cattle of all classes sold steady-$6 higher. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$161.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$151.00-$189.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$125.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$139.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$114.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$98.00-$109.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$64.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $63.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 70px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">504lbs @ 175.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">729lbs @146.50</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">780lbs @ 140.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">716lbs @ 134.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 11, 2021 - Market Report','','inherit','closed','closed','','3222-revision-v1','','','2021-05-12 15:48:46','2021-05-12 15:48:46','',3222,'https://kingsvillelivestock.com/?p=3227',0,'revision','',0),(3228,2,'2021-05-12 15:49:00','2021-05-12 15:49:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\"]<p><strong>May 11th, 2021,</strong> 2267 hd;Â  last week 2124 hd; a year ago 2174 hd.Feeder cattle of all classes sold steady-$6 higher. Slaughter Cows &amp; Bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$161.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$151.00-$189.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$146.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$125.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$145.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$139.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$108.00-$114.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$98.00-$109.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$64.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $63.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 70px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">504lbs @ 175.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">729lbs @146.50</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">780lbs @ 140.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">716lbs @ 134.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 11, 2021 - Market Report','','inherit','closed','closed','','3222-revision-v1','','','2021-05-12 15:49:00','2021-05-12 15:49:00','',3222,'https://kingsvillelivestock.com/?p=3228',0,'revision','',0),(3234,2,'2021-05-12 17:19:38','2021-05-12 17:19:38','','May 21,2021 Red Angus Sale','','inherit','closed','closed','','may-212021-red-angus-sale-4','','','2021-05-12 17:19:38','2021-05-12 17:19:38','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/May-212021-Red-Angus-Sale-2.pdf',0,'attachment','application/pdf',0),(3237,2,'2021-05-12 18:20:13','2021-05-12 18:20:13','','2021 Memorial Day Sale Flyer','','inherit','closed','closed','','2021-memorial-day-sale-flyer','','','2021-05-12 18:20:13','2021-05-12 18:20:13','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/2021-Memorial-Day-Sale-Flyer.pdf',0,'attachment','application/pdf',0),(3239,2,'2021-05-12 18:25:37','2021-05-12 18:25:37','','Memorial Day 2021 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2021-detailed-consignment-list','','','2021-05-12 18:25:37','2021-05-12 18:25:37','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Memorial-Day-2021-Detailed-Consignment-List.pdf',0,'attachment','application/pdf',0),(3244,2,'2021-05-15 00:50:03','2021-05-15 00:50:03','','2021 Fall Calving Sale Order','','inherit','closed','closed','','2021-fall-calving-sale-order','','','2021-05-15 00:50:03','2021-05-15 00:50:03','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/2021-Fall-Calving-Sale-Order.pdf',0,'attachment','application/pdf',0),(3250,2,'2021-05-17 19:59:58','2021-05-17 19:59:58','','Memorial Day 2021 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2021-detailed-consignment-list-2','','','2021-05-17 19:59:58','2021-05-17 19:59:58','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Memorial-Day-2021-Detailed-Consignment-List-1.pdf',0,'attachment','application/pdf',0),(3253,2,'2021-05-17 20:05:43','2021-05-17 20:05:43','','Tuesday, May 18th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-may-18th-feeder-cattle-consignments','','','2021-05-17 20:05:43','2021-05-17 20:05:43','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Tuesday-May-18th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3259,2,'2021-05-17 20:39:22','2021-05-17 20:39:22','','May 21,2021 Red Angus Sale','','inherit','closed','closed','','may-212021-red-angus-sale-5','','','2021-05-17 20:39:22','2021-05-17 20:39:22','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/May-212021-Red-Angus-Sale-3.pdf',0,'attachment','application/pdf',0),(3262,2,'2021-05-17 20:40:50','2021-05-17 20:40:50','','May 21,2021 Red Angus Sale','','inherit','closed','closed','','may-212021-red-angus-sale-6','','','2021-05-17 20:40:50','2021-05-17 20:40:50','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/May-212021-Red-Angus-Sale-4.pdf',0,'attachment','application/pdf',0),(3265,2,'2021-05-17 20:44:49','2021-05-17 20:44:49','','Untitled document','','inherit','closed','closed','','untitled-document','','','2021-05-17 20:44:49','2021-05-17 20:44:49','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Untitled-document.pdf',0,'attachment','application/pdf',0),(3268,2,'2021-05-17 20:47:20','2021-05-17 20:47:20','','Untitled document','','inherit','closed','closed','','untitled-document-2','','','2021-05-17 20:47:20','2021-05-17 20:47:20','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Untitled-document-1.pdf',0,'attachment','application/pdf',0),(3273,2,'2021-05-17 20:54:14','2021-05-17 20:54:14','','Untitled document','','inherit','closed','closed','','untitled-document-3','','','2021-05-17 20:54:14','2021-05-17 20:54:14','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Untitled-document-2.pdf',0,'attachment','application/pdf',0),(3278,2,'2021-05-17 23:13:02','2021-05-17 23:13:02','','Memorial Day 2021 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2021-detailed-consignment-list-3','','','2021-05-17 23:13:02','2021-05-17 23:13:02','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Memorial-Day-2021-Detailed-Consignment-List-2.pdf',0,'attachment','application/pdf',0),(3283,2,'2021-05-19 16:47:15','2021-05-19 16:47:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\"]<p><strong>May 18th, 2021,</strong> 1531 hd;Â  last week 2267 hd; a year ago 3013 hd.Compared to last week steers sold $3-$6 higher &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$2 higher.Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$166.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">122.50-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$118.00-$130.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$110.00-$115.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$64.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.50.00 - $108</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 70px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">590lbs @ 162.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">693lbs @153.00</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">723lbs @ 149.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">720lbs @ 133.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 18, 2021 - Market Report','','publish','closed','open','','may-18-2021-market-report','','','2021-05-19 16:48:22','2021-05-19 16:48:22','',0,'https://kingsvillelivestock.com/?p=3283',0,'post','',0),(3285,2,'2021-05-19 16:47:15','2021-05-19 16:47:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>May 18th, 2021,</strong> 1531 hd;Â  last week 2267 hd; a year ago 3013 hd.Compared to last week steers sold $3-$6 higher &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$2 higher.Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$166.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">122.50-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$118.00-$130.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$110.00-$115.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$64.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.50.00 - $108</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 70px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">590lbs @ 162.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">693lbs @153.00</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">723lbs @ 149.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">720lbs @ 133.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 18, 2021 - Market Report','','inherit','closed','closed','','3283-revision-v1','','','2021-05-19 16:47:15','2021-05-19 16:47:15','',3283,'https://kingsvillelivestock.com/?p=3285',0,'revision','',0),(3286,2,'2021-05-19 16:47:16','2021-05-19 16:47:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>May 18th, 2021,</strong> 1531 hd;Â  last week 2267 hd; a year ago 3013 hd.Compared to last week steers sold $3-$6 higher &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$2 higher.Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$166.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">122.50-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$118.00-$130.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$110.00-$115.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$64.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.50.00 - $108</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 70px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">590lbs @ 162.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">693lbs @153.00</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">723lbs @ 149.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">720lbs @ 133.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 11, 2021 - Market Report','','inherit','closed','closed','','3283-revision-v1','','','2021-05-19 16:47:16','2021-05-19 16:47:16','',3283,'https://kingsvillelivestock.com/?p=3286',0,'revision','',0),(3288,2,'2021-05-19 16:47:19','2021-05-19 16:47:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>May 18th, 2021,</strong> 1531 hd;Â  last week 2267 hd; a year ago 3013 hd.Compared to last week steers sold $3-$6 higher &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$2 higher.Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$166.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">122.50-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$118.00-$130.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$110.00-$115.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$64.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.50.00 - $108</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 70px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">590lbs @ 162.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">693lbs @153.00</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">723lbs @ 149.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">720lbs @ 133.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 18, 2021 - Market Report','','inherit','closed','closed','','3283-revision-v1','','','2021-05-19 16:47:19','2021-05-19 16:47:19','',3283,'https://kingsvillelivestock.com/?p=3288',0,'revision','',0),(3289,2,'2021-05-19 16:48:19','2021-05-19 16:48:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\"]<p><strong>May 18th, 2021,</strong> 1531 hd;Â  last week 2267 hd; a year ago 3013 hd.Compared to last week steers sold $3-$6 higher &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$2 higher.Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$166.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">122.50-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$118.00-$130.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$110.00-$115.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$133.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$64.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$54.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $53.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.50.00 - $108</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 70px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">590lbs @ 162.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">693lbs @153.00</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">723lbs @ 149.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">720lbs @ 133.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 18, 2021 - Market Report','','inherit','closed','closed','','3283-revision-v1','','','2021-05-19 16:48:19','2021-05-19 16:48:19','',3283,'https://kingsvillelivestock.com/?p=3289',0,'revision','',0),(3291,2,'2021-05-19 16:51:04','2021-05-19 16:51:04','','Memorial Day 2021 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2021-detailed-consignment-list-4','','','2021-05-19 16:51:04','2021-05-19 16:51:04','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Memorial-Day-2021-Detailed-Consignment-List-3.pdf',0,'attachment','application/pdf',0),(3299,2,'2021-05-21 19:55:27','2021-05-21 19:55:27','','Memorial Day 2021 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2021-detailed-consignment-list-5','','','2021-05-21 19:55:27','2021-05-21 19:55:27','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Memorial-Day-2021-Detailed-Consignment-List-4.pdf',0,'attachment','application/pdf',0),(3309,2,'2021-05-24 18:00:18','2021-05-24 18:00:18','','Tuesday, May 25th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-may-25th-feeder-cattle-consignments','','','2021-05-24 18:00:18','2021-05-24 18:00:18','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Tuesday-May-25th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3313,2,'2021-05-24 18:15:09','2021-05-24 18:15:09','','Memorial Day 2021 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2021-detailed-consignment-list-6','','','2021-05-24 18:15:09','2021-05-24 18:15:09','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Memorial-Day-2021-Detailed-Consignment-List-5.pdf',0,'attachment','application/pdf',0),(3317,2,'2021-05-26 16:26:19','2021-05-26 16:26:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\"]<p><strong>May 25th, 2021,</strong> 2384 hd;Â  last week 1531 hd; a year ago 1050 hd. Steers sold steady-$3 higher &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$4 higher.Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$189.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$134.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$126.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$156.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$139.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$119.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$59.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.00 - $109</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 93px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">489lbs @ 189.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">713lbs @151.00</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">847lbs @ 134.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">998lbs @ 123.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1009lbs @ 122.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1014lbs @ 121.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1020lbs @ 122.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">702lbs @ 135.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">738lbs @ 138.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 25, 2021 - Market Report','','publish','closed','open','','may-25-2021-market-report','','','2021-05-26 16:26:40','2021-05-26 16:26:40','',0,'https://kingsvillelivestock.com/?p=3317',0,'post','',0),(3319,2,'2021-05-26 16:26:19','2021-05-26 16:26:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>May 25th, 2021,</strong> 2384 hd;Â  last week 1531 hd; a year ago 1050 hd. Steers sold steady-$3 higher &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$4 higher.Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$189.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$134.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$126.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$156.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$139.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$119.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$59.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.00 - $109</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 93px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">489lbs @ 189.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">713lbs @151.00</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">847lbs @ 134.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">998lbs @ 123.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1009lbs @ 122.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1014lbs @ 121.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1020lbs @ 122.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">702lbs @ 135.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">738lbs @ 138.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 25, 2021 - Market Report','','inherit','closed','closed','','3317-revision-v1','','','2021-05-26 16:26:19','2021-05-26 16:26:19','',3317,'https://kingsvillelivestock.com/?p=3319',0,'revision','',0),(3320,2,'2021-05-26 16:26:19','2021-05-26 16:26:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>May 25th, 2021,</strong> 2384 hd;Â  last week 1531 hd; a year ago 1050 hd. Steers sold steady-$3 higher &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$4 higher.Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$189.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$134.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$126.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$156.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$139.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$119.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$59.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.00 - $109</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 93px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">489lbs @ 189.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">713lbs @151.00</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">847lbs @ 134.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">998lbs @ 123.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1009lbs @ 122.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1014lbs @ 121.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1020lbs @ 122.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">702lbs @ 135.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">738lbs @ 138.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 18, 2021 - Market Report','','inherit','closed','closed','','3317-revision-v1','','','2021-05-26 16:26:19','2021-05-26 16:26:19','',3317,'https://kingsvillelivestock.com/?p=3320',0,'revision','',0),(3321,2,'2021-05-26 16:26:23','2021-05-26 16:26:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>May 25th, 2021,</strong> 2384 hd;Â  last week 1531 hd; a year ago 1050 hd. Steers sold steady-$3 higher &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$4 higher.Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$189.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$134.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$126.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$156.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$139.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$119.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$59.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.00 - $109</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 93px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">489lbs @ 189.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">713lbs @151.00</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">847lbs @ 134.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">998lbs @ 123.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1009lbs @ 122.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1014lbs @ 121.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1020lbs @ 122.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">702lbs @ 135.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">738lbs @ 138.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 25, 2021 - Market Report','','inherit','closed','closed','','3317-revision-v1','','','2021-05-26 16:26:23','2021-05-26 16:26:23','',3317,'https://kingsvillelivestock.com/?p=3321',0,'revision','',0),(3322,2,'2021-05-26 16:26:36','2021-05-26 16:26:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\"]<p><strong>May 25th, 2021,</strong> 2384 hd;Â  last week 1531 hd; a year ago 1050 hd. Steers sold steady-$3 higher &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$4 higher.Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$189.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$134.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$126.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$156.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$139.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$138.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$119.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$100.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$59.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.00 - $109</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 93px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">489lbs @ 189.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">713lbs @151.00</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">847lbs @ 134.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">998lbs @ 123.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1009lbs @ 122.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1014lbs @ 121.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1020lbs @ 122.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">702lbs @ 135.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">738lbs @ 138.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 25, 2021 - Market Report','','inherit','closed','closed','','3317-revision-v1','','','2021-05-26 16:26:36','2021-05-26 16:26:36','',3317,'https://kingsvillelivestock.com/?p=3322',0,'revision','',0),(3324,2,'2021-05-26 19:06:14','2021-05-26 19:06:14','','Memorial Day 2021 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2021-detailed-consignment-list-7','','','2021-05-26 19:06:14','2021-05-26 19:06:14','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Memorial-Day-2021-Detailed-Consignment-List-6.pdf',0,'attachment','application/pdf',0),(3327,2,'2021-05-28 15:40:21','2021-05-28 15:40:21','','Memorial Day 2021 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2021-detailed-consignment-list-8','','','2021-05-28 15:40:21','2021-05-28 15:40:21','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Memorial-Day-2021-Detailed-Consignment-List-7.pdf',0,'attachment','application/pdf',0),(3330,2,'2021-05-28 20:37:41','2021-05-28 20:37:41','','Memorial Day 2021 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2021-detailed-consignment-list-9','','','2021-05-28 20:37:41','2021-05-28 20:37:41','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Memorial-Day-2021-Detailed-Consignment-List-8.pdf',0,'attachment','application/pdf',0),(3335,2,'2021-05-31 16:56:23','2021-05-31 16:56:23','','Tuesday, June 1st Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-june-1st-feeder-cattle-consignments','','','2021-05-31 16:56:23','2021-05-31 16:56:23','',2209,'https://kingsvillelivestock.com/wp-content/uploads/2021/05/Tuesday-June-1st-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3344,2,'2021-06-02 15:40:18','2021-06-02 15:40:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\"]<strong>June 1st, 2021,</strong> 1853 hd;Â  last week 2384 hd; a year ago 4365 hd. Compared to last week the steer calves sold steady. Heifer calves sold steady-$2 higher. Load lots of steers and heifers sold steady-$2 higher &amp; yearlings sold steady. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\r\n<tbody>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\r\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$180.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$137.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$131.85-$136.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.85</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$146.00-$164.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">400-500</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">500-600</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$155.75</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">600-700</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$140.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">700-800</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$132.10</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">800-900</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">NA</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">900-1000</td>\r\n<td style=\"width: 157px;\">NA</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\r\n\r\n<table width=\"329\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 156.5px;\">High Yield</td>\r\n<td style=\"width: 156.5px;\">$70.00 - $80.50</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Medium Yield</td>\r\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Low Yield</td>\r\n<td style=\"width: 156.5px;\">$48.00 - $60.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Bulls</td>\r\n<td style=\"width: 156.5px;\">$80.00 - $106.50</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 93px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">867lbs @ 136.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">878lbs @ 133.00</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">891lbs @ 131.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">908lbs @ 130.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">692lbs @ 134.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 1, 2021 - Market Report','','publish','closed','open','','june1-2021-market-report','','','2021-06-02 15:49:12','2021-06-02 15:49:12','',0,'https://kingsvillelivestock.com/?p=3344',0,'post','',0),(3346,2,'2021-06-02 15:40:18','2021-06-02 15:40:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>June 1st, 2021,</strong> 1853 hd;Â  last week 2384 hd; a year ago 4365 hd. Compared to last week the steer calves sold steady. Heifer calves sold steady-$2 higher. Load lots of steers and heifers sold steady-$2 higher &amp; yearlings sold steady. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$137.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$131.85-$136.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$146.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$155.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$140.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$132.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">NA</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NA</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $80.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $106.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 93px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">489lbs @ 189.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">713lbs @151.00</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">847lbs @ 134.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">998lbs @ 123.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1009lbs @ 122.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1014lbs @ 121.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1020lbs @ 122.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">702lbs @ 135.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">738lbs @ 138.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June1, 2021 - Market Report','','inherit','closed','closed','','3344-revision-v1','','','2021-06-02 15:40:18','2021-06-02 15:40:18','',3344,'https://kingsvillelivestock.com/?p=3346',0,'revision','',0),(3347,2,'2021-06-02 15:40:18','2021-06-02 15:40:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>June 1st, 2021,</strong> 1853 hd;Â  last week 2384 hd; a year ago 4365 hd. Compared to last week the steer calves sold steady. Heifer calves sold steady-$2 higher. Load lots of steers and heifers sold steady-$2 higher &amp; yearlings sold steady. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$137.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$131.85-$136.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$146.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$155.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$140.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$132.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">NA</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NA</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $80.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $106.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 93px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">489lbs @ 189.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">713lbs @151.00</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">847lbs @ 134.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">998lbs @ 123.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1009lbs @ 122.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1014lbs @ 121.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1020lbs @ 122.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">702lbs @ 135.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">738lbs @ 138.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 25, 2021 - Market Report','','inherit','closed','closed','','3344-revision-v1','','','2021-06-02 15:40:18','2021-06-02 15:40:18','',3344,'https://kingsvillelivestock.com/?p=3347',0,'revision','',0),(3348,2,'2021-06-02 15:40:22','2021-06-02 15:40:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>June 1st, 2021,</strong> 1853 hd;Â  last week 2384 hd; a year ago 4365 hd. Compared to last week the steer calves sold steady. Heifer calves sold steady-$2 higher. Load lots of steers and heifers sold steady-$2 higher &amp; yearlings sold steady. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$137.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$131.85-$136.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$146.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$155.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$140.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$132.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">NA</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NA</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $80.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $106.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 93px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">489lbs @ 189.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">713lbs @151.00</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">847lbs @ 134.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">998lbs @ 123.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1009lbs @ 122.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1014lbs @ 121.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Steers</td>\n<td style=\"width: 161px;\">1020lbs @ 122.00</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">702lbs @ 135.50</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">738lbs @ 138.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June1, 2021 - Market Report','','inherit','closed','closed','','3344-revision-v1','','','2021-06-02 15:40:22','2021-06-02 15:40:22','',3344,'https://kingsvillelivestock.com/?p=3348',0,'revision','',0),(3349,2,'2021-06-02 15:41:37','2021-06-02 15:41:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]\r\n\r\n<strong>June 1st, 2021,</strong> 1853 hd;Â  last week 2384 hd; a year ago 4365 hd. Compared to last week the steer calves sold steady. Heifer calves sold steady-$2 higher. Load lots of steers and heifers sold steady-$2 higher &amp; yearlings sold steady. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]\r\n<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\r\n<tbody>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\r\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$180.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$137.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$131.85-$136.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.85</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]\r\n<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$146.00-$164.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">400-500</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">500-600</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$155.75</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">600-700</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$140.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">700-800</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$132.10</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">800-900</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">NA</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">900-1000</td>\r\n<td style=\"width: 157px;\">NA</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\r\n\r\n<table width=\"329\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 156.5px;\">High Yield</td>\r\n<td style=\"width: 156.5px;\">$70.00 - $80.50</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Medium Yield</td>\r\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Low Yield</td>\r\n<td style=\"width: 156.5px;\">$48.00 - $60.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Bulls</td>\r\n<td style=\"width: 156.5px;\">$80.00 - $106.50</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\r\n\r\n<table style=\"height: 93px;\" width=\"338\">\r\n<tbody>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 161px; height: 23px;\">Steers</td>\r\n<td style=\"width: 161px; height: 23px;\">489lbs @ 189.75</td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 161px; height: 23px;\">Steers</td>\r\n<td style=\"width: 161px; height: 23px;\">713lbs @151.00</td>\r\n</tr>\r\n<tr style=\"height: 24px;\">\r\n<td style=\"width: 161px; height: 24px;\">Steers</td>\r\n<td style=\"width: 161px; height: 24px;\">847lbs @ 134.85</td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 161px; height: 23px;\">Steers</td>\r\n<td style=\"width: 161px; height: 23px;\">998lbs @ 123.85</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 161px;\">Steers</td>\r\n<td style=\"width: 161px;\">1009lbs @ 122.85</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 161px;\">Steers</td>\r\n<td style=\"width: 161px;\">1014lbs @ 121.85</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 161px;\">Steers</td>\r\n<td style=\"width: 161px;\">1020lbs @ 122.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 161px;\">Heifers</td>\r\n<td style=\"width: 161px;\">702lbs @ 135.50</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 161px;\">Heifers</td>\r\n<td style=\"width: 161px;\">738lbs @ 138.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.4.4\"]\r\n<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 1, 2021 - Market Report','','inherit','closed','closed','','3344-revision-v1','','','2021-06-02 15:41:37','2021-06-02 15:41:37','',3344,'https://kingsvillelivestock.com/?p=3349',0,'revision','',0),(3351,2,'2021-06-02 15:49:09','2021-06-02 15:49:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\"]<strong>June 1st, 2021,</strong> 1853 hd;Â  last week 2384 hd; a year ago 4365 hd. Compared to last week the steer calves sold steady. Heifer calves sold steady-$2 higher. Load lots of steers and heifers sold steady-$2 higher &amp; yearlings sold steady. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\r\n<tbody>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\r\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$180.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$137.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$131.85-$136.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.85</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\r\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$146.00-$164.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">400-500</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">500-600</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$155.75</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">600-700</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$140.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">700-800</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$132.10</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">800-900</td>\r\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">NA</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px;\">900-1000</td>\r\n<td style=\"width: 157px;\">NA</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\r\n\r\n<table width=\"329\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 156.5px;\">High Yield</td>\r\n<td style=\"width: 156.5px;\">$70.00 - $80.50</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Medium Yield</td>\r\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Low Yield</td>\r\n<td style=\"width: 156.5px;\">$48.00 - $60.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Bulls</td>\r\n<td style=\"width: 156.5px;\">$80.00 - $106.50</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 93px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">867lbs @ 136.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">878lbs @ 133.00</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">891lbs @ 131.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">908lbs @ 130.85</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">692lbs @ 134.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 1, 2021 - Market Report','','inherit','closed','closed','','3344-revision-v1','','','2021-06-02 15:49:09','2021-06-02 15:49:09','',3344,'https://kingsvillelivestock.com/?p=3351',0,'revision','',0),(3358,2,'2021-06-07 19:56:22','2021-06-07 19:56:22','','Tuesday, June 8th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-june-8th-feeder-cattle-consignments','','','2021-06-07 19:56:22','2021-06-07 19:56:22','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/06/Tuesday-June-8th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3366,2,'2021-06-09 15:38:55','2021-06-09 15:38:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>June 8th, 2021,</strong> 3096 hd;Â  last week 1853 hd; a year ago 2130 hd. Compared to last week,steers &amp; heifers sold steady-$3 higher. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$125.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120-$127.10</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$157.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$144.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$95.00-$115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$75.00 - $85.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$86.00 - $112.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 93px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">838lbs @ 138.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">850lbs @ 140.50</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">943lbs @ 127.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">720lbs @ 136.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 8, 2021 - Market Report','','publish','closed','open','','june-8-2021-market-report','','','2021-06-09 15:38:58','2021-06-09 15:38:58','',0,'https://kingsvillelivestock.com/?p=3366',0,'post','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (3368,2,'2021-06-09 15:38:55','2021-06-09 15:38:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>June 8th, 2021,</strong> 3096 hd;Â  last week 1853 hd; a year ago 2130 hd. Compared to last week,steers &amp; heifers sold steady-$3 higher. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$125.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120-$127.10</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$157.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$144.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$95.00-$115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$75.00 - $85.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$86.00 - $112.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 93px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">838lbs @ 138.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">850lbs @ 140.50</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">943lbs @ 127.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">720lbs @ 136.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 8, 2021 - Market Report','','inherit','closed','closed','','3366-revision-v1','','','2021-06-09 15:38:55','2021-06-09 15:38:55','',3366,'https://kingsvillelivestock.com/?p=3368',0,'revision','',0),(3369,2,'2021-06-09 15:38:55','2021-06-09 15:38:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>June 8th, 2021,</strong> 3096 hd;Â  last week 1853 hd; a year ago 2130 hd. Compared to last week,steers &amp; heifers sold steady-$3 higher. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$125.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120-$127.10</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$157.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$144.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$95.00-$115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$75.00 - $85.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$86.00 - $112.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 93px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">838lbs @ 138.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">850lbs @ 140.50</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">943lbs @ 127.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">720lbs @ 136.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 1, 2021 - Market Report','','inherit','closed','closed','','3366-revision-v1','','','2021-06-09 15:38:55','2021-06-09 15:38:55','',3366,'https://kingsvillelivestock.com/?p=3369',0,'revision','',0),(3371,2,'2021-06-09 15:38:58','2021-06-09 15:38:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>June 8th, 2021,</strong> 3096 hd;Â  last week 1853 hd; a year ago 2130 hd. Compared to last week,steers &amp; heifers sold steady-$3 higher. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$125.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120-$127.10</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$157.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$144.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$125.00-$135.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$115.00-$125.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$95.00-$115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$75.00 - $85.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$86.00 - $112.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 93px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">838lbs @ 138.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 161px; height: 23px;\">Steers</td>\n<td style=\"width: 161px; height: 23px;\">850lbs @ 140.50</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 161px; height: 24px;\">Steers</td>\n<td style=\"width: 161px; height: 24px;\">943lbs @ 127.10</td>\n</tr>\n<tr>\n<td style=\"width: 161px;\">Heifers</td>\n<td style=\"width: 161px;\">720lbs @ 136.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 8, 2021 - Market Report','','inherit','closed','closed','','3366-revision-v1','','','2021-06-09 15:38:58','2021-06-09 15:38:58','',3366,'https://kingsvillelivestock.com/?p=3371',0,'revision','',0),(3376,2,'2021-06-09 18:46:16','2021-06-09 18:46:16','','Hammond Public Auction June 25th','','inherit','closed','closed','','hammond-public-auction-june-25th','','','2021-06-09 18:46:16','2021-06-09 18:46:16','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/06/Hammond-Public-Auction-June-25th.pdf',0,'attachment','application/pdf',0),(3380,2,'2021-06-14 18:10:35','2021-06-14 18:10:35','','Tuesday, June 15th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-june-15th-feeder-cattle-consignments','','','2021-06-14 18:10:35','2021-06-14 18:10:35','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/06/Tuesday-June-15th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3383,2,'2021-06-14 22:07:49','2021-06-14 22:07:49','','Hammond Public Auction June 25th','','inherit','closed','closed','','hammond-public-auction-june-25th-2','','','2021-06-14 22:07:49','2021-06-14 22:07:49','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/06/Hammond-Public-Auction-June-25th-1.pdf',0,'attachment','application/pdf',0),(3385,2,'2021-06-14 23:23:03','2021-06-14 23:23:03','','Smith Public Auction June 27th','','inherit','closed','closed','','smith-public-auction-june-27th','','','2021-06-14 23:23:03','2021-06-14 23:23:03','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/06/Smith-Public-Auction-June-27th.pdf',0,'attachment','application/pdf',0),(3390,2,'2021-06-16 16:54:18','2021-06-16 16:54:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>June 15th, 2021,</strong> 1792 hd;Â  last week 3096 hd; a year ago 2225 hd. Feeder cattle of all classes sold steady-$5 higher. Steers weighing 500-550lbs sold up to $10 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120-$132.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$176.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$136.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$121.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$102.00-$116.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">501lbs @195.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">568lbs @170.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">765lbs @149.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">784lbs @ 143.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">856lbs @ 142.00</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 160.984px; height: 24px;\">Steers</td>\n<td style=\"width: 161.016px; height: 24px;\">965lbs @ 131.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">967lbs @ 131.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">975lbs @ 132.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 15, 2021 - Market Report','','publish','closed','open','','june-15-2021-market-report','','','2021-06-16 16:54:22','2021-06-16 16:54:22','',0,'https://kingsvillelivestock.com/?p=3390',0,'post','',0),(3392,2,'2021-06-16 16:54:18','2021-06-16 16:54:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>June 15th, 2021,</strong> 1792 hd;Â  last week 3096 hd; a year ago 2225 hd. Feeder cattle of all classes sold steady-$5 higher. Steers weighing 500-550lbs sold up to $10 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120-$132.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$176.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$136.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$121.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$102.00-$116.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">501lbs @195.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">568lbs @170.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">765lbs @149.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">784lbs @ 143.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">856lbs @ 142.00</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 160.984px; height: 24px;\">Steers</td>\n<td style=\"width: 161.016px; height: 24px;\">965lbs @ 131.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">967lbs @ 131.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">975lbs @ 132.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 15, 2021 - Market Report','','inherit','closed','closed','','3390-revision-v1','','','2021-06-16 16:54:18','2021-06-16 16:54:18','',3390,'https://kingsvillelivestock.com/?p=3392',0,'revision','',0),(3393,2,'2021-06-16 16:54:18','2021-06-16 16:54:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>June 15th, 2021,</strong> 1792 hd;Â  last week 3096 hd; a year ago 2225 hd. Feeder cattle of all classes sold steady-$5 higher. Steers weighing 500-550lbs sold up to $10 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120-$132.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$176.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$136.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$121.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$102.00-$116.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">501lbs @195.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">568lbs @170.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">765lbs @149.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">784lbs @ 143.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">856lbs @ 142.00</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 160.984px; height: 24px;\">Steers</td>\n<td style=\"width: 161.016px; height: 24px;\">965lbs @ 131.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">967lbs @ 131.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">975lbs @ 132.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 8, 2021 - Market Report','','inherit','closed','closed','','3390-revision-v1','','','2021-06-16 16:54:18','2021-06-16 16:54:18','',3390,'https://kingsvillelivestock.com/?p=3393',0,'revision','',0),(3394,2,'2021-06-16 16:54:22','2021-06-16 16:54:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>June 15th, 2021,</strong> 1792 hd;Â  last week 3096 hd; a year ago 2225 hd. Feeder cattle of all classes sold steady-$5 higher. Steers weighing 500-550lbs sold up to $10 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120-$132.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$176.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$136.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$121.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$102.00-$116.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">501lbs @195.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">568lbs @170.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">765lbs @149.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">784lbs @ 143.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">856lbs @ 142.00</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 160.984px; height: 24px;\">Steers</td>\n<td style=\"width: 161.016px; height: 24px;\">965lbs @ 131.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">967lbs @ 131.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">975lbs @ 132.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 15, 2021 - Market Report','','inherit','closed','closed','','3390-revision-v1','','','2021-06-16 16:54:22','2021-06-16 16:54:22','',3390,'https://kingsvillelivestock.com/?p=3394',0,'revision','',0),(3398,2,'2021-06-21 18:20:39','2021-06-21 18:20:39','','Tuesday, June 22nd Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-june-22nd-feeder-cattle-consignments','','','2021-06-21 18:20:39','2021-06-21 18:20:39','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/06/Tuesday-June-22nd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3402,2,'2021-06-23 15:01:25','2021-06-23 15:01:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\"]<p><strong>June 22nd, 2021,</strong> 2581 hd;Â  last week 1792 hd; a year ago 2653 hd. Feeder cattle sold steady-$6 higher. Load lots sold $3-$6 higher. Slaughter cows &amp; bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$125.00-$142.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.50-$123.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $64.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$35.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $104.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">787lbs @151.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">874lbs @145.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">946lbs @142.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">961lbs@138.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">963lbs @ 137.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">964lbs @ 137.50</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 160.984px; height: 24px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 24px;\">712lbs @ 144.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">720lbs @ 144.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 22, 2021 - Market Report','','publish','closed','open','','june-22-2021-market-report','','','2021-06-23 15:37:33','2021-06-23 15:37:33','',0,'https://kingsvillelivestock.com/?p=3402',0,'post','',0),(3404,2,'2021-06-23 15:01:25','2021-06-23 15:01:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>June 22nd, 2021,</strong> 2581 hd;Â  last week 1792 hd; a year ago 2653 hd. Feeder cattle sold steady-$6 higher. Load lots sold $3-$6 higher. Slaughter cows &amp; bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$125.00-$142.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.50-$123.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $64.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$35.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $104.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">787lbs @151.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">874lbs @145.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">946lbs @142.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">961lbs@138.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">963lbs @ 137.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">964lbs @ 137.50</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 160.984px; height: 24px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 24px;\">712lbs @ 144.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">720lbs @ 144.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 22, 2021 - Market Report','','inherit','closed','closed','','3402-revision-v1','','','2021-06-23 15:01:25','2021-06-23 15:01:25','',3402,'https://kingsvillelivestock.com/?p=3404',0,'revision','',0),(3405,2,'2021-06-23 15:01:25','2021-06-23 15:01:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>June 22nd, 2021,</strong> 2581 hd;Â  last week 1792 hd; a year ago 2653 hd. Feeder cattle sold steady-$6 higher. Load lots sold $3-$6 higher. Slaughter cows &amp; bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$125.00-$142.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.50-$123.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $64.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$35.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $104.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">787lbs @151.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">874lbs @145.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">946lbs @142.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">961lbs@138.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">963lbs @ 137.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">964lbs @ 137.50</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 160.984px; height: 24px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 24px;\">712lbs @ 144.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">720lbs @ 144.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 15, 2021 - Market Report','','inherit','closed','closed','','3402-revision-v1','','','2021-06-23 15:01:25','2021-06-23 15:01:25','',3402,'https://kingsvillelivestock.com/?p=3405',0,'revision','',0),(3406,2,'2021-06-23 15:01:29','2021-06-23 15:01:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>June 22nd, 2021,</strong> 2581 hd;Â  last week 1792 hd; a year ago 2653 hd. Feeder cattle sold steady-$6 higher. Load lots sold $3-$6 higher. Slaughter cows &amp; bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$125.00-$142.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.50-$123.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $64.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$35.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $104.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">787lbs @151.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">874lbs @145.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">946lbs @142.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">961lbs@138.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">963lbs @ 137.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">964lbs @ 137.50</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 160.984px; height: 24px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 24px;\">712lbs @ 144.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">720lbs @ 144.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 22, 2021 - Market Report','','inherit','closed','closed','','3402-revision-v1','','','2021-06-23 15:01:29','2021-06-23 15:01:29','',3402,'https://kingsvillelivestock.com/?p=3406',0,'revision','',0),(3407,2,'2021-06-23 15:37:29','2021-06-23 15:37:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\"]<p><strong>June 22nd, 2021,</strong> 2581 hd;Â  last week 1792 hd; a year ago 2653 hd. Feeder cattle sold steady-$6 higher. Load lots sold $3-$6 higher. Slaughter cows &amp; bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$125.00-$142.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$145.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.50-$123.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$90.00-$105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $64.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$35.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $104.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">787lbs @151.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">874lbs @145.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">946lbs @142.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">961lbs@138.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">963lbs @ 137.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Steers</td>\n<td style=\"width: 161.016px; height: 23px;\">964lbs @ 137.50</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 160.984px; height: 24px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 24px;\">712lbs @ 144.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">720lbs @ 144.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 22, 2021 - Market Report','','inherit','closed','closed','','3402-revision-v1','','','2021-06-23 15:37:29','2021-06-23 15:37:29','',3402,'https://kingsvillelivestock.com/?p=3407',0,'revision','',0),(3414,2,'2021-06-28 18:24:41','2021-06-28 18:24:41','','Tuesday, June 29th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-june-29th-feeder-cattle-consignments','','','2021-06-28 18:24:41','2021-06-28 18:24:41','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/06/Tuesday-June-29th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3418,2,'2021-06-30 15:16:37','2021-06-30 15:16:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>June 29th, 2021,</strong> 2086 hd;Â  last week 2582 hd; a year ago 1885 hd. Feeder cattle of all classes sold steady-$4 higher with the most advance on yearlings. Slaughter cows &amp; bulls sold $2 higher. We will have a special feeder calf sale Tuesday, July 6th @ 10:30 am. Happy 4th from everyone at Kingsville Livestock! Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$171.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$115.00-$132</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">698lbs @156.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">724lbs @153.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">764lbs @154.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">875lbs @142.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">642lbs @ 147.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">644lbs @ 146.75</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 160.984px; height: 24px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 24px;\">665lbs @ 145.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">678lbs @ 145.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 29, 2021 - Market Report','','publish','closed','open','','june-29-2021-market-report','','','2021-06-30 15:31:49','2021-06-30 15:31:49','',0,'https://kingsvillelivestock.com/?p=3418',0,'post','',0),(3420,2,'2021-06-30 15:16:37','2021-06-30 15:16:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>June 29th, 2021,</strong> 2086 hd;Â  last week 2582 hd; a year ago 1885 hd. Feeder cattle of all classes sold steady-$4 higher with the most advance on yearlings. Slaughter cows &amp; bulls sold $2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$171.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$115.00-$132</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">698lbs @156.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">724lbs @153.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">764lbs @154.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">875lbs @142.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">642lbs @ 147.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">644lbs @ 146.75</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 160.984px; height: 24px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 24px;\">665lbs @ 145.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">678lbs @ 145.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 29, 2021 - Market Report','','inherit','closed','closed','','3418-revision-v1','','','2021-06-30 15:16:37','2021-06-30 15:16:37','',3418,'https://kingsvillelivestock.com/?p=3420',0,'revision','',0),(3421,2,'2021-06-30 15:16:37','2021-06-30 15:16:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>June 29th, 2021,</strong> 2086 hd;Â  last week 2582 hd; a year ago 1885 hd. Feeder cattle of all classes sold steady-$4 higher with the most advance on yearlings. Slaughter cows &amp; bulls sold $2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$171.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$115.00-$132</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">698lbs @156.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">724lbs @153.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">764lbs @154.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">875lbs @142.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">642lbs @ 147.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">644lbs @ 146.75</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 160.984px; height: 24px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 24px;\">665lbs @ 145.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">678lbs @ 145.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 22, 2021 - Market Report','','inherit','closed','closed','','3418-revision-v1','','','2021-06-30 15:16:37','2021-06-30 15:16:37','',3418,'https://kingsvillelivestock.com/?p=3421',0,'revision','',0),(3422,2,'2021-06-30 15:16:41','2021-06-30 15:16:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>June 29th, 2021,</strong> 2086 hd;Â  last week 2582 hd; a year ago 1885 hd. Feeder cattle of all classes sold steady-$4 higher with the most advance on yearlings. Slaughter cows &amp; bulls sold $2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$171.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$115.00-$132</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">698lbs @156.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">724lbs @153.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">764lbs @154.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">875lbs @142.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">642lbs @ 147.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">644lbs @ 146.75</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 160.984px; height: 24px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 24px;\">665lbs @ 145.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">678lbs @ 145.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 29, 2021 - Market Report','','inherit','closed','closed','','3418-revision-v1','','','2021-06-30 15:16:41','2021-06-30 15:16:41','',3418,'https://kingsvillelivestock.com/?p=3422',0,'revision','',0),(3423,2,'2021-06-30 15:31:49','2021-06-30 15:31:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>June 29th, 2021,</strong> 2086 hd;Â  last week 2582 hd; a year ago 1885 hd. Feeder cattle of all classes sold steady-$4 higher with the most advance on yearlings. Slaughter cows &amp; bulls sold $2 higher. We will have a special feeder calf sale Tuesday, July 6th @ 10:30 am. Happy 4th from everyone at Kingsville Livestock! Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$171.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$115.00-$132</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$113.00-$120.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">698lbs @156.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">724lbs @153.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">764lbs @154.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">875lbs @142.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">642lbs @ 147.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">644lbs @ 146.75</td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 160.984px; height: 24px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 24px;\">665lbs @ 145.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.016px; height: 23px;\">678lbs @ 145.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 29, 2021 - Market Report','','inherit','closed','closed','','3418-revision-v1','','','2021-06-30 15:31:49','2021-06-30 15:31:49','',3418,'https://kingsvillelivestock.com/?p=3423',0,'revision','',0),(3426,2,'2021-07-05 17:57:47','2021-07-05 17:57:47','','Tuesday, July 6th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-july-6th-feeder-cattle-consignments','','','2021-07-05 17:57:47','2021-07-05 17:57:47','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/07/Tuesday-July-6th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3429,2,'2021-07-06 00:00:19','2021-07-06 00:00:19','','Baldus Estate July 18th','','inherit','closed','closed','','baldus-estate-july-18th','','','2021-07-06 00:00:19','2021-07-06 00:00:19','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/07/Baldus-Estate-July-18th.pdf',0,'attachment','application/pdf',0),(3433,2,'2021-07-06 00:52:58','2021-07-06 00:52:58','','Moran Public July 23rd','','inherit','closed','closed','','moran-public-july-23rd','','','2021-07-06 00:52:58','2021-07-06 00:52:58','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/07/Moran-Public-July-23rd.pdf',0,'attachment','application/pdf',0),(3435,2,'2021-07-06 15:06:40','2021-07-06 15:06:40','','Moran Public July 23rd','','inherit','closed','closed','','moran-public-july-23rd-2','','','2021-07-06 15:06:40','2021-07-06 15:06:40','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/07/Moran-Public-July-23rd-1.pdf',0,'attachment','application/pdf',0),(3441,2,'2021-07-07 16:03:55','2021-07-07 16:03:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>July 6th, 2021,</strong> 889 hd;Â  last week 2086 hd; a year ago 1329 hd. Feeder steers and heifers traded steady - $5 higher. Slaughter cows &amp; bulls sold steady. We will have a special feeder calf sale Tuesday, July 6th @ 10:30 am. Happy 4th from everyone at Kingsville Livestock! Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$149.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$153.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$141.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$127.00-$131.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.50-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.50-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$146.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$122.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$117.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Â </td>\n<td style=\"width: 161.016px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Â </td>\n<td style=\"width: 161.016px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Â </td>\n<td style=\"width: 161.016px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Â </td>\n<td style=\"width: 161.016px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Â </td>\n<td style=\"width: 161.016px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Â </td>\n<td style=\"width: 161.016px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 160.984px; height: 24px;\">Â </td>\n<td style=\"width: 161.016px; height: 24px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Â </td>\n<td style=\"width: 161.016px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 6, 2021 - Market Report','','publish','closed','open','','july-6-2021-market-report','','','2021-07-07 16:03:59','2021-07-07 16:03:59','',0,'https://kingsvillelivestock.com/?p=3441',0,'post','',0),(3442,2,'2021-07-07 16:03:55','2021-07-07 16:03:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>July 6th, 2021,</strong> 889 hd;Â  last week 2086 hd; a year ago 1329 hd. Feeder steers and heifers traded steady - $5 higher. Slaughter cows &amp; bulls sold steady. We will have a special feeder calf sale Tuesday, July 6th @ 10:30 am. Happy 4th from everyone at Kingsville Livestock! Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$149.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$153.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$141.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$127.00-$131.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.50-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.50-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$146.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$122.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$117.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Â </td>\n<td style=\"width: 161.016px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Â </td>\n<td style=\"width: 161.016px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Â </td>\n<td style=\"width: 161.016px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Â </td>\n<td style=\"width: 161.016px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Â </td>\n<td style=\"width: 161.016px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Â </td>\n<td style=\"width: 161.016px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 160.984px; height: 24px;\">Â </td>\n<td style=\"width: 161.016px; height: 24px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Â </td>\n<td style=\"width: 161.016px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 6, 2021 - Market Report','','inherit','closed','closed','','3441-revision-v1','','','2021-07-07 16:03:55','2021-07-07 16:03:55','',3441,'https://kingsvillelivestock.com/?p=3442',0,'revision','',0),(3443,2,'2021-07-07 16:03:55','2021-07-07 16:03:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>July 6th, 2021,</strong> 889 hd;Â  last week 2086 hd; a year ago 1329 hd. Feeder steers and heifers traded steady - $5 higher. Slaughter cows &amp; bulls sold steady. We will have a special feeder calf sale Tuesday, July 6th @ 10:30 am. Happy 4th from everyone at Kingsville Livestock! Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$149.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$153.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$141.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$127.00-$131.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.50-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.50-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$146.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$122.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$117.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Â </td>\n<td style=\"width: 161.016px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Â </td>\n<td style=\"width: 161.016px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Â </td>\n<td style=\"width: 161.016px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Â </td>\n<td style=\"width: 161.016px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Â </td>\n<td style=\"width: 161.016px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Â </td>\n<td style=\"width: 161.016px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 160.984px; height: 24px;\">Â </td>\n<td style=\"width: 161.016px; height: 24px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Â </td>\n<td style=\"width: 161.016px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 29, 2021 - Market Report','','inherit','closed','closed','','3441-revision-v1','','','2021-07-07 16:03:55','2021-07-07 16:03:55','',3441,'https://kingsvillelivestock.com/?p=3443',0,'revision','',0),(3444,2,'2021-07-07 16:03:59','2021-07-07 16:03:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>July 6th, 2021,</strong> 889 hd;Â  last week 2086 hd; a year ago 1329 hd. Feeder steers and heifers traded steady - $5 higher. Slaughter cows &amp; bulls sold steady. We will have a special feeder calf sale Tuesday, July 6th @ 10:30 am. Happy 4th from everyone at Kingsville Livestock! Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$149.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$153.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$141.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$127.00-$131.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.50-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.50-$148.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$146.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$122.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$117.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Â </td>\n<td style=\"width: 161.016px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Â </td>\n<td style=\"width: 161.016px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Â </td>\n<td style=\"width: 161.016px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Â </td>\n<td style=\"width: 161.016px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Â </td>\n<td style=\"width: 161.016px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Â </td>\n<td style=\"width: 161.016px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 24px;\">\n<td style=\"width: 160.984px; height: 24px;\">Â </td>\n<td style=\"width: 161.016px; height: 24px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.984px; height: 23px;\">Â </td>\n<td style=\"width: 161.016px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 6, 2021 - Market Report','','inherit','closed','closed','','3441-revision-v1','','','2021-07-07 16:03:59','2021-07-07 16:03:59','',3441,'https://kingsvillelivestock.com/?p=3444',0,'revision','',0),(3449,2,'2021-07-07 17:06:41','2021-07-07 17:06:41','','Jennings Public Auction August 7th','','inherit','closed','closed','','jennings-public-auction-august-7th','','','2021-07-07 17:06:41','2021-07-07 17:06:41','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/07/Jennings-Public-Auction-August-7th.pdf',0,'attachment','application/pdf',0),(3458,2,'2021-07-12 17:47:35','2021-07-12 17:47:35','','Tuesday, July 13th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-july-13th-feeder-cattle-consignments','','','2021-07-12 17:47:35','2021-07-12 17:47:35','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/07/Tuesday-July-13th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3462,2,'2021-07-13 13:52:57','2021-07-13 13:52:57','','Colson Auction July 31st','','inherit','closed','closed','','colson-auction-july-31st','','','2021-07-13 13:52:57','2021-07-13 13:52:57','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/07/Colson-Auction-July-31st.pdf',0,'attachment','application/pdf',0),(3468,2,'2021-07-16 19:17:56','2021-07-16 19:17:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>July 13th, 2021,</strong>Â 987 hd;Â  last week 889 hd; a year ago 1329 hd. Feeder steers and heifers sold $3 - $7 higher with good buyer activity. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$167.50-$185</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$153.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$137.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$149.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$158.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.75-$137.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$112.00-$120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$59.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">611lbs @$176.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">728lbs @$158.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">848lbs @$153.10</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Heifers</td>\n<td style=\"width: 161.016px;\">749lbs @$152.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 13, 2021 - Market Report','','publish','closed','open','','july-13-2021-market-report','','','2021-07-16 19:18:02','2021-07-16 19:18:02','',0,'https://kingsvillelivestock.com/?p=3468',0,'post','',0),(3470,2,'2021-07-16 19:17:56','2021-07-16 19:17:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>July 13th, 2021,</strong>Â 987 hd;Â  last week 889 hd; a year ago 1329 hd. Feeder steers and heifers sold $3 - $7 higher with good buyer activity. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$167.50-$185</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$153.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$137.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$149.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$158.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.75-$137.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$112.00-$120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$59.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">611lbs @$176.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">728lbs @$158.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">848lbs @$153.10</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Heifers</td>\n<td style=\"width: 161.016px;\">749lbs @$152.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 13, 2021 - Market Report','','inherit','closed','closed','','3468-revision-v1','','','2021-07-16 19:17:56','2021-07-16 19:17:56','',3468,'https://kingsvillelivestock.com/?p=3470',0,'revision','',0),(3471,2,'2021-07-16 19:17:56','2021-07-16 19:17:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>July 13th, 2021,</strong>Â 987 hd;Â  last week 889 hd; a year ago 1329 hd. Feeder steers and heifers sold $3 - $7 higher with good buyer activity. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$167.50-$185</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$153.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$137.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$149.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$158.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.75-$137.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$112.00-$120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$59.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">611lbs @$176.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">728lbs @$158.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">848lbs @$153.10</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Heifers</td>\n<td style=\"width: 161.016px;\">749lbs @$152.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 6, 2021 - Market Report','','inherit','closed','closed','','3468-revision-v1','','','2021-07-16 19:17:56','2021-07-16 19:17:56','',3468,'https://kingsvillelivestock.com/?p=3471',0,'revision','',0),(3472,2,'2021-07-16 19:18:02','2021-07-16 19:18:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>July 13th, 2021,</strong>Â 987 hd;Â  last week 889 hd; a year ago 1329 hd. Feeder steers and heifers sold $3 - $7 higher with good buyer activity. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$167.50-$185</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$153.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$137.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$149.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$158.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$131.75-$137.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$112.00-$120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$59.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.9\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 116px;\" width=\"338\">\n<tbody>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">611lbs @$176.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">728lbs @$158.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Steers</td>\n<td style=\"width: 161.016px;\">848lbs @$153.10</td>\n</tr>\n<tr>\n<td style=\"width: 160.984px;\">Heifers</td>\n<td style=\"width: 161.016px;\">749lbs @$152.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 13, 2021 - Market Report','','inherit','closed','closed','','3468-revision-v1','','','2021-07-16 19:18:02','2021-07-16 19:18:02','',3468,'https://kingsvillelivestock.com/?p=3472',0,'revision','',0),(3473,2,'2021-07-19 17:48:47','2021-07-19 17:48:47','','Tuesday, July 20th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-july-20th-feeder-cattle-consignments','','','2021-07-19 17:48:47','2021-07-19 17:48:47','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/07/Tuesday-July-20th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3482,2,'2021-07-19 19:28:51','2021-07-19 19:28:51','','August 6,2021 Cow Sale','','inherit','closed','closed','','august-62021-cow-sale','','','2021-07-19 19:28:51','2021-07-19 19:28:51','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/07/August-62021-Cow-Sale.pdf',0,'attachment','application/pdf',0),(3483,2,'2021-07-19 19:29:51','2021-07-19 19:29:51','','August 21,2021 Cow Sale','','inherit','closed','closed','','august-212021-cow-sale','','','2021-07-19 19:29:51','2021-07-19 19:29:51','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/07/August-212021-Cow-Sale.pdf',0,'attachment','application/pdf',0),(3488,2,'2021-07-21 17:24:00','2021-07-21 17:24:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>July 20th, 2021,</strong> 1289 hd;Â  last week 987 hd; a year ago 1211 hd. Steers &amp; heifers under 700lbs sold steady-$5 higher &amp; 700lbs &amp; up sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.50-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$127.00-$136.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$148.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$138.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$120.00-$122.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$46.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">550lbs @$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">601lbs @$181.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">871lbs @$151.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">669lbs @$151.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">799lbs @$144.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 20, 2021 - Market Report','','publish','closed','open','','july-20-2021-market-report','','','2021-07-21 17:24:03','2021-07-21 17:24:03','',0,'https://kingsvillelivestock.com/?p=3488',0,'post','',0),(3490,2,'2021-07-21 17:24:00','2021-07-21 17:24:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>July 20th, 2021,</strong> 1289 hd;Â  last week 987 hd; a year ago 1211 hd. Steers &amp; heifers under 700lbs sold steady-$5 higher &amp; 700lbs &amp; up sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.50-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$127.00-$136.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$148.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$138.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$120.00-$122.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$46.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">550lbs @$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">601lbs @$181.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">871lbs @$151.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">669lbs @$151.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">799lbs @$144.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 20, 2021 - Market Report','','inherit','closed','closed','','3488-revision-v1','','','2021-07-21 17:24:00','2021-07-21 17:24:00','',3488,'https://kingsvillelivestock.com/?p=3490',0,'revision','',0),(3491,2,'2021-07-21 17:24:00','2021-07-21 17:24:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>July 20th, 2021,</strong> 1289 hd;Â  last week 987 hd; a year ago 1211 hd. Steers &amp; heifers under 700lbs sold steady-$5 higher &amp; 700lbs &amp; up sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.50-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$127.00-$136.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$148.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$138.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$120.00-$122.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$46.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">550lbs @$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">601lbs @$181.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">871lbs @$151.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">669lbs @$151.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">799lbs @$144.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 13, 2021 - Market Report','','inherit','closed','closed','','3488-revision-v1','','','2021-07-21 17:24:00','2021-07-21 17:24:00','',3488,'https://kingsvillelivestock.com/?p=3491',0,'revision','',0),(3492,2,'2021-07-21 17:24:03','2021-07-21 17:24:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>July 20th, 2021,</strong> 1289 hd;Â  last week 987 hd; a year ago 1211 hd. Steers &amp; heifers under 700lbs sold steady-$5 higher &amp; 700lbs &amp; up sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.50-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$127.00-$136.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$144.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$148.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$138.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$120.00-$122.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$46.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">550lbs @$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">601lbs @$181.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">871lbs @$151.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">669lbs @$151.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">799lbs @$144.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 20, 2021 - Market Report','','inherit','closed','closed','','3488-revision-v1','','','2021-07-21 17:24:03','2021-07-21 17:24:03','',3488,'https://kingsvillelivestock.com/?p=3492',0,'revision','',0),(3494,2,'2021-07-21 17:45:06','2021-07-21 17:45:06','','August 6,2021 Cow Sale','','inherit','closed','closed','','august-62021-cow-sale-2','','','2021-07-21 17:45:06','2021-07-21 17:45:06','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/07/August-62021-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(3501,2,'2021-07-26 17:27:33','2021-07-26 17:27:33','','Tuesday, July 27th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-july-27th-feeder-cattle-consignments','','','2021-07-26 17:27:33','2021-07-26 17:27:33','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/07/Tuesday-July-27th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3506,2,'2021-07-26 20:19:07','2021-07-26 20:19:07','','August 21,2021 Cow Sale','','inherit','closed','closed','','august-212021-cow-sale-2','','','2021-07-26 20:19:07','2021-07-26 20:19:07','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/07/August-212021-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(3512,2,'2021-07-28 15:07:59','2021-07-28 15:07:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>July 27th, 2021,</strong> 989 hd;Â  last week 1289 hd; a year ago 987 hd. Steers &amp; heifers sold steady-$3 higher. Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.50-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1050</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$136.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1137</td>\n<td style=\"width: 157px;\">$101.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$79.00 - $114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">727lbs @$163.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">866lbs @$147.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">1053lbs @$130.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">676lbs @$155.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">790lbs @$147.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 27, 2021 - Market Report','','publish','closed','open','','july-27-2021-market-report','','','2021-07-28 15:08:03','2021-07-28 15:08:03','',0,'https://kingsvillelivestock.com/?p=3512',0,'post','',0),(3513,2,'2021-07-28 15:07:59','2021-07-28 15:07:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>July 27th, 2021,</strong> 989 hd;Â  last week 1289 hd; a year ago 987 hd. Steers &amp; heifers sold steady-$3 higher. Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.50-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1050</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$136.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1137</td>\n<td style=\"width: 157px;\">$101.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$79.00 - $114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">727lbs @$163.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">866lbs @$147.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">1053lbs @$130.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">676lbs @$155.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">790lbs @$147.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 27, 2021 - Market Report','','inherit','closed','closed','','3512-revision-v1','','','2021-07-28 15:07:59','2021-07-28 15:07:59','',3512,'https://kingsvillelivestock.com/?p=3513',0,'revision','',0),(3514,2,'2021-07-28 15:07:59','2021-07-28 15:07:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>July 27th, 2021,</strong> 989 hd;Â  last week 1289 hd; a year ago 987 hd. Steers &amp; heifers sold steady-$3 higher. Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.50-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1050</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$136.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1137</td>\n<td style=\"width: 157px;\">$101.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$79.00 - $114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">727lbs @$163.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">866lbs @$147.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">1053lbs @$130.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">676lbs @$155.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">790lbs @$147.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 20, 2021 - Market Report','','inherit','closed','closed','','3512-revision-v1','','','2021-07-28 15:07:59','2021-07-28 15:07:59','',3512,'https://kingsvillelivestock.com/?p=3514',0,'revision','',0),(3515,2,'2021-07-28 15:08:03','2021-07-28 15:08:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>July 27th, 2021,</strong> 989 hd;Â  last week 1289 hd; a year ago 987 hd. Steers &amp; heifers sold steady-$3 higher. Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.50-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1050</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$136.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$161.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$150.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">1137</td>\n<td style=\"width: 157px;\">$101.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$79.00 - $114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">727lbs @$163.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">866lbs @$147.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">1053lbs @$130.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">676lbs @$155.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">790lbs @$147.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 27, 2021 - Market Report','','inherit','closed','closed','','3512-revision-v1','','','2021-07-28 15:08:03','2021-07-28 15:08:03','',3512,'https://kingsvillelivestock.com/?p=3515',0,'revision','',0),(3522,2,'2021-08-02 17:50:05','2021-08-02 17:50:05','','Tuesday,August 3rd Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayaugust-3rd-feeder-cattle-consignments','','','2021-08-02 17:50:05','2021-08-02 17:50:05','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/08/TuesdayAugust-3rd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3527,2,'2021-08-04 15:41:56','2021-08-04 15:41:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>August 3, 2021,</strong> 1731 hd;Â  last week 989 hd; a year ago 1676 hd. Feeder cattle sold steady with spots selling up to $5 higher. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$177.00-$197.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$198.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$153.25-$154.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$190.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$141.25-$155.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$120.00-$125.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$73.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$82.00 - $102.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">616lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">716lbs @$165.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">856lbs @$154.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">642lbs @$159.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 3, 2021 - Market Report','','publish','closed','open','','august-3-2021-market-report','','','2021-08-04 17:05:42','2021-08-04 17:05:42','',0,'https://kingsvillelivestock.com/?p=3527',0,'post','',0),(3529,2,'2021-08-04 15:41:56','2021-08-04 15:41:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>August 3, 2021,</strong> 989 hd;Â  last week 1289 hd; a year ago 987 hd. Feeder cattle sold steady with spots selling up to $5 higher. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$177.00-$197.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$198.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$153.25-$154.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$190.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$141.25-$155.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$120.00-$125.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$73.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$82.00 - $102.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">616lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">716lbs @$165.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">856lbs @$154.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">642lbs @$159.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 3, 2021 - Market Report','','inherit','closed','closed','','3527-revision-v1','','','2021-08-04 15:41:56','2021-08-04 15:41:56','',3527,'https://kingsvillelivestock.com/?p=3529',0,'revision','',0),(3530,2,'2021-08-04 15:41:56','2021-08-04 15:41:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>August 3, 2021,</strong> 989 hd;Â  last week 1289 hd; a year ago 987 hd. Feeder cattle sold steady with spots selling up to $5 higher. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$177.00-$197.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$198.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$153.25-$154.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$190.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$141.25-$155.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$120.00-$125.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$73.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$82.00 - $102.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">616lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">716lbs @$165.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">856lbs @$154.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">642lbs @$159.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 27, 2021 - Market Report','','inherit','closed','closed','','3527-revision-v1','','','2021-08-04 15:41:56','2021-08-04 15:41:56','',3527,'https://kingsvillelivestock.com/?p=3530',0,'revision','',0),(3531,2,'2021-08-04 15:42:00','2021-08-04 15:42:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>August 3, 2021,</strong> 989 hd;Â  last week 1289 hd; a year ago 987 hd. Feeder cattle sold steady with spots selling up to $5 higher. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$177.00-$197.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$198.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$153.25-$154.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$190.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$141.25-$155.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$120.00-$125.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$73.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$82.00 - $102.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">616lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">716lbs @$165.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">856lbs @$154.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">642lbs @$159.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 3, 2021 - Market Report','','inherit','closed','closed','','3527-revision-v1','','','2021-08-04 15:42:00','2021-08-04 15:42:00','',3527,'https://kingsvillelivestock.com/?p=3531',0,'revision','',0),(3532,2,'2021-08-04 17:04:54','2021-08-04 17:04:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\"][et_pb_fullwidth_header title=\"Market Reports\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-97.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Our Mission Section\" module_id=\"livestock\" _builder_version=\"4.2\" background_color=\"#f6f8f7\" custom_padding=\"60px||60px||false|\"][et_pb_row admin_label=\"Our Mission Area\" _builder_version=\"3.25\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" animation_direction=\"left\"]<h2>Below are the market reports from each auction. Â Click on the link to review the reports from that day.</h2>[/et_pb_text][et_pb_blog fullwidth=\"off\" include_categories=\"41\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" use_overlay=\"on\" overlay_icon_color=\"#829869\" hover_icon=\"%%49%%\" _builder_version=\"4.9.10\" header_font=\"|700|||||||\" header_text_color=\"#7b6847\" body_text_align=\"left\" read_more_font=\"|700|||||||\" read_more_text_color=\"#829869\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blog][et_pb_button button_url=\"https://drive.google.com/drive/folders/1rkVzmbRGDkMUoaGHw5yADpaIlPsiAm9H\" button_text=\"View 2019 Market Reports\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','MARKET REPORTS','','inherit','closed','closed','','1118-revision-v1','','','2021-08-04 17:04:54','2021-08-04 17:04:54','',1118,'https://kingsvillelivestock.com/?p=3532',0,'revision','',0),(3533,2,'2021-08-04 17:05:38','2021-08-04 17:05:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>August 3, 2021,</strong> 1731 hd;Â  last week 989 hd; a year ago 1676 hd. Feeder cattle sold steady with spots selling up to $5 higher. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$177.00-$197.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$198.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$153.25-$154.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$190.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$143.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$141.25-$155.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$120.00-$125.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$73.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$82.00 - $102.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" border_width_all=\"3px\" border_color_all=\"#ff0000\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">616lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">716lbs @$165.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">856lbs @$154.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">642lbs @$159.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 3, 2021 - Market Report','','inherit','closed','closed','','3527-revision-v1','','','2021-08-04 17:05:38','2021-08-04 17:05:38','',3527,'https://kingsvillelivestock.com/?p=3533',0,'revision','',0),(3538,2,'2021-08-09 18:00:48','2021-08-09 18:00:48','','Tuesday,August 10th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayaugust-10th-feeder-cattle-consignments','','','2021-08-09 18:00:48','2021-08-09 18:00:48','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/08/TuesdayAugust-10th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3540,2,'2021-08-10 00:31:39','2021-08-10 00:31:39','','August 21,2021 Cow Sale','','inherit','closed','closed','','august-212021-cow-sale-3','','','2021-08-10 00:31:39','2021-08-10 00:31:39','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/08/August-212021-Cow-Sale.pdf',0,'attachment','application/pdf',0),(3546,2,'2021-08-11 14:21:20','2021-08-11 14:21:20','','August 21,2021 Cow Sale','','inherit','closed','closed','','august-212021-cow-sale-4','','','2021-08-11 14:21:20','2021-08-11 14:21:20','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/08/August-212021-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(3550,2,'2021-08-11 15:53:38','2021-08-11 15:53:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>August 10, 2021,</strong> 1375 hd;Â  last week 1731 hd; a year ago 1217 hd. Feeder cattle sold steady-$3 higher &amp; load lots sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$174.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$192.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$160.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$141.85-$145.60</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$146.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$162.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NA</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$73.00 - $84.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$83.00 - $102.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">805lbs @$160.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">886lbs @$147.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">911lbs @$145.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">963lbs @$142.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">982lbs @$141.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">661lbs @$153.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 10, 2021 - Market Report','','publish','closed','open','','august-10-2021-market-report','','','2021-08-11 15:53:42','2021-08-11 15:53:42','',0,'https://kingsvillelivestock.com/?p=3550',0,'post','',0),(3552,2,'2021-08-11 15:53:38','2021-08-11 15:53:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>August 10, 2021,</strong> 1375 hd;Â  last week 1731 hd; a year ago 1217 hd. Feeder cattle sold steady-$3 higher &amp; load lots sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$174.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$192.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$160.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$141.85-$145.60</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$146.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$162.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NA</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$73.00 - $84.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$83.00 - $102.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">805lbs @$160.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">886lbs @$147.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">911lbs @$145.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">963lbs @$142.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">982lbs @$141.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">661lbs @$153.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 10, 2021 - Market Report','','inherit','closed','closed','','3550-revision-v1','','','2021-08-11 15:53:38','2021-08-11 15:53:38','',3550,'https://kingsvillelivestock.com/?p=3552',0,'revision','',0),(3553,2,'2021-08-11 15:53:38','2021-08-11 15:53:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>August 10, 2021,</strong> 1375 hd;Â  last week 1731 hd; a year ago 1217 hd. Feeder cattle sold steady-$3 higher &amp; load lots sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$174.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$192.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$160.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$141.85-$145.60</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$146.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$162.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NA</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$73.00 - $84.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$83.00 - $102.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">805lbs @$160.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">886lbs @$147.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">911lbs @$145.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">963lbs @$142.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">982lbs @$141.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">661lbs @$153.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 3, 2021 - Market Report','','inherit','closed','closed','','3550-revision-v1','','','2021-08-11 15:53:38','2021-08-11 15:53:38','',3550,'https://kingsvillelivestock.com/?p=3553',0,'revision','',0),(3554,2,'2021-08-11 15:53:42','2021-08-11 15:53:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\"][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>August 10, 2021,</strong> 1375 hd;Â  last week 1731 hd; a year ago 1217 hd. Feeder cattle sold steady-$3 higher &amp; load lots sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$174.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$192.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$160.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$141.85-$145.60</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$146.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$162.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.00-$153.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$149.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$122.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NA</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$73.00 - $84.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$83.00 - $102.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.10\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">805lbs @$160.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">886lbs @$147.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">911lbs @$145.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">963lbs @$142.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">982lbs @$141.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">661lbs @$153.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 10, 2021 - Market Report','','inherit','closed','closed','','3550-revision-v1','','','2021-08-11 15:53:42','2021-08-11 15:53:42','',3550,'https://kingsvillelivestock.com/?p=3554',0,'revision','',0),(3555,2,'2021-08-11 16:03:19','2021-08-11 16:03:19','','2021 Labor Day Sale Flyer','','inherit','closed','closed','','2021-labor-day-sale-flyer','','','2021-08-11 16:03:19','2021-08-11 16:03:19','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/08/2021-Labor-Day-Sale-Flyer.pdf',0,'attachment','application/pdf',0),(3557,2,'2021-08-11 18:06:39','2021-08-11 18:06:39','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" locked=\"off\"][et_pb_fullwidth_header title=\"Contact Us\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-117.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Contact Section\" _builder_version=\"4.2\" custom_padding=\"60px||60px||true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"60px||10px||false|false\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Contact Area\" _builder_version=\"4.2\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" hover_enabled=\"0\" custom_padding__hover=\"|||\" sticky_enabled=\"0\"][et_pb_text _builder_version=\"4.2\" header_font_size=\"36px\"]<h1>Contact Information</h1>[/et_pb_text][et_pb_blurb title=\"Address\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%249%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>P.O. Box 127<br /> Hwy 58 East<br /> Kingsville, MO 64061</span></p>[/et_pb_blurb][et_pb_blurb title=\"anstineauction@gmail.com\" url=\"mailto:anstineauctions@earthlink.net\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%238%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.9.10\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blurb][et_pb_blurb title=\"Office (816) 597-3331\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"][/et_pb_blurb][et_pb_blurb title=\"Fax (816) 597-3971\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%268%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"][/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" custom_padding=\"|||\" animation_style=\"fold\" animation_direction=\"left\" animation_intensity_fold=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\"]<h2>Get In Touch</h2>[/et_pb_text][et_pb_contact_form email=\"Anstineauction@gmail.com\" custom_message=\"Message From: %%First_Name%% %%Last_Name%%||et_pb_line_break_holder||||et_pb_line_break_holder||Email: %%Email%%||et_pb_line_break_holder||||et_pb_line_break_holder||Interested in: %%Interested_In%%||et_pb_line_break_holder||||et_pb_line_break_holder||Message: %%Message%%\" success_message=\"Success! Someone will get back to you shortly.\" submit_button_text=\"SEND\" module_id=\"et_pb_contact_form_0\" _builder_version=\"4.4.1\" title_font=\"||||||||\" form_field_font=\"||||||||\" form_field_font_size=\"16px\" custom_button=\"on\" button_text_color=\"#696353\" animation_style=\"fade\" button_text_color_tablet=\"\" button_text_color_phone=\"#696353\" button_text_color_last_edited=\"on|phone\" button_text_color_hover=\"#ffffff\" button_bg_color_hover=\"#02d002\" button_border_color_hover=\"#02d002\" button_border_radius_hover=\"0px\" button_letter_spacing_hover=\"0\"][et_pb_contact_field field_id=\"First_Name\" field_title=\"First Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Last_Name\" field_title=\"Last Name\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.4.1\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Interested_In\" field_title=\"I am Interested In\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Message\" field_title=\"Message\" field_type=\"text\" fullwidth_field=\"on\" _builder_version=\"3.16\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\"][et_pb_text _builder_version=\"4.2\" header_font_size=\"36px\"]<h1>Owners and Operators</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.2\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_blurb title=\"Rick\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>(816) 258-3421</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_blurb title=\"Jeremy\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>(816) 716-9288</span></p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.2\"][et_pb_blurb title=\"Jared\" url=\"tel:8165973331\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%264%%\" icon_color=\"#696353\" icon_placement=\"left\" use_icon_font_size=\"on\" icon_font_size=\"20px\" _builder_version=\"4.2\"]<p><span>(816) 878-5229</span></p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Map Section\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" use_background_color_gradient=\"on\" background_color_gradient_start=\"#ffffff\" background_color_gradient_end=\"#f7f7f7\" custom_padding=\"60px||60px||true|false\" custom_padding_tablet=\"\" custom_padding_phone=\"10px||60px||false|false\"][et_pb_row _builder_version=\"3.25\" max_width=\"1440px\" custom_padding=\"|||\" use_custom_width=\"on\" custom_width_px=\"1440px\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" saved_tabs=\"all\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_row][/et_pb_section]','CONTACT','','inherit','closed','closed','','723-revision-v1','','','2021-08-11 18:06:39','2021-08-11 18:06:39','',723,'https://kingsvillelivestock.com/?p=3557',0,'revision','',0),(3562,2,'2021-08-16 15:21:09','2021-08-16 15:21:09','','August 21,2021 Cow Sale','','inherit','closed','closed','','august-212021-cow-sale-5','','','2021-08-16 15:21:09','2021-08-16 15:21:09','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/08/August-212021-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(3567,2,'2021-08-16 17:35:38','2021-08-16 17:35:38','','Tuesday,August 17th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayaugust-17th-feeder-cattle-consignments','','','2021-08-16 17:35:38','2021-08-16 17:35:38','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/08/TuesdayAugust-17th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3572,2,'2021-08-18 15:19:58','2021-08-18 15:19:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 17, 2021,</strong> 1848 hd;Â  last week 1375 hd; a year ago 1404 hd. Feeder cattle sold steady-$3. Slaughter cows &amp; bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$168.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$124.00-$141.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$162.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$101.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$82.00 - $107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">688lbs @$165.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">714lbs @$163.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$166.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">889lbs @$149.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">636lbs @$158.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">687lbs @$150.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 17, 2021 - Market Report','','publish','closed','open','','august-17-2021-market-report','','','2021-08-18 15:20:02','2021-08-18 15:20:02','',0,'https://kingsvillelivestock.com/?p=3572',0,'post','',0),(3574,2,'2021-08-18 15:19:58','2021-08-18 15:19:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 17, 2021,</strong> 1848 hd;Â  last week 1375 hd; a year ago 1404 hd. Feeder cattle sold steady-$3. Slaughter cows &amp; bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$168.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$124.00-$141.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$162.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$101.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$82.00 - $107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">688lbs @$165.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">714lbs @$163.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$166.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">889lbs @$149.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">636lbs @$158.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">687lbs @$150.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 17, 2021 - Market Report','','inherit','closed','closed','','3572-revision-v1','','','2021-08-18 15:19:58','2021-08-18 15:19:58','',3572,'https://kingsvillelivestock.com/?p=3574',0,'revision','',0),(3575,2,'2021-08-18 15:19:58','2021-08-18 15:19:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 17, 2021,</strong> 1848 hd;Â  last week 1375 hd; a year ago 1404 hd. Feeder cattle sold steady-$3. Slaughter cows &amp; bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$168.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$124.00-$141.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$162.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$101.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$82.00 - $107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">688lbs @$165.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">714lbs @$163.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$166.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">889lbs @$149.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">636lbs @$158.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">687lbs @$150.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 10, 2021 - Market Report','','inherit','closed','closed','','3572-revision-v1','','','2021-08-18 15:19:58','2021-08-18 15:19:58','',3572,'https://kingsvillelivestock.com/?p=3575',0,'revision','',0),(3576,2,'2021-08-18 15:20:02','2021-08-18 15:20:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 17, 2021,</strong> 1848 hd;Â  last week 1375 hd; a year ago 1404 hd. Feeder cattle sold steady-$3. Slaughter cows &amp; bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$175.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$168.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$124.00-$141.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$148.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$162.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$134.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$101.00-$110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$82.00 - $107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.9.11\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">688lbs @$165.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">714lbs @$163.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$166.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">889lbs @$149.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">636lbs @$158.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">687lbs @$150.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.9.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 17, 2021 - Market Report','','inherit','closed','closed','','3572-revision-v1','','','2021-08-18 15:20:02','2021-08-18 15:20:02','',3572,'https://kingsvillelivestock.com/?p=3576',0,'revision','',0),(3582,2,'2021-08-23 16:01:21','2021-08-23 16:01:21','','Tuesday,August 24th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayaugust-24th-feeder-cattle-consignments','','','2021-08-23 16:01:21','2021-08-23 16:01:21','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/08/TuesdayAugust-24th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3586,2,'2021-08-25 16:51:34','2021-08-25 16:51:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 24, 2021,</strong> 909 hd;Â  last week 1848 hd; a year ago 1497 hd. Feeder cattle sold $4-$8 higher compared to last week as the feeder board has had some nice gains. Slaughter cows &amp; bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$195.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$164.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$162.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NAÂ </td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$72.00 - $82.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $104.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">839lbs @$164.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">944lbs @$146.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">723lbs @$163.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 24, 2021 - Market Report','','publish','closed','open','','august-24-2021-market-report','','','2021-08-25 16:51:37','2021-08-25 16:51:37','',0,'https://kingsvillelivestock.com/?p=3586',0,'post','',0),(3587,2,'2021-08-25 16:51:34','2021-08-25 16:51:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 24, 2021,</strong> 909 hd;Â  last week 1848 hd; a year ago 1497 hd. Feeder cattle sold $4-$8 higher compared to last week as the feeder board has had some nice gains. Slaughter cows &amp; bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$195.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$164.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$162.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NAÂ </td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$72.00 - $82.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $104.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">839lbs @$164.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">944lbs @$146.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">723lbs @$163.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 24, 2021 - Market Report','','inherit','closed','closed','','3586-revision-v1','','','2021-08-25 16:51:34','2021-08-25 16:51:34','',3586,'https://kingsvillelivestock.com/?p=3587',0,'revision','',0),(3588,2,'2021-08-25 16:51:34','2021-08-25 16:51:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 24, 2021,</strong> 909 hd;Â  last week 1848 hd; a year ago 1497 hd. Feeder cattle sold $4-$8 higher compared to last week as the feeder board has had some nice gains. Slaughter cows &amp; bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$195.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$164.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$162.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NAÂ </td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$72.00 - $82.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $104.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">839lbs @$164.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">944lbs @$146.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">723lbs @$163.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 17, 2021 - Market Report','','inherit','closed','closed','','3586-revision-v1','','','2021-08-25 16:51:34','2021-08-25 16:51:34','',3586,'https://kingsvillelivestock.com/?p=3588',0,'revision','',0),(3589,2,'2021-08-25 16:51:37','2021-08-25 16:51:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 24, 2021,</strong> 909 hd;Â  last week 1848 hd; a year ago 1497 hd. Feeder cattle sold $4-$8 higher compared to last week as the feeder board has had some nice gains. Slaughter cows &amp; bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$195.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$164.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.00-$162.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$130.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">NAÂ </td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$72.00 - $82.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $104.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">839lbs @$164.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">944lbs @$146.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">723lbs @$163.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 24, 2021 - Market Report','','inherit','closed','closed','','3586-revision-v1','','','2021-08-25 16:51:37','2021-08-25 16:51:37','',3586,'https://kingsvillelivestock.com/?p=3589',0,'revision','',0),(3590,2,'2021-08-25 18:01:45','2021-08-25 18:01:45','','2021 Labor Day Sale Flyer','','inherit','closed','closed','','2021-labor-day-sale-flyer-2','','','2021-08-25 18:01:45','2021-08-25 18:01:45','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/08/2021-Labor-Day-Sale-Flyer-1.pdf',0,'attachment','application/pdf',0),(3591,2,'2021-08-25 18:02:10','2021-08-25 18:02:10','','Labor Day 2021 Detailed Consignment List','','inherit','closed','closed','','labor-day-2021-detailed-consignment-list','','','2021-08-25 18:02:10','2021-08-25 18:02:10','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/08/Labor-Day-2021-Detailed-Consignment-List.pdf',0,'attachment','application/pdf',0),(3595,2,'2021-08-30 17:20:54','2021-08-30 17:20:54','','Tuesday, August 31st Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-august-31st-feeder-cattle-consignments','','','2021-08-30 17:20:54','2021-08-30 17:20:54','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/08/Tuesday-August-31st-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3597,2,'2021-08-30 22:03:43','2021-08-30 22:03:43','','September 25,2021 Cow Sale','','inherit','closed','closed','','september-252021-cow-sale','','','2021-08-30 22:03:43','2021-08-30 22:03:43','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/08/September-252021-Cow-Sale.pdf',0,'attachment','application/pdf',0),(3604,2,'2021-09-01 16:03:10','2021-09-01 16:03:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 31, 2021,</strong> 1302 hd;Â  last week 909 hd; a year ago 1342 hd.Steers sold steady &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$158.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$149.50-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$151.50-$168.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$154.25-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$127.00-$135.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.50-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.50-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.50-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$140.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$108.00-$115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$72.00 - $84.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$163.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">774lbs @$166.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">839lbs @$156.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">657lbs @$160.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 31, 2021 - Market Report','','publish','closed','open','','august-31-2021-market-report','','','2021-09-01 16:03:13','2021-09-01 16:03:13','',0,'https://kingsvillelivestock.com/?p=3604',0,'post','',0),(3606,2,'2021-09-01 16:03:10','2021-09-01 16:03:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 31, 2021,</strong> 1302 hd;Â  last week 909 hd; a year ago 1342 hd.Steers sold steady &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$158.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$149.50-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$151.50-$168.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$154.25-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$127.00-$135.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.50-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.50-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.50-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$140.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$108.00-$115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$72.00 - $84.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$163.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">774lbs @$166.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">839lbs @$156.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">657lbs @$160.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 31, 2021 - Market Report','','inherit','closed','closed','','3604-revision-v1','','','2021-09-01 16:03:10','2021-09-01 16:03:10','',3604,'https://kingsvillelivestock.com/?p=3606',0,'revision','',0),(3607,2,'2021-09-01 16:03:10','2021-09-01 16:03:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 31, 2021,</strong> 1302 hd;Â  last week 909 hd; a year ago 1342 hd.Steers sold steady &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$158.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$149.50-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$151.50-$168.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$154.25-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$127.00-$135.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.50-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.50-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.50-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$140.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$108.00-$115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$72.00 - $84.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$163.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">774lbs @$166.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">839lbs @$156.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">657lbs @$160.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 24, 2021 - Market Report','','inherit','closed','closed','','3604-revision-v1','','','2021-09-01 16:03:10','2021-09-01 16:03:10','',3604,'https://kingsvillelivestock.com/?p=3607',0,'revision','',0),(3608,2,'2021-09-01 16:03:13','2021-09-01 16:03:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 31, 2021,</strong> 1302 hd;Â  last week 909 hd; a year ago 1342 hd.Steers sold steady &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$158.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$149.50-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$151.50-$168.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$154.25-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$127.00-$135.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$160.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$139.50-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$138.50-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.50-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$140.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$108.00-$115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$72.00 - $84.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $107.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$163.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">774lbs @$166.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">839lbs @$156.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">657lbs @$160.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 31, 2021 - Market Report','','inherit','closed','closed','','3604-revision-v1','','','2021-09-01 16:03:13','2021-09-01 16:03:13','',3604,'https://kingsvillelivestock.com/?p=3608',0,'revision','',0),(3609,2,'2021-09-01 16:04:22','2021-09-01 16:04:22','','September 11, 2021 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','september-11-2021-horse-tack-small-animal-sale','','','2021-09-01 16:04:22','2021-09-01 16:04:22','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/09/September-11-2021-Horse-Tack-Small-Animal-Sale.pdf',0,'attachment','application/pdf',0),(3613,2,'2021-09-01 16:57:04','2021-09-01 16:57:04','','September 25,2021 Cow Sale','','inherit','closed','closed','','september-252021-cow-sale-2','','','2021-09-01 16:57:04','2021-09-01 16:57:04','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/09/September-252021-Cow-Sale.pdf',0,'attachment','application/pdf',0),(3616,2,'2021-09-01 16:59:20','2021-09-01 16:59:20','','Labor Day 2021 Detailed Consignment List','','inherit','closed','closed','','labor-day-2021-detailed-consignment-list-2','','','2021-09-01 16:59:20','2021-09-01 16:59:20','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/09/Labor-Day-2021-Detailed-Consignment-List.pdf',0,'attachment','application/pdf',0),(3618,2,'2021-09-01 18:42:09','2021-09-01 18:42:09','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Call to Action\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Trailers For Sale\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-30.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Event Section\" _builder_version=\"4.2\" custom_padding=\"60px||60px||true|false\" animation_style=\"zoom\" animation_intensity_zoom=\"6%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.4\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>We carry a wide variety of trailers to meet all of your needs.</p>\n<p><strong><a href=\"https://kingsvillelivestock.com/contact/\">Contact us</a></strong> for a FREE QUOTE today.</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><img class=\"wp-image-2101 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG-1006-scaled-e1595879726664-300x225.jpg\" alt=\"\" width=\"147\" height=\"110\" />Â  Â  2020 Eby 7\'1\" X 24\' Punch Panel Maverick Livestock Trailer. 14 ply tires, 7k axels, Alum. wheels, &amp; 2 cross gates $24,500.00 - <strong>Not in Stock, Call Now to Order!Â </strong></p>\n<p>&nbsp;</p>\n<p><img class=\"wp-image-2116 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1008-1-208x300.jpg\" alt=\"\" width=\"102\" height=\"147\" />Â  EZ Haul 32\' Bumper Pull Hay Trailer. 6 Bale,Â  - <strong>Not in stock, call now to order!Â </strong></p>\n<p><img class=\"wp-image-2117 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" alt=\"\" width=\"101\" height=\"135\" />Â  EZ Haul 32\' Gooseneck Hay Trailer. 6 Bale, $5,750.00 -<strong> Only 1 left in stock! New trailers will be 500.00 higher after this one goes!Â </strong></p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"97\" height=\"130\" />EZ Haul 36\' Gooseneck Hay Trailer. 7 Bale, $6,350.00Â </p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"100\" height=\"134\" />EZ Haul 42\' Gooseneck Hay Trailer. 8 Bale, $6,350.00 -<strong> Two left at this price!Â </strong></p>\n<p><img class=\"wp-image-2146 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Ez-Haul-Flat-Bed-2-300x225.jpg\" alt=\"\" width=\"139\" height=\"104\" />Â  Â 27\' EZ Haul Flat Bed. 22+5 Dove, 3 ramps, low profile, 10k axels, 14 ply tires. $10,885.00</p>\n<p><img class=\"wp-image-2147 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/ez-haul-flat-bed-3-300x225.jpg\" alt=\"\" width=\"144\" height=\"108\" /> EZ Haul 20\' Flat Bed Bumper Pull. 18+2 Dove, 2 4\' ramps, 7k axels, 10 ply tires. <strong>Out of Stock, call for price!Â </strong></p>\n<p>&nbsp;</p>\n<p><img class=\"wp-image-2153 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Wheel-Corral-300x185.png\" alt=\"\" width=\"172\" height=\"106\" /> Diamond \"W\" Wheel Corral $15,800.00 -<strong> 1 left in stock!Â </strong></p>\n<h2><span style=\"color: #ff00ff;\">For additional questions about the trailers or wheel corral call the office @ 816-597-3331 or Derrick @ 816-726-3456</span></h2>\n<p><span style=\"color: #ff00ff;\">Updated on September 1st</span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','TRAILERS FOR SALE','','inherit','closed','closed','','714-revision-v1','','','2021-09-01 18:42:09','2021-09-01 18:42:09','',714,'https://kingsvillelivestock.com/?p=3618',0,'revision','',0),(3619,2,'2021-09-03 19:35:54','2021-09-03 19:35:54','','Labor Day 2021 Detailed Consignment List','','inherit','closed','closed','','labor-day-2021-detailed-consignment-list-3','','','2021-09-03 19:35:54','2021-09-03 19:35:54','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/09/Labor-Day-2021-Detailed-Consignment-List-1.pdf',0,'attachment','application/pdf',0),(3624,2,'2021-09-06 16:11:56','2021-09-06 16:11:56','','Tuesday,September 7th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayseptember-7th-feeder-cattle-consignments','','','2021-09-06 16:11:56','2021-09-06 16:11:56','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/09/TuesdaySeptember-7th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3633,2,'2021-09-13 16:47:13','2021-09-13 16:47:13','','September 25,2021 Cow Sale','','inherit','closed','closed','','september-252021-cow-sale-3','','','2021-09-13 16:47:13','2021-09-13 16:47:13','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/09/September-252021-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(3635,2,'2021-09-13 16:48:02','2021-09-13 16:48:02','','September 25,2021 Cow Sale','','inherit','closed','closed','','september-252021-cow-sale-4','','','2021-09-13 16:48:02','2021-09-13 16:48:02','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/09/September-252021-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(3638,2,'2021-09-13 17:43:48','2021-09-13 17:43:48','','Tuesday,September 14th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayseptember-14th-feeder-cattle-consignments','','','2021-09-13 17:43:48','2021-09-13 17:43:48','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/09/TuesdaySeptember-14th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3643,2,'2021-09-15 14:38:25','2021-09-15 14:38:25','','September 25,2021 Cow Sale','','inherit','closed','closed','','september-252021-cow-sale-5','','','2021-09-15 14:38:25','2021-09-15 14:38:25','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/09/September-252021-Cow-Sale-3.pdf',0,'attachment','application/pdf',0),(3645,2,'2021-09-15 14:40:03','2021-09-15 14:40:03','','September 25,2021 Cow Sale','','inherit','closed','closed','','september-252021-cow-sale-6','','','2021-09-15 14:40:03','2021-09-15 14:40:03','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/09/September-252021-Cow-Sale-4.pdf',0,'attachment','application/pdf',0),(3648,2,'2021-09-15 16:02:46','2021-09-15 16:02:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 14, 2021,</strong> 2533 hd;Â  last week 701 hd; a year ago 2789 hd. Feeders sold on a steady market w/ several yearlings on hand off grass &amp; a very active market. New crop calves sold steady-$2 lower. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.050</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$171.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$169.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$124.00-$152.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$152.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$136.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$141.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$108.00-$131.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $82.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">707lbs @$167.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">878lbs @$152.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">902lbs @$152.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">688lbs @$150.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">700lbs @$150.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">744lbs @$148.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">830lbs @$141.35</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 14, 2021 - Market Report','','publish','closed','open','','september-14-2021-market-report','','','2021-09-15 16:02:50','2021-09-15 16:02:50','',0,'https://kingsvillelivestock.com/?p=3648',0,'post','',0),(3650,2,'2021-09-15 16:02:46','2021-09-15 16:02:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 14, 2021,</strong> 2533 hd;Â  last week 701 hd; a year ago 2789 hd. Feeders sold on a steady market w/ several yearlings on hand off grass &amp; a very active market. New crop calves sold steady-$2 lower. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.050</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$171.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$169.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$124.00-$152.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$152.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$136.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$141.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$108.00-$131.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $82.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">707lbs @$167.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">878lbs @$152.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">902lbs @$152.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">688lbs @$150.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">700lbs @$150.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">744lbs @$148.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">830lbs @$141.35</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 14, 2021 - Market Report','','inherit','closed','closed','','3648-revision-v1','','','2021-09-15 16:02:46','2021-09-15 16:02:46','',3648,'https://kingsvillelivestock.com/?p=3650',0,'revision','',0),(3651,2,'2021-09-15 16:02:46','2021-09-15 16:02:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 14, 2021,</strong> 2533 hd;Â  last week 701 hd; a year ago 2789 hd. Feeders sold on a steady market w/ several yearlings on hand off grass &amp; a very active market. New crop calves sold steady-$2 lower. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.050</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$171.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$169.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$124.00-$152.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$152.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$136.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$141.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$108.00-$131.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $82.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">707lbs @$167.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">878lbs @$152.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">902lbs @$152.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">688lbs @$150.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">700lbs @$150.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">744lbs @$148.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">830lbs @$141.35</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 31, 2021 - Market Report','','inherit','closed','closed','','3648-revision-v1','','','2021-09-15 16:02:46','2021-09-15 16:02:46','',3648,'https://kingsvillelivestock.com/?p=3651',0,'revision','',0),(3652,2,'2021-09-15 16:02:50','2021-09-15 16:02:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 14, 2021,</strong> 2533 hd;Â  last week 701 hd; a year ago 2789 hd. Feeders sold on a steady market w/ several yearlings on hand off grass &amp; a very active market. New crop calves sold steady-$2 lower. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.050</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$171.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$169.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$124.00-$152.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$152.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$136.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$141.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$108.00-$131.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $82.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">707lbs @$167.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">878lbs @$152.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">902lbs @$152.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">688lbs @$150.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">700lbs @$150.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">744lbs @$148.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">830lbs @$141.35</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 14, 2021 - Market Report','','inherit','closed','closed','','3648-revision-v1','','','2021-09-15 16:02:50','2021-09-15 16:02:50','',3648,'https://kingsvillelivestock.com/?p=3652',0,'revision','',0),(3655,2,'2021-09-15 16:10:42','2021-09-15 16:10:42','{{unknown}}','','','publish','closed','closed','','e627f7b349e74f7e6b7eae88ccc7d1ac','','','2021-09-15 16:10:42','2021-09-15 16:10:42','',0,'https://kingsvillelivestock.com/2021/09/15/e627f7b349e74f7e6b7eae88ccc7d1ac/',0,'oembed_cache','',0),(3657,2,'2021-09-20 15:46:21','2021-09-20 15:46:21','','September 25,2021 Cow Sale','','inherit','closed','closed','','september-252021-cow-sale-7','','','2021-09-20 15:46:21','2021-09-20 15:46:21','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/09/September-252021-Cow-Sale-5.pdf',0,'attachment','application/pdf',0),(3661,2,'2021-09-20 17:51:23','2021-09-20 17:51:23','','Tuesday,September 21st Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayseptember-21st-feeder-cattle-consignments','','','2021-09-20 17:51:23','2021-09-20 17:51:23','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/09/TuesdaySeptember-21st-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3663,2,'2021-09-20 17:56:34','2021-09-20 17:56:34','','Ragland Public Auction October 8th','','inherit','closed','closed','','ragland-public-auction-october-8th','','','2021-09-20 17:56:34','2021-09-20 17:56:34','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/09/Ragland-Public-Auction-October-8th.pdf',0,'attachment','application/pdf',0),(3671,2,'2021-09-22 16:04:40','2021-09-22 16:04:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 21, 2021,</strong> 1567 hd;Â  last week 2533 hd; a year ago 1384 hd New crop calves sold steady. 600-850lbs yearling steers &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$138.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$147.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$159.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$141.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$103.00-$117.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$72.00 - $87.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$81.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">709lbs @$164.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">738lbs @$160.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">818lbs @$160.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">628lbs @$163.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">650lbs @$159.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">657lbs @$159.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">713lbs @$159.10</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 21, 2021 - Market Report','','publish','closed','open','','september-21-2021-market-report','','','2021-09-22 16:04:44','2021-09-22 16:04:44','',0,'https://kingsvillelivestock.com/?p=3671',0,'post','',0),(3673,2,'2021-09-22 16:04:40','2021-09-22 16:04:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 21, 2021,</strong> 1567 hd;Â  last week 2533 hd; a year ago 1384 hd New crop calves sold steady. 600-850lbs yearling steers &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$138.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$147.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$159.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$141.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$103.00-$117.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$72.00 - $87.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$81.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">709lbs @$164.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">738lbs @$160.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">818lbs @$160.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">628lbs @$163.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">650lbs @$159.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">657lbs @$159.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">713lbs @$159.10</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 21, 2021 - Market Report','','inherit','closed','closed','','3671-revision-v1','','','2021-09-22 16:04:40','2021-09-22 16:04:40','',3671,'https://kingsvillelivestock.com/?p=3673',0,'revision','',0),(3674,2,'2021-09-22 16:04:40','2021-09-22 16:04:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 21, 2021,</strong> 1567 hd;Â  last week 2533 hd; a year ago 1384 hd New crop calves sold steady. 600-850lbs yearling steers &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$138.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$147.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$159.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$141.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$103.00-$117.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$72.00 - $87.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$81.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">709lbs @$164.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">738lbs @$160.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">818lbs @$160.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">628lbs @$163.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">650lbs @$159.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">657lbs @$159.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">713lbs @$159.10</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 14, 2021 - Market Report','','inherit','closed','closed','','3671-revision-v1','','','2021-09-22 16:04:40','2021-09-22 16:04:40','',3671,'https://kingsvillelivestock.com/?p=3674',0,'revision','',0),(3675,2,'2021-09-22 16:04:44','2021-09-22 16:04:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 21, 2021,</strong> 1567 hd;Â  last week 2533 hd; a year ago 1384 hd New crop calves sold steady. 600-850lbs yearling steers &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$138.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$147.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$163.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$159.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$141.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$103.00-$117.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yield</td>\n<td style=\"width: 156.5px;\">$72.00 - $87.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$81.00 - $104.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">709lbs @$164.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">738lbs @$160.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">818lbs @$160.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">628lbs @$163.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">650lbs @$159.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">657lbs @$159.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">713lbs @$159.10</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 21, 2021 - Market Report','','inherit','closed','closed','','3671-revision-v1','','','2021-09-22 16:04:44','2021-09-22 16:04:44','',3671,'https://kingsvillelivestock.com/?p=3675',0,'revision','',0),(3676,2,'2021-09-22 16:20:44','2021-09-22 16:20:44','','Colson Real Estate, October 23rd','','inherit','closed','closed','','colson-real-estate-october-23rd','','','2021-09-22 16:20:44','2021-09-22 16:20:44','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/09/Colson-Real-Estate-October-23rd.pdf',0,'attachment','application/pdf',0),(3684,2,'2021-09-27 17:46:14','2021-09-27 17:46:14','','Tuesday,September 28th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayseptember-28th-feeder-cattle-consignments','','','2021-09-27 17:46:14','2021-09-27 17:46:14','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/09/TuesdaySeptember-28th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3690,2,'2021-09-29 15:13:41','2021-09-29 15:13:41','','Colson Auction October 23rd','','inherit','closed','closed','','colson-auction-october-23rd','','','2021-09-29 15:13:41','2021-09-29 15:13:41','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/09/Colson-Auction-October-23rd.pdf',0,'attachment','application/pdf',0),(3693,2,'2021-09-29 16:27:46','2021-09-29 16:27:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 28, 2021,</strong> 1912 hd;Â  last week 1567 hd; a year ago 2072 hd New crop calves sold $2-$4 lower. Weaned yearlings sold steady-$3 higher. Fat cows sold steady &amp; all other cows &amp; bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$168.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$155.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$127.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$164.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$143.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$124.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$104.00-$118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat</td>\n<td style=\"width: 156.5px;\">$70.00 - $80.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $107.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">653lbs @$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">671lbs @$175.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">738lbs @$158.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">773lbs @$168.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">857lbs @$154.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">864lbs @$154.60</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">689lbs @$149.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 28, 2021 - Market Report','','publish','closed','open','','september-28-2021-market-report','','','2021-09-29 16:27:50','2021-09-29 16:27:50','',0,'https://kingsvillelivestock.com/?p=3693',0,'post','',0),(3695,2,'2021-09-29 16:27:46','2021-09-29 16:27:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 28, 2021,</strong> 1912 hd;Â  last week 1567 hd; a year ago 2072 hd New crop calves sold $2-$4 lower. Weaned yearlings sold steady-$3 higher. Fat cows sold steady &amp; all other cows &amp; bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$168.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$155.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$127.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$164.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$143.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$124.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$104.00-$118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat</td>\n<td style=\"width: 156.5px;\">$70.00 - $80.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $107.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">653lbs @$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">671lbs @$175.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">738lbs @$158.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">773lbs @$168.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">857lbs @$154.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">864lbs @$154.60</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">689lbs @$149.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 28, 2021 - Market Report','','inherit','closed','closed','','3693-revision-v1','','','2021-09-29 16:27:46','2021-09-29 16:27:46','',3693,'https://kingsvillelivestock.com/?p=3695',0,'revision','',0),(3696,2,'2021-09-29 16:27:46','2021-09-29 16:27:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 28, 2021,</strong> 1912 hd;Â  last week 1567 hd; a year ago 2072 hd New crop calves sold $2-$4 lower. Weaned yearlings sold steady-$3 higher. Fat cows sold steady &amp; all other cows &amp; bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$168.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$155.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$127.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$164.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$143.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$124.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$104.00-$118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat</td>\n<td style=\"width: 156.5px;\">$70.00 - $80.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $107.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">653lbs @$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">671lbs @$175.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">738lbs @$158.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">773lbs @$168.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">857lbs @$154.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">864lbs @$154.60</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">689lbs @$149.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 21, 2021 - Market Report','','inherit','closed','closed','','3693-revision-v1','','','2021-09-29 16:27:46','2021-09-29 16:27:46','',3693,'https://kingsvillelivestock.com/?p=3696',0,'revision','',0),(3697,2,'2021-09-29 16:27:50','2021-09-29 16:27:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 28, 2021,</strong> 1912 hd;Â  last week 1567 hd; a year ago 2072 hd New crop calves sold $2-$4 lower. Weaned yearlings sold steady-$3 higher. Fat cows sold steady &amp; all other cows &amp; bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$168.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$155.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$127.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$164.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$143.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$114.00-$124.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$104.00-$118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat</td>\n<td style=\"width: 156.5px;\">$70.00 - $80.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $72.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$44.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $107.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">653lbs @$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">671lbs @$175.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">738lbs @$158.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">773lbs @$168.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">857lbs @$154.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">864lbs @$154.60</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">689lbs @$149.50</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 28, 2021 - Market Report','','inherit','closed','closed','','3693-revision-v1','','','2021-09-29 16:27:50','2021-09-29 16:27:50','',3693,'https://kingsvillelivestock.com/?p=3697',0,'revision','',0),(3699,2,'2021-09-29 16:57:08','2021-09-29 16:57:08','','October 9, 2021 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','october-9-2021-horse-tack-small-animal-sale','','','2021-09-29 16:57:08','2021-09-29 16:57:08','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/09/October-9-2021-Horse-Tack-Small-Animal-Sale.pdf',0,'attachment','application/pdf',0),(3704,2,'2021-09-29 18:08:02','2021-09-29 18:08:02','','October 15,2021 Cow Sale','','inherit','closed','closed','','october-152021-cow-sale','','','2021-09-29 18:08:02','2021-09-29 18:08:02','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/09/October-152021-Cow-Sale.pdf',0,'attachment','application/pdf',0),(3707,2,'2021-09-29 18:13:13','2021-09-29 18:13:13','','Ragland Public Auction October 8th','','inherit','closed','closed','','ragland-public-auction-october-8th-2','','','2021-09-29 18:13:13','2021-09-29 18:13:13','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/09/Ragland-Public-Auction-October-8th-1.pdf',0,'attachment','application/pdf',0),(3715,2,'2021-10-04 17:19:17','2021-10-04 17:19:17','','October 15,2021 Cow Sale','','inherit','closed','closed','','october-152021-cow-sale-2','','','2021-10-04 17:19:17','2021-10-04 17:19:17','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/10/October-152021-Cow-Sale.pdf',0,'attachment','application/pdf',0),(3718,2,'2021-10-04 17:24:46','2021-10-04 17:24:46','','Tuesday,October 5th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayoctober-5th-feeder-cattle-consignments','','','2021-10-04 17:24:46','2021-10-04 17:24:46','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/10/TuesdayOctober-5th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3723,2,'2021-10-06 15:13:52','2021-10-06 15:13:52','','October 15,2021 Cow Sale','','inherit','closed','closed','','october-152021-cow-sale-3','','','2021-10-06 15:13:52','2021-10-06 15:13:52','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/10/October-152021-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(3727,2,'2021-10-06 17:20:28','2021-10-06 17:20:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 5, 2021,</strong> 2130 hd;Â  last week 1912 hd; a year ago 1472 hd Feeder cattle weighing 650lbs &amp; up sold steady. New crop calves w/ shots &amp; cut sold $2-$3 higher. new crop calves that are bulls &amp; no shots sold $5-$7 lower as temperatures start to change. Slaughter cows &amp; bulls sold $2-$4 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$143.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$168.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$133.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$143.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$147.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$135.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$131.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat 1450lbs &amp; up</td>\n<td style=\"width: 156.5px;\">$71.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">474lbs @$187.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">543lbs @$178.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">601lbs @$165.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">669lbs @$165.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">719lbs @$165.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">771lbs @$158.10</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">685lbs @$150.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">688lbs @$150.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 5, 2021 - Market Report','','publish','closed','open','','october-5-2021-market-report','','','2021-10-06 17:20:32','2021-10-06 17:20:32','',0,'https://kingsvillelivestock.com/?p=3727',0,'post','',0),(3729,2,'2021-10-06 17:20:28','2021-10-06 17:20:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 5, 2021,</strong> 2130 hd;Â  last week 1912 hd; a year ago 1472 hd Feeder cattle weighing 650lbs &amp; up sold steady. New crop calves w/ shots &amp; cut sold $2-$3 higher. new crop calves that are bulls &amp; no shots sold $5-$7 lower as temperatures start to change. Slaughter cows &amp; bulls sold $2-$4 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$143.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$168.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$133.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$143.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$147.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$135.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$131.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat 1450lbs &amp; up</td>\n<td style=\"width: 156.5px;\">$71.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">474lbs @$187.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">543lbs @$178.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">601lbs @$165.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">669lbs @$165.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">719lbs @$165.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">771lbs @$158.10</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">685lbs @$150.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">688lbs @$150.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 5, 2021 - Market Report','','inherit','closed','closed','','3727-revision-v1','','','2021-10-06 17:20:28','2021-10-06 17:20:28','',3727,'https://kingsvillelivestock.com/?p=3729',0,'revision','',0),(3730,2,'2021-10-06 17:20:28','2021-10-06 17:20:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 5, 2021,</strong> 2130 hd;Â  last week 1912 hd; a year ago 1472 hd Feeder cattle weighing 650lbs &amp; up sold steady. New crop calves w/ shots &amp; cut sold $2-$3 higher. new crop calves that are bulls &amp; no shots sold $5-$7 lower as temperatures start to change. Slaughter cows &amp; bulls sold $2-$4 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$143.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$168.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$133.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$143.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$147.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$135.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$131.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat 1450lbs &amp; up</td>\n<td style=\"width: 156.5px;\">$71.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">474lbs @$187.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">543lbs @$178.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">601lbs @$165.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">669lbs @$165.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">719lbs @$165.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">771lbs @$158.10</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">685lbs @$150.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">688lbs @$150.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 28, 2021 - Market Report','','inherit','closed','closed','','3727-revision-v1','','','2021-10-06 17:20:28','2021-10-06 17:20:28','',3727,'https://kingsvillelivestock.com/?p=3730',0,'revision','',0),(3731,2,'2021-10-06 17:20:32','2021-10-06 17:20:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 5, 2021,</strong> 2130 hd;Â  last week 1912 hd; a year ago 1472 hd Feeder cattle weighing 650lbs &amp; up sold steady. New crop calves w/ shots &amp; cut sold $2-$3 higher. new crop calves that are bulls &amp; no shots sold $5-$7 lower as temperatures start to change. Slaughter cows &amp; bulls sold $2-$4 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$143.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$168.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$133.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$143.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$147.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$156.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$124.00-$140.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$122.00-$135.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$131.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">Fat 1450lbs &amp; up</td>\n<td style=\"width: 156.5px;\">$71.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$57.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">474lbs @$187.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">543lbs @$178.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">601lbs @$165.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">669lbs @$165.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">719lbs @$165.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">771lbs @$158.10</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">685lbs @$150.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">688lbs @$150.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 5, 2021 - Market Report','','inherit','closed','closed','','3727-revision-v1','','','2021-10-06 17:20:32','2021-10-06 17:20:32','',3727,'https://kingsvillelivestock.com/?p=3731',0,'revision','',0),(3733,2,'2021-10-06 17:22:35','2021-10-06 17:22:35','','October 15,2021 Cow Sale','','inherit','closed','closed','','october-152021-cow-sale-4','','','2021-10-06 17:22:35','2021-10-06 17:22:35','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/10/October-152021-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(3739,2,'2021-10-11 17:45:45','2021-10-11 17:45:45','','Tuesday,October 12th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayoctober-12th-feeder-cattle-consignments','','','2021-10-11 17:45:45','2021-10-11 17:45:45','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/10/TuesdayOctober-12th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3744,2,'2021-10-13 15:41:54','2021-10-13 15:41:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 12, 2021,</strong> 1833 hd;Â  last week 2130 hd; a year ago 1617 hd Compared to last week yearling steers &amp; heifers sold steady-$6 higher. Calves sold steady to firm except steers weighing 400-500lbs sold w/ a higher undertone. Buyers were active throughout the day. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$167.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$144.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$161.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$158.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$115.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$64.00 - $77.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">693lbs @$169.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">735lbs @$165.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">791lbs @$160.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">839lbs @$162.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">930lbs @$144.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">666lbs @$153.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">687lbs @$145.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">705lbs @$150.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">778lbs @$149.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 12, 2021 - Market Report','','publish','closed','open','','october-12-2021-market-report','','','2021-10-13 15:41:58','2021-10-13 15:41:58','',0,'https://kingsvillelivestock.com/?p=3744',0,'post','',0),(3745,2,'2021-10-13 15:33:15','2021-10-13 15:33:15','','October 12, 2021 - Market Report','','inherit','closed','closed','','3744-revision-v1','','','2021-10-13 15:33:15','2021-10-13 15:33:15','',3744,'https://kingsvillelivestock.com/?p=3745',0,'revision','',0),(3747,2,'2021-10-13 15:41:54','2021-10-13 15:41:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 12, 2021,</strong> 1833 hd;Â  last week 2130 hd; a year ago 1617 hd Compared to last week yearling steers &amp; heifers sold steady-$6 higher. Calves sold steady to firm except steers weighing 400-500lbs sold w/ a higher undertone. Buyers were active throughout the day. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$167.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$144.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$161.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$158.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$115.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$64.00 - $77.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">693lbs @$169.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">735lbs @$165.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">791lbs @$160.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">839lbs @$162.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">930lbs @$144.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">666lbs @$153.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">687lbs @$145.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">705lbs @$150.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">778lbs @$149.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 12, 2021 - Market Report','','inherit','closed','closed','','3744-revision-v1','','','2021-10-13 15:41:54','2021-10-13 15:41:54','',3744,'https://kingsvillelivestock.com/?p=3747',0,'revision','',0),(3748,2,'2021-10-13 15:41:54','2021-10-13 15:41:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 12, 2021,</strong> 1833 hd;Â  last week 2130 hd; a year ago 1617 hd Compared to last week yearling steers &amp; heifers sold steady-$6 higher. Calves sold steady to firm except steers weighing 400-500lbs sold w/ a higher undertone. Buyers were active throughout the day. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$167.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$144.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$161.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$158.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$115.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$64.00 - $77.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">693lbs @$169.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">735lbs @$165.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">791lbs @$160.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">839lbs @$162.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">930lbs @$144.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">666lbs @$153.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">687lbs @$145.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">705lbs @$150.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">778lbs @$149.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 5, 2021 - Market Report','','inherit','closed','closed','','3744-revision-v1','','','2021-10-13 15:41:54','2021-10-13 15:41:54','',3744,'https://kingsvillelivestock.com/?p=3748',0,'revision','',0),(3749,2,'2021-10-13 15:41:58','2021-10-13 15:41:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 12, 2021,</strong> 1833 hd;Â  last week 2130 hd; a year ago 1617 hd Compared to last week yearling steers &amp; heifers sold steady-$6 higher. Calves sold steady to firm except steers weighing 400-500lbs sold w/ a higher undertone. Buyers were active throughout the day. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$167.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$144.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$161.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$132.00-$158.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$128.00-$147.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$115.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$64.00 - $77.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$77.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 92px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">693lbs @$169.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">735lbs @$165.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">791lbs @$160.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">839lbs @$162.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">930lbs @$144.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">666lbs @$153.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">687lbs @$145.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">705lbs @$150.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">778lbs @$149.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 12, 2021 - Market Report','','inherit','closed','closed','','3744-revision-v1','','','2021-10-13 15:41:58','2021-10-13 15:41:58','',3744,'https://kingsvillelivestock.com/?p=3749',0,'revision','',0),(3752,2,'2021-10-13 18:46:01','2021-10-13 18:46:01','','Estate of Various Owners October 24th','','inherit','closed','closed','','estate-of-various-owners-october-24th','','','2021-10-13 18:46:01','2021-10-13 18:46:01','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/10/Estate-of-Various-Owners-October-24th.pdf',0,'attachment','application/pdf',0),(3757,2,'2021-10-18 17:38:56','2021-10-18 17:38:56','','Tuesday,October 19th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayoctober-19th-feeder-cattle-consignments','','','2021-10-18 17:38:56','2021-10-18 17:38:56','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/10/TuesdayOctober-19th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3760,2,'2021-10-20 15:51:01','2021-10-20 15:51:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 19, 2021,</strong> 2138 hd;Â  last week 1833 hd; a year ago 1665 hd Compared to last week steers &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.3\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$176.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$166.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$133.00-$142.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.3\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$137.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$115.00-$137.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.3\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$64.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$74.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.3\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">non weaned 518lbs @$180.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">740lbs @$166.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">Red &amp; Char 870lbs @$149.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">599lbs @$167.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">688lbs @$152.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 19, 2021 - Market Report','','publish','closed','open','','october-19-2021-market-report','','','2021-10-25 18:00:50','2021-10-25 18:00:50','',0,'https://kingsvillelivestock.com/?p=3760',0,'post','',0),(3762,2,'2021-10-20 15:51:01','2021-10-20 15:51:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 1, 2021,</strong> 2138 hd;Â  last week 1833 hd; a year ago 1665 hd Compared to last week steers &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$176.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$166.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$133.00-$142.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$137.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$115.00-$137.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$64.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$74.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">non weaned 518lbs @$180.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">740lbs @$166.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">Red &amp; Char 870lbs @$149.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">599lbs @$167.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">688lbs @$152.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 19, 2021 - Market Report','','inherit','closed','closed','','3760-revision-v1','','','2021-10-20 15:51:01','2021-10-20 15:51:01','',3760,'https://kingsvillelivestock.com/?p=3762',0,'revision','',0),(3763,2,'2021-10-20 15:51:01','2021-10-20 15:51:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 1, 2021,</strong> 2138 hd;Â  last week 1833 hd; a year ago 1665 hd Compared to last week steers &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$176.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$166.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$133.00-$142.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$137.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$115.00-$137.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$64.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$74.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">non weaned 518lbs @$180.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">740lbs @$166.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">Red &amp; Char 870lbs @$149.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">599lbs @$167.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">688lbs @$152.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 12, 2021 - Market Report','','inherit','closed','closed','','3760-revision-v1','','','2021-10-20 15:51:01','2021-10-20 15:51:01','',3760,'https://kingsvillelivestock.com/?p=3763',0,'revision','',0),(3764,2,'2021-10-20 15:51:05','2021-10-20 15:51:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 1, 2021,</strong> 2138 hd;Â  last week 1833 hd; a year ago 1665 hd Compared to last week steers &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$176.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$166.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$133.00-$142.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$137.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$115.00-$137.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$64.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$74.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">non weaned 518lbs @$180.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">740lbs @$166.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">Red &amp; Char 870lbs @$149.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">599lbs @$167.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">688lbs @$152.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 19, 2021 - Market Report','','inherit','closed','closed','','3760-revision-v1','','','2021-10-20 15:51:05','2021-10-20 15:51:05','',3760,'https://kingsvillelivestock.com/?p=3764',0,'revision','',0),(3770,2,'2021-10-25 17:22:55','2021-10-25 17:22:55','','Tuesday,October 26th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayoctober-26th-feeder-cattle-consignments','','','2021-10-25 17:22:55','2021-10-25 17:22:55','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/10/TuesdayOctober-26th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3772,2,'2021-10-25 18:00:47','2021-10-25 18:00:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 19, 2021,</strong> 2138 hd;Â  last week 1833 hd; a year ago 1665 hd Compared to last week steers &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.3\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$176.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$166.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$133.00-$142.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.3\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$118.00-$137.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$115.00-$137.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.3\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$64.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$74.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.3\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">non weaned 518lbs @$180.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">740lbs @$166.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">Red &amp; Char 870lbs @$149.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">599lbs @$167.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">688lbs @$152.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 19, 2021 - Market Report','','inherit','closed','closed','','3760-revision-v1','','','2021-10-25 18:00:47','2021-10-25 18:00:47','',3760,'https://kingsvillelivestock.com/?p=3772',0,'revision','',0),(3778,2,'2021-10-27 15:56:30','2021-10-27 15:56:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>Â October 26, 2021,</strong> 2200 hd;Â  last week 2138 hd; a year ago 1080 hd Yearling feeder cattle sold $3-$8 higher, selling w/ good demand. New crop calves sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$155.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$161.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$109.00-$123.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$62.00 - $72.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">Â 712lbs @$174.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">822lbs @$162.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">Â 841lbs @$166.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">854lbs @$165.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">882lbs @$156.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">900lbs @$155.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">903lbs @$155.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">706lbs @$153.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 26, 2021 - Market Report','','publish','closed','open','','october-26-2021-market-report','','','2021-10-27 15:56:33','2021-10-27 15:56:33','',0,'https://kingsvillelivestock.com/?p=3778',0,'post','',0),(3780,2,'2021-10-27 15:56:30','2021-10-27 15:56:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>Â October 26, 2021,</strong> 2200 hd;Â  last week 2138 hd; a year ago 1080 hd Yearling feeder cattle sold $3-$8 higher, selling w/ good demand. New crop calves sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$155.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$161.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$109.00-$123.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$62.00 - $72.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">Â 712lbs @$174.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">822lbs @$162.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">Â 841lbs @$166.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">854lbs @$165.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">882lbs @$156.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">900lbs @$155.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">903lbs @$155.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">706lbs @$153.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 26, 2021 - Market Report','','inherit','closed','closed','','3778-revision-v1','','','2021-10-27 15:56:30','2021-10-27 15:56:30','',3778,'https://kingsvillelivestock.com/?p=3780',0,'revision','',0),(3781,2,'2021-10-27 15:56:30','2021-10-27 15:56:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>Â October 26, 2021,</strong> 2200 hd;Â  last week 2138 hd; a year ago 1080 hd Yearling feeder cattle sold $3-$8 higher, selling w/ good demand. New crop calves sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$155.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$161.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$109.00-$123.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$62.00 - $72.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">Â 712lbs @$174.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">822lbs @$162.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">Â 841lbs @$166.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">854lbs @$165.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">882lbs @$156.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">900lbs @$155.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">903lbs @$155.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">706lbs @$153.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 19, 2021 - Market Report','','inherit','closed','closed','','3778-revision-v1','','','2021-10-27 15:56:30','2021-10-27 15:56:30','',3778,'https://kingsvillelivestock.com/?p=3781',0,'revision','',0),(3782,2,'2021-10-27 15:56:33','2021-10-27 15:56:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>Â October 26, 2021,</strong> 2200 hd;Â  last week 2138 hd; a year ago 1080 hd Yearling feeder cattle sold $3-$8 higher, selling w/ good demand. New crop calves sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$155.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$161.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$109.00-$123.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$62.00 - $72.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">Â 712lbs @$174.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">822lbs @$162.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">Â 841lbs @$166.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">854lbs @$165.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">882lbs @$156.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">900lbs @$155.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">903lbs @$155.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">706lbs @$153.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 26, 2021 - Market Report','','inherit','closed','closed','','3778-revision-v1','','','2021-10-27 15:56:33','2021-10-27 15:56:33','',3778,'https://kingsvillelivestock.com/?p=3782',0,'revision','',0),(3785,2,'2021-10-27 18:57:21','2021-10-27 18:57:21','','November 12th Holmes Auction','','inherit','closed','closed','','november-12th-holmes-auction','','','2021-10-27 18:57:21','2021-10-27 18:57:21','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/10/November-12th-Holmes-Auction.pdf',0,'attachment','application/pdf',0),(3787,2,'2021-10-28 13:11:57','0000-00-00 00:00:00','<!-- wp:paragraph --><!-- /wp:paragraph -->','','','draft','closed','open','','','','','2021-10-28 13:11:57','2021-10-28 13:11:57','',0,'https://kingsvillelivestock.com/?p=3787',0,'post','',0),(3788,2,'2021-10-28 13:11:57','2021-10-28 13:11:57','<!-- wp:paragraph --><!-- /wp:paragraph -->','','','inherit','closed','closed','','3787-revision-v1','','','2021-10-28 13:11:57','2021-10-28 13:11:57','',3787,'https://kingsvillelivestock.com/?p=3788',0,'revision','',0),(3790,2,'2021-11-01 17:26:58','2021-11-01 17:26:58','','Tuesday,November 2nd Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaynovember-2nd-feeder-cattle-consignments','','','2021-11-01 17:26:58','2021-11-01 17:26:58','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/11/TuesdayNovember-2nd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3795,2,'2021-11-01 18:04:43','2021-11-01 18:04:43','','November 20,2021 Cow Sale','','inherit','closed','closed','','november-202021-cow-sale','','','2021-11-01 18:04:43','2021-11-01 18:04:43','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/11/November-202021-Cow-Sale.pdf',0,'attachment','application/pdf',0),(3799,2,'2021-11-03 16:08:59','0000-00-00 00:00:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>Â October 26, 2021,</strong> 2200 hd;Â  last week 2138 hd; a year ago 1080 hd Yearling feeder cattle sold $3-$8 higher, selling w/ good demand. New crop calves sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$155.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$161.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$149.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$153.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$120.00-$132.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$109.00-$123.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$62.00 - $72.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.11.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">Â 712lbs @$174.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">822lbs @$162.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">Â 841lbs @$166.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">854lbs @$165.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">882lbs @$156.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">900lbs @$155.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">903lbs @$155.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">706lbs @$153.25</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.10.8\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 26, 2021 - Market Report','','draft','closed','open','','','','','2021-11-03 16:08:59','0000-00-00 00:00:00','',0,'https://kingsvillelivestock.com/?p=3799',0,'post','',0),(3800,2,'2021-11-03 16:15:41','2021-11-03 16:15:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 2, 2021,</strong> 2132 hd;Â  last week 2200 hd; a year ago 1684 hd Feeders that were yearlings &amp; long weaned sold $2-$6 higher. Load lots &amp; new crop calves sold steady. Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$167.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$155.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$164.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$164.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$119.00-$126.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$63.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$76.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">697lbs @$164.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">797lbs @$156.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">Â 799lbs @$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">856lbs @$155.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">878lbs @$154.35</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">900lbs @$155.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">620lbs @$164.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 2, 2021 - Market Report','','publish','closed','open','','november-2-2021-market-report','','','2021-11-03 16:15:45','2021-11-03 16:15:45','',0,'https://kingsvillelivestock.com/?p=3800',0,'post','',0),(3801,2,'2021-11-03 16:15:41','2021-11-03 16:15:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 2, 2021,</strong> 2132 hd;Â  last week 2200 hd; a year ago 1684 hd Feeders that were yearlings &amp; long weaned sold $2-$6 higher. Load lots &amp; new crop calves sold steady. Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$167.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$155.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$164.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$164.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$119.00-$126.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$63.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$76.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">697lbs @$164.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">797lbs @$156.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">Â 799lbs @$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">856lbs @$155.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">878lbs @$154.35</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">900lbs @$155.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">620lbs @$164.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 2, 2021 - Market Report','','inherit','closed','closed','','3800-revision-v1','','','2021-11-03 16:15:41','2021-11-03 16:15:41','',3800,'https://kingsvillelivestock.com/?p=3801',0,'revision','',0),(3802,2,'2021-11-03 16:15:41','2021-11-03 16:15:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 2, 2021,</strong> 2132 hd;Â  last week 2200 hd; a year ago 1684 hd Feeders that were yearlings &amp; long weaned sold $2-$6 higher. Load lots &amp; new crop calves sold steady. Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$167.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$155.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$164.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$164.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$119.00-$126.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$63.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$76.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">697lbs @$164.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">797lbs @$156.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">Â 799lbs @$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">856lbs @$155.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">878lbs @$154.35</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">900lbs @$155.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">620lbs @$164.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 26, 2021 - Market Report','','inherit','closed','closed','','3800-revision-v1','','','2021-11-03 16:15:41','2021-11-03 16:15:41','',3800,'https://kingsvillelivestock.com/?p=3802',0,'revision','',0),(3803,2,'2021-11-03 16:15:45','2021-11-03 16:15:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 2, 2021,</strong> 2132 hd;Â  last week 2200 hd; a year ago 1684 hd Feeders that were yearlings &amp; long weaned sold $2-$6 higher. Load lots &amp; new crop calves sold steady. Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$167.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$155.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$164.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$164.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$117.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$119.00-$126.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$63.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$53.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$42.00 - $52.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$76.00 - $100.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">697lbs @$164.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">797lbs @$156.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">Â 799lbs @$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">856lbs @$155.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">878lbs @$154.35</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">900lbs @$155.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">620lbs @$164.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 2, 2021 - Market Report','','inherit','closed','closed','','3800-revision-v1','','','2021-11-03 16:15:45','2021-11-03 16:15:45','',3800,'https://kingsvillelivestock.com/?p=3803',0,'revision','',0),(3804,2,'2021-11-03 16:16:49','2021-11-03 16:16:49','','November 20,2021 Cow Sale','','inherit','closed','closed','','november-202021-cow-sale-2','','','2021-11-03 16:16:49','2021-11-03 16:16:49','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/11/November-202021-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(3807,2,'2021-11-03 16:52:29','2021-11-03 16:52:29','','2021 Spring Calving Show-Me-Select Catalog','','inherit','closed','closed','','2021-spring-calving-show-me-select-catalog','','','2021-11-03 16:52:29','2021-11-03 16:52:29','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/11/2021-Spring-Calving-Show-Me-Select-Catalog.pdf',0,'attachment','application/pdf',0),(3812,2,'2021-11-08 17:39:32','2021-11-08 17:39:32','','November 13,2021 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','november-132021-horse-tack-small-animal-sale','','','2021-11-08 17:39:32','2021-11-08 17:39:32','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/11/November-132021-Horse-Tack-Small-Animal-Sale.pdf',0,'attachment','application/pdf',0),(3815,2,'2021-11-08 17:53:57','2021-11-08 17:53:57','','tabloid November cowsale','','inherit','closed','closed','','tabloid-november-cowsale','','','2021-11-08 17:53:57','2021-11-08 17:53:57','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/11/tabloid-November-cowsale.pdf',0,'attachment','application/pdf',0),(3818,2,'2021-11-08 18:15:03','2021-11-08 18:15:03','','Tuesday,November 9th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaynovember-9th-feeder-cattle-consignments','','','2021-11-08 18:15:03','2021-11-08 18:15:03','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/11/TuesdayNovember-9th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3822,2,'2021-11-10 17:55:22','2021-11-10 17:55:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 9, 2021,</strong> 2931 hd;Â  last week 2132 hd; a year ago 1860 hd Yearlings sold steady-$2 higher w/ good buyer activity. New crop calves sold steady-$4 lower Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$175.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$144.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$121.00-$124.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$63.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$34.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">737lbs @$164.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">888lbs @$159.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">Â 662lbs @$165.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">712lbs @$158.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">757lbs @$165.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 9, 2021 - Market Report','','publish','closed','open','','november-9-2021-market-report','','','2021-11-10 17:55:25','2021-11-10 17:55:25','',0,'https://kingsvillelivestock.com/?p=3822',0,'post','',0),(3824,2,'2021-11-10 17:55:22','2021-11-10 17:55:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 9, 2021,</strong> 2931 hd;Â  last week 2132 hd; a year ago 1860 hd Yearlings sold steady-$2 higher w/ good buyer activity. New crop calves sold steady-$4 lower Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$175.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$144.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$121.00-$124.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$63.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$34.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">737lbs @$164.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">888lbs @$159.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">Â 662lbs @$165.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">712lbs @$158.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">757lbs @$165.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 9, 2021 - Market Report','','inherit','closed','closed','','3822-revision-v1','','','2021-11-10 17:55:22','2021-11-10 17:55:22','',3822,'https://kingsvillelivestock.com/?p=3824',0,'revision','',0),(3825,2,'2021-11-10 17:55:22','2021-11-10 17:55:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 9, 2021,</strong> 2931 hd;Â  last week 2132 hd; a year ago 1860 hd Yearlings sold steady-$2 higher w/ good buyer activity. New crop calves sold steady-$4 lower Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$175.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$144.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$121.00-$124.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$63.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$34.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">737lbs @$164.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">888lbs @$159.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">Â 662lbs @$165.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">712lbs @$158.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">757lbs @$165.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 2, 2021 - Market Report','','inherit','closed','closed','','3822-revision-v1','','','2021-11-10 17:55:22','2021-11-10 17:55:22','',3822,'https://kingsvillelivestock.com/?p=3825',0,'revision','',0),(3826,2,'2021-11-10 17:55:25','2021-11-10 17:55:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 9, 2021,</strong> 2931 hd;Â  last week 2132 hd; a year ago 1860 hd Yearlings sold steady-$2 higher w/ good buyer activity. New crop calves sold steady-$4 lower Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$175.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$144.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$121.00-$124.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$121.00-$124.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$63.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$34.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $96.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.13.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">737lbs @$164.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">888lbs @$159.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">Â 662lbs @$165.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">712lbs @$158.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">757lbs @$165.00</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 9, 2021 - Market Report','','inherit','closed','closed','','3822-revision-v1','','','2021-11-10 17:55:25','2021-11-10 17:55:25','',3822,'https://kingsvillelivestock.com/?p=3826',0,'revision','',0),(3831,2,'2021-11-15 17:39:20','2021-11-15 17:39:20','','tabloid November cowsale','','inherit','closed','closed','','tabloid-november-cowsale-2','','','2021-11-15 17:39:20','2021-11-15 17:39:20','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/11/tabloid-November-cowsale-1.pdf',0,'attachment','application/pdf',0),(3834,2,'2021-11-15 18:43:31','2021-11-15 18:43:31','','Tuesday,November 16th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaynovember-16th-feeder-cattle-consignments','','','2021-11-15 18:43:31','2021-11-15 18:43:31','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/11/TuesdayNovember-16th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3838,2,'2021-11-15 23:36:20','2021-11-15 23:36:20','','tabloid November cowsale','','inherit','closed','closed','','tabloid-november-cowsale-3','','','2021-11-15 23:36:20','2021-11-15 23:36:20','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/11/tabloid-November-cowsale-2.pdf',0,'attachment','application/pdf',0),(3841,2,'2021-11-17 17:49:06','2021-11-17 17:49:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 16, 2021,</strong> 2734 hd;Â  last week 2931 hd; a year ago 3037 hd Yearling steers &amp; heifers sold steady. New crop steers sold steady- $4 higher &amp; heifers sold steady. Slaughter cows &amp; bulls sold steady-$2 lower.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$169.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$124.00-$135.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$157.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$119.00-$124.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$59.00 - $68.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$31.00 - $46.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $97.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">704lbs @$170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">832lbs @$163.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">Â 894lbs @$146.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">709lbs @$157.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">711lbs @$155.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">721lbs @$145.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 16, 2021 - Market Report','','publish','closed','open','','november-16-2021-market-report','','','2021-11-17 17:49:10','2021-11-17 17:49:10','',0,'https://kingsvillelivestock.com/?p=3841',0,'post','',0),(3843,2,'2021-11-17 17:49:06','2021-11-17 17:49:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 16, 2021,</strong> 2734 hd;Â  last week 2931 hd; a year ago 3037 hd Yearling steers &amp; heifers sold steady. New crop steers sold steady- $4 higher &amp; heifers sold steady. Slaughter cows &amp; bulls sold steady-$2 lower.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$169.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$124.00-$135.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$157.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$119.00-$124.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$59.00 - $68.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$31.00 - $46.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $97.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">704lbs @$170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">832lbs @$163.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">Â 894lbs @$146.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">709lbs @$157.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">711lbs @$155.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">721lbs @$145.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 16, 2021 - Market Report','','inherit','closed','closed','','3841-revision-v1','','','2021-11-17 17:49:06','2021-11-17 17:49:06','',3841,'https://kingsvillelivestock.com/?p=3843',0,'revision','',0),(3844,2,'2021-11-17 17:49:06','2021-11-17 17:49:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 16, 2021,</strong> 2734 hd;Â  last week 2931 hd; a year ago 3037 hd Yearling steers &amp; heifers sold steady. New crop steers sold steady- $4 higher &amp; heifers sold steady. Slaughter cows &amp; bulls sold steady-$2 lower.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$169.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$124.00-$135.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$157.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$119.00-$124.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$59.00 - $68.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$31.00 - $46.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $97.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">704lbs @$170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">832lbs @$163.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">Â 894lbs @$146.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">709lbs @$157.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">711lbs @$155.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">721lbs @$145.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 9, 2021 - Market Report','','inherit','closed','closed','','3841-revision-v1','','','2021-11-17 17:49:06','2021-11-17 17:49:06','',3841,'https://kingsvillelivestock.com/?p=3844',0,'revision','',0),(3845,2,'2021-11-17 17:49:10','2021-11-17 17:49:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 16, 2021,</strong> 2734 hd;Â  last week 2931 hd; a year ago 3037 hd Yearling steers &amp; heifers sold steady. New crop steers sold steady- $4 higher &amp; heifers sold steady. Slaughter cows &amp; bulls sold steady-$2 lower.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$169.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$124.00-$135.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$135.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$157.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$126.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$119.00-$124.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$59.00 - $68.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$47.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$31.00 - $46.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $97.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.13.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">704lbs @$170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">832lbs @$163.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">Â 894lbs @$146.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">709lbs @$157.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">711lbs @$155.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">721lbs @$145.85</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 16, 2021 - Market Report','','inherit','closed','closed','','3841-revision-v1','','','2021-11-17 17:49:10','2021-11-17 17:49:10','',3841,'https://kingsvillelivestock.com/?p=3845',0,'revision','',0),(3851,2,'2021-11-19 23:33:09','2021-11-19 23:33:09','','2021 SMS Fall Sale Order','','inherit','closed','closed','','2021-sms-fall-sale-order','','','2021-11-19 23:33:09','2021-11-19 23:33:09','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/11/2021-SMS-Fall-Sale-Order.pdf',0,'attachment','application/pdf',0),(3856,2,'2021-11-22 17:31:56','2021-11-22 17:31:56','','December 9th & 10th Cut Rate Lumber Co. Auction','','inherit','closed','closed','','december-9th-10th-cut-rate-lumber-co-auction','','','2021-11-22 17:31:56','2021-11-22 17:31:56','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/11/December-9th-10th-Cut-Rate-Lumber-Co.-Auction.pdf',0,'attachment','application/pdf',0),(3858,2,'2021-11-22 19:01:31','2021-11-22 19:01:31','','Tuesday,November 23rd Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaynovember-23rd-feeder-cattle-consignments','','','2021-11-22 19:01:31','2021-11-22 19:01:31','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/11/TuesdayNovember-23rd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3865,2,'2021-11-24 17:00:25','2021-11-24 17:00:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 23, 2021,</strong> 1029 hd;Â  last week 2734 hd; a year ago 1228 hd Due to a holiday week, we had a smaller sale w/ good buyer activity. We will have a special calf &amp; yearling sale Nov. 30th. Slaughter cows &amp; bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$143.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$116.00-$130.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$141.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$126.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$108.00-$126.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$56.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$46.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $45.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $93.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">754lbs @$161.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 23, 2021 - Market Report','','publish','closed','open','','november-23-2021-market-report','','','2021-11-24 17:00:29','2021-11-24 17:00:29','',0,'https://kingsvillelivestock.com/?p=3865',0,'post','',0),(3866,2,'2021-11-24 17:00:25','2021-11-24 17:00:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 23, 2021,</strong> 1029 hd;Â  last week 2734 hd; a year ago 1228 hd Due to a holiday week, we had a smaller sale w/ good buyer activity. We will have a special calf &amp; yearling sale Nov. 30th. Slaughter cows &amp; bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$143.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$116.00-$130.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$141.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$126.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$108.00-$126.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$56.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$46.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $45.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $93.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">754lbs @$161.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 23, 2021 - Market Report','','inherit','closed','closed','','3865-revision-v1','','','2021-11-24 17:00:25','2021-11-24 17:00:25','',3865,'https://kingsvillelivestock.com/?p=3866',0,'revision','',0),(3867,2,'2021-11-24 17:00:25','2021-11-24 17:00:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 23, 2021,</strong> 1029 hd;Â  last week 2734 hd; a year ago 1228 hd Due to a holiday week, we had a smaller sale w/ good buyer activity. We will have a special calf &amp; yearling sale Nov. 30th. Slaughter cows &amp; bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$143.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$116.00-$130.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$141.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$126.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$108.00-$126.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$56.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$46.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $45.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $93.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">754lbs @$161.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 16, 2021 - Market Report','','inherit','closed','closed','','3865-revision-v1','','','2021-11-24 17:00:25','2021-11-24 17:00:25','',3865,'https://kingsvillelivestock.com/?p=3867',0,'revision','',0),(3868,2,'2021-11-24 17:00:29','2021-11-24 17:00:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 23, 2021,</strong> 1029 hd;Â  last week 2734 hd; a year ago 1228 hd Due to a holiday week, we had a smaller sale w/ good buyer activity. We will have a special calf &amp; yearling sale Nov. 30th. Slaughter cows &amp; bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$143.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$116.00-$130.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$137.00-$164.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$134.00-$151.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$141.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$127.00-$147.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$110.00-$126.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$108.00-$126.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$56.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$46.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$37.00 - $45.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$60.00 - $93.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">754lbs @$161.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.12.1\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 23, 2021 - Market Report','','inherit','closed','closed','','3865-revision-v1','','','2021-11-24 17:00:29','2021-11-24 17:00:29','',3865,'https://kingsvillelivestock.com/?p=3868',0,'revision','',0),(3870,2,'2021-11-29 18:02:49','2021-11-29 18:02:49','','Tuesday,November 30th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaynovember-30th-feeder-cattle-consignments','','','2021-11-29 18:02:49','2021-11-29 18:02:49','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/11/TuesdayNovember-30th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3874,2,'2021-12-01 18:30:44','2021-12-01 18:30:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 30, 2021,</strong> 3051 hd;Â  last week 1029 hd; a year ago 3376 hd All feeder cattle sold $3-$5 higher compared to last weeks lighterÂ  test. Slaughter cows &amp; buls sold $2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$171.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$168.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$142.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$164.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$134.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$118.00-$125.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$57.00 - $68.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $49.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">616lbs @$170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">742lbs @$168.25</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">744lbs @$168.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">752lbs @$168.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">799lbs @$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">814lbs @$159.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">874lbs @$163.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">691lbs @$161.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">711lbs @$160.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 30, 2021 - Market Report','','publish','closed','open','','november-30-2021-market-report','','','2021-12-01 18:30:48','2021-12-01 18:30:48','',0,'https://kingsvillelivestock.com/?p=3874',0,'post','',0),(3876,2,'2021-12-01 18:30:44','2021-12-01 18:30:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 30, 2021,</strong> 3051 hd;Â  last week 1029 hd; a year ago 3376 hd All feeder cattle sold $3-$5 higher compared to last weeks lighterÂ  test. Slaughter cows &amp; buls sold $2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$171.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$168.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$142.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$164.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$134.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$118.00-$125.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$57.00 - $68.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $49.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">616lbs @$170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">742lbs @$168.25</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">744lbs @$168.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">752lbs @$168.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">799lbs @$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">814lbs @$159.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">874lbs @$163.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">691lbs @$161.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">711lbs @$160.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 30, 2021 - Market Report','','inherit','closed','closed','','3874-revision-v1','','','2021-12-01 18:30:44','2021-12-01 18:30:44','',3874,'https://kingsvillelivestock.com/?p=3876',0,'revision','',0),(3877,2,'2021-12-01 18:30:44','2021-12-01 18:30:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 30, 2021,</strong> 3051 hd;Â  last week 1029 hd; a year ago 3376 hd All feeder cattle sold $3-$5 higher compared to last weeks lighterÂ  test. Slaughter cows &amp; buls sold $2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$171.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$168.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$142.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$164.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$134.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$118.00-$125.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$57.00 - $68.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $49.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">616lbs @$170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">742lbs @$168.25</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">744lbs @$168.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">752lbs @$168.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">799lbs @$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">814lbs @$159.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">874lbs @$163.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">691lbs @$161.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">711lbs @$160.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 23, 2021 - Market Report','','inherit','closed','closed','','3874-revision-v1','','','2021-12-01 18:30:44','2021-12-01 18:30:44','',3874,'https://kingsvillelivestock.com/?p=3877',0,'revision','',0),(3878,2,'2021-12-01 18:30:48','2021-12-01 18:30:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 30, 2021,</strong> 3051 hd;Â  last week 1029 hd; a year ago 3376 hd All feeder cattle sold $3-$5 higher compared to last weeks lighterÂ  test. Slaughter cows &amp; buls sold $2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$171.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$168.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$142.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$145.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$142.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$164.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$119.00-$134.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$118.00-$125.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$57.00 - $68.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $56.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$40.00 - $49.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$65.00 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">616lbs @$170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">742lbs @$168.25</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">744lbs @$168.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">752lbs @$168.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">799lbs @$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">814lbs @$159.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">874lbs @$163.00</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">691lbs @$161.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">711lbs @$160.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 30, 2021 - Market Report','','inherit','closed','closed','','3874-revision-v1','','','2021-12-01 18:30:48','2021-12-01 18:30:48','',3874,'https://kingsvillelivestock.com/?p=3878',0,'revision','',0),(3890,2,'2021-12-06 22:31:20','2021-12-06 22:31:20','','Tuesday,December 7th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaydecember-7th-feeder-cattle-consignments','','','2021-12-06 22:31:20','2021-12-06 22:31:20','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/12/TuesdayDecember-7th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3895,2,'2021-12-08 17:24:55','2021-12-08 17:24:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 7, 2021,</strong> 3479 hd;Â  last week 3051 hd; a year ago 4311 hd. Compared to last week steers &amp; heifers sold steady-$6 higher w/ most of the gain on those under 600lbs. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$169.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$147.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$188.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$129.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$62.00 - $74.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$49.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$34.00 - $48.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">351lbs @$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">444lbs @$205.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">520lbs @$190.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">577lbs @$173.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">622lbs @$170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">727lbs @$156.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">438lbs @$188.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">519lbs @$169.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">561lbs @$168.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">636lbs @$169.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">686lbs @$160.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 7, 2021 - Market Report','','publish','closed','open','','december-7-2021-market-report','','','2021-12-08 17:24:58','2021-12-08 17:24:58','',0,'https://kingsvillelivestock.com/?p=3895',0,'post','',0),(3897,2,'2021-12-08 17:24:55','2021-12-08 17:24:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 7, 2021,</strong> 3479 hd;Â  last week 3051 hd; a year ago 4311 hd. Compared to last week steers &amp; heifers sold steady-$6 higher w/ most of the gain on those under 600lbs. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$169.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$147.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$188.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$129.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$62.00 - $74.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$49.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$34.00 - $48.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">351lbs @$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">444lbs @$205.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">520lbs @$190.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">577lbs @$173.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">622lbs @$170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">727lbs @$156.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">438lbs @$188.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">519lbs @$169.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">561lbs @$168.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">636lbs @$169.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">686lbs @$160.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 7, 2021 - Market Report','','inherit','closed','closed','','3895-revision-v1','','','2021-12-08 17:24:55','2021-12-08 17:24:55','',3895,'https://kingsvillelivestock.com/?p=3897',0,'revision','',0),(3898,2,'2021-12-08 17:24:55','2021-12-08 17:24:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 7, 2021,</strong> 3479 hd;Â  last week 3051 hd; a year ago 4311 hd. Compared to last week steers &amp; heifers sold steady-$6 higher w/ most of the gain on those under 600lbs. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$169.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$147.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$188.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$129.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$62.00 - $74.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$49.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$34.00 - $48.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">351lbs @$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">444lbs @$205.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">520lbs @$190.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">577lbs @$173.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">622lbs @$170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">727lbs @$156.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">438lbs @$188.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">519lbs @$169.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">561lbs @$168.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">636lbs @$169.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">686lbs @$160.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 30, 2021 - Market Report','','inherit','closed','closed','','3895-revision-v1','','','2021-12-08 17:24:55','2021-12-08 17:24:55','',3895,'https://kingsvillelivestock.com/?p=3898',0,'revision','',0),(3900,2,'2021-12-08 17:24:58','2021-12-08 17:24:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 7, 2021,</strong> 3479 hd;Â  last week 3051 hd; a year ago 4311 hd. Compared to last week steers &amp; heifers sold steady-$6 higher w/ most of the gain on those under 600lbs. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$169.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$169.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$147.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto;\" width=\"330\">\n<tbody>\n<tr>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$155.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">400-500</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$150.00-$188.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">500-600</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">600-700</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$140.00-$169.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">700-800</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$133.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">800-900</td>\n<td style=\"width: 157px;\"><span style=\"font-weight: 400;\">$130.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px;\">900-1000</td>\n<td style=\"width: 157px;\">$110.00-$129.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$62.00 - $74.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$49.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$34.00 - $48.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $97.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">351lbs @$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">444lbs @$205.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">520lbs @$190.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">577lbs @$173.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">622lbs @$170.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">727lbs @$156.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">438lbs @$188.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">519lbs @$169.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">561lbs @$168.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">636lbs @$169.25</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">HeifersÂ </td>\n<td style=\"width: 161.031px;\">686lbs @$160.75</td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 7, 2021 - Market Report','','inherit','closed','closed','','3895-revision-v1','','','2021-12-08 17:24:58','2021-12-08 17:24:58','',3895,'https://kingsvillelivestock.com/?p=3900',0,'revision','',0),(3904,2,'2021-12-13 18:10:37','2021-12-13 18:10:37','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.14.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2021-12-13 18:10:37','2021-12-13 18:10:37','',1450,'https://kingsvillelivestock.com/?p=3904',0,'revision','',0),(3907,2,'2021-12-13 19:34:13','2021-12-13 19:34:13','','Tuesday,December 14th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaydecember-14th-feeder-cattle-consignments','','','2021-12-13 19:34:13','2021-12-13 19:34:13','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/12/TuesdayDecember-14th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3912,2,'2021-12-15 17:34:06','2021-12-15 17:34:06','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.14.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/xmSwhNEfZTREscEU9\">Cut Rate Lumber Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2021-12-15 17:34:06','2021-12-15 17:34:06','',1450,'https://kingsvillelivestock.com/?p=3912',0,'revision','',0),(3913,2,'2021-12-15 17:42:59','2021-12-15 17:42:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<p><strong>December 14, 2021,</strong> 3601 hd;Â  last week 3479 hd; a year ago 2544 hd. All classes of feeder cattle sold $3-$6 higher w/ good buyer activity. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$183.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$151.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$191.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$159.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$131.00-$145.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$117.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$64.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$43.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">457lbs @$211.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">499lbs @$199.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">753lbs @$168.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">792lbs @$163.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">889lbs @$161.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">909lbs @$151.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">714lbs @$155.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">737lbs @$159.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">842lbs @$145.35</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 14, 2021 - Market Report','','publish','closed','open','','december-14-2021-market-report','','','2021-12-15 17:43:33','2021-12-15 17:43:33','',0,'https://kingsvillelivestock.com/?p=3913',0,'post','',0),(3915,2,'2021-12-15 17:42:59','2021-12-15 17:42:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 14, 2021,</strong> 3601 hd;Â  last week 3479 hd; a year ago 2544 hd. All classes of feeder cattle sold $3-$6 higher w/ good buyer activity. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$183.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$151.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$191.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$159.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$131.00-$145.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$117.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$64.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$43.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">457lbs @$211.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">499lbs @$199.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">753lbs @$168.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">792lbs @$163.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">889lbs @$161.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">909lbs @$151.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">714lbs @$155.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">737lbs @$159.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">842lbs @$145.35</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 14, 2021 - Market Report','','inherit','closed','closed','','3913-revision-v1','','','2021-12-15 17:42:59','2021-12-15 17:42:59','',3913,'https://kingsvillelivestock.com/?p=3915',0,'revision','',0),(3916,2,'2021-12-15 17:42:59','2021-12-15 17:42:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 14, 2021,</strong> 3601 hd;Â  last week 3479 hd; a year ago 2544 hd. All classes of feeder cattle sold $3-$6 higher w/ good buyer activity. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$183.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$151.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$191.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$159.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$131.00-$145.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$117.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$64.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$43.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">457lbs @$211.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">499lbs @$199.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">753lbs @$168.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">792lbs @$163.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">889lbs @$161.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">909lbs @$151.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">714lbs @$155.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">737lbs @$159.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">842lbs @$145.35</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 7, 2021 - Market Report','','inherit','closed','closed','','3913-revision-v1','','','2021-12-15 17:42:59','2021-12-15 17:42:59','',3913,'https://kingsvillelivestock.com/?p=3916',0,'revision','',0),(3917,2,'2021-12-15 17:43:02','2021-12-15 17:43:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 14, 2021,</strong> 3601 hd;Â  last week 3479 hd; a year ago 2544 hd. All classes of feeder cattle sold $3-$6 higher w/ good buyer activity. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$183.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$151.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$191.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$159.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$131.00-$145.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$117.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$64.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$43.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">457lbs @$211.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">499lbs @$199.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">753lbs @$168.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">792lbs @$163.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">889lbs @$161.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">909lbs @$151.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">714lbs @$155.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">737lbs @$159.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">842lbs @$145.35</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 14, 2021 - Market Report','','inherit','closed','closed','','3913-revision-v1','','','2021-12-15 17:43:02','2021-12-15 17:43:02','',3913,'https://kingsvillelivestock.com/?p=3917',0,'revision','',0),(3918,2,'2021-12-15 17:43:29','2021-12-15 17:43:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<p><strong>December 14, 2021,</strong> 3601 hd;Â  last week 3479 hd; a year ago 2544 hd. All classes of feeder cattle sold $3-$6 higher w/ good buyer activity. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$183.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$151.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$191.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$159.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$131.00-$145.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$117.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$64.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $63.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$43.00 - $51.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $95.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">457lbs @$211.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">499lbs @$199.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">753lbs @$168.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">792lbs @$163.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">889lbs @$161.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">909lbs @$151.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">714lbs @$155.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">737lbs @$159.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Heifers</td>\n<td style=\"width: 161.031px;\">842lbs @$145.35</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 14, 2021 - Market Report','','inherit','closed','closed','','3913-revision-v1','','','2021-12-15 17:43:29','2021-12-15 17:43:29','',3913,'https://kingsvillelivestock.com/?p=3918',0,'revision','',0),(3921,2,'2021-12-15 19:19:18','2021-12-15 19:19:18','','December 29th Cut Rate Lumber Co. Auction','','inherit','closed','closed','','december-29th-cut-rate-lumber-co-auction','','','2021-12-15 19:19:18','2021-12-15 19:19:18','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/12/December-29th-Cut-Rate-Lumber-Co.-Auction.pdf',0,'attachment','application/pdf',0),(3922,2,'2021-12-15 19:19:45','2021-12-15 19:19:45','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.14.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2021/12/December-29th-Cut-Rate-Lumber-Co.-Auction.pdf\" rel=\"attachment wp-att-3921\">December 29th Cut Rate Lumber Co. Auction Paola,KS. - 9:30amÂ </a></p>\n<p><a href=\"https://photos.app.goo.gl/xmSwhNEfZTREscEU9\">Cut Rate Lumber Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2021-12-15 19:19:45','2021-12-15 19:19:45','',1450,'https://kingsvillelivestock.com/?p=3922',0,'revision','',0),(3923,2,'2021-12-15 19:40:00','2021-12-15 19:40:00','','December 29th Cut Rate Lumber Co. Auction','','inherit','closed','closed','','december-29th-cut-rate-lumber-co-auction-2','','','2021-12-15 19:40:00','2021-12-15 19:40:00','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/12/December-29th-Cut-Rate-Lumber-Co.-Auction-1.pdf',0,'attachment','application/pdf',0),(3924,2,'2021-12-15 19:40:20','2021-12-15 19:40:20','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.14.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2021/12/December-29th-Cut-Rate-Lumber-Co.-Auction-1.pdf\" rel=\"attachment wp-att-3923\">December 29th Cut Rate Lumber Co. Auction-Paola,KS-9:30am</a></p>\n<p><a href=\"https://photos.app.goo.gl/xmSwhNEfZTREscEU9\">Cut Rate Lumber Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2021-12-15 19:40:20','2021-12-15 19:40:20','',1450,'https://kingsvillelivestock.com/?p=3924',0,'revision','',0),(3925,2,'2021-12-18 15:19:20','2021-12-18 15:19:20','','Sale Order','','inherit','closed','closed','','sale-order','','','2021-12-18 15:19:20','2021-12-18 15:19:20','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/12/Sale-Order-.pdf',0,'attachment','application/pdf',0),(3931,2,'2021-12-20 16:39:35','2021-12-20 16:39:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2021/12/TuesdayDecember-14th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-3907\">Tuesday,December 14th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2021-12-20 16:39:35','2021-12-20 16:39:35','',2209,'https://kingsvillelivestock.com/?p=3931',0,'revision','',0),(3932,2,'2021-12-20 18:19:13','2021-12-20 18:19:13','','Tuesday,December 21st Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaydecember-21st-feeder-cattle-consignments','','','2021-12-20 18:19:13','2021-12-20 18:19:13','',0,'https://kingsvillelivestock.com/wp-content/uploads/2021/12/TuesdayDecember-21st-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3933,2,'2021-12-20 18:19:21','2021-12-20 18:19:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2021/12/TuesdayDecember-21st-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-3932\">Tuesday,December 21st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2021-12-20 18:19:21','2021-12-20 18:19:21','',2209,'https://kingsvillelivestock.com/?p=3933',0,'revision','',0),(3938,2,'2021-12-22 04:04:02','2021-12-22 04:04:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2021 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Dec. 28th @ 10:30 am <span style=\"color: #ff0000;\">-Canceled due to holidays!Â </span><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec.29th @ 9:30am<br /></strong>Cut-Rate Lumber Company Auction-For additional info visit the Anstine Auction tab!Â </span></p>\n<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 8th @ 8:30 am <span style=\"color: #ff0000;\">- Canceled!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 8th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2021-12-22 04:04:02','2021-12-22 04:04:02','',1967,'https://kingsvillelivestock.com/?p=3938',0,'revision','',0),(3939,2,'2021-12-22 19:30:54','2021-12-22 19:30:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 21, 2021,</strong> 1650 hd;Â  last week 3601 hd; a year ago 898 hd. All classes of feeder cattle sold steady, except for 550-750lbs steers sold steady-$5 higher. There was good buyer activity throughout the day. No sale, Tuesday Dec. 28th.Special calf &amp; yearling sale January 4th.Â  Merry Christmas &amp; Happy New Year! Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$177.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$125.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$132.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$115.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$61.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$72.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">741lbs @$170.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 21, 2021 - Market Report','','publish','closed','open','','december-21-2021-market-report','','','2021-12-22 19:30:57','2021-12-22 19:30:57','',0,'https://kingsvillelivestock.com/?p=3939',0,'post','',0),(3941,2,'2021-12-22 19:30:54','2021-12-22 19:30:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 21, 2021,</strong> 1650 hd;Â  last week 3601 hd; a year ago 898 hd. All classes of feeder cattle sold steady, except for 550-750lbs steers sold steady-$5 higher. There was good buyer activity throughout the day. No sale, Tuesday Dec. 28th.Special calf &amp; yearling sale January 4th.Â  Merry Christmas &amp; Happy New Year! Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$177.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$125.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$132.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$115.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$61.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$72.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">741lbs @$170.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 21, 2021 - Market Report','','inherit','closed','closed','','3939-revision-v1','','','2021-12-22 19:30:54','2021-12-22 19:30:54','',3939,'https://kingsvillelivestock.com/?p=3941',0,'revision','',0),(3942,2,'2021-12-22 19:30:54','2021-12-22 19:30:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 21, 2021,</strong> 1650 hd;Â  last week 3601 hd; a year ago 898 hd. All classes of feeder cattle sold steady, except for 550-750lbs steers sold steady-$5 higher. There was good buyer activity throughout the day. No sale, Tuesday Dec. 28th.Special calf &amp; yearling sale January 4th.Â  Merry Christmas &amp; Happy New Year! Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$177.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$125.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$132.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$115.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$61.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$72.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">741lbs @$170.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 14, 2021 - Market Report','','inherit','closed','closed','','3939-revision-v1','','','2021-12-22 19:30:54','2021-12-22 19:30:54','',3939,'https://kingsvillelivestock.com/?p=3942',0,'revision','',0),(3943,2,'2021-12-22 19:30:57','2021-12-22 19:30:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 21, 2021,</strong> 1650 hd;Â  last week 3601 hd; a year ago 898 hd. All classes of feeder cattle sold steady, except for 550-750lbs steers sold steady-$5 higher. There was good buyer activity throughout the day. No sale, Tuesday Dec. 28th.Special calf &amp; yearling sale January 4th.Â  Merry Christmas &amp; Happy New Year! Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$177.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$142.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$159.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$125.00-$146.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$132.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$115.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$61.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$41.00 - $50.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$72.00 - $98.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 204px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">741lbs @$170.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 21, 2021 - Market Report','','inherit','closed','closed','','3939-revision-v1','','','2021-12-22 19:30:57','2021-12-22 19:30:57','',3939,'https://kingsvillelivestock.com/?p=3943',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (3945,2,'2022-01-03 18:18:44','2022-01-03 18:18:44','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 8th @ 8:30 am <span style=\"color: #ff0000;\">- Canceled!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 8th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-01-03 18:18:44','2022-01-03 18:18:44','',639,'https://kingsvillelivestock.com/?p=3945',0,'revision','',0),(3946,2,'2022-01-03 18:20:03','2022-01-03 18:20:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 8th @ 8:30 am <span style=\"color: #ff0000;\">- Canceled!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 8th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-01-03 18:20:03','2022-01-03 18:20:03','',1967,'https://kingsvillelivestock.com/?p=3946',0,'revision','',0),(3947,2,'2022-01-03 18:21:09','2022-01-03 18:21:09','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.14.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<h1><span style=\"color: #ff0000;\">Â Check back for upcoming sale dates!</span></h1>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-01-03 18:21:09','2022-01-03 18:21:09','',1450,'https://kingsvillelivestock.com/?p=3947',0,'revision','',0),(3948,2,'2022-01-03 20:21:03','2022-01-03 20:21:03','','Tuesday, February 4th Feeder Cattle','','inherit','closed','closed','','tuesday-february-4th-feeder-cattle','','','2022-01-03 20:21:03','2022-01-03 20:21:03','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/01/Tuesday-February-4th-Feeder-Cattle.pdf',0,'attachment','application/pdf',0),(3950,2,'2022-01-03 20:23:12','2022-01-03 20:23:12','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/Tuesday-February-4th-Feeder-Cattle.pdf\" rel=\"attachment wp-att-3948\">Tuesday, February 4th Feeder Cattle</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-01-03 20:23:12','2022-01-03 20:23:12','',2209,'https://kingsvillelivestock.com/?p=3950',0,'revision','',0),(3951,2,'2022-01-03 20:25:46','2022-01-03 20:25:46','','Tuesday,January 4th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayjanuary-4th-feeder-cattle-consignments','','','2022-01-03 20:25:46','2022-01-03 20:25:46','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/01/TuesdayJanuary-4th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3952,2,'2022-01-03 20:25:57','2022-01-03 20:25:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/TuesdayJanuary-4th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-3951\">Tuesday,January 4th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-01-03 20:25:57','2022-01-03 20:25:57','',2209,'https://kingsvillelivestock.com/?p=3952',0,'revision','',0),(3953,2,'2022-01-05 16:11:34','2022-01-05 16:11:34','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 8th @ 8:30 am <span style=\"color: #ff0000;\">- Canceled!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 8th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-01-05 16:11:34','2022-01-05 16:11:34','',639,'https://kingsvillelivestock.com/?p=3953',0,'revision','',0),(3954,2,'2022-01-05 16:12:18','2022-01-05 16:12:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 8th @ 8:30 am <span style=\"color: #ff0000;\">- Canceled!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 8th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-01-05 16:12:18','2022-01-05 16:12:18','',1967,'https://kingsvillelivestock.com/?p=3954',0,'revision','',0),(3955,2,'2022-01-05 17:36:44','2022-01-05 17:36:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 4,2022</strong> 3796 hd;Â  2 weeks ago 1650 hd; a year ago 3568 hd. Compared to two weeks ago, steers &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$169.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$179.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$177.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$167.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$149.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.4\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$153.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$133.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$65.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $99.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">406lbs @$223.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">723lbs @$169.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">759lbs @$166.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161.031px; height: 23px;\">757lbs @$169.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">768lbs @$160.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161.031px; height: 23px;\">778lbs @$159.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">706lbs @$155.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">871lbs @$145.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 4, 2022 - Market Report','','publish','closed','open','','january-4-2022-market-report','','','2022-01-11 03:13:34','2022-01-11 03:13:34','',0,'https://kingsvillelivestock.com/?p=3955',0,'post','',0),(3957,2,'2022-01-05 17:36:44','2022-01-05 17:36:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 4,2022</strong> 1650 hd;Â  2 weeks ago 1650 hd; a year ago 3568 hd. Compared to two weeks ago, steers &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$169.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$179.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$177.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$167.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$149.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$153.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$133.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$65.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $99.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">406lbs @$223.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">723lbs @$169.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">759lbs @$166.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161.031px; height: 23px;\">757lbs @$169.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">768lbs @$160.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161.031px; height: 23px;\">778lbs @$159.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">706lbs @$155.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">871lbs @$145.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 4, 2022 - Market Report','','inherit','closed','closed','','3955-revision-v1','','','2022-01-05 17:36:44','2022-01-05 17:36:44','',3955,'https://kingsvillelivestock.com/?p=3957',0,'revision','',0),(3958,2,'2022-01-05 17:36:44','2022-01-05 17:36:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 4,2022</strong> 1650 hd;Â  2 weeks ago 1650 hd; a year ago 3568 hd. Compared to two weeks ago, steers &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$169.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$179.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$177.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$167.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$149.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$153.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$133.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$65.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $99.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">406lbs @$223.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">723lbs @$169.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">759lbs @$166.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161.031px; height: 23px;\">757lbs @$169.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">768lbs @$160.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161.031px; height: 23px;\">778lbs @$159.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">706lbs @$155.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">871lbs @$145.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 21, 2021 - Market Report','','inherit','closed','closed','','3955-revision-v1','','','2022-01-05 17:36:44','2022-01-05 17:36:44','',3955,'https://kingsvillelivestock.com/?p=3958',0,'revision','',0),(3959,2,'2022-01-05 17:36:47','2022-01-05 17:36:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 4,2022</strong> 1650 hd;Â  2 weeks ago 1650 hd; a year ago 3568 hd. Compared to two weeks ago, steers &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$169.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$179.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$177.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$167.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$149.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$153.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$133.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$65.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $99.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">406lbs @$223.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">723lbs @$169.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">759lbs @$166.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161.031px; height: 23px;\">757lbs @$169.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">768lbs @$160.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161.031px; height: 23px;\">778lbs @$159.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">706lbs @$155.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">871lbs @$145.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 4, 2022 - Market Report','','inherit','closed','closed','','3955-revision-v1','','','2022-01-05 17:36:47','2022-01-05 17:36:47','',3955,'https://kingsvillelivestock.com/?p=3959',0,'revision','',0),(3961,2,'2022-01-10 19:17:58','2022-01-10 19:17:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-01-10 19:17:58','2022-01-10 19:17:58','',639,'https://kingsvillelivestock.com/?p=3961',0,'revision','',0),(3962,2,'2022-01-10 19:19:24','2022-01-10 19:19:24','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-01-10 19:19:24','2022-01-10 19:19:24','',1967,'https://kingsvillelivestock.com/?p=3962',0,'revision','',0),(3963,2,'2022-01-10 19:21:00','2022-01-10 19:21:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-01-10 19:21:00','2022-01-10 19:21:00','',639,'https://kingsvillelivestock.com/?p=3963',0,'revision','',0),(3964,2,'2022-01-10 20:00:13','2022-01-10 20:00:13','','January 22,2022 Cow Sale','','inherit','closed','closed','','january-222022-cow-sale','','','2022-01-10 20:00:13','2022-01-10 20:00:13','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale.pdf',0,'attachment','application/pdf',0),(3965,2,'2022-01-10 20:00:24','2022-01-10 20:00:24','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale.pdf\" rel=\"attachment wp-att-3964\">January 22,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-01-10 20:00:24','2022-01-10 20:00:24','',639,'https://kingsvillelivestock.com/?p=3965',0,'revision','',0),(3966,2,'2022-01-10 20:01:31','2022-01-10 20:01:31','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale.pdf\" rel=\"attachment wp-att-3964\">January 22,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-01-10 20:01:31','2022-01-10 20:01:31','',1967,'https://kingsvillelivestock.com/?p=3966',0,'revision','',0),(3967,2,'2022-01-10 20:02:01','2022-01-10 20:02:01','','Tuesday, January 11th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-january-11th-feeder-cattle-consignments','','','2022-01-10 20:02:01','2022-01-10 20:02:01','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/01/Tuesday-January-11th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3968,2,'2022-01-10 20:04:00','2022-01-10 20:04:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/Tuesday-January-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-3967\">Tuesday, January 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.5\" _module_preset=\"default\" column_structure=\"1_3,2_3\"][et_pb_column _builder_version=\"4.14.5\" _module_preset=\"default\" type=\"1_3\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #0000ff;\">Â Special Cow &amp; Bull Sale-Saturday, January 22nd @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.14.5\" _module_preset=\"default\" type=\"2_3\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Barnes Farms: </b><b>1 </b>Blk 3 yr old Angus BullsÂ </li>\n<li><b>Parkhurst Farms Complete Dispersal</b>: <b>1</b> 3.5 yr old Reg. Blk Angus Bulls originated off Mead Farms. <b>1 </b>4 yr old Reg Blk Angus Bull originated off Ogden Ranch</li>\n<li><b>Cornell Farms Complete Dispersal:</b> <b>1 </b>Blk Balancer 3 yr old Brent Foster Bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Diamond X Farms: </b><b>8 </b>Blk Angus Bred Heifers,3rd Period. Start calving Feb. 10th for 45 days. OCV, Pelvic measured, scourÂ  guard.</li>\n<li><b>Lynde Bros: </b><b>30</b> Blk-Bwf 5-6 yr old cows,3rd period. Bred Blk Angus Bulls &amp; start calving March 1st <b>5</b> Blk-Bwf 5-6 yr old cows w/ 250lbs calves at side.Â </li>\n<li><b>Ferguson Farms</b><b>: 20</b> Blk 4-6 yr old cows, 3rd period <b>20</b> Blk 7-SS cows,3rd period. Bred to Spalding Sim-Angus or Crooks Sim-Angus Bulls. Start calving March 1st. Had all shots</li>\n<li><b>Arwood Farms:</b> <b>27 </b>Blk-Bwf 6-SS cows,3rd period. Bred Blk Angus Bulls. Start calving March 1st. <b>5</b> Blk 6-SS cows w/250lbs calves at side.Â </li>\n<li><b>Drew Farms</b><b>:</b> <b>20</b> Blk-Bwf 3-4 yr old cows, 3rd period. <b>20</b> Blk-Bwf 5-6 yr old, 3rd period. Cows bred to Miller Angus Bulls. <b>5</b> Blk-Bwf 3-5 yr old cows w/250-300lbs at side. Gentle w/ all shots</li>\n<li><b>Luther Farms</b>: <b>12</b> Blk 5-7 yr old w/ fall calves at side <b>35 </b>Blk-Bwf 4-6 yr old cows,3rd period. <b>16 </b>Hereford 1100-1200lbs bred heifers, 3rd period. <b>12</b> Blk Balancer 1100-1200lbs bred heifers, 3rd period<b> 4</b> Red Balancer 1100-1200lbs bred heifers, 3rd period. All cows bred Blk Bulls &amp; heifers bred LBWT Blk Angus Bulls. Start calving March 15thÂ </li>\n<li><b>Thomas Farms:</b> <b>15</b> Blk-Bwf 3-5 yr old cows w/200lbs calves at side</li>\n<li><b>Walter Farms</b><b>:</b> <b>20</b> Fancy Blk Angus 1100lbs bred heifers,3rd period. Bred LBWT Angus Bulls. Start calving March 1st for 45 days.Â </li>\n<li><b>Stevens Farms</b>: <b>20 </b>Bwf 5-6 yr old cows, 2nd &amp; 3rd period. Bred Blk Balancer BullsÂ </li>\n<li><b>Miller Farms:</b> <b>25</b> Fancy Blk 3-6 yr old Cows,3rd period. Bred Angus BullsÂ </li>\n<li><b>Barnes Farms</b><b>:</b> <b>8</b> Blk-Bwf 4-5 yr old cows, 3rd period. <b>8 </b>Blk-Bwf 6-SS cows, 3rd period. All cows bred Blk Angus bulls. Start calving March 1stÂ </li>\n<li><b>Parkhurst Farms Complete Dispersal</b><b>: 22 </b>Blk-Red 3-7 yr old cows w/fall calves at side. All calves born Sept-Nov &amp; had 1 rd shots. Bulls turned on Dec. 1st. 10 Blk-Red 2 yr old 1050lbs bred heifers,3rd period. <b>32</b> Blk-Red 5-7 yr old cows, 3rd period. All spring bred cows &amp; heifers. Heifers start calving end of March for 75 days. All cows gentle &amp; had a very good health program. Nice set of bred cows &amp; pairs.Â </li>\n<li><b>Andrew Farms</b><b>:</b> <b>34</b> fancy purebred 1150-1200lbs bred heifers. Prior to breeding heifers were pelvic measure &amp; had all shots. Have had a scour-guard shot Heifers are AIâ€™d to calve March 5th to the bull Boomtime. All heifers are home-raised &amp; carry one iron. Heifers are gentle, easy going &amp; nice quality.Â </li>\n<li><b>Thornton Farms</b><b>:</b> <b>30</b> Blk Angus 3-4 yr old cows, 2nd period 30 Blk Angus 5-6 yr old, 2nd period. All cows bred Sim-Angus &amp; Blk Balancer BullsÂ </li>\n<li><b>Smith Farms:</b> <b>15 </b>Blk-Bwf 3-6 yr old cows, 2nd &amp; 3rd period 10 Red-Rwf 3-6 yr old cows, 2nd &amp; 3rd period. Bred to Blk &amp; Red Gelv. BullsÂ </li>\n<li><b>Blayton Farms:</b> <b>14 </b>Blk 3 yr old 1150lbs cows, all born spring 2019. All cows AIâ€™d Blk Angus bulls start calving March 18th &amp; cleaned up w/ Reg Angus bulls for 45 days. All born spring 2019 &amp; had all shots. Cows weaned a nice set of calves.</li>\n<li><b>Cornell Farms Complete Dispersal:</b> <b>20 </b>Blk 3-7 yr old spring calving cows. Start calving middle of February for 60 days. <b>25 </b>Blk 3-SS cows w/ fall calves at side. <b>5 </b>Red 3-5 yr old cows w/fall calves at side. Bulls turned in Nov. 25th. All pairs ear tagged to match. All cows bred &amp; sired by Brent Foster Balancer bulls. Kept back heifers for several years, never been off farm. All vet work done by Koch-Stiggie Vet Clinic. Selling due to switching to row crops.</li>\n<li><b>S&amp;S Farms:</b> <b>48 </b>Blk-Red 3-4 yr old cows, 3rd period. Bred Blk Angus Bulls</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-01-10 20:04:00','2022-01-10 20:04:00','',2209,'https://kingsvillelivestock.com/?p=3968',0,'revision','',0),(3969,2,'2022-01-11 03:13:34','2022-01-11 03:13:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 4,2022</strong> 3796 hd;Â  2 weeks ago 1650 hd; a year ago 3568 hd. Compared to two weeks ago, steers &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$169.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$179.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$177.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$167.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$149.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.4\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$153.00-$167.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$133.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$65.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $55.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $99.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">406lbs @$223.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">723lbs @$169.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">759lbs @$166.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161.031px; height: 23px;\">757lbs @$169.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">768lbs @$160.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161.031px; height: 23px;\">778lbs @$159.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">706lbs @$155.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">871lbs @$145.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 4, 2022 - Market Report','','inherit','closed','closed','','3955-revision-v1','','','2022-01-11 03:13:34','2022-01-11 03:13:34','',3955,'https://kingsvillelivestock.com/?p=3969',0,'revision','',0),(3971,2,'2022-01-12 15:04:30','2022-01-12 15:04:30','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale.pdf\" rel=\"attachment wp-att-3964\">January 22,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-01-12 15:04:30','2022-01-12 15:04:30','',639,'https://kingsvillelivestock.com/?p=3971',0,'revision','',0),(3972,2,'2022-01-12 15:05:11','2022-01-12 15:05:11','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale.pdf\" rel=\"attachment wp-att-3964\">January 22,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-01-12 15:05:11','2022-01-12 15:05:11','',1967,'https://kingsvillelivestock.com/?p=3972',0,'revision','',0),(3973,2,'2022-01-12 17:06:25','2022-01-12 17:06:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 11,2022</strong> 3782 hd; Â  Last week; 3296 hd; a year ago 3462 hd. Weaned steers 650lbs &amp; down sold $3-$5 higher &amp; 700lbs &amp; up sold steady. Heifers weighing 400lbs-625lbs sold $2-$5 higher. All other classes sold steady. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$213.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$224.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$158.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$133.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$100.00-$120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$63.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$35.00 - $49.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $103.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">453lbs @$221.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">611lbs @$184.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">742lbs @$172.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">783lbs @$160.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">792lbs @$160.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">824lbs @$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">647lbs @$156.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">734lbs @$151.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 11, 2022 - Market Report','','publish','closed','open','','january-11-2022-market-report','','','2022-01-12 17:06:29','2022-01-12 17:06:29','',0,'https://kingsvillelivestock.com/?p=3973',0,'post','',0),(3975,2,'2022-01-12 17:06:25','2022-01-12 17:06:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 11,2022</strong> 3782 hd; Â  Last week; 3296 hd; a year ago 3462 hd. Weaned steers 650lbs &amp; down sold $3-$5 higher &amp; 700lbs &amp; up sold steady. Heifers weighing 400lbs-625lbs sold $2-$5 higher. All other classes sold steady. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$213.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$224.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$158.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$133.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$100.00-$120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$63.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$35.00 - $49.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $103.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">453lbs @$221.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">611lbs @$184.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">742lbs @$172.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">783lbs @$160.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">792lbs @$160.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">824lbs @$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">647lbs @$156.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">734lbs @$151.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 11, 2022 - Market Report','','inherit','closed','closed','','3973-revision-v1','','','2022-01-12 17:06:25','2022-01-12 17:06:25','',3973,'https://kingsvillelivestock.com/?p=3975',0,'revision','',0),(3976,2,'2022-01-12 17:06:25','2022-01-12 17:06:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 11,2022</strong> 3782 hd; Â  Last week; 3296 hd; a year ago 3462 hd. Weaned steers 650lbs &amp; down sold $3-$5 higher &amp; 700lbs &amp; up sold steady. Heifers weighing 400lbs-625lbs sold $2-$5 higher. All other classes sold steady. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$213.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$224.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$158.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$133.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$100.00-$120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$63.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$35.00 - $49.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $103.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">453lbs @$221.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">611lbs @$184.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">742lbs @$172.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">783lbs @$160.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">792lbs @$160.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">824lbs @$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">647lbs @$156.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">734lbs @$151.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 4, 2022 - Market Report','','inherit','closed','closed','','3973-revision-v1','','','2022-01-12 17:06:25','2022-01-12 17:06:25','',3973,'https://kingsvillelivestock.com/?p=3976',0,'revision','',0),(3977,2,'2022-01-12 17:06:29','2022-01-12 17:06:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 11,2022</strong> 3782 hd; Â  Last week; 3296 hd; a year ago 3462 hd. Weaned steers 650lbs &amp; down sold $3-$5 higher &amp; 700lbs &amp; up sold steady. Heifers weighing 400lbs-625lbs sold $2-$5 higher. All other classes sold steady. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$213.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$224.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$158.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$122.00-$133.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$150.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$100.00-$120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$63.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $62.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$35.00 - $49.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $103.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">453lbs @$221.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">611lbs @$184.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">742lbs @$172.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">783lbs @$160.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">792lbs @$160.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">824lbs @$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">647lbs @$156.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">734lbs @$151.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 11, 2022 - Market Report','','inherit','closed','closed','','3973-revision-v1','','','2022-01-12 17:06:29','2022-01-12 17:06:29','',3973,'https://kingsvillelivestock.com/?p=3977',0,'revision','',0),(3978,2,'2022-01-12 20:09:37','2022-01-12 20:09:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/Tuesday-January-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-3967\">Tuesday, January 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Â Special Cow &amp; Bull Sale-Saturday, January 22nd @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Barnes Farms: </b><b>1 </b>Blk 3 yr old Angus Bulls</li>\n<li><b>Parkhurst Farms Complete Dispersal</b>: <b>1</b> 3.5 yr old Reg. Blk Angus Bulls originated off Mead Farms. <b>1 </b>4 yr old Reg Blk Angus Bull originated off Ogden Ranch</li>\n<li><b>Cornell Farms Complete Dispersal:</b> <b>1 </b>Blk Balancer 3 yr old Brent Foster Bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Diamond X Farms: </b><b>8 </b>Blk Angus Bred Heifers,3rd Period. Start calving Feb. 10th for 45 days. OCV, Pelvic measured, scourÂ  guard.</li>\n<li><b>Lynde Bros: </b><b>30</b> Blk-Bwf 5-6 yr old cows,3rd period. Bred Blk Angus Bulls &amp; start calving March 1st <b>5</b> Blk-Bwf 5-6 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Ferguson Farms</b><b>: 20</b> Blk 4-6 yr old cows, 3rd period <b>20</b> Blk 7-SS cows,3rd period. Bred to Spalding Sim-Angus or Crooks Sim-Angus Bulls. Start calving March 1st. Had all shots</li>\n<li><b>Arwood Farms:</b> <b>27 </b>Blk-Bwf 6-SS cows,3rd period. Bred Blk Angus Bulls. Start calving March 1st. <b>5</b> Blk 6-SS cows w/250lbs calves at side.</li>\n<li><b>Drew Farms</b><b>:</b> <b>20</b> Blk-Bwf 3-4 yr old cows, 3rd period. <b>20</b> Blk-Bwf 5-6 yr old, 3rd period. Cows bred to Miller Angus Bulls. <b>5</b> Blk-Bwf 3-5 yr old cows w/250-300lbs at side. Gentle w/ all shots</li>\n<li><b>Luther Farms</b>: <b>12</b> Blk 5-7 yr old w/ fall calves at side <b>35 </b>Blk-Bwf 4-6 yr old cows,3rd period. <b>16 </b>Hereford 1100-1200lbs bred heifers, 3rd period. <b>12</b> Blk Balancer 1100-1200lbs bred heifers, 3rd period<b> 4</b> Red Balancer 1100-1200lbs bred heifers, 3rd period. All cows bred Blk Bulls &amp; heifers bred LBWT Blk Angus Bulls. Start calving March 15th</li>\n<li><b>Thomas Farms:</b> <b>15</b> Blk-Bwf 3-5 yr old cows w/200lbs calves at side</li>\n<li><b>Walter Farms</b><b>:</b> <b>20</b> Fancy Blk Angus 1100lbs bred heifers,3rd period. Bred LBWT Angus Bulls. Start calving March 1st for 45 days.</li>\n<li><b>Stevens Farms</b>: <b>20 </b>Bwf 5-6 yr old cows, 2nd &amp; 3rd period. Bred Blk Balancer Bulls</li>\n<li><b>Miller Farms:</b> <b>25</b> Fancy Blk 3-6 yr old Cows,3rd period. Bred Angus Bulls</li>\n<li><b>Barnes Farms</b><b>:</b> <b>8</b> Blk-Bwf 4-5 yr old cows, 3rd period. <b>8 </b>Blk-Bwf 6-SS cows, 3rd period. All cows bred Blk Angus bulls. Start calving March 1st</li>\n<li><b>Parkhurst Farms Complete Dispersal</b><b>: 22 </b>Blk-Red 3-7 yr old cows w/fall calves at side. All calves born Sept-Nov &amp; had 1 rd shots. Bulls turned on Dec. 1st. 10 Blk-Red 2 yr old 1050lbs bred heifers,3rd period. <b>32</b> Blk-Red 5-7 yr old cows, 3rd period. All spring bred cows &amp; heifers. Heifers start calving end of March for 75 days. All cows gentle &amp; had a very good health program. Nice set of bred cows &amp; pairs.</li>\n<li><b>Andrew Farms</b><b>:</b> <b>34</b> fancy purebred 1150-1200lbs bred heifers. Prior to breeding heifers were pelvic measure &amp; had all shots. Have had a scour-guard shot Heifers are AIâ€™d to calve March 5th to the bull Boomtime. All heifers are home-raised &amp; carry one iron. Heifers are gentle, easy going &amp; nice quality.</li>\n<li><b>Thornton Farms</b><b>:</b> <b>30</b> Blk Angus 3-4 yr old cows, 2nd period 30 Blk Angus 5-6 yr old, 2nd period. All cows bred Sim-Angus &amp; Blk Balancer Bulls</li>\n<li><b>Smith Farms:</b> <b>15 </b>Blk-Bwf 3-6 yr old cows, 2nd &amp; 3rd period 10 Red-Rwf 3-6 yr old cows, 2nd &amp; 3rd period. Bred to Blk &amp; Red Gelv. Bulls</li>\n<li><b>Blayton Farms:</b> <b>14 </b>Blk 3 yr old 1150lbs cows, all born spring 2019. All cows AIâ€™d Blk Angus bulls start calving March 18th &amp; cleaned up w/ Reg Angus bulls for 45 days. All born spring 2019 &amp; had all shots. Cows weaned a nice set of calves.</li>\n<li><b>Cornell Farms Complete Dispersal:</b> <b>20 </b>Blk 3-7 yr old spring calving cows. Start calving middle of February for 60 days. <b>25 </b>Blk 3-SS cows w/ fall calves at side. <b>5 </b>Red 3-5 yr old cows w/fall calves at side. Bulls turned in Nov. 25th. All pairs ear tagged to match. All cows bred &amp; sired by Brent Foster Balancer bulls. Kept back heifers for several years, never been off farm. All vet work done by Koch-Stiggie Vet Clinic. Selling due to switching to row crops.</li>\n<li><b>S&amp;S Farms:</b> <b>48 </b>Blk-Red 3-4 yr old cows, 3rd period. Bred Blk Angus Bulls</li>\n<li><b>Twenter Farms:</b> <b>21 </b>Blk-Bwf 1150lbs bred heifers. Bred LBWT Angus Bulls. Heifers were pelvic measured &amp; had shots. Nice set of heifers.</li>\n<li><b>Jensen Farms:</b> <b>50</b> Fancy Blk 1100lbs Angus heifers, 3rd period. AIâ€™s bred to Rainmaker Angus Bull &amp; cleaned up with Marshall &amp; Feiner Angus Bull. Start calving February 1st for 45 days.Â </li>\n<li><b>Bradley Cattle:</b> <b>10</b> Blk Angus Bred heifers, 3rd period. Bred LBWT Angus Bulls. Start calving February 1st.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-01-12 20:09:37','2022-01-12 20:09:37','',2209,'https://kingsvillelivestock.com/?p=3978',0,'revision','',0),(3979,2,'2022-01-12 20:10:13','2022-01-12 20:10:13','','January 22,2022 Cow Sale','','inherit','closed','closed','','january-222022-cow-sale-2','','','2022-01-12 20:10:13','2022-01-12 20:10:13','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(3980,2,'2022-01-12 20:10:29','2022-01-12 20:10:29','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-3979\">January 22nd Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-01-12 20:10:29','2022-01-12 20:10:29','',639,'https://kingsvillelivestock.com/?p=3980',0,'revision','',0),(3981,2,'2022-01-12 20:11:11','2022-01-12 20:11:11','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-3979\">January 22nd </a></strong><strong><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-3979\">Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-01-12 20:11:11','2022-01-12 20:11:11','',1967,'https://kingsvillelivestock.com/?p=3981',0,'revision','',0),(3982,2,'2022-01-12 20:17:23','2022-01-12 20:17:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/Tuesday-January-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-3967\">Tuesday, January 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Â Special Cow &amp; Bull Sale-Saturday, January 22nd @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Barnes Farms: </b><b>1 </b>Blk 3 yr old Angus Bulls</li>\n<li><b>Parkhurst Farms Complete Dispersal</b>: <b>1</b> 3.5 yr old Reg. Blk Angus Bulls originated off Mead Farms. <b>1 </b>4 yr old Reg Blk Angus Bull originated off Ogden Ranch</li>\n<li><b>Cornell Farms Complete Dispersal:</b> <b>1 </b>Blk Balancer 3 yr old Brent Foster Bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Diamond X Farms: </b><b>8 </b>Blk Angus Bred Heifers,3rd Period. Start calving Feb. 10th for 45 days. OCV, Pelvic measured, scourÂ  guard.</li>\n<li><b>Lynde Bros: </b><b>30</b> Blk-Bwf 5-6 yr old cows,3rd period. Bred Blk Angus Bulls &amp; start calving March 1st <b>5</b> Blk-Bwf 5-6 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Ferguson Farms</b><b>: 20</b> Blk 4-6 yr old cows, 3rd period <b>20</b> Blk 7-SS cows,3rd period. Bred to Spalding Sim-Angus or Crooks Sim-Angus Bulls. Start calving March 1st. Had all shots</li>\n<li><b>Arwood Farms:</b> <b>27 </b>Blk-Bwf 6-SS cows,3rd period. Bred Blk Angus Bulls. Start calving March 1st. <b>5</b> Blk 6-SS cows w/250lbs calves at side.</li>\n<li><b>Drew Farms</b><b>:</b> <b>20</b> Blk-Bwf 3-4 yr old cows, 3rd period. <b>20</b> Blk-Bwf 5-6 yr old, 3rd period. Cows bred to Miller Angus Bulls. <b>5</b> Blk-Bwf 3-5 yr old cows w/250-300lbs at side. Gentle w/ all shots</li>\n<li><b>Luther Farms</b>: Â <b>35 </b>Blk-Bwf 4-6 yr old cows,3rd period. <b>16 </b>Hereford 1100-1200lbs bred heifers, 3rd period. <b>12</b> Blk Balancer 1100-1200lbs bred heifers, 3rd period<b> 4</b> Red Balancer 1100-1200lbs bred heifers, 3rd period. All cows bred Blk Bulls &amp; heifers bred LBWT Blk Angus Bulls. Start calving March 15th</li>\n<li><b>Thomas Farms:</b> <b>15</b> Blk-Bwf 3-5 yr old cows w/200lbs calves at side</li>\n<li><b>Walter Farms</b><b>:</b> <b>20</b> Fancy Blk Angus 1100lbs bred heifers,3rd period. Bred LBWT Angus Bulls. Start calving March 1st for 45 days.</li>\n<li><b>Stevens Farms</b>: <b>20 </b>Bwf 5-6 yr old cows, 2nd &amp; 3rd period. Bred Blk Balancer Bulls</li>\n<li><b>Miller Farms:</b> <b>25</b> Fancy Blk 3-6 yr old Cows,3rd period. Bred Angus Bulls</li>\n<li><b>Barnes Farms</b><b>:</b> <b>8</b> Blk-Bwf 4-5 yr old cows, 3rd period. <b>8 </b>Blk-Bwf 6-SS cows, 3rd period. All cows bred Blk Angus bulls. Start calving March 1st</li>\n<li><b>Parkhurst Farms Complete Dispersal</b><b>: 22 </b>Blk-Red 3-7 yr old cows w/fall calves at side. All calves born Sept-Nov &amp; had 1 rd shots. Bulls turned on Dec. 1st. 10 Blk-Red 2 yr old 1050lbs bred heifers,3rd period. <b>32</b> Blk-Red 5-7 yr old cows, 3rd period. All spring bred cows &amp; heifers. Heifers start calving end of March for 75 days. All cows gentle &amp; had a very good health program. Nice set of bred cows &amp; pairs.</li>\n<li><b>Andrew Farms</b><b>:</b> <b>34</b> fancy purebred 1150-1200lbs bred heifers. Prior to breeding heifers were pelvic measure &amp; had all shots. Have had a scour-guard shot Heifers are AIâ€™d to calve March 5th to the bull Boomtime. All heifers are home-raised &amp; carry one iron. Heifers are gentle, easy going &amp; nice quality.</li>\n<li><b>Thornton Farms</b><b>:</b> <b>30</b> Blk Angus 3-4 yr old cows, 2nd period 30 Blk Angus 5-6 yr old, 2nd period. All cows bred Sim-Angus &amp; Blk Balancer Bulls</li>\n<li><b>Smith Farms:</b> <b>15 </b>Blk-Bwf 3-6 yr old cows, 2nd &amp; 3rd period 10 Red-Rwf 3-6 yr old cows, 2nd &amp; 3rd period. Bred to Blk &amp; Red Gelv. Bulls</li>\n<li><b>Blayton Farms:</b> <b>14 </b>Blk 3 yr old 1150lbs cows, all born spring 2019. All cows AIâ€™d Blk Angus bulls start calving March 18th &amp; cleaned up w/ Reg Angus bulls for 45 days. All born spring 2019 &amp; had all shots. Cows weaned a nice set of calves.</li>\n<li><b>Cornell Farms Complete Dispersal:</b> <b>20 </b>Blk 3-7 yr old spring calving cows. Start calving middle of February for 60 days. <b>25 </b>Blk 3-SS cows w/ fall calves at side. <b>5 </b>Red 3-5 yr old cows w/fall calves at side. Bulls turned in Nov. 25th. All pairs ear tagged to match. All cows bred &amp; sired by Brent Foster Balancer bulls. Kept back heifers for several years, never been off farm. All vet work done by Koch-Stiggie Vet Clinic. Selling due to switching to row crops.</li>\n<li><b>S&amp;S Farms:</b> <b>48 </b>Blk-Red 3-4 yr old cows, 3rd period. Bred Blk Angus Bulls</li>\n<li><b>Twenter Farms:</b> <b>21 </b>Blk-Bwf 1150lbs bred heifers. Bred LBWT Angus Bulls. Heifers were pelvic measured &amp; had shots. Nice set of heifers.</li>\n<li><b>Jensen Farms:</b> <b>50</b> Fancy Blk 1100lbs Angus heifers, 3rd period. AIâ€™s bred to Rainmaker Angus Bull &amp; cleaned up with Marshall &amp; Feiner Angus Bull. Start calving February 1st for 45 days.</li>\n<li><b>Bradley Cattle:</b> <b>10</b> Blk Angus Bred heifers, 3rd period. Bred LBWT Angus Bulls. Start calving February 1st.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-01-12 20:17:23','2022-01-12 20:17:23','',2209,'https://kingsvillelivestock.com/?p=3982',0,'revision','',0),(3983,2,'2022-01-12 20:18:05','2022-01-12 20:18:05','','January 22,2022 Cow Sale','','inherit','closed','closed','','january-222022-cow-sale-3','','','2022-01-12 20:18:05','2022-01-12 20:18:05','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(3984,2,'2022-01-12 20:18:16','2022-01-12 20:18:16','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-3983\">January 22,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-01-12 20:18:16','2022-01-12 20:18:16','',639,'https://kingsvillelivestock.com/?p=3984',0,'revision','',0),(3985,2,'2022-01-12 20:19:10','2022-01-12 20:19:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-3983\">January 22,2022 Cow Sale</a></strong><strong><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-01-12 20:19:10','2022-01-12 20:19:10','',1967,'https://kingsvillelivestock.com/?p=3985',0,'revision','',0),(3986,2,'2022-01-12 20:21:03','2022-01-12 20:21:03','','January 22,2022 Cow Sale','','inherit','closed','closed','','january-222022-cow-sale-4','','','2022-01-12 20:21:03','2022-01-12 20:21:03','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale-3.pdf',0,'attachment','application/pdf',0),(3987,2,'2022-01-12 20:21:17','2022-01-12 20:21:17','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale-3.pdf\" rel=\"attachment wp-att-3986\">January 22nd Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-01-12 20:21:17','2022-01-12 20:21:17','',639,'https://kingsvillelivestock.com/?p=3987',0,'revision','',0),(3988,2,'2022-01-12 20:22:20','2022-01-12 20:22:20','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale-3.pdf\" rel=\"attachment wp-att-3986\">January 22nd Cow Sale</a></strong><strong><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-01-12 20:22:20','2022-01-12 20:22:20','',1967,'https://kingsvillelivestock.com/?p=3988',0,'revision','',0),(3989,2,'2022-01-14 02:59:54','2022-01-14 02:59:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/Tuesday-January-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-3967\">Tuesday, January 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Â Special Cow &amp; Bull Sale-Saturday, January 22nd @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Barnes Farms: </b><b>1 </b>Blk 3 yr old Angus Bulls</li>\n<li><b>Parkhurst Farms Complete Dispersal</b>: <b>1</b> 3.5 yr old Reg. Blk Angus Bulls originated off Mead Farms. <b>1 </b>4 yr old Reg Blk Angus Bull originated off Ogden Ranch</li>\n<li><b>Cornell Farms Complete Dispersal:</b> <b>1 </b>Blk Balancer 3 yr old Brent Foster Bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Diamond X Farms: </b><b>8 </b>Blk Angus Bred Heifers,3rd Period. Start calving Feb. 10th for 45 days. OCV, Pelvic measured, scourÂ  guard.</li>\n<li><b>Lynde Bros: </b><b>30</b> Blk-Bwf 5-6 yr old cows,3rd period. Bred Blk Angus Bulls &amp; start calving March 1st <b>5</b> Blk-Bwf 5-6 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Ferguson Farms</b><b>: 20</b> Blk 4-6 yr old cows, 3rd period <b>20</b> Blk 7-SS cows,3rd period. Bred to Spalding Sim-Angus or Crooks Sim-Angus Bulls. Start calving March 1st. Had all shots</li>\n<li><b>Arwood Farms:</b> <b>27 </b>Blk-Bwf 6-SS cows,3rd period. Bred Blk Angus Bulls. Start calving March 1st. <b>5</b> Blk 6-SS cows w/250lbs calves at side.</li>\n<li><b>Drew Farms</b><b>:</b> <b>20</b> Blk-Bwf 3-4 yr old cows, 3rd period. <b>20</b> Blk-Bwf 5-6 yr old, 3rd period. Cows bred to Miller Angus Bulls. <b>5</b> Blk-Bwf 3-5 yr old cows w/250-300lbs at side. Gentle w/ all shots</li>\n<li><b>Luther Farms</b>: Â <b>35 </b>Blk-Bwf 4-6 yr old cows,3rd period. <b>16 </b>BwfÂ 1100-1200lbs bred heifers, 3rd period. <b>12</b> Blk Balancer 1100-1200lbs bred heifers, 3rd period<b> 4</b> Red Balancer 1100-1200lbs bred heifers, 3rd period. All cows bred Blk Bulls &amp; heifers bred LBWT Blk Angus Bulls. Start calving March 15th</li>\n<li><b>Thomas Farms:</b> <b>15</b> Blk-Bwf 3-5 yr old cows w/200lbs calves at side</li>\n<li><b>Walter Farms</b><b>:</b> <b>20</b> Fancy Blk Angus 1100lbs bred heifers,3rd period. Bred LBWT Angus Bulls. Start calving March 1st for 45 days.</li>\n<li><b>Stevens Farms</b>: <b>20 </b>Bwf 5-6 yr old cows, 2nd &amp; 3rd period. Bred Blk Balancer Bulls</li>\n<li><b>Miller Farms:</b> <b>25</b> Fancy Blk 3-6 yr old Cows,3rd period. Bred Angus Bulls</li>\n<li><b>Barnes Farms</b><b>:</b> <b>8</b> Blk-Bwf 4-5 yr old cows, 3rd period. <b>8 </b>Blk-Bwf 6-SS cows, 3rd period. All cows bred Blk Angus bulls. Start calving March 1st</li>\n<li><b>Parkhurst Farms Complete Dispersal</b><b>: 22 </b>Blk-Red 3-7 yr old cows w/fall calves at side. All calves born Sept-Nov &amp; had 1 rd shots. Bulls turned on Dec. 1st. 10 Blk-Red 2 yr old 1050lbs bred heifers,3rd period. <b>32</b> Blk-Red 5-7 yr old cows, 3rd period. All spring bred cows &amp; heifers. Heifers start calving end of March for 75 days. All cows gentle &amp; had a very good health program. Nice set of bred cows &amp; pairs.</li>\n<li><b>Andrew Farms</b><b>:</b> <b>34</b> fancy purebred 1150-1200lbs bred heifers. Prior to breeding heifers were pelvic measure &amp; had all shots. Have had a scour-guard shot Heifers are AIâ€™d to calve March 5th to the bull Boomtime. All heifers are home-raised &amp; carry one iron. Heifers are gentle, easy going &amp; nice quality.</li>\n<li><b>Thornton Farms</b><b>:</b> <b>30</b> Blk Angus 3-4 yr old cows, 2nd period 30 Blk Angus 5-6 yr old, 2nd period. All cows bred Sim-Angus &amp; Blk Balancer Bulls</li>\n<li><b>Smith Farms:</b> <b>15 </b>Blk-Bwf 3-6 yr old cows, 2nd &amp; 3rd period 10 Red-Rwf 3-6 yr old cows, 2nd &amp; 3rd period. Bred to Blk &amp; Red Gelv. Bulls</li>\n<li><b>Blayton Farms:</b> <b>14 </b>Blk 3 yr old 1150lbs cows, all born spring 2019. All cows AIâ€™d Blk Angus bulls start calving March 18th &amp; cleaned up w/ Reg Angus bulls for 45 days. All born spring 2019 &amp; had all shots. Cows weaned a nice set of calves.</li>\n<li><b>Cornell Farms Complete Dispersal:</b> <b>20 </b>Blk 3-7 yr old spring calving cows. Start calving middle of February for 60 days. <b>25 </b>Blk 3-SS cows w/ fall calves at side. <b>5 </b>Red 3-5 yr old cows w/fall calves at side. Bulls turned in Nov. 25th. All pairs ear tagged to match. All cows bred &amp; sired by Brent Foster Balancer bulls. Kept back heifers for several years, never been off farm. All vet work done by Koch-Stiggie Vet Clinic. Selling due to switching to row crops.</li>\n<li><b>S&amp;S Farms:</b> <b>48 </b>Blk-Red 3-4 yr old cows, 3rd period. Bred Blk Angus Bulls</li>\n<li><b>Twenter Farms:</b> <b>21 </b>Blk-Bwf 1150lbs bred heifers. Bred LBWT Angus Bulls. Heifers were pelvic measured &amp; had shots. Nice set of heifers.</li>\n<li><b>Jensen Farms:</b> <b>50</b> Fancy Blk 1100lbs Angus heifers, 3rd period. AIâ€™s bred to Rainmaker Angus Bull &amp; cleaned up with Marshall &amp; Feiner Angus Bull. Start calving February 1st for 45 days.</li>\n<li><b>Bradley Cattle:</b> <b>10</b> Blk Angus Bred heifers, 3rd period. Bred LBWT Angus Bulls. Start calving February 1st.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-01-14 02:59:54','2022-01-14 02:59:54','',2209,'https://kingsvillelivestock.com/?p=3989',0,'revision','',0),(3990,2,'2022-01-14 03:01:34','2022-01-14 03:01:34','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/Tuesday-January-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-3967\">Tuesday, January 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Â Special Cow &amp; Bull Sale-Saturday, January 22nd @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Barnes Farms: </b><b>1 </b>Blk 3 yr old Angus Bulls</li>\n<li><b>Parkhurst Farms Complete Dispersal</b>: <b>1</b> 3.5 yr old Reg. Blk Angus Bulls originated off Mead Farms. <b>1 </b>4 yr old Reg Blk Angus Bull originated off Ogden Ranch</li>\n<li><b>Cornell Farms Complete Dispersal:</b> <b>1 </b>Blk Balancer 3 yr old Brent Foster Bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Diamond X Farms: </b><b>8 </b>Blk Angus Bred Heifers,3rd Period. Start calving Feb. 10th for 45 days. OCV, Pelvic measured, scourÂ  guard.</li>\n<li><b>Lynde Bros: </b><b>30</b> Blk-Bwf 5-6 yr old cows,3rd period. Bred Blk Angus Bulls &amp; start calving March 1st <b>5</b> Blk-Bwf 5-6 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Ferguson Farms</b><b>: 20</b> Blk 4-6 yr old cows, 3rd period <b>20</b> Blk 7-SS cows,3rd period. Bred to Spalding Sim-Angus or Crooks Sim-Angus Bulls. Start calving March 1st. Had all shots</li>\n<li><b>Arwood Farms:</b> <b>27 </b>Blk-Bwf 6-SS cows,3rd period. Bred Blk Angus Bulls. Start calving March 1st. <b>5</b> Blk 6-SS cows w/250lbs calves at side.</li>\n<li><b>Drew Farms</b><b>:</b> <b>20</b> Blk-Bwf 3-4 yr old cows, 3rd period. <b>20</b> Blk-Bwf 5-6 yr old, 3rd period. Cows bred to Miller Angus Bulls. <b>5</b> Blk-Bwf 3-5 yr old cows w/250-300lbs at side. Gentle w/ all shots</li>\n<li><b>Luther Farms</b>: Â <b>35 </b>Blk-Bwf 4-6 yr old cows,3rd period. <b>16 </b>BwfÂ 1100-1200lbs bred heifers, 3rd period. <b>12</b> Blk Balancer 1100-1200lbs bred heifers, 3rd period<b> 4</b> Red Balancer 1100-1200lbs bred heifers, 3rd period. All cows bred Blk Bulls &amp; heifers bred LBWT Blk Angus Bulls. Start calving March 15th. All heifers have had a scour guard shot.Â </li>\n<li><b>Thomas Farms:</b> <b>15</b> Blk-Bwf 3-5 yr old cows w/200lbs calves at side</li>\n<li><b>Walter Farms</b><b>:</b> <b>20</b> Fancy Blk Angus 1100lbs bred heifers,3rd period. Bred LBWT Angus Bulls. Start calving March 1st for 45 days.</li>\n<li><b>Stevens Farms</b>: <b>20 </b>Bwf 5-6 yr old cows, 2nd &amp; 3rd period. Bred Blk Balancer Bulls</li>\n<li><b>Miller Farms:</b> <b>25</b> Fancy Blk 3-6 yr old Cows,3rd period. Bred Angus Bulls</li>\n<li><b>Barnes Farms</b><b>:</b> <b>8</b> Blk-Bwf 4-5 yr old cows, 3rd period. <b>8 </b>Blk-Bwf 6-SS cows, 3rd period. All cows bred Blk Angus bulls. Start calving March 1st</li>\n<li><b>Parkhurst Farms Complete Dispersal</b><b>: 22 </b>Blk-Red 3-7 yr old cows w/fall calves at side. All calves born Sept-Nov &amp; had 1 rd shots. Bulls turned on Dec. 1st. 10 Blk-Red 2 yr old 1050lbs bred heifers,3rd period. <b>32</b> Blk-Red 5-7 yr old cows, 3rd period. All spring bred cows &amp; heifers. Heifers start calving end of March for 75 days. All cows gentle &amp; had a very good health program. Nice set of bred cows &amp; pairs.</li>\n<li><b>Andrew Farms</b><b>:</b> <b>34</b> fancy purebred 1150-1200lbs bred heifers. Prior to breeding heifers were pelvic measure &amp; had all shots. Have had a scour-guard shot Heifers are AIâ€™d to calve March 5th to the bull Boomtime. All heifers are home-raised &amp; carry one iron. Heifers are gentle, easy going &amp; nice quality.</li>\n<li><b>Thornton Farms</b><b>:</b> <b>30</b> Blk Angus 3-4 yr old cows, 2nd period 30 Blk Angus 5-6 yr old, 2nd period. All cows bred Sim-Angus &amp; Blk Balancer Bulls</li>\n<li><b>Smith Farms:</b> <b>15 </b>Blk-Bwf 3-6 yr old cows, 2nd &amp; 3rd period 10 Red-Rwf 3-6 yr old cows, 2nd &amp; 3rd period. Bred to Blk &amp; Red Gelv. Bulls</li>\n<li><b>Blayton Farms:</b> <b>14 </b>Blk 3 yr old 1150lbs cows, all born spring 2019. All cows AIâ€™d Blk Angus bulls start calving March 18th &amp; cleaned up w/ Reg Angus bulls for 45 days. All born spring 2019 &amp; had all shots. Cows weaned a nice set of calves.</li>\n<li><b>Cornell Farms Complete Dispersal:</b> <b>20 </b>Blk 3-7 yr old spring calving cows. Start calving middle of February for 60 days. <b>25 </b>Blk 3-SS cows w/ fall calves at side. <b>5 </b>Red 3-5 yr old cows w/fall calves at side. Bulls turned in Nov. 25th. All pairs ear tagged to match. All cows bred &amp; sired by Brent Foster Balancer bulls. Kept back heifers for several years, never been off farm. All vet work done by Koch-Stiggie Vet Clinic. Selling due to switching to row crops.</li>\n<li><b>S&amp;S Farms:</b> <b>48 </b>Blk-Red 3-4 yr old cows, 3rd period. Bred Blk Angus Bulls</li>\n<li><b>Twenter Farms:</b> <b>21 </b>Blk-Bwf 1150lbs bred heifers. Bred LBWT Angus Bulls. Heifers were pelvic measured &amp; had shots. Nice set of heifers.</li>\n<li><b>Jensen Farms:</b> <b>50</b> Fancy Blk 1100lbs Angus heifers, 3rd period. AIâ€™s bred to Rainmaker Angus Bull &amp; cleaned up with Marshall &amp; Feiner Angus Bull. Start calving February 1st for 45 days.</li>\n<li><b>Bradley Cattle:</b> <b>10</b> Blk Angus Bred heifers, 3rd period. Bred LBWT Angus Bulls. Start calving February 1st.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-01-14 03:01:34','2022-01-14 03:01:34','',2209,'https://kingsvillelivestock.com/?p=3990',0,'revision','',0),(3991,2,'2022-01-14 15:09:49','2022-01-14 15:09:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/Tuesday-January-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-3967\">Tuesday, January 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Â Special Cow &amp; Bull Sale-Saturday, January 22nd @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Barnes Farms: </b><b>1 </b>Blk 3 yr old Angus Bulls</li>\n<li><b>Parkhurst Farms Complete Dispersal</b>: <b>1</b> 3.5 yr old Reg. Blk Angus Bulls originated off Mead Farms. <b>1 </b>4 yr old Reg Blk Angus Bull originated off Ogden Ranch</li>\n<li><b>Cornell Farms Complete Dispersal:</b> <b>1 </b>Blk Balancer 3 yr old Brent Foster Bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Diamond X Farms: </b><b>8 </b>Blk Angus Bred Heifers,3rd Period. Start calving Feb. 10th for 45 days. OCV, Pelvic measured, scourÂ  guard.</li>\n<li><b>Lynde Bros: </b><b>30</b> Blk-Bwf 5-6 yr old cows,3rd period. Bred Blk Angus Bulls &amp; start calving March 1st <b>5</b> Blk-Bwf 5-6 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Ferguson Farms</b><b>: 20</b> Blk 4-6 yr old cows, 3rd period <b>20</b> Blk 7-SS cows,3rd period. Bred to Spalding Sim-Angus or Crooks Sim-Angus Bulls. Start calving March 1st. Had all shots</li>\n<li><b>Arwood Farms:</b> <b>27 </b>Blk-Bwf 6-SS cows,3rd period. Bred Blk Angus Bulls. Start calving March 1st. <b>5</b> Blk 6-SS cows w/250lbs calves at side.</li>\n<li><b>Drew Farms</b><b>:</b> <b>20</b> Blk-Bwf 3-4 yr old cows, 3rd period. <b>20</b> Blk-Bwf 5-6 yr old, 3rd period. Cows bred to Miller Angus Bulls. <b>5</b> Blk-Bwf 3-5 yr old cows w/250-300lbs at side. Gentle w/ all shots</li>\n<li><b>Luther Farms</b>: Â <b>35 </b>Blk 4-6 yr old cows,3rd period. <b>16 </b>BwfÂ 1100-1200lbs bred heifers, 3rd period. <b>12</b> Blk Balancer 1100-1200lbs bred heifers, 3rd period<b> 4</b> Red Balancer 1100-1200lbs bred heifers, 3rd period. All cows bred Blk Bulls &amp; heifers bred LBWT Blk Angus Bulls. Start calving March 15th. All heifers have had a scour guard shot.</li>\n<li><b>Thomas Farms:</b> <b>15</b> Blk-Bwf 3-5 yr old cows w/200lbs calves at side</li>\n<li><b>Walter Farms</b><b>:</b> <b>20</b> Fancy Blk Angus 1100lbs bred heifers,3rd period. Bred LBWT Angus Bulls. Start calving March 1st for 45 days.</li>\n<li><b>Stevens Farms</b>: <b>20 </b>Bwf 5-6 yr old cows, 2nd &amp; 3rd period. Bred Blk Balancer Bulls</li>\n<li><b>Miller Farms:</b> <b>25</b> Fancy Blk 3-6 yr old Cows,3rd period. Bred Angus Bulls</li>\n<li><b>Barnes Farms</b><b>:</b> <b>8</b> Blk-Bwf 4-5 yr old cows, 3rd period. <b>8 </b>Blk-Bwf 6-SS cows, 3rd period. All cows bred Blk Angus bulls. Start calving March 1st</li>\n<li><b>Parkhurst Farms Complete Dispersal</b><b>: 22 </b>Blk-Red 3-7 yr old cows w/fall calves at side. All calves born Sept-Nov &amp; had 1 rd shots. Bulls turned on Dec. 1st. 10 Blk-Red 2 yr old 1050lbs bred heifers,3rd period. <b>32</b> Blk-Red 5-7 yr old cows, 3rd period. All spring bred cows &amp; heifers. Heifers start calving end of March for 75 days. All cows gentle &amp; had a very good health program. Nice set of bred cows &amp; pairs.</li>\n<li><b>Andrew Farms</b><b>:</b> <b>34</b> fancy purebred 1150-1200lbs bred heifers. Prior to breeding heifers were pelvic measure &amp; had all shots. Have had a scour-guard shot Heifers are AIâ€™d to calve March 5th to the bull Boomtime. All heifers are home-raised &amp; carry one iron. Heifers are gentle, easy going &amp; nice quality.</li>\n<li><b>Thornton Farms</b><b>:</b> <b>30</b> Blk Angus 3-4 yr old cows, 2nd period 30 Blk Angus 5-6 yr old, 2nd period. All cows bred Sim-Angus &amp; Blk Balancer Bulls</li>\n<li><b>Smith Farms:</b> <b>15 </b>Blk-Bwf 3-6 yr old cows, 2nd &amp; 3rd period 10 Red-Rwf 3-6 yr old cows, 2nd &amp; 3rd period. Bred to Blk &amp; Red Gelv. Bulls</li>\n<li><b>Blayton Farms:</b> <b>14 </b>Blk 3 yr old 1150lbs cows, all born spring 2019. All cows AIâ€™d Blk Angus bulls start calving March 18th &amp; cleaned up w/ Reg Angus bulls for 45 days. All born spring 2019 &amp; had all shots. Cows weaned a nice set of calves.</li>\n<li><b>Cornell Farms Complete Dispersal:</b> <b>20 </b>Blk 3-7 yr old spring calving cows. Start calving middle of February for 60 days. <b>25 </b>Blk 3-SS cows w/ fall calves at side. <b>5 </b>Red 3-5 yr old cows w/fall calves at side. Bulls turned in Nov. 25th. All pairs ear tagged to match. All cows bred &amp; sired by Brent Foster Balancer bulls. Kept back heifers for several years, never been off farm. All vet work done by Koch-Stiggie Vet Clinic. Selling due to switching to row crops.</li>\n<li><b>S&amp;S Farms:</b> <b>48 </b>Blk-Red 3-4 yr old cows, 3rd period. Bred Blk Angus Bulls</li>\n<li><b>Twenter Farms:</b> <b>21 </b>Blk-Bwf 1150lbs bred heifers. Bred LBWT Angus Bulls. Heifers were pelvic measured &amp; had shots. Nice set of heifers.</li>\n<li><b>Jensen Farms:</b> <b>50</b> Fancy Blk 1100lbs Angus heifers, 3rd period. AIâ€™s bred to Rainmaker Angus Bull &amp; cleaned up with Marshall &amp; Feiner Angus Bull. Start calving February 1st for 45 days.</li>\n<li><b>Bradley Cattle:</b> <b>10</b> Blk Angus Bred heifers, 3rd period. Bred LBWT Angus Bulls. Start calving February 1st.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-01-14 15:09:49','2022-01-14 15:09:49','',2209,'https://kingsvillelivestock.com/?p=3991',0,'revision','',0),(3992,2,'2022-01-17 19:02:31','2022-01-17 19:02:31','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/Tuesday-January-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-3967\">Tuesday, January 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Â Special Cow &amp; Bull Sale-Saturday, January 22nd @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Barnes Farms: </b><b>1 </b>Blk 3 yr old Angus Bulls</li>\n<li><b>Parkhurst Farms Complete Dispersal</b>: <b>1</b> 3.5 yr old Reg. Blk Angus Bulls originated off Mead Farms. <b>1 </b>4 yr old Reg Blk Angus Bull originated off Ogden Ranch</li>\n<li><b>Cornell Farms Complete Dispersal:</b> <b>1 </b>Blk Balancer 3 yr old Brent Foster Bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Diamond X Farms: </b><b>8 </b>Blk Angus Bred Heifers,3rd Period. Start calving Feb. 10th for 45 days. OCV, Pelvic measured, scourÂ  guard.</li>\n<li><b>Lynde Bros: </b><b>30</b> Blk-Bwf 5-6 yr old cows,3rd period. Bred Blk Angus Bulls &amp; start calving March 1st <b>5</b> Blk-Bwf 5-6 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Ferguson Farms</b><b>: 20</b> Blk 4-6 yr old cows, 3rd period <b>20</b> Blk 7-SS cows,3rd period. Bred to Spalding Sim-Angus or Crooks Sim-Angus Bulls. Start calving March 1st. Had all shots</li>\n<li><b>Arwood Farms:</b> <b>27 </b>Blk-Bwf 6-SS cows,3rd period. Bred Blk Angus Bulls. Start calving March 1st. <b>5</b> Blk 6-SS cows w/250lbs calves at side.</li>\n<li><b>Drew Farms</b><b>:</b> <b>20</b> Blk-Bwf 3-4 yr old cows, 3rd period. <b>20</b> Blk-Bwf 5-6 yr old, 3rd period. Cows bred to Miller Angus Bulls. <b>5</b> Blk-Bwf 3-5 yr old cows w/250-300lbs at side. Gentle w/ all shots</li>\n<li><b>Luther Farms</b>: Â <b>35 </b>Blk 4-6 yr old cows,3rd period. <b>16 </b>BwfÂ 1100-1200lbs bred heifers, 3rd period. <b>12</b> Blk Balancer 1100-1200lbs bred heifers, 3rd period<b> 4</b> Red Balancer 1100-1200lbs bred heifers, 3rd period. All cows bred Blk Bulls &amp; heifers bred LBWT Blk Angus Bulls. Start calving March 15th. All heifers have had a scour guard shot.</li>\n<li><b>Thomas Farms:</b> <b>15</b> Blk-Bwf 3-5 yr old cows w/200lbs calves at side</li>\n<li><b>Walter Farms</b><b>:</b> <b>20</b> Fancy Blk Angus 1100lbs bred heifers,3rd period. Bred LBWT Angus Bulls. Start calving March 1st for 45 days.</li>\n<li><b>Stevens Farms</b>: <b>20 </b>Bwf 5-6 yr old cows, 2nd &amp; 3rd period. Bred Blk Balancer Bulls</li>\n<li><b>Miller Farms:</b> <b>25</b> Fancy Blk 3-6 yr old Cows,3rd period. Bred Angus Bulls</li>\n<li><b>Barnes Farms</b><b>:</b> <b>8</b> Blk-Bwf 4-5 yr old cows, 3rd period. <b>8 </b>Blk-Bwf 6-SS cows, 3rd period. All cows bred Blk Angus bulls. Start calving March 1st</li>\n<li><b>Parkhurst Farms Complete Dispersal</b><b>: 22 </b>Blk-Red 3-7 yr old cows w/fall calves at side. All calves born Sept-Nov &amp; had 1 rd shots. Bulls turned on Dec. 1st. 10 Blk-Red 2 yr old 1050lbs bred heifers,3rd period. <b>32</b> Blk-Red 5-7 yr old cows, 3rd period. All spring bred cows &amp; heifers. Heifers start calving end of March for 75 days. All cows gentle &amp; had a very good health program. Nice set of bred cows &amp; pairs.</li>\n<li><b>Andrew Farms</b><b>:</b> <b>34</b> fancy purebred 1150-1200lbs bred heifers. Prior to breeding heifers were pelvic measure &amp; had all shots. Have had a scour-guard shot Heifers are AIâ€™d to calve March 5th to the bull Boomtime. All heifers are home-raised &amp; carry one iron. Heifers are gentle, easy going &amp; nice quality.</li>\n<li><b>Thornton Farms</b><b>:</b> <b>30</b> Blk Angus 3-4 yr old cows, 2nd period 30 Blk Angus 5-6 yr old, 2nd period. All cows bred Sim-Angus &amp; Blk Balancer Bulls</li>\n<li><b>Smith Farms:</b> <b>15 </b>Blk-Bwf 3-6 yr old cows, 2nd &amp; 3rd period 10 Red-Rwf 3-6 yr old cows, 2nd &amp; 3rd period. Bred to Blk &amp; Red Gelv. Bulls</li>\n<li><b>Blayton Farms:</b> <b>14 </b>Blk 3 yr old 1150lbs cows, all born spring 2019. All cows AIâ€™d Blk Angus bulls start calving March 18th &amp; cleaned up w/ Reg Angus bulls for 45 days. All born spring 2019 &amp; had all shots. Cows weaned a nice set of calves.</li>\n<li><b>Cornell Farms Complete Dispersal:</b> <b>20 </b>Blk 3-7 yr old spring calving cows. Start calving middle of February for 60 days. <b>25 </b>Blk 3-SS cows w/ fall calves at side. <b>5 </b>Red 3-5 yr old cows w/fall calves at side. Bulls turned in Nov. 25th. All pairs ear tagged to match. All cows bred &amp; sired by Brent Foster Balancer bulls. Kept back heifers for several years, never been off farm. All vet work done by Koch-Stiggie Vet Clinic. Selling due to switching to row crops.</li>\n<li><b>S&amp;S Farms:</b> <b>48 </b>Blk-Red 3-4 yr old cows, 3rd period. Bred Blk Angus Bulls</li>\n<li><b>Twenter Farms:</b> <b>21 </b>Blk-Bwf 1150lbs bred heifers. Bred LBWT Angus Bulls. Heifers were pelvic measured &amp; had shots. Nice set of heifers.</li>\n<li><b>Jensen Farms:</b> <b>50</b> Fancy Blk 1100lbs Angus heifers, 3rd period. AIâ€™s bred to Rainmaker Angus Bull &amp; cleaned up with Marshall &amp; Feiner Angus Bull. Start calving February 1st for 45 days.</li>\n<li><b>Bradley Cattle:</b> <b>10</b> Blk Angus Bred heifers, 3rd period. Bred LBWT Angus Bulls. Start calving February 1st.</li>\n<li><b>Halliburton Farms:</b> <b>38</b> Red-Rwf 5-SS Cows,3rd Period. Bred Blk-Red Angus Bulls &amp; start calving March 1st. All cows home-raised &amp; will be calf raisers.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-01-17 19:02:31','2022-01-17 19:02:31','',2209,'https://kingsvillelivestock.com/?p=3992',0,'revision','',0),(3993,2,'2022-01-17 19:03:11','2022-01-17 19:03:11','','January 22,2022 Cow Sale','','inherit','closed','closed','','january-222022-cow-sale-5','','','2022-01-17 19:03:11','2022-01-17 19:03:11','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale-4.pdf',0,'attachment','application/pdf',0),(3994,2,'2022-01-17 19:03:21','2022-01-17 19:03:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale-4.pdf\" rel=\"attachment wp-att-3993\">January 22,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-01-17 19:03:21','2022-01-17 19:03:21','',639,'https://kingsvillelivestock.com/?p=3994',0,'revision','',0),(3995,2,'2022-01-17 19:04:12','2022-01-17 19:04:12','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 22nd @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale-4.pdf\" rel=\"attachment wp-att-3993\">January 22,2022 Cow Sale</a></strong><strong><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-01-17 19:04:12','2022-01-17 19:04:12','',1967,'https://kingsvillelivestock.com/?p=3995',0,'revision','',0),(3996,2,'2022-01-17 19:13:37','2022-01-17 19:13:37','','Tuesday,January 18th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayjanuary-18th-feeder-cattle-consignments','','','2022-01-17 19:13:37','2022-01-17 19:13:37','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/01/TuesdayJanuary-18th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(3997,2,'2022-01-17 19:13:47','2022-01-17 19:13:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/TuesdayJanuary-18th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-3996\">Tuesday,January 18th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Â Special Cow &amp; Bull Sale-Saturday, January 22nd @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.14.5\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Barnes Farms: </b><b>1 </b>Blk 3 yr old Angus Bulls</li>\n<li><b>Parkhurst Farms Complete Dispersal</b>: <b>1</b> 3.5 yr old Reg. Blk Angus Bulls originated off Mead Farms. <b>1 </b>4 yr old Reg Blk Angus Bull originated off Ogden Ranch</li>\n<li><b>Cornell Farms Complete Dispersal:</b> <b>1 </b>Blk Balancer 3 yr old Brent Foster Bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Diamond X Farms: </b><b>8 </b>Blk Angus Bred Heifers,3rd Period. Start calving Feb. 10th for 45 days. OCV, Pelvic measured, scourÂ  guard.</li>\n<li><b>Lynde Bros: </b><b>30</b> Blk-Bwf 5-6 yr old cows,3rd period. Bred Blk Angus Bulls &amp; start calving March 1st <b>5</b> Blk-Bwf 5-6 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Ferguson Farms</b><b>: 20</b> Blk 4-6 yr old cows, 3rd period <b>20</b> Blk 7-SS cows,3rd period. Bred to Spalding Sim-Angus or Crooks Sim-Angus Bulls. Start calving March 1st. Had all shots</li>\n<li><b>Arwood Farms:</b> <b>27 </b>Blk-Bwf 6-SS cows,3rd period. Bred Blk Angus Bulls. Start calving March 1st. <b>5</b> Blk 6-SS cows w/250lbs calves at side.</li>\n<li><b>Drew Farms</b><b>:</b> <b>20</b> Blk-Bwf 3-4 yr old cows, 3rd period. <b>20</b> Blk-Bwf 5-6 yr old, 3rd period. Cows bred to Miller Angus Bulls. <b>5</b> Blk-Bwf 3-5 yr old cows w/250-300lbs at side. Gentle w/ all shots</li>\n<li><b>Luther Farms</b>: Â <b>35 </b>Blk 4-6 yr old cows,3rd period. <b>16 </b>BwfÂ 1100-1200lbs bred heifers, 3rd period. <b>12</b> Blk Balancer 1100-1200lbs bred heifers, 3rd period<b> 4</b> Red Balancer 1100-1200lbs bred heifers, 3rd period. All cows bred Blk Bulls &amp; heifers bred LBWT Blk Angus Bulls. Start calving March 15th. All heifers have had a scour guard shot.</li>\n<li><b>Thomas Farms:</b> <b>15</b> Blk-Bwf 3-5 yr old cows w/200lbs calves at side</li>\n<li><b>Walter Farms</b><b>:</b> <b>20</b> Fancy Blk Angus 1100lbs bred heifers,3rd period. Bred LBWT Angus Bulls. Start calving March 1st for 45 days.</li>\n<li><b>Stevens Farms</b>: <b>20 </b>Bwf 5-6 yr old cows, 2nd &amp; 3rd period. Bred Blk Balancer Bulls</li>\n<li><b>Miller Farms:</b> <b>25</b> Fancy Blk 3-6 yr old Cows,3rd period. Bred Angus Bulls</li>\n<li><b>Barnes Farms</b><b>:</b> <b>8</b> Blk-Bwf 4-5 yr old cows, 3rd period. <b>8 </b>Blk-Bwf 6-SS cows, 3rd period. All cows bred Blk Angus bulls. Start calving March 1st</li>\n<li><b>Parkhurst Farms Complete Dispersal</b><b>: 22 </b>Blk-Red 3-7 yr old cows w/fall calves at side. All calves born Sept-Nov &amp; had 1 rd shots. Bulls turned on Dec. 1st. 10 Blk-Red 2 yr old 1050lbs bred heifers,3rd period. <b>32</b> Blk-Red 5-7 yr old cows, 3rd period. All spring bred cows &amp; heifers. Heifers start calving end of March for 75 days. All cows gentle &amp; had a very good health program. Nice set of bred cows &amp; pairs.</li>\n<li><b>Andrew Farms</b><b>:</b> <b>34</b> fancy purebred 1150-1200lbs bred heifers. Prior to breeding heifers were pelvic measure &amp; had all shots. Have had a scour-guard shot Heifers are AIâ€™d to calve March 5th to the bull Boomtime. All heifers are home-raised &amp; carry one iron. Heifers are gentle, easy going &amp; nice quality.</li>\n<li><b>Thornton Farms</b><b>:</b> <b>30</b> Blk Angus 3-4 yr old cows, 2nd period 30 Blk Angus 5-6 yr old, 2nd period. All cows bred Sim-Angus &amp; Blk Balancer Bulls</li>\n<li><b>Smith Farms:</b> <b>15 </b>Blk-Bwf 3-6 yr old cows, 2nd &amp; 3rd period 10 Red-Rwf 3-6 yr old cows, 2nd &amp; 3rd period. Bred to Blk &amp; Red Gelv. Bulls</li>\n<li><b>Blayton Farms:</b> <b>14 </b>Blk 3 yr old 1150lbs cows, all born spring 2019. All cows AIâ€™d Blk Angus bulls start calving March 18th &amp; cleaned up w/ Reg Angus bulls for 45 days. All born spring 2019 &amp; had all shots. Cows weaned a nice set of calves.</li>\n<li><b>Cornell Farms Complete Dispersal:</b> <b>20 </b>Blk 3-7 yr old spring calving cows. Start calving middle of February for 60 days. <b>25 </b>Blk 3-SS cows w/ fall calves at side. <b>5 </b>Red 3-5 yr old cows w/fall calves at side. Bulls turned in Nov. 25th. All pairs ear tagged to match. All cows bred &amp; sired by Brent Foster Balancer bulls. Kept back heifers for several years, never been off farm. All vet work done by Koch-Stiggie Vet Clinic. Selling due to switching to row crops.</li>\n<li><b>S&amp;S Farms:</b> <b>48 </b>Blk-Red 3-4 yr old cows, 3rd period. Bred Blk Angus Bulls</li>\n<li><b>Twenter Farms:</b> <b>21 </b>Blk-Bwf 1150lbs bred heifers. Bred LBWT Angus Bulls. Heifers were pelvic measured &amp; had shots. Nice set of heifers.</li>\n<li><b>Jensen Farms:</b> <b>50</b> Fancy Blk 1100lbs Angus heifers, 3rd period. AIâ€™s bred to Rainmaker Angus Bull &amp; cleaned up with Marshall &amp; Feiner Angus Bull. Start calving February 1st for 45 days.</li>\n<li><b>Bradley Cattle:</b> <b>10</b> Blk Angus Bred heifers, 3rd period. Bred LBWT Angus Bulls. Start calving February 1st.</li>\n<li><b>Halliburton Farms:</b> <b>38</b> Red-Rwf 5-SS Cows,3rd Period. Bred Blk-Red Angus Bulls &amp; start calving March 1st. All cows home-raised &amp; will be calf raisers.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-01-17 19:13:47','2022-01-17 19:13:47','',2209,'https://kingsvillelivestock.com/?p=3997',0,'revision','',0),(3998,2,'2022-01-19 04:56:49','2022-01-19 04:56:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 22nd @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale-4.pdf\" rel=\"attachment wp-att-3993\">January 22,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-01-19 04:56:49','2022-01-19 04:56:49','',639,'https://kingsvillelivestock.com/?p=3998',0,'revision','',0),(3999,2,'2022-01-19 04:57:23','2022-01-19 04:57:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 22nd @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale-4.pdf\" rel=\"attachment wp-att-3993\">January 22,2022 Cow Sale</a></strong><strong><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-01-19 04:57:23','2022-01-19 04:57:23','',1967,'https://kingsvillelivestock.com/?p=3999',0,'revision','',0),(4000,2,'2022-01-19 05:30:47','2022-01-19 05:30:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 18, 2022</strong> 3501 hd; Â  Last week; 3782 hd; a year ago 3392 hd. Feeder cattle sold steady-$4 higher. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$161.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$145.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$174.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$155.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$122.00-$134.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$68.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$59.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$78.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">651lbs @$178.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">683lbs @$168.50-Char</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">735lbs @$163.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">790lbs @$165.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">817lbs @$155.85-Char</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">827lbs @$158.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">850lbs @$160.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">724lbs @$154.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">827lbs @$152.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 18, 2022 - Market Report','','publish','closed','open','','january-18-2022-market-report','','','2022-01-19 05:30:50','2022-01-19 05:30:50','',0,'https://kingsvillelivestock.com/?p=4000',0,'post','',0),(4002,2,'2022-01-19 05:30:47','2022-01-19 05:30:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 18, 2022</strong> 3501 hd; Â  Last week; 3782 hd; a year ago 3392 hd. Feeder cattle sold steady-$4 higher. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$161.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$145.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$174.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$155.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$122.00-$134.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$68.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$59.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$78.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">651lbs @$178.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">683lbs @$168.50-Char</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">735lbs @$163.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">790lbs @$165.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">817lbs @$155.85-Char</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">827lbs @$158.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">850lbs @$160.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">724lbs @$154.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">827lbs @$152.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 18, 2022 - Market Report','','inherit','closed','closed','','4000-revision-v1','','','2022-01-19 05:30:47','2022-01-19 05:30:47','',4000,'https://kingsvillelivestock.com/?p=4002',0,'revision','',0),(4003,2,'2022-01-19 05:30:47','2022-01-19 05:30:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 18, 2022</strong> 3501 hd; Â  Last week; 3782 hd; a year ago 3392 hd. Feeder cattle sold steady-$4 higher. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$161.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$145.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$174.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$155.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$122.00-$134.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$68.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$59.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$78.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">651lbs @$178.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">683lbs @$168.50-Char</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">735lbs @$163.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">790lbs @$165.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">817lbs @$155.85-Char</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">827lbs @$158.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">850lbs @$160.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">724lbs @$154.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">827lbs @$152.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 11, 2022 - Market Report','','inherit','closed','closed','','4000-revision-v1','','','2022-01-19 05:30:47','2022-01-19 05:30:47','',4000,'https://kingsvillelivestock.com/?p=4003',0,'revision','',0),(4004,2,'2022-01-19 05:30:50','2022-01-19 05:30:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 18, 2022</strong> 3501 hd; Â  Last week; 3782 hd; a year ago 3392 hd. Feeder cattle sold steady-$4 higher. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$161.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$145.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$174.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$155.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$122.00-$134.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$68.00 - $78.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$59.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $58.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$78.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">651lbs @$178.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">683lbs @$168.50-Char</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">735lbs @$163.75</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">790lbs @$165.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">817lbs @$155.85-Char</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">827lbs @$158.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">850lbs @$160.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">724lbs @$154.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">827lbs @$152.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 18, 2022 - Market Report','','inherit','closed','closed','','4000-revision-v1','','','2022-01-19 05:30:50','2022-01-19 05:30:50','',4000,'https://kingsvillelivestock.com/?p=4004',0,'revision','',0),(4006,2,'2022-01-19 17:26:55','2022-01-19 17:26:55','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 22nd @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale-4.pdf\" rel=\"attachment wp-att-3993\">January 22,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00 am <br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-01-19 17:26:55','2022-01-19 17:26:55','',639,'https://kingsvillelivestock.com/?p=4006',0,'revision','',0),(4007,2,'2022-01-19 17:27:41','2022-01-19 17:27:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 22nd @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/January-222022-Cow-Sale-4.pdf\" rel=\"attachment wp-att-3993\">January 22,2022 Cow Sale</a></strong><strong><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00 am <br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-01-19 17:27:41','2022-01-19 17:27:41','',1967,'https://kingsvillelivestock.com/?p=4007',0,'revision','',0),(4009,2,'2022-01-24 16:48:16','2022-01-24 16:48:16','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-01-24 16:48:16','2022-01-24 16:48:16','',639,'https://kingsvillelivestock.com/?p=4009',0,'revision','',0),(4010,2,'2022-01-24 16:49:02','2022-01-24 16:49:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-01-24 16:49:02','2022-01-24 16:49:02','',1967,'https://kingsvillelivestock.com/?p=4010',0,'revision','',0),(4011,2,'2022-01-24 16:49:50','2022-01-24 16:49:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.6\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/TuesdayJanuary-18th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-3996\">Tuesday,January 18th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-01-24 16:49:50','2022-01-24 16:49:50','',2209,'https://kingsvillelivestock.com/?p=4011',0,'revision','',0),(4013,2,'2022-01-24 18:00:49','2022-01-24 18:00:49','','Tuesday, January 25th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-january-25th-feeder-cattle-consignments','','','2022-01-24 18:00:49','2022-01-24 18:00:49','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/01/Tuesday-January-25th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4014,2,'2022-01-24 18:00:59','2022-01-24 18:00:59','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/Tuesday-January-25th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4013\">Tuesday, January 25th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-01-24 18:00:59','2022-01-24 18:00:59','',2209,'https://kingsvillelivestock.com/?p=4014',0,'revision','',0),(4015,2,'2022-01-24 22:18:04','2022-01-24 22:18:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-01-24 22:18:04','2022-01-24 22:18:04','',639,'https://kingsvillelivestock.com/?p=4015',0,'revision','',0),(4016,2,'2022-01-24 22:18:53','2022-01-24 22:18:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Jan. 25th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-01-24 22:18:53','2022-01-24 22:18:53','',1967,'https://kingsvillelivestock.com/?p=4016',0,'revision','',0),(4017,2,'2022-01-26 06:58:14','2022-01-26 06:58:14','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-01-26 06:58:14','2022-01-26 06:58:14','',639,'https://kingsvillelivestock.com/?p=4017',0,'revision','',0),(4018,2,'2022-01-26 06:59:00','2022-01-26 06:59:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-01-26 06:59:00','2022-01-26 06:59:00','',1967,'https://kingsvillelivestock.com/?p=4018',0,'revision','',0),(4019,2,'2022-01-26 18:39:05','2022-01-26 18:39:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 25, 2022</strong> 4221 hd; Â  Last week; 3501 hd; a year ago 1487 hd. Feeder steers weighing 650lbs &amp; down &amp; heifers weighing 575lbs &amp; down sold steady-$5 higher. Heavier calves &amp; yearlings sold steady-$2 lower. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$180.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$162.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$141.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$185.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$174.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$115.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$72.00 - $83.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">472lbs @$214.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">544lbs @$197.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">739lbs @$162.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">760lbs @$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">874lbs @$154.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">466lbs @$185.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$147.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$152.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">734lbs @$147.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">807lbs@$144.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 25, 2022 - Market Report','','publish','closed','open','','january-25-2022-market-report','','','2022-01-26 18:39:09','2022-01-26 18:39:09','',0,'https://kingsvillelivestock.com/?p=4019',0,'post','',0),(4021,2,'2022-01-26 18:39:05','2022-01-26 18:39:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 25, 2022</strong> 4221 hd; Â  Last week; 3501 hd; a year ago 1487 hd. Feeder steers weighing 650lbs &amp; down &amp; heifers weighing 575lbs &amp; down sold steady-$5 higher. Heavier calves &amp; yearlings sold steady-$2 lower. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$180.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$162.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$141.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$185.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$174.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$115.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$72.00 - $83.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">472lbs @$214.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">544lbs @$197.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">739lbs @$162.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">760lbs @$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">874lbs @$154.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">466lbs @$185.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$147.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$152.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">734lbs @$147.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">807lbs@$144.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 25, 2022 - Market Report','','inherit','closed','closed','','4019-revision-v1','','','2022-01-26 18:39:05','2022-01-26 18:39:05','',4019,'https://kingsvillelivestock.com/?p=4021',0,'revision','',0),(4022,2,'2022-01-26 18:39:05','2022-01-26 18:39:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 25, 2022</strong> 4221 hd; Â  Last week; 3501 hd; a year ago 1487 hd. Feeder steers weighing 650lbs &amp; down &amp; heifers weighing 575lbs &amp; down sold steady-$5 higher. Heavier calves &amp; yearlings sold steady-$2 lower. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$180.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$162.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$141.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$185.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$174.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$115.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$72.00 - $83.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">472lbs @$214.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">544lbs @$197.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">739lbs @$162.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">760lbs @$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">874lbs @$154.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">466lbs @$185.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$147.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$152.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">734lbs @$147.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">807lbs@$144.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 18, 2022 - Market Report','','inherit','closed','closed','','4019-revision-v1','','','2022-01-26 18:39:05','2022-01-26 18:39:05','',4019,'https://kingsvillelivestock.com/?p=4022',0,'revision','',0),(4023,2,'2022-01-26 18:39:09','2022-01-26 18:39:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 25, 2022</strong> 4221 hd; Â  Last week; 3501 hd; a year ago 1487 hd. Feeder steers weighing 650lbs &amp; down &amp; heifers weighing 575lbs &amp; down sold steady-$5 higher. Heavier calves &amp; yearlings sold steady-$2 lower. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$180.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$162.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$141.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$185.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$174.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$152.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$145.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$115.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$72.00 - $83.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$45.00 - $59.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$75.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">472lbs @$214.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">544lbs @$197.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">739lbs @$162.50</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">760lbs @$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">874lbs @$154.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">466lbs @$185.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$147.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$152.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">734lbs @$147.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">807lbs@$144.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 25, 2022 - Market Report','','inherit','closed','closed','','4019-revision-v1','','','2022-01-26 18:39:09','2022-01-26 18:39:09','',4019,'https://kingsvillelivestock.com/?p=4023',0,'revision','',0),(4026,2,'2022-01-31 16:49:30','2022-01-31 16:49:30','','Tuesday, February 1st Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-february-1st-feeder-cattle-consignments','','','2022-01-31 16:49:30','2022-01-31 16:49:30','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/01/Tuesday-February-1st-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4027,2,'2022-01-31 16:49:41','2022-01-31 16:49:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/Tuesday-February-1st-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4026\">Tuesday, February 1st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-01-31 16:49:41','2022-01-31 16:49:41','',2209,'https://kingsvillelivestock.com/?p=4027',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (4028,2,'2022-02-01 01:15:58','2022-02-01 01:15:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/01/Tuesday-February-1st-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4026\">Tuesday, February 1st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.14.7\" _module_preset=\"default\" column_structure=\"1_4,3_4\"][et_pb_column _builder_version=\"4.14.7\" _module_preset=\"default\" type=\"1_4\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #ff00ff;\"><strong>Special Cow &amp; Bull Sale, Saturday, February 19th @ 11 am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.14.7\" _module_preset=\"default\" type=\"3_4\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Thorton Farms: </b><b>20 </b>Blk Angus Purebred 1100lbs bred heifers,3rd Period. Bred LBWT Blk Angus Sydenstricker Bulls, nice kind</li>\n<li><b>Jamson Farms: </b><b>15</b> Red-Rwf 3-6 yr old cows,2nd &amp; 3rd period. Bred Blk or Red Angus Bulls</li>\n<li><b>Botch Farms</b><b>: 10</b> Blk-Bwf 3-6 yr old cows w/ spring calves. Cows sell open.</li>\n<li><b>Adams Farms:</b> <b>21 </b>Bwf 3-6 yr. old cows,2nd &amp; 3rd period. Bred Blk Gelv. Bulls. Nice set of cows</li>\n<li><b>Miles Farms</b><b>:</b> <b>23</b> Blk-Bwf SS cows, 3rd period. Bred Angus Bulls</li>\n<li><b>McNealy Farms</b>: <b>40 </b>Blk Angus 3-4 yr old cows,3rd period. <b>25 </b>Blk Angus 5-6 yr old cows,3rd Period. Cows bred Sim-Angus &amp; Blk. Gelv. Bulls</li>\n<li><b>Garton Farms:</b> <b>30</b> Blk Angus 3-4 yr old cows,2nd Period. <b>30 </b>Blk Angus 5-6 yr old cows,2nd Period</li>\n<li><b>Mead Farms</b><b>:</b> <b>30</b> Blk-Bwf 3-4 yr old cows,3rd Period <b>27</b> Blk-Bwf 5-6 yr old cows,3rd Period. All cows bred Blk-Angus Bulls &amp; start calving March 1st. Gentle set of cows will follow feed truck.</li>\n<li><b>T&amp;H Farms</b>: <b>10 </b>Red Balancer 2 yr old heifers w/ 30 day old calves at side. Ear-tagged to match. Heifers sell open &amp; very gentle. Calves are sired by Red Balancer Bulls. Â </li>\n<li><b>Hook Farms:</b> <b>50</b> Blk-Bwf SS-BM Cows w/ 250-350lbs fall calves at side. Cows running back w/ Blk Angus Bulls since Nov. 25th. Should be several 3N1â€™s</li>\n<li><b>Alexa &amp; Allie Anstine</b><b>:</b> <b>10</b> Bwf 2 yr old, 1150lbs bred heifers,3rd period. Bred LBWT Seedstock Plus Blk Balancer Bulls. Start calving March 20th. All heifers were pelvic measure prior to breeding &amp; had all shots.</li>\n<li><b>Sam Moon Farms</b><b>: 20 </b>Fancy Blk Angus 1100lbs bred heifers. Bred to LBWT Byergo Reg. Angus Bulls. Start calving March 15th for 45 days. All home-raised, had all shots &amp; very gentle. Only selling due to loss of rented ground.</li>\n<li><b>Lamb Farms</b><b>:</b> <b>30</b> Red-Rwf 2-SS cows, 3rd Period. <b>30 </b>Blk-Bwf 2-SS cows,3rd Period. All cows bred to Blk Angus Bulls. Gentle set of home-raised cows that have had all shots. Cows will wean off a big set of calves. Selling due to cutting back cow herd to improve some fencing &amp; slow down a little.</li>\n<li><b>Milligan Farms</b><b>:</b> <b>20</b> Blk 5-SS cows, 3rd Period. Bred Blk Bulls.</li>\n<li><b>Siegel Farms:</b> <b>30 </b>Blk-Red 3-SS cows, 3rd period. Bred Blk Bulls.</li>\n<li><b>Asbury Farms:</b> <b>20 </b>Blk Angus 2 yr old 1100lbs bred heifers, 3rd Period. Start calving end of February for 30 days. Gentle, nice set of bred heifers.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-02-01 01:15:58','2022-02-01 01:15:58','',2209,'https://kingsvillelivestock.com/?p=4028',0,'revision','',0),(4029,2,'2022-02-02 07:35:00','2022-02-02 07:35:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-02-02 07:35:00','2022-02-02 07:35:00','',639,'https://kingsvillelivestock.com/?p=4029',0,'revision','',0),(4030,2,'2022-02-02 07:35:36','2022-02-02 07:35:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-02-02 07:35:36','2022-02-02 07:35:36','',1967,'https://kingsvillelivestock.com/?p=4030',0,'revision','',0),(4031,2,'2022-02-02 18:12:14','2022-02-02 18:12:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 1, 2022</strong> 3565 hd; Â  Last week; 4221 hd; a year ago 2141 hd. Feeder cattle sold $3-$7 higher in spots. There was god buyer activity on all classes of cattle. Slaughter cows &amp; bulls sold $3-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$216.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$183.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$157.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$139.00-$149.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$184.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$128.50-$137.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$124.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$70.00 - $87.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">586lbs @$188.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">602lbs @$183.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">694lbs @$173.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">794lbs @$162.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">885lbs @$156.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">579lbs @$162.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">669lbs @$157.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">724lbs @$154.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 1, 2022 - Market Report','','publish','closed','open','','february-1-2022-market-report','','','2022-02-02 18:12:18','2022-02-02 18:12:18','',0,'https://kingsvillelivestock.com/?p=4031',0,'post','',0),(4033,2,'2022-02-02 18:12:14','2022-02-02 18:12:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 1, 2022</strong> 3565 hd; Â  Last week; 4221 hd; a year ago 2141 hd. Feeder cattle sold $3-$7 higher in spots. There was god buyer activity on all classes of cattle. Slaughter cows &amp; bulls sold $3-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$216.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$183.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$157.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$139.00-$149.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$184.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$128.50-$137.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$124.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$70.00 - $87.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">586lbs @$188.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">602lbs @$183.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">694lbs @$173.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">794lbs @$162.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">885lbs @$156.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">579lbs @$162.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">669lbs @$157.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">724lbs @$154.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 25, 2022 - Market Report','','inherit','closed','closed','','4031-revision-v1','','','2022-02-02 18:12:14','2022-02-02 18:12:14','',4031,'https://kingsvillelivestock.com/?p=4033',0,'revision','',0),(4034,2,'2022-02-02 18:12:18','2022-02-02 18:12:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 1, 2022</strong> 3565 hd; Â  Last week; 4221 hd; a year ago 2141 hd. Feeder cattle sold $3-$7 higher in spots. There was god buyer activity on all classes of cattle. Slaughter cows &amp; bulls sold $3-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$216.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$183.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$157.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$139.00-$149.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$184.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$128.50-$137.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$124.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$70.00 - $87.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$48.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 322px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">586lbs @$188.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">602lbs @$183.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">694lbs @$173.85</td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Steers</td>\n<td style=\"width: 161.031px;\">794lbs @$162.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">885lbs @$156.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">579lbs @$162.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">669lbs @$157.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">724lbs @$154.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr>\n<td style=\"width: 160.969px;\">Â </td>\n<td style=\"width: 161.031px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 1, 2022 - Market Report','','inherit','closed','closed','','4031-revision-v1','','','2022-02-02 18:12:18','2022-02-02 18:12:18','',4031,'https://kingsvillelivestock.com/?p=4034',0,'revision','',0),(4036,2,'2022-02-07 18:24:45','2022-02-07 18:24:45','','Tuesday, February 8th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-february-8th-feeder-cattle-consignments','','','2022-02-07 18:24:45','2022-02-07 18:24:45','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/02/Tuesday-February-8th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4037,2,'2022-02-07 18:24:56','2022-02-07 18:24:56','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/Tuesday-February-8th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4036\">Tuesday, February 8th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\"><strong>Special Cow &amp; Bull Sale, Saturday, February 19th @ 11 am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Thorton Farms: </b><b>20 </b>Blk Angus Purebred 1100lbs bred heifers,3rd Period. Bred LBWT Blk Angus Sydenstricker Bulls, nice kind</li>\n<li><b>Jamson Farms: </b><b>15</b> Red-Rwf 3-6 yr old cows,2nd &amp; 3rd period. Bred Blk or Red Angus Bulls</li>\n<li><b>Botch Farms</b><b>: 10</b> Blk-Bwf 3-6 yr old cows w/ spring calves. Cows sell open.</li>\n<li><b>Adams Farms:</b> <b>21 </b>Bwf 3-6 yr. old cows,2nd &amp; 3rd period. Bred Blk Gelv. Bulls. Nice set of cows</li>\n<li><b>Miles Farms</b><b>:</b> <b>23</b> Blk-Bwf SS cows, 3rd period. Bred Angus Bulls</li>\n<li><b>McNealy Farms</b>: <b>40 </b>Blk Angus 3-4 yr old cows,3rd period. <b>25 </b>Blk Angus 5-6 yr old cows,3rd Period. Cows bred Sim-Angus &amp; Blk. Gelv. Bulls</li>\n<li><b>Garton Farms:</b> <b>30</b> Blk Angus 3-4 yr old cows,2nd Period. <b>30 </b>Blk Angus 5-6 yr old cows,2nd Period</li>\n<li><b>Mead Farms</b><b>:</b> <b>30</b> Blk-Bwf 3-4 yr old cows,3rd Period <b>27</b> Blk-Bwf 5-6 yr old cows,3rd Period. All cows bred Blk-Angus Bulls &amp; start calving March 1st. Gentle set of cows will follow feed truck.</li>\n<li><b>T&amp;H Farms</b>: <b>10 </b>Red Balancer 2 yr old heifers w/ 30 day old calves at side. Ear-tagged to match. Heifers sell open &amp; very gentle. Calves are sired by Red Balancer Bulls. Â </li>\n<li><b>Hook Farms:</b> <b>50</b> Blk-Bwf SS-BM Cows w/ 250-350lbs fall calves at side. Cows running back w/ Blk Angus Bulls since Nov. 25th. Should be several 3N1â€™s</li>\n<li><b>Alexa &amp; Allie Anstine</b><b>:</b> <b>10</b> Bwf 2 yr old, 1150lbs bred heifers,3rd period. Bred LBWT Seedstock Plus Blk Balancer Bulls. Start calving March 20th. All heifers were pelvic measure prior to breeding &amp; had all shots.</li>\n<li><b>Sam Moon Farms</b><b>: 20 </b>Fancy Blk Angus 1100lbs bred heifers. Bred to LBWT Byergo Reg. Angus Bulls. Start calving March 15th for 45 days. All home-raised, had all shots &amp; very gentle. Only selling due to loss of rented ground.</li>\n<li><b>Lamb Farms</b><b>:</b> <b>30</b> Red-Rwf 2-SS cows, 3rd Period. <b>30 </b>Blk-Bwf 2-SS cows,3rd Period. All cows bred to Blk Angus Bulls. Gentle set of home-raised cows that have had all shots. Cows will wean off a big set of calves. Selling due to cutting back cow herd to improve some fencing &amp; slow down a little.</li>\n<li><b>Milligan Farms</b><b>:</b> <b>20</b> Blk 5-SS cows, 3rd Period. Bred Blk Bulls.</li>\n<li><b>Siegel Farms:</b> <b>30 </b>Blk-Red 3-SS cows, 3rd period. Bred Blk Bulls.</li>\n<li><b>Asbury Farms:</b> <b>20 </b>Blk Angus 2 yr old 1100lbs bred heifers, 3rd Period. Start calving end of February for 30 days. Gentle, nice set of bred heifers.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-02-07 18:24:56','2022-02-07 18:24:56','',2209,'https://kingsvillelivestock.com/?p=4037',0,'revision','',0),(4038,2,'2022-02-07 20:31:56','2022-02-07 20:31:56','','February 19,2022 Cow Sale','','inherit','closed','closed','','february-192022-cow-sale','','','2022-02-07 20:31:56','2022-02-07 20:31:56','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale.pdf',0,'attachment','application/pdf',0),(4039,2,'2022-02-07 20:32:06','2022-02-07 20:32:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale.pdf\" rel=\"attachment wp-att-4038\">February 19,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-02-07 20:32:06','2022-02-07 20:32:06','',639,'https://kingsvillelivestock.com/?p=4039',0,'revision','',0),(4040,2,'2022-02-07 20:32:57','2022-02-07 20:32:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale.pdf\" rel=\"attachment wp-att-4038\">February 19,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-02-07 20:32:57','2022-02-07 20:32:57','',1967,'https://kingsvillelivestock.com/?p=4040',0,'revision','',0),(4041,2,'2022-02-07 21:05:59','2022-02-07 21:05:59','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/Tuesday-February-8th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4036\">Tuesday, February 8th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\"><strong>Special Cow &amp; Bull Sale, Saturday, February 19th @ 11 am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am</i></b></p>\n<ul>\n<li><b>Reavis Farms:</b> <b>2 </b>Reg. 2 yr. old Black Angus Bulls. <b>8 </b>18 month old Reg. Black Angus Bulls. <b>5 </b>12-14 month old Reg. Black Angus Bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Thorton Farms: </b><b>20 </b>Blk Angus Purebred 1100lbs bred heifers,3rd Period. Bred LBWT Blk Angus Sydenstricker Bulls, nice kind</li>\n<li><b>Jamson Farms: </b><b>15</b> Red-Rwf 3-6 yr old cows,2nd &amp; 3rd period. Bred Blk or Red Angus Bulls</li>\n<li><b>Botch Farms</b><b>: 10</b> Blk-Bwf 3-6 yr old cows w/ spring calves. Cows sell open.</li>\n<li><b>Adams Farms:</b> <b>21 </b>Bwf 3-6 yr. old cows,2nd &amp; 3rd period. Bred Blk Gelv. Bulls. Nice set of cows</li>\n<li><b>Miles Farms</b><b>:</b> <b>23</b> Blk-Bwf SS cows, 3rd period. Bred Angus Bulls</li>\n<li><b>McNealy Farms</b>: <b>40 </b>Blk Angus 3-4 yr old cows,3rd period. <b>25 </b>Blk Angus 5-6 yr old cows,3rd Period. Cows bred Sim-Angus &amp; Blk. Gelv. Bulls</li>\n<li><b>Garton Farms:</b> <b>30</b> Blk Angus 3-4 yr old cows,2nd Period. <b>30 </b>Blk Angus 5-6 yr old cows,2nd Period</li>\n<li><b>Mead Farms</b><b>:</b> <b>30</b> Blk-Bwf 3-4 yr old cows,3rd Period <b>27</b> Blk-Bwf 5-6 yr old cows,3rd Period. All cows bred Blk-Angus Bulls &amp; start calving March 1st. Gentle set of cows will follow feed truck.</li>\n<li><b>T&amp;H Farms</b>: <b>10 </b>Red Balancer 2 yr old heifers w/ 30 day old calves at side. Ear-tagged to match. Heifers sell open &amp; very gentle. Calves are sired by Red Balancer Bulls.</li>\n<li><b>Hook Farms:</b> <b>50</b> Blk-Bwf SS-BM Cows w/ 250-350lbs fall calves at side. Cows running back w/ Blk Angus Bulls since Nov. 25th. Should be several 3N1â€™s</li>\n<li><b>Alexa &amp; Allie Anstine</b><b>:</b> <b>10</b> Bwf 2 yr old, 1150lbs bred heifers,3rd period. Bred LBWT Seedstock Plus Blk Balancer Bulls. Start calving March 20th. All heifers were pelvic measure prior to breeding &amp; had all shots.</li>\n<li><b>Sam Moon Farms</b><b>: 20 </b>Fancy Blk Angus 1100lbs bred heifers. Bred to LBWT Byergo Reg. Angus Bulls. Start calving March 15th for 45 days. All home-raised, had all shots &amp; very gentle. Only selling due to loss of rented ground.</li>\n<li><b>Lamb Farms</b><b>:</b> <b>30</b> Red-Rwf 2-SS cows, 3rd Period. <b>30 </b>Blk-Bwf 2-SS cows,3rd Period. All cows bred to Blk Angus Bulls. Gentle set of home-raised cows that have had all shots. Cows will wean off a big set of calves. Selling due to cutting back cow herd to improve some fencing &amp; slow down a little.</li>\n<li><b>Milligan Farms</b><b>:</b> <b>20</b> Blk 5-SS cows, 3rd Period. Bred Blk Bulls.</li>\n<li><b>Siegel Farms:</b> <b>30 </b>Blk-Red 3-SS cows, 3rd period. Bred Blk Bulls.</li>\n<li><b>Asbury Farms:</b> <b>20 </b>Blk Angus 2 yr old 1100lbs bred heifers, 3rd Period. Start calving end of February for 30 days. Gentle, nice set of bred heifers.</li>\n<li><b>Reavis Farms:</b> <b>5 </b>Reg 5-SS Black Angus Cows. Bred to Angus Bulls</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-02-07 21:05:59','2022-02-07 21:05:59','',2209,'https://kingsvillelivestock.com/?p=4041',0,'revision','',0),(4042,2,'2022-02-07 21:08:19','2022-02-07 21:08:19','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/Tuesday-February-8th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4036\">Tuesday, February 8th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\"><strong>Special Cow &amp; Bull Sale, Saturday, February 19th @ 11 am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am</i></b></p>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Thorton Farms: </b><b>20 </b>Blk Angus Purebred 1100lbs bred heifers,3rd Period. Bred LBWT Blk Angus Sydenstricker Bulls, nice kind</li>\n<li><b>Jamson Farms: </b><b>15</b> Red-Rwf 3-6 yr old cows,2nd &amp; 3rd period. Bred Blk or Red Angus Bulls</li>\n<li><b>Botch Farms</b><b>: 10</b> Blk-Bwf 3-6 yr old cows w/ spring calves. Cows sell open.</li>\n<li><b>Adams Farms:</b> <b>21 </b>Bwf 3-6 yr. old cows,2nd &amp; 3rd period. Bred Blk Gelv. Bulls. Nice set of cows</li>\n<li><b>Miles Farms</b><b>:</b> <b>23</b> Blk-Bwf SS cows, 3rd period. Bred Angus Bulls</li>\n<li><b>McNealy Farms</b>: <b>40 </b>Blk Angus 3-4 yr old cows,3rd period. <b>25 </b>Blk Angus 5-6 yr old cows,3rd Period. Cows bred Sim-Angus &amp; Blk. Gelv. Bulls</li>\n<li><b>Garton Farms:</b> <b>30</b> Blk Angus 3-4 yr old cows,2nd Period. <b>30 </b>Blk Angus 5-6 yr old cows,2nd Period</li>\n<li><b>Mead Farms</b><b>:</b> <b>30</b> Blk-Bwf 3-4 yr old cows,3rd Period <b>27</b> Blk-Bwf 5-6 yr old cows,3rd Period. All cows bred Blk-Angus Bulls &amp; start calving March 1st. Gentle set of cows will follow feed truck.</li>\n<li><b>T&amp;H Farms</b>: <b>10 </b>Red Balancer 2 yr old heifers w/ 30 day old calves at side. Ear-tagged to match. Heifers sell open &amp; very gentle. Calves are sired by Red Balancer Bulls.</li>\n<li><b>Hook Farms:</b> <b>50</b> Blk-Bwf SS-BM Cows w/ 250-350lbs fall calves at side. Cows running back w/ Blk Angus Bulls since Nov. 25th. Should be several 3N1â€™s</li>\n<li><b>Alexa &amp; Allie Anstine</b><b>:</b> <b>10</b> Bwf 2 yr old, 1150lbs bred heifers,3rd period. Bred LBWT Seedstock Plus Blk Balancer Bulls. Start calving March 20th. All heifers were pelvic measure prior to breeding &amp; had all shots.</li>\n<li><b>Sam Moon Farms</b><b>: 20 </b>Fancy Blk Angus 1100lbs bred heifers. Bred to LBWT Byergo Reg. Angus Bulls. Start calving March 15th for 45 days. All home-raised, had all shots &amp; very gentle. Only selling due to loss of rented ground.</li>\n<li><b>Lamb Farms</b><b>:</b> <b>30</b> Red-Rwf 2-SS cows, 3rd Period. <b>30 </b>Blk-Bwf 2-SS cows,3rd Period. All cows bred to Blk Angus Bulls. Gentle set of home-raised cows that have had all shots. Cows will wean off a big set of calves. Selling due to cutting back cow herd to improve some fencing &amp; slow down a little.</li>\n<li><b>Milligan Farms</b><b>:</b> <b>20</b> Blk 5-SS cows, 3rd Period. Bred Blk Bulls.</li>\n<li><b>Siegel Farms:</b> <b>30 </b>Blk-Red 3-SS cows, 3rd period. Bred Blk Bulls.</li>\n<li><b>Asbury Farms:</b> <b>20 </b>Blk Angus 2 yr old 1100lbs bred heifers, 3rd Period. Start calving end of February for 30 days. Gentle, nice set of bred heifers.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-02-07 21:08:19','2022-02-07 21:08:19','',2209,'https://kingsvillelivestock.com/?p=4042',0,'revision','',0),(4044,2,'2022-02-09 15:55:09','2022-02-09 15:55:09','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale.pdf\" rel=\"attachment wp-att-4038\">February 19,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-02-09 15:55:09','2022-02-09 15:55:09','',639,'https://kingsvillelivestock.com/?p=4044',0,'revision','',0),(4045,2,'2022-02-09 15:55:45','2022-02-09 15:55:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale.pdf\" rel=\"attachment wp-att-4038\">February 19,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-02-09 15:55:45','2022-02-09 15:55:45','',1967,'https://kingsvillelivestock.com/?p=4045',0,'revision','',0),(4046,2,'2022-02-09 16:09:03','2022-02-09 16:09:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 8, 2022</strong> 2145 hd;Â  Last week; 3565 hd; a year ago 1955 hd. Feeder steers &amp; heifers sold $4-$15 higher in spots w/ lots of big strings of long weaned cattle. Slaughter cows &amp; bulls sold $6-$8 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$215.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$223.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$152.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">N/A</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$77.00 - $91.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $113.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">520lbs @$217.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">596lbs @$187.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">694lbs @$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">744lbs @$172.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">807lbs @$163.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">SteersÂ </td>\n<td style=\"width: 161.031px; height: 46px;\">860lbs @$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">944lbs @$152.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">672lbs @$157.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">721lbs @$152.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">747lbs@$151.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 8, 2022 - Market Report','','publish','closed','open','','february-8-2022-market-report','','','2022-02-09 16:09:06','2022-02-09 16:09:06','',0,'https://kingsvillelivestock.com/?p=4046',0,'post','',0),(4048,2,'2022-02-09 16:09:03','2022-02-09 16:09:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 8, 2022</strong> 2145 hd;Â  Last week; 3565 hd; a year ago 1955 hd. Feeder steers &amp; heifers sold $4-$15 higher in spots w/ lots of big strings of long weaned cattle. Slaughter cows &amp; bulls sold $6-$8 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$215.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$223.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$152.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">N/A</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$77.00 - $91.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $113.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">520lbs @$217.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">596lbs @$187.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">694lbs @$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">744lbs @$172.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">807lbs @$163.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">SteersÂ </td>\n<td style=\"width: 161.031px; height: 46px;\">860lbs @$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">944lbs @$152.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">672lbs @$157.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">721lbs @$152.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">747lbs@$151.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 8, 2022 - Market Report','','inherit','closed','closed','','4046-revision-v1','','','2022-02-09 16:09:03','2022-02-09 16:09:03','',4046,'https://kingsvillelivestock.com/?p=4048',0,'revision','',0),(4049,2,'2022-02-09 16:09:03','2022-02-09 16:09:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 8, 2022</strong> 2145 hd;Â  Last week; 3565 hd; a year ago 1955 hd. Feeder steers &amp; heifers sold $4-$15 higher in spots w/ lots of big strings of long weaned cattle. Slaughter cows &amp; bulls sold $6-$8 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$215.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$223.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$152.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">N/A</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$77.00 - $91.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $113.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">520lbs @$217.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">596lbs @$187.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">694lbs @$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">744lbs @$172.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">807lbs @$163.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">SteersÂ </td>\n<td style=\"width: 161.031px; height: 46px;\">860lbs @$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">944lbs @$152.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">672lbs @$157.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">721lbs @$152.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">747lbs@$151.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 1, 2022 - Market Report','','inherit','closed','closed','','4046-revision-v1','','','2022-02-09 16:09:03','2022-02-09 16:09:03','',4046,'https://kingsvillelivestock.com/?p=4049',0,'revision','',0),(4051,2,'2022-02-09 16:09:06','2022-02-09 16:09:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 8, 2022</strong> 2145 hd;Â  Last week; 3565 hd; a year ago 1955 hd. Feeder steers &amp; heifers sold $4-$15 higher in spots w/ lots of big strings of long weaned cattle. Slaughter cows &amp; bulls sold $6-$8 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$215.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$223.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$152.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$162.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">N/A</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$77.00 - $91.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $113.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">520lbs @$217.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">596lbs @$187.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">694lbs @$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">744lbs @$172.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">807lbs @$163.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">SteersÂ </td>\n<td style=\"width: 161.031px; height: 46px;\">860lbs @$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">944lbs @$152.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">672lbs @$157.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">721lbs @$152.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">747lbs@$151.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 8, 2022 - Market Report','','inherit','closed','closed','','4046-revision-v1','','','2022-02-09 16:09:06','2022-02-09 16:09:06','',4046,'https://kingsvillelivestock.com/?p=4051',0,'revision','',0),(4053,2,'2022-02-09 18:27:23','2022-02-09 18:27:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/Tuesday-February-8th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4036\">Tuesday, February 8th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\"><strong>Special Cow &amp; Bull Sale, Saturday, February 19th @ 11 am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am</i></b></p>\n<ul>\n<li><b>Thomas Farms: 2 </b>18 month old Horned Hereford Bulls, very gentle. Semen &amp; Trich Tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Thorton Farms: </b><b>20 </b>Blk Angus Purebred 1100lbs bred heifers,3rd Period. Bred LBWT Blk Angus Sydenstricker Bulls, nice kind</li>\n<li><b>Jamson Farms: </b><b>15</b> Red-Rwf 3-6 yr old cows,2nd &amp; 3rd period. Bred Blk or Red Angus Bulls</li>\n<li><b>Botch Farms</b><b>: 10</b> Blk-Bwf 3-6 yr old cows w/ spring calves. Cows sell open.</li>\n<li><b>Adams Farms:</b> <b>21 </b>Bwf 3-6 yr. old cows,2nd &amp; 3rd period. Bred Blk Gelv. Bulls. Nice set of cows</li>\n<li><b>Miles Farms</b><b>:</b> <b>23</b> Blk-Bwf SS cows, 3rd period. Bred Angus Bulls</li>\n<li><b>McNealy Farms</b>: <b>40 </b>Blk Angus 3-4 yr old cows,3rd period. <b>25 </b>Blk Angus 5-6 yr old cows,3rd Period. Cows bred Sim-Angus &amp; Blk. Gelv. Bulls</li>\n<li><b>Garton Farms:</b> <b>30</b> Blk Angus 3-4 yr old cows,2nd Period. <b>30 </b>Blk Angus 5-6 yr old cows,2nd Period</li>\n<li><b>Mead Farms</b><b>:</b> <b>30</b> Blk-Bwf 3-4 yr old cows,3rd Period <b>27</b> Blk-Bwf 5-6 yr old cows,3rd Period. All cows bred Blk-Angus Bulls &amp; start calving March 1st. Gentle set of cows will follow feed truck.</li>\n<li><b>T&amp;H Farms</b>: <b>10 </b>Red Balancer 2 yr old heifers w/ 30 day old calves at side. Ear-tagged to match. Heifers sell open &amp; very gentle. Calves are sired by Red Balancer Bulls.</li>\n<li><b>Hook Farms:</b> <b>50</b> Blk-Bwf SS-BM Cows w/ 250-350lbs fall calves at side. Cows running back w/ Blk Angus Bulls since Nov. 25th. Should be several 3N1â€™s</li>\n<li><b>Alexa &amp; Allie Anstine</b><b>:</b> <b>10</b> Bwf 2 yr old, 1150lbs bred heifers,3rd period. Bred LBWT Seedstock Plus Blk Balancer Bulls. Start calving March 20th. All heifers were pelvic measure prior to breeding &amp; had all shots.</li>\n<li><b>Sam Moon Farms</b><b>: 20 </b>Fancy Blk Angus 1100lbs bred heifers. Bred to LBWT Byergo Reg. Angus Bulls. Start calving March 15th for 45 days. All home-raised, had all shots &amp; very gentle. Only selling due to loss of rented ground.</li>\n<li><b>Lamb Farms</b><b>:</b> <b>30</b> Red-Rwf 2-SS cows, 3rd Period. <b>30 </b>Blk-Bwf 2-SS cows,3rd Period. All cows bred to Blk Angus Bulls. Gentle set of home-raised cows that have had all shots. Cows will wean off a big set of calves. Selling due to cutting back cow herd to improve some fencing &amp; slow down a little.</li>\n<li><b>Milligan Farms</b><b>:</b> <b>20</b> Blk 5-SS cows, 3rd Period. Bred Blk Bulls.</li>\n<li><b>Siegel Farms:</b> <b>30 </b>Blk-Red 3-SS cows, 3rd period. Bred Blk Bulls.</li>\n<li><b>Asbury Farms:</b> <b>20 </b>Blk Angus 2 yr old 1100lbs bred heifers, 3rd Period. Start calving end of February for 30 days. Gentle, nice set of bred heifers.</li>\n<li><strong>Richardson Farms: 25</strong> Blk-Bwf 3-5 yr. old Cows,3rd Period. Bred Blk. Balancer Bulls.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-02-09 18:27:23','2022-02-09 18:27:23','',2209,'https://kingsvillelivestock.com/?p=4053',0,'revision','',0),(4055,2,'2022-02-09 18:28:59','2022-02-09 18:28:59','','February 19,2022 Cow Sale','','inherit','closed','closed','','february-192022-cow-sale-2','','','2022-02-09 18:28:59','2022-02-09 18:28:59','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(4056,2,'2022-02-09 18:29:18','2022-02-09 18:29:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4055\">February 19th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-02-09 18:29:18','2022-02-09 18:29:18','',639,'https://kingsvillelivestock.com/?p=4056',0,'revision','',0),(4057,2,'2022-02-09 18:31:03','2022-02-09 18:31:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4055\">February 19th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-02-09 18:31:03','2022-02-09 18:31:03','',1967,'https://kingsvillelivestock.com/?p=4057',0,'revision','',0),(4059,2,'2022-02-14 17:19:31','2022-02-14 17:19:31','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4055\">February 19th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-02-14 17:19:31','2022-02-14 17:19:31','',639,'https://kingsvillelivestock.com/?p=4059',0,'revision','',0),(4060,2,'2022-02-14 17:20:23','2022-02-14 17:20:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/Tuesday-February-8th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4036\">Tuesday, February 8th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\"><strong>Special Cow &amp; Bull Sale, Saturday, February 19th @ 11 am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am</i></b></p>\n<ul>\n<li><b>Thomas Farms: 2 </b>18 month old Horned Hereford Bulls, very gentle. Semen &amp; Trich Tested</li>\n<li><b>Bradley Farms: </b><b>2 </b>2 yr. old Char. Bulls. <b>1</b> 2 yr. old Reg. Red Angus Bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Thorton Farms: </b><b>20 </b>Blk Angus Purebred 1100lbs bred heifers,3rd Period. Bred LBWT Blk Angus Sydenstricker Bulls, nice kind</li>\n<li><b>Jamson Farms: </b><b>15</b> Red-Rwf 3-6 yr old cows,2nd &amp; 3rd period. Bred Blk or Red Angus Bulls</li>\n<li><b>Botch Farms</b><b>: 10</b> Blk-Bwf 3-6 yr old cows w/ spring calves. Cows sell open.</li>\n<li><b>Adams Farms:</b> <b>21 </b>Bwf 3-6 yr. old cows,2nd &amp; 3rd period. Bred Blk Gelv. Bulls. Nice set of cows</li>\n<li><b>Miles Farms</b><b>:</b> <b>23</b> Blk-Bwf SS cows, 3rd period. Bred Angus Bulls</li>\n<li><b>McNealy Farms</b>: <b>40 </b>Blk Angus 3-4 yr old cows,3rd period. <b>25 </b>Blk Angus 5-6 yr old cows,3rd Period. Cows bred Sim-Angus &amp; Blk. Gelv. Bulls</li>\n<li><b>Garton Farms:</b> <b>30</b> Blk Angus 3-4 yr old cows,2nd Period. <b>30 </b>Blk Angus 5-6 yr old cows,2nd Period</li>\n<li><b>Mead Farms</b><b>:</b> <b>30</b> Blk-Bwf 3-4 yr old cows,3rd Period <b>27</b> Blk-Bwf 5-6 yr old cows,3rd Period. All cows bred Blk-Angus Bulls &amp; start calving March 1st. Gentle set of cows will follow feed truck.</li>\n<li><b>T&amp;H Farms</b>: <b>10 </b>Red Balancer 2 yr old heifers w/ 30 day old calves at side. Ear-tagged to match. Heifers sell open &amp; very gentle. Calves are sired by Red Balancer Bulls.</li>\n<li><b>Hook Farms:</b> <b>50</b> Blk-Bwf SS-BM Cows w/ 250-350lbs fall calves at side. Cows running back w/ Blk Angus Bulls since Nov. 25th. Should be several 3N1â€™s</li>\n<li><b>Alexa &amp; Allie Anstine</b><b>:</b> <b>10</b> Bwf 2 yr old, 1150lbs bred heifers,3rd period. Bred LBWT Seedstock Plus Blk Balancer Bulls. Start calving March 20th. All heifers were pelvic measure prior to breeding &amp; had all shots.</li>\n<li><b>Sam Moon Farms</b><b>: 20 </b>Fancy Blk Angus 1100lbs bred heifers. Bred to LBWT Byergo Reg. Angus Bulls. Start calving March 15th for 45 days. All home-raised, had all shots &amp; very gentle. Only selling due to loss of rented ground.</li>\n<li><b>Lamb Farms</b><b>:</b> <b>30</b> Red-Rwf 2-SS cows, 3rd Period. <b>30 </b>Blk-Bwf 2-SS cows,3rd Period. All cows bred to Blk Angus Bulls. Gentle set of home-raised cows that have had all shots. Cows will wean off a big set of calves. Selling due to cutting back cow herd to improve some fencing &amp; slow down a little.</li>\n<li><b>Milligan Farms</b><b>:</b> <b>20</b> Blk 5-SS cows, 3rd Period. Bred Blk Bulls.</li>\n<li><b>Siegel Farms:</b> <b>30 </b>Blk-Red 3-SS cows, 3rd period. Bred Blk Bulls.</li>\n<li><b>Asbury Farms:</b> <b>20 </b>Blk Angus 2 yr old 1100lbs bred heifers, 3rd Period. Start calving end of February for 30 days. Gentle, nice set of bred heifers.</li>\n<li><strong>Richardson Farms: 25</strong> Blk-Bwf 3-5 yr. old Cows,3rd Period. Bred Blk. Balancer Bulls.</li>\n<li><b>Starke Farms:</b> <b>16 </b>Red Angus 3-5 yr. old Cows,3rd Period. Start calving March 17th. Had Scour Bos 9, Virashield 6 VL5 HB, Ivomec Plus on Dec. 20th.</li>\n<li><b>Rinnie Farms:</b> <b>35 </b>Blk Angus/ Red Angus Composite 3-7 yr. old Fall Calving Cows. Bulls turned in Dec. 1st &amp; bred to Red Angus Composite Bulls. Start calving Sept. or first of Oct.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-02-14 17:20:23','2022-02-14 17:20:23','',2209,'https://kingsvillelivestock.com/?p=4060',0,'revision','',0),(4061,2,'2022-02-14 17:23:32','2022-02-14 17:23:32','','February 19,2022 Cow Sale','','inherit','closed','closed','','february-192022-cow-sale-3','','','2022-02-14 17:23:32','2022-02-14 17:23:32','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(4062,2,'2022-02-14 17:23:42','2022-02-14 17:23:42','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4061\">February 19,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-02-14 17:23:42','2022-02-14 17:23:42','',639,'https://kingsvillelivestock.com/?p=4062',0,'revision','',0),(4063,2,'2022-02-14 17:24:26','2022-02-14 17:24:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4061\">February 19,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-02-14 17:24:26','2022-02-14 17:24:26','',1967,'https://kingsvillelivestock.com/?p=4063',0,'revision','',0),(4064,2,'2022-02-14 18:08:24','2022-02-14 18:08:24','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/Tuesday-February-8th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4036\">Tuesday, February 8th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\"><strong>Special Cow &amp; Bull Sale, Saturday, February 19th @ 11 am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am</i></b></p>\n<ul>\n<li><b>Thomas Farms: 2 </b>18 month old Horned Hereford Bulls, very gentle. Semen &amp; Trich Tested</li>\n<li><b>Bradley Farms: </b><b>2 </b>2 yr. old Char. Bulls. <b>1</b> 2 yr. old Reg. Red Angus Bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Thorton Farms: </b><b>20 </b>Blk Angus Purebred 1100lbs bred heifers,3rd Period. Bred LBWT Blk Angus Sydenstricker Bulls, nice kind</li>\n<li><b>Jamson Farms: </b><b>15</b> Red-Rwf 3-6 yr old cows,2nd &amp; 3rd period. Bred Blk or Red Angus Bulls</li>\n<li><b>Botch Farms</b><b>: 10</b> Blk-Bwf 3-6 yr old cows w/ spring calves. Cows sell open.</li>\n<li><b>Adams Farms:</b> <b>21 </b>Bwf 3-6 yr. old cows,2nd &amp; 3rd period. Bred Blk Gelv. Bulls. Nice set of cows</li>\n<li><b>Miles Farms</b><b>:</b> <b>23</b> Blk-Bwf SS cows, 3rd period. Bred Angus Bulls</li>\n<li><b>McNealy Farms</b>: <b>40 </b>Blk Angus 3-4 yr old cows,3rd period. <b>25 </b>Blk Angus 5-6 yr old cows,3rd Period. Cows bred Sim-Angus &amp; Blk. Gelv. Bulls</li>\n<li><b>Garton Farms:</b> <b>30</b> Blk Angus 3-4 yr old cows,2nd Period. <b>30 </b>Blk Angus 5-6 yr old cows,2nd Period</li>\n<li><b>Mead Farms</b><b>:</b> <b>30</b> Blk-Bwf 3-4 yr old cows,3rd Period <b>27</b> Blk-Bwf 5-6 yr old cows,3rd Period. All cows bred Blk-Angus Bulls &amp; start calving March 1st. Gentle set of cows will follow feed truck.</li>\n<li><b>T&amp;H Farms</b>: <b>10 </b>Red Balancer 2 yr old heifers w/ 30 day old calves at side. Ear-tagged to match. Heifers sell open &amp; very gentle. Calves are sired by Red Balancer Bulls.</li>\n<li><b>Hook Farms:</b> <b>50</b> Blk-Bwf SS-BM Cows w/ 250-350lbs fall calves at side. Cows running back w/ Blk Angus Bulls since Nov. 25th. Should be several 3N1â€™s</li>\n<li><b>Alexa &amp; Allie Anstine</b><b>:</b> <b>10</b> Bwf 2 yr old, 1150lbs bred heifers,3rd period. Bred LBWT Seedstock Plus Blk Balancer Bulls. Start calving March 20th. All heifers were pelvic measure prior to breeding &amp; had all shots.</li>\n<li><b>Sam Moon Farms</b><b>: 20 </b>Fancy Blk Angus 1100lbs bred heifers. Bred to LBWT Byergo Reg. Angus Bulls. Start calving March 15th for 45 days. All home-raised, had all shots &amp; very gentle. Only selling due to loss of rented ground.</li>\n<li><b>Lamb Farms</b><b>:</b> <b>30</b> Red-Rwf 2-SS cows, 3rd Period. <b>30 </b>Blk-Bwf 2-SS cows,3rd Period. All cows bred to Blk Angus Bulls. Gentle set of home-raised cows that have had all shots. Cows will wean off a big set of calves. Selling due to cutting back cow herd to improve some fencing &amp; slow down a little.</li>\n<li><b>Milligan Farms</b><b>:</b> <b>20</b> Blk 5-SS cows, 3rd Period. Bred Blk Bulls.</li>\n<li><b>Siegel Farms:</b> <b>30 </b>Blk-Red 3-SS cows, 3rd period. Bred Blk Bulls.</li>\n<li><b>Asbury Farms:</b> <b>20 </b>Blk Angus 2 yr old 1100lbs bred heifers, 3rd Period. Start calving end of February for 30 days. Gentle, nice set of bred heifers.</li>\n<li><strong>Richardson Farms: 25</strong> Blk-Bwf 3-5 yr. old Cows,3rd Period. Bred Blk. Balancer Bulls.</li>\n<li><b>Starke Farms:</b> <b>16 </b>Red Angus 3-5 yr. old Cows,3rd Period. Start calving March 17th. Had Scour Bos 9, Virashield 6 VL5 HB, Ivomec Plus on Dec. 20th.</li>\n<li><b>Rinnie Farms:</b> <b>35 </b>Blk Angus/ Red Angus Composite 3-7 yr. old Fall Calving Cows. Bulls turned in Dec. 1st &amp; bred to Red Angus Composite Bulls. Start calving Sept. or first of Oct.</li>\n<li><b>Sharp Farms:</b> <b>12</b> Blk 1100lbs Bred Heifers. Bred Angus Bulls &amp; start calving March 15th.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-02-14 18:08:24','2022-02-14 18:08:24','',2209,'https://kingsvillelivestock.com/?p=4064',0,'revision','',0),(4065,2,'2022-02-14 18:10:46','2022-02-14 18:10:46','','February 19,2022 Cow Sale','','inherit','closed','closed','','february-192022-cow-sale-4','','','2022-02-14 18:10:46','2022-02-14 18:10:46','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale-3.pdf',0,'attachment','application/pdf',0),(4066,2,'2022-02-14 18:10:58','2022-02-14 18:10:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale-3.pdf\" rel=\"attachment wp-att-4065\">February 19th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-02-14 18:10:58','2022-02-14 18:10:58','',639,'https://kingsvillelivestock.com/?p=4066',0,'revision','',0),(4067,2,'2022-02-14 18:11:55','2022-02-14 18:11:55','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 19th @ 11:00am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale-3.pdf\" rel=\"attachment wp-att-4065\">February 19th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-02-14 18:11:55','2022-02-14 18:11:55','',1967,'https://kingsvillelivestock.com/?p=4067',0,'revision','',0),(4068,2,'2022-02-14 19:09:35','2022-02-14 19:09:35','','Tuesday,February 15th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayfebruary-15th-feeder-cattle-consignments','','','2022-02-14 19:09:35','2022-02-14 19:09:35','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/02/TuesdayFebruary-15th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4069,2,'2022-02-14 19:09:45','2022-02-14 19:09:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/TuesdayFebruary-15th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4068\">Tuesday,February 15th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\"><strong>Special Cow &amp; Bull Sale, Saturday, February 19th @ 11 am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am</i></b></p>\n<ul>\n<li><b>Thomas Farms: 2 </b>18 month old Horned Hereford Bulls, very gentle. Semen &amp; Trich Tested</li>\n<li><b>Bradley Farms: </b><b>2 </b>2 yr. old Char. Bulls. <b>1</b> 2 yr. old Reg. Red Angus Bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Thorton Farms: </b><b>20 </b>Blk Angus Purebred 1100lbs bred heifers,3rd Period. Bred LBWT Blk Angus Sydenstricker Bulls, nice kind</li>\n<li><b>Jamson Farms: </b><b>15</b> Red-Rwf 3-6 yr old cows,2nd &amp; 3rd period. Bred Blk or Red Angus Bulls</li>\n<li><b>Botch Farms</b><b>: 10</b> Blk-Bwf 3-6 yr old cows w/ spring calves. Cows sell open.</li>\n<li><b>Adams Farms:</b> <b>21 </b>Bwf 3-6 yr. old cows,2nd &amp; 3rd period. Bred Blk Gelv. Bulls. Nice set of cows</li>\n<li><b>Miles Farms</b><b>:</b> <b>23</b> Blk-Bwf SS cows, 3rd period. Bred Angus Bulls</li>\n<li><b>McNealy Farms</b>: <b>40 </b>Blk Angus 3-4 yr old cows,3rd period. <b>25 </b>Blk Angus 5-6 yr old cows,3rd Period. Cows bred Sim-Angus &amp; Blk. Gelv. Bulls</li>\n<li><b>Garton Farms:</b> <b>30</b> Blk Angus 3-4 yr old cows,2nd Period. <b>30 </b>Blk Angus 5-6 yr old cows,2nd Period</li>\n<li><b>Mead Farms</b><b>:</b> <b>30</b> Blk-Bwf 3-4 yr old cows,3rd Period <b>27</b> Blk-Bwf 5-6 yr old cows,3rd Period. All cows bred Blk-Angus Bulls &amp; start calving March 1st. Gentle set of cows will follow feed truck.</li>\n<li><b>T&amp;H Farms</b>: <b>10 </b>Red Balancer 2 yr old heifers w/ 30 day old calves at side. Ear-tagged to match. Heifers sell open &amp; very gentle. Calves are sired by Red Balancer Bulls.</li>\n<li><b>Hook Farms:</b> <b>50</b> Blk-Bwf SS-BM Cows w/ 250-350lbs fall calves at side. Cows running back w/ Blk Angus Bulls since Nov. 25th. Should be several 3N1â€™s</li>\n<li><b>Alexa &amp; Allie Anstine</b><b>:</b> <b>10</b> Bwf 2 yr old, 1150lbs bred heifers,3rd period. Bred LBWT Seedstock Plus Blk Balancer Bulls. Start calving March 20th. All heifers were pelvic measure prior to breeding &amp; had all shots.</li>\n<li><b>Sam Moon Farms</b><b>: 20 </b>Fancy Blk Angus 1100lbs bred heifers. Bred to LBWT Byergo Reg. Angus Bulls. Start calving March 15th for 45 days. All home-raised, had all shots &amp; very gentle. Only selling due to loss of rented ground.</li>\n<li><b>Lamb Farms</b><b>:</b> <b>30</b> Red-Rwf 2-SS cows, 3rd Period. <b>30 </b>Blk-Bwf 2-SS cows,3rd Period. All cows bred to Blk Angus Bulls. Gentle set of home-raised cows that have had all shots. Cows will wean off a big set of calves. Selling due to cutting back cow herd to improve some fencing &amp; slow down a little.</li>\n<li><b>Milligan Farms</b><b>:</b> <b>20</b> Blk 5-SS cows, 3rd Period. Bred Blk Bulls.</li>\n<li><b>Siegel Farms:</b> <b>30 </b>Blk-Red 3-SS cows, 3rd period. Bred Blk Bulls.</li>\n<li><b>Asbury Farms:</b> <b>20 </b>Blk Angus 2 yr old 1100lbs bred heifers, 3rd Period. Start calving end of February for 30 days. Gentle, nice set of bred heifers.</li>\n<li><strong>Richardson Farms: 25</strong> Blk-Bwf 3-5 yr. old Cows,3rd Period. Bred Blk. Balancer Bulls.</li>\n<li><b>Starke Farms:</b> <b>16 </b>Red Angus 3-5 yr. old Cows,3rd Period. Start calving March 17th. Had Scour Bos 9, Virashield 6 VL5 HB, Ivomec Plus on Dec. 20th.</li>\n<li><b>Rinnie Farms:</b> <b>35 </b>Blk Angus/ Red Angus Composite 3-7 yr. old Fall Calving Cows. Bulls turned in Dec. 1st &amp; bred to Red Angus Composite Bulls. Start calving Sept. or first of Oct.</li>\n<li><b>Sharp Farms:</b> <b>12</b> Blk 1100lbs Bred Heifers. Bred Angus Bulls &amp; start calving March 15th.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-02-14 19:09:45','2022-02-14 19:09:45','',2209,'https://kingsvillelivestock.com/?p=4069',0,'revision','',0),(4070,2,'2022-02-16 07:44:58','2022-02-16 07:44:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale-3.pdf\" rel=\"attachment wp-att-4065\">February 19th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-02-16 07:44:58','2022-02-16 07:44:58','',639,'https://kingsvillelivestock.com/?p=4070',0,'revision','',0),(4071,2,'2022-02-16 07:45:38','2022-02-16 07:45:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 19th @ 11:00am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale-3.pdf\" rel=\"attachment wp-att-4065\">February 19th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-02-16 07:45:38','2022-02-16 07:45:38','',1967,'https://kingsvillelivestock.com/?p=4071',0,'revision','',0),(4072,2,'2022-02-16 18:06:16','2022-02-16 18:06:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 15, 2022</strong> 4436 hd; Last week; 2145 hd; a year ago N/A. Compared to last week steers under 700lbs sold $5-$7 higher &amp; heavier weights traded steady. Heifers sold steady-$6 higher. Lots of reputation cattle &amp; quality was very good. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$223.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$229.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$139.00-$153.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$145.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$115.00-$131.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$77.00 - $91.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $113.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">491lbs @$229.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">601lbs @$199.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">648lbs @$187.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">781lbs @$167.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">495lbs @$194.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">623lbs @$175.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">707lbs @$155.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 15, 2022 - Market Report','','publish','closed','open','','february-15-2022-market-report','','','2022-02-16 18:06:19','2022-02-16 18:06:19','',0,'https://kingsvillelivestock.com/?p=4072',0,'post','',0),(4073,2,'2022-02-16 18:06:16','2022-02-16 18:06:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 15, 2022</strong> 4436 hd; Last week; 2145 hd; a year ago N/A. Compared to last week steers under 700lbs sold $5-$7 higher &amp; heavier weights traded steady. Heifers sold steady-$6 higher. Lots of reputation cattle &amp; quality was very good. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$223.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$229.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$139.00-$153.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$145.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$115.00-$131.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$77.00 - $91.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $113.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">491lbs @$229.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">601lbs @$199.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">648lbs @$187.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">781lbs @$167.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">495lbs @$194.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">623lbs @$175.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">707lbs @$155.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 15, 2022 - Market Report','','inherit','closed','closed','','4072-revision-v1','','','2022-02-16 18:06:16','2022-02-16 18:06:16','',4072,'https://kingsvillelivestock.com/?p=4073',0,'revision','',0),(4074,2,'2022-02-16 18:06:16','2022-02-16 18:06:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 15, 2022</strong> 4436 hd; Last week; 2145 hd; a year ago N/A. Compared to last week steers under 700lbs sold $5-$7 higher &amp; heavier weights traded steady. Heifers sold steady-$6 higher. Lots of reputation cattle &amp; quality was very good. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$223.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$229.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$139.00-$153.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$145.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$115.00-$131.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$77.00 - $91.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $113.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">491lbs @$229.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">601lbs @$199.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">648lbs @$187.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">781lbs @$167.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">495lbs @$194.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">623lbs @$175.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">707lbs @$155.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 8, 2022 - Market Report','','inherit','closed','closed','','4072-revision-v1','','','2022-02-16 18:06:16','2022-02-16 18:06:16','',4072,'https://kingsvillelivestock.com/?p=4074',0,'revision','',0),(4075,2,'2022-02-16 18:06:19','2022-02-16 18:06:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 15, 2022</strong> 4436 hd; Last week; 2145 hd; a year ago N/A. Compared to last week steers under 700lbs sold $5-$7 higher &amp; heavier weights traded steady. Heifers sold steady-$6 higher. Lots of reputation cattle &amp; quality was very good. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$223.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$229.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$139.00-$153.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$145.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$115.00-$131.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$77.00 - $91.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $65.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $113.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.7\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">491lbs @$229.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">601lbs @$199.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">648lbs @$187.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">781lbs @$167.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">495lbs @$194.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">623lbs @$175.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">707lbs @$155.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 15, 2022 - Market Report','','inherit','closed','closed','','4072-revision-v1','','','2022-02-16 18:06:19','2022-02-16 18:06:19','',4072,'https://kingsvillelivestock.com/?p=4075',0,'revision','',0),(4076,2,'2022-02-16 19:27:55','2022-02-16 19:27:55','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/TuesdayFebruary-15th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4068\">Tuesday,February 15th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\"><strong>Special Cow &amp; Bull Sale, Saturday, February 19th @ 11 am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am</i></b></p>\n<ul>\n<li><b>Thomas Farms: 2 </b>18 month old Horned Hereford Bulls, very gentle. Semen &amp; Trich Tested</li>\n<li><b>Bradley Farms: </b><b>2 </b>2 yr. old Char. Bulls. <b>1</b> 2 yr. old Reg. Red Angus Bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Thorton Farms: </b><b>20 </b>Blk Angus Purebred 1100lbs bred heifers,3rd Period. Bred LBWT Blk Angus Sydenstricker Bulls, nice kind</li>\n<li><b>Jamson Farms: </b><b>15</b> Red-Rwf 3-6 yr old cows,2nd &amp; 3rd period. Bred Blk or Red Angus Bulls</li>\n<li><b>Botch Farms</b><b>: 10</b> Blk-Bwf 3-6 yr old cows w/ spring calves. Cows sell open.</li>\n<li><b>Adams Farms:</b> <b>21 </b>Bwf 3-6 yr. old cows,2nd &amp; 3rd period. Bred Blk Gelv. Bulls. Nice set of cows</li>\n<li><b>Miles Farms</b><b>:</b> <b>23</b> Blk-Bwf SS cows, 3rd period. Bred Angus Bulls</li>\n<li><b>McNealy Farms</b>: <b>40 </b>Blk Angus 3-4 yr old cows,3rd period. <b>25 </b>Blk Angus 5-6 yr old cows,3rd Period. Cows bred Sim-Angus &amp; Blk. Gelv. Bulls</li>\n<li><b>Garton Farms:</b> <b>30</b> Blk Angus 3-4 yr old cows,2nd Period. <b>30 </b>Blk Angus 5-6 yr old cows,2nd Period</li>\n<li><b>Mead Farms</b><b>:</b> <b>30</b> Blk-Bwf 3-4 yr old cows,3rd Period <b>27</b> Blk-Bwf 5-6 yr old cows,3rd Period. All cows bred Blk-Angus Bulls &amp; start calving March 1st. Gentle set of cows will follow feed truck.</li>\n<li><b>T&amp;H Farms</b>: <b>10 </b>Red Balancer 2 yr old heifers w/ 30 day old calves at side. Ear-tagged to match. Heifers sell open &amp; very gentle. Calves are sired by Red Balancer Bulls.</li>\n<li><b>Hook Farms:</b> <b>50</b> Blk-Bwf SS-BM Cows w/ 250-350lbs fall calves at side. Cows running back w/ Blk Angus Bulls since Nov. 25th. Should be several 3N1â€™s</li>\n<li><b>Alexa &amp; Allie Anstine</b><b>:</b> <b>10</b> Bwf 2 yr old, 1150lbs bred heifers,3rd period. Bred LBWT Seedstock Plus Blk Balancer Bulls. Start calving March 20th. All heifers were pelvic measure prior to breeding &amp; had all shots.</li>\n<li><b>Sam Moon Farms</b><b>: 20 </b>Fancy Blk Angus 1100lbs bred heifers. Bred to LBWT Byergo Reg. Angus Bulls. Start calving March 15th for 45 days. All home-raised, had all shots &amp; very gentle. Only selling due to loss of rented ground.</li>\n<li><b>Lamb Farms</b><b>:</b> <b>30</b> Red-Rwf 2-SS cows, 3rd Period. <b>30 </b>Blk-Bwf 2-SS cows,3rd Period. All cows bred to Blk Angus Bulls. Gentle set of home-raised cows that have had all shots. Cows will wean off a big set of calves. Selling due to cutting back cow herd to improve some fencing &amp; slow down a little.</li>\n<li><b>Milligan Farms</b><b>:</b> <b>20</b> Blk 5-SS cows, 3rd Period. Bred Blk Bulls.</li>\n<li><b>Siegel Farms:</b> <b>30 </b>Blk-Red 3-SS cows, 3rd period. Bred Blk Bulls.</li>\n<li><b>Asbury Farms:</b> <b>20 </b>Blk Angus 2 yr old 1100lbs bred heifers, 3rd Period. Start calving end of February for 30 days. Gentle, nice set of bred heifers.</li>\n<li><strong>Richardson Farms: 25</strong> Blk-Bwf 3-5 yr. old Cows,3rd Period. Bred Blk. Balancer Bulls.</li>\n<li><b>Starke Farms:</b> <b>16 </b>Red Angus 3-5 yr. old Cows,3rd Period. Start calving March 17th. Had Scour Bos 9, Virashield 6 VL5 HB, Ivomec Plus on Dec. 20th.</li>\n<li><b>Rinnie Farms:</b> <b>35 </b>Blk Angus/ Red Angus Composite 3-7 yr. old Fall Calving Cows. Bulls turned in Dec. 1st &amp; bred to Red Angus Composite Bulls. Start calving Sept. or first of Oct.</li>\n<li><b>Sharp Farms:</b> <b>12</b> Blk 1100lbs Bred Heifers. Bred Angus Bulls &amp; start calving March 15th.</li>\n<li><b>Dean Farms:</b> <b>30</b> Blk Balancer 1100lbs Bred Heifers,3rd Period. Bred Blk &amp; Sim-Angus Bulls. Start calving end of Feb. All home-raised &amp; gentle</li>\n<li><b>Hershberger Farms:</b> <b>35</b> Blk 3-5 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Tunnell Farms:</b> <b>70</b> Blk 3-SS, 2nd &amp; 3rd Period. Bred Blk Bulls</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-02-16 19:27:55','2022-02-16 19:27:55','',2209,'https://kingsvillelivestock.com/?p=4076',0,'revision','',0),(4077,2,'2022-02-16 19:28:36','2022-02-16 19:28:36','','February 19,2022 Cow Sale','','inherit','closed','closed','','february-192022-cow-sale-5','','','2022-02-16 19:28:36','2022-02-16 19:28:36','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale-4.pdf',0,'attachment','application/pdf',0),(4078,2,'2022-02-16 19:28:45','2022-02-16 19:28:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale-4.pdf\" rel=\"attachment wp-att-4077\">February 19,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-02-16 19:28:45','2022-02-16 19:28:45','',639,'https://kingsvillelivestock.com/?p=4078',0,'revision','',0),(4079,2,'2022-02-16 19:29:20','2022-02-16 19:29:20','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 19th @ 11:00am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/February-192022-Cow-Sale-4.pdf\" rel=\"attachment wp-att-4077\">February 19,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-02-16 19:29:20','2022-02-16 19:29:20','',1967,'https://kingsvillelivestock.com/?p=4079',0,'revision','',0),(4081,2,'2022-02-21 16:13:19','2022-02-21 16:13:19','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-02-21 16:13:19','2022-02-21 16:13:19','',639,'https://kingsvillelivestock.com/?p=4081',0,'revision','',0),(4082,2,'2022-02-21 16:13:55','2022-02-21 16:13:55','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Feb. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-02-21 16:13:55','2022-02-21 16:13:55','',1967,'https://kingsvillelivestock.com/?p=4082',0,'revision','',0),(4083,2,'2022-02-21 16:17:09','2022-02-21 16:17:09','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.7\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/TuesdayFebruary-15th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4068\">Tuesday,February 15th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-02-21 16:17:09','2022-02-21 16:17:09','',2209,'https://kingsvillelivestock.com/?p=4083',0,'revision','',0),(4084,2,'2022-02-21 16:31:45','2022-02-21 16:31:45','','Tuesday,February 22nd Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayfebruary-22nd-feeder-cattle-consignments','','','2022-02-21 16:31:45','2022-02-21 16:31:45','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/02/TuesdayFebruary-22nd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4085,2,'2022-02-21 16:31:53','2022-02-21 16:31:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/TuesdayFebruary-22nd-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4084\">Tuesday,February 22nd Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-02-21 16:31:53','2022-02-21 16:31:53','',2209,'https://kingsvillelivestock.com/?p=4085',0,'revision','',0),(4087,2,'2022-02-23 17:13:15','2022-02-23 17:13:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-02-23 17:13:15','2022-02-23 17:13:15','',639,'https://kingsvillelivestock.com/?p=4087',0,'revision','',0),(4088,2,'2022-02-23 17:13:48','2022-02-23 17:13:48','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-02-23 17:13:48','2022-02-23 17:13:48','',1967,'https://kingsvillelivestock.com/?p=4088',0,'revision','',0),(4089,2,'2022-02-23 17:24:01','2022-02-23 17:24:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 22, 2022</strong> 2115 hd; Last week; 4436 hd; a year ago 4382. Feeder cattle sold steady on a lighter test compared to the last few weeks. Slaughter cows &amp; bulls sold steady-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$215.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$188.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$173.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$155.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$151.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$143.50-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$142.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$122.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$84.00 - $94.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $83.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">676lbs @$177.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">714lbs @$167.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">764lbs @$162.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">640lbs @$167.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">674lbs @$157.25</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 22, 2022 - Market Report','','publish','closed','open','','february-22-2022-market-report','','','2022-02-23 17:24:05','2022-02-23 17:24:05','',0,'https://kingsvillelivestock.com/?p=4089',0,'post','',0),(4091,2,'2022-02-23 17:24:01','2022-02-23 17:24:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 22, 2022</strong> 2115 hd; Last week; 4436 hd; a year ago 4382. Feeder cattle sold steady on a lighter test compared to the last few weeks. Slaughter cows &amp; bulls sold steady-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$215.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$188.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$173.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$155.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$151.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$143.50-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$142.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$122.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$84.00 - $94.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $83.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">676lbs @$177.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">714lbs @$167.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">764lbs @$162.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">640lbs @$167.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">674lbs @$157.25</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 22, 2022 - Market Report','','inherit','closed','closed','','4089-revision-v1','','','2022-02-23 17:24:01','2022-02-23 17:24:01','',4089,'https://kingsvillelivestock.com/?p=4091',0,'revision','',0),(4092,2,'2022-02-23 17:24:01','2022-02-23 17:24:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 22, 2022</strong> 2115 hd; Last week; 4436 hd; a year ago 4382. Feeder cattle sold steady on a lighter test compared to the last few weeks. Slaughter cows &amp; bulls sold steady-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$215.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$188.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$173.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$155.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$151.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$143.50-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$142.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$122.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$84.00 - $94.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $83.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">676lbs @$177.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">714lbs @$167.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">764lbs @$162.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">640lbs @$167.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">674lbs @$157.25</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 15, 2022 - Market Report','','inherit','closed','closed','','4089-revision-v1','','','2022-02-23 17:24:01','2022-02-23 17:24:01','',4089,'https://kingsvillelivestock.com/?p=4092',0,'revision','',0),(4093,2,'2022-02-23 17:24:05','2022-02-23 17:24:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 22, 2022</strong> 2115 hd; Last week; 4436 hd; a year ago 4382. Feeder cattle sold steady on a lighter test compared to the last few weeks. Slaughter cows &amp; bulls sold steady-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$215.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$188.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$173.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$155.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$151.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$169.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$143.50-$157.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$142.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$122.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$84.00 - $94.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $83.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">676lbs @$177.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">714lbs @$167.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">764lbs @$162.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">640lbs @$167.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">674lbs @$157.25</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 22, 2022 - Market Report','','inherit','closed','closed','','4089-revision-v1','','','2022-02-23 17:24:05','2022-02-23 17:24:05','',4089,'https://kingsvillelivestock.com/?p=4093',0,'revision','',0),(4094,2,'2022-02-28 17:00:37','2022-02-28 17:00:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/TuesdayFebruary-22nd-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4084\">Tuesday,February 22nd Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale. Saturday, March 19th @ 11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Reavis Angus Farm: </b><b>5 </b>Reg.12-14 month Blk Angus Bulls <b>8</b> Reg. 18 month old Blk Angus Bulls <b>2</b> Reg.2 yr. old Blk Angus Bulls. All bulls Semen &amp; Trich Tested</li>\n<li><b>Cain Farms: </b><b>1 </b>Â Reg. 2 yr old Red Angus Bull w/ 65lbs BW, 600lb WW. Good to use on Hfrs or Cows</li>\n<li><b>Circle R Ranch Angus: </b><b>5 </b>Â Reg. 18 month old Angus Bulls. All bulls AI sired by Basin Rainmaker. Bulls will be calving ease &amp; can be used on hfrs or cows. There will be NO papers, but out of Reg. Angus cows &amp; bulls. Bug growthy set of bulls that are gentle &amp; easy going.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Reavis Angus Farm: </b><b>5 </b>Reg. Blk Angus 5-SS Cows. Bred Blk Angus Bulls</li>\n<li><b>Canton Farms: </b><b>45 </b>Blk 3-4 yr. old Cows. <b>30</b> Blk 5 yr. old Cows <b>25</b> Blk 6-7 yr old Cows. All cows will be fall calvers &amp; have had calves weaned off 40 days prior to sale. Cows bred to Blk-Sim Angus Bulls &amp; bulls turned in Nov. 1st for 90 days. Have had all shots &amp; been worked by vet. Very nice set of fall calving cows.</li>\n<li><b>Conrow Farms: </b><b>5 </b>Blk AngusÂ  3 yr. old Cows w. spring calves at side. <b>15</b> Blk Angus 2yr. old Heifers w/ spring calves at side.Â  <b>5</b> Bwf 2 yr. old Heifers w/ spring calves at side. All hfrsÂ  &amp; cows are Ear tagged to match &amp; sell open. Very good quality.</li>\n<li><b>Cartwright Farms: </b><b>15 </b>Blk-BwfÂ  Cows w/ 200lbs calves at side. Nice set of gentle cows w/ a nice set of calves at side.</li>\n<li><b>Hoffman Farms: </b><b>27 </b>Bwf 3-6 yr. old Cows. All cows sired by Horned Hereford Bulls &amp; bred Blk Angus or Balancer Bulls. 1/2 Spring &amp; 1/2 Fall Calving Cows. Nice set of cows.</li>\n<li><b>Wilson Farms: </b><b>25 </b>Blk Cows all coming 2nd calf, 3rd PeriodÂ  <b>50</b> Blk 4 yr. old Cows,3rd PeriodÂ  <b>50</b> Blk 5-7 yr old Cows,3rd Period. All cows bred to fancy Reg. Angus Bulls &amp; Reg. Sim-Angus Bulls. Start calving March 15th for 60 days. Very nice set of cows.</li>\n<li><b>Tyler Farms Complete Dispersal: </b><b>15 </b>Fancy Red Angus 1150lbs bred Heifers. Start calving March 25th for 30 days. <b>25 </b>Fancy Red Angus 3-5 yr old Cows, 3rd Period. Bred Red &amp; Blk Angus Bulls. Cows are gentle &amp; had all shots. <b>15</b> Red Angus 3-5 yr old Fall Calving Cows. Start calving Aug. 1st for 70 days. As we are slowing down we will sell both our spring &amp; fall herds.</li>\n<li><b>Snyder Farms: </b><b>36 </b>Blk-Bwf 5-6 yr old Cows w/ 400lbs calves at side they are 3N1â€™s. Cows bred to Reg. Angus &amp; Rwf. Bulls. Nice set of gentle cows w/ a big set of calves at side.</li>\n<li><b>Matthews Farms: </b><b>10 </b>Blk 6-SS Cows w/ 300lbs calves at side they are 3N1â€™s. <b>7</b> BlkÂ  6-SS Cows, 1st Period. All cows bred Blk Angus Bulls</li>\n<li><b>Harris Farms: </b><b>20 </b>Polled Hereford &amp; Red Baldy 4-7 yr old Fall Calving Cows. Start calving Sept. 1st bred Polled Hereford Bulls. Cows all home-raised &amp; very gentle</li>\n<li><b>Fink Farms: </b><b>20 </b>Blk Heifer Pairs. Nice set of heifers w/ good milking ability &amp; ear tagged to match</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-02-28 17:00:37','2022-02-28 17:00:37','',2209,'https://kingsvillelivestock.com/?p=4094',0,'revision','',0),(4095,2,'2022-02-28 17:01:24','2022-02-28 17:01:24','','March 19,2022 Cow Sale','','inherit','closed','closed','','march-192022-cow-sale','','','2022-02-28 17:01:24','2022-02-28 17:01:24','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/02/March-192022-Cow-Sale.pdf',0,'attachment','application/pdf',0),(4096,2,'2022-02-28 17:02:40','2022-02-28 17:02:40','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 am <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/March-192022-Cow-Sale.pdf\" rel=\"attachment wp-att-4095\">March 19,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-02-28 17:02:40','2022-02-28 17:02:40','',639,'https://kingsvillelivestock.com/?p=4096',0,'revision','',0),(4097,2,'2022-02-28 17:03:38','2022-02-28 17:03:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 am <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/March-192022-Cow-Sale.pdf\" rel=\"attachment wp-att-4095\">March 19,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-02-28 17:03:38','2022-02-28 17:03:38','',1967,'https://kingsvillelivestock.com/?p=4097',0,'revision','',0),(4098,2,'2022-02-28 17:09:26','2022-02-28 17:09:26','','image000003','','inherit','closed','closed','','image000003','','','2022-02-28 17:09:26','2022-02-28 17:09:26','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/02/image000003.jpg',0,'attachment','image/jpeg',0),(4100,2,'2022-02-28 17:13:51','2022-02-28 17:13:51','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Call to Action\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Trailers For Sale\" content_max_width=\"800px\" _builder_version=\"4.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-30.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Event Section\" _builder_version=\"4.2\" custom_padding=\"60px||60px||true|false\" animation_style=\"zoom\" animation_intensity_zoom=\"6%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.9.4\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>We carry a wide variety of trailers to meet all of your needs.</p>\n<p><strong><a href=\"https://kingsvillelivestock.com/contact/\">Contact us</a></strong> for a FREE QUOTE today.</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/image000003-300x225.jpg\" width=\"143\" height=\"107\" alt=\"\" class=\"wp-image-4098 alignnone size-medium\" />Â  7\'1\" X 27\'6\" 2022 Eby Ruffneck 2 8k axles. 17.5 tires &amp; spare. 2 Cross Gates.<strong> $36,650.00</strong></p>\n<p><img class=\"wp-image-2101 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG-1006-scaled-e1595879726664-300x225.jpg\" alt=\"\" width=\"147\" height=\"110\" />Â  Â  2020 Eby 7\'1\" X 24\' Punch Panel Maverick Livestock Trailer. 14 ply tires, 7k axels, Alum. wheels, &amp; 2 cross gates $24,500.00 - <strong>Not in Stock, Call Now to Order!Â </strong></p>\n<p>&nbsp;</p>\n<p><img class=\"wp-image-2116 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1008-1-208x300.jpg\" alt=\"\" width=\"102\" height=\"147\" />Â  EZ Haul 32\' Bumper Pull Hay Trailer. 6 Bale,Â  - <strong>Not in stock, call now to order!Â </strong></p>\n<p><img class=\"wp-image-2117 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" alt=\"\" width=\"101\" height=\"135\" />Â  EZ Haul 32\' Gooseneck Hay Trailer. 6 Bale, $7,100.00 <strong>Â </strong></p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"97\" height=\"130\" />EZ Haul 36\' Gooseneck Hay Trailer. 7 Bale, $6,900.00<strong>- Only 3 left in stock! Next pirce will be $7,200.00</strong></p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"100\" height=\"134\" />EZ Haul 42\' Gooseneck Hay Trailer. 8 Bale, $6,300.00 -<strong> Two left at this price! Next price will be at $7,500.00Â </strong></p>\n<p><img class=\"wp-image-2146 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Ez-Haul-Flat-Bed-2-300x225.jpg\" alt=\"\" width=\"139\" height=\"104\" />Â  Â 27\' EZ Haul Flat Bed. 22+5 Dove, 3 ramps, low profile, 10k axels, 14 ply tires. $10,885.00</p>\n<p><img class=\"wp-image-2147 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/ez-haul-flat-bed-3-300x225.jpg\" alt=\"\" width=\"144\" height=\"108\" /> EZ Haul 20\' Flat Bed Bumper Pull. 18+2 Dove, 2 4\' ramps, 7k axels, 10 ply tires. <strong>Out of Stock, call for price!Â </strong></p>\n<p><img class=\"wp-image-2153 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Wheel-Corral-300x185.png\" alt=\"\" width=\"172\" height=\"106\" /> Diamond \"W\" Wheel Corral $15,800.00 -<strong> 1 left in stock!Â </strong></p>\n<h2><span style=\"color: #ff00ff;\">For additional questions about the trailers or wheel corral call the office @ 816-597-3331 or Derrick @ 816-726-3456</span></h2>\n<p><span style=\"color: #ff0000;\"><strong>Updated on March 1stÂ </strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','TRAILERS FOR SALE','','inherit','closed','closed','','714-revision-v1','','','2022-02-28 17:13:51','2022-02-28 17:13:51','',714,'https://kingsvillelivestock.com/?p=4100',0,'revision','',0),(4101,2,'2022-02-28 18:20:05','2022-02-28 18:20:05','','Tuesday,February 22nd Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayfebruary-22nd-feeder-cattle-consignments-2','','','2022-02-28 18:20:05','2022-02-28 18:20:05','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/02/TuesdayFebruary-22nd-Feeder-Cattle-Consignments-1.pdf',0,'attachment','application/pdf',0),(4102,2,'2022-02-28 18:20:13','2022-02-28 18:20:13','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/TuesdayFebruary-22nd-Feeder-Cattle-Consignments-1.pdf\" rel=\"attachment wp-att-4101\">Tuesday,February 22nd Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale. Saturday, March 19th @ 11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Reavis Angus Farm: </b><b>5 </b>Reg.12-14 month Blk Angus Bulls <b>8</b> Reg. 18 month old Blk Angus Bulls <b>2</b> Reg.2 yr. old Blk Angus Bulls. All bulls Semen &amp; Trich Tested</li>\n<li><b>Cain Farms: </b><b>1 </b>Â Reg. 2 yr old Red Angus Bull w/ 65lbs BW, 600lb WW. Good to use on Hfrs or Cows</li>\n<li><b>Circle R Ranch Angus: </b><b>5 </b>Â Reg. 18 month old Angus Bulls. All bulls AI sired by Basin Rainmaker. Bulls will be calving ease &amp; can be used on hfrs or cows. There will be NO papers, but out of Reg. Angus cows &amp; bulls. Bug growthy set of bulls that are gentle &amp; easy going.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Reavis Angus Farm: </b><b>5 </b>Reg. Blk Angus 5-SS Cows. Bred Blk Angus Bulls</li>\n<li><b>Canton Farms: </b><b>45 </b>Blk 3-4 yr. old Cows. <b>30</b> Blk 5 yr. old Cows <b>25</b> Blk 6-7 yr old Cows. All cows will be fall calvers &amp; have had calves weaned off 40 days prior to sale. Cows bred to Blk-Sim Angus Bulls &amp; bulls turned in Nov. 1st for 90 days. Have had all shots &amp; been worked by vet. Very nice set of fall calving cows.</li>\n<li><b>Conrow Farms: </b><b>5 </b>Blk AngusÂ  3 yr. old Cows w. spring calves at side. <b>15</b> Blk Angus 2yr. old Heifers w/ spring calves at side.Â  <b>5</b> Bwf 2 yr. old Heifers w/ spring calves at side. All hfrsÂ  &amp; cows are Ear tagged to match &amp; sell open. Very good quality.</li>\n<li><b>Cartwright Farms: </b><b>15 </b>Blk-BwfÂ  Cows w/ 200lbs calves at side. Nice set of gentle cows w/ a nice set of calves at side.</li>\n<li><b>Hoffman Farms: </b><b>27 </b>Bwf 3-6 yr. old Cows. All cows sired by Horned Hereford Bulls &amp; bred Blk Angus or Balancer Bulls. 1/2 Spring &amp; 1/2 Fall Calving Cows. Nice set of cows.</li>\n<li><b>Wilson Farms: </b><b>25 </b>Blk Cows all coming 2nd calf, 3rd PeriodÂ  <b>50</b> Blk 4 yr. old Cows,3rd PeriodÂ  <b>50</b> Blk 5-7 yr old Cows,3rd Period. All cows bred to fancy Reg. Angus Bulls &amp; Reg. Sim-Angus Bulls. Start calving March 15th for 60 days. Very nice set of cows.</li>\n<li><b>Tyler Farms Complete Dispersal: </b><b>15 </b>Fancy Red Angus 1150lbs bred Heifers. Start calving March 25th for 30 days. <b>25 </b>Fancy Red Angus 3-5 yr old Cows, 3rd Period. Bred Red &amp; Blk Angus Bulls. Cows are gentle &amp; had all shots. <b>15</b> Red Angus 3-5 yr old Fall Calving Cows. Start calving Aug. 1st for 70 days. As we are slowing down we will sell both our spring &amp; fall herds.</li>\n<li><b>Snyder Farms: </b><b>36 </b>Blk-Bwf 5-6 yr old Cows w/ 400lbs calves at side they are 3N1â€™s. Cows bred to Reg. Angus &amp; Rwf. Bulls. Nice set of gentle cows w/ a big set of calves at side.</li>\n<li><b>Matthews Farms: </b><b>10 </b>Blk 6-SS Cows w/ 300lbs calves at side they are 3N1â€™s. <b>7</b> BlkÂ  6-SS Cows, 1st Period. All cows bred Blk Angus Bulls</li>\n<li><b>Harris Farms: </b><b>20 </b>Polled Hereford &amp; Red Baldy 4-7 yr old Fall Calving Cows. Start calving Sept. 1st bred Polled Hereford Bulls. Cows all home-raised &amp; very gentle</li>\n<li><b>Fink Farms: </b><b>20 </b>Blk Heifer Pairs. Nice set of heifers w/ good milking ability &amp; ear tagged to match</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-02-28 18:20:13','2022-02-28 18:20:13','',2209,'https://kingsvillelivestock.com/?p=4102',0,'revision','',0),(4103,2,'2022-02-28 18:21:37','2022-02-28 18:21:37','','Tuesday,March 1st Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymarch-1st-feeder-cattle-consignments','','','2022-02-28 18:21:37','2022-02-28 18:21:37','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/02/TuesdayMarch-1st-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4104,2,'2022-02-28 18:21:45','2022-02-28 18:21:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/TuesdayMarch-1st-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4103\">Tuesday,March 1st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale. Saturday, March 19th @ 11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Reavis Angus Farm: </b><b>5 </b>Reg.12-14 month Blk Angus Bulls <b>8</b> Reg. 18 month old Blk Angus Bulls <b>2</b> Reg.2 yr. old Blk Angus Bulls. All bulls Semen &amp; Trich Tested</li>\n<li><b>Cain Farms: </b><b>1 </b>Â Reg. 2 yr old Red Angus Bull w/ 65lbs BW, 600lb WW. Good to use on Hfrs or Cows</li>\n<li><b>Circle R Ranch Angus: </b><b>5 </b>Â Reg. 18 month old Angus Bulls. All bulls AI sired by Basin Rainmaker. Bulls will be calving ease &amp; can be used on hfrs or cows. There will be NO papers, but out of Reg. Angus cows &amp; bulls. Bug growthy set of bulls that are gentle &amp; easy going.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Reavis Angus Farm: </b><b>5 </b>Reg. Blk Angus 5-SS Cows. Bred Blk Angus Bulls</li>\n<li><b>Canton Farms: </b><b>45 </b>Blk 3-4 yr. old Cows. <b>30</b> Blk 5 yr. old Cows <b>25</b> Blk 6-7 yr old Cows. All cows will be fall calvers &amp; have had calves weaned off 40 days prior to sale. Cows bred to Blk-Sim Angus Bulls &amp; bulls turned in Nov. 1st for 90 days. Have had all shots &amp; been worked by vet. Very nice set of fall calving cows.</li>\n<li><b>Conrow Farms: </b><b>5 </b>Blk AngusÂ  3 yr. old Cows w. spring calves at side. <b>15</b> Blk Angus 2yr. old Heifers w/ spring calves at side.Â  <b>5</b> Bwf 2 yr. old Heifers w/ spring calves at side. All hfrsÂ  &amp; cows are Ear tagged to match &amp; sell open. Very good quality.</li>\n<li><b>Cartwright Farms: </b><b>15 </b>Blk-BwfÂ  Cows w/ 200lbs calves at side. Nice set of gentle cows w/ a nice set of calves at side.</li>\n<li><b>Hoffman Farms: </b><b>27 </b>Bwf 3-6 yr. old Cows. All cows sired by Horned Hereford Bulls &amp; bred Blk Angus or Balancer Bulls. 1/2 Spring &amp; 1/2 Fall Calving Cows. Nice set of cows.</li>\n<li><b>Wilson Farms: </b><b>25 </b>Blk Cows all coming 2nd calf, 3rd PeriodÂ  <b>50</b> Blk 4 yr. old Cows,3rd PeriodÂ  <b>50</b> Blk 5-7 yr old Cows,3rd Period. All cows bred to fancy Reg. Angus Bulls &amp; Reg. Sim-Angus Bulls. Start calving March 15th for 60 days. Very nice set of cows.</li>\n<li><b>Tyler Farms Complete Dispersal: </b><b>15 </b>Fancy Red Angus 1150lbs bred Heifers. Start calving March 25th for 30 days. <b>25 </b>Fancy Red Angus 3-5 yr old Cows, 3rd Period. Bred Red &amp; Blk Angus Bulls. Cows are gentle &amp; had all shots. <b>15</b> Red Angus 3-5 yr old Fall Calving Cows. Start calving Aug. 1st for 70 days. As we are slowing down we will sell both our spring &amp; fall herds.</li>\n<li><b>Snyder Farms: </b><b>36 </b>Blk-Bwf 5-6 yr old Cows w/ 400lbs calves at side they are 3N1â€™s. Cows bred to Reg. Angus &amp; Rwf. Bulls. Nice set of gentle cows w/ a big set of calves at side.</li>\n<li><b>Matthews Farms: </b><b>10 </b>Blk 6-SS Cows w/ 300lbs calves at side they are 3N1â€™s. <b>7</b> BlkÂ  6-SS Cows, 1st Period. All cows bred Blk Angus Bulls</li>\n<li><b>Harris Farms: </b><b>20 </b>Polled Hereford &amp; Red Baldy 4-7 yr old Fall Calving Cows. Start calving Sept. 1st bred Polled Hereford Bulls. Cows all home-raised &amp; very gentle</li>\n<li><b>Fink Farms: </b><b>20 </b>Blk Heifer Pairs. Nice set of heifers w/ good milking ability &amp; ear tagged to match</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-02-28 18:21:45','2022-02-28 18:21:45','',2209,'https://kingsvillelivestock.com/?p=4104',0,'revision','',0),(4105,2,'2022-02-28 18:52:35','2022-02-28 18:52:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/TuesdayMarch-1st-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4103\">Tuesday,March 1st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale. Saturday, March 19th @ 11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Reavis Angus Farm: </b><b>5 </b>Reg.12-14 month Blk Angus Bulls <b>8</b> Reg. 18 month old Blk Angus Bulls <b>2</b> Reg.2 yr. old Blk Angus Bulls. All bulls Semen &amp; Trich Tested</li>\n<li><b>Cain Farms: </b><b>1 </b>Â Reg. 2 yr old Red Angus Bull w/ 65lbs BW, 600lb WW. Good to use on Hfrs or Cows</li>\n<li><b>Circle R Ranch Angus: </b><b>5 </b>Â Reg. 18 month old Angus Bulls. All bulls AI sired by Basin Rainmaker. Bulls will be calving ease &amp; can be used on hfrs or cows. There will be NO papers, but out of Reg. Angus cows &amp; bulls. Bug growthy set of bulls that are gentle &amp; easy going.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Reavis Angus Farm: </b><b>5 </b>Reg. Blk Angus 5-SS Cows. Bred Blk Angus Bulls</li>\n<li><b>Canton Farms: </b><b>45 </b>Blk 3-4 yr. old Cows. <b>30</b> Blk 5 yr. old Cows <b>25</b> Blk 6-7 yr old Cows. All cows will be fall calvers &amp; have had calves weaned off 40 days prior to sale. Cows bred to Blk-Sim Angus Bulls &amp; bulls turned in Nov. 1st for 90 days. Have had all shots &amp; been worked by vet. Very nice set of fall calving cows.</li>\n<li><b>Conrow Farms: </b><b>5 </b>Blk AngusÂ  3 yr. old Cows w. spring calves at side. <b>15</b> Blk Angus 2yr. old Heifers w/ spring calves at side.Â  <b>5</b> Bwf 2 yr. old Heifers w/ spring calves at side. All hfrsÂ  &amp; cows are Ear tagged to match &amp; sell open. Very good quality.</li>\n<li><b>Cartwright Farms: </b><b>15 </b>Blk-BwfÂ  Cows w/ 200lbs calves at side. Nice set of gentle cows w/ a nice set of calves at side.</li>\n<li><b>Hoffman Farms: </b><b>27 </b>Bwf 3-6 yr. old Cows. All cows sired by Horned Hereford Bulls &amp; bred Blk Angus or Balancer Bulls. 1/2 Spring &amp; 1/2 Fall Calving Cows. Nice set of cows.</li>\n<li><b>Wilson Farms: </b><b>25 </b>Blk Cows all coming 2nd calf, 3rd PeriodÂ  <b>50</b> Blk 4 yr. old Cows,3rd PeriodÂ  <b>50</b> Blk 5-7 yr old Cows,3rd Period. All cows bred to fancy Reg. Angus Bulls &amp; Reg. Sim-Angus Bulls. Start calving March 15th for 60 days. Very nice set of cows.</li>\n<li><b>Tyler Farms Complete Dispersal: </b><b>15 </b>Fancy Red Angus 1150lbs bred Heifers. Start calving March 25th for 30 days. <b>25 </b>Fancy Red Angus 3-5 yr old Cows, 3rd Period. Bred Red &amp; Blk Angus Bulls. Cows are gentle &amp; had all shots. <b>15</b> Red Angus 3-5 yr old Fall Calving Cows. Start calving Aug. 1st for 70 days. As we are slowing down we will sell both our spring &amp; fall herds.</li>\n<li><b>Snyder Farms: </b><b>36 </b>Blk-Bwf 5-6 yr old Cows w/ 400lbs calves at side they are 3N1â€™s. Cows bred to Reg. Angus &amp; Rwf. Bulls. Nice set of gentle cows w/ a big set of calves at side.</li>\n<li><b>Matthews Farms: </b><b>10 </b>Blk 6-SS Cows w/ 300lbs calves at side they are 3N1â€™s. <b>7</b> BlkÂ  6-SS Cows, 1st Period. All cows bred Blk Angus Bulls</li>\n<li><b>Harris Farms: </b><b>20 </b>Polled Hereford &amp; Red Baldy 4-7 yr old Fall Calving Cows. Start calving Sept. 1st bred Polled Hereford Bulls. Cows all home-raised &amp; very gentle</li>\n<li><b>Fink Farms: </b><b>20 </b>Blk Heifer Pairs. Nice set of heifers w/ good milking ability &amp; ear tagged to match All calves sired by Ade Polled Hereford Bulls</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-02-28 18:52:35','2022-02-28 18:52:35','',2209,'https://kingsvillelivestock.com/?p=4105',0,'revision','',0),(4107,2,'2022-03-02 05:09:29','2022-03-02 05:09:29','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 am <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/March-192022-Cow-Sale.pdf\" rel=\"attachment wp-att-4095\">March 19,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-03-02 05:09:29','2022-03-02 05:09:29','',639,'https://kingsvillelivestock.com/?p=4107',0,'revision','',0),(4108,2,'2022-03-02 05:10:03','2022-03-02 05:10:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 am <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/March-192022-Cow-Sale.pdf\" rel=\"attachment wp-att-4095\">March 19,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-03-02 05:10:03','2022-03-02 05:10:03','',1967,'https://kingsvillelivestock.com/?p=4108',0,'revision','',0),(4109,2,'2022-03-02 16:03:47','2022-03-02 16:03:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 1, 2022</strong> 2306 hd; Last week; 2115 hd; a year ago 4023. Feeder steers weighing 700lbs &amp; down sold steady-$5 higher w/ heavier weights selling steady. Feeder heifers sold fully steady. Slaughter cows &amp; bulls sold $2-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$222.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$22550</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$162.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$149.00-$169.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$155.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$149.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$189.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$154.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$123.00-$147.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$87.00 - $97.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$75.00 - $86.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">757lbs @$163.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">783lbs @$158.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">716lbs @$153.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">836lbs @$147.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 1, 2022 - Market Report','','publish','closed','open','','march-1-2022-market-report','','','2022-03-02 16:03:51','2022-03-02 16:03:51','',0,'https://kingsvillelivestock.com/?p=4109',0,'post','',0),(4111,2,'2022-03-02 16:03:47','2022-03-02 16:03:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 1, 2022</strong> 2306 hd; Last week; 2115 hd; a year ago 4023. Feeder steers weighing 700lbs &amp; down sold steady-$5 higher w/ heavier weights selling steady. Feeder heifers sold fully steady. Slaughter cows &amp; bulls sold $2-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$222.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$22550</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$162.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$149.00-$169.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$155.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$149.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$189.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$154.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$123.00-$147.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$87.00 - $97.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$75.00 - $86.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">757lbs @$163.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">783lbs @$158.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">716lbs @$153.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">836lbs @$147.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 1, 2022 - Market Report','','inherit','closed','closed','','4109-revision-v1','','','2022-03-02 16:03:47','2022-03-02 16:03:47','',4109,'https://kingsvillelivestock.com/?p=4111',0,'revision','',0),(4112,2,'2022-03-02 16:03:47','2022-03-02 16:03:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 1, 2022</strong> 2306 hd; Last week; 2115 hd; a year ago 4023. Feeder steers weighing 700lbs &amp; down sold steady-$5 higher w/ heavier weights selling steady. Feeder heifers sold fully steady. Slaughter cows &amp; bulls sold $2-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$222.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$22550</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$162.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$149.00-$169.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$155.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$149.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$189.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$154.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$123.00-$147.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$87.00 - $97.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$75.00 - $86.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">757lbs @$163.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">783lbs @$158.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">716lbs @$153.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">836lbs @$147.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 22, 2022 - Market Report','','inherit','closed','closed','','4109-revision-v1','','','2022-03-02 16:03:47','2022-03-02 16:03:47','',4109,'https://kingsvillelivestock.com/?p=4112',0,'revision','',0),(4113,2,'2022-03-02 16:03:51','2022-03-02 16:03:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 1, 2022</strong> 2306 hd; Last week; 2115 hd; a year ago 4023. Feeder steers weighing 700lbs &amp; down sold steady-$5 higher w/ heavier weights selling steady. Feeder heifers sold fully steady. Slaughter cows &amp; bulls sold $2-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$222.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$22550</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$162.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$149.00-$169.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$155.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$149.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$189.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$154.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$123.00-$147.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$87.00 - $97.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$75.00 - $86.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">757lbs @$163.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">783lbs @$158.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">716lbs @$153.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">836lbs @$147.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 1, 2022 - Market Report','','inherit','closed','closed','','4109-revision-v1','','','2022-03-02 16:03:51','2022-03-02 16:03:51','',4109,'https://kingsvillelivestock.com/?p=4113',0,'revision','',0),(4114,2,'2022-03-02 16:20:39','2022-03-02 16:20:39','','March Horse,Tack, & Small Animal','','inherit','closed','closed','','march-horsetack-small-animal','','','2022-03-02 16:20:39','2022-03-02 16:20:39','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf',0,'attachment','application/pdf',0),(4115,2,'2022-03-02 16:20:57','2022-03-02 16:20:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 am <span style=\"color: #ff0000;\">- Canceled! <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/March-192022-Cow-Sale.pdf\" rel=\"attachment wp-att-4095\">March 19,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-03-02 16:20:57','2022-03-02 16:20:57','',1967,'https://kingsvillelivestock.com/?p=4115',0,'revision','',0),(4116,2,'2022-03-02 16:21:55','2022-03-02 16:21:55','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 am <span style=\"color: #ff0000;\">- Canceled!<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/March-192022-Cow-Sale.pdf\" rel=\"attachment wp-att-4095\">March 19,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-03-02 16:21:55','2022-03-02 16:21:55','',639,'https://kingsvillelivestock.com/?p=4116',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (4117,2,'2022-03-02 18:46:16','2022-03-02 18:46:16','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 am <span style=\"color: #ff0000;\">- Canceled!<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/March-192022-Cow-Sale.pdf\" rel=\"attachment wp-att-4095\">March 19,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-03-02 18:46:16','2022-03-02 18:46:16','',639,'https://kingsvillelivestock.com/?p=4117',0,'revision','',0),(4118,2,'2022-03-02 18:47:17','2022-03-02 18:47:17','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 am <span style=\"color: #ff0000;\">- Canceled! <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/March-192022-Cow-Sale.pdf\" rel=\"attachment wp-att-4095\">March 19,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-03-02 18:47:17','2022-03-02 18:47:17','',1967,'https://kingsvillelivestock.com/?p=4118',0,'revision','',0),(4119,2,'2022-03-07 19:05:04','2022-03-07 19:05:04','','Tuesday,March 8th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymarch-8th-feeder-cattle-consignments','','','2022-03-07 19:05:04','2022-03-07 19:05:04','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/03/TuesdayMarch-8th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4120,2,'2022-03-07 19:05:11','2022-03-07 19:05:11','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/TuesdayMarch-8th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4119\">Tuesday,March 8th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale. Saturday, March 19th @ 11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Reavis Angus Farm: </b><b>5 </b>Reg.12-14 month Blk Angus Bulls <b>8</b> Reg. 18 month old Blk Angus Bulls <b>2</b> Reg.2 yr. old Blk Angus Bulls. All bulls Semen &amp; Trich Tested</li>\n<li><b>Cain Farms: </b><b>1 </b>Â Reg. 2 yr old Red Angus Bull w/ 65lbs BW, 600lb WW. Good to use on Hfrs or Cows</li>\n<li><b>Circle R Ranch Angus: </b><b>5 </b>Â Reg. 18 month old Angus Bulls. All bulls AI sired by Basin Rainmaker. Bulls will be calving ease &amp; can be used on hfrs or cows. There will be NO papers, but out of Reg. Angus cows &amp; bulls. Bug growthy set of bulls that are gentle &amp; easy going.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Reavis Angus Farm: </b><b>5 </b>Reg. Blk Angus 5-SS Cows. Bred Blk Angus Bulls</li>\n<li><b>Canton Farms: </b><b>45 </b>Blk 3-4 yr. old Cows. <b>30</b> Blk 5 yr. old Cows <b>25</b> Blk 6-7 yr old Cows. All cows will be fall calvers &amp; have had calves weaned off 40 days prior to sale. Cows bred to Blk-Sim Angus Bulls &amp; bulls turned in Nov. 1st for 90 days. Have had all shots &amp; been worked by vet. Very nice set of fall calving cows.</li>\n<li><b>Conrow Farms: </b><b>5 </b>Blk AngusÂ  3 yr. old Cows w. spring calves at side. <b>15</b> Blk Angus 2yr. old Heifers w/ spring calves at side.Â  <b>5</b> Bwf 2 yr. old Heifers w/ spring calves at side. All hfrsÂ  &amp; cows are Ear tagged to match &amp; sell open. Very good quality.</li>\n<li><b>Cartwright Farms: </b><b>15 </b>Blk-BwfÂ  Cows w/ 200lbs calves at side. Nice set of gentle cows w/ a nice set of calves at side.</li>\n<li><b>Hoffman Farms: </b><b>27 </b>Bwf 3-6 yr. old Cows. All cows sired by Horned Hereford Bulls &amp; bred Blk Angus or Balancer Bulls. 1/2 Spring &amp; 1/2 Fall Calving Cows. Nice set of cows.</li>\n<li><b>Wilson Farms: </b><b>25 </b>Blk Cows all coming 2nd calf, 3rd PeriodÂ  <b>50</b> Blk 4 yr. old Cows,3rd PeriodÂ  <b>50</b> Blk 5-7 yr old Cows,3rd Period. All cows bred to fancy Reg. Angus Bulls &amp; Reg. Sim-Angus Bulls. Start calving March 15th for 60 days. Very nice set of cows.</li>\n<li><b>Tyler Farms Complete Dispersal: </b><b>15 </b>Fancy Red Angus 1150lbs bred Heifers. Start calving March 25th for 30 days. <b>25 </b>Fancy Red Angus 3-5 yr old Cows, 3rd Period. Bred Red &amp; Blk Angus Bulls. Cows are gentle &amp; had all shots. <b>15</b> Red Angus 3-5 yr old Fall Calving Cows. Start calving Aug. 1st for 70 days. As we are slowing down we will sell both our spring &amp; fall herds.</li>\n<li><b>Snyder Farms: </b><b>36 </b>Blk-Bwf 5-6 yr old Cows w/ 400lbs calves at side they are 3N1â€™s. Cows bred to Reg. Angus &amp; Rwf. Bulls. Nice set of gentle cows w/ a big set of calves at side.</li>\n<li><b>Matthews Farms: </b><b>10 </b>Blk 6-SS Cows w/ 300lbs calves at side they are 3N1â€™s. <b>7</b> BlkÂ  6-SS Cows, 1st Period. All cows bred Blk Angus Bulls</li>\n<li><b>Harris Farms: </b><b>20 </b>Polled Hereford &amp; Red Baldy 4-7 yr old Fall Calving Cows. Start calving Sept. 1st bred Polled Hereford Bulls. Cows all home-raised &amp; very gentle</li>\n<li><b>Fink Farms: </b><b>20 </b>Blk Heifer Pairs. Nice set of heifers w/ good milking ability &amp; ear tagged to match All calves sired by Ade Polled Hereford Bulls</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-03-07 19:05:11','2022-03-07 19:05:11','',2209,'https://kingsvillelivestock.com/?p=4120',0,'revision','',0),(4122,2,'2022-03-07 19:31:00','2022-03-07 19:31:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/TuesdayMarch-8th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4119\">Tuesday,March 8th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale. Saturday, March 19th @ 11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Reavis Angus Farm: </b><b>5 </b>Reg.12-14 month Blk Angus Bulls <b>8</b> Reg. 18 month old Blk Angus Bulls <b>2</b> Reg.2 yr. old Blk Angus Bulls. All bulls Semen &amp; Trich Tested</li>\n<li><b>Cain Farms: </b><b>1 </b>Â Reg. 2 yr old Red Angus Bull w/ 65lbs BW, 600lb WW. Good to use on Hfrs or Cows</li>\n<li><b>Circle R Ranch Angus: </b><b>5 </b>Â Reg. 18 month old Angus Bulls. All bulls AI sired by Basin Rainmaker. Bulls will be calving ease &amp; can be used on hfrs or cows. There will be NO papers, but out of Reg. Angus cows &amp; bulls. Bug growthy set of bulls that are gentle &amp; easy going.</li>\n<li><b>Bradley Cattle: </b><b>2 </b>18 month Blk Sim Angus Bulls <b>1</b> 18 month old Red Sim Angus Bull. All bulls Semen &amp; Trich Tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Reavis Angus Farm: </b><b>5 </b>Reg. Blk Angus 5-SS Cows. Bred Blk Angus Bulls</li>\n<li><b>Canton Farms: </b><b>45 </b>Blk 3-4 yr. old Cows. <b>30</b> Blk 5 yr. old Cows <b>25</b> Blk 6-7 yr old Cows. All cows will be fall calvers &amp; have had calves weaned off 40 days prior to sale. Cows bred to Blk-Sim Angus Bulls &amp; bulls turned in Nov. 1st for 90 days. Have had all shots &amp; been worked by vet. Very nice set of fall calving cows.</li>\n<li><b>Conrow Farms: </b><b>5 </b>Blk AngusÂ  3 yr. old Cows w. spring calves at side. <b>15</b> Blk Angus 2yr. old Heifers w/ spring calves at side.Â  <b>5</b> Bwf 2 yr. old Heifers w/ spring calves at side. All hfrsÂ  &amp; cows are Ear tagged to match &amp; sell open. Very good quality.</li>\n<li><b>Cartwright Farms: </b><b>15 </b>Blk-BwfÂ  Cows w/ 200lbs calves at side. Nice set of gentle cows w/ a nice set of calves at side.</li>\n<li><b>Hoffman Farms: </b><b>27 </b>Bwf 3-6 yr. old Cows. All cows sired by Horned Hereford Bulls &amp; bred Blk Angus or Balancer Bulls. 1/2 Spring &amp; 1/2 Fall Calving Cows. Nice set of cows.</li>\n<li><b>Wilson Farms: </b><b>25 </b>Blk Cows all coming 2nd calf, 3rd PeriodÂ  <b>50</b> Blk 4 yr. old Cows,3rd PeriodÂ  <b>50</b> Blk 5-7 yr old Cows,3rd Period. All cows bred to fancy Reg. Angus Bulls &amp; Reg. Sim-Angus Bulls. Start calving March 15th for 60 days. Very nice set of cows.</li>\n<li><b>Tyler Farms Complete Dispersal: </b><b>15 </b>Fancy Red Angus 1150lbs bred Heifers. Start calving March 25th for 30 days. <b>25 </b>Fancy Red Angus 3-5 yr old Cows, 3rd Period. Bred Red &amp; Blk Angus Bulls. Cows are gentle &amp; had all shots. <b>15</b> Red Angus 3-5 yr old Fall Calving Cows. Start calving Aug. 1st for 70 days. As we are slowing down we will sell both our spring &amp; fall herds.</li>\n<li><b>Snyder Farms: </b><b>36 </b>Blk-Bwf 5-6 yr old Cows w/ 400lbs calves at side they are 3N1â€™s. Cows bred to Reg. Angus &amp; Rwf. Bulls. Nice set of gentle cows w/ a big set of calves at side.</li>\n<li><b>Matthews Farms: </b><b>10 </b>Blk 6-SS Cows w/ 300lbs calves at side they are 3N1â€™s. <b>7</b> BlkÂ  6-SS Cows, 1st Period. All cows bred Blk Angus Bulls</li>\n<li><b>Harris Farms: </b><b>20 </b>Polled Hereford &amp; Red Baldy 4-7 yr old Fall Calving Cows. Start calving Sept. 1st bred Polled Hereford Bulls. Cows all home-raised &amp; very gentle</li>\n<li><b>Fink Farms: </b><b>20 </b>Blk Heifer Pairs. Nice set of heifers w/ good milking ability &amp; ear tagged to match All calves sired by Ade Polled Hereford Bulls</li>\n<li><b>S &amp; S Farms: </b><b>29 </b>Blk Angus 3-4 yr old Cows,3rd period. Bred Sim-Angus Bulls. Gentle, nice set of heavy bred cows.</li>\n<li><b>DCBC Ranch Fall Herd Dispersal: </b><b>70 </b>Â Rwf 5-6 yr old Cows w/ calves at side <b>15</b> Rwf 7-SSÂ  Cows w/ calves at side. All calves areÂ  sired by and cows bred back to Blk Sim Angus Bulls.<strong> 88</strong> Red Angus 5-7 yr old Cows w/ calves at side.<strong> 17</strong> Red Angus SSÂ  Cows w/ calves at side. All calves sired by and cows bred back to Char. Bulls. Bulls were turned in Dec. 1st. All calves weigh 400lbs, nice set of pairs</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-03-07 19:31:00','2022-03-07 19:31:00','',2209,'https://kingsvillelivestock.com/?p=4122',0,'revision','',0),(4123,2,'2022-03-07 19:38:34','2022-03-07 19:38:34','','March 19,2022 Cow Sale','','inherit','closed','closed','','march-192022-cow-sale-2','','','2022-03-07 19:38:34','2022-03-07 19:38:34','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-192022-Cow-Sale.pdf',0,'attachment','application/pdf',0),(4124,2,'2022-03-07 19:38:47','2022-03-07 19:38:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 am <span style=\"color: #ff0000;\">- Canceled!<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-192022-Cow-Sale.pdf\" rel=\"attachment wp-att-4123\">March 19th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-03-07 19:38:47','2022-03-07 19:38:47','',639,'https://kingsvillelivestock.com/?p=4124',0,'revision','',0),(4125,2,'2022-03-07 19:40:02','2022-03-07 19:40:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 12th @ 8:30 am <span style=\"color: #ff0000;\">- Canceled! <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-192022-Cow-Sale.pdf\" rel=\"attachment wp-att-4123\">March 19th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-03-07 19:40:02','2022-03-07 19:40:02','',1967,'https://kingsvillelivestock.com/?p=4125',0,'revision','',0),(4126,2,'2022-03-09 15:55:01','2022-03-09 15:55:01','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 12th @ 8:30 am <span style=\"color: #ff0000;\">- Canceled!<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-192022-Cow-Sale.pdf\" rel=\"attachment wp-att-4123\">March 19th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-03-09 15:55:01','2022-03-09 15:55:01','',639,'https://kingsvillelivestock.com/?p=4126',0,'revision','',0),(4127,2,'2022-03-09 15:55:40','2022-03-09 15:55:40','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 12th @ 8:30 am <span style=\"color: #ff0000;\">- Canceled! <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-192022-Cow-Sale.pdf\" rel=\"attachment wp-att-4123\">March 19th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-03-09 15:55:40','2022-03-09 15:55:40','',1967,'https://kingsvillelivestock.com/?p=4127',0,'revision','',0),(4128,2,'2022-03-09 17:30:22','2022-03-09 17:30:22','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 12th @ 8:30 am <span style=\"color: #ff0000;\">- Canceled! <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-192022-Cow-Sale.pdf\" rel=\"attachment wp-att-4123\">March 19th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 2nd @ 10:30 am<br /></strong>Jerome Farm Equipment Auction-For more info visit the Anstine Auction tab!Â </p>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-03-09 17:30:22','2022-03-09 17:30:22','',1967,'https://kingsvillelivestock.com/?p=4128',0,'revision','',0),(4129,2,'2022-03-09 17:31:53','2022-03-09 17:31:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 12th @ 8:30 am <span style=\"color: #ff0000;\">- Canceled!<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 12th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4114\">March Horse,Tack, &amp; Small Animal</a></span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-192022-Cow-Sale.pdf\" rel=\"attachment wp-att-4123\">March 19th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 2nd @ 10:30 am<br /></strong>Jerome Farm Equipment Auction-For more info visit the Anstine Auction tab!Â </p>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-03-09 17:31:53','2022-03-09 17:31:53','',639,'https://kingsvillelivestock.com/?p=4129',0,'revision','',0),(4130,2,'2022-03-09 17:32:53','2022-03-09 17:32:53','','Jerome Auction April 2nd','','inherit','closed','closed','','jerome-auction-april-2nd','','','2022-03-09 17:32:53','2022-03-09 17:32:53','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/03/Jerome-Auction-April-2nd.pdf',0,'attachment','application/pdf',0),(4131,2,'2022-03-09 17:34:05','2022-03-09 17:34:05','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.14.8\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Jerome-Auction-April-2nd.pdf\" rel=\"attachment wp-att-4130\">Jerome Auction Saturday,April 2nd-10:30am-Blairstown,MO</a></p>\n<p>Â <a href=\"https://photos.app.goo.gl/vd1Xb7DTMiRLseHP8\">Jerome Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-03-09 17:34:05','2022-03-09 17:34:05','',1450,'https://kingsvillelivestock.com/?p=4131',0,'revision','',0),(4133,2,'2022-03-14 15:52:28','2022-03-14 15:52:28','','March 19,2022 Cow Sale','','inherit','closed','closed','','march-192022-cow-sale-3','','','2022-03-14 15:52:28','2022-03-14 15:52:28','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-192022-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(4134,2,'2022-03-14 15:52:41','2022-03-14 15:52:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-192022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4133\">March 19th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 2nd @ 10:30 am<br /></strong>Jerome Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-03-14 15:52:41','2022-03-14 15:52:41','',639,'https://kingsvillelivestock.com/?p=4134',0,'revision','',0),(4135,2,'2022-03-14 15:53:21','2022-03-14 15:53:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-192022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4133\">March 19,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 2nd @ 10:30 am<br /></strong>Jerome Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-03-14 15:53:21','2022-03-14 15:53:21','',1967,'https://kingsvillelivestock.com/?p=4135',0,'revision','',0),(4136,2,'2022-03-14 18:34:39','2022-03-14 18:34:39','','Tuesday,March 15th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymarch-15th-feeder-cattle-consignments','','','2022-03-14 18:34:39','2022-03-14 18:34:39','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/03/TuesdayMarch-15th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4137,2,'2022-03-14 18:36:21','2022-03-14 18:36:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"3.22\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.4.1\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.4.4\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.4.1\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.4.4\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/TuesdayMarch-15th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4136\">Tuesday,March 15th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.4.4\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.8\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale. Saturday, March 19th @ 11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.14.7\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Reavis Angus Farm: </b><b>5 </b>Reg.12-14 month Blk Angus Bulls <b>8</b> Reg. 18 month old Blk Angus Bulls <b>2</b> Reg.2 yr. old Blk Angus Bulls. All bulls Semen &amp; Trich Tested</li>\n<li><b>Cain Farms: </b><b>1 </b>Â Reg. 2 yr old Red Angus Bull w/ 65lbs BW, 600lb WW. Good to use on Hfrs or Cows</li>\n<li><b>Circle R Ranch Angus: </b><b>5 </b>Â Reg. 18 month old Angus Bulls. All bulls AI sired by Basin Rainmaker. Bulls will be calving ease &amp; can be used on hfrs or cows. There will be NO papers, but out of Reg. Angus cows &amp; bulls. Bug growthy set of bulls that are gentle &amp; easy going.</li>\n<li><b>Bradley Cattle: </b><b>2 </b>18 month Blk Sim Angus Bulls <b>1</b> 18 month old Red Sim Angus Bull. All bulls Semen &amp; Trich Tested</li>\n<li><b>Morrison Farms: </b><b>1</b>Â  Blk Hereford Bull. Hetro Blk &amp; Homo Polled. Semen &amp; Trich Tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Reavis Angus Farm: </b><b>5 </b>Reg. Blk Angus 5-SS Cows. Bred Blk Angus Bulls</li>\n<li><b>Canton Farms: </b><b>45 </b>Blk 3-4 yr. old Cows. <b>30</b> Blk 5 yr. old Cows <b>25</b> Blk 6-7 yr old Cows. All cows will be fall calvers &amp; have had calves weaned off 40 days prior to sale. Cows bred to Blk-Sim Angus Bulls &amp; bulls turned in Nov. 1st for 90 days. Have had all shots &amp; been worked by vet. Very nice set of fall calving cows.</li>\n<li><b>Conrow Farms: </b><b>5 </b>Blk AngusÂ  3 yr. old Cows w. spring calves at side. <b>21</b> Blk Angus 2yr. old Heifers w/ spring calves at side.Â  <b>5</b> Bwf 2 yr. old Heifers w/ spring calves at side. <b>10 </b>2 yr. old Heifers w/ spring calves at side. red All hfrsÂ  &amp; cows are Ear tagged to match &amp; sell open. Very good quality.</li>\n<li><b>Cartwright Farms: </b><b>15 </b>Blk-BwfÂ  Cows w/ 200lbs calves at side. Nice set of gentle cows w/ a nice set of calves at side.</li>\n<li><b>Hoffman Farms: </b><b>27 </b>Bwf 3-6 yr. old Cows. All cows sired by Horned Hereford Bulls &amp; bred Blk Angus or Balancer Bulls. 1/2 Spring &amp; 1/2 Fall Calving Cows. Nice set of cows.</li>\n<li><b>Wilson Farms: </b><b>25 </b>Blk Cows all coming 2nd calf, 3rd PeriodÂ  <b>50</b> Blk 4 yr. old Cows,3rd PeriodÂ  <b>50</b> Blk 5-7 yr old Cows,3rd Period. All cows bred to fancy Reg. Angus Bulls &amp; Reg. Sim-Angus Bulls. Start calving March 15th for 60 days. Very nice set of cows.</li>\n<li><b>Tyler Farms Complete Dispersal: </b><b>15 </b>Fancy Red Angus 1150lbs bred Heifers. Start calving March 25th for 30 days. <b>25 </b>Fancy Red Angus 3-5 yr old Cows, 3rd Period. Bred Red &amp; Blk Angus Bulls. Cows are gentle &amp; had all shots. <b>15</b> Red Angus 3-5 yr old Fall Calving Cows. Start calving Aug. 1st for 70 days. As we are slowing down we will sell both our spring &amp; fall herds.</li>\n<li><b>Snyder Farms: </b><b>36 </b>Blk-Bwf 5-6 yr old Cows w/ 400lbs calves at side they are 3N1â€™s. Cows bred to Reg. Angus &amp; Rwf. Bulls. Nice set of gentle cows w/ a big set of calves at side.</li>\n<li><b>Matthews Farms: </b><b>10 </b>Blk 6-SS Cows w/ 300lbs calves at side they are 3N1â€™s. <b>7</b> BlkÂ  6-SS Cows, 1st Period. All cows bred Blk Angus Bulls</li>\n<li><b>Harris Farms: </b><b>20 </b>Polled Hereford &amp; Red Baldy 4-7 yr old Fall Calving Cows. Start calving Sept. 1st bred Polled Hereford Bulls. Cows all home-raised &amp; very gentle</li>\n<li><b>Fink Farms: </b><b>20 </b>Blk Heifer Pairs. Nice set of heifers w/ good milking ability &amp; ear tagged to match All calves sired by Ade Polled Hereford Bulls</li>\n<li><b>S &amp; S Farms: </b><b>29 </b>Blk Angus 3-4 yr old Cows,3rd period. Bred Sim-Angus Bulls. Gentle, nice set of heavy bred cows.</li>\n<li><b>DCBC Ranch Fall Herd Dispersal: </b><b>70 </b>Â Rwf 5-6 yr old Cows w/ calves at side <b>15</b> Rwf 7-SSÂ  Cows w/ calves at side. All calves areÂ  sired by and cows bred back to Blk Sim Angus Bulls.<strong> 88</strong> Red Angus 5-7 yr old Cows w/ calves at side.<strong> 17</strong> Red Angus SSÂ  Cows w/ calves at side. All calves sired by and cows bred back to Char. Bulls. Bulls were turned in Dec. 1st. All calves weigh 400lbs, nice set of pairs</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.4.4\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.2\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.2\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-03-14 18:36:21','2022-03-14 18:36:21','',2209,'https://kingsvillelivestock.com/?p=4137',0,'revision','',0),(4138,2,'2022-03-14 20:29:36','2022-03-14 20:29:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-192022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4133\">March 19th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 2nd @ 10:30 am<br /></strong>Jerome Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-03-14 20:29:36','2022-03-14 20:29:36','',639,'https://kingsvillelivestock.com/?p=4138',0,'revision','',0),(4139,2,'2022-03-14 20:30:10','2022-03-14 20:30:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-192022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4133\">March 19,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 2nd @ 10:30 am<br /></strong>Jerome Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-03-14 20:30:10','2022-03-14 20:30:10','',1967,'https://kingsvillelivestock.com/?p=4139',0,'revision','',0),(4140,2,'2022-03-14 21:17:00','2022-03-14 21:17:00','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.14.9\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Jerome-Auction-April-2nd.pdf\" rel=\"attachment wp-att-4130\">Jerome Auction Saturday,April 2nd-10:30am-Blairstown,MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/vd1Xb7DTMiRLseHP8\">Jerome Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/WLx5ruhYHQvEp7Hk6\">Sieker Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-03-14 21:17:00','2022-03-14 21:17:00','',1450,'https://kingsvillelivestock.com/?p=4140',0,'revision','',0),(4141,2,'2022-03-16 02:31:02','2022-03-16 02:31:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 19th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-192022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4133\">March 19th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 2nd @ 10:30 am<br /></strong>Jerome Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-03-16 02:31:02','2022-03-16 02:31:02','',639,'https://kingsvillelivestock.com/?p=4141',0,'revision','',0),(4142,2,'2022-03-16 02:31:35','2022-03-16 02:31:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.2\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.2.2\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.2\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.2.2\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 19th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/March-192022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4133\">March 19,2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 2nd @ 10:30 am<br /></strong>Jerome Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2.2\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.2\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.2\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.2\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"3.25\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.13.0\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.2\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.2\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"3.25\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"3.27.4\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.2\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.2\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.2\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.2\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.2\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.2\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.2\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-03-16 02:31:35','2022-03-16 02:31:35','',1967,'https://kingsvillelivestock.com/?p=4142',0,'revision','',0),(4143,2,'2022-03-16 15:36:14','2022-03-16 15:36:14','','Sieker Auction April 8th-Garden CIty','','inherit','closed','closed','','sieker-auction-april-8th-garden-city','','','2022-03-16 15:36:14','2022-03-16 15:36:14','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/03/Sieker-Auction-April-8th-Garden-CIty.pdf',0,'attachment','application/pdf',0),(4144,2,'2022-03-16 15:36:45','2022-03-16 15:36:45','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"3.22\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"3.25\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"3.25\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.14.9\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Jerome-Auction-April-2nd.pdf\" rel=\"attachment wp-att-4130\">Jerome Auction Saturday,April 2nd-10:30am-Blairstown,MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/vd1Xb7DTMiRLseHP8\">Jerome Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Sieker-Auction-April-8th-Garden-CIty.pdf\" rel=\"attachment wp-att-4143\">Sieker Auction Friday, April 8th-9:30 am-Garden CIty</a></p>\n<p><a href=\"https://photos.app.goo.gl/WLx5ruhYHQvEp7Hk6\">Sieker Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-03-16 15:36:45','2022-03-16 15:36:45','',1450,'https://kingsvillelivestock.com/?p=4144',0,'revision','',0),(4145,2,'2022-03-16 16:38:45','2022-03-16 16:38:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 15, 2022</strong> 1957 hd; Last week; 2488 hd; a year ago 1879.Feeder cattle sold $5-$8 higher. Slaughter cows &amp; bulls sold $3-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$219.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$208.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$156.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$139.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$162.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$151.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$140.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$117.00-$127.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$86.00 - $100.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $85.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">712lbs @$170.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">779lbs @$158.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">867lbs @$156.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">680lbs @$158.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 15, 2022 - Market Report','','publish','closed','open','','march-15-2022-market-report','','','2022-03-16 16:38:48','2022-03-16 16:38:48','',0,'https://kingsvillelivestock.com/?p=4145',0,'post','',0),(4147,2,'2022-03-16 16:38:45','2022-03-16 16:38:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 15, 2022</strong> 1957 hd; Last week; 2488 hd; a year ago 1879.Feeder cattle sold $5-$8 higher. Slaughter cows &amp; bulls sold $3-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$219.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$208.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$156.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$139.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$162.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$151.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$140.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$117.00-$127.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$86.00 - $100.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $85.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">712lbs @$170.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">779lbs @$158.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">867lbs @$156.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">680lbs @$158.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 15, 2022 - Market Report','','inherit','closed','closed','','4145-revision-v1','','','2022-03-16 16:38:45','2022-03-16 16:38:45','',4145,'https://kingsvillelivestock.com/?p=4147',0,'revision','',0),(4148,2,'2022-03-16 16:38:45','2022-03-16 16:38:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 15, 2022</strong> 1957 hd; Last week; 2488 hd; a year ago 1879.Feeder cattle sold $5-$8 higher. Slaughter cows &amp; bulls sold $3-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$219.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$208.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$156.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$139.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$162.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$151.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$140.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$117.00-$127.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$86.00 - $100.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $85.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">712lbs @$170.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">779lbs @$158.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">867lbs @$156.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">680lbs @$158.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 1, 2022 - Market Report','','inherit','closed','closed','','4145-revision-v1','','','2022-03-16 16:38:45','2022-03-16 16:38:45','',4145,'https://kingsvillelivestock.com/?p=4148',0,'revision','',0),(4149,2,'2022-03-16 16:38:48','2022-03-16 16:38:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 15, 2022</strong> 1957 hd; Last week; 2488 hd; a year ago 1879.Feeder cattle sold $5-$8 higher. Slaughter cows &amp; bulls sold $3-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$219.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$208.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$156.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$128.00-$139.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$162.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$151.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$140.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$117.00-$127.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$86.00 - $100.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $85.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.14.9\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">712lbs @$170.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">779lbs @$158.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">867lbs @$156.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">680lbs @$158.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.14.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.2\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 15, 2022 - Market Report','','inherit','closed','closed','','4145-revision-v1','','','2022-03-16 16:38:48','2022-03-16 16:38:48','',4145,'https://kingsvillelivestock.com/?p=4149',0,'revision','',0),(4150,2,'2022-03-21 16:26:48','2022-03-21 16:26:48','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.15\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.15\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 2nd @ 10:30 am<br /></strong>Jerome Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.15\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.15\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.15\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.15\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.15\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.15\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.15\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.15\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-03-21 16:26:48','2022-03-21 16:26:48','',639,'https://kingsvillelivestock.com/?p=4150',0,'revision','',0),(4151,2,'2022-03-21 16:27:17','2022-03-21 16:27:17','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.15\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.15\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 2nd @ 10:30 am<br /></strong>Jerome Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.15\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.15\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.15\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.15\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.15\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.15\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.15\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.15\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-03-21 16:27:17','2022-03-21 16:27:17','',1967,'https://kingsvillelivestock.com/?p=4151',0,'revision','',0),(4152,2,'2022-03-21 16:27:44','2022-03-21 16:27:44','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.15\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.15\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/TuesdayMarch-15th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4136\">Tuesday,March 15th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.15\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-03-21 16:27:44','2022-03-21 16:27:44','',2209,'https://kingsvillelivestock.com/?p=4152',0,'revision','',0),(4154,2,'2022-03-21 17:00:58','2022-03-21 17:00:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.15\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.15\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 2nd @ 10:30 am<br /></strong>Jerome Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifersÂ </p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.15\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.15\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.15\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.15\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.15\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.15\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.15\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.15\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-03-21 17:00:58','2022-03-21 17:00:58','',639,'https://kingsvillelivestock.com/?p=4154',0,'revision','',0),(4155,2,'2022-03-21 17:01:59','2022-03-21 17:01:59','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.15\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.15\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Mar. 22nd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 2nd @ 10:30 am<br /></strong>Jerome Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifersÂ </p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.15\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.15\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.15\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.15\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.15\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.15\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.15\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.15\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-03-21 17:01:59','2022-03-21 17:01:59','',1967,'https://kingsvillelivestock.com/?p=4155',0,'revision','',0),(4156,2,'2022-03-21 18:40:11','2022-03-21 18:40:11','','Tuesday,March 22nd Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymarch-22nd-feeder-cattle-consignments','','','2022-03-21 18:40:11','2022-03-21 18:40:11','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/03/TuesdayMarch-22nd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4158,2,'2022-03-21 18:40:40','2022-03-21 18:40:40','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.15\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.15\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/TuesdayMarch-22nd-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4156\">Tuesday,March 22nd Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.15\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-03-21 18:40:40','2022-03-21 18:40:40','',2209,'https://kingsvillelivestock.com/?p=4158',0,'revision','',0),(4160,2,'2022-03-23 05:39:36','2022-03-23 05:39:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.15\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.15\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 2nd @ 10:30 am<br /></strong>Jerome Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.15\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.15\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.15\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.15\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.15\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.15\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.15\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.15\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-03-23 05:39:36','2022-03-23 05:39:36','',639,'https://kingsvillelivestock.com/?p=4160',0,'revision','',0),(4161,2,'2022-03-23 05:40:29','2022-03-23 05:40:29','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.15\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.15\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Mar. 29th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 2nd @ 10:30 am<br /></strong>Jerome Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.15\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.15\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.15\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.15\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.15\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.15\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.15\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.15\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-03-23 05:40:29','2022-03-23 05:40:29','',1967,'https://kingsvillelivestock.com/?p=4161',0,'revision','',0),(4162,2,'2022-03-23 05:40:59','2022-03-23 05:40:59','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.15\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.15\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Mar. 29th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 2nd @ 10:30 am<br /></strong>Jerome Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.15\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.15\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.15\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.15\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.15\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.15\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.15\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.15\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-03-23 05:40:59','2022-03-23 05:40:59','',639,'https://kingsvillelivestock.com/?p=4162',0,'revision','',0),(4163,2,'2022-03-23 17:15:44','2022-03-23 17:15:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 22, 2022</strong> 2345 hd; Last week; 1957 hd; a year ago 1360.Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$217.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$141.60</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$155.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$130.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$112.00-$123.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$92.00 - $103.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$80.00 - $91.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $125.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">670lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">807lbs @$159.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">825lbs @$156.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">941lbs @$141.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">678lbs @$154.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">702lbs @$150.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.15\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 22, 2022 - Market Report','','publish','closed','open','','march-22-2022-market-report','','','2022-03-23 17:15:48','2022-03-23 17:15:48','',0,'https://kingsvillelivestock.com/?p=4163',0,'post','',0),(4165,2,'2022-03-23 17:15:44','2022-03-23 17:15:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 22, 2022</strong> 2345 hd; Last week; 1957 hd; a year ago 1360.Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$217.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$141.60</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$155.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$130.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$112.00-$123.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$92.00 - $103.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$80.00 - $91.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $125.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">670lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">807lbs @$159.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">825lbs @$156.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">941lbs @$141.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">678lbs @$154.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">702lbs @$150.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.15\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 22, 2022 - Market Report','','inherit','closed','closed','','4163-revision-v1','','','2022-03-23 17:15:44','2022-03-23 17:15:44','',4163,'https://kingsvillelivestock.com/?p=4165',0,'revision','',0),(4166,2,'2022-03-23 17:15:44','2022-03-23 17:15:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 22, 2022</strong> 2345 hd; Last week; 1957 hd; a year ago 1360.Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$217.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$141.60</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$155.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$130.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$112.00-$123.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$92.00 - $103.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$80.00 - $91.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $125.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">670lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">807lbs @$159.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">825lbs @$156.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">941lbs @$141.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">678lbs @$154.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">702lbs @$150.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.15\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 15, 2022 - Market Report','','inherit','closed','closed','','4163-revision-v1','','','2022-03-23 17:15:44','2022-03-23 17:15:44','',4163,'https://kingsvillelivestock.com/?p=4166',0,'revision','',0),(4167,2,'2022-03-23 17:15:48','2022-03-23 17:15:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 22, 2022</strong> 2345 hd; Last week; 1957 hd; a year ago 1360.Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$217.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$141.60</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$155.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$130.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$112.00-$123.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$92.00 - $103.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$80.00 - $91.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $125.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">670lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">807lbs @$159.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">825lbs @$156.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">941lbs @$141.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">678lbs @$154.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">702lbs @$150.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.15\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 22, 2022 - Market Report','','inherit','closed','closed','','4163-revision-v1','','','2022-03-23 17:15:48','2022-03-23 17:15:48','',4163,'https://kingsvillelivestock.com/?p=4167',0,'revision','',0),(4168,2,'2022-03-28 18:23:10','2022-03-28 18:23:10','','Tuesday,March 29th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymarch-29th-feeder-cattle-consignments','','','2022-03-28 18:23:10','2022-03-28 18:23:10','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/03/TuesdayMarch-29th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4169,2,'2022-03-28 18:23:17','2022-03-28 18:23:17','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.2.2\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.15\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.15\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/TuesdayMarch-29th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4168\">Tuesday,March 29th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.15\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.2\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-03-28 18:23:17','2022-03-28 18:23:17','',2209,'https://kingsvillelivestock.com/?p=4169',0,'revision','',0),(4170,2,'2022-03-28 21:36:25','2022-03-28 21:36:25','','Jerome Auction April 2nd','','inherit','closed','closed','','jerome-auction-april-2nd-2','','','2022-03-28 21:36:25','2022-03-28 21:36:25','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/03/Jerome-Auction-April-2nd-1.pdf',0,'attachment','application/pdf',0),(4171,2,'2022-03-28 21:37:06','2022-03-28 21:37:06','','Sieker Auction April 8th-Garden CIty','','inherit','closed','closed','','sieker-auction-april-8th-garden-city-2','','','2022-03-28 21:37:06','2022-03-28 21:37:06','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/03/Sieker-Auction-April-8th-Garden-CIty-1.pdf',0,'attachment','application/pdf',0),(4172,2,'2022-03-28 21:38:05','2022-03-28 21:38:05','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.15\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.15.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Jerome-Auction-April-2nd-1.pdf\" rel=\"attachment wp-att-4170\">Jerome Auction Saturday April 2nd-10:30am-Blairstown,MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/vd1Xb7DTMiRLseHP8\">Jerome Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Sieker-Auction-April-8th-Garden-CIty-1.pdf\" rel=\"attachment wp-att-4171\">Sieker Auction Friday,April 8th-Garden City-9:30am-Garden City,MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/WLx5ruhYHQvEp7Hk6\">Sieker Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-03-28 21:38:05','2022-03-28 21:38:05','',1450,'https://kingsvillelivestock.com/?p=4172',0,'revision','',0),(4173,2,'2022-03-28 21:41:16','2022-03-28 21:41:16','','Jerome Auction April 2nd-Blairstown','','inherit','closed','closed','','jerome-auction-april-2nd-blairstown','','','2022-03-28 21:41:16','2022-03-28 21:41:16','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/03/Jerome-Auction-April-2nd-Blairstown.pdf',0,'attachment','application/pdf',0),(4174,2,'2022-03-28 21:41:56','2022-03-28 21:41:56','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.15\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.15.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Jerome-Auction-April-2nd-1.pdf\" rel=\"attachment wp-att-4170\"></a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Jerome-Auction-April-2nd-Blairstown.pdf\" rel=\"attachment wp-att-4173\">Jerome Auction Satuday, April 2nd-Blairstown-10:30am-Blairstown,MO</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Jerome-Auction-April-2nd-1.pdf\" rel=\"attachment wp-att-4170\"></a></p>\n<p><a href=\"https://photos.app.goo.gl/vd1Xb7DTMiRLseHP8\">Jerome Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Sieker-Auction-April-8th-Garden-CIty-1.pdf\" rel=\"attachment wp-att-4171\">Sieker Auction Friday,April 8th-Garden City-9:30am-Garden City,MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/WLx5ruhYHQvEp7Hk6\">Sieker Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-03-28 21:41:56','2022-03-28 21:41:56','',1450,'https://kingsvillelivestock.com/?p=4174',0,'revision','',0),(4175,2,'2022-03-28 21:45:28','2022-03-28 21:45:28','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.15\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.15\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Mar. 29th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 2nd @ 10:30 am<br /></strong>Jerome Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.15\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.15\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.15\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.15\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.15\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.15\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.15\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.15\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-03-28 21:45:28','2022-03-28 21:45:28','',639,'https://kingsvillelivestock.com/?p=4175',0,'revision','',0),(4176,2,'2022-03-28 21:46:08','2022-03-28 21:46:08','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.15\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.15\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Mar. 29th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 2nd @ 10:30 am<br /></strong>Jerome Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.15\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.15\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.15\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.15\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.15\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.15\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.15\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.15\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-03-28 21:46:08','2022-03-28 21:46:08','',1967,'https://kingsvillelivestock.com/?p=4176',0,'revision','',0),(4177,2,'2022-03-28 21:47:45','2022-03-28 21:47:45','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.15\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.15.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Jerome-Auction-April-2nd-1.pdf\" rel=\"attachment wp-att-4170\"></a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Jerome-Auction-April-2nd-Blairstown.pdf\" rel=\"attachment wp-att-4173\">Jerome Auction Satuday, April 2nd-Blairstown-10:30am-Blairstown,MO</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Jerome-Auction-April-2nd-1.pdf\" rel=\"attachment wp-att-4170\"></a></p>\n<p><a href=\"https://photos.app.goo.gl/vd1Xb7DTMiRLseHP8\">Jerome Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Sieker-Auction-April-8th-Garden-CIty-1.pdf\" rel=\"attachment wp-att-4171\">Sieker Auction Friday,April 8th-Garden City-9:30am-Garden City,MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/WLx5ruhYHQvEp7Hk6\">Sieker Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/FZ8qBVsWjJfeSAtZ6\">Wheeler Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-03-28 21:47:45','2022-03-28 21:47:45','',1450,'https://kingsvillelivestock.com/?p=4177',0,'revision','',0),(4178,2,'2022-03-30 17:38:32','2022-03-30 17:38:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 29, 2022</strong> 3090 hd; Last week; 2345 hd; a year ago 2887.Feeder steers &amp; heifers sold $3-$5 higher. Lightweight grazing cattle sold $4-$8 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$229.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$168.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$162.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$137.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$169.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$136.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$126.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$88.00 - $106.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$75.00 - $87.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">719lbs @$168.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">735lbs @$166.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">775lbs @$162.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">801lbs @$162.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">890lbs @$148.60</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">668lbs @$160.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">673lbs @$160.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">707lbs @$152.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">707lbs @$153.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">722lbs@$150.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">730lbs@$155.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">788lbs@$141.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.15\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 29, 2022 - Market Report','','publish','closed','open','','march-29-2022-market-report','','','2022-03-30 17:38:36','2022-03-30 17:38:36','',0,'https://kingsvillelivestock.com/?p=4178',0,'post','',0),(4180,2,'2022-03-30 17:38:32','2022-03-30 17:38:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 29, 2022</strong> 3090 hd; Last week; 2345 hd; a year ago 2887.Feeder steers &amp; heifers sold $3-$5 higher. Lightweight grazing cattle sold $4-$8 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$229.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$168.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$162.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$137.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$169.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$136.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$126.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$88.00 - $106.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$75.00 - $87.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">719lbs @$168.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">735lbs @$166.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">775lbs @$162.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">801lbs @$162.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">890lbs @$148.60</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">668lbs @$160.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">673lbs @$160.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">707lbs @$152.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">707lbs @$153.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">722lbs@$150.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">730lbs@$155.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">788lbs@$141.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.15\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 29, 2022 - Market Report','','inherit','closed','closed','','4178-revision-v1','','','2022-03-30 17:38:32','2022-03-30 17:38:32','',4178,'https://kingsvillelivestock.com/?p=4180',0,'revision','',0),(4181,2,'2022-03-30 17:38:32','2022-03-30 17:38:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 29, 2022</strong> 3090 hd; Last week; 2345 hd; a year ago 2887.Feeder steers &amp; heifers sold $3-$5 higher. Lightweight grazing cattle sold $4-$8 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$229.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$168.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$162.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$137.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$169.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$136.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$126.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$88.00 - $106.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$75.00 - $87.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">719lbs @$168.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">735lbs @$166.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">775lbs @$162.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">801lbs @$162.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">890lbs @$148.60</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">668lbs @$160.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">673lbs @$160.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">707lbs @$152.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">707lbs @$153.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">722lbs@$150.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">730lbs@$155.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">788lbs@$141.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.15\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 22, 2022 - Market Report','','inherit','closed','closed','','4178-revision-v1','','','2022-03-30 17:38:32','2022-03-30 17:38:32','',4178,'https://kingsvillelivestock.com/?p=4181',0,'revision','',0),(4182,2,'2022-03-30 17:38:36','2022-03-30 17:38:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 29, 2022</strong> 3090 hd; Last week; 2345 hd; a year ago 2887.Feeder steers &amp; heifers sold $3-$5 higher. Lightweight grazing cattle sold $4-$8 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$229.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$168.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$162.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$137.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$169.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$136.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$126.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$88.00 - $106.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$75.00 - $87.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.15.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">719lbs @$168.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">735lbs @$166.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">775lbs @$162.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">801lbs @$162.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">890lbs @$148.60</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">668lbs @$160.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">673lbs @$160.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">707lbs @$152.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">707lbs @$153.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">722lbs@$150.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">730lbs@$155.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">788lbs@$141.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.15\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 29, 2022 - Market Report','','inherit','closed','closed','','4178-revision-v1','','','2022-03-30 17:38:36','2022-03-30 17:38:36','',4178,'https://kingsvillelivestock.com/?p=4182',0,'revision','',0),(4183,2,'2022-03-30 17:39:18','2022-03-30 17:39:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.15\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.15\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 2nd @ 10:30 am<br /></strong>Jerome Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.15\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.15\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.15\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.15\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.15\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.15\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.15\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.15\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-03-30 17:39:18','2022-03-30 17:39:18','',639,'https://kingsvillelivestock.com/?p=4183',0,'revision','',0),(4184,2,'2022-03-30 17:40:12','2022-03-30 17:40:12','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.15\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.15\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.15\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.15.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 2nd @ 10:30 am<br /></strong>Jerome Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.2.2\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.15\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.15\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.15\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.15\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.15\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.15\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.2\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.15\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.2\" use_background_color_gradient=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" background_color_gradient_overlays_image=\"on\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.15\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.15\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.15\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.15\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.15\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.15\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.15\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.2\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-03-30 17:40:12','2022-03-30 17:40:12','',1967,'https://kingsvillelivestock.com/?p=4184',0,'revision','',0),(4185,2,'2022-03-30 18:46:38','2022-03-30 18:46:38','','Wheeler Auction April 15th-Pleasant Hill','','inherit','closed','closed','','wheeler-auction-april-15th-pleasant-hill','','','2022-03-30 18:46:38','2022-03-30 18:46:38','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/03/Wheeler-Auction-April-15th-Pleasant-Hill.pdf',0,'attachment','application/pdf',0),(4186,2,'2022-03-30 18:47:29','2022-03-30 18:47:29','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.15\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.15\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.15\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.15.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Jerome-Auction-April-2nd-1.pdf\" rel=\"attachment wp-att-4170\"></a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Jerome-Auction-April-2nd-Blairstown.pdf\" rel=\"attachment wp-att-4173\">Jerome Auction Satuday, April 2nd-10:30am-Blairstown,MO</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Jerome-Auction-April-2nd-1.pdf\" rel=\"attachment wp-att-4170\"></a></p>\n<p><a href=\"https://photos.app.goo.gl/vd1Xb7DTMiRLseHP8\">Jerome Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Sieker-Auction-April-8th-Garden-CIty-1.pdf\" rel=\"attachment wp-att-4171\">Sieker Auction Friday,April 8th-9:30am-Garden City,MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/WLx5ruhYHQvEp7Hk6\">Sieker Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Wheeler-Auction-April-15th-Pleasant-Hill.pdf\" rel=\"attachment wp-att-4185\">Wheeler Auction Friday,April 15th-10:30am-Pleasant Hill,MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/FZ8qBVsWjJfeSAtZ6\">Wheeler Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-03-30 18:47:29','2022-03-30 18:47:29','',1450,'https://kingsvillelivestock.com/?p=4186',0,'revision','',0),(4188,2,'2022-04-04 15:42:52','2022-04-04 15:42:52','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/TuesdayMarch-29th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4168\">Tuesday,March 29th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16.0\" _module_preset=\"default\" column_structure=\"1_4,3_4\"][et_pb_column _builder_version=\"4.16.0\" _module_preset=\"default\" type=\"1_4\"][et_pb_text _builder_version=\"4.16.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Friday, April 22nd @ 5pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.16.0\" _module_preset=\"default\" type=\"3_4\"][et_pb_text _builder_version=\"4.16.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 5pm </i></b></p>\n<ul>\n<li><b>Bramer Farms: </b><b>2 </b>18 month Blk Angus Bulls 3/4 Angus, AI sired, &amp; 700lbs WW. Semen &amp; TrichTested</li>\n<li><b>Circle L Farms: </b><b>1 </b>2 yr. old Reg. Gelv. Bull . Judd Ranch Genetics. Semen &amp; Trich Tested</li>\n<li><b>Double S Angus: </b><b>15 </b>2 yr. old Blk Angus Bulls. Nice set of 2 yr old bulls, all out of Reg. stock no papers. BWTs between 75lbs-81lbs, calving ease bulls. Semen &amp; Trich Tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>VanMeter Farms: </b><b>10 </b>Blk 5-SS Cows w/ 250lbs calves at side. <b>10</b> Blk 5-SS Cows, 2nd &amp; 3rd period</li>\n<li><b>Anderson Farms: </b><b>15 </b>Blk 3-5 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>David Farms: </b><b>30 </b>Blk Angus 3-6 yr old Cows, 3rd period. Bred Blk Gelv. Bulls &amp; had all shots wormed/poured.</li>\n<li><b>Williams Farms: </b><b>30 </b>Blk Blk Angous 3-4 yr. old Cows, 2nd period. 35 Blk Angus 5-6 yr. old Cows, 2nd period. All fall calving cows &amp; start calving Sept. 1st bred to Angus &amp; Sim-Angus Bulls.</li>\n<li><b>Raft Farms: </b><b>10 </b>Â 3/4 Angus &amp; 1/4 Brangus 3-5 yr. old Cows, 3rd period. Bred Angus Bulls &amp; home-raised gentle set of cows</li>\n<li><b>ATA Farms: </b><b>6 </b>Â Blk Balancer bred heifers 1000lbs,2nd &amp; 3rd period. <b>10</b> Blk-Bwf 3-6 yr. old Cows, 2nd &amp; 3rd period <b>2 </b>Hereford 3 yr. old Cows, 2nd &amp; 3rd period.Â  Bred to Ade Polled Hereford Bulls.</li>\n<li><b>Arnold Farms Complete Dispersal: </b><b>75 </b>Â Blk 5-SS Cows w/ 200lbs calves at side. 45 Blk 5-SS Cows w/ 350lbs calves at side ( 3N1â€™s) 25 Red Angus/Rwf 5-7 yr. old Cows w/ 250lbs calves at side. 35 Blk 7-SS fall calving Cows, 2nd period. All cows have had Lepto, Blk. Leg, wormed/poured w/ LongRange wormer &amp; Multimin shot. All calves are sired by Blk-Sim Angus Bulls. Very nice set of cows that are gentle &amp; broke to a feed truck.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-04-04 15:42:52','2022-04-04 15:42:52','',2209,'https://kingsvillelivestock.com/?p=4188',0,'revision','',0),(4189,2,'2022-04-04 15:43:45','2022-04-04 15:43:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-04-04 15:43:45','2022-04-04 15:43:45','',639,'https://kingsvillelivestock.com/?p=4189',0,'revision','',0),(4190,2,'2022-04-04 15:44:35','2022-04-04 15:44:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-04-04 15:44:35','2022-04-04 15:44:35','',1967,'https://kingsvillelivestock.com/?p=4190',0,'revision','',0),(4191,2,'2022-04-04 15:45:04','2022-04-04 15:45:04','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.16.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p>Â <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Sieker-Auction-April-8th-Garden-CIty-1.pdf\" rel=\"attachment wp-att-4171\">Sieker Auction Friday,April 8th-9:30am-Garden City,MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/WLx5ruhYHQvEp7Hk6\">Sieker Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Wheeler-Auction-April-15th-Pleasant-Hill.pdf\" rel=\"attachment wp-att-4185\">Wheeler Auction Friday,April 15th-10:30am-Pleasant Hill,MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/FZ8qBVsWjJfeSAtZ6\">Wheeler Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-04-04 15:45:04','2022-04-04 15:45:04','',1450,'https://kingsvillelivestock.com/?p=4191',0,'revision','',0),(4192,2,'2022-04-04 16:45:25','2022-04-04 16:45:25','','April 9th 2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','april-9th-2022-horse-tack-small-animal-sale','','','2022-04-04 16:45:25','2022-04-04 16:45:25','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-9th-2022-Horse-Tack-Small-Animal-Sale.pdf',0,'attachment','application/pdf',0),(4193,2,'2022-04-04 16:45:45','2022-04-04 16:45:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-9th-2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4192\">April 9th 2022 Horse, Tack, &amp; Small Animal Sale</a></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\"> <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-9th-2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4192\">April 9th 2022 Horse, Tack, &amp; Small Animal Sale</a></span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-04-04 16:45:45','2022-04-04 16:45:45','',639,'https://kingsvillelivestock.com/?p=4193',0,'revision','',0),(4194,2,'2022-04-04 17:31:55','2022-04-04 17:31:55','','Tuesday,April 5th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayapril-5th-feeder-cattle-consignments','','','2022-04-04 17:31:55','2022-04-04 17:31:55','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/04/TuesdayApril-5th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4195,2,'2022-04-04 17:32:12','2022-04-04 17:32:12','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/TuesdayApril-5th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4194\">Tuesday,April 5th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Friday, April 22nd @ 5pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 5pm </i></b></p>\n<ul>\n<li><b>Bramer Farms: </b><b>2 </b>18 month Blk Angus Bulls 3/4 Angus, AI sired, &amp; 700lbs WW. Semen &amp; TrichTested</li>\n<li><b>Circle L Farms: </b><b>1 </b>2 yr. old Reg. Gelv. Bull . Judd Ranch Genetics. Semen &amp; Trich Tested</li>\n<li><b>Double S Angus: </b><b>15 </b>2 yr. old Blk Angus Bulls. Nice set of 2 yr old bulls, all out of Reg. stock no papers. BWTs between 75lbs-81lbs, calving ease bulls. Semen &amp; Trich Tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>VanMeter Farms: </b><b>10 </b>Blk 5-SS Cows w/ 250lbs calves at side. <b>10</b> Blk 5-SS Cows, 2nd &amp; 3rd period</li>\n<li><b>Anderson Farms: </b><b>15 </b>Blk 3-5 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>David Farms: </b><b>30 </b>Blk Angus 3-6 yr old Cows, 3rd period. Bred Blk Gelv. Bulls &amp; had all shots wormed/poured.</li>\n<li><b>Williams Farms: </b><b>30 </b>Blk Blk Angous 3-4 yr. old Cows, 2nd period. 35 Blk Angus 5-6 yr. old Cows, 2nd period. All fall calving cows &amp; start calving Sept. 1st bred to Angus &amp; Sim-Angus Bulls.</li>\n<li><b>Raft Farms: </b><b>10 </b>Â 3/4 Angus &amp; 1/4 Brangus 3-5 yr. old Cows, 3rd period. Bred Angus Bulls &amp; home-raised gentle set of cows</li>\n<li><b>ATA Farms: </b><b>6 </b>Â Blk Balancer bred heifers 1000lbs,2nd &amp; 3rd period. <b>10</b> Blk-Bwf 3-6 yr. old Cows, 2nd &amp; 3rd period <b>2 </b>Hereford 3 yr. old Cows, 2nd &amp; 3rd period.Â  Bred to Ade Polled Hereford Bulls.</li>\n<li><b>Arnold Farms Complete Dispersal: </b><b>75 </b>Â Blk 5-SS Cows w/ 200lbs calves at side. 45 Blk 5-SS Cows w/ 350lbs calves at side ( 3N1â€™s) 25 Red Angus/Rwf 5-7 yr. old Cows w/ 250lbs calves at side. 35 Blk 7-SS fall calving Cows, 2nd period. All cows have had Lepto, Blk. Leg, wormed/poured w/ LongRange wormer &amp; Multimin shot. All calves are sired by Blk-Sim Angus Bulls. Very nice set of cows that are gentle &amp; broke to a feed truck.</li>\n<li><b>Engelbrecht Farms: </b><b>7 </b>Â Blk Angus 2 yr. old Heifer pairs w/ spring calves at side. 7 Red Angus 2 yr. old Heifer pairs w/ spring calves at side</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-04-04 17:32:12','2022-04-04 17:32:12','',2209,'https://kingsvillelivestock.com/?p=4195',0,'revision','',0),(4196,2,'2022-04-04 21:42:12','2022-04-04 21:42:12','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/TuesdayApril-5th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4194\">Tuesday,April 5th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Friday, April 22nd @ 5pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 5pm </i></b></p>\n<ul>\n<li><b>Bramer Farms: </b><b>2 </b>18 month Blk Angus Bulls 3/4 Angus, AI sired, &amp; 700lbs WW. Semen &amp; TrichTested</li>\n<li><b>Circle L Farms: </b><b>1 </b>2 yr. old Reg. Blk Gelv. Bull . Judd Ranch Genetics. <b>1 </b>2 yr. old Red Angus Bull Semen &amp; Trich Tested</li>\n<li><b>Double S Angus: </b><b>15 </b>2 yr. old Blk Angus Bulls. Nice set of 2 yr old bulls, all out of Reg. stock no papers. BWTs between 75lbs-81lbs, calving ease bulls. Semen &amp; Trich Tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>VanMeter Farms: </b><b>10 </b>Blk 5-SS Cows w/ 250lbs calves at side. <b>10</b> Blk 5-SS Cows, 2nd &amp; 3rd period</li>\n<li><b>Anderson Farms: </b><b>15 </b>Blk 3-5 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>David Farms: </b><b>30 </b>Blk Angus 3-6 yr old Cows, 3rd period. Bred Blk Gelv. Bulls &amp; had all shots wormed/poured.</li>\n<li><b>Williams Farms: </b><b>30 </b>Blk Blk Angous 3-4 yr. old Cows, 2nd period. 35 Blk Angus 5-6 yr. old Cows, 2nd period. All fall calving cows &amp; start calving Sept. 1st bred to Angus &amp; Sim-Angus Bulls.</li>\n<li><b>Raft Farms: </b><b>10 </b>Â 3/4 Angus &amp; 1/4 Brangus 3-5 yr. old Cows, 3rd period. Bred Angus Bulls &amp; home-raised gentle set of cows</li>\n<li><b>ATA Farms: </b><b>6 </b>Â Blk Balancer bred heifers 1000lbs,2nd &amp; 3rd period. <b>10</b> Blk-Bwf 3-6 yr. old Cows, 2nd &amp; 3rd period <b>2 </b>Hereford 3 yr. old Cows, 2nd &amp; 3rd period.Â  Bred to Ade Polled Hereford Bulls.</li>\n<li><b>Arnold Farms Complete Dispersal: </b><b>75 </b>Â Blk 5-SS Cows w/ 200lbs calves at side. 45 Blk 5-SS Cows w/ 350lbs calves at side ( 3N1â€™s) 25 Red Angus/Rwf 5-7 yr. old Cows w/ 250lbs calves at side. 35 Blk 7-SS fall calving Cows, 2nd period. All cows have had Lepto, Blk. Leg, wormed/poured w/ LongRange wormer &amp; Multimin shot. All calves are sired by Blk-Sim Angus Bulls. Very nice set of cows that are gentle &amp; broke to a feed truck.</li>\n<li><b>Engelbrecht Farms: </b><b>7 </b>Â Blk Angus 2 yr. old Heifer pairs w/ spring calves at side. 7 Red Angus 2 yr. old Heifer pairs w/ spring calves at side</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-04-04 21:42:12','2022-04-04 21:42:12','',2209,'https://kingsvillelivestock.com/?p=4196',0,'revision','',0),(4197,2,'2022-04-04 21:51:55','2022-04-04 21:51:55','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.16.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Sieker-Auction-April-8th-Garden-CIty-1.pdf\" rel=\"attachment wp-att-4171\">Sieker Auction Friday,April 8th-9:30am-Garden City,MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/WLx5ruhYHQvEp7Hk6\">Sieker Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Wheeler-Auction-April-15th-Pleasant-Hill.pdf\" rel=\"attachment wp-att-4185\">Wheeler Auction Friday,April 15th-10:30am-Pleasant Hill,MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/FZ8qBVsWjJfeSAtZ6\">Wheeler Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/UrPvMFao3Pidk4fy7\">Packingham Photos </a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-04-04 21:51:55','2022-04-04 21:51:55','',1450,'https://kingsvillelivestock.com/?p=4197',0,'revision','',0),(4199,2,'2022-04-04 21:54:27','2022-04-04 21:54:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-9th-2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4192\">April 9th 2022 Horse, Tack, &amp; Small Animal Sale</a></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\"> <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-9th-2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4192\">April 9th 2022 Horse, Tack, &amp; Small Animal Sale</a></span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am</strong></span><span style=\"color: #000000;\"><strong> </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>April. 8th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"></span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-04-04 21:54:27','2022-04-04 21:54:27','',639,'https://kingsvillelivestock.com/?p=4199',0,'revision','',0),(4200,2,'2022-04-04 21:55:15','2022-04-04 21:55:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-9th-2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4192\">April 9th 2022 Horse, Tack, &amp; Small Animal Sale</a></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\"> <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-9th-2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4192\">April 9th 2022 Horse, Tack, &amp; Small Animal Sale</a></span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am</strong></span><span style=\"color: #000000;\"><strong> </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"></span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-04-04 21:55:15','2022-04-04 21:55:15','',639,'https://kingsvillelivestock.com/?p=4200',0,'revision','',0),(4201,2,'2022-04-04 21:56:25','2022-04-04 21:56:25','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-04-04 21:56:25','2022-04-04 21:56:25','',1967,'https://kingsvillelivestock.com/?p=4201',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (4202,2,'2022-04-06 02:46:18','2022-04-06 02:46:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-9th-2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4192\">April 9th, 2022 Horse, Tack, &amp; Small Animal Sale</a></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\"> <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-9th-2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4192\">April 9th 2022 Horse, Tack, &amp; Small Animal Sale</a></span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am</strong></span><span style=\"color: #000000;\"><strong> </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"></span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-04-06 02:46:18','2022-04-06 02:46:18','',639,'https://kingsvillelivestock.com/?p=4202',0,'revision','',0),(4203,2,'2022-04-06 02:47:29','2022-04-06 02:47:29','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 8th @ 9:30 am<br /></strong>Sieker Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-04-06 02:47:29','2022-04-06 02:47:29','',1967,'https://kingsvillelivestock.com/?p=4203',0,'revision','',0),(4204,2,'2022-04-06 15:13:04','2022-04-06 15:13:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 5, 2022</strong> 1693 hd; Last week; 3090 hd; a year ago 2457.Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$218.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$171.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.50-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$133.00-$153.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$121.00-$132.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$129.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$86.00 - $101.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$74.00 - $85.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $127.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">701lbs @$171.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">774lbs @$155.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 5, 2022 - Market Report','','publish','closed','open','','april-5-2022-market-report','','','2022-04-06 15:13:07','2022-04-06 15:13:07','',0,'https://kingsvillelivestock.com/?p=4204',0,'post','',0),(4206,2,'2022-04-06 15:13:04','2022-04-06 15:13:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 5, 2022</strong> 1693 hd; Last week; 3090 hd; a year ago 2457.Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$218.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$171.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.50-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$133.00-$153.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$121.00-$132.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$129.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$86.00 - $101.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$74.00 - $85.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $127.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">701lbs @$171.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">774lbs @$155.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 5, 2022 - Market Report','','inherit','closed','closed','','4204-revision-v1','','','2022-04-06 15:13:04','2022-04-06 15:13:04','',4204,'https://kingsvillelivestock.com/?p=4206',0,'revision','',0),(4207,2,'2022-04-06 15:13:04','2022-04-06 15:13:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 5, 2022</strong> 1693 hd; Last week; 3090 hd; a year ago 2457.Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$218.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$171.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.50-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$133.00-$153.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$121.00-$132.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$129.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$86.00 - $101.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$74.00 - $85.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $127.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">701lbs @$171.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">774lbs @$155.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 29, 2022 - Market Report','','inherit','closed','closed','','4204-revision-v1','','','2022-04-06 15:13:04','2022-04-06 15:13:04','',4204,'https://kingsvillelivestock.com/?p=4207',0,'revision','',0),(4208,2,'2022-04-06 15:13:07','2022-04-06 15:13:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 5, 2022</strong> 1693 hd; Last week; 3090 hd; a year ago 2457.Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$218.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$171.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.50-$147.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$132.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$162.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$133.00-$153.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$121.00-$132.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$129.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$86.00 - $101.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$74.00 - $85.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $73.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $127.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.16.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">701lbs @$171.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">774lbs @$155.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 5, 2022 - Market Report','','inherit','closed','closed','','4204-revision-v1','','','2022-04-06 15:13:07','2022-04-06 15:13:07','',4204,'https://kingsvillelivestock.com/?p=4208',0,'revision','',0),(4210,2,'2022-04-06 16:07:37','2022-04-06 16:07:37','','Packingham Auction April 30th-Freeman','','inherit','closed','closed','','packingham-auction-april-30th-freeman','','','2022-04-06 16:07:37','2022-04-06 16:07:37','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2022/04/Packingham-Auction-April-30th-Freeman.pdf',0,'attachment','application/pdf',0),(4211,2,'2022-04-06 16:08:10','2022-04-06 16:08:10','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.16.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Sieker-Auction-April-8th-Garden-CIty-1.pdf\" rel=\"attachment wp-att-4171\">Sieker Auction Friday,April 8th-9:30am-Garden City,MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/WLx5ruhYHQvEp7Hk6\">Sieker Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Wheeler-Auction-April-15th-Pleasant-Hill.pdf\" rel=\"attachment wp-att-4185\">Wheeler Auction Friday,April 15th-10:30am-Pleasant Hill,MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/FZ8qBVsWjJfeSAtZ6\">Wheeler Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/Packingham-Auction-April-30th-Freeman.pdf\" rel=\"attachment wp-att-4210\">Packingham Auction Saturday, April 30th-9am-Freeman,MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/UrPvMFao3Pidk4fy7\">Packingham Photos </a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-04-06 16:08:10','2022-04-06 16:08:10','',1450,'https://kingsvillelivestock.com/?p=4211',0,'revision','',0),(4212,2,'2022-04-09 19:12:56','2022-04-09 19:12:56','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 9th @ 8:30 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-9th-2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4192\">April 9th, 2022 Horse, Tack, &amp; Small Animal Sale</a></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\"> <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-9th-2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4192\">April 9th 2022 Horse, Tack, &amp; Small Animal Sale</a></span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am</strong></span><span style=\"color: #000000;\"><strong> </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"></span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-04-09 19:12:56','2022-04-09 19:12:56','',639,'https://kingsvillelivestock.com/?p=4212',0,'revision','',0),(4213,2,'2022-04-09 19:13:33','2022-04-09 19:13:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 9th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April. 9th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-04-09 19:13:33','2022-04-09 19:13:33','',1967,'https://kingsvillelivestock.com/?p=4213',0,'revision','',0),(4214,2,'2022-04-09 19:14:31','2022-04-09 19:14:31','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Wheeler-Auction-April-15th-Pleasant-Hill.pdf\" rel=\"attachment wp-att-4185\">Wheeler Auction Friday, April 15th-10:30am-Pleasant Hill, MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/FZ8qBVsWjJfeSAtZ6\">Wheeler Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/Packingham-Auction-April-30th-Freeman.pdf\" rel=\"attachment wp-att-4210\">Packingham Auction Saturday, April 30th-9 am-Freeman, MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/UrPvMFao3Pidk4fy7\">Packingham Photos </a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-04-09 19:14:31','2022-04-09 19:14:31','',1450,'https://kingsvillelivestock.com/?p=4214',0,'revision','',0),(4215,2,'2022-04-11 16:54:23','2022-04-11 16:54:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/TuesdayApril-5th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4194\">Tuesday,April 5th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Friday, April 22nd @ 5pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 5pm </i></b></p>\n<ul>\n<li><b>Bramer Farms: </b><b>2 </b>18 month Blk Angus Bulls 3/4 Angus, AI sired, &amp; 700lbs WW. Semen &amp; TrichTested</li>\n<li><b>Circle L Farms: </b><b>1 </b>2 yr. old Reg. Blk Gelv. Bull . Judd Ranch Genetics. <b>1 </b>2 yr. old Red Angus Bull Semen &amp; Trich Tested</li>\n<li><b>Double S Angus: </b><b>15 </b>2 yr. old Blk Angus Bulls. Nice set of 2 yr old bulls, all out of Reg. stock no papers. BWTs between 75lbs-81lbs, calving ease bulls. Semen &amp; Trich Tested</li>\n<li><b>Carl Farms: </b><b>1 </b>Â 4 yr. old Hereford Bull</li>\n<li><b>Ellis Farms: </b><b>5 </b>18 month old Reg. Red Angus Bulls. Semen &amp; Trich Tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>VanMeter Farms: </b><b>10 </b>Blk 5-SS Cows w/ 250lbs calves at side. <b>10</b> Blk 5-SS Cows, 2nd &amp; 3rd period</li>\n<li><b>Anderson Farms: </b><b>15 </b>Blk 3-5 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>David Farms: </b><b>30 </b>Blk Angus 3-6 yr old Cows, 3rd period. Bred Blk Gelv. Bulls &amp; had all shots wormed/poured.</li>\n<li><b>Williams Farms: </b><b>30 </b>Blk Blk Angous 3-4 yr. old Cows, 2nd period. 35 Blk Angus 5-6 yr. old Cows, 2nd period. All fall calving cows &amp; start calving Sept. 1st bred to Angus &amp; Sim-Angus Bulls.</li>\n<li><b>Raft Farms: </b><b>10 </b>Â 3/4 Angus &amp; 1/4 Brangus 3-5 yr. old Cows, 3rd period. Bred Angus Bulls &amp; home-raised gentle set of cows</li>\n<li><b>ATA Farms: </b><b>6 </b>Â Blk Balancer bred heifers 1000lbs,2nd &amp; 3rd period. <b>10</b> Blk-Bwf 3-6 yr. old Cows, 2nd &amp; 3rd period <b>2 </b>Hereford 3 yr. old Cows, 2nd &amp; 3rd period.Â  Bred to Ade Polled Hereford Bulls.</li>\n<li><b>Arnold Farms Complete Dispersal: </b><b>75 </b>Â Blk 5-SS Cows w/ 200lbs calves at side. 45 Blk 5-SS Cows w/ 350lbs calves at side ( 3N1â€™s) 25 Red Angus/Rwf 5-7 yr. old Cows w/ 250lbs calves at side. 35 Blk 7-SS fall calving Cows, 2nd period. All cows have had Lepto, Blk. Leg, wormed/poured w/ LongRange wormer &amp; Multimin shot. All calves are sired by Blk-Sim Angus Bulls. Very nice set of cows that are gentle &amp; broke to a feed truck.</li>\n<li><b>Engelbrecht Farms: </b><b>7 </b>Â Blk Angus 2 yr. old Heifer pairs w/ spring calves at side. 7 Red Angus 2 yr. old Heifer pairs w/ spring calves at side</li>\n<li><b>Carl Farms: </b><b>10 </b>Â Blk 2-7 yr. old Cows w/ calves at side &amp; some 3N1s. <b>10</b> Blk 2-7 yr. old Cows bred Hereford bull.</li>\n<li><b>Brandt Farms Complete Dispersal: </b><b>25 </b>Â Blk 4-7 yr. old Cows <b>10</b> Red Angus 3-5 yr. old Fall calving Cows. Start calving Aug. 1st. Gentle set of cows, current on all shots &amp; bred back to Reg. Blk Sim-Angus Bulls.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-04-11 16:54:23','2022-04-11 16:54:23','',2209,'https://kingsvillelivestock.com/?p=4215',0,'revision','',0),(4216,2,'2022-04-11 16:56:19','2022-04-11 16:56:19','','April 22, 2022 Cow Sale','','inherit','closed','closed','','april-22-2022-cow-sale','','','2022-04-11 16:56:19','2022-04-11 16:56:19','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-22-2022-Cow-Sale.pdf',0,'attachment','application/pdf',0),(4218,2,'2022-04-11 16:57:00','2022-04-11 16:57:00','','doc00215820220406170713 (1)','','inherit','closed','closed','','doc00215820220406170713-1','','','2022-04-11 16:57:00','2022-04-11 16:57:00','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/04/doc00215820220406170713-1.pdf',0,'attachment','application/pdf',0),(4219,2,'2022-04-11 16:57:29','2022-04-11 16:57:29','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-22-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4216\">April 22, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/doc00215820220406170713-1.pdf\" rel=\"attachment wp-att-4218\">Copy of Ellis Bull Papers</a></p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am</strong></span><span style=\"color: #000000;\"><strong> </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"></span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-04-11 16:57:29','2022-04-11 16:57:29','',639,'https://kingsvillelivestock.com/?p=4219',0,'revision','',0),(4221,2,'2022-04-11 16:59:06','2022-04-11 16:59:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm Â Â  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-22-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4216\">April 22, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/doc00215820220406170713-1.pdf\" rel=\"attachment wp-att-4218\">Copy of Ellis Reg. Bull Papers</a></p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-04-11 16:59:06','2022-04-11 16:59:06','',1967,'https://kingsvillelivestock.com/?p=4221',0,'revision','',0),(4222,2,'2022-04-11 17:56:09','2022-04-11 17:56:09','','Packingham Auction April 30th-Freeman','','inherit','closed','closed','','packingham-auction-april-30th-freeman-2','','','2022-04-11 17:56:09','2022-04-11 17:56:09','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/04/Packingham-Auction-April-30th-Freeman-1.pdf',0,'attachment','application/pdf',0),(4223,2,'2022-04-11 17:56:47','2022-04-11 17:56:47','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/03/Wheeler-Auction-April-15th-Pleasant-Hill.pdf\" rel=\"attachment wp-att-4185\">Wheeler Auction Friday, April 15th-10:30am-Pleasant Hill, MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/FZ8qBVsWjJfeSAtZ6\">Wheeler Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/Packingham-Auction-April-30th-Freeman-1.pdf\" rel=\"attachment wp-att-4222\">Packingham Auction Saturday, April 30th-9am-Freeman,MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/UrPvMFao3Pidk4fy7\">Packingham Photos </a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-04-11 17:56:47','2022-04-11 17:56:47','',1450,'https://kingsvillelivestock.com/?p=4223',0,'revision','',0),(4224,2,'2022-04-11 18:45:32','2022-04-11 18:45:32','','Tuesday,April 12th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayapril-12th-feeder-cattle-consignments','','','2022-04-11 18:45:32','2022-04-11 18:45:32','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/04/TuesdayApril-12th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4225,2,'2022-04-11 18:48:13','2022-04-11 18:48:13','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/TuesdayApril-12th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4224\">Tuesday,April 12th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Friday, April 22nd @ 5pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 5pm </i></b></p>\n<ul>\n<li><b>Bramer Farms: </b><b>2 </b>18 month Blk Angus Bulls 3/4 Angus, AI sired, &amp; 700lbs WW. Semen &amp; TrichTested</li>\n<li><b>Circle L Farms: </b><b>1 </b>2 yr. old Reg. Blk Gelv. Bull . Judd Ranch Genetics. <b>1 </b>2 yr. old Red Angus Bull Semen &amp; Trich Tested</li>\n<li><b>Double S Angus: </b><b>15 </b>2 yr. old Blk Angus Bulls. Nice set of 2 yr old bulls, all out of Reg. stock no papers. BWTs between 75lbs-81lbs, calving ease bulls. Semen &amp; Trich Tested</li>\n<li><b>Carl Farms: </b><b>1 </b>Â 4 yr. old Hereford Bull</li>\n<li><b>Ellis Farms: </b><b>5 </b>18 month old Reg. Red Angus Bulls. Semen &amp; Trich Tested</li>\n<li><b>Critchfield Farms: </b><b>15 </b>18 month old Reg. Angus Bulls.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. oldÂ  Reg. Angus , AI sired Connealy Hard Rock Bull. Has BWT of 73lbs, WW of 798lbs, &amp; YW of 1268lbs. Semen &amp; Trich Tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>VanMeter Farms: </b><b>10 </b>Blk 5-SS Cows w/ 250lbs calves at side. <b>10</b> Blk 5-SS Cows, 2nd &amp; 3rd period</li>\n<li><b>Anderson Farms: </b><b>15 </b>Blk 3-5 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>David Farms: </b><b>30 </b>Blk Angus 3-6 yr old Cows, 3rd period. Bred Blk Gelv. Bulls &amp; had all shots wormed/poured.</li>\n<li><b>Williams Farms: </b><b>30 </b>Blk Blk Angous 3-4 yr. old Cows, 2nd period. 35 Blk Angus 5-6 yr. old Cows, 2nd period. All fall calving cows &amp; start calving Sept. 1st bred to Angus &amp; Sim-Angus Bulls.</li>\n<li><b>Raft Farms: </b><b>10 </b>Â 3/4 Angus &amp; 1/4 Brangus 3-5 yr. old Cows, 3rd period. Bred Angus Bulls &amp; home-raised gentle set of cows</li>\n<li><b>ATA Farms: </b><b>6 </b>Â Blk Balancer bred heifers 1000lbs,2nd &amp; 3rd period. <b>10</b> Blk-Bwf 3-6 yr. old Cows, 2nd &amp; 3rd period <b>2 </b>Hereford 3 yr. old Cows, 2nd &amp; 3rd period.Â  Bred to Ade Polled Hereford Bulls.</li>\n<li><b>Arnold Farms Complete Dispersal: </b><b>75 </b>Â Blk 5-SS Cows w/ 200lbs calves at side. 45 Blk 5-SS Cows w/ 350lbs calves at side ( 3N1â€™s) 25 Red Angus/Rwf 5-7 yr. old Cows w/ 250lbs calves at side. 35 Blk 7-SS fall calving Cows, 2nd period. All cows have had Lepto, Blk. Leg, wormed/poured w/ LongRange wormer &amp; Multimin shot. All calves are sired by Blk-Sim Angus Bulls. Very nice set of cows that are gentle &amp; broke to a feed truck.</li>\n<li><b>Engelbrecht Farms: </b><b>7 </b>Â Blk Angus 2 yr. old Heifer pairs w/ spring calves at side. 7 Red Angus 2 yr. old Heifer pairs w/ spring calves at side</li>\n<li><b>Carl Farms: </b><b>10 </b>Â Blk 2-7 yr. old Cows w/ calves at side &amp; some 3N1s. <b>10</b> Blk 2-7 yr. old Cows bred Hereford bull.</li>\n<li><b>Brandt Farms Complete Dispersal: </b><b>25 </b>Â Blk 4-7 yr. old Cows <b>10</b> Red Angus 3-5 yr. old Fall calving Cows. Start calving Aug. 1st. Gentle set of cows, current on all shots &amp; bred back to Reg. Blk Sim-Angus Bulls.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-04-11 18:48:13','2022-04-11 18:48:13','',2209,'https://kingsvillelivestock.com/?p=4225',0,'revision','',0),(4226,2,'2022-04-11 18:57:02','2022-04-11 18:57:02','','April 22, 2022 Cow Sale','','inherit','closed','closed','','april-22-2022-cow-sale-2','','','2022-04-11 18:57:02','2022-04-11 18:57:02','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-22-2022-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(4227,2,'2022-04-11 18:57:26','2022-04-11 18:57:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-22-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4226\">April 22, 2022 Cow Sale</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-22-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4216\"></a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/doc00215820220406170713-1.pdf\" rel=\"attachment wp-att-4218\">Copy of Ellis Bull Papers</a></p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am</strong></span><span style=\"color: #000000;\"><strong> </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"></span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-04-11 18:57:26','2022-04-11 18:57:26','',639,'https://kingsvillelivestock.com/?p=4227',0,'revision','',0),(4228,2,'2022-04-11 18:58:14','2022-04-11 18:58:14','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-22-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4226\">April 22, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/doc00215820220406170713-1.pdf\" rel=\"attachment wp-att-4218\">Copy of Ellis Reg. Bull Papers</a></p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-04-11 18:58:14','2022-04-11 18:58:14','',1967,'https://kingsvillelivestock.com/?p=4228',0,'revision','',0),(4230,2,'2022-04-13 16:24:58','2022-04-13 16:24:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 12, 2022</strong> 2394 hd; Last week; 1693 hd; a year ago 1955. Steers &amp; heifers sold steady-$5 higher in spots.Slaughter cows &amp; bulls sold steady-$2 lower.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$233.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$219.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$166.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$149.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$141.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$137.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$122.50-$128.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$83.00 - $96.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $116.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">554lbs @$203.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">785lbs @$159.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">843lbs @$157.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">716lbs@$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 12, 2022 - Market Report','','publish','closed','open','','april-12-2022-market-report','','','2022-04-13 16:25:03','2022-04-13 16:25:03','',0,'https://kingsvillelivestock.com/?p=4230',0,'post','',0),(4232,2,'2022-04-13 16:24:58','2022-04-13 16:24:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 12, 2022</strong> 2394 hd; Last week; 1693 hd; a year ago 1955. Steers &amp; heifers sold steady-$5 higher in spots.Slaughter cows &amp; bulls sold steady-$2 lower.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$233.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$219.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$166.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$149.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$141.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$137.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$122.50-$128.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$83.00 - $96.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $116.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">554lbs @$203.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">785lbs @$159.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">843lbs @$157.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">716lbs@$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 12, 2022 - Market Report','','inherit','closed','closed','','4230-revision-v1','','','2022-04-13 16:24:58','2022-04-13 16:24:58','',4230,'https://kingsvillelivestock.com/?p=4232',0,'revision','',0),(4233,2,'2022-04-13 16:24:59','2022-04-13 16:24:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 12, 2022</strong> 2394 hd; Last week; 1693 hd; a year ago 1955. Steers &amp; heifers sold steady-$5 higher in spots.Slaughter cows &amp; bulls sold steady-$2 lower.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$233.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$219.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$166.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$149.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$141.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$137.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$122.50-$128.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$83.00 - $96.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $116.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">554lbs @$203.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">785lbs @$159.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">843lbs @$157.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">716lbs@$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 5, 2022 - Market Report','','inherit','closed','closed','','4230-revision-v1','','','2022-04-13 16:24:59','2022-04-13 16:24:59','',4230,'https://kingsvillelivestock.com/?p=4233',0,'revision','',0),(4235,2,'2022-04-13 16:25:03','2022-04-13 16:25:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 12, 2022</strong> 2394 hd; Last week; 1693 hd; a year ago 1955. Steers &amp; heifers sold steady-$5 higher in spots.Slaughter cows &amp; bulls sold steady-$2 lower.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$233.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$219.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$166.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140-$158.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$149.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$141.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$137.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$122.50-$128.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$83.00 - $96.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$71.00 - $82.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$58.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $116.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">554lbs @$203.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">785lbs @$159.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">843lbs @$157.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">716lbs@$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 12, 2022 - Market Report','','inherit','closed','closed','','4230-revision-v1','','','2022-04-13 16:25:03','2022-04-13 16:25:03','',4230,'https://kingsvillelivestock.com/?p=4235',0,'revision','',0),(4236,2,'2022-04-13 16:40:31','2022-04-13 16:40:31','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-22-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4226\">April 22, 2022 Cow Sale</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-22-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4216\"></a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/doc00215820220406170713-1.pdf\" rel=\"attachment wp-att-4218\">Copy of Ellis Bull Papers</a></p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am</strong></span><span style=\"color: #000000;\"><strong> </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"></span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-04-13 16:40:31','2022-04-13 16:40:31','',639,'https://kingsvillelivestock.com/?p=4236',0,'revision','',0),(4237,2,'2022-04-13 16:41:07','2022-04-13 16:41:07','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 15th @ 10:30 am<br /></strong>Wheeler Public Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-22-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4226\">April 22, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/doc00215820220406170713-1.pdf\" rel=\"attachment wp-att-4218\">Copy of Ellis Reg. Bull Papers</a></p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-04-13 16:41:07','2022-04-13 16:41:07','',1967,'https://kingsvillelivestock.com/?p=4237',0,'revision','',0),(4238,2,'2022-04-13 17:02:08','2022-04-13 17:02:08','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/TuesdayApril-12th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4224\">Tuesday,April 12th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Friday, April 22nd @ 5pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 5pm </i></b></p>\n<ul>\n<li><b>Bramer Farms: </b><b>2 </b>18 month Blk Angus Bulls 3/4 Angus, AI sired, &amp; 700lbs WW. Semen &amp; TrichTested</li>\n<li><b>Circle L Farms: </b><b>1 </b>2 yr. old Reg. Blk Gelv. Bull . Judd Ranch Genetics. <b>1 </b>2 yr. old Red Angus Bull Semen &amp; Trich Tested</li>\n<li><b>Double S Angus: </b><b>15 </b>2 yr. old Blk Angus Bulls. Nice set of 2 yr old bulls, all out of Reg. stock no papers. BWTs between 75lbs-81lbs, calving ease bulls. Semen &amp; Trich Tested</li>\n<li><b>Carl Farms: </b><b>1 </b>Â 4 yr. old Hereford Bull</li>\n<li><b>Ellis Farms: </b><b>5 </b>18 month old Reg. Red Angus Bulls. Semen &amp; Trich Tested</li>\n<li><b>Critchfield Farms: 8 </b>15-18 month old Reg. Angus Bulls.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. oldÂ  Reg. Angus , AI sired Connealy Hard Rock Bull. Has BWT of 73lbs, WW of 798lbs, &amp; YW of 1268lbs. Semen &amp; Trich Tested</li>\n<li><b>Smith Farms: </b><b>1 </b>20 month oldÂ  Sim-Angus Bull. <b>1 </b>20 month old Purebred Sim. Bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>VanMeter Farms: </b><b>10 </b>Blk 5-SS Cows w/ 250lbs calves at side. <b>10</b> Blk 5-SS Cows, 2nd &amp; 3rd period</li>\n<li><b>Anderson Farms: </b><b>15 </b>Blk 3-5 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>David Farms: </b><b>30 </b>Blk Angus 3-6 yr old Cows, 3rd period. Bred Blk Gelv. Bulls &amp; had all shots wormed/poured.</li>\n<li><b>Williams Farms: </b><b>30 </b>Blk Blk Angous 3-4 yr. old Cows, 2nd period. 35 Blk Angus 5-6 yr. old Cows, 2nd period. All fall calving cows &amp; start calving Sept. 1st bred to Angus &amp; Sim-Angus Bulls.</li>\n<li><b>Raft Farms: </b><b>10 </b>Â 3/4 Angus &amp; 1/4 Brangus 3-5 yr. old Cows, 3rd period. Bred Angus Bulls &amp; home-raised gentle set of cows</li>\n<li><b>ATA Farms: </b><b>6 </b>Â Blk Balancer bred heifers 1000lbs,2nd &amp; 3rd period. <b>10</b> Blk-Bwf 3-6 yr. old Cows, 2nd &amp; 3rd period <b>2 </b>Hereford 3 yr. old Cows, 2nd &amp; 3rd period.Â  Bred to Ade Polled Hereford Bulls.</li>\n<li><b>Arnold Farms Complete Dispersal: </b><b>75 </b>Â Blk 5-SS Cows w/ 200lbs calves at side. 45 Blk 5-SS Cows w/ 350lbs calves at side ( 3N1â€™s) 25 Red Angus/Rwf 5-7 yr. old Cows w/ 250lbs calves at side. 35 Blk 7-SS fall calving Cows, 2nd period. All cows have had Lepto, Blk. Leg, wormed/poured w/ LongRange wormer &amp; Multimin shot. All calves are sired by Blk-Sim Angus Bulls. Very nice set of cows that are gentle &amp; broke to a feed truck.</li>\n<li><b>Engelbrecht Farms: </b><b>7 </b>Â Blk Angus 2 yr. old Heifer pairs w/ spring calves at side. 7 Red Angus 2 yr. old Heifer pairs w/ spring calves at side</li>\n<li><b>Carl Farms: </b><b>10 </b>Â Blk 2-7 yr. old Cows w/ calves at side &amp; some 3N1s. <b>10</b> Blk 2-7 yr. old Cows bred Hereford bull.</li>\n<li><b>Brandt Farms Complete Dispersal: </b><b>25 </b>Â Blk 4-7 yr. old Cows <b>10</b> Red Angus 3-5 yr. old Fall calving Cows. Start calving Aug. 1st. Gentle set of cows, current on all shots &amp; bred back to Reg. Blk Sim-Angus Bulls.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-04-13 17:02:08','2022-04-13 17:02:08','',2209,'https://kingsvillelivestock.com/?p=4238',0,'revision','',0),(4239,2,'2022-04-18 15:39:14','2022-04-18 15:39:14','','April 22, 2022 Cow Sale','','inherit','closed','closed','','april-22-2022-cow-sale-3','','','2022-04-18 15:39:14','2022-04-18 15:39:14','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-22-2022-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(4240,2,'2022-04-18 15:39:24','2022-04-18 15:39:24','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-22-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4239\">April 22, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/doc00215820220406170713-1.pdf\" rel=\"attachment wp-att-4218\">Copy of Ellis Bull Papers</a></p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am</strong></span><span style=\"color: #000000;\"><strong> </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"></span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-04-18 15:39:24','2022-04-18 15:39:24','',639,'https://kingsvillelivestock.com/?p=4240',0,'revision','',0),(4241,2,'2022-04-18 15:40:35','2022-04-18 15:40:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April.22nd @ 5:00 pm<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-22-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4239\">April 22, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/doc00215820220406170713-1.pdf\" rel=\"attachment wp-att-4218\">Copy of Ellis Reg. Bull Papers</a></p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-04-18 15:40:35','2022-04-18 15:40:35','',1967,'https://kingsvillelivestock.com/?p=4241',0,'revision','',0),(4242,2,'2022-04-18 15:41:49','2022-04-18 15:41:49','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/Packingham-Auction-April-30th-Freeman-1.pdf\" rel=\"attachment wp-att-4222\">Packingham Auction Saturday, April 30th-9am-Freeman,MO</a></p>\n<p><a href=\"https://photos.app.goo.gl/UrPvMFao3Pidk4fy7\">Packingham Photos </a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-04-18 15:41:49','2022-04-18 15:41:49','',1450,'https://kingsvillelivestock.com/?p=4242',0,'revision','',0),(4243,2,'2022-04-18 15:42:44','2022-04-18 15:42:44','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/TuesdayApril-12th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4224\">Tuesday,April 12th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Friday, April 22nd @ 5pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 5pm </i></b></p>\n<ul>\n<li><b>Bramer Farms: </b><b>2 </b>18 month Blk Angus Bulls 3/4 Angus, AI sired, &amp; 700lbs WW. Semen &amp; TrichTested</li>\n<li><b>Circle L Farms: </b><b>1 </b>2 yr. old Reg. Blk Gelv. Bull . Judd Ranch Genetics. <b>1 </b>2 yr. old Red Angus Bull Semen &amp; Trich Tested</li>\n<li><b>Double S Angus: </b><b>15 </b>2 yr. old Blk Angus Bulls. Nice set of 2 yr old bulls, all out of Reg. stock no papers. BWTs between 75lbs-81lbs, calving ease bulls. Semen &amp; Trich Tested</li>\n<li><b>Carl Farms: </b><b>1 </b>Â 4 yr. old Hereford Bull</li>\n<li><b>Ellis Farms: </b><b>5 </b>18 month old Reg. Red Angus Bulls. Semen &amp; Trich Tested</li>\n<li><b>Critchfield Farms: 8 </b>15-18 month old Reg. Angus Bulls.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. oldÂ  Reg. Angus , AI sired Connealy Hard Rock Bull. Has BWT of 73lbs, WW of 798lbs, &amp; YW of 1268lbs. Semen &amp; Trich Tested</li>\n<li><b>Smith Farms: </b><b>1 </b>20 month oldÂ  Sim-Angus Bull. <b>1 </b>20 month old Purebred Sim. Bull</li>\n<li><b>Jenkins Farms: </b><b>6 </b>18 month oldÂ  Blk Balancer Bulls. Semen &amp; Trich Tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>VanMeter Farms: </b><b>10 </b>Blk 5-SS Cows w/ 250lbs calves at side. <b>10</b> Blk 5-SS Cows, 2nd &amp; 3rd period</li>\n<li><b>Anderson Farms: </b><b>15 </b>Blk 3-5 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>David Farms: </b><b>30 </b>Blk Angus 3-6 yr old Cows, 3rd period. Bred Blk Gelv. Bulls &amp; had all shots wormed/poured.</li>\n<li><b>Williams Farms: </b><b>30 </b>Blk Blk Angous 3-4 yr. old Cows, 2nd period. 35 Blk Angus 5-6 yr. old Cows, 2nd period. All fall calving cows &amp; start calving Sept. 1st bred to Angus &amp; Sim-Angus Bulls.</li>\n<li><b>Raft Farms: </b><b>10 </b>Â 3/4 Angus &amp; 1/4 Brangus 3-5 yr. old Cows, 3rd period. Bred Angus Bulls &amp; home-raised gentle set of cows</li>\n<li><b>ATA Farms: </b><b>6 </b>Â Blk Balancer bred heifers 1000lbs,2nd &amp; 3rd period. <b>10</b> Blk-Bwf 3-6 yr. old Cows, 2nd &amp; 3rd period <b>2 </b>Hereford 3 yr. old Cows, 2nd &amp; 3rd period.Â  Bred to Ade Polled Hereford Bulls.</li>\n<li><b>Arnold Farms Complete Dispersal: </b><b>75 </b>Â Blk 5-SS Cows w/ 200lbs calves at side. 45 Blk 5-SS Cows w/ 350lbs calves at side ( 3N1â€™s) 25 Red Angus/Rwf 5-7 yr. old Cows w/ 250lbs calves at side. 35 Blk 7-SS fall calving Cows, 2nd period. All cows have had Lepto, Blk. Leg, wormed/poured w/ LongRange wormer &amp; Multimin shot. All calves are sired by Blk-Sim Angus Bulls. Very nice set of cows that are gentle &amp; broke to a feed truck.</li>\n<li><b>Engelbrecht Farms: </b><b>7 </b>Â Blk Angus 2 yr. old Heifer pairs w/ spring calves at side. 7 Red Angus 2 yr. old Heifer pairs w/ spring calves at side</li>\n<li><b>Carl Farms: </b><b>10 </b>Â Blk 2-7 yr. old Cows w/ calves at side &amp; some 3N1s. <b>10</b> Blk 2-7 yr. old Cows bred Hereford bull.</li>\n<li><b>Brandt Farms Complete Dispersal: </b><b>25 </b>Â Blk 4-7 yr. old Cows <b>10</b> Red Angus 3-5 yr. old Fall calving Cows. Start calving Aug. 1st. Gentle set of cows, current on all shots &amp; bred back to Reg. Blk Sim-Angus Bulls.</li>\n<li><b>Nuelle Farms: </b><b>10 </b>Â Fancy Red Angus 4-5 yr. old Cows w/ 200lbs calves at side.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-04-18 15:42:44','2022-04-18 15:42:44','',2209,'https://kingsvillelivestock.com/?p=4243',0,'revision','',0),(4244,2,'2022-04-18 18:14:57','2022-04-18 18:14:57','','Tuesday,April 19th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayapril-19th-feeder-cattle-consignments','','','2022-04-18 18:14:57','2022-04-18 18:14:57','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/04/TuesdayApril-19th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4245,2,'2022-04-18 18:15:05','2022-04-18 18:15:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/TuesdayApril-19th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4244\">Tuesday,April 19th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Friday, April 22nd @ 5pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 5pm </i></b></p>\n<ul>\n<li><b>Bramer Farms: </b><b>2 </b>18 month Blk Angus Bulls 3/4 Angus, AI sired, &amp; 700lbs WW. Semen &amp; TrichTested</li>\n<li><b>Circle L Farms: </b><b>1 </b>2 yr. old Reg. Blk Gelv. Bull . Judd Ranch Genetics. <b>1 </b>2 yr. old Red Angus Bull Semen &amp; Trich Tested</li>\n<li><b>Double S Angus: </b><b>15 </b>2 yr. old Blk Angus Bulls. Nice set of 2 yr old bulls, all out of Reg. stock no papers. BWTs between 75lbs-81lbs, calving ease bulls. Semen &amp; Trich Tested</li>\n<li><b>Carl Farms: </b><b>1 </b>Â 4 yr. old Hereford Bull</li>\n<li><b>Ellis Farms: </b><b>5 </b>18 month old Reg. Red Angus Bulls. Semen &amp; Trich Tested</li>\n<li><b>Critchfield Farms: 8 </b>15-18 month old Reg. Angus Bulls.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. oldÂ  Reg. Angus , AI sired Connealy Hard Rock Bull. Has BWT of 73lbs, WW of 798lbs, &amp; YW of 1268lbs. Semen &amp; Trich Tested</li>\n<li><b>Smith Farms: </b><b>1 </b>20 month oldÂ  Sim-Angus Bull. <b>1 </b>20 month old Purebred Sim. Bull</li>\n<li><b>Jenkins Farms: </b><b>6 </b>18 month oldÂ  Blk Balancer Bulls. Semen &amp; Trich Tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>VanMeter Farms: </b><b>10 </b>Blk 5-SS Cows w/ 250lbs calves at side. <b>10</b> Blk 5-SS Cows, 2nd &amp; 3rd period</li>\n<li><b>Anderson Farms: </b><b>15 </b>Blk 3-5 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>David Farms: </b><b>30 </b>Blk Angus 3-6 yr old Cows, 3rd period. Bred Blk Gelv. Bulls &amp; had all shots wormed/poured.</li>\n<li><b>Williams Farms: </b><b>30 </b>Blk Blk Angous 3-4 yr. old Cows, 2nd period. 35 Blk Angus 5-6 yr. old Cows, 2nd period. All fall calving cows &amp; start calving Sept. 1st bred to Angus &amp; Sim-Angus Bulls.</li>\n<li><b>Raft Farms: </b><b>10 </b>Â 3/4 Angus &amp; 1/4 Brangus 3-5 yr. old Cows, 3rd period. Bred Angus Bulls &amp; home-raised gentle set of cows</li>\n<li><b>ATA Farms: </b><b>6 </b>Â Blk Balancer bred heifers 1000lbs,2nd &amp; 3rd period. <b>10</b> Blk-Bwf 3-6 yr. old Cows, 2nd &amp; 3rd period <b>2 </b>Hereford 3 yr. old Cows, 2nd &amp; 3rd period.Â  Bred to Ade Polled Hereford Bulls.</li>\n<li><b>Arnold Farms Complete Dispersal: </b><b>75 </b>Â Blk 5-SS Cows w/ 200lbs calves at side. 45 Blk 5-SS Cows w/ 350lbs calves at side ( 3N1â€™s) 25 Red Angus/Rwf 5-7 yr. old Cows w/ 250lbs calves at side. 35 Blk 7-SS fall calving Cows, 2nd period. All cows have had Lepto, Blk. Leg, wormed/poured w/ LongRange wormer &amp; Multimin shot. All calves are sired by Blk-Sim Angus Bulls. Very nice set of cows that are gentle &amp; broke to a feed truck.</li>\n<li><b>Engelbrecht Farms: </b><b>7 </b>Â Blk Angus 2 yr. old Heifer pairs w/ spring calves at side. 7 Red Angus 2 yr. old Heifer pairs w/ spring calves at side</li>\n<li><b>Carl Farms: </b><b>10 </b>Â Blk 2-7 yr. old Cows w/ calves at side &amp; some 3N1s. <b>10</b> Blk 2-7 yr. old Cows bred Hereford bull.</li>\n<li><b>Brandt Farms Complete Dispersal: </b><b>25 </b>Â Blk 4-7 yr. old Cows <b>10</b> Red Angus 3-5 yr. old Fall calving Cows. Start calving Aug. 1st. Gentle set of cows, current on all shots &amp; bred back to Reg. Blk Sim-Angus Bulls.</li>\n<li><b>Nuelle Farms: </b><b>10 </b>Â Fancy Red Angus 4-5 yr. old Cows w/ 200lbs calves at side.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-04-18 18:15:05','2022-04-18 18:15:05','',2209,'https://kingsvillelivestock.com/?p=4245',0,'revision','',0),(4246,2,'2022-04-20 04:08:04','2022-04-20 04:08:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April.22nd @ 5:00 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-22-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4239\">April 22, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/doc00215820220406170713-1.pdf\" rel=\"attachment wp-att-4218\">Copy of Ellis Bull Papers</a></p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am</strong></span><span style=\"color: #000000;\"><strong> </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"></span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-04-20 04:08:04','2022-04-20 04:08:04','',639,'https://kingsvillelivestock.com/?p=4246',0,'revision','',0),(4247,2,'2022-04-20 04:08:49','2022-04-20 04:08:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><strong>April.22nd @ 5:00 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/April-22-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4239\">April 22, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/doc00215820220406170713-1.pdf\" rel=\"attachment wp-att-4218\">Copy of Ellis Reg. Bull Papers</a></p>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-04-20 04:08:49','2022-04-20 04:08:49','',1967,'https://kingsvillelivestock.com/?p=4247',0,'revision','',0),(4248,2,'2022-04-20 16:32:18','2022-04-20 16:32:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 19, 2022</strong> 2365 hd; Last week; 2394 hd; a year ago 2286. Feeders sold steady-$5 higher w/ good buyer activity. Slaughter cows &amp; bulls sold fully steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$226.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$145.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$141.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$146.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$108.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$81.00 - $97.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $64.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">683lbs @$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">713lbs @$173.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">883lbs @$152.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">609lbs@$170.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">706lbs@$159.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">711lbs@$157.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">750lbs@$155.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 19, 2022 - Market Report','','publish','closed','open','','april-19-2022-market-report','','','2022-04-20 16:32:22','2022-04-20 16:32:22','',0,'https://kingsvillelivestock.com/?p=4248',0,'post','',0),(4250,2,'2022-04-20 16:32:18','2022-04-20 16:32:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 19, 2022</strong> 2365 hd; Last week; 2394 hd; a year ago 2286. Feeders sold steady-$5 higher w/ good buyer activity. Slaughter cows &amp; bulls sold fully steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$226.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$145.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$141.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$146.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$108.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$81.00 - $97.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $64.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">683lbs @$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">713lbs @$173.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">883lbs @$152.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">609lbs@$170.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">706lbs@$159.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">711lbs@$157.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">750lbs@$155.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 19, 2022 - Market Report','','inherit','closed','closed','','4248-revision-v1','','','2022-04-20 16:32:18','2022-04-20 16:32:18','',4248,'https://kingsvillelivestock.com/?p=4250',0,'revision','',0),(4251,2,'2022-04-20 16:32:19','2022-04-20 16:32:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 19, 2022</strong> 2365 hd; Last week; 2394 hd; a year ago 2286. Feeders sold steady-$5 higher w/ good buyer activity. Slaughter cows &amp; bulls sold fully steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$226.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$145.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$141.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$146.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$108.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$81.00 - $97.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $64.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">683lbs @$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">713lbs @$173.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">883lbs @$152.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">609lbs@$170.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">706lbs@$159.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">711lbs@$157.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">750lbs@$155.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 12, 2022 - Market Report','','inherit','closed','closed','','4248-revision-v1','','','2022-04-20 16:32:19','2022-04-20 16:32:19','',4248,'https://kingsvillelivestock.com/?p=4251',0,'revision','',0),(4252,2,'2022-04-20 16:32:22','2022-04-20 16:32:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 19, 2022</strong> 2365 hd; Last week; 2394 hd; a year ago 2286. Feeders sold steady-$5 higher w/ good buyer activity. Slaughter cows &amp; bulls sold fully steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$226.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$145.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$141.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$146.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$108.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$81.00 - $97.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $64.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">683lbs @$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">713lbs @$173.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">883lbs @$152.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">609lbs@$170.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">706lbs@$159.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">711lbs@$157.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">750lbs@$155.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 19, 2022 - Market Report','','inherit','closed','closed','','4248-revision-v1','','','2022-04-20 16:32:22','2022-04-20 16:32:22','',4248,'https://kingsvillelivestock.com/?p=4252',0,'revision','',0),(4253,2,'2022-04-20 17:44:38','2022-04-20 17:44:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/TuesdayApril-19th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4244\">Tuesday,April 19th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Friday, April 22nd @ 5pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 5pm </i></b></p>\n<ul>\n<li><b>Bramer Farms: </b><b>2 </b>18 month Blk Angus Bulls 3/4 Angus, AI sired, &amp; 700lbs WW. Semen &amp; TrichTested</li>\n<li><b>Circle L Farms: </b><b>1 </b>2 yr. old Reg. Blk Gelv. Bull . Judd Ranch Genetics. <b>1 </b>2 yr. old Red Angus Bull Semen &amp; Trich Tested</li>\n<li><b>Double S Angus: </b><b>15 </b>2 yr. old Blk Angus Bulls. Nice set of 2 yr old bulls, all out of Reg. stock no papers. BWTs between 75lbs-81lbs, calving ease bulls. Semen &amp; Trich Tested</li>\n<li><b>Carl Farms: </b><b>1 </b>Â 4 yr. old Hereford Bull</li>\n<li><b>Ellis Farms: </b><b>5 </b>18 month old Reg. Red Angus Bulls. Semen &amp; Trich Tested</li>\n<li><b>Critchfield Farms: 8 </b>15-18 month old Reg. Angus Bulls.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. oldÂ  Reg. Angus , AI sired Connealy Hard Rock Bull. Has BWT of 73lbs, WW of 798lbs, &amp; YW of 1268lbs. Semen &amp; Trich Tested</li>\n<li><b>Jenkins Farms: </b><b>6 </b>18 month oldÂ  Blk Balancer Bulls. Semen &amp; Trich Tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>VanMeter Farms: </b><b>10 </b>Blk 5-SS Cows w/ 250lbs calves at side. <b>10</b> Blk 5-SS Cows, 2nd &amp; 3rd period</li>\n<li><b>Anderson Farms: </b><b>15 </b>Blk 3-5 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>David Farms: </b><b>30 </b>Blk Angus 3-6 yr old Cows, 3rd period. Bred Blk Gelv. Bulls &amp; had all shots wormed/poured.</li>\n<li><b>Williams Farms: </b><b>30 </b>Blk Blk Angous 3-4 yr. old Cows, 2nd period. 35 Blk Angus 5-6 yr. old Cows, 2nd period. All fall calving cows &amp; start calving Sept. 1st bred to Angus &amp; Sim-Angus Bulls.</li>\n<li><b>Raft Farms: </b><b>10 </b>Â 3/4 Angus &amp; 1/4 Brangus 3-5 yr. old Cows, 3rd period. Bred Angus Bulls &amp; home-raised gentle set of cows</li>\n<li><b>ATA Farms: </b><b>6 </b>Â Blk Balancer bred heifers 1000lbs,2nd &amp; 3rd period. <b>10</b> Blk-Bwf 3-6 yr. old Cows, 2nd &amp; 3rd period <b>2 </b>Hereford 3 yr. old Cows, 2nd &amp; 3rd period.Â  Bred to Ade Polled Hereford Bulls.</li>\n<li><b>Arnold Farms Complete Dispersal: </b><b>75 </b>Â Blk 5-SS Cows w/ 200lbs calves at side. 45 Blk 5-SS Cows w/ 350lbs calves at side ( 3N1â€™s) 25 Red Angus/Rwf 5-7 yr. old Cows w/ 250lbs calves at side. 35 Blk 7-SS fall calving Cows, 2nd period. All cows have had Lepto, Blk. Leg, wormed/poured w/ LongRange wormer &amp; Multimin shot. All calves are sired by Blk-Sim Angus Bulls. Very nice set of cows that are gentle &amp; broke to a feed truck.</li>\n<li><b>Engelbrecht Farms: </b><b>7 </b>Â Blk Angus 2 yr. old Heifer pairs w/ spring calves at side. 7 Red Angus 2 yr. old Heifer pairs w/ spring calves at side</li>\n<li><b>Carl Farms: </b><b>10 </b>Â Blk 2-7 yr. old Cows w/ calves at side &amp; some 3N1s. <b>10</b> Blk 2-7 yr. old Cows bred Hereford bull.</li>\n<li><b>Brandt Farms Complete Dispersal: </b><b>25 </b>Â Blk 4-7 yr. old Cows <b>10</b> Red Angus 3-5 yr. old Fall calving Cows. Start calving Aug. 1st. Gentle set of cows, current on all shots &amp; bred back to Reg. Blk Sim-Angus Bulls.</li>\n<li><b>Nuelle Farms: </b><b>10 </b>Â Fancy Red Angus 4-5 yr. old Cows w/ 200lbs calves at side.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-04-20 17:44:38','2022-04-20 17:44:38','',2209,'https://kingsvillelivestock.com/?p=4253',0,'revision','',0),(4255,2,'2022-04-25 15:03:53','2022-04-25 15:03:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am</strong></span><span style=\"color: #000000;\"><strong> </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"></span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-04-25 15:03:53','2022-04-25 15:03:53','',639,'https://kingsvillelivestock.com/?p=4255',0,'revision','',0),(4256,2,'2022-04-25 15:04:56','2022-04-25 15:04:56','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>April. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-04-25 15:04:56','2022-04-25 15:04:56','',1967,'https://kingsvillelivestock.com/?p=4256',0,'revision','',0),(4257,2,'2022-04-25 15:07:45','2022-04-25 15:07:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.1\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/TuesdayApril-19th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4244\">Tuesday,April 19th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Saturday, May 7th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Francy Farms: </b><b>1 </b>2 yr. old Red Angus Bull</li>\n<li><b>Seedstock Plus: </b><b>6Â  </b>18 month old Blk Balancer &amp; Gelv. Bulls. Semen &amp; Trich Tested &amp; ready to be turned out.</li>\n<li><b>Evan Farms: </b><b>6Â  </b>2 yr. old Blk. PurebredÂ  Angus Bulls. Semen &amp; Trich Tested &amp; ready to be turned out. Nice set of 2 yr. old bulls.</li>\n<li><b>Beeman Farms: </b><b>2 </b>1 yr. old Blk Angus Bulls <b>1 </b>18 month old Blk Angus BullÂ </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>30 </b>Blk-Bwf 5-SS Cows w/ 400lbs calves at side 3N1â€™s.Bred back to Blk. Angus Bulls. Broke to feed truck, nice set of of 3N1 pairs. Calves have been cut &amp; 1rd shots.</li>\n<li><b>Snyder Farms: </b><b>10 </b>Red Angus 4 yr. old cows w/ 350lbs calves at side 3N1â€™s. Cows running back w/ Reg. Angus Bulls. Calves been cut &amp; 1rd shots. 10 Red Angus Cows,2nd &amp; 3rd period. Bred Reg. Angus Bulls. Nice, gentle set of cows will follow feed truck &amp; all shots.Â </li>\n<li><b>Eissler Farms: </b><b>15 </b>Blk-Bwf 2 yr. old heifers w/ spring calves at side. Ear tagged to match, big stout set of home raised heifers</li>\n<li><b>Conrow Farms: </b><b>16 </b>Blk Angus 2 yr. old heifers w/ spring calves at side. <b>3 </b>Red Angus 2 yr. old heifers w/ spring calves at side. Gentle, good quality heifers that sell open &amp; ear tagged to match.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-04-25 15:07:45','2022-04-25 15:07:45','',2209,'https://kingsvillelivestock.com/?p=4257',0,'revision','',0),(4258,2,'2022-04-25 15:47:00','2022-04-25 15:47:00','','Tuesday,April 26th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayapril-26th-feeder-cattle-consignments','','','2022-04-25 15:47:00','2022-04-25 15:47:00','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/04/TuesdayApril-26th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4259,2,'2022-04-25 15:47:07','2022-04-25 15:47:07','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/TuesdayApril-26th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4258\">Tuesday,April 26th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Saturday, May 7th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Francy Farms: </b><b>1 </b>2 yr. old Red Angus Bull</li>\n<li><b>Seedstock Plus: </b><b>6Â  </b>18 month old Blk Balancer &amp; Gelv. Bulls. Semen &amp; Trich Tested &amp; ready to be turned out.</li>\n<li><b>Evan Farms: </b><b>6Â  </b>2 yr. old Blk. PurebredÂ  Angus Bulls. Semen &amp; Trich Tested &amp; ready to be turned out. Nice set of 2 yr. old bulls.</li>\n<li><b>Beeman Farms: </b><b>2 </b>1 yr. old Blk Angus Bulls <b>1 </b>18 month old Blk Angus BullÂ </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>30 </b>Blk-Bwf 5-SS Cows w/ 400lbs calves at side 3N1â€™s.Bred back to Blk. Angus Bulls. Broke to feed truck, nice set of of 3N1 pairs. Calves have been cut &amp; 1rd shots.</li>\n<li><b>Snyder Farms: </b><b>10 </b>Red Angus 4 yr. old cows w/ 350lbs calves at side 3N1â€™s. Cows running back w/ Reg. Angus Bulls. Calves been cut &amp; 1rd shots. 10 Red Angus Cows,2nd &amp; 3rd period. Bred Reg. Angus Bulls. Nice, gentle set of cows will follow feed truck &amp; all shots.Â </li>\n<li><b>Eissler Farms: </b><b>15 </b>Blk-Bwf 2 yr. old heifers w/ spring calves at side. Ear tagged to match, big stout set of home raised heifers</li>\n<li><b>Conrow Farms: </b><b>16 </b>Blk Angus 2 yr. old heifers w/ spring calves at side. <b>3 </b>Red Angus 2 yr. old heifers w/ spring calves at side. Gentle, good quality heifers that sell open &amp; ear tagged to match.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-04-25 15:47:07','2022-04-25 15:47:07','',2209,'https://kingsvillelivestock.com/?p=4259',0,'revision','',0),(4260,2,'2022-04-27 05:49:24','2022-04-27 05:49:24','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span><span style=\"color: #000000;\"></span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-04-27 05:49:24','2022-04-27 05:49:24','',639,'https://kingsvillelivestock.com/?p=4260',0,'revision','',0),(4261,2,'2022-04-27 05:49:53','2022-04-27 05:49:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-04-27 05:49:53','2022-04-27 05:49:53','',1967,'https://kingsvillelivestock.com/?p=4261',0,'revision','',0),(4262,2,'2022-04-27 16:24:26','2022-04-27 16:24:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 26, 2022</strong> 2894 hd; Last week; 2365 hd; a year ago 1654. Steers &amp; heifers sold fully steady w/ 850-900lbs steers selling $3-$6 higher as buyers were very active.Â  Slaughter cows &amp; bulls sold $2-$5 lower.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$169.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$159.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$146.35</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$149.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$147.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$117.00-$129.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$80.00 - $94.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">746lbs @$169.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">790lbs @$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">885lbs @$155.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161.031px; height: 23px;\">891lbs@$159.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">895lbs@$149.10</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">943lbs@$146.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">680lbs@$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 26, 2022 - Market Report','','publish','closed','open','','april-26-2022-market-report','','','2022-04-27 16:24:30','2022-04-27 16:24:30','',0,'https://kingsvillelivestock.com/?p=4262',0,'post','',0),(4264,2,'2022-04-27 16:24:26','2022-04-27 16:24:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 26, 2022</strong> 2894 hd; Last week; 2365 hd; a year ago 1654. Steers &amp; heifers sold fully steady w/ 850-900lbs steers selling $3-$6 higher as buyers were very active.Â  Slaughter cows &amp; bulls sold $2-$5 lower.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$169.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$159.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$146.35</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$149.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$147.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$117.00-$129.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$80.00 - $94.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">746lbs @$169.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">790lbs @$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">885lbs @$155.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161.031px; height: 23px;\">891lbs@$159.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">895lbs@$149.10</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">943lbs@$146.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">680lbs@$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 26, 2022 - Market Report','','inherit','closed','closed','','4262-revision-v1','','','2022-04-27 16:24:26','2022-04-27 16:24:26','',4262,'https://kingsvillelivestock.com/?p=4264',0,'revision','',0),(4265,2,'2022-04-27 16:24:26','2022-04-27 16:24:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 26, 2022</strong> 2894 hd; Last week; 2365 hd; a year ago 1654. Steers &amp; heifers sold fully steady w/ 850-900lbs steers selling $3-$6 higher as buyers were very active.Â  Slaughter cows &amp; bulls sold $2-$5 lower.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$169.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$159.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$146.35</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$149.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$147.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$117.00-$129.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$80.00 - $94.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">746lbs @$169.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">790lbs @$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">885lbs @$155.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161.031px; height: 23px;\">891lbs@$159.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">895lbs@$149.10</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">943lbs@$146.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">680lbs@$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 19, 2022 - Market Report','','inherit','closed','closed','','4262-revision-v1','','','2022-04-27 16:24:26','2022-04-27 16:24:26','',4262,'https://kingsvillelivestock.com/?p=4265',0,'revision','',0),(4266,2,'2022-04-27 16:24:30','2022-04-27 16:24:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 26, 2022</strong> 2894 hd; Last week; 2365 hd; a year ago 1654. Steers &amp; heifers sold fully steady w/ 850-900lbs steers selling $3-$6 higher as buyers were very active.Â  Slaughter cows &amp; bulls sold $2-$5 lower.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$169.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$159.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$146.35</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$136.00-$149.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$147.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$117.00-$129.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$80.00 - $94.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">746lbs @$169.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">790lbs @$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">885lbs @$155.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 161.031px; height: 23px;\">891lbs@$159.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">895lbs@$149.10</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">943lbs@$146.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">680lbs@$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 26, 2022 - Market Report','','inherit','closed','closed','','4262-revision-v1','','','2022-04-27 16:24:30','2022-04-27 16:24:30','',4262,'https://kingsvillelivestock.com/?p=4266',0,'revision','',0),(4267,2,'2022-04-27 16:45:10','2022-04-27 16:45:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/TuesdayApril-26th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4258\">Tuesday,April 26th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Saturday, May 7th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Francy Farms: </b><b>1 </b>2 yr. old Red Angus Bull</li>\n<li><b>Seedstock Plus: </b><b>6Â  </b>18 month old Blk Balancer &amp; Gelv. Bulls. Semen &amp; Trich Tested &amp; ready to be turned out.</li>\n<li><b>Evan Farms: </b><b>6Â  </b>2 yr. old Blk. PurebredÂ  Angus Bulls. Semen &amp; Trich Tested &amp; ready to be turned out. Nice set of 2 yr. old bulls.</li>\n<li><b>Beeman Farms: </b><b>2 </b>1 yr. old Blk Angus Bulls <b>1 </b>18 month old Blk Angus Bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>30 </b>Blk-Bwf 5-SS Cows w/ 400lbs calves at side 3N1â€™s.Bred back to Blk. Angus Bulls. Broke to feed truck, nice set of of 3N1 pairs. Calves have been cut &amp; 1rd shots.</li>\n<li><b>Snyder Farms: </b><b>10 </b>Red Angus 4 yr. old cows w/ 350lbs calves at side 3N1â€™s. Cows running back w/ Reg. Angus Bulls. Calves been cut &amp; 1rd shots. 10 Red Angus Cows,2nd &amp; 3rd period. Bred Reg. Angus Bulls. Nice, gentle set of cows will follow feed truck &amp; all shots.</li>\n<li><b>Eissler Farms: </b><b>15 </b>Blk-Bwf 2 yr. old heifers w/ spring calves at side. Ear tagged to match, big stout set of home raised heifers</li>\n<li><b>Conrow Farms: </b><b>16 </b>Blk Angus 2 yr. old heifers w/ spring calves at side. <b>3 </b>Red Angus 2 yr. old heifers w/ spring calves at side. Gentle, good quality heifers that sell open &amp; ear tagged to match.</li>\n<li><b>Thompson Farms: </b><b>40 </b>Blk 3-6 yr. old Cows, 3rd period. Bred Blk. Balancer bulls</li>\n<li><b>Cartwright Farms: </b><b>35 </b>Blk 3-4 yr. old Cows, 2nd period. <b>35</b> Blk 5-6 yr. old Cows, 2nd period. Bred Angus bulls</li>\n<li><b>Lewis Farms: </b><b>17 </b>Blk-Bwf 3-6 yr. old Cows w/ 250lbs calves at side.Â </li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-04-27 16:45:10','2022-04-27 16:45:10','',2209,'https://kingsvillelivestock.com/?p=4267',0,'revision','',0),(4268,2,'2022-04-27 16:46:09','2022-04-27 16:46:09','','May 7, 2022 Cow Sale','','inherit','closed','closed','','may-7-2022-cow-sale','','','2022-04-27 16:46:09','2022-04-27 16:46:09','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/04/May-7-2022-Cow-Sale.pdf',0,'attachment','application/pdf',0),(4269,2,'2022-04-27 16:46:18','2022-04-27 16:46:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span><span style=\"color: #000000;\"></span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/May-7-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4268\">May 7, 2022 Cow Sale</a></p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-04-27 16:46:18','2022-04-27 16:46:18','',639,'https://kingsvillelivestock.com/?p=4269',0,'revision','',0),(4270,2,'2022-04-27 16:46:54','2022-04-27 16:46:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/May-7-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4268\">May 7, 2022 Cow Sale</a></p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-04-27 16:46:54','2022-04-27 16:46:54','',1967,'https://kingsvillelivestock.com/?p=4270',0,'revision','',0),(4271,2,'2022-04-27 16:58:00','2022-04-27 16:58:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/TuesdayApril-26th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4258\">Tuesday,April 26th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Saturday, May 7th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Francy Farms: </b><b>1 </b>2 yr. old Red Angus Bull</li>\n<li><b>Seedstock Plus: </b><b>6Â  </b>18 month old Blk Balancer &amp; Gelv. Bulls. Semen &amp; Trich Tested &amp; ready to be turned out.</li>\n<li><b>Evan Farms: </b><b>6Â  </b>2 yr. old Blk. PurebredÂ  Angus Bulls. Semen &amp; Trich Tested &amp; ready to be turned out. Nice set of 2 yr. old bulls.</li>\n<li><b>Beeman Farms: </b><b>2 </b>1 yr. old Blk Angus Bulls <b>1 </b>18 month old Blk Angus Bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>30 </b>Blk-Bwf 5-SS Cows w/ 400lbs calves at side 3N1â€™s.Bred back to Blk. Angus Bulls. Broke to feed truck, nice set of of 3N1 pairs. Calves have been cut &amp; 1rd shots.</li>\n<li><b>Snyder Farms: </b><b>10 </b>Red Angus 4 yr. old cows w/ 350lbs calves at side 3N1â€™s. Cows running back w/ Reg. Angus Bulls. Calves been cut &amp; 1rd shots. 10 Red Angus Cows,2nd &amp; 3rd period. Bred Reg. Angus Bulls. Nice, gentle set of cows will follow feed truck &amp; all shots.</li>\n<li><b>Eissler Farms: </b><b>15 </b>Blk-Bwf 2 yr. old heifers w/ spring calves at side. Ear tagged to match, big stout set of home raised heifers</li>\n<li><b>Conrow Farms: </b><b>16 </b>Blk Angus 2 yr. old heifers w/ spring calves at side. <b>3 </b>Red Angus 2 yr. old heifers w/ spring calves at side. Gentle, good quality heifers that sell open &amp; ear tagged to match.</li>\n<li><b>Kyndal Farms: </b><b>40 </b>Blk 3-6 yr. old Cows, 3rd period. Bred Blk. Balancer bulls</li>\n<li><b>Cartwright Farms: </b><b>35 </b>Blk 3-4 yr. old Cows, 2nd period. <b>35</b> Blk 5-6 yr. old Cows, 2nd period. Bred Angus bulls</li>\n<li><b>Lewis Farms: </b><b>17 </b>Blk-Bwf 3-6 yr. old Cows w/ 250lbs calves at side.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-04-27 16:58:00','2022-04-27 16:58:00','',2209,'https://kingsvillelivestock.com/?p=4271',0,'revision','',0),(4272,2,'2022-04-27 17:13:26','2022-04-27 17:13:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/TuesdayApril-26th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4258\">Tuesday,April 26th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Saturday, May 7th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Francy Farms: </b><b>1 </b>2 yr. old Red Angus Bull</li>\n<li><b>Seedstock Plus: </b><b>6Â  </b>18 month old Blk Balancer &amp; Gelv. Bulls. Semen &amp; Trich Tested &amp; ready to be turned out.</li>\n<li><b>Evan Farms: </b><b>6Â  </b>2 yr. old Blk. PurebredÂ  Angus Bulls. Semen &amp; Trich Tested &amp; ready to be turned out. Nice set of 2 yr. old bulls.</li>\n<li><b>Beeman Farms: </b><b>2 </b>1 yr. old Blk Angus Bulls <b>1 </b>18 month old Blk Angus Bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>30 </b>Blk-Bwf 5-SS Cows w/ 400lbs calves at side 3N1â€™s.Bred back to Blk. Angus Bulls. Broke to feed truck, nice set of of 3N1 pairs. Calves have been cut &amp; 1rd shots.</li>\n<li><b>Snyder Farms: </b><b>10 </b>Red Angus 4 yr. old cows w/ 350lbs calves at side 3N1â€™s. Cows running back w/ Reg. Angus Bulls. Calves been cut &amp; 1rd shots. 10 Red Angus Cows,2nd &amp; 3rd period. Bred Reg. Angus Bulls. Nice, gentle set of cows will follow feed truck &amp; all shots.</li>\n<li><b>Eissler Farms: </b><b>15 </b>Blk-Bwf 2 yr. old heifers w/ spring calves at side. Ear tagged to match, big stout set of home raised heifers</li>\n<li><b>Conrow Farms: </b><b>16 </b>Blk Angus 2 yr. old heifers w/ spring calves at side. <b>3 </b>Red Angus 2 yr. old heifers w/ spring calves at side. Gentle, good quality heifers that sell open &amp; ear tagged to match.</li>\n<li><b>Kyndal Farms: </b><b>40 </b>Blk 3-6 yr. old Cows, 3rd period. Bred Blk. Balancer bulls</li>\n<li><b>Cartwright Farms: </b><b>35 </b>Blk 3-4 yr. old Cows, 2nd period. <b>35</b> Blk 5-6 yr. old Cows, 2nd period. Bred Angus bulls</li>\n<li><b>Lewis Farms: </b><b>17 </b>Blk-Bwf 3-6 yr. old Cows w/ 250lbs calves at side.</li>\n<li><b>Mark Thompson Complete Dispersal: </b><b>17 </b>Blk 4-7 yr. old Cows w/ 250lbs calves at side. <b>15</b> Blk 3-5 yr. old Cows,2nd period. <b>5 </b>Red-Char 4-6 yr. old Cows, 2nd period. All cows bred back to Schaff Angus Bulls &amp; current on all shots. Nice set of gentle cows.</li>\n<li><b>J &amp; R Complete Dispersal: </b>Â <b>15 </b>Red-Rwf 3-5 yr. old Cows,2nd period. <b>15 </b>Blk 3-5 yr. old Cows,2nd period. All cows bred Seedstock &amp; Blk Balancer Bulls. Nice set of gentle cows.</li>\n<li><b>Carson Farms: </b><b>6 </b>BlkÂ  3 yr. old Cows,3rd period. Bred Reg. Angus bulls.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-04-27 17:13:26','2022-04-27 17:13:26','',2209,'https://kingsvillelivestock.com/?p=4272',0,'revision','',0),(4273,2,'2022-04-27 17:14:21','2022-04-27 17:14:21','','May 7, 2022 Cow Sale','','inherit','closed','closed','','may-7-2022-cow-sale-2','','','2022-04-27 17:14:21','2022-04-27 17:14:21','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/04/May-7-2022-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(4274,2,'2022-04-27 17:14:31','2022-04-27 17:14:31','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span><span style=\"color: #000000;\"></span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/May-7-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4273\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ </p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-04-27 17:14:31','2022-04-27 17:14:31','',639,'https://kingsvillelivestock.com/?p=4274',0,'revision','',0),(4275,2,'2022-04-27 17:15:25','2022-04-27 17:15:25','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/May-7-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4273\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-04-27 17:15:25','2022-04-27 17:15:25','',1967,'https://kingsvillelivestock.com/?p=4275',0,'revision','',0),(4277,2,'2022-04-27 17:24:02','2022-04-27 17:24:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span><span style=\"color: #000000;\"></span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/May-7-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4273\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-04-27 17:24:02','2022-04-27 17:24:02','',639,'https://kingsvillelivestock.com/?p=4277',0,'revision','',0),(4278,2,'2022-04-27 17:24:42','2022-04-27 17:24:42','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/May-7-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4273\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-04-27 17:24:42','2022-04-27 17:24:42','',1967,'https://kingsvillelivestock.com/?p=4278',0,'revision','',0),(4279,2,'2022-04-27 17:39:14','2022-04-27 17:39:14','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/May-7-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4273\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-04-27 17:39:14','2022-04-27 17:39:14','',1967,'https://kingsvillelivestock.com/?p=4279',0,'revision','',0),(4280,2,'2022-04-27 17:40:21','2022-04-27 17:40:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>April. 30th @ 9:00 am<br /></strong>Packingham Farm Equipment Auction-For more info visit the Anstine Auction tab!</span><span style=\"color: #000000;\"></span></p>\n<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/04/May-7-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4273\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-04-27 17:40:21','2022-04-27 17:40:21','',639,'https://kingsvillelivestock.com/?p=4280',0,'revision','',0),(4281,2,'2022-05-02 17:02:46','2022-05-02 17:02:46','','Tuesday,May 3rd Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymay-3rd-feeder-cattle-consignments','','','2022-05-02 17:02:46','2022-05-02 17:02:46','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-3rd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4282,2,'2022-05-02 17:27:55','2022-05-02 17:27:55','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-3rd-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4281\">Tuesday,May 3rd Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Saturday, May 7th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b>Â <b><i>Bulls sell at 11am </i></b></p>\n<ul>\n<li><b>Francy Farms: </b><b>1 </b>2 yr. old Red Angus Bull</li>\n<li><b>Seedstock Plus: </b><b>6Â  </b>18 month old Blk Balancer &amp; Gelv. Bulls. Semen &amp; Trich Tested &amp; ready to be turned out.</li>\n<li><b>Evan Farms: </b><b>6Â  </b>2 yr. old Blk. PurebredÂ  Angus Bulls. Semen &amp; Trich Tested &amp; ready to be turned out. Nice set of 2 yr. old bulls.</li>\n<li><b>Beeman Farms: </b><b>2 </b>1 yr. old Blk Angus Bulls <b>1 </b>18 month old Blk Angus Bull</li>\n<li><b>Cooper Farms: </b><b>2 </b>18 month old Blk Sim-Angus Bulls out of Lucas Genetics</li>\n<li><b>Brockhaus Farms: </b><b>2 </b>2 yr. old Blk LimFlexÂ  Bulls BWT 72lbs &amp; 75lbs</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>30 </b>Blk-Bwf 5-SS Cows w/ 400lbs calves at side 3N1â€™s.Bred back to Blk. Angus Bulls. Broke to feed truck, nice set of of 3N1 pairs. Calves have been cut &amp; 1rd shots.</li>\n<li><b>Snyder Farms: </b><b>10 </b>Red Angus 4 yr. old cows w/ 350lbs calves at side 3N1â€™s. Cows running back w/ Reg. Angus Bulls. Calves been cut &amp; 1rd shots. 10 Red Angus Cows,2nd &amp; 3rd period. Bred Reg. Angus Bulls. Nice, gentle set of cows will follow feed truck &amp; all shots.</li>\n<li><b>Eissler Farms: </b><b>15 </b>Blk-Bwf 2 yr. old heifers w/ spring calves at side. Ear tagged to match, big stout set of home raised heifers</li>\n<li><b>Conrow Farms: </b><b>16 </b>Blk Angus 2 yr. old heifers w/ spring calves at side. <b>3 </b>Red Angus 2 yr. old heifers w/ spring calves at side. Gentle, good quality heifers that sell open &amp; ear tagged to match.</li>\n<li><b>Kyndal Farms: </b><b>40 </b>Blk 3-6 yr. old Cows, 3rd period. Bred Blk. Balancer bulls</li>\n<li><b>Cartwright Farms: </b><b>35 </b>Blk 3-4 yr. old Cows, 2nd period. <b>35</b> Blk 5-6 yr. old Cows, 2nd period. Bred Angus bulls</li>\n<li><b>Lewis Farms: </b><b>17 </b>Blk-Bwf 3-6 yr. old Cows w/ 250lbs calves at side.</li>\n<li><b>J &amp; R Complete Dispersal: </b>Â <b>15 </b>Red-Rwf 3-5 yr. old Cows,2nd period. <b>15 </b>Blk 3-5 yr. old Cows,2nd period. All cows bred Seedstock &amp; Blk Balancer Bulls. Nice set of gentle cows.</li>\n<li><b>Carson Farms: </b><b>6 </b>BlkÂ  3 yr. old Cows,3rd period. Bred Reg. Angus bulls.</li>\n<li><b>Starke Farms: </b><b>10 </b>Red Angus 2 yr. old Heifers,1100lbs &amp; 2nd period. 6 Red Angus 3-4 yr old Cows,2nd period. All home-raised &amp; bred to Composite Red Angus Bulls.</li>\n<li><b>Dobson Farms: </b><b>15 </b>Blk 7-SS Cows w/ 200lbs calves at side. <b>7</b> Blk 7-SS Cows,3rd period</li>\n<li><b>Teter Farms: </b><b>24 </b>Blk 2 yr. old 1200lbs Heifers w/ 150lbs calves at side. Sired by Baldridge Blk Angus Bulls. <b>12</b> Blk 3-4 yr. old w/ Blk &amp; Char calves at side. All calves ear tagged to match &amp; had all had shot of Alpha 7 at birth.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-05-02 17:27:55','2022-05-02 17:27:55','',2209,'https://kingsvillelivestock.com/?p=4282',0,'revision','',0),(4283,2,'2022-05-02 17:47:11','2022-05-02 17:47:11','','May 7, 2022 Cow Sale','','inherit','closed','closed','','may-7-2022-cow-sale-3','','','2022-05-02 17:47:11','2022-05-02 17:47:11','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-7-2022-Cow-Sale.pdf',0,'attachment','application/pdf',0),(4284,2,'2022-05-02 17:47:20','2022-05-02 17:47:20','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-7-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4283\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-02 17:47:20','2022-05-02 17:47:20','',639,'https://kingsvillelivestock.com/?p=4284',0,'revision','',0),(4285,2,'2022-05-02 17:48:11','2022-05-02 17:48:11','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-7-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4283\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-02 17:48:11','2022-05-02 17:48:11','',1967,'https://kingsvillelivestock.com/?p=4285',0,'revision','',0),(4286,2,'2022-05-02 17:50:20','2022-05-02 17:50:20','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-05-02 17:50:20','2022-05-02 17:50:20','',1450,'https://kingsvillelivestock.com/?p=4286',0,'revision','',0),(4287,2,'2022-05-02 20:00:46','2022-05-02 20:00:46','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/5hgGDgTYRkC2DBEEA\">Lane Estate Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-05-02 20:00:46','2022-05-02 20:00:46','',1450,'https://kingsvillelivestock.com/?p=4287',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (4288,2,'2022-05-02 20:02:38','2022-05-02 20:02:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-7-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4283\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!Â </p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-02 20:02:38','2022-05-02 20:02:38','',639,'https://kingsvillelivestock.com/?p=4288',0,'revision','',0),(4289,2,'2022-05-02 20:03:21','2022-05-02 20:03:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-7-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4283\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!Â </p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers</p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-02 20:03:21','2022-05-02 20:03:21','',1967,'https://kingsvillelivestock.com/?p=4289',0,'revision','',0),(4290,2,'2022-05-02 20:18:32','2022-05-02 20:18:32','','2022 fall calving catalog','','inherit','closed','closed','','2022-fall-calving-catalog','','','2022-05-02 20:18:32','2022-05-02 20:18:32','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog.pdf',0,'attachment','application/pdf',0),(4291,2,'2022-05-02 20:19:03','2022-05-02 20:19:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-7-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4283\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog.pdf\" rel=\"attachment wp-att-4290\">2022 SMS fall catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-02 20:19:03','2022-05-02 20:19:03','',639,'https://kingsvillelivestock.com/?p=4291',0,'revision','',0),(4292,2,'2022-05-02 20:20:00','2022-05-02 20:20:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.7th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-7-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4283\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog.pdf\" rel=\"attachment wp-att-4290\">2022 SMS fall catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-02 20:20:00','2022-05-02 20:20:00','',1967,'https://kingsvillelivestock.com/?p=4292',0,'revision','',0),(4294,2,'2022-05-03 15:14:04','2022-05-03 15:14:04','','Lane Auction May15th','','inherit','closed','closed','','lane-auction-may15th','','','2022-05-03 15:14:04','2022-05-03 15:14:04','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/Lane-Auction-May15th.pdf',0,'attachment','application/pdf',0),(4295,2,'2022-05-03 15:14:49','2022-05-03 15:14:49','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Lane-Auction-May15th.pdf\" rel=\"attachment wp-att-4294\">Lane Estate Auction May15th-Garden City,MO-10:30amÂ </a></p>\n<p><a href=\"https://photos.app.goo.gl/5hgGDgTYRkC2DBEEA\">Lane Estate Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-05-03 15:14:49','2022-05-03 15:14:49','',1450,'https://kingsvillelivestock.com/?p=4295',0,'revision','',0),(4296,2,'2022-05-04 04:05:37','2022-05-04 04:05:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.7th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-7-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4283\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog.pdf\" rel=\"attachment wp-att-4290\">2022 SMS fall catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-04 04:05:37','2022-05-04 04:05:37','',639,'https://kingsvillelivestock.com/?p=4296',0,'revision','',0),(4297,2,'2022-05-04 04:06:16','2022-05-04 04:06:16','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.7th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-7-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4283\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog.pdf\" rel=\"attachment wp-att-4290\">2022 SMS fall catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-04 04:06:16','2022-05-04 04:06:16','',1967,'https://kingsvillelivestock.com/?p=4297',0,'revision','',0),(4298,2,'2022-05-04 15:05:14','2022-05-04 15:05:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 3, 2022</strong> 2761 hd; Last week; 2894 hd; a year ago 2117. Feeder cattle sold steady. Fall calves sold steady-$2 higher w/ very good buyer activity.Â  Slaughter cows &amp; bulls sold $2 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$222.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$209.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$189.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$151.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.50-$157.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$153.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$133.00-$147.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$124.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$80.00 - $93.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$67.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">630lbs @$189.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">698lbs @$176.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">877lbs @$157.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">685lbs@$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">724lbs@$153.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">741lbs@$151.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">804lbs@$144.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 3, 2022 - Market Report','','publish','closed','open','','may-3-2022-market-report','','','2022-05-04 15:05:18','2022-05-04 15:05:18','',0,'https://kingsvillelivestock.com/?p=4298',0,'post','',0),(4300,2,'2022-05-04 15:05:14','2022-05-04 15:05:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 3, 2022</strong> 2761 hd; Last week; 2894 hd; a year ago 2117. Feeder cattle sold steady. Fall calves sold steady-$2 higher w/ very good buyer activity.Â  Slaughter cows &amp; bulls sold $2 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$222.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$209.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$189.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$151.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.50-$157.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$153.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$133.00-$147.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$124.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$80.00 - $93.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$67.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">630lbs @$189.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">698lbs @$176.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">877lbs @$157.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">685lbs@$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">724lbs@$153.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">741lbs@$151.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">804lbs@$144.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 3, 2022 - Market Report','','inherit','closed','closed','','4298-revision-v1','','','2022-05-04 15:05:14','2022-05-04 15:05:14','',4298,'https://kingsvillelivestock.com/?p=4300',0,'revision','',0),(4301,2,'2022-05-04 15:05:14','2022-05-04 15:05:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 3, 2022</strong> 2761 hd; Last week; 2894 hd; a year ago 2117. Feeder cattle sold steady. Fall calves sold steady-$2 higher w/ very good buyer activity.Â  Slaughter cows &amp; bulls sold $2 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$222.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$209.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$189.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$151.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.50-$157.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$153.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$133.00-$147.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$124.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$80.00 - $93.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$67.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">630lbs @$189.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">698lbs @$176.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">877lbs @$157.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">685lbs@$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">724lbs@$153.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">741lbs@$151.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">804lbs@$144.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 26, 2022 - Market Report','','inherit','closed','closed','','4298-revision-v1','','','2022-05-04 15:05:14','2022-05-04 15:05:14','',4298,'https://kingsvillelivestock.com/?p=4301',0,'revision','',0),(4302,2,'2022-05-04 15:05:18','2022-05-04 15:05:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 3, 2022</strong> 2761 hd; Last week; 2894 hd; a year ago 2117. Feeder cattle sold steady. Fall calves sold steady-$2 higher w/ very good buyer activity.Â  Slaughter cows &amp; bulls sold $2 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$222.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$209.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$189.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$151.00-$165.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$148.50-$157.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$120.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$167.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$153.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$133.00-$147.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$124.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$80.00 - $93.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$67.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $66.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">630lbs @$189.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">698lbs @$176.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">877lbs @$157.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">685lbs@$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">724lbs@$153.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">741lbs@$151.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">804lbs@$144.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 3, 2022 - Market Report','','inherit','closed','closed','','4298-revision-v1','','','2022-05-04 15:05:18','2022-05-04 15:05:18','',4298,'https://kingsvillelivestock.com/?p=4302',0,'revision','',0),(4303,2,'2022-05-04 16:20:22','2022-05-04 16:20:22','','May 14th 2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','may-14th-2022-horse-tack-small-animal-sale','','','2022-05-04 16:20:22','2022-05-04 16:20:22','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale.pdf',0,'attachment','application/pdf',0),(4304,2,'2022-05-04 16:21:33','2022-05-04 16:21:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.7th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-7-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4283\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4303\">May 14th 2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog.pdf\" rel=\"attachment wp-att-4290\">2022 SMS fall catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-04 16:21:33','2022-05-04 16:21:33','',639,'https://kingsvillelivestock.com/?p=4304',0,'revision','',0),(4305,2,'2022-05-04 16:22:39','2022-05-04 16:22:39','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.7th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-7-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4283\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4303\">May 14th 2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog.pdf\" rel=\"attachment wp-att-4290\">2022 SMS fall catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-04 16:22:39','2022-05-04 16:22:39','',1967,'https://kingsvillelivestock.com/?p=4305',0,'revision','',0),(4307,2,'2022-05-06 15:43:58','2022-05-06 15:43:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Call to Action\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Trailers For Sale\" content_max_width=\"800px\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-30.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Event Section\" _builder_version=\"4.16\" custom_padding=\"60px||60px||true|false\" animation_style=\"zoom\" animation_intensity_zoom=\"6%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>We carry a wide variety of trailers to meet all of your needs.</p>\n<p><strong><a href=\"https://kingsvillelivestock.com/contact/\">Contact us</a></strong> for a FREE QUOTE today.</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/image000003-300x225.jpg\" width=\"143\" height=\"107\" alt=\"\" class=\"wp-image-4098 alignnone size-medium\" />Â  7\'1\" X 27\'6\" 2022 Eby Ruffneck 2 8k axles. 17.5 tires &amp; spare. 2 Cross Gates.<strong> $36,650.00</strong></p>\n<p><img class=\"wp-image-2101 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG-1006-scaled-e1595879726664-300x225.jpg\" alt=\"\" width=\"147\" height=\"110\" />Â  Â  Eby 7\'1\" X 24\' Punch Panel Maverick Livestock Trailer. 14 ply tires, 7k axels, Alum. wheels, &amp; 2 cross gatesÂ  <strong>Not in Stock, Call Now for pricing &amp; to order!Â </strong></p>\n<p>&nbsp;</p>\n<p><img class=\"wp-image-2116 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1008-1-208x300.jpg\" alt=\"\" width=\"102\" height=\"147\" />Â  EZ Haul 32\' Bumper Pull Hay Trailer. 6 Bale,Â  - <strong>Not in stock, call now to order!Â </strong></p>\n<p><img class=\"wp-image-2117 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" alt=\"\" width=\"101\" height=\"135\" />Â  EZ Haul 32\' Gooseneck Hay Trailer. 6 Bale, $7,100.00 <strong>Â </strong></p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"97\" height=\"130\" />EZ Haul 36\' Gooseneck Hay Trailer. 7 Bale, $6,900.00<strong>- Only 3 left in stock! Next pirce will be $7,200.00</strong></p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"100\" height=\"134\" />EZ Haul 42\' Gooseneck Hay Trailer. 8 Bale, $6,750.00 -<strong> Two in stock!Â </strong></p>\n<p><img class=\"wp-image-2146 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Ez-Haul-Flat-Bed-2-300x225.jpg\" alt=\"\" width=\"139\" height=\"104\" />Â  Â 27\' EZ Haul Flat Bed. 22+5 Dove, 3 ramps, low profile, 10k axels, 14 ply tires. $13,500.00</p>\n<p><img class=\"wp-image-2147 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/ez-haul-flat-bed-3-300x225.jpg\" alt=\"\" width=\"144\" height=\"108\" /> EZ Haul 20\' Flat Bed Bumper Pull. 18+2 Dove, 2 4\' ramps, 7k axels, 10 ply tires. <strong>Out of Stock, call for price!Â </strong></p>\n<p><img class=\"wp-image-2153 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Wheel-Corral-300x185.png\" alt=\"\" width=\"172\" height=\"106\" /> Diamond \"W\" Wheel Corral $15,800.00 -<strong> 1 left in stock!Â </strong></p>\n<h2><span style=\"color: #ff00ff;\">For additional questions about the trailers or wheel corral call the office @ 816-597-3331 or Derrick @ 816-726-3456</span></h2>\n<p><span style=\"color: #ff0000;\"><strong>Updated on May 6th,2022Â </strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','TRAILERS FOR SALE','','inherit','closed','closed','','714-revision-v1','','','2022-05-06 15:43:58','2022-05-06 15:43:58','',714,'https://kingsvillelivestock.com/?p=4307',0,'revision','',0),(4308,2,'2022-05-06 16:01:14','2022-05-06 16:01:14','','2022 fall calving catalog (1)','','inherit','closed','closed','','2022-fall-calving-catalog-1','','','2022-05-06 16:01:14','2022-05-06 16:01:14','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf',0,'attachment','application/pdf',0),(4309,2,'2022-05-06 16:01:34','2022-05-06 16:01:34','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.7th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-7-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4283\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4303\">May 14th 2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-06 16:01:34','2022-05-06 16:01:34','',639,'https://kingsvillelivestock.com/?p=4309',0,'revision','',0),(4310,2,'2022-05-06 16:03:45','2022-05-06 16:03:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.7th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-7-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4283\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4303\">May 14th 2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-06 16:03:45','2022-05-06 16:03:45','',1967,'https://kingsvillelivestock.com/?p=4310',0,'revision','',0),(4311,2,'2022-05-06 16:11:33','2022-05-06 16:11:33','','May 14th 2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','may-14th-2022-horse-tack-small-animal-sale-2','','','2022-05-06 16:11:33','2022-05-06 16:11:33','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-1.pdf',0,'attachment','application/pdf',0),(4312,2,'2022-05-06 16:11:51','2022-05-06 16:11:51','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.7th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-7-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4283\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-4311\">May 14th 2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-06 16:11:51','2022-05-06 16:11:51','',639,'https://kingsvillelivestock.com/?p=4312',0,'revision','',0),(4313,2,'2022-05-06 16:12:38','2022-05-06 16:12:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.7th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-7-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4283\">May 7, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-4311\">May 14th 2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-06 16:12:38','2022-05-06 16:12:38','',1967,'https://kingsvillelivestock.com/?p=4313',0,'revision','',0),(4314,2,'2022-05-07 22:00:30','2022-05-07 22:00:30','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-4311\">May 14th 2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-07 22:00:30','2022-05-07 22:00:30','',639,'https://kingsvillelivestock.com/?p=4314',0,'revision','',0),(4315,2,'2022-05-07 22:01:25','2022-05-07 22:01:25','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-4311\">May 14th, 2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-07 22:01:25','2022-05-07 22:01:25','',1967,'https://kingsvillelivestock.com/?p=4315',0,'revision','',0),(4317,2,'2022-05-09 16:21:38','2022-05-09 16:21:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-3rd-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4281\">Tuesday,May 3rd Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday, May 21st @ 11am in conjunction w/ Show-Me-Select Bred Heifers</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Selling 125 hd of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Copenhaver Farms: </b><b>1 </b>Bwf Simmental Bull. AI sired w/ 78lbs BW &amp; 825 WW</li>\n<li><b>Cooper Farms: </b><b>2 </b>18 month old Blk Sim-Angus Bulls out of Lucas GeneticsÂ Â </li>\n<li><b>Complete Dispersal Scott Farms: </b><b>1 </b>2 yr. month old Red Angus Bull. Semen &amp; Trich tested &amp; ready to be turned out</li>\n<li><b>Daniel Farms: </b><b>10</b> 18 month old Reg. Blk Angus bulls. Semen &amp; trich tested, had all shots &amp; ready to be turned out</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Pritchard Farms: </b><b>35 </b>Red Angus 3-4 yr. old fall calving cows. Bred Schweitzer Red Angus Bulls <b>10 </b>Blk 3-4 yr. old fall calving cows. Bred Miller Angus Bulls.</li>\n<li><b>Double J Farms: </b><b>15 </b>Red Angus heifer pairs 1200lbs w/ 175lbs calves at side. Ear tagged to match &amp; had 1 rd. shots, gentle set of heifers.</li>\n<li><b>Complete Dispersal Scott Farms: </b><b>25 </b>Red Angus 3-6 yr. old fall calving cows. Bred Red Angus Bull &amp; had all shots. Calves been weaned off cows for 45 days &amp; gentle set of cows</li>\n<li><b>Morrison Farms: </b><b>10</b> Bwf 2 yr. old bred heifers, 1100lbs &amp; 3rd period. Bred LBWT Seedstock Blk Balancer Bulls. Heifers were pelvic measured prior to breeding &amp; had all shots.</li>\n<li><b>J-K Farms: </b><b>45</b> Blk-Bwf 3-6 yr. old fall calving cows. Bred to Blk Angus Bulls. Cows were wormed/poured 35 days ago. Cows weaned off a big set of calves, good quality.</li>\n<li><b>Stevenson Farms: </b><b>10</b> Blk-Bwf 3-6 yr. cows w/ 45 day old Angus calves at side. Ear tagged to match &amp; cows sell open.</li>\n<li><b>Anderson Farms: </b><b>35</b> Blk-Bwf 3-5 yr. cows, 3rd period. Bred Blk Angus Bulls</li>\n<li><b>Ghee Farms: </b><b>30</b> Blk-Bwf 3-4 yr. fall calving cows, 2nd period <b>30</b> Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. Cows bred to Blk Angus &amp; Blk Balancer Bulls &amp; start calving August 10th.</li>\n<li><b>Tiffany Farms: </b><b>11</b> Blk-Bwf 3-7 yr. cows w/ 250lbs calves at side</li>\n<li><b>Rich Hue Farms: </b><b>20</b> Blk 2 yr. old Angus fall calving heifers, 1050lbs. Start calving Sept. 1st for 90 days. Bred to LBWT Blk Angus Sutphin bulls</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-05-09 16:21:38','2022-05-09 16:21:38','',2209,'https://kingsvillelivestock.com/?p=4317',0,'revision','',0),(4318,2,'2022-05-09 18:03:44','2022-05-09 18:03:44','','Tuesday,May 10th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymay-10th-feeder-cattle-consignments','','','2022-05-09 18:03:44','2022-05-09 18:03:44','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-10th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4319,2,'2022-05-09 18:04:22','2022-05-09 18:04:22','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-10th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4318\">Tuesday,May 10th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday, May 21st @ 11am in conjunction w/ Show-Me-Select Bred Heifers</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Selling 125 hd of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Copenhaver Farms: </b><b>1 </b>Bwf Simmental Bull. AI sired w/ 78lbs BW &amp; 825 WW</li>\n<li><b>Cooper Farms: </b><b>2 </b>18 month old Blk Sim-Angus Bulls out of Lucas GeneticsÂ Â </li>\n<li><b>Complete Dispersal Scott Farms: </b><b>1 </b>2 yr. month old Red Angus Bull. Semen &amp; Trich tested &amp; ready to be turned out</li>\n<li><b>Daniel Farms: </b><b>10</b> 18 month old Reg. Blk Angus bulls. Semen &amp; trich tested, had all shots &amp; ready to be turned out</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Pritchard Farms: </b><b>35 </b>Red Angus 3-4 yr. old fall calving cows. Bred Schweitzer Red Angus Bulls <b>10 </b>Blk 3-4 yr. old fall calving cows. Bred Miller Angus Bulls.</li>\n<li><b>Double J Farms: </b><b>15 </b>Red Angus heifer pairs 1200lbs w/ 175lbs calves at side. Ear tagged to match &amp; had 1 rd. shots, gentle set of heifers.</li>\n<li><b>Complete Dispersal Scott Farms: </b><b>25 </b>Red Angus 3-6 yr. old fall calving cows. Bred Red Angus Bull &amp; had all shots. Calves been weaned off cows for 45 days &amp; gentle set of cows</li>\n<li><b>Morrison Farms: </b><b>10</b> Bwf 2 yr. old bred heifers, 1100lbs &amp; 3rd period. Bred LBWT Seedstock Blk Balancer Bulls. Heifers were pelvic measured prior to breeding &amp; had all shots.</li>\n<li><b>J-K Farms: </b><b>45</b> Blk-Bwf 3-6 yr. old fall calving cows. Bred to Blk Angus Bulls. Cows were wormed/poured 35 days ago. Cows weaned off a big set of calves, good quality.</li>\n<li><b>Stevenson Farms: </b><b>10</b> Blk-Bwf 3-6 yr. cows w/ 45 day old Angus calves at side. Ear tagged to match &amp; cows sell open.</li>\n<li><b>Anderson Farms: </b><b>35</b> Blk-Bwf 3-5 yr. cows, 3rd period. Bred Blk Angus Bulls</li>\n<li><b>Ghee Farms: </b><b>30</b> Blk-Bwf 3-4 yr. fall calving cows, 2nd period <b>30</b> Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. Cows bred to Blk Angus &amp; Blk Balancer Bulls &amp; start calving August 10th.</li>\n<li><b>Tiffany Farms: </b><b>11</b> Blk-Bwf 3-7 yr. cows w/ 250lbs calves at side</li>\n<li><b>Rich Hue Farms: </b><b>20</b> Blk 2 yr. old Angus fall calving heifers, 1050lbs. Start calving Sept. 1st for 90 days. Bred to LBWT Blk Angus Sutphin bulls</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-05-09 18:04:22','2022-05-09 18:04:22','',2209,'https://kingsvillelivestock.com/?p=4319',0,'revision','',0),(4320,2,'2022-05-09 18:31:06','2022-05-09 18:31:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-10th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4318\">Tuesday,May 10th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday, May 21st @ 11am in conjunction w/ Show-Me-Select Bred Heifers</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Selling 125 hd of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Copenhaver Farms: </b><b>1 </b>Bwf Simmental Bull. AI sired w/ 78lbs BW &amp; 825 WW</li>\n<li><b>Cooper Farms: </b><b>2 </b>18 month old Blk Sim-Angus Bulls out of Lucas Genetics</li>\n<li><b>Complete Dispersal Scott Farms: </b><b>1 </b>2 yr. month old Red Angus Bull. Semen &amp; Trich tested &amp; ready to be turned out</li>\n<li><b>Daniel Farms: </b><b>10</b> 18 month old Reg. Blk Angus bulls. Semen &amp; trich tested, had all shots &amp; ready to be turned out</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Pritchard Farms: </b><b>35 </b>Red Angus 3-4 yr. old fall calving cows. Bred Schweitzer Red Angus BullsÂ </li>\n<li><b>Double J Farms: </b><b>15 </b>Red Angus heifer pairs 1200lbs w/ 175lbs calves at side. Ear tagged to match &amp; had 1 rd. shots, gentle set of heifers.</li>\n<li><b>Complete Dispersal Scott Farms: </b><b>25 </b>Red Angus 3-6 yr. old fall calving cows. Bred Red Angus Bull &amp; had all shots. Calves been weaned off cows for 45 days &amp; gentle set of cows</li>\n<li><b>Morrison Farms: </b><b>10</b> Bwf 2 yr. old bred heifers, 1100lbs &amp; 3rd period. Bred LBWT Seedstock Blk Balancer Bulls. Heifers were pelvic measured prior to breeding &amp; had all shots.</li>\n<li><b>J-K Farms: </b><b>45</b> Blk-Bwf 3-6 yr. old fall calving cows. Bred to Blk Angus Bulls. Cows were wormed/poured 35 days ago. Cows weaned off a big set of calves, good quality.</li>\n<li><b>Stevenson Farms: </b><b>10</b> Blk-Bwf 3-6 yr. cows w/ 45 day old Angus calves at side. Ear tagged to match &amp; cows sell open.</li>\n<li><b>Anderson Farms: </b><b>35</b> Blk-Bwf 3-5 yr. cows, 3rd period. Bred Blk Angus Bulls</li>\n<li><b>Ghee Farms: </b><b>30</b> Blk-Bwf 3-4 yr. fall calving cows, 2nd period <b>30</b> Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. Cows bred to Blk Angus &amp; Blk Balancer Bulls &amp; start calving August 10th.</li>\n<li><b>Tiffany Farms: </b><b>11</b> Blk-Bwf 3-7 yr. cows w/ 250lbs calves at side</li>\n<li><b>Rich Hue Farms: </b><b>20</b> Blk 2 yr. old Angus fall calving heifers, 1050lbs. Start calving Sept. 1st for 90 days. Bred to LBWT Blk Angus Sutphin bulls</li>\n<li><b>Philips Farms: </b><b>40 </b>Â Blk-Bwf 3-5 yr. old fall calving cows. Bred Miller Angus Bulls.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-05-09 18:31:06','2022-05-09 18:31:06','',2209,'https://kingsvillelivestock.com/?p=4320',0,'revision','',0),(4321,2,'2022-05-09 18:32:12','2022-05-09 18:32:12','','May 21, 2022 Cow Sale','','inherit','closed','closed','','may-21-2022-cow-sale','','','2022-05-09 18:32:12','2022-05-09 18:32:12','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale.pdf',0,'attachment','application/pdf',0),(4322,2,'2022-05-09 18:33:04','2022-05-09 18:33:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-4311\">May 14th, 2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 amÂ  Â  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4321\">May 21, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-09 18:33:04','2022-05-09 18:33:04','',1967,'https://kingsvillelivestock.com/?p=4322',0,'revision','',0),(4323,2,'2022-05-09 18:34:05','2022-05-09 18:34:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-4311\">May 14th 2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4321\">May 21, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 amÂ </strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-09 18:34:05','2022-05-09 18:34:05','',639,'https://kingsvillelivestock.com/?p=4323',0,'revision','',0),(4324,2,'2022-05-09 18:35:30','2022-05-09 18:35:30','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-4311\">May 14th 2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4321\">May 21, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-09 18:35:30','2022-05-09 18:35:30','',639,'https://kingsvillelivestock.com/?p=4324',0,'revision','',0),(4325,2,'2022-05-09 19:00:26','2022-05-09 19:00:26','','May 14th 2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','may-14th-2022-horse-tack-small-animal-sale-3','','','2022-05-09 19:00:26','2022-05-09 19:00:26','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-2.pdf',0,'attachment','application/pdf',0),(4326,2,'2022-05-09 19:00:36','2022-05-09 19:00:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-2.pdf\" rel=\"attachment wp-att-4325\">May 14th 2022 Horse, Tack, &amp; Small Animal Sale</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-4311\"></a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4321\">May 21, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-09 19:00:36','2022-05-09 19:00:36','',639,'https://kingsvillelivestock.com/?p=4326',0,'revision','',0),(4327,2,'2022-05-09 19:01:19','2022-05-09 19:01:19','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-2.pdf\" rel=\"attachment wp-att-4325\">May 14th 2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 amÂ  Â  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4321\">May 21, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day AuctionÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-09 19:01:19','2022-05-09 19:01:19','',1967,'https://kingsvillelivestock.com/?p=4327',0,'revision','',0),(4328,2,'2022-05-09 19:54:31','2022-05-09 19:54:31','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-2.pdf\" rel=\"attachment wp-att-4325\">May 14th 2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 amÂ  Â  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4321\">May 21, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Acution tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Acution tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-09 19:54:31','2022-05-09 19:54:31','',1967,'https://kingsvillelivestock.com/?p=4328',0,'revision','',0),(4329,2,'2022-05-09 19:55:38','2022-05-09 19:55:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-2.pdf\" rel=\"attachment wp-att-4325\">May 14th 2022 Horse, Tack, &amp; Small Animal Sale</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-4311\"></a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4321\">May 21, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-09 19:55:38','2022-05-09 19:55:38','',639,'https://kingsvillelivestock.com/?p=4329',0,'revision','',0),(4330,2,'2022-05-09 19:56:37','2022-05-09 19:56:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-2.pdf\" rel=\"attachment wp-att-4325\">May 14th 2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 amÂ  Â  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4321\">May 21, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-09 19:56:37','2022-05-09 19:56:37','',1967,'https://kingsvillelivestock.com/?p=4330',0,'revision','',0),(4331,2,'2022-05-09 19:57:47','2022-05-09 19:57:47','','2022 Memorial Day Sale Flyer','','inherit','closed','closed','','2022-memorial-day-sale-flyer','','','2022-05-09 19:57:47','2022-05-09 19:57:47','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf',0,'attachment','application/pdf',0),(4332,2,'2022-05-09 19:58:58','2022-05-09 19:58:58','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.3\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Lane-Auction-May15th.pdf\" rel=\"attachment wp-att-4294\">Lane Estate Auction May15th-Garden City,MO-10:30amÂ </a></p>\n<p><a href=\"https://photos.app.goo.gl/5hgGDgTYRkC2DBEEA\">Lane Estate Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">Memorial Day Sale Flyer-</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">May 29th &amp; 30th, 2022 </a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">-9am-Kingsville,MO</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-05-09 19:58:58','2022-05-09 19:58:58','',1450,'https://kingsvillelivestock.com/?p=4332',0,'revision','',0),(4334,2,'2022-05-11 14:18:05','2022-05-11 14:18:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-2.pdf\" rel=\"attachment wp-att-4325\">May 14th 2022 Horse, Tack, &amp; Small Animal Sale</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-4311\"></a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4321\">May 21, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-11 14:18:05','2022-05-11 14:18:05','',639,'https://kingsvillelivestock.com/?p=4334',0,'revision','',0),(4335,2,'2022-05-11 14:18:35','2022-05-11 14:18:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-2.pdf\" rel=\"attachment wp-att-4325\">May 14th 2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 amÂ  Â  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4321\">May 21, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-11 14:18:35','2022-05-11 14:18:35','',1967,'https://kingsvillelivestock.com/?p=4335',0,'revision','',0),(4336,2,'2022-05-11 14:41:03','2022-05-11 14:41:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-10th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4318\">Tuesday,May 10th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday, May 21st @ 11am in conjunction w/ Show-Me-Select Bred Heifers</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Selling 125 hd of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Copenhaver Farms: </b><b>1 </b>Bwf Simmental Bull. AI sired w/ 78lbs BW &amp; 825 WW</li>\n<li><b>Cooper Farms: </b><b>2 </b>18 month old Blk Sim-Angus Bulls out of Lucas Genetics</li>\n<li><b>Complete Dispersal Scott Farms: </b><b>1 </b>2 yr. month old Red Angus Bull. Semen &amp; Trich tested &amp; ready to be turned out</li>\n<li><b>Daniel Farms: </b><b>10</b> 18 month old Reg. Blk Angus bulls. Semen &amp; trich tested, had all shots &amp; ready to be turned out</li>\n<li><b>Gross Farms: </b><b>1</b> 2 yr. old Reg. Blk Angus bull</li>\n<li><b>Kanoy Farms: </b><b>1</b> 20 month old Horned Hereford bull <b>2 </b>18 month old Blk Simmental bulls</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Pritchard Farms: </b><b>35 </b>Red Angus 3-4 yr. old fall calving cows. Bred Schweitzer Red Angus Bulls</li>\n<li><b>Double J Farms: </b><b>15 </b>Red Angus heifer pairs 1200lbs w/ 175lbs calves at side. Ear tagged to match &amp; had 1 rd. shots, gentle set of heifers.</li>\n<li><b>Mershon Farms: </b><b>28 </b>Â Blk-Bwf 2 yr. old heifer pairs w/ 175lbs calves at side. <b>12 </b>Red 2 yr. old heifer pairs w/ 175lbs calves at side. All heifers are Show-Me-Select qualified</li>\n<li><b>Complete Dispersal Scott Farms: </b><b>25 </b>Red Angus 3-6 yr. old fall calving cows. Bred Red Angus Bull &amp; had all shots. Calves been weaned off cows for 45 days &amp; gentle set of cows</li>\n<li><b>Morrison Farms: </b><b>10</b> Bwf 2 yr. old bred heifers, 1100lbs &amp; 3rd period. Bred LBWT Seedstock Blk Balancer Bulls. Heifers were pelvic measured prior to breeding &amp; had all shots.</li>\n<li><b>J-K Farms: </b><b>45</b> Blk-Bwf 3-6 yr. old fall calving cows. Bred to Blk Angus Bulls. Cows were wormed/poured 35 days ago. Cows weaned off a big set of calves, good quality.</li>\n<li><b>Stevenson Farms: </b><b>10</b> Blk-Bwf 3-6 yr. cows w/ 45 day old Angus calves at side. Ear tagged to match &amp; cows sell open.</li>\n<li><b>Anderson Farms: </b><b>35</b> Blk-Bwf 3-5 yr. cows, 3rd period. Bred Blk Angus Bulls</li>\n<li><b>Ghee Farms: </b><b>30</b> Blk-Bwf 3-4 yr. fall calving cows, 2nd period <b>30</b> Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. Cows bred to Blk Angus &amp; Blk Balancer Bulls &amp; start calving August 10th.</li>\n<li><b>Tiffany Farms: </b><b>11</b> Blk-Bwf 3-7 yr. cows w/ 250lbs calves at side</li>\n<li><b>Rich Hue Farms: </b><b>20</b> Blk 2 yr. old Angus fall calving heifers, 1050lbs. Start calving Sept. 1st for 90 days. Bred to LBWT Blk Angus Sutphin bulls</li>\n<li><b>Philips Farms: </b><b>40 </b>Â Blk-Bwf 3-5 yr. old fall calving cows. Bred Miller Angus Bulls.</li>\n<li><b>Wright Farms: </b><b>15 </b>Â Blk 3-5 yr. old fall calving cows. Bred Reg. Angus or Balancer Bulls. Start calving Sept. 1st for 60 days</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-05-11 14:41:03','2022-05-11 14:41:03','',2209,'https://kingsvillelivestock.com/?p=4336',0,'revision','',0),(4337,2,'2022-05-11 14:41:59','2022-05-11 14:41:59','','May 21, 2022 Cow Sale','','inherit','closed','closed','','may-21-2022-cow-sale-2','','','2022-05-11 14:41:59','2022-05-11 14:41:59','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(4338,2,'2022-05-11 14:42:13','2022-05-11 14:42:13','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-2.pdf\" rel=\"attachment wp-att-4325\">May 14th 2022 Horse, Tack, &amp; Small Animal Sale</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-4311\"></a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4337\">May 21, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-11 14:42:13','2022-05-11 14:42:13','',639,'https://kingsvillelivestock.com/?p=4338',0,'revision','',0),(4339,2,'2022-05-11 14:43:03','2022-05-11 14:43:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 14th @ 8:30 amÂ  <a href=\"https://drive.google.com/drive/folders/1DOkGbQIpKsbFVDkHyACT8IaTa7B0F7Rg?usp=sharing\">May 14th Photos</a></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-14th-2022-Horse-Tack-Small-Animal-Sale-2.pdf\" rel=\"attachment wp-att-4325\">May 14th 2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>May. 14th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May. 15th @ 10:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Lane Estate Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4337\">May 21, 2022 Cow Sale</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4321\"></a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-11 14:43:03','2022-05-11 14:43:03','',1967,'https://kingsvillelivestock.com/?p=4339',0,'revision','',0),(4340,2,'2022-05-11 15:57:47','2022-05-11 15:57:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 10, 2022</strong> 2127 hd; Last week; 2761 hd; a year ago 2267. Steers &amp; heifers sold steady. Slaughter cows &amp; bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$233.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$168.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$151.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$165.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$127.00-$139.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$115.00-$129.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$80.00 - $96.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$69.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $68.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$88.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">632lbs @$189.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">738lbs @$168.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">709lbs @$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 10, 2022 - Market Report','','publish','closed','open','','may-10-2022-market-report','','','2022-05-11 15:57:50','2022-05-11 15:57:50','',0,'https://kingsvillelivestock.com/?p=4340',0,'post','',0),(4342,2,'2022-05-11 15:57:47','2022-05-11 15:57:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 10, 2022</strong> 2127 hd; Last week; 2761 hd; a year ago 2267. Steers &amp; heifers sold steady. Slaughter cows &amp; bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$233.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$168.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$151.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$165.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$127.00-$139.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$115.00-$129.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$80.00 - $96.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$69.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $68.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$88.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">632lbs @$189.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">738lbs @$168.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">709lbs @$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 10, 2022 - Market Report','','inherit','closed','closed','','4340-revision-v1','','','2022-05-11 15:57:47','2022-05-11 15:57:47','',4340,'https://kingsvillelivestock.com/?p=4342',0,'revision','',0),(4343,2,'2022-05-11 15:57:47','2022-05-11 15:57:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 10, 2022</strong> 2127 hd; Last week; 2761 hd; a year ago 2267. Steers &amp; heifers sold steady. Slaughter cows &amp; bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$233.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$168.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$151.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$165.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$127.00-$139.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$115.00-$129.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$80.00 - $96.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$69.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $68.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$88.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">632lbs @$189.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">738lbs @$168.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">709lbs @$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 3, 2022 - Market Report','','inherit','closed','closed','','4340-revision-v1','','','2022-05-11 15:57:47','2022-05-11 15:57:47','',4340,'https://kingsvillelivestock.com/?p=4343',0,'revision','',0),(4344,2,'2022-05-11 15:57:50','2022-05-11 15:57:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 10, 2022</strong> 2127 hd; Last week; 2761 hd; a year ago 2267. Steers &amp; heifers sold steady. Slaughter cows &amp; bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$233.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$168.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$151.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$165.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$138.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$127.00-$139.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$115.00-$129.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$80.00 - $96.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$69.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$55.00 - $68.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$88.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">632lbs @$189.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">738lbs @$168.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">709lbs @$160.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 10, 2022 - Market Report','','inherit','closed','closed','','4340-revision-v1','','','2022-05-11 15:57:50','2022-05-11 15:57:50','',4340,'https://kingsvillelivestock.com/?p=4344',0,'revision','',0),(4346,2,'2022-05-16 16:50:27','2022-05-16 16:50:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-10th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4318\">Tuesday,May 10th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday, May 21st @ 11am in conjunction w/ Show-Me-Select Bred Heifers</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Selling 125 hd of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Copenhaver Farms: </b><b>1 </b>Bwf Simmental Bull. AI sired w/ 78lbs BW &amp; 825 WW</li>\n<li><b>Cooper Farms: </b><b>2 </b>18 month old Blk Sim-Angus Bulls out of Lucas Genetics</li>\n<li><b>Complete Dispersal Scott Farms: </b><b>1 </b>2 yr. month old Red Angus Bull. Semen &amp; Trich tested &amp; ready to be turned out</li>\n<li><b>Daniel Farms: </b><b>10</b> 18 month old Reg. Blk Angus bulls. Semen &amp; trich tested, had all shots &amp; ready to be turned out</li>\n<li><b>Gross Farms: </b><b>1</b> 2 yr. old Reg. Blk Angus bull</li>\n<li><b>Kanoy Farms: </b><b>1</b> 20 month old Horned Hereford bull <b>2 </b>18 month old Blk Simmental bulls</li>\n<li><b>White Farms: </b><b>2</b> 18 month old Red Balancer Seedstock bulls.</li>\n<li><b>James Farms: </b><b>2 </b>Â 5 yr. old Blk Angus bulls</li>\n<li><b>ATA Farms: </b><b>3 </b>Â 3 yr. old Blk Angus bulls. Semen &amp; trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Pritchard Farms: </b><b>35 </b>Red Angus 3-4 yr. old fall calving cows. Bred Schweitzer Red Angus Bulls</li>\n<li><b>Double J Farms: </b><b>15 </b>Red Angus heifer pairs 1200lbs w/ 175lbs calves at side. Ear tagged to match &amp; had 1 rd. shots, gentle set of heifers.</li>\n<li><b>Mershon Farms: </b><b>28 </b>Â Blk-Bwf 2 yr. old heifer pairs w/ 175lbs calves at side. <b>12 </b>Red 2 yr. old heifer pairs w/ 175lbs calves at side. All heifers are Show-Me-Select qualified</li>\n<li><b>Complete Dispersal Scott Farms: </b><b>25 </b>Red Angus 3-6 yr. old fall calving cows. Bred Red Angus Bull &amp; had all shots. Calves been weaned off cows for 45 days &amp; gentle set of cows</li>\n<li><b>Morrison Farms: </b><b>10</b> Bwf 2 yr. old bred heifers, 1100lbs &amp; 3rd period. Bred LBWT Seedstock Blk Balancer Bulls. Heifers were pelvic measured prior to breeding &amp; had all shots.</li>\n<li><b>J-K Farms: </b><b>45</b> Blk-Bwf 3-6 yr. old fall calving cows. Bred to Blk Angus Bulls. Cows were wormed/poured 35 days ago. Cows weaned off a big set of calves, good quality.</li>\n<li><b>Stevenson Farms: </b><b>10</b> Blk-Bwf 3-6 yr. cows w/ 45 day old Angus calves at side. Ear tagged to match &amp; cows sell open.</li>\n<li><b>Anderson Farms: </b><b>35</b> Blk-Bwf 3-5 yr. cows, 3rd period. Bred Blk Angus Bulls</li>\n<li><b>Ghee Farms: </b><b>30</b> Blk-Bwf 3-4 yr. fall calving cows, 2nd period <b>30</b> Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. Cows bred to Blk Angus &amp; Blk Balancer Bulls &amp; start calving August 10th.</li>\n<li><b>Tiffany Farms: </b><b>11</b> Blk-Bwf 3-7 yr. cows w/ 250lbs calves at side</li>\n<li><b>Rich Hue Farms: </b><b>20</b> Blk 2 yr. old Angus fall calving heifers, 1050lbs. Start calving Sept. 1st for 90 days. Bred to LBWT Blk Angus Sutphin bulls</li>\n<li><b>Philips Farms: </b><b>40 </b>Â Blk-Bwf 3-5 yr. old fall calving cows. Bred Miller Angus Bulls.</li>\n<li><b>Wright Farms: </b><b>15 </b>Â Blk 3-5 yr. old fall calving cows. Bred Reg. Angus or Balancer Bulls. Start calving Sept. 1st for 60 days</li>\n<li><b>Wieligman Farms: </b><b>35 </b>Â Blk-Bwf 4-6 yr. old cows w/ Feb. calves at side. Ear tagged to match, cows sell open &amp; nice set of spring pairs.</li>\n<li><b>James Farms: </b><b>35 </b>Â Blk 5-SS cows w/ 5 calves at side remaining 2nd &amp; 3rd period.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-05-16 16:50:27','2022-05-16 16:50:27','',2209,'https://kingsvillelivestock.com/?p=4346',0,'revision','',0),(4347,2,'2022-05-16 16:51:14','2022-05-16 16:51:14','','May 21, 2022 Cow Sale','','inherit','closed','closed','','may-21-2022-cow-sale-3','','','2022-05-16 16:51:14','2022-05-16 16:51:14','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(4348,2,'2022-05-16 16:51:23','2022-05-16 16:51:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4347\">May 21, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-16 16:51:23','2022-05-16 16:51:23','',639,'https://kingsvillelivestock.com/?p=4348',0,'revision','',0),(4349,2,'2022-05-16 16:52:12','2022-05-16 16:52:12','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May.21st @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4347\">May 21, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-16 16:52:12','2022-05-16 16:52:12','',1967,'https://kingsvillelivestock.com/?p=4349',0,'revision','',0),(4350,2,'2022-05-16 16:53:01','2022-05-16 16:53:01','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">Memorial Day Sale Flyer-</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">May 29th &amp; 30th, 2022 </a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">-9am-Kingsville,MO</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-05-16 16:53:01','2022-05-16 16:53:01','',1450,'https://kingsvillelivestock.com/?p=4350',0,'revision','',0),(4351,2,'2022-05-16 18:10:49','2022-05-16 18:10:49','','Tuesday,May 17th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymay-17th-feeder-cattle-consignments','','','2022-05-16 18:10:49','2022-05-16 18:10:49','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-17th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4352,2,'2022-05-16 18:11:10','2022-05-16 18:11:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-17th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4351\">Tuesday,May 17th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday, May 21st @ 11am in conjunction w/ Show-Me-Select Bred Heifers</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Selling 125 hd of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Copenhaver Farms: </b><b>1 </b>Bwf Simmental Bull. AI sired w/ 78lbs BW &amp; 825 WW</li>\n<li><b>Cooper Farms: </b><b>2 </b>18 month old Blk Sim-Angus Bulls out of Lucas Genetics</li>\n<li><b>Complete Dispersal Scott Farms: </b><b>1 </b>2 yr. month old Red Angus Bull. Semen &amp; Trich tested &amp; ready to be turned out</li>\n<li><b>Daniel Farms: </b><b>10</b> 18 month old Reg. Blk Angus bulls. Semen &amp; trich tested, had all shots &amp; ready to be turned out</li>\n<li><b>Gross Farms: </b><b>1</b> 2 yr. old Reg. Blk Angus bull</li>\n<li><b>Kanoy Farms: </b><b>1</b> 20 month old Horned Hereford bull <b>2 </b>18 month old Blk Simmental bulls</li>\n<li><b>White Farms: </b><b>2</b> 18 month old Red Balancer Seedstock bulls.</li>\n<li><b>James Farms: </b><b>2 </b>Â 5 yr. old Blk Angus bulls</li>\n<li><b>ATA Farms: </b><b>3 </b>Â 3 yr. old Blk Angus bulls. Semen &amp; trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Pritchard Farms: </b><b>35 </b>Red Angus 3-4 yr. old fall calving cows. Bred Schweitzer Red Angus Bulls</li>\n<li><b>Double J Farms: </b><b>15 </b>Red Angus heifer pairs 1200lbs w/ 175lbs calves at side. Ear tagged to match &amp; had 1 rd. shots, gentle set of heifers.</li>\n<li><b>Mershon Farms: </b><b>28 </b>Â Blk-Bwf 2 yr. old heifer pairs w/ 175lbs calves at side. <b>12 </b>Red 2 yr. old heifer pairs w/ 175lbs calves at side. All heifers are Show-Me-Select qualified</li>\n<li><b>Complete Dispersal Scott Farms: </b><b>25 </b>Red Angus 3-6 yr. old fall calving cows. Bred Red Angus Bull &amp; had all shots. Calves been weaned off cows for 45 days &amp; gentle set of cows</li>\n<li><b>Morrison Farms: </b><b>10</b> Bwf 2 yr. old bred heifers, 1100lbs &amp; 3rd period. Bred LBWT Seedstock Blk Balancer Bulls. Heifers were pelvic measured prior to breeding &amp; had all shots.</li>\n<li><b>J-K Farms: </b><b>45</b> Blk-Bwf 3-6 yr. old fall calving cows. Bred to Blk Angus Bulls. Cows were wormed/poured 35 days ago. Cows weaned off a big set of calves, good quality.</li>\n<li><b>Stevenson Farms: </b><b>10</b> Blk-Bwf 3-6 yr. cows w/ 45 day old Angus calves at side. Ear tagged to match &amp; cows sell open.</li>\n<li><b>Anderson Farms: </b><b>35</b> Blk-Bwf 3-5 yr. cows, 3rd period. Bred Blk Angus Bulls</li>\n<li><b>Ghee Farms: </b><b>30</b> Blk-Bwf 3-4 yr. fall calving cows, 2nd period <b>30</b> Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. Cows bred to Blk Angus &amp; Blk Balancer Bulls &amp; start calving August 10th.</li>\n<li><b>Tiffany Farms: </b><b>11</b> Blk-Bwf 3-7 yr. cows w/ 250lbs calves at side</li>\n<li><b>Rich Hue Farms: </b><b>20</b> Blk 2 yr. old Angus fall calving heifers, 1050lbs. Start calving Sept. 1st for 90 days. Bred to LBWT Blk Angus Sutphin bulls</li>\n<li><b>Philips Farms: </b><b>40 </b>Â Blk-Bwf 3-5 yr. old fall calving cows. Bred Miller Angus Bulls.</li>\n<li><b>Wright Farms: </b><b>15 </b>Â Blk 3-5 yr. old fall calving cows. Bred Reg. Angus or Balancer Bulls. Start calving Sept. 1st for 60 days</li>\n<li><b>Wieligman Farms: </b><b>35 </b>Â Blk-Bwf 4-6 yr. old cows w/ Feb. calves at side. Ear tagged to match, cows sell open &amp; nice set of spring pairs.</li>\n<li><b>James Farms: </b><b>35 </b>Â Blk 5-SS cows w/ 5 calves at side remaining 2nd &amp; 3rd period.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-05-16 18:11:10','2022-05-16 18:11:10','',2209,'https://kingsvillelivestock.com/?p=4352',0,'revision','',0),(4353,2,'2022-05-18 14:04:14','2022-05-18 14:04:14','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.21st @ 11:00 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4347\">May 21, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-18 14:04:14','2022-05-18 14:04:14','',639,'https://kingsvillelivestock.com/?p=4353',0,'revision','',0),(4354,2,'2022-05-18 14:05:06','2022-05-18 14:05:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.21st @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4347\">May 21, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:00 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-18 14:05:06','2022-05-18 14:05:06','',1967,'https://kingsvillelivestock.com/?p=4354',0,'revision','',0),(4355,2,'2022-05-18 15:50:33','2022-05-18 15:50:33','','Memorial Day 2022 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2022-detailed-consignment-list','','','2022-05-18 15:50:33','2022-05-18 15:50:33','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List.pdf',0,'attachment','application/pdf',0),(4356,2,'2022-05-18 15:51:00','2022-05-18 15:51:00','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">Memorial Day Sale Flyer-</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">May 29th &amp; 30th, 2022 </a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">-9am-Kingsville,MO</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List.pdf\" rel=\"attachment wp-att-4355\">Memorial Day 2022 Detailed Consignment List</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-05-18 15:51:00','2022-05-18 15:51:00','',1450,'https://kingsvillelivestock.com/?p=4356',0,'revision','',0),(4357,2,'2022-05-18 16:34:43','2022-05-18 16:34:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 17, 2022</strong> 2229 hd; Last week; 2127 hd; a year ago 1531.Feeder cattle sold fully steady, except steers sold $2-$4 higher.Â  Slaughter cows &amp; bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$222.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$178.00-$221.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$166.00-$200.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$166.00-$193.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$174.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$153.50-$156.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$147.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$181.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$132.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$80.00 - $90.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$92.00 - $117.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">689lbs @$181.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">970lbs @$144.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">725lbs @$154.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">750lbs @$150.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 17, 2022 - Market Report','','publish','closed','open','','may-17-2022-market-report','','','2022-05-18 16:34:47','2022-05-18 16:34:47','',0,'https://kingsvillelivestock.com/?p=4357',0,'post','',0),(4359,2,'2022-05-18 16:34:43','2022-05-18 16:34:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 17, 2022</strong> 2229 hd; Last week; 2127 hd; a year ago 1531.Feeder cattle sold fully steady, except steers sold $2-$4 higher.Â  Slaughter cows &amp; bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$222.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$178.00-$221.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$166.00-$200.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$166.00-$193.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$174.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$153.50-$156.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$147.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$181.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$132.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$80.00 - $90.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$92.00 - $117.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">689lbs @$181.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">970lbs @$144.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">725lbs @$154.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">750lbs @$150.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 17, 2022 - Market Report','','inherit','closed','closed','','4357-revision-v1','','','2022-05-18 16:34:43','2022-05-18 16:34:43','',4357,'https://kingsvillelivestock.com/?p=4359',0,'revision','',0),(4360,2,'2022-05-18 16:34:43','2022-05-18 16:34:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 17, 2022</strong> 2229 hd; Last week; 2127 hd; a year ago 1531.Feeder cattle sold fully steady, except steers sold $2-$4 higher.Â  Slaughter cows &amp; bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$222.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$178.00-$221.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$166.00-$200.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$166.00-$193.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$174.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$153.50-$156.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$147.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$181.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$132.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$80.00 - $90.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$92.00 - $117.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">689lbs @$181.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">970lbs @$144.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">725lbs @$154.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">750lbs @$150.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 10, 2022 - Market Report','','inherit','closed','closed','','4357-revision-v1','','','2022-05-18 16:34:43','2022-05-18 16:34:43','',4357,'https://kingsvillelivestock.com/?p=4360',0,'revision','',0),(4361,2,'2022-05-18 16:34:47','2022-05-18 16:34:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 17, 2022</strong> 2229 hd; Last week; 2127 hd; a year ago 1531.Feeder cattle sold fully steady, except steers sold $2-$4 higher.Â  Slaughter cows &amp; bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$222.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$178.00-$221.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$166.00-$200.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$166.00-$193.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$174.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$153.50-$156.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$147.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$181.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$154.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$132.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$80.00 - $90.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $67.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$92.00 - $117.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">689lbs @$181.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">970lbs @$144.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">725lbs @$154.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">750lbs @$150.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 17, 2022 - Market Report','','inherit','closed','closed','','4357-revision-v1','','','2022-05-18 16:34:47','2022-05-18 16:34:47','',4357,'https://kingsvillelivestock.com/?p=4361',0,'revision','',0),(4362,2,'2022-05-18 16:35:35','2022-05-18 16:35:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.21st @ 11:00 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4347\">May 21, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-18 16:35:35','2022-05-18 16:35:35','',639,'https://kingsvillelivestock.com/?p=4362',0,'revision','',0),(4363,2,'2022-05-18 16:36:28','2022-05-18 16:36:28','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.21st @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4347\">May 21, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-18 16:36:28','2022-05-18 16:36:28','',1967,'https://kingsvillelivestock.com/?p=4363',0,'revision','',0),(4365,2,'2022-05-20 22:25:34','2022-05-20 22:25:34','','2022 Fall Calving SMS Sale Order','','inherit','closed','closed','','2022-fall-calving-sms-sale-order','','','2022-05-20 22:25:34','2022-05-20 22:25:34','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Fall-Calving-SMS-Sale-Order.pdf',0,'attachment','application/pdf',0);
INSERT INTO `b78GM7Ml_posts` VALUES (4366,2,'2022-05-20 22:26:10','2022-05-20 22:26:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.21st @ 11:00 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4347\">May 21, 2022 Cow SaleÂ  Â </a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Fall-Calving-SMS-Sale-Order.pdf\" rel=\"attachment wp-att-4365\">2022 Fall Calving SMS Sale Order</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog </a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-20 22:26:10','2022-05-20 22:26:10','',639,'https://kingsvillelivestock.com/?p=4366',0,'revision','',0),(4367,2,'2022-05-20 22:26:47','2022-05-20 22:26:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><strong>May.21st @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/May-21-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4347\">May 21, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjuncation w/ Show-Me-Select bred heifers<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Fall-Calving-SMS-Sale-Order.pdf\" rel=\"attachment wp-att-4365\">2022 Fall Calving SMS Sale Order</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-fall-calving-catalog-1.pdf\" rel=\"attachment wp-att-4308\">2022 fall calving SMS catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-20 22:26:47','2022-05-20 22:26:47','',1967,'https://kingsvillelivestock.com/?p=4367',0,'revision','',0),(4368,2,'2022-05-23 17:27:45','2022-05-23 17:27:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-23 17:27:45','2022-05-23 17:27:45','',639,'https://kingsvillelivestock.com/?p=4368',0,'revision','',0),(4369,2,'2022-05-23 17:28:43','2022-05-23 17:28:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>May. 24th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-23 17:28:43','2022-05-23 17:28:43','',1967,'https://kingsvillelivestock.com/?p=4369',0,'revision','',0),(4370,2,'2022-05-23 17:29:33','2022-05-23 17:29:33','','Tuesday,May 24th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymay-24th-feeder-cattle-consignments','','','2022-05-23 17:29:33','2022-05-23 17:29:33','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-24th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4371,2,'2022-05-23 17:30:51','2022-05-23 17:30:51','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-24th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4370\">Tuesday,May 24th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.3\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday, May 21st @ 11am in conjunction w/ Show-Me-Select Bred Heifers</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Selling 125 hd of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Copenhaver Farms: </b><b>1 </b>Bwf Simmental Bull. AI sired w/ 78lbs BW &amp; 825 WW</li>\n<li><b>Cooper Farms: </b><b>2 </b>18 month old Blk Sim-Angus Bulls out of Lucas Genetics</li>\n<li><b>Complete Dispersal Scott Farms: </b><b>1 </b>2 yr. month old Red Angus Bull. Semen &amp; Trich tested &amp; ready to be turned out</li>\n<li><b>Daniel Farms: </b><b>10</b> 18 month old Reg. Blk Angus bulls. Semen &amp; trich tested, had all shots &amp; ready to be turned out</li>\n<li><b>Gross Farms: </b><b>1</b> 2 yr. old Reg. Blk Angus bull</li>\n<li><b>Kanoy Farms: </b><b>1</b> 20 month old Horned Hereford bull <b>2 </b>18 month old Blk Simmental bulls</li>\n<li><b>White Farms: </b><b>2</b> 18 month old Red Balancer Seedstock bulls.</li>\n<li><b>James Farms: </b><b>2 </b>Â 5 yr. old Blk Angus bulls</li>\n<li><b>ATA Farms: </b><b>3 </b>Â 3 yr. old Blk Angus bulls. Semen &amp; trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Pritchard Farms: </b><b>35 </b>Red Angus 3-4 yr. old fall calving cows. Bred Schweitzer Red Angus Bulls</li>\n<li><b>Double J Farms: </b><b>15 </b>Red Angus heifer pairs 1200lbs w/ 175lbs calves at side. Ear tagged to match &amp; had 1 rd. shots, gentle set of heifers.</li>\n<li><b>Mershon Farms: </b><b>28 </b>Â Blk-Bwf 2 yr. old heifer pairs w/ 175lbs calves at side. <b>12 </b>Red 2 yr. old heifer pairs w/ 175lbs calves at side. All heifers are Show-Me-Select qualified</li>\n<li><b>Complete Dispersal Scott Farms: </b><b>25 </b>Red Angus 3-6 yr. old fall calving cows. Bred Red Angus Bull &amp; had all shots. Calves been weaned off cows for 45 days &amp; gentle set of cows</li>\n<li><b>Morrison Farms: </b><b>10</b> Bwf 2 yr. old bred heifers, 1100lbs &amp; 3rd period. Bred LBWT Seedstock Blk Balancer Bulls. Heifers were pelvic measured prior to breeding &amp; had all shots.</li>\n<li><b>J-K Farms: </b><b>45</b> Blk-Bwf 3-6 yr. old fall calving cows. Bred to Blk Angus Bulls. Cows were wormed/poured 35 days ago. Cows weaned off a big set of calves, good quality.</li>\n<li><b>Stevenson Farms: </b><b>10</b> Blk-Bwf 3-6 yr. cows w/ 45 day old Angus calves at side. Ear tagged to match &amp; cows sell open.</li>\n<li><b>Anderson Farms: </b><b>35</b> Blk-Bwf 3-5 yr. cows, 3rd period. Bred Blk Angus Bulls</li>\n<li><b>Ghee Farms: </b><b>30</b> Blk-Bwf 3-4 yr. fall calving cows, 2nd period <b>30</b> Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. Cows bred to Blk Angus &amp; Blk Balancer Bulls &amp; start calving August 10th.</li>\n<li><b>Tiffany Farms: </b><b>11</b> Blk-Bwf 3-7 yr. cows w/ 250lbs calves at side</li>\n<li><b>Rich Hue Farms: </b><b>20</b> Blk 2 yr. old Angus fall calving heifers, 1050lbs. Start calving Sept. 1st for 90 days. Bred to LBWT Blk Angus Sutphin bulls</li>\n<li><b>Philips Farms: </b><b>40 </b>Â Blk-Bwf 3-5 yr. old fall calving cows. Bred Miller Angus Bulls.</li>\n<li><b>Wright Farms: </b><b>15 </b>Â Blk 3-5 yr. old fall calving cows. Bred Reg. Angus or Balancer Bulls. Start calving Sept. 1st for 60 days</li>\n<li><b>Wieligman Farms: </b><b>35 </b>Â Blk-Bwf 4-6 yr. old cows w/ Feb. calves at side. Ear tagged to match, cows sell open &amp; nice set of spring pairs.</li>\n<li><b>James Farms: </b><b>35 </b>Â Blk 5-SS cows w/ 5 calves at side remaining 2nd &amp; 3rd period.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-05-23 17:30:51','2022-05-23 17:30:51','',2209,'https://kingsvillelivestock.com/?p=4371',0,'revision','',0),(4372,2,'2022-05-23 18:10:38','2022-05-23 18:10:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-24th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4370\">Tuesday,May 24th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale,Friday, June 17th @ 5:30 pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 5:30 pm</i></b></p>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Combs Farms: </b><b>46 </b>Blk-Bwf 7-SS fall calving cows. Bred Blk Angus bulls. Good set of middle aged cowsÂ  &amp; had all shots. Cows weaned off 635lbs calves.Â </li>\n<li><b>Complete Dispersal GB Woosley Farms: </b><b>50 </b>Blk-Bwf 6-SS fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Mead Farms: </b><b>4 </b>Blk 4 yr. old cows w/ 200lbs calves at side. <b>26</b> Blk-Bwf 3-4 yr. old cows, 3rd period. Bred Blk. Angus bulls &amp;Â  all coming 2nd calf.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Williams Farms: </b><b>20 </b>Blk 3-4 yr. old cows w/ AI sired calves at side. Ear tagged to match. 40 Blk 3-4 yr. old cows, 3rd period. AIâ€™d to Angus bulls &amp; cleaned up w/ Reg. Angus bulls. Cows are gentle &amp; broke to feed truck.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Edmiston Farms: </b><b>25 </b>Red Angus 3-5 yr. old fall calving cows, 2nd period. Bred Reg &amp; Blk Angus bulls. Start calving Aug. 15th, gentle set of cows that have had all shots.</li>\n<li><b>Dillon Farms: </b><b>35 </b>Blk 3-4yr. old cows, 2nd &amp; 3rd period. <b>35</b> Blk 5-6 yr. old cows, 2nd &amp; 3rd period.<b> 14 </b>Bwf 3-5 yr. old cows, 2nd &amp; 3rd period. All cows bred Blk. Angus bulls. Cows have had all shots &amp; calves were weaned off April 10th.</li>\n<li><b>Webb Farms: </b><b>50 </b>Blk-Bwf 3-5 yr. old cows,2nd period. Bred Blk Angus bulls. Start calving Aug. 20th</li>\n<li><b>Carroll Farms: </b><b>38 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Balancer &amp; Blk Angus bulls</li>\n<li><b>Teeter Farms: </b><b>11 </b>Blk-Bwf 3-7 yr. old cows w/ 200lbs calves at side.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-05-23 18:10:38','2022-05-23 18:10:38','',2209,'https://kingsvillelivestock.com/?p=4372',0,'revision','',0),(4373,2,'2022-05-23 19:08:30','2022-05-23 19:08:30','','Memorial Day 2022 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2022-detailed-consignment-list-2','','','2022-05-23 19:08:30','2022-05-23 19:08:30','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-1.pdf',0,'attachment','application/pdf',0),(4374,2,'2022-05-23 19:08:48','2022-05-23 19:08:48','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">Memorial Day Sale Flyer-</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">May 29th &amp; 30th, 2022 </a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">-9am-Kingsville,MO</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-1.pdf\" rel=\"attachment wp-att-4373\">Memorial Day 2022 Detailed Consignment List</a>Â  Â updated list on 5-23</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-05-23 19:08:48','2022-05-23 19:08:48','',1450,'https://kingsvillelivestock.com/?p=4374',0,'revision','',0),(4375,2,'2022-05-23 19:34:57','2022-05-23 19:34:57','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">Memorial Day Sale Flyer-</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">May 29th &amp; 30th, 2022 </a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">-9am-Kingsville,MO</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-1.pdf\" rel=\"attachment wp-att-4373\">Memorial Day 2022 Detailed Consignment List</a>Â  Â updated list on 5-23</p>\n<p><a href=\"https://drive.google.com/file/d/1WDknRDGd0bMnc3-ZzG5pJBB1q1mb3AUz/view?usp=sharing\">Memorial Weekend Photos </a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-05-23 19:34:57','2022-05-23 19:34:57','',1450,'https://kingsvillelivestock.com/?p=4375',0,'revision','',0),(4376,2,'2022-05-23 20:27:35','2022-05-23 20:27:35','','Tuesday,May 24th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymay-24th-feeder-cattle-consignments-2','','','2022-05-23 20:27:35','2022-05-23 20:27:35','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-24th-Feeder-Cattle-Consignments-1.pdf',0,'attachment','application/pdf',0),(4377,2,'2022-05-23 20:27:43','2022-05-23 20:27:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-24th-Feeder-Cattle-Consignments-1.pdf\" rel=\"attachment wp-att-4376\">Tuesday,May 24th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale,Friday, June 17th @ 5:30 pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 5:30 pm</i></b></p>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Combs Farms: </b><b>46 </b>Blk-Bwf 7-SS fall calving cows. Bred Blk Angus bulls. Good set of middle aged cowsÂ  &amp; had all shots. Cows weaned off 635lbs calves.Â </li>\n<li><b>Complete Dispersal GB Woosley Farms: </b><b>50 </b>Blk-Bwf 6-SS fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Mead Farms: </b><b>4 </b>Blk 4 yr. old cows w/ 200lbs calves at side. <b>26</b> Blk-Bwf 3-4 yr. old cows, 3rd period. Bred Blk. Angus bulls &amp;Â  all coming 2nd calf.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Williams Farms: </b><b>20 </b>Blk 3-4 yr. old cows w/ AI sired calves at side. Ear tagged to match. 40 Blk 3-4 yr. old cows, 3rd period. AIâ€™d to Angus bulls &amp; cleaned up w/ Reg. Angus bulls. Cows are gentle &amp; broke to feed truck.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Edmiston Farms: </b><b>25 </b>Red Angus 3-5 yr. old fall calving cows, 2nd period. Bred Reg &amp; Blk Angus bulls. Start calving Aug. 15th, gentle set of cows that have had all shots.</li>\n<li><b>Dillon Farms: </b><b>35 </b>Blk 3-4yr. old cows, 2nd &amp; 3rd period. <b>35</b> Blk 5-6 yr. old cows, 2nd &amp; 3rd period.<b> 14 </b>Bwf 3-5 yr. old cows, 2nd &amp; 3rd period. All cows bred Blk. Angus bulls. Cows have had all shots &amp; calves were weaned off April 10th.</li>\n<li><b>Webb Farms: </b><b>50 </b>Blk-Bwf 3-5 yr. old cows,2nd period. Bred Blk Angus bulls. Start calving Aug. 20th</li>\n<li><b>Carroll Farms: </b><b>38 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Balancer &amp; Blk Angus bulls</li>\n<li><b>Teeter Farms: </b><b>11 </b>Blk-Bwf 3-7 yr. old cows w/ 200lbs calves at side.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-05-23 20:27:43','2022-05-23 20:27:43','',2209,'https://kingsvillelivestock.com/?p=4377',0,'revision','',0),(4378,2,'2022-05-25 15:19:19','2022-05-25 15:19:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 24, 2022</strong> 2702 hd; Last week; 2229 hd; a year ago 2380.Feeder cattle sold steady-$2 higher. Slaughter cows &amp; bulls sold steady-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$229.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$203.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.25-$147.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$135.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$127.50-$132.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$84.00 - $98.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $83.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$88.00 - $118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">597lbs @$195.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">778lbs @$159.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">808lbs @$160.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">925lbs @$147.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$154.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">789lbs @$145.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 24, 2022 - Market Report','','publish','closed','open','','may-24-2022-market-report','','','2022-05-25 15:19:23','2022-05-25 15:19:23','',0,'https://kingsvillelivestock.com/?p=4378',0,'post','',0),(4380,2,'2022-05-25 15:19:19','2022-05-25 15:19:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 24, 2022</strong> 2702 hd; Last week; 2229 hd; a year ago 2380.Feeder cattle sold steady-$2 higher. Slaughter cows &amp; bulls sold steady-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$229.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$203.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.25-$147.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$135.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$127.50-$132.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$84.00 - $98.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $83.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$88.00 - $118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">597lbs @$195.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">778lbs @$159.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">808lbs @$160.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">925lbs @$147.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$154.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">789lbs @$145.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 24, 2022 - Market Report','','inherit','closed','closed','','4378-revision-v1','','','2022-05-25 15:19:19','2022-05-25 15:19:19','',4378,'https://kingsvillelivestock.com/?p=4380',0,'revision','',0),(4381,2,'2022-05-25 15:19:19','2022-05-25 15:19:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 24, 2022</strong> 2702 hd; Last week; 2229 hd; a year ago 2380.Feeder cattle sold steady-$2 higher. Slaughter cows &amp; bulls sold steady-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$229.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$203.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.25-$147.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$135.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$127.50-$132.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$84.00 - $98.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $83.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$88.00 - $118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">597lbs @$195.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">778lbs @$159.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">808lbs @$160.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">925lbs @$147.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$154.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">789lbs @$145.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 17, 2022 - Market Report','','inherit','closed','closed','','4378-revision-v1','','','2022-05-25 15:19:19','2022-05-25 15:19:19','',4378,'https://kingsvillelivestock.com/?p=4381',0,'revision','',0),(4382,2,'2022-05-25 15:19:23','2022-05-25 15:19:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 24, 2022</strong> 2702 hd; Last week; 2229 hd; a year ago 2380.Feeder cattle sold steady-$2 higher. Slaughter cows &amp; bulls sold steady-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$229.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$203.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$163.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.25-$147.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$166.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$155.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$135.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$127.50-$132.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$84.00 - $98.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $83.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$88.00 - $118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">597lbs @$195.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">778lbs @$159.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">808lbs @$160.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">925lbs @$147.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">720lbs @$154.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 46px;\">789lbs @$145.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 24, 2022 - Market Report','','inherit','closed','closed','','4378-revision-v1','','','2022-05-25 15:19:23','2022-05-25 15:19:23','',4378,'https://kingsvillelivestock.com/?p=4382',0,'revision','',0),(4383,2,'2022-05-25 15:20:26','2022-05-25 15:20:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-25 15:20:26','2022-05-25 15:20:26','',639,'https://kingsvillelivestock.com/?p=4383',0,'revision','',0),(4384,2,'2022-05-25 15:21:06','2022-05-25 15:21:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-25 15:21:06','2022-05-25 15:21:06','',1967,'https://kingsvillelivestock.com/?p=4384',0,'revision','',0),(4385,2,'2022-05-25 18:27:49','2022-05-25 18:27:49','','Memorial Day 2022 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2022-detailed-consignment-list-3','','','2022-05-25 18:27:49','2022-05-25 18:27:49','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-2.pdf',0,'attachment','application/pdf',0),(4386,2,'2022-05-25 18:28:03','2022-05-25 18:28:03','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">Memorial Day Sale Flyer-</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">May 29th &amp; 30th, 2022 </a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">-9am-Kingsville,MO</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-1.pdf\" rel=\"attachment wp-att-4373\"></a>Â  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-2.pdf\" rel=\"attachment wp-att-4385\">Memorial Day 2022 Detailed Consignment List</a>Â  updated list on 5-24</p>\n<p><a href=\"https://drive.google.com/file/d/1WDknRDGd0bMnc3-ZzG5pJBB1q1mb3AUz/view?usp=sharing\">Memorial Weekend Photos </a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-05-25 18:28:03','2022-05-25 18:28:03','',1450,'https://kingsvillelivestock.com/?p=4386',0,'revision','',0),(4387,2,'2022-05-25 18:28:42','2022-05-25 18:28:42','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">Memorial Day Sale Flyer-</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">May 29th &amp; 30th, 2022 </a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">-9am-Kingsville,MO</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-1.pdf\" rel=\"attachment wp-att-4373\"></a>Â  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-2.pdf\" rel=\"attachment wp-att-4385\">Memorial Day 2022 Detailed Consignment List</a>Â  updated list on 5-25</p>\n<p><a href=\"https://drive.google.com/file/d/1WDknRDGd0bMnc3-ZzG5pJBB1q1mb3AUz/view?usp=sharing\">Memorial Weekend Photos </a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-05-25 18:28:42','2022-05-25 18:28:42','',1450,'https://kingsvillelivestock.com/?p=4387',0,'revision','',0),(4389,2,'2022-05-25 20:12:01','2022-05-25 20:12:01','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-25 20:12:01','2022-05-25 20:12:01','',639,'https://kingsvillelivestock.com/?p=4389',0,'revision','',0),(4390,2,'2022-05-25 20:12:37','2022-05-25 20:12:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>May. 29th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 30th @ 9:00 am<br /></strong>Memorial Day Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-25 20:12:37','2022-05-25 20:12:37','',1967,'https://kingsvillelivestock.com/?p=4390',0,'revision','',0),(4391,2,'2022-05-26 19:55:00','2022-05-26 19:55:00','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">Memorial Day Sale Flyer-</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">May 29th &amp; 30th, 2022 </a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">-9am-Kingsville,MO</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-1.pdf\" rel=\"attachment wp-att-4373\"></a>Â  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-2.pdf\" rel=\"attachment wp-att-4385\">Memorial Day 2022 Detailed Consignment List</a>Â  updated list on 5-25</p>\n<p><a href=\"https://drive.google.com/drive/folders/1_xkx9GZbMkOjKB9hLmK6GRkJohfeJfJA?usp=sharing\">Memorial Weekend Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-05-26 19:55:00','2022-05-26 19:55:00','',1450,'https://kingsvillelivestock.com/?p=4391',0,'revision','',0),(4392,2,'2022-05-26 21:34:16','2022-05-26 21:34:16','','Memorial Day 2022 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2022-detailed-consignment-list-4','','','2022-05-26 21:34:16','2022-05-26 21:34:16','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-3.pdf',0,'attachment','application/pdf',0),(4393,2,'2022-05-26 21:34:29','2022-05-26 21:34:29','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">Memorial Day Sale Flyer-</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">May 29th &amp; 30th, 2022 </a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">-9am-Kingsville,MO</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-1.pdf\" rel=\"attachment wp-att-4373\"></a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-2.pdf\" rel=\"attachment wp-att-4385\"></a> <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-3.pdf\" rel=\"attachment wp-att-4392\">Memorial Day 2022 Detailed Consignment List</a> updated list on 5-26</p>\n<p><a href=\"https://drive.google.com/drive/folders/1_xkx9GZbMkOjKB9hLmK6GRkJohfeJfJA?usp=sharing\">Memorial Weekend Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-05-26 21:34:29','2022-05-26 21:34:29','',1450,'https://kingsvillelivestock.com/?p=4393',0,'revision','',0),(4394,2,'2022-05-26 21:44:52','2022-05-26 21:44:52','','Memorial Day 2022 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2022-detailed-consignment-list-5','','','2022-05-26 21:44:52','2022-05-26 21:44:52','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-4.pdf',0,'attachment','application/pdf',0),(4395,2,'2022-05-26 21:45:01','2022-05-26 21:45:01','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">Memorial Day Sale Flyer-</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">May 29th &amp; 30th, 2022 </a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">-9am-Kingsville,MO</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-1.pdf\" rel=\"attachment wp-att-4373\"></a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-4.pdf\" rel=\"attachment wp-att-4394\">Memorial Day 2022 Detailed Consignment List</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-3.pdf\" rel=\"attachment wp-att-4392\"></a> updated list on 5-26</p>\n<p><a href=\"https://drive.google.com/drive/folders/1_xkx9GZbMkOjKB9hLmK6GRkJohfeJfJA?usp=sharing\">Memorial Weekend Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-05-26 21:45:01','2022-05-26 21:45:01','',1450,'https://kingsvillelivestock.com/?p=4395',0,'revision','',0),(4396,2,'2022-05-26 21:48:32','2022-05-26 21:48:32','','Memorial Day 2022 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2022-detailed-consignment-list-6','','','2022-05-26 21:48:32','2022-05-26 21:48:32','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-5.pdf',0,'attachment','application/pdf',0),(4397,2,'2022-05-26 21:48:44','2022-05-26 21:48:44','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">Memorial Day Sale Flyer-</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">May 29th &amp; 30th, 2022 </a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/2022-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4331\">-9am-Kingsville,MO</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-1.pdf\" rel=\"attachment wp-att-4373\"></a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-4.pdf\" rel=\"attachment wp-att-4394\"></a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-3.pdf\" rel=\"attachment wp-att-4392\"></a> <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/Memorial-Day-2022-Detailed-Consignment-List-5.pdf\" rel=\"attachment wp-att-4396\">Memorial Day 2022 Detailed Consignment List </a>updated list on 5-26</p>\n<p><a href=\"https://drive.google.com/drive/folders/1_xkx9GZbMkOjKB9hLmK6GRkJohfeJfJA?usp=sharing\">Memorial Weekend Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-05-26 21:48:44','2022-05-26 21:48:44','',1450,'https://kingsvillelivestock.com/?p=4397',0,'revision','',0),(4399,2,'2022-05-30 13:56:22','2022-05-30 13:56:22','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-24th-Feeder-Cattle-Consignments-1.pdf\" rel=\"attachment wp-att-4376\">Tuesday,May 24th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale,Friday, June 17th @ 5:30 pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 5:30 pm</i></b></p>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Combs Farms: </b><b>46 </b>Blk-Bwf 7-SS fall calving cows. Bred Blk Angus bulls. Good set of middle aged cowsÂ  &amp; had all shots. Cows weaned off 635lbs calves.</li>\n<li><b>Complete Dispersal GB Woosley Farms: </b><b>50 </b>Blk-Bwf 6-SS fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Mead Farms: </b><b>4 </b>Blk 4 yr. old cows w/ 200lbs calves at side. <b>26</b> Blk-Bwf 3-4 yr. old cows, 3rd period. Bred Blk. Angus bulls &amp;Â  all coming 2nd calf.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Williams Farms: </b><b>20 </b>Blk 3-4 yr. old cows w/ AI sired calves at side. Ear tagged to match. 40 Blk 3-4 yr. old cows, 3rd period. AIâ€™d to Angus bulls &amp; cleaned up w/ Reg. Angus bulls. Cows are gentle &amp; broke to feed truck.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Edmiston Farms: </b><b>25 </b>Red Angus 3-5 yr. old fall calving cows, 2nd period. Bred Reg &amp; Blk Angus bulls. Start calving Aug. 15th, gentle set of cows that have had all shots.</li>\n<li><b>Dillon Farms: </b><b>35 </b>Blk 3-4yr. old cows, 2nd &amp; 3rd period. <b>35</b> Blk 5-6 yr. old cows, 2nd &amp; 3rd period.<b> 14 </b>Bwf 3-5 yr. old cows, 2nd &amp; 3rd period. All cows bred Blk. Angus bulls. Cows have had all shots &amp; calves were weaned off April 10th.</li>\n<li><b>Webb Farms: </b><b>50 </b>Blk-Bwf 3-5 yr. old cows,2nd period. Bred Blk Angus bulls. Start calving Aug. 20th</li>\n<li><b>Carroll Farms: </b><b>38 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Balancer &amp; Blk Angus bulls</li>\n<li><b>Teeter Farms: </b><b>11 </b>Blk-Bwf 3-7 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Conrow Farms: </b><b>9 </b>Blk Angus 2 yr. old heifer pairs w/ spring calves at side. <b>1 </b>Red Angus 2 yr. old heifer pair w/ spring calf at side.</li>\n<li><b>Hendrick Farms: </b><b>30 </b>Blk Angus 6-SS fall calving cows, 2nd period. Bred to Blk Angus Bulls</li>\n<li><b>Lacey Farms: </b><b>5 </b>Blk Angus 6-7 yr. oldÂ  fall calving cows, 2nd period. Bred to Red Angus bulls &amp; start calving October 1st. All cows have been fly tagged &amp; had all shots, nice set of cows.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-05-30 13:56:22','2022-05-30 13:56:22','',2209,'https://kingsvillelivestock.com/?p=4399',0,'revision','',0),(4400,2,'2022-05-30 17:36:59','2022-05-30 17:36:59','','Tuesday,May 31st Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymay-31st-feeder-cattle-consignments','','','2022-05-30 17:36:59','2022-05-30 17:36:59','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-31st-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4401,2,'2022-05-30 17:37:14','2022-05-30 17:37:14','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-31st-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4400\">Tuesday,May 31st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale,Friday, June 17th @ 5:30 pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 5:30 pm</i></b></p>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Combs Farms: </b><b>46 </b>Blk-Bwf 7-SS fall calving cows. Bred Blk Angus bulls. Good set of middle aged cowsÂ  &amp; had all shots. Cows weaned off 635lbs calves.</li>\n<li><b>Complete Dispersal GB Woosley Farms: </b><b>50 </b>Blk-Bwf 6-SS fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Mead Farms: </b><b>4 </b>Blk 4 yr. old cows w/ 200lbs calves at side. <b>26</b> Blk-Bwf 3-4 yr. old cows, 3rd period. Bred Blk. Angus bulls &amp;Â  all coming 2nd calf.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Williams Farms: </b><b>20 </b>Blk 3-4 yr. old cows w/ AI sired calves at side. Ear tagged to match. 40 Blk 3-4 yr. old cows, 3rd period. AIâ€™d to Angus bulls &amp; cleaned up w/ Reg. Angus bulls. Cows are gentle &amp; broke to feed truck.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Edmiston Farms: </b><b>25 </b>Red Angus 3-5 yr. old fall calving cows, 2nd period. Bred Reg &amp; Blk Angus bulls. Start calving Aug. 15th, gentle set of cows that have had all shots.</li>\n<li><b>Dillon Farms: </b><b>35 </b>Blk 3-4yr. old cows, 2nd &amp; 3rd period. <b>35</b> Blk 5-6 yr. old cows, 2nd &amp; 3rd period.<b> 14 </b>Bwf 3-5 yr. old cows, 2nd &amp; 3rd period. All cows bred Blk. Angus bulls. Cows have had all shots &amp; calves were weaned off April 10th.</li>\n<li><b>Webb Farms: </b><b>50 </b>Blk-Bwf 3-5 yr. old cows,2nd period. Bred Blk Angus bulls. Start calving Aug. 20th</li>\n<li><b>Carroll Farms: </b><b>38 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Balancer &amp; Blk Angus bulls</li>\n<li><b>Teeter Farms: </b><b>11 </b>Blk-Bwf 3-7 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Conrow Farms: </b><b>9 </b>Blk Angus 2 yr. old heifer pairs w/ spring calves at side. <b>1 </b>Red Angus 2 yr. old heifer pair w/ spring calf at side.</li>\n<li><b>Hendrick Farms: </b><b>30 </b>Blk Angus 6-SS fall calving cows, 2nd period. Bred to Blk Angus Bulls</li>\n<li><b>Lacey Farms: </b><b>5 </b>Blk Angus 6-7 yr. oldÂ  fall calving cows, 2nd period. Bred to Red Angus bulls &amp; start calving October 1st. All cows have been fly tagged &amp; had all shots, nice set of cows.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-05-30 17:37:14','2022-05-30 17:37:14','',2209,'https://kingsvillelivestock.com/?p=4401',0,'revision','',0),(4402,2,'2022-05-31 00:08:09','2022-05-31 00:08:09','','Tuesday,May 31st Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymay-31st-feeder-cattle-consignments-2','','','2022-05-31 00:08:09','2022-05-31 00:08:09','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-31st-Feeder-Cattle-Consignments-1.pdf',0,'attachment','application/pdf',0),(4403,2,'2022-05-31 00:08:16','2022-05-31 00:08:16','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-31st-Feeder-Cattle-Consignments-1.pdf\" rel=\"attachment wp-att-4402\">Tuesday,May 31st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale,Friday, June 17th @ 5:30 pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 5:30 pm</i></b></p>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Combs Farms: </b><b>46 </b>Blk-Bwf 7-SS fall calving cows. Bred Blk Angus bulls. Good set of middle aged cowsÂ  &amp; had all shots. Cows weaned off 635lbs calves.</li>\n<li><b>Complete Dispersal GB Woosley Farms: </b><b>50 </b>Blk-Bwf 6-SS fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Mead Farms: </b><b>4 </b>Blk 4 yr. old cows w/ 200lbs calves at side. <b>26</b> Blk-Bwf 3-4 yr. old cows, 3rd period. Bred Blk. Angus bulls &amp;Â  all coming 2nd calf.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Williams Farms: </b><b>20 </b>Blk 3-4 yr. old cows w/ AI sired calves at side. Ear tagged to match. 40 Blk 3-4 yr. old cows, 3rd period. AIâ€™d to Angus bulls &amp; cleaned up w/ Reg. Angus bulls. Cows are gentle &amp; broke to feed truck.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Edmiston Farms: </b><b>25 </b>Red Angus 3-5 yr. old fall calving cows, 2nd period. Bred Reg &amp; Blk Angus bulls. Start calving Aug. 15th, gentle set of cows that have had all shots.</li>\n<li><b>Dillon Farms: </b><b>35 </b>Blk 3-4yr. old cows, 2nd &amp; 3rd period. <b>35</b> Blk 5-6 yr. old cows, 2nd &amp; 3rd period.<b> 14 </b>Bwf 3-5 yr. old cows, 2nd &amp; 3rd period. All cows bred Blk. Angus bulls. Cows have had all shots &amp; calves were weaned off April 10th.</li>\n<li><b>Webb Farms: </b><b>50 </b>Blk-Bwf 3-5 yr. old cows,2nd period. Bred Blk Angus bulls. Start calving Aug. 20th</li>\n<li><b>Carroll Farms: </b><b>38 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Balancer &amp; Blk Angus bulls</li>\n<li><b>Teeter Farms: </b><b>11 </b>Blk-Bwf 3-7 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Conrow Farms: </b><b>9 </b>Blk Angus 2 yr. old heifer pairs w/ spring calves at side. <b>1 </b>Red Angus 2 yr. old heifer pair w/ spring calf at side.</li>\n<li><b>Hendrick Farms: </b><b>30 </b>Blk Angus 6-SS fall calving cows, 2nd period. Bred to Blk Angus Bulls</li>\n<li><b>Lacey Farms: </b><b>5 </b>Blk Angus 6-7 yr. oldÂ  fall calving cows, 2nd period. Bred to Red Angus bulls &amp; start calving October 1st. All cows have been fly tagged &amp; had all shots, nice set of cows.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-05-31 00:08:16','2022-05-31 00:08:16','',2209,'https://kingsvillelivestock.com/?p=4403',0,'revision','',0),(4404,2,'2022-05-31 00:18:17','2022-05-31 00:18:17','','June 17, 2022 Cow Sale','','inherit','closed','closed','','june-17-2022-cow-sale','','','2022-05-31 00:18:17','2022-05-31 00:18:17','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/05/June-17-2022-Cow-Sale.pdf',0,'attachment','application/pdf',0),(4405,2,'2022-05-31 00:18:35','2022-05-31 00:18:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-05-31 00:18:35','2022-05-31 00:18:35','',639,'https://kingsvillelivestock.com/?p=4405',0,'revision','',0),(4406,2,'2022-05-31 00:19:37','2022-05-31 00:19:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>May. 31st @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/June-17-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4404\">June 17, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-05-31 00:19:37','2022-05-31 00:19:37','',1967,'https://kingsvillelivestock.com/?p=4406',0,'revision','',0),(4407,2,'2022-05-31 00:20:38','2022-05-31 00:20:38','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<h1><span style=\"color: #ff00ff;\">Check back for upcoming auctions!Â </span></h1>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-05-31 00:20:38','2022-05-31 00:20:38','',1450,'https://kingsvillelivestock.com/?p=4407',0,'revision','',0),(4408,2,'2022-06-01 14:32:39','2022-06-01 14:32:39','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-31st-Feeder-Cattle-Consignments-1.pdf\" rel=\"attachment wp-att-4402\">Tuesday,May 31st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale,Friday, June 17th @ 5:30 pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 5:30 pm</i></b></p>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Combs Farms: </b><b>46 </b>Blk-Bwf 7-SS fall calving cows. Bred Blk Angus bulls. Good set of middle aged cowsÂ  &amp; had all shots. Cows weaned off 635lbs calves.</li>\n<li><b>Complete Dispersal GB Woosley Farms: </b><b>50 </b>Blk-Bwf 6-SS fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Mead Farms: </b><b>4 </b>Blk 4 yr. old cows w/ 200lbs calves at side. <b>26</b> Blk-Bwf 3-4 yr. old cows, 3rd period. Bred Blk. Angus bulls &amp;Â  all coming 2nd calf.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Williams Farms: </b><b>20 </b>Blk 3-4 yr. old cows w/ AI sired calves at side. Ear tagged to match. 40 Blk 3-4 yr. old cows, 3rd period. AIâ€™d to Angus bulls &amp; cleaned up w/ Reg. Angus bulls. Cows are gentle &amp; broke to feed truck.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Edmiston Farms: </b><b>25 </b>Red Angus 3-5 yr. old fall calving cows, 2nd period. Bred Reg &amp; Blk Angus bulls. Start calving Aug. 15th, gentle set of cows that have had all shots.</li>\n<li><b>Dillon Farms: </b><b>35 </b>Blk 3-4yr. old cows, 2nd &amp; 3rd period. <b>35</b> Blk 5-6 yr. old cows, 2nd &amp; 3rd period.<b> 14 </b>Bwf 3-5 yr. old cows, 2nd &amp; 3rd period. All cows bred Blk. Angus bulls. Cows have had all shots &amp; calves were weaned off April 10th.</li>\n<li><b>Webb Farms: </b><b>50 </b>Blk-Bwf 3-5 yr. old cows,2nd period. Bred Blk Angus bulls. Start calving Aug. 20th</li>\n<li><b>Carroll Farms: </b><b>38 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Balancer &amp; Blk Angus bulls</li>\n<li><b>Teeter Farms: </b><b>11 </b>Blk-Bwf 3-7 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Conrow Farms: </b><b>9 </b>Blk Angus 2 yr. old heifer pairs w/ spring calves at side. <b>1 </b>Red Angus 2 yr. old heifer pair w/ spring calf at side.</li>\n<li><b>Hendrick Farms: </b><b>30 </b>Blk Angus 6-SS fall calving cows, 2nd period. Bred to Blk Angus Bulls</li>\n<li><b>Lacey Farms: </b><b>5 </b>Blk Angus 6-7 yr. oldÂ  fall calving cows, 2nd period. Bred to Red Angus bulls &amp; start calving October 1st. All cows have been fly tagged &amp; had all shots, nice set of cows.</li>\n<li><b>Brown Farms: </b><b>40 </b>Blk-Bwf 3-5 yr. old fall calving cows. Bred Miller Angus bulls</li>\n<li><b>Goosen Farms: </b><b>110 </b>Blk 7-SS fall calving cows. Bred Blk Angus bulls.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-06-01 14:32:39','2022-06-01 14:32:39','',2209,'https://kingsvillelivestock.com/?p=4408',0,'revision','',0),(4409,2,'2022-06-01 14:33:15','2022-06-01 14:33:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-06-01 14:33:15','2022-06-01 14:33:15','',639,'https://kingsvillelivestock.com/?p=4409',0,'revision','',0),(4410,2,'2022-06-01 14:33:58','2022-06-01 14:33:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/June-17-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4404\">June 17, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-06-01 14:33:58','2022-06-01 14:33:58','',1967,'https://kingsvillelivestock.com/?p=4410',0,'revision','',0),(4411,2,'2022-06-01 16:11:51','2022-06-01 16:11:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 31, 2022</strong> 1895 hd; Last week; 2702 hd; a year ago 1848.Steers &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold $2-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$224.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$220.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$162.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$152.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$188.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$164.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$126.00-$148.10</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$82.00 - $95.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $81.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $117.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">871lbs @$152.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">767lbs @$151.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 31, 2022 - Market Report','','publish','closed','open','','may-31-2022-market-report','','','2022-06-01 16:11:55','2022-06-01 16:11:55','',0,'https://kingsvillelivestock.com/?p=4411',0,'post','',0),(4413,2,'2022-06-01 16:11:51','2022-06-01 16:11:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 31, 2022</strong> 1895 hd; Last week; 2702 hd; a year ago 1848.Steers &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold $2-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$224.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$220.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$162.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$152.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$188.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$164.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$126.00-$148.10</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$82.00 - $95.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $81.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $117.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">871lbs @$152.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">767lbs @$151.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 31, 2022 - Market Report','','inherit','closed','closed','','4411-revision-v1','','','2022-06-01 16:11:51','2022-06-01 16:11:51','',4411,'https://kingsvillelivestock.com/?p=4413',0,'revision','',0),(4414,2,'2022-06-01 16:11:51','2022-06-01 16:11:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 31, 2022</strong> 1895 hd; Last week; 2702 hd; a year ago 1848.Steers &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold $2-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$224.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$220.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$162.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$152.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$188.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$164.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$126.00-$148.10</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$82.00 - $95.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $81.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $117.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">871lbs @$152.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">767lbs @$151.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 24, 2022 - Market Report','','inherit','closed','closed','','4411-revision-v1','','','2022-06-01 16:11:51','2022-06-01 16:11:51','',4411,'https://kingsvillelivestock.com/?p=4414',0,'revision','',0),(4415,2,'2022-06-01 16:11:55','2022-06-01 16:11:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 31, 2022</strong> 1895 hd; Last week; 2702 hd; a year ago 1848.Steers &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold $2-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$224.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$220.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$162.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$152.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$140.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$188.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$164.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$126.00-$148.10</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$82.00 - $95.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $81.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$61.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $117.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">871lbs @$152.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">767lbs @$151.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Â </td>\n<td style=\"width: 161.031px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 31, 2022 - Market Report','','inherit','closed','closed','','4411-revision-v1','','','2022-06-01 16:11:55','2022-06-01 16:11:55','',4411,'https://kingsvillelivestock.com/?p=4415',0,'revision','',0),(4416,2,'2022-06-01 16:17:57','2022-06-01 16:17:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/05/TuesdayMay-31st-Feeder-Cattle-Consignments-1.pdf\" rel=\"attachment wp-att-4402\">Tuesday,May 31st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale,Friday, June 17th @ 5:30 pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 5:30 pm</i></b></p>\n<ul>\n<li><b>Varner Farms: </b><b>1 </b>17 month old Blk Angus bull</li>\n<li><b>Graham Farms: </b><b>4 </b>2 yr old Blk Gelv. Balancer bulls</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Combs Farms: </b><b>46 </b>Blk-Bwf 7-SS fall calving cows. Bred Blk Angus bulls. Good set of middle aged cowsÂ  &amp; had all shots. Cows weaned off 635lbs calves.</li>\n<li><b>Complete Dispersal GB Woosley Farms: </b><b>50 </b>Blk-Bwf 6-SS fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Mead Farms: </b><b>4 </b>Blk 4 yr. old cows w/ 200lbs calves at side. <b>26</b> Blk-Bwf 3-4 yr. old cows, 3rd period. Bred Blk. Angus bulls &amp;Â  all coming 2nd calf.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Williams Farms: </b><b>20 </b>Blk 3-4 yr. old cows w/ AI sired calves at side. Ear tagged to match. 40 Blk 3-4 yr. old cows, 3rd period. AIâ€™d to Angus bulls &amp; cleaned up w/ Reg. Angus bulls. Cows are gentle &amp; broke to feed truck.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Edmiston Farms: </b><b>25 </b>Red Angus 3-5 yr. old fall calving cows, 2nd period. Bred Reg &amp; Blk Angus bulls. Start calving Aug. 15th, gentle set of cows that have had all shots.</li>\n<li><b>Dillon Farms: </b><b>35 </b>Blk 3-4yr. old cows, 2nd &amp; 3rd period. <b>35</b> Blk 5-6 yr. old cows, 2nd &amp; 3rd period.<b> 14 </b>Bwf 3-5 yr. old cows, 2nd &amp; 3rd period. All cows bred Blk. Angus bulls. Cows have had all shots &amp; calves were weaned off April 10th.</li>\n<li><b>Webb Farms: </b><b>50 </b>Blk-Bwf 3-5 yr. old cows,2nd period. Bred Blk Angus bulls. Start calving Aug. 20th</li>\n<li><b>Carroll Farms: </b><b>38 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Balancer &amp; Blk Angus bulls</li>\n<li><b>Teeter Farms: </b><b>11 </b>Blk-Bwf 3-7 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Conrow Farms: </b><b>9 </b>Blk Angus 2 yr. old heifer pairs w/ spring calves at side. <b>1 </b>Red Angus 2 yr. old heifer pair w/ spring calf at side.</li>\n<li><b>Hendrick Farms: </b><b>30 </b>Blk Angus 6-SS fall calving cows, 2nd period. Bred to Blk Angus Bulls</li>\n<li><b>Lacey Farms: </b><b>5 </b>Blk Angus 6-7 yr. oldÂ  fall calving cows, 2nd period. Bred to Red Angus bulls &amp; start calving October 1st. All cows have been fly tagged &amp; had all shots, nice set of cows.</li>\n<li><b>Brown Farms: </b><b>40 </b>Blk-Bwf 3-5 yr. old fall calving cows. Bred Miller Angus bulls</li>\n<li><b>Goosen Farms: </b><b>110 </b>Blk 7-SS fall calving cows. Bred Blk Angus bulls.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-06-01 16:17:57','2022-06-01 16:17:57','',2209,'https://kingsvillelivestock.com/?p=4416',0,'revision','',0),(4417,2,'2022-06-01 16:38:45','2022-06-01 16:38:45','','June 17, 2022 Cow Sale','','inherit','closed','closed','','june-17-2022-cow-sale-2','','','2022-06-01 16:38:45','2022-06-01 16:38:45','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-17-2022-Cow-Sale.pdf',0,'attachment','application/pdf',0),(4418,2,'2022-06-01 16:38:54','2022-06-01 16:38:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-17-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4417\">June 17, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-06-01 16:38:54','2022-06-01 16:38:54','',639,'https://kingsvillelivestock.com/?p=4418',0,'revision','',0),(4419,2,'2022-06-01 16:40:09','2022-06-01 16:40:09','','June 17, 2022 Cow Sale','','inherit','closed','closed','','june-17-2022-cow-sale-3','','','2022-06-01 16:40:09','2022-06-01 16:40:09','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-17-2022-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(4420,2,'2022-06-01 16:40:17','2022-06-01 16:40:17','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-17-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4419\">June 17, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-06-01 16:40:17','2022-06-01 16:40:17','',1967,'https://kingsvillelivestock.com/?p=4420',0,'revision','',0),(4421,2,'2022-06-01 17:14:22','2022-06-01 17:14:22','','June & July 2022 2 Horse,Tack, & Small Animal','','inherit','closed','closed','','june-july-2022-2-horsetack-small-animal','','','2022-06-01 17:14:22','2022-06-01 17:14:22','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf',0,'attachment','application/pdf',0),(4422,2,'2022-06-01 17:14:46','2022-06-01 17:14:46','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022 2 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-17-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4417\">June 17, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-06-01 17:14:46','2022-06-01 17:14:46','',639,'https://kingsvillelivestock.com/?p=4422',0,'revision','',0),(4423,2,'2022-06-01 17:15:45','2022-06-01 17:15:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022 2 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022 2 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-17-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4419\">June 17, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-06-01 17:15:45','2022-06-01 17:15:45','',1967,'https://kingsvillelivestock.com/?p=4423',0,'revision','',0),(4425,2,'2022-06-06 18:39:46','2022-06-06 18:39:46','','Tuesday,June 7th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayjune-7th-feeder-cattle-consignments','','','2022-06-06 18:39:46','2022-06-06 18:39:46','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/06/TuesdayJune-7th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4426,2,'2022-06-06 18:39:53','2022-06-06 18:39:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/TuesdayJune-7th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4425\">Tuesday,June 7th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale,Friday, June 17th @ 5:30 pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 5:30 pm</i></b></p>\n<ul>\n<li><b>Varner Farms: </b><b>1 </b>17 month old Blk Angus bull</li>\n<li><b>Graham Farms: </b><b>4 </b>2 yr old Blk Gelv. Balancer bulls</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Combs Farms: </b><b>46 </b>Blk-Bwf 7-SS fall calving cows. Bred Blk Angus bulls. Good set of middle aged cowsÂ  &amp; had all shots. Cows weaned off 635lbs calves.</li>\n<li><b>Complete Dispersal GB Woosley Farms: </b><b>50 </b>Blk-Bwf 6-SS fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Mead Farms: </b><b>4 </b>Blk 4 yr. old cows w/ 200lbs calves at side. <b>26</b> Blk-Bwf 3-4 yr. old cows, 3rd period. Bred Blk. Angus bulls &amp;Â  all coming 2nd calf.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Williams Farms: </b><b>20 </b>Blk 3-4 yr. old cows w/ AI sired calves at side. Ear tagged to match. 40 Blk 3-4 yr. old cows, 3rd period. AIâ€™d to Angus bulls &amp; cleaned up w/ Reg. Angus bulls. Cows are gentle &amp; broke to feed truck.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Edmiston Farms: </b><b>25 </b>Red Angus 3-5 yr. old fall calving cows, 2nd period. Bred Reg &amp; Blk Angus bulls. Start calving Aug. 15th, gentle set of cows that have had all shots.</li>\n<li><b>Dillon Farms: </b><b>35 </b>Blk 3-4yr. old cows, 2nd &amp; 3rd period. <b>35</b> Blk 5-6 yr. old cows, 2nd &amp; 3rd period.<b> 14 </b>Bwf 3-5 yr. old cows, 2nd &amp; 3rd period. All cows bred Blk. Angus bulls. Cows have had all shots &amp; calves were weaned off April 10th.</li>\n<li><b>Webb Farms: </b><b>50 </b>Blk-Bwf 3-5 yr. old cows,2nd period. Bred Blk Angus bulls. Start calving Aug. 20th</li>\n<li><b>Carroll Farms: </b><b>38 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Balancer &amp; Blk Angus bulls</li>\n<li><b>Teeter Farms: </b><b>11 </b>Blk-Bwf 3-7 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Conrow Farms: </b><b>9 </b>Blk Angus 2 yr. old heifer pairs w/ spring calves at side. <b>1 </b>Red Angus 2 yr. old heifer pair w/ spring calf at side.</li>\n<li><b>Hendrick Farms: </b><b>30 </b>Blk Angus 6-SS fall calving cows, 2nd period. Bred to Blk Angus Bulls</li>\n<li><b>Lacey Farms: </b><b>5 </b>Blk Angus 6-7 yr. oldÂ  fall calving cows, 2nd period. Bred to Red Angus bulls &amp; start calving October 1st. All cows have been fly tagged &amp; had all shots, nice set of cows.</li>\n<li><b>Brown Farms: </b><b>40 </b>Blk-Bwf 3-5 yr. old fall calving cows. Bred Miller Angus bulls</li>\n<li><b>Goosen Farms: </b><b>110 </b>Blk 7-SS fall calving cows. Bred Blk Angus bulls.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-06-06 18:39:53','2022-06-06 18:39:53','',2209,'https://kingsvillelivestock.com/?p=4426',0,'revision','',0),(4428,2,'2022-06-06 22:45:06','2022-06-06 22:45:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022 2 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-17-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4417\">June 17, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 24th @ 9:30 am<br /></strong>James Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>June. 25th @ 9:30 am<br /></strong>Weeks Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-06-06 22:45:06','2022-06-06 22:45:06','',639,'https://kingsvillelivestock.com/?p=4428',0,'revision','',0),(4429,2,'2022-06-06 22:45:41','2022-06-06 22:45:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022 2 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022 2 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-17-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4419\">June 17, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 24th @ 9:30 am<br /></strong>James Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>June. 25th @ 9:30 am<br /></strong>Weeks Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-06-06 22:45:41','2022-06-06 22:45:41','',1967,'https://kingsvillelivestock.com/?p=4429',0,'revision','',0),(4430,2,'2022-06-07 15:02:12','2022-06-07 15:02:12','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022 2 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-17-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4417\">June 17, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 24th @ 9:30 am<br /></strong>James Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>June. 25th @ 9:30 am<br /></strong>Weeks Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-06-07 15:02:12','2022-06-07 15:02:12','',639,'https://kingsvillelivestock.com/?p=4430',0,'revision','',0),(4431,2,'2022-06-07 15:06:36','2022-06-07 15:06:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022 2 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022 2 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-17-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4419\">June 17, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 24th @ 9:30 am<br /></strong>James Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>June. 25th @ 9:30 am<br /></strong>Weeks Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-06-07 15:06:36','2022-06-07 15:06:36','',1967,'https://kingsvillelivestock.com/?p=4431',0,'revision','',0),(4432,2,'2022-06-08 08:21:22','2022-06-08 08:21:22','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022Â  Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-17-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4417\">June 17, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 24th @ 9:30 am<br /></strong>James Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>June. 25th @ 9:30 am<br /></strong>Weeks Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-06-08 08:21:22','2022-06-08 08:21:22','',639,'https://kingsvillelivestock.com/?p=4432',0,'revision','',0),(4433,2,'2022-06-08 08:22:37','2022-06-08 08:22:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022Â  Horse, Tack, &amp; Small Animal</a></p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022Â  Horse, Tack, &amp; Small Animal</a></p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-17-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4419\">June 17, 2022 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 24th @ 9:30 am<br /></strong>James Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>June. 25th @ 9:30 am<br /></strong>Weeks Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-06-08 08:22:37','2022-06-08 08:22:37','',1967,'https://kingsvillelivestock.com/?p=4433',0,'revision','',0),(4434,2,'2022-06-08 16:28:57','2022-06-08 16:28:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/TuesdayJune-7th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4425\">Tuesday,June 7th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale,Friday, June 17th @ 5:30 pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 5:30 pm</i></b></p>\n<ul>\n<li><b>Varner Farms: </b><b>1 </b>17-month-old Blk Angus bull</li>\n<li><b>Graham Farms: </b><b>4 </b>2 yr old Blk Gelv. Balancer bulls</li>\n<li><b>Parkes Farms: </b><b>2 </b>2 yr old Polled Hereford bulls. Had all shots, fly tags, &amp; been DNA tested.Â </li>\n<li></li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Combs Farms: </b><b>46 </b>Blk-Bwf 7-SS fall calving cows. Bred Blk Angus bulls. Good set of middle aged cowsÂ  &amp; had all shots. Cows weaned off 635lbs calves.</li>\n<li><b>Complete Dispersal GB Woosley Farms: </b><b>50 </b>Blk-Bwf 6-SS fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Mead Farms: </b><b>4 </b>Blk 4 yr. old cows w/ 200lbs calves at side. <b>26</b> Blk-Bwf 3-4 yr. old cows, 3rd period. Bred Blk. Angus bulls &amp;Â  all coming 2nd calf.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Williams Farms: </b><b>20 </b>Blk 3-4 yr. old cows w/ AI sired calves at side. Ear tagged to match. 40 Blk 3-4 yr. old cows, 3rd period. AIâ€™d to Angus bulls &amp; cleaned up w/ Reg. Angus bulls. Cows are gentle &amp; broke to feed truck.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Edmiston Farms: </b><b>25 </b>Red Angus 3-5 yr. old fall calving cows, 2nd period. Bred Reg &amp; Blk Angus bulls. Start calving Aug. 15th, gentle set of cows that have had all shots.</li>\n<li><b>Dillon Farms: </b><b>35 </b>Blk 3-4yr. old cows, 2nd &amp; 3rd period. <b>35</b> Blk 5-6 yr. old cows, 2nd &amp; 3rd period.<b> 14 </b>Bwf 3-5 yr. old cows, 2nd &amp; 3rd period. All cows bred Blk. Angus bulls. Cows have had all shots &amp; calves were weaned off April 10th.</li>\n<li><b>Webb Farms: </b><b>50 </b>Blk-Bwf 3-5 yr. old cows,2nd period. Bred Blk Angus bulls. Start calving Aug. 20th</li>\n<li><b>Carroll Farms: </b><b>38 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Balancer &amp; Blk Angus bulls</li>\n<li><b>Teeter Farms: </b><b>11 </b>Blk-Bwf 3-7 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Conrow Farms: </b><b>9 </b>Blk Angus 2 yr. old heifer pairs w/ spring calves at side. <b>1 </b>Red Angus 2 yr. old heifer pair w/ spring calf at side.</li>\n<li><b>Hendrick Farms: </b><b>30 </b>Blk Angus 6-SS fall calving cows, 2nd period. Bred to Blk Angus Bulls</li>\n<li><b>Lacey Farms: </b><b>5 </b>Blk Angus 6-7 yr. old fall calving cows, 2nd period. Bred to Red Angus bulls &amp; start calving October 1st. All cows have been fly tagged &amp; had all shots, nice set of cows.</li>\n<li><b>Brown Farms: </b><b>40 </b>Blk-Bwf 3-5 yr. old fall calving cows. Bred Miller Angus bulls</li>\n<li><b>Goosen Farms: </b><b>110 </b>Blk 7-SS fall calving cows. Bred Blk Angus bulls.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-06-08 16:28:57','2022-06-08 16:28:57','',2209,'https://kingsvillelivestock.com/?p=4434',0,'revision','',0),(4435,2,'2022-06-08 16:38:36','2022-06-08 16:38:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 7, 2022,</strong> 4435 hd; Last week; 1985 hd; a year ago 3095. All classes of feeder cattle sold $5-$15 higher. Slaughter cows &amp; bulls sold $2-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$227.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$221.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$217.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$193.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$166.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$146.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$163.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$128.50-$136.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$132.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$85.00 - $102.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$76.00 - $84.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $121.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">681lbs @$165.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">792lbs @$162.82</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">799lbs @$163.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">801lbs @$164.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">814lbs @$161.35</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">846lbs @$166.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">855lbs @$165.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">725lbs @$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 7, 2022 - Market Report','','publish','closed','open','','june-7-2022-market-report','','','2022-06-08 16:38:39','2022-06-08 16:38:39','',0,'https://kingsvillelivestock.com/?p=4435',0,'post','',0),(4436,2,'2022-06-08 16:38:36','2022-06-08 16:38:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 7, 2022,</strong> 4435 hd; Last week; 1985 hd; a year ago 3095. All classes of feeder cattle sold $5-$15 higher. Slaughter cows &amp; bulls sold $2-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$227.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$221.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$217.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$193.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$166.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$146.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$163.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$128.50-$136.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$132.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$85.00 - $102.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$76.00 - $84.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $121.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">681lbs @$165.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">792lbs @$162.82</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">799lbs @$163.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">801lbs @$164.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">814lbs @$161.35</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">846lbs @$166.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">855lbs @$165.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">725lbs @$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 7, 2022 - Market Report','','inherit','closed','closed','','4435-revision-v1','','','2022-06-08 16:38:36','2022-06-08 16:38:36','',4435,'https://kingsvillelivestock.com/?p=4436',0,'revision','',0),(4437,2,'2022-06-08 16:38:36','2022-06-08 16:38:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 7, 2022,</strong> 4435 hd; Last week; 1985 hd; a year ago 3095. All classes of feeder cattle sold $5-$15 higher. Slaughter cows &amp; bulls sold $2-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$227.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$221.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$217.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$193.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$166.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$146.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$163.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$128.50-$136.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$132.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$85.00 - $102.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$76.00 - $84.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $121.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">681lbs @$165.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">792lbs @$162.82</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">799lbs @$163.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">801lbs @$164.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">814lbs @$161.35</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">846lbs @$166.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">855lbs @$165.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">725lbs @$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 31, 2022 - Market Report','','inherit','closed','closed','','4435-revision-v1','','','2022-06-08 16:38:36','2022-06-08 16:38:36','',4435,'https://kingsvillelivestock.com/?p=4437',0,'revision','',0),(4438,2,'2022-06-08 16:38:39','2022-06-08 16:38:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 7, 2022,</strong> 4435 hd; Last week; 1985 hd; a year ago 3095. All classes of feeder cattle sold $5-$15 higher. Slaughter cows &amp; bulls sold $2-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$227.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$221.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$217.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$193.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$166.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$146.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$163.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$156.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$128.50-$136.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$132.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$85.00 - $102.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$76.00 - $84.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $75.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $121.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">681lbs @$165.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">792lbs @$162.82</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">799lbs @$163.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">801lbs @$164.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">814lbs @$161.35</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.969px; height: 46px;\">Steers</td>\n<td style=\"width: 161.031px; height: 46px;\">846lbs @$166.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Steers</td>\n<td style=\"width: 161.031px; height: 23px;\">855lbs @$165.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.031px; height: 23px;\">725lbs @$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.969px; height: 23px;\">Â </td>\n<td style=\"width: 161.031px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 7, 2022 - Market Report','','inherit','closed','closed','','4435-revision-v1','','','2022-06-08 16:38:39','2022-06-08 16:38:39','',4435,'https://kingsvillelivestock.com/?p=4438',0,'revision','',0),(4439,2,'2022-06-08 16:44:45','2022-06-08 16:44:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/TuesdayJune-7th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4425\">Tuesday,June 7th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale,Friday, June 17th @ 5:30 pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 5:30 pm</i></b></p>\n<ul>\n<li><b>Varner Farms: </b><b>1 </b>17-month-old Blk Angus bull</li>\n<li><b>Graham Farms: </b><b>4 </b>2 yr old Blk Gelv. Balancer bulls</li>\n<li><b>Parkes Farms: </b><b>2 </b>2 yr old Polled Hereford bulls. Had all shots, fly tags, &amp; been DNA tested.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Combs Farms: </b><b>46 </b>Blk-Bwf 7-SS fall calving cows. Bred Blk Angus bulls. Good set of middle aged cowsÂ  &amp; had all shots. Cows weaned off 635lbs calves.</li>\n<li><b>Complete Dispersal GB Woosley Farms: </b><b>50 </b>Blk-Bwf 6-SS fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Mead Farms: </b><b>4 </b>Blk 4 yr. old cows w/ 200lbs calves at side. <b>26</b> Blk-Bwf 3-4 yr. old cows, 3rd period. Bred Blk. Angus bulls &amp;Â  all coming 2nd calf.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Williams Farms: </b><b>20 </b>Blk 3-4 yr. old cows w/ AI sired calves at side. Ear tagged to match. 40 Blk 3-4 yr. old cows, 3rd period. AIâ€™d to Angus bulls &amp; cleaned up w/ Reg. Angus bulls. Cows are gentle &amp; broke to feed truck.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Edmiston Farms: </b><b>25 </b>Red Angus 3-5 yr. old fall calving cows, 2nd period. Bred Reg &amp; Blk Angus bulls. Start calving Aug. 15th, gentle set of cows that have had all shots.</li>\n<li><b>Dillon Farms: </b><b>35 </b>Blk 3-4yr. old cows, 2nd &amp; 3rd period. <b>35</b> Blk 5-6 yr. old cows, 2nd &amp; 3rd period.<b> 14 </b>Bwf 3-5 yr. old cows, 2nd &amp; 3rd period. All cows bred Blk. Angus bulls. Cows have had all shots &amp; calves were weaned off April 10th.</li>\n<li><b>Webb Farms: </b><b>50 </b>Blk-Bwf 3-5 yr. old cows,2nd period. Bred Blk Angus bulls. Start calving Aug. 20th</li>\n<li><b>Carroll Farms: </b><b>38 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Balancer &amp; Blk Angus bulls</li>\n<li><b>Teeter Farms: </b><b>11 </b>Blk-Bwf 3-7 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Conrow Farms: </b><b>9 </b>Blk Angus 2 yr. old heifer pairs w/ spring calves at side. <b>1 </b>Red Angus 2 yr. old heifer pair w/ spring calf at side.</li>\n<li><b>Hendrick Farms: </b><b>30 </b>Blk Angus 6-SS fall calving cows, 2nd period. Bred to Blk Angus Bulls</li>\n<li><b>Lacey Farms: </b><b>5 </b>Blk Angus 6-7 yr. old fall calving cows, 2nd period. Bred to Red Angus bulls &amp; start calving October 1st. All cows have been fly tagged &amp; had all shots, nice set of cows.</li>\n<li><b>Brown Farms: </b><b>40 </b>Blk-Bwf 3-5 yr. old fall calving cows. Bred Miller Angus bulls</li>\n<li><b>Goosen Farms: </b><b>110 </b>Blk 7-SS fall calving cows. Bred Blk Angus bulls.</li>\n<li><b>Wieligman Farms: </b><b>80 </b>Blk-Bwf 3-6 yr. old cows,2nd &amp; 3rd period. Bred Blk 10X Angus bulls. Nice set of cows.Â </li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-06-08 16:44:45','2022-06-08 16:44:45','',2209,'https://kingsvillelivestock.com/?p=4439',0,'revision','',0),(4440,2,'2022-06-08 16:46:04','2022-06-08 16:46:04','','June 17, 2022 Cow Sale','','inherit','closed','closed','','june-17-2022-cow-sale-4','','','2022-06-08 16:46:04','2022-06-08 16:46:04','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-17-2022-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(4441,2,'2022-06-08 16:46:20','2022-06-08 16:46:20','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022Â  Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-17-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4440\">June 17th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 24th @ 9:30 am<br /></strong>James Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>June. 25th @ 9:30 am<br /></strong>Weeks Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-06-08 16:46:20','2022-06-08 16:46:20','',639,'https://kingsvillelivestock.com/?p=4441',0,'revision','',0),(4442,2,'2022-06-08 16:47:10','2022-06-08 16:47:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 11th @ 8:30 am<span style=\"color: #ff0000;\">-Canceled!</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022Â  Horse, Tack, &amp; Small Animal</a></p>\n<p><strong>June. 11th @ 5 pm<span style=\"color: #ff0000;\">-Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-July-2022-2-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4421\">June &amp; July 2022Â  Horse, Tack, &amp; Small Animal</a></p>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-17-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4440\">June 17th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 24th @ 9:30 am<br /></strong>James Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>June. 25th @ 9:30 am<br /></strong>Weeks Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-06-08 16:47:10','2022-06-08 16:47:10','',1967,'https://kingsvillelivestock.com/?p=4442',0,'revision','',0),(4443,2,'2022-06-08 17:49:27','2022-06-08 17:49:27','','James Auction June 24th-Odessa','','inherit','closed','closed','','james-auction-june-24th-odessa','','','2022-06-08 17:49:27','2022-06-08 17:49:27','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/06/James-Auction-June-24th-Odessa.pdf',0,'attachment','application/pdf',0),(4444,2,'2022-06-08 17:50:54','2022-06-08 17:50:54','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/James-Auction-June-24th-Odessa.pdf\" rel=\"attachment wp-att-4443\">James Farm Equipment Auction June 24th-Odessa, MO-9:30 am</a></p>\n<p><a href=\"https://photos.app.goo.gl/j76Fi5uFtwgcCBb18\">James Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-06-08 17:50:54','2022-06-08 17:50:54','',1450,'https://kingsvillelivestock.com/?p=4444',0,'revision','',0),(4445,2,'2022-06-08 18:20:17','2022-06-08 18:20:17','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/James-Auction-June-24th-Odessa.pdf\" rel=\"attachment wp-att-4443\">James Farm Equipment Auction June 24th-Odessa, MO-9:30 am</a></p>\n<p><a href=\"https://photos.app.goo.gl/j76Fi5uFtwgcCBb18\">James Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/wKfeCJB9MnEMmQPp6\">Weeks Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-06-08 18:20:17','2022-06-08 18:20:17','',1450,'https://kingsvillelivestock.com/?p=4445',0,'revision','',0),(4446,2,'2022-06-08 19:00:59','2022-06-08 19:00:59','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/James-Auction-June-24th-Odessa.pdf\" rel=\"attachment wp-att-4443\">James Farm Equipment Auction June 24th-Odessa, MO-9:30 am</a></p>\n<p><a href=\"https://photos.app.goo.gl/j76Fi5uFtwgcCBb18\">James Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/wKfeCJB9MnEMmQPp6\">Weeks Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/Gm4xJUmEDYbVyjdt9\">Zimmerman Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-06-08 19:00:59','2022-06-08 19:00:59','',1450,'https://kingsvillelivestock.com/?p=4446',0,'revision','',0),(4447,2,'2022-06-13 15:16:27','2022-06-13 15:16:27','','James Auction June 24th-Odessa (2)','','inherit','closed','closed','','james-auction-june-24th-odessa-2','','','2022-06-13 15:16:27','2022-06-13 15:16:27','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/06/James-Auction-June-24th-Odessa-2.pdf',0,'attachment','application/pdf',0),(4448,2,'2022-06-13 15:17:09','2022-06-13 15:17:09','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/James-Auction-June-24th-Odessa-2.pdf\" rel=\"attachment wp-att-4447\">Sharon James Farm Equipment Auction June 24th-Odessa,MO-9:30am</a></p>\n<p><a href=\"https://photos.app.goo.gl/j76Fi5uFtwgcCBb18\">James Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/wKfeCJB9MnEMmQPp6\">Weeks Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/Gm4xJUmEDYbVyjdt9\">Zimmerman Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-06-13 15:17:09','2022-06-13 15:17:09','',1450,'https://kingsvillelivestock.com/?p=4448',0,'revision','',0),(4449,2,'2022-06-13 15:21:07','2022-06-13 15:21:07','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES</strong></h1>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-17-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4440\">June 17th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 24th @ 9:30 am<br /></strong>James Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>June. 25th @ 9:30 am<br /></strong>Weeks Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-06-13 15:21:07','2022-06-13 15:21:07','',639,'https://kingsvillelivestock.com/?p=4449',0,'revision','',0),(4450,2,'2022-06-13 15:21:51','2022-06-13 15:21:51','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June.17th @ 5:30 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-17-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4440\">June 17th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 24th @ 9:30 am<br /></strong>James Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>June. 25th @ 9:30 am<br /></strong>Weeks Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-06-13 15:21:51','2022-06-13 15:21:51','',1967,'https://kingsvillelivestock.com/?p=4450',0,'revision','',0),(4451,2,'2022-06-13 15:40:01','2022-06-13 15:40:01','','Weeks Auction June 24th-Chilhowee','','inherit','closed','closed','','weeks-auction-june-24th-chilhowee','','','2022-06-13 15:40:01','2022-06-13 15:40:01','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/06/Weeks-Auction-June-24th-Chilhowee.pdf',0,'attachment','application/pdf',0),(4452,2,'2022-06-13 15:41:23','2022-06-13 15:41:23','','Zimmerman Auction July 9th-Peculiar','','inherit','closed','closed','','zimmerman-auction-july-9th-peculiar','','','2022-06-13 15:41:23','2022-06-13 15:41:23','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/06/Zimmerman-Auction-July-9th-Peculiar.pdf',0,'attachment','application/pdf',0),(4453,2,'2022-06-13 15:42:34','2022-06-13 15:42:34','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/James-Auction-June-24th-Odessa-2.pdf\" rel=\"attachment wp-att-4447\">Sharon James Farm Equipment Auction Friday, June 24th-Odessa, MO-9:30 am</a></p>\n<p><a href=\"https://photos.app.goo.gl/j76Fi5uFtwgcCBb18\">James Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/Weeks-Auction-June-24th-Chilhowee.pdf\" rel=\"attachment wp-att-4451\">Luann &amp; the Late Joe Weeks Auction Saturday, June 25th-Chilhowee, MO-9:30 am</a></p>\n<p><a href=\"https://photos.app.goo.gl/wKfeCJB9MnEMmQPp6\">Weeks Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/Zimmerman-Auction-July-9th-Peculiar.pdf\" rel=\"attachment wp-att-4452\">Richard Zimmerman Farm EquipmentAuction Saturday, July 9th-Peculiar,MO-10 am</a></p>\n<p><a href=\"https://photos.app.goo.gl/Gm4xJUmEDYbVyjdt9\">Zimmerman Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-06-13 15:42:34','2022-06-13 15:42:34','',1450,'https://kingsvillelivestock.com/?p=4453',0,'revision','',0),(4454,2,'2022-06-13 16:30:46','2022-06-13 16:30:46','','Tuesday,June 7th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayjune-7th-feeder-cattle-consignments-2','','','2022-06-13 16:30:46','2022-06-13 16:30:46','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/06/TuesdayJune-7th-Feeder-Cattle-Consignments-1.pdf',0,'attachment','application/pdf',0),(4455,2,'2022-06-13 16:32:02','2022-06-13 16:32:02','','Tuesday,June 14th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayjune-14th-feeder-cattle-consignments','','','2022-06-13 16:32:02','2022-06-13 16:32:02','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/06/TuesdayJune-14th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4456,2,'2022-06-13 16:32:23','2022-06-13 16:32:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>Â <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/TuesdayJune-14th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4455\">Tuesday, June 14th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale,Friday, June 17th @ 5:30 pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.16.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 5:30 pm</i></b></p>\n<ul>\n<li><b>Varner Farms: </b><b>1 </b>17-month-old Blk Angus bull</li>\n<li><b>Graham Farms: </b><b>4 </b>2 yr old Blk Gelv. Balancer bulls</li>\n<li><b>Parkes Farms: </b><b>2 </b>2 yr old Polled Hereford bulls. Had all shots, fly tags, &amp; been DNA tested.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Combs Farms: </b><b>46 </b>Blk-Bwf 7-SS fall calving cows. Bred Blk Angus bulls. Good set of middle aged cowsÂ  &amp; had all shots. Cows weaned off 635lbs calves.</li>\n<li><b>Complete Dispersal GB Woosley Farms: </b><b>50 </b>Blk-Bwf 6-SS fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Mead Farms: </b><b>4 </b>Blk 4 yr. old cows w/ 200lbs calves at side. <b>26</b> Blk-Bwf 3-4 yr. old cows, 3rd period. Bred Blk. Angus bulls &amp;Â  all coming 2nd calf.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Williams Farms: </b><b>20 </b>Blk 3-4 yr. old cows w/ AI sired calves at side. Ear tagged to match. 40 Blk 3-4 yr. old cows, 3rd period. AIâ€™d to Angus bulls &amp; cleaned up w/ Reg. Angus bulls. Cows are gentle &amp; broke to feed truck.</li>\n<li><b>M-T Farms: </b><b>25 </b>Blk 3-5 yr. old cows w/ 150-250lbs calves at side. Nice set of pairs</li>\n<li><b>Edmiston Farms: </b><b>25 </b>Red Angus 3-5 yr. old fall calving cows, 2nd period. Bred Reg &amp; Blk Angus bulls. Start calving Aug. 15th, gentle set of cows that have had all shots.</li>\n<li><b>Dillon Farms: </b><b>35 </b>Blk 3-4yr. old cows, 2nd &amp; 3rd period. <b>35</b> Blk 5-6 yr. old cows, 2nd &amp; 3rd period.<b> 14 </b>Bwf 3-5 yr. old cows, 2nd &amp; 3rd period. All cows bred Blk. Angus bulls. Cows have had all shots &amp; calves were weaned off April 10th.</li>\n<li><b>Webb Farms: </b><b>50 </b>Blk-Bwf 3-5 yr. old cows,2nd period. Bred Blk Angus bulls. Start calving Aug. 20th</li>\n<li><b>Carroll Farms: </b><b>38 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Balancer &amp; Blk Angus bulls</li>\n<li><b>Teeter Farms: </b><b>11 </b>Blk-Bwf 3-7 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Conrow Farms: </b><b>9 </b>Blk Angus 2 yr. old heifer pairs w/ spring calves at side. <b>1 </b>Red Angus 2 yr. old heifer pair w/ spring calf at side.</li>\n<li><b>Hendrick Farms: </b><b>30 </b>Blk Angus 6-SS fall calving cows, 2nd period. Bred to Blk Angus Bulls</li>\n<li><b>Lacey Farms: </b><b>5 </b>Blk Angus 6-7 yr. old fall calving cows, 2nd period. Bred to Red Angus bulls &amp; start calving October 1st. All cows have been fly tagged &amp; had all shots, nice set of cows.</li>\n<li><b>Brown Farms: </b><b>40 </b>Blk-Bwf 3-5 yr. old fall calving cows. Bred Miller Angus bulls</li>\n<li><b>Goosen Farms: </b><b>110 </b>Blk 7-SS fall calving cows. Bred Blk Angus bulls.</li>\n<li><b>Wieligman Farms: </b><b>80 </b>Blk-Bwf 3-6 yr. old cows,2nd &amp; 3rd period. Bred Blk 10X Angus bulls. Nice set of cows.Â </li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-06-13 16:32:23','2022-06-13 16:32:23','',2209,'https://kingsvillelivestock.com/?p=4456',0,'revision','',0),(4457,2,'2022-06-13 17:00:43','2022-06-13 17:00:43','','Weeks Auction June 25th-Chilhowee','','inherit','closed','closed','','weeks-auction-june-25th-chilhowee','','','2022-06-13 17:00:43','2022-06-13 17:00:43','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/06/Weeks-Auction-June-25th-Chilhowee.pdf',0,'attachment','application/pdf',0),(4458,2,'2022-06-13 17:11:54','2022-06-13 17:11:54','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/James-Auction-June-24th-Odessa-2.pdf\" rel=\"attachment wp-att-4447\">Sharon James Farm Equipment Auction Friday, June 24th-Odessa, MO-9:30 am</a></p>\n<p><a href=\"https://photos.app.goo.gl/j76Fi5uFtwgcCBb18\">James Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/Weeks-Auction-June-25th-Chilhowee.pdf\" rel=\"attachment wp-att-4457\">Luann &amp; the Late Joe Weeks Auction Saturday, June 25th-Chilhowee, MO-9:30 am</a></p>\n<p><a href=\"https://photos.app.goo.gl/wKfeCJB9MnEMmQPp6\">Weeks Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/Zimmerman-Auction-July-9th-Peculiar.pdf\" rel=\"attachment wp-att-4452\">Richard Zimmerman Farm EquipmentAuction Saturday, July 9th-Peculiar,MO-10 am</a></p>\n<p><a href=\"https://photos.app.goo.gl/Gm4xJUmEDYbVyjdt9\">Zimmerman Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-06-13 17:11:54','2022-06-13 17:11:54','',1450,'https://kingsvillelivestock.com/?p=4458',0,'revision','',0),(4460,2,'2022-06-15 02:09:27','2022-06-15 02:09:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June.17th @ 5:30 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-17-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4440\">June 17th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 24th @ 9:30 am<br /></strong>James Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>June. 25th @ 9:30 am<br /></strong>Weeks Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-06-15 02:09:27','2022-06-15 02:09:27','',639,'https://kingsvillelivestock.com/?p=4460',0,'revision','',0),(4461,2,'2022-06-15 02:10:03','2022-06-15 02:10:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June.17th @ 5:30 pm <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/June-17-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4440\">June 17th Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 24th @ 9:30 am<br /></strong>James Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>June. 25th @ 9:30 am<br /></strong>Weeks Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-06-15 02:10:03','2022-06-15 02:10:03','',1967,'https://kingsvillelivestock.com/?p=4461',0,'revision','',0),(4462,2,'2022-06-15 14:43:38','2022-06-15 14:43:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 14, 2022,</strong> 1906 hd; Last week; 4435 hd; a year ago 1792. Feeder cattle sold steady-$2 lower. Slaughter cows &amp; bulls sold steady-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$210.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$201.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$170.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$150.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$191.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$176.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$151.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$127.00-$135.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$90.00 - $103.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$78.00 - $89.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $126.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">588lbs @$195.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">735lbs @$170.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">942lbs @$150.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">688lbs @$160.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.484px; height: 46px;\">Â </td>\n<td style=\"width: 161.516px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 14, 2022 - Market Report','','publish','closed','open','','june-14-2022-market-report','','','2022-06-15 14:43:42','2022-06-15 14:43:42','',0,'https://kingsvillelivestock.com/?p=4462',0,'post','',0),(4464,2,'2022-06-15 14:43:38','2022-06-15 14:43:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 14, 2022,</strong> 1906 hd; Last week; 4435 hd; a year ago 1792. Feeder cattle sold steady-$2 lower. Slaughter cows &amp; bulls sold steady-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$210.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$201.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$170.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$150.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$191.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$176.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$151.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$127.00-$135.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$90.00 - $103.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$78.00 - $89.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $126.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">588lbs @$195.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">735lbs @$170.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">942lbs @$150.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">688lbs @$160.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.484px; height: 46px;\">Â </td>\n<td style=\"width: 161.516px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 14, 2022 - Market Report','','inherit','closed','closed','','4462-revision-v1','','','2022-06-15 14:43:38','2022-06-15 14:43:38','',4462,'https://kingsvillelivestock.com/?p=4464',0,'revision','',0),(4465,2,'2022-06-15 14:43:38','2022-06-15 14:43:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 14, 2022,</strong> 1906 hd; Last week; 4435 hd; a year ago 1792. Feeder cattle sold steady-$2 lower. Slaughter cows &amp; bulls sold steady-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$210.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$201.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$170.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$150.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$191.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$176.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$151.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$127.00-$135.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$90.00 - $103.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$78.00 - $89.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $126.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">588lbs @$195.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">735lbs @$170.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">942lbs @$150.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">688lbs @$160.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.484px; height: 46px;\">Â </td>\n<td style=\"width: 161.516px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 7, 2022 - Market Report','','inherit','closed','closed','','4462-revision-v1','','','2022-06-15 14:43:38','2022-06-15 14:43:38','',4462,'https://kingsvillelivestock.com/?p=4465',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (4466,2,'2022-06-15 14:43:42','2022-06-15 14:43:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 14, 2022,</strong> 1906 hd; Last week; 4435 hd; a year ago 1792. Feeder cattle sold steady-$2 lower. Slaughter cows &amp; bulls sold steady-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$210.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$201.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$170.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$152.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$150.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$191.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$176.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$151.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$127.00-$135.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$90.00 - $103.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$78.00 - $89.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$65.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $126.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">588lbs @$195.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">735lbs @$170.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">942lbs @$150.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">688lbs @$160.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.484px; height: 46px;\">Â </td>\n<td style=\"width: 161.516px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 14, 2022 - Market Report','','inherit','closed','closed','','4462-revision-v1','','','2022-06-15 14:43:42','2022-06-15 14:43:42','',4462,'https://kingsvillelivestock.com/?p=4466',0,'revision','',0),(4467,2,'2022-06-20 14:34:40','2022-06-20 14:34:40','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 24th @ 9:30 am<br /></strong>James Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>June. 25th @ 9:30 am<br /></strong>Weeks Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-06-20 14:34:40','2022-06-20 14:34:40','',639,'https://kingsvillelivestock.com/?p=4467',0,'revision','',0),(4468,2,'2022-06-20 14:35:27','2022-06-20 14:35:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June. 24th @ 9:30 am<br /></strong>James Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>June. 25th @ 9:30 am<br /></strong>Weeks Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-06-20 14:35:27','2022-06-20 14:35:27','',1967,'https://kingsvillelivestock.com/?p=4468',0,'revision','',0),(4469,2,'2022-06-20 14:38:02','2022-06-20 14:38:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<p>Â <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/TuesdayJune-14th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4455\">Tuesday, June 14th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-06-20 14:38:02','2022-06-20 14:38:02','',2209,'https://kingsvillelivestock.com/?p=4469',0,'revision','',0),(4470,2,'2022-06-20 17:42:34','2022-06-20 17:42:34','','Tuesday,June 21st Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayjune-21st-feeder-cattle-consignments','','','2022-06-20 17:42:34','2022-06-20 17:42:34','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/06/TuesdayJune-21st-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4471,2,'2022-06-20 17:42:41','2022-06-20 17:42:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/TuesdayJune-21st-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4470\">Tuesday,June 21st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-06-20 17:42:41','2022-06-20 17:42:41','',2209,'https://kingsvillelivestock.com/?p=4471',0,'revision','',0),(4472,2,'2022-06-21 23:50:25','2022-06-21 23:50:25','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 24th @ 9:30 am<br /></strong>James Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>June. 25th @ 9:30 am<br /></strong>Weeks Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-06-21 23:50:25','2022-06-21 23:50:25','',639,'https://kingsvillelivestock.com/?p=4472',0,'revision','',0),(4473,2,'2022-06-21 23:51:03','2022-06-21 23:51:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><strong>June. 24th @ 9:30 am<br /></strong>James Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>June. 25th @ 9:30 am<br /></strong>Weeks Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-06-21 23:51:03','2022-06-21 23:51:03','',1967,'https://kingsvillelivestock.com/?p=4473',0,'revision','',0),(4474,2,'2022-06-22 14:49:56','2022-06-22 14:49:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 21, 2022,</strong> 1961 hd; Last week; 1906 hd; a year ago 2581. Feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$191.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$159.00-$175.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.85-$159.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$176.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$166.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$147.85</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$95.00 - $106.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$80.00 - $94.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$104.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">908lbs @$159.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">945lbs @$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">1010lbs @$152.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">750lbs @$158.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">785lbs @$155.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 46px;\">1245lbs @$140.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 21, 2022 - Market Report','','publish','closed','open','','june-21-2022-market-report','','','2022-06-22 14:49:59','2022-06-22 14:49:59','',0,'https://kingsvillelivestock.com/?p=4474',0,'post','',0),(4476,2,'2022-06-22 14:49:56','2022-06-22 14:49:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 21, 2022,</strong> 1961 hd; Last week; 1906 hd; a year ago 2581. Feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$191.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$159.00-$175.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.85-$159.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$176.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$166.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$147.85</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$95.00 - $106.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$80.00 - $94.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$104.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">908lbs @$159.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">945lbs @$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">1010lbs @$152.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">750lbs @$158.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">785lbs @$155.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 46px;\">1245lbs @$140.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 21, 2022 - Market Report','','inherit','closed','closed','','4474-revision-v1','','','2022-06-22 14:49:56','2022-06-22 14:49:56','',4474,'https://kingsvillelivestock.com/?p=4476',0,'revision','',0),(4477,2,'2022-06-22 14:49:56','2022-06-22 14:49:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 21, 2022,</strong> 1961 hd; Last week; 1906 hd; a year ago 2581. Feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$191.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$159.00-$175.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.85-$159.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$176.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$166.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$147.85</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$95.00 - $106.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$80.00 - $94.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$104.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">908lbs @$159.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">945lbs @$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">1010lbs @$152.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">750lbs @$158.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">785lbs @$155.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 46px;\">1245lbs @$140.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 14, 2022 - Market Report','','inherit','closed','closed','','4474-revision-v1','','','2022-06-22 14:49:56','2022-06-22 14:49:56','',4474,'https://kingsvillelivestock.com/?p=4477',0,'revision','',0),(4478,2,'2022-06-22 14:49:59','2022-06-22 14:49:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 21, 2022,</strong> 1961 hd; Last week; 1906 hd; a year ago 2581. Feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$3 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$191.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$159.00-$175.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$160.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.85-$159.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$176.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$166.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$158.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$147.85</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$95.00 - $106.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$80.00 - $94.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $79.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$104.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">908lbs @$159.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">945lbs @$156.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">1010lbs @$152.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">750lbs @$158.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">785lbs @$155.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 46px;\">1245lbs @$140.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 21, 2022 - Market Report','','inherit','closed','closed','','4474-revision-v1','','','2022-06-22 14:49:59','2022-06-22 14:49:59','',4474,'https://kingsvillelivestock.com/?p=4478',0,'revision','',0),(4480,2,'2022-06-27 16:15:57','2022-06-27 16:15:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-06-27 16:15:57','2022-06-27 16:15:57','',639,'https://kingsvillelivestock.com/?p=4480',0,'revision','',0),(4481,2,'2022-06-27 16:17:24','2022-06-27 16:17:24','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-06-27 16:17:24','2022-06-27 16:17:24','',1967,'https://kingsvillelivestock.com/?p=4481',0,'revision','',0),(4482,2,'2022-06-27 16:18:57','2022-06-27 16:18:57','','Zimmerman Auction July 9th-Peculiar','','inherit','closed','closed','','zimmerman-auction-july-9th-peculiar-2','','','2022-06-27 16:18:57','2022-06-27 16:18:57','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/06/Zimmerman-Auction-July-9th-Peculiar-1.pdf',0,'attachment','application/pdf',0),(4483,2,'2022-06-27 16:19:21','2022-06-27 16:19:21','','Zimmerman Auction July 9th-Peculiar','','inherit','closed','closed','','zimmerman-auction-july-9th-peculiar-3','','','2022-06-27 16:19:21','2022-06-27 16:19:21','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/06/Zimmerman-Auction-July-9th-Peculiar-2.pdf',0,'attachment','application/pdf',0),(4484,2,'2022-06-27 16:20:31','2022-06-27 16:20:31','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/Zimmerman-Auction-July-9th-Peculiar-2.pdf\" rel=\"attachment wp-att-4483\">Richard Zimmerman Farm Equipment Auction Saturday, July 9th-Peculiar,MO-10 am</a></p>\n<p><a href=\"https://photos.app.goo.gl/Gm4xJUmEDYbVyjdt9\">Zimmerman Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-06-27 16:20:31','2022-06-27 16:20:31','',1450,'https://kingsvillelivestock.com/?p=4484',0,'revision','',0),(4486,2,'2022-06-27 16:27:18','2022-06-27 16:27:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-06-27 16:27:18','2022-06-27 16:27:18','',1967,'https://kingsvillelivestock.com/?p=4486',0,'revision','',0),(4487,2,'2022-06-27 16:28:05','2022-06-27 16:28:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>June. 28th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-06-27 16:28:05','2022-06-27 16:28:05','',639,'https://kingsvillelivestock.com/?p=4487',0,'revision','',0),(4488,2,'2022-06-27 17:29:38','2022-06-27 17:29:38','','Tuesday,June 28th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayjune-28th-feeder-cattle-consignments','','','2022-06-27 17:29:38','2022-06-27 17:29:38','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/06/TuesdayJune-28th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4489,2,'2022-06-27 17:29:47','2022-06-27 17:29:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/06/TuesdayJune-28th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4488\">Tuesday,June 28th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-06-27 17:29:47','2022-06-27 17:29:47','',2209,'https://kingsvillelivestock.com/?p=4489',0,'revision','',0),(4490,2,'2022-06-29 03:45:43','2022-06-29 03:45:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-06-29 03:45:43','2022-06-29 03:45:43','',639,'https://kingsvillelivestock.com/?p=4490',0,'revision','',0),(4491,2,'2022-06-29 03:46:38','2022-06-29 03:46:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\">Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-06-29 03:46:38','2022-06-29 03:46:38','',1967,'https://kingsvillelivestock.com/?p=4491',0,'revision','',0),(4492,2,'2022-06-29 15:33:22','2022-06-29 15:33:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 28, 2022,</strong> 3195 hd; Last week; 1961 hd; a year ago 2086. All classes of feeder cattle sold steady-$3 higher. Load lots sold $5-$7 higher. Slaughter cows &amp; bulls sold $3-$5 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$223.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$213.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$206.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$131.00-$145.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$143.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$95.00 - $109.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$81.00 - $94.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$98.00 - $119.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">520lbs @$215.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">620lbs @$200.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">650lbs @$187.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">792lbs @$171.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">842lbs @$171.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.484px; height: 46px;\">Steers</td>\n<td style=\"width: 161.516px; height: 46px;\">901lbs @$164.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">490lbs@ $196.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">701lbs @$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">710lbs @$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 28, 2022 - Market Report','','publish','closed','open','','june-28-2022-market-report','','','2022-06-29 15:33:25','2022-06-29 15:33:25','',0,'https://kingsvillelivestock.com/?p=4492',0,'post','',0),(4494,2,'2022-06-29 15:33:22','2022-06-29 15:33:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 28, 2022,</strong> 3195 hd; Last week; 1961 hd; a year ago 2086. All classes of feeder cattle sold steady-$3 higher. Load lots sold $5-$7 higher. Slaughter cows &amp; bulls sold $3-$5 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$223.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$213.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$206.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$131.00-$145.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$143.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$95.00 - $109.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$81.00 - $94.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$98.00 - $119.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">520lbs @$215.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">620lbs @$200.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">650lbs @$187.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">792lbs @$171.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">842lbs @$171.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.484px; height: 46px;\">Steers</td>\n<td style=\"width: 161.516px; height: 46px;\">901lbs @$164.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">490lbs@ $196.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">701lbs @$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">710lbs @$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 28, 2022 - Market Report','','inherit','closed','closed','','4492-revision-v1','','','2022-06-29 15:33:22','2022-06-29 15:33:22','',4492,'https://kingsvillelivestock.com/?p=4494',0,'revision','',0),(4495,2,'2022-06-29 15:33:22','2022-06-29 15:33:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 28, 2022,</strong> 3195 hd; Last week; 1961 hd; a year ago 2086. All classes of feeder cattle sold steady-$3 higher. Load lots sold $5-$7 higher. Slaughter cows &amp; bulls sold $3-$5 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$223.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$213.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$206.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$131.00-$145.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$143.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$95.00 - $109.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$81.00 - $94.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$98.00 - $119.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">520lbs @$215.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">620lbs @$200.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">650lbs @$187.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">792lbs @$171.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">842lbs @$171.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.484px; height: 46px;\">Steers</td>\n<td style=\"width: 161.516px; height: 46px;\">901lbs @$164.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">490lbs@ $196.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">701lbs @$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">710lbs @$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 21, 2022 - Market Report','','inherit','closed','closed','','4492-revision-v1','','','2022-06-29 15:33:22','2022-06-29 15:33:22','',4492,'https://kingsvillelivestock.com/?p=4495',0,'revision','',0),(4496,2,'2022-06-29 15:33:25','2022-06-29 15:33:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 28, 2022,</strong> 3195 hd; Last week; 1961 hd; a year ago 2086. All classes of feeder cattle sold steady-$3 higher. Load lots sold $5-$7 higher. Slaughter cows &amp; bulls sold $3-$5 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$223.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$213.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$171.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$206.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$131.00-$145.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$143.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$95.00 - $109.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$81.00 - $94.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$66.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$98.00 - $119.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">520lbs @$215.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">620lbs @$200.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">650lbs @$187.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">792lbs @$171.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\n<td style=\"width: 161.516px; height: 23px;\">842lbs @$171.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.484px; height: 46px;\">Steers</td>\n<td style=\"width: 161.516px; height: 46px;\">901lbs @$164.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">490lbs@ $196.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">701lbs @$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.516px; height: 23px;\">710lbs @$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.484px; height: 23px;\">Â </td>\n<td style=\"width: 161.516px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 28, 2022 - Market Report','','inherit','closed','closed','','4492-revision-v1','','','2022-06-29 15:33:25','2022-06-29 15:33:25','',4492,'https://kingsvillelivestock.com/?p=4496',0,'revision','',0),(4497,2,'2022-06-29 17:38:52','2022-06-29 17:38:52','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-06-29 17:38:52','2022-06-29 17:38:52','',639,'https://kingsvillelivestock.com/?p=4497',0,'revision','',0),(4498,2,'2022-06-29 17:39:58','2022-06-29 17:39:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 5th @ 10:30 am <span style=\"color: #ff0000;\">- Canceled due to Holiday!Â </span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>July. 9th @ 10:00 am<br /></strong>Zimmerman Farm Equipment Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>July. 9th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>July. 9th @ 5 pm<span style=\"color: #ff0000;\"> -Canceled</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-06-29 17:39:58','2022-06-29 17:39:58','',1967,'https://kingsvillelivestock.com/?p=4498',0,'revision','',0),(4500,2,'2022-07-11 15:18:38','2022-07-11 15:18:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-07-11 15:18:38','2022-07-11 15:18:38','',639,'https://kingsvillelivestock.com/?p=4500',0,'revision','',0),(4501,2,'2022-07-11 15:20:10','2022-07-11 15:20:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July.12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-07-11 15:20:10','2022-07-11 15:20:10','',1967,'https://kingsvillelivestock.com/?p=4501',0,'revision','',0),(4502,2,'2022-07-11 15:20:44','2022-07-11 15:20:44','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-07-11 15:20:44','2022-07-11 15:20:44','',1450,'https://kingsvillelivestock.com/?p=4502',0,'revision','',0),(4503,2,'2022-07-11 17:29:58','2022-07-11 17:29:58','','Tuesday,July 12th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayjuly-12th-feeder-cattle-consignments','','','2022-07-11 17:29:58','2022-07-11 17:29:58','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/07/TuesdayJuly-12th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4504,2,'2022-07-11 17:30:04','2022-07-11 17:30:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/07/TuesdayJuly-12th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4503\">Tuesday,July 12th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-07-11 17:30:04','2022-07-11 17:30:04','',2209,'https://kingsvillelivestock.com/?p=4504',0,'revision','',0),(4505,2,'2022-07-13 14:23:02','2022-07-13 14:23:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-07-13 14:23:02','2022-07-13 14:23:02','',639,'https://kingsvillelivestock.com/?p=4505',0,'revision','',0),(4506,2,'2022-07-13 14:24:21','2022-07-13 14:24:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-07-13 14:24:21','2022-07-13 14:24:21','',1967,'https://kingsvillelivestock.com/?p=4506',0,'revision','',0),(4507,2,'2022-07-13 15:45:47','2022-07-13 15:45:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 12, 2022,</strong> 2840 hd; Last week; 3195 hd; a year ago 973. Compared to 2 weeks ago feeder cattle 550-750lbs sold $5-$12 higher &amp; all other classes sold steady. Slaughter cows &amp; bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$221.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$208.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$193.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$173.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$163.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$158.00-$194.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$153.60</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$127.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$90.00 - $107.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$77.00 - $90.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$85.00 - $118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Steers</td>\n<td style=\"width: 161.531px; height: 23px;\">697lbs @$187.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Steers</td>\n<td style=\"width: 161.531px; height: 23px;\">698lbs @$173.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Steers</td>\n<td style=\"width: 161.531px; height: 23px;\">700lbs @$192.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Steers</td>\n<td style=\"width: 161.531px; height: 23px;\">700lbs @$183.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Steers</td>\n<td style=\"width: 161.531px; height: 23px;\">739lbs @$193.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.469px; height: 46px;\">Steers</td>\n<td style=\"width: 161.531px; height: 46px;\">765lbs @$183.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Steers</td>\n<td style=\"width: 161.531px; height: 23px;\">823lbs@ $173.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.531px; height: 23px;\">680lbs @$172.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.531px; height: 23px;\">689lbs @$173.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.531px; height: 23px;\">807lbs@$153.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Â </td>\n<td style=\"width: 161.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Â </td>\n<td style=\"width: 161.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Â </td>\n<td style=\"width: 161.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Â </td>\n<td style=\"width: 161.531px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 12, 2022 - Market Report','','publish','closed','open','','july-12-2022-market-report','','','2022-07-13 15:45:50','2022-07-13 15:45:50','',0,'https://kingsvillelivestock.com/?p=4507',0,'post','',0),(4508,2,'2022-07-13 15:36:39','2022-07-13 15:36:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]\r\n\r\n<strong>June 28, 2022,</strong> 3195 hd; Last week; 1961 hd; a year ago 2086. All classes of feeder cattle sold steady-$3 higher. Load lots sold $5-$7 higher. Slaughter cows &amp; bulls sold $3-$5 higher.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]\r\n<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\r\n<tbody>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\r\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$223.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$213.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$177.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$171.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\r\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.75</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]\r\n<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\r\n<tbody>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\r\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\r\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$206.50</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px; height: 23px;\">400-500</td>\r\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$205.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px; height: 23px;\">500-600</td>\r\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$182.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px; height: 23px;\">600-700</td>\r\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px; height: 23px;\">700-800</td>\r\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$175.00</span></td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px; height: 23px;\">800-900</td>\r\n<td style=\"width: 157px; height: 23px;\">$131.00-$145.25</td>\r\n</tr>\r\n<tr style=\"text-align: center;\">\r\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\r\n<td style=\"width: 157px; height: 23px;\">$124.00-$143.75</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\r\n&nbsp;\r\n<table width=\"329\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 156.5px;\">High Yielding</td>\r\n<td style=\"width: 156.5px;\">$95.00 - $109.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Medium Yield</td>\r\n<td style=\"width: 156.5px;\">$81.00 - $94.50</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Low Yield</td>\r\n<td style=\"width: 156.5px;\">$66.00 - $80.00</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 156.5px;\">Bulls</td>\r\n<td style=\"width: 156.5px;\">$98.00 - $119.00</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]\r\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\r\n\r\n<table style=\"height: 345px;\" width=\"338\">\r\n<tbody>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\r\n<td style=\"width: 161.516px; height: 23px;\">520lbs @$215.00</td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\r\n<td style=\"width: 161.516px; height: 23px;\">620lbs @$200.50</td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\r\n<td style=\"width: 161.516px; height: 23px;\">650lbs @$187.00</td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\r\n<td style=\"width: 161.516px; height: 23px;\">792lbs @$171.60</td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 160.484px; height: 23px;\">Steers</td>\r\n<td style=\"width: 161.516px; height: 23px;\">842lbs @$171.00</td>\r\n</tr>\r\n<tr style=\"height: 46px;\">\r\n<td style=\"width: 160.484px; height: 46px;\">Steers</td>\r\n<td style=\"width: 161.516px; height: 46px;\">901lbs @$164.75</td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\r\n<td style=\"width: 161.516px; height: 23px;\">490lbs@ $196.50</td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\r\n<td style=\"width: 161.516px; height: 23px;\">701lbs @$168.00</td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 160.484px; height: 23px;\">Heifers</td>\r\n<td style=\"width: 161.516px; height: 23px;\">710lbs @$175.00</td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 160.484px; height: 23px;\"></td>\r\n<td style=\"width: 161.516px; height: 23px;\"></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 160.484px; height: 23px;\"></td>\r\n<td style=\"width: 161.516px; height: 23px;\"></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 160.484px; height: 23px;\"></td>\r\n<td style=\"width: 161.516px; height: 23px;\"></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 160.484px; height: 23px;\"></td>\r\n<td style=\"width: 161.516px; height: 23px;\"></td>\r\n</tr>\r\n<tr style=\"height: 23px;\">\r\n<td style=\"width: 160.484px; height: 23px;\"></td>\r\n<td style=\"width: 161.516px; height: 23px;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]\r\n<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 12, 2022 - Market Report','','inherit','closed','closed','','4507-revision-v1','','','2022-07-13 15:36:39','2022-07-13 15:36:39','',4507,'https://kingsvillelivestock.com/?p=4508',0,'revision','',0),(4510,2,'2022-07-13 15:45:47','2022-07-13 15:45:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 12, 2022,</strong> 2840 hd; Last week; 3195 hd; a year ago 973. Compared to 2 weeks ago feeder cattle 550-750lbs sold $5-$12 higher &amp; all other classes sold steady. Slaughter cows &amp; bulls sold steady.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$221.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$208.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$193.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$173.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$163.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$158.00-$194.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$153.60</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$127.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$90.00 - $107.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$77.00 - $90.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$85.00 - $118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 345px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Steers</td>\n<td style=\"width: 161.531px; height: 23px;\">697lbs @$187.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Steers</td>\n<td style=\"width: 161.531px; height: 23px;\">698lbs @$173.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Steers</td>\n<td style=\"width: 161.531px; height: 23px;\">700lbs @$192.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Steers</td>\n<td style=\"width: 161.531px; height: 23px;\">700lbs @$183.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Steers</td>\n<td style=\"width: 161.531px; height: 23px;\">739lbs @$193.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 160.469px; height: 46px;\">Steers</td>\n<td style=\"width: 161.531px; height: 46px;\">765lbs @$183.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Steers</td>\n<td style=\"width: 161.531px; height: 23px;\">823lbs@ $173.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.531px; height: 23px;\">680lbs @$172.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.531px; height: 23px;\">689lbs @$173.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 161.531px; height: 23px;\">807lbs@$153.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Â </td>\n<td style=\"width: 161.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Â </td>\n<td style=\"width: 161.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Â </td>\n<td style=\"width: 161.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 160.469px; height: 23px;\">Â </td>\n<td style=\"width: 161.531px; height: 23px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 12, 2022 - Market Report','','inherit','closed','closed','','4507-revision-v1','','','2022-07-13 15:45:47','2022-07-13 15:45:47','',4507,'https://kingsvillelivestock.com/?p=4510',0,'revision','',0),(4512,2,'2022-07-13 15:48:06','2022-07-13 15:48:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!Â </p>\n<p><strong>Aug. 6th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!Â </p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-07-13 15:48:06','2022-07-13 15:48:06','',639,'https://kingsvillelivestock.com/?p=4512',0,'revision','',0),(4513,2,'2022-07-13 15:49:02','2022-07-13 15:49:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!Â </p>\n<p><strong>Aug. 6th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!Â </p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-07-13 15:49:02','2022-07-13 15:49:02','',1967,'https://kingsvillelivestock.com/?p=4513',0,'revision','',0),(4514,2,'2022-07-13 18:06:49','2022-07-13 18:06:49','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/FscqejhaxRuzMj4i9\">Voorhees Photos </a>Â </p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-07-13 18:06:49','2022-07-13 18:06:49','',1450,'https://kingsvillelivestock.com/?p=4514',0,'revision','',0),(4516,2,'2022-07-18 15:36:01','2022-07-18 15:36:01','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 6th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-07-18 15:36:01','2022-07-18 15:36:01','',639,'https://kingsvillelivestock.com/?p=4516',0,'revision','',0),(4517,2,'2022-07-18 15:36:44','2022-07-18 15:36:44','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 6th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-07-18 15:36:44','2022-07-18 15:36:44','',1967,'https://kingsvillelivestock.com/?p=4517',0,'revision','',0),(4518,2,'2022-07-18 17:10:15','2022-07-18 17:10:15','','Tuesday,July 19th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayjuly-19th-feeder-cattle-consignments','','','2022-07-18 17:10:15','2022-07-18 17:10:15','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/07/TuesdayJuly-19th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4519,2,'2022-07-18 17:10:34','2022-07-18 17:10:34','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/07/TuesdayJuly-19th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4518\">Tuesday,July 19th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-07-18 17:10:34','2022-07-18 17:10:34','',2209,'https://kingsvillelivestock.com/?p=4519',0,'revision','',0),(4520,2,'2022-07-18 17:18:24','2022-07-18 17:18:24','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 6th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-07-18 17:18:24','2022-07-18 17:18:24','',639,'https://kingsvillelivestock.com/?p=4520',0,'revision','',0),(4521,2,'2022-07-18 17:19:46','2022-07-18 17:19:46','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><strong>July. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no cow sale for the month of July!Â </strong></span></p>\n<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 6th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-07-18 17:19:46','2022-07-18 17:19:46','',1967,'https://kingsvillelivestock.com/?p=4521',0,'revision','',0),(4522,2,'2022-07-18 19:19:14','2022-07-18 19:19:14','','Voorhees Auction August 5th & 6th-Holden','','inherit','closed','closed','','voorhees-auction-august-5th-6th-holden','','','2022-07-18 19:19:14','2022-07-18 19:19:14','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/07/Voorhees-Auction-August-5th-6th-Holden.pdf',0,'attachment','application/pdf',0),(4523,2,'2022-07-18 19:20:03','2022-07-18 19:20:03','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.6\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/07/Voorhees-Auction-August-5th-6th-Holden.pdf\" rel=\"attachment wp-att-4522\">Voorhees Auction Friday &amp; Saturday, August 5th &amp; 6th-Holden,MO-9amÂ </a></p>\n<p><a href=\"https://photos.app.goo.gl/FscqejhaxRuzMj4i9\">Voorhees Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/1YHf5x8QK5g6myD66\">Price Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-07-18 19:20:03','2022-07-18 19:20:03','',1450,'https://kingsvillelivestock.com/?p=4523',0,'revision','',0),(4525,2,'2022-07-20 01:11:18','2022-07-20 01:11:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 6th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-07-20 01:11:18','2022-07-20 01:11:18','',639,'https://kingsvillelivestock.com/?p=4525',0,'revision','',0),(4526,2,'2022-07-20 01:11:52','2022-07-20 01:11:52','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July. 26th @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 6th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-07-20 01:11:52','2022-07-20 01:11:52','',1967,'https://kingsvillelivestock.com/?p=4526',0,'revision','',0),(4527,2,'2022-07-20 15:33:33','2022-07-20 15:33:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 19, 2022,</strong> 2013 hd; Last week, 2840 hd; a year ago 1289. Feeder cattle sold fully steady w/ several nice groups of weaned cattle &amp; load lots of yearlings. Slaughter cows &amp; bulls traded $10 lower due to cows moving in from the south because ofÂ the drought.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$183.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$163.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$164.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$162.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$155.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$137.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$70.00 - $90.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">719lbs @$179.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">738lbs @$183.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">752lbs @$171.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">766lbs @$180.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">847bs @$163.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 46px;\">687lbs @$172.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">737lbs@ $162.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">823lbs @$155.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 19, 2022 - Market Report','','publish','closed','open','','july-19-2022-market-report','','','2022-07-20 15:33:37','2022-07-20 15:33:37','',0,'https://kingsvillelivestock.com/?p=4527',0,'post','',0),(4529,2,'2022-07-20 15:33:33','2022-07-20 15:33:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 19, 2022,</strong> 2013 hd; Last week, 2840 hd; a year ago 1289. Feeder cattle sold fully steady w/ several nice groups of weaned cattle &amp; load lots of yearlings. Slaughter cows &amp; bulls traded $10 lower due to cows moving in from the south because ofÂ the drought.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$183.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$163.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$164.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$162.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$155.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$137.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$70.00 - $90.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">719lbs @$179.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">738lbs @$183.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">752lbs @$171.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">766lbs @$180.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">847bs @$163.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 46px;\">687lbs @$172.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">737lbs@ $162.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">823lbs @$155.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 19, 2022 - Market Report','','inherit','closed','closed','','4527-revision-v1','','','2022-07-20 15:33:33','2022-07-20 15:33:33','',4527,'https://kingsvillelivestock.com/?p=4529',0,'revision','',0),(4530,2,'2022-07-20 15:33:33','2022-07-20 15:33:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 19, 2022,</strong> 2013 hd; Last week, 2840 hd; a year ago 1289. Feeder cattle sold fully steady w/ several nice groups of weaned cattle &amp; load lots of yearlings. Slaughter cows &amp; bulls traded $10 lower due to cows moving in from the south because ofÂ the drought.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$183.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$163.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$164.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$162.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$155.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$137.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$70.00 - $90.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">719lbs @$179.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">738lbs @$183.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">752lbs @$171.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">766lbs @$180.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">847bs @$163.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 46px;\">687lbs @$172.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">737lbs@ $162.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">823lbs @$155.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 12, 2022 - Market Report','','inherit','closed','closed','','4527-revision-v1','','','2022-07-20 15:33:33','2022-07-20 15:33:33','',4527,'https://kingsvillelivestock.com/?p=4530',0,'revision','',0),(4531,2,'2022-07-20 15:33:37','2022-07-20 15:33:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 19, 2022,</strong> 2013 hd; Last week, 2840 hd; a year ago 1289. Feeder cattle sold fully steady w/ several nice groups of weaned cattle &amp; load lots of yearlings. Slaughter cows &amp; bulls traded $10 lower due to cows moving in from the south because ofÂ the drought.Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$183.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$163.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$150.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$164.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$172.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$162.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$155.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$137.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$70.00 - $90.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $70.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$51.00 - $60.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">719lbs @$179.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">738lbs @$183.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">752lbs @$171.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">766lbs @$180.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">847bs @$163.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 46px;\">687lbs @$172.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">737lbs@ $162.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">823lbs @$155.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 19, 2022 - Market Report','','inherit','closed','closed','','4527-revision-v1','','','2022-07-20 15:33:37','2022-07-20 15:33:37','',4527,'https://kingsvillelivestock.com/?p=4531',0,'revision','',0),(4532,2,'2022-07-20 17:40:50','2022-07-20 17:40:50','','Voorhees Auction August 5th & 6th-Holden','','inherit','closed','closed','','voorhees-auction-august-5th-6th-holden-2','','','2022-07-20 17:40:50','2022-07-20 17:40:50','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/07/Voorhees-Auction-August-5th-6th-Holden-1.pdf',0,'attachment','application/pdf',0),(4533,2,'2022-07-20 17:41:09','2022-07-20 17:41:09','','Price Auction August 13th-Clinton','','inherit','closed','closed','','price-auction-august-13th-clinton','','','2022-07-20 17:41:09','2022-07-20 17:41:09','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/07/Price-Auction-August-13th-Clinton.pdf',0,'attachment','application/pdf',0),(4534,2,'2022-07-20 17:41:49','2022-07-20 17:41:49','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.6\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/07/Voorhees-Auction-August-5th-6th-Holden.pdf\" rel=\"attachment wp-att-4522\">Voorhees Auction Friday &amp; Saturday, August 5th &amp; 6th-Holden, MO-9 amÂ </a></p>\n<p><a href=\"https://photos.app.goo.gl/FscqejhaxRuzMj4i9\">Voorhees Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/07/Price-Auction-August-13th-Clinton.pdf\" rel=\"attachment wp-att-4533\">Price Auction Saturday, August 13th-Clinton-Clinton,MO-9 am</a></p>\n<p><a href=\"https://photos.app.goo.gl/1YHf5x8QK5g6myD66\">Price Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-07-20 17:41:49','2022-07-20 17:41:49','',1450,'https://kingsvillelivestock.com/?p=4534',0,'revision','',0),(4535,2,'2022-07-25 17:25:12','2022-07-25 17:25:12','','Tuesday,July 26th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayjuly-26th-feeder-cattle-consignments','','','2022-07-25 17:25:12','2022-07-25 17:25:12','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/07/TuesdayJuly-26th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4536,2,'2022-07-25 17:25:21','2022-07-25 17:25:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/07/TuesdayJuly-26th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4535\">Tuesday,July 26th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-07-25 17:25:21','2022-07-25 17:25:21','',2209,'https://kingsvillelivestock.com/?p=4536',0,'revision','',0),(4537,2,'2022-07-27 01:04:42','2022-07-27 01:04:42','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 6th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-07-27 01:04:42','2022-07-27 01:04:42','',639,'https://kingsvillelivestock.com/?p=4537',0,'revision','',0),(4538,2,'2022-07-27 01:05:26','2022-07-27 01:05:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 6th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-07-27 01:05:26','2022-07-27 01:05:26','',1967,'https://kingsvillelivestock.com/?p=4538',0,'revision','',0),(4539,2,'2022-07-27 14:57:30','2022-07-27 14:57:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 26, 2022,</strong> 1707 hd; Last week, 2013 hd; a year ago 989. Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady. There was good buyer activity throughout the day. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$160.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$159.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$145.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$72.00 - $89.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $116.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">566lbs @$201.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">665lbs @$189.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">495lbs @$181.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">651lbs @$174.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Â </td>\n<td style=\"width: 153.75px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 26, 2022 - Market Report','','publish','closed','open','','july-26-2022-market-report','','','2022-07-27 14:57:34','2022-07-27 14:57:34','',0,'https://kingsvillelivestock.com/?p=4539',0,'post','',0),(4541,2,'2022-07-27 14:57:30','2022-07-27 14:57:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 26, 2022,</strong> 1707 hd; Last week, 2013 hd; a year ago 989. Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady. There was good buyer activity throughout the day. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$160.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$159.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$145.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$72.00 - $89.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $116.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">566lbs @$201.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">665lbs @$189.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">495lbs @$181.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">651lbs @$174.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Â </td>\n<td style=\"width: 153.75px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 26, 2022 - Market Report','','inherit','closed','closed','','4539-revision-v1','','','2022-07-27 14:57:30','2022-07-27 14:57:30','',4539,'https://kingsvillelivestock.com/?p=4541',0,'revision','',0),(4542,2,'2022-07-27 14:57:30','2022-07-27 14:57:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 26, 2022,</strong> 1707 hd; Last week, 2013 hd; a year ago 989. Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady. There was good buyer activity throughout the day. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$160.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$159.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$145.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$72.00 - $89.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $116.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">566lbs @$201.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">665lbs @$189.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">495lbs @$181.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">651lbs @$174.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Â </td>\n<td style=\"width: 153.75px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 19, 2022 - Market Report','','inherit','closed','closed','','4539-revision-v1','','','2022-07-27 14:57:30','2022-07-27 14:57:30','',4539,'https://kingsvillelivestock.com/?p=4542',0,'revision','',0),(4543,2,'2022-07-27 14:57:34','2022-07-27 14:57:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 26, 2022,</strong> 1707 hd; Last week, 2013 hd; a year ago 989. Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady. There was good buyer activity throughout the day. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$160.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$159.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$164.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$145.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$72.00 - $89.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $61.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $116.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">566lbs @$201.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">665lbs @$189.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">495lbs @$181.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">651lbs @$174.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Â </td>\n<td style=\"width: 153.75px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 26, 2022 - Market Report','','inherit','closed','closed','','4539-revision-v1','','','2022-07-27 14:57:34','2022-07-27 14:57:34','',4539,'https://kingsvillelivestock.com/?p=4543',0,'revision','',0),(4545,2,'2022-08-01 16:11:36','2022-08-01 16:11:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 6th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-08-01 16:11:36','2022-08-01 16:11:36','',639,'https://kingsvillelivestock.com/?p=4545',0,'revision','',0),(4546,2,'2022-08-01 16:12:43','2022-08-01 16:12:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 6th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-08-01 16:12:43','2022-08-01 16:12:43','',1967,'https://kingsvillelivestock.com/?p=4546',0,'revision','',0),(4547,2,'2022-08-01 17:12:36','2022-08-01 17:12:36','','Tuesday,August 2nd Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayaugust-2nd-feeder-cattle-consignments','','','2022-08-01 17:12:36','2022-08-01 17:12:36','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/08/TuesdayAugust-2nd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4548,2,'2022-08-01 17:12:45','2022-08-01 17:12:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/TuesdayAugust-2nd-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4547\">Tuesday,August 2nd Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-08-01 17:12:45','2022-08-01 17:12:45','',2209,'https://kingsvillelivestock.com/?p=4548',0,'revision','',0),(4549,2,'2022-08-01 18:17:43','2022-08-01 18:17:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 6th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 10th @ 6:00 pm<br /></strong>Comer Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-08-01 18:17:43','2022-08-01 18:17:43','',639,'https://kingsvillelivestock.com/?p=4549',0,'revision','',0),(4550,2,'2022-08-01 18:18:18','2022-08-01 18:18:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 6th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 10th @ 6:00 pm<br /></strong>Comer Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-08-01 18:18:18','2022-08-01 18:18:18','',1967,'https://kingsvillelivestock.com/?p=4550',0,'revision','',0),(4551,2,'2022-08-01 18:19:08','2022-08-01 18:19:08','','Comer Auction-August 10th','','inherit','closed','closed','','comer-auction-august-10th','','','2022-08-01 18:19:08','2022-08-01 18:19:08','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/08/Comer-Auction-August-10th.pdf',0,'attachment','application/pdf',0),(4552,2,'2022-08-01 18:19:56','2022-08-01 18:19:56','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.6\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/07/Voorhees-Auction-August-5th-6th-Holden.pdf\" rel=\"attachment wp-att-4522\">Voorhees Auction Friday &amp; Saturday, August 5th &amp; 6th-Holden, MO-9 amÂ </a></p>\n<p><a href=\"https://photos.app.goo.gl/FscqejhaxRuzMj4i9\">Voorhees Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Comer-Auction-August-10th.pdf\" rel=\"attachment wp-att-4551\">Comer Auction Wednesday, August 10th-Holden,MO-6pm</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/07/Price-Auction-August-13th-Clinton.pdf\" rel=\"attachment wp-att-4533\">Price Auction Saturday, August 13th-Clinton-Clinton,MO-9 am</a></p>\n<p><a href=\"https://photos.app.goo.gl/1YHf5x8QK5g6myD66\">Price Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-08-01 18:19:56','2022-08-01 18:19:56','',1450,'https://kingsvillelivestock.com/?p=4552',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (4553,2,'2022-08-03 00:50:43','2022-08-03 00:50:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 5th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 6th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 10th @ 6:00 pm<br /></strong>Comer Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-08-03 00:50:43','2022-08-03 00:50:43','',639,'https://kingsvillelivestock.com/?p=4553',0,'revision','',0),(4554,2,'2022-08-03 00:51:17','2022-08-03 00:51:17','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 5th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 6th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 10th @ 6:00 pm<br /></strong>Comer Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-08-03 00:51:17','2022-08-03 00:51:17','',1967,'https://kingsvillelivestock.com/?p=4554',0,'revision','',0),(4555,2,'2022-08-03 15:29:49','2022-08-03 15:29:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 2, 2022,</strong> 1767 hd; Last week, 1707 hd; a year ago 1731. Feeder steers weighing 450-630lbs sold $10-$15 higher. Heifers &amp; all other steers sold $2-$5 higher. Slaughter cows &amp; bulls sold $2-$6 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$228.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$219.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$209.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$184.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$173.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$132.00-$145.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$136.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$81.00 - $95.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$81.50 - $119.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">458lbs @$228.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">569lbs @$219.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">713lbs @$183.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">735lbs @$184.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">979lbs@$159.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 46px;\">707lbs@$173.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 2, 2022 - Market Report','','publish','closed','open','','august-2-2022-market-report','','','2022-08-03 15:29:53','2022-08-03 15:29:53','',0,'https://kingsvillelivestock.com/?p=4555',0,'post','',0),(4557,2,'2022-08-03 15:29:49','2022-08-03 15:29:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 2, 2022,</strong> 1767 hd; Last week, 1707 hd; a year ago 1731. Feeder steers weighing 450-630lbs sold $10-$15 higher. Heifers &amp; all other steers sold $2-$5 higher. Slaughter cows &amp; bulls sold $2-$6 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$228.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$219.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$209.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$184.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$173.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$132.00-$145.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$136.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$81.00 - $95.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$81.50 - $119.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">458lbs @$228.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">569lbs @$219.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">713lbs @$183.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">735lbs @$184.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">979lbs@$159.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 46px;\">707lbs@$173.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 2, 2022 - Market Report','','inherit','closed','closed','','4555-revision-v1','','','2022-08-03 15:29:49','2022-08-03 15:29:49','',4555,'https://kingsvillelivestock.com/?p=4557',0,'revision','',0),(4558,2,'2022-08-03 15:29:49','2022-08-03 15:29:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 2, 2022,</strong> 1767 hd; Last week, 1707 hd; a year ago 1731. Feeder steers weighing 450-630lbs sold $10-$15 higher. Heifers &amp; all other steers sold $2-$5 higher. Slaughter cows &amp; bulls sold $2-$6 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$228.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$219.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$209.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$184.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$173.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$132.00-$145.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$136.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$81.00 - $95.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$81.50 - $119.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">458lbs @$228.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">569lbs @$219.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">713lbs @$183.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">735lbs @$184.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">979lbs@$159.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 46px;\">707lbs@$173.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 26, 2022 - Market Report','','inherit','closed','closed','','4555-revision-v1','','','2022-08-03 15:29:49','2022-08-03 15:29:49','',4555,'https://kingsvillelivestock.com/?p=4558',0,'revision','',0),(4559,2,'2022-08-03 15:29:53','2022-08-03 15:29:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 2, 2022,</strong> 1767 hd; Last week, 1707 hd; a year ago 1731. Feeder steers weighing 450-630lbs sold $10-$15 higher. Heifers &amp; all other steers sold $2-$5 higher. Slaughter cows &amp; bulls sold $2-$6 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$228.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$219.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$209.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$184.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$173.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$132.00-$145.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$136.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$81.00 - $95.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$70.00 - $80.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$52.00 - $69.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$81.50 - $119.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">458lbs @$228.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">569lbs @$219.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">713lbs @$183.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">735lbs @$184.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">979lbs@$159.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 46px;\">707lbs@$173.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.4\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>\r[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 2, 2022 - Market Report','','inherit','closed','closed','','4555-revision-v1','','','2022-08-03 15:29:53','2022-08-03 15:29:53','',4555,'https://kingsvillelivestock.com/?p=4559',0,'revision','',0),(4560,2,'2022-08-03 16:00:58','2022-08-03 16:00:58','','August 2022 Horse,Tack, & Small Animal','','inherit','closed','closed','','august-2022-horsetack-small-animal','','','2022-08-03 16:00:58','2022-08-03 16:00:58','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf',0,'attachment','application/pdf',0),(4561,2,'2022-08-03 16:01:20','2022-08-03 16:01:20','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 5th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 6th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 10th @ 6:00 pm<br /></strong>Comer Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse, Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-08-03 16:01:20','2022-08-03 16:01:20','',639,'https://kingsvillelivestock.com/?p=4561',0,'revision','',0),(4562,2,'2022-08-03 16:02:08','2022-08-03 16:02:08','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 5th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 6th @ 9:00 am<br /></strong>Voorhees Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 10th @ 6:00 pm<br /></strong>Comer Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-08-03 16:02:08','2022-08-03 16:02:08','',1967,'https://kingsvillelivestock.com/?p=4562',0,'revision','',0),(4564,2,'2022-08-03 17:16:48','2022-08-03 17:16:48','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/TuesdayAugust-2nd-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4547\">Tuesday,August 2nd Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.17.6\" _module_preset=\"default\" column_structure=\"2_5,3_5\"][et_pb_column _builder_version=\"4.17.6\" _module_preset=\"default\" type=\"2_5\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><strong><span style=\"color: #339966;\">Special Cow &amp; Bull Sale, Saturday, August 20th @ 11 amÂ </span></strong></h1>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.17.6\" _module_preset=\"default\" type=\"3_5\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Diehl Farms: </b><b>6 </b>18-month-old Blk bulls <b>2</b> 18-month-old Red bulls All bulls are Leachman &amp; Leachman Composite sired bulls. Semen &amp; trich tested &amp; ready to be turned out.Â </li>\n<li><b>Mick Cattle CO: </b><b>2 </b>16-month-old Reg. Sim. Bulls. ASA # 4010407 &amp; 4010408</li>\n<li><b>Tiffany Farms: </b><b>5 </b>2 yr old Purebred Angus bulls. Semen &amp; trich tested &amp; a nice set of bullsÂ </li>\n<li><b>John Manley Complete Dispersal: </b><b>1 </b>3yr old Reg. Angus bulls</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Steve Young Complete Dispersal: </b><b>45 </b>Blk 2-SS cows w/ spring calves at side. Bulls have been turned in for 60 days &amp; bred to Blk Angus bulls. All cows are home-raised, 1st time to town, gentle &amp; current on all shots. Cows are only selling due to having 2 shoulder replacements.Â </li>\n<li><b>Luke Skidmore Complete Dispersal: </b><b>22 </b>Blk-Bwf 5-SS cows w/ spring calves at side. Bulls in July 1st these are 3N1 pairs. Calves are cut &amp; had 1 round of shots. <b>8</b> Blk-Bwf 5-SS cows, 3rd period. All cows bred to Polled Hereford or Blk Balancer bulls.</li>\n<li><b>John Manley Complete Dispersal: </b><b>6 </b>Blk Angus 3-6 yr. cows w/ 250lbs calves at side.<b>2</b> Blk 3-6 yr. old cows, 3rd period. <b>3</b> Blk Angus 2 yr. old, 1000lbs bred heifers, 2nd period.</li>\n<li><b>Bosch Farms: </b><b>3 </b>Â Fancy Blk 1/2 blood brahman cows w/ heifer calves at side. All 3N1s that are gentle &amp; AI bred.</li>\n<li><b>Schull Farms: </b><b>6 </b>Red Angus 5-6 yr. old cows w/ 450lbs calves at side. 3N1s bred back to Red Angus bulls &amp; in 1st period.</li>\n<li><b>Engelbrent Farms: </b><b>45 </b>Blk-Bwf 3-4 yr. old fall calving cows, 3rd period. <b>45</b> Blk-Bwf 5-6 yr. old fall calving cows, 3rd period. Bred Blk Angus bulls &amp; bulls were turned in Dec. 10th.</li>\n<li><b>Allen Farms: </b><b>35 </b>Red Angus 3-6 yr. old fall calving cows, 3rd period. Bred Blk Balancer bulls. Gentle set of cows that are current on all shots.Â </li>\n<li><b>C &amp; M Farms: </b><b>20 </b>Blk 3-6 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Harrington Farms: </b><b>80 </b>Blk-Bwf 3-5 yr. old cows,2nd period. <b>50</b> Blk-Bwf 5-6 yr. old cows, 3rd period. Bred Red &amp; Blk Angus bulls &amp; turned in Dec 1st<b><i>. </i></b></li>\n<li><b>Kennedy Farms: </b><b>8 </b>Blk 3-5 yr. old cows w/ 250lbs AI sired calves at side. Cows are gentle &amp; broke to feed truck.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-08-03 17:16:48','2022-08-03 17:16:48','',2209,'https://kingsvillelivestock.com/?p=4564',0,'revision','',0),(4565,2,'2022-08-08 16:24:58','2022-08-08 16:24:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 10th @ 6:00 pm<br /></strong>Comer Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse, Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-08-08 16:24:58','2022-08-08 16:24:58','',639,'https://kingsvillelivestock.com/?p=4565',0,'revision','',0),(4566,2,'2022-08-08 16:25:52','2022-08-08 16:25:52','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 10th @ 6:00 pm<br /></strong>Comer Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-08-08 16:25:52','2022-08-08 16:25:52','',1967,'https://kingsvillelivestock.com/?p=4566',0,'revision','',0),(4567,2,'2022-08-08 16:28:01','2022-08-08 16:28:01','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/TuesdayAugust-2nd-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4547\">Tuesday,August 2nd Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><strong><span style=\"color: #339966;\">Special Cow &amp; Bull Sale, Saturday, August 20th @ 11 amÂ </span></strong></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Diehl Farms: </b><b>6 </b>18-month-old Blk bulls <b>2</b> 18-month-old Red bulls All bulls are Leachman &amp; Leachman Composite sired bulls. Semen &amp; trich tested &amp; ready to be turned out.</li>\n<li><b>Mick Cattle CO: </b><b>2 </b>16-month-old Reg. Sim. Bulls. ASA # 4010407 &amp; 4010408</li>\n<li><b>Tiffany Farms: </b><b>5 </b>2 yr old Purebred Angus bulls. Semen &amp; trich tested &amp; a nice set of bulls</li>\n<li><b>John Manley Complete Dispersal: </b><b>1 </b>3yr old Reg. Angus bulls</li>\n<li><b>Yvonne Holsten Complete Dispersal: </b><b>2 </b>Blk 3-4 yr. old bullsÂ </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Steve Young Complete Dispersal: </b><b>45 </b>Blk 2-SS cows w/ spring calves at side. Bulls have been turned in for 60 days &amp; bred to Blk Angus bulls. All cows are home-raised, 1st time to town, gentle &amp; current on all shots. Cows are only selling due to having 2 shoulder replacements.</li>\n<li><b>Luke Skidmore Complete Dispersal: </b><b>22 </b>Blk-Bwf 5-SS cows w/ spring calves at side. Bulls in July 1st these are 3N1 pairs. Calves are cut &amp; had 1 round of shots. <b>8</b> Blk-Bwf 5-SS cows, 3rd period. All cows bred to Polled Hereford or Blk Balancer bulls.</li>\n<li><b>John Manley Complete Dispersal: </b><b>6 </b>Blk Angus 3-6 yr. cows w/ 250lbs calves at side.<b>2</b> Blk 3-6 yr. old cows, 3rd period. <b>3</b> Blk Angus 2 yr. old, 1000lbs bred heifers, 2nd period.</li>\n<li><b>Yvonne Holsten Complete Dispersal: </b><b>25 </b>Mixed 5-SS yr. old cows w/ 250lbs calves at side.<b>23</b> Mixed 5-SS cows, 3rd period.</li>\n<li><b>Bosch Farms: </b><b>3 </b>Â Fancy Blk 1/2 blood brahman cows w/ heifer calves at side. All 3N1s that are gentle &amp; AI bred.</li>\n<li><b>Schull Farms: </b><b>6 </b>Red Angus 5-6 yr. old cows w/ 450lbs calves at side. 3N1s bred back to Red Angus bulls &amp; in 1st period.</li>\n<li><b>Engelbrent Farms: </b><b>45 </b>Blk-Bwf 3-4 yr. old fall calving cows, 3rd period. <b>45</b> Blk-Bwf 5-6 yr. old fall calving cows, 3rd period. Bred Blk Angus bulls &amp; bulls were turned in Dec. 10th.</li>\n<li><b>Allen Farms: </b><b>35 </b>Red Angus 3-6 yr. old fall calving cows, 3rd period. Bred Blk Balancer bulls. Gentle set of cows that are current on all shots.</li>\n<li><b>C &amp; M Farms: </b><b>20 </b>Blk 3-6 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Harrington Farms: </b><b>80 </b>Blk-Bwf 3-5 yr. old cows,2nd period. <b>50</b> Blk-Bwf 5-6 yr. old cows, 3rd period. Bred Red &amp; Blk Angus bulls &amp; turned in Dec 1st<b><i>. </i></b></li>\n<li><b>Kennedy Farms: </b><b>8 </b>Blk 3-5 yr. old cows w/ 250lbs AI sired calves at side. Cows are gentle &amp; broke to feed truck.</li>\n<li><b>Bob Ramey Farms: </b><b>43 </b>Blk-Bwf 3-4 yr. old fall calving cows,3rd period. Bulls turned in Nov. 26th. Bred to May-Way Farms Reg. Angus bulls.</li>\n<li><b>Carter Farms: </b><b>35 </b>Blk-Bwf 3-6 yr. old cows w/ 150-250lbs calves at side. Cows will sell open and breed to the bull of your choice.</li>\n<li><b>Coffelt Farms: </b><b>65 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Angus bulls &amp; start calving Sept. 1st</li>\n<li><b>Corwin Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows,2nd period. Bred Blk Angus bulls</li>\n<li><b>J &amp; S Farms: </b><b>25 </b>Red-Rwf 5-SS yr. old cows, 3rd period. 15 Charx 5-SS cows, 3rd period. 30 Blk-Bwf 5-SS yr old cows, 3rd period. All cows have had calves weaned off for 30 days. Bred Blk Sim-Angus &amp; Blk Angus bulls</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-08-08 16:28:01','2022-08-08 16:28:01','',2209,'https://kingsvillelivestock.com/?p=4567',0,'revision','',0),(4568,2,'2022-08-08 16:29:29','2022-08-08 16:29:29','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.6\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Comer-Auction-August-10th.pdf\" rel=\"attachment wp-att-4551\">Comer Auction Wednesday, August 10th-Holden, MO-6pm</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/07/Price-Auction-August-13th-Clinton.pdf\" rel=\"attachment wp-att-4533\">Price Auction Saturday, August 13th-Clinton-Clinton, MO-9 am</a></p>\n<p><a href=\"https://photos.app.goo.gl/1YHf5x8QK5g6myD66\">Price Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-08-08 16:29:29','2022-08-08 16:29:29','',1450,'https://kingsvillelivestock.com/?p=4568',0,'revision','',0),(4569,2,'2022-08-08 17:40:37','2022-08-08 17:40:37','','August 20, 2022 Cow Sale','','inherit','closed','closed','','august-20-2022-cow-sale','','','2022-08-08 17:40:37','2022-08-08 17:40:37','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-20-2022-Cow-Sale.pdf',0,'attachment','application/pdf',0),(4570,2,'2022-08-08 17:40:53','2022-08-08 17:40:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 10th @ 6:00 pm<br /></strong>Comer Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-20-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4569\">August 20, 2022 Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-08-08 17:40:53','2022-08-08 17:40:53','',1967,'https://kingsvillelivestock.com/?p=4570',0,'revision','',0),(4571,2,'2022-08-08 17:41:43','2022-08-08 17:41:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 10th @ 6:00 pm<br /></strong>Comer Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse, Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-20-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4569\">August 20, 2022 Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-08-08 17:41:43','2022-08-08 17:41:43','',639,'https://kingsvillelivestock.com/?p=4571',0,'revision','',0),(4572,2,'2022-08-08 17:54:30','2022-08-08 17:54:30','','Tuesday,August 9th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayaugust-9th-feeder-cattle-consignments','','','2022-08-08 17:54:30','2022-08-08 17:54:30','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/08/TuesdayAugust-9th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4573,2,'2022-08-08 17:54:37','2022-08-08 17:54:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/TuesdayAugust-9th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4572\">Tuesday,August 9th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><strong><span style=\"color: #339966;\">Special Cow &amp; Bull Sale, Saturday, August 20th @ 11 amÂ </span></strong></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Diehl Farms: </b><b>6 </b>18-month-old Blk bulls <b>2</b> 18-month-old Red bulls All bulls are Leachman &amp; Leachman Composite sired bulls. Semen &amp; trich tested &amp; ready to be turned out.</li>\n<li><b>Mick Cattle CO: </b><b>2 </b>16-month-old Reg. Sim. Bulls. ASA # 4010407 &amp; 4010408</li>\n<li><b>Tiffany Farms: </b><b>5 </b>2 yr old Purebred Angus bulls. Semen &amp; trich tested &amp; a nice set of bulls</li>\n<li><b>John Manley Complete Dispersal: </b><b>1 </b>3yr old Reg. Angus bulls</li>\n<li><b>Yvonne Holsten Complete Dispersal: </b><b>2 </b>Blk 3-4 yr. old bullsÂ </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Steve Young Complete Dispersal: </b><b>45 </b>Blk 2-SS cows w/ spring calves at side. Bulls have been turned in for 60 days &amp; bred to Blk Angus bulls. All cows are home-raised, 1st time to town, gentle &amp; current on all shots. Cows are only selling due to having 2 shoulder replacements.</li>\n<li><b>Luke Skidmore Complete Dispersal: </b><b>22 </b>Blk-Bwf 5-SS cows w/ spring calves at side. Bulls in July 1st these are 3N1 pairs. Calves are cut &amp; had 1 round of shots. <b>8</b> Blk-Bwf 5-SS cows, 3rd period. All cows bred to Polled Hereford or Blk Balancer bulls.</li>\n<li><b>John Manley Complete Dispersal: </b><b>6 </b>Blk Angus 3-6 yr. cows w/ 250lbs calves at side.<b>2</b> Blk 3-6 yr. old cows, 3rd period. <b>3</b> Blk Angus 2 yr. old, 1000lbs bred heifers, 2nd period.</li>\n<li><b>Yvonne Holsten Complete Dispersal: </b><b>25 </b>Mixed 5-SS yr. old cows w/ 250lbs calves at side.<b>23</b> Mixed 5-SS cows, 3rd period.</li>\n<li><b>Bosch Farms: </b><b>3 </b>Â Fancy Blk 1/2 blood brahman cows w/ heifer calves at side. All 3N1s that are gentle &amp; AI bred.</li>\n<li><b>Schull Farms: </b><b>6 </b>Red Angus 5-6 yr. old cows w/ 450lbs calves at side. 3N1s bred back to Red Angus bulls &amp; in 1st period.</li>\n<li><b>Engelbrent Farms: </b><b>45 </b>Blk-Bwf 3-4 yr. old fall calving cows, 3rd period. <b>45</b> Blk-Bwf 5-6 yr. old fall calving cows, 3rd period. Bred Blk Angus bulls &amp; bulls were turned in Dec. 10th.</li>\n<li><b>Allen Farms: </b><b>35 </b>Red Angus 3-6 yr. old fall calving cows, 3rd period. Bred Blk Balancer bulls. Gentle set of cows that are current on all shots.</li>\n<li><b>C &amp; M Farms: </b><b>20 </b>Blk 3-6 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Harrington Farms: </b><b>80 </b>Blk-Bwf 3-5 yr. old cows,2nd period. <b>50</b> Blk-Bwf 5-6 yr. old cows, 3rd period. Bred Red &amp; Blk Angus bulls &amp; turned in Dec 1st<b><i>. </i></b></li>\n<li><b>Kennedy Farms: </b><b>8 </b>Blk 3-5 yr. old cows w/ 250lbs AI sired calves at side. Cows are gentle &amp; broke to feed truck.</li>\n<li><b>Bob Ramey Farms: </b><b>43 </b>Blk-Bwf 3-4 yr. old fall calving cows,3rd period. Bulls turned in Nov. 26th. Bred to May-Way Farms Reg. Angus bulls.</li>\n<li><b>Carter Farms: </b><b>35 </b>Blk-Bwf 3-6 yr. old cows w/ 150-250lbs calves at side. Cows will sell open and breed to the bull of your choice.</li>\n<li><b>Coffelt Farms: </b><b>65 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Angus bulls &amp; start calving Sept. 1st</li>\n<li><b>Corwin Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows,2nd period. Bred Blk Angus bulls</li>\n<li><b>J &amp; S Farms: </b><b>25 </b>Red-Rwf 5-SS yr. old cows, 3rd period. 15 Charx 5-SS cows, 3rd period. 30 Blk-Bwf 5-SS yr old cows, 3rd period. All cows have had calves weaned off for 30 days. Bred Blk Sim-Angus &amp; Blk Angus bulls</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-08-08 17:54:37','2022-08-08 17:54:37','',2209,'https://kingsvillelivestock.com/?p=4573',0,'revision','',0),(4574,2,'2022-08-08 18:02:45','2022-08-08 18:02:45','','2022 Labor Day Sale Flyer','','inherit','closed','closed','','2022-labor-day-sale-flyer','','','2022-08-08 18:02:45','2022-08-08 18:02:45','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/08/2022-Labor-Day-Sale-Flyer.pdf',0,'attachment','application/pdf',0),(4575,2,'2022-08-08 18:03:14','2022-08-08 18:03:14','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.17.6\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Comer-Auction-August-10th.pdf\" rel=\"attachment wp-att-4551\">Comer Auction Wednesday, August 10th-Holden, MO-6pm</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/07/Price-Auction-August-13th-Clinton.pdf\" rel=\"attachment wp-att-4533\">Price Auction Saturday, August 13th-Clinton-Clinton, MO-9 am</a></p>\n<p><a href=\"https://photos.app.goo.gl/1YHf5x8QK5g6myD66\">Price Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/2022-Labor-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4574\">Â Labor Day Sale Flyer-Septemeber 4th &amp; 5th @ 9amÂ </a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-08-08 18:03:14','2022-08-08 18:03:14','',1450,'https://kingsvillelivestock.com/?p=4575',0,'revision','',0),(4576,2,'2022-08-08 18:58:13','2022-08-08 18:58:13','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/TuesdayAugust-9th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4572\">Tuesday,August 9th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><strong><span style=\"color: #339966;\">Special Cow &amp; Bull Sale, Saturday, August 20th @ 11 amÂ </span></strong></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Diehl Farms: </b><b>6 </b>18-month-old Blk bulls <b>2</b> 18-month-old Red bulls All bulls are Leachman &amp; Leachman Composite sired bulls. Semen &amp; trich tested &amp; ready to be turned out.</li>\n<li><b>Mick Cattle CO: </b><b>2 </b>16-month-old Reg. Sim. Bulls. ASA # 4010407 &amp; 4010408</li>\n<li><b>Tiffany Farms: </b><b>5 </b>2 yr old Purebred Angus bulls. Semen &amp; trich tested &amp; a nice set of bulls</li>\n<li><b>John Manley Complete Dispersal: </b><b>1 </b>3yr old Reg. Angus bulls</li>\n<li><b>Yvonne Holsten Complete Dispersal: </b><b>2 </b>Blk 3-4 yr. old bulls</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Steve Young Complete Dispersal: </b><b>45 </b>Blk 2-SS cows w/ spring calves at side. Bulls have been turned in for 60 days &amp; bred to Blk Angus bulls. All cows are home-raised, 1st time to town, gentle &amp; current on all shots. Cows are only selling due to having 2 shoulder replacements.</li>\n<li><b>Luke Skidmore Complete Dispersal: </b><b>22 </b>Blk-Bwf 5-SS cows w/ spring calves at side. Bulls in July 1st these are 3N1 pairs. Calves are cut &amp; had 1 round of shots. <b>8</b> Blk-Bwf 5-SS cows, 3rd period. All cows bred to Polled Hereford or Blk Balancer bulls.</li>\n<li><b>John Manley Complete Dispersal: </b><b>6 </b>Blk Angus 3-6 yr. cows w/ 250lbs calves at side.<b>2</b> Blk 3-6 yr. old cows, 3rd period. <b>3</b> Blk Angus 2 yr. old, 1000lbs bred heifers, 2nd period.</li>\n<li><b>Yvonne Holsten Complete Dispersal: </b><b>25 </b>Mixed 5-SS yr. old cows w/ 250lbs calves at side.<b>23</b> Mixed 5-SS cows, 3rd period.</li>\n<li><b>Bosch Farms: </b><b>3 </b>Â Fancy Blk 1/2 blood brahman cows w/ heifer calves at side. All 3N1s that are gentle &amp; AI bred.</li>\n<li><b>Schull Farms: </b><b>6 </b>Red Angus 5-6 yr. old cows w/ 450lbs calves at side. 3N1s bred back to Red Angus bulls &amp; in 1st period.</li>\n<li><b>Engelbrent Farms: </b><b>45 </b>Blk-Bwf 3-4 yr. old fall calving cows, 3rd period. <b>45</b> Blk-Bwf 5-6 yr. old fall calving cows, 3rd period. Bred Blk Angus bulls &amp; bulls were turned in Dec. 10th.</li>\n<li><b>Double J Farms: </b><b>4 </b>Fancy Blk-Sim Angus 1250lbs bred heifers. AI bred to Growth Fund &amp; cleaned up w/ Blk Angus bull for 30 days. Start calving Sept. 2nd. <b>1 </b>1/2 Red Angus &amp; 1/2 Char yellow bred heifer. AI bred to 9 Mile Franchise Red Angus bull. <b>6 </b>Â Hereford 1250lbs bred heifers. AI bred to Growth Fund Blk Angus bull &amp; cleaned up w/ Red Angus bull. All have been through the Show-Me-Select program.</li>\n<li><b>Allen Farms: </b><b>35 </b>Red Angus 3-6 yr. old fall calving cows, 3rd period. Bred Blk Balancer bulls. Gentle set of cows that are current on all shots.</li>\n<li><b>C &amp; M Farms: </b><b>20 </b>Blk 3-6 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Harrington Farms: </b><b>80 </b>Blk-Bwf 3-5 yr. old cows,2nd period. <b>50</b> Blk-Bwf 5-6 yr. old cows, 3rd period. Bred Red &amp; Blk Angus bulls &amp; turned in Dec 1st<b><i>. </i></b></li>\n<li><b>Kennedy Farms: </b><b>8 </b>Blk 3-5 yr. old cows w/ 250lbs AI sired calves at side. Cows are gentle &amp; broke to feed truck.</li>\n<li><b>Bob Ramey Farms: </b><b>43 </b>Blk-Bwf 3-4 yr. old fall calving cows,3rd period. Bulls turned in Nov. 26th. Bred to May-Way Farms Reg. Angus bulls.</li>\n<li><b>Carter Farms: </b><b>35 </b>Blk-Bwf 3-6 yr. old cows w/ 150-250lbs calves at side. Cows will sell open and breed to the bull of your choice.</li>\n<li><b>Coffelt Farms: </b><b>65 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Angus bulls &amp; start calving Sept. 1st</li>\n<li><b>Corwin Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows,2nd period. Bred Blk Angus bulls</li>\n<li><b>J &amp; S Farms: </b><b>25 </b>Red-Rwf 5-SS yr. old cows, 3rd period. <b>15 </b>Charx 5-SS cows, 3rd period. <b>30 </b>Blk-Bwf 5-SS yr old cows, 3rd period. All cows have had calves weaned off for 30 days. Bred Blk Sim-Angus &amp; Blk Angus bullsÂ </li>\n<li></li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-08-08 18:58:13','2022-08-08 18:58:13','',2209,'https://kingsvillelivestock.com/?p=4576',0,'revision','',0),(4577,2,'2022-08-08 18:59:19','2022-08-08 18:59:19','','August 20, 2022 Cow Sale','','inherit','closed','closed','','august-20-2022-cow-sale-2','','','2022-08-08 18:59:19','2022-08-08 18:59:19','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-20-2022-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(4578,2,'2022-08-08 18:59:44','2022-08-08 18:59:44','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 10th @ 6:00 pm<br /></strong>Comer Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse, Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-20-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4577\">August 20th Cow &amp; Bull Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-08-08 18:59:44','2022-08-08 18:59:44','',639,'https://kingsvillelivestock.com/?p=4578',0,'revision','',0),(4579,2,'2022-08-08 19:01:27','2022-08-08 19:01:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug.9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Aug. 10th @ 6:00 pm<br /></strong>Comer Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-20-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4577\">August 20th Cow &amp; Bull Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-08-08 19:01:27','2022-08-08 19:01:27','',1967,'https://kingsvillelivestock.com/?p=4579',0,'revision','',0),(4581,2,'2022-08-09 23:10:21','2022-08-09 23:10:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 10th @ 6:00 pm<br /></strong>Comer Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse, Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-20-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4577\">August 20th Cow &amp; Bull Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-08-09 23:10:21','2022-08-09 23:10:21','',639,'https://kingsvillelivestock.com/?p=4581',0,'revision','',0),(4582,2,'2022-08-09 23:11:15','2022-08-09 23:11:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 10th @ 6:00 pm<br /></strong>Comer Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-20-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4577\">August 20th Cow &amp; Bull Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-08-09 23:11:15','2022-08-09 23:11:15','',1967,'https://kingsvillelivestock.com/?p=4582',0,'revision','',0),(4583,2,'2022-08-10 14:19:24','2022-08-10 14:19:24','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/TuesdayAugust-9th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4572\">Tuesday,August 9th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><strong><span style=\"color: #339966;\">Special Cow &amp; Bull Sale, Saturday, August 20th @ 11 amÂ </span></strong></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Diehl Farms: </b><b>6 </b>18-month-old Blk bulls <b>2</b> 18-month-old Red bulls All bulls are Leachman &amp; Leachman Composite sired bulls. Semen &amp; trich tested &amp; ready to be turned out.</li>\n<li><b>Mick Cattle CO: </b><b>2 </b>16-month-old Reg. Sim. Bulls. ASA # 4010407 &amp; 4010408</li>\n<li><b>Tiffany Farms: </b><b>5 </b>2 yr old Purebred Angus bulls. Semen &amp; trich tested &amp; a nice set of bulls</li>\n<li><b>John Manley Complete Dispersal: </b><b>1 </b>3yr old Reg. Angus bulls</li>\n<li><b>Yvonne Holsten Complete Dispersal: </b><b>2 </b>Blk 3-4 yr. old bulls</li>\n<li><b>Leinbach Farms: </b><b>1 </b>3 yr. old Blk Angus bullÂ </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Steve Young Complete Dispersal: </b><b>45 </b>Blk 2-SS cows w/ spring calves at side. Bulls have been turned in for 60 days &amp; bred to Blk Angus bulls. All cows are home-raised, 1st time to town, gentle &amp; current on all shots. Cows are only selling due to having 2 shoulder replacements.</li>\n<li><b>Luke Skidmore Complete Dispersal: </b><b>22 </b>Blk-Bwf 5-SS cows w/ spring calves at side. Bulls in July 1st these are 3N1 pairs. Calves are cut &amp; had 1 round of shots. <b>8</b> Blk-Bwf 5-SS cows, 3rd period. All cows bred to Polled Hereford or Blk Balancer bulls.</li>\n<li><b>John Manley Complete Dispersal: </b><b>6 </b>Blk Angus 3-6 yr. cows w/ 250lbs calves at side.<b>2</b> Blk 3-6 yr. old cows, 3rd period. <b>3</b> Blk Angus 2 yr. old, 1000lbs bred heifers, 2nd period.</li>\n<li><b>Yvonne Holsten Complete Dispersal: </b><b>25 </b>Mixed 5-SS yr. old cows w/ 250lbs calves at side.<b>23</b> Mixed 5-SS cows, 3rd period.</li>\n<li><b>Bosch Farms: </b><b>3 </b>Â Fancy Blk 1/2 blood brahman cows w/ heifer calves at side. All 3N1s that are gentle &amp; AI bred.</li>\n<li><b>Schull Farms: </b><b>6 </b>Red Angus 5-6 yr. old cows w/ 450lbs calves at side. 3N1s bred back to Red Angus bulls &amp; in 1st period.</li>\n<li><b>Engelbrent Farms: </b><b>45 </b>Blk-Bwf 3-4 yr. old fall calving cows, 3rd period. <b>45</b> Blk-Bwf 5-6 yr. old fall calving cows, 3rd period. Bred Blk Angus bulls &amp; bulls were turned in Dec. 10th.</li>\n<li><b>Double J Farms: </b><b>4 </b>Fancy Blk-Sim Angus 1250lbs bred heifers. AI bred to Growth Fund &amp; cleaned up w/ Blk Angus bull for 30 days. Start calving Sept. 2nd. <b>1 </b>1/2 Red Angus &amp; 1/2 Char yellow bred heifer. AI bred to 9 Mile Franchise Red Angus bull. <b>6 </b>Â Hereford 1250lbs bred heifers. AI bred to Growth Fund Blk Angus bull &amp; cleaned up w/ Red Angus bull. All have been through the Show-Me-Select program.</li>\n<li><b>Allen Farms: </b><b>35 </b>Red Angus 3-6 yr. old fall calving cows, 3rd period. Bred Blk Balancer bulls. Gentle set of cows that are current on all shots.</li>\n<li><b>C &amp; M Farms: </b><b>20 </b>Blk 3-6 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Harrington Farms: </b><b>80 </b>Blk-Bwf 3-5 yr. old cows,2nd period. <b>50</b> Blk-Bwf 5-6 yr. old cows, 3rd period. Bred Red &amp; Blk Angus bulls &amp; turned in Dec 1st<b><i>. </i></b></li>\n<li><b>Kennedy Farms: </b><b>8 </b>Blk 3-5 yr. old cows w/ 250lbs AI sired calves at side. Cows are gentle &amp; broke to feed truck.</li>\n<li><b>Bob Ramey Farms: </b><b>43 </b>Blk-Bwf 3-4 yr. old fall calving cows,3rd period. Bulls turned in Nov. 26th. Bred to May-Way Farms Reg. Angus bulls.</li>\n<li><b>Carter Farms: </b><b>35 </b>Blk-Bwf 3-6 yr. old cows w/ 150-250lbs calves at side. Cows will sell open and breed to the bull of your choice.</li>\n<li><b>Coffelt Farms: </b><b>65 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Angus bulls &amp; start calving Sept. 1st</li>\n<li><b>Corwin Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows,2nd period. Bred Blk Angus bulls</li>\n<li><b>J &amp; S Farms: </b><b>25 </b>Red-Rwf 5-SS yr. old cows, 3rd period. <b>15 </b>Charx 5-SS cows, 3rd period. <b>30 </b>Blk-Bwf 5-SS yr old cows, 3rd period. All cows have had calves weaned off for 30 days. Bred Blk Sim-Angus &amp; Blk Angus bulls</li>\n<li><b>Leinbach Farms: </b><b>20 </b>Blk-Bwf 4-SS yr. old cows, 3rd period. Bred Blk Angus bull.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-08-10 14:19:24','2022-08-10 14:19:24','',2209,'https://kingsvillelivestock.com/?p=4583',0,'revision','',0),(4584,2,'2022-08-10 15:32:41','2022-08-10 15:32:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 9, 2022,</strong> 1551 hd; Last week, 1767 hd; a year ago 1375. Steers sold full steady &amp; heifers sold $3-$7 higher. Slaughter cows &amp; bulls sold $3-$7 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$209.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$182.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$153.00-$162.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$151.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">92.00 - $107.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$78.00 - $91.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$89.00 - $132.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">649lbs @$195.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">842lbs @$178.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">938lbs @$162.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">634lbs @$181.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">713lbs@$179.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Â </td>\n<td style=\"width: 153.75px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 9, 2022 - Market Report','','publish','closed','open','','august-9-2022-market-report','','','2022-08-10 15:32:45','2022-08-10 15:32:45','',0,'https://kingsvillelivestock.com/?p=4584',0,'post','',0),(4586,2,'2022-08-10 15:32:41','2022-08-10 15:32:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 9, 2022,</strong> 1551 hd; Last week, 1767 hd; a year ago 1375. Steers sold full steady &amp; heifers sold $3-$7 higher. Slaughter cows &amp; bulls sold $3-$7 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$209.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$182.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$153.00-$162.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$151.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">92.00 - $107.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$78.00 - $91.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$89.00 - $132.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">649lbs @$195.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">842lbs @$178.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">938lbs @$162.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">634lbs @$181.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">713lbs@$179.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Â </td>\n<td style=\"width: 153.75px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 9, 2022 - Market Report','','inherit','closed','closed','','4584-revision-v1','','','2022-08-10 15:32:41','2022-08-10 15:32:41','',4584,'https://kingsvillelivestock.com/?p=4586',0,'revision','',0),(4587,2,'2022-08-10 15:32:41','2022-08-10 15:32:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 9, 2022,</strong> 1551 hd; Last week, 1767 hd; a year ago 1375. Steers sold full steady &amp; heifers sold $3-$7 higher. Slaughter cows &amp; bulls sold $3-$7 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$209.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$182.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$153.00-$162.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$151.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">92.00 - $107.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$78.00 - $91.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$89.00 - $132.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">649lbs @$195.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">842lbs @$178.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">938lbs @$162.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">634lbs @$181.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">713lbs@$179.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Â </td>\n<td style=\"width: 153.75px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 2, 2022 - Market Report','','inherit','closed','closed','','4584-revision-v1','','','2022-08-10 15:32:41','2022-08-10 15:32:41','',4584,'https://kingsvillelivestock.com/?p=4587',0,'revision','',0),(4588,2,'2022-08-10 15:32:45','2022-08-10 15:32:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 9, 2022,</strong> 1551 hd; Last week, 1767 hd; a year ago 1375. Steers sold full steady &amp; heifers sold $3-$7 higher. Slaughter cows &amp; bulls sold $3-$7 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$209.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$182.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$153.00-$162.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$151.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">92.00 - $107.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$78.00 - $91.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$68.00 - $77.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$89.00 - $132.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">649lbs @$195.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">842lbs @$178.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">938lbs @$162.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">634lbs @$181.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">713lbs@$179.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Â </td>\n<td style=\"width: 153.75px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 9, 2022 - Market Report','','inherit','closed','closed','','4584-revision-v1','','','2022-08-10 15:32:45','2022-08-10 15:32:45','',4584,'https://kingsvillelivestock.com/?p=4588',0,'revision','',0),(4590,2,'2022-08-10 16:10:56','2022-08-10 16:10:56','','image000000','','inherit','closed','closed','','image000000','','','2022-08-10 16:10:56','2022-08-10 16:10:56','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/08/image000000.jpg',0,'attachment','image/jpeg',0),(4591,2,'2022-08-10 16:14:41','2022-08-10 16:14:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Call to Action\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Trailers For Sale\" content_max_width=\"800px\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-30.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Event Section\" _builder_version=\"4.16\" custom_padding=\"60px||60px||true|false\" animation_style=\"zoom\" animation_intensity_zoom=\"6%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>We carry a wide variety of trailers to meet all of your needs.</p>\n<p><strong><a href=\"https://kingsvillelivestock.com/contact/\">Contact us</a></strong> for a FREE QUOTE today.</p>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/image000003-300x225.jpg\" width=\"143\" height=\"107\" alt=\"\" class=\"wp-image-4098 alignnone size-medium\" />Â  7\'1\" X 27\'6\" 2022 Eby Ruffneck 2 8k axles. 17.5 tires &amp; spare. 2 Cross Gates.<strong> $36,650.00</strong></p>\n<p><strong></strong></p>\n<p><strong><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/image000000-300x225.jpg\" width=\"146\" height=\"109\" alt=\"\" class=\"wp-image-4590 alignnone size-medium\" /></strong>Â  8Â  X 26 2022 Eby Ruffneck 8k axles. 17.5 tires &amp; spare. 2 Cross Gates, Front gate that is an adjustable rolling gate, the second gate is standard, big side door, light package, and rear slam latch<strong>.Â  Call now for additional pictures! $41,910.00Â </strong></p>\n<p><strong></strong></p>\n<p><img class=\"wp-image-2101 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG-1006-scaled-e1595879726664-300x225.jpg\" alt=\"\" width=\"147\" height=\"110\" />Â  Â  Eby 7\'1\" X 24\' Punch Panel Maverick Livestock Trailer. 14 ply tires, 7k axels, Alum. wheels, &amp; 2 cross gatesÂ  <strong>Not in Stock, Call Now for pricing &amp; to order!Â </strong></p>\n<p>&nbsp;</p>\n<p><img class=\"wp-image-2116 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1008-1-208x300.jpg\" alt=\"\" width=\"102\" height=\"147\" />Â  EZ Haul 32\' Bumper Pull Hay Trailer. 6 Bale used <strong>$4,550.00</strong></p>\n<p><img class=\"wp-image-2117 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" alt=\"\" width=\"101\" height=\"135\" />Â  EZ Haul 32\' Gooseneck Hay Trailer. 6 Bale, $7,100.00 <strong>Â </strong></p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"97\" height=\"130\" />EZ Haul 36\' Gooseneck Hay Trailer. 7 Bale,<strong>Â $7,200.00</strong></p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"100\" height=\"134\" />EZ Haul 42\' Gooseneck Hay Trailer. 8 Bale, $7,600.00</p>\n<p><img class=\"wp-image-2146 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Ez-Haul-Flat-Bed-2-300x225.jpg\" alt=\"\" width=\"139\" height=\"104\" />Â  Â 27\' EZ Haul Flat Bed. 22+5 Dove, 3 ramps, low profile, 10k axels, 14 ply tires. <strong>Call for price!</strong></p>\n<p><img class=\"wp-image-2147 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/ez-haul-flat-bed-3-300x225.jpg\" alt=\"\" width=\"144\" height=\"108\" /> EZ Haul 20\' Flat Bed Bumper Pull. 18+2 Dove, 2 4\' ramps, 7k axels, 10 ply tires. <strong>Out of Stock, call for price!Â </strong></p>\n<p><img class=\"wp-image-2153 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Wheel-Corral-300x185.png\" alt=\"\" width=\"172\" height=\"106\" /> Diamond \"W\" Wheel Corral <strong>$21,800.00Â </strong></p>\n<h2><span style=\"color: #ff00ff;\">For additional questions about the trailers or wheel corral call the office @ 816-597-3331 or Derrick @ 816-726-3456</span></h2>\n<p><span style=\"color: #ff0000;\"><strong>Updated on Aug 10th,2022Â </strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','TRAILERS FOR SALE','','inherit','closed','closed','','714-revision-v1','','','2022-08-10 16:14:41','2022-08-10 16:14:41','',714,'https://kingsvillelivestock.com/?p=4591',0,'revision','',0),(4592,2,'2022-08-10 17:55:25','2022-08-10 17:55:25','','August 20, 2022 Cow Sale','','inherit','closed','closed','','august-20-2022-cow-sale-3','','','2022-08-10 17:55:25','2022-08-10 17:55:25','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-20-2022-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(4593,2,'2022-08-10 17:55:50','2022-08-10 17:55:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 10th @ 6:00 pm<br /></strong>Comer Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse, Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-20-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4592\">August 20th Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-08-10 17:55:50','2022-08-10 17:55:50','',639,'https://kingsvillelivestock.com/?p=4593',0,'revision','',0),(4594,2,'2022-08-10 17:56:38','2022-08-10 17:56:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 10th @ 6:00 pm<br /></strong>Comer Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug. 13th @ 9:00 am<br /></strong>Price Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Aug.13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 13th @ 5 pm<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-2022-HorseTack-Small-Animal.pdf\" rel=\"attachment wp-att-4560\">August 2022 Horse,Tack, &amp; Small Animal</a></p>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-20-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4592\">August 20th Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-08-10 17:56:38','2022-08-10 17:56:38','',1967,'https://kingsvillelivestock.com/?p=4594',0,'revision','',0),(4595,2,'2022-08-15 14:55:13','2022-08-15 14:55:13','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-20-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4592\">August 20th Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-08-15 14:55:13','2022-08-15 14:55:13','',639,'https://kingsvillelivestock.com/?p=4595',0,'revision','',0),(4596,2,'2022-08-15 14:55:57','2022-08-15 14:55:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-20-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4592\">August 20th Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-08-15 14:55:57','2022-08-15 14:55:57','',1967,'https://kingsvillelivestock.com/?p=4596',0,'revision','',0),(4597,2,'2022-08-15 14:56:41','2022-08-15 14:56:41','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/2022-Labor-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4574\">Â Labor Day Sale Flyer-Septemeber 4th &amp; 5th @ 9 amÂ </a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-08-15 14:56:41','2022-08-15 14:56:41','',1450,'https://kingsvillelivestock.com/?p=4597',0,'revision','',0),(4598,2,'2022-08-15 16:56:33','2022-08-15 16:56:33','','Tuesday,August 15th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayaugust-15th-feeder-cattle-consignments','','','2022-08-15 16:56:33','2022-08-15 16:56:33','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/08/TuesdayAugust-15th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4599,2,'2022-08-15 16:56:43','2022-08-15 16:56:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/TuesdayAugust-9th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4572\"></a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/TuesdayAugust-15th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4598\">Tuesday,August 16th Feeder Cattle Consignments</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/TuesdayAugust-9th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4572\"></a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><strong><span style=\"color: #339966;\">Special Cow &amp; Bull Sale, Saturday, August 20th @ 11 amÂ </span></strong></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Diehl Farms: </b><b>6 </b>18-month-old Blk bulls <b>2</b> 18-month-old Red bulls All bulls are Leachman &amp; Leachman Composite sired bulls. Semen &amp; trich tested &amp; ready to be turned out.</li>\n<li><b>Mick Cattle CO: </b><b>2 </b>16-month-old Reg. Sim. Bulls. ASA # 4010407 &amp; 4010408</li>\n<li><b>Tiffany Farms: </b><b>5 </b>2 yr old Purebred Angus bulls. Semen &amp; trich tested &amp; a nice set of bulls</li>\n<li><b>John Manley Complete Dispersal: </b><b>1 </b>3yr old Reg. Angus bulls</li>\n<li><b>Yvonne Holsten Complete Dispersal: </b><b>2 </b>Blk 3-4 yr. old bulls</li>\n<li><b>Leinbach Farms: </b><b>1 </b>3 yr. old Blk Angus bullÂ </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Steve Young Complete Dispersal: </b><b>45 </b>Blk 2-SS cows w/ spring calves at side. Bulls have been turned in for 60 days &amp; bred to Blk Angus bulls. All cows are home-raised, 1st time to town, gentle &amp; current on all shots. Cows are only selling due to having 2 shoulder replacements.</li>\n<li><b>Luke Skidmore Complete Dispersal: </b><b>22 </b>Blk-Bwf 5-SS cows w/ spring calves at side. Bulls in July 1st these are 3N1 pairs. Calves are cut &amp; had 1 round of shots. <b>8</b> Blk-Bwf 5-SS cows, 3rd period. All cows bred to Polled Hereford or Blk Balancer bulls.</li>\n<li><b>John Manley Complete Dispersal: </b><b>6 </b>Blk Angus 3-6 yr. cows w/ 250lbs calves at side.<b>2</b> Blk 3-6 yr. old cows, 3rd period. <b>3</b> Blk Angus 2 yr. old, 1000lbs bred heifers, 2nd period.</li>\n<li><b>Yvonne Holsten Complete Dispersal: </b><b>25 </b>Mixed 5-SS yr. old cows w/ 250lbs calves at side.<b>23</b> Mixed 5-SS cows, 3rd period.</li>\n<li><b>Bosch Farms: </b><b>3 </b>Â Fancy Blk 1/2 blood brahman cows w/ heifer calves at side. All 3N1s that are gentle &amp; AI bred.</li>\n<li><b>Schull Farms: </b><b>6 </b>Red Angus 5-6 yr. old cows w/ 450lbs calves at side. 3N1s bred back to Red Angus bulls &amp; in 1st period.</li>\n<li><b>Engelbrent Farms: </b><b>45 </b>Blk-Bwf 3-4 yr. old fall calving cows, 3rd period. <b>45</b> Blk-Bwf 5-6 yr. old fall calving cows, 3rd period. Bred Blk Angus bulls &amp; bulls were turned in Dec. 10th.</li>\n<li><b>Double J Farms: </b><b>4 </b>Fancy Blk-Sim Angus 1250lbs bred heifers. AI bred to Growth Fund &amp; cleaned up w/ Blk Angus bull for 30 days. Start calving Sept. 2nd. <b>1 </b>1/2 Red Angus &amp; 1/2 Char yellow bred heifer. AI bred to 9 Mile Franchise Red Angus bull. <b>6 </b>Â Hereford 1250lbs bred heifers. AI bred to Growth Fund Blk Angus bull &amp; cleaned up w/ Red Angus bull. All have been through the Show-Me-Select program.</li>\n<li><b>Allen Farms: </b><b>35 </b>Red Angus 3-6 yr. old fall calving cows, 3rd period. Bred Blk Balancer bulls. Gentle set of cows that are current on all shots.</li>\n<li><b>C &amp; M Farms: </b><b>20 </b>Blk 3-6 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Harrington Farms: </b><b>80 </b>Blk-Bwf 3-5 yr. old cows,2nd period. <b>50</b> Blk-Bwf 5-6 yr. old cows, 3rd period. Bred Red &amp; Blk Angus bulls &amp; turned in Dec 1st<b><i>. </i></b></li>\n<li><b>Kennedy Farms: </b><b>8 </b>Blk 3-5 yr. old cows w/ 250lbs AI sired calves at side. Cows are gentle &amp; broke to feed truck.</li>\n<li><b>Bob Ramey Farms: </b><b>43 </b>Blk-Bwf 3-4 yr. old fall calving cows,3rd period. Bulls turned in Nov. 26th. Bred to May-Way Farms Reg. Angus bulls.</li>\n<li><b>Carter Farms: </b><b>35 </b>Blk-Bwf 3-6 yr. old cows w/ 150-250lbs calves at side. Cows will sell open and breed to the bull of your choice.</li>\n<li><b>Coffelt Farms: </b><b>65 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Angus bulls &amp; start calving Sept. 1st</li>\n<li><b>Corwin Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows,2nd period. Bred Blk Angus bulls</li>\n<li><b>J &amp; S Farms: </b><b>25 </b>Red-Rwf 5-SS yr. old cows, 3rd period. <b>15 </b>Charx 5-SS cows, 3rd period. <b>30 </b>Blk-Bwf 5-SS yr old cows, 3rd period. All cows have had calves weaned off for 30 days. Bred Blk Sim-Angus &amp; Blk Angus bulls</li>\n<li><b>Leinbach Farms: </b><b>20 </b>Blk-Bwf 4-SS yr. old cows, 3rd period. Bred Blk Angus bull.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-08-15 16:56:43','2022-08-15 16:56:43','',2209,'https://kingsvillelivestock.com/?p=4599',0,'revision','',0),(4600,2,'2022-08-16 23:01:40','2022-08-16 23:01:40','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-20-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4592\">August 20th Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-08-16 23:01:40','2022-08-16 23:01:40','',639,'https://kingsvillelivestock.com/?p=4600',0,'revision','',0),(4601,2,'2022-08-16 23:02:28','2022-08-16 23:02:28','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/August-20-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4592\">August 20th Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-08-16 23:02:28','2022-08-16 23:02:28','',1967,'https://kingsvillelivestock.com/?p=4601',0,'revision','',0),(4602,2,'2022-08-17 14:40:57','2022-08-17 14:40:57','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/2022-Labor-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4574\">Â Labor Day Sale Flyer-Septemeber 4th &amp; 5th @ 9 amÂ </a></p>\n<p style=\"text-align: left;\">Â <a href=\"https://www.proxibid.com/Anstine-Auctions-LLC/Rare-Collection-of-Antique-Cookbooks/event-catalog/227414\">Online Cook Book Auction-August 17th-24th</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-08-17 14:40:57','2022-08-17 14:40:57','',1450,'https://kingsvillelivestock.com/?p=4602',0,'revision','',0),(4603,2,'2022-08-17 16:20:48','2022-08-17 16:20:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 16, 2022,</strong> 1551 hd; Last week, 1747 hd; a year ago 1848. Compared to last week feeder steers traded steady-$6 higher w/ feeder heifers trading steady Slaughter cows &amp; bulls sold $2-$5 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$211.00-$229.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$166.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$145.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$137.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">90.00 - $102.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$77.00 - $89.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $116.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">717lbs @$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">875lbs @$177.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">676lbs @$185.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">689lbs @$181.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">719lbs @$170.60</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Â </td>\n<td style=\"width: 153.75px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 16, 2022 - Market Report','','publish','closed','open','','august-16-2022-market-report','','','2022-08-17 16:20:52','2022-08-17 16:20:52','',0,'https://kingsvillelivestock.com/?p=4603',0,'post','',0),(4605,2,'2022-08-17 16:20:48','2022-08-17 16:20:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 16, 2022,</strong> 1551 hd; Last week, 1747 hd; a year ago 1848. Compared to last week feeder steers traded steady-$6 higher w/ feeder heifers trading steady Slaughter cows &amp; bulls sold $2-$5 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$211.00-$229.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$166.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$145.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$137.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">90.00 - $102.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$77.00 - $89.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $116.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">717lbs @$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">875lbs @$177.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">676lbs @$185.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">689lbs @$181.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">719lbs @$170.60</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Â </td>\n<td style=\"width: 153.75px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 16, 2022 - Market Report','','inherit','closed','closed','','4603-revision-v1','','','2022-08-17 16:20:48','2022-08-17 16:20:48','',4603,'https://kingsvillelivestock.com/?p=4605',0,'revision','',0),(4606,2,'2022-08-17 16:20:48','2022-08-17 16:20:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 16, 2022,</strong> 1551 hd; Last week, 1747 hd; a year ago 1848. Compared to last week feeder steers traded steady-$6 higher w/ feeder heifers trading steady Slaughter cows &amp; bulls sold $2-$5 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$211.00-$229.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$166.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$145.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$137.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">90.00 - $102.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$77.00 - $89.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $116.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">717lbs @$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">875lbs @$177.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">676lbs @$185.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">689lbs @$181.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">719lbs @$170.60</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Â </td>\n<td style=\"width: 153.75px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 9, 2022 - Market Report','','inherit','closed','closed','','4603-revision-v1','','','2022-08-17 16:20:48','2022-08-17 16:20:48','',4603,'https://kingsvillelivestock.com/?p=4606',0,'revision','',0),(4608,2,'2022-08-17 16:20:52','2022-08-17 16:20:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 16, 2022,</strong> 1551 hd; Last week, 1747 hd; a year ago 1848. Compared to last week feeder steers traded steady-$6 higher w/ feeder heifers trading steady Slaughter cows &amp; bulls sold $2-$5 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$211.00-$229.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$166.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$194.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$152.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$145.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$137.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">90.00 - $102.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$77.00 - $89.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$90.00 - $116.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">717lbs @$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">875lbs @$177.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">676lbs @$185.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">689lbs @$181.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">719lbs @$170.60</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Â </td>\n<td style=\"width: 153.75px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 16, 2022 - Market Report','','inherit','closed','closed','','4603-revision-v1','','','2022-08-17 16:20:52','2022-08-17 16:20:52','',4603,'https://kingsvillelivestock.com/?p=4608',0,'revision','',0),(4610,2,'2022-08-22 14:49:21','2022-08-22 14:49:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-08-22 14:49:21','2022-08-22 14:49:21','',639,'https://kingsvillelivestock.com/?p=4610',0,'revision','',0),(4611,2,'2022-08-22 14:50:13','2022-08-22 14:50:13','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-08-22 14:50:13','2022-08-22 14:50:13','',1967,'https://kingsvillelivestock.com/?p=4611',0,'revision','',0),(4612,2,'2022-08-22 14:50:57','2022-08-22 14:50:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/TuesdayAugust-9th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4572\"></a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/TuesdayAugust-15th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4598\">Tuesday,August 16th Feeder Cattle Consignments</a><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/TuesdayAugust-9th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4572\"></a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-08-22 14:50:57','2022-08-22 14:50:57','',2209,'https://kingsvillelivestock.com/?p=4612',0,'revision','',0),(4613,2,'2022-08-22 16:29:46','2022-08-22 16:29:46','','Tuesday,August 23rd Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayaugust-23rd-feeder-cattle-consignments','','','2022-08-22 16:29:46','2022-08-22 16:29:46','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/08/TuesdayAugust-23rd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4614,2,'2022-08-22 16:30:42','2022-08-22 16:30:42','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/TuesdayAugust-23rd-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4613\">Tuesday,August 23rd Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-08-22 16:30:42','2022-08-22 16:30:42','',2209,'https://kingsvillelivestock.com/?p=4614',0,'revision','',0),(4615,2,'2022-08-22 16:55:24','2022-08-22 16:55:24','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-08-22 16:55:24','2022-08-22 16:55:24','',639,'https://kingsvillelivestock.com/?p=4615',0,'revision','',0),(4616,2,'2022-08-22 16:56:23','2022-08-22 16:56:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 23rd @ 10:30 am </strong></span><span style=\"color: #000000;\"><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-08-22 16:56:23','2022-08-22 16:56:23','',1967,'https://kingsvillelivestock.com/?p=4616',0,'revision','',0),(4617,2,'2022-08-24 01:22:06','2022-08-24 01:22:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-08-24 01:22:06','2022-08-24 01:22:06','',639,'https://kingsvillelivestock.com/?p=4617',0,'revision','',0),(4618,2,'2022-08-24 01:22:52','2022-08-24 01:22:52','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 30th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-08-24 01:22:52','2022-08-24 01:22:52','',1967,'https://kingsvillelivestock.com/?p=4618',0,'revision','',0),(4619,2,'2022-08-24 01:25:43','2022-08-24 01:25:43','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/2022-Labor-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4574\">Â Labor Day Sale Flyer-Septemeber 4th &amp; 5th @ 9 amÂ </a></p>\n<p style=\"text-align: left;\">Â <a href=\"https://www.proxibid.com/Anstine-Auctions-LLC/Rare-Collection-of-Antique-Cookbooks/event-catalog/227414\">Online Cook Book Auction-August 17th-31st</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-08-24 01:25:43','2022-08-24 01:25:43','',1450,'https://kingsvillelivestock.com/?p=4619',0,'revision','',0),(4620,2,'2022-08-24 15:46:37','2022-08-24 15:46:37','','Labor Day 2022 Detailed Consignment List','','inherit','closed','closed','','labor-day-2022-detailed-consignment-list','','','2022-08-24 15:46:37','2022-08-24 15:46:37','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/08/Labor-Day-2022-Detailed-Consignment-List.pdf',0,'attachment','application/pdf',0),(4621,2,'2022-08-24 15:47:30','2022-08-24 15:47:30','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/2022-Labor-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4574\">Â Labor Day Sale Flyer-Septemeber 4th &amp; 5th @ 9 amÂ </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Labor-Day-2022-Detailed-Consignment-List.pdf\" rel=\"attachment wp-att-4620\">Labor Day 2022 Detailed Consignment List</a></p>\n<p style=\"text-align: left;\">Â <a href=\"https://www.proxibid.com/Anstine-Auctions-LLC/Rare-Collection-of-Antique-Cookbooks/event-catalog/227414\">Online Cook Book Auction-August 17th-31st</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-08-24 15:47:30','2022-08-24 15:47:30','',1450,'https://kingsvillelivestock.com/?p=4621',0,'revision','',0),(4622,2,'2022-08-24 16:01:38','2022-08-24 16:01:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 23, 2022,</strong> 1345 hd; Last week, 1551 hd; a year ago 909. Feeder cattle of all classes sold $4-$8 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$172.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$171.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$146.00-$154.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$85.00 - $100.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$72.00 - $84.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$95.00 - $128.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">752lbs @$187.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">777lbs @$182.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">848lbs @$179.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">927lbs @$172.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">650lbs @$170.60</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 46px;\">737lbs @$180.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">830lbs @$181.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">1013lbs@$153.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 23, 2022 - Market Report','','publish','closed','open','','august-23-2022-market-report','','','2022-08-24 16:01:42','2022-08-24 16:01:42','',0,'https://kingsvillelivestock.com/?p=4622',0,'post','',0),(4624,2,'2022-08-24 16:01:38','2022-08-24 16:01:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 23, 2022,</strong> 1345 hd; Last week, 1551 hd; a year ago 909. Feeder cattle of all classes sold $4-$8 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$172.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$171.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$146.00-$154.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$85.00 - $100.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$72.00 - $84.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$95.00 - $128.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">752lbs @$187.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">777lbs @$182.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">848lbs @$179.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">927lbs @$172.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">650lbs @$170.60</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 46px;\">737lbs @$180.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">830lbs @$181.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">1013lbs@$153.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 23, 2022 - Market Report','','inherit','closed','closed','','4622-revision-v1','','','2022-08-24 16:01:38','2022-08-24 16:01:38','',4622,'https://kingsvillelivestock.com/?p=4624',0,'revision','',0),(4625,2,'2022-08-24 16:01:38','2022-08-24 16:01:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 23, 2022,</strong> 1345 hd; Last week, 1551 hd; a year ago 909. Feeder cattle of all classes sold $4-$8 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$172.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$171.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$146.00-$154.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$85.00 - $100.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$72.00 - $84.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$95.00 - $128.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">752lbs @$187.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">777lbs @$182.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">848lbs @$179.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">927lbs @$172.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">650lbs @$170.60</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 46px;\">737lbs @$180.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">830lbs @$181.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">1013lbs@$153.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 16, 2022 - Market Report','','inherit','closed','closed','','4622-revision-v1','','','2022-08-24 16:01:38','2022-08-24 16:01:38','',4622,'https://kingsvillelivestock.com/?p=4625',0,'revision','',0),(4627,2,'2022-08-24 16:01:42','2022-08-24 16:01:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 23, 2022,</strong> 1345 hd; Last week, 1551 hd; a year ago 909. Feeder cattle of all classes sold $4-$8 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$218.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.60</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$172.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$171.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$146.00-$154.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$85.00 - $100.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$72.00 - $84.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$62.00 - $71.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$95.00 - $128.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 332px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">752lbs @$187.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">777lbs @$182.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">848lbs @$179.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">927lbs @$172.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">650lbs @$170.60</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 46px;\">737lbs @$180.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">830lbs @$181.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">1013lbs@$153.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 23, 2022 - Market Report','','inherit','closed','closed','','4622-revision-v1','','','2022-08-24 16:01:42','2022-08-24 16:01:42','',4622,'https://kingsvillelivestock.com/?p=4627',0,'revision','',0),(4628,2,'2022-08-29 15:21:41','2022-08-29 15:21:41','','Labor Day 2022 Detailed Consignment List','','inherit','closed','closed','','labor-day-2022-detailed-consignment-list-2','','','2022-08-29 15:21:41','2022-08-29 15:21:41','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/08/Labor-Day-2022-Detailed-Consignment-List-1.pdf',0,'attachment','application/pdf',0),(4629,2,'2022-08-29 15:21:58','2022-08-29 15:21:58','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/2022-Labor-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4574\">Â Labor Day Sale Flyer-Septemeber 4th &amp; 5th @ 9 amÂ </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Labor-Day-2022-Detailed-Consignment-List-1.pdf\" rel=\"attachment wp-att-4628\">Labor Day 2022 Detailed Consignment List</a>Â  updated 8-29</p>\n<p style=\"text-align: left;\">Â <a href=\"https://www.proxibid.com/Anstine-Auctions-LLC/Rare-Collection-of-Antique-Cookbooks/event-catalog/227414\">Online Cook Book Auction-August 17th-31st</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-08-29 15:21:58','2022-08-29 15:21:58','',1450,'https://kingsvillelivestock.com/?p=4629',0,'revision','',0),(4630,2,'2022-08-29 17:04:03','2022-08-29 17:04:03','','Tuesday,August 30th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayaugust-30th-feeder-cattle-consignments','','','2022-08-29 17:04:03','2022-08-29 17:04:03','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/08/TuesdayAugust-30th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4631,2,'2022-08-29 17:04:09','2022-08-29 17:04:09','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/TuesdayAugust-30th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4630\">Tuesday,August 30th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-08-29 17:04:09','2022-08-29 17:04:09','',2209,'https://kingsvillelivestock.com/?p=4631',0,'revision','',0),(4633,2,'2022-08-31 14:21:41','2022-08-31 14:21:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-08-31 14:21:41','2022-08-31 14:21:41','',639,'https://kingsvillelivestock.com/?p=4633',0,'revision','',0),(4634,2,'2022-08-31 14:22:31','2022-08-31 14:22:31','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-08-31 14:22:31','2022-08-31 14:22:31','',1967,'https://kingsvillelivestock.com/?p=4634',0,'revision','',0),(4635,2,'2022-08-31 15:56:19','2022-08-31 15:56:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 30, 2022,</strong> 1345 hd; Last week, 1345 hd; a year ago 1290. Yearling steers &amp; heifers sold steady-$5 higher. All other classes of feeder cattle sold fully steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$217.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$199.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">NA</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$201.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$168.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$88.00 - $102.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$77.00 - $87.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">629lbs @$217.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">644lbs @$213.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">712lbs @$192.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">754lbs @$186.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">758lbs @$191.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Steers</td>\n<td style=\"width: 153.75px; height: 46px;\">791lbs @$187.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">590lbs@$201.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">690lbs @$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">703lbs@$179.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">753lbs@$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">845lbs@$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 30, 2022 - Market Report','','publish','closed','open','','august-30-2022-market-report','','','2022-08-31 15:56:23','2022-08-31 15:56:23','',0,'https://kingsvillelivestock.com/?p=4635',0,'post','',0),(4637,2,'2022-08-31 15:56:19','2022-08-31 15:56:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 30, 2022,</strong> 1345 hd; Last week, 1345 hd; a year ago 1290. Yearling steers &amp; heifers sold steady-$5 higher. All other classes of feeder cattle sold fully steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$217.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$199.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">NA</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$201.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$168.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$88.00 - $102.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$77.00 - $87.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">629lbs @$217.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">644lbs @$213.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">712lbs @$192.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">754lbs @$186.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">758lbs @$191.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Steers</td>\n<td style=\"width: 153.75px; height: 46px;\">791lbs @$187.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">590lbs@$201.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">690lbs @$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">703lbs@$179.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">753lbs@$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">845lbs@$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 30, 2022 - Market Report','','inherit','closed','closed','','4635-revision-v1','','','2022-08-31 15:56:19','2022-08-31 15:56:19','',4635,'https://kingsvillelivestock.com/?p=4637',0,'revision','',0),(4638,2,'2022-08-31 15:56:19','2022-08-31 15:56:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 30, 2022,</strong> 1345 hd; Last week, 1345 hd; a year ago 1290. Yearling steers &amp; heifers sold steady-$5 higher. All other classes of feeder cattle sold fully steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$217.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$199.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">NA</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$201.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$168.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$88.00 - $102.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$77.00 - $87.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">629lbs @$217.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">644lbs @$213.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">712lbs @$192.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">754lbs @$186.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">758lbs @$191.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Steers</td>\n<td style=\"width: 153.75px; height: 46px;\">791lbs @$187.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">590lbs@$201.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">690lbs @$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">703lbs@$179.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">753lbs@$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">845lbs@$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 23, 2022 - Market Report','','inherit','closed','closed','','4635-revision-v1','','','2022-08-31 15:56:19','2022-08-31 15:56:19','',4635,'https://kingsvillelivestock.com/?p=4638',0,'revision','',0),(4639,2,'2022-08-31 15:56:23','2022-08-31 15:56:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 30, 2022,</strong> 1345 hd; Last week, 1345 hd; a year ago 1290. Yearling steers &amp; heifers sold steady-$5 higher. All other classes of feeder cattle sold fully steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$217.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$199.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">NA</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$201.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$154.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$168.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$88.00 - $102.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$77.00 - $87.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$50.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$80.00 - $125.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">629lbs @$217.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">644lbs @$213.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">712lbs @$192.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">754lbs @$186.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">758lbs @$191.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Steers</td>\n<td style=\"width: 153.75px; height: 46px;\">791lbs @$187.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">590lbs@$201.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">690lbs @$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">703lbs@$179.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">753lbs@$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">845lbs@$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 30, 2022 - Market Report','','inherit','closed','closed','','4635-revision-v1','','','2022-08-31 15:56:23','2022-08-31 15:56:23','',4635,'https://kingsvillelivestock.com/?p=4639',0,'revision','',0),(4640,2,'2022-08-31 15:58:47','2022-08-31 15:58:47','','September 10th,2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','september-10th2022-horse-tack-small-animal-sale','','','2022-08-31 15:58:47','2022-08-31 15:58:47','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/08/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf',0,'attachment','application/pdf',0),(4641,2,'2022-08-31 15:59:09','2022-08-31 15:59:09','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\"> Â </span></strong><br />Horse &amp; Tack SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4640\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4640\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-08-31 15:59:09','2022-08-31 15:59:09','',1967,'https://kingsvillelivestock.com/?p=4641',0,'revision','',0),(4642,2,'2022-08-31 16:00:55','2022-08-31 16:00:55','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4640\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4640\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-08-31 16:00:55','2022-08-31 16:00:55','',639,'https://kingsvillelivestock.com/?p=4642',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (4643,2,'2022-08-31 16:08:27','2022-08-31 16:08:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\"> <a href=\"https://drive.google.com/drive/folders/1biHhGtDBMoJd6zkmgu9lTOyFU7OyUE-q?usp=sharing\">Horse &amp; Small Animal Photos </a></span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4640\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept. 10th @ 5 pmÂ  <a href=\"https://drive.google.com/drive/folders/1biHhGtDBMoJd6zkmgu9lTOyFU7OyUE-q?usp=sharing\">Horse &amp; Small Animal Photos</a></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4640\">September 10th,2022 Horse, Tack, &amp; Small Animal SaleÂ Â Â Â </a></p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-08-31 16:08:27','2022-08-31 16:08:27','',639,'https://kingsvillelivestock.com/?p=4643',0,'revision','',0),(4644,2,'2022-08-31 16:39:32','2022-08-31 16:39:32','','Labor Day 2022 Detailed Consignment List','','inherit','closed','closed','','labor-day-2022-detailed-consignment-list-3','','','2022-08-31 16:39:32','2022-08-31 16:39:32','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/08/Labor-Day-2022-Detailed-Consignment-List-2.pdf',0,'attachment','application/pdf',0),(4645,2,'2022-08-31 16:39:44','2022-08-31 16:39:44','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/2022-Labor-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4574\">Â Labor Day Sale Flyer-Septemeber 4th &amp; 5th @ 9 amÂ </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Labor-Day-2022-Detailed-Consignment-List-2.pdf\" rel=\"attachment wp-att-4644\">Labor Day 2022 Detailed Consignment List</a> updated 8-31</p>\n<p style=\"text-align: left;\">Â <a href=\"https://www.proxibid.com/Anstine-Auctions-LLC/Rare-Collection-of-Antique-Cookbooks/event-catalog/227414\">Online Cook Book Auction-August 17th-31st</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-08-31 16:39:44','2022-08-31 16:39:44','',1450,'https://kingsvillelivestock.com/?p=4645',0,'revision','',0),(4646,2,'2022-08-31 16:46:55','2022-08-31 16:46:55','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\"> <a href=\"https://drive.google.com/drive/folders/1biHhGtDBMoJd6zkmgu9lTOyFU7OyUE-q?usp=sharing\">Horse &amp; Small Animal Photos </a></span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4640\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept. 10th @ 5 pmÂ  <a href=\"https://drive.google.com/drive/folders/1biHhGtDBMoJd6zkmgu9lTOyFU7OyUE-q?usp=sharing\">Horse &amp; Small Animal Photos</a></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4640\">September 10th,2022 Horse, Tack, &amp; Small Animal SaleÂ Â Â Â </a></p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-08-31 16:46:55','2022-08-31 16:46:55','',639,'https://kingsvillelivestock.com/?p=4646',0,'revision','',0),(4647,2,'2022-08-31 16:48:36','2022-08-31 16:48:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\"> Â </span></strong><br />Horse &amp; Tack SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4640\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4640\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-08-31 16:48:36','2022-08-31 16:48:36','',1967,'https://kingsvillelivestock.com/?p=4647',0,'revision','',0),(4648,2,'2022-08-31 16:49:31','2022-08-31 16:49:31','','Roberts Gun Auction October 29th-Warrensburg','','inherit','closed','closed','','roberts-gun-auction-october-29th-warrensburg','','','2022-08-31 16:49:31','2022-08-31 16:49:31','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf',0,'attachment','application/pdf',0),(4649,2,'2022-08-31 16:52:15','2022-08-31 16:52:15','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/2022-Labor-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4574\">Â Labor Day Sale Flyer-Septemeber 4th &amp; 5th @ 9 amÂ </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Labor-Day-2022-Detailed-Consignment-List-2.pdf\" rel=\"attachment wp-att-4644\">Labor Day 2022 Detailed Consignment List</a> updated 8-31</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p style=\"text-align: left;\">Â <a href=\"https://www.proxibid.com/Anstine-Auctions-LLC/Rare-Collection-of-Antique-Cookbooks/event-catalog/227414\">Online Cook Book Auction-August 17th-31st</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-08-31 16:52:15','2022-08-31 16:52:15','',1450,'https://kingsvillelivestock.com/?p=4649',0,'revision','',0),(4650,2,'2022-09-02 15:44:15','2022-09-02 15:44:15','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/2022-Labor-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4574\">Â Labor Day Sale Flyer-Septemeber 4th &amp; 5th @ 9 amÂ </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Labor-Day-2022-Detailed-Consignment-List-2.pdf\" rel=\"attachment wp-att-4644\">Labor Day 2022 Detailed Consignment List</a> updated 8-31</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p style=\"text-align: left;\">\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-09-02 15:44:15','2022-09-02 15:44:15','',1450,'https://kingsvillelivestock.com/?p=4650',0,'revision','',0),(4651,2,'2022-09-02 16:28:51','2022-09-02 16:28:51','','Labor Day 2022 Detailed Consignment List','','inherit','closed','closed','','labor-day-2022-detailed-consignment-list-4','','','2022-09-02 16:28:51','2022-09-02 16:28:51','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/09/Labor-Day-2022-Detailed-Consignment-List.pdf',0,'attachment','application/pdf',0),(4652,2,'2022-09-02 16:29:07','2022-09-02 16:29:07','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/2022-Labor-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4574\">Â Labor Day Sale Flyer-Septemeber 4th &amp; 5th @ 9 am </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/Labor-Day-2022-Detailed-Consignment-List.pdf\" rel=\"attachment wp-att-4651\">Labor Day 2022 Detailed Consignment List Â  </a>updated 9-2</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p style=\"text-align: left;\">\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-09-02 16:29:07','2022-09-02 16:29:07','',1450,'https://kingsvillelivestock.com/?p=4652',0,'revision','',0),(4653,2,'2022-09-02 17:27:35','2022-09-02 17:27:35','','September 10th,2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','september-10th2022-horse-tack-small-animal-sale-2','','','2022-09-02 17:27:35','2022-09-02 17:27:35','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf',0,'attachment','application/pdf',0),(4654,2,'2022-09-02 17:28:21','2022-09-02 17:28:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\"> <a href=\"https://drive.google.com/drive/folders/1biHhGtDBMoJd6zkmgu9lTOyFU7OyUE-q?usp=sharing\">Horse &amp; Small Animal Photos </a></span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/Labor-Day-2022-Detailed-Consignment-List.pdf\" rel=\"attachment wp-att-4651\">Labor Day 2022 Detailed Consignment List</a> <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4653\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept. 10th @ 5 pmÂ  <a href=\"https://drive.google.com/drive/folders/1biHhGtDBMoJd6zkmgu9lTOyFU7OyUE-q?usp=sharing\">Horse &amp; Small Animal Photos</a></strong><br />Pig, Sheep, &amp; Small Animal SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4653\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-09-02 17:28:21','2022-09-02 17:28:21','',639,'https://kingsvillelivestock.com/?p=4654',0,'revision','',0),(4655,2,'2022-09-02 17:29:11','2022-09-02 17:29:11','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\"> <a href=\"https://drive.google.com/drive/folders/1biHhGtDBMoJd6zkmgu9lTOyFU7OyUE-q?usp=sharing\">Horse &amp; Small Animal Photos </a></span></strong><br />Horse &amp; Tack Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/Labor-Day-2022-Detailed-Consignment-List.pdf\" rel=\"attachment wp-att-4651\"></a> <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4653\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept. 10th @ 5 pmÂ  <a href=\"https://drive.google.com/drive/folders/1biHhGtDBMoJd6zkmgu9lTOyFU7OyUE-q?usp=sharing\">Horse &amp; Small Animal Photos</a></strong><br />Pig, Sheep, &amp; Small Animal SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4653\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-09-02 17:29:11','2022-09-02 17:29:11','',639,'https://kingsvillelivestock.com/?p=4655',0,'revision','',0),(4656,2,'2022-09-02 17:30:47','2022-09-02 17:30:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 4th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 5th @ 9:00 am<br /></strong>Labor Day Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\"> Â </span></strong><br />Horse &amp; Tack SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4653\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4653\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-09-02 17:30:47','2022-09-02 17:30:47','',1967,'https://kingsvillelivestock.com/?p=4656',0,'revision','',0),(4657,2,'2022-09-02 18:36:33','2022-09-02 18:36:33','','Labor Day 2022 Detailed Consignment List','','inherit','closed','closed','','labor-day-2022-detailed-consignment-list-5','','','2022-09-02 18:36:33','2022-09-02 18:36:33','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/09/Labor-Day-2022-Detailed-Consignment-List-1.pdf',0,'attachment','application/pdf',0),(4658,2,'2022-09-02 18:42:40','2022-09-02 18:42:40','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/2022-Labor-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4574\">Â Labor Day Sale Flyer-Septemeber 4th &amp; 5th @ 9 am </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/Labor-Day-2022-Detailed-Consignment-List-1.pdf\" rel=\"attachment wp-att-4657\">Labor Day 2022 Detailed Consignment List</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p style=\"text-align: left;\">\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-09-02 18:42:40','2022-09-02 18:42:40','',1450,'https://kingsvillelivestock.com/?p=4658',0,'revision','',0),(4659,2,'2022-09-02 18:52:08','2022-09-02 18:52:08','','Labor Day 2022 Detailed Consignment List','','inherit','closed','closed','','labor-day-2022-detailed-consignment-list-6','','','2022-09-02 18:52:08','2022-09-02 18:52:08','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/09/Labor-Day-2022-Detailed-Consignment-List-2.pdf',0,'attachment','application/pdf',0),(4660,2,'2022-09-02 18:52:22','2022-09-02 18:52:22','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/2022-Labor-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4574\">Â Labor Day Sale Flyer-Septemeber 4th &amp; 5th @ 9 am </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/Labor-Day-2022-Detailed-Consignment-List-2.pdf\" rel=\"attachment wp-att-4659\">Labor Day 2022 Detailed Consignment List</a>Â  updated 9-2</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p style=\"text-align: left;\">\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-09-02 18:52:22','2022-09-02 18:52:22','',1450,'https://kingsvillelivestock.com/?p=4660',0,'revision','',0),(4661,2,'2022-09-02 19:02:39','2022-09-02 19:02:39','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/2022-Labor-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4574\">Â Labor Day Sale Flyer-Septemeber 4th &amp; 5th @ 9 am </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/Labor-Day-2022-Detailed-Consignment-List-2.pdf\" rel=\"attachment wp-att-4659\">Labor Day 2022 Detailed Consignment List</a>Â  updated 9-2</p>\n<p><a href=\"https://drive.google.com/drive/folders/192by3JaN00bjBv5g_u7VZRe6TL2KcHPN?usp=sharing\">Labor Day 2022 photos</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p style=\"text-align: left;\">\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-09-02 19:02:39','2022-09-02 19:02:39','',1450,'https://kingsvillelivestock.com/?p=4661',0,'revision','',0),(4662,2,'2022-09-02 20:50:36','2022-09-02 20:50:36','','Labor Day 2022 Detailed Consignment List','','inherit','closed','closed','','labor-day-2022-detailed-consignment-list-7','','','2022-09-02 20:50:36','2022-09-02 20:50:36','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/09/Labor-Day-2022-Detailed-Consignment-List-3.pdf',0,'attachment','application/pdf',0),(4663,2,'2022-09-02 20:50:46','2022-09-02 20:50:46','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/2022-Labor-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4574\">Â Labor Day Sale Flyer-Septemeber 4th &amp; 5th @ 9 am </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/Labor-Day-2022-Detailed-Consignment-List-3.pdf\" rel=\"attachment wp-att-4662\">Labor Day 2022 Detailed Consignment List</a>Â updated 9-2</p>\n<p><a href=\"https://drive.google.com/drive/folders/192by3JaN00bjBv5g_u7VZRe6TL2KcHPN?usp=sharing\">Labor Day 2022 photos</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p style=\"text-align: left;\">\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-09-02 20:50:46','2022-09-02 20:50:46','',1450,'https://kingsvillelivestock.com/?p=4663',0,'revision','',0),(4664,2,'2022-09-03 15:46:08','2022-09-03 15:46:08','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/2022-Labor-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4574\">Â Labor Day Sale Flyer-Septemeber 4th &amp; 5th @ 9 am </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/Labor-Day-2022-Detailed-Consignment-List-3.pdf\" rel=\"attachment wp-att-4662\">Labor Day 2022 Detailed Consignment List</a>Â updated 9-2</p>\n<p><a href=\"https://drive.google.com/drive/folders/192by3JaN00bjBv5g_u7VZRe6TL2KcHPN?usp=sharing\">Labor Day 2022 photos</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p><a href=\"https://docs.google.com/document/d/1_SdGK6uOQVU0izEz9ArbjOm85eJrfRwFOhN1wbJWzh8/edit?usp=sharing\">Roberts Gun Info</a></p>\n<p style=\"text-align: left;\">\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-09-03 15:46:08','2022-09-03 15:46:08','',1450,'https://kingsvillelivestock.com/?p=4664',0,'revision','',0),(4665,2,'2022-09-03 15:49:24','2022-09-03 15:49:24','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/2022-Labor-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-4574\">Â Labor Day Sale Flyer-Septemeber 4th &amp; 5th @ 9 am </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/Labor-Day-2022-Detailed-Consignment-List-3.pdf\" rel=\"attachment wp-att-4662\">Labor Day 2022 Detailed Consignment List</a>Â updated 9-2</p>\n<p><a href=\"https://drive.google.com/drive/folders/192by3JaN00bjBv5g_u7VZRe6TL2KcHPN?usp=sharing\">Labor Day 2022 photos</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p><a href=\"https://docs.google.com/document/d/1_SdGK6uOQVU0izEz9ArbjOm85eJrfRwFOhN1wbJWzh8/edit?usp=sharing\">Roberts Gun Info</a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-09-03 15:49:24','2022-09-03 15:49:24','',1450,'https://kingsvillelivestock.com/?p=4665',0,'revision','',0),(4666,2,'2022-09-05 18:22:44','2022-09-05 18:22:44','','Tuesday,September 6th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayseptember-6th-feeder-cattle-consignments','','','2022-09-05 18:22:44','2022-09-05 18:22:44','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/09/TuesdaySeptember-6th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4667,2,'2022-09-05 18:22:50','2022-09-05 18:22:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/TuesdaySeptember-6th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4666\">Tuesday,September 6th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-09-05 18:22:50','2022-09-05 18:22:50','',2209,'https://kingsvillelivestock.com/?p=4667',0,'revision','',0),(4668,2,'2022-09-06 18:11:47','2022-09-06 18:11:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\"> <a href=\"https://drive.google.com/drive/folders/1biHhGtDBMoJd6zkmgu9lTOyFU7OyUE-q?usp=sharing\">Horse &amp; Small Animal Photos </a></span></strong><br />Horse &amp; Tack Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/Labor-Day-2022-Detailed-Consignment-List.pdf\" rel=\"attachment wp-att-4651\"></a> <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4653\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept. 10th @ 5 pmÂ  <a href=\"https://drive.google.com/drive/folders/1biHhGtDBMoJd6zkmgu9lTOyFU7OyUE-q?usp=sharing\">Horse &amp; Small Animal Photos</a></strong><br />Pig, Sheep, &amp; Small Animal SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4653\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-09-06 18:11:47','2022-09-06 18:11:47','',639,'https://kingsvillelivestock.com/?p=4668',0,'revision','',0),(4669,2,'2022-09-06 18:12:35','2022-09-06 18:12:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\"> Â </span></strong><br />Horse &amp; Tack SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4653\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4653\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-09-06 18:12:35','2022-09-06 18:12:35','',1967,'https://kingsvillelivestock.com/?p=4669',0,'revision','',0),(4670,2,'2022-09-06 18:13:05','2022-09-06 18:13:05','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p><a href=\"https://docs.google.com/document/d/1_SdGK6uOQVU0izEz9ArbjOm85eJrfRwFOhN1wbJWzh8/edit?usp=sharing\">Roberts Gun Info</a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-09-06 18:13:05','2022-09-06 18:13:05','',1450,'https://kingsvillelivestock.com/?p=4670',0,'revision','',0),(4671,2,'2022-09-07 14:17:34','2022-09-07 14:17:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 6, 2022,</strong> 744 hd; Last week, 2222 hd; a year ago. Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$162.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$143.00-$162.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$164.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$127.00-$150.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$123.00-$147.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$87.00 - $101.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$77.00 - $86.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">888lbs @$176.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Â </td>\n<td style=\"width: 153.75px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 6, 2022 - Market Report','','publish','closed','open','','september-6-2022-market-report','','','2022-09-07 14:17:38','2022-09-07 14:17:38','',0,'https://kingsvillelivestock.com/?p=4671',0,'post','',0),(4673,2,'2022-09-07 14:17:34','2022-09-07 14:17:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 6, 2022,</strong> 744 hd; Last week, 2222 hd; a year ago. Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$162.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$143.00-$162.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$164.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$127.00-$150.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$123.00-$147.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$87.00 - $101.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$77.00 - $86.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">888lbs @$176.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Â </td>\n<td style=\"width: 153.75px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 6, 2022 - Market Report','','inherit','closed','closed','','4671-revision-v1','','','2022-09-07 14:17:34','2022-09-07 14:17:34','',4671,'https://kingsvillelivestock.com/?p=4673',0,'revision','',0),(4674,2,'2022-09-07 14:17:34','2022-09-07 14:17:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 6, 2022,</strong> 744 hd; Last week, 2222 hd; a year ago. Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$162.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$143.00-$162.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$164.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$127.00-$150.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$123.00-$147.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$87.00 - $101.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$77.00 - $86.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">888lbs @$176.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Â </td>\n<td style=\"width: 153.75px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 30, 2022 - Market Report','','inherit','closed','closed','','4671-revision-v1','','','2022-09-07 14:17:34','2022-09-07 14:17:34','',4671,'https://kingsvillelivestock.com/?p=4674',0,'revision','',0),(4675,2,'2022-09-07 14:17:38','2022-09-07 14:17:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 6, 2022,</strong> 744 hd; Last week, 2222 hd; a year ago. Feeder cattle of all classes sold fully steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$162.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$143.00-$162.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$164.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$154.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$127.00-$150.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$123.00-$147.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$87.00 - $101.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$77.00 - $86.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $76.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$70.00 - $122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">888lbs @$176.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Â </td>\n<td style=\"width: 153.75px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 6, 2022 - Market Report','','inherit','closed','closed','','4671-revision-v1','','','2022-09-07 14:17:38','2022-09-07 14:17:38','',4671,'https://kingsvillelivestock.com/?p=4675',0,'revision','',0),(4676,2,'2022-09-07 15:00:51','2022-09-07 15:00:51','','September 10th,2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','september-10th2022-horse-tack-small-animal-sale-3','','','2022-09-07 15:00:51','2022-09-07 15:00:51','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf',0,'attachment','application/pdf',0),(4677,2,'2022-09-07 15:01:56','2022-09-07 15:01:56','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\"> <a href=\"https://drive.google.com/drive/folders/1biHhGtDBMoJd6zkmgu9lTOyFU7OyUE-q?usp=sharing\">Horse &amp; Small Animal Photos </a></span></strong><br />Horse &amp; Tack Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/Labor-Day-2022-Detailed-Consignment-List.pdf\" rel=\"attachment wp-att-4651\"></a> <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-4676\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept. 10th @ 5 pmÂ  <a href=\"https://drive.google.com/drive/folders/1biHhGtDBMoJd6zkmgu9lTOyFU7OyUE-q?usp=sharing\">Horse &amp; Small Animal Photos</a></strong><br />Pig, Sheep, &amp; Small Animal SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-4676\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-09-07 15:01:56','2022-09-07 15:01:56','',639,'https://kingsvillelivestock.com/?p=4677',0,'revision','',0),(4678,2,'2022-09-07 15:04:45','2022-09-07 15:04:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept.10th @ 8:30 am<span style=\"color: #ff0000;\"> Â </span></strong><br />Horse &amp; Tack SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-4676\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept. 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-4676\">September 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-09-07 15:04:45','2022-09-07 15:04:45','',1967,'https://kingsvillelivestock.com/?p=4678',0,'revision','',0),(4680,2,'2022-09-12 16:23:23','2022-09-12 16:23:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-09-12 16:23:23','2022-09-12 16:23:23','',639,'https://kingsvillelivestock.com/?p=4680',0,'revision','',0),(4681,2,'2022-09-12 16:24:06','2022-09-12 16:24:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-09-12 16:24:06','2022-09-12 16:24:06','',1967,'https://kingsvillelivestock.com/?p=4681',0,'revision','',0),(4683,2,'2022-09-12 16:26:28','2022-09-12 16:26:28','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/TuesdaySeptember-6th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4666\">Tuesday,September 6th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday, September 24th @ 11 amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>James Red Angus: </b><b>2 </b>2 yr. old Red Angus Bulls. Out of Reg. genetics, no papers. Heifer or Cow bull</li>\n<li><b>Lightfoot Farms: </b><b>2 </b>3 yr old Blk Sim Angus bullsÂ </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Complete Dispersal Moon Farms: </b><b>11 </b>Blk 5-SS cows w/ 250lbs calves at side</li>\n<li><b>Nelson Farms: </b><b>7 </b>Blk 2 yr old Sim bred heifers, 3rd period. Some may have 2-week old calves at side by sale day. Heifers are gentle &amp; good quality.</li>\n<li><b>Smith Farms: </b><b>10 </b>Blk 5-7 yr. cows w/ 250lbs calves at side.</li>\n<li><b>Lightfoot Farms: </b><b>23 </b>Blk-Char 3-6 yr. old cows, 2nd &amp; 3rd period.</li>\n<li><b>A&amp;L Farms: </b><b>10 </b>Â Blk. Gelv. Balancer 4 yr old cows, heavy 3rd period. Some may have calves by sale day. Nice set of cows &amp; god quality</li>\n<li><b>Complete Dispersal Knoles Farm: </b><b>75 </b>Fancy Blk Angus 3-5 yr. old cows,3rd period. <b>40 </b>Blk Angus 3-5 yr. old cows w/ 150-200lbs calves at side. Cows bred to Reg. Blk Angus bulls</li>\n<li><b>Shilo Hill Farms: </b><b>50 </b>Blk-Bwf 3-4 yr. old cows w/ 200lbs calves at side. <b>50</b> Blk-Bwf 3-4 yr. old cows, 3rd period. <b>50 </b>Blk-Bwf 5-7 yr old cows,3rd period. Bred Reg. Angus bulls. All cows are gentle &amp; nice kind.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-09-12 16:26:28','2022-09-12 16:26:28','',2209,'https://kingsvillelivestock.com/?p=4683',0,'revision','',0),(4684,2,'2022-09-12 16:34:36','2022-09-12 16:34:36','','Tuesday,September 13th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayseptember-13th-feeder-cattle-consignments','','','2022-09-12 16:34:36','2022-09-12 16:34:36','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/09/TuesdaySeptember-13th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4685,2,'2022-09-12 16:35:32','2022-09-12 16:35:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/TuesdaySeptember-13th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4684\">Tuesday,September 13th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday, September 24th @ 11 amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>James Red Angus: </b><b>2 </b>2 yr. old Red Angus Bulls. Out of Reg. genetics, no papers. Heifer or Cow bull</li>\n<li><b>Lightfoot Farms: </b><b>2 </b>3 yr old Blk Sim Angus bullsÂ </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Complete Dispersal Moon Farms: </b><b>11 </b>Blk 5-SS cows w/ 250lbs calves at side</li>\n<li><b>Nelson Farms: </b><b>7 </b>Blk 2 yr old Sim bred heifers, 3rd period. Some may have 2-week old calves at side by sale day. Heifers are gentle &amp; good quality.</li>\n<li><b>Smith Farms: </b><b>10 </b>Blk 5-7 yr. cows w/ 250lbs calves at side.</li>\n<li><b>Lightfoot Farms: </b><b>23 </b>Blk-Char 3-6 yr. old cows, 2nd &amp; 3rd period.</li>\n<li><b>A&amp;L Farms: </b><b>10 </b>Â Blk. Gelv. Balancer 4 yr old cows, heavy 3rd period. Some may have calves by sale day. Nice set of cows &amp; god quality</li>\n<li><b>Complete Dispersal Knoles Farm: </b><b>75 </b>Fancy Blk Angus 3-5 yr. old cows,3rd period. <b>40 </b>Blk Angus 3-5 yr. old cows w/ 150-200lbs calves at side. Cows bred to Reg. Blk Angus bulls</li>\n<li><b>Shilo Hill Farms: </b><b>50 </b>Blk-Bwf 3-4 yr. old cows w/ 200lbs calves at side. <b>50</b> Blk-Bwf 3-4 yr. old cows, 3rd period. <b>50 </b>Blk-Bwf 5-7 yr old cows,3rd period. Bred Reg. Angus bulls. All cows are gentle &amp; nice kind.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-09-12 16:35:32','2022-09-12 16:35:32','',2209,'https://kingsvillelivestock.com/?p=4685',0,'revision','',0),(4686,2,'2022-09-14 08:47:52','2022-09-14 08:47:52','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-09-14 08:47:52','2022-09-14 08:47:52','',639,'https://kingsvillelivestock.com/?p=4686',0,'revision','',0),(4687,2,'2022-09-14 08:48:21','2022-09-14 08:48:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-09-14 08:48:21','2022-09-14 08:48:21','',1967,'https://kingsvillelivestock.com/?p=4687',0,'revision','',0),(4689,2,'2022-09-14 14:54:47','2022-09-14 14:54:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/TuesdaySeptember-13th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4684\">Tuesday,September 13th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday, September 24th @ 11 amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>James Red Angus: </b><b>2 </b>2 yr. old Red Angus Bulls. Out of Reg. genetics, no papers. Heifer or Cow bull</li>\n<li><b>Lightfoot Farms: </b><b>2 </b>3 yr old Blk Sim Angus bulls</li>\n<li><b>Complete Dispersal Austin Danner: </b><b>1 </b>3.5 yr old Blk BullÂ </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Complete Dispersal Moon Farms: </b><b>11 </b>Blk 5-SS cows w/ 250lbs calves at side</li>\n<li><b>Nelson Farms: </b><b>7 </b>Blk 2 yr old Sim bred heifers, 3rd period. Some may have 2-week old calves at side by sale day. Heifers are gentle &amp; good quality.</li>\n<li><b>Smith Farms: </b><b>10 </b>Blk 5-7 yr. cows w/ 250lbs calves at side.</li>\n<li><b>Lightfoot Farms: </b><b>23 </b>Blk-Char 3-6 yr. old cows, 2nd &amp; 3rd period.</li>\n<li><b>A&amp;L Farms: </b><b>10 </b>Â Blk. Gelv. Balancer 4 yr old cows, heavy 3rd period. Some may have calves by sale day. Nice set of cows &amp; god quality</li>\n<li><b>Complete Dispersal Knoles Farm: </b><b>75 </b>Fancy Blk Angus 3-5 yr. old cows,3rd period. <b>40 </b>Blk Angus 3-5 yr. old cows w/ 150-200lbs calves at side. Cows bred to Reg. Blk Angus bulls</li>\n<li><b>Shilo Hill Farms: </b><b>50 </b>Blk-Bwf 3-4 yr. old cows w/ 200lbs calves at side. <b>50</b> Blk-Bwf 3-4 yr. old cows, 3rd period. <b>50 </b>Blk-Bwf 5-7 yr old cows,3rd period. Bred Reg. Angus bulls. All cows are gentle &amp; nice kind.</li>\n<li><b>Complete Dispersal Campbell Farms: </b><b>80 </b>Blk 3-7 yr. old cows,3rd period. Could be a few calves by sale day. <b>40Â  </b>Blk 3-7 yr old cows,2nd period. All cows bred Balancer &amp; Sim-Angus bulls. Current on all shots.</li>\n<li><b>Mead Farms: </b><b>30 </b>Blk 4-7 yr. old cows <b>6 </b>Red 4-7 yr old cows. <b>6 </b>Blk-Red 4-7 yr old cows w/ 400lbs calves at side (3N1â€™s) All cows have been running w/ polled Hereford bull</li>\n<li><b>Complete Dispersal Austin Danner: </b><b>5 </b>Blk 5-7 yr old cows w/ 300lbs calves at side ( 3N1â€™s) Had all shots &amp; wormed/poured last week of August.</li>\n<li><b>Holt Farms: </b><b>38 </b>Hereford 3-SS yr old cows w/ Bwf calves at side. All cows are home-raised &amp; nice set of pairs</li>\n<li><b>Complete Dispersal Hildabrand Farms: </b><b>50 </b>Blk-Bwf 5-SS yr. old cows w/ calves at side. Cows are home-raised, gentle &amp; sell open</li>\n<li><b>Complete Dispersal Sena Farms: </b><b>20 </b>Mix 2-6 yr. old cows w/ 450lbs calves at side ( 3N1â€™s) Cows are bred back to Blk Bulls.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-09-14 14:54:47','2022-09-14 14:54:47','',2209,'https://kingsvillelivestock.com/?p=4689',0,'revision','',0),(4690,2,'2022-09-14 16:04:52','2022-09-14 16:04:52','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/TuesdaySeptember-13th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4684\">Tuesday,September 13th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday, September 24th @ 11 amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>James Red Angus: </b><b>2 </b>2 yr. old Red Angus Bulls. Out of Reg. genetics, no papers. Heifer or Cow bull</li>\n<li><b>Lightfoot Farms: </b><b>2 </b>3 yr old Blk Sim Angus bulls</li>\n<li><b>Complete Dispersal Austin Danner: </b><b>1 </b>3.5 yr old Blk Bull</li>\n<li><b>3C Cattle CO: </b><b>10 </b>2 yr old Reg. Blk Angus Bulls. Very nice set of Angus bulls that all will have EPDs &amp; birth weights available on our website &amp; available on sale day. Semen &amp; trich tested</li>\n<li><b>Carlyle Farms: </b><b>5 </b>2-3 yr old Purebred Blk Angus Bulls. Have been used 1 season, nice set of big stout bulls. Semen &amp; trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Complete Dispersal Moon Farms: </b><b>11 </b>Blk 5-SS cows w/ 250lbs calves at side</li>\n<li><b>Nelson Farms: </b><b>7 </b>Blk 2 yr old Sim bred heifers, 3rd period. Some may have 2-week old calves at side by sale day. Heifers are gentle &amp; good quality.</li>\n<li><b>Smith Farms: </b><b>10 </b>Blk 5-7 yr. cows w/ 250lbs calves at side.</li>\n<li><b>Lightfoot Farms: </b><b>23 </b>Blk-Char 3-6 yr. old cows, 2nd &amp; 3rd period.</li>\n<li><b>A&amp;L Farms: </b><b>10 </b>Â Blk. Gelv. Balancer 4 yr old cows, heavy 3rd period. Some may have calves by sale day. Nice set of cows &amp; good quality</li>\n<li><b>Complete Dispersal Knoles Farm: </b><b>75 </b>Fancy Blk Angus 3-5 yr. old cows,3rd period. <b>40 </b>Blk Angus 3-5 yr. old cows w/ 150-200lbs calves at side. Cows bred to Reg. Blk Angus bulls</li>\n<li><b>Shilo Hill Farms: </b><b>50 </b>Blk-Bwf 3-4 yr. old cows w/ 200lbs calves at side. <b>50</b> Blk-Bwf 3-4 yr. old cows, 3rd period. <b>50 </b>Blk-Bwf 5-7 yr old cows,3rd period. Bred Reg. Angus bulls. All cows are gentle &amp; nice kind.</li>\n<li><b>Complete Dispersal Campbell Farms: </b><b>80 </b>Blk 3-7 yr. old cows,3rd period. Could be a few calves by sale day. <b>40Â  </b>Blk 3-7 yr old cows,2nd period. All cows bred Balancer &amp; Sim-Angus bulls. Current on all shots.</li>\n<li><b>Mead Farms: </b><b>30 </b>Blk 4-7 yr. old cows <b>6 </b>Red 4-7 yr old cows. <b>6 </b>Blk-Red 4-7 yr old cows w/ 400lbs calves at side (3N1â€™s) All cows have been running w/ polled Hereford bull</li>\n<li><b>Complete Dispersal Austin Danner: </b><b>5 </b>Blk 5-7 yr old cows w/ 300lbs calves at side ( 3N1â€™s) Had all shots &amp; wormed/poured last week of August.</li>\n<li><b>Holt Farms: </b><b>38 </b>Hereford 3-SS yr old cows w/ Bwf calves at side. All cows are home-raised &amp; nice set of pairs</li>\n<li><b>Complete Dispersal Hildabrand Farms: </b><b>50 </b>Blk-Bwf 5-SS yr. old cows w/ calves at side. Cows are home-raised, gentle &amp; sell open</li>\n<li><b>Complete Dispersal Sena Farms: </b><b>20 </b>Mix 2-6 yr. old cows w/ 450lbs calves at side ( 3N1â€™s) Cows are bred back to Blk Bulls.</li>\n<li><b>Twenter Farms: </b><b>42 </b>Blk 4-SS yr. old cows w/ 15 calves at side &amp; balance 3rd period. Calves are sired by Sim-Angus bulls, nice set of gentle cows. Cows are selling due to loss of ground</li>\n<li><b>Terry Jackson Farms: </b><b>30 </b>Blk/Red 3-7 yr old cows w/200lbs calves at side. Nice set of pairs</li>\n<li><b>James Johnson Farms: </b><b>45 </b>Red Angus 3-7 yr old cows,3rd period. Start calving Sept. 20th for 65 days. Bred Red or Blk Angus bulls</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-09-14 16:04:52','2022-09-14 16:04:52','',2209,'https://kingsvillelivestock.com/?p=4690',0,'revision','',0),(4691,2,'2022-09-14 16:11:24','2022-09-14 16:11:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 13, 2022,</strong> 3452 hd; Last week, 744 hd; 2518 a year ago. Steers &amp; heifers sold steady-$3 higher. Several yearlings &amp; long-weaned cattle were sold.Â  Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$236.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$217.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$183.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$177.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$162.85</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$121.00-$145.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$88.00 - $98.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$75.00 - $87.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$88.00 - $118.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">559lbs @$223.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">610lbs @$215.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">667lbs @$207.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">724lbs @$190.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">726lbs @$195.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Steers</td>\n<td style=\"width: 153.75px; height: 46px;\">798lbs @$182.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">823lbs @$183.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">580lbs @$200.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">622lbs @$186.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">658lbs@$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">723lbs@$176.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 13, 2022 - Market Report','','publish','closed','open','','september-13-2022-market-report','','','2022-09-14 16:11:28','2022-09-14 16:11:28','',0,'https://kingsvillelivestock.com/?p=4691',0,'post','',0),(4692,2,'2022-09-14 16:11:24','2022-09-14 16:11:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 13, 2022,</strong> 3452 hd; Last week, 744 hd; 2518 a year ago. Steers &amp; heifers sold steady-$3 higher. Several yearlings &amp; long-weaned cattle were sold.Â  Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$236.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$217.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$183.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$177.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$162.85</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$121.00-$145.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$88.00 - $98.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$75.00 - $87.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$88.00 - $118.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">559lbs @$223.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">610lbs @$215.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">667lbs @$207.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">724lbs @$190.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">726lbs @$195.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Steers</td>\n<td style=\"width: 153.75px; height: 46px;\">798lbs @$182.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">823lbs @$183.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">580lbs @$200.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">622lbs @$186.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">658lbs@$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">723lbs@$176.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 13, 2022 - Market Report','','inherit','closed','closed','','4691-revision-v1','','','2022-09-14 16:11:24','2022-09-14 16:11:24','',4691,'https://kingsvillelivestock.com/?p=4692',0,'revision','',0),(4693,2,'2022-09-14 16:11:24','2022-09-14 16:11:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 13, 2022,</strong> 3452 hd; Last week, 744 hd; 2518 a year ago. Steers &amp; heifers sold steady-$3 higher. Several yearlings &amp; long-weaned cattle were sold.Â  Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$236.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$217.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$183.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$177.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$162.85</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$121.00-$145.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$88.00 - $98.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$75.00 - $87.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$88.00 - $118.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">559lbs @$223.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">610lbs @$215.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">667lbs @$207.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">724lbs @$190.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">726lbs @$195.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Steers</td>\n<td style=\"width: 153.75px; height: 46px;\">798lbs @$182.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">823lbs @$183.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">580lbs @$200.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">622lbs @$186.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">658lbs@$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">723lbs@$176.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 6, 2022 - Market Report','','inherit','closed','closed','','4691-revision-v1','','','2022-09-14 16:11:24','2022-09-14 16:11:24','',4691,'https://kingsvillelivestock.com/?p=4693',0,'revision','',0),(4694,2,'2022-09-14 16:11:28','2022-09-14 16:11:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 13, 2022,</strong> 3452 hd; Last week, 744 hd; 2518 a year ago. Steers &amp; heifers sold steady-$3 higher. Several yearlings &amp; long-weaned cattle were sold.Â  Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$236.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$217.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$183.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$177.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$162.85</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$121.00-$145.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table width=\"329\">\n<tbody>\n<tr>\n<td style=\"width: 156.5px;\">High Yielding</td>\n<td style=\"width: 156.5px;\">$88.00 - $98.50</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Medium Yield</td>\n<td style=\"width: 156.5px;\">$75.00 - $87.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Low Yield</td>\n<td style=\"width: 156.5px;\">$60.00 - $74.00</td>\n</tr>\n<tr>\n<td style=\"width: 156.5px;\">Bulls</td>\n<td style=\"width: 156.5px;\">$88.00 - $118.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">559lbs @$223.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">610lbs @$215.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">667lbs @$207.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">724lbs @$190.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">726lbs @$195.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Steers</td>\n<td style=\"width: 153.75px; height: 46px;\">798lbs @$182.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">823lbs @$183.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">580lbs @$200.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">622lbs @$186.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">658lbs@$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">723lbs@$176.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 13, 2022 - Market Report','','inherit','closed','closed','','4691-revision-v1','','','2022-09-14 16:11:28','2022-09-14 16:11:28','',4691,'https://kingsvillelivestock.com/?p=4694',0,'revision','',0),(4695,2,'2022-09-14 16:21:58','2022-09-14 16:21:58','','September 24, 2022 Cow Sale','','inherit','closed','closed','','september-24-2022-cow-sale','','','2022-09-14 16:21:58','2022-09-14 16:21:58','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-24-2022-Cow-Sale.pdf',0,'attachment','application/pdf',0),(4696,2,'2022-09-14 16:22:08','2022-09-14 16:22:08','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 amÂ  Â <br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-24-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4695\">September 24, 2022 Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-09-14 16:22:08','2022-09-14 16:22:08','',639,'https://kingsvillelivestock.com/?p=4696',0,'revision','',0),(4697,2,'2022-09-14 16:22:57','2022-09-14 16:22:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-24-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4695\">September 24, 2022 Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-09-14 16:22:57','2022-09-14 16:22:57','',1967,'https://kingsvillelivestock.com/?p=4697',0,'revision','',0),(4699,2,'2022-09-19 15:02:24','2022-09-19 15:02:24','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/TuesdaySeptember-13th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4684\">Tuesday,September 13th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday, September 24th @ 11 amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>James Red Angus: </b><b>2 </b>2 yr. old Red Angus Bulls. Out of Reg. genetics, no papers. Heifer or Cow bull</li>\n<li><b>Lightfoot Farms: </b><b>2 </b>3 yr old Blk Sim Angus bulls</li>\n<li><b>Complete Dispersal Austin Danner: </b><b>1 </b>3.5 yr old Blk Bull</li>\n<li><b>3C Cattle CO: </b><b>10 </b>2 yr old Reg. Blk Angus Bulls. Very nice set of Angus bulls that all will have EPDs &amp; birth weights available on our website &amp; available on sale day. Semen &amp; trich tested</li>\n<li><b>Carlyle Farms: </b><b>5 </b>2-3 yr old Purebred Blk Angus Bulls. Have been used 1 season, nice set of big stout bulls. Semen &amp; trich tested</li>\n<li><b>Bogue Farms: </b><b>1 </b>4 yr old Blk Sim Bull. Out of Flying H Genetics</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Complete Dispersal Moon Farms: </b><b>11 </b>Blk 5-SS cows w/ 250lbs calves at side</li>\n<li><b>Nelson Farms: </b><b>7 </b>Blk 2 yr old Sim bred heifers, 3rd period. Some may have 2-week old calves at side by sale day. Heifers are gentle &amp; good quality.</li>\n<li><b>Smith Farms: </b><b>10 </b>Blk 5-7 yr. cows w/ 250lbs calves at side.</li>\n<li><b>Lightfoot Farms: </b><b>23 </b>Blk-Char 3-6 yr. old cows, 2nd &amp; 3rd period.</li>\n<li><b>A&amp;L Farms: </b><b>10 </b>Â Blk. Gelv. Balancer 4 yr old cows, heavy 3rd period. Some may have calves by sale day. Nice set of cows &amp; good quality</li>\n<li><b>Complete Dispersal Knoles Farm: </b><b>75 </b>Fancy Blk Angus 3-5 yr. old cows,3rd period. <b>40 </b>Blk Angus 3-5 yr. old cows w/ 150-200lbs calves at side. Cows bred to Reg. Blk Angus bulls</li>\n<li><b>Shilo Hill Farms: </b><b>50 </b>Blk-Bwf 3-4 yr. old cows w/ 200lbs calves at side. <b>50</b> Blk-Bwf 3-4 yr. old cows, 3rd period. <b>50 </b>Blk-Bwf 5-7 yr old cows,3rd period. Bred Reg. Angus bulls. All cows are gentle &amp; nice kind.</li>\n<li><b>Complete Dispersal Campbell Farms: </b><b>80 </b>Blk 3-7 yr. old cows,3rd period. Could be a few calves by sale day. <b>40Â  </b>Blk 3-7 yr old cows,2nd period. All cows bred Balancer &amp; Sim-Angus bulls. Current on all shots.</li>\n<li><b>Mead Farms: </b><b>30 </b>Blk 4-7 yr. old cows <b>6 </b>Red 4-7 yr old cows. <b>6 </b>Blk-Red 4-7 yr old cows w/ 400lbs calves at side (3N1â€™s) All cows have been running w/ polled Hereford bull</li>\n<li><b>Complete Dispersal Austin Danner: </b><b>5 </b>Blk 5-7 yr old cows w/ 300lbs calves at side ( 3N1â€™s) Had all shots &amp; wormed/poured last week of August.</li>\n<li><b>Holt Farms: </b><b>38 </b>Hereford 3-SS yr old cows w/ Bwf calves at side. All cows are home-raised &amp; nice set of pairs</li>\n<li><b>Complete Dispersal Hildabrand Farms: </b><b>50 </b>Blk-Bwf 5-SS yr. old cows w/ calves at side. Cows are home-raised, gentle &amp; sell open</li>\n<li><b>Complete Dispersal Sena Farms: </b><b>20 </b>Mix 2-6 yr. old cows w/ 450lbs calves at side ( 3N1â€™s) Cows are bred back to Blk Bulls.</li>\n<li><b>Twenter Farms: </b><b>42 </b>Blk 4-SS yr. old cows w/ 15 calves at side &amp; balance 3rd period. Calves are sired by Sim-Angus bulls, nice set of gentle cows. Cows are selling due to loss of ground</li>\n<li><b>Terry Jackson Farms: </b><b>30 </b>Blk/Red 3-7 yr old cows w/200lbs calves at side. Nice set of pairs</li>\n<li><b>James Johnson Farms: </b><b>45 </b>Red Angus 3-7 yr old cows,3rd period. Start calving Sept. 20th for 65 days. Bred Red or Blk Angus bulls</li>\n<li><b>Hamilton Farms: </b><b>35 </b>Blk 6-SS yr old cows,3rd period. Bred Blk bulls</li>\n<li><b>Brown Farms: </b><b>15 </b>Blk 3-4 yr old cows w/300lbs calves at side. Cows sell open, nice set of pairs</li>\n<li><b>Complete Dispersal Clark Farms: </b><b>16 </b>Blk &amp; Shorthornx 6-SS yr old cows w/300lbs calves at side. <b>14</b> Blk &amp; Shorthornx 6-SS yr. old cows w/ 6 calves at side &amp; balance 3rd period.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-09-19 15:02:24','2022-09-19 15:02:24','',2209,'https://kingsvillelivestock.com/?p=4699',0,'revision','',0),(4700,2,'2022-09-19 15:04:08','2022-09-19 15:04:08','','September 24, 2022 Cow Sale','','inherit','closed','closed','','september-24-2022-cow-sale-2','','','2022-09-19 15:04:08','2022-09-19 15:04:08','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-24-2022-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(4701,2,'2022-09-19 15:04:32','2022-09-19 15:04:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-24-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4700\">September 24, 2022 Cow &amp; Bull Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-09-19 15:04:32','2022-09-19 15:04:32','',639,'https://kingsvillelivestock.com/?p=4701',0,'revision','',0),(4702,2,'2022-09-19 15:05:23','2022-09-19 15:05:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-24-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4700\">September 24, 2022 Cow &amp; Bull Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-09-19 15:05:23','2022-09-19 15:05:23','',1967,'https://kingsvillelivestock.com/?p=4702',0,'revision','',0),(4703,2,'2022-09-19 22:06:21','2022-09-19 22:06:21','','Tuesday,September 20th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayseptember-20th-feeder-cattle-consignments','','','2022-09-19 22:06:21','2022-09-19 22:06:21','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/09/TuesdaySeptember-20th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4704,2,'2022-09-19 22:06:28','2022-09-19 22:06:28','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/TuesdaySeptember-20th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4703\">Tuesday,September 20th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday, September 24th @ 11 amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>James Red Angus: </b><b>2 </b>2 yr. old Red Angus Bulls. Out of Reg. genetics, no papers. Heifer or Cow bull</li>\n<li><b>Lightfoot Farms: </b><b>2 </b>3 yr old Blk Sim Angus bulls</li>\n<li><b>Complete Dispersal Austin Danner: </b><b>1 </b>3.5 yr old Blk Bull</li>\n<li><b>3C Cattle CO: </b><b>10 </b>2 yr old Reg. Blk Angus Bulls. Very nice set of Angus bulls that all will have EPDs &amp; birth weights available on our website &amp; available on sale day. Semen &amp; trich tested</li>\n<li><b>Carlyle Farms: </b><b>5 </b>2-3 yr old Purebred Blk Angus Bulls. Have been used 1 season, nice set of big stout bulls. Semen &amp; trich tested</li>\n<li><b>Bogue Farms: </b><b>1 </b>4 yr old Blk Sim Bull. Out of Flying H Genetics</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Complete Dispersal Moon Farms: </b><b>11 </b>Blk 5-SS cows w/ 250lbs calves at side</li>\n<li><b>Nelson Farms: </b><b>7 </b>Blk 2 yr old Sim bred heifers, 3rd period. Some may have 2-week old calves at side by sale day. Heifers are gentle &amp; good quality.</li>\n<li><b>Smith Farms: </b><b>10 </b>Blk 5-7 yr. cows w/ 250lbs calves at side.</li>\n<li><b>Lightfoot Farms: </b><b>23 </b>Blk-Char 3-6 yr. old cows, 2nd &amp; 3rd period.</li>\n<li><b>A&amp;L Farms: </b><b>10 </b>Â Blk. Gelv. Balancer 4 yr old cows, heavy 3rd period. Some may have calves by sale day. Nice set of cows &amp; good quality</li>\n<li><b>Complete Dispersal Knoles Farm: </b><b>75 </b>Fancy Blk Angus 3-5 yr. old cows,3rd period. <b>40 </b>Blk Angus 3-5 yr. old cows w/ 150-200lbs calves at side. Cows bred to Reg. Blk Angus bulls</li>\n<li><b>Shilo Hill Farms: </b><b>50 </b>Blk-Bwf 3-4 yr. old cows w/ 200lbs calves at side. <b>50</b> Blk-Bwf 3-4 yr. old cows, 3rd period. <b>50 </b>Blk-Bwf 5-7 yr old cows,3rd period. Bred Reg. Angus bulls. All cows are gentle &amp; nice kind.</li>\n<li><b>Complete Dispersal Campbell Farms: </b><b>80 </b>Blk 3-7 yr. old cows,3rd period. Could be a few calves by sale day. <b>40Â  </b>Blk 3-7 yr old cows,2nd period. All cows bred Balancer &amp; Sim-Angus bulls. Current on all shots.</li>\n<li><b>Mead Farms: </b><b>30 </b>Blk 4-7 yr. old cows <b>6 </b>Red 4-7 yr old cows. <b>6 </b>Blk-Red 4-7 yr old cows w/ 400lbs calves at side (3N1â€™s) All cows have been running w/ polled Hereford bull</li>\n<li><b>Complete Dispersal Austin Danner: </b><b>5 </b>Blk 5-7 yr old cows w/ 300lbs calves at side ( 3N1â€™s) Had all shots &amp; wormed/poured last week of August.</li>\n<li><b>Holt Farms: </b><b>38 </b>Hereford 3-SS yr old cows w/ Bwf calves at side. All cows are home-raised &amp; nice set of pairs</li>\n<li><b>Complete Dispersal Hildabrand Farms: </b><b>50 </b>Blk-Bwf 5-SS yr. old cows w/ calves at side. Cows are home-raised, gentle &amp; sell open</li>\n<li><b>Complete Dispersal Sena Farms: </b><b>20 </b>Mix 2-6 yr. old cows w/ 450lbs calves at side ( 3N1â€™s) Cows are bred back to Blk Bulls.</li>\n<li><b>Twenter Farms: </b><b>42 </b>Blk 4-SS yr. old cows w/ 15 calves at side &amp; balance 3rd period. Calves are sired by Sim-Angus bulls, nice set of gentle cows. Cows are selling due to loss of ground</li>\n<li><b>Terry Jackson Farms: </b><b>30 </b>Blk/Red 3-7 yr old cows w/200lbs calves at side. Nice set of pairs</li>\n<li><b>James Johnson Farms: </b><b>45 </b>Red Angus 3-7 yr old cows,3rd period. Start calving Sept. 20th for 65 days. Bred Red or Blk Angus bulls</li>\n<li><b>Hamilton Farms: </b><b>35 </b>Blk 6-SS yr old cows,3rd period. Bred Blk bulls</li>\n<li><b>Brown Farms: </b><b>15 </b>Blk 3-4 yr old cows w/300lbs calves at side. Cows sell open, nice set of pairs</li>\n<li><b>Complete Dispersal Clark Farms: </b><b>16 </b>Blk &amp; Shorthornx 6-SS yr old cows w/300lbs calves at side. <b>14</b> Blk &amp; Shorthornx 6-SS yr. old cows w/ 6 calves at side &amp; balance 3rd period.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-09-19 22:06:28','2022-09-19 22:06:28','',2209,'https://kingsvillelivestock.com/?p=4704',0,'revision','',0),(4705,2,'2022-09-19 22:08:38','2022-09-19 22:08:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-24-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4700\">September 24, 2022 Cow &amp; Bull Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong><span style=\"color: #000000;\">Oct. 1st @ 10:00 am <br /></span></strong><span style=\"color: #000000;\">Henley Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-09-19 22:08:38','2022-09-19 22:08:38','',639,'https://kingsvillelivestock.com/?p=4705',0,'revision','',0),(4706,2,'2022-09-19 22:09:18','2022-09-19 22:09:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-24-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4700\">September 24, 2022 Cow &amp; Bull Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong><span style=\"color: #000000;\">Oct. 1st @ 10:00 am <br /></span></strong><span style=\"color: #000000;\">Henley Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-09-19 22:09:18','2022-09-19 22:09:18','',1967,'https://kingsvillelivestock.com/?p=4706',0,'revision','',0),(4707,2,'2022-09-19 22:10:27','2022-09-19 22:10:27','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/H4eUkKB3AxAuuT8f9\">Henley Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p><a href=\"https://docs.google.com/document/d/1_SdGK6uOQVU0izEz9ArbjOm85eJrfRwFOhN1wbJWzh8/edit?usp=sharing\">Roberts Gun Info</a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-09-19 22:10:27','2022-09-19 22:10:27','',1450,'https://kingsvillelivestock.com/?p=4707',0,'revision','',0),(4708,2,'2022-09-19 23:25:33','2022-09-19 23:25:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-24-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4700\">September 24, 2022 Cow &amp; Bull Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong><span style=\"color: #000000;\">Oct. 1st @ 9:00 am<br /></span></strong><span style=\"color: #000000;\">Henley Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 7th @ 9:30 am<br /></span></strong><span style=\"color: #000000;\">Gunn Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-09-19 23:25:33','2022-09-19 23:25:33','',1967,'https://kingsvillelivestock.com/?p=4708',0,'revision','',0),(4709,2,'2022-09-19 23:26:34','2022-09-19 23:26:34','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-24-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4700\">September 24, 2022 Cow &amp; Bull Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong><span style=\"color: #000000;\">Oct. 1st @ 9:00 am<br /></span></strong><span style=\"color: #000000;\">Henley Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 7th @ 9:30 am<br /></span></strong><span style=\"color: #000000;\">Gunn Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-09-19 23:26:34','2022-09-19 23:26:34','',639,'https://kingsvillelivestock.com/?p=4709',0,'revision','',0),(4710,2,'2022-09-19 23:27:49','2022-09-19 23:27:49','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/H4eUkKB3AxAuuT8f9\">Henley Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/MtBmTo7nuGkZtRi99\">Gunn Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p><a href=\"https://docs.google.com/document/d/1_SdGK6uOQVU0izEz9ArbjOm85eJrfRwFOhN1wbJWzh8/edit?usp=sharing\">Roberts Gun Info</a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-09-19 23:27:49','2022-09-19 23:27:49','',1450,'https://kingsvillelivestock.com/?p=4710',0,'revision','',0),(4711,2,'2022-09-21 02:48:06','2022-09-21 02:48:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-24-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4700\">September 24, 2022, Cow &amp; Bull Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong><span style=\"color: #000000;\">Oct. 1st @ 9:00 am<br /></span></strong><span style=\"color: #000000;\">Henley Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 7th @ 9:30 am<br /></span></strong><span style=\"color: #000000;\">Gunn Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-09-21 02:48:06','2022-09-21 02:48:06','',639,'https://kingsvillelivestock.com/?p=4711',0,'revision','',0),(4712,2,'2022-09-21 02:49:34','2022-09-21 02:49:34','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 24th @ 11 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/September-24-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4700\">September 24, 2022 Cow &amp; Bull Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong><span style=\"color: #000000;\">Oct. 1st @ 9:00 am<br /></span></strong><span style=\"color: #000000;\">Henley Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 7th @ 9:30 am<br /></span></strong><span style=\"color: #000000;\">Gunn Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-09-21 02:49:34','2022-09-21 02:49:34','',1967,'https://kingsvillelivestock.com/?p=4712',0,'revision','',0),(4713,2,'2022-09-21 15:14:59','2022-09-21 15:14:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 20, 2022,</strong> 2198 hd; Last week, 3452 hd; 1567 a year ago. Feeder cattle of all classes soldsteady-$3 lower. Slaughter cows &amp; bulls sold steady-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$226.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$206.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$157.50-$176.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$160.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$142.00-$166.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$145.00-$150.85</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$81.00 - $90.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$69.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$57.00 - $68.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $123.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">701lbs @$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">818lbs @$176.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">889lbs @$171.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">683lbs @$179.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">724lbs @$173.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 46px;\">739lbs @$161.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 20, 2022 - Market Report','','publish','closed','open','','september-20-2022-market-report','','','2022-09-21 15:15:03','2022-09-21 15:15:03','',0,'https://kingsvillelivestock.com/?p=4713',0,'post','',0),(4715,2,'2022-09-21 15:14:59','2022-09-21 15:14:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 20, 2022,</strong> 2198 hd; Last week, 3452 hd; 1567 a year ago. Feeder cattle of all classes soldsteady-$3 lower. Slaughter cows &amp; bulls sold steady-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$226.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$206.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$157.50-$176.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$160.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$142.00-$166.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$145.00-$150.85</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$81.00 - $90.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$69.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$57.00 - $68.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $123.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">701lbs @$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">818lbs @$176.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">889lbs @$171.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">683lbs @$179.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">724lbs @$173.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 46px;\">739lbs @$161.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 20, 2022 - Market Report','','inherit','closed','closed','','4713-revision-v1','','','2022-09-21 15:14:59','2022-09-21 15:14:59','',4713,'https://kingsvillelivestock.com/?p=4715',0,'revision','',0),(4716,2,'2022-09-21 15:14:59','2022-09-21 15:14:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 20, 2022,</strong> 2198 hd; Last week, 3452 hd; 1567 a year ago. Feeder cattle of all classes soldsteady-$3 lower. Slaughter cows &amp; bulls sold steady-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$226.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$206.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$157.50-$176.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$160.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$142.00-$166.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$145.00-$150.85</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$81.00 - $90.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$69.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$57.00 - $68.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $123.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">701lbs @$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">818lbs @$176.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">889lbs @$171.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">683lbs @$179.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">724lbs @$173.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 46px;\">739lbs @$161.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 13, 2022 - Market Report','','inherit','closed','closed','','4713-revision-v1','','','2022-09-21 15:14:59','2022-09-21 15:14:59','',4713,'https://kingsvillelivestock.com/?p=4716',0,'revision','',0),(4717,2,'2022-09-21 15:15:03','2022-09-21 15:15:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 20, 2022,</strong> 2198 hd; Last week, 3452 hd; 1567 a year ago. Feeder cattle of all classes soldsteady-$3 lower. Slaughter cows &amp; bulls sold steady-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$226.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$206.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$157.50-$176.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$160.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$142.00-$166.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$145.00-$150.85</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$81.00 - $90.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$69.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$57.00 - $68.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $123.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">701lbs @$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">818lbs @$176.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Steers</td>\n<td style=\"width: 153.75px; height: 23px;\">889lbs @$171.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">683lbs @$179.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 23px;\">724lbs @$173.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.25px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.75px; height: 46px;\">739lbs @$161.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 23px;\">Â </td>\n<td style=\"width: 153.75px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.25px; height: 10px;\">Â </td>\n<td style=\"width: 153.75px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 20, 2022 - Market Report','','inherit','closed','closed','','4713-revision-v1','','','2022-09-21 15:15:03','2022-09-21 15:15:03','',4713,'https://kingsvillelivestock.com/?p=4717',0,'revision','',0),(4718,2,'2022-09-21 15:43:20','2022-09-21 15:43:20','','Henley Auction October 1st - Pleasant Hill, MO','','inherit','closed','closed','','henley-auction-october-1st-pleasant-hill-mo','','','2022-09-21 15:43:20','2022-09-21 15:43:20','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/09/Henley-Auction-October-1st-Pleasant-Hill-MO.pdf',0,'attachment','application/pdf',0),(4719,2,'2022-09-21 15:44:28','2022-09-21 15:44:28','','Gunn Auction - October 7th','','inherit','closed','closed','','gunn-auction-october-7th','','','2022-09-21 15:44:28','2022-09-21 15:44:28','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/09/Gunn-Auction-October-7th.pdf',0,'attachment','application/pdf',0),(4721,2,'2022-09-21 15:45:41','2022-09-21 15:45:41','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/Henley-Auction-October-1st-Pleasant-Hill-MO.pdf\" rel=\"attachment wp-att-4718\">Henley Auction Saturday, October 1st - Pleasant Hill, MO-9am</a></p>\n<p><a href=\"https://photos.app.goo.gl/H4eUkKB3AxAuuT8f9\">Henley Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/Gunn-Auction-October-7th.pdf\" rel=\"attachment wp-att-4719\">Billy GunnÂ  &amp; Edna Roller Auction Saturday, October 7th-9am</a></p>\n<p><a href=\"https://photos.app.goo.gl/MtBmTo7nuGkZtRi99\">Gunn Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p><a href=\"https://docs.google.com/document/d/1_SdGK6uOQVU0izEz9ArbjOm85eJrfRwFOhN1wbJWzh8/edit?usp=sharing\">Roberts Gun Info</a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-09-21 15:45:41','2022-09-21 15:45:41','',1450,'https://kingsvillelivestock.com/?p=4721',0,'revision','',0),(4722,2,'2022-09-26 14:58:51','2022-09-26 14:58:51','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong><span style=\"color: #000000;\">Oct. 1st @ 9:00 am<br /></span></strong><span style=\"color: #000000;\">Henley Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 7th @ 9:30 am<br /></span></strong><span style=\"color: #000000;\">Gunn Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-09-26 14:58:51','2022-09-26 14:58:51','',639,'https://kingsvillelivestock.com/?p=4722',0,'revision','',0),(4723,2,'2022-09-26 14:59:45','2022-09-26 14:59:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 27th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong><span style=\"color: #000000;\">Oct. 1st @ 9:00 am<br /></span></strong><span style=\"color: #000000;\">Henley Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 7th @ 9:30 am<br /></span></strong><span style=\"color: #000000;\">Gunn Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-09-26 14:59:45','2022-09-26 14:59:45','',1967,'https://kingsvillelivestock.com/?p=4723',0,'revision','',0),(4724,2,'2022-09-26 15:00:58','2022-09-26 15:00:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/TuesdaySeptember-20th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4703\">Tuesday,September 20th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-09-26 15:00:58','2022-09-26 15:00:58','',2209,'https://kingsvillelivestock.com/?p=4724',0,'revision','',0),(4725,2,'2022-09-26 16:27:59','2022-09-26 16:27:59','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/Henley-Auction-October-1st-Pleasant-Hill-MO.pdf\" rel=\"attachment wp-att-4718\">Henley Auction Saturday, October 1st - Pleasant Hill, MO-9am</a></p>\n<p><a href=\"https://photos.app.goo.gl/H4eUkKB3AxAuuT8f9\">Henley Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/Gunn-Auction-October-7th.pdf\" rel=\"attachment wp-att-4719\">Billy GunnÂ  &amp; Edna Roller Auction Saturday, October 7th-9am</a></p>\n<p><a href=\"https://photos.app.goo.gl/MtBmTo7nuGkZtRi99\">Gunn Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/TBzhNPC82zt8rkFr8\">Barnett Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p><a href=\"https://docs.google.com/document/d/1_SdGK6uOQVU0izEz9ArbjOm85eJrfRwFOhN1wbJWzh8/edit?usp=sharing\">Roberts Gun Info</a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-09-26 16:27:59','2022-09-26 16:27:59','',1450,'https://kingsvillelivestock.com/?p=4725',0,'revision','',0),(4726,2,'2022-09-26 16:41:28','2022-09-26 16:41:28','','Tuesday,September 27th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayseptember-27th-feeder-cattle-consignments','','','2022-09-26 16:41:28','2022-09-26 16:41:28','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/09/TuesdaySeptember-27th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4727,2,'2022-09-26 16:41:58','2022-09-26 16:41:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/TuesdaySeptember-27th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4726\">Tuesday, September 27th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-09-26 16:41:58','2022-09-26 16:41:58','',2209,'https://kingsvillelivestock.com/?p=4727',0,'revision','',0),(4729,2,'2022-09-28 05:33:01','2022-09-28 05:33:01','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong><span style=\"color: #000000;\">Oct. 1st @ 9:00 am<br /></span></strong><span style=\"color: #000000;\">Henley Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 7th @ 9:30 am<br /></span></strong><span style=\"color: #000000;\">Gunn Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 15th @ 10:00 am<br /></span></strong><span style=\"color: #000000;\">Barnett Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-09-28 05:33:01','2022-09-28 05:33:01','',639,'https://kingsvillelivestock.com/?p=4729',0,'revision','',0),(4731,2,'2022-09-28 05:39:57','2022-09-28 05:39:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong><span style=\"color: #000000;\">Oct. 1st @ 9:00 am<br /></span></strong><span style=\"color: #000000;\">Henley Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 7th @ 9:30 am<br /></span></strong><span style=\"color: #000000;\">Gunn Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 15th @ 10:00 am<br /></span></strong><span style=\"color: #000000;\">Barnett Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-09-28 05:39:57','2022-09-28 05:39:57','',1967,'https://kingsvillelivestock.com/?p=4731',0,'revision','',0),(4732,2,'2022-09-28 05:40:46','2022-09-28 05:40:46','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong><span style=\"color: #000000;\">Oct. 1st @ 9:00 am<br /></span></strong><span style=\"color: #000000;\">Henley Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 7th @ 9:30 am<br /></span></strong><span style=\"color: #000000;\">Gunn Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 15th @ 10:00 am<br /></span></strong><span style=\"color: #000000;\">Barnett Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-09-28 05:40:46','2022-09-28 05:40:46','',639,'https://kingsvillelivestock.com/?p=4732',0,'revision','',0),(4733,2,'2022-09-28 16:06:47','2022-09-28 16:06:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 27, 2022,</strong> 2910 hd; Last week, 2198 hd; 1861 a year ago. Feeder cattle sold $3-$7 higher. New crop calves sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$231.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$208.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$203.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$179.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$161.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$122.00-$136.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $92.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$52.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">470lbs @$231.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">656lbs @$208.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">826lbs @$177.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">845lbs @$177.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">633lbs @$187.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 46px;\">662lbs @$186.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">715lbs @$177.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">717lbs @$175.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 27, 2022 - Market Report','','publish','closed','open','','september-27-2022-market-report','','','2022-09-28 16:06:51','2022-09-28 16:06:51','',0,'https://kingsvillelivestock.com/?p=4733',0,'post','',0),(4735,2,'2022-09-28 16:06:47','2022-09-28 16:06:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 27, 2022,</strong> 2910 hd; Last week, 2198 hd; 1861 a year ago. Feeder cattle sold $3-$7 higher. New crop calves sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$231.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$208.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$203.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$179.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$161.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$122.00-$136.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $92.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$52.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">470lbs @$231.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">656lbs @$208.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">826lbs @$177.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">845lbs @$177.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">633lbs @$187.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 46px;\">662lbs @$186.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">715lbs @$177.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">717lbs @$175.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 27, 2022 - Market Report','','inherit','closed','closed','','4733-revision-v1','','','2022-09-28 16:06:47','2022-09-28 16:06:47','',4733,'https://kingsvillelivestock.com/?p=4735',0,'revision','',0),(4736,2,'2022-09-28 16:06:47','2022-09-28 16:06:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 27, 2022,</strong> 2910 hd; Last week, 2198 hd; 1861 a year ago. Feeder cattle sold $3-$7 higher. New crop calves sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$231.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$208.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$203.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$179.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$161.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$122.00-$136.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $92.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$52.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">470lbs @$231.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">656lbs @$208.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">826lbs @$177.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">845lbs @$177.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">633lbs @$187.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 46px;\">662lbs @$186.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">715lbs @$177.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">717lbs @$175.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 20, 2022 - Market Report','','inherit','closed','closed','','4733-revision-v1','','','2022-09-28 16:06:47','2022-09-28 16:06:47','',4733,'https://kingsvillelivestock.com/?p=4736',0,'revision','',0),(4737,2,'2022-09-28 16:06:51','2022-09-28 16:06:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 27, 2022,</strong> 2910 hd; Last week, 2198 hd; 1861 a year ago. Feeder cattle sold $3-$7 higher. New crop calves sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$231.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$208.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$203.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$179.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$161.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$122.00-$136.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $92.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$52.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">470lbs @$231.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">656lbs @$208.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">826lbs @$177.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">845lbs @$177.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">633lbs @$187.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 46px;\">662lbs @$186.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">715lbs @$177.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">717lbs @$175.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 27, 2022 - Market Report','','inherit','closed','closed','','4733-revision-v1','','','2022-09-28 16:06:51','2022-09-28 16:06:51','',4733,'https://kingsvillelivestock.com/?p=4737',0,'revision','',0),(4738,2,'2022-09-28 16:45:33','2022-09-28 16:45:33','','October 8th,2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','october-8th2022-horse-tack-small-animal-sale','','','2022-09-28 16:45:33','2022-09-28 16:45:33','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/09/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf',0,'attachment','application/pdf',0);
INSERT INTO `b78GM7Ml_posts` VALUES (4739,2,'2022-09-28 16:45:51','2022-09-28 16:45:51','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong><span style=\"color: #000000;\">Oct. 1st @ 9:00 am<br /></span></strong><span style=\"color: #000000;\">Henley Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 7th @ 9:30 am<br /></span></strong><span style=\"color: #000000;\">Gunn Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4738\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4738\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 15th @ 10:00 am<br /></span></strong><span style=\"color: #000000;\">Barnett Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-09-28 16:45:51','2022-09-28 16:45:51','',639,'https://kingsvillelivestock.com/?p=4739',0,'revision','',0),(4740,2,'2022-09-28 16:46:40','2022-09-28 16:46:40','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong><span style=\"color: #000000;\">Oct. 1st @ 9:00 am<br /></span></strong><span style=\"color: #000000;\">Henley Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 7th @ 9:30 am<br /></span></strong><span style=\"color: #000000;\">Gunn Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4738\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4738\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 15th @ 10:00 am<br /></span></strong><span style=\"color: #000000;\">Barnett Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-09-28 16:46:40','2022-09-28 16:46:40','',1967,'https://kingsvillelivestock.com/?p=4740',0,'revision','',0),(4741,2,'2022-10-03 14:53:31','2022-10-03 14:53:31','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 7th @ 9:30 am<br /></span></strong><span style=\"color: #000000;\">Gunn Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4738\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4738\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 15th @ 10:00 am<br /></span></strong><span style=\"color: #000000;\">Barnett Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-10-03 14:53:31','2022-10-03 14:53:31','',639,'https://kingsvillelivestock.com/?p=4741',0,'revision','',0),(4742,2,'2022-10-03 14:54:08','2022-10-03 14:54:08','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 7th @ 9:30 am<br /></span></strong><span style=\"color: #000000;\">Gunn Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4738\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4738\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 15th @ 10:00 am<br /></span></strong><span style=\"color: #000000;\">Barnett Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-10-03 14:54:08','2022-10-03 14:54:08','',1967,'https://kingsvillelivestock.com/?p=4742',0,'revision','',0),(4743,2,'2022-10-03 14:54:48','2022-10-03 14:54:48','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/Gunn-Auction-October-7th.pdf\" rel=\"attachment wp-att-4719\">Billy GunnÂ  &amp; Edna Roller Auction Saturday, October 7th-9am</a></p>\n<p><a href=\"https://photos.app.goo.gl/MtBmTo7nuGkZtRi99\">Gunn Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/TBzhNPC82zt8rkFr8\">Barnett Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p><a href=\"https://docs.google.com/document/d/1_SdGK6uOQVU0izEz9ArbjOm85eJrfRwFOhN1wbJWzh8/edit?usp=sharing\">Roberts Gun Info</a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-10-03 14:54:48','2022-10-03 14:54:48','',1450,'https://kingsvillelivestock.com/?p=4743',0,'revision','',0),(4744,2,'2022-10-03 15:57:43','2022-10-03 15:57:43','','October 8th,2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','october-8th2022-horse-tack-small-animal-sale-2','','','2022-10-03 15:57:43','2022-10-03 15:57:43','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf',0,'attachment','application/pdf',0),(4745,2,'2022-10-03 16:00:54','2022-10-03 16:00:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 7th @ 9:30 am<br /></span></strong><span style=\"color: #000000;\">Gunn Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4744\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a>Â  Â  Â  Â  <a href=\"https://drive.google.com/drive/folders/1lEqSwT8CmMsbr5FQR_6cGdcYRWbYunba?usp=sharing\">Oct 8th photos</a></p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4744\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 15th @ 10:00 am<br /></span></strong><span style=\"color: #000000;\">Barnett Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-10-03 16:00:54','2022-10-03 16:00:54','',639,'https://kingsvillelivestock.com/?p=4745',0,'revision','',0),(4746,2,'2022-10-03 16:30:33','2022-10-03 16:30:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 7th @ 9:30 am<br /></span></strong><span style=\"color: #000000;\">Gunn Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4744\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a>Â  <a href=\"https://drive.google.com/drive/folders/1lEqSwT8CmMsbr5FQR_6cGdcYRWbYunba?usp=sharing\">Oct 8th photos</a></p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4744\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 15th @ 10:00 am<br /></span></strong><span style=\"color: #000000;\">Barnett Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-10-03 16:30:33','2022-10-03 16:30:33','',1967,'https://kingsvillelivestock.com/?p=4746',0,'revision','',0),(4747,2,'2022-10-03 16:52:55','2022-10-03 16:52:55','','Tuesday,October 4th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayoctober-4th-feeder-cattle-consignments','','','2022-10-03 16:52:55','2022-10-03 16:52:55','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayOctober-4th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4748,2,'2022-10-03 16:53:02','2022-10-03 16:53:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayOctober-4th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4747\">Tuesday,October 4th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-10-03 16:53:02','2022-10-03 16:53:02','',2209,'https://kingsvillelivestock.com/?p=4748',0,'revision','',0),(4749,2,'2022-10-05 17:08:22','2022-10-05 17:08:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 4, 2022,</strong> 2317 hd; Last week, 2910 hd; 2130 a year ago. Feeder cattle that were long weaned sold steady-$2 higher. New crop steers 650lbs &amp; down sold stead-$5 lower &amp; heifers sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$189.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$182.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$133.00-$148.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $90.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$62.00 - $74.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $61.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">687lbs @$197.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">752lbs @$180.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">806lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">820lbs @$183.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">884lbs @$180.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">618lbs @$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">656lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">723lbs @$172.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 4, 2022 - Market Report','','publish','closed','open','','october-4-2022-market-report','','','2022-10-05 17:08:26','2022-10-05 17:08:26','',0,'https://kingsvillelivestock.com/?p=4749',0,'post','',0),(4751,2,'2022-10-05 17:08:22','2022-10-05 17:08:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 4, 2022,</strong> 2317 hd; Last week, 2910 hd; 2130 a year ago. Feeder cattle that were long weaned sold steady-$2 higher. New crop steers 650lbs &amp; down sold stead-$5 lower &amp; heifers sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$189.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$182.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$133.00-$148.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $90.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$62.00 - $74.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $61.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">687lbs @$197.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">752lbs @$180.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">806lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">820lbs @$183.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">884lbs @$180.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">618lbs @$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">656lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">723lbs @$172.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 4, 2022 - Market Report','','inherit','closed','closed','','4749-revision-v1','','','2022-10-05 17:08:22','2022-10-05 17:08:22','',4749,'https://kingsvillelivestock.com/?p=4751',0,'revision','',0),(4752,2,'2022-10-05 17:08:22','2022-10-05 17:08:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 4, 2022,</strong> 2317 hd; Last week, 2910 hd; 2130 a year ago. Feeder cattle that were long weaned sold steady-$2 higher. New crop steers 650lbs &amp; down sold stead-$5 lower &amp; heifers sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$189.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$182.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$133.00-$148.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $90.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$62.00 - $74.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $61.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">687lbs @$197.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">752lbs @$180.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">806lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">820lbs @$183.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">884lbs @$180.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">618lbs @$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">656lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">723lbs @$172.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 27, 2022 - Market Report','','inherit','closed','closed','','4749-revision-v1','','','2022-10-05 17:08:22','2022-10-05 17:08:22','',4749,'https://kingsvillelivestock.com/?p=4752',0,'revision','',0),(4753,2,'2022-10-05 17:08:26','2022-10-05 17:08:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 4, 2022,</strong> 2317 hd; Last week, 2910 hd; 2130 a year ago. Feeder cattle that were long weaned sold steady-$2 higher. New crop steers 650lbs &amp; down sold stead-$5 lower &amp; heifers sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$189.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$182.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$165.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$133.00-$148.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $90.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$62.00 - $74.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $61.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $118.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">687lbs @$197.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">752lbs @$180.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">806lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">820lbs @$183.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">884lbs @$180.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">618lbs @$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">656lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">723lbs @$172.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 4, 2022 - Market Report','','inherit','closed','closed','','4749-revision-v1','','','2022-10-05 17:08:26','2022-10-05 17:08:26','',4749,'https://kingsvillelivestock.com/?p=4753',0,'revision','',0),(4754,2,'2022-10-05 17:10:03','2022-10-05 17:10:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong><span style=\"color: #000000;\">Oct. 7th @ 9:30 am<br /></span></strong><span style=\"color: #000000;\">Gunn Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4744\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a>Â  Â  Â  Â  <a href=\"https://drive.google.com/drive/folders/1lEqSwT8CmMsbr5FQR_6cGdcYRWbYunba?usp=sharing\">Oct 8th photos</a></p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4744\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 15th @ 10:00 am<br /></span></strong><span style=\"color: #000000;\">Barnett Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-10-05 17:10:03','2022-10-05 17:10:03','',639,'https://kingsvillelivestock.com/?p=4754',0,'revision','',0),(4755,2,'2022-10-05 17:10:56','2022-10-05 17:10:56','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong><span style=\"color: #000000;\">Oct. 7th @ 9:30 am<br /></span></strong><span style=\"color: #000000;\">Gunn Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4744\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a>Â  <a href=\"https://drive.google.com/drive/folders/1lEqSwT8CmMsbr5FQR_6cGdcYRWbYunba?usp=sharing\">Oct 8th photos</a></p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4744\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 15th @ 10:00 am<br /></span></strong><span style=\"color: #000000;\">Barnett Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-10-05 17:10:56','2022-10-05 17:10:56','',1967,'https://kingsvillelivestock.com/?p=4755',0,'revision','',0),(4756,2,'2022-10-05 17:12:42','2022-10-05 17:12:42','','Barnett Auction October 15th - Blairstown, MO','','inherit','closed','closed','','barnett-auction-october-15th-blairstown-mo','','','2022-10-05 17:12:42','2022-10-05 17:12:42','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/10/Barnett-Auction-October-15th-Blairstown-MO.pdf',0,'attachment','application/pdf',0),(4757,2,'2022-10-05 17:13:34','2022-10-05 17:13:34','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/09/Gunn-Auction-October-7th.pdf\" rel=\"attachment wp-att-4719\">Billy GunnÂ  &amp; Edna Roller Auction Saturday, October 7th-9am</a></p>\n<p><a href=\"https://photos.app.goo.gl/MtBmTo7nuGkZtRi99\">Gunn Photos</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/Barnett-Auction-October-15th-Blairstown-MO.pdf\" rel=\"attachment wp-att-4756\">Barnett Auction Saturday, October 15th -Blairstown, MO-10am</a></p>\n<p><a href=\"https://photos.app.goo.gl/TBzhNPC82zt8rkFr8\">Barnett Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p><a href=\"https://docs.google.com/document/d/1_SdGK6uOQVU0izEz9ArbjOm85eJrfRwFOhN1wbJWzh8/edit?usp=sharing\">Roberts Gun Info</a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-10-05 17:13:34','2022-10-05 17:13:34','',1450,'https://kingsvillelivestock.com/?p=4757',0,'revision','',0),(4761,2,'2022-10-08 13:07:53','2022-10-08 13:07:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4744\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a>Â  Â  Â  Â  <a href=\"https://drive.google.com/drive/folders/1lEqSwT8CmMsbr5FQR_6cGdcYRWbYunba?usp=sharing\">Oct 8th photos</a></p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4744\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 15th @ 10:00 am<br /></span></strong><span style=\"color: #000000;\">Barnett Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-10-08 13:07:53','2022-10-08 13:07:53','',639,'https://kingsvillelivestock.com/?p=4761',0,'revision','',0),(4762,2,'2022-10-08 13:08:29','2022-10-08 13:08:29','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct.8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4744\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a>Â  <a href=\"https://drive.google.com/drive/folders/1lEqSwT8CmMsbr5FQR_6cGdcYRWbYunba?usp=sharing\">Oct 8th photos</a></p>\n<p><strong>Oct. 8th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-8th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4744\">October 8th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 15th @ 10:00 am<br /></span></strong><span style=\"color: #000000;\">Barnett Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-10-08 13:08:29','2022-10-08 13:08:29','',1967,'https://kingsvillelivestock.com/?p=4762',0,'revision','',0),(4763,2,'2022-10-08 13:09:51','2022-10-08 13:09:51','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/Barnett-Auction-October-15th-Blairstown-MO.pdf\" rel=\"attachment wp-att-4756\">Barnett Auction Saturday, October 15th -Blairstown, MO-10am</a></p>\n<p><a href=\"https://photos.app.goo.gl/TBzhNPC82zt8rkFr8\">Barnett Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p><a href=\"https://docs.google.com/document/d/1_SdGK6uOQVU0izEz9ArbjOm85eJrfRwFOhN1wbJWzh8/edit?usp=sharing\">Roberts Gun Info</a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-10-08 13:09:51','2022-10-08 13:09:51','',1450,'https://kingsvillelivestock.com/?p=4763',0,'revision','',0),(4764,2,'2022-10-10 15:10:29','2022-10-10 15:10:29','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 15th @ 10:00 am<br /></span></strong><span style=\"color: #000000;\">Barnett Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-10-10 15:10:29','2022-10-10 15:10:29','',639,'https://kingsvillelivestock.com/?p=4764',0,'revision','',0),(4765,2,'2022-10-10 15:11:25','2022-10-10 15:11:25','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct.11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong><span style=\"color: #000000;\">Oct. 15th @ 10:00 am<br /></span></strong><span style=\"color: #000000;\">Barnett Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-10-10 15:11:25','2022-10-10 15:11:25','',1967,'https://kingsvillelivestock.com/?p=4765',0,'revision','',0),(4766,2,'2022-10-10 15:21:19','2022-10-10 15:21:19','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayOctober-4th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4747\">Tuesday,October 4th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #800080;\">Special Cow &amp; Bull Sale, Saturday, October 11th @ 11 am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Baxter Farms: </b><b>1 </b>4 yr old Blk Angus bull</li>\n<li><b>Reavis Farms: </b><b>1 </b>2 yr old Reg. Angus bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>10 </b>Blk 6-SS cows w/ 400lbs calves at side. Running back with Rwf bulls, 3N1s</li>\n<li><b>Phelps Farms: </b><b>11 </b>Blk Balancer 3-5 yr old cows w/ fall calves at side. Cows sell open, had all shots &amp; wormed/poured 30 days ago.</li>\n<li><b>Sanders Farms: </b><b>10 </b>Red-Charx 3-6 yr. cows, 2nd &amp; 3rd period <b>40</b> Blk-Bwf 3-6 yr old cows,2nd &amp; 3rd period. All cows bred to Red &amp; Blk Balancer bulls.</li>\n<li><b>Farris Farms: </b><b>12 </b>Blk 3yr. cows. Bred Blk Angus bulls &amp; bulls were turned in June 1st</li>\n<li><b>Baxter Farms: </b><b>11 </b>Blk 5-SS cows w/ 200-300lbs calves at side. <b>7 </b>Blk 5-SS cows,2nd &amp; 3rd period.Â </li>\n<li><b>JA-TA: </b><b>6 </b>Char 6-7 yr. old cows w/ 200lbs calves at side. All bought as Show-Me-Select heifers</li>\n<li><b>Thompson Farms: </b><b>25 </b>Blk-Red 5-SS cows w/ 15 calves at side &amp; balance 2nd &amp; 3rd period.Â </li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-10-10 15:21:19','2022-10-10 15:21:19','',2209,'https://kingsvillelivestock.com/?p=4766',0,'revision','',0),(4767,2,'2022-10-10 17:05:00','2022-10-10 17:05:00','','Tuesday,October 11th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayoctober-11th-feeder-cattle-consignments','','','2022-10-10 17:05:00','2022-10-10 17:05:00','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayOctober-11th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4768,2,'2022-10-10 17:05:07','2022-10-10 17:05:07','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayOctober-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4767\">Tuesday,October 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #800080;\">Special Cow &amp; Bull Sale, Saturday, October 11th @ 11 am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Baxter Farms: </b><b>1 </b>4 yr old Blk Angus bull</li>\n<li><b>Reavis Farms: </b><b>1 </b>2 yr old Reg. Angus bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>10 </b>Blk 6-SS cows w/ 400lbs calves at side. Running back with Rwf bulls, 3N1s</li>\n<li><b>Phelps Farms: </b><b>11 </b>Blk Balancer 3-5 yr old cows w/ fall calves at side. Cows sell open, had all shots &amp; wormed/poured 30 days ago.</li>\n<li><b>Sanders Farms: </b><b>10 </b>Red-Charx 3-6 yr. cows, 2nd &amp; 3rd period <b>40</b> Blk-Bwf 3-6 yr old cows,2nd &amp; 3rd period. All cows bred to Red &amp; Blk Balancer bulls.</li>\n<li><b>Farris Farms: </b><b>12 </b>Blk 3yr. cows. Bred Blk Angus bulls &amp; bulls were turned in June 1st</li>\n<li><b>Baxter Farms: </b><b>11 </b>Blk 5-SS cows w/ 200-300lbs calves at side. <b>7 </b>Blk 5-SS cows,2nd &amp; 3rd period.Â </li>\n<li><b>JA-TA: </b><b>6 </b>Char 6-7 yr. old cows w/ 200lbs calves at side. All bought as Show-Me-Select heifers</li>\n<li><b>Thompson Farms: </b><b>25 </b>Blk-Red 5-SS cows w/ 15 calves at side &amp; balance 2nd &amp; 3rd period.Â </li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-10-10 17:05:07','2022-10-10 17:05:07','',2209,'https://kingsvillelivestock.com/?p=4768',0,'revision','',0),(4769,2,'2022-10-12 04:10:50','2022-10-12 04:10:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong><span style=\"color: #000000;\">Oct. 15th @ 10:00 am<br /></span></strong><span style=\"color: #000000;\">Barnett Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-10-12 04:10:50','2022-10-12 04:10:50','',639,'https://kingsvillelivestock.com/?p=4769',0,'revision','',0),(4770,2,'2022-10-12 04:11:31','2022-10-12 04:11:31','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong><span style=\"color: #000000;\">Oct. 15th @ 10:00 am<br /></span></strong><span style=\"color: #000000;\">Barnett Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-10-12 04:11:31','2022-10-12 04:11:31','',1967,'https://kingsvillelivestock.com/?p=4770',0,'revision','',0),(4771,2,'2022-10-12 15:09:55','2022-10-12 15:09:55','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayOctober-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4767\">Tuesday,October 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #800080;\">Special Cow &amp; Bull Sale, Saturday, October 11th @ 11 am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Baxter Farms: </b><b>1 </b>4 yr old Blk Angus bull</li>\n<li><b>Reavis Farms: </b><b>1 </b>2 yr old Reg. Angus bull</li>\n<li><b>Thomas Farms: </b><b>1 </b>2 yr old Horned Hereford bull. Gentle, nice bullÂ </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>10 </b>Blk 6-SS cows w/ 400lbs calves at side. Running back with Rwf bulls, 3N1s</li>\n<li><b>Phelps Farms: </b><b>11 </b>Blk Balancer 3-5 yr old cows w/ fall calves at side. Cows sell open, had all shots &amp; wormed/poured 30 days ago.</li>\n<li><b>Sanders Farms: </b><b>10 </b>Red-Charx 3-6 yr. cows, 2nd &amp; 3rd period <b>40</b> Blk-Bwf 3-6 yr old cows,2nd &amp; 3rd period. All cows bred to Red &amp; Blk Balancer bulls.</li>\n<li><b>Farris Farms: </b><b>12 </b>Blk 3yr. cows. Bred Blk Angus bulls &amp; bulls were turned in June 1st</li>\n<li><b>Baxter Farms: </b><b>11 </b>Blk 5-SS cows w/ 200-300lbs calves at side. <b>7 </b>Blk 5-SS cows,2nd &amp; 3rd period.</li>\n<li><b>JA-TA: </b><b>6 </b>Char 6-7 yr. old cows w/ 200lbs calves at side. All bought as Show-Me-Select heifers</li>\n<li><b>Thompson Farms: </b><b>25 </b>Blk-Red 5-SS cows w/ 15 calves at side &amp; balance 2nd &amp; 3rd period.</li>\n<li><b>R &amp; L Farms Complete Dispersal: </b><b>18 </b>Blk 3-6 yr old cows w/ 150-250lbs calves at side. Very gentle, nice set of fall calving pairs. Have had all shots &amp; wormed/poured</li>\n<li><b>Wiggins Farms: </b><b>85 </b>Blk 2-6 yr old cows w/ fall calves at side. <b>30</b> Blk 2-6 yr old cows, 3rd period. All cows bred to Blk Angus bulls. Nice set of cows, broke to feed truck.</li>\n<li><b>Beeman Farms: </b><b>30 </b>Blk Angus 4-7 yr old cows, 2nd &amp; 3rd period. Bred to Reg. Blk Angus bulls</li>\n<li><b>Crawford Farms: </b><b>25 </b>Blk cows w/ calves at side. Nice set of gentle fall-calving pairs</li>\n<li><b>Simmons Farms: </b><b>20 </b>Fancy Red Angus 3-6 yr old cows, 3rd period. Bred Red Angus bulls. Nice set of fall-calving red cows.</li>\n<li><b>Walter Farms: </b><b>50 </b>Blk-Bwf 3-6 yr old cows,2nd period. Start calving Feb. 1st for 65 days bred Baldridge Blk Angus bulls. Calves were weaned 50 days ago, nice set of spring calving cows.</li>\n<li><b>Nation Farms: </b><b>45 </b>Blk 3-7 yr old cows,3rd period. Bred to Reg. Sim-Angus bulls. Nice set of calf-raising cows, been keeping replacements back &amp; making nice cows. Good breeding program &amp; current on all shots</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-10-12 15:09:55','2022-10-12 15:09:55','',2209,'https://kingsvillelivestock.com/?p=4771',0,'revision','',0),(4772,2,'2022-10-12 15:37:08','2022-10-12 15:37:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 11, 2022,</strong> 2934 hd; Last week, 2317 hd; 1819 a year ago. Long-weaned yearlings &amp; load lots sold fully steady. Calves sold steady-$2 higher.Â  Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$224.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$176.10</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$178.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$154.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$147.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$77.00 - $88.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$68.00 - $76.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $67.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">751lbs @$182.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">762lbs @$181.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">797lbs @$176.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">830lbs @$181.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">832lbs @$184.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Steers</td>\n<td style=\"width: 153.531px; height: 46px;\">896lbs @$178.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">917lbs @$176.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">714lbs @$178.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">737lbs @$173.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 11, 2022 - Market Report','','publish','closed','open','','october-11-2022-market-report','','','2022-10-12 15:37:12','2022-10-12 15:37:12','',0,'https://kingsvillelivestock.com/?p=4772',0,'post','',0),(4774,2,'2022-10-12 15:37:08','2022-10-12 15:37:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 11, 2022,</strong> 2934 hd; Last week, 2317 hd; 1819 a year ago. Long-weaned yearlings &amp; load lots sold fully steady. Calves sold steady-$2 higher.Â  Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$224.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$176.10</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$178.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$154.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$147.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$77.00 - $88.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$68.00 - $76.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $67.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">751lbs @$182.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">762lbs @$181.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">797lbs @$176.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">830lbs @$181.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">832lbs @$184.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Steers</td>\n<td style=\"width: 153.531px; height: 46px;\">896lbs @$178.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">917lbs @$176.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">714lbs @$178.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">737lbs @$173.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 11, 2022 - Market Report','','inherit','closed','closed','','4772-revision-v1','','','2022-10-12 15:37:08','2022-10-12 15:37:08','',4772,'https://kingsvillelivestock.com/?p=4774',0,'revision','',0),(4775,2,'2022-10-12 15:37:09','2022-10-12 15:37:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 11, 2022,</strong> 2934 hd; Last week, 2317 hd; 1819 a year ago. Long-weaned yearlings &amp; load lots sold fully steady. Calves sold steady-$2 higher.Â  Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$224.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$176.10</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$178.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$154.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$147.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$77.00 - $88.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$68.00 - $76.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $67.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">751lbs @$182.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">762lbs @$181.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">797lbs @$176.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">830lbs @$181.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">832lbs @$184.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Steers</td>\n<td style=\"width: 153.531px; height: 46px;\">896lbs @$178.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">917lbs @$176.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">714lbs @$178.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">737lbs @$173.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 4, 2022 - Market Report','','inherit','closed','closed','','4772-revision-v1','','','2022-10-12 15:37:09','2022-10-12 15:37:09','',4772,'https://kingsvillelivestock.com/?p=4775',0,'revision','',0),(4776,2,'2022-10-12 15:37:12','2022-10-12 15:37:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 11, 2022,</strong> 2934 hd; Last week, 2317 hd; 1819 a year ago. Long-weaned yearlings &amp; load lots sold fully steady. Calves sold steady-$2 higher.Â  Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$224.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$176.10</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$178.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$154.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$124.00-$147.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$77.00 - $88.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$68.00 - $76.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $67.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">751lbs @$182.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">762lbs @$181.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">797lbs @$176.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">830lbs @$181.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">832lbs @$184.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Steers</td>\n<td style=\"width: 153.531px; height: 46px;\">896lbs @$178.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">917lbs @$176.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">714lbs @$178.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">737lbs @$173.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 11, 2022 - Market Report','','inherit','closed','closed','','4772-revision-v1','','','2022-10-12 15:37:12','2022-10-12 15:37:12','',4772,'https://kingsvillelivestock.com/?p=4776',0,'revision','',0),(4777,2,'2022-10-12 16:09:41','2022-10-12 16:09:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayOctober-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4767\">Tuesday,October 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #800080;\">Special Cow &amp; Bull Sale, Saturday, October 11th @ 11 am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Baxter Farms: </b><b>1 </b>4 yr old Blk Angus bull</li>\n<li><b>Reavis Farms: </b><b>1 </b>2 yr old Reg. Angus bull</li>\n<li><b>Thomas Farms: </b><b>1 </b>2 yr old Horned Hereford bull. Gentle, nice bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>10 </b>Blk 6-SS cows w/ 400lbs calves at side. Running back with Rwf bulls, 3N1s</li>\n<li><b>Phelps Farms: </b><b>11 </b>Blk Balancer 3-5 yr old cows w/ fall calves at side. Cows sell open, had all shots &amp; wormed/poured 30 days ago.</li>\n<li><b>Sanders Farms: </b><b>10 </b>Red-Charx 3-6 yr. cows, 2nd &amp; 3rd period <b>40</b> Blk-Bwf 3-6 yr old cows,2nd &amp; 3rd period. All cows bred to Red &amp; Blk Balancer bulls.</li>\n<li><b>Farris Farms: </b><b>12 </b>Blk 3yr. cows. Bred Blk Angus bulls &amp; bulls were turned in June 1st</li>\n<li><b>Baxter Farms: </b><b>11 </b>Blk 5-SS cows w/ 200-300lbs calves at side. <b>7 </b>Blk 5-SS cows,2nd &amp; 3rd period.</li>\n<li><b>JA-TA: </b><b>6 </b>Char 6-7 yr. old cows w/ 200lbs calves at side. All bought as Show-Me-Select heifers</li>\n<li><b>Thompson Farms: </b><b>25 </b>Blk-Red 5-SS cows w/ 15 calves at side &amp; balance 2nd &amp; 3rd period.</li>\n<li><b>R &amp; L Farms Complete Dispersal: </b><b>18 </b>Blk 3-6 yr old cows w/ 150-250lbs calves at side. Very gentle, nice set of fall calving pairs. Have had all shots &amp; wormed/poured</li>\n<li><b>Wiggins Farms: </b><b>85 </b>Blk 2-6 yr old cows w/ fall calves at side. <b>30</b> Blk 2-6 yr old cows, 3rd period. All cows bred to Blk Angus bulls. Nice set of cows, broke to feed truck.</li>\n<li><b>Beeman Farms: </b><b>30 </b>Blk Angus 4-7 yr old cows, 2nd &amp; 3rd period. Bred to Reg. Blk Angus bulls</li>\n<li><b>Crawford Farms: </b><b>25 </b>Blk cows w/ calves at side. Nice set of gentle fall-calving pairs</li>\n<li><b>Simmons Farms: </b><b>20 </b>Fancy Red Angus 3-6 yr old cows, 3rd period. Bred Red Angus bulls. Nice set of fall-calving red cows.</li>\n<li><b>Walter Farms: </b><b>50 </b>Blk-Bwf 3-6 yr old cows,2nd period. Start calving Feb. 1st for 65 days bred Baldridge Blk Angus bulls. Calves were weaned 50 days ago, nice set of spring calving cows.</li>\n<li><b>Nation Farms: </b><b>45 </b>Blk 3-7 yr old cows,3rd period. Bred to Reg. Sim-Angus bulls. Nice set of calf-raising cows, been keeping replacements back &amp; making nice cows. Good breeding program &amp; current on all shots</li>\n<li><b>Thomason Farms: </b><b>6 </b>Red Angus 4 yr old cows,3rd period. <b>7</b> Blk-Bwf 4 yr. old cows, 3rd period. Bred Blk bulls &amp; gentle set of cows.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-10-12 16:09:41','2022-10-12 16:09:41','',2209,'https://kingsvillelivestock.com/?p=4777',0,'revision','',0),(4778,2,'2022-10-12 16:36:56','2022-10-12 16:36:56','','October 22, 2022 Cow Sale','','inherit','closed','closed','','october-22-2022-cow-sale','','','2022-10-12 16:36:56','2022-10-12 16:36:56','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-22-2022-Cow-Sale.pdf',0,'attachment','application/pdf',0),(4779,2,'2022-10-12 16:37:08','2022-10-12 16:37:08','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong><span style=\"color: #000000;\">Oct. 15th @ 10:00 am<br /></span></strong><span style=\"color: #000000;\">Barnett Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-22-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4778\">October 22, 2022 Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-10-12 16:37:08','2022-10-12 16:37:08','',639,'https://kingsvillelivestock.com/?p=4779',0,'revision','',0),(4780,2,'2022-10-12 16:38:19','2022-10-12 16:38:19','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong><span style=\"color: #000000;\">Oct. 15th @ 10:00 am<br /></span></strong><span style=\"color: #000000;\">Barnett Public Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-22-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4778\">October 22, 2022 Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-10-12 16:38:19','2022-10-12 16:38:19','',1967,'https://kingsvillelivestock.com/?p=4780',0,'revision','',0),(4782,2,'2022-10-17 14:27:14','2022-10-17 14:27:14','','October 22, 2022 Cow Sale','','inherit','closed','closed','','october-22-2022-cow-sale-2','','','2022-10-17 14:27:14','2022-10-17 14:27:14','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-22-2022-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(4783,2,'2022-10-17 14:27:26','2022-10-17 14:27:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-22-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4782\">October 22, 2022 Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-10-17 14:27:26','2022-10-17 14:27:26','',639,'https://kingsvillelivestock.com/?p=4783',0,'revision','',0),(4784,2,'2022-10-17 14:28:43','2022-10-17 14:28:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-22-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4782\">October 22, 2022 Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-10-17 14:28:43','2022-10-17 14:28:43','',1967,'https://kingsvillelivestock.com/?p=4784',0,'revision','',0),(4785,2,'2022-10-17 14:29:50','2022-10-17 14:29:50','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p><a href=\"https://docs.google.com/document/d/1_SdGK6uOQVU0izEz9ArbjOm85eJrfRwFOhN1wbJWzh8/edit?usp=sharing\">Roberts Gun Info</a></p>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-10-17 14:29:50','2022-10-17 14:29:50','',1450,'https://kingsvillelivestock.com/?p=4785',0,'revision','',0),(4786,2,'2022-10-17 14:33:11','2022-10-17 14:33:11','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayOctober-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4767\">Tuesday,October 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #800080;\">Special Cow &amp; Bull Sale, Saturday, October 11th @ 11 am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Baxter Farms: </b><b>1 </b>4 yr old Blk Angus bull</li>\n<li><b>Reavis Farms: </b><b>1 </b>2 yr old Reg. Angus bull</li>\n<li><b>Thomas Farms: </b><b>1 </b>2 yr old Horned Hereford bull. Gentle, nice bull</li>\n<li><b>Jenkins Farms: </b><b>5 </b>18 month old Blk Balancer bulls, Semen &amp; Trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>10 </b>Blk 6-SS cows w/ 400lbs calves at side. Running back with Rwf bulls, 3N1s</li>\n<li><b>Phelps Farms: </b><b>11 </b>Blk Balancer 3-5 yr old cows w/ fall calves at side. Cows sell open, had all shots &amp; wormed/poured 30 days ago.</li>\n<li><b>Sanders Farms: </b><b>10 </b>Red-Charx 3-6 yr. cows, 2nd &amp; 3rd period <b>40</b> Blk-Bwf 3-6 yr old cows,2nd &amp; 3rd period. All cows bred to Red &amp; Blk Balancer bulls.</li>\n<li><b>Farris Farms: </b><b>12 </b>Blk 3yr. cows. Bred Blk Angus bulls &amp; bulls were turned in June 1st</li>\n<li><b>Baxter Farms: </b><b>11 </b>Blk 5-SS cows w/ 200-300lbs calves at side. <b>7 </b>Blk 5-SS cows,2nd &amp; 3rd period.</li>\n<li><b>JA-TA: </b><b>6 </b>Char 6-7 yr. old cows w/ 200lbs calves at side. All bought as Show-Me-Select heifers</li>\n<li><b>Thompson Farms: </b><b>25 </b>Blk-Red 5-SS cows w/ 15 calves at side &amp; balance 2nd &amp; 3rd period.</li>\n<li><b>R &amp; L Farms Complete Dispersal: </b><b>18 </b>Blk 3-6 yr old cows w/ 150-250lbs calves at side. Very gentle, nice set of fall calving pairs. Have had all shots &amp; wormed/poured</li>\n<li><b>Wiggins Farms: </b><b>85 </b>Blk 2-6 yr old cows w/ fall calves at side. <b>30</b> Blk 2-6 yr old cows, 3rd period. All cows bred to Blk Angus bulls. Nice set of cows, broke to feed truck.</li>\n<li><b>Beeman Farms: </b><b>30 </b>Blk Angus 4-7 yr old cows, 2nd &amp; 3rd period. Bred to Reg. Blk Angus bulls</li>\n<li><b>Crawford Farms: </b><b>25 </b>Blk cows w/ calves at side. Nice set of gentle fall-calving pairs</li>\n<li><b>Simmons Farms: </b><b>20 </b>Fancy Red Angus 3-6 yr old cows, 3rd period. Bred Red Angus bulls. Nice set of fall-calving red cows.</li>\n<li><b>Walter Farms: </b><b>50 </b>Blk-Bwf 3-6 yr old cows,2nd period. Start calving Feb. 1st for 65 days bred Baldridge Blk Angus bulls. Calves were weaned 50 days ago, nice set of spring calving cows.</li>\n<li><b>Nation Farms: </b><b>45 </b>Blk 3-7 yr old cows,3rd period. Bred to Reg. Sim-Angus bulls. Nice set of calf-raising cows, been keeping replacements back &amp; making nice cows. Good breeding program &amp; current on all shots</li>\n<li><b>Thomason Farms: </b><b>6 </b>Red Angus 4 yr old cows,3rd period. <b>7</b> Blk-Bwf 4 yr. old cows, 3rd period. Bred Blk bulls &amp; gentle set of cows.</li>\n<li><b>D &amp; T Farms: </b><b>35 </b>Blk Angus 3-5 yr old cows w/ 200-350lbs calves at side. Calves are ear tagged to match. Cows running back w/ Richardson Reg. Angus bulls. Gentle, nice set of pairs</li>\n<li><b>Smith Farms: </b><b>5 </b>Blk Angus 5 yr old cows w/ 200lbs Char calves at side. Gentle set of pairs, cows sell open</li>\n<li><b>Allen Farms: </b><b>15 </b>Blk 2 yr old 1050lbs bred heifer,2nd period. Bred LBWT Blk bulls. Nice set of heifers had all shots.</li>\n<li><b>2 Bar Spear Ranch Complete Dispersal: </b><b>50 </b>Mix 3-7 yr old cows, 2nd &amp; 3rd period. Bred to Mead Blk Angus bulls.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-10-17 14:33:11','2022-10-17 14:33:11','',2209,'https://kingsvillelivestock.com/?p=4786',0,'revision','',0),(4787,2,'2022-10-17 15:22:43','2022-10-17 15:22:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayOctober-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4767\">Tuesday,October 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #800080;\">Special Cow &amp; Bull Sale, Saturday, October 11th @ 11 am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Baxter Farms: </b><b>1 </b>4 yr old Blk Angus bull</li>\n<li><b>Reavis Farms: </b><b>1 </b>2 yr old Reg. Angus bull</li>\n<li><b>Thomas Farms: </b><b>1 </b>2 yr old Horned Hereford bull. Gentle, nice bull</li>\n<li><b>Jenkins Farms: </b><b>5 </b>18-month-old Blk Balancer bulls, Semen &amp; Trich tested</li>\n<li><b>3C Cattle CO.: </b><b>6 </b>18 month old Blk Angus bulls, Semen &amp; Trich tested</li>\n<li></li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>10 </b>Blk 6-SS cows w/ 400lbs calves at side. Running back with Rwf bulls, 3N1s</li>\n<li><b>Phelps Farms: </b><b>11 </b>Blk Balancer 3-5 yr old cows w/ fall calves at side. Cows sell open, had all shots &amp; wormed/poured 30 days ago.</li>\n<li><b>Sanders Farms: </b><b>10 </b>Red-Charx 3-6 yr. cows, 2nd &amp; 3rd period <b>40</b> Blk-Bwf 3-6 yr old cows,2nd &amp; 3rd period. All cows bred to Red &amp; Blk Balancer bulls.</li>\n<li><b>Farris Farms: </b><b>12 </b>Blk 3yr. cows. Bred Blk Angus bulls &amp; bulls were turned in June 1st</li>\n<li><b>Baxter Farms: </b><b>11 </b>Blk 5-SS cows w/ 200-300lbs calves at side. <b>7 </b>Blk 5-SS cows,2nd &amp; 3rd period.</li>\n<li><b>JA-TA: </b><b>6 </b>Char 6-7 yr. old cows w/ 200lbs calves at side. All bought as Show-Me-Select heifers</li>\n<li><b>Thompson Farms: </b><b>25 </b>Blk-Red 5-SS cows w/ 15 calves at side &amp; balance 2nd &amp; 3rd period.</li>\n<li><b>R &amp; L Farms Complete Dispersal: </b><b>18 </b>Blk 3-6 yr old cows w/ 150-250lbs calves at side. Very gentle, nice set of fall calving pairs. Have had all shots &amp; wormed/poured</li>\n<li><b>Wiggins Farms: </b><b>85 </b>Blk 2-6 yr old cows w/ fall calves at side. <b>30</b> Blk 2-6 yr old cows, 3rd period. All cows bred to Blk Angus bulls. Nice set of cows, broke to feed truck.</li>\n<li><b>Beeman Farms: </b><b>30 </b>Blk Angus 4-7 yr old cows, 2nd &amp; 3rd period. Bred to Reg. Blk Angus bulls</li>\n<li><b>Crawford Farms: </b><b>25 </b>Blk cows w/ calves at side. Nice set of gentle fall-calving pairs</li>\n<li><b>Simmons Farms: </b><b>20 </b>Fancy Red Angus 3-6 yr old cows, 3rd period. Bred Red Angus bulls. Nice set of fall-calving red cows.</li>\n<li><b>Walter Farms: </b><b>50 </b>Blk-Bwf 3-6 yr old cows,2nd period. Start calving Feb. 1st for 65 days bred Baldridge Blk Angus bulls. Calves were weaned 50 days ago, nice set of spring calving cows.</li>\n<li><b>Nation Farms: </b><b>45 </b>Blk 3-7 yr old cows,3rd period. Bred to Reg. Sim-Angus bulls. Nice set of calf-raising cows, been keeping replacements back &amp; making nice cows. Good breeding program &amp; current on all shots</li>\n<li><b>Thomason Farms: </b><b>6 </b>Red Angus 4 yr old cows,3rd period. <b>7</b> Blk-Bwf 4 yr. old cows, 3rd period. Bred Blk bulls &amp; gentle set of cows.</li>\n<li><b>D &amp; T Farms: </b><b>35 </b>Blk Angus 3-5 yr old cows w/ 200-350lbs calves at side. Calves are ear tagged to match. Cows running back w/ Richardson Reg. Angus bulls. Gentle, nice set of pairs</li>\n<li><b>Smith Farms: </b><b>5 </b>Blk Angus 5 yr old cows w/ 200lbs Char calves at side. Gentle set of pairs, cows sell open</li>\n<li><b>Allen Farms: </b><b>15 </b>Blk 2 yr old 1050lbs bred heifer,2nd period. Bred LBWT Blk bulls. Nice set of heifers had all shots.</li>\n<li><b>2 Bar Spear Ranch Complete Dispersal: </b><b>50 </b>Mix 3-7 yr old cows, 2nd &amp; 3rd period. Bred to Mead Blk Angus bulls.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-10-17 15:22:43','2022-10-17 15:22:43','',2209,'https://kingsvillelivestock.com/?p=4787',0,'revision','',0),(4789,2,'2022-10-17 15:23:36','2022-10-17 15:23:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayOctober-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4767\">Tuesday,October 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #800080;\">Special Cow &amp; Bull Sale, Saturday, October 11th @ 11 am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Baxter Farms: </b><b>1 </b>4 yr old Blk Angus bull</li>\n<li><b>Reavis Farms: </b><b>1 </b>2 yr old Reg. Angus bull</li>\n<li><b>Thomas Farms: </b><b>1 </b>2 yr old Horned Hereford bull. Gentle, nice bull</li>\n<li><b>Jenkins Farms: </b><b>5 </b>18-month-old Blk Balancer bulls, Semen &amp; Trich tested</li>\n<li><b>3C Cattle CO.: </b><b>6 </b>18-month-old Blk Angus bulls, Semen &amp; Trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>10 </b>Blk 6-SS cows w/ 400lbs calves at side. Running back with Rwf bulls, 3N1s</li>\n<li><b>Phelps Farms: </b><b>11 </b>Blk Balancer 3-5 yr old cows w/ fall calves at side. Cows sell open, had all shots &amp; wormed/poured 30 days ago.</li>\n<li><b>Sanders Farms: </b><b>10 </b>Red-Charx 3-6 yr. cows, 2nd &amp; 3rd period <b>40</b> Blk-Bwf 3-6 yr old cows,2nd &amp; 3rd period. All cows bred to Red &amp; Blk Balancer bulls.</li>\n<li><b>Farris Farms: </b><b>12 </b>Blk 3yr. cows. Bred Blk Angus bulls &amp; bulls were turned in June 1st</li>\n<li><b>Baxter Farms: </b><b>11 </b>Blk 5-SS cows w/ 200-300lbs calves at side. <b>7 </b>Blk 5-SS cows,2nd &amp; 3rd period.</li>\n<li><b>JA-TA: </b><b>6 </b>Char 6-7 yr. old cows w/ 200lbs calves at side. All bought as Show-Me-Select heifers</li>\n<li><b>Thompson Farms: </b><b>25 </b>Blk-Red 5-SS cows w/ 15 calves at side &amp; balance 2nd &amp; 3rd period.</li>\n<li><b>R &amp; L Farms Complete Dispersal: </b><b>18 </b>Blk 3-6 yr old cows w/ 150-250lbs calves at side. Very gentle, nice set of fall calving pairs. Have had all shots &amp; wormed/poured</li>\n<li><b>Wiggins Farms: </b><b>85 </b>Blk 2-6 yr old cows w/ fall calves at side. <b>30</b> Blk 2-6 yr old cows, 3rd period. All cows bred to Blk Angus bulls. Nice set of cows, broke to feed truck.</li>\n<li><b>Beeman Farms: </b><b>30 </b>Blk Angus 4-7 yr old cows, 2nd &amp; 3rd period. Bred to Reg. Blk Angus bulls</li>\n<li><b>Crawford Farms: </b><b>25 </b>Blk cows w/ calves at side. Nice set of gentle fall-calving pairs</li>\n<li><b>Simmons Farms: </b><b>20 </b>Fancy Red Angus 3-6 yr old cows, 3rd period. Bred Red Angus bulls. Nice set of fall-calving red cows.</li>\n<li><b>Walter Farms: </b><b>50 </b>Blk-Bwf 3-6 yr old cows,2nd period. Start calving Feb. 1st for 65 days bred Baldridge Blk Angus bulls. Calves were weaned 50 days ago, nice set of spring calving cows.</li>\n<li><b>Nation Farms: </b><b>45 </b>Blk 3-7 yr old cows,3rd period. Bred to Reg. Sim-Angus bulls. Nice set of calf-raising cows, been keeping replacements back &amp; making nice cows. Good breeding program &amp; current on all shots</li>\n<li><b>Thomason Farms: </b><b>6 </b>Red Angus 4 yr old cows,3rd period. <b>7</b> Blk-Bwf 4 yr. old cows, 3rd period. Bred Blk bulls &amp; gentle set of cows.</li>\n<li><b>D &amp; T Farms: </b><b>35 </b>Blk Angus 3-5 yr old cows w/ 200-350lbs calves at side. Calves are ear tagged to match. Cows running back w/ Richardson Reg. Angus bulls. Gentle, nice set of pairs</li>\n<li><b>Smith Farms: </b><b>5 </b>Blk Angus 5 yr old cows w/ 200lbs Char calves at side. Gentle set of pairs, cows sell open</li>\n<li><b>Allen Farms: </b><b>15 </b>Blk 2 yr old 1050lbs bred heifer,2nd period. Bred LBWT Blk bulls. Nice set of heifers had all shots.</li>\n<li><b>2 Bar Spear Ranch Complete Dispersal: </b><b>50 </b>Mix 3-7 yr old cows, 2nd &amp; 3rd period. Bred to Mead Blk Angus bulls.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-10-17 15:23:36','2022-10-17 15:23:36','',2209,'https://kingsvillelivestock.com/?p=4789',0,'revision','',0),(4790,2,'2022-10-17 15:24:24','2022-10-17 15:24:24','','October 22, 2022 Cow Sale','','inherit','closed','closed','','october-22-2022-cow-sale-3','','','2022-10-17 15:24:24','2022-10-17 15:24:24','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-22-2022-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(4791,2,'2022-10-17 15:24:34','2022-10-17 15:24:34','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-22-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4790\">October 22, 2022 Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-10-17 15:24:34','2022-10-17 15:24:34','',639,'https://kingsvillelivestock.com/?p=4791',0,'revision','',0),(4792,2,'2022-10-17 15:25:08','2022-10-17 15:25:08','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-22-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4790\">October 22, 2022 Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-10-17 15:25:08','2022-10-17 15:25:08','',1967,'https://kingsvillelivestock.com/?p=4792',0,'revision','',0),(4793,2,'2022-10-17 16:35:49','2022-10-17 16:35:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayOctober-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4767\">Tuesday,October 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #800080;\">Special Cow &amp; Bull Sale, Saturday, October 11th @ 11 am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Baxter Farms: </b><b>1 </b>4 yr old Blk Angus bull</li>\n<li><b>Reavis Farms: </b><b>1 </b>2 yr old Reg. Angus bull</li>\n<li><b>Thomas Farms: </b><b>1 </b>2 yr old Horned Hereford bull. Gentle, nice bull</li>\n<li><b>Jenkins Farms: </b><b>5 </b>18-month-old Blk Balancer bulls, Semen &amp; Trich tested</li>\n<li><b>3C Cattle CO.: </b><b>6 </b>18-month-old Blk Angus bulls, Semen &amp; Trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>10 </b>Blk 6-SS cows w/ 400lbs calves at side. Running back with Rwf bulls, 3N1s</li>\n<li><b>Phelps Farms: </b><b>11 </b>Blk Balancer 3-5 yr old cows w/ fall calves at side. Cows sell open, had all shots &amp; wormed/poured 30 days ago.</li>\n<li><b>Sanders Farms: </b><b>10 </b>Red-Charx 3-6 yr. cows, 2nd &amp; 3rd period <b>40</b> Blk-Bwf 3-6 yr old cows,2nd &amp; 3rd period. All cows bred to Red &amp; Blk Balancer bulls.</li>\n<li><b>Farris Farms: </b><b>12 </b>Blk 3yr. cows. Bred Blk Angus bulls &amp; bulls were turned in June 1st</li>\n<li><b>Baxter Farms: </b><b>11 </b>Blk 5-SS cows w/ 200-300lbs calves at side. <b>7 </b>Blk 5-SS cows,2nd &amp; 3rd period.</li>\n<li><b>JA-TA: </b><b>6 </b>Char 6-7 yr. old cows w/ 200lbs calves at side. All bought as Show-Me-Select heifers</li>\n<li><b>Thompson Farms: </b><b>25 </b>Blk-Red 5-SS cows w/ 15 calves at side &amp; balance 2nd &amp; 3rd period.</li>\n<li><b>R &amp; L Farms Complete Dispersal: </b><b>18 </b>Blk 3-6 yr old cows w/ 150-250lbs calves at side. Very gentle, nice set of fall calving pairs. Have had all shots &amp; wormed/poured</li>\n<li><b>Wiggins Farms: </b><b>85 </b>Blk 2-6 yr old cows w/ fall calves at side. <b>30</b> Blk 2-6 yr old cows, 3rd period. All cows bred to Blk Angus bulls. Nice set of cows, broke to feed truck.</li>\n<li><b>Beeman Farms: </b><b>30 </b>Blk Angus 4-7 yr old cows, 2nd &amp; 3rd period. Bred to Reg. Blk Angus bulls</li>\n<li><b>Crawford Farms: </b><b>25 </b>Blk cows w/ calves at side. Nice set of gentle fall-calving pairs</li>\n<li><b>Simmons Farms: </b><b>20 </b>Fancy Red Angus 3-6 yr old cows, 3rd period. Bred Red Angus bulls. Nice set of fall-calving red cows.</li>\n<li><b>Walter Farms: </b><b>50 </b>Blk-Bwf 3-6 yr old cows,2nd period. Start calving Feb. 1st for 65 days bred Baldridge Blk Angus bulls. Calves were weaned 50 days ago, nice set of spring calving cows.</li>\n<li><b>Nation Farms: </b><b>45 </b>Blk 3-7 yr old cows,3rd period. Bred to Reg. Sim-Angus bulls. Nice set of calf-raising cows, been keeping replacements back &amp; making nice cows. Good breeding program &amp; current on all shots</li>\n<li><b>Thomason Farms: </b><b>6 </b>Red Angus 4 yr old cows,3rd period. <b>7</b> Blk-Bwf 4 yr. old cows, 3rd period. Bred Blk bulls &amp; gentle set of cows.</li>\n<li><b>D &amp; T Farms: </b><b>35 </b>Blk Angus 3-5 yr old cows w/ 200-350lbs calves at side. Calves are ear tagged to match. Cows running back w/ Richardson Reg. Angus bulls. Gentle, nice set of pairs</li>\n<li><b>Smith Farms: </b><b>5 </b>Blk Angus 5 yr old cows w/ 200lbs Char calves at side. Gentle set of pairs, cows sell open</li>\n<li><b>Allen Farms: </b><b>15 </b>Blk 2 yr old 1050lbs bred heifer,2nd period. Bred LBWT Blk bulls. Nice set of heifers had all shots.</li>\n<li><b>2 Bar Spear Ranch Complete Dispersal: </b><b>50 </b>Mix 3-7 yr old cows, 2nd &amp; 3rd period. Bred to Mead Blk Angus bulls.</li>\n<li><b>Brown Farms: </b>Â <b>14 </b>Blk-Bwf 2 yr old 1100lbs bred heifers. Bred to LBW Angus bulls, nice set of heifers</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-10-17 16:35:49','2022-10-17 16:35:49','',2209,'https://kingsvillelivestock.com/?p=4793',0,'revision','',0),(4794,2,'2022-10-17 16:37:38','2022-10-17 16:37:38','','October 22, 2022 Cow Sale','','inherit','closed','closed','','october-22-2022-cow-sale-4','','','2022-10-17 16:37:38','2022-10-17 16:37:38','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-22-2022-Cow-Sale-3.pdf',0,'attachment','application/pdf',0),(4795,2,'2022-10-17 16:37:48','2022-10-17 16:37:48','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-22-2022-Cow-Sale-3.pdf\" rel=\"attachment wp-att-4794\">October 22, 2022 Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-10-17 16:37:48','2022-10-17 16:37:48','',639,'https://kingsvillelivestock.com/?p=4795',0,'revision','',0),(4796,2,'2022-10-17 16:38:30','2022-10-17 16:38:30','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayOctober-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4767\">Tuesday,October 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><span style=\"color: #800080;\">Special Cow &amp; Bull Sale, Saturday, October 22nd @ 11 am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Baxter Farms: </b><b>1 </b>4 yr old Blk Angus bull</li>\n<li><b>Reavis Farms: </b><b>1 </b>2 yr old Reg. Angus bull</li>\n<li><b>Thomas Farms: </b><b>1 </b>2 yr old Horned Hereford bull. Gentle, nice bull</li>\n<li><b>Jenkins Farms: </b><b>5 </b>18-month-old Blk Balancer bulls, Semen &amp; Trich tested</li>\n<li><b>3C Cattle CO.: </b><b>6 </b>18-month-old Blk Angus bulls, Semen &amp; Trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>10 </b>Blk 6-SS cows w/ 400lbs calves at side. Running back with Rwf bulls, 3N1s</li>\n<li><b>Phelps Farms: </b><b>11 </b>Blk Balancer 3-5 yr old cows w/ fall calves at side. Cows sell open, had all shots &amp; wormed/poured 30 days ago.</li>\n<li><b>Sanders Farms: </b><b>10 </b>Red-Charx 3-6 yr. cows, 2nd &amp; 3rd period <b>40</b> Blk-Bwf 3-6 yr old cows,2nd &amp; 3rd period. All cows bred to Red &amp; Blk Balancer bulls.</li>\n<li><b>Farris Farms: </b><b>12 </b>Blk 3yr. cows. Bred Blk Angus bulls &amp; bulls were turned in June 1st</li>\n<li><b>Baxter Farms: </b><b>11 </b>Blk 5-SS cows w/ 200-300lbs calves at side. <b>7 </b>Blk 5-SS cows,2nd &amp; 3rd period.</li>\n<li><b>JA-TA: </b><b>6 </b>Char 6-7 yr. old cows w/ 200lbs calves at side. All bought as Show-Me-Select heifers</li>\n<li><b>Thompson Farms: </b><b>25 </b>Blk-Red 5-SS cows w/ 15 calves at side &amp; balance 2nd &amp; 3rd period.</li>\n<li><b>R &amp; L Farms Complete Dispersal: </b><b>18 </b>Blk 3-6 yr old cows w/ 150-250lbs calves at side. Very gentle, nice set of fall calving pairs. Have had all shots &amp; wormed/poured</li>\n<li><b>Wiggins Farms: </b><b>85 </b>Blk 2-6 yr old cows w/ fall calves at side. <b>30</b> Blk 2-6 yr old cows, 3rd period. All cows bred to Blk Angus bulls. Nice set of cows, broke to feed truck.</li>\n<li><b>Beeman Farms: </b><b>30 </b>Blk Angus 4-7 yr old cows, 2nd &amp; 3rd period. Bred to Reg. Blk Angus bulls</li>\n<li><b>Crawford Farms: </b><b>25 </b>Blk cows w/ calves at side. Nice set of gentle fall-calving pairs</li>\n<li><b>Simmons Farms: </b><b>20 </b>Fancy Red Angus 3-6 yr old cows, 3rd period. Bred Red Angus bulls. Nice set of fall-calving red cows.</li>\n<li><b>Walter Farms: </b><b>50 </b>Blk-Bwf 3-6 yr old cows,2nd period. Start calving Feb. 1st for 65 days bred Baldridge Blk Angus bulls. Calves were weaned 50 days ago, nice set of spring calving cows.</li>\n<li><b>Nation Farms: </b><b>45 </b>Blk 3-7 yr old cows,3rd period. Bred to Reg. Sim-Angus bulls. Nice set of calf-raising cows, been keeping replacements back &amp; making nice cows. Good breeding program &amp; current on all shots</li>\n<li><b>Thomason Farms: </b><b>6 </b>Red Angus 4 yr old cows,3rd period. <b>7</b> Blk-Bwf 4 yr. old cows, 3rd period. Bred Blk bulls &amp; gentle set of cows.</li>\n<li><b>D &amp; T Farms: </b><b>35 </b>Blk Angus 3-5 yr old cows w/ 200-350lbs calves at side. Calves are ear tagged to match. Cows running back w/ Richardson Reg. Angus bulls. Gentle, nice set of pairs</li>\n<li><b>Smith Farms: </b><b>5 </b>Blk Angus 5 yr old cows w/ 200lbs Char calves at side. Gentle set of pairs, cows sell open</li>\n<li><b>Allen Farms: </b><b>15 </b>Blk 2 yr old 1050lbs bred heifer,2nd period. Bred LBWT Blk bulls. Nice set of heifers had all shots.</li>\n<li><b>2 Bar Spear Ranch Complete Dispersal: </b><b>50 </b>Mix 3-7 yr old cows, 2nd &amp; 3rd period. Bred to Mead Blk Angus bulls.</li>\n<li><b>Brown Farms: </b>Â <b>14 </b>Blk-Bwf 2 yr old 1100lbs bred heifers. Bred to LBW Angus bulls, nice set of heifers</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-10-17 16:38:30','2022-10-17 16:38:30','',2209,'https://kingsvillelivestock.com/?p=4796',0,'revision','',0),(4797,2,'2022-10-17 16:39:51','2022-10-17 16:39:51','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct.18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-22-2022-Cow-Sale-3.pdf\" rel=\"attachment wp-att-4794\">October 22, 2022 Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-10-17 16:39:51','2022-10-17 16:39:51','',1967,'https://kingsvillelivestock.com/?p=4797',0,'revision','',0),(4798,2,'2022-10-17 16:43:18','2022-10-17 16:43:18','','Tuesday,October 18th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayoctober-18th-feeder-cattle-consignments','','','2022-10-17 16:43:18','2022-10-17 16:43:18','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayOctober-18th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4799,2,'2022-10-17 16:43:25','2022-10-17 16:43:25','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayOctober-18th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4798\">Tuesday,October 18th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #800080;\">Special Cow &amp; Bull Sale, Saturday, October 22nd @ 11 am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Baxter Farms: </b><b>1 </b>4 yr old Blk Angus bull</li>\n<li><b>Reavis Farms: </b><b>1 </b>2 yr old Reg. Angus bull</li>\n<li><b>Thomas Farms: </b><b>1 </b>2 yr old Horned Hereford bull. Gentle, nice bull</li>\n<li><b>Jenkins Farms: </b><b>5 </b>18-month-old Blk Balancer bulls, Semen &amp; Trich tested</li>\n<li><b>3C Cattle CO.: </b><b>6 </b>18-month-old Blk Angus bulls, Semen &amp; Trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>10 </b>Blk 6-SS cows w/ 400lbs calves at side. Running back with Rwf bulls, 3N1s</li>\n<li><b>Phelps Farms: </b><b>11 </b>Blk Balancer 3-5 yr old cows w/ fall calves at side. Cows sell open, had all shots &amp; wormed/poured 30 days ago.</li>\n<li><b>Sanders Farms: </b><b>10 </b>Red-Charx 3-6 yr. cows, 2nd &amp; 3rd period <b>40</b> Blk-Bwf 3-6 yr old cows,2nd &amp; 3rd period. All cows bred to Red &amp; Blk Balancer bulls.</li>\n<li><b>Farris Farms: </b><b>12 </b>Blk 3yr. cows. Bred Blk Angus bulls &amp; bulls were turned in June 1st</li>\n<li><b>Baxter Farms: </b><b>11 </b>Blk 5-SS cows w/ 200-300lbs calves at side. <b>7 </b>Blk 5-SS cows,2nd &amp; 3rd period.</li>\n<li><b>JA-TA: </b><b>6 </b>Char 6-7 yr. old cows w/ 200lbs calves at side. All bought as Show-Me-Select heifers</li>\n<li><b>Thompson Farms: </b><b>25 </b>Blk-Red 5-SS cows w/ 15 calves at side &amp; balance 2nd &amp; 3rd period.</li>\n<li><b>R &amp; L Farms Complete Dispersal: </b><b>18 </b>Blk 3-6 yr old cows w/ 150-250lbs calves at side. Very gentle, nice set of fall calving pairs. Have had all shots &amp; wormed/poured</li>\n<li><b>Wiggins Farms: </b><b>85 </b>Blk 2-6 yr old cows w/ fall calves at side. <b>30</b> Blk 2-6 yr old cows, 3rd period. All cows bred to Blk Angus bulls. Nice set of cows, broke to feed truck.</li>\n<li><b>Beeman Farms: </b><b>30 </b>Blk Angus 4-7 yr old cows, 2nd &amp; 3rd period. Bred to Reg. Blk Angus bulls</li>\n<li><b>Crawford Farms: </b><b>25 </b>Blk cows w/ calves at side. Nice set of gentle fall-calving pairs</li>\n<li><b>Simmons Farms: </b><b>20 </b>Fancy Red Angus 3-6 yr old cows, 3rd period. Bred Red Angus bulls. Nice set of fall-calving red cows.</li>\n<li><b>Walter Farms: </b><b>50 </b>Blk-Bwf 3-6 yr old cows,2nd period. Start calving Feb. 1st for 65 days bred Baldridge Blk Angus bulls. Calves were weaned 50 days ago, nice set of spring calving cows.</li>\n<li><b>Nation Farms: </b><b>45 </b>Blk 3-7 yr old cows,3rd period. Bred to Reg. Sim-Angus bulls. Nice set of calf-raising cows, been keeping replacements back &amp; making nice cows. Good breeding program &amp; current on all shots</li>\n<li><b>Thomason Farms: </b><b>6 </b>Red Angus 4 yr old cows,3rd period. <b>7</b> Blk-Bwf 4 yr. old cows, 3rd period. Bred Blk bulls &amp; gentle set of cows.</li>\n<li><b>D &amp; T Farms: </b><b>35 </b>Blk Angus 3-5 yr old cows w/ 200-350lbs calves at side. Calves are ear tagged to match. Cows running back w/ Richardson Reg. Angus bulls. Gentle, nice set of pairs</li>\n<li><b>Smith Farms: </b><b>5 </b>Blk Angus 5 yr old cows w/ 200lbs Char calves at side. Gentle set of pairs, cows sell open</li>\n<li><b>Allen Farms: </b><b>15 </b>Blk 2 yr old 1050lbs bred heifer,2nd period. Bred LBWT Blk bulls. Nice set of heifers had all shots.</li>\n<li><b>2 Bar Spear Ranch Complete Dispersal: </b><b>50 </b>Mix 3-7 yr old cows, 2nd &amp; 3rd period. Bred to Mead Blk Angus bulls.</li>\n<li><b>Brown Farms: </b>Â <b>14 </b>Blk-Bwf 2 yr old 1100lbs bred heifers. Bred to LBW Angus bulls, nice set of heifers</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-10-17 16:43:25','2022-10-17 16:43:25','',2209,'https://kingsvillelivestock.com/?p=4799',0,'revision','',0),(4800,2,'2022-10-19 04:00:48','2022-10-19 04:00:48','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-22-2022-Cow-Sale-3.pdf\" rel=\"attachment wp-att-4794\">October 22, 2022 Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-10-19 04:00:48','2022-10-19 04:00:48','',639,'https://kingsvillelivestock.com/?p=4800',0,'revision','',0),(4801,2,'2022-10-19 04:01:28','2022-10-19 04:01:28','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-22-2022-Cow-Sale-3.pdf\" rel=\"attachment wp-att-4794\">October 22, 2022 Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-10-19 04:01:28','2022-10-19 04:01:28','',1967,'https://kingsvillelivestock.com/?p=4801',0,'revision','',0),(4802,2,'2022-10-19 14:18:15','2022-10-19 14:18:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-22-2022-Cow-Sale-3.pdf\" rel=\"attachment wp-att-4794\">October 22, 2022 Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 30th @ 10:30 am </strong><strong><br /></strong>Estate Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-10-19 14:18:15','2022-10-19 14:18:15','',639,'https://kingsvillelivestock.com/?p=4802',0,'revision','',0),(4803,2,'2022-10-19 14:34:49','2022-10-19 14:34:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 22nd @ 11 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/October-22-2022-Cow-Sale-3.pdf\" rel=\"attachment wp-att-4794\">October 22, 2022 Cow Sale</a></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 30th @ 10:30 am </strong><strong><br /></strong>Estate Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-10-19 14:34:49','2022-10-19 14:34:49','',1967,'https://kingsvillelivestock.com/?p=4803',0,'revision','',0),(4805,2,'2022-10-19 16:15:45','2022-10-19 16:15:45','','3 Person Estate - October 30th','','inherit','closed','closed','','3-person-estate-october-30th','','','2022-10-19 16:15:45','2022-10-19 16:15:45','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/10/3-Person-Estate-October-30th.pdf',0,'attachment','application/pdf',0),(4806,2,'2022-10-19 16:16:29','2022-10-19 16:16:29','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p><a href=\"https://docs.google.com/document/d/1_SdGK6uOQVU0izEz9ArbjOm85eJrfRwFOhN1wbJWzh8/edit?usp=sharing\">Roberts Gun Info</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/3-Person-Estate-October-30th.pdf\" rel=\"attachment wp-att-4805\">3 Family Estate Sunday, October 30th-Kingsville-10:30 am</a></p>\n<p><a href=\"https://photos.app.goo.gl/QqjFFdSrmqFZ37xQ6\">Oct. 30th photos</a></p>\n<p style=\"text-align: left;\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-10-19 16:16:29','2022-10-19 16:16:29','',1450,'https://kingsvillelivestock.com/?p=4806',0,'revision','',0),(4808,2,'2022-10-19 16:56:42','2022-10-19 16:56:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 18, 2022,</strong> 1832 hd; Last week, 2934 hd; 2047 a year ago. Yearling feeder cattle sold steady. New crop calves sold $2-$4 lower.Â  Slaughter cows &amp; bulls sold $2-$5 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$217.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$196.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$175.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$57.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$164.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$162.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$68.00 - $78.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$58.00 - $67.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $57.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">772lbs @$184.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">785lbs @$178.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">806lbs @$175.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">727lbs @$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">755lbs @$169.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 18, 2022 - Market Report','','publish','closed','open','','october-18-2022-market-report','','','2022-10-19 16:56:46','2022-10-19 16:56:46','',0,'https://kingsvillelivestock.com/?p=4808',0,'post','',0),(4810,2,'2022-10-19 16:56:42','2022-10-19 16:56:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 18, 2022,</strong> 1832 hd; Last week, 2934 hd; 2047 a year ago. Yearling feeder cattle sold steady. New crop calves sold $2-$4 lower.Â  Slaughter cows &amp; bulls sold $2-$5 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$217.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$196.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$175.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$57.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$164.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$162.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$68.00 - $78.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$58.00 - $67.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $57.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">772lbs @$184.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">785lbs @$178.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">806lbs @$175.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">727lbs @$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">755lbs @$169.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 18, 2022 - Market Report','','inherit','closed','closed','','4808-revision-v1','','','2022-10-19 16:56:42','2022-10-19 16:56:42','',4808,'https://kingsvillelivestock.com/?p=4810',0,'revision','',0),(4811,2,'2022-10-19 16:56:42','2022-10-19 16:56:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 18, 2022,</strong> 1832 hd; Last week, 2934 hd; 2047 a year ago. Yearling feeder cattle sold steady. New crop calves sold $2-$4 lower.Â  Slaughter cows &amp; bulls sold $2-$5 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$217.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$196.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$175.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$57.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$164.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$162.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$68.00 - $78.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$58.00 - $67.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $57.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">772lbs @$184.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">785lbs @$178.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">806lbs @$175.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">727lbs @$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">755lbs @$169.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 11, 2022 - Market Report','','inherit','closed','closed','','4808-revision-v1','','','2022-10-19 16:56:42','2022-10-19 16:56:42','',4808,'https://kingsvillelivestock.com/?p=4811',0,'revision','',0),(4813,2,'2022-10-19 16:56:46','2022-10-19 16:56:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 18, 2022,</strong> 1832 hd; Last week, 2934 hd; 2047 a year ago. Yearling feeder cattle sold steady. New crop calves sold $2-$4 lower.Â  Slaughter cows &amp; bulls sold $2-$5 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$217.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$196.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$144.00-$175.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$57.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$172.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$164.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$162.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$68.00 - $78.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$58.00 - $67.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $57.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">772lbs @$184.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">785lbs @$178.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">806lbs @$175.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">727lbs @$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">755lbs @$169.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 18, 2022 - Market Report','','inherit','closed','closed','','4808-revision-v1','','','2022-10-19 16:56:46','2022-10-19 16:56:46','',4808,'https://kingsvillelivestock.com/?p=4813',0,'revision','',0),(4814,2,'2022-10-21 20:46:19','2022-10-21 20:46:19','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/Roberts-Gun-Auction-October-29th-Warrensburg.pdf\" rel=\"attachment wp-att-4648\">Robert\'s Gun Auction Saturday, October 29th-Warrensburg-10 am</a></p>\n<p><a href=\"https://docs.google.com/document/d/1_SdGK6uOQVU0izEz9ArbjOm85eJrfRwFOhN1wbJWzh8/edit?usp=sharing\">Roberts Gun Info</a></p>\n<p><a href=\"https://photos.app.goo.gl/pjEdtYtdx4ddVpJC8\">Robert\'s Gun Photos</a>Â </p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/3-Person-Estate-October-30th.pdf\" rel=\"attachment wp-att-4805\">3 Family Estate Sunday, October 30th-Kingsville-10:30 am</a></p>\n<p><a href=\"https://photos.app.goo.gl/QqjFFdSrmqFZ37xQ6\">Oct. 30th photos</a></p>\n<p style=\"text-align: left;\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-10-21 20:46:19','2022-10-21 20:46:19','',1450,'https://kingsvillelivestock.com/?p=4814',0,'revision','',0),(4815,2,'2022-10-24 14:54:58','2022-10-24 14:54:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 30th @ 10:30 am </strong><strong><br /></strong>Estate Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-10-24 14:54:58','2022-10-24 14:54:58','',639,'https://kingsvillelivestock.com/?p=4815',0,'revision','',0),(4816,2,'2022-10-24 14:55:28','2022-10-24 14:55:28','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 25th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 30th @ 10:30 am </strong><strong><br /></strong>Estate Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-10-24 14:55:28','2022-10-24 14:55:28','',1967,'https://kingsvillelivestock.com/?p=4816',0,'revision','',0),(4817,2,'2022-10-24 14:56:00','2022-10-24 14:56:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayOctober-18th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4798\">Tuesday,October 18th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-10-24 14:56:00','2022-10-24 14:56:00','',2209,'https://kingsvillelivestock.com/?p=4817',0,'revision','',0),(4818,2,'2022-10-24 16:56:34','2022-10-24 16:56:34','','Tuesday,October 25th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayoctober-25th-feeder-cattle-consignments','','','2022-10-24 16:56:34','2022-10-24 16:56:34','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayOctober-25th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4819,2,'2022-10-24 16:57:00','2022-10-24 16:57:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayOctober-25th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4818\">Tuesday, October 25th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-10-24 16:57:00','2022-10-24 16:57:00','',2209,'https://kingsvillelivestock.com/?p=4819',0,'revision','',0),(4821,2,'2022-10-26 14:40:03','2022-10-26 14:40:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 30th @ 10:30 am </strong><strong><br /></strong>Estate Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-10-26 14:40:03','2022-10-26 14:40:03','',639,'https://kingsvillelivestock.com/?p=4821',0,'revision','',0),(4822,2,'2022-10-26 14:42:27','2022-10-26 14:42:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 30th @ 10:30 am </strong><strong><br /></strong>Estate Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-10-26 14:42:27','2022-10-26 14:42:27','',1967,'https://kingsvillelivestock.com/?p=4822',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (4823,2,'2022-10-26 16:27:15','2022-10-26 16:27:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 30th @ 10:30 am </strong><strong><br /></strong>Estate Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm <span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-10-26 16:27:15','2022-10-26 16:27:15','',639,'https://kingsvillelivestock.com/?p=4823',0,'revision','',0),(4824,2,'2022-10-26 16:27:59','2022-10-26 16:27:59','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 30th @ 10:30 am </strong><strong><br /></strong>Estate Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-10-26 16:27:59','2022-10-26 16:27:59','',1967,'https://kingsvillelivestock.com/?p=4824',0,'revision','',0),(4825,2,'2022-10-26 16:39:17','2022-10-26 16:39:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 25, 2022,</strong> 1870 hd; Last week, 1832 hd; 2158 a year ago. Yearling feeder cattle sold fully steady. New crop calves sold $2-$4 lower. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$158.00-$192.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$179.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$182.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$134.00-$144.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$139.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $87.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$63.00 - $74.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $62.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $102.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">559lbs @$192.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">808lbs @$178.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">651lbs @$182.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">684lbs @$180.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">725lbs @$175.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 25, 2022 - Market Report','','publish','closed','open','','october-25-2022-market-report','','','2022-10-26 16:39:56','2022-10-26 16:39:56','',0,'https://kingsvillelivestock.com/?p=4825',0,'post','',0),(4827,2,'2022-10-26 16:39:17','2022-10-26 16:39:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 25, 2022,</strong> 18370 hd; Last week, 1832 hd; 2158 a year ago. Yearling feeder cattle sold fully steady. New crop calves sold $2-$4 lower. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$158.00-$192.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$179.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$182.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$134.00-$144.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$139.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $87.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$63.00 - $74.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $62.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $102.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">559lbs @$192.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">808lbs @$178.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">651lbs @$182.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">684lbs @$180.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">725lbs @$175.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 25, 2022 - Market Report','','inherit','closed','closed','','4825-revision-v1','','','2022-10-26 16:39:17','2022-10-26 16:39:17','',4825,'https://kingsvillelivestock.com/?p=4827',0,'revision','',0),(4828,2,'2022-10-26 16:39:17','2022-10-26 16:39:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 25, 2022,</strong> 18370 hd; Last week, 1832 hd; 2158 a year ago. Yearling feeder cattle sold fully steady. New crop calves sold $2-$4 lower. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$158.00-$192.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$179.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$182.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$134.00-$144.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$139.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $87.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$63.00 - $74.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $62.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $102.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">559lbs @$192.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">808lbs @$178.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">651lbs @$182.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">684lbs @$180.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">725lbs @$175.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 18, 2022 - Market Report','','inherit','closed','closed','','4825-revision-v1','','','2022-10-26 16:39:17','2022-10-26 16:39:17','',4825,'https://kingsvillelivestock.com/?p=4828',0,'revision','',0),(4829,2,'2022-10-26 16:39:21','2022-10-26 16:39:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 25, 2022,</strong> 18370 hd; Last week, 1832 hd; 2158 a year ago. Yearling feeder cattle sold fully steady. New crop calves sold $2-$4 lower. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$158.00-$192.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$179.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$182.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$134.00-$144.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$139.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $87.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$63.00 - $74.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $62.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $102.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">559lbs @$192.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">808lbs @$178.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">651lbs @$182.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">684lbs @$180.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">725lbs @$175.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 25, 2022 - Market Report','','inherit','closed','closed','','4825-revision-v1','','','2022-10-26 16:39:21','2022-10-26 16:39:21','',4825,'https://kingsvillelivestock.com/?p=4829',0,'revision','',0),(4830,2,'2022-10-26 16:39:56','2022-10-26 16:39:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 25, 2022,</strong> 1870 hd; Last week, 1832 hd; 2158 a year ago. Yearling feeder cattle sold fully steady. New crop calves sold $2-$4 lower. Slaughter cows &amp; bulls sold $2-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$158.00-$192.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$179.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$160.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$182.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$134.00-$144.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$139.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $87.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$63.00 - $74.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $62.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $102.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">559lbs @$192.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">808lbs @$178.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">651lbs @$182.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">684lbs @$180.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">725lbs @$175.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 25, 2022 - Market Report','','inherit','closed','closed','','4825-revision-v1','','','2022-10-26 16:39:56','2022-10-26 16:39:56','',4825,'https://kingsvillelivestock.com/?p=4830',0,'revision','',0),(4831,2,'2022-10-26 16:46:30','2022-10-26 16:46:30','','2022 spring calving catalog','','inherit','closed','closed','','2022-spring-calving-catalog','','','2022-10-26 16:46:30','2022-10-26 16:46:30','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog.pdf',0,'attachment','application/pdf',0),(4832,2,'2022-10-26 16:48:07','2022-10-26 16:48:07','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 30th @ 10:30 am </strong><strong><br /></strong>Estate Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm <span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog.pdf\" rel=\"attachment wp-att-4831\">2022 Show-Me-Select spring calving catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-10-26 16:48:07','2022-10-26 16:48:07','',639,'https://kingsvillelivestock.com/?p=4832',0,'revision','',0),(4833,2,'2022-10-26 16:49:12','2022-10-26 16:49:12','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 30th @ 10:30 am </strong><strong><br /></strong>Estate Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog.pdf\" rel=\"attachment wp-att-4831\">2022 Show-Me-Select spring calving heifers catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-10-26 16:49:12','2022-10-26 16:49:12','',1967,'https://kingsvillelivestock.com/?p=4833',0,'revision','',0),(4834,2,'2022-10-26 17:31:53','2022-10-26 17:31:53','','2022 spring calving catalog (1)','','inherit','closed','closed','','2022-spring-calving-catalog-1','','','2022-10-26 17:31:53','2022-10-26 17:31:53','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1.pdf',0,'attachment','application/pdf',0),(4835,2,'2022-10-26 17:32:39','2022-10-26 17:32:39','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 30th @ 10:30 am </strong><strong><br /></strong>Estate Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm <span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-4834\">2022 Show-Me-Select spring calving heifers catalogÂ </a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-10-26 17:32:39','2022-10-26 17:32:39','',639,'https://kingsvillelivestock.com/?p=4835',0,'revision','',0),(4836,2,'2022-10-26 17:36:54','2022-10-26 17:36:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 30th @ 10:30 am </strong><strong><br /></strong>Estate Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm <span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-4834\">2022 Show-Me-Select spring bred heifers catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-10-26 17:36:54','2022-10-26 17:36:54','',639,'https://kingsvillelivestock.com/?p=4836',0,'revision','',0),(4837,2,'2022-10-26 17:37:38','2022-10-26 17:37:38','','2022 spring calving catalog (1)','','inherit','closed','closed','','2022-spring-calving-catalog-1-2','','','2022-10-26 17:37:38','2022-10-26 17:37:38','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1-1.pdf',0,'attachment','application/pdf',0),(4838,2,'2022-10-26 17:38:49','2022-10-26 17:38:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 29th @ 10:00 am </strong><strong><br /></strong>Robert\'s Gun Auction-For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 30th @ 10:30 am </strong><strong><br /></strong>Estate Auction-For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1-1.pdf\" rel=\"attachment wp-att-4837\">2022 Show-Me-Select spring bred heifers catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-10-26 17:38:49','2022-10-26 17:38:49','',1967,'https://kingsvillelivestock.com/?p=4838',0,'revision','',0),(4839,2,'2022-10-31 14:53:00','2022-10-31 14:53:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm <span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-4834\">2022 Show-Me-Select spring bred heifers catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-10-31 14:53:00','2022-10-31 14:53:00','',639,'https://kingsvillelivestock.com/?p=4839',0,'revision','',0),(4840,2,'2022-10-31 14:53:37','2022-10-31 14:53:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1-1.pdf\" rel=\"attachment wp-att-4837\">2022 Show-Me-Select spring bred heifers catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-10-31 14:53:37','2022-10-31 14:53:37','',1967,'https://kingsvillelivestock.com/?p=4840',0,'revision','',0),(4841,2,'2022-10-31 14:55:48','2022-10-31 14:55:48','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.18.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<h1 style=\"text-align: center;\"><span style=\"color: #ff0000;\"><strong>Check back for upcoming sales!</strong></span></h1>\n<p style=\"text-align: left;\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-10-31 14:55:48','2022-10-31 14:55:48','',1450,'https://kingsvillelivestock.com/?p=4841',0,'revision','',0),(4842,2,'2022-10-31 16:42:36','2022-10-31 16:42:36','','Tuesday,November 1st Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaynovember-1st-feeder-cattle-consignments','','','2022-10-31 16:42:36','2022-10-31 16:42:36','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayNovember-1st-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4843,2,'2022-10-31 16:42:43','2022-10-31 16:42:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayNovember-1st-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4842\">Tuesday,November 1st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-10-31 16:42:43','2022-10-31 16:42:43','',2209,'https://kingsvillelivestock.com/?p=4843',0,'revision','',0),(4844,2,'2022-11-02 04:38:09','2022-11-02 04:38:09','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm <span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-4834\">2022 Show-Me-Select spring bred heifers catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-11-02 04:38:09','2022-11-02 04:38:09','',639,'https://kingsvillelivestock.com/?p=4844',0,'revision','',0),(4845,2,'2022-11-02 04:38:47','2022-11-02 04:38:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov.8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1-1.pdf\" rel=\"attachment wp-att-4837\">2022 Show-Me-Select spring bred heifers catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-11-02 04:38:47','2022-11-02 04:38:47','',1967,'https://kingsvillelivestock.com/?p=4845',0,'revision','',0),(4846,2,'2022-11-02 15:53:22','2022-11-02 15:53:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 1, 2022,</strong> 2738 hd; Last week, 1870 hd; 2127 a year ago. Yearling steers &amp; heifers sold $4-$7 higher in spots. New crop calves sold $2-$4 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$206.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$185.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$170.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$154.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$134.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$72.00 - $86.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$63.00 - $71.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $62.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">712lbs @$206.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">766lbs @$174.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">767lbs @$184.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">775lbs @$181.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">788lbs @$187.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Steers</td>\n<td style=\"width: 153.531px; height: 46px;\">806lbs@$179.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">813lbs@$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">834lbs@$185.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">890lbs@$183.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">726lbs@$176.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 1, 2022 - Market Report','','publish','closed','open','','november-1-2022-market-report','','','2022-11-02 15:53:26','2022-11-02 15:53:26','',0,'https://kingsvillelivestock.com/?p=4846',0,'post','',0),(4848,2,'2022-11-02 15:53:22','2022-11-02 15:53:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 1, 2022,</strong> 2738 hd; Last week, 1870 hd; 2127 a year ago. Yearling steers &amp; heifers sold $4-$7 higher in spots. New crop calves sold $2-$4 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$206.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$185.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$170.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$154.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$134.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$72.00 - $86.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$63.00 - $71.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $62.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">712lbs @$206.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">766lbs @$174.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">767lbs @$184.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">775lbs @$181.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">788lbs @$187.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Steers</td>\n<td style=\"width: 153.531px; height: 46px;\">806lbs@$179.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">813lbs@$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">834lbs@$185.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">890lbs@$183.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">726lbs@$176.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 1, 2022 - Market Report','','inherit','closed','closed','','4846-revision-v1','','','2022-11-02 15:53:22','2022-11-02 15:53:22','',4846,'https://kingsvillelivestock.com/?p=4848',0,'revision','',0),(4849,2,'2022-11-02 15:53:22','2022-11-02 15:53:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 1, 2022,</strong> 2738 hd; Last week, 1870 hd; 2127 a year ago. Yearling steers &amp; heifers sold $4-$7 higher in spots. New crop calves sold $2-$4 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$206.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$185.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$170.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$154.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$134.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$72.00 - $86.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$63.00 - $71.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $62.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">712lbs @$206.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">766lbs @$174.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">767lbs @$184.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">775lbs @$181.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">788lbs @$187.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Steers</td>\n<td style=\"width: 153.531px; height: 46px;\">806lbs@$179.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">813lbs@$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">834lbs@$185.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">890lbs@$183.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">726lbs@$176.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 25, 2022 - Market Report','','inherit','closed','closed','','4846-revision-v1','','','2022-11-02 15:53:22','2022-11-02 15:53:22','',4846,'https://kingsvillelivestock.com/?p=4849',0,'revision','',0),(4850,2,'2022-11-02 15:53:26','2022-11-02 15:53:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 1, 2022,</strong> 2738 hd; Last week, 1870 hd; 2127 a year ago. Yearling steers &amp; heifers sold $4-$7 higher in spots. New crop calves sold $2-$4 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$206.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$206.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$185.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$170.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$154.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$134.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$72.00 - $86.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$63.00 - $71.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $62.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.18.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">712lbs @$206.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">766lbs @$174.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">767lbs @$184.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">775lbs @$181.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">788lbs @$187.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Steers</td>\n<td style=\"width: 153.531px; height: 46px;\">806lbs@$179.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">813lbs@$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">834lbs@$185.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">890lbs@$183.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">726lbs@$176.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 1, 2022 - Market Report','','inherit','closed','closed','','4846-revision-v1','','','2022-11-02 15:53:26','2022-11-02 15:53:26','',4846,'https://kingsvillelivestock.com/?p=4850',0,'revision','',0),(4852,2,'2022-11-07 16:45:30','2022-11-07 16:45:30','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.18.1\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/TuesdayNovember-1st-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4842\">Tuesday,November 1st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #993300;\"><strong>Special Cow &amp; Bull Sale in conjunction with Show-Me-Select bred heifers. Saturday, November 19th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Selling 170 HdÂ  of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Freeman Farms: </b><b>1 </b>3.5 yr. old Reg. Balancer bull. 25% Gelv., 75% Angus. Semen &amp; trich tested</li>\n<li><b>David Farms: </b><b>10 </b>Â 18-19-month-old Reg. Angus bulls. All bulls are gentle, have been running together &amp; are calving ease</li>\n<li><b>Miller Farms: </b><b>1 </b>3 yr. old Blk Balancer bull. Flying H GeneticsÂ </li>\n<li><b>Kay Farms: </b><b>1 </b>2.5 yr. old Red Angus bull. Semen &amp; trich tested. Can use on heifers or cows</li>\n<li><b>Thomas Polled Herefords: </b><b>8 </b>Â Purebred Polled Hereford bulls. All home-raised, AI-sired, &amp; semen &amp; trich tested Current on all shots &amp; can use on heifers or cows</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Knoles Farms: </b><b>38 </b>Blk-Bwf 3-5 yr. old cows w/ 12-15 calves at side, balance 3rd period. Bred Miller Angus bulls</li>\n<li><b>Cliff Farms: </b><b>16 </b>Blk Angus 3-5 yr old cows w/ fall calves at side.</li>\n<li><b>Schmidt Farms: </b><b>20 </b>Red Angus 5-SS yr. cows w/ 250lbs calves at side. <b>25</b> Blk-Bwf 5-SS yr old cows w/ 250lbs calves at side. Cows sell open, gentle set of pairs.</li>\n<li><b>Slage Farms: </b><b>10 </b>Bwf-Rwf 2-5 yr. cows, 2nd &amp; 3rd period. Bred Red Angus bulls</li>\n<li><b>Henderson Farms: </b><b>36 </b>Blk-Bwf 3-5 yr old cows,3rd period. Cows bred Blk Gelv. bulls. All cows are heavy bred</li>\n<li><b>Daniels Farm: </b><b>45 </b>Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Blk Angus bulls</li>\n<li><b>Loren Farms: </b><b>22 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side</li>\n<li><b>Nuelle Farms: </b><b>25 </b>Blk-Bwf 3-5 yr old cows w/ 200lbs AI sired calves at side.<b>10 </b>Fancy Red Angus cows w/ AI sired calves at side. All shots, calves had 1 round shots, gentle set of pairs</li>\n<li><b>Sullins Farms: </b><b>13 </b>Blk-BwfÂ  5-SS yr old cows w/ 400lbs calves at side. 3N1s Bred Blk Angus bulls, calves have been worked &amp; nice set of big pairs.Â  <b>37</b> Blk-Bwf 5-SS yr old cows w/ 250lbs fall calves at side. Cows sell open. All cows are gentle &amp; have an outstanding set of calves.</li>\n<li><b>Miller Farms: </b><b>10 </b>Blk 5-SS yr old cows, 2nd period</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-11-07 16:45:30','2022-11-07 16:45:30','',2209,'https://kingsvillelivestock.com/?p=4852',0,'revision','',0),(4853,2,'2022-11-07 17:18:14','2022-11-07 17:18:14','','Tuesday,November 8th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaynovember-8th-feeder-cattle-consignments','','','2022-11-07 17:18:14','2022-11-07 17:18:14','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/11/TuesdayNovember-8th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4854,2,'2022-11-07 17:18:27','2022-11-07 17:18:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/TuesdayNovember-8th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4853\">Tuesday,November 8th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993300;\"><strong>Special Cow &amp; Bull Sale in conjunction with Show-Me-Select bred heifers. Saturday, November 19th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Selling 170 HdÂ  of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Freeman Farms: </b><b>1 </b>3.5 yr. old Reg. Balancer bull. 25% Gelv., 75% Angus. Semen &amp; trich tested</li>\n<li><b>David Farms: </b><b>10 </b>Â 18-19-month-old Reg. Angus bulls. All bulls are gentle, have been running together &amp; are calving ease</li>\n<li><b>Miller Farms: </b><b>1 </b>3 yr. old Blk Balancer bull. Flying H GeneticsÂ </li>\n<li><b>Kay Farms: </b><b>1 </b>2.5 yr. old Red Angus bull. Semen &amp; trich tested. Can use on heifers or cows</li>\n<li><b>Thomas Polled Herefords: </b><b>8 </b>Â Purebred Polled Hereford bulls. All home-raised, AI-sired, &amp; semen &amp; trich tested Current on all shots &amp; can use on heifers or cows</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Knoles Farms: </b><b>38 </b>Blk-Bwf 3-5 yr. old cows w/ 12-15 calves at side, balance 3rd period. Bred Miller Angus bulls</li>\n<li><b>Cliff Farms: </b><b>16 </b>Blk Angus 3-5 yr old cows w/ fall calves at side.</li>\n<li><b>Schmidt Farms: </b><b>20 </b>Red Angus 5-SS yr. cows w/ 250lbs calves at side. <b>25</b> Blk-Bwf 5-SS yr old cows w/ 250lbs calves at side. Cows sell open, gentle set of pairs.</li>\n<li><b>Slage Farms: </b><b>10 </b>Bwf-Rwf 2-5 yr. cows, 2nd &amp; 3rd period. Bred Red Angus bulls</li>\n<li><b>Henderson Farms: </b><b>36 </b>Blk-Bwf 3-5 yr old cows,3rd period. Cows bred Blk Gelv. bulls. All cows are heavy bred</li>\n<li><b>Daniels Farm: </b><b>45 </b>Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Blk Angus bulls</li>\n<li><b>Loren Farms: </b><b>22 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side</li>\n<li><b>Nuelle Farms: </b><b>25 </b>Blk-Bwf 3-5 yr old cows w/ 200lbs AI sired calves at side.<b>10 </b>Fancy Red Angus cows w/ AI sired calves at side. All shots, calves had 1 round shots, gentle set of pairs</li>\n<li><b>Sullins Farms: </b><b>13 </b>Blk-BwfÂ  5-SS yr old cows w/ 400lbs calves at side. 3N1s Bred Blk Angus bulls, calves have been worked &amp; nice set of big pairs.Â  <b>37</b> Blk-Bwf 5-SS yr old cows w/ 250lbs fall calves at side. Cows sell open. All cows are gentle &amp; have an outstanding set of calves.</li>\n<li><b>Miller Farms: </b><b>10 </b>Blk 5-SS yr old cows, 2nd period</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-11-07 17:18:27','2022-11-07 17:18:27','',2209,'https://kingsvillelivestock.com/?p=4854',0,'revision','',0),(4855,2,'2022-11-09 15:22:56','2022-11-09 15:22:56','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm <span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-4834\">2022 Show-Me-Select spring bred heifers catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-11-09 15:22:56','2022-11-09 15:22:56','',639,'https://kingsvillelivestock.com/?p=4855',0,'revision','',0),(4856,2,'2022-11-09 15:25:32','2022-11-09 15:25:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1-1.pdf\" rel=\"attachment wp-att-4837\">2022 Show-Me-Select spring bred heifers catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-11-09 15:25:32','2022-11-09 15:25:32','',1967,'https://kingsvillelivestock.com/?p=4856',0,'revision','',0),(4857,2,'2022-11-09 17:24:03','2022-11-09 17:24:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 8, 2022,</strong> 2404 hd; Last week, 2738 hd; 2931 a year ago. Yearlings sold steady, all other classes of feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$231.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$226.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$190.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$174.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.0\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$128.00-$158.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$72.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $72.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $59.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">715lbs @$192.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">870lbs @$182.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">920lbs @$174.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">716lbs @$184.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">739lbs @$177.25</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Â </td>\n<td style=\"width: 153.516px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 8, 2022 - Market Report','','publish','closed','open','','november-8-2022-market-report','','','2022-11-09 17:24:41','2022-11-09 17:24:41','',0,'https://kingsvillelivestock.com/?p=4857',0,'post','',0),(4859,2,'2022-11-09 16:10:26','2022-11-09 16:10:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/TuesdayNovember-8th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4853\">Tuesday,November 8th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993300;\"><strong>Special Cow &amp; Bull Sale in conjunction with Show-Me-Select bred heifers. Saturday, November 19th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Selling 170 HdÂ  of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Freeman Farms: </b><b>1 </b>3.5 yr. old Reg. Balancer bull. 25% Gelv., 75% Angus. Semen &amp; trich tested</li>\n<li><b>David Farms: </b><b>10 </b>Â 18-19-month-old Reg. Angus bulls. All bulls are gentle, have been running together &amp; are calving ease</li>\n<li><b>Miller Farms: </b><b>1 </b>3 yr. old Blk Balancer bull. Flying H Genetics</li>\n<li><b>Kay Farms: </b><b>1 </b>2.5 yr. old Red Angus bull. Semen &amp; trich tested. Can use on heifers or cows</li>\n<li><b>Thomas Polled Herefords: </b><b>8 </b>Â Purebred Polled Hereford bulls. All home-raised, AI-sired, &amp; semen &amp; trich tested Current on all shots &amp; can use on heifers or cows</li>\n<li><b>Yanskey Farms: </b><b>1 </b>2.5 yr. old Blk Balancer bull. Seedstock GeneticsÂ </li>\n<li><b>Seedstock Plus: </b><b>4 </b>18-20 month homozygous Blk &amp; homozygous Polled Balancer bulls. Semen &amp; trich tested &amp;Â  BVD PI tested. These are quality bulls that sell w/ Seedstock Plus guarantee &amp; customer service.Â </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Knoles Farms: </b><b>38 </b>Blk-Bwf 3-5 yr. old cows w/ 12-15 calves at side, balance 3rd period. Bred Miller Angus bulls</li>\n<li><b>Cliff Farms: </b><b>16 </b>Blk Angus 3-5 yr old cows w/ fall calves at side.</li>\n<li><b>Schmidt Farms: </b><b>20 </b>Red Angus 5-SS yr. cows w/ 250lbs calves at side. <b>25</b> Blk-Bwf 5-SS yr old cows w/ 250lbs calves at side. Cows sell open, gentle set of pairs.</li>\n<li><b>Slage Farms: </b><b>10 </b>Bwf-Rwf 2-5 yr. cows, 2nd &amp; 3rd period. Bred Red Angus bulls</li>\n<li><b>Henderson Farms: </b><b>36 </b>Blk-Bwf 3-5 yr old cows,3rd period. Cows bred Blk Gelv. bulls. All cows are heavy bred</li>\n<li><b>Daniels Farm: </b><b>45 </b>Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Blk Angus bulls</li>\n<li><b>Loren Farms: </b><b>22 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side</li>\n<li><b>Nuelle Farms: </b><b>25 </b>Blk-Bwf 3-5 yr old cows w/ 200lbs AI sired calves at side.<b>10 </b>Fancy Red Angus cows w/ AI sired calves at side. All shots, calves had 1 round shots, gentle set of pairs</li>\n<li><b>Sullins Farms: </b><b>13 </b>Blk-BwfÂ  5-SS yr old cows w/ 400lbs calves at side. 3N1s Bred Blk Angus bulls, calves have been worked &amp; nice set of big pairs.Â  <b>37</b> Blk-Bwf 5-SS yr old cows w/ 250lbs fall calves at side. Cows sell open. All cows are gentle &amp; have an outstanding set of calves.</li>\n<li><b>Miller Farms: </b><b>10 </b>Blk 5-SS yr old cows, 2nd period. Bred Blk Balancer bull</li>\n<li><b>Bryan Cattle Co.: </b><b>5 </b>Blk 5-6 yr old cows w/ 350lbs calves at side. 3N1s</li>\n<li><b>Craig Farms: </b><b>20 </b>Fancy Red Angus 3-6 yr old cows, 2nd &amp; 3rd period. Bred Red Gelv. bulls</li>\n<li><b>Triple C Farms: </b><b>40 </b>Blk Angus 5-SS yr old cows, 2nd period. Bred Reg Angus bulls &amp; start calving end of Feb.</li>\n<li><b>Midelton Farms: </b><b>14 </b>Corrientes 5-SS yr old cows w/ 200lbs calves at side. <b>45 </b>Corrientes 5-SS yr. old cows, 2nd &amp; 3rd period. All cows running back w/ Red Angus bulls.</li>\n<li><b>Triple C Farms: </b><b>20 </b>Blk 5-SS yr old cows, 2nd &amp; 3rd period. 5 Blk 5-SS yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Johnson Farms: </b><b>30 </b>Blk 4-6 yr old cows w/ 250lbs calves at side. Good set of fall calving pairs</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-11-09 16:10:26','2022-11-09 16:10:26','',2209,'https://kingsvillelivestock.com/?p=4859',0,'revision','',0),(4860,2,'2022-11-09 16:11:18','2022-11-09 16:11:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/TuesdayNovember-8th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4853\">Tuesday,November 8th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993300;\"><strong>Special Cow &amp; Bull Sale in conjunction with Show-Me-Select bred heifers. Saturday, November 19th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Selling 170 HdÂ  of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Freeman Farms: </b><b>1 </b>3.5 yr. old Reg. Balancer bull. 25% Gelv., 75% Angus. Semen &amp; trich tested</li>\n<li><b>David Farms: </b><b>10 </b>Â 18-19-month-old Reg. Angus bulls. All bulls are gentle, have been running together &amp; are calving ease</li>\n<li><b>Miller Farms: </b><b>1 </b>3 yr. old Blk Balancer bull. Flying H Genetics</li>\n<li><b>Kay Farms: </b><b>1 </b>2.5 yr. old Red Angus bull. Semen &amp; trich tested. Can use on heifers or cows</li>\n<li><b>Thomas Polled Herefords: </b><b>8 </b>Â Purebred Polled Hereford bulls. All home-raised, AI-sired, &amp; semen &amp; trich tested Current on all shots &amp; can use on heifers or cows</li>\n<li><b>Yanskey Farms: </b><b>1 </b>2.5 yr. old Blk Balancer bull. Seedstock Genetics</li>\n<li><b>Seedstock Plus: </b><b>4 </b>18-20 month homozygous Blk &amp; homozygous Polled Balancer bulls. Semen &amp; trich tested &amp;Â  BVD PI tested. These are quality bulls that sell w/ Seedstock Plus guarantee &amp; customer service.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Knoles Farms: </b><b>38 </b>Blk-Bwf 3-5 yr. old cows w/ 12-15 calves at side, balance 3rd period. Bred Miller Angus bulls</li>\n<li><b>Cliff Farms: </b><b>16 </b>Blk Angus 3-5 yr old cows w/ fall calves at side.</li>\n<li><b>Schmidt Farms: </b><b>20 </b>Red Angus 5-SS yr. cows w/ 250lbs calves at side. <b>25</b> Blk-Bwf 5-SS yr old cows w/ 250lbs calves at side. Cows sell open, gentle set of pairs.</li>\n<li><b>Slage Farms: </b><b>10 </b>Bwf-Rwf 2-5 yr. cows, 2nd &amp; 3rd period. Bred Red Angus bulls</li>\n<li><b>Henderson Farms: </b><b>36 </b>Blk-Bwf 3-5 yr old cows,3rd period. Cows bred Blk Gelv. bulls. All cows are heavy bred</li>\n<li><b>Daniels Farm: </b><b>45 </b>Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Blk Angus bulls</li>\n<li><b>Loren Farms: </b><b>22 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side</li>\n<li><b>Nuelle Farms: </b><b>25 </b>Blk-Bwf 3-5 yr old cows w/ 200lbs AI sired calves at side.<b>10 </b>Fancy Red Angus cows w/ AI sired calves at side. All shots, calves had 1 round shots, gentle set of pairs</li>\n<li><b>Sullins Farms: </b><b>13 </b>Blk-BwfÂ  5-SS yr old cows w/ 400lbs calves at side. 3N1s Bred Blk Angus bulls, calves have been worked &amp; nice set of big pairs.Â  <b>37</b> Blk-Bwf 5-SS yr old cows w/ 250lbs fall calves at side. Cows sell open. All cows are gentle &amp; have an outstanding set of calves.</li>\n<li><b>Miller Farms: </b><b>10 </b>Blk 5-SS yr old cows, 2nd period. Bred Blk Balancer bull</li>\n<li><b>Bryan Cattle Co.: </b><b>5 </b>Blk 5-6 yr old cows w/ 350lbs calves at side. 3N1s</li>\n<li><b>Craig Farms: </b><b>20 </b>Fancy Red Angus 3-6 yr old cows, 2nd &amp; 3rd period. Bred Red Gelv. bulls</li>\n<li><b>Triple C Farms: </b><b>40 </b>Blk Angus 5-SS yr old cows, 2nd period. Bred Reg Angus bulls &amp; start calving end of Feb.</li>\n<li><b>Midelton Farms: </b><b>14 </b>Corrientes 5-SS yr old cows w/ 200lbs calves at side. <b>45 </b>Corrientes 5-SS yr. old cows, 2nd &amp; 3rd period. All cows running back w/ Red Angus bulls.</li>\n<li><b>Rich Farms: </b><b>20 </b>Blk 5-SS yr old cows, 2nd &amp; 3rd period. <strong>5</strong> Blk 5-SS yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Johnson Farms: </b><b>30 </b>Blk 4-6 yr old cows w/ 250lbs calves at side. Good set of fall calving pairs</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-11-09 16:11:18','2022-11-09 16:11:18','',2209,'https://kingsvillelivestock.com/?p=4860',0,'revision','',0),(4861,2,'2022-11-09 16:17:46','2022-11-09 16:17:46','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/TuesdayNovember-8th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4853\">Tuesday,November 8th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993300;\"><strong>Special Cow &amp; Bull Sale in conjunction with Show-Me-Select bred heifers. Saturday, November 19th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Selling 170 HdÂ  of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Freeman Farms: </b><b>1 </b>3.5 yr. old Reg. Balancer bull. 25% Gelv., 75% Angus. Semen &amp; trich tested</li>\n<li><b>David Farms: </b><b>10 </b>Â 18-19-month-old Reg. Angus bulls. All bulls are gentle, have been running together &amp; are calving ease</li>\n<li><b>Miller Farms: </b><b>1 </b>3 yr. old Blk Balancer bull. Flying H Genetics</li>\n<li><b>Kay Farms: </b><b>1 </b>2.5 yr. old Red Angus bull. Semen &amp; trich tested. Can use on heifers or cows</li>\n<li><b>Thomas Polled Herefords: </b><b>8 </b>Â Purebred Polled Hereford bulls. All home-raised, AI-sired, &amp; semen &amp; trich tested Current on all shots &amp; can use on heifers or cows</li>\n<li><b>Yanskey Farms: </b><b>1 </b>2.5 yr. old Blk Balancer bull. Seedstock Genetics</li>\n<li><b>Seedstock Plus: </b><b>4 </b>18-20 month homozygous Blk &amp; homozygous Polled Balancer bulls. Semen &amp; trich tested &amp;Â  BVD PI tested. These are quality bulls that sell w/ Seedstock Plus guarantee &amp; customer service.</li>\n<li><b>Critchfield Farms: </b><b>3 </b>13-15-month-old Reg. Angus bulls. Semen tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Knoles Farms: </b><b>38 </b>Blk-Bwf 3-5 yr. old cows w/ 12-15 calves at side, balance 3rd period. Bred Miller Angus bulls</li>\n<li><b>Cliff Farms: </b><b>16 </b>Blk Angus 3-5 yr old cows w/ fall calves at side.</li>\n<li><b>Schmidt Farms: </b><b>20 </b>Red Angus 5-SS yr. cows w/ 250lbs calves at side. <b>25</b> Blk-Bwf 5-SS yr old cows w/ 250lbs calves at side. Cows sell open, gentle set of pairs.</li>\n<li><b>Slage Farms: </b><b>10 </b>Bwf-Rwf 2-5 yr. cows, 2nd &amp; 3rd period. Bred Red Angus bulls</li>\n<li><b>Henderson Farms: </b><b>36 </b>Blk-Bwf 3-5 yr old cows,3rd period. Cows bred Blk Gelv. bulls. All cows are heavy bred</li>\n<li><b>Daniels Farm: </b><b>45 </b>Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Blk Angus bulls</li>\n<li><b>Loren Farms: </b><b>22 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side</li>\n<li><b>Nuelle Farms: </b><b>25 </b>Blk-Bwf 3-5 yr old cows w/ 200lbs AI sired calves at side.<b>10 </b>Fancy Red Angus cows w/ AI sired calves at side. All shots, calves had 1 round shots, gentle set of pairs</li>\n<li><b>Sullins Farms: </b><b>13 </b>Blk-BwfÂ  5-SS yr old cows w/ 400lbs calves at side. 3N1s Bred Blk Angus bulls, calves have been worked &amp; nice set of big pairs.Â  <b>37</b> Blk-Bwf 5-SS yr old cows w/ 250lbs fall calves at side. Cows sell open. All cows are gentle &amp; have an outstanding set of calves.</li>\n<li><b>Miller Farms: </b><b>10 </b>Blk 5-SS yr old cows, 2nd period. Bred Blk Balancer bull</li>\n<li><b>Bryan Cattle Co.: </b><b>5 </b>Blk 5-6 yr old cows w/ 350lbs calves at side. 3N1s</li>\n<li><b>Craig Farms: </b><b>20 </b>Fancy Red Angus 3-6 yr old cows, 2nd &amp; 3rd period. Bred Red Gelv. bulls</li>\n<li><b>Triple C Farms: </b><b>40 </b>Blk Angus 5-SS yr old cows, 2nd period. Bred Reg Angus bulls &amp; start calving end of Feb.</li>\n<li><b>Midelton Farms: </b><b>14 </b>Corrientes 5-SS yr old cows w/ 200lbs calves at side. <b>45 </b>Corrientes 5-SS yr. old cows, 2nd &amp; 3rd period. All cows running back w/ Red Angus bulls.</li>\n<li><b>Rich Farms: </b><b>20 </b>Blk 5-SS yr old cows, 2nd &amp; 3rd period. <strong>5</strong> Blk 5-SS yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Johnson Farms: </b><b>30 </b>Blk 4-6 yr old cows w/ 250lbs calves at side. Good set of fall calving pairs</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-11-09 16:17:46','2022-11-09 16:17:46','',2209,'https://kingsvillelivestock.com/?p=4861',0,'revision','',0),(4863,2,'2022-11-09 17:24:03','2022-11-09 17:24:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 8, 2022,</strong> 2404 hd; Last week, 2738 hd; 2931 a year ago. Yearlings sold steady, all other classes of feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$231.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$226.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$190.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$174.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$128.00-$158.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$72.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $72.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $59.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">715lbs @$192.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">870lbs @$182.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">920lbs @$174.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">716lbs @$184.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">739lbs @$177.25</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Â </td>\n<td style=\"width: 153.516px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 8, 2022 - Market Report','','inherit','closed','closed','','4857-revision-v1','','','2022-11-09 17:24:03','2022-11-09 17:24:03','',4857,'https://kingsvillelivestock.com/?p=4863',0,'revision','',0),(4864,2,'2022-11-09 17:24:41','2022-11-09 17:24:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 8, 2022,</strong> 2404 hd; Last week, 2738 hd; 2931 a year ago. Yearlings sold steady, all other classes of feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$231.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$226.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$199.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$190.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$184.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$174.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.0\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$178.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$147.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$128.00-$158.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$72.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $72.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $59.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">715lbs @$192.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">870lbs @$182.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">920lbs @$174.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">716lbs @$184.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">739lbs @$177.25</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Â </td>\n<td style=\"width: 153.516px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 8, 2022 - Market Report','','inherit','closed','closed','','4857-revision-v1','','','2022-11-09 17:24:41','2022-11-09 17:24:41','',4857,'https://kingsvillelivestock.com/?p=4864',0,'revision','',0),(4865,2,'2022-11-09 17:38:37','2022-11-09 17:38:37','','November 19, 2022 Cow Sale','','inherit','closed','closed','','november-19-2022-cow-sale','','','2022-11-09 17:38:37','2022-11-09 17:38:37','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/11/November-19-2022-Cow-Sale.pdf',0,'attachment','application/pdf',0),(4866,2,'2022-11-09 17:40:02','2022-11-09 17:40:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov.12th @ 8:30 am<span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Nov. 12th @ 5 pm <span style=\"color: #ff0000;\"> -Â  Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 amÂ <br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/November-19-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4865\">November 19, 2022 Cow Sale</a></p>\n<p><a href=\"https://drive.google.com/drive/folders/1CCXNLmrZiryamP6pHwJUadafIxedogOG?usp=share_link\">Reg. Papers </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-4834\">2022 Show-Me-Select spring bred heifers catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-11-09 17:40:02','2022-11-09 17:40:02','',639,'https://kingsvillelivestock.com/?p=4866',0,'revision','',0),(4867,2,'2022-11-14 16:38:49','2022-11-14 16:38:49','','November 19, 2022 Cow Sale','','inherit','closed','closed','','november-19-2022-cow-sale-2','','','2022-11-14 16:38:49','2022-11-14 16:38:49','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/11/November-19-2022-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(4868,2,'2022-11-14 16:39:07','2022-11-14 16:39:07','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/November-19-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4867\">November 19, 2022 Cow Sale</a></p>\n<p><a href=\"https://drive.google.com/drive/folders/1CCXNLmrZiryamP6pHwJUadafIxedogOG?usp=share_link\">Reg. Papers </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-4834\">2022 Show-Me-Select spring bred heifers catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-11-14 16:39:07','2022-11-14 16:39:07','',639,'https://kingsvillelivestock.com/?p=4868',0,'revision','',0),(4869,2,'2022-11-14 16:39:54','2022-11-14 16:39:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/November-19-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4867\">November 19, 2022 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1-1.pdf\" rel=\"attachment wp-att-4837\">2022 Show-Me-Select spring bred heifers catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-11-14 16:39:54','2022-11-14 16:39:54','',1967,'https://kingsvillelivestock.com/?p=4869',0,'revision','',0),(4870,2,'2022-11-14 16:41:09','2022-11-14 16:41:09','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/TuesdayNovember-8th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4853\">Tuesday,November 8th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993300;\"><strong>Special Cow &amp; Bull Sale in conjunction with Show-Me-Select bred heifers. Saturday, November 19th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Selling 170 HdÂ  of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Freeman Farms: </b><b>1 </b>3.5 yr. old Reg. Balancer bull. 25% Gelv., 75% Angus. Semen &amp; trich tested</li>\n<li><b>David Farms: </b><b>10 </b>Â 18-19-month-old Reg. Angus bulls. All bulls are gentle, have been running together &amp; are calving ease</li>\n<li><b>Miller Farms: </b><b>1 </b>3 yr. old Blk Balancer bull. Flying H Genetics</li>\n<li><b>Kay Farms: </b><b>1 </b>2.5 yr. old Red Angus bull. Semen &amp; trich tested. Can use on heifers or cows</li>\n<li><b>Thomas Polled Herefords: </b><b>8 </b>Â Purebred Polled Hereford bulls. All home-raised, AI-sired, &amp; semen &amp; trich tested Current on all shots &amp; can use on heifers or cows</li>\n<li><b>Yanskey Farms: </b><b>1 </b>2.5 yr. old Blk Balancer bull. Seedstock Genetics</li>\n<li><b>Seedstock Plus: </b><b>4 </b>18-20 month homozygous Blk &amp; homozygous Polled Balancer bulls. Semen &amp; trich tested &amp;Â  BVD PI tested. These are quality bulls that sell w/ Seedstock Plus guarantee &amp; customer service.</li>\n<li><b>Critchfield Farms: </b><b>3 </b>13-15-month-old Reg. Angus bulls. Semen tested</li>\n<li><b>Powers Farms: </b><b>1 </b>3 yr. old Reg Angus bull</li>\n<li><b>Hearting Farms Complete Dispersal: </b><b>2 </b>4 yr. old Blk Angus bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Knoles Farms: </b><b>38 </b>Blk-Bwf 3-5 yr. old cows w/ 12-15 calves at side, balance 3rd period. Bred Miller Angus bulls</li>\n<li><b>Cliff Farms: </b><b>16 </b>Blk Angus 3-5 yr old cows w/ fall calves at side.</li>\n<li><b>Schmidt Farms: </b><b>20 </b>Red Angus 5-SS yr. cows w/ 250lbs calves at side. <b>25</b> Blk-Bwf 5-SS yr old cows w/ 250lbs calves at side. Cows sell open, gentle set of pairs.</li>\n<li><b>Slage Farms: </b><b>10 </b>Bwf-Rwf 2-5 yr. cows, 2nd &amp; 3rd period. Bred Red Angus bulls</li>\n<li><b>Henderson Farms: </b><b>36 </b>Blk-Bwf 3-5 yr old cows,3rd period. Cows bred Blk Gelv. bulls. All cows are heavy bred</li>\n<li><b>Daniels Farm: </b><b>45 </b>Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Blk Angus bulls</li>\n<li><b>Loren Farms: </b><b>22 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side</li>\n<li><b>Nuelle Farms: </b><b>25 </b>Blk-Bwf 3-5 yr old cows w/ 200lbs AI sired calves at side.<b>10 </b>Fancy Red Angus cows w/ AI sired calves at side. All shots, calves had 1 round shots, gentle set of pairs</li>\n<li><b>Sullins Farms: </b><b>13 </b>Blk-BwfÂ  5-SS yr old cows w/ 400lbs calves at side. 3N1s Bred Blk Angus bulls, calves have been worked &amp; nice set of big pairs.Â  <b>37</b> Blk-Bwf 5-SS yr old cows w/ 250lbs fall calves at side. Cows sell open. All cows are gentle &amp; have an outstanding set of calves.</li>\n<li><b>Miller Farms: </b><b>10 </b>Blk 5-SS yr old cows, 2nd period. Bred Blk Balancer bull</li>\n<li><b>Bryan Cattle Co.: </b><b>5 </b>Blk 5-6 yr old cows w/ 350lbs calves at side. 3N1s</li>\n<li><b>Craig Farms: </b><b>20 </b>Fancy Red Angus 3-6 yr old cows, 2nd &amp; 3rd period. Bred Red Gelv. bulls</li>\n<li><b>Triple C Farms: </b><b>40 </b>Blk Angus 5-SS yr old cows, 2nd period. Bred Reg Angus bulls &amp; start calving end of Feb.</li>\n<li><b>Midelton Farms: </b><b>14 </b>Corrientes 5-SS yr old cows w/ 200lbs calves at side. <b>45 </b>Corrientes 5-SS yr. old cows, 2nd &amp; 3rd period. All cows running back w/ Red Angus bulls.</li>\n<li><b>Rich Farms: </b><b>20 </b>Blk 5-SS yr old cows, 2nd &amp; 3rd period. <strong>5</strong> Blk 5-SS yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Johnson Farms: </b><b>30 </b>Blk 4-6 yr old cows w/ 250lbs calves at side. Good set of fall calving pairs</li>\n<li><b>Powers Farms: </b><b>10 </b>Â Blk Angus 3-6 yr old cows w/ 250lbs calves at side</li>\n<li><b>Hearting Farms Complete Dispersal: </b><b>5 </b>Blk 5-SS yr old cows w/ 300lbs calves at side. <b>40</b> Blk-Bwf 5-7 yr. old cows, 2nd period. <b>30 </b>Blk-Bwf SS-BM cows, 2nd period. Cows weaned a big set of calves, solid set of spring calving cows.Â Â </li>\n<li><b>Conrow Farms: </b><b>5 </b>Polled Hereford 2 yr old heifers w/ fall calves at side. <b>4 </b>Blk Angus 2 yr old heifers w/ fall calves at side. <b>3 </b>Blk Angus 2 yr. old heifers w/ 300lbs calves at side. All heifers sell open, gentle set of pairs.Â </li>\n<li><b>Hursh Farms Complete Dispersal: </b><b>3 </b>Blk 2 yr old heifers w/ fall calves at side. <b>4 </b>Blk 4-SS yr old cows w/ fall calves at side. All cows sell open &amp; had all vaccinations. <b>4 </b>Blk 4-SS yr. old cows,3rd period.</li>\n<li><b>Chancellor Farms: </b><b>35 </b>Blk 6-SS yr. old cows,2nd period. Start calving March 1st for 45 days, bred to Reg. Angus bulls</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-11-14 16:41:09','2022-11-14 16:41:09','',2209,'https://kingsvillelivestock.com/?p=4870',0,'revision','',0),(4871,2,'2022-11-14 18:06:22','2022-11-14 18:06:22','','Tuesday,November 15th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaynovember-15th-feeder-cattle-consignments','','','2022-11-14 18:06:22','2022-11-14 18:06:22','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/11/TuesdayNovember-15th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4872,2,'2022-11-14 18:06:29','2022-11-14 18:06:29','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/TuesdayNovember-15th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4871\">Tuesday,November 15th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993300;\"><strong>Special Cow &amp; Bull Sale in conjunction with Show-Me-Select bred heifers. Saturday, November 19th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.17.6\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Selling 170 HdÂ  of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Freeman Farms: </b><b>1 </b>3.5 yr. old Reg. Balancer bull. 25% Gelv., 75% Angus. Semen &amp; trich tested</li>\n<li><b>David Farms: </b><b>10 </b>Â 18-19-month-old Reg. Angus bulls. All bulls are gentle, have been running together &amp; are calving ease</li>\n<li><b>Miller Farms: </b><b>1 </b>3 yr. old Blk Balancer bull. Flying H Genetics</li>\n<li><b>Kay Farms: </b><b>1 </b>2.5 yr. old Red Angus bull. Semen &amp; trich tested. Can use on heifers or cows</li>\n<li><b>Thomas Polled Herefords: </b><b>8 </b>Â Purebred Polled Hereford bulls. All home-raised, AI-sired, &amp; semen &amp; trich tested Current on all shots &amp; can use on heifers or cows</li>\n<li><b>Yanskey Farms: </b><b>1 </b>2.5 yr. old Blk Balancer bull. Seedstock Genetics</li>\n<li><b>Seedstock Plus: </b><b>4 </b>18-20 month homozygous Blk &amp; homozygous Polled Balancer bulls. Semen &amp; trich tested &amp;Â  BVD PI tested. These are quality bulls that sell w/ Seedstock Plus guarantee &amp; customer service.</li>\n<li><b>Critchfield Farms: </b><b>3 </b>13-15-month-old Reg. Angus bulls. Semen tested</li>\n<li><b>Powers Farms: </b><b>1 </b>3 yr. old Reg Angus bull</li>\n<li><b>Hearting Farms Complete Dispersal: </b><b>2 </b>4 yr. old Blk Angus bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Knoles Farms: </b><b>38 </b>Blk-Bwf 3-5 yr. old cows w/ 12-15 calves at side, balance 3rd period. Bred Miller Angus bulls</li>\n<li><b>Cliff Farms: </b><b>16 </b>Blk Angus 3-5 yr old cows w/ fall calves at side.</li>\n<li><b>Schmidt Farms: </b><b>20 </b>Red Angus 5-SS yr. cows w/ 250lbs calves at side. <b>25</b> Blk-Bwf 5-SS yr old cows w/ 250lbs calves at side. Cows sell open, gentle set of pairs.</li>\n<li><b>Slage Farms: </b><b>10 </b>Bwf-Rwf 2-5 yr. cows, 2nd &amp; 3rd period. Bred Red Angus bulls</li>\n<li><b>Henderson Farms: </b><b>36 </b>Blk-Bwf 3-5 yr old cows,3rd period. Cows bred Blk Gelv. bulls. All cows are heavy bred</li>\n<li><b>Daniels Farm: </b><b>45 </b>Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Blk Angus bulls</li>\n<li><b>Loren Farms: </b><b>22 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side</li>\n<li><b>Nuelle Farms: </b><b>25 </b>Blk-Bwf 3-5 yr old cows w/ 200lbs AI sired calves at side.<b>10 </b>Fancy Red Angus cows w/ AI sired calves at side. All shots, calves had 1 round shots, gentle set of pairs</li>\n<li><b>Sullins Farms: </b><b>13 </b>Blk-BwfÂ  5-SS yr old cows w/ 400lbs calves at side. 3N1s Bred Blk Angus bulls, calves have been worked &amp; nice set of big pairs.Â  <b>37</b> Blk-Bwf 5-SS yr old cows w/ 250lbs fall calves at side. Cows sell open. All cows are gentle &amp; have an outstanding set of calves.</li>\n<li><b>Miller Farms: </b><b>10 </b>Blk 5-SS yr old cows, 2nd period. Bred Blk Balancer bull</li>\n<li><b>Bryan Cattle Co.: </b><b>5 </b>Blk 5-6 yr old cows w/ 350lbs calves at side. 3N1s</li>\n<li><b>Craig Farms: </b><b>20 </b>Fancy Red Angus 3-6 yr old cows, 2nd &amp; 3rd period. Bred Red Gelv. bulls</li>\n<li><b>Triple C Farms: </b><b>40 </b>Blk Angus 5-SS yr old cows, 2nd period. Bred Reg Angus bulls &amp; start calving end of Feb.</li>\n<li><b>Midelton Farms: </b><b>14 </b>Corrientes 5-SS yr old cows w/ 200lbs calves at side. <b>45 </b>Corrientes 5-SS yr. old cows, 2nd &amp; 3rd period. All cows running back w/ Red Angus bulls.</li>\n<li><b>Rich Farms: </b><b>20 </b>Blk 5-SS yr old cows, 2nd &amp; 3rd period. <strong>5</strong> Blk 5-SS yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Johnson Farms: </b><b>30 </b>Blk 4-6 yr old cows w/ 250lbs calves at side. Good set of fall calving pairs</li>\n<li><b>Powers Farms: </b><b>10 </b>Â Blk Angus 3-6 yr old cows w/ 250lbs calves at side</li>\n<li><b>Hearting Farms Complete Dispersal: </b><b>5 </b>Blk 5-SS yr old cows w/ 300lbs calves at side. <b>40</b> Blk-Bwf 5-7 yr. old cows, 2nd period. <b>30 </b>Blk-Bwf SS-BM cows, 2nd period. Cows weaned a big set of calves, solid set of spring calving cows.Â Â </li>\n<li><b>Conrow Farms: </b><b>5 </b>Polled Hereford 2 yr old heifers w/ fall calves at side. <b>4 </b>Blk Angus 2 yr old heifers w/ fall calves at side. <b>3 </b>Blk Angus 2 yr. old heifers w/ 300lbs calves at side. All heifers sell open, gentle set of pairs.Â </li>\n<li><b>Hursh Farms Complete Dispersal: </b><b>3 </b>Blk 2 yr old heifers w/ fall calves at side. <b>4 </b>Blk 4-SS yr old cows w/ fall calves at side. All cows sell open &amp; had all vaccinations. <b>4 </b>Blk 4-SS yr. old cows,3rd period.</li>\n<li><b>Chancellor Farms: </b><b>35 </b>Blk 6-SS yr. old cows,2nd period. Start calving March 1st for 45 days, bred to Reg. Angus bulls</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-11-14 18:06:29','2022-11-14 18:06:29','',2209,'https://kingsvillelivestock.com/?p=4872',0,'revision','',0),(4874,2,'2022-11-15 18:40:38','2022-11-15 18:40:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/November-19-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4867\">November 19, 2022 Cow Sale</a></p>\n<p><a href=\"https://drive.google.com/drive/folders/1CCXNLmrZiryamP6pHwJUadafIxedogOG?usp=share_link\">Reg. Papers </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-4834\">2022 Show-Me-Select spring bred heifers catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am <span style=\"color: #ff0000;\">- Customer Appreciation Dinner 10 am-4 pm</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-11-15 18:40:38','2022-11-15 18:40:38','',639,'https://kingsvillelivestock.com/?p=4874',0,'revision','',0),(4875,2,'2022-11-15 18:41:48','2022-11-15 18:41:48','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/November-19-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4867\">November 19, 2022 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1-1.pdf\" rel=\"attachment wp-att-4837\">2022 Show-Me-Select spring bred heifers catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am <span style=\"color: #ff0000;\">- Customer Appreciation Dinner 10 am-4 pm</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-11-15 18:41:48','2022-11-15 18:41:48','',1967,'https://kingsvillelivestock.com/?p=4875',0,'revision','',0),(4876,2,'2022-11-16 05:52:32','2022-11-16 05:52:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/November-19-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4867\">November 19, 2022 Cow Sale</a></p>\n<p><a href=\"https://drive.google.com/drive/folders/1CCXNLmrZiryamP6pHwJUadafIxedogOG?usp=share_link\">Reg. Papers </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-4834\">2022 Show-Me-Select spring bred heifers catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am <span style=\"color: #ff0000;\">- Customer Appreciation Dinner 10 am-4 pm</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-11-16 05:52:32','2022-11-16 05:52:32','',639,'https://kingsvillelivestock.com/?p=4876',0,'revision','',0),(4877,2,'2022-11-16 05:53:12','2022-11-16 05:53:12','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/November-19-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4867\">November 19, 2022 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1-1.pdf\" rel=\"attachment wp-att-4837\">2022 Show-Me-Select spring bred heifers catalog</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am <span style=\"color: #ff0000;\">- Customer Appreciation Dinner 10 am-4 pm</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-11-16 05:53:12','2022-11-16 05:53:12','',1967,'https://kingsvillelivestock.com/?p=4877',0,'revision','',0),(4878,2,'2022-11-16 16:31:18','2022-11-16 16:31:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 15, 2022, </strong>2843hd; Last week, 2404 hd; 2699 a year ago. Feeder cattle 600lbs &amp; up sold steady-$4 higher. Weaned &amp; Non-Weaned calves w/ shots sold $4-$10 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$152.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$191.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$137.00-$160.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$144.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$55.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$20.00 - $54.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $112.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">619lbs @$190.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">645lbs @$198.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">741lbs @$185.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">742lbs @$184.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">770lbs @$174.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">589lbs@$187.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">657lbs@$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">698lbs@$176.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 15, 2022 - Market Report','','publish','closed','open','','november-15-2022-market-report','','','2022-11-16 16:31:21','2022-11-16 16:31:21','',0,'https://kingsvillelivestock.com/?p=4878',0,'post','',0),(4880,2,'2022-11-16 16:31:18','2022-11-16 16:31:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 15, 2022, </strong>2843hd; Last week, 2404 hd; 2699 a year ago. Feeder cattle 600lbs &amp; up sold steady-$4 higher. Weaned &amp; Non-Weaned calves w/ shots sold $4-$10 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$152.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$191.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$137.00-$160.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$144.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$55.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$20.00 - $54.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $112.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">619lbs @$190.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">645lbs @$198.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">741lbs @$185.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">742lbs @$184.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">770lbs @$174.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">589lbs@$187.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">657lbs@$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">698lbs@$176.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 15, 2022 - Market Report','','inherit','closed','closed','','4878-revision-v1','','','2022-11-16 16:31:18','2022-11-16 16:31:18','',4878,'https://kingsvillelivestock.com/?p=4880',0,'revision','',0),(4881,2,'2022-11-16 16:31:18','2022-11-16 16:31:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 15, 2022, </strong>2843hd; Last week, 2404 hd; 2699 a year ago. Feeder cattle 600lbs &amp; up sold steady-$4 higher. Weaned &amp; Non-Weaned calves w/ shots sold $4-$10 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$152.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$191.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$137.00-$160.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$144.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$55.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$20.00 - $54.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $112.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">619lbs @$190.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">645lbs @$198.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">741lbs @$185.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">742lbs @$184.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">770lbs @$174.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">589lbs@$187.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">657lbs@$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">698lbs@$176.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 8, 2022 - Market Report','','inherit','closed','closed','','4878-revision-v1','','','2022-11-16 16:31:18','2022-11-16 16:31:18','',4878,'https://kingsvillelivestock.com/?p=4881',0,'revision','',0),(4882,2,'2022-11-16 16:31:21','2022-11-16 16:31:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 15, 2022, </strong>2843hd; Last week, 2404 hd; 2699 a year ago. Feeder cattle 600lbs &amp; up sold steady-$4 higher. Weaned &amp; Non-Weaned calves w/ shots sold $4-$10 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$204.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$177.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$152.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$191.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$189.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$137.00-$160.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$144.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$55.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$20.00 - $54.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $112.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">619lbs @$190.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">645lbs @$198.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">741lbs @$185.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">742lbs @$184.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">770lbs @$174.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">589lbs@$187.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">657lbs@$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">698lbs@$176.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 15, 2022 - Market Report','','inherit','closed','closed','','4878-revision-v1','','','2022-11-16 16:31:21','2022-11-16 16:31:21','',4878,'https://kingsvillelivestock.com/?p=4882',0,'revision','',0),(4883,2,'2022-11-19 00:13:07','2022-11-19 00:13:07','','Fall 2022 SMS Kingsville Sale Order','','inherit','closed','closed','','fall-2022-sms-kingsville-sale-order','','','2022-11-19 00:13:07','2022-11-19 00:13:07','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/11/Fall-2022-SMS-Kingsville-Sale-Order.pdf',0,'attachment','application/pdf',0),(4884,2,'2022-11-19 00:13:19','2022-11-19 00:13:19','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/November-19-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4867\">November 19, 2022 Cow Sale</a></p>\n<p><a href=\"https://drive.google.com/drive/folders/1CCXNLmrZiryamP6pHwJUadafIxedogOG?usp=share_link\">Reg. Papers </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-4834\">2022 Show-Me-Select spring bred heifers catalog</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/Fall-2022-SMS-Kingsville-Sale-Order.pdf\" rel=\"attachment wp-att-4883\">Fall 2022 SMS Kingsville Sale Order</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am <span style=\"color: #ff0000;\">- Customer Appreciation Dinner 10 am-4 pm</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-11-19 00:13:19','2022-11-19 00:13:19','',639,'https://kingsvillelivestock.com/?p=4884',0,'revision','',0),(4885,2,'2022-11-19 00:14:02','2022-11-19 00:14:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/November-19-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4867\">November 19, 2022 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1-1.pdf\" rel=\"attachment wp-att-4837\">2022 Show-Me-Select spring bred heifers catalog</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/Fall-2022-SMS-Kingsville-Sale-Order.pdf\" rel=\"attachment wp-att-4883\">Fall 2022 SMS Kingsville Sale Order</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am <span style=\"color: #ff0000;\">- Customer Appreciation Dinner 10 am-4 pm</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-11-19 00:14:02','2022-11-19 00:14:02','',1967,'https://kingsvillelivestock.com/?p=4885',0,'revision','',0),(4886,2,'2022-11-19 15:19:05','2022-11-19 15:19:05','','Fall 2022 SMS Kingsville Sale Order (1)','','inherit','closed','closed','','fall-2022-sms-kingsville-sale-order-1','','','2022-11-19 15:19:05','2022-11-19 15:19:05','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/11/Fall-2022-SMS-Kingsville-Sale-Order-1.pdf',0,'attachment','application/pdf',0),(4887,2,'2022-11-19 15:19:18','2022-11-19 15:19:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/November-19-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4867\">November 19, 2022 Cow Sale</a></p>\n<p><a href=\"https://drive.google.com/drive/folders/1CCXNLmrZiryamP6pHwJUadafIxedogOG?usp=share_link\">Reg. Papers </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-4834\">2022 Show-Me-Select spring bred heifers catalog</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/Fall-2022-SMS-Kingsville-Sale-Order-1.pdf\" rel=\"attachment wp-att-4886\">Fall 2022 SMS Kingsville Sale Order </a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am <span style=\"color: #ff0000;\">- Customer Appreciation Dinner 10 am-4 pm</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-11-19 15:19:18','2022-11-19 15:19:18','',639,'https://kingsvillelivestock.com/?p=4887',0,'revision','',0),(4888,2,'2022-11-19 15:19:53','2022-11-19 15:19:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 19th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select Bred Heifers</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/November-19-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4867\">November 19, 2022 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/10/2022-spring-calving-catalog-1-1.pdf\" rel=\"attachment wp-att-4837\">2022 Show-Me-Select spring bred heifers catalog</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/Fall-2022-SMS-Kingsville-Sale-Order-1.pdf\" rel=\"attachment wp-att-4886\">Fall 2022 SMS Kingsville Sale Order (1)</a></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am <span style=\"color: #ff0000;\">- Customer Appreciation Dinner 10 am-4 pm</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-11-19 15:19:53','2022-11-19 15:19:53','',1967,'https://kingsvillelivestock.com/?p=4888',0,'revision','',0),(4889,2,'2022-11-21 15:42:50','2022-11-21 15:42:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am <span style=\"color: #ff0000;\">- Customer Appreciation Dinner 10 am-4 pm</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-11-21 15:42:50','2022-11-21 15:42:50','',639,'https://kingsvillelivestock.com/?p=4889',0,'revision','',0),(4890,2,'2022-11-21 15:43:25','2022-11-21 15:43:25','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 22nd @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am <span style=\"color: #ff0000;\">- Customer Appreciation Dinner 10 am-4 pm</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-11-21 15:43:25','2022-11-21 15:43:25','',1967,'https://kingsvillelivestock.com/?p=4890',0,'revision','',0),(4891,2,'2022-11-21 15:43:54','2022-11-21 15:43:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/TuesdayNovember-15th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4871\">Tuesday,November 15th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-11-21 15:43:54','2022-11-21 15:43:54','',2209,'https://kingsvillelivestock.com/?p=4891',0,'revision','',0),(4892,2,'2022-11-21 18:27:02','2022-11-21 18:27:02','','Tuesday,November 22nd Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaynovember-22nd-feeder-cattle-consignments','','','2022-11-21 18:27:02','2022-11-21 18:27:02','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/11/TuesdayNovember-22nd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4893,2,'2022-11-21 18:27:09','2022-11-21 18:27:09','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/TuesdayNovember-22nd-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4892\">Tuesday,November 22nd Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-11-21 18:27:09','2022-11-21 18:27:09','',2209,'https://kingsvillelivestock.com/?p=4893',0,'revision','',0),(4894,2,'2022-11-23 06:28:41','2022-11-23 06:28:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am <span style=\"color: #ff0000;\">- Customer Appreciation Dinner 10 am-4 pm</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-11-23 06:28:41','2022-11-23 06:28:41','',639,'https://kingsvillelivestock.com/?p=4894',0,'revision','',0),(4895,2,'2022-11-23 06:34:39','2022-11-23 06:34:39','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am <span style=\"color: #ff0000;\">- Customer Appreciation Dinner 10 am-4 pm</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-11-23 06:34:39','2022-11-23 06:34:39','',1967,'https://kingsvillelivestock.com/?p=4895',0,'revision','',0),(4896,2,'2022-11-23 16:30:18','2022-11-23 16:30:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 22, 2022, </strong>1993 hd; Last week, 2843 hd; 1020 a year ago. Compared to last week feeder cattle sold steady. Slaughter cows &amp; bulls sold steady-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$238.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$158.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$154.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$57.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $56.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $102.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">614lbs @$198.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">773lbs @$174.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">525lbs @$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">742lbs @$184.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 22, 2022 - Market Report','','publish','closed','open','','november-22-2022-market-report','','','2022-11-23 16:30:22','2022-11-23 16:30:22','',0,'https://kingsvillelivestock.com/?p=4896',0,'post','',0),(4898,2,'2022-11-23 16:30:18','2022-11-23 16:30:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 22, 2022, </strong>1993 hd; Last week, 2843 hd; 1020 a year ago. Compared to last week feeder cattle sold steady. Slaughter cows &amp; bulls sold steady-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$238.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$158.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$154.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$57.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $56.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $102.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">614lbs @$198.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">773lbs @$174.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">525lbs @$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">742lbs @$184.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 22, 2022 - Market Report','','inherit','closed','closed','','4896-revision-v1','','','2022-11-23 16:30:18','2022-11-23 16:30:18','',4896,'https://kingsvillelivestock.com/?p=4898',0,'revision','',0),(4899,2,'2022-11-23 16:30:18','2022-11-23 16:30:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 22, 2022, </strong>1993 hd; Last week, 2843 hd; 1020 a year ago. Compared to last week feeder cattle sold steady. Slaughter cows &amp; bulls sold steady-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$238.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$158.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$154.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$57.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $56.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $102.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">614lbs @$198.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">773lbs @$174.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">525lbs @$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">742lbs @$184.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 15, 2022 - Market Report','','inherit','closed','closed','','4896-revision-v1','','','2022-11-23 16:30:18','2022-11-23 16:30:18','',4896,'https://kingsvillelivestock.com/?p=4899',0,'revision','',0),(4900,2,'2022-11-23 16:30:22','2022-11-23 16:30:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 22, 2022, </strong>1993 hd; Last week, 2843 hd; 1020 a year ago. Compared to last week feeder cattle sold steady. Slaughter cows &amp; bulls sold steady-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$238.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$214.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$159.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$201.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$137.00-$165.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$158.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$110.00-$154.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$57.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $56.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $102.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">614lbs @$198.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">773lbs @$174.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">525lbs @$168.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">742lbs @$184.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 22, 2022 - Market Report','','inherit','closed','closed','','4896-revision-v1','','','2022-11-23 16:30:22','2022-11-23 16:30:22','',4896,'https://kingsvillelivestock.com/?p=4900',0,'revision','',0),(4902,2,'2022-11-28 17:46:02','2022-11-28 17:46:02','','Tuesday,November 29th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaynovember-29th-feeder-cattle-consignments','','','2022-11-28 17:46:02','2022-11-28 17:46:02','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/11/TuesdayNovember-29th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4903,2,'2022-11-28 17:46:09','2022-11-28 17:46:09','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/TuesdayNovember-29th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4902\">Tuesday,November 29th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-11-28 17:46:09','2022-11-28 17:46:09','',2209,'https://kingsvillelivestock.com/?p=4903',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (4905,2,'2022-11-29 15:50:37','2022-11-29 15:50:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am <span style=\"color: #ff0000;\">- Customer Appreciation Dinner 10 am-4 pm</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-11-29 15:50:37','2022-11-29 15:50:37','',639,'https://kingsvillelivestock.com/?p=4905',0,'revision','',0),(4906,2,'2022-11-29 15:51:29','2022-11-29 15:51:29','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 29th @ 10:30 am </strong><strong><br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am <span style=\"color: #ff0000;\">- Customer Appreciation Dinner 10 am-4 pm</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-11-29 15:51:29','2022-11-29 15:51:29','',1967,'https://kingsvillelivestock.com/?p=4906',0,'revision','',0),(4907,2,'2022-11-30 08:28:44','2022-11-30 08:28:44','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am <span style=\"color: #ff0000;\">- Customer Appreciation Dinner 10 am-4 pm</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-11-30 08:28:44','2022-11-30 08:28:44','',639,'https://kingsvillelivestock.com/?p=4907',0,'revision','',0),(4908,2,'2022-11-30 08:29:22','2022-11-30 08:29:22','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am <span style=\"color: #ff0000;\">- Customer Appreciation Dinner 10 am-4 pm</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-11-30 08:29:22','2022-11-30 08:29:22','',1967,'https://kingsvillelivestock.com/?p=4908',0,'revision','',0),(4909,2,'2022-11-30 17:47:23','2022-11-30 17:47:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 29, 2022, </strong>3367 hd; Last week, 1993 hd; 3051 a year ago. Compared to last week feeder cattle sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$156.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$151.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $59.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $106.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">688lbs @$196.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">753lbs @$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">824lbs @$181.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">841lbs @$190.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">565lbs@$177.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">651lbs@$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 29, 2022 - Market Report','','publish','closed','open','','november-29-2022-market-report','','','2022-11-30 17:47:27','2022-11-30 17:47:27','',0,'https://kingsvillelivestock.com/?p=4909',0,'post','',0),(4911,2,'2022-11-30 17:47:23','2022-11-30 17:47:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 29, 2022, </strong>3367 hd; Last week, 1993 hd; 3051 a year ago. Compared to last week feeder cattle sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$156.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$151.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $59.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $106.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">688lbs @$196.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">753lbs @$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">824lbs @$181.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">841lbs @$190.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">565lbs@$177.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">651lbs@$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 29, 2022 - Market Report','','inherit','closed','closed','','4909-revision-v1','','','2022-11-30 17:47:23','2022-11-30 17:47:23','',4909,'https://kingsvillelivestock.com/?p=4911',0,'revision','',0),(4912,2,'2022-11-30 17:47:24','2022-11-30 17:47:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 29, 2022, </strong>3367 hd; Last week, 1993 hd; 3051 a year ago. Compared to last week feeder cattle sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$156.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$151.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $59.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $106.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">688lbs @$196.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">753lbs @$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">824lbs @$181.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">841lbs @$190.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">565lbs@$177.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">651lbs@$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 22, 2022 - Market Report','','inherit','closed','closed','','4909-revision-v1','','','2022-11-30 17:47:24','2022-11-30 17:47:24','',4909,'https://kingsvillelivestock.com/?p=4912',0,'revision','',0),(4913,2,'2022-11-30 17:47:27','2022-11-30 17:47:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 29, 2022, </strong>3367 hd; Last week, 1993 hd; 3051 a year ago. Compared to last week feeder cattle sold steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$190.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$175.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$156.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$151.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $59.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $106.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">688lbs @$196.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">753lbs @$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">824lbs @$181.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">841lbs @$190.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">565lbs@$177.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">651lbs@$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 29, 2022 - Market Report','','inherit','closed','closed','','4909-revision-v1','','','2022-11-30 17:47:27','2022-11-30 17:47:27','',4909,'https://kingsvillelivestock.com/?p=4913',0,'revision','',0),(4914,2,'2022-11-30 18:02:35','2022-11-30 18:02:35','','Estate Auction - Dec. 7th','','inherit','closed','closed','','estate-auction-dec-7th','','','2022-11-30 18:02:35','2022-11-30 18:02:35','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/11/Estate-Auction-Dec.-7th.pdf',0,'attachment','application/pdf',0),(4915,2,'2022-11-30 18:03:06','2022-11-30 18:03:06','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.19.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/Estate-Auction-Dec.-7th.pdf\" rel=\"attachment wp-att-4914\">Estate Auction - Dec. 7th @ 5pm - Anstine Auction Barn</a></p>\n<p style=\"text-align: left;\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-11-30 18:03:06','2022-11-30 18:03:06','',1450,'https://kingsvillelivestock.com/?p=4915',0,'revision','',0),(4916,2,'2022-11-30 18:07:13','2022-11-30 18:07:13','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am <span style=\"color: #ff0000;\">- Customer Appreciation Dinner 10 am-4 pm</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.7th @ 5:00 9m<br /></strong>Estate Auction- For additional info visit the Anstine Auction tab!</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-11-30 18:07:13','2022-11-30 18:07:13','',639,'https://kingsvillelivestock.com/?p=4916',0,'revision','',0),(4917,2,'2022-11-30 18:07:55','2022-11-30 18:07:55','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 6th @ 10:30 am <span style=\"color: #ff0000;\">- Customer Appreciation Dinner 10 am-4 pm</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Dec.7th @ 5:00 9m<br /></strong>Estate Auction- For additional info visit the Anstine Auction tab!</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-11-30 18:07:55','2022-11-30 18:07:55','',1967,'https://kingsvillelivestock.com/?p=4917',0,'revision','',0),(4919,2,'2022-12-05 17:15:56','2022-12-05 17:15:56','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.1\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/11/TuesdayNovember-29th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4902\">Tuesday,November 29th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.2\" _module_preset=\"default\" column_structure=\"2_5,3_5\"][et_pb_column _builder_version=\"4.19.2\" _module_preset=\"default\" type=\"2_5\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #ff0000;\">Special Cow &amp; Bull Sale, Saturday, December 17th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.19.2\" _module_preset=\"default\" type=\"3_5\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Peck Farms: </b><b>3 1</b>4 month old Polled Hereford bulls. Been semen &amp; trich tested, gentle set of bulls.</li>\n<li><b>Pemberton Farms: </b><b>1 </b>3 yr old Blk Reg. Angus bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Ferguson Farms: </b><b>55 </b>Blk 3-5 yr old cows,2nd period. Bred to Blk Angus bulls. Had all shots</li>\n<li><b>Shackelford Farms: </b><b>41 </b>Blk Angus 7-SS yr old cows,3rd period. Bred Sim Angus bulls. Start calving Dec. 15th</li>\n<li><b>S-E Cattle Co.: </b><b>5 </b>Blk Balancer 2 yr. heifers, 1100lbs &amp; 3rd period <b>30</b> Blk-Bwf 3-6 yr old cows,3rd period. <b>9</b> Red-Charx 3-6 yr old cows,3rd period. <b>7</b> Blk-Red 3-6 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Stroh Farms Complete Dispersal: </b><b>50 </b>Blk-Red 3-6 yr. cows,2nd &amp; 3rd period. <b>35 </b>Red-Blk Balancer 7-SS yr old cows, 2nd &amp; 3rd period. <b>15</b> Blk-Red Balancer BM cows,2nd &amp; 3rd period. <b>3</b> Blk-Red Balancer 3-6 yr. old cows w/ 250lbs calves at side. All bred cows bred Seedstock Red Balancer bulls &amp; start calving Feb 1st</li>\n<li><b>B-M Farms Complete Dispersal: </b><b>6 </b>Blk-Red 5-SS cows w/ fall calves at side. <b>6Â  </b>1/2 Blk 1/2 Hol 5-SS cows w/Â  fall calves at side. <b>1</b> Red Brahman 2 yr old spring heifer been exposed. <b>30 </b>Brahmanx 5-SS cows, 2nd period. <b>6</b> blk-Red 5-SS cows, 2nd period. <b>13 </b>1/2 Angus 1/2 Hol 5-SS cows, 2nd period. All cows are bred Horned Hereford or Blk Sim Angus bull. Most cows home-raised had all shots &amp; calves been worked.</li>\n<li><b>Placke Farms Complete Dispersal: </b><b>18 </b>Blk-Bwf 8 yr old cows, 2nd period<b>. 1 </b>Bwf 2 yr. old bred heifer, 2nd period. All cows bred to Reg. Hereford bulls. Cows are gentle &amp; raise nice set of calves.</li>\n<li><b>Thorton Farm: </b><b>10 </b>Bwf 3-5 yr. old cows, 2nd &amp; 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Anderson Farms: </b><b>25 </b>Red Angus 3-6 yr old cows,2nd &amp; 3rd period. Bred Red Balancer bulls</li>\n<li><b>Allen Farms: </b><b>55 </b>Blk 3-6 yr old cows,3rd period. Bred Blk Balancer &amp; Blk Sim Angus bulls</li>\n<li><b>Wetzel Farms: </b><b>20 </b>Blk 7-SS yr old cows,3rd period. Bred Sim Angus bulls. Start calving Jan 10th.Â </li>\n<li><b>Faith Ranch Simmental LLC: </b><b>37 </b>Fancy Sim Angus 2 yr old 1100lbs bred heifers. AI bred to Sitz Incentive &amp; start calving Mar. 5th. Cleaned up w/ 3/4 Angus &amp; 1/4 Sim Angus bulls. Heifers been pelvic measured before breeding. Gentle set of heifers had all shots &amp; as good as quality as you can find.</li>\n<li><b>Davis Farms: </b><b>23 </b>Blk SS-BM cows w/ 250lbs calves at side. Have been running back w/ Angus bulls since Nov 30th. Calves have had 1 rd. shots. Pairs are selling due to lost lease on pasture</li>\n<li><b>Larsen Farms: </b><b>48 </b>Blk Angus 3-5 yr old cows w/ calves at side. 48 Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Blk Angus bulls.Â </li>\n<li><b>Triple S Farms: </b><b>17 </b>Purebred Brahman heifers 750lbs &amp; open. Hfrs are V-8 bloodlines that are home-raised, gentle &amp; had all shots. Visit our website for photos!</li>\n<li><b>Freeman Farms: </b><b>21 </b>Red Angus 4-6 yr old cows,3rd period. Bred to Red Balancer bulls. Gentle &amp; had all shots</li>\n<li><b>Woodward Farms: </b><b>45 </b>Blk 5-SS yr old cows,2nd period. Bred Sim Angus bulls &amp; start calving Mar. 1st.</li>\n<li><b>Nuelle Farms: </b><b>12 </b>Blk Angus 3-6 yr old cows w/ fall calves at side. <b>4</b> Red Angus 3-6 yr old cows w/ fall calves</li>\n<li><b>Pemberton Farms: </b><b>12 </b>Blk 2 yr old bred heifers, 3rd period. <b>2 </b>Red 2 yr old bred heifers, 3rd period. Heifers bred to Reg. Blk Angus bull.</li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-12-05 17:15:56','2022-12-05 17:15:56','',2209,'https://kingsvillelivestock.com/?p=4919',0,'revision','',0),(4920,2,'2022-12-05 18:15:07','2022-12-05 18:15:07','','Tuesday,December 6th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaydecember-6th-feeder-cattle-consignments','','','2022-12-05 18:15:07','2022-12-05 18:15:07','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/12/TuesdayDecember-6th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4921,2,'2022-12-05 18:15:22','2022-12-05 18:15:22','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/TuesdayDecember-6th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4920\">Tuesday,December 6th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\">Special Cow &amp; Bull Sale, Saturday, December 17th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Peck Farms: </b><b>3 1</b>4 month old Polled Hereford bulls. Been semen &amp; trich tested, gentle set of bulls.</li>\n<li><b>Pemberton Farms: </b><b>1 </b>3 yr old Blk Reg. Angus bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Ferguson Farms: </b><b>55 </b>Blk 3-5 yr old cows,2nd period. Bred to Blk Angus bulls. Had all shots</li>\n<li><b>Shackelford Farms: </b><b>41 </b>Blk Angus 7-SS yr old cows,3rd period. Bred Sim Angus bulls. Start calving Dec. 15th</li>\n<li><b>S-E Cattle Co.: </b><b>5 </b>Blk Balancer 2 yr. heifers, 1100lbs &amp; 3rd period <b>30</b> Blk-Bwf 3-6 yr old cows,3rd period. <b>9</b> Red-Charx 3-6 yr old cows,3rd period. <b>7</b> Blk-Red 3-6 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Stroh Farms Complete Dispersal: </b><b>50 </b>Blk-Red 3-6 yr. cows,2nd &amp; 3rd period. <b>35 </b>Red-Blk Balancer 7-SS yr old cows, 2nd &amp; 3rd period. <b>15</b> Blk-Red Balancer BM cows,2nd &amp; 3rd period. <b>3</b> Blk-Red Balancer 3-6 yr. old cows w/ 250lbs calves at side. All bred cows bred Seedstock Red Balancer bulls &amp; start calving Feb 1st</li>\n<li><b>B-M Farms Complete Dispersal: </b><b>6 </b>Blk-Red 5-SS cows w/ fall calves at side. <b>6Â  </b>1/2 Blk 1/2 Hol 5-SS cows w/Â  fall calves at side. <b>1</b> Red Brahman 2 yr old spring heifer been exposed. <b>30 </b>Brahmanx 5-SS cows, 2nd period. <b>6</b> blk-Red 5-SS cows, 2nd period. <b>13 </b>1/2 Angus 1/2 Hol 5-SS cows, 2nd period. All cows are bred Horned Hereford or Blk Sim Angus bull. Most cows home-raised had all shots &amp; calves been worked.</li>\n<li><b>Placke Farms Complete Dispersal: </b><b>18 </b>Blk-Bwf 8 yr old cows, 2nd period<b>. 1 </b>Bwf 2 yr. old bred heifer, 2nd period. All cows bred to Reg. Hereford bulls. Cows are gentle &amp; raise nice set of calves.</li>\n<li><b>Thorton Farm: </b><b>10 </b>Bwf 3-5 yr. old cows, 2nd &amp; 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Anderson Farms: </b><b>25 </b>Red Angus 3-6 yr old cows,2nd &amp; 3rd period. Bred Red Balancer bulls</li>\n<li><b>Allen Farms: </b><b>55 </b>Blk 3-6 yr old cows,3rd period. Bred Blk Balancer &amp; Blk Sim Angus bulls</li>\n<li><b>Wetzel Farms: </b><b>20 </b>Blk 7-SS yr old cows,3rd period. Bred Sim Angus bulls. Start calving Jan 10th.Â </li>\n<li><b>Faith Ranch Simmental LLC: </b><b>37 </b>Fancy Sim Angus 2 yr old 1100lbs bred heifers. AI bred to Sitz Incentive &amp; start calving Mar. 5th. Cleaned up w/ 3/4 Angus &amp; 1/4 Sim Angus bulls. Heifers been pelvic measured before breeding. Gentle set of heifers had all shots &amp; as good as quality as you can find.</li>\n<li><b>Davis Farms: </b><b>23 </b>Blk SS-BM cows w/ 250lbs calves at side. Have been running back w/ Angus bulls since Nov 30th. Calves have had 1 rd. shots. Pairs are selling due to lost lease on pasture</li>\n<li><b>Larsen Farms: </b><b>48 </b>Blk Angus 3-5 yr old cows w/ calves at side. 48 Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Blk Angus bulls.Â </li>\n<li><b>Triple S Farms: </b><b>17 </b>Purebred Brahman heifers 750lbs &amp; open. Hfrs are V-8 bloodlines that are home-raised, gentle &amp; had all shots. Visit our website for photos!</li>\n<li><b>Freeman Farms: </b><b>21 </b>Red Angus 4-6 yr old cows,3rd period. Bred to Red Balancer bulls. Gentle &amp; had all shots</li>\n<li><b>Woodward Farms: </b><b>45 </b>Blk 5-SS yr old cows,2nd period. Bred Sim Angus bulls &amp; start calving Mar. 1st.</li>\n<li><b>Nuelle Farms: </b><b>12 </b>Blk Angus 3-6 yr old cows w/ fall calves at side. <b>4</b> Red Angus 3-6 yr old cows w/ fall calves</li>\n<li><b>Pemberton Farms: </b><b>12 </b>Blk 2 yr old bred heifers, 3rd period. <b>2 </b>Red 2 yr old bred heifers, 3rd period. Heifers bred to Reg. Blk Angus bull.</li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-12-05 18:15:22','2022-12-05 18:15:22','',2209,'https://kingsvillelivestock.com/?p=4921',0,'revision','',0),(4923,2,'2022-12-06 15:42:13','2022-12-06 15:42:13','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/TuesdayDecember-6th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4920\">Tuesday,December 6th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\">Special Cow &amp; Bull Sale, Saturday, December 17th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Peck Farms: </b><b>3 1</b>4 month old Polled Hereford bulls. Been semen &amp; trich tested, gentle set of bulls.</li>\n<li><b>Pemberton Farms: </b><b>1 </b>3 yr old Blk Reg. Angus bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Ferguson Farms: </b><b>55 </b>Blk 3-5 yr old cows,2nd period. Bred to Blk Angus bulls. Had all shots</li>\n<li><b>Shackelford Farms: </b><b>41 </b>Blk Angus 7-SS yr old cows,3rd period. Bred Sim Angus bulls. Start calving Dec. 15th</li>\n<li><b>S-E Cattle Co.: </b><b>5 </b>Blk Balancer 2 yr. heifers, 1100lbs &amp; 3rd period <b>30</b> Blk-Bwf 3-6 yr old cows,3rd period. <b>9</b> Red-Charx 3-6 yr old cows,3rd period. <b>7</b> Blk-Red 3-6 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Stroh Farms Complete Dispersal: </b><b>50 </b>Blk-Red 3-6 yr. cows,2nd &amp; 3rd period. <b>35 </b>Red-Blk Balancer 7-SS yr old cows, 2nd &amp; 3rd period. <b>15</b> Blk-Red Balancer BM cows,2nd &amp; 3rd period. <b>3</b> Blk-Red Balancer 3-6 yr. old cows w/ 250lbs calves at side. All bred cows bred Seedstock Red Balancer bulls &amp; start calving Feb 1st</li>\n<li><b>B-M Farms Complete Dispersal: </b><b>6 </b>Blk-Red 5-SS cows w/ fall calves at side. <b>6Â  </b>1/2 Blk 1/2 Hol 5-SS cows w/Â  fall calves at side. <b>1</b> Red Brahman 2 yr old spring heifer been exposed. <b>30 </b>Brahmanx 5-SS cows, 2nd period. <b>6</b> blk-Red 5-SS cows, 2nd period. <b>13 </b>1/2 Angus 1/2 Hol 5-SS cows, 2nd period. All cows are bred Horned Hereford or Blk Sim Angus bull. Most cows home-raised had all shots &amp; calves been worked.</li>\n<li><b>Placke Farms Complete Dispersal: </b><b>18 </b>Blk-Bwf 8 yr old cows, 2nd period<b>. 1 </b>Bwf 2 yr. old bred heifer, 2nd period. All cows bred to Reg. Hereford bulls. Cows are gentle &amp; raise nice set of calves.</li>\n<li><b>Thorton Farm: </b><b>10 </b>Bwf 3-5 yr. old cows, 2nd &amp; 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Anderson Farms: </b><b>25 </b>Red Angus 3-6 yr old cows,2nd &amp; 3rd period. Bred Red Balancer bulls</li>\n<li><b>Allen Farms: </b><b>55 </b>Blk 3-6 yr old cows,3rd period. Bred Blk Balancer &amp; Blk Sim Angus bulls</li>\n<li><b>Wetzel Farms: </b><b>20 </b>Blk 7-SS yr old cows,3rd period. Bred Sim Angus bulls. Start calving Jan 10th.</li>\n<li><b>Faith Ranch Simmental LLC: </b><b>37 </b>Fancy Sim Angus 2 yr old 1100lbs bred heifers. AI bred to Sitz Incentive &amp; start calving Mar. 5th. Cleaned up w/ 3/4 Angus &amp; 1/4 Sim Angus bulls. Heifers been pelvic measured before breeding. Gentle set of heifers had all shots &amp; as good as quality as you can find.</li>\n<li><b>Davis Farms: </b><b>23 </b>Blk SS-BM cows w/ 250lbs calves at side. Have been running back w/ Angus bulls since Nov 30th. Calves have had 1 rd. shots. Pairs are selling due to lost lease on pasture</li>\n<li><b>Larsen Farms: </b><b>48 </b>Blk Angus 3-5 yr old cows w/ calves at side. 48 Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Blk Angus bulls.</li>\n<li><b>Triple S Farms: </b><b>17 </b>Purebred Brahman heifers 750lbs &amp; open. Hfrs are V-8 bloodlines that are home-raised, gentle &amp; had all shots. Visit our website for photos!</li>\n<li><b>Freeman Farms: </b><b>21 </b>Red Angus 4-6 yr old cows,3rd period. Bred to Red Balancer bulls. Gentle &amp; had all shots</li>\n<li><b>Woodward Farms: </b><b>45 </b>Blk 5-SS yr old cows,2nd period. Bred Sim Angus bulls &amp; start calving Mar. 1st.</li>\n<li><b>Nuelle Farms: </b><b>12 </b>Blk Angus 3-6 yr old cows w/ fall calves at side. <b>4</b> Red Angus 3-6 yr old cows w/ fall calves</li>\n<li><b>Pemberton Farms: </b><b>12 </b>Blk 2 yr old bred heifers, 3rd period. <b>2 </b>Red 2 yr old bred heifers, 3rd period. Heifers bred to Reg. Blk Angus bull.</li>\n<li><b>Schlotzhauer Farms: </b><b>35 </b>Blk-bwf 4-6 yr old cows, 3rd period. <b>10</b> Blk-Bwf 4-6 yr old cows w/ calves at side. Cows bred Blk Angus bull.</li>\n<li><b>Nolting Farms: </b><b>15 </b>Blk 3-5 yr old cows w/calves at side. 5 Mix 2-4 yr old cows w/ calves at side. Cows bred back to Blk Angus bull.</li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-12-06 15:42:13','2022-12-06 15:42:13','',2209,'https://kingsvillelivestock.com/?p=4923',0,'revision','',0),(4924,2,'2022-12-07 09:43:53','2022-12-07 09:43:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec.7th @ 5:00 9m<br /></strong>Estate Auction- For additional info visit the Anstine Auction tab!</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-12-07 09:43:53','2022-12-07 09:43:53','',639,'https://kingsvillelivestock.com/?p=4924',0,'revision','',0),(4925,2,'2022-12-07 09:44:49','2022-12-07 09:44:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec.7th @ 5:00 9m<br /></strong>Estate Auction- For additional info visit the Anstine Auction tab!</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-12-07 09:44:49','2022-12-07 09:44:49','',1967,'https://kingsvillelivestock.com/?p=4925',0,'revision','',0),(4926,2,'2022-12-07 16:02:39','2022-12-07 16:02:39','','Dec. 10th,2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','dec-10th2022-horse-tack-small-animal-sale','','','2022-12-07 16:02:39','2022-12-07 16:02:39','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-10th2022-Horse-Tack-Small-Animal-Sale.pdf',0,'attachment','application/pdf',0),(4927,2,'2022-12-07 16:03:00','2022-12-07 16:03:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec.7th @ 5:00 9m<br /></strong>Estate Auction- For additional info visit the Anstine Auction tab!</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4926\">Dec. Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-12-07 16:03:00','2022-12-07 16:03:00','',639,'https://kingsvillelivestock.com/?p=4927',0,'revision','',0),(4928,2,'2022-12-07 16:05:57','2022-12-07 16:05:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec.7th @ 5:00 9m<br /></strong>Estate Auction- For additional info visit the Anstine Auction tab!</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\"> <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4926\">Dec. Horse, Tack, &amp; Small Animal Sale</a></span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-12-07 16:05:57','2022-12-07 16:05:57','',1967,'https://kingsvillelivestock.com/?p=4928',0,'revision','',0),(4929,2,'2022-12-07 16:55:55','2022-12-07 16:55:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 6, 2022, </strong>4824 hd; Last week, 3367 hd; 3476 a year ago. Compared to last week feeder cattle sold steady-$6 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$265.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$173.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$143.00-$162.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$174.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$155.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$118.00-$140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $72.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $59.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$42.00 - $49.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">762lbs @$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">767lbs @$173.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">783lbs @$180.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">891lbs @$173.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">678lbs@$182.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">685lbs@$172.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">723lbs@$173.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">727lbs@$173.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 6, 2022 - Market Report','','publish','closed','open','','december-6-2022-market-report','','','2022-12-07 16:55:58','2022-12-07 16:55:58','',0,'https://kingsvillelivestock.com/?p=4929',0,'post','',0),(4930,2,'2022-12-07 16:55:55','2022-12-07 16:55:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 6, 2022, </strong>4824 hd; Last week, 3367 hd; 3476 a year ago. Compared to last week feeder cattle sold steady-$6 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$265.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$173.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$143.00-$162.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$174.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$155.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$118.00-$140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $72.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $59.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$42.00 - $49.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">762lbs @$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">767lbs @$173.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">783lbs @$180.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">891lbs @$173.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">678lbs@$182.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">685lbs@$172.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">723lbs@$173.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">727lbs@$173.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 6, 2022 - Market Report','','inherit','closed','closed','','4929-revision-v1','','','2022-12-07 16:55:55','2022-12-07 16:55:55','',4929,'https://kingsvillelivestock.com/?p=4930',0,'revision','',0),(4931,2,'2022-12-07 16:55:55','2022-12-07 16:55:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 6, 2022, </strong>4824 hd; Last week, 3367 hd; 3476 a year ago. Compared to last week feeder cattle sold steady-$6 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$265.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$173.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$143.00-$162.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$174.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$155.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$118.00-$140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $72.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $59.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$42.00 - $49.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">762lbs @$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">767lbs @$173.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">783lbs @$180.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">891lbs @$173.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">678lbs@$182.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">685lbs@$172.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">723lbs@$173.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">727lbs@$173.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 29, 2022 - Market Report','','inherit','closed','closed','','4929-revision-v1','','','2022-12-07 16:55:55','2022-12-07 16:55:55','',4929,'https://kingsvillelivestock.com/?p=4931',0,'revision','',0),(4932,2,'2022-12-07 16:55:58','2022-12-07 16:55:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 6, 2022, </strong>4824 hd; Last week, 3367 hd; 3476 a year ago. Compared to last week feeder cattle sold steady-$6 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$265.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$209.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$173.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$143.00-$162.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$174.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$155.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$118.00-$140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $72.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$50.00 - $59.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$42.00 - $49.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $105.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">762lbs @$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">767lbs @$173.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">783lbs @$180.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">891lbs @$173.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">678lbs@$182.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">685lbs@$172.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">723lbs@$173.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">727lbs@$173.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 6, 2022 - Market Report','','inherit','closed','closed','','4929-revision-v1','','','2022-12-07 16:55:58','2022-12-07 16:55:58','',4929,'https://kingsvillelivestock.com/?p=4932',0,'revision','',0),(4933,2,'2022-12-07 17:12:11','2022-12-07 17:12:11','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec.7th @ 5:00 9m<br /></strong>Estate Auction- For additional info visit the Anstine Auction tab!</p>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4926\">Dec. Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><a href=\"https://drive.google.com/drive/folders/1OG-R5uP4BTCl0zzhHxpdIBlbQ8XkVVYy?usp=share_link\">Small Animal photos</a></p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-12-07 17:12:11','2022-12-07 17:12:11','',639,'https://kingsvillelivestock.com/?p=4933',0,'revision','',0),(4934,2,'2022-12-07 17:32:01','2022-12-07 17:32:01','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/TuesdayDecember-6th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4920\">Tuesday,December 6th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\">Special Cow &amp; Bull Sale, Saturday, December 17th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Peck Farms: </b><b>3 1</b>4 month old Polled Hereford bulls. Been semen &amp; trich tested, gentle set of bulls.</li>\n<li><b>Pemberton Farms: </b><b>1 </b>3 yr old Blk Reg. Angus bull</li>\n<li><b>Wombles Farms: </b><b>3 </b>2 yr old Blk Sim Angus bulls sired by PayloadÂ </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Ferguson Farms: </b><b>55 </b>Blk 3-5 yr old cows,2nd period. Bred to Blk Angus bulls. Had all shots</li>\n<li><b>Shackelford Farms: </b><b>41 </b>Blk Angus 7-SS yr old cows,3rd period. Bred Sim Angus bulls. Start calving Dec. 15th</li>\n<li><b>S-E Cattle Co.: </b><b>5 </b>Blk Balancer 2 yr. heifers, 1100lbs &amp; 3rd period <b>30</b> Blk-Bwf 3-6 yr old cows,3rd period. <b>9</b> Red-Charx 3-6 yr old cows,3rd period. <b>7</b> Blk-Red 3-6 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Stroh Farms Complete Dispersal: </b><b>50 </b>Blk-Red 3-6 yr. cows,2nd &amp; 3rd period. <b>35 </b>Red-Blk Balancer 7-SS yr old cows, 2nd &amp; 3rd period. <b>15</b> Blk-Red Balancer BM cows,2nd &amp; 3rd period. <b>3</b> Blk-Red Balancer 3-6 yr. old cows w/ 250lbs calves at side. All bred cows bred Seedstock Red Balancer bulls &amp; start calving Feb 1st</li>\n<li><b>B-M Farms Complete Dispersal: </b><b>6 </b>Blk-Red 5-SS cows w/ fall calves at side. <b>6Â  </b>1/2 Blk 1/2 Hol 5-SS cows w/Â  fall calves at side. <b>1</b> Red Brahman 2 yr old spring heifer been exposed. <b>30 </b>Brahmanx 5-SS cows, 2nd period. <b>6</b> blk-Red 5-SS cows, 2nd period. <b>13 </b>1/2 Angus 1/2 Hol 5-SS cows, 2nd period. All cows are bred Horned Hereford or Blk Sim Angus bull. Most cows home-raised had all shots &amp; calves been worked.</li>\n<li><b>Placke Farms Complete Dispersal: </b><b>18 </b>Blk-Bwf 8 yr old cows, 2nd period<b>. 1 </b>Bwf 2 yr. old bred heifer, 2nd period. All cows bred to Reg. Hereford bulls. Cows are gentle &amp; raise nice set of calves.</li>\n<li><b>Thorton Farm: </b><b>10 </b>Bwf 3-5 yr. old cows, 2nd &amp; 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Anderson Farms: </b><b>25 </b>Red Angus 3-6 yr old cows,2nd &amp; 3rd period. Bred Red Balancer bulls</li>\n<li><b>Allen Farms: </b><b>55 </b>Blk 3-6 yr old cows,3rd period. Bred Blk Balancer &amp; Blk Sim Angus bulls</li>\n<li><b>Wetzel Farms: </b><b>20 </b>Blk 7-SS yr old cows,3rd period. Bred Sim Angus bulls. Start calving Jan 10th.</li>\n<li><b>Faith Ranch Simmental LLC: </b><b>37 </b>Fancy Sim Angus 2 yr old 1100lbs bred heifers. AI bred to Sitz Incentive &amp; start calving Mar. 5th. Cleaned up w/ 3/4 Angus &amp; 1/4 Sim Angus bulls. Heifers been pelvic measured before breeding. Gentle set of heifers had all shots &amp; as good as quality as you can find.</li>\n<li><b>Davis Farms: </b><b>23 </b>Blk SS-BM cows w/ 250lbs calves at side. Have been running back w/ Angus bulls since Nov 30th. Calves have had 1 rd. shots. Pairs are selling due to lost lease on pasture</li>\n<li><b>Larsen Farms: </b><b>48 </b>Blk Angus 3-5 yr old cows w/ calves at side. 48 Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Blk Angus bulls.</li>\n<li><b>Triple S Farms: </b><b>17 </b>Purebred Brahman heifers 750lbs &amp; open. Hfrs are V-8 bloodlines that are home-raised, gentle &amp; had all shots. Visit our website for photos!</li>\n<li><b>Freeman Farms: </b><b>21 </b>Red Angus 4-6 yr old cows,3rd period. Bred to Red Balancer bulls. Gentle &amp; had all shots</li>\n<li><b>Woodward Farms: </b><b>45 </b>Blk 5-SS yr old cows,2nd period. Bred Sim Angus bulls &amp; start calving Mar. 1st.</li>\n<li><b>Nuelle Farms: </b><b>12 </b>Blk Angus 3-6 yr old cows w/ fall calves at side. <b>4</b> Red Angus 3-6 yr old cows w/ fall calves</li>\n<li><b>Pemberton Farms: </b><b>12 </b>Blk 2 yr old bred heifers, 3rd period. <b>2 </b>Red 2 yr old bred heifers, 3rd period. Heifers bred to Reg. Blk Angus bull.</li>\n<li><b>Schlotzhauer Farms: </b><b>35 </b>Blk-bwf 4-6 yr old cows, 3rd period. <b>10</b> Blk-Bwf 4-6 yr old cows w/ calves at side. Cows bred Blk Angus bull.</li>\n<li><b>Nolting Farms: </b><b>15 </b>Blk 3-5 yr old cows w/calves at side. 5 Mix 2-4 yr old cows w/ calves at side. Cows bred back to Blk Angus bull.</li>\n<li><b>Fisher Farms: </b><b>14 </b>Blk-Red 2 yr old bred heifers. Start calving Jan. 20th. Bred LBWT Angus or Red Angus bullsÂ </li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-12-07 17:32:01','2022-12-07 17:32:01','',2209,'https://kingsvillelivestock.com/?p=4934',0,'revision','',0),(4935,2,'2022-12-10 16:36:25','2022-12-10 16:36:25','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4926\">Dec. Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><a href=\"https://drive.google.com/drive/folders/1OG-R5uP4BTCl0zzhHxpdIBlbQ8XkVVYy?usp=share_link\">Small Animal photos</a></p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-12-10 16:36:25','2022-12-10 16:36:25','',639,'https://kingsvillelivestock.com/?p=4935',0,'revision','',0),(4936,2,'2022-12-10 16:37:38','2022-12-10 16:37:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\"> <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4926\">Dec. Horse, Tack, &amp; Small Animal Sale</a></span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-12-10 16:37:38','2022-12-10 16:37:38','',1967,'https://kingsvillelivestock.com/?p=4936',0,'revision','',0),(4937,2,'2022-12-10 16:38:35','2022-12-10 16:38:35','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.19.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<h1 style=\"text-align: center;\"><span style=\"color: #ff0000;\">Check back for upcoming sales!Â </span></h1>\n<p style=\"text-align: left;\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2022-12-10 16:38:35','2022-12-10 16:38:35','',1450,'https://kingsvillelivestock.com/?p=4937',0,'revision','',0),(4938,2,'2022-12-10 17:48:07','2022-12-10 17:48:07','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4926\">Dec. Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><a href=\"https://drive.google.com/drive/folders/1OG-R5uP4BTCl0zzhHxpdIBlbQ8XkVVYy?usp=share_link\">Small Animal photos</a></p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-12-10 17:48:07','2022-12-10 17:48:07','',639,'https://kingsvillelivestock.com/?p=4938',0,'revision','',0),(4939,2,'2022-12-10 17:48:42','2022-12-10 17:48:42','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec.10th @ 8:30 am<span style=\"color: #ff0000;\"> <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-4926\">Dec. Horse, Tack, &amp; Small Animal Sale</a></span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Dec. 10th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-12-10 17:48:42','2022-12-10 17:48:42','',1967,'https://kingsvillelivestock.com/?p=4939',0,'revision','',0),(4940,2,'2022-12-12 17:15:08','2022-12-12 17:15:08','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-12-12 17:15:08','2022-12-12 17:15:08','',639,'https://kingsvillelivestock.com/?p=4940',0,'revision','',0),(4941,2,'2022-12-12 17:16:05','2022-12-12 17:16:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-12-12 17:16:05','2022-12-12 17:16:05','',1967,'https://kingsvillelivestock.com/?p=4941',0,'revision','',0),(4942,2,'2022-12-12 17:17:03','2022-12-12 17:17:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/TuesdayDecember-6th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4920\">Tuesday,December 6th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\">Special Cow &amp; Bull Sale, Saturday, December 17th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Peck Farms: </b><b>3 1</b>4 month old Polled Hereford bulls. Been semen &amp; trich tested, gentle set of bulls.</li>\n<li><b>Pemberton Farms: </b><b>1 </b>3 yr old Blk Reg. Angus bull</li>\n<li><b>Wombles Farms: </b><b>3 </b>2 yr old Blk Sim Angus bulls sired by Payload</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Ferguson Farms: </b><b>55 </b>Blk 3-5 yr old cows,2nd period. Bred to Blk Angus bulls. Had all shots</li>\n<li><b>Shackelford Farms: </b><b>41 </b>Blk Angus 7-SS yr old cows,3rd period. Bred Sim Angus bulls. Start calving Dec. 15th</li>\n<li><b>S-E Cattle Co.: </b><b>5 </b>Blk Balancer 2 yr. heifers, 1100lbs &amp; 3rd period <b>30</b> Blk-Bwf 3-6 yr old cows,3rd period. <b>9</b> Red-Charx 3-6 yr old cows,3rd period. <b>7</b> Blk-Red 3-6 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Stroh Farms Complete Dispersal: </b><b>50 </b>Blk-Red 3-6 yr. cows,2nd &amp; 3rd period. <b>35 </b>Red-Blk Balancer 7-SS yr old cows, 2nd &amp; 3rd period. <b>15</b> Blk-Red Balancer BM cows,2nd &amp; 3rd period. <b>3</b> Blk-Red Balancer 3-6 yr. old cows w/ 250lbs calves at side. All bred cows bred Seedstock Red Balancer bulls &amp; start calving Feb 1st</li>\n<li><b>B-M Farms Complete Dispersal: </b><b>6 </b>Blk-Red 5-SS cows w/ fall calves at side. <b>6Â  </b>1/2 Blk 1/2 Hol 5-SS cows w/Â  fall calves at side. <b>1</b> Red Brahman 2 yr old spring heifer been exposed. <b>30 </b>Brahmanx 5-SS cows, 2nd period. <b>6</b> blk-Red 5-SS cows, 2nd period. <b>13 </b>1/2 Angus 1/2 Hol 5-SS cows, 2nd period. All cows are bred Horned Hereford or Blk Sim Angus bull. Most cows home-raised had all shots &amp; calves been worked.</li>\n<li><b>Placke Farms Complete Dispersal: </b><b>18 </b>Blk-Bwf 8 yr old cows, 2nd period<b>. 1 </b>Bwf 2 yr. old bred heifer, 2nd period. All cows bred to Reg. Hereford bulls. Cows are gentle &amp; raise nice set of calves.</li>\n<li><b>Thorton Farm: </b><b>10 </b>Bwf 3-5 yr. old cows, 2nd &amp; 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Anderson Farms: </b><b>25 </b>Red Angus 3-6 yr old cows,2nd &amp; 3rd period. Bred Red Balancer bulls</li>\n<li><b>Allen Farms: </b><b>55 </b>Blk 3-6 yr old cows,3rd period. Bred Blk Balancer &amp; Blk Sim Angus bulls</li>\n<li><b>Wetzel Farms: </b><b>20 </b>Blk 7-SS yr old cows,3rd period. Bred Sim Angus bulls. Start calving Jan 10th.</li>\n<li><b>Faith Ranch Simmental LLC: </b><b>37 </b>Fancy Sim Angus 2 yr old 1100lbs bred heifers. AI bred to Sitz Incentive &amp; start calving Mar. 5th. Cleaned up w/ 3/4 Angus &amp; 1/4 Sim Angus bulls. Heifers been pelvic measured before breeding. Gentle set of heifers had all shots &amp; as good as quality as you can find.</li>\n<li><b>Davis Farms: </b><b>23 </b>Blk SS-BM cows w/ 250lbs calves at side. Have been running back w/ Angus bulls since Nov 30th. Calves have had 1 rd. shots. Pairs are selling due to lost lease on pasture</li>\n<li><b>Larsen Farms: </b><b>48 </b>Blk Angus 3-5 yr old cows w/ calves at side. 48 Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Blk Angus bulls.</li>\n<li><b>Triple S Farms: </b><b>17 </b>Purebred Brahman heifers 750lbs &amp; open. Hfrs are V-8 bloodlines that are home-raised, gentle &amp; had all shots. Visit our website for photos!</li>\n<li><b>Freeman Farms: </b><b>21 </b>Red Angus 4-6 yr old cows,3rd period. Bred to Red Balancer bulls. Gentle &amp; had all shots</li>\n<li><b>Woodward Farms: </b><b>45 </b>Blk 5-SS yr old cows,2nd period. Bred Sim Angus bulls &amp; start calving Mar. 1st.</li>\n<li><b>Nuelle Farms: </b><b>12 </b>Blk Angus 3-6 yr old cows w/ fall calves at side. <b>4</b> Red Angus 3-6 yr old cows w/ fall calves</li>\n<li><b>Pemberton Farms: </b><b>12 </b>Blk 2 yr old bred heifers, 3rd period. <b>2 </b>Red 2 yr old bred heifers, 3rd period. Heifers bred to Reg. Blk Angus bull.</li>\n<li><b>Schlotzhauer Farms: </b><b>35 </b>Blk-bwf 4-6 yr old cows, 3rd period. <b>10</b> Blk-Bwf 4-6 yr old cows w/ calves at side. Cows bred Blk Angus bull.</li>\n<li><b>Nolting Farms: </b><b>15 </b>Blk 3-5 yr old cows w/calves at side. 5 Mix 2-4 yr old cows w/ calves at side. Cows bred back to Blk Angus bull.</li>\n<li><b>Fisher Farms: </b><b>14 </b>Blk-Red 2 yr old bred heifers. Start calving Jan. 20th. Bred LBWT Angus or Red Angus bulls</li>\n<li><b>Phelphs</b><b> Farms</b><b>: </b><b>6 </b>Purebred Blk Angus 2 yr old 1050lbs bred heifers, 2nd period. Start calving Mar. 1st for 30 days. Bred LBWT Angus bulls. Heifers are gentle</li>\n<li><b>Coner Farms: </b><b>6 </b>Purebred Red Angus 2 yr old 1100lbs bred heifers,2nd period. Start calving Mar. 15th for 45 days. Bred LBWT Red Angus bulls. These heifers are the front end.Â </li>\n<li><b>Hawkins Farms: </b><b>9 </b>Blk 3-7 yr old cows w/ 200lbs calves at side. 11 Blk 3-7 yr old cows,2nd &amp; 3rd period.Â </li>\n<li><b>Hedges Farms: </b><b>18 </b>Red 2 yr old 1150lbs bred heifers. <b>7 </b>Blk 2 yr old 1150lbs bred heifers. Start calving Mar. 1st for 60 days. Bred LBWT Reg Blk Angus or Red Angus bulls. Preg checked on Oct 21st, wormed/poured, had all shots, &amp; pelvic measured as yearlings.</li>\n<li></li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-12-12 17:17:03','2022-12-12 17:17:03','',2209,'https://kingsvillelivestock.com/?p=4942',0,'revision','',0),(4943,2,'2022-12-12 17:18:30','2022-12-12 17:18:30','','Dec. 17, 2022 Cow Sale','','inherit','closed','closed','','dec-17-2022-cow-sale','','','2022-12-12 17:18:30','2022-12-12 17:18:30','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-17-2022-Cow-Sale.pdf',0,'attachment','application/pdf',0),(4944,2,'2022-12-12 17:18:47','2022-12-12 17:18:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-17-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4943\">Dec. 17, 2022 Cow Sale</a></p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-12-12 17:18:47','2022-12-12 17:18:47','',639,'https://kingsvillelivestock.com/?p=4944',0,'revision','',0),(4945,2,'2022-12-12 17:19:26','2022-12-12 17:19:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-17-2022-Cow-Sale.pdf\" rel=\"attachment wp-att-4943\">Dec. 17, 2022 Cow Sale</a></p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-12-12 17:19:26','2022-12-12 17:19:26','',1967,'https://kingsvillelivestock.com/?p=4945',0,'revision','',0),(4946,2,'2022-12-12 19:25:08','2022-12-12 19:25:08','','Tuesday,December 13th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaydecember-13th-feeder-cattle-consignments','','','2022-12-12 19:25:08','2022-12-12 19:25:08','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/12/TuesdayDecember-13th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4947,2,'2022-12-12 19:25:18','2022-12-12 19:25:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/TuesdayDecember-13th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4946\">Tuesday,December 13th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\">Special Cow &amp; Bull Sale, Saturday, December 17th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Peck Farms: </b><b>3 1</b>4 month old Polled Hereford bulls. Been semen &amp; trich tested, gentle set of bulls.</li>\n<li><b>Pemberton Farms: </b><b>1 </b>3 yr old Blk Reg. Angus bull</li>\n<li><b>Wombles Farms: </b><b>3 </b>2 yr old Blk Sim Angus bulls sired by Payload</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Ferguson Farms: </b><b>55 </b>Blk 3-5 yr old cows,2nd period. Bred to Blk Angus bulls. Had all shots</li>\n<li><b>Shackelford Farms: </b><b>41 </b>Blk Angus 7-SS yr old cows,3rd period. Bred Sim Angus bulls. Start calving Dec. 15th</li>\n<li><b>S-E Cattle Co.: </b><b>5 </b>Blk Balancer 2 yr. heifers, 1100lbs &amp; 3rd period <b>30</b> Blk-Bwf 3-6 yr old cows,3rd period. <b>9</b> Red-Charx 3-6 yr old cows,3rd period. <b>7</b> Blk-Red 3-6 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Stroh Farms Complete Dispersal: </b><b>50 </b>Blk-Red 3-6 yr. cows,2nd &amp; 3rd period. <b>35 </b>Red-Blk Balancer 7-SS yr old cows, 2nd &amp; 3rd period. <b>15</b> Blk-Red Balancer BM cows,2nd &amp; 3rd period. <b>3</b> Blk-Red Balancer 3-6 yr. old cows w/ 250lbs calves at side. All bred cows bred Seedstock Red Balancer bulls &amp; start calving Feb 1st</li>\n<li><b>B-M Farms Complete Dispersal: </b><b>6 </b>Blk-Red 5-SS cows w/ fall calves at side. <b>6Â  </b>1/2 Blk 1/2 Hol 5-SS cows w/Â  fall calves at side. <b>1</b> Red Brahman 2 yr old spring heifer been exposed. <b>30 </b>Brahmanx 5-SS cows, 2nd period. <b>6</b> blk-Red 5-SS cows, 2nd period. <b>13 </b>1/2 Angus 1/2 Hol 5-SS cows, 2nd period. All cows are bred Horned Hereford or Blk Sim Angus bull. Most cows home-raised had all shots &amp; calves been worked.</li>\n<li><b>Placke Farms Complete Dispersal: </b><b>18 </b>Blk-Bwf 8 yr old cows, 2nd period<b>. 1 </b>Bwf 2 yr. old bred heifer, 2nd period. All cows bred to Reg. Hereford bulls. Cows are gentle &amp; raise nice set of calves.</li>\n<li><b>Thorton Farm: </b><b>10 </b>Bwf 3-5 yr. old cows, 2nd &amp; 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Anderson Farms: </b><b>25 </b>Red Angus 3-6 yr old cows,2nd &amp; 3rd period. Bred Red Balancer bulls</li>\n<li><b>Allen Farms: </b><b>55 </b>Blk 3-6 yr old cows,3rd period. Bred Blk Balancer &amp; Blk Sim Angus bulls</li>\n<li><b>Wetzel Farms: </b><b>20 </b>Blk 7-SS yr old cows,3rd period. Bred Sim Angus bulls. Start calving Jan 10th.</li>\n<li><b>Faith Ranch Simmental LLC: </b><b>37 </b>Fancy Sim Angus 2 yr old 1100lbs bred heifers. AI bred to Sitz Incentive &amp; start calving Mar. 5th. Cleaned up w/ 3/4 Angus &amp; 1/4 Sim Angus bulls. Heifers been pelvic measured before breeding. Gentle set of heifers had all shots &amp; as good as quality as you can find.</li>\n<li><b>Davis Farms: </b><b>23 </b>Blk SS-BM cows w/ 250lbs calves at side. Have been running back w/ Angus bulls since Nov 30th. Calves have had 1 rd. shots. Pairs are selling due to lost lease on pasture</li>\n<li><b>Larsen Farms: </b><b>48 </b>Blk Angus 3-5 yr old cows w/ calves at side. 48 Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Blk Angus bulls.</li>\n<li><b>Triple S Farms: </b><b>17 </b>Purebred Brahman heifers 750lbs &amp; open. Hfrs are V-8 bloodlines that are home-raised, gentle &amp; had all shots. Visit our website for photos!</li>\n<li><b>Freeman Farms: </b><b>21 </b>Red Angus 4-6 yr old cows,3rd period. Bred to Red Balancer bulls. Gentle &amp; had all shots</li>\n<li><b>Woodward Farms: </b><b>45 </b>Blk 5-SS yr old cows,2nd period. Bred Sim Angus bulls &amp; start calving Mar. 1st.</li>\n<li><b>Nuelle Farms: </b><b>12 </b>Blk Angus 3-6 yr old cows w/ fall calves at side. <b>4</b> Red Angus 3-6 yr old cows w/ fall calves</li>\n<li><b>Pemberton Farms: </b><b>12 </b>Blk 2 yr old bred heifers, 3rd period. <b>2 </b>Red 2 yr old bred heifers, 3rd period. Heifers bred to Reg. Blk Angus bull.</li>\n<li><b>Schlotzhauer Farms: </b><b>35 </b>Blk-bwf 4-6 yr old cows, 3rd period. <b>10</b> Blk-Bwf 4-6 yr old cows w/ calves at side. Cows bred Blk Angus bull.</li>\n<li><b>Nolting Farms: </b><b>15 </b>Blk 3-5 yr old cows w/calves at side. 5 Mix 2-4 yr old cows w/ calves at side. Cows bred back to Blk Angus bull.</li>\n<li><b>Fisher Farms: </b><b>14 </b>Blk-Red 2 yr old bred heifers. Start calving Jan. 20th. Bred LBWT Angus or Red Angus bulls</li>\n<li><b>Phelphs</b><b> Farms</b><b>: </b><b>6 </b>Purebred Blk Angus 2 yr old 1050lbs bred heifers, 2nd period. Start calving Mar. 1st for 30 days. Bred LBWT Angus bulls. Heifers are gentle</li>\n<li><b>Coner Farms: </b><b>6 </b>Purebred Red Angus 2 yr old 1100lbs bred heifers,2nd period. Start calving Mar. 15th for 45 days. Bred LBWT Red Angus bulls. These heifers are the front end.Â </li>\n<li><b>Hawkins Farms: </b><b>9 </b>Blk 3-7 yr old cows w/ 200lbs calves at side. 11 Blk 3-7 yr old cows,2nd &amp; 3rd period.Â </li>\n<li><b>Hedges Farms: </b><b>18 </b>Red 2 yr old 1150lbs bred heifers. <b>7 </b>Blk 2 yr old 1150lbs bred heifers. Start calving Mar. 1st for 60 days. Bred LBWT Reg Blk Angus or Red Angus bulls. Preg checked on Oct 21st, wormed/poured, had all shots, &amp; pelvic measured as yearlings.</li>\n<li></li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-12-12 19:25:18','2022-12-12 19:25:18','',2209,'https://kingsvillelivestock.com/?p=4947',0,'revision','',0),(4948,2,'2022-12-12 20:04:32','2022-12-12 20:04:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/TuesdayDecember-13th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4946\">Tuesday,December 13th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\">Special Cow &amp; Bull Sale, Saturday, December 17th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Peck Farms: </b><b>3 1</b>4 month old Polled Hereford bulls. Been semen &amp; trich tested, gentle set of bulls.</li>\n<li><b>Pemberton Farms: </b><b>1 </b>3 yr old Blk Reg. Angus bull</li>\n<li><b>Wombles Farms: </b><b>3 </b>2 yr old Blk Sim Angus bulls sired by Payload</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Ferguson Farms: </b><b>55 </b>Blk 3-5 yr old cows,2nd period. Bred to Blk Angus bulls. Had all shots</li>\n<li><b>Shackelford Farms: </b><b>41 </b>Blk Angus 7-SS yr old cows,3rd period. Bred Sim Angus bulls. Start calving Dec. 15th</li>\n<li><b>S-E Cattle Co.: </b><b>5 </b>Blk Balancer 2 yr. heifers, 1100lbs &amp; 3rd period <b>30</b> Blk-Bwf 3-6 yr old cows,3rd period. <b>9</b> Red-Charx 3-6 yr old cows,3rd period. <b>7</b> Blk-Red 3-6 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Stroh Farms Complete Dispersal: </b><b>50 </b>Blk-Red 3-6 yr. cows,2nd &amp; 3rd period. <b>35 </b>Red-Blk Balancer 7-SS yr old cows, 2nd &amp; 3rd period. <b>15</b> Blk-Red Balancer BM cows,2nd &amp; 3rd period. <b>3</b> Blk-Red Balancer 3-6 yr. old cows w/ 250lbs calves at side. All bred cows bred Seedstock Red Balancer bulls &amp; start calving Feb 1st</li>\n<li><b>B-M Farms Complete Dispersal: </b><b>6 </b>Blk-Red 5-SS cows w/ fall calves at side. <b>6Â  </b>1/2 Blk 1/2 Hol 5-SS cows w/Â  fall calves at side. <b>1</b> Red Brahman 2 yr old spring heifer been exposed. <b>30 </b>Brahmanx 5-SS cows, 2nd period. <b>6</b> blk-Red 5-SS cows, 2nd period. <b>13 </b>1/2 Angus 1/2 Hol 5-SS cows, 2nd period. All cows are bred Horned Hereford or Blk Sim Angus bull. Most cows home-raised had all shots &amp; calves been worked.</li>\n<li><b>Placke Farms Complete Dispersal: </b><b>18 </b>Blk-Bwf 8 yr old cows, 2nd period<b>. 1 </b>Bwf 2 yr. old bred heifer, 2nd period. All cows bred to Reg. Hereford bulls. Cows are gentle &amp; raise nice set of calves.</li>\n<li><b>Thorton Farm: </b><b>10 </b>Bwf 3-5 yr. old cows, 2nd &amp; 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Anderson Farms: </b><b>25 </b>Red Angus 3-6 yr old cows,2nd &amp; 3rd period. Bred Red Balancer bulls</li>\n<li><b>Allen Farms: </b><b>55 </b>Blk 3-6 yr old cows,3rd period. Bred Blk Balancer &amp; Blk Sim Angus bulls</li>\n<li><b>Wetzel Farms: </b><b>20 </b>Blk 7-SS yr old cows,3rd period. Bred Sim Angus bulls. Start calving Jan 10th.</li>\n<li><b>Faith Ranch Simmental LLC: </b><b>37 </b>Fancy Sim Angus 2 yr old 1100lbs bred heifers. AI bred to Sitz Incentive &amp; start calving Mar. 5th. Cleaned up w/ 3/4 Angus &amp; 1/4 Sim Angus bulls. Heifers been pelvic measured before breeding. Gentle set of heifers had all shots &amp; as good as quality as you can find.</li>\n<li><b>Davis Farms: </b><b>23 </b>Blk SS-BM cows w/ 250lbs calves at side. Have been running back w/ Angus bulls since Nov 30th. Calves have had 1 rd. shots. Pairs are selling due to lost lease on pasture</li>\n<li><b>Larsen Farms: </b><b>48 </b>Blk Angus 3-5 yr old cows w/ calves at side. 48 Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Blk Angus bulls.</li>\n<li><b>Triple S Farms: </b><b>17 </b>Purebred Brahman heifers 750lbs &amp; open. Hfrs are V-8 bloodlines that are home-raised, gentle &amp; had all shots. Visit our website for photos!</li>\n<li><b>Freeman Farms: </b><b>21 </b>Red Angus 4-6 yr old cows,3rd period. Bred to Red Balancer bulls. Gentle &amp; had all shots</li>\n<li><b>Woodward Farms: </b><b>45 </b>Blk 5-SS yr old cows,2nd period. Bred Sim Angus bulls &amp; start calving Mar. 1st.</li>\n<li><b>Nuelle Farms: </b><b>12 </b>Blk Angus 3-6 yr old cows w/ fall calves at side. <b>4</b> Red Angus 3-6 yr old cows w/ fall calves</li>\n<li><b>Pemberton Farms: </b><b>12 </b>Blk 2 yr old bred heifers, 3rd period. <b>2 </b>Red 2 yr old bred heifers, 3rd period. Heifers bred to Reg. Blk Angus bull.</li>\n<li><b>Schlotzhauer Farms: </b><b>35 </b>Blk-bwf 4-6 yr old cows, 3rd period. <b>10</b> Blk-Bwf 4-6 yr old cows w/ calves at side. Cows bred Blk Angus bull.</li>\n<li><b>Nolting Farms: </b><b>15 </b>Blk 3-5 yr old cows w/calves at side. 5 Mix 2-4 yr old cows w/ calves at side. Cows bred back to Blk Angus bull.</li>\n<li><b>Fisher Farms: </b><b>14 </b>Blk-Red 2 yr old bred heifers. Start calving Jan. 20th. Bred LBWT Angus or Red Angus bulls</li>\n<li><b>Phelphs</b><b> Farms</b><b>: </b><b>6 </b>Purebred Blk Angus 2 yr old 1050lbs bred heifers, 2nd period. Start calving Mar. 1st for 30 days. Bred LBWT Angus bulls. Heifers are gentle</li>\n<li><b>Coner Farms: </b><b>6 </b>Purebred Red Angus 2 yr old 1100lbs bred heifers,2nd period. Start calving Mar. 15th for 45 days. Bred LBWT Red Angus bulls. These heifers are the front end.</li>\n<li><b>Hawkins Farms: </b><b>9 </b>Blk 3-7 yr old cows w/ 200lbs calves at side. 11 Blk 3-7 yr old cows,2nd &amp; 3rd period.</li>\n<li><b>Hedges Farms: </b><b>18 </b>Red 2 yr old 1150lbs bred heifers. <b>7 </b>Blk 2 yr old 1150lbs bred heifers. Start calving Mar. 1st for 60 days. Bred LBWT Reg Blk Angus or Red Angus bulls. Preg checked on Oct 21st, wormed/poured, had all shots, &amp; pelvic measured as yearlings.</li>\n<li><b>3S Farms: </b><b>26 </b>Blk 5 yr old cows, 3rd period. <b>17</b> Blk SS cows, 3rd period. Start calving Feb 15th &amp; bred Blk Angus bulls. <strong>15</strong> Blk SS cows w/calves at side.</li>\n<li></li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-12-12 20:04:32','2022-12-12 20:04:32','',2209,'https://kingsvillelivestock.com/?p=4948',0,'revision','',0),(4949,2,'2022-12-12 20:05:49','2022-12-12 20:05:49','','Dec. 17, 2022 Cow Sale','','inherit','closed','closed','','dec-17-2022-cow-sale-2','','','2022-12-12 20:05:49','2022-12-12 20:05:49','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-17-2022-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(4950,2,'2022-12-12 20:06:04','2022-12-12 20:06:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-17-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4949\">Dec. 17th Cow Sale</a></p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-12-12 20:06:04','2022-12-12 20:06:04','',639,'https://kingsvillelivestock.com/?p=4950',0,'revision','',0),(4951,2,'2022-12-12 20:13:26','2022-12-12 20:13:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec.13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-17-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4949\">Dec. 17th Cow Sale</a></p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-12-12 20:13:26','2022-12-12 20:13:26','',1967,'https://kingsvillelivestock.com/?p=4951',0,'revision','',0),(4953,2,'2022-12-14 07:44:13','2022-12-14 07:44:13','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-17-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4949\">Dec. 17th Cow Sale</a></p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-12-14 07:44:13','2022-12-14 07:44:13','',639,'https://kingsvillelivestock.com/?p=4953',0,'revision','',0),(4954,2,'2022-12-14 07:45:09','2022-12-14 07:45:09','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-17-2022-Cow-Sale-1.pdf\" rel=\"attachment wp-att-4949\">Dec. 17th Cow Sale</a></p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-12-14 07:45:09','2022-12-14 07:45:09','',1967,'https://kingsvillelivestock.com/?p=4954',0,'revision','',0),(4955,2,'2022-12-14 16:36:09','2022-12-14 16:36:09','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/TuesdayDecember-13th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4946\">Tuesday,December 13th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\">Special Cow &amp; Bull Sale, Saturday, December 17th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Peck Farms: </b><b>3 </b>14-month-oldÂ Polled Hereford bulls. Been semen &amp; trich tested, gentle set of bulls.</li>\n<li><b>Pemberton Farms: </b><b>1 </b>3 yr old Blk Reg. Angus bull</li>\n<li><b>Wombles Farms: </b><b>3 </b>2 yr old Blk Sim Angus bulls sired by Payload</li>\n<li><b>Brush Creek Farms: </b><b>8 </b>4 yr old Red Angus LBWT bulls. Semen &amp; trich testedÂ </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Ferguson Farms: </b><b>55 </b>Blk 3-5 yr old cows,2nd period. Bred to Blk Angus bulls. Had all shots</li>\n<li><b>Shackelford Farms: </b><b>41 </b>Blk Angus 7-SS yr old cows,3rd period. Bred Sim Angus bulls. Start calving Dec. 15th</li>\n<li><b>S-E Cattle Co.: </b><b>5 </b>Blk Balancer 2 yr. heifers, 1100lbs &amp; 3rd period <b>30</b> Blk-Bwf 3-6 yr old cows,3rd period. <b>9</b> Red-Charx 3-6 yr old cows,3rd period. <b>7</b> Blk-Red 3-6 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Stroh Farms Complete Dispersal: </b><b>50 </b>Blk-Red 3-6 yr. cows,2nd &amp; 3rd period. <b>35 </b>Red-Blk Balancer 7-SS yr old cows, 2nd &amp; 3rd period. <b>15</b> Blk-Red Balancer BM cows,2nd &amp; 3rd period. <b>3</b> Blk-Red Balancer 3-6 yr. old cows w/ 250lbs calves at side. All bred cows bred Seedstock Red Balancer bulls &amp; start calving Feb 1st</li>\n<li><b>B-M Farms Complete Dispersal: </b><b>6 </b>Blk-Red 5-SS cows w/ fall calves at side. <b>6Â  </b>1/2 Blk 1/2 Hol 5-SS cows w/Â  fall calves at side. <b>1</b> Red Brahman 2 yr old spring heifer been exposed. <b>30 </b>Brahmanx 5-SS cows, 2nd period. <b>6</b> blk-Red 5-SS cows, 2nd period. <b>13 </b>1/2 Angus 1/2 Hol 5-SS cows, 2nd period. All cows are bred Horned Hereford or Blk Sim Angus bull. Most cows home-raised had all shots &amp; calves been worked.</li>\n<li><b>Placke Farms Complete Dispersal: </b><b>18 </b>Blk-Bwf 8 yr old cows, 2nd period<b>. 1 </b>Bwf 2 yr. old bred heifer, 2nd period. All cows bred to Reg. Hereford bulls. Cows are gentle &amp; raise nice set of calves.</li>\n<li><b>Thorton Farm: </b><b>10 </b>Bwf 3-5 yr. old cows, 2nd &amp; 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Anderson Farms: </b><b>25 </b>Red Angus 3-6 yr old cows,2nd &amp; 3rd period. Bred Red Balancer bulls</li>\n<li><b>Allen Farms: </b><b>55 </b>Blk 3-6 yr old cows,3rd period. Bred Blk Balancer &amp; Blk Sim Angus bulls</li>\n<li><b>Wetzel Farms: </b><b>20 </b>Blk 7-SS yr old cows,3rd period. Bred Sim Angus bulls. Start calving Jan 10th.</li>\n<li><b>Faith Ranch Simmental LLC: </b><b>37 </b>Fancy Sim Angus 2 yr old 1100lbs bred heifers. AI bred to Sitz Incentive &amp; start calving Mar. 5th. Cleaned up w/ 3/4 Angus &amp; 1/4 Sim Angus bulls. Heifers been pelvic measured before breeding. Gentle set of heifers had all shots &amp; as good as quality as you can find.</li>\n<li><b>Davis Farms: </b><b>23 </b>Blk SS-BM cows w/ 250lbs calves at side. Have been running back w/ Angus bulls since Nov 30th. Calves have had 1 rd. shots. Pairs are selling due to lost lease on pasture</li>\n<li><b>Larsen Farms: </b><b>48 </b>Blk Angus 3-5 yr old cows w/ calves at side. 48 Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Blk Angus bulls.</li>\n<li><b>Triple S Farms: </b><b>17 </b>Purebred Brahman heifers 750lbs &amp; open. Hfrs are V-8 bloodlines that are home-raised, gentle &amp; had all shots. Visit our website for photos!</li>\n<li><b>Freeman Farms: </b><b>21 </b>Red Angus 4-6 yr old cows,3rd period. Bred to Red Balancer bulls. Gentle &amp; had all shots</li>\n<li><b>Woodward Farms: </b><b>45 </b>Blk 5-SS yr old cows,2nd period. Bred Sim Angus bulls &amp; start calving Mar. 1st.</li>\n<li><b>Nuelle Farms: </b><b>12 </b>Blk Angus 3-6 yr old cows w/ fall calves at side. <b>4</b> Red Angus 3-6 yr old cows w/ fall calves</li>\n<li><b>Pemberton Farms: </b><b>12 </b>Blk 2 yr old bred heifers, 3rd period. <b>2 </b>Red 2 yr old bred heifers, 3rd period. Heifers bred to Reg. Blk Angus bull.</li>\n<li><b>Schlotzhauer Farms: </b><b>35 </b>Blk-bwf 4-6 yr old cows, 3rd period. <b>10</b> Blk-Bwf 4-6 yr old cows w/ calves at side. Cows bred Blk Angus bull.</li>\n<li><b>Nolting Farms: </b><b>15 </b>Blk 3-5 yr old cows w/calves at side. 5 Mix 2-4 yr old cows w/ calves at side. Cows bred back to Blk Angus bull.</li>\n<li><b>Fisher Farms: </b><b>14 </b>Blk-Red 2 yr old bred heifers. Start calving Jan. 20th. Bred LBWT Angus or Red Angus bulls</li>\n<li><b>Phelphs</b><b> Farms</b><b>: </b><b>6 </b>Purebred Blk Angus 2 yr old 1050lbs bred heifers, 2nd period. Start calving Mar. 1st for 30 days. Bred LBWT Angus bulls. Heifers are gentle</li>\n<li><b>Coner Farms: </b><b>6 </b>Purebred Red Angus 2 yr old 1100lbs bred heifers,2nd period. Start calving Mar. 15th for 45 days. Bred LBWT Red Angus bulls. These heifers are the front end.</li>\n<li><b>Hawkins Farms: </b><b>9 </b>Blk 3-7 yr old cows w/ 200lbs calves at side. 11 Blk 3-7 yr old cows,2nd &amp; 3rd period.</li>\n<li><b>Hedges Farms: </b><b>18 </b>Red 2 yr old 1150lbs bred heifers. <b>7 </b>Blk 2 yr old 1150lbs bred heifers. Start calving Mar. 1st for 60 days. Bred LBWT Reg Blk Angus or Red Angus bulls. Preg checked on Oct 21st, wormed/poured, had all shots, &amp; pelvic measured as yearlings.</li>\n<li><b>3S Farms: </b><b>26 </b>Blk 5 yr old cows, 3rd period. <b>17</b> Blk SS cows, 3rd period. Start calving Feb 15th &amp; bred Blk Angus bulls. <strong>15</strong> Blk SS cows w/calves at side.</li>\n<li></li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-12-14 16:36:09','2022-12-14 16:36:09','',2209,'https://kingsvillelivestock.com/?p=4955',0,'revision','',0),(4956,2,'2022-12-14 16:36:48','2022-12-14 16:36:48','','Dec. 17, 2022 Cow Sale','','inherit','closed','closed','','dec-17-2022-cow-sale-3','','','2022-12-14 16:36:48','2022-12-14 16:36:48','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-17-2022-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(4957,2,'2022-12-14 16:37:08','2022-12-14 16:37:08','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-17-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4956\">Dec. 17th Cow Sale</a></p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-12-14 16:37:08','2022-12-14 16:37:08','',639,'https://kingsvillelivestock.com/?p=4957',0,'revision','',0),(4958,2,'2022-12-14 16:38:22','2022-12-14 16:38:22','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-17-2022-Cow-Sale-2.pdf\" rel=\"attachment wp-att-4956\">Dec. 17th Cow Sale</a></p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-12-14 16:38:22','2022-12-14 16:38:22','',1967,'https://kingsvillelivestock.com/?p=4958',0,'revision','',0),(4959,2,'2022-12-14 16:40:47','2022-12-14 16:40:47','','Dec. 17, 2022 Cow Sale','','inherit','closed','closed','','dec-17-2022-cow-sale-4','','','2022-12-14 16:40:47','2022-12-14 16:40:47','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-17-2022-Cow-Sale-3.pdf',0,'attachment','application/pdf',0),(4960,2,'2022-12-14 16:40:58','2022-12-14 16:40:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-17-2022-Cow-Sale-3.pdf\" rel=\"attachment wp-att-4959\">Dec. 17, 2022 Cow Sale</a></p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-12-14 16:40:58','2022-12-14 16:40:58','',639,'https://kingsvillelivestock.com/?p=4960',0,'revision','',0),(4961,2,'2022-12-14 16:42:05','2022-12-14 16:42:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull SaleÂ </p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-12-14 16:42:05','2022-12-14 16:42:05','',1967,'https://kingsvillelivestock.com/?p=4961',0,'revision','',0),(4962,2,'2022-12-14 16:43:26','2022-12-14 16:43:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale Â <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-17-2022-Cow-Sale-3.pdf\" rel=\"attachment wp-att-4959\">Dec. 17, 2022 Cow Sale</a></p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-12-14 16:43:26','2022-12-14 16:43:26','',1967,'https://kingsvillelivestock.com/?p=4962',0,'revision','',0),(4963,2,'2022-12-14 16:55:00','2022-12-14 16:55:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-17-2022-Cow-Sale-3.pdf\" rel=\"attachment wp-att-4959\">Dec. 17, 2022 Cow Sale</a></p>\n<p><a href=\"https://drive.google.com/drive/folders/14NvZe-2Qm6L94EiVGMi9p_DO0AApT77H?usp=share_link\">Cow Sale Photos</a></p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-12-14 16:55:00','2022-12-14 16:55:00','',639,'https://kingsvillelivestock.com/?p=4963',0,'revision','',0),(4964,2,'2022-12-14 16:55:50','2022-12-14 16:55:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 17th @ 11 am<br /></strong>Special Cow &amp; Bull Sale Â <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/Dec.-17-2022-Cow-Sale-3.pdf\" rel=\"attachment wp-att-4959\">Dec. 17, 2022 Cow Sale</a></p>\n<p><a href=\"https://drive.google.com/drive/folders/14NvZe-2Qm6L94EiVGMi9p_DO0AApT77H?usp=share_link\">Cow Sale Photos </a></p>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-12-14 16:55:50','2022-12-14 16:55:50','',1967,'https://kingsvillelivestock.com/?p=4964',0,'revision','',0),(4965,2,'2022-12-14 17:26:54','2022-12-14 17:26:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 13, 2022, </strong>3016 hd; Last week, 4824 hd; 3601 a year ago. Compared to last week steers &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady. No sale Tuesday, December 27th due to Christmas. Merry Christmas &amp; Happy New Year from the Anstine family!Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$221.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$165.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$155.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$144.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$61.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$44.00 - $60.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">557lbs @$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">635lbs @$198.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">762lbs @$180.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">770lbs @$184.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">773lbs@$180.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">687lbs@$179.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">689lbs@$178.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">776lbs@$170.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 13, 2022 - Market Report','','publish','closed','open','','december-13-2022-market-report','','','2022-12-14 17:26:58','2022-12-14 17:26:58','',0,'https://kingsvillelivestock.com/?p=4965',0,'post','',0),(4966,2,'2022-12-14 17:26:54','2022-12-14 17:26:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 13, 2022, </strong>3016 hd; Last week, 4824 hd; 3601 a year ago. Compared to last week steers &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady. No sale Tuesday, December 27th due to Christmas. Merry Christmas &amp; Happy New Year from the Anstine family!Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$221.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$165.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$155.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$144.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$61.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$44.00 - $60.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">557lbs @$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">635lbs @$198.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">762lbs @$180.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">770lbs @$184.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">773lbs@$180.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">687lbs@$179.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">689lbs@$178.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">776lbs@$170.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 13, 2022 - Market Report','','inherit','closed','closed','','4965-revision-v1','','','2022-12-14 17:26:54','2022-12-14 17:26:54','',4965,'https://kingsvillelivestock.com/?p=4966',0,'revision','',0),(4967,2,'2022-12-14 17:26:54','2022-12-14 17:26:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 13, 2022, </strong>3016 hd; Last week, 4824 hd; 3601 a year ago. Compared to last week steers &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady. No sale Tuesday, December 27th due to Christmas. Merry Christmas &amp; Happy New Year from the Anstine family!Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$221.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$165.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$155.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$144.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$61.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$44.00 - $60.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">557lbs @$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">635lbs @$198.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">762lbs @$180.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">770lbs @$184.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">773lbs@$180.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">687lbs@$179.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">689lbs@$178.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">776lbs@$170.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 6, 2022 - Market Report','','inherit','closed','closed','','4965-revision-v1','','','2022-12-14 17:26:54','2022-12-14 17:26:54','',4965,'https://kingsvillelivestock.com/?p=4967',0,'revision','',0),(4969,2,'2022-12-14 17:26:58','2022-12-14 17:26:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 13, 2022, </strong>3016 hd; Last week, 4824 hd; 3601 a year ago. Compared to last week steers &amp; heifers sold steady-$4 higher. Slaughter cows &amp; bulls sold steady. No sale Tuesday, December 27th due to Christmas. Merry Christmas &amp; Happy New Year from the Anstine family!Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$221.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$175.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$165.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$185.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$155.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$144.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$61.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$44.00 - $60.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $103.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.3\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">557lbs @$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">635lbs @$198.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">762lbs @$180.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">770lbs @$184.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">773lbs@$180.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 46px;\">687lbs@$179.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">689lbs@$178.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">776lbs@$170.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 13, 2022 - Market Report','','inherit','closed','closed','','4965-revision-v1','','','2022-12-14 17:26:58','2022-12-14 17:26:58','',4965,'https://kingsvillelivestock.com/?p=4969',0,'revision','',0),(4970,2,'2022-12-19 17:41:31','2022-12-19 17:41:31','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-12-19 17:41:31','2022-12-19 17:41:31','',639,'https://kingsvillelivestock.com/?p=4970',0,'revision','',0),(4971,2,'2022-12-19 17:42:27','2022-12-19 17:42:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-12-19 17:42:27','2022-12-19 17:42:27','',1967,'https://kingsvillelivestock.com/?p=4971',0,'revision','',0),(4972,2,'2022-12-19 17:44:57','2022-12-19 17:44:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/TuesdayDecember-13th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4946\">Tuesday,December 13th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-12-19 17:44:57','2022-12-19 17:44:57','',2209,'https://kingsvillelivestock.com/?p=4972',0,'revision','',0),(4973,2,'2022-12-19 18:46:48','2022-12-19 18:46:48','','Tuesday,December 20th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaydecember-20th-feeder-cattle-consignments','','','2022-12-19 18:46:48','2022-12-19 18:46:48','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/12/TuesdayDecember-20th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0);
INSERT INTO `b78GM7Ml_posts` VALUES (4974,2,'2022-12-19 18:46:57','2022-12-19 18:46:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/TuesdayDecember-20th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4973\">Tuesday,December 20th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2022-12-19 18:46:57','2022-12-19 18:46:57','',2209,'https://kingsvillelivestock.com/?p=4974',0,'revision','',0),(4975,2,'2022-12-21 16:06:44','2022-12-21 16:06:44','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-12-21 16:06:44','2022-12-21 16:06:44','',639,'https://kingsvillelivestock.com/?p=4975',0,'revision','',0),(4977,2,'2022-12-21 16:13:50','2022-12-21 16:13:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2022 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Dec. 27th @ 10:30 am </strong></span><span style=\"color: #ff0000;\"><strong>- Canceled due to Christmas!</strong><strong><br /></strong></span><span style=\"color: #000000;\">Feeder Cattle Sale</span></p>\n<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 28th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-12-21 16:13:50','2022-12-21 16:13:50','',1967,'https://kingsvillelivestock.com/?p=4977',0,'revision','',0),(4978,2,'2022-12-21 16:26:36','2022-12-21 16:26:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 20, 2022, </strong>1839 hd; Last week, 3016 hd; 1604 a year ago. Feeder cattle sold steady-$4 lower. Yearling heifers sold fully steady. Slaughter cows &amp; bulls sold steady-$2 higher. No sale Tuesday, December 27th due to Christmas. Merry Christmas &amp; Happy New Year from the Anstine family!Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$149.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$160.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$186.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$154.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$147.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $78.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$61.00 - $69.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $60.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $106.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">590lbs @$194.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">691lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 20, 2022 - Market Report','','publish','closed','open','','december-20-2022-market-report','','','2022-12-21 16:26:39','2022-12-21 16:26:39','',0,'https://kingsvillelivestock.com/?p=4978',0,'post','',0),(4980,2,'2022-12-21 16:26:36','2022-12-21 16:26:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 20, 2022, </strong>1839 hd; Last week, 3016 hd; 1604 a year ago. Feeder cattle sold steady-$4 lower. Yearling heifers sold fully steady. Slaughter cows &amp; bulls sold steady-$2 higher. No sale Tuesday, December 27th due to Christmas. Merry Christmas &amp; Happy New Year from the Anstine family!Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$149.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$160.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$186.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$154.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$147.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $78.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$61.00 - $69.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $60.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $106.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">590lbs @$194.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">691lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 20, 2022 - Market Report','','inherit','closed','closed','','4978-revision-v1','','','2022-12-21 16:26:36','2022-12-21 16:26:36','',4978,'https://kingsvillelivestock.com/?p=4980',0,'revision','',0),(4981,2,'2022-12-21 16:26:36','2022-12-21 16:26:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 20, 2022, </strong>1839 hd; Last week, 3016 hd; 1604 a year ago. Feeder cattle sold steady-$4 lower. Yearling heifers sold fully steady. Slaughter cows &amp; bulls sold steady-$2 higher. No sale Tuesday, December 27th due to Christmas. Merry Christmas &amp; Happy New Year from the Anstine family!Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$149.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$160.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$186.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$154.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$147.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $78.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$61.00 - $69.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $60.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $106.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">590lbs @$194.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">691lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 13, 2022 - Market Report','','inherit','closed','closed','','4978-revision-v1','','','2022-12-21 16:26:36','2022-12-21 16:26:36','',4978,'https://kingsvillelivestock.com/?p=4981',0,'revision','',0),(4982,2,'2022-12-21 16:26:39','2022-12-21 16:26:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>December 20, 2022, </strong>1839 hd; Last week, 3016 hd; 1604 a year ago. Feeder cattle sold steady-$4 lower. Yearling heifers sold fully steady. Slaughter cows &amp; bulls sold steady-$2 higher. No sale Tuesday, December 27th due to Christmas. Merry Christmas &amp; Happy New Year from the Anstine family!Â  Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$211.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$181.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$149.00-$168.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$130.00-$160.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$170.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$178.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$186.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$173.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$154.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$147.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $78.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$61.00 - $69.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$45.00 - $60.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $106.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">590lbs @$194.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">691lbs @$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 20, 2022 - Market Report','','inherit','closed','closed','','4978-revision-v1','','','2022-12-21 16:26:39','2022-12-21 16:26:39','',4978,'https://kingsvillelivestock.com/?p=4982',0,'revision','',0),(4984,2,'2022-12-28 21:32:38','2022-12-28 21:32:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2022-12-28 21:32:38','2022-12-28 21:32:38','',639,'https://kingsvillelivestock.com/?p=4984',0,'revision','',0),(4986,2,'2022-12-28 21:34:54','2022-12-28 21:34:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2022-12-28 21:34:54','2022-12-28 21:34:54','',1967,'https://kingsvillelivestock.com/?p=4986',0,'revision','',0),(4988,2,'2022-12-28 21:39:28','2022-12-28 21:39:28','','image000002','','inherit','closed','closed','','image000002','','','2022-12-28 21:39:28','2022-12-28 21:39:28','',0,'https://kingsvillelivestock.com/wp-content/uploads/2022/12/image000002.jpg',0,'attachment','image/jpeg',0),(4989,2,'2022-12-28 21:43:43','2022-12-28 21:43:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Call to Action\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Trailers For Sale\" content_max_width=\"800px\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-30.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Event Section\" _builder_version=\"4.16\" custom_padding=\"60px||60px||true|false\" animation_style=\"zoom\" animation_intensity_zoom=\"6%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>We carry a wide variety of trailers to meet all of your needs.</p>\n<p><strong><a href=\"https://kingsvillelivestock.com/contact/\">Contact us</a></strong> for a FREE QUOTE today.</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/image000003-300x225.jpg\" width=\"143\" height=\"107\" alt=\"\" class=\"wp-image-4098 alignnone size-medium\" />Â  7\'1\" X 27\'6\" 2022 Eby Ruffneck 2 8k axles. 17.5 tires &amp; spare. 2 Cross Gates.<strong> $36,650.00</strong></p>\n<p><strong></strong></p>\n<p><strong><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2022/08/image000000-300x225.jpg\" width=\"146\" height=\"109\" alt=\"\" class=\"wp-image-4590 alignnone size-medium\" /></strong>Â  8Â  X 26 2022 Eby Ruffneck 8k axles. 17.5 tires &amp; spare. 2 Cross Gates, Front gate that is an adjustable rolling gate, the second gate is standard, big side door, light package, and rear slam latch<strong>.Â  Call now for additional pictures! $41,910.00Â </strong></p>\n<p><strong></strong></p>\n<p><img class=\"wp-image-2101 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG-1006-scaled-e1595879726664-300x225.jpg\" alt=\"\" width=\"147\" height=\"110\" />Â  Â  Eby 7\'1\" X 24\' Punch Panel Maverick Livestock Trailer. 14 ply tires, 7k axels, Alum. wheels, &amp; 2 cross gatesÂ  <strong>Not in Stock, Call Now for pricing &amp; to order!Â </strong></p>\n<p><strong></strong></p>\n<p><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2022/12/image000002-300x225.jpg\" width=\"136\" height=\"102\" alt=\"\" class=\"wp-image-4988 alignnone size-medium\" />Â  2017 Coose 7X32 livestock trailer w/ rubber floors, 3 8K axles, 17.5 tires, 2 cross gates, and electric over hydraulic brakes. <strong>$18,500</strong> call now for additional info &amp; pictures!</p>\n<p>26X8 Eby Punch Panel<strong> $41,500</strong> <span style=\"color: #ff0000;\"><strong>- end of year special!</strong></span></p>\n<p><img class=\"wp-image-2116 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1008-1-208x300.jpg\" alt=\"\" width=\"102\" height=\"147\" />Â  EZ Haul 32\' Bumper Pull Hay Trailer. 6 Bale used <strong>$4,550.00</strong></p>\n<p><img class=\"wp-image-2117 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" alt=\"\" width=\"101\" height=\"135\" />Â  EZ Haul 32\' Gooseneck Hay Trailer. 6 Bale, $7,100.00 <strong>Â </strong></p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"97\" height=\"130\" />EZ Haul 36\' Gooseneck Hay Trailer. 7 Bale,<strong>Â $7,000.00<span style=\"color: #ff0000;\"> end-of-year special!Â </span></strong></p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"100\" height=\"134\" />EZ Haul 42\' Gooseneck Hay Trailer. 8 Bale, $7,600.00</p>\n<p><img class=\"wp-image-2146 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Ez-Haul-Flat-Bed-2-300x225.jpg\" alt=\"\" width=\"139\" height=\"104\" />Â  Â 27\' EZ Haul Flat Bed. 22+5 Dove, 3 ramps, low profile, 10k axels, 14 ply tires. <strong>Call for price!</strong></p>\n<p><img class=\"wp-image-2147 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/ez-haul-flat-bed-3-300x225.jpg\" alt=\"\" width=\"144\" height=\"108\" /> EZ Haul 20\' Flat Bed Bumper Pull. 18+2 Dove, 2 4\' ramps, 7k axels, 10 ply tires. <strong>Out of Stock, call for price!Â </strong></p>\n<p><img class=\"wp-image-2153 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Wheel-Corral-300x185.png\" alt=\"\" width=\"172\" height=\"106\" /> Diamond \"W\" Wheel Corral <strong>$21,800.00Â </strong></p>\n<h2><span style=\"color: #ff00ff;\">For additional questions about the trailers or wheel corral call the office @ 816-597-3331 or Derrick @ 816-726-3456</span></h2>\n<p><span style=\"color: #ff0000;\"><strong>Updated on Dec 28th,2022Â </strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','TRAILERS FOR SALE','','inherit','closed','closed','','714-revision-v1','','','2022-12-28 21:43:43','2022-12-28 21:43:43','',714,'https://kingsvillelivestock.com/?p=4989',0,'revision','',0),(4990,2,'2023-01-02 17:16:54','2023-01-02 17:16:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-01-02 17:16:54','2023-01-02 17:16:54','',639,'https://kingsvillelivestock.com/?p=4990',0,'revision','',0),(4991,2,'2023-01-02 17:17:59','2023-01-02 17:17:59','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-01-02 17:17:59','2023-01-02 17:17:59','',1967,'https://kingsvillelivestock.com/?p=4991',0,'revision','',0),(4992,2,'2023-01-02 19:12:56','2023-01-02 19:12:56','','Tuesday, January 3rd Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-january-3rd-feeder-cattle-consignments','','','2023-01-02 19:12:56','2023-01-02 19:12:56','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-3rd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(4993,2,'2023-01-02 19:13:03','2023-01-02 19:13:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-3rd-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-4992\">Tuesday, January 3rd Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-01-02 19:13:03','2023-01-02 19:13:03','',2209,'https://kingsvillelivestock.com/?p=4993',0,'revision','',0),(4994,2,'2023-01-03 15:26:40','2023-01-03 15:26:40','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-01-03 15:26:40','2023-01-03 15:26:40','',639,'https://kingsvillelivestock.com/?p=4994',0,'revision','',0),(4995,2,'2023-01-03 15:27:35','2023-01-03 15:27:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-01-03 15:27:35','2023-01-03 15:27:35','',1967,'https://kingsvillelivestock.com/?p=4995',0,'revision','',0),(4996,2,'2023-01-04 06:05:20','2023-01-04 06:05:20','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-01-04 06:05:20','2023-01-04 06:05:20','',639,'https://kingsvillelivestock.com/?p=4996',0,'revision','',0),(4997,2,'2023-01-04 06:06:00','2023-01-04 06:06:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan.10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-01-04 06:06:00','2023-01-04 06:06:00','',1967,'https://kingsvillelivestock.com/?p=4997',0,'revision','',0),(4998,2,'2023-01-04 15:25:43','2023-01-04 15:25:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 3, 2023, </strong>3516 hd; Last week, 1839 hd; 2068 a year ago. Compared to 2 weeks ago feeder cattle sold $3-$7 higher &amp; cattle weighing 800lbs &amp; up-sold fully steady. Slaughter cows &amp; bulls sold $6-$10 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$222.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$186.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$179.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$174.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$133.00-$160.35</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$147.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $78.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$61.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $113.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">706lbs @$188.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">808lbs @$179.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">893lbs@$177.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">668lbs@$179.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">753lbs@$169.25</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 3, 2023 - Market Report','','publish','closed','open','','january-3-2023-market-report','','','2023-01-04 15:25:47','2023-01-04 15:25:47','',0,'https://kingsvillelivestock.com/?p=4998',0,'post','',0),(5000,2,'2023-01-04 15:25:43','2023-01-04 15:25:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 3, 2023, </strong>3516 hd; Last week, 1839 hd; 2068 a year ago. Compared to 2 weeks ago feeder cattle sold $3-$7 higher &amp; cattle weighing 800lbs &amp; up-sold fully steady. Slaughter cows &amp; bulls sold $6-$10 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$222.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$186.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$179.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$174.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$133.00-$160.35</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$147.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $78.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$61.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $113.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">706lbs @$188.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">808lbs @$179.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">893lbs@$177.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">668lbs@$179.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">753lbs@$169.25</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 3, 2022 - Market Report','','inherit','closed','closed','','4998-revision-v1','','','2023-01-04 15:25:43','2023-01-04 15:25:43','',4998,'https://kingsvillelivestock.com/?p=5000',0,'revision','',0),(5001,2,'2023-01-04 15:25:43','2023-01-04 15:25:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 3, 2023, </strong>3516 hd; Last week, 1839 hd; 2068 a year ago. Compared to 2 weeks ago feeder cattle sold $3-$7 higher &amp; cattle weighing 800lbs &amp; up-sold fully steady. Slaughter cows &amp; bulls sold $6-$10 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$222.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$186.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$179.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$174.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$133.00-$160.35</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$147.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $78.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$61.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $113.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">706lbs @$188.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">808lbs @$179.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">893lbs@$177.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">668lbs@$179.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">753lbs@$169.25</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','December 20, 2022 - Market Report','','inherit','closed','closed','','4998-revision-v1','','','2023-01-04 15:25:43','2023-01-04 15:25:43','',4998,'https://kingsvillelivestock.com/?p=5001',0,'revision','',0),(5002,2,'2023-01-04 15:25:47','2023-01-04 15:25:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 3, 2023, </strong>3516 hd; Last week, 1839 hd; 2068 a year ago. Compared to 2 weeks ago feeder cattle sold $3-$7 higher &amp; cattle weighing 800lbs &amp; up-sold fully steady. Slaughter cows &amp; bulls sold $6-$10 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$222.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$188.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$179.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$161.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$186.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$179.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$142.00-$174.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$133.00-$160.35</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$147.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $78.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$61.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $113.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">706lbs @$188.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">808lbs @$179.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">893lbs@$177.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">668lbs@$179.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">753lbs@$169.25</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 3, 2023 - Market Report','','inherit','closed','closed','','4998-revision-v1','','','2023-01-04 15:25:47','2023-01-04 15:25:47','',4998,'https://kingsvillelivestock.com/?p=5002',0,'revision','',0),(5004,2,'2023-01-09 18:35:13','2023-01-09 18:35:13','','Tuesday, January 10th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-january-10th-feeder-cattle-consignments','','','2023-01-09 18:35:13','2023-01-09 18:35:13','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-10th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5005,2,'2023-01-09 18:35:22','2023-01-09 18:35:22','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-10th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5004\">Tuesday, January 10th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-01-09 18:35:22','2023-01-09 18:35:22','',2209,'https://kingsvillelivestock.com/?p=5005',0,'revision','',0),(5006,2,'2023-01-11 07:08:36','2023-01-11 07:08:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-01-11 07:08:36','2023-01-11 07:08:36','',639,'https://kingsvillelivestock.com/?p=5006',0,'revision','',0),(5007,2,'2023-01-11 07:09:07','2023-01-11 07:09:07','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan.14th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Jan. 14th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-01-11 07:09:07','2023-01-11 07:09:07','',1967,'https://kingsvillelivestock.com/?p=5007',0,'revision','',0),(5008,2,'2023-01-11 16:17:13','2023-01-11 16:17:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 10, 2023, </strong>3754 hd; Last week, 3516 hd; 3782 a year ago. Feeder cattle sold $5-$15 higher w/ several strings of preconditioned feeder &amp; grass cattle. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$237.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$191.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$156.00-$177.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$239.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$181.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$145.00-$158.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$131.00-$141.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$81.00 - $90.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$72.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$57.00 - $71.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">508lbs @$237.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">629lbs @$200.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">802lbs@$182.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">917lbs@$177.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">688lbs@$175.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 10, 2023 - Market Report','','publish','closed','open','','january-10-2023-market-report','','','2023-01-11 16:17:17','2023-01-11 16:17:17','',0,'https://kingsvillelivestock.com/?p=5008',0,'post','',0),(5010,2,'2023-01-11 16:17:13','2023-01-11 16:17:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 10, 2023, </strong>3754 hd; Last week, 3516 hd; 3782 a year ago. Feeder cattle sold $5-$15 higher w/ several strings of preconditioned feeder &amp; grass cattle. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$237.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$191.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$156.00-$177.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$239.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$181.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$145.00-$158.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$131.00-$141.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$81.00 - $90.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$72.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$57.00 - $71.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">508lbs @$237.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">629lbs @$200.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">802lbs@$182.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">917lbs@$177.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">688lbs@$175.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 10, 2023 - Market Report','','inherit','closed','closed','','5008-revision-v1','','','2023-01-11 16:17:13','2023-01-11 16:17:13','',5008,'https://kingsvillelivestock.com/?p=5010',0,'revision','',0),(5011,2,'2023-01-11 16:17:13','2023-01-11 16:17:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 10, 2023, </strong>3754 hd; Last week, 3516 hd; 3782 a year ago. Feeder cattle sold $5-$15 higher w/ several strings of preconditioned feeder &amp; grass cattle. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$237.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$191.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$156.00-$177.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$239.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$181.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$145.00-$158.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$131.00-$141.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$81.00 - $90.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$72.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$57.00 - $71.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">508lbs @$237.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">629lbs @$200.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">802lbs@$182.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">917lbs@$177.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">688lbs@$175.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 3, 2023 - Market Report','','inherit','closed','closed','','5008-revision-v1','','','2023-01-11 16:17:13','2023-01-11 16:17:13','',5008,'https://kingsvillelivestock.com/?p=5011',0,'revision','',0),(5012,2,'2023-01-11 16:17:17','2023-01-11 16:17:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 10, 2023, </strong>3754 hd; Last week, 3516 hd; 3782 a year ago. Feeder cattle sold $5-$15 higher w/ several strings of preconditioned feeder &amp; grass cattle. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$237.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$204.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$191.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$182.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$156.00-$177.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$239.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$181.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$174.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$145.00-$158.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$131.00-$141.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$81.00 - $90.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$72.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$57.00 - $71.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">508lbs @$237.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">629lbs @$200.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">802lbs@$182.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Steers</td>\n<td style=\"width: 153.531px; height: 23px;\">917lbs@$177.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.531px; height: 23px;\">688lbs@$175.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.469px; height: 46px;\">Â </td>\n<td style=\"width: 153.531px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 23px;\">Â </td>\n<td style=\"width: 153.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.469px; height: 10px;\">Â </td>\n<td style=\"width: 153.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 10, 2023 - Market Report','','inherit','closed','closed','','5008-revision-v1','','','2023-01-11 16:17:17','2023-01-11 16:17:17','',5008,'https://kingsvillelivestock.com/?p=5012',0,'revision','',0),(5013,2,'2023-01-11 16:44:04','2023-01-11 16:44:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-10th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5004\">Tuesday, January 10th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #3366ff;\"><strong>Special Cow &amp; Bull Sale, Friday January 27th @ 5pm</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>JDH Farms: </b><b>2 </b>3 yr. old Reg Angus bulls.</li>\n<li><b>Thomas Farms: </b><b>1 </b>2 yr. old Blk Angus bull. Semen &amp; Trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>D-L Johnson Farms: </b><b>45 </b>Fancy Blk Angus 2 yr. old 1100lbs bred heifers. Bred LBWT Polled Hereford bulls. Start calving Mar. 20th for 45 days. Heifers are excellent quality, very gentle that have been pelvic measured prior to breeding. All heifers are home-raised &amp; had all shots.</li>\n<li><b>S &amp; S Farms : </b><b>45 </b>Blk &amp; Red Angus 2-4 yr old cows,2nd &amp; 3rd period. Bred Blk Sim Angus bulls. Start calving Mar. 15th</li>\n<li><b>Pinson Farms: </b><b>40 </b>Blk-Bwf 6-SS cows. Start calving Feb. 15th. Bred Blk Angus bulls</li>\n<li><b>Asbury Farms: </b><b>25 </b>Blk 2 yr. 1050lbs bred heifers. All heifers were pelvic measured prior to breeding &amp; had all shots. Bred LBWT Conway Blk Angus bulls.</li>\n<li><b>Anderson Farms: </b><b>14 </b>Blk 3-6 yr old cows w/ 200lbs calves at side.</li>\n<li><b>Clifton Farms: </b><b>10 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls</li>\n<li><b>Luther Farm: </b><b>10 </b>Blk Balancer 2 yr. old 1100lbs bred heifers <b>6</b> Rwf 2 yr. old 1100lbs bred heifers. <b>10 </b>Bwf 2 yr. old 1100lbs bred heifers. All heifers are home-raised &amp; bred to Show-Me-Select LBWT Blk Angus bulls. Start calving March 1st for 50 days. Gentle set of spring calving heifers.</li>\n<li><b>Thomas Farms: </b><b>10 </b>Blk-Red 2 yr. old 1100lbs bred heifers. Bred to LBWT Blk Angus bulls.</li>\n<li><b>John Sullins Farms: </b><b>2 </b>Blk heifer pairs <b>2</b> 3 yr. old Blk pairs. AI bred on November 27th to Sydgen Enhance Blk Angus bull</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-01-11 16:44:04','2023-01-11 16:44:04','',2209,'https://kingsvillelivestock.com/?p=5013',0,'revision','',0),(5014,2,'2023-01-11 16:48:59','2023-01-11 16:48:59','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-10th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5004\">Tuesday, January 10th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #3366ff;\"><strong>Special Cow &amp; Bull Sale, Friday January 27th @ 5pm</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>JDH Farms: </b><b>2 </b>3 yr. old Reg Angus bulls.</li>\n<li><b>Thomas Farms: </b><b>1 </b>2 yr. old Blk Angus bull. Semen &amp; Trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>D-L Johnson Farms: </b><b>45 </b>Fancy Blk Angus 2 yr. old 1100lbs bred heifers. Bred LBWT Polled Hereford bulls. Start calving Mar. 20th for 45 days. Heifers are excellent quality, very gentle that have been pelvic measured prior to breeding. All heifers are home-raised &amp; had all shots.</li>\n<li><b>S &amp; S Farms : </b><b>45 </b>Blk &amp; Red Angus 2-4 yr old cows,2nd &amp; 3rd period. Bred Blk Sim Angus bulls. Start calving Mar. 15th</li>\n<li><b>Pinson Farms: </b><b>40 </b>Blk-Bwf 6-SS cows. Start calving Feb. 15th. Bred Blk Angus bulls</li>\n<li><b>Asbury Farms: </b><b>25 </b>Blk 2 yr. 1050lbs bred heifers. All heifers were pelvic measured prior to breeding &amp; had all shots. Bred LBWT Conway Blk Angus bulls.</li>\n<li><b>Anderson Farms: </b><b>14 </b>Blk 3-6 yr old cows w/ 200lbs calves at side.</li>\n<li><b>Clifton Farms: </b><b>10 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls</li>\n<li><b>Luther Farm: </b><b>10 </b>Blk Balancer 2 yr. old 1100lbs bred heifers <b>6</b> Rwf 2 yr. old 1100lbs bred heifers. <b>10 </b>Bwf 2 yr. old 1100lbs bred heifers. All heifers are home-raised &amp; bred to Show-Me-Select LBWT Blk Angus bulls. Start calving March 1st for 50 days. Gentle set of spring calving heifers.</li>\n<li><b>Thomas Farms: </b><b>10 </b>Blk-Red 2 yr. old 1100lbs bred heifers. Bred to LBWT Blk Angus bulls.</li>\n<li><b>John Sullins Farms: </b><b>2 </b>Blk heifer pairs <b>2</b> 3 yr. old Blk pairs. AI bred on November 27th to Sydgen Enhance Blk Angus bull</li>\n<li><b>T &amp; L Farms: </b><b>12 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-01-11 16:48:59','2023-01-11 16:48:59','',2209,'https://kingsvillelivestock.com/?p=5014',0,'revision','',0),(5015,2,'2023-01-11 17:05:25','2023-01-11 17:05:25','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-10th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5004\">Tuesday, January 10th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #3366ff;\"><strong>Special Cow &amp; Bull Sale, Friday January 27th @ 5pm</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>JDH Farms: </b><b>2 </b>3 yr. old Reg Angus bulls.</li>\n<li><b>Thomas Farms: </b><b>1 </b>2 yr. old Blk Angus bull. Semen &amp; Trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>D-L Johnson Farms: </b><b>45 </b>Fancy Blk Angus 2 yr. old 1100lbs bred heifers. Bred LBWT Polled Hereford bulls. Start calving Mar. 20th for 45 days. Heifers are excellent quality, very gentle that have been pelvic measured prior to breeding. All heifers are home-raised &amp; had all shots.</li>\n<li><b>S &amp; S Farms : </b><b>45 </b>Blk &amp; Red Angus 2-4 yr old cows,2nd &amp; 3rd period. Bred Blk Sim Angus bulls. Start calving Mar. 15th</li>\n<li><b>Pinson Farms: </b><b>40 </b>Blk-Bwf 6-SS cows. Start calving Feb. 15th. Bred Blk Angus bulls</li>\n<li><b>Asbury Farms: </b><b>25 </b>Blk 2 yr. 1050lbs bred heifers. All heifers were pelvic measured prior to breeding &amp; had all shots. Bred LBWT Conway Blk Angus bulls.</li>\n<li><b>Anderson Farms: </b><b>14 </b>Blk 3-6 yr old cows w/ 200lbs calves at side.</li>\n<li><b>Clifton Farms: </b><b>10 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls</li>\n<li><b>Luther Farm: </b><b>10 </b>Blk Balancer 2 yr. old 1100lbs bred heifers <b>6</b> Rwf 2 yr. old 1100lbs bred heifers. <b>10 </b>Bwf 2 yr. old 1100lbs bred heifers. All heifers are home-raised &amp; bred to Show-Me-Select LBWT Blk Angus bulls. Start calving March 1st for 50 days. Gentle set of spring calving heifers.</li>\n<li><b>Thomas Farms: </b><b>10 </b>Blk-Red 2 yr. old 1100lbs bred heifers. Bred to LBWT Blk Angus bulls.</li>\n<li><b>John Sullins Farms: </b><b>2 </b>Blk heifer pairs <b>2</b> 3 yr. old Blk pairs. AI bred on November 27th to Sydgen Enhance Blk Angus bull</li>\n<li><b>T &amp; L Farms: </b><b>12 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls.Â </li>\n<li><b>Tyler Farms: </b><b>20 </b>Blk cows w/ 100-20lbs calves at side. Cows will sell open &amp; breed to bull of your choice.</li>\n<li><b>Randall Bros.: </b><b>40 </b>Blk 4-6 yr. old cows,2nd period. Bred to Blk Angus bulls. Start calving April 1st, nice set of cows &amp; current on all shots.Â </li>\n<li><b>Graysen Farms: </b><b>75 </b>Blk-BwfÂ  3-7 yr old cows, 3rd period. Bred to Blk Sim-Angus bulls. Start calving Feb. 1st.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-01-11 17:05:25','2023-01-11 17:05:25','',2209,'https://kingsvillelivestock.com/?p=5015',0,'revision','',0),(5016,2,'2023-01-11 17:29:27','2023-01-11 17:29:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-10th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5004\">Tuesday, January 10th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #3366ff;\"><strong>Special Cow &amp; Bull Sale, Friday January 27th @ 5pm</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>JDH Farms: </b><b>2 </b>3 yr. old Reg Angus bulls.</li>\n<li><b>Thomas Farms: </b><b>1 </b>2 yr. old Blk Angus bull. Semen &amp; Trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>D-L Johnson Farms: </b><b>45 </b>Fancy Blk Angus 2 yr. old 1100lbs bred heifers. Bred LBWT Polled Hereford bulls. Start calving Mar. 20th for 45 days. Heifers are excellent quality, very gentle that have been pelvic measured prior to breeding. All heifers are home-raised &amp; had all shots.</li>\n<li><b>S &amp; S Farms : </b><b>45 </b>Blk &amp; Red Angus 2-4 yr old cows,2nd &amp; 3rd period. Bred Blk Sim Angus bulls. Start calving Mar. 15th</li>\n<li><b>Pinson Farms: </b><b>40 </b>Blk-Bwf 6-SS cows. Start calving Feb. 15th. Bred Blk Angus bulls</li>\n<li><b>Asbury Farms: </b><b>25 </b>Blk 2 yr. 1050lbs bred heifers. All heifers were pelvic measured prior to breeding &amp; had all shots. Bred LBWT Conway Blk Angus bulls.</li>\n<li><b>Anderson Farms: </b><b>14 </b>Blk 3-6 yr old cows w/ 200lbs calves at side.</li>\n<li><b>Clifton Farms: </b><b>10 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls</li>\n<li><b>Luther Farm: </b><b>10 </b>Blk Balancer 2 yr. old 1100lbs bred heifers <b>6</b> Rwf 2 yr. old 1100lbs bred heifers. <b>10 </b>Bwf 2 yr. old 1100lbs bred heifers. All heifers are home-raised &amp; bred to Show-Me-Select LBWT Blk Angus bulls. Start calving March 1st for 50 days. Gentle set of spring calving heifers.</li>\n<li><b>Thomas Farms: </b><b>10 </b>Blk-Red 2 yr. old 1100lbs bred heifers. Bred to LBWT Blk Angus bulls.</li>\n<li><b>John Sullins Farms: </b><b>2 </b>Blk heifer pairs <b>2</b> 3 yr. old Blk pairs. AI bred on November 27th to Sydgen Enhance Blk Angus bull</li>\n<li><b>T &amp; L Farms: </b><b>12 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls.</li>\n<li><b>Tyler Farms: </b><b>20 </b>Blk cows w/ 100-20lbs calves at side. Cows will sell open &amp; breed to bull of your choice.</li>\n<li><b>Randall Bros.: </b><b>40 </b>Blk 4-6 yr. old cows,2nd period. Bred to Blk Angus bulls. Start calving April 1st, nice set of cows &amp; current on all shots.</li>\n<li><b>Graysen Farms: </b><b>75 </b>Blk-BwfÂ  3-7 yr old cows, 3rd period. Bred to Blk Sim-Angus bulls. Start calving Feb. 1st.</li>\n<li><b>Miller Farms: </b><b>15 </b>Blk 2 yr. old1100lbsÂ  bred heifers. All heifers home-raised &amp; nice set of spring calving heifers. Start calving March 10th for 45 days. Bred LBWT Blk Angus bulls w/ CED +9.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-01-11 17:29:27','2023-01-11 17:29:27','',2209,'https://kingsvillelivestock.com/?p=5016',0,'revision','',0),(5017,2,'2023-01-11 18:17:57','2023-01-11 18:17:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-10th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5004\">Tuesday, January 10th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #3366ff;\"><strong>Special Cow &amp; Bull Sale, Friday January 27th @ 5pm</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>JDH Farms: </b><b>2 </b>3 yr. old Reg Angus bulls.</li>\n<li><b>Thomas Farms: </b><b>1 </b>2 yr. old Blk Angus bull. Semen &amp; Trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>D-L Johnson Farms: </b><b>45 </b>Fancy Blk Angus 2 yr. old 1100lbs bred heifers. Bred LBWT Polled Hereford bulls. Start calving Mar. 20th for 45 days. Heifers are excellent quality, very gentle that have been pelvic measured prior to breeding. All heifers are home-raised &amp; had all shots.</li>\n<li><b>S &amp; S Farms : </b><b>45 </b>Blk &amp; Red Angus 2-4 yr old cows,2nd &amp; 3rd period. Bred Blk Sim Angus bulls. Start calving Mar. 15th</li>\n<li><b>Pinson Farms: </b><b>40 </b>Blk-Bwf 6-SS cows. Start calving Feb. 15th. Bred Blk Angus bulls</li>\n<li><b>Asbury Farms: </b><b>25 </b>Blk 2 yr. 1050lbs bred heifers. All heifers were pelvic measured prior to breeding &amp; had all shots. Bred LBWT Conway Blk Angus bulls.</li>\n<li><b>Anderson Farms: </b><b>14 </b>Blk 3-6 yr old cows w/ 200lbs calves at side.</li>\n<li><b>Clifton Farms: </b><b>10 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls</li>\n<li><b>Luther Farm: </b><b>10 </b>Blk Balancer 2 yr. old 1100lbs bred heifers <b>6</b> Rwf 2 yr. old 1100lbs bred heifers. <b>10 </b>Bwf 2 yr. old 1100lbs bred heifers. All heifers are home-raised &amp; bred to Show-Me-Select LBWT Blk Angus bulls. Start calving March 1st for 50 days. Gentle set of spring calving heifers.</li>\n<li><b>Thomas Farms: </b><b>10 </b>Blk-Red 2 yr. old 1100lbs bred heifers. Bred to LBWT Blk Angus bulls.</li>\n<li><b>John Sullins Farms: </b><b>2 </b>Blk heifer pairs <b>2</b> 3 yr. old Blk pairs. AI bred on November 27th to Sydgen Enhance Blk Angus bull</li>\n<li><b>T &amp; L Farms: </b><b>12 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls.</li>\n<li><b>Tyler Farms: </b><b>20 </b>Blk cows w/ 100-20lbs calves at side. Cows will sell open &amp; breed to bull of your choice.</li>\n<li><b>Randall Bros.: </b><b>40 </b>Blk 4-6 yr. old cows,2nd period. Bred to Blk Angus bulls. Start calving April 1st, nice set of cows &amp; current on all shots.</li>\n<li><b>Graysen Farms: </b><b>75 </b>Blk-BwfÂ  3-7 yr old cows, 3rd period. Bred to Blk Sim-Angus bulls. Start calving Feb. 1st.</li>\n<li><b>Miller Farms: </b><b>15 </b>Blk 2 yr. old1100lbsÂ  bred heifers. All heifers home-raised &amp; nice set of spring calving heifers. Start calving March 10th for 45 days. Bred LBWT Blk Angus bulls w/ CED +9.</li>\n<li><b>B-T Farms: </b><b>60 </b>Blk 2 yr. old1000lbs bred heifers,3rd period. Bred LBWT Blk Angus bulls &amp; current on all shots.Â </li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-01-11 18:17:57','2023-01-11 18:17:57','',2209,'https://kingsvillelivestock.com/?p=5017',0,'revision','',0),(5018,2,'2023-01-16 17:36:15','2023-01-16 17:36:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-01-16 17:36:15','2023-01-16 17:36:15','',639,'https://kingsvillelivestock.com/?p=5018',0,'revision','',0),(5019,2,'2023-01-16 17:36:44','2023-01-16 17:36:44','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-01-16 17:36:44','2023-01-16 17:36:44','',1967,'https://kingsvillelivestock.com/?p=5019',0,'revision','',0),(5020,2,'2023-01-16 17:37:43','2023-01-16 17:37:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-10th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5004\">Tuesday, January 10th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #3366ff;\"><strong>Special Cow &amp; Bull Sale, Friday January 27th @ 5pm</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>JDH Farms: </b><b>2 </b>3 yr. old Reg Angus bulls.</li>\n<li><b>Thomas Farms: </b><b>1 </b>2 yr. old Blk Angus bull. Semen &amp; Trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>D-L Johnson Farms: </b><b>45 </b>Fancy Blk Angus 2 yr. old 1100lbs bred heifers. Bred LBWT Polled Hereford bulls. Start calving Mar. 20th for 45 days. Heifers are excellent quality, very gentle that have been pelvic measured prior to breeding. All heifers are home-raised &amp; had all shots.</li>\n<li><b>S &amp; S Farms : </b><b>45 </b>Blk &amp; Red Angus 2-4 yr old cows,2nd &amp; 3rd period. Bred Blk Sim Angus bulls. Start calving Mar. 15th</li>\n<li><b>Pinson Farms: </b><b>40 </b>Blk-Bwf 6-SS cows. Start calving Feb. 15th. Bred Blk Angus bulls</li>\n<li><b>Asbury Farms: </b><b>25 </b>Blk 2 yr. 1050lbs bred heifers. All heifers were pelvic measured prior to breeding &amp; had all shots. Bred LBWT Conway Blk Angus bulls.</li>\n<li><b>Anderson Farms: </b><b>14 </b>Blk 3-6 yr old cows w/ 200lbs calves at side.</li>\n<li><b>Clifton Farms: </b><b>10 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls</li>\n<li><b>Luther Farm: </b><b>10 </b>Blk Balancer 2 yr. old 1100lbs bred heifers <b>6</b> Rwf 2 yr. old 1100lbs bred heifers. <b>10 </b>Bwf 2 yr. old 1100lbs bred heifers. All heifers are home-raised &amp; bred to Show-Me-Select LBWT Blk Angus bulls. Start calving March 1st for 50 days. Gentle set of spring calving heifers.</li>\n<li><b>Thomas Farms: </b><b>10 </b>Blk-Red 2 yr. old 1100lbs bred heifers. Bred to LBWT Blk Angus bulls.</li>\n<li><b>John Sullins Farms: </b><b>2 </b>Blk heifer pairs <b>2</b> 3 yr. old Blk pairs. AI bred on November 27th to Sydgen Enhance Blk Angus bull</li>\n<li><b>T &amp; L Farms: </b><b>12 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls.</li>\n<li><b>Tyler Farms: </b><b>20 </b>Blk cows w/ 100-20lbs calves at side. Cows will sell open &amp; breed to bull of your choice.</li>\n<li><b>Randall Bros.: </b><b>40 </b>Blk 4-6 yr. old cows,2nd period. Bred to Blk Angus bulls. Start calving April 1st, nice set of cows &amp; current on all shots.</li>\n<li><b>Graysen Farms: </b><b>75 </b>Blk-BwfÂ  3-7 yr old cows, 3rd period. Bred to Blk Sim-Angus bulls. Start calving Feb. 1st.</li>\n<li><b>Miller Farms: </b><b>15 </b>Blk 2 yr. old1100lbsÂ  bred heifers. All heifers home-raised &amp; nice set of spring calving heifers. Start calving March 10th for 45 days. Bred LBWT Blk Angus bulls w/ CED +9.</li>\n<li><b>B-T Farms: </b><b>60 </b>Blk 2 yr. old1000lbs bred heifers,3rd period. Bred LBWT Blk Angus bulls &amp; current on all shots.</li>\n<li><b>Staus Farms: </b><b>30 </b>Blk-Red 6-SS yr. old cows, 3rd period. Bred Blk Angus bulls.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-01-16 17:37:43','2023-01-16 17:37:43','',2209,'https://kingsvillelivestock.com/?p=5020',0,'revision','',0),(5021,2,'2023-01-16 18:07:32','2023-01-16 18:07:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-10th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5004\">Tuesday, January 10th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #3366ff;\"><strong>Special Cow &amp; Bull Sale, Friday January 27th @ 5pm</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>JDH Farms: </b><b>2 </b>3 yr. old Reg Angus bulls.</li>\n<li><b>Thomas Farms: </b><b>1 </b>2 yr. old Blk Angus bull. Semen &amp; Trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>D-L Johnson Farms: </b><b>45 </b>Fancy Blk Angus 2 yr. old 1100lbs bred heifers. Bred LBWT Polled Hereford bulls. Start calving Mar. 20th for 45 days. Heifers are excellent quality, very gentle that have been pelvic measured prior to breeding. All heifers are home-raised &amp; had all shots.</li>\n<li><b>S &amp; S Farms : </b><b>45 </b>Blk &amp; Red Angus 2-4 yr old cows,2nd &amp; 3rd period. Bred Blk Sim Angus bulls. Start calving Mar. 15th</li>\n<li><b>Pinson Farms: </b><b>40 </b>Blk-Bwf 6-SS cows. Start calving Feb. 15th. Bred Blk Angus bulls</li>\n<li><b>Asbury Farms: </b><b>25 </b>Blk 2 yr. 1050lbs bred heifers. All heifers were pelvic measured prior to breeding &amp; had all shots. Bred LBWT Conway Blk Angus bulls.</li>\n<li><b>Anderson Farms: </b><b>14 </b>Blk 3-6 yr old cows w/ 200lbs calves at side.</li>\n<li><b>Clifton Farms: </b><b>10 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls</li>\n<li><b>Luther Farm: </b><b>10 </b>Blk Balancer 2 yr. old 1100lbs bred heifers <b>6</b> Rwf 2 yr. old 1100lbs bred heifers. <b>10 </b>Bwf 2 yr. old 1100lbs bred heifers. All heifers are home-raised &amp; bred to Show-Me-Select LBWT Blk Angus bulls. Start calving March 1st for 50 days. Gentle set of spring calving heifers.</li>\n<li><b>Thomas Farms: </b><b>10 </b>Blk-Red 2 yr. old 1100lbs bred heifers. Bred to LBWT Blk Angus bulls.</li>\n<li><b>John Sullins Farms: </b><b>2 </b>Blk heifer pairs <b>2</b> 3 yr. old Blk pairs. AI bred on November 27th to Sydgen Enhance Blk Angus bull</li>\n<li><b>T &amp; L Farms: </b><b>12 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls.</li>\n<li><b>Tyler Farms: </b><b>20 </b>Blk cows w/ 100-20lbs calves at side. Cows will sell open &amp; breed to bull of your choice.</li>\n<li><b>Randall Bros.: </b><b>40 </b>Blk 4-6 yr. old cows,2nd period. Bred to Blk Angus bulls. Start calving April 1st, nice set of cows &amp; current on all shots.</li>\n<li><b>Graysen Farms: </b><b>75 </b>Blk-BwfÂ  3-7 yr old cows, 3rd period. Bred to Blk Sim-Angus bulls. Start calving Feb. 1st.</li>\n<li><b>Miller Farms: </b><b>15 </b>Blk 2 yr. old1100lbsÂ  bred heifers. All heifers home-raised &amp; nice set of spring calving heifers. Start calving March 10th for 45 days. Bred LBWT Blk Angus bulls w/ CED +9.</li>\n<li><b>Staus Farms: </b><b>30 </b>Blk-Red 6-SS yr. old cows, 3rd period. Bred Blk Angus bulls.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-01-16 18:07:32','2023-01-16 18:07:32','',2209,'https://kingsvillelivestock.com/?p=5021',0,'revision','',0),(5022,2,'2023-01-16 19:07:13','2023-01-16 19:07:13','','Tuesday, January 10th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-january-10th-feeder-cattle-consignments-2','','','2023-01-16 19:07:13','2023-01-16 19:07:13','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-10th-Feeder-Cattle-Consignments-1.pdf',0,'attachment','application/pdf',0),(5023,2,'2023-01-16 19:07:45','2023-01-16 19:07:45','','Tuesday, January 17th Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-january-17th-feeder-cattle-consignments','','','2023-01-16 19:07:45','2023-01-16 19:07:45','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-17th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5024,2,'2023-01-16 19:07:54','2023-01-16 19:07:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-17th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5023\">Tuesday, January 17th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #3366ff;\"><strong>Special Cow &amp; Bull Sale, Friday January 27th @ 5pm</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>JDH Farms: </b><b>2 </b>3 yr. old Reg Angus bulls.</li>\n<li><b>Thomas Farms: </b><b>1 </b>2 yr. old Blk Angus bull. Semen &amp; Trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>D-L Johnson Farms: </b><b>45 </b>Fancy Blk Angus 2 yr. old 1100lbs bred heifers. Bred LBWT Polled Hereford bulls. Start calving Mar. 20th for 45 days. Heifers are excellent quality, very gentle that have been pelvic measured prior to breeding. All heifers are home-raised &amp; had all shots.</li>\n<li><b>S &amp; S Farms : </b><b>45 </b>Blk &amp; Red Angus 2-4 yr old cows,2nd &amp; 3rd period. Bred Blk Sim Angus bulls. Start calving Mar. 15th</li>\n<li><b>Pinson Farms: </b><b>40 </b>Blk-Bwf 6-SS cows. Start calving Feb. 15th. Bred Blk Angus bulls</li>\n<li><b>Asbury Farms: </b><b>25 </b>Blk 2 yr. 1050lbs bred heifers. All heifers were pelvic measured prior to breeding &amp; had all shots. Bred LBWT Conway Blk Angus bulls.</li>\n<li><b>Anderson Farms: </b><b>14 </b>Blk 3-6 yr old cows w/ 200lbs calves at side.</li>\n<li><b>Clifton Farms: </b><b>10 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls</li>\n<li><b>Luther Farm: </b><b>10 </b>Blk Balancer 2 yr. old 1100lbs bred heifers <b>6</b> Rwf 2 yr. old 1100lbs bred heifers. <b>10 </b>Bwf 2 yr. old 1100lbs bred heifers. All heifers are home-raised &amp; bred to Show-Me-Select LBWT Blk Angus bulls. Start calving March 1st for 50 days. Gentle set of spring calving heifers.</li>\n<li><b>Thomas Farms: </b><b>10 </b>Blk-Red 2 yr. old 1100lbs bred heifers. Bred to LBWT Blk Angus bulls.</li>\n<li><b>John Sullins Farms: </b><b>2 </b>Blk heifer pairs <b>2</b> 3 yr. old Blk pairs. AI bred on November 27th to Sydgen Enhance Blk Angus bull</li>\n<li><b>T &amp; L Farms: </b><b>12 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls.</li>\n<li><b>Tyler Farms: </b><b>20 </b>Blk cows w/ 100-20lbs calves at side. Cows will sell open &amp; breed to bull of your choice.</li>\n<li><b>Randall Bros.: </b><b>40 </b>Blk 4-6 yr. old cows,2nd period. Bred to Blk Angus bulls. Start calving April 1st, nice set of cows &amp; current on all shots.</li>\n<li><b>Graysen Farms: </b><b>75 </b>Blk-BwfÂ  3-7 yr old cows, 3rd period. Bred to Blk Sim-Angus bulls. Start calving Feb. 1st.</li>\n<li><b>Miller Farms: </b><b>15 </b>Blk 2 yr. old1100lbsÂ  bred heifers. All heifers home-raised &amp; nice set of spring calving heifers. Start calving March 10th for 45 days. Bred LBWT Blk Angus bulls w/ CED +9.</li>\n<li><b>Staus Farms: </b><b>30 </b>Blk-Red 6-SS yr. old cows, 3rd period. Bred Blk Angus bulls.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-01-16 19:07:54','2023-01-16 19:07:54','',2209,'https://kingsvillelivestock.com/?p=5024',0,'revision','',0),(5025,2,'2023-01-16 20:40:31','2023-01-16 20:40:31','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-01-16 20:40:31','2023-01-16 20:40:31','',639,'https://kingsvillelivestock.com/?p=5025',0,'revision','',0),(5026,2,'2023-01-16 20:41:05','2023-01-16 20:41:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-01-16 20:41:05','2023-01-16 20:41:05','',1967,'https://kingsvillelivestock.com/?p=5026',0,'revision','',0),(5028,2,'2023-01-17 14:45:59','2023-01-17 14:45:59','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-17th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5023\">Tuesday, January 17th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #3366ff;\"><strong>Special Cow &amp; Bull Sale, Friday January 27th @ 5pm</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 5 pm</i></b></p>\n<ul>\n<li><b>JDH Farms: </b><b>2 </b>3 yr. old Reg Angus bulls.</li>\n<li><b>Thomas Farms: </b><b>1 </b>2 yr. old Blk Angus bull. Semen &amp; Trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>D-L Johnson Farms: </b><b>45 </b>Fancy Blk Angus 2 yr. old 1100lbs bred heifers. Bred LBWT Polled Hereford bulls. Start calving Mar. 20th for 45 days. Heifers are excellent quality, very gentle that have been pelvic measured prior to breeding. All heifers are home-raised &amp; had all shots.</li>\n<li><b>S &amp; S Farms : </b><b>45 </b>Blk &amp; Red Angus 2-4 yr old cows,2nd &amp; 3rd period. Bred Blk Sim Angus bulls. Start calving Mar. 15th</li>\n<li><b>Pinson Farms: </b><b>40 </b>Blk-Bwf 6-SS cows. Start calving Feb. 15th. Bred Blk Angus bulls</li>\n<li><b>Asbury Farms: </b><b>25 </b>Blk 2 yr. 1050lbs bred heifers. All heifers were pelvic measured prior to breeding &amp; had all shots. Bred LBWT Conway Blk Angus bulls.</li>\n<li><b>Anderson Farms: </b><b>14 </b>Blk 3-6 yr old cows w/ 200lbs calves at side.</li>\n<li><b>Clifton Farms: </b><b>10 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls</li>\n<li><b>Luther Farm: </b><b>10 </b>Blk Balancer 2 yr. old 1100lbs bred heifers <b>6</b> Rwf 2 yr. old 1100lbs bred heifers. <b>10 </b>Bwf 2 yr. old 1100lbs bred heifers. All heifers are home-raised &amp; bred to Show-Me-Select LBWT Blk Angus bulls. Start calving March 1st for 50 days. Gentle set of spring calving heifers.</li>\n<li><b>Thomas Farms: </b><b>10 </b>Blk-Red 2 yr. old 1100lbs bred heifers. Bred to LBWT Blk Angus bulls.</li>\n<li><b>John Sullins Farms: </b><b>2 </b>Blk heifer pairs <b>2</b> 3 yr. old Blk pairs. AI bred on November 27th to Sydgen Enhance Blk Angus bull</li>\n<li><b>T &amp; L Farms: </b><b>12 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls.</li>\n<li><b>Tyler Farms: </b><b>20 </b>Blk cows w/ 100-20lbs calves at side. Cows will sell open &amp; breed to bull of your choice.</li>\n<li><b>Randall Bros.: </b><b>40 </b>Blk 4-6 yr. old cows,2nd period. Bred to Blk Angus bulls. Start calving April 1st, nice set of cows &amp; current on all shots.</li>\n<li><b>Graysen Farms: </b><b>75 </b>Blk-BwfÂ  3-7 yr old cows, 3rd period. Bred to Blk Sim-Angus bulls. Start calving Feb. 1st.</li>\n<li><b>Miller Farms: </b><b>15 </b>Blk 2 yr. old1100lbsÂ  bred heifers. All heifers home-raised &amp; nice set of spring calving heifers. Start calving March 10th for 45 days. Bred LBWT Blk Angus bulls w/ CED +9.</li>\n<li><b>Staus Farms: </b><b>30 </b>Blk-Red 6-SS yr. old cows, 3rd period. Bred Blk Angus bulls.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-01-17 14:45:59','2023-01-17 14:45:59','',2209,'https://kingsvillelivestock.com/?p=5028',0,'revision','',0),(5029,2,'2023-01-18 11:02:39','2023-01-18 11:02:39','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-01-18 11:02:39','2023-01-18 11:02:39','',639,'https://kingsvillelivestock.com/?p=5029',0,'revision','',0),(5030,2,'2023-01-18 11:03:18','2023-01-18 11:03:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-01-18 11:03:18','2023-01-18 11:03:18','',1967,'https://kingsvillelivestock.com/?p=5030',0,'revision','',0),(5031,2,'2023-01-18 16:21:33','2023-01-18 16:21:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-17th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5023\">Tuesday, January 17th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #3366ff;\"><strong>Special Cow &amp; Bull Sale, Friday January 27th @ 5pm</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 5 pm</i></b></p>\n<ul>\n<li><b>JDH Farms: </b><b>2 </b>3 yr. old Reg Angus bulls.</li>\n<li><b>Thomas Farms: </b><b>1 </b>2 yr. old Blk Angus bull. Semen &amp; Trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>D-L Johnson Farms: </b><b>45 </b>Fancy Blk Angus 2 yr. old 1100lbs bred heifers. Bred LBWT Polled Hereford bulls. Start calving Mar. 20th for 45 days. Heifers are excellent quality, very gentle that have been pelvic measured prior to breeding. All heifers are home-raised &amp; had all shots.</li>\n<li><b>S &amp; S Farms : </b><b>45 </b>Blk &amp; Red Angus 2-4 yr old cows,2nd &amp; 3rd period. Bred Blk Sim Angus bulls. Start calving Mar. 15th</li>\n<li><b>Pinson Farms: </b><b>40 </b>Blk-Bwf 6-SS cows. Start calving Feb. 15th. Bred Blk Angus bulls</li>\n<li><b>Asbury Farms: </b><b>25 </b>Blk 2 yr. 1050lbs bred heifers. All heifers were pelvic measured prior to breeding &amp; had all shots. Bred LBWT Conway Blk Angus bulls.</li>\n<li><b>Anderson Farms: </b><b>14 </b>Blk 3-6 yr old cows w/ 200lbs calves at side.</li>\n<li><b>Clifton Farms: </b><b>10 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls</li>\n<li><b>Luther Farm: </b>Â <b>6</b> Red-Rwf 2 yr. old 1100lbs bred heifers. <b>10 </b>Bwf 2 yr. old 1100lbs bred heifers. All heifers are home-raised &amp; bred to Show-Me-Select LBWT Blk Angus bulls. Start calving March 1st for 50 days. Gentle set of spring calving heifers.</li>\n<li><b>Thomas Farms: </b><b>10 </b>Blk-Red 2 yr. old 1100lbs bred heifers. Bred to LBWT Blk Angus bulls.</li>\n<li><b>John Sullins Farms: </b><b>2 </b>Blk heifer pairs <b>2</b> 3 yr. old Blk pairs. AI bred on November 27th to Sydgen Enhance Blk Angus bull</li>\n<li><b>T &amp; L Farms: </b><b>12 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls.</li>\n<li><b>Tyler Farms: </b><b>20 </b>Blk cows w/ 100-20lbs calves at side. Cows will sell open &amp; breed to bull of your choice.</li>\n<li><b>Randall Bros.: </b><b>40 </b>Blk 4-6 yr. old cows,2nd period. Bred to Blk Angus bulls. Start calving April 1st, nice set of cows &amp; current on all shots.</li>\n<li><b>Graysen Farms: </b><b>75 </b>Blk-BwfÂ  3-7 yr old cows, 3rd period. Bred to Blk Sim-Angus bulls. Start calving Feb. 1st.</li>\n<li><b>Miller Farms: </b><b>15 </b>Blk 2 yr. old1100lbsÂ  bred heifers. All heifers home-raised &amp; nice set of spring calving heifers. Start calving March 10th for 45 days. Bred LBWT Blk Angus bulls w/ CED +9.</li>\n<li><b>Staus Farms: </b><b>30 </b>Blk-Red 6-SS yr. old cows, 3rd period. Bred Blk Angus bulls.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-01-18 16:21:33','2023-01-18 16:21:33','',2209,'https://kingsvillelivestock.com/?p=5031',0,'revision','',0),(5032,2,'2023-01-18 17:02:01','2023-01-18 17:02:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 17, 2023, </strong>5064 hd; Last week, 3754 hd; 3501 a year ago. Feeder cattle sold fully steady w/ several strings of reputation feeder &amp; grass cattle w/ good buyer demand. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$239.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$241.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$234.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$205.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.50-$178.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$165.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$226.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$174.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$155.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $92.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$55.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">688lbs @$191.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">771lbs @$176.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">778lbs@$183.00</td>\n</tr>\n<tr>\n<td style=\"width: 151.484px;\">Steers</td>\n<td style=\"width: 153.516px;\">795lbs ( colored) @$173.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">813lbs@$178.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">823lbs@$174.10</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 46px;\">680lbs@$176.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">688lbs@$175.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">693lbs@$176.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 17, 2023 - Market Report','','publish','closed','open','','january-17-2023-market-report','','','2023-01-18 17:02:04','2023-01-18 17:02:04','',0,'https://kingsvillelivestock.com/?p=5032',0,'post','',0),(5034,2,'2023-01-18 17:02:01','2023-01-18 17:02:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 17, 2023, </strong>5064 hd; Last week, 3754 hd; 3501 a year ago. Feeder cattle sold fully steady w/ several strings of reputation feeder &amp; grass cattle w/ good buyer demand. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$239.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$241.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$234.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$205.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.50-$178.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$165.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$226.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$174.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$155.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $92.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$55.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">688lbs @$191.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">771lbs @$176.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">778lbs@$183.00</td>\n</tr>\n<tr>\n<td style=\"width: 151.484px;\">Steers</td>\n<td style=\"width: 153.516px;\">795lbs ( colored) @$173.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">813lbs@$178.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">823lbs@$174.10</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 46px;\">680lbs@$176.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">688lbs@$175.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">693lbs@$176.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 17, 2023 - Market Report','','inherit','closed','closed','','5032-revision-v1','','','2023-01-18 17:02:01','2023-01-18 17:02:01','',5032,'https://kingsvillelivestock.com/?p=5034',0,'revision','',0),(5035,2,'2023-01-18 17:02:01','2023-01-18 17:02:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 17, 2023, </strong>5064 hd; Last week, 3754 hd; 3501 a year ago. Feeder cattle sold fully steady w/ several strings of reputation feeder &amp; grass cattle w/ good buyer demand. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$239.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$241.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$234.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$205.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.50-$178.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$165.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$226.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$174.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$155.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $92.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$55.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">688lbs @$191.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">771lbs @$176.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">778lbs@$183.00</td>\n</tr>\n<tr>\n<td style=\"width: 151.484px;\">Steers</td>\n<td style=\"width: 153.516px;\">795lbs ( colored) @$173.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">813lbs@$178.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">823lbs@$174.10</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 46px;\">680lbs@$176.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">688lbs@$175.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">693lbs@$176.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 10, 2023 - Market Report','','inherit','closed','closed','','5032-revision-v1','','','2023-01-18 17:02:01','2023-01-18 17:02:01','',5032,'https://kingsvillelivestock.com/?p=5035',0,'revision','',0),(5037,2,'2023-01-18 17:02:04','2023-01-18 17:02:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 17, 2023, </strong>5064 hd; Last week, 3754 hd; 3501 a year ago. Feeder cattle sold fully steady w/ several strings of reputation feeder &amp; grass cattle w/ good buyer demand. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$239.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$241.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$234.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$205.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.50-$178.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$165.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$226.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$145.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$140.00-$174.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$155.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $92.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$55.00 - $69.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $108.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">688lbs @$191.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">771lbs @$176.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">778lbs@$183.00</td>\n</tr>\n<tr>\n<td style=\"width: 151.484px;\">Steers</td>\n<td style=\"width: 153.516px;\">795lbs ( colored) @$173.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">813lbs@$178.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">823lbs@$174.10</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 46px;\">680lbs@$176.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">688lbs@$175.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">693lbs@$176.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 17, 2023 - Market Report','','inherit','closed','closed','','5032-revision-v1','','','2023-01-18 17:02:04','2023-01-18 17:02:04','',5032,'https://kingsvillelivestock.com/?p=5037',0,'revision','',0),(5038,2,'2023-01-23 16:22:03','2023-01-23 16:22:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-17th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5023\">Tuesday, January 17th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #3366ff;\"><strong>Special Cow &amp; Bull Sale, Friday January 27th @ 5pm</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 5 pm</i></b></p>\n<ul>\n<li><b>JDH Farms: </b><b>2 </b>3 yr. old Reg Angus bulls.</li>\n<li><b>Thomas Farms: </b><b>1 </b>2 yr. old Blk Angus bull. Semen &amp; Trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>D-L Johnson Farms: </b><b>45 </b>Fancy Blk Angus 2 yr. old 1100lbs bred heifers. Bred LBWT Polled Hereford bulls. Start calving Mar. 20th for 45 days. Heifers are excellent quality, very gentle that have been pelvic measured prior to breeding. All heifers are home-raised &amp; had all shots.</li>\n<li><b>S &amp; S Farms : </b><b>45 </b>Blk &amp; Red Angus 2-4 yr old cows,2nd &amp; 3rd period. Bred Blk Sim Angus bulls. Start calving Mar. 15th</li>\n<li><b>Pinson Farms: </b><b>40 </b>Blk-Bwf 6-SS cows. Start calving Feb. 15th. Bred Blk Angus bulls</li>\n<li><b>Asbury Farms: </b><b>25 </b>Blk 2 yr. 1050lbs bred heifers. All heifers were pelvic measured prior to breeding &amp; had all shots. Bred LBWT Conway Blk Angus bulls.</li>\n<li><b>Anderson Farms: </b><b>14 </b>Blk 3-6 yr old cows w/ 200lbs calves at side.</li>\n<li><b>Clifton Farms: </b><b>10 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls</li>\n<li><b>Luther Farm: </b>Â <b>6</b> Red-Rwf 2 yr. old 1100lbs bred heifers. <b>10 </b>Bwf 2 yr. old 1100lbs bred heifers. All heifers are home-raised &amp; bred to Show-Me-Select LBWT Blk Angus bulls. Start calving March 1st for 50 days. Gentle set of spring calving heifers.</li>\n<li><b>Thomas Farms: </b><b>10 </b>Blk-Red 2 yr. old 1100lbs bred heifers. Bred to LBWT Blk Angus bulls.</li>\n<li><b>John Sullins Farms: </b><b>2 </b>Blk heifer pairs <b>2</b> 3 yr. old Blk pairs. AI bred on November 27th to Sydgen Enhance Blk Angus bull</li>\n<li><b>T &amp; L Farms: </b><b>12 </b>Blk 5-7 yr old cows,3rd period. Bred Blk Angus bulls.</li>\n<li><b>Tyler Farms: </b><b>20 </b>Blk cows w/ 100-20lbs calves at side. Cows will sell open &amp; breed to bull of your choice.</li>\n<li><b>Randall Bros.: </b><b>40 </b>Blk 4-6 yr. old cows,2nd period. Bred to Blk Angus bulls. Start calving April 1st, nice set of cows &amp; current on all shots.</li>\n<li><b>Graysen Farms: </b><b>75 </b>Blk-BwfÂ  3-7 yr old cows, 3rd period. Bred to Blk Sim-Angus bulls. Start calving Feb. 1st.</li>\n<li><b>Miller Farms: </b><b>15 </b>Blk 2 yr. old1100lbsÂ  bred heifers. All heifers home-raised &amp; nice set of spring calving heifers. Start calving March 10th for 45 days. Bred LBWT Blk Angus bulls w/ CED +9.</li>\n<li><b>Staus Farms: </b><b>30 </b>Blk-Red 6-SS yr. old cows, 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Bahrenburg Angus: </b><b>10 </b>Blk 2 yr. old bred heifers. Bred LBWT Blk Angus bull.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-01-23 16:22:03','2023-01-23 16:22:03','',2209,'https://kingsvillelivestock.com/?p=5038',0,'revision','',0),(5039,2,'2023-01-23 16:58:44','2023-01-23 16:58:44','','Jan 27 2023 Cow Sale','','inherit','closed','closed','','jan-27-2023-cow-sale','','','2023-01-23 16:58:44','2023-01-23 16:58:44','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/01/Jan-27-2023-Cow-Sale.pdf',0,'attachment','application/pdf',0),(5040,2,'2023-01-23 16:58:52','2023-01-23 16:58:52','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Jan-27-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5039\">Jan 27 2023 Cow Sale</a></p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-01-23 16:58:52','2023-01-23 16:58:52','',639,'https://kingsvillelivestock.com/?p=5040',0,'revision','',0),(5041,2,'2023-01-23 17:00:21','2023-01-23 17:00:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Jan-27-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5039\">Jan 27 2023 Cow Sale</a></p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-01-23 17:00:21','2023-01-23 17:00:21','',1967,'https://kingsvillelivestock.com/?p=5041',0,'revision','',0),(5043,2,'2023-01-25 16:09:47','2023-01-25 16:09:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 24, 2023, </strong>1981 hd; Last week, 5064 hd; 4108 a year ago. Compared to last week feeder cattle sold fully steady. Slaughter cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$234.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00-$176.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$155.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$202.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$143.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$123.00-$150.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$134.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$84.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$74.00 - $83.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $73.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">565lbs @$214.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">678lbs @$196.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">894lbs@$176.50</td>\n</tr>\n<tr>\n<td style=\"width: 151.484px;\">Â </td>\n<td style=\"width: 153.516px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Â </td>\n<td style=\"width: 153.516px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 24, 2023 - Market Report','','publish','closed','open','','january-24-2023-market-report','','','2023-01-25 16:11:52','2023-01-25 16:11:52','',0,'https://kingsvillelivestock.com/?p=5043',0,'post','',0),(5045,2,'2023-01-25 16:09:47','2023-01-25 16:09:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 24, 2023, </strong>1981 hd; Last week, 5064 hd; 4108 a year ago. Compared to last week feeder cattle sold fully steady. Slaughter cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$234.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00-$176.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$155.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$202.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$143.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$123.00-$150.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$134.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$84.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$74.00 - $83.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $73.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">565lbs @$214.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">678lbs @$196.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">894lbs@$176.50</td>\n</tr>\n<tr>\n<td style=\"width: 151.484px;\">Â </td>\n<td style=\"width: 153.516px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Â </td>\n<td style=\"width: 153.516px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 24, 2023 - Market Report','','inherit','closed','closed','','5043-revision-v1','','','2023-01-25 16:09:47','2023-01-25 16:09:47','',5043,'https://kingsvillelivestock.com/?p=5045',0,'revision','',0),(5046,2,'2023-01-25 16:09:47','2023-01-25 16:09:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 24, 2023, </strong>1981 hd; Last week, 5064 hd; 4108 a year ago. Compared to last week feeder cattle sold fully steady. Slaughter cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$234.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00-$176.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$155.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$202.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$143.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$123.00-$150.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$134.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$84.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$74.00 - $83.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $73.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">565lbs @$214.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">678lbs @$196.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">894lbs@$176.50</td>\n</tr>\n<tr>\n<td style=\"width: 151.484px;\">Â </td>\n<td style=\"width: 153.516px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Â </td>\n<td style=\"width: 153.516px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 17, 2023 - Market Report','','inherit','closed','closed','','5043-revision-v1','','','2023-01-25 16:09:47','2023-01-25 16:09:47','',5043,'https://kingsvillelivestock.com/?p=5046',0,'revision','',0),(5047,2,'2023-01-25 16:09:50','2023-01-25 16:09:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 24, 2023, </strong>1981 hd; Last week, 5064 hd; 4108 a year ago. Compared to last week feeder cattle sold fully steady. Slaughter cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$234.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00-$176.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$155.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$202.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$143.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$123.00-$150.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$134.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$84.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$74.00 - $83.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $73.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">565lbs @$214.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">678lbs @$196.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">894lbs@$176.50</td>\n</tr>\n<tr>\n<td style=\"width: 151.484px;\">Â </td>\n<td style=\"width: 153.516px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Â </td>\n<td style=\"width: 153.516px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 24, 2023 - Market Report','','inherit','closed','closed','','5043-revision-v1','','','2023-01-25 16:09:50','2023-01-25 16:09:50','',5043,'https://kingsvillelivestock.com/?p=5047',0,'revision','',0),(5049,2,'2023-01-25 16:11:52','2023-01-25 16:11:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 24, 2023, </strong>1981 hd; Last week, 5064 hd; 4108 a year ago. Compared to last week feeder cattle sold fully steady. Slaughter cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$234.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$205.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$187.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$146.00-$176.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$135.00-$155.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$202.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$202.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$186.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$143.00-$177.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$134.00-$159.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$123.00-$150.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$134.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$84.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$74.00 - $83.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $73.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $110.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.4\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">565lbs @$214.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">678lbs @$196.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">894lbs@$176.50</td>\n</tr>\n<tr>\n<td style=\"width: 151.484px;\">Â </td>\n<td style=\"width: 153.516px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Â </td>\n<td style=\"width: 153.516px; height: 46px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 24, 2023 - Market Report','','inherit','closed','closed','','5043-revision-v1','','','2023-01-25 16:11:52','2023-01-25 16:11:52','',5043,'https://kingsvillelivestock.com/?p=5049',0,'revision','',0),(5050,2,'2023-01-25 16:12:15','2023-01-25 16:12:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Jan-27-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5039\">Jan 27 2023 Cow Sale</a></p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-01-25 16:12:15','2023-01-25 16:12:15','',639,'https://kingsvillelivestock.com/?p=5050',0,'revision','',0),(5051,2,'2023-01-25 16:12:45','2023-01-25 16:12:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 27th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Jan-27-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5039\">Jan 27 2023 Cow Sale</a></p>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-01-25 16:12:45','2023-01-25 16:12:45','',1967,'https://kingsvillelivestock.com/?p=5051',0,'revision','',0),(5052,2,'2023-01-30 16:18:21','2023-01-30 16:18:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-01-30 16:18:21','2023-01-30 16:18:21','',639,'https://kingsvillelivestock.com/?p=5052',0,'revision','',0),(5053,2,'2023-01-30 16:18:49','2023-01-30 16:18:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JANUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Jan. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-01-30 16:18:49','2023-01-30 16:18:49','',1967,'https://kingsvillelivestock.com/?p=5053',0,'revision','',0),(5054,2,'2023-01-30 16:34:42','2023-01-30 16:34:42','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-17th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5023\">Tuesday, January 17th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-01-30 16:34:42','2023-01-30 16:34:42','',2209,'https://kingsvillelivestock.com/?p=5054',0,'revision','',0),(5055,2,'2023-01-30 18:49:23','2023-01-30 18:49:23','','Tuesday, January 31st Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-january-31st-feeder-cattle-consignments','','','2023-01-30 18:49:23','2023-01-30 18:49:23','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-31st-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5056,2,'2023-01-30 18:49:44','2023-01-30 18:49:44','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-31st-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5055\">Tuesday, January 31st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-01-30 18:49:44','2023-01-30 18:49:44','',2209,'https://kingsvillelivestock.com/?p=5056',0,'revision','',0),(5057,2,'2023-01-30 19:42:02','2023-01-30 19:42:02','','Tuesday, January 31st Feeder Cattle Consignments','','inherit','closed','closed','','tuesday-january-31st-feeder-cattle-consignments-2','','','2023-01-30 19:42:02','2023-01-30 19:42:02','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-31st-Feeder-Cattle-Consignments-1.pdf',0,'attachment','application/pdf',0),(5058,2,'2023-01-30 19:42:07','2023-01-30 19:42:07','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/01/Tuesday-January-31st-Feeder-Cattle-Consignments-1.pdf\" rel=\"attachment wp-att-5057\">Tuesday, January 31st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-01-30 19:42:07','2023-01-30 19:42:07','',2209,'https://kingsvillelivestock.com/?p=5058',0,'revision','',0),(5059,2,'2023-02-01 03:14:09','2023-02-01 03:14:09','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-02-01 03:14:09','2023-02-01 03:14:09','',639,'https://kingsvillelivestock.com/?p=5059',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (5060,2,'2023-02-01 03:14:35','2023-02-01 03:14:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-02-01 03:14:35','2023-02-01 03:14:35','',1967,'https://kingsvillelivestock.com/?p=5060',0,'revision','',0),(5061,2,'2023-02-01 15:41:39','2023-02-01 15:41:39','','Feb. 11th,2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','feb-11th2022-horse-tack-small-animal-sale','','','2023-02-01 15:41:39','2023-02-01 15:41:39','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale.pdf',0,'attachment','application/pdf',0),(5062,2,'2023-02-01 15:41:54','2023-02-01 15:41:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5061\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5061\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-02-01 15:41:54','2023-02-01 15:41:54','',639,'https://kingsvillelivestock.com/?p=5062',0,'revision','',0),(5063,2,'2023-02-01 15:42:49','2023-02-01 15:42:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5061\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5061\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-02-01 15:42:49','2023-02-01 15:42:49','',1967,'https://kingsvillelivestock.com/?p=5063',0,'revision','',0),(5064,2,'2023-02-01 16:54:36','2023-02-01 16:54:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 31, 2023, </strong>2670 hd; Last week, 1981 hd; 3565 a year ago. Calves under 650lbs sold $5-$10 higher. Feeders weighing 650lbs &amp; up-sold steady $ 3 higher. Slaughter cows &amp; bulls sold $4-$8 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$260.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$241.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$191.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$175.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$141.50-$157.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$139.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$92.00 - $100.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $91.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $113.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">570lbs @$228.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">697lbs @$192.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">740lbs@$189.85</td>\n</tr>\n<tr>\n<td style=\"width: 151.484px;\">Steers</td>\n<td style=\"width: 153.516px;\">808lbs@$182.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">888lbs@$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">896lbs@$175.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Steers</td>\n<td style=\"width: 153.516px; height: 46px;\">906lbs@$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">736lbs@$176.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">853lbs@$157.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 31, 2023 - Market Report','','publish','closed','open','','january-31-2023-market-report','','','2023-02-01 16:54:39','2023-02-01 16:54:39','',0,'https://kingsvillelivestock.com/?p=5064',0,'post','',0),(5066,2,'2023-02-01 16:54:36','2023-02-01 16:54:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 31, 2023, </strong>2670 hd; Last week, 1981 hd; 3565 a year ago. Calves under 650lbs sold $5-$10 higher. Feeders weighing 650lbs &amp; up-sold steady $ 3 higher. Slaughter cows &amp; bulls sold $4-$8 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$260.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$241.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$191.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$175.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$141.50-$157.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$139.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$92.00 - $100.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $91.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $113.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">570lbs @$228.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">697lbs @$192.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">740lbs@$189.85</td>\n</tr>\n<tr>\n<td style=\"width: 151.484px;\">Steers</td>\n<td style=\"width: 153.516px;\">808lbs@$182.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">888lbs@$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">896lbs@$175.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Steers</td>\n<td style=\"width: 153.516px; height: 46px;\">906lbs@$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">736lbs@$176.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">853lbs@$157.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 31, 2023 - Market Report','','inherit','closed','closed','','5064-revision-v1','','','2023-02-01 16:54:36','2023-02-01 16:54:36','',5064,'https://kingsvillelivestock.com/?p=5066',0,'revision','',0),(5067,2,'2023-02-01 16:54:36','2023-02-01 16:54:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 31, 2023, </strong>2670 hd; Last week, 1981 hd; 3565 a year ago. Calves under 650lbs sold $5-$10 higher. Feeders weighing 650lbs &amp; up-sold steady $ 3 higher. Slaughter cows &amp; bulls sold $4-$8 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$260.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$241.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$191.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$175.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$141.50-$157.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$139.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$92.00 - $100.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $91.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $113.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">570lbs @$228.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">697lbs @$192.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">740lbs@$189.85</td>\n</tr>\n<tr>\n<td style=\"width: 151.484px;\">Steers</td>\n<td style=\"width: 153.516px;\">808lbs@$182.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">888lbs@$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">896lbs@$175.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Steers</td>\n<td style=\"width: 153.516px; height: 46px;\">906lbs@$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">736lbs@$176.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">853lbs@$157.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 24, 2023 - Market Report','','inherit','closed','closed','','5064-revision-v1','','','2023-02-01 16:54:36','2023-02-01 16:54:36','',5064,'https://kingsvillelivestock.com/?p=5067',0,'revision','',0),(5068,2,'2023-02-01 16:54:39','2023-02-01 16:54:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>January 31, 2023, </strong>2670 hd; Last week, 1981 hd; 3565 a year ago. Calves under 650lbs sold $5-$10 higher. Feeders weighing 650lbs &amp; up-sold steady $ 3 higher. Slaughter cows &amp; bulls sold $4-$8 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$260.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$241.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$191.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$183.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$175.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$148.00-$176.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$141.50-$157.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$139.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$92.00 - $100.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $91.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $113.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">570lbs @$228.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">697lbs @$192.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">740lbs@$189.85</td>\n</tr>\n<tr>\n<td style=\"width: 151.484px;\">Steers</td>\n<td style=\"width: 153.516px;\">808lbs@$182.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">888lbs@$179.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">896lbs@$175.50</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Steers</td>\n<td style=\"width: 153.516px; height: 46px;\">906lbs@$175.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">736lbs@$176.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">853lbs@$157.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 31, 2023 - Market Report','','inherit','closed','closed','','5064-revision-v1','','','2023-02-01 16:54:39','2023-02-01 16:54:39','',5064,'https://kingsvillelivestock.com/?p=5068',0,'revision','',0),(5070,2,'2023-02-06 20:09:50','2023-02-06 20:09:50','','Tuesday,February 7th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayfebruary-7th-feeder-cattle-consignments','','','2023-02-06 20:09:50','2023-02-06 20:09:50','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/02/TuesdayFebruary-7th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5071,2,'2023-02-06 20:09:58','2023-02-06 20:09:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/TuesdayFebruary-7th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5070\">Tuesday,February 7th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-02-06 20:09:58','2023-02-06 20:09:58','',2209,'https://kingsvillelivestock.com/?p=5071',0,'revision','',0),(5073,2,'2023-02-06 21:23:18','2023-02-06 21:23:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/TuesdayFebruary-7th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5070\">Tuesday,February 7th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #800080;\">Special Cow &amp; Bull Sale, Saturday, February 18th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Peck Farms: </b><b>3 </b>18-month-old Horned Hereford bulls. Bull out of registered stock, no papers</li>\n<li><b>Fitzpatrick Farms: </b><b>1 </b>15-month-old Reg. Red Angus bull, born on 10-15-2021</li>\n<li><b>Freeman Farms: </b><b>3 </b>16-17-month-old Reg. Blk Balancer bulls.<strong> 1</strong> 12-month-old Reg. Blk Balancer bull. All bulls semen/trich tested &amp; ready to turn out. Nice set of balancer bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>D &amp; C Farms Complete Dispersal: </b><b>20 </b>Â Red Angus 3-6 yr. old cows,3rd period. 20 Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Red Angus or Hereford bulls. Start calving end of Feb. All cows are current on shots &amp; will raise a nice calf.</li>\n<li><b>Tyler Farms : </b><b>10 </b>Blk 3-6 yr old cows w/ month old calves at side. ,</li>\n<li><b>T-D Farms: </b><b>17 </b>Blk Braunvieh X 5-6 yr. old cows w/ 200lbs spring calves at side. Cows sell open, calves sired by Crooks Sim-Angus bulls. Nice set of pairs.</li>\n<li><b>Simons Farms: </b><b>58 </b>Fancy Purebred Blk Angus 1100lbs bred heifers, 3rd period. Heifers were pelvic measured prior to breeding. Bred LBWT Blk Angus bulls. Bulls turned in 6-1-22, out on 8-122 &amp; pregged on 9-6-22. Start calving Mar. 14th. Had all spring shots &amp; wormed/poured. Excellent set of bred heifers.</li>\n<li><b>Steth Farms: </b><b>15 </b>Polled Hereford 3-6 yr old cows,3rd period. Bred Blk Angus bulls, start calving Mar. 1st.Â </li>\n<li><b>Middleton Farms: </b><b>18 </b>Blk Angus 2 yr old 1100lbs bred heifers,3rd period. Bred LBWT Blk Angus bulls.</li>\n<li><b>Botch Farms: </b><b>45</b> Red Angus 3-6 yr. old cows, 3rd period. Bred Blk or Red Angus bulls. Start calving Mar. 1st. Gentle set of cows.</li>\n<li><b>Simpson Farms: </b><b>60 </b>Blk 3-4 yr. old cows, 3rd period. <b>60 </b>Blk 5-7 yr. old cows,3rd period. All cows start calving Feb 22nd. Bred Blk Angus bulls.</li>\n<li><b>Norris Farms: </b><b>20 </b>Blk 3-6 yr. old cows, 3rd period. Bred Blk Gelv. Bulls. Start calving Feb. 25th.Â </li>\n<li><b>Scott Farms: </b><b>15 </b>Blk 3-7 yr old cows,2nd period. Bred Blk Sim-Angus bulls. Start calving April 1st.Â </li>\n<li><b>Starke Farms: </b><b>10 </b>Red Balancer 2 yr. old 1100lbs bred heifers, 3rd period. Out of Seedstock Plus genetics. 58 Red Angus 2 yr. old 1100lbs bred heifers,3rd period. 54 Red Angus 3-6 yr. old cows, 3rd period. All home-raised. Cows &amp; heifers bred LBWT Red Angus Composite bulls. Wormed/poured, Lepto/Vibrio vaccinated &amp; scour guard shot. Start calving Mar. 18th, outstanding set bred heifers &amp; cows. All are gentle &amp; the right kind</li>\n<li><b>Ryan Farms: </b><b>5 </b>Fancy Rwf 3 yr. old cows w/ 350lbs calves at side. Calves sired by Red Angus bulls. Cows are very gentle &amp; bought as 600lbs open heifers. Cows were AI bred to Red Angus bull 9 Mile Franchise on Dec. 22nd &amp; cleaned up w/ Red Angus bull for 30 days. Current on all shots.Â </li>\n<li><b>B. Palm Farms: </b><b>6 </b>Fancy Hereford 6 yr. old cows. Bred Reg. Blk Angus bulls. Start calving Mar. 1st for 45 days. Nice, big set of cows that are gentle &amp; current on all shots.</li>\n<li><b>Summers Farms: </b><b>22 </b>Charx 2 yr. old bred heifers. Bred LBWT Valley Oaks Angus bulls.</li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-02-06 21:23:18','2023-02-06 21:23:18','',2209,'https://kingsvillelivestock.com/?p=5073',0,'revision','',0),(5074,2,'2023-02-06 21:25:48','2023-02-06 21:25:48','','Feb. 18, 2023 Cow Sale','','inherit','closed','closed','','feb-18-2023-cow-sale','','','2023-02-06 21:25:48','2023-02-06 21:25:48','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-18-2023-Cow-Sale.pdf',0,'attachment','application/pdf',0),(5075,2,'2023-02-06 21:25:56','2023-02-06 21:25:56','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5061\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5061\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-18-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5074\">Feb. 18, 2023 Cow Sale</a></p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-02-06 21:25:56','2023-02-06 21:25:56','',1967,'https://kingsvillelivestock.com/?p=5075',0,'revision','',0),(5076,2,'2023-02-06 21:28:20','2023-02-06 21:28:20','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5061\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5061\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-18-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5074\">Feb. 18, 2023 Cow Sale</a></p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-02-06 21:28:20','2023-02-06 21:28:20','',639,'https://kingsvillelivestock.com/?p=5076',0,'revision','',0),(5078,2,'2023-02-06 22:00:18','2023-02-06 22:00:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/TuesdayFebruary-7th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5070\">Tuesday,February 7th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #800080;\">Special Cow &amp; Bull Sale, Saturday, February 18th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Peck Farms: </b><b>3 </b>18-month-old Horned Hereford bulls. Bull out of registered stock, no papers</li>\n<li><b>Fitzpatrick Farms: </b><b>1 </b>15-month-old Reg. Red Angus bull, born on 10-15-2021</li>\n<li><b>Freeman Farms: </b><b>3 </b>16-17-month-old Reg. Blk Balancer bulls.<strong> 1</strong> 12-month-old Reg. Blk Balancer bull. All bulls semen/trich tested &amp; ready to turn out. Nice set of balancer bulls.</li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1531983\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1531983</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1520341\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1520341</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1521637\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1521637</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1518527\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1518527</a></li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>D &amp; C Farms Complete Dispersal: </b><b>20 </b>Â Red Angus 3-6 yr. old cows,3rd period. 20 Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Red Angus or Hereford bulls. Start calving end of Feb. All cows are current on shots &amp; will raise a nice calf.</li>\n<li><b>Tyler Farms : </b><b>10 </b>Blk 3-6 yr old cows w/ month old calves at side. ,</li>\n<li><b>T-D Farms: </b><b>17 </b>Blk Braunvieh X 5-6 yr. old cows w/ 200lbs spring calves at side. Cows sell open, calves sired by Crooks Sim-Angus bulls. Nice set of pairs.</li>\n<li><b>Simons Farms: </b><b>58 </b>Fancy Purebred Blk Angus 1100lbs bred heifers, 3rd period. Heifers were pelvic measured prior to breeding. Bred LBWT Blk Angus bulls. Bulls turned in 6-1-22, out on 8-122 &amp; pregged on 9-6-22. Start calving Mar. 14th. Had all spring shots &amp; wormed/poured. Excellent set of bred heifers.</li>\n<li><b>Steth Farms: </b><b>15 </b>Polled Hereford 3-6 yr old cows,3rd period. Bred Blk Angus bulls, start calving Mar. 1st.</li>\n<li><b>Middleton Farms: </b><b>18 </b>Blk Angus 2 yr old 1100lbs bred heifers,3rd period. Bred LBWT Blk Angus bulls.</li>\n<li><b>Botch Farms: </b><b>45</b> Red Angus 3-6 yr. old cows, 3rd period. Bred Blk or Red Angus bulls. Start calving Mar. 1st. Gentle set of cows.</li>\n<li><b>Simpson Farms: </b><b>60 </b>Blk 3-4 yr. old cows, 3rd period. <b>60 </b>Blk 5-7 yr. old cows,3rd period. All cows start calving Feb 22nd. Bred Blk Angus bulls.</li>\n<li><b>Norris Farms: </b><b>20 </b>Blk 3-6 yr. old cows, 3rd period. Bred Blk Gelv. Bulls. Start calving Feb. 25th.</li>\n<li><b>Scott Farms: </b><b>15 </b>Blk 3-7 yr old cows,2nd period. Bred Blk Sim-Angus bulls. Start calving April 1st.</li>\n<li><b>Starke Farms: </b><b>10 </b>Red Balancer 2 yr. old 1100lbs bred heifers, 3rd period. Out of Seedstock Plus genetics. 58 Red Angus 2 yr. old 1100lbs bred heifers,3rd period. 54 Red Angus 3-6 yr. old cows, 3rd period. All home-raised. Cows &amp; heifers bred LBWT Red Angus Composite bulls. Wormed/poured, Lepto/Vibrio vaccinated &amp; scour guard shot. Start calving Mar. 18th, outstanding set bred heifers &amp; cows. All are gentle &amp; the right kind</li>\n<li><b>Ryan Farms: </b><b>5 </b>Fancy Rwf 3 yr. old cows w/ 350lbs calves at side. Calves sired by Red Angus bulls. Cows are very gentle &amp; bought as 600lbs open heifers. Cows were AI bred to Red Angus bull 9 Mile Franchise on Dec. 22nd &amp; cleaned up w/ Red Angus bull for 30 days. Current on all shots.</li>\n<li><b>B. Palm Farms: </b><b>6 </b>Fancy Hereford 6 yr. old cows. Bred Reg. Blk Angus bulls. Start calving Mar. 1st for 45 days. Nice, big set of cows that are gentle &amp; current on all shots.</li>\n<li><b>Summers Farms: </b><b>22 </b>Charx 2 yr. old bred heifers. Bred LBWT Valley Oaks Angus bulls.</li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-02-06 22:00:18','2023-02-06 22:00:18','',2209,'https://kingsvillelivestock.com/?p=5078',0,'revision','',0),(5079,2,'2023-02-08 16:09:14','2023-02-08 16:09:14','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5061\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5061\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-18-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5074\">Feb. 18, 2023 Cow Sale</a></p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-02-08 16:09:14','2023-02-08 16:09:14','',639,'https://kingsvillelivestock.com/?p=5079',0,'revision','',0),(5080,2,'2023-02-08 16:10:24','2023-02-08 16:10:24','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5061\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5061\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-18-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5074\">Feb. 18, 2023 Cow Sale</a></p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-02-08 16:10:24','2023-02-08 16:10:24','',1967,'https://kingsvillelivestock.com/?p=5080',0,'revision','',0),(5081,2,'2023-02-08 16:10:40','0000-00-00 00:00:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/TuesdayFebruary-7th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5070\">Tuesday,February 7th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #800080;\">Special Cow &amp; Bull Sale, Saturday, February 18th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Peck Farms: </b><b>3 </b>18-month-old Horned Hereford bulls. Bull out of registered stock, no papers</li>\n<li><b>Fitzpatrick Farms: </b><b>1 </b>15-month-old Reg. Red Angus bull, born on 10-15-2021</li>\n<li><b>Freeman Farms: </b><b>3 </b>16-17-month-old Reg. Blk Balancer bulls.<strong> 1</strong> 12-month-old Reg. Blk Balancer bull. All bulls semen/trich tested &amp; ready to turn out. Nice set of balancer bulls.</li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1531983\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1531983</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1520341\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1520341</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1521637\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1521637</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1518527\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1518527</a></li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>D &amp; C Farms Complete Dispersal: </b><b>20 </b>Â Red Angus 3-6 yr. old cows,3rd period. 20 Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Red Angus or Hereford bulls. Start calving end of Feb. All cows are current on shots &amp; will raise a nice calf.</li>\n<li><b>Tyler Farms : </b><b>10 </b>Blk 3-6 yr old cows w/ month old calves at side. ,</li>\n<li><b>T-D Farms: </b><b>17 </b>Blk Braunvieh X 5-6 yr. old cows w/ 200lbs spring calves at side. Cows sell open, calves sired by Crooks Sim-Angus bulls. Nice set of pairs.</li>\n<li><b>Simons Farms: </b><b>58 </b>Fancy Purebred Blk Angus 1100lbs bred heifers, 3rd period. Heifers were pelvic measured prior to breeding. Bred LBWT Blk Angus bulls. Bulls turned in 6-1-22, out on 8-122 &amp; pregged on 9-6-22. Start calving Mar. 14th. Had all spring shots &amp; wormed/poured. Excellent set of bred heifers.</li>\n<li><b>Steth Farms: </b><b>15 </b>Polled Hereford 3-6 yr old cows,3rd period. Bred Blk Angus bulls, start calving Mar. 1st.</li>\n<li><b>Middleton Farms: </b><b>18 </b>Blk Angus 2 yr old 1100lbs bred heifers,3rd period. Bred LBWT Blk Angus bulls.</li>\n<li><b>Botch Farms: </b><b>45</b> Red Angus 3-6 yr. old cows, 3rd period. Bred Blk or Red Angus bulls. Start calving Mar. 1st. Gentle set of cows.</li>\n<li><b>Simpson Farms: </b><b>60 </b>Blk 3-4 yr. old cows, 3rd period. <b>60 </b>Blk 5-7 yr. old cows,3rd period. All cows start calving Feb 22nd. Bred Blk Angus bulls.</li>\n<li><b>Norris Farms: </b><b>20 </b>Blk 3-6 yr. old cows, 3rd period. Bred Blk Gelv. Bulls. Start calving Feb. 25th.</li>\n<li><b>Scott Farms: </b><b>15 </b>Blk 3-7 yr old cows,2nd period. Bred Blk Sim-Angus bulls. Start calving April 1st.</li>\n<li><b>Starke Farms: </b><b>10 </b>Red Balancer 2 yr. old 1100lbs bred heifers, 3rd period. Out of Seedstock Plus genetics. 58 Red Angus 2 yr. old 1100lbs bred heifers,3rd period. 54 Red Angus 3-6 yr. old cows, 3rd period. All home-raised. Cows &amp; heifers bred LBWT Red Angus Composite bulls. Wormed/poured, Lepto/Vibrio vaccinated &amp; scour guard shot. Start calving Mar. 18th, outstanding set bred heifers &amp; cows. All are gentle &amp; the right kind</li>\n<li><b>Ryan Farms: </b><b>5 </b>Fancy Rwf 3 yr. old cows w/ 350lbs calves at side. Calves sired by Red Angus bulls. Cows are very gentle &amp; bought as 600lbs open heifers. Cows were AI bred to Red Angus bull 9 Mile Franchise on Dec. 22nd &amp; cleaned up w/ Red Angus bull for 30 days. Current on all shots.</li>\n<li><b>B. Palm Farms: </b><b>6 </b>Fancy Hereford 6 yr. old cows. Bred Reg. Blk Angus bulls. Start calving Mar. 1st for 45 days. Nice, big set of cows that are gentle &amp; current on all shots.</li>\n<li><b>Summers Farms: </b><b>22 </b>Charx 2 yr. old bred heifers. Bred LBWT Valley Oaks Angus bulls.</li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','draft','closed','closed','','','','','2023-02-08 16:10:40','0000-00-00 00:00:00','',0,'https://kingsvillelivestock.com/?page_id=5081',0,'page','',0),(5082,2,'2023-02-08 16:11:19','2023-02-08 16:11:19','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/TuesdayFebruary-7th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5070\">Tuesday,February 7th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #800080;\">Special Cow &amp; Bull Sale, Saturday, February 18th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Peck Farms: </b><b>3 </b>18-month-old Horned Hereford bulls. Bull out of registered stock, no papers</li>\n<li><b>Fitzpatrick Farms: </b><b>1 </b>15-month-old Reg. Red Angus bull, born on 10-15-2021</li>\n<li><b>Freeman Farms: </b><b>3 </b>16-17-month-old Reg. Blk Balancer bulls.<strong> 1</strong> 12-month-old Reg. Blk Balancer bull. All bulls semen/trich tested &amp; ready to turn out. Nice set of balancer bulls.</li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1531983\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1531983</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1520341\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1520341</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1521637\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1521637</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1518527\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1518527</a></li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>D &amp; C Farms Complete Dispersal: </b><b>20 </b>Â Red Angus 3-6 yr. old cows,3rd period. 20 Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Red Angus or Hereford bulls. Start calving end of Feb. All cows are current on shots &amp; will raise a nice calf.</li>\n<li><b>Tyler Farms : </b><b>10 </b>Blk 3-6 yr old cows w/ month old calves at side. ,</li>\n<li><b>T-D Farms: </b><b>17 </b>Blk Braunvieh X 5-6 yr. old cows w/ 200lbs spring calves at side. Cows sell open, calves sired by Crooks Sim-Angus bulls. Nice set of pairs.</li>\n<li><b>Simons Farms: </b><b>58 </b>Fancy Purebred Blk Angus 1100lbs bred heifers, 3rd period. Heifers were pelvic measured prior to breeding. Bred LBWT Blk Angus bulls. Bulls turned in 6-1-22, out on 8-122 &amp; pregged on 9-6-22. Start calving Mar. 14th. Had all spring shots &amp; wormed/poured. Excellent set of bred heifers.</li>\n<li><b>Steth Farms: </b><b>15 </b>Polled Hereford 3-6 yr old cows,3rd period. Bred Blk Angus bulls, start calving Mar. 1st.</li>\n<li><b>Middleton Farms: </b><b>18 </b>Blk Angus 2 yr old 1100lbs bred heifers,3rd period. Bred LBWT Blk Angus bulls.</li>\n<li><b>Botch Farms: </b><b>45</b> Red Angus 3-6 yr. old cows, 3rd period. Bred Blk or Red Angus bulls. Start calving Mar. 1st. Gentle set of cows.</li>\n<li><b>Simpson Farms: </b><b>60 </b>Blk 3-4 yr. old cows, 3rd period. <b>60 </b>Blk 5-7 yr. old cows,3rd period. All cows start calving Feb 22nd. Bred Blk Angus bulls.</li>\n<li><b>Norris Farms: </b><b>20 </b>Blk 3-6 yr. old cows, 3rd period. Bred Blk Gelv. Bulls. Start calving Feb. 25th.</li>\n<li><b>Scott Farms: </b><b>15 </b>Blk 3-7 yr old cows,2nd period. Bred Blk Sim-Angus bulls. Start calving April 1st.</li>\n<li><b>Starke Farms: </b><b>10 </b>Red Balancer 2 yr. old 1100lbs bred heifers, 3rd period. Out of Seedstock Plus genetics. 58 Red Angus 2 yr. old 1100lbs bred heifers,3rd period. 54 Red Angus 3-6 yr. old cows, 3rd period. All home-raised. Cows &amp; heifers bred LBWT Red Angus Composite bulls. Wormed/poured, Lepto/Vibrio vaccinated &amp; scour guard shot. Start calving Mar. 18th, outstanding set bred heifers &amp; cows. All are gentle &amp; the right kind</li>\n<li><b>Ryan Farms: </b><b>5 </b>Fancy Rwf 3 yr. old cows w/ 350lbs calves at side. Calves sired by Red Angus bulls. Cows are very gentle &amp; bought as 600lbs open heifers. Cows were AI bred to Red Angus bull 9 Mile Franchise on Dec. 22nd &amp; cleaned up w/ Red Angus bull for 30 days. Current on all shots.</li>\n<li><b>B. Palm Farms: </b><b>6 </b>Fancy Hereford 6 yr. old cows. Bred Reg. Blk Angus bulls. Start calving Mar. 1st for 45 days. Nice, big set of cows that are gentle &amp; current on all shots.</li>\n<li><b>Summers Farms: </b><b>22 </b>Charx 2 yr. old bred heifers. Bred LBWT Valley Oaks Angus bulls.</li>\n<li><b>Crutchfield Farms: </b><b>8 </b>Blk 2 yr. old heifer pairs w/ month old calves at side.</li>\n<li><b>Gabriel Farms: </b><b>15 </b>Blk-Rwf 7-SS yr. old cows,3rd period. Bred Blk BullsÂ </li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-02-08 16:11:19','2023-02-08 16:11:19','',2209,'https://kingsvillelivestock.com/?p=5082',0,'revision','',0),(5083,2,'2023-02-08 17:01:07','2023-02-08 17:01:07','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/TuesdayFebruary-7th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5070\">Tuesday,February 7th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #800080;\">Special Cow &amp; Bull Sale, Saturday, February 18th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Peck Farms: </b><b>3 </b>18-month-old Horned Hereford bulls. Bull out of registered stock, no papers</li>\n<li><b>Fitzpatrick Farms: </b><b>1 </b>15-month-old Reg. Red Angus bull, born on 10-15-2021</li>\n<li><b>Freeman Farms: </b><b>3 </b>16-17-month-old Reg. Blk Balancer bulls.<strong> 1</strong> 12-month-old Reg. Blk Balancer bull. All bulls semen/trich tested &amp; ready to turn out. Nice set of balancer bulls.</li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1531983\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1531983</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1520341\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1520341</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1521637\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1521637</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1518527\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1518527</a></li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>D &amp; C Farms Complete Dispersal: </b><b>20 </b>Â Red Angus 3-6 yr. old cows,3rd period. 20 Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Red Angus or Hereford bulls. Start calving end of Feb. All cows are current on shots &amp; will raise a nice calf.</li>\n<li><b>Tyler Farms : </b><b>10 </b>Blk 3-6 yr old cows w/ month old calves at side. ,</li>\n<li><b>T-D Farms: </b><b>17 </b>Blk Braunvieh X 5-6 yr. old cows w/ 200lbs spring calves at side. Cows sell open, calves sired by Crooks Sim-Angus bulls. Nice set of pairs.</li>\n<li><b>Simons Farms: </b><b>58 </b>Fancy Purebred Blk Angus 1100lbs bred heifers, 3rd period. Heifers were pelvic measured prior to breeding. Bred LBWT Blk Angus bulls. Bulls turned in 6-1-22, out on 8-122 &amp; pregged on 9-6-22. Start calving Mar. 14th. Had all spring shots &amp; wormed/poured. Excellent set of bred heifers.</li>\n<li><b>Steth Farms: </b><b>15 </b>Polled Hereford 3-6 yr old cows,3rd period. Bred Blk Angus bulls, start calving Mar. 1st.</li>\n<li><b>Middleton Farms: </b><b>18 </b>Blk Angus 2 yr old 1100lbs bred heifers,3rd period. Bred LBWT Blk Angus bulls.</li>\n<li><b>Botch Farms: </b><b>45</b> Red Angus 3-6 yr. old cows, 3rd period. Bred Blk or Red Angus bulls. Start calving Mar. 1st. Gentle set of cows.</li>\n<li><b>Simpson Farms: </b><b>60 </b>Blk 3-4 yr. old cows, 3rd period. <b>60 </b>Blk 5-7 yr. old cows,3rd period. All cows start calving Feb 22nd. Bred Blk Angus bulls.</li>\n<li><b>Norris Farms: </b><b>20 </b>Blk 3-6 yr. old cows, 3rd period. Bred Blk Gelv. Bulls. Start calving Feb. 25th.</li>\n<li><b>Scott Farms: </b><b>15 </b>Blk 3-7 yr old cows,2nd period. Bred Blk Sim-Angus bulls. Start calving April 1st.</li>\n<li><b>Starke Farms: </b><b>10 </b>Red Balancer 2 yr. old 1100lbs bred heifers, 3rd period. Out of Seedstock Plus genetics. 58 Red Angus 2 yr. old 1100lbs bred heifers,3rd period. 54 Red Angus 3-6 yr. old cows, 3rd period. All home-raised. Cows &amp; heifers bred LBWT Red Angus Composite bulls. Wormed/poured, Lepto/Vibrio vaccinated &amp; scour guard shot. Start calving Mar. 18th, outstanding set bred heifers &amp; cows. All are gentle &amp; the right kind</li>\n<li><b>Ryan Farms: </b><b>5 </b>Fancy Rwf 3 yr. old cows w/ 350lbs calves at side. Calves sired by Red Angus bulls. Cows are very gentle &amp; bought as 600lbs open heifers. Cows were AI bred to Red Angus bull 9 Mile Franchise on Dec. 22nd &amp; cleaned up w/ Red Angus bull for 30 days. Current on all shots.</li>\n<li><b>B. Palm Farms: </b><b>6 </b>Fancy Hereford 6 yr. old cows. Bred Reg. Blk Angus bulls. Start calving Mar. 1st for 45 days. Nice, big set of cows that are gentle &amp; current on all shots.</li>\n<li><b>Summers Farms: </b><b>22 </b>Charx 2 yr. old bred heifers. Bred LBWT Valley Oaks Angus bulls.</li>\n<li><b>Crutchfield Farms: </b><b>8 </b>Blk 2 yr. old heifer pairs w/ month old calves at side.</li>\n<li><b>Gabriel Farms: </b><b>15 </b>Blk-Rwf 7-SS yr. old cows,3rd period. Bred Blk Bulls</li>\n<li><b>Ethan Jones Farms: </b><b>10 </b>Bwf 2 yr. old 1200lbs bred heifers. <b>15 </b>Blk 2 yr. old 1200lbs bred heifers. <b>1 </b>Rwf 2 yr. old 1200lbs bred heifer. All are home-raised &amp; a gentle set of heifers. All heifers are pelvic measured prior to breeding &amp; current on all shots. Heifers start calving Feb. 25th for 40 days &amp; bred LBWT T&amp;D farms, Blk Angus bulls</li>\n<li><b>Danny Bailey Complete Dispersal: </b><b>25 </b>Beefmaster X 3-SS cows w/ 6 calves at side. Cows bred Reg. Red Beefmaster bull. Gentle, nice set of cows.Â </li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-02-08 17:01:07','2023-02-08 17:01:07','',2209,'https://kingsvillelivestock.com/?p=5083',0,'revision','',0),(5084,2,'2023-02-08 17:01:50','2023-02-08 17:01:50','','Feb. 11th,2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','feb-11th2022-horse-tack-small-animal-sale-2','','','2023-02-08 17:01:50','2023-02-08 17:01:50','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale-1.pdf',0,'attachment','application/pdf',0),(5085,2,'2023-02-08 17:02:08','2023-02-08 17:02:08','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5084\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5084\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-18-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5074\">Feb. 18, 2023 Cow Sale</a></p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-02-08 17:02:08','2023-02-08 17:02:08','',639,'https://kingsvillelivestock.com/?p=5085',0,'revision','',0),(5086,2,'2023-02-08 17:03:29','2023-02-08 17:03:29','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5084\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5084\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-18-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5074\">Feb. 18, 2023 Cow Sale</a></p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-02-08 17:03:29','2023-02-08 17:03:29','',1967,'https://kingsvillelivestock.com/?p=5086',0,'revision','',0),(5087,2,'2023-02-08 17:17:45','2023-02-08 17:17:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/TuesdayFebruary-7th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5070\">Tuesday,February 7th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #800080;\">Special Cow &amp; Bull Sale, Saturday, February 18th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Peck Farms: </b><b>3 </b>18-month-old Horned Hereford bulls. Bull out of registered stock, no papers</li>\n<li><b>Fitzpatrick Farms: </b><b>1 </b>15-month-old Reg. Red Angus bull, born on 10-15-2021</li>\n<li><b>Freeman Farms: </b><b>3 </b>16-17-month-old Reg. Blk Balancer bulls.<strong> 1</strong> 12-month-old Reg. Blk Balancer bull. All bulls semen/trich tested &amp; ready to turn out. Nice set of balancer bulls.</li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1531983\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1531983</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1520341\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1520341</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1521637\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1521637</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1518527\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1518527</a></li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>D &amp; C Farms Complete Dispersal: </b><b>20 </b>Â Red Angus 3-6 yr. old cows,3rd period. 20 Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Red Angus or Hereford bulls. Start calving end of Feb. All cows are current on shots &amp; will raise a nice calf.</li>\n<li><b>Tyler Farms : </b><b>10 </b>Blk 3-6 yr old cows w/ month old calves at side. ,</li>\n<li><b>T-D Farms: </b><b>17 </b>Blk Braunvieh X 5-6 yr. old cows w/ 200lbs spring calves at side. Cows sell open, calves sired by Crooks Sim-Angus bulls. Nice set of pairs.</li>\n<li><b>Simons Farms: </b><b>58 </b>Fancy Purebred Blk Angus 1100lbs bred heifers, 3rd period. Heifers were pelvic measured prior to breeding. Bred LBWT Blk Angus bulls. Bulls turned in 6-1-22, out on 8-122 &amp; pregged on 9-6-22. Start calving Mar. 14th. Had all spring shots &amp; wormed/poured. Excellent set of bred heifers.</li>\n<li><b>Steth Farms: </b><b>15 </b>Polled Hereford 3-6 yr old cows,3rd period. Bred Blk Angus bulls, start calving Mar. 1st.</li>\n<li><b>Middleton Farms: </b><b>18 </b>Blk Angus 2 yr old 1100lbs bred heifers,3rd period. Bred LBWT Blk Angus bulls.</li>\n<li><b>Botch Farms: </b><b>45</b> Red Angus 3-6 yr. old cows, 3rd period. Bred Blk or Red Angus bulls. Start calving Mar. 1st. Gentle set of cows.</li>\n<li><b>Simpson Farms: </b><b>60 </b>Blk 3-4 yr. old cows, 3rd period. <b>60 </b>Blk 5-7 yr. old cows,3rd period. All cows start calving Feb 22nd. Bred Blk Angus bulls.</li>\n<li><b>Norris Farms: </b><b>20 </b>Blk 3-6 yr. old cows, 3rd period. Bred Blk Gelv. Bulls. Start calving Feb. 25th.</li>\n<li><b>Scott Farms: </b><b>15 </b>Blk 3-7 yr old cows,2nd period. Bred Blk Sim-Angus bulls. Start calving April 1st.</li>\n<li><b>Starke Farms: </b><b>10 </b>Red Balancer 2 yr. old 1100lbs bred heifers, 3rd period. Out of Seedstock Plus genetics. 58 Red Angus 2 yr. old 1100lbs bred heifers,3rd period. 54 Red Angus 3-6 yr. old cows, 3rd period. All home-raised. Cows &amp; heifers bred LBWT Red Angus Composite bulls. Wormed/poured, Lepto/Vibrio vaccinated &amp; scour guard shot. Start calving Mar. 18th, outstanding set bred heifers &amp; cows. All are gentle &amp; the right kind</li>\n<li><b>Ryan Farms: </b><b>5 </b>Fancy Rwf 3 yr. old cows w/ 350lbs calves at side. Calves sired by Red Angus bulls. Cows are very gentle &amp; bought as 600lbs open heifers. Cows were AI bred to Red Angus bull 9 Mile Franchise on Dec. 22nd &amp; cleaned up w/ Red Angus bull for 30 days. Current on all shots.</li>\n<li><b>B. Palm Farms: </b><b>6 </b>Fancy Hereford 6 yr. old cows. Bred Reg. Blk Angus bulls. Start calving Mar. 1st for 45 days. Nice, big set of cows that are gentle &amp; current on all shots.</li>\n<li><b>Summers Farms: </b><b>22 </b>Charx 2 yr. old bred heifers. Bred LBWT Valley Oaks Angus bulls.</li>\n<li><b>Crutchfield Farms: </b><b>8 </b>Blk 2 yr. old heifer pairs w/ month old calves at side.</li>\n<li><b>Gabriel Farms: </b><b>15 </b>Blk-Rwf 7-SS yr. old cows,3rd period. Bred Blk Bulls</li>\n<li><b>Ethan Jones Farms: </b><b>10 </b>Bwf 2 yr. old 1200lbs bred heifers. <b>15 </b>Blk 2 yr. old 1200lbs bred heifers. <b>1 </b>Rwf 2 yr. old 1200lbs bred heifer. All are home-raised &amp; a gentle set of heifers. All heifers are pelvic measured prior to breeding &amp; current on all shots. Heifers start calving Feb. 25th for 40 days &amp; bred LBWT T&amp;D farms, Blk Angus bulls.Â </li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-02-08 17:17:45','2023-02-08 17:17:45','',2209,'https://kingsvillelivestock.com/?p=5087',0,'revision','',0),(5088,2,'2023-02-08 17:47:53','2023-02-08 17:47:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 7, 2023, </strong>4691 hd; Last week, 2670 hd; 2145 a year ago. Feeder steers sold steady-$6 higher &amp; heifers 650lbs &amp; down sold $5-$12 higher. Slaughter cows &amp; bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$254.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$178.00-$215.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$196.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$186.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$219.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$160.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$142.00-$153.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$79.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $78.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">488lbs @$254.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">616lbs @$214.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">632lbs@$215.50</td>\n</tr>\n<tr>\n<td style=\"width: 151.484px;\">Steers</td>\n<td style=\"width: 153.516px;\">682lbs@$207.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">722lbs@$196.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">835lbs@$186.35</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 46px;\">509lbs@$225.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">569lbs@$195.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">623lbs@$195.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">HeifersÂ </td>\n<td style=\"width: 153.516px; height: 23px;\">713lbs@$177.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 7, 2023 - Market Report','','publish','closed','open','','february-7-2023-market-report','','','2023-02-08 17:47:56','2023-02-08 17:47:56','',0,'https://kingsvillelivestock.com/?p=5088',0,'post','',0),(5090,2,'2023-02-08 17:47:53','2023-02-08 17:47:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 7, 2023, </strong>4691 hd; Last week, 2670 hd; 2145 a year ago. Feeder steers sold steady-$6 higher &amp; heifers 650lbs &amp; down sold $5-$12 higher. Slaughter cows &amp; bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$254.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$178.00-$215.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$196.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$186.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$219.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$160.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$142.00-$153.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$79.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $78.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">488lbs @$254.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">616lbs @$214.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">632lbs@$215.50</td>\n</tr>\n<tr>\n<td style=\"width: 151.484px;\">Steers</td>\n<td style=\"width: 153.516px;\">682lbs@$207.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">722lbs@$196.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">835lbs@$186.35</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 46px;\">509lbs@$225.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">569lbs@$195.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">623lbs@$195.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">HeifersÂ </td>\n<td style=\"width: 153.516px; height: 23px;\">713lbs@$177.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 7, 2023 - Market Report','','inherit','closed','closed','','5088-revision-v1','','','2023-02-08 17:47:53','2023-02-08 17:47:53','',5088,'https://kingsvillelivestock.com/?p=5090',0,'revision','',0),(5091,2,'2023-02-08 17:47:53','2023-02-08 17:47:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 7, 2023, </strong>4691 hd; Last week, 2670 hd; 2145 a year ago. Feeder steers sold steady-$6 higher &amp; heifers 650lbs &amp; down sold $5-$12 higher. Slaughter cows &amp; bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$254.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$178.00-$215.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$196.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$186.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$219.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$160.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$142.00-$153.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$79.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $78.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">488lbs @$254.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">616lbs @$214.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">632lbs@$215.50</td>\n</tr>\n<tr>\n<td style=\"width: 151.484px;\">Steers</td>\n<td style=\"width: 153.516px;\">682lbs@$207.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">722lbs@$196.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">835lbs@$186.35</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 46px;\">509lbs@$225.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">569lbs@$195.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">623lbs@$195.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">HeifersÂ </td>\n<td style=\"width: 153.516px; height: 23px;\">713lbs@$177.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','January 31, 2023 - Market Report','','inherit','closed','closed','','5088-revision-v1','','','2023-02-08 17:47:53','2023-02-08 17:47:53','',5088,'https://kingsvillelivestock.com/?p=5091',0,'revision','',0),(5092,2,'2023-02-08 17:47:56','2023-02-08 17:47:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 7, 2023, </strong>4691 hd; Last week, 2670 hd; 2145 a year ago. Feeder steers sold steady-$6 higher &amp; heifers 650lbs &amp; down sold $5-$12 higher. Slaughter cows &amp; bulls sold steady-$2 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$254.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$178.00-$215.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$196.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$186.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$219.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$195.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$160.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$142.00-$153.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$79.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $78.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $114.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 355px; width: 321px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">488lbs @$254.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">616lbs @$214.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">632lbs@$215.50</td>\n</tr>\n<tr>\n<td style=\"width: 151.484px;\">Steers</td>\n<td style=\"width: 153.516px;\">682lbs@$207.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">722lbs@$196.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Steers</td>\n<td style=\"width: 153.516px; height: 23px;\">835lbs@$186.35</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 151.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 46px;\">509lbs@$225.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">569lbs@$195.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 153.516px; height: 23px;\">623lbs@$195.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">HeifersÂ </td>\n<td style=\"width: 153.516px; height: 23px;\">713lbs@$177.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 23px;\">Â </td>\n<td style=\"width: 153.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 151.484px; height: 10px;\">Â </td>\n<td style=\"width: 153.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 7, 2023 - Market Report','','inherit','closed','closed','','5088-revision-v1','','','2023-02-08 17:47:56','2023-02-08 17:47:56','',5088,'https://kingsvillelivestock.com/?p=5092',0,'revision','',0),(5093,2,'2023-02-08 19:08:55','2023-02-08 19:08:55','','Feb. 18, 2023 Cow Sale','','inherit','closed','closed','','feb-18-2023-cow-sale-2','','','2023-02-08 19:08:55','2023-02-08 19:08:55','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-18-2023-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(5094,2,'2023-02-08 19:09:05','2023-02-08 19:09:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5084\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5084\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-18-2023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5093\">Feb. 18, 2023 Cow Sale</a></p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-02-08 19:09:05','2023-02-08 19:09:05','',639,'https://kingsvillelivestock.com/?p=5094',0,'revision','',0),(5095,2,'2023-02-08 19:10:18','2023-02-08 19:10:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5084\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-11th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5084\">Feb. 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-18-2023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5093\">Feb. 18, 2023 Cow Sale</a></p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-02-08 19:10:18','2023-02-08 19:10:18','',1967,'https://kingsvillelivestock.com/?p=5095',0,'revision','',0),(5097,2,'2023-02-13 17:41:26','2023-02-13 17:41:26','','Feb. 18, 2023 Cow Sale','','inherit','closed','closed','','feb-18-2023-cow-sale-3','','','2023-02-13 17:41:26','2023-02-13 17:41:26','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-18-2023-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(5098,2,'2023-02-13 17:41:38','2023-02-13 17:41:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-18-2023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5097\">Feb. 18, 2023 Cow Sale</a></p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-02-13 17:41:38','2023-02-13 17:41:38','',639,'https://kingsvillelivestock.com/?p=5098',0,'revision','',0),(5099,2,'2023-02-13 17:42:33','2023-02-13 17:42:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-18-2023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5097\">Feb. 18, 2023 Cow Sale</a></p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-02-13 17:42:33','2023-02-13 17:42:33','',1967,'https://kingsvillelivestock.com/?p=5099',0,'revision','',0),(5100,2,'2023-02-13 18:23:53','2023-02-13 18:23:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/TuesdayFebruary-7th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5070\">Tuesday,February 7th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #800080;\">Special Cow &amp; Bull Sale, Saturday, February 18th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Peck Farms: </b><b>3 </b>18-month-old Horned Hereford bulls. Bull out of registered stock, no papers</li>\n<li><b>Fitzpatrick Farms: </b><b>1 </b>15-month-old Reg. Red Angus bull, born on 10-15-2021</li>\n<li><b>Freeman Farms: </b><b>3 </b>16-17-month-old Reg. Blk Balancer bulls.<strong> 1</strong> 12-month-old Reg. Blk Balancer bull. All bulls semen/trich tested &amp; ready to turn out. Nice set of balancer bulls.</li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1531983\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1531983</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1520341\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1520341</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1521637\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1521637</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1518527\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1518527</a></li>\n<li><b>Shurk Farms: </b><b>1 </b>3 yr. old Blk Angus bull <b>2 </b>4 yr. old Blk Angus bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>D &amp; C Farms Complete Dispersal: </b><b>20 </b>Â Red Angus 3-6 yr. old cows,3rd period. 20 Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Red Angus or Hereford bulls. Start calving end of Feb. All cows are current on shots &amp; will raise a nice calf.</li>\n<li><b>Tyler Farms : </b><b>10 </b>Blk 3-6 yr old cows w/ month old calves at side. ,</li>\n<li><b>T-D Farms: </b><b>17 </b>Blk Braunvieh X 5-6 yr. old cows w/ 200lbs spring calves at side. Cows sell open, calves sired by Crooks Sim-Angus bulls. Nice set of pairs.</li>\n<li><b>Simons Farms: </b><b>58 </b>Fancy Purebred Blk Angus 1100lbs bred heifers, 3rd period. Heifers were pelvic measured prior to breeding. Bred LBWT Blk Angus bulls. Bulls turned in 6-1-22, out on 8-122 &amp; pregged on 9-6-22. Start calving Mar. 14th. Had all spring shots &amp; wormed/poured. Excellent set of bred heifers.</li>\n<li><b>Steth Farms: </b><b>15 </b>Polled Hereford 3-6 yr old cows,3rd period. Bred Blk Angus bulls, start calving Mar. 1st.</li>\n<li><b>Middleton Farms: </b><b>18 </b>Blk Angus 2 yr old 1100lbs bred heifers,3rd period. Bred LBWT Blk Angus bulls.</li>\n<li><b>Botch Farms: </b><b>45</b> Red Angus 3-6 yr. old cows, 3rd period. Bred Blk or Red Angus bulls. Start calving Mar. 1st. Gentle set of cows.</li>\n<li><b>Simpson Farms: </b><b>60 </b>Blk 3-4 yr. old cows, 3rd period. <b>60 </b>Blk 5-7 yr. old cows,3rd period. All cows start calving Feb 22nd. Bred Blk Angus bulls.</li>\n<li><b>Norris Farms: </b><b>20 </b>Blk 3-6 yr. old cows, 3rd period. Bred Blk Gelv. Bulls. Start calving Feb. 25th.</li>\n<li><b>Scott Farms: </b><b>15 </b>Blk 3-7 yr old cows,2nd period. Bred Blk Sim-Angus bulls. Start calving April 1st.</li>\n<li><b>Starke Farms: </b><b>10 </b>Red Balancer 2 yr. old 1100lbs bred heifers, 3rd period. Out of Seedstock Plus genetics. 58 Red Angus 2 yr. old 1100lbs bred heifers,3rd period. 54 Red Angus 3-6 yr. old cows, 3rd period. All home-raised. Cows &amp; heifers bred LBWT Red Angus Composite bulls. Wormed/poured, Lepto/Vibrio vaccinated &amp; scour guard shot. Start calving Mar. 18th, outstanding set bred heifers &amp; cows. All are gentle &amp; the right kind</li>\n<li><b>Ryan Farms: </b><b>5 </b>Fancy Rwf 3 yr. old cows w/ 350lbs calves at side. Calves sired by Red Angus bulls. Cows are very gentle &amp; bought as 600lbs open heifers. Cows were AI bred to Red Angus bull 9 Mile Franchise on Dec. 22nd &amp; cleaned up w/ Red Angus bull for 30 days. Current on all shots.</li>\n<li><b>B. Palm Farms: </b><b>6 </b>Fancy Hereford 6 yr. old cows. Bred Reg. Blk Angus bulls. Start calving Mar. 1st for 45 days. Nice, big set of cows that are gentle &amp; current on all shots.</li>\n<li><b>Summers Farms: </b><b>22 </b>Charx 2 yr. old bred heifers. Bred LBWT Valley Oaks Angus bulls.</li>\n<li><b>Crutchfield Farms: </b><b>8 </b>Blk 2 yr. old heifer pairs w/ month old calves at side.</li>\n<li><b>Gabriel Farms: </b><b>15 </b>Blk-Rwf 7-SS yr. old cows,3rd period. Bred Blk Bulls</li>\n<li><b>Ethan Jones Farms: </b><b>10 </b>Bwf 2 yr. old 1200lbs bred heifers. <b>15 </b>Blk 2 yr. old 1200lbs bred heifers. <b>1 </b>Rwf 2 yr. old 1200lbs bred heifer. All are home-raised &amp; a gentle set of heifers. All heifers are pelvic measured prior to breeding &amp; current on all shots. Heifers start calving Feb. 25th for 40 days &amp; bred LBWT T&amp;D farms, Blk Angus bulls.</li>\n<li><b>Shurk Farms: </b><b>33 </b>Blk 3-6 yr. old cows. Bred Blk Angus bulls.</li>\n<li><b>Dean Farms: </b><b>25 </b>Blk-Bwf 2 yr. old 1100lbs bred heifers. All heifers home-raised &amp; very gentle. Bred Seedstock Balancer bulls or Foster Balancer bulls. Bulls turned in May 17th for 60 days</li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-02-13 18:23:53','2023-02-13 18:23:53','',2209,'https://kingsvillelivestock.com/?p=5100',0,'revision','',0),(5101,2,'2023-02-13 18:42:08','2023-02-13 18:42:08','','Feb. 18, 2023 Cow Sale','','inherit','closed','closed','','feb-18-2023-cow-sale-4','','','2023-02-13 18:42:08','2023-02-13 18:42:08','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-18-2023-Cow-Sale-3.pdf',0,'attachment','application/pdf',0),(5102,2,'2023-02-13 18:42:24','2023-02-13 18:42:24','','Tuesday,February 14th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayfebruary-14th-feeder-cattle-consignments','','','2023-02-13 18:42:24','2023-02-13 18:42:24','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/02/TuesdayFebruary-14th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5103,2,'2023-02-13 18:42:42','2023-02-13 18:42:42','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/TuesdayFebruary-14th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5102\">Tuesday,February 14th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #800080;\">Special Cow &amp; Bull Sale, Saturday, February 18th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Peck Farms: </b><b>3 </b>18-month-old Horned Hereford bulls. Bull out of registered stock, no papers</li>\n<li><b>Fitzpatrick Farms: </b><b>1 </b>15-month-old Reg. Red Angus bull, born on 10-15-2021</li>\n<li><b>Freeman Farms: </b><b>3 </b>16-17-month-old Reg. Blk Balancer bulls.<strong> 1</strong> 12-month-old Reg. Blk Balancer bull. All bulls semen/trich tested &amp; ready to turn out. Nice set of balancer bulls.</li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1531983\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1531983</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1520341\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1520341</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1521637\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1521637</a></li>\n<li><a href=\"https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1518527\">https://gelbvieh.digitalbeef.com/modules.php?op=modload&amp;name=_animal&amp;file=_animal&amp;animal_registration=AMGV1518527</a></li>\n<li><b>Shurk Farms: </b><b>1 </b>3 yr. old Blk Angus bull <b>2 </b>4 yr. old Blk Angus bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>D &amp; C Farms Complete Dispersal: </b><b>20 </b>Â Red Angus 3-6 yr. old cows,3rd period. 20 Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Red Angus or Hereford bulls. Start calving end of Feb. All cows are current on shots &amp; will raise a nice calf.</li>\n<li><b>Tyler Farms : </b><b>10 </b>Blk 3-6 yr old cows w/ month old calves at side. ,</li>\n<li><b>T-D Farms: </b><b>17 </b>Blk Braunvieh X 5-6 yr. old cows w/ 200lbs spring calves at side. Cows sell open, calves sired by Crooks Sim-Angus bulls. Nice set of pairs.</li>\n<li><b>Simons Farms: </b><b>58 </b>Fancy Purebred Blk Angus 1100lbs bred heifers, 3rd period. Heifers were pelvic measured prior to breeding. Bred LBWT Blk Angus bulls. Bulls turned in 6-1-22, out on 8-122 &amp; pregged on 9-6-22. Start calving Mar. 14th. Had all spring shots &amp; wormed/poured. Excellent set of bred heifers.</li>\n<li><b>Steth Farms: </b><b>15 </b>Polled Hereford 3-6 yr old cows,3rd period. Bred Blk Angus bulls, start calving Mar. 1st.</li>\n<li><b>Middleton Farms: </b><b>18 </b>Blk Angus 2 yr old 1100lbs bred heifers,3rd period. Bred LBWT Blk Angus bulls.</li>\n<li><b>Botch Farms: </b><b>45</b> Red Angus 3-6 yr. old cows, 3rd period. Bred Blk or Red Angus bulls. Start calving Mar. 1st. Gentle set of cows.</li>\n<li><b>Simpson Farms: </b><b>60 </b>Blk 3-4 yr. old cows, 3rd period. <b>60 </b>Blk 5-7 yr. old cows,3rd period. All cows start calving Feb 22nd. Bred Blk Angus bulls.</li>\n<li><b>Norris Farms: </b><b>20 </b>Blk 3-6 yr. old cows, 3rd period. Bred Blk Gelv. Bulls. Start calving Feb. 25th.</li>\n<li><b>Scott Farms: </b><b>15 </b>Blk 3-7 yr old cows,2nd period. Bred Blk Sim-Angus bulls. Start calving April 1st.</li>\n<li><b>Starke Farms: </b><b>10 </b>Red Balancer 2 yr. old 1100lbs bred heifers, 3rd period. Out of Seedstock Plus genetics. 58 Red Angus 2 yr. old 1100lbs bred heifers,3rd period. 54 Red Angus 3-6 yr. old cows, 3rd period. All home-raised. Cows &amp; heifers bred LBWT Red Angus Composite bulls. Wormed/poured, Lepto/Vibrio vaccinated &amp; scour guard shot. Start calving Mar. 18th, outstanding set bred heifers &amp; cows. All are gentle &amp; the right kind</li>\n<li><b>Ryan Farms: </b><b>5 </b>Fancy Rwf 3 yr. old cows w/ 350lbs calves at side. Calves sired by Red Angus bulls. Cows are very gentle &amp; bought as 600lbs open heifers. Cows were AI bred to Red Angus bull 9 Mile Franchise on Dec. 22nd &amp; cleaned up w/ Red Angus bull for 30 days. Current on all shots.</li>\n<li><b>B. Palm Farms: </b><b>6 </b>Fancy Hereford 6 yr. old cows. Bred Reg. Blk Angus bulls. Start calving Mar. 1st for 45 days. Nice, big set of cows that are gentle &amp; current on all shots.</li>\n<li><b>Summers Farms: </b><b>22 </b>Charx 2 yr. old bred heifers. Bred LBWT Valley Oaks Angus bulls.</li>\n<li><b>Crutchfield Farms: </b><b>8 </b>Blk 2 yr. old heifer pairs w/ month old calves at side.</li>\n<li><b>Gabriel Farms: </b><b>15 </b>Blk-Rwf 7-SS yr. old cows,3rd period. Bred Blk Bulls</li>\n<li><b>Ethan Jones Farms: </b><b>10 </b>Bwf 2 yr. old 1200lbs bred heifers. <b>15 </b>Blk 2 yr. old 1200lbs bred heifers. <b>1 </b>Rwf 2 yr. old 1200lbs bred heifer. All are home-raised &amp; a gentle set of heifers. All heifers are pelvic measured prior to breeding &amp; current on all shots. Heifers start calving Feb. 25th for 40 days &amp; bred LBWT T&amp;D farms, Blk Angus bulls.</li>\n<li><b>Shurk Farms: </b><b>33 </b>Blk 3-6 yr. old cows. Bred Blk Angus bulls.</li>\n<li><b>Dean Farms: </b><b>25 </b>Blk-Bwf 2 yr. old 1100lbs bred heifers. All heifers home-raised &amp; very gentle. Bred Seedstock Balancer bulls or Foster Balancer bulls. Bulls turned in May 17th for 60 days</li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-02-13 18:42:42','2023-02-13 18:42:42','',2209,'https://kingsvillelivestock.com/?p=5103',0,'revision','',0),(5105,2,'2023-02-15 06:13:23','2023-02-15 06:13:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-18-2023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5097\">Feb. 18, 2023 Cow Sale</a></p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-02-15 06:13:23','2023-02-15 06:13:23','',639,'https://kingsvillelivestock.com/?p=5105',0,'revision','',0),(5106,2,'2023-02-15 06:13:51','2023-02-15 06:13:51','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-18-2023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5097\">Feb. 18, 2023 Cow Sale</a></p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-02-15 06:13:51','2023-02-15 06:13:51','',1967,'https://kingsvillelivestock.com/?p=5106',0,'revision','',0),(5107,2,'2023-02-15 17:25:00','2023-02-15 17:25:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 14, 2023, </strong>3857 hd; Last week, 4691 hd; 4436 a year ago. Feeder cattle sold fully steady w/ some lightweight grazing heifers selling up to $5 higher in places. Slaughter cows &amp; bulls sold steady compared to last week. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$252.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$247.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$217.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$186.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$217.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$191.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$162.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$152.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$86.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$77.00 - $85.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $76.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">606lbs @$217.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">642lbs @$206.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">657lbs@$201.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">745lbs@$193.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">749lbs@$187.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">755lbs@$186.10</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.125px; height: 46px;\">Steers</td>\n<td style=\"width: 146.875px; height: 46px;\">866lbs@$181.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">867lbs@$184.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">496lbs@$230.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">542lbs@$215.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">604lbs@$188.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">615lbs@$190.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">669lbs@$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">HeifersÂ </td>\n<td style=\"width: 146.875px; height: 23px;\">681lbs@$185.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Â </td>\n<td style=\"width: 146.875px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.125px; height: 10px;\">Â </td>\n<td style=\"width: 146.875px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 14, 2023 - Market Report','','publish','closed','open','','february-14-2023-market-report','','','2023-02-15 17:25:03','2023-02-15 17:25:03','',0,'https://kingsvillelivestock.com/?p=5107',0,'post','',0),(5109,2,'2023-02-15 17:25:00','2023-02-15 17:25:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 14, 2023, </strong>3857 hd; Last week, 4691 hd; 4436 a year ago. Feeder cattle sold fully steady w/ some lightweight grazing heifers selling up to $5 higher in places. Slaughter cows &amp; bulls sold steady compared to last week. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$252.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$247.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$217.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$186.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$217.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$191.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$162.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$152.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$86.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$77.00 - $85.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $76.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">606lbs @$217.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">642lbs @$206.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">657lbs@$201.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">745lbs@$193.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">749lbs@$187.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">755lbs@$186.10</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.125px; height: 46px;\">Steers</td>\n<td style=\"width: 146.875px; height: 46px;\">866lbs@$181.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">867lbs@$184.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">496lbs@$230.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">542lbs@$215.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">604lbs@$188.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">615lbs@$190.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">669lbs@$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">HeifersÂ </td>\n<td style=\"width: 146.875px; height: 23px;\">681lbs@$185.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Â </td>\n<td style=\"width: 146.875px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.125px; height: 10px;\">Â </td>\n<td style=\"width: 146.875px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 14, 2023 - Market Report','','inherit','closed','closed','','5107-revision-v1','','','2023-02-15 17:25:00','2023-02-15 17:25:00','',5107,'https://kingsvillelivestock.com/?p=5109',0,'revision','',0),(5110,2,'2023-02-15 17:25:00','2023-02-15 17:25:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 14, 2023, </strong>3857 hd; Last week, 4691 hd; 4436 a year ago. Feeder cattle sold fully steady w/ some lightweight grazing heifers selling up to $5 higher in places. Slaughter cows &amp; bulls sold steady compared to last week. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$252.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$247.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$217.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$186.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$217.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$191.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$162.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$152.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$86.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$77.00 - $85.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $76.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">606lbs @$217.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">642lbs @$206.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">657lbs@$201.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">745lbs@$193.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">749lbs@$187.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">755lbs@$186.10</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.125px; height: 46px;\">Steers</td>\n<td style=\"width: 146.875px; height: 46px;\">866lbs@$181.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">867lbs@$184.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">496lbs@$230.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">542lbs@$215.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">604lbs@$188.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">615lbs@$190.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">669lbs@$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">HeifersÂ </td>\n<td style=\"width: 146.875px; height: 23px;\">681lbs@$185.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Â </td>\n<td style=\"width: 146.875px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.125px; height: 10px;\">Â </td>\n<td style=\"width: 146.875px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 7, 2023 - Market Report','','inherit','closed','closed','','5107-revision-v1','','','2023-02-15 17:25:00','2023-02-15 17:25:00','',5107,'https://kingsvillelivestock.com/?p=5110',0,'revision','',0),(5111,2,'2023-02-15 17:25:03','2023-02-15 17:25:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 14, 2023, </strong>3857 hd; Last week, 4691 hd; 4436 a year ago. Feeder cattle sold fully steady w/ some lightweight grazing heifers selling up to $5 higher in places. Slaughter cows &amp; bulls sold steady compared to last week. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$252.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$247.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$217.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$186.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$150.00-$170.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$217.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$191.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$180.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$140.00-$162.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$152.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$86.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$77.00 - $85.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $76.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $122.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.19.5\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">606lbs @$217.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">642lbs @$206.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">657lbs@$201.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">745lbs@$193.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">749lbs@$187.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">755lbs@$186.10</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.125px; height: 46px;\">Steers</td>\n<td style=\"width: 146.875px; height: 46px;\">866lbs@$181.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Steers</td>\n<td style=\"width: 146.875px; height: 23px;\">867lbs@$184.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">496lbs@$230.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">542lbs@$215.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">604lbs@$188.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">615lbs@$190.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.875px; height: 23px;\">669lbs@$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">HeifersÂ </td>\n<td style=\"width: 146.875px; height: 23px;\">681lbs@$185.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.125px; height: 23px;\">Â </td>\n<td style=\"width: 146.875px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.125px; height: 10px;\">Â </td>\n<td style=\"width: 146.875px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 14, 2023 - Market Report','','inherit','closed','closed','','5107-revision-v1','','','2023-02-15 17:25:03','2023-02-15 17:25:03','',5107,'https://kingsvillelivestock.com/?p=5111',0,'revision','',0),(5112,2,'2023-02-15 18:30:08','2023-02-15 18:30:08','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.19.5\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/YWk2EU4tu4WvJSod8\">White Photos</a></p>\n<p style=\"text-align: left;\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-02-15 18:30:08','2023-02-15 18:30:08','',1450,'https://kingsvillelivestock.com/?p=5112',0,'revision','',0),(5113,2,'2023-02-15 18:35:45','2023-02-15 18:35:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-18-2023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5097\">Feb. 18, 2023 Cow Sale</a></p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-02-15 18:35:45','2023-02-15 18:35:45','',639,'https://kingsvillelivestock.com/?p=5113',0,'revision','',0),(5114,2,'2023-02-15 18:36:34','2023-02-15 18:36:34','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/Feb.-18-2023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5097\">Feb. 18, 2023 Cow Sale</a></p>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-02-15 18:36:34','2023-02-15 18:36:34','',1967,'https://kingsvillelivestock.com/?p=5114',0,'revision','',0),(5115,2,'2023-02-20 16:57:36','2023-02-20 16:57:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-02-20 16:57:36','2023-02-20 16:57:36','',639,'https://kingsvillelivestock.com/?p=5115',0,'revision','',0),(5116,2,'2023-02-20 16:58:07','2023-02-20 16:58:07','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-02-20 16:58:07','2023-02-20 16:58:07','',1967,'https://kingsvillelivestock.com/?p=5116',0,'revision','',0),(5117,2,'2023-02-20 17:36:14','2023-02-20 17:36:14','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.19.5\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/TuesdayFebruary-14th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5102\">Tuesday,February 14th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-02-20 17:36:14','2023-02-20 17:36:14','',2209,'https://kingsvillelivestock.com/?p=5117',0,'revision','',0),(5118,2,'2023-02-20 18:06:40','2023-02-20 18:06:40','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-02-20 18:06:40','2023-02-20 18:06:40','',639,'https://kingsvillelivestock.com/?p=5118',0,'revision','',0),(5119,2,'2023-02-20 18:07:29','2023-02-20 18:07:29','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-02-20 18:07:29','2023-02-20 18:07:29','',1967,'https://kingsvillelivestock.com/?p=5119',0,'revision','',0),(5120,2,'2023-02-20 18:24:31','2023-02-20 18:24:31','','Tuesday,February 21st Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayfebruary-21st-feeder-cattle-consignments','','','2023-02-20 18:24:31','2023-02-20 18:24:31','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/02/TuesdayFebruary-21st-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5121,2,'2023-02-20 18:24:38','2023-02-20 18:24:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/TuesdayFebruary-21st-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5120\">Tuesday,February 21st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-02-20 18:24:38','2023-02-20 18:24:38','',2209,'https://kingsvillelivestock.com/?p=5121',0,'revision','',0),(5122,2,'2023-02-20 19:06:16','2023-02-20 19:06:16','','White Auction - March 10th - Holden','','inherit','closed','closed','','white-auction-march-10th-holden','','','2023-02-20 19:06:16','2023-02-20 19:06:16','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/02/White-Auction-March-10th-Holden.pdf',0,'attachment','application/pdf',0),(5123,2,'2023-02-20 19:06:50','2023-02-20 19:06:50','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/White-Auction-March-10th-Holden.pdf\" rel=\"attachment wp-att-5122\">Shirley White Auction Friday, March 10th - 10am- Holden</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/YWk2EU4tu4WvJSod8\">White Photos</a></p>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-02-20 19:06:50','2023-02-20 19:06:50','',1450,'https://kingsvillelivestock.com/?p=5123',0,'revision','',0),(5124,2,'2023-02-22 05:05:42','2023-02-22 05:05:42','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-02-22 05:05:42','2023-02-22 05:05:42','',639,'https://kingsvillelivestock.com/?p=5124',0,'revision','',0),(5125,2,'2023-02-22 05:06:47','2023-02-22 05:06:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-02-22 05:06:47','2023-02-22 05:06:47','',1967,'https://kingsvillelivestock.com/?p=5125',0,'revision','',0),(5126,2,'2023-02-22 16:19:29','2023-02-22 16:19:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 21, 2023, </strong>2624 hd; Last week, 3857 hd; 2110 a year ago. Compared to last week feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$260.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$235.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$194.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$173.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$245.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$162.00-$214.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$142.00-$163.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$140.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$92.00 - $108.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $91.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $128.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">672lbs @$210.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">762lbs @$190.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">777lbs@$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers-Red/Char</td>\n<td style=\"width: 146.516px; height: 23px;\">830lbs@$182.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">632lbs@$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">695lbs@$190.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 46px;\">713lbs@$185.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 21, 2023 - Market Report','','publish','closed','open','','february-21-2023-market-report','','','2023-02-22 16:19:32','2023-02-22 16:19:32','',0,'https://kingsvillelivestock.com/?p=5126',0,'post','',0),(5128,2,'2023-02-22 16:19:29','2023-02-22 16:19:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 21, 2023, </strong>2624 hd; Last week, 3857 hd; 2110 a year ago. Compared to last week feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$260.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$235.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$194.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$173.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$245.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$162.00-$214.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$142.00-$163.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$140.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$92.00 - $108.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $91.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $128.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">672lbs @$210.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">762lbs @$190.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">777lbs@$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers-Red/Char</td>\n<td style=\"width: 146.516px; height: 23px;\">830lbs@$182.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">632lbs@$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">695lbs@$190.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 46px;\">713lbs@$185.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 21, 2023 - Market Report','','inherit','closed','closed','','5126-revision-v1','','','2023-02-22 16:19:29','2023-02-22 16:19:29','',5126,'https://kingsvillelivestock.com/?p=5128',0,'revision','',0),(5129,2,'2023-02-22 16:19:29','2023-02-22 16:19:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 21, 2023, </strong>2624 hd; Last week, 3857 hd; 2110 a year ago. Compared to last week feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$260.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$235.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$194.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$173.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$245.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$162.00-$214.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$142.00-$163.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$140.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$92.00 - $108.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $91.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $128.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">672lbs @$210.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">762lbs @$190.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">777lbs@$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers-Red/Char</td>\n<td style=\"width: 146.516px; height: 23px;\">830lbs@$182.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">632lbs@$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">695lbs@$190.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 46px;\">713lbs@$185.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 14, 2023 - Market Report','','inherit','closed','closed','','5126-revision-v1','','','2023-02-22 16:19:29','2023-02-22 16:19:29','',5126,'https://kingsvillelivestock.com/?p=5129',0,'revision','',0),(5130,2,'2023-02-22 16:19:32','2023-02-22 16:19:32','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 21, 2023, </strong>2624 hd; Last week, 3857 hd; 2110 a year ago. Compared to last week feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$260.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$235.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$194.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$182.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$173.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$245.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$162.00-$214.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$192.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$157.00-$185.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$142.00-$163.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$120.00-$140.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$92.00 - $108.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $91.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $79.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $128.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">672lbs @$210.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">762lbs @$190.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">777lbs@$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers-Red/Char</td>\n<td style=\"width: 146.516px; height: 23px;\">830lbs@$182.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">632lbs@$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">695lbs@$190.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 46px;\">713lbs@$185.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 21, 2023 - Market Report','','inherit','closed','closed','','5126-revision-v1','','','2023-02-22 16:19:32','2023-02-22 16:19:32','',5126,'https://kingsvillelivestock.com/?p=5130',0,'revision','',0),(5131,2,'2023-02-22 18:29:41','2023-02-22 18:29:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-02-22 18:29:41','2023-02-22 18:29:41','',1967,'https://kingsvillelivestock.com/?p=5131',0,'revision','',0),(5132,2,'2023-02-22 18:34:35','2023-02-22 18:34:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-02-22 18:34:35','2023-02-22 18:34:35','',639,'https://kingsvillelivestock.com/?p=5132',0,'revision','',0),(5134,2,'2023-02-27 18:43:05','2023-02-27 18:43:05','','March 11th,2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','march-11th2022-horse-tack-small-animal-sale','','','2023-02-27 18:43:05','2023-02-27 18:43:05','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/02/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf',0,'attachment','application/pdf',0),(5135,2,'2023-02-27 18:43:27','2023-02-27 18:43:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5134\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5134\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-02-27 18:43:27','2023-02-27 18:43:27','',639,'https://kingsvillelivestock.com/?p=5135',0,'revision','',0),(5136,2,'2023-02-27 18:44:06','2023-02-27 18:44:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5134\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5134\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-02-27 18:44:06','2023-02-27 18:44:06','',1967,'https://kingsvillelivestock.com/?p=5136',0,'revision','',0),(5137,2,'2023-02-27 18:48:17','2023-02-27 18:48:17','','Tuesday,February 28th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayfebruary-28th-feeder-cattle-consignments','','','2023-02-27 18:48:17','2023-02-27 18:48:17','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/02/TuesdayFebruary-28th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5138,2,'2023-02-27 18:48:24','2023-02-27 18:48:24','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/TuesdayFebruary-28th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5137\">Tuesday,February 28th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-02-27 18:48:24','2023-02-27 18:48:24','',2209,'https://kingsvillelivestock.com/?p=5138',0,'revision','',0),(5139,2,'2023-02-27 19:57:04','2023-02-27 19:57:04','{{unknown}}','','','publish','closed','closed','','7d57059e80be3df3bbe866072d70a282','','','2023-02-27 19:57:04','2023-02-27 19:57:04','',0,'https://kingsvillelivestock.com/2023/02/27/7d57059e80be3df3bbe866072d70a282/',0,'oembed_cache','',0),(5140,2,'2023-02-27 19:57:27','2023-02-27 19:57:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.0\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.0\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"color: #ff00ff;\"><strong>If you are interested in receiving our market reports via text please click the link below!Â </strong></span></p>\n<p style=\"text-align: center;\">https://eztxt.net/7zE1ga</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5134\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5134\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-02-27 19:57:27','2023-02-27 19:57:27','',1967,'https://kingsvillelivestock.com/?p=5140',0,'revision','',0),(5142,2,'2023-02-27 20:00:12','2023-02-27 20:00:12','','qr-code (1)','','inherit','closed','closed','','qr-code-1','','','2023-02-27 20:00:12','2023-02-27 20:00:12','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/02/qr-code-1.png',0,'attachment','image/png',0),(5143,2,'2023-02-27 20:01:30','2023-02-27 20:01:30','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"color: #ff00ff;\"><strong>If you are interested in receiving our market reports via text please scan the QR code or click the link!Â </strong></span></p>\n<p style=\"text-align: center;\"><span style=\"color: #ff00ff;\"><strong><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/qr-code-1-300x300.png\" width=\"125\" height=\"125\" alt=\"\" class=\"wp-image-5142 alignnone size-medium\" /></strong></span></p>\n<p style=\"text-align: center;\"><span style=\"color: #ff00ff;\"><strong><a href=\"https://eztxt.net/7zE1ga\">KLA Market Report</a></strong></span></p>\n<p style=\"text-align: center;\"><span style=\"color: #ff00ff;\"><strong></strong></span></p>\n<p style=\"text-align: center;\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5134\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5134\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-02-27 20:01:30','2023-02-27 20:01:30','',1967,'https://kingsvillelivestock.com/?p=5143',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (5144,2,'2023-02-27 20:04:25','2023-02-27 20:04:25','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"color: #ff00ff;\"><strong>If you are interested in receiving our market reports via text please click the link below!Â </strong></span></p>\n<p style=\"text-align: center;\"><span style=\"color: #ff00ff;\"><strong><a href=\"https://eztxt.net/7zE1ga\">KLA Market Report</a></strong></span></p>\n<p style=\"text-align: center;\"><span style=\"color: #ff00ff;\"><strong></strong></span></p>\n<p style=\"text-align: center;\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h1><strong>FEBRUARY 2023 AUCTION DATES:</strong></h1>\n<p><strong>Feb. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5134\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5134\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-02-27 20:04:25','2023-02-27 20:04:25','',1967,'https://kingsvillelivestock.com/?p=5144',0,'revision','',0),(5145,2,'2023-03-01 02:21:43','2023-03-01 02:21:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5134\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5134\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-03-01 02:21:43','2023-03-01 02:21:43','',639,'https://kingsvillelivestock.com/?p=5145',0,'revision','',0),(5146,2,'2023-03-01 02:22:12','2023-03-01 02:22:12','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5134\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5134\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-03-01 02:22:12','2023-03-01 02:22:12','',1967,'https://kingsvillelivestock.com/?p=5146',0,'revision','',0),(5147,2,'2023-03-01 16:15:52','2023-03-01 16:15:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 28, 2023, </strong>2177 hd; Last week, 2624 hd; 2306 a year ago. Feeder cattle weighing 650lbs &amp; up-sold fully steady. Lighter grazing cattle sold steady w/ a lighter test than last week. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$265.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$262.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$177.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$167.00-$184.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$153.00-$168.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$247.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$229.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$216.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$190.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$171.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$143.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$94.00 - $113.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $93.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$68.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $134.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">725lbs @$194.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">749lbs @$197.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">786lbs@$190.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">790lbs@$189.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">671lbs@$190.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">701lbs@$190.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 46px;\">702lbs@$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">707lbs@$188.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 28, 2023 - Market Report','','publish','closed','open','','february-28-2023-market-report','','','2023-03-01 16:15:55','2023-03-01 16:15:55','',0,'https://kingsvillelivestock.com/?p=5147',0,'post','',0),(5149,2,'2023-03-01 16:15:52','2023-03-01 16:15:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 28, 2023, </strong>2177 hd; Last week, 2624 hd; 2306 a year ago. Feeder cattle weighing 650lbs &amp; up-sold fully steady. Lighter grazing cattle sold steady w/ a lighter test than last week. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$265.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$262.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$177.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$167.00-$184.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$153.00-$168.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$247.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$229.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$216.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$190.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$171.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$143.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$94.00 - $113.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $93.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$68.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $134.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">725lbs @$194.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">749lbs @$197.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">786lbs@$190.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">790lbs@$189.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">671lbs@$190.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">701lbs@$190.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 46px;\">702lbs@$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">707lbs@$188.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 28, 2023 - Market Report','','inherit','closed','closed','','5147-revision-v1','','','2023-03-01 16:15:52','2023-03-01 16:15:52','',5147,'https://kingsvillelivestock.com/?p=5149',0,'revision','',0),(5150,2,'2023-03-01 16:15:52','2023-03-01 16:15:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 28, 2023, </strong>2177 hd; Last week, 2624 hd; 2306 a year ago. Feeder cattle weighing 650lbs &amp; up-sold fully steady. Lighter grazing cattle sold steady w/ a lighter test than last week. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$265.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$262.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$177.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$167.00-$184.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$153.00-$168.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$247.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$229.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$216.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$190.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$171.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$143.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$94.00 - $113.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $93.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$68.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $134.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">725lbs @$194.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">749lbs @$197.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">786lbs@$190.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">790lbs@$189.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">671lbs@$190.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">701lbs@$190.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 46px;\">702lbs@$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">707lbs@$188.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 21, 2023 - Market Report','','inherit','closed','closed','','5147-revision-v1','','','2023-03-01 16:15:52','2023-03-01 16:15:52','',5147,'https://kingsvillelivestock.com/?p=5150',0,'revision','',0),(5151,2,'2023-03-01 16:15:55','2023-03-01 16:15:55','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>February 28, 2023, </strong>2177 hd; Last week, 2624 hd; 2306 a year ago. Feeder cattle weighing 650lbs &amp; up-sold fully steady. Lighter grazing cattle sold steady w/ a lighter test than last week. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$265.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$262.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$177.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$198.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$167.00-$184.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$153.00-$168.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$247.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$229.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$168.00-$216.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$163.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$190.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$171.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$130.00-$143.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$94.00 - $113.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $93.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$68.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $134.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">725lbs @$194.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">749lbs @$197.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">786lbs@$190.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">790lbs@$189.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">671lbs@$190.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">701lbs@$190.85</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 46px;\">702lbs@$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">707lbs@$188.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 28, 2023 - Market Report','','inherit','closed','closed','','5147-revision-v1','','','2023-03-01 16:15:55','2023-03-01 16:15:55','',5147,'https://kingsvillelivestock.com/?p=5151',0,'revision','',0),(5153,2,'2023-03-06 17:02:28','2023-03-06 17:02:28','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/TuesdayFebruary-28th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5137\">Tuesday,February 28th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #00ffff;\">SpecialÂ  Cow &amp; Bull Sale - Saturday, March 18th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Riley Farms: </b><b>2 </b>Â 4 yr. old Blk Blazed Face Sim-Angus bulls. Super gentle set of bulls.</li>\n<li><b>S-JJ Farms: </b><b>3 </b>2 yr. old Blk Balancer bulls. Been semen &amp; trich tested, ready to turn out. Nice set of bulls w/ all info.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>45 </b>Â Blk-Bwf 3-7 yr. old cows w/ 250-450lbs calves at side. Several 3N1s, all cows been running back w/ Jenkins Blk Balancer bulls. <b>25</b> Blk-Bwf 3-4 yr. old cows w/ 400lbs calves at side. 3N1 pairs, all bred back to Polled Hereford bulls or Blk Angus bulls.</li>\n<li><b>Malin Farms: </b><b>11 </b>Blk-Bwf 6-7 yr old cows,2nd period. Bred Blk Angus bulls. Start calving in Sept.Â </li>\n<li><b>Malin &amp; Malin Farms: </b><b>5 </b>Bwf Super Baldy 700lbs heifers. <b>5</b> Blk Brangus 700lbs heifers. <b>5 </b>Blk Brangus 700lbs heifers, All heifers will sell in groups of 5, with the option to take up to 15 replacement quality heifers. All heifers are gentle, home-raised &amp; front end. Heifers will be pelvic measured, EID tagged, &amp; pregged opened prior to sale.</li>\n<li><b>Elmen Farms: </b><b>36 </b>Red Angus 3-6 yr. old cows, 2nd &amp; 3rd period. Bred Red &amp; Blk Balancer bulls.</li>\n<li><b>Fredrich Farms: </b><b>15 </b>Blk-Bwf 3-5 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Spencer Farms: </b><b>30 </b>Blk 3-4 yr old cows, 3rd period. <b>30</b> Blk 5-7 yr. old cows, 3rd period. All cows bred Blk Angus or Blk. Gelv. Bulls.Â </li>\n<li><b>Sterling Farms: </b><b>50</b> Blk 3-4 yr. old cows, 2nd period. <b>40</b> Blk 5-6 yr. old cows,2nd period. All cows bred Blk Angus bulls.</li>\n<li><b>James Farms: </b><b>15 </b>Blk 3-6 yr. old cows, 2nd &amp; 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Massey Farms: </b><b>15 </b>Blk 6-BM yr. old cows w/ 300lbs calves at side. <b>45</b> Blk-Red-Char 6-BM yr. old cows, 3rd period or w/ new born calves. Cows bred Blk Angus bulls. All cows selling due to loss of ground rented.</li>\n<li><b>Conrow Farms: </b><b>3 </b>Blk Angus 3 yr old cows w/ 2 month old calves at side.<b> 1 </b>Red Angus 3 yr. old cow w/ 2 month old calf at side. <b>2</b> Red Baldy 2 yr. old heifer w/ 2 month old calves at side. <b>5 </b>Bwf 2 yr old heifers w/ month old calves at side. All sell open, nice set of pairs. <b>2 </b>Blk 3 yr. old cows w/ fall calves at side 3N1â€™s &amp; been running back w/ Hereford bull. <b>5</b> Blk 3-4 yr. old cows,2nd &amp; 3rd period. Bred Hereford bull. All cows are good quality &amp; ear tagged to match</li>\n<li><b>C-W Fall Calving Herd Dispersal: </b><b>45 </b>Blk 3-7 yr. old cows w/ 300-400lbs calves at side. Cows have been running back w/ MayWay Farms Blk Angus bulls since Dec. 1st. Nice set of cows that have had all shots.</li>\n<li><b>Nuelle Farms: </b><b>23 </b>Â Red Angus 3-6 yr. old cows w/ Jan. born calves at side. Calves are sired by Red Balancer bulls. 20 Blk Angus 3-6 yr. old cows w/ Jan. born calves at side. Calves sired by Red. Blk Angus bulls. All cows have been worm/ poured &amp; vira-shield V6L5. Nice set of gentle pairs.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-03-06 17:02:28','2023-03-06 17:02:28','',2209,'https://kingsvillelivestock.com/?p=5153',0,'revision','',0),(5154,2,'2023-03-06 17:18:38','2023-03-06 17:18:38','','March 11th,2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','march-11th2022-horse-tack-small-animal-sale-2','','','2023-03-06 17:18:38','2023-03-06 17:18:38','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf',0,'attachment','application/pdf',0),(5155,2,'2023-03-06 17:18:54','2023-03-06 17:18:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5154\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5154\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-03-06 17:18:54','2023-03-06 17:18:54','',1967,'https://kingsvillelivestock.com/?p=5155',0,'revision','',0),(5156,2,'2023-03-06 17:19:35','2023-03-06 17:19:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5154\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5154\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-03-06 17:19:35','2023-03-06 17:19:35','',639,'https://kingsvillelivestock.com/?p=5156',0,'revision','',0),(5157,2,'2023-03-06 19:02:58','2023-03-06 19:02:58','','Tuesday,March 7th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymarch-7th-feeder-cattle-consignments','','','2023-03-06 19:02:58','2023-03-06 19:02:58','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-7th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5158,2,'2023-03-06 19:03:12','2023-03-06 19:03:12','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-7th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5157\">Tuesday,March 7th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #00ffff;\">SpecialÂ  Cow &amp; Bull Sale - Saturday, March 18th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Riley Farms: </b><b>2 </b>Â 4 yr. old Blk Blazed Face Sim-Angus bulls. Super gentle set of bulls.</li>\n<li><b>S-JJ Farms: </b><b>3 </b>2 yr. old Blk Balancer bulls. Been semen &amp; trich tested, ready to turn out. Nice set of bulls w/ all info.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>45 </b>Â Blk-Bwf 3-7 yr. old cows w/ 250-450lbs calves at side. Several 3N1s, all cows been running back w/ Jenkins Blk Balancer bulls. <b>25</b> Blk-Bwf 3-4 yr. old cows w/ 400lbs calves at side. 3N1 pairs, all bred back to Polled Hereford bulls or Blk Angus bulls.</li>\n<li><b>Malin Farms: </b><b>11 </b>Blk-Bwf 6-7 yr old cows,2nd period. Bred Blk Angus bulls. Start calving in Sept.Â </li>\n<li><b>Malin &amp; Malin Farms: </b><b>5 </b>Bwf Super Baldy 700lbs heifers. <b>5</b> Blk Brangus 700lbs heifers. <b>5 </b>Blk Brangus 700lbs heifers, All heifers will sell in groups of 5, with the option to take up to 15 replacement quality heifers. All heifers are gentle, home-raised &amp; front end. Heifers will be pelvic measured, EID tagged, &amp; pregged opened prior to sale.</li>\n<li><b>Elmen Farms: </b><b>36 </b>Red Angus 3-6 yr. old cows, 2nd &amp; 3rd period. Bred Red &amp; Blk Balancer bulls.</li>\n<li><b>Fredrich Farms: </b><b>15 </b>Blk-Bwf 3-5 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Spencer Farms: </b><b>30 </b>Blk 3-4 yr old cows, 3rd period. <b>30</b> Blk 5-7 yr. old cows, 3rd period. All cows bred Blk Angus or Blk. Gelv. Bulls.Â </li>\n<li><b>Sterling Farms: </b><b>50</b> Blk 3-4 yr. old cows, 2nd period. <b>40</b> Blk 5-6 yr. old cows,2nd period. All cows bred Blk Angus bulls.</li>\n<li><b>James Farms: </b><b>15 </b>Blk 3-6 yr. old cows, 2nd &amp; 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Massey Farms: </b><b>15 </b>Blk 6-BM yr. old cows w/ 300lbs calves at side. <b>45</b> Blk-Red-Char 6-BM yr. old cows, 3rd period or w/ new born calves. Cows bred Blk Angus bulls. All cows selling due to loss of ground rented.</li>\n<li><b>Conrow Farms: </b><b>3 </b>Blk Angus 3 yr old cows w/ 2 month old calves at side.<b> 1 </b>Red Angus 3 yr. old cow w/ 2 month old calf at side. <b>2</b> Red Baldy 2 yr. old heifer w/ 2 month old calves at side. <b>5 </b>Bwf 2 yr old heifers w/ month old calves at side. All sell open, nice set of pairs. <b>2 </b>Blk 3 yr. old cows w/ fall calves at side 3N1â€™s &amp; been running back w/ Hereford bull. <b>5</b> Blk 3-4 yr. old cows,2nd &amp; 3rd period. Bred Hereford bull. All cows are good quality &amp; ear tagged to match</li>\n<li><b>C-W Fall Calving Herd Dispersal: </b><b>45 </b>Blk 3-7 yr. old cows w/ 300-400lbs calves at side. Cows have been running back w/ MayWay Farms Blk Angus bulls since Dec. 1st. Nice set of cows that have had all shots.</li>\n<li><b>Nuelle Farms: </b><b>23 </b>Â Red Angus 3-6 yr. old cows w/ Jan. born calves at side. Calves are sired by Red Balancer bulls. 20 Blk Angus 3-6 yr. old cows w/ Jan. born calves at side. Calves sired by Red. Blk Angus bulls. All cows have been worm/ poured &amp; vira-shield V6L5. Nice set of gentle pairs.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-03-06 19:03:12','2023-03-06 19:03:12','',2209,'https://kingsvillelivestock.com/?p=5158',0,'revision','',0),(5159,2,'2023-03-06 20:00:44','2023-03-06 20:00:44','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5154\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5154\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-03-06 20:00:44','2023-03-06 20:00:44','',639,'https://kingsvillelivestock.com/?p=5159',0,'revision','',0),(5160,2,'2023-03-06 20:02:27','2023-03-06 20:02:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5154\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5154\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-03-06 20:02:27','2023-03-06 20:02:27','',1967,'https://kingsvillelivestock.com/?p=5160',0,'revision','',0),(5161,2,'2023-03-06 20:03:52','2023-03-06 20:03:52','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/White-Auction-March-10th-Holden.pdf\" rel=\"attachment wp-att-5122\">Shirley White Auction Friday, March 10th - 10am- Holden</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/YWk2EU4tu4WvJSod8\">White Photos</a></p>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/PGX4no29UYB44ts5A\">Wilson Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-03-06 20:03:52','2023-03-06 20:03:52','',1450,'https://kingsvillelivestock.com/?p=5161',0,'revision','',0),(5162,2,'2023-03-06 21:18:16','2023-03-06 21:18:16','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5154\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5154\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 25th @ 10:00 am<br /></strong>Lucille Jennings Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-03-06 21:18:16','2023-03-06 21:18:16','',639,'https://kingsvillelivestock.com/?p=5162',0,'revision','',0),(5163,2,'2023-03-06 21:20:30','2023-03-06 21:20:30','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5154\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5154\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 25th @ 10:00 am<br /></strong>Lucille Jennings Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-03-06 21:20:30','2023-03-06 21:20:30','',1967,'https://kingsvillelivestock.com/?p=5163',0,'revision','',0),(5165,2,'2023-03-06 22:59:01','2023-03-06 22:59:01','','Wilson Auction - April 1st - Urich','','inherit','closed','closed','','wilson-auction-april-1st-urich','','','2023-03-06 22:59:01','2023-03-06 22:59:01','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/03/Wilson-Auction-April-1st-Urich.pdf',0,'attachment','application/pdf',0),(5166,2,'2023-03-06 22:59:35','2023-03-06 22:59:35','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/White-Auction-March-10th-Holden.pdf\" rel=\"attachment wp-att-5122\">Shirley White Auction Friday, March 10th - 10am- Holden</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/YWk2EU4tu4WvJSod8\">White Photos</a></p>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/Wilson-Auction-April-1st-Urich.pdf\" rel=\"attachment wp-att-5165\">Linda Wilson Auction Saturday, April 1st -10am -Â  Urich</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/PGX4no29UYB44ts5A\">Wilson Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-03-06 22:59:35','2023-03-06 22:59:35','',1450,'https://kingsvillelivestock.com/?p=5166',0,'revision','',0),(5167,2,'2023-03-06 23:05:53','2023-03-06 23:05:53','','Wilson Auction - April 1st - Urich','','inherit','closed','closed','','wilson-auction-april-1st-urich-2','','','2023-03-06 23:05:53','2023-03-06 23:05:53','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/03/Wilson-Auction-April-1st-Urich-1.pdf',0,'attachment','application/pdf',0),(5168,2,'2023-03-06 23:06:04','2023-03-06 23:06:04','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/White-Auction-March-10th-Holden.pdf\" rel=\"attachment wp-att-5122\">Shirley White Auction Friday, March 10th - 10am- Holden</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/YWk2EU4tu4WvJSod8\">White Photos</a></p>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/Wilson-Auction-April-1st-Urich-1.pdf\" rel=\"attachment wp-att-5167\">Wilson Auction - April 1st - Urich</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/PGX4no29UYB44ts5A\">Wilson Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-03-06 23:06:04','2023-03-06 23:06:04','',1450,'https://kingsvillelivestock.com/?p=5168',0,'revision','',0),(5169,2,'2023-03-06 23:09:27','2023-03-06 23:09:27','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/02/White-Auction-March-10th-Holden.pdf\" rel=\"attachment wp-att-5122\">Shirley White Auction Friday, March 10th - 10 am- Holden</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/YWk2EU4tu4WvJSod8\">White Photos</a></p>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/Wilson-Auction-April-1st-Urich-1.pdf\" rel=\"attachment wp-att-5167\">Linda Wilson Auction Saturday, April 1st - 10 am-Urich</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/PGX4no29UYB44ts5A\">Wilson Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-03-06 23:09:27','2023-03-06 23:09:27','',1450,'https://kingsvillelivestock.com/?p=5169',0,'revision','',0),(5170,2,'2023-03-08 16:00:08','2023-03-08 16:00:08','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5154\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5154\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 25th @ 10:00 am<br /></strong>Lucille Jennings Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-03-08 16:00:08','2023-03-08 16:00:08','',639,'https://kingsvillelivestock.com/?p=5170',0,'revision','',0),(5171,2,'2023-03-08 16:00:36','2023-03-08 16:00:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5154\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5154\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 25th @ 10:00 am<br /></strong>Lucille Jennings Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-03-08 16:00:36','2023-03-08 16:00:36','',1967,'https://kingsvillelivestock.com/?p=5171',0,'revision','',0),(5172,2,'2023-03-08 16:52:30','2023-03-08 16:52:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 7, 2023, </strong>3133 hd; Last week, 2177 hd; 2480 a year ago. Feeder steers &amp; heifers sold steady-$6 higher. Light weight cattle sold steady-$4 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$283.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$274.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$256.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$234.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$170.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$231.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$197.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$166.00-$189.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$172.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$141.00-$154.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$94.00 - $111.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$81.00 - $93.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">628lbs @$230.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">748lbs @$201.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">758lbs@$202.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">787lbs@$191.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">820lbs@$193.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">868lbs@$188.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Steers</td>\n<td style=\"width: 146.516px; height: 46px;\">897lbs@$177.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">714lbs@$189.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">719lbs@$189.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">781lbs@$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">827lbs@$172.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 7, 2023 - Market Report','','publish','closed','open','','march-7-2023-market-report','','','2023-03-08 16:52:33','2023-03-08 16:52:33','',0,'https://kingsvillelivestock.com/?p=5172',0,'post','',0),(5174,2,'2023-03-08 16:52:30','2023-03-08 16:52:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 7, 2023, </strong>3133 hd; Last week, 2177 hd; 2480 a year ago. Feeder steers &amp; heifers sold steady-$6 higher. Light weight cattle sold steady-$4 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$283.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$274.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$256.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$234.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$170.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$231.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$197.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$166.00-$189.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$172.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$141.00-$154.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$94.00 - $111.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$81.00 - $93.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">628lbs @$230.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">748lbs @$201.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">758lbs@$202.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">787lbs@$191.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">820lbs@$193.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">868lbs@$188.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Steers</td>\n<td style=\"width: 146.516px; height: 46px;\">897lbs@$177.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">714lbs@$189.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">719lbs@$189.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">781lbs@$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">827lbs@$172.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 7, 2023 - Market Report','','inherit','closed','closed','','5172-revision-v1','','','2023-03-08 16:52:30','2023-03-08 16:52:30','',5172,'https://kingsvillelivestock.com/?p=5174',0,'revision','',0),(5175,2,'2023-03-08 16:52:30','2023-03-08 16:52:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 7, 2023, </strong>3133 hd; Last week, 2177 hd; 2480 a year ago. Feeder steers &amp; heifers sold steady-$6 higher. Light weight cattle sold steady-$4 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$283.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$274.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$256.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$234.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$170.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$231.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$197.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$166.00-$189.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$172.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$141.00-$154.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$94.00 - $111.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$81.00 - $93.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">628lbs @$230.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">748lbs @$201.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">758lbs@$202.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">787lbs@$191.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">820lbs@$193.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">868lbs@$188.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Steers</td>\n<td style=\"width: 146.516px; height: 46px;\">897lbs@$177.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">714lbs@$189.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">719lbs@$189.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">781lbs@$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">827lbs@$172.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','February 28, 2023 - Market Report','','inherit','closed','closed','','5172-revision-v1','','','2023-03-08 16:52:30','2023-03-08 16:52:30','',5172,'https://kingsvillelivestock.com/?p=5175',0,'revision','',0),(5176,2,'2023-03-08 16:52:33','2023-03-08 16:52:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 7, 2023, </strong>3133 hd; Last week, 2177 hd; 2480 a year ago. Feeder steers &amp; heifers sold steady-$6 higher. Light weight cattle sold steady-$4 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$283.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$274.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$256.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$234.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$203.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$193.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$170.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$231.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$197.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$166.00-$189.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$172.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$141.00-$154.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$94.00 - $111.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$81.00 - $93.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$60.00 - $80.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $135.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">628lbs @$230.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">748lbs @$201.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">758lbs@$202.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">787lbs@$191.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">820lbs@$193.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">868lbs@$188.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Steers</td>\n<td style=\"width: 146.516px; height: 46px;\">897lbs@$177.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">714lbs@$189.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">719lbs@$189.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">781lbs@$180.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">827lbs@$172.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 7, 2023 - Market Report','','inherit','closed','closed','','5172-revision-v1','','','2023-03-08 16:52:33','2023-03-08 16:52:33','',5172,'https://kingsvillelivestock.com/?p=5176',0,'revision','',0),(5178,2,'2023-03-08 18:09:38','2023-03-08 18:09:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-7th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5157\">Tuesday,March 7th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #00ffff;\">SpecialÂ  Cow &amp; Bull Sale - Saturday, March 18th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Riley Farms: </b><b>2 </b>Â 4 yr. old Blk Blazed Face Sim-Angus bulls. Super gentle set of bulls.</li>\n<li><b>S-JJ Farms: </b><b>3 </b>2 yr. old Blk Balancer bulls. Been semen &amp; trich tested, ready to turn out. Nice set of bulls w/ all info.</li>\n<li><b>Pemberton Farms: </b><b>1 </b>Â Reg. LBWT Bwf Hereford bull.Â Â </li>\n<li><b>Catron Farms: </b><b>1 </b>Â Reg. Blk Gelv. bullÂ </li>\n<li><b>JDA Farms: </b><b>1 </b>Â 3 yr. old Blk Balancer bull. Homo Polled &amp; Homo Blk. Out of Seedstock Plus geneticsÂ </li>\n<li><b>Diehl Cattle Co: </b>Â <b>1 </b>Â 2 yr. old Blk Leachman Composite bull.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>45 </b>Â Blk-Bwf 3-7 yr. old cows w/ 250-450lbs calves at side. Several 3N1s, all cows been running back w/ Jenkins Blk Balancer bulls. <b>25</b> Blk-Bwf 3-4 yr. old cows w/ 400lbs calves at side. 3N1 pairs, all bred back to Polled Hereford bulls or Blk Angus bulls.</li>\n<li><b>Malin Farms: </b><b>11 </b>Blk-Bwf 6-7 yr old cows,2nd period. Bred Blk Angus bulls. Start calving in Sept.</li>\n<li><b>Malin &amp; Malin Farms: </b><b>5 </b>Bwf Super Baldy 700lbs heifers. <b>5</b> Blk Brangus 700lbs heifers. <b>5 </b>Blk Brangus 700lbs heifers, All heifers will sell in groups of 5, with the option to take up to 15 replacement quality heifers. All heifers are gentle, home-raised &amp; front end. Heifers will be pelvic measured, EID tagged, &amp; pregged opened prior to sale.</li>\n<li><b>Elmen Farms: </b><b>36 </b>Red Angus 3-6 yr. old cows, 2nd &amp; 3rd period. Bred Red &amp; Blk Balancer bulls.</li>\n<li><b>Fredrich Farms: </b><b>15 </b>Blk-Bwf 3-5 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Spencer Farms: </b><b>30 </b>Blk 3-4 yr old cows, 3rd period. <b>30</b> Blk 5-7 yr. old cows, 3rd period. All cows bred Blk Angus or Blk. Gelv. Bulls.</li>\n<li><b>Sterling Farms: </b><b>50</b> Blk 3-4 yr. old cows, 2nd period. <b>40</b> Blk 5-6 yr. old cows,2nd period. All cows bred Blk Angus bulls.</li>\n<li><b>James Farms: </b><b>15 </b>Blk 3-6 yr. old cows, 2nd &amp; 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Massey Farms: </b><b>15 </b>Blk 6-BM yr. old cows w/ 300lbs calves at side. <b>45</b> Blk-Red-Char 6-BM yr. old cows, 3rd period or w/ new born calves. Cows bred Blk Angus bulls. All cows selling due to loss of ground rented.</li>\n<li><b>Conrow Farms: </b><b>3 </b>Blk Angus 3 yr old cows w/ 2 month old calves at side.<b> 1 </b>Red Angus 3 yr. old cow w/ 2 month old calf at side. <b>2</b> Red Baldy 2 yr. old heifer w/ 2 month old calves at side. <b>5 </b>Bwf 2 yr old heifers w/ month old calves at side. All sell open, nice set of pairs. <b>2 </b>Blk 3 yr. old cows w/ fall calves at side 3N1â€™s &amp; been running back w/ Hereford bull. <b>5</b> Blk 3-4 yr. old cows,2nd &amp; 3rd period. Bred Hereford bull. All cows are good quality &amp; ear tagged to match</li>\n<li><b>C-W Fall Calving Herd Dispersal: </b><b>45 </b>Blk 3-7 yr. old cows w/ 300-400lbs calves at side. Cows have been running back w/ MayWay Farms Blk Angus bulls since Dec. 1st. Nice set of cows that have had all shots.</li>\n<li><b>Nuelle Farms: </b><b>23 </b>Â Red Angus 3-6 yr. old cows w/ Jan. born calves at side. Calves are sired by Red Balancer bulls. 20 Blk Angus 3-6 yr. old cows w/ Jan. born calves at side. Calves sired by Red. Blk Angus bulls. All cows have been worm/ poured &amp; vira-shield V6L5. Nice set of gentle pairs.</li>\n<li><b>Knaus Farms: </b><b>8 </b>Blk 3-SS yr. old cows w/ month old calves at side. <b>23 </b>Blk 3-BM yr. old cows,3rd period.</li>\n<li><b>Catron Farms: </b><b>4 </b>Blk-Bwf cows w/ fall calves at side. <b>11 </b>Blk-Bwf cows w/ spring calves at side. <b>5 </b>Blk-Bwf cows, 3rd period. Cows bred Reg. Blk Gelv. bull.Â </li>\n<li><b>Erickson Farms Complete Dispersal: </b><b>25 </b>Blk 3-4 yr. old cows w/ 250lbs calves at side. <b>75</b> Blk-Bwf 3-6 yr. old cows, 3rd period <b>75</b> Blk-Bwf cows,2nd period. All cows bred Reg. Angus bulls. Nice set of cows.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-03-08 18:09:38','2023-03-08 18:09:38','',2209,'https://kingsvillelivestock.com/?p=5178',0,'revision','',0),(5179,2,'2023-03-08 18:23:46','2023-03-08 18:23:46','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-7th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5157\">Tuesday,March 7th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #00ffff;\">SpecialÂ  Cow &amp; Bull Sale - Saturday, March 18th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Riley Farms: </b><b>2 </b>Â 4 yr. old Blk Blazed Face Sim-Angus bulls. Super gentle set of bulls.</li>\n<li><b>S-JJ Farms: </b><b>3 </b>2 yr. old Blk Balancer bulls. Been semen &amp; trich tested, ready to turn out. Nice set of bulls w/ all info.</li>\n<li><b>Pemberton Farms: </b><b>1 </b>Â Reg. LBWT Bwf Hereford bull.</li>\n<li><b>Catron Farms: </b><b>1 </b>Â Reg. Blk Gelv. bull</li>\n<li><b>JDA Farms: </b><b>1 </b>Â 3 yr. old Blk Balancer bull. Homo Polled &amp; Homo Blk. Out of Seedstock Plus genetics</li>\n<li><b>Diehl Cattle Co: </b>Â <b>1 </b>Â 2 yr. old Blk Leachman Composite bull.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>45 </b>Â Blk-Bwf 3-7 yr. old cows w/ 250-450lbs calves at side. Several 3N1s, all cows been running back w/ Jenkins Blk Balancer bulls. <b>25</b> Blk-Bwf 3-4 yr. old cows w/ 400lbs calves at side. 3N1 pairs, all bred back to Polled Hereford bulls or Blk Angus bulls.</li>\n<li><b>Malin Farms: </b><b>11 </b>Blk-Bwf 6-7 yr old cows,2nd period. Bred Blk Angus bulls. Start calving in Sept.</li>\n<li><b>Malin &amp; Malin Farms: </b><b>5 </b>Bwf Super Baldy 700lbs heifers. <b>5</b> Blk Brangus 700lbs heifers. <b>5 </b>Blk Brangus 700lbs heifers, All heifers will sell in groups of 5, with the option to take up to 15 replacement quality heifers. All heifers are gentle, home-raised &amp; front end. Heifers will be pelvic measured, EID tagged, &amp; pregged opened prior to sale.</li>\n<li><b>Elmen Farms: </b><b>36 </b>Red Angus 3-6 yr. old cows, 2nd &amp; 3rd period. Bred Red &amp; Blk Balancer bulls.</li>\n<li><b>Fredrich Farms: </b><b>15 </b>Blk-Bwf 3-5 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Spencer Farms: </b><b>30 </b>Blk 3-4 yr old cows, 3rd period. <b>30</b> Blk 5-7 yr. old cows, 3rd period. All cows bred Blk Angus or Blk. Gelv. Bulls.</li>\n<li><b>Sterling Farms: </b><b>50</b> Blk 3-4 yr. old cows, 2nd period. <b>40</b> Blk 5-6 yr. old cows,2nd period. All cows bred Blk Angus bulls.</li>\n<li><b>James Farms: </b><b>15 </b>Blk 3-6 yr. old cows, 2nd &amp; 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Massey Farms: </b><b>15 </b>Blk 6-BM yr. old cows w/ 300lbs calves at side. <b>45</b> Blk-Red-Char 6-BM yr. old cows, 3rd period or w/ new born calves. Cows bred Blk Angus bulls. All cows selling due to loss of ground rented.</li>\n<li><b>Conrow Farms: </b><b>3 </b>Blk Angus 3 yr old cows w/ 2 month old calves at side.<b> 1 </b>Red Angus 3 yr. old cow w/ 2 month old calf at side. <b>2</b> Red Baldy 2 yr. old heifer w/ 2 month old calves at side. <b>5 </b>Bwf 2 yr old heifers w/ month old calves at side. All sell open, nice set of pairs. <b>2 </b>Blk 3 yr. old cows w/ fall calves at side 3N1â€™s &amp; been running back w/ Hereford bull. <b>5</b> Blk 3-4 yr. old cows,2nd &amp; 3rd period. Bred Hereford bull. All cows are good quality &amp; ear tagged to match</li>\n<li><b>C-W Fall Calving Herd Dispersal: </b><b>45 </b>Blk 3-7 yr. old cows w/ 300-400lbs calves at side. Cows have been running back w/ MayWay Farms Blk Angus bulls since Dec. 1st. Nice set of cows that have had all shots.</li>\n<li><b>Nuelle Farms: </b><b>23 </b>Â Red Angus 3-6 yr. old cows w/ Jan. born calves at side. Calves are sired by Red Balancer bulls. 20 Blk Angus 3-6 yr. old cows w/ Jan. born calves at side. Calves sired by Red. Blk Angus bulls. All cows have been worm/ poured &amp; vira-shield V6L5. Nice set of gentle pairs.</li>\n<li><b>Knaus Farms: </b><b>8 </b>Blk 3-SS yr. old cows w/ month old calves at side. <b>23 </b>Blk 3-BM yr. old cows,3rd period.</li>\n<li><b>Catron Farms: </b><b>4 </b>Blk-Bwf cows w/ fall calves at side. <b>11 </b>Blk-Bwf cows w/ spring calves at side. <b>5 </b>Blk-Bwf cows, 3rd period. Cows bred Reg. Blk Gelv. bull.</li>\n<li><b>Erickson Farms Complete Dispersal: </b><b>25 </b>Blk 3-4 yr. old cows w/ 250lbs calves at side. <b>75</b> Blk-Bwf 3-6 yr. old cows, 3rd period <b>75</b> Blk-Bwf cows,2nd period. All cows bred Reg. Angus bulls. Nice set of cows.</li>\n<li><b>Simeron Farms, LLC: </b><b>23 </b>Blk-Bwf 5-SS yr. old cows, 3rd period <b>17</b> Hereford 5-SS yr. old cows, 3rd period All cows bred Reg. Angus bulls. All home-raised, nice set of heavy bred cows.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-03-08 18:23:46','2023-03-08 18:23:46','',2209,'https://kingsvillelivestock.com/?p=5179',0,'revision','',0),(5180,2,'2023-03-08 18:24:25','2023-03-08 18:24:25','','March 18, 2023 Cow Sale','','inherit','closed','closed','','march-18-2023-cow-sale','','','2023-03-08 18:24:25','2023-03-08 18:24:25','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-18-2023-Cow-Sale.pdf',0,'attachment','application/pdf',0),(5181,2,'2023-03-08 18:24:33','2023-03-08 18:24:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar.10th @ 10:00 am<br /></strong>Shirley White Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar.11th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5154\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar. 11th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-11th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5154\">March 11th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-18-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5180\">March 18, 2023 Cow Sale</a></p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 25th @ 10:00 am<br /></strong>Lucille Jennings Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-03-08 18:24:33','2023-03-08 18:24:33','',639,'https://kingsvillelivestock.com/?p=5181',0,'revision','',0),(5182,2,'2023-03-13 14:54:02','2023-03-13 14:54:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-18-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5180\">March 18, 2023 Cow Sale</a></p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 25th @ 10:00 am<br /></strong>Lucille Jennings Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-03-13 14:54:02','2023-03-13 14:54:02','',639,'https://kingsvillelivestock.com/?p=5182',0,'revision','',0),(5183,2,'2023-03-13 14:54:33','2023-03-13 14:54:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-7th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5157\">Tuesday,March 7th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #00ffff;\">SpecialÂ  Cow &amp; Bull Sale - Saturday, March 18th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Riley Farms: </b><b>2 </b>Â 4 yr. old Blk Blazed Face Sim-Angus bulls. Super gentle set of bulls.</li>\n<li><b>S-JJ Farms: </b><b>3 </b>2 yr. old Blk Balancer bulls. Been semen &amp; trich tested, ready to turn out. Nice set of bulls w/ all info.</li>\n<li><b>Pemberton Farms: </b><b>1 </b>Â Reg. LBWT Bwf Hereford bull.</li>\n<li><b>Catron Farms: </b><b>1 </b>Â Reg. Blk Gelv. bull</li>\n<li><b>JDA Farms: </b><b>1 </b>Â 3 yr. old Blk Balancer bull. Homo Polled &amp; Homo Blk. Out of Seedstock Plus genetics</li>\n<li><b>Diehl Cattle Co: </b>Â <b>1 </b>Â 2 yr. old Blk Leachman Composite bull.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>45 </b>Â Blk-Bwf 3-7 yr. old cows w/ 250-450lbs calves at side. Several 3N1s, all cows been running back w/ Jenkins Blk Balancer bulls. <b>25</b> Blk-Bwf 3-4 yr. old cows w/ 400lbs calves at side. 3N1 pairs, all bred back to Polled Hereford bulls or Blk Angus bulls.</li>\n<li><b>Malin Farms: </b><b>11 </b>Blk-Bwf 6-7 yr old cows,2nd period. Bred Blk Angus bulls. Start calving in Sept.</li>\n<li><b>Malin &amp; Malin Farms: </b><b>5 </b>Bwf Super Baldy 700lbs heifers. <b>5</b> Blk Brangus 700lbs heifers. <b>5 </b>Blk Brangus 700lbs heifers, All heifers will sell in groups of 5, with the option to take up to 15 replacement quality heifers. All heifers are gentle, home-raised &amp; front end. Heifers will be pelvic measured, EID tagged, &amp; pregged opened prior to sale.</li>\n<li><b>Elmen Farms: </b><b>36 </b>Red Angus 3-6 yr. old cows, 2nd &amp; 3rd period. Bred Red &amp; Blk Balancer bulls.</li>\n<li><b>Fredrich Farms: </b><b>15 </b>Blk-Bwf 3-5 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Spencer Farms: </b><b>30 </b>Blk 3-4 yr old cows, 3rd period. <b>30</b> Blk 5-7 yr. old cows, 3rd period. All cows bred Blk Angus or Blk. Gelv. Bulls.</li>\n<li><b>Sterling Farms: </b><b>50</b> Blk 3-4 yr. old cows, 2nd period. <b>40</b> Blk 5-6 yr. old cows,2nd period. All cows bred Blk Angus bulls.</li>\n<li><b>James Farms: </b><b>15 </b>Blk 3-6 yr. old cows, 2nd &amp; 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Massey Farms: </b><b>15 </b>Blk 6-BM yr. old cows w/ 300lbs calves at side. <b>45</b> Blk-Red-Char 6-BM yr. old cows, 3rd period or w/ new born calves. Cows bred Blk Angus bulls. All cows selling due to loss of ground rented.</li>\n<li><b>Conrow Farms: </b><b>3 </b>Blk Angus 3 yr old cows w/ 2 month old calves at side.<b> 1 </b>Red Angus 3 yr. old cow w/ 2 month old calf at side. <b>2</b> Red Baldy 2 yr. old heifer w/ 2 month old calves at side. <b>5 </b>Bwf 2 yr old heifers w/ month old calves at side. All sell open, nice set of pairs. <b>2 </b>Blk 3 yr. old cows w/ fall calves at side 3N1â€™s &amp; been running back w/ Hereford bull. <b>5</b> Blk 3-4 yr. old cows,2nd &amp; 3rd period. Bred Hereford bull. All cows are good quality &amp; ear tagged to match</li>\n<li><b>C-W Fall Calving Herd Dispersal: </b><b>45 </b>Blk 3-7 yr. old cows w/ 300-400lbs calves at side. Cows have been running back w/ MayWay Farms Blk Angus bulls since Dec. 1st. Nice set of cows that have had all shots.</li>\n<li><b>Nuelle Farms: </b><b>23 </b>Â Red Angus 3-6 yr. old cows w/ Jan. born calves at side. Calves are sired by Red Balancer bulls. 20 Blk Angus 3-6 yr. old cows w/ Jan. born calves at side. Calves sired by Red. Blk Angus bulls. All cows have been worm/ poured &amp; vira-shield V6L5. Nice set of gentle pairs.</li>\n<li><b>Knaus Farms: </b><b>8 </b>Blk 3-SS yr. old cows w/ month old calves at side. <b>23 </b>Blk 3-BM yr. old cows,3rd period.</li>\n<li><b>Catron Farms: </b><b>4 </b>Blk-Bwf cows w/ fall calves at side. <b>11 </b>Blk-Bwf cows w/ spring calves at side. <b>5 </b>Blk-Bwf cows, 3rd period. Cows bred Reg. Blk Gelv. bull.</li>\n<li><b>Erickson Farms Complete Dispersal: </b><b>25 </b>Blk 3-4 yr. old cows w/ 250lbs calves at side. <b>75</b> Blk-Bwf 3-6 yr. old cows, 3rd period <b>75</b> Blk-Bwf cows,2nd period. All cows bred Reg. Angus bulls. Nice set of cows.</li>\n<li><b>Simeron Farms, LLC: </b><b>23 </b>Blk-Bwf 5-SS yr. old cows, 3rd period <b>17</b> Hereford 5-SS yr. old cows, 3rd period All cows bred Reg. Angus bulls. All home-raised, nice set of heavy bred cows.</li>\n<li><b>Kelly Farms : </b><b>10 </b>Fullblood Brahman 500lbs heifers. Hfrs are long-time weaned, had all shots, home-raised &amp; gentle.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-03-13 14:54:33','2023-03-13 14:54:33','',2209,'https://kingsvillelivestock.com/?p=5183',0,'revision','',0),(5184,2,'2023-03-13 14:55:25','2023-03-13 14:55:25','','March 18, 2023 Cow Sale','','inherit','closed','closed','','march-18-2023-cow-sale-2','','','2023-03-13 14:55:25','2023-03-13 14:55:25','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-18-2023-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(5185,2,'2023-03-13 14:55:34','2023-03-13 14:55:34','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-18-2023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5184\">March 18, 2023 Cow Sale</a></p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 25th @ 10:00 am<br /></strong>Lucille Jennings Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-03-13 14:55:34','2023-03-13 14:55:34','',639,'https://kingsvillelivestock.com/?p=5185',0,'revision','',0),(5186,2,'2023-03-13 14:56:13','2023-03-13 14:56:13','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale Â <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-18-2023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5184\">March 18, 2023 Cow Sale</a></p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 25th @ 10:00 am<br /></strong>Lucille Jennings Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-03-13 14:56:13','2023-03-13 14:56:13','',1967,'https://kingsvillelivestock.com/?p=5186',0,'revision','',0),(5187,2,'2023-03-13 14:56:36','2023-03-13 14:56:36','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/Wilson-Auction-April-1st-Urich-1.pdf\" rel=\"attachment wp-att-5167\">Linda Wilson Auction Saturday, April 1st - 10 am-Urich</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/PGX4no29UYB44ts5A\">Wilson Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-03-13 14:56:36','2023-03-13 14:56:36','',1450,'https://kingsvillelivestock.com/?p=5187',0,'revision','',0),(5188,2,'2023-03-13 16:13:17','2023-03-13 16:13:17','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-7th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5157\">Tuesday,March 7th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #00ffff;\">SpecialÂ  Cow &amp; Bull Sale - Saturday, March 18th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Riley Farms: </b><b>2 </b>Â 4 yr. old Blk Blazed Face Sim-Angus bulls. Super gentle set of bulls.</li>\n<li><b>S-JJ Farms: </b><b>3 </b>2 yr. old Blk Balancer bulls. Been semen &amp; trich tested, ready to turn out. Nice set of bulls w/ all info.</li>\n<li><b>Pemberton Farms: </b><b>1 </b>Â Reg. LBWT Bwf Hereford bull.</li>\n<li><b>Catron Farms: </b><b>1 </b>Â Reg. Blk Gelv. bull</li>\n<li><b>JDA Farms: </b><b>1 </b>Â 3 yr. old Blk Balancer bull. Homo Polled &amp; Homo Blk. Out of Seedstock Plus genetics</li>\n<li><b>Diehl Cattle Co: </b>Â <b>1 </b>Â 2 yr. old Blk Leachman Composite bull.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>45 </b>Â Blk-Bwf 3-7 yr. old cows w/ 250-450lbs calves at side. Several 3N1s, all cows been running back w/ Jenkins Blk Balancer bulls. <b>25</b> Blk-Bwf 3-4 yr. old cows w/ 400lbs calves at side. 3N1 pairs, all bred back to Polled Hereford bulls or Blk Angus bulls.</li>\n<li><b>Malin Farms: </b><b>11 </b>Blk-Bwf 6-7 yr old cows,2nd period. Bred Blk Angus bulls. Start calving in Sept.</li>\n<li><b>Malin &amp; Malin Farms: </b><b>5 </b>Bwf Super Baldy 700lbs heifers. <b>5</b> Blk Brangus 700lbs heifers. <b>5 </b>Blk Brangus 700lbs heifers, All heifers will sell in groups of 5, with the option to take up to 15 replacement quality heifers. All heifers are gentle, home-raised &amp; front end. Heifers will be pelvic measured, EID tagged, &amp; pregged opened prior to sale.</li>\n<li><b>Elmen Farms: </b><b>36 </b>Red Angus 3-6 yr. old cows, 2nd &amp; 3rd period. Bred Red &amp; Blk Balancer bulls.</li>\n<li><b>Fredrich Farms: </b><b>15 </b>Blk-Bwf 3-5 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Spencer Farms: </b><b>30 </b>Blk 3-4 yr old cows, 3rd period. <b>30</b> Blk 5-7 yr. old cows, 3rd period. All cows bred Blk Angus or Blk. Gelv. Bulls.</li>\n<li><b>Sterling Farms: </b><b>50</b> Blk 3-4 yr. old cows, 2nd period. <b>40</b> Blk 5-6 yr. old cows,2nd period. All cows bred Blk Angus bulls.</li>\n<li><b>James Farms: </b><b>15 </b>Blk 3-6 yr. old cows, 2nd &amp; 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Massey Farms: </b><b>15 </b>Blk 6-BM yr. old cows w/ 300lbs calves at side. <b>45</b> Blk-Red-Char 6-BM yr. old cows, 3rd period or w/ new born calves. Cows bred Blk Angus bulls. All cows selling due to loss of ground rented.</li>\n<li><b>Conrow Farms: </b><b>3 </b>Blk Angus 3 yr old cows w/ 2 month old calves at side.<b> 1 </b>Red Angus 3 yr. old cow w/ 2 month old calf at side. <b>2</b> Red Baldy 2 yr. old heifer w/ 2 month old calves at side. <b>5 </b>Bwf 2 yr old heifers w/ month old calves at side. All sell open, nice set of pairs. <b>2 </b>Blk 3 yr. old cows w/ fall calves at side 3N1â€™s &amp; been running back w/ Hereford bull. <b>5</b> Blk 3-4 yr. old cows,2nd &amp; 3rd period. Bred Hereford bull. All cows are good quality &amp; ear tagged to match</li>\n<li><b>C-W Fall Calving Herd Dispersal: </b><b>45 </b>Blk 3-7 yr. old cows w/ 300-400lbs calves at side. Cows have been running back w/ MayWay Farms Blk Angus bulls since Dec. 1st. Nice set of cows that have had all shots.</li>\n<li><b>Nuelle Farms: </b><b>23 </b>Â Red Angus 3-6 yr. old cows w/ Jan. born calves at side. Calves are sired by Red Balancer bulls. 20 Blk Angus 3-6 yr. old cows w/ Jan. born calves at side. Calves sired by Red. Blk Angus bulls. All cows have been worm/ poured &amp; vira-shield V6L5. Nice set of gentle pairs.</li>\n<li><b>Knaus Farms: </b><b>8 </b>Blk 3-SS yr. old cows w/ month old calves at side. <b>23 </b>Blk 3-BM yr. old cows,3rd period.</li>\n<li><b>Catron Farms: </b><b>4 </b>Blk-Bwf cows w/ fall calves at side. <b>11 </b>Blk-Bwf cows w/ spring calves at side. <b>5 </b>Blk-Bwf cows, 3rd period. Cows bred Reg. Blk Gelv. bull.</li>\n<li><b>Erickson Farms Complete Dispersal: </b><b>25 </b>Blk 3-4 yr. old cows w/ 250lbs calves at side. <b>75</b> Blk-Bwf 3-6 yr. old cows, 3rd period <b>75</b> Blk-Bwf cows,2nd period. All cows bred Reg. Angus bulls. Nice set of cows.</li>\n<li><b>Simeron Farms, LLC: </b><b>23 </b>Blk-Bwf 5-SS yr. old cows, 3rd period <b>17</b> Hereford 5-SS yr. old cows, 3rd period All cows bred Reg. Angus bulls. All home-raised, nice set of heavy bred cows.</li>\n<li><b>Kelly Farms: </b><b>10 </b>Fullblood Brahman 500lbs heifers. Hfrs are long-time weaned, had all shots, home-raised &amp; gentle.</li>\n<li><b>Dave Tidman Farms Complete Dispersal: </b><b>35 </b>Â Blk 3-7 yr. old cows,3rd period. <b>15 </b>Blk 3-7 yr. old cows w/ new born calves at side. Cows bred to Angus bulls &amp; have been wormed /poured &amp; scoured guard in late Dec.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-03-13 16:13:17','2023-03-13 16:13:17','',2209,'https://kingsvillelivestock.com/?p=5188',0,'revision','',0),(5189,2,'2023-03-13 16:15:25','2023-03-13 16:15:25','','March 18, 2023 Cow Sale','','inherit','closed','closed','','march-18-2023-cow-sale-3','','','2023-03-13 16:15:25','2023-03-13 16:15:25','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-18-2023-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(5190,2,'2023-03-13 16:15:30','2023-03-13 16:15:30','','March 18, 2023 Cow Sale','','inherit','closed','closed','','march-18-2023-cow-sale-4','','','2023-03-13 16:15:30','2023-03-13 16:15:30','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-18-2023-Cow-Sale-3.pdf',0,'attachment','application/pdf',0),(5191,2,'2023-03-13 16:17:03','2023-03-13 16:17:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-18-2023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5190\">March 18, 2023 Cow Sale</a></p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 25th @ 10:00 am<br /></strong>Lucille Jennings Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-03-13 16:17:03','2023-03-13 16:17:03','',639,'https://kingsvillelivestock.com/?p=5191',0,'revision','',0),(5192,2,'2023-03-13 16:22:05','2023-03-13 16:22:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar.14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-18-2023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5190\">March 18, 2023 Cow Sale</a></p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 25th @ 10:00 am<br /></strong>Lucille Jennings Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-03-13 16:22:05','2023-03-13 16:22:05','',1967,'https://kingsvillelivestock.com/?p=5192',0,'revision','',0),(5193,2,'2023-03-13 17:39:43','2023-03-13 17:39:43','','Tuesday,March 14th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymarch-14th-feeder-cattle-consignments','','','2023-03-13 17:39:43','2023-03-13 17:39:43','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-14th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5194,2,'2023-03-13 17:40:04','2023-03-13 17:40:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-14th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5193\">Tuesday,March 14th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #00ffff;\">SpecialÂ  Cow &amp; Bull Sale - Saturday, March 18th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.19.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Riley Farms: </b><b>2 </b>Â 4 yr. old Blk Blazed Face Sim-Angus bulls. Super gentle set of bulls.</li>\n<li><b>S-JJ Farms: </b><b>3 </b>2 yr. old Blk Balancer bulls. Been semen &amp; trich tested, ready to turn out. Nice set of bulls w/ all info.</li>\n<li><b>Pemberton Farms: </b><b>1 </b>Â Reg. LBWT Bwf Hereford bull.</li>\n<li><b>Catron Farms: </b><b>1 </b>Â Reg. Blk Gelv. bull</li>\n<li><b>JDA Farms: </b><b>1 </b>Â 3 yr. old Blk Balancer bull. Homo Polled &amp; Homo Blk. Out of Seedstock Plus genetics</li>\n<li><b>Diehl Cattle Co: </b>Â <b>1 </b>Â 2 yr. old Blk Leachman Composite bull.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>45 </b>Â Blk-Bwf 3-7 yr. old cows w/ 250-450lbs calves at side. Several 3N1s, all cows been running back w/ Jenkins Blk Balancer bulls. <b>25</b> Blk-Bwf 3-4 yr. old cows w/ 400lbs calves at side. 3N1 pairs, all bred back to Polled Hereford bulls or Blk Angus bulls.</li>\n<li><b>Malin Farms: </b><b>11 </b>Blk-Bwf 6-7 yr old cows,2nd period. Bred Blk Angus bulls. Start calving in Sept.</li>\n<li><b>Malin &amp; Malin Farms: </b><b>5 </b>Bwf Super Baldy 700lbs heifers. <b>5</b> Blk Brangus 700lbs heifers. <b>5 </b>Blk Brangus 700lbs heifers, All heifers will sell in groups of 5, with the option to take up to 15 replacement quality heifers. All heifers are gentle, home-raised &amp; front end. Heifers will be pelvic measured, EID tagged, &amp; pregged opened prior to sale.</li>\n<li><b>Elmen Farms: </b><b>36 </b>Red Angus 3-6 yr. old cows, 2nd &amp; 3rd period. Bred Red &amp; Blk Balancer bulls.</li>\n<li><b>Fredrich Farms: </b><b>15 </b>Blk-Bwf 3-5 yr old cows w/ 250lbs calves at side.</li>\n<li><b>Spencer Farms: </b><b>30 </b>Blk 3-4 yr old cows, 3rd period. <b>30</b> Blk 5-7 yr. old cows, 3rd period. All cows bred Blk Angus or Blk. Gelv. Bulls.</li>\n<li><b>Sterling Farms: </b><b>50</b> Blk 3-4 yr. old cows, 2nd period. <b>40</b> Blk 5-6 yr. old cows,2nd period. All cows bred Blk Angus bulls.</li>\n<li><b>James Farms: </b><b>15 </b>Blk 3-6 yr. old cows, 2nd &amp; 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Massey Farms: </b><b>15 </b>Blk 6-BM yr. old cows w/ 300lbs calves at side. <b>45</b> Blk-Red-Char 6-BM yr. old cows, 3rd period or w/ new born calves. Cows bred Blk Angus bulls. All cows selling due to loss of ground rented.</li>\n<li><b>Conrow Farms: </b><b>3 </b>Blk Angus 3 yr old cows w/ 2 month old calves at side.<b> 1 </b>Red Angus 3 yr. old cow w/ 2 month old calf at side. <b>2</b> Red Baldy 2 yr. old heifer w/ 2 month old calves at side. <b>5 </b>Bwf 2 yr old heifers w/ month old calves at side. All sell open, nice set of pairs. <b>2 </b>Blk 3 yr. old cows w/ fall calves at side 3N1â€™s &amp; been running back w/ Hereford bull. <b>5</b> Blk 3-4 yr. old cows,2nd &amp; 3rd period. Bred Hereford bull. All cows are good quality &amp; ear tagged to match</li>\n<li><b>C-W Fall Calving Herd Dispersal: </b><b>45 </b>Blk 3-7 yr. old cows w/ 300-400lbs calves at side. Cows have been running back w/ MayWay Farms Blk Angus bulls since Dec. 1st. Nice set of cows that have had all shots.</li>\n<li><b>Nuelle Farms: </b><b>23 </b>Â Red Angus 3-6 yr. old cows w/ Jan. born calves at side. Calves are sired by Red Balancer bulls. 20 Blk Angus 3-6 yr. old cows w/ Jan. born calves at side. Calves sired by Red. Blk Angus bulls. All cows have been worm/ poured &amp; vira-shield V6L5. Nice set of gentle pairs.</li>\n<li><b>Knaus Farms: </b><b>8 </b>Blk 3-SS yr. old cows w/ month old calves at side. <b>23 </b>Blk 3-BM yr. old cows,3rd period.</li>\n<li><b>Catron Farms: </b><b>4 </b>Blk-Bwf cows w/ fall calves at side. <b>11 </b>Blk-Bwf cows w/ spring calves at side. <b>5 </b>Blk-Bwf cows, 3rd period. Cows bred Reg. Blk Gelv. bull.</li>\n<li><b>Erickson Farms Complete Dispersal: </b><b>25 </b>Blk 3-4 yr. old cows w/ 250lbs calves at side. <b>75</b> Blk-Bwf 3-6 yr. old cows, 3rd period <b>75</b> Blk-Bwf cows,2nd period. All cows bred Reg. Angus bulls. Nice set of cows.</li>\n<li><b>Simeron Farms, LLC: </b><b>23 </b>Blk-Bwf 5-SS yr. old cows, 3rd period <b>17</b> Hereford 5-SS yr. old cows, 3rd period All cows bred Reg. Angus bulls. All home-raised, nice set of heavy bred cows.</li>\n<li><b>Kelly Farms: </b><b>10 </b>Fullblood Brahman 500lbs heifers. Hfrs are long-time weaned, had all shots, home-raised &amp; gentle.</li>\n<li><b>Dave Tidman Farms Complete Dispersal: </b><b>35 </b>Â Blk 3-7 yr. old cows,3rd period. <b>15 </b>Blk 3-7 yr. old cows w/ new born calves at side. Cows bred to Angus bulls &amp; have been wormed /poured &amp; scoured guard in late Dec.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-03-13 17:40:04','2023-03-13 17:40:04','',2209,'https://kingsvillelivestock.com/?p=5194',0,'revision','',0),(5196,2,'2023-03-15 14:14:49','2023-03-15 14:14:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-18-2023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5190\">March 18, 2023 Cow Sale</a></p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 25th @ 10:00 am<br /></strong>Lucille Jennings Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-03-15 14:14:49','2023-03-15 14:14:49','',639,'https://kingsvillelivestock.com/?p=5196',0,'revision','',0),(5197,2,'2023-03-15 14:15:21','2023-03-15 14:15:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 18th @ 11 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/March-18-2023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5190\">March 18, 2023 Cow Sale</a></p>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 25th @ 10:00 am<br /></strong>Lucille Jennings Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-03-15 14:15:21','2023-03-15 14:15:21','',1967,'https://kingsvillelivestock.com/?p=5197',0,'revision','',0),(5198,2,'2023-03-15 15:59:11','2023-03-15 15:59:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March , 2023, </strong>2368 hd; Last week, 3133 hd; 1921 a year ago. Compared to last week feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold $1-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$254.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$234.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$167.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$238.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$224.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$199.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$154.00-$162.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$150.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$98.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$89.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $88.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $131.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">462lbs @$270.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">556lbs @$254.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">628lbs@$231.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">741lbs@$197.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">754lbs@$196.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">857lbs@$186.10</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 46px;\">519lbs@$224.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">588lbs@$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">719lbs@$189.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">655lbs@$199.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">723lbs@$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 14, 2023 - Market Report','','publish','closed','open','','march-14-2023-market-report','','','2023-03-15 15:59:15','2023-03-15 15:59:15','',0,'https://kingsvillelivestock.com/?p=5198',0,'post','',0),(5200,2,'2023-03-15 15:59:11','2023-03-15 15:59:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March , 2023, </strong>2368 hd; Last week, 3133 hd; 1921 a year ago. Compared to last week feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold $1-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$254.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$234.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$167.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$238.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$224.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$199.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$154.00-$162.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$150.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$98.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$89.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $88.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $131.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">462lbs @$270.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">556lbs @$254.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">628lbs@$231.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">741lbs@$197.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">754lbs@$196.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">857lbs@$186.10</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 46px;\">519lbs@$224.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">588lbs@$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">719lbs@$189.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">655lbs@$199.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">723lbs@$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 14, 2023 - Market Report','','inherit','closed','closed','','5198-revision-v1','','','2023-03-15 15:59:11','2023-03-15 15:59:11','',5198,'https://kingsvillelivestock.com/?p=5200',0,'revision','',0),(5201,2,'2023-03-15 15:59:11','2023-03-15 15:59:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March , 2023, </strong>2368 hd; Last week, 3133 hd; 1921 a year ago. Compared to last week feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold $1-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$254.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$234.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$167.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$238.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$224.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$199.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$154.00-$162.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$150.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$98.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$89.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $88.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $131.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">462lbs @$270.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">556lbs @$254.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">628lbs@$231.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">741lbs@$197.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">754lbs@$196.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">857lbs@$186.10</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 46px;\">519lbs@$224.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">588lbs@$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">719lbs@$189.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">655lbs@$199.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">723lbs@$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 7, 2023 - Market Report','','inherit','closed','closed','','5198-revision-v1','','','2023-03-15 15:59:11','2023-03-15 15:59:11','',5198,'https://kingsvillelivestock.com/?p=5201',0,'revision','',0),(5202,2,'2023-03-15 15:59:15','2023-03-15 15:59:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March , 2023, </strong>2368 hd; Last week, 3133 hd; 1921 a year ago. Compared to last week feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold $1-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$254.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$234.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$187.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$167.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$238.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$224.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$199.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$190.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$154.00-$162.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$125.00-$150.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$98.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$89.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $88.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $131.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">462lbs @$270.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">556lbs @$254.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">628lbs@$231.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">741lbs@$197.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">754lbs@$196.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">857lbs@$186.10</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 46px;\">519lbs@$224.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">588lbs@$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">719lbs@$189.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">655lbs@$199.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">723lbs@$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 14, 2023 - Market Report','','inherit','closed','closed','','5198-revision-v1','','','2023-03-15 15:59:15','2023-03-15 15:59:15','',5198,'https://kingsvillelivestock.com/?p=5202',0,'revision','',0),(5203,2,'2023-03-15 17:17:05','2023-03-15 17:17:05','','Jennings Sale - March 25th - Kingsville (legal)','','inherit','closed','closed','','jennings-sale-march-25th-kingsville-legal','','','2023-03-15 17:17:05','2023-03-15 17:17:05','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/03/Jennings-Sale-March-25th-Kingsville-legal.pdf',0,'attachment','application/pdf',0),(5204,2,'2023-03-15 17:17:51','2023-03-15 17:17:51','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/Jennings-Sale-March-25th-Kingsville-legal.pdf\" rel=\"attachment wp-att-5203\">Lucille Jennings Auction Saturday, March 25th - 10am -Â  KingsvilleÂ </a></p>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/Wilson-Auction-April-1st-Urich-1.pdf\" rel=\"attachment wp-att-5167\">Linda Wilson Auction Saturday, April 1st - 10 am-Urich</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/PGX4no29UYB44ts5A\">Wilson Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-03-15 17:17:51','2023-03-15 17:17:51','',1450,'https://kingsvillelivestock.com/?p=5204',0,'revision','',0),(5205,2,'2023-03-20 15:28:28','2023-03-20 15:28:28','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 25th @ 10:00 am<br /></strong>Lucille Jennings Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-03-20 15:28:28','2023-03-20 15:28:28','',639,'https://kingsvillelivestock.com/?p=5205',0,'revision','',0),(5206,2,'2023-03-20 15:29:35','2023-03-20 15:29:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 25th @ 10:00 am<br /></strong>Lucille Jennings Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-03-20 15:29:35','2023-03-20 15:29:35','',1967,'https://kingsvillelivestock.com/?p=5206',0,'revision','',0),(5207,2,'2023-03-20 16:28:57','2023-03-20 16:28:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-14th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5193\">Tuesday,March 14th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-03-20 16:28:57','2023-03-20 16:28:57','',2209,'https://kingsvillelivestock.com/?p=5207',0,'revision','',0),(5208,2,'2023-03-20 17:56:48','2023-03-20 17:56:48','','Tuesday,March 21st Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymarch-21st-feeder-cattle-consignments','','','2023-03-20 17:56:48','2023-03-20 17:56:48','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-21st-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5209,2,'2023-03-20 17:56:55','2023-03-20 17:56:55','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-21st-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5208\">Tuesday,March 21st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-03-20 17:56:55','2023-03-20 17:56:55','',2209,'https://kingsvillelivestock.com/?p=5209',0,'revision','',0),(5211,2,'2023-03-20 19:01:47','2023-03-20 19:01:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 25th @ 10:00 am<br /></strong>Lucille Jennings Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend SaleÂ </p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend SaleÂ </p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-03-20 19:01:47','2023-03-20 19:01:47','',639,'https://kingsvillelivestock.com/?p=5211',0,'revision','',0),(5212,2,'2023-03-20 19:02:36','2023-03-20 19:02:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Mar. 25th @ 10:00 am<br /></strong>Lucille Jennings Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend SaleÂ </p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend SaleÂ </p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-03-20 19:02:36','2023-03-20 19:02:36','',1967,'https://kingsvillelivestock.com/?p=5212',0,'revision','',0),(5213,2,'2023-03-22 03:28:58','2023-03-22 03:28:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 25th @ 10:00 am<br /></strong>Lucille Jennings Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-03-22 03:28:58','2023-03-22 03:28:58','',639,'https://kingsvillelivestock.com/?p=5213',0,'revision','',0),(5214,2,'2023-03-22 03:29:51','2023-03-22 03:29:51','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 25th @ 10:00 am<br /></strong>Lucille Jennings Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pmÂ </strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-03-22 03:29:51','2023-03-22 03:29:51','',1967,'https://kingsvillelivestock.com/?p=5214',0,'revision','',0),(5215,2,'2023-03-22 16:54:37','2023-03-22 16:54:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 21, 2023, </strong>2169 hd; Last week, 2368 hd; 2345 a year ago. All classes of feeder cattle sold $5-$6 higher. Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$277.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$204.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$182.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$236.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$213.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$199.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$193.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$167.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$150.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $113.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $131.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">665lbs @$215.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">765lbs @$204.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">787lbs@$198.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">906lbs@$182.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">1390lbs@$159.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">707lbs@$191.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 46px;\">717lbs@$193.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 21, 2023 - Market Report','','publish','closed','open','','march-21-2023-market-report','','','2023-03-22 16:54:41','2023-03-22 16:54:41','',0,'https://kingsvillelivestock.com/?p=5215',0,'post','',0),(5217,2,'2023-03-22 16:54:37','2023-03-22 16:54:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 21, 2023, </strong>2169 hd; Last week, 2368 hd; 2345 a year ago. All classes of feeder cattle sold $5-$6 higher. Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$277.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$204.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$182.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$236.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$213.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$199.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$193.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$167.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$150.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $113.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $131.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">665lbs @$215.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">765lbs @$204.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">787lbs@$198.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">906lbs@$182.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">1390lbs@$159.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">707lbs@$191.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 46px;\">717lbs@$193.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 21, 2023 - Market Report','','inherit','closed','closed','','5215-revision-v1','','','2023-03-22 16:54:37','2023-03-22 16:54:37','',5215,'https://kingsvillelivestock.com/?p=5217',0,'revision','',0),(5218,2,'2023-03-22 16:54:37','2023-03-22 16:54:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 21, 2023, </strong>2169 hd; Last week, 2368 hd; 2345 a year ago. All classes of feeder cattle sold $5-$6 higher. Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$277.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$204.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$182.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$236.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$213.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$199.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$193.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$167.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$150.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $113.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $131.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">665lbs @$215.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">765lbs @$204.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">787lbs@$198.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">906lbs@$182.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">1390lbs@$159.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">707lbs@$191.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 46px;\">717lbs@$193.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 14, 2023 - Market Report','','inherit','closed','closed','','5215-revision-v1','','','2023-03-22 16:54:37','2023-03-22 16:54:37','',5215,'https://kingsvillelivestock.com/?p=5218',0,'revision','',0),(5220,2,'2023-03-22 16:54:41','2023-03-22 16:54:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 21, 2023, </strong>2169 hd; Last week, 2368 hd; 2345 a year ago. All classes of feeder cattle sold $5-$6 higher. Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$277.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$204.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$184.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$182.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$236.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$213.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$199.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$193.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$167.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$135.00-$150.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $113.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $131.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 488px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">665lbs @$215.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">765lbs @$204.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">787lbs@$198.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">906lbs@$182.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">1390lbs@$159.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">707lbs@$191.00</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 46px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 46px;\">717lbs@$193.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 21, 2023 - Market Report','','inherit','closed','closed','','5215-revision-v1','','','2023-03-22 16:54:41','2023-03-22 16:54:41','',5215,'https://kingsvillelivestock.com/?p=5220',0,'revision','',0),(5221,2,'2023-03-22 17:55:30','2023-03-22 17:55:30','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/Jennings-Sale-March-25th-Kingsville-legal.pdf\" rel=\"attachment wp-att-5203\">Lucille Jennings Auction Saturday, March 25th - 10 am -Â  Kingsville </a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/5UoGHg4M6rG7GauSA\">Jennings Photos </a></p>\n<p style=\"text-align: left;\"><a href=\"https://www.proxibid.com/Anstine-Auctions-LLC/Jennings-93-year-primitive-collection/event-catalog/239628\">Click here for Online Bidding for Proxibid </a></p>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/Wilson-Auction-April-1st-Urich-1.pdf\" rel=\"attachment wp-att-5167\">Linda Wilson Auction Saturday, April 1st - 10 am-Urich</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/PGX4no29UYB44ts5A\">Wilson Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-03-22 17:55:30','2023-03-22 17:55:30','',1450,'https://kingsvillelivestock.com/?p=5221',0,'revision','',0),(5222,2,'2023-03-22 17:58:10','2023-03-22 17:58:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-21st-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5208\">Tuesday,March 21st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" column_structure=\"2_5,3_5\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"2_5\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #666699;\"><strong>Special Cow &amp; Bull Sale - Saturday, April 15th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"3_5\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Berry Farms: </b><b>18 </b>Â Blk-Bwf 5-SS yr. old cows w/ 250-400lbs calves at side, all 3N1â€™s. Cows bred to Hereford or Blk Angus bulls.</li>\n<li><b>K. Thompson Farms: </b><b>30 </b>Blk-Bwf 3-5 yr old cows,2nd &amp; 3rd period. All cows bred to 3C Reg. Angus bulls. Cows had all shots, good health program.Â </li>\n<li><b>Crutchfield Farms: </b><b>9 </b>Blk 2 yr. old heifers w/ month old calves at side</li>\n<li><b> R &amp; G Cattle Co. : </b><b>16 </b>Blk-Bwf 2 yr. old heifers w/ 1-2-month-old calves at side. Breed to the bull of your choice.</li>\n<li><b>Daniels Farms Inc.: </b><b>20 </b>Blk 3-6 yr old cows w/ 250lbs calves at side. <b>60</b> Blk 3-6 yr. old cows,3rd period. <b>40</b> Blk 3-6 yr. old cows, 2nd period. All cows bred Reg. Angus bulls. Cows are good quality &amp; selling due to loss of rental ground</li>\n<li><b>Staus Farms: </b><b>20 </b>Blk Angus 6-SS yr old fall calving cows, 2nd period. Cows bred Blk Angus bulls. All home-raised &amp; very gentle set of cows.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-03-22 17:58:10','2023-03-22 17:58:10','',2209,'https://kingsvillelivestock.com/?p=5222',0,'revision','',0),(5224,2,'2023-03-27 14:11:49','2023-03-27 14:11:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-03-27 14:11:49','2023-03-27 14:11:49','',639,'https://kingsvillelivestock.com/?p=5224',0,'revision','',0),(5225,2,'2023-03-27 14:12:40','2023-03-27 14:12:40','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-03-27 14:12:40','2023-03-27 14:12:40','',1967,'https://kingsvillelivestock.com/?p=5225',0,'revision','',0),(5226,2,'2023-03-27 14:13:29','2023-03-27 14:13:29','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/Wilson-Auction-April-1st-Urich-1.pdf\" rel=\"attachment wp-att-5167\">Linda Wilson Auction Saturday, April 1st - 10 am-Urich</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/PGX4no29UYB44ts5A\">Wilson Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-03-27 14:13:29','2023-03-27 14:13:29','',1450,'https://kingsvillelivestock.com/?p=5226',0,'revision','',0),(5227,2,'2023-03-27 14:40:20','2023-03-27 14:40:20','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-21st-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5208\">Tuesday,March 21st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #666699;\"><strong>Special Cow &amp; Bull Sale - Saturday, April 15th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Mullins Farms Complete Dispersal: </b><b>1 </b>Â 3 yr. old Blk Angus bull.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Berry Farms: </b><b>18 </b>Â Blk-Bwf 5-SS yr. old cows w/ 250-400lbs calves at side, all 3N1â€™s. Cows bred to Hereford or Blk Angus bulls.</li>\n<li><b>K. Thompson Farms: </b><b>30 </b>Blk-Bwf 3-5 yr old cows,2nd &amp; 3rd period. All cows bred to 3C Reg. Angus bulls. Cows had all shots, good health program.</li>\n<li><b>Crutchfield Farms: </b><b>9 </b>Blk 2 yr. old heifers w/ month old calves at side</li>\n<li><b> R &amp; G Cattle Co.: </b><b>16 </b>Blk-Bwf 2 yr. old heifers w/ 1-2-month-old calves at side. Breed to the bull of your choice.</li>\n<li><b>Daniels Farms Inc.: </b><b>20 </b>Blk 3-6 yr old cows w/ 250lbs calves at side. <b>60</b> Blk 3-6 yr. old cows,3rd period. <b>40</b> Blk 3-6 yr. old cows, 2nd period. All cows bred Reg. Angus bulls. Cows are good quality &amp; selling due to loss of rental ground</li>\n<li><b>Staus Farms: </b><b>20 </b>Blk Angus 6-SS yr old fall calving cows, 2nd period. Cows bred Blk Angus bulls. All home-raised &amp; very gentle set of cows.</li>\n<li><b>Mullins Farms Complete Dispersal: </b><b>13</b> Blk 4-SS yr. old cows w/ 200-300lbs calves at side. <b>19 </b>Blk 4-SS yr. old cows, 3rd period.</li>\n<li><b>Anderson &amp; Sickle Farms: </b><b>35 </b>Blk-Bwf 4-7 yr. old cows, 2nd period. Cows all bred Blk bulls &amp; start calving Sept. 1st for 60 days.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-03-27 14:40:20','2023-03-27 14:40:20','',2209,'https://kingsvillelivestock.com/?p=5227',0,'revision','',0),(5228,2,'2023-03-27 15:39:16','2023-03-27 15:39:16','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-21st-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5208\">Tuesday,March 21st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #666699;\"><strong>Special Cow &amp; Bull Sale - Saturday, April 15th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Mullins Farms Complete Dispersal: </b><b>1 </b>Â 3 yr. old Blk Angus bull.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. old Reg. Angus Bull.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Berry Farms: </b><b>18 </b>Â Blk-Bwf 5-SS yr. old cows w/ 250-400lbs calves at side, all 3N1â€™s. Cows bred to Hereford or Blk Angus bulls.</li>\n<li><b>K. Thompson Farms: </b><b>30 </b>Blk-Bwf 3-5 yr old cows,2nd &amp; 3rd period. All cows bred to 3C Reg. Angus bulls. Cows had all shots, good health program.</li>\n<li><b>Crutchfield Farms: </b><b>9 </b>Blk 2 yr. old heifers w/ month old calves at side</li>\n<li><b> R &amp; G Cattle Co.: </b><b>16 </b>Blk-Bwf 2 yr. old heifers w/ 1-2-month-old calves at side. Breed to the bull of your choice.</li>\n<li><b>Daniels Farms Inc.: </b><b>20 </b>Blk 3-6 yr old cows w/ 250lbs calves at side. <b>60</b> Blk 3-6 yr. old cows,3rd period. <b>40</b> Blk 3-6 yr. old cows, 2nd period. All cows bred Reg. Angus bulls. Cows are good quality &amp; selling due to loss of rental ground</li>\n<li><b>Staus Farms: </b><b>20 </b>Blk Angus 6-SS yr old fall calving cows, 2nd period. Cows bred Blk Angus bulls. All home-raised &amp; very gentle set of cows.</li>\n<li><b>Mullins Farms Complete Dispersal: </b><b>13</b> Blk 4-SS yr. old cows w/ 200-300lbs calves at side. <b>19 </b>Blk 4-SS yr. old cows, 3rd period.</li>\n<li><b>Anderson &amp; Sickle Farms: </b><b>35 </b>Blk-Bwf 4-7 yr. old cows, 2nd period. Cows all bred Blk bulls &amp; start calving Sept. 1st for 60 days.</li>\n<li><b>Shippy Farms: </b><b>33 </b>Blk-Bwf 5-SS yr. old cows, 2nd period. Cows bred Horned Hereford Bulls &amp; Start calving Sept. 1stÂ </li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-03-27 15:39:16','2023-03-27 15:39:16','',2209,'https://kingsvillelivestock.com/?p=5228',0,'revision','',0),(5229,2,'2023-03-27 17:12:35','2023-03-27 17:12:35','','Tuesday,March 28th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymarch-28th-feeder-cattle-consignments','','','2023-03-27 17:12:35','2023-03-27 17:12:35','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-28th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5230,2,'2023-03-27 17:13:29','2023-03-27 17:13:29','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-28th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5229\">Tuesday,March 28th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #666699;\"><strong>Special Cow &amp; Bull Sale - Saturday, April 15th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Mullins Farms Complete Dispersal: </b><b>1 </b>Â 3 yr. old Blk Angus bull.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. old Reg. Angus Bull.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Berry Farms: </b><b>18 </b>Â Blk-Bwf 5-SS yr. old cows w/ 250-400lbs calves at side, all 3N1â€™s. Cows bred to Hereford or Blk Angus bulls.</li>\n<li><b>K. Thompson Farms: </b><b>30 </b>Blk-Bwf 3-5 yr old cows,2nd &amp; 3rd period. All cows bred to 3C Reg. Angus bulls. Cows had all shots, good health program.</li>\n<li><b>Crutchfield Farms: </b><b>9 </b>Blk 2 yr. old heifers w/ month old calves at side</li>\n<li><b> R &amp; G Cattle Co.: </b><b>16 </b>Blk-Bwf 2 yr. old heifers w/ 1-2-month-old calves at side. Breed to the bull of your choice.</li>\n<li><b>Daniels Farms Inc.: </b><b>20 </b>Blk 3-6 yr old cows w/ 250lbs calves at side. <b>60</b> Blk 3-6 yr. old cows,3rd period. <b>40</b> Blk 3-6 yr. old cows, 2nd period. All cows bred Reg. Angus bulls. Cows are good quality &amp; selling due to loss of rental ground</li>\n<li><b>Staus Farms: </b><b>20 </b>Blk Angus 6-SS yr old fall calving cows, 2nd period. Cows bred Blk Angus bulls. All home-raised &amp; very gentle set of cows.</li>\n<li><b>Mullins Farms Complete Dispersal: </b><b>13</b> Blk 4-SS yr. old cows w/ 200-300lbs calves at side. <b>19 </b>Blk 4-SS yr. old cows, 3rd period.</li>\n<li><b>Anderson &amp; Sickle Farms: </b><b>35 </b>Blk-Bwf 4-7 yr. old cows, 2nd period. Cows all bred Blk bulls &amp; start calving Sept. 1st for 60 days.</li>\n<li><b>Shippy Farms: </b><b>33 </b>Blk-Bwf 5-SS yr. old cows, 2nd period. Cows bred Horned Hereford Bulls &amp; Start calving Sept. 1st</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-03-27 17:13:29','2023-03-27 17:13:29','',2209,'https://kingsvillelivestock.com/?p=5230',0,'revision','',0),(5231,2,'2023-03-27 17:40:04','2023-03-27 17:40:04','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/Wilson-Auction-April-1st-Urich-1.pdf\" rel=\"attachment wp-att-5167\">Linda Wilson Auction Saturday, April 1st - 10 am-Urich</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/PGX4no29UYB44ts5A\">Wilson Photos</a></p>\n<p style=\"text-align: left;\"><a href=\"https://www.equipmentfacts.com/listings/auctions/online/event/222086883/list\">Online Bidding w/ Equipment Facts </a></p>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-03-27 17:40:04','2023-03-27 17:40:04','',1450,'https://kingsvillelivestock.com/?p=5231',0,'revision','',0),(5232,2,'2023-03-27 18:14:56','2023-03-27 18:14:56','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MARCH 2023 AUCTION DATES:</strong></h1>\n<p><strong>Mar. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-03-27 18:14:56','2023-03-27 18:14:56','',639,'https://kingsvillelivestock.com/?p=5232',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (5234,2,'2023-03-27 21:49:37','2023-03-27 21:49:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Call to Action\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Trailers For Sale\" content_max_width=\"800px\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-30.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Event Section\" _builder_version=\"4.16\" custom_padding=\"60px||60px||true|false\" animation_style=\"zoom\" animation_intensity_zoom=\"6%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>We carry a wide variety of trailers to meet all of your needs.</p>\n<p><strong><a href=\"https://kingsvillelivestock.com/contact/\">Contact us</a></strong> for a FREE QUOTE today.</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/image000003-300x225.jpg\" width=\"143\" height=\"107\" alt=\"\" class=\"wp-image-4098 alignnone size-medium\" />Â  7\' X 24 2023 Eby Ruffneck 2 8k axles. 17.5 tires &amp; spare.Â  <strong>Coming Soon!Â </strong></p>\n<p><strong></strong></p>\n<p>&nbsp;</p>\n<p><strong></strong></p>\n<p><img class=\"wp-image-2101 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG-1006-scaled-e1595879726664-300x225.jpg\" alt=\"\" width=\"147\" height=\"110\" />Â  Â  Eby 7\'1\" X 24\' Punch Panel Maverick Livestock Trailer. 14 ply tires, 7k axels, Alum. wheels, &amp; 2 cross gatesÂ  <strong>Not in Stock, Call Now for pricing &amp; to order!Â </strong></p>\n<p><strong></strong></p>\n<p>&nbsp;</p>\n<p><img class=\"wp-image-2116 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1008-1-208x300.jpg\" alt=\"\" width=\"102\" height=\"147\" />Â  EZ Haul 32\' Bumper Pull Hay Trailer. 6 Bale <strong>$6,800.00</strong></p>\n<p><img class=\"wp-image-2117 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" alt=\"\" width=\"101\" height=\"135\" />Â  EZ Haul 32\' Gooseneck Hay Trailer. 6 Bale, $6,900.00<strong> Coming Soon!Â  Â </strong></p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"97\" height=\"130\" />EZ Haul 36\' Gooseneck Hay Trailer. 7 Bale,<strong>Â $7,000.00<span style=\"color: #ff0000;\"> 3 in stock!Â </span></strong></p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"100\" height=\"134\" />EZ Haul 42\' Gooseneck Hay Trailer. 8 Bale,<strong> $7,600.00</strong></p>\n<p><img class=\"wp-image-2146 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Ez-Haul-Flat-Bed-2-300x225.jpg\" alt=\"\" width=\"139\" height=\"104\" />Â  Â 27\' EZ Haul Flat Bed. 22+5 Dove, 3 ramps, low profile, 10k axels, 14 ply tires. <strong>Call for price!</strong></p>\n<p><img class=\"wp-image-2147 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/ez-haul-flat-bed-3-300x225.jpg\" alt=\"\" width=\"144\" height=\"108\" /> EZ Haul 20\' Flat Bed Bumper Pull. 18+2 Dove, 2 4\' ramps, 7k axels, 10 ply tires. <strong>Out of Stock, call for price!Â </strong></p>\n<p><img class=\"wp-image-2153 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Wheel-Corral-300x185.png\" alt=\"\" width=\"172\" height=\"106\" /> Diamond \"W\" Wheel Corral <strong>$21,800.00Â </strong></p>\n<h2><span style=\"color: #ff00ff;\">For additional questions about the trailers or wheel corral call the office @ 816-597-3331 or Derrick @ 816-726-3456</span></h2>\n<p><span style=\"color: #ff0000;\"><strong>Updated on March 27,2023Â </strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','TRAILERS FOR SALE','','inherit','closed','closed','','714-revision-v1','','','2023-03-27 21:49:37','2023-03-27 21:49:37','',714,'https://kingsvillelivestock.com/?p=5234',0,'revision','',0),(5235,2,'2023-03-27 21:54:50','2023-03-27 21:54:50','','image000000 (1)','','inherit','closed','closed','','image000000-1','','','2023-03-27 21:54:50','2023-03-27 21:54:50','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/03/image000000-1.jpg',0,'attachment','image/jpeg',0),(5236,2,'2023-03-27 23:20:11','2023-03-27 23:20:11','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Call to Action\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Trailers For Sale\" content_max_width=\"800px\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-30.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Event Section\" _builder_version=\"4.16\" custom_padding=\"60px||60px||true|false\" animation_style=\"zoom\" animation_intensity_zoom=\"6%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>We carry a wide variety of trailers to meet all of your needs.</p>\n<p><strong><a href=\"https://kingsvillelivestock.com/contact/\">Contact us</a></strong> for a FREE QUOTE today.</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/image000003-300x225.jpg\" width=\"143\" height=\"107\" alt=\"\" class=\"wp-image-4098 alignnone size-medium\" />Â  7\' X 24 2023 Eby Ruffneck 2 8k axles. 17.5 tires &amp; spare.Â  <strong>Coming Soon!Â </strong></p>\n<p><strong></strong></p>\n<p>&nbsp;</p>\n<p><strong></strong></p>\n<p><img class=\"wp-image-2101 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG-1006-scaled-e1595879726664-300x225.jpg\" alt=\"\" width=\"147\" height=\"110\" />Â  Â  Eby 7\'1\" X 24\' Punch Panel Maverick Livestock Trailer. 14 ply tires, 7k axels, Alum. wheels, &amp; 2 cross gatesÂ  <strong>Not in Stock, Call Now for pricing &amp; to order!Â </strong></p>\n<p><strong></strong></p>\n<p><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/image000000-1-300x225.jpg\" width=\"172\" height=\"129\" alt=\"\" class=\"wp-image-5235 alignnone size-medium\" /> 2014 Horse Trailer. Call for additional pictures &amp; prices! Been used 4 timesÂ </p>\n<p>&nbsp;</p>\n<p><img class=\"wp-image-2116 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1008-1-208x300.jpg\" alt=\"\" width=\"102\" height=\"147\" />Â  EZ Haul 32\' Bumper Pull Hay Trailer. 6 Bale <strong>$6,800.00</strong></p>\n<p><img class=\"wp-image-2117 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" alt=\"\" width=\"101\" height=\"135\" />Â  EZ Haul 32\' Gooseneck Hay Trailer. 6 Bale, $6,900.00<strong> Coming Soon!Â  Â </strong></p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"97\" height=\"130\" />EZ Haul 36\' Gooseneck Hay Trailer. 7 Bale,<strong>Â $7,000.00<span style=\"color: #ff0000;\"> 3 in stock!Â </span></strong></p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"100\" height=\"134\" />EZ Haul 42\' Gooseneck Hay Trailer. 8 Bale,<strong> $7,600.00</strong></p>\n<p><img class=\"wp-image-2146 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Ez-Haul-Flat-Bed-2-300x225.jpg\" alt=\"\" width=\"139\" height=\"104\" />Â  Â 27\' EZ Haul Flat Bed. 22+5 Dove, 3 ramps, low profile, 10k axels, 14 ply tires. <strong>Call for price!</strong></p>\n<p><img class=\"wp-image-2147 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/ez-haul-flat-bed-3-300x225.jpg\" alt=\"\" width=\"144\" height=\"108\" /> EZ Haul 20\' Flat Bed Bumper Pull. 18+2 Dove, 2 4\' ramps, 7k axels, 10 ply tires. <strong>Out of Stock, call for price!Â </strong></p>\n<p><img class=\"wp-image-2153 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Wheel-Corral-300x185.png\" alt=\"\" width=\"172\" height=\"106\" /> Diamond \"W\" Wheel Corral <strong>$21,800.00Â </strong></p>\n<h2><span style=\"color: #ff00ff;\">For additional questions about the trailers or wheel corral call the office @ 816-597-3331 or Derrick @ 816-726-3456</span></h2>\n<p><span style=\"color: #ff0000;\"><strong>Updated on March 27,2023Â </strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','TRAILERS FOR SALE','','inherit','closed','closed','','714-revision-v1','','','2023-03-27 23:20:11','2023-03-27 23:20:11','',714,'https://kingsvillelivestock.com/?p=5236',0,'revision','',0),(5237,2,'2023-03-29 01:03:26','2023-03-29 01:03:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-03-29 01:03:26','2023-03-29 01:03:26','',639,'https://kingsvillelivestock.com/?p=5237',0,'revision','',0),(5238,2,'2023-03-29 01:03:55','2023-03-29 01:03:55','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-03-29 01:03:55','2023-03-29 01:03:55','',1967,'https://kingsvillelivestock.com/?p=5238',0,'revision','',0),(5239,2,'2023-03-29 14:45:00','2023-03-29 14:45:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-28th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5229\">Tuesday,March 28th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #666699;\"><strong>Special Cow &amp; Bull Sale - Saturday, April 15th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b></p>\n<ul>\n<li><b>Mullins Farms Complete Dispersal: </b><b>1 </b>Â 3 yr. old Blk Angus bull.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. old Reg. Angus Bull.Â  WRF Basin Payweight 123 Visit the website to see Reg. papers!</li>\n<li><b>Randall Brammer Farms: </b><b>2 </b>18-month-old Blk Angus bulls. #16 is a KCF Absolute X Growth Fund bull &amp; #5 is a Gucci X Growth fund bull. Bulls are home-raised, big &amp; stout &amp; will add lbs to calf crop. Semen &amp; Trich tested</li>\n<li><b>Hettinger Land &amp; Cattle: </b><b>1 </b>Â 3 yr. old Horned Hereford Bull. Out of Oleen Bros genetics &amp; Reg. stock. Use on cows.</li>\n<li><b>Josh Goodman Farms: </b><b>2 </b>Â 3 yr. oldÂ  Reg. Angus Bulls. <b>1</b> 4 yr. old Angus Bull. Visit the website to see Reg. papers!</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Berry Farms: </b><b>18 </b>Â Blk-Bwf 5-SS yr. old cows w/ 250-400lbs calves at side, all 3N1â€™s. Cows bred to Hereford or Blk Angus bulls.</li>\n<li><b>K. Thompson Farms: </b><b>30 </b>Blk-Bwf 3-5 yr old cows,2nd &amp; 3rd period. All cows bred to 3C Reg. Angus bulls. Cows had all shots, good health program.</li>\n<li><b>Crutchfield Farms: </b><b>9 </b>Blk 2 yr. old heifers w/ month old calves at side</li>\n<li><b> R &amp; G Cattle Co.: </b><b>16 </b>Blk-Bwf 2 yr. old heifers w/ 1-2-month-old calves at side. Breed to the bull of your choice.</li>\n<li><b>Daniels Farms Inc.: </b><b>20 </b>Blk 3-6 yr old cows w/ 250lbs calves at side. <b>60</b> Blk 3-6 yr. old cows,3rd period. <b>40</b> Blk 3-6 yr. old cows, 2nd period. All cows bred Reg. Angus bulls. Cows are good quality &amp; selling due to loss of rental ground</li>\n<li><b>Staus Farms: </b><b>20 </b>Blk Angus 6-SS yr old fall calving cows, 2nd period. Cows bred Blk Angus bulls. All home-raised &amp; very gentle set of cows.</li>\n<li><b>Mullins Farms Complete Dispersal: </b><b>13</b> Blk 4-SS yr. old cows w/ 200-300lbs calves at side. <b>19 </b>Blk 4-SS yr. old cows, 3rd period.</li>\n<li><b>Anderson &amp; Sickle Farms: </b><b>35 </b>Blk-Bwf 4-7 yr. old cows, 2nd period. Cows all bred Blk bulls &amp; start calving Sept. 1st for 60 days.</li>\n<li><b>Shippy Farms: </b><b>33 </b>Blk-Bwf 5-SS yr. old cows, 2nd period. Cows bred Horned Hereford Bulls &amp; Start calving Sept. 1st</li>\n<li><b>Nuelle Farms: </b><b>35 </b>Blk-Bwf 3-7 yr old cows w/ 200lbs calves at side. <b>15</b> Red Angus 3-5 yr. old cows w/ 250lbs calves at side. <b>30</b> Blk-Red 1250lbs 3-6 yr. old cows, 3rd period. Bred Red or Blk Angus bulls</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-03-29 14:45:00','2023-03-29 14:45:00','',2209,'https://kingsvillelivestock.com/?p=5239',0,'revision','',0),(5240,2,'2023-03-29 15:15:54','2023-03-29 15:15:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 28, 2023, </strong>1787 hd; Last week, 2169 hd; 3063 a year ago. Feeder cattle sold fully steady w/ several buyers in attendance. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$302.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$311.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$183.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$239.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$239.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$207.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$193.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$145.00-$158.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$139.50-$147.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$99.00 - $112.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $98.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$77.00 - $87.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $131.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">675lbs @$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">756lbs @$202.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">817lbs@$197.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">430lbs@$237.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">708lbs@$193.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">712lbs@$192.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 28, 2023 - Market Report','','publish','closed','open','','march-28-2023-market-report','','','2023-03-29 15:15:57','2023-03-29 15:15:57','',0,'https://kingsvillelivestock.com/?p=5240',0,'post','',0),(5242,2,'2023-03-29 15:15:54','2023-03-29 15:15:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 28, 2023, </strong>1787 hd; Last week, 2169 hd; 3063 a year ago. Feeder cattle sold fully steady w/ several buyers in attendance. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$302.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$311.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$183.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$239.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$239.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$207.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$193.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$145.00-$158.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$139.50-$147.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$99.00 - $112.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $98.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$77.00 - $87.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $131.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">675lbs @$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">756lbs @$202.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">817lbs@$197.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">430lbs@$237.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">708lbs@$193.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">712lbs@$192.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 28, 2023 - Market Report','','inherit','closed','closed','','5240-revision-v1','','','2023-03-29 15:15:54','2023-03-29 15:15:54','',5240,'https://kingsvillelivestock.com/?p=5242',0,'revision','',0),(5243,2,'2023-03-29 15:15:54','2023-03-29 15:15:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 28, 2023, </strong>1787 hd; Last week, 2169 hd; 3063 a year ago. Feeder cattle sold fully steady w/ several buyers in attendance. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$302.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$311.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$183.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$239.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$239.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$207.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$193.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$145.00-$158.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$139.50-$147.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$99.00 - $112.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $98.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$77.00 - $87.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $131.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">675lbs @$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">756lbs @$202.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">817lbs@$197.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">430lbs@$237.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">708lbs@$193.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">712lbs@$192.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 21, 2023 - Market Report','','inherit','closed','closed','','5240-revision-v1','','','2023-03-29 15:15:54','2023-03-29 15:15:54','',5240,'https://kingsvillelivestock.com/?p=5243',0,'revision','',0),(5244,2,'2023-03-29 15:15:57','2023-03-29 15:15:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>March 28, 2023, </strong>1787 hd; Last week, 2169 hd; 3063 a year ago. Feeder cattle sold fully steady w/ several buyers in attendance. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$302.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$311.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$197.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$183.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$239.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$239.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$207.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$193.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$145.00-$158.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$139.50-$147.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$99.00 - $112.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $98.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$77.00 - $87.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $131.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">675lbs @$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">756lbs @$202.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">817lbs@$197.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">430lbs@$237.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">708lbs@$193.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">712lbs@$192.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 28, 2023 - Market Report','','inherit','closed','closed','','5240-revision-v1','','','2023-03-29 15:15:57','2023-03-29 15:15:57','',5240,'https://kingsvillelivestock.com/?p=5244',0,'revision','',0),(5245,2,'2023-03-29 15:40:13','2023-03-29 15:40:13','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-28th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5229\">Tuesday,March 28th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #666699;\"><strong>Special Cow &amp; Bull Sale - Saturday, April 15th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b> - <b>Visit our website to view registration papers &amp; pictures! </b></p>\n<ul>\n<li><b>Mullins Farms Complete Dispersal: </b><b>1 </b>Â 3 yr. old Blk Angus bull.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. old Reg. Angus Bull.Â  WRF Basin Payweight 123</li>\n<li><b>Randall Brammer Farms: </b><b>2 </b>18 month old Blk Angus bulls. #16 is a KCF Absolute X Growth Fund bull &amp; #5 is a Gucci X Growth fund bull. Bulls are home-raised, big &amp; stout &amp; will add lbs to calf crop. Semen &amp; Trich testedÂ </li>\n<li><b>Hettinger Land &amp; Cattle: </b><b>1 </b>Â 3 yr. old Horned Hereford Bull. Out of Oleen Bros genetics &amp; Reg. stock. Use on cows.Â </li>\n<li><b>Josh Goodman Farms: </b><b>2 </b>Â 3 yr. oldÂ  Reg. Angus Bulls. <b>1</b> 4 yr. old Angus Bull. Visit the website to see Reg. papers!Â </li>\n<li><b>Bar L Herefords: </b><b>1 </b>Â 18 month oldÂ  Reg. Horned Hereford bull. <b>2 </b>2 yr. old Reg. Horned Hereford bull. <b>1 </b>3 yr. old Reg. Horned Hereford Bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Miller Farms: </b><b>5 </b>Â 2 yr. oldÂ  Red Angus bulls. Out of Mushrush genetics. All home-raised &amp; semen &amp; trich tested. Ready to turn out.Â </li>\n<li><b>Beeman Farms: </b><b>2</b> 20 month old Blk Baldy Sim-Angus bulls. <b>1</b> 20 month old Blk Angus bull. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Seedstock Plus: </b><b>6</b> 18 month old Blk Balancer bulls. All Info will be available on bulls. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Spring Haven Farms: </b><b>9</b> 18 month old Blk Angus bulls. All out of Reg. stock, no papers on hand.Â </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Berry Farms: </b><b>18 </b>Â Blk-Bwf 5-SS yr. old cows w/ 250-400lbs calves at side, all 3N1â€™s. Cows bred to Hereford or Blk Angus bulls.</li>\n<li><b>K. Thompson Farms: </b><b>30 </b>Blk-Bwf 3-5 yr old cows,2nd &amp; 3rd period. All cows bred to 3C Reg. Angus bulls. Cows had all shots, good health program.</li>\n<li><b>Crutchfield Farms: </b><b>9 </b>Blk 2 yr. old heifers w/ month old calves at side</li>\n<li><b> R &amp; G Cattle Co.: </b><b>16 </b>Blk-Bwf 2 yr. old heifers w/ 1-2-month-old calves at side. Breed to the bull of your choice.</li>\n<li><b>Daniels Farms Inc.: </b><b>20 </b>Blk 3-6 yr old cows w/ 250lbs calves at side. <b>60</b> Blk 3-6 yr. old cows,3rd period. <b>40</b> Blk 3-6 yr. old cows, 2nd period. All cows bred Reg. Angus bulls. Cows are good quality &amp; selling due to loss of rental ground</li>\n<li><b>Staus Farms: </b><b>20 </b>Blk Angus 6-SS yr old fall calving cows, 2nd period. Cows bred Blk Angus bulls. All home-raised &amp; very gentle set of cows.</li>\n<li><b>Mullins Farms Complete Dispersal: </b><b>13</b> Blk 4-SS yr. old cows w/ 200-300lbs calves at side. <b>19 </b>Blk 4-SS yr. old cows, 3rd period.</li>\n<li><b>Anderson &amp; Sickle Farms: </b><b>35 </b>Blk-Bwf 4-7 yr. old cows, 2nd period. Cows all bred Blk bulls &amp; start calving Sept. 1st for 60 days.</li>\n<li><b>Shippy Farms: </b><b>33 </b>Blk-Bwf 5-SS yr. old cows, 2nd period. Cows bred Horned Hereford Bulls &amp; Start calving Sept. 1st</li>\n<li><b>Nuelle Farms: </b><b>35 </b>Blk-Bwf 3-7 yr old cows w/ 200lbs calves at side. <b>15</b> Red Angus 3-5 yr. old cows w/ 250lbs calves at side. <b>30</b> Blk-Red 1250lbs 3-6 yr. old cows, 3rd period. Bred Red or Blk Angus bulls</li>\n<li><b>Evans Farm: </b><b>20 </b>Red Angus 3-6 yr. old cows 2nd &amp; 3rd period. Bred Blk Balancer bulls.</li>\n<li><b>T &amp; T Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Angus or Blk Sim-Angus bulls.Â </li>\n<li><b>Miles Farms: </b><b>40 </b>Â Blk-Bwf 3-4 yr. old fall calving cows, 2nd period. <b>40 </b>Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. All cows bred Blk Angus bulls. Nice set of fall calvers</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-03-29 15:40:13','2023-03-29 15:40:13','',2209,'https://kingsvillelivestock.com/?p=5245',0,'revision','',0),(5246,2,'2023-03-29 15:46:13','2023-03-29 15:46:13','','April 15, 2023 Cow Sale','','inherit','closed','closed','','april-15-2023-cow-sale','','','2023-03-29 15:46:13','2023-03-29 15:46:13','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/03/April-15-2023-Cow-Sale.pdf',0,'attachment','application/pdf',0),(5247,2,'2023-03-29 15:46:25','2023-03-29 15:46:25','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/April-15-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5246\">April 15, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls </a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-03-29 15:46:25','2023-03-29 15:46:25','',639,'https://kingsvillelivestock.com/?p=5247',0,'revision','',0),(5248,2,'2023-03-29 16:54:03','2023-03-29 16:54:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/April-15-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5246\">April 15, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls</a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-03-29 16:54:03','2023-03-29 16:54:03','',1967,'https://kingsvillelivestock.com/?p=5248',0,'revision','',0),(5249,2,'2023-03-29 16:54:48','2023-03-29 16:54:48','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-28th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5229\">Tuesday,March 28th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #666699;\"><strong>Special Cow &amp; Bull Sale - Saturday, April 15th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b> - <b>Visit our website to view registration papers &amp; pictures! </b></p>\n<ul>\n<li><b>Mullins Farms Complete Dispersal: </b><b>1 </b>Â 3 yr. old Blk Angus bull.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. old Reg. Angus Bull.Â  WRF Basin Payweight 123</li>\n<li><b>Randall Brammer Farms: </b><b>2 </b>18 month old Blk Angus bulls. #16 is a KCF Absolute X Growth Fund bull &amp; #5 is a Gucci X Growth fund bull. Bulls are home-raised, big &amp; stout &amp; will add lbs to calf crop. Semen &amp; Trich tested</li>\n<li><b>Hettinger Land &amp; Cattle: </b><b>1 </b>Â 3 yr. old Horned Hereford Bull. Out of Oleen Bros genetics &amp; Reg. stock. Use on cows.</li>\n<li><b>Josh Goodman Farms: </b><b>2 </b>Â 3 yr. oldÂ  Reg. Angus Bulls. <b>1</b> 4 yr. old Angus Bull. Visit the website to see Reg. papers!</li>\n<li><b>Bar L Herefords: </b><b>1 </b>Â 18 month oldÂ  Reg. Horned Hereford bull. <b>2 </b>2 yr. old Reg. Horned Hereford bull. <b>1 </b>3 yr. old Reg. Horned Hereford Bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Miller Farms: </b><b>5 </b>Â 2 yr. oldÂ  Red Angus bulls. Out of Mushrush genetics. All home-raised &amp; semen &amp; trich tested. Ready to turn out.</li>\n<li><b>Beeman Farms: </b><b>2</b> 20-month-old Blk Baldy Sim-Angus bulls. <b>1</b> 20-month-old Blk Angus bull. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Seedstock Plus: </b><b>6</b> 18-month-old Blk Balancer bulls. All Info will be available on bulls. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Spring Haven Farms: </b><b>9</b> 18-month-old Blk Angus bulls. <b>1 </b>2.5 Blk Angus bull <b>2</b> 2 yr. old Blk Angus Bulls All out of Reg. stock, no papers on hand.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Berry Farms: </b><b>18 </b>Â Blk-Bwf 5-SS yr. old cows w/ 250-400lbs calves at side, all 3N1â€™s. Cows bred to Hereford or Blk Angus bulls.</li>\n<li><b>K. Thompson Farms: </b><b>30 </b>Blk-Bwf 3-5 yr old cows,2nd &amp; 3rd period. All cows bred to 3C Reg. Angus bulls. Cows had all shots, good health program.</li>\n<li><b>Crutchfield Farms: </b><b>9 </b>Blk 2 yr. old heifers w/ month old calves at side</li>\n<li><b> R &amp; G Cattle Co.: </b><b>16 </b>Blk-Bwf 2 yr. old heifers w/ 1-2-month-old calves at side. Breed to the bull of your choice.</li>\n<li><b>Daniels Farms Inc.: </b><b>20 </b>Blk 3-6 yr old cows w/ 250lbs calves at side. <b>60</b> Blk 3-6 yr. old cows,3rd period. <b>40</b> Blk 3-6 yr. old cows, 2nd period. All cows bred Reg. Angus bulls. Cows are good quality &amp; selling due to loss of rental ground</li>\n<li><b>Staus Farms: </b><b>20 </b>Blk Angus 6-SS yr old fall calving cows, 2nd period. Cows bred Blk Angus bulls. All home-raised &amp; very gentle set of cows.</li>\n<li><b>Mullins Farms Complete Dispersal: </b><b>13</b> Blk 4-SS yr. old cows w/ 200-300lbs calves at side. <b>19 </b>Blk 4-SS yr. old cows, 3rd period.</li>\n<li><b>Anderson &amp; Sickle Farms: </b><b>35 </b>Blk-Bwf 4-7 yr. old cows, 2nd period. Cows all bred Blk bulls &amp; start calving Sept. 1st for 60 days.</li>\n<li><b>Shippy Farms: </b><b>33 </b>Blk-Bwf 5-SS yr. old cows, 2nd period. Cows bred Horned Hereford Bulls &amp; Start calving Sept. 1st</li>\n<li><b>Nuelle Farms: </b><b>35 </b>Blk-Bwf 3-7 yr old cows w/ 200lbs calves at side. <b>15</b> Red Angus 3-5 yr. old cows w/ 250lbs calves at side. <b>30</b> Blk-Red 1250lbs 3-6 yr. old cows, 3rd period. Bred Red or Blk Angus bulls</li>\n<li><b>Evans Farm: </b><b>20 </b>Red Angus 3-6 yr. old cows 2nd &amp; 3rd period. Bred Blk Balancer bulls.</li>\n<li><b>T &amp; T Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Angus or Blk Sim-Angus bulls.</li>\n<li><b>Miles Farms: </b><b>40 </b>Â Blk-Bwf 3-4 yr. old fall calving cows, 2nd period. <b>40 </b>Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. All cows bred Blk Angus bulls. Nice set of fall calvers</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-03-29 16:54:48','2023-03-29 16:54:48','',2209,'https://kingsvillelivestock.com/?p=5249',0,'revision','',0),(5250,2,'2023-03-29 16:55:23','2023-03-29 16:55:23','','April 15, 2023 Cow Sale','','inherit','closed','closed','','april-15-2023-cow-sale-2','','','2023-03-29 16:55:23','2023-03-29 16:55:23','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/03/April-15-2023-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(5251,2,'2023-03-29 16:55:33','2023-03-29 16:55:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/April-15-2023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5250\">April 15, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls </a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-03-29 16:55:33','2023-03-29 16:55:33','',639,'https://kingsvillelivestock.com/?p=5251',0,'revision','',0),(5252,2,'2023-03-29 16:56:10','2023-03-29 16:56:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 1st @ 10:00 am<br /></strong>Linda Wilson Farm Equipment Auction- For more info visit the Anstine Auction tab!</p>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/April-15-2023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5250\">April 15, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls</a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-03-29 16:56:10','2023-03-29 16:56:10','',1967,'https://kingsvillelivestock.com/?p=5252',0,'revision','',0),(5253,2,'2023-04-03 15:28:14','2023-04-03 15:28:14','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/TuesdayMarch-28th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5229\">Tuesday,March 28th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #666699;\"><strong>Special Cow &amp; Bull Sale - Saturday, April 15th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b> - <b>Visit our website to view registration papers &amp; pictures! </b></p>\n<ul>\n<li><b>Mullins Farms Complete Dispersal: </b><b>1 </b>Â 3 yr. old Blk Angus bull.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. old Reg. Angus Bull.Â  WRF Basin Payweight 123</li>\n<li><b>Randall Brammer Farms: </b><b>2 </b>18 month old Blk Angus bulls. #16 is a KCF Absolute X Growth Fund bull &amp; #5 is a Gucci X Growth fund bull. Bulls are home-raised, big &amp; stout &amp; will add lbs to calf crop. Semen &amp; Trich tested</li>\n<li><b>Hettinger Land &amp; Cattle: </b><b>1 </b>Â 3 yr. old Horned Hereford Bull. Out of Oleen Bros genetics &amp; Reg. stock. Use on cows.</li>\n<li><b>Josh Goodman Farms: </b><b>2 </b>Â 3 yr. oldÂ  Reg. Angus Bulls. <b>1</b> 4 yr. old Angus Bull. Visit the website to see Reg. papers!</li>\n<li><b>Bar L Herefords: </b><b>1 </b>Â 18 month oldÂ  Reg. Horned Hereford bull. <b>2 </b>2 yr. old Reg. Horned Hereford bull. <b>1 </b>3 yr. old Reg. Horned Hereford Bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Miller Farms: </b><b>5 </b>Â 2 yr. old Reg. Red Angus bulls. Out of Mushrush genetics. All home-raised &amp; semen &amp; trich tested. Ready to turn out.</li>\n<li><b>Beeman Farms: </b><b>2</b> 20-month-old Blk Baldy Sim-Angus bulls. <b>1</b> 20-month-old Blk Angus bull. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Seedstock Plus: </b><b>6</b> 18-month-old Blk Balancer bulls. All Info will be available on bulls. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Spring Haven Farms: </b><b>9</b> 18-month-old Blk Angus bulls. <b>1 </b>2.5 Blk Angus bull <b>2</b> 2 yr. old Blk Angus Bulls. All out of Reg. stock, no papers on hand.</li>\n<li><b>Mapels Farms: </b><b>2</b> 2.5 yr. old Purebred Blk Angus bulls w/ 79lbs BWT. Out of Reg. stock, no papers. A gentle set of bulls</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Berry Farms: </b><b>18 </b>Â Blk-Bwf 5-SS yr. old cows w/ 250-400lbs calves at side, all 3N1â€™s. Cows bred to Hereford or Blk Angus bulls.</li>\n<li><b>K. Thompson Farms: </b><b>30 </b>Blk-Bwf 3-5 yr old cows,2nd &amp; 3rd period. All cows bred to 3C Reg. Angus bulls. Cows had all shots, good health program.</li>\n<li><b>Crutchfield Farms: </b><b>9 </b>Blk 2 yr. old heifers w/ month old calves at side</li>\n<li><b> R &amp; G Cattle Co.: </b><b>16 </b>Blk-Bwf 2 yr. old heifers w/ 1-2-month-old calves at side. Breed to the bull of your choice.</li>\n<li><b>Daniels Farms Inc.: </b><b>20 </b>Blk 3-6 yr old cows w/ 250lbs calves at side. <b>60</b> Blk 3-6 yr. old cows,3rd period. <b>40</b> Blk 3-6 yr. old cows, 2nd period. All cows bred Reg. Angus bulls. Cows are good quality &amp; selling due to loss of rental ground</li>\n<li><b>Staus Farms: </b><b>20 </b>Blk Angus 6-SS yr old fall calving cows, 2nd period. Cows bred Blk Angus bulls. All home-raised &amp; very gentle set of cows.</li>\n<li><b>Mullins Farms Complete Dispersal: </b><b>13</b> Blk 4-SS yr. old cows w/ 200-300lbs calves at side. <b>19 </b>Blk 4-SS yr. old cows, 3rd period.</li>\n<li><b>Anderson &amp; Sickle Farms: </b><b>35 </b>Blk-Bwf 4-7 yr. old cows, 2nd period. Cows all bred Blk bulls &amp; start calving Sept. 1st for 60 days.</li>\n<li><b>Shippy Farms: </b><b>33 </b>Blk-Bwf 5-SS yr. old cows, 2nd period. Cows bred Horned Hereford Bulls &amp; Start calving Sept. 1st</li>\n<li><b>Nuelle Farms: </b><b>35 </b>Blk-Bwf 3-7 yr old cows w/ 200lbs calves at side. <b>15</b> Red Angus 3-5 yr. old cows w/ 250lbs calves at side. <b>30</b> Blk-Red 1250lbs 3-6 yr. old cows, 3rd period. Bred Red or Blk Angus bulls</li>\n<li><b>Evans Farm: </b><b>20 </b>Red Angus 3-6 yr. old cows 2nd &amp; 3rd period. Bred Blk Balancer bulls.</li>\n<li><b>T &amp; T Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Angus or Blk Sim-Angus bulls.</li>\n<li><b>Miles Farms: </b><b>40 </b>Â Blk-Bwf 3-4 yr. old fall calving cows, 2nd period. <b>40 </b>Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. All cows bred Blk Angus bulls. Nice set of fall calvers</li>\n<li><b>Turner Farms: </b><b>19 </b>Â Blk Balancer 3 yr. old cows, 2nd &amp; 3rd period. Carrying Judd Ranch tags &amp; bought as open hfrs. <b>10 </b>Blk Gelv. 6-SS yr. old cows, 2nd &amp; 3rd period. <b>12</b> Blk Gelv. 6-SS yr. old cows w/ spring calves at side &amp; E.T. to match. All cows off 1 farmÂ  &amp; selling due to loss of rented ground. Cows bred Seedstock Plus Balancer bulls or Bernt Horned Hereford bulls. All cows extremely gentle &amp; had all shots.</li>\n<li><b>Tim &amp; Janet Evert Farms: </b><b>27 </b>Â Blk Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side (3N1â€™s) <b>9</b> Red Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side. (3N1â€™s) Cows bred back to Seedstock Plus Balancer bulls. Bull turned in Nov. 12th &amp; out Jan. 28th. Cows start calving Aug. 23rd &amp; finish by Dec. 15th. All calves cut &amp; had 1 rd shots. Cows &amp; calves were wormed w/ Cydectin wormer on Mar. 28th. Very nice set of young 3N1 pairs.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-04-03 15:28:14','2023-04-03 15:28:14','',2209,'https://kingsvillelivestock.com/?p=5253',0,'revision','',0),(5254,2,'2023-04-03 15:35:09','2023-04-03 15:35:09','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/April-15-2023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5250\">April 15, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls </a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-04-03 15:35:09','2023-04-03 15:35:09','',639,'https://kingsvillelivestock.com/?p=5254',0,'revision','',0),(5255,2,'2023-04-03 15:36:12','2023-04-03 15:36:12','','April 15, 2023 Cow Sale','','inherit','closed','closed','','april-15-2023-cow-sale-3','','','2023-04-03 15:36:12','2023-04-03 15:36:12','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/04/April-15-2023-Cow-Sale.pdf',0,'attachment','application/pdf',0),(5256,2,'2023-04-03 15:36:20','2023-04-03 15:36:20','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/April-15-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5255\">April 15, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls </a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-04-03 15:36:20','2023-04-03 15:36:20','',639,'https://kingsvillelivestock.com/?p=5256',0,'revision','',0),(5257,2,'2023-04-03 15:39:06','2023-04-03 15:39:06','','April 15, 2023 Cow Sale','','inherit','closed','closed','','april-15-2023-cow-sale-4','','','2023-04-03 15:39:06','2023-04-03 15:39:06','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/04/April-15-2023-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(5258,2,'2023-04-03 15:39:17','2023-04-03 15:39:17','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/April-15-2023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5257\">April 15, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls</a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-04-03 15:39:17','2023-04-03 15:39:17','',1967,'https://kingsvillelivestock.com/?p=5258',0,'revision','',0),(5259,2,'2023-04-03 17:50:20','2023-04-03 17:50:20','','Tuesday,April 4th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayapril-4th-feeder-cattle-consignments','','','2023-04-03 17:50:20','2023-04-03 17:50:20','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/04/TuesdayApril-4th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5260,2,'2023-04-03 17:50:26','2023-04-03 17:50:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/TuesdayApril-4th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5259\">Tuesday,April 4th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #666699;\"><strong>Special Cow &amp; Bull Sale - Saturday, April 15th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b> - <b>Visit our website to view registration papers &amp; pictures! </b></p>\n<ul>\n<li><b>Mullins Farms Complete Dispersal: </b><b>1 </b>Â 3 yr. old Blk Angus bull.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. old Reg. Angus Bull.Â  WRF Basin Payweight 123</li>\n<li><b>Randall Brammer Farms: </b><b>2 </b>18 month old Blk Angus bulls. #16 is a KCF Absolute X Growth Fund bull &amp; #5 is a Gucci X Growth fund bull. Bulls are home-raised, big &amp; stout &amp; will add lbs to calf crop. Semen &amp; Trich tested</li>\n<li><b>Hettinger Land &amp; Cattle: </b><b>1 </b>Â 3 yr. old Horned Hereford Bull. Out of Oleen Bros genetics &amp; Reg. stock. Use on cows.</li>\n<li><b>Josh Goodman Farms: </b><b>2 </b>Â 3 yr. oldÂ  Reg. Angus Bulls. <b>1</b> 4 yr. old Angus Bull. Visit the website to see Reg. papers!</li>\n<li><b>Bar L Herefords: </b><b>1 </b>Â 18 month oldÂ  Reg. Horned Hereford bull. <b>2 </b>2 yr. old Reg. Horned Hereford bull. <b>1 </b>3 yr. old Reg. Horned Hereford Bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Miller Farms: </b><b>5 </b>Â 2 yr. old Reg. Red Angus bulls. Out of Mushrush genetics. All home-raised &amp; semen &amp; trich tested. Ready to turn out.</li>\n<li><b>Beeman Farms: </b><b>2</b> 20-month-old Blk Baldy Sim-Angus bulls. <b>1</b> 20-month-old Blk Angus bull. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Seedstock Plus: </b><b>6</b> 18-month-old Blk Balancer bulls. All Info will be available on bulls. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Spring Haven Farms: </b><b>9</b> 18-month-old Blk Angus bulls. <b>1 </b>2.5 Blk Angus bull <b>2</b> 2 yr. old Blk Angus Bulls. All out of Reg. stock, no papers on hand.</li>\n<li><b>Mapels Farms: </b><b>2</b> 2.5 yr. old Purebred Blk Angus bulls w/ 79lbs BWT. Out of Reg. stock, no papers. A gentle set of bulls</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Berry Farms: </b><b>18 </b>Â Blk-Bwf 5-SS yr. old cows w/ 250-400lbs calves at side, all 3N1â€™s. Cows bred to Hereford or Blk Angus bulls.</li>\n<li><b>K. Thompson Farms: </b><b>30 </b>Blk-Bwf 3-5 yr old cows,2nd &amp; 3rd period. All cows bred to 3C Reg. Angus bulls. Cows had all shots, good health program.</li>\n<li><b>Crutchfield Farms: </b><b>9 </b>Blk 2 yr. old heifers w/ month old calves at side</li>\n<li><b> R &amp; G Cattle Co.: </b><b>16 </b>Blk-Bwf 2 yr. old heifers w/ 1-2-month-old calves at side. Breed to the bull of your choice.</li>\n<li><b>Daniels Farms Inc.: </b><b>20 </b>Blk 3-6 yr old cows w/ 250lbs calves at side. <b>60</b> Blk 3-6 yr. old cows,3rd period. <b>40</b> Blk 3-6 yr. old cows, 2nd period. All cows bred Reg. Angus bulls. Cows are good quality &amp; selling due to loss of rental ground</li>\n<li><b>Staus Farms: </b><b>20 </b>Blk Angus 6-SS yr old fall calving cows, 2nd period. Cows bred Blk Angus bulls. All home-raised &amp; very gentle set of cows.</li>\n<li><b>Mullins Farms Complete Dispersal: </b><b>13</b> Blk 4-SS yr. old cows w/ 200-300lbs calves at side. <b>19 </b>Blk 4-SS yr. old cows, 3rd period.</li>\n<li><b>Anderson &amp; Sickle Farms: </b><b>35 </b>Blk-Bwf 4-7 yr. old cows, 2nd period. Cows all bred Blk bulls &amp; start calving Sept. 1st for 60 days.</li>\n<li><b>Shippy Farms: </b><b>33 </b>Blk-Bwf 5-SS yr. old cows, 2nd period. Cows bred Horned Hereford Bulls &amp; Start calving Sept. 1st</li>\n<li><b>Nuelle Farms: </b><b>35 </b>Blk-Bwf 3-7 yr old cows w/ 200lbs calves at side. <b>15</b> Red Angus 3-5 yr. old cows w/ 250lbs calves at side. <b>30</b> Blk-Red 1250lbs 3-6 yr. old cows, 3rd period. Bred Red or Blk Angus bulls</li>\n<li><b>Evans Farm: </b><b>20 </b>Red Angus 3-6 yr. old cows 2nd &amp; 3rd period. Bred Blk Balancer bulls.</li>\n<li><b>T &amp; T Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Angus or Blk Sim-Angus bulls.</li>\n<li><b>Miles Farms: </b><b>40 </b>Â Blk-Bwf 3-4 yr. old fall calving cows, 2nd period. <b>40 </b>Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. All cows bred Blk Angus bulls. Nice set of fall calvers</li>\n<li><b>Turner Farms: </b><b>19 </b>Â Blk Balancer 3 yr. old cows, 2nd &amp; 3rd period. Carrying Judd Ranch tags &amp; bought as open hfrs. <b>10 </b>Blk Gelv. 6-SS yr. old cows, 2nd &amp; 3rd period. <b>12</b> Blk Gelv. 6-SS yr. old cows w/ spring calves at side &amp; E.T. to match. All cows off 1 farmÂ  &amp; selling due to loss of rented ground. Cows bred Seedstock Plus Balancer bulls or Bernt Horned Hereford bulls. All cows extremely gentle &amp; had all shots.</li>\n<li><b>Tim &amp; Janet Evert Farms: </b><b>27 </b>Â Blk Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side (3N1â€™s) <b>9</b> Red Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side. (3N1â€™s) Cows bred back to Seedstock Plus Balancer bulls. Bull turned in Nov. 12th &amp; out Jan. 28th. Cows start calving Aug. 23rd &amp; finish by Dec. 15th. All calves cut &amp; had 1 rd shots. Cows &amp; calves were wormed w/ Cydectin wormer on Mar. 28th. Very nice set of young 3N1 pairs.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-04-03 17:50:26','2023-04-03 17:50:26','',2209,'https://kingsvillelivestock.com/?p=5260',0,'revision','',0),(5261,2,'2023-04-03 18:39:06','2023-04-03 18:39:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/TuesdayApril-4th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5259\">Tuesday,April 4th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #666699;\"><strong>Special Cow &amp; Bull Sale - Saturday, April 15th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b> - <b>Visit our website to view registration papers &amp; pictures! </b></p>\n<ul>\n<li><b>Mullins Farms Complete Dispersal: </b><b>1 </b>Â 3 yr. old Blk Angus bull.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. old Reg. Angus Bull.Â  WRF Basin Payweight 123</li>\n<li><b>Randall Brammer Farms: </b><b>2 </b>18 month old Blk Angus bulls. #16 is a KCF Absolute X Growth Fund bull &amp; #5 is a Gucci X Growth fund bull. Bulls are home-raised, big &amp; stout &amp; will add lbs to calf crop. Semen &amp; Trich tested</li>\n<li><b>Hettinger Land &amp; Cattle: </b><b>1 </b>Â 3 yr. old Horned Hereford Bull. Out of Oleen Bros genetics &amp; Reg. stock. Use on cows.</li>\n<li><b>Josh Goodman Farms: </b><b>2 </b>Â 3 yr. oldÂ  Reg. Angus Bulls. <b>1</b> 4 yr. old Angus Bull. Visit the website to see Reg. papers!</li>\n<li><b>Bar L Herefords: </b><b>1 </b>Â 18 month oldÂ  Reg. Horned Hereford bull. <b>2 </b>2 yr. old Reg. Horned Hereford bull. <b>1 </b>3 yr. old Reg. Horned Hereford Bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Miller Farms: </b><b>5 </b>Â 2 yr. old Reg. Red Angus bulls. Out of Mushrush genetics. All home-raised &amp; semen &amp; trich tested. Ready to turn out.</li>\n<li><b>Beeman Farms: </b><b>2</b> 20-month-old Blk Baldy Sim-Angus bulls. <b>1</b> 20-month-old Blk Angus bull. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Seedstock Plus: </b><b>6</b> 18-month-old Blk Balancer bulls. All Info will be available on bulls. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Spring Haven Farms: </b><b>9</b> 18-month-old Blk Angus bulls. <b>1 </b>2.5 Blk Angus bull <b>2</b> 2 yr. old Blk Angus Bulls. All out of Reg. stock, no papers on hand.</li>\n<li><b>Mapels Farms: </b><b>2</b> 2.5 yr. old Purebred Blk Angus bulls w/ 79lbs BWT. Out of Reg. stock, no papers. A gentle set of bulls</li>\n<li><b>Ellis Cattle Co.: </b><b>1</b> 3 yr. Reg. Red Angus bulls. <b>2 </b>18-month-old Reg. Red Angus bulls. Semen &amp; Trich tested &amp; can be used on hfrs.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Berry Farms: </b><b>18 </b>Â Blk-Bwf 5-SS yr. old cows w/ 250-400lbs calves at side, all 3N1â€™s. Cows bred to Hereford or Blk Angus bulls.</li>\n<li><b>K. Thompson Farms: </b><b>30 </b>Blk-Bwf 3-5 yr old cows,2nd &amp; 3rd period. All cows bred to 3C Reg. Angus bulls. Cows had all shots, good health program.</li>\n<li><b>Crutchfield Farms: </b><b>9 </b>Blk 2 yr. old heifers w/ month old calves at side</li>\n<li><b> R &amp; G Cattle Co.: </b><b>16 </b>Blk-Bwf 2 yr. old heifers w/ 1-2-month-old calves at side. Breed to the bull of your choice.</li>\n<li><b>Daniels Farms Inc.: </b><b>20 </b>Blk 3-6 yr old cows w/ 250lbs calves at side. <b>60</b> Blk 3-6 yr. old cows,3rd period. <b>40</b> Blk 3-6 yr. old cows, 2nd period. All cows bred Reg. Angus bulls. Cows are good quality &amp; selling due to loss of rental ground</li>\n<li><b>Staus Farms: </b><b>20 </b>Blk Angus 6-SS yr old fall calving cows, 2nd period. Cows bred Blk Angus bulls. All home-raised &amp; very gentle set of cows.</li>\n<li><b>Mullins Farms Complete Dispersal: </b><b>13</b> Blk 4-SS yr. old cows w/ 200-300lbs calves at side. <b>19 </b>Blk 4-SS yr. old cows, 3rd period.</li>\n<li><b>Anderson &amp; Sickle Farms: </b><b>35 </b>Blk-Bwf 4-7 yr. old cows, 2nd period. Cows all bred Blk bulls &amp; start calving Sept. 1st for 60 days.</li>\n<li><b>Shippy Farms: </b><b>33 </b>Blk-Bwf 5-SS yr. old cows, 2nd period. Cows bred Horned Hereford Bulls &amp; Start calving Sept. 1st</li>\n<li><b>Nuelle Farms: </b><b>35 </b>Blk-Bwf 3-7 yr old cows w/ 200lbs calves at side. <b>15</b> Red Angus 3-5 yr. old cows w/ 250lbs calves at side. <b>30</b> Blk-Red 1250lbs 3-6 yr. old cows, 3rd period. Bred Red or Blk Angus bulls</li>\n<li><b>Evans Farm: </b><b>20 </b>Red Angus 3-6 yr. old cows 2nd &amp; 3rd period. Bred Blk Balancer bulls.</li>\n<li><b>T &amp; T Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Angus or Blk Sim-Angus bulls.</li>\n<li><b>Miles Farms: </b><b>40 </b>Â Blk-Bwf 3-4 yr. old fall calving cows, 2nd period. <b>40 </b>Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. All cows bred Blk Angus bulls. Nice set of fall calvers</li>\n<li><b>Turner Farms: </b><b>19 </b>Â Blk Balancer 3 yr. old cows, 2nd &amp; 3rd period. Carrying Judd Ranch tags &amp; bought as open hfrs. <b>10 </b>Blk Gelv. 6-SS yr. old cows, 2nd &amp; 3rd period. <b>12</b> Blk Gelv. 6-SS yr. old cows w/ spring calves at side &amp; E.T. to match. All cows off 1 farmÂ  &amp; selling due to loss of rented ground. Cows bred Seedstock Plus Balancer bulls or Bernt Horned Hereford bulls. All cows extremely gentle &amp; had all shots.</li>\n<li><b>Tim &amp; Janet Evert Farms: </b><b>27 </b>Â Blk Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side (3N1â€™s) <b>9</b> Red Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side. (3N1â€™s) Cows bred back to Seedstock Plus Balancer bulls. Bull turned in Nov. 12th &amp; out Jan. 28th. Cows start calving Aug. 23rd &amp; finish by Dec. 15th. All calves cut &amp; had 1 rd shots. Cows &amp; calves were wormed w/ Cydectin wormer on Mar. 28th. Very nice set of young 3N1 pairs.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-04-03 18:39:06','2023-04-03 18:39:06','',2209,'https://kingsvillelivestock.com/?p=5261',0,'revision','',0),(5262,2,'2023-04-03 18:47:34','2023-04-03 18:47:34','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/TuesdayApril-4th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5259\">Tuesday,April 4th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #666699;\"><strong>Special Cow &amp; Bull Sale - Saturday, April 15th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b> - <b>Visit our website to view registration papers &amp; pictures! </b></p>\n<ul>\n<li><b>Mullins Farms Complete Dispersal: </b><b>1 </b>Â 3 yr. old Blk Angus bull.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. old Reg. Angus Bull.Â  WRF Basin Payweight 123</li>\n<li><b>Randall Brammer Farms: </b><b>2 </b>18 month old Blk Angus bulls. #16 is a KCF Absolute X Growth Fund bull &amp; #5 is a Gucci X Growth fund bull. Bulls are home-raised, big &amp; stout &amp; will add lbs to calf crop. Semen &amp; Trich tested</li>\n<li><b>Hettinger Land &amp; Cattle: </b><b>1 </b>Â 3 yr. old Horned Hereford Bull. Out of Oleen Bros genetics &amp; Reg. stock. Use on cows.</li>\n<li><b>Josh Goodman Farms: </b><b>2 </b>Â 3 yr. oldÂ  Reg. Angus Bulls. <b>1</b> 4 yr. old Angus Bull. Visit the website to see Reg. papers!</li>\n<li><b>Bar L Herefords: </b><b>1 </b>Â 18 month oldÂ  Reg. Horned Hereford bull. <b>2 </b>2 yr. old Reg. Horned Hereford bull. <b>1 </b>3 yr. old Reg. Horned Hereford Bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Miller Farms: </b><b>5 </b>Â 2 yr. old Reg. Red Angus bulls. Out of Mushrush genetics. All home-raised &amp; semen &amp; trich tested. Ready to turn out.</li>\n<li><b>Beeman Farms: </b><b>2</b> 20-month-old Blk Baldy Sim-Angus bulls. <b>1</b> 20-month-old Blk Angus bull. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Seedstock Plus: </b><b>6</b> 18-month-old Blk Balancer bulls. All Info will be available on bulls. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Spring Haven Farms: </b><b>9</b> 18-month-old Blk Angus bulls. <b>1 </b>2.5 Blk Angus bull <b>2</b> 2 yr. old Blk Angus Bulls. All out of Reg. stock, no papers on hand.</li>\n<li><b>Mapels Farms: </b><b>2</b> 2.5 yr. old Purebred Blk Angus bulls w/ 79lbs BWT. Out of Reg. stock, no papers. A gentle set of bulls</li>\n<li><b>Ellis Cattle Co.: </b><b>1</b> 3 yr. Reg. Red Angus bulls. <b>2 </b>18-month-old Reg. Red Angus bulls. Semen &amp; Trich tested &amp; can be used on hfrs.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Berry Farms: </b><b>18 </b>Â Blk-Bwf 5-SS yr. old cows w/ 250-400lbs calves at side, all 3N1â€™s. Cows bred to Hereford or Blk Angus bulls.</li>\n<li><b>K. Thompson Farms: </b><b>30 </b>Blk-Bwf 3-5 yr old cows,2nd &amp; 3rd period. All cows bred to 3C Reg. Angus bulls. Cows had all shots, good health program.</li>\n<li><b>Crutchfield Farms: </b><b>9 </b>Blk 2 yr. old heifers w/ month old calves at side</li>\n<li><b> R &amp; G Cattle Co.: </b><b>16 </b>Blk-Bwf 2 yr. old heifers w/ 1-2-month-old calves at side. Breed to the bull of your choice.</li>\n<li><b>Daniels Farms Inc.: </b><b>20 </b>Blk 3-6 yr old cows w/ 250lbs calves at side. <b>60</b> Blk 3-6 yr. old cows,3rd period. <b>40</b> Blk 3-6 yr. old cows, 2nd period. All cows bred Reg. Angus bulls. Cows are good quality &amp; selling due to loss of rental ground</li>\n<li><b>Staus Farms: </b><b>20 </b>Blk Angus 6-SS yr old fall calving cows, 2nd period. Cows bred Blk Angus bulls. All home-raised &amp; very gentle set of cows.</li>\n<li><b>Mullins Farms Complete Dispersal: </b><b>13</b> Blk 4-SS yr. old cows w/ 200-300lbs calves at side. <b>19 </b>Blk 4-SS yr. old cows, 3rd period.</li>\n<li><b>Anderson &amp; Sickle Farms: </b><b>35 </b>Blk-Bwf 4-7 yr. old cows, 2nd period. Cows all bred Blk bulls &amp; start calving Sept. 1st for 60 days.</li>\n<li><b>Shippy Farms: </b><b>33 </b>Blk-Bwf 5-SS yr. old cows, 2nd period. Cows bred Horned Hereford Bulls &amp; Start calving Sept. 1st</li>\n<li><b>Nuelle Farms: </b><b>35 </b>Blk-Bwf 3-7 yr old cows w/ 200lbs calves at side. <b>15</b> Red Angus 3-5 yr. old cows w/ 250lbs calves at side. <b>30</b> Blk-Red 1250lbs 3-6 yr. old cows, 3rd period. Bred Red or Blk Angus bulls</li>\n<li><b>Evans Farm: </b><b>20 </b>Red Angus 3-6 yr. old cows 2nd &amp; 3rd period. Bred Blk Balancer bulls.</li>\n<li><b>T &amp; T Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Angus or Blk Sim-Angus bulls.</li>\n<li><b>Miles Farms: </b><b>40 </b>Â Blk-Bwf 3-4 yr. old fall calving cows, 2nd period. <b>40 </b>Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. All cows bred Blk Angus bulls. Nice set of fall calvers</li>\n<li><b>Turner Farms: </b><b>19 </b>Â Blk Balancer 3 yr. old cows, 2nd &amp; 3rd period. Carrying Judd Ranch tags &amp; bought as open hfrs. <b>10 </b>Blk Gelv. 6-SS yr. old cows, 2nd &amp; 3rd period. <b>12</b> Blk Gelv. 6-SS yr. old cows w/ spring calves at side &amp; E.T. to match. All cows off 1 farmÂ  &amp; selling due to loss of rented ground. Cows bred Seedstock Plus Balancer bulls or Bernt Horned Hereford bulls. All cows extremely gentle &amp; had all shots.</li>\n<li><b>Tim &amp; Janet Evert Farms: </b><b>27 </b>Â Blk Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side (3N1â€™s) <b>9</b> Red Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side. (3N1â€™s) Cows bred back to Seedstock Plus Balancer bulls. Bull turned in Nov. 12th &amp; out Jan. 28th. Cows start calving Aug. 23rd &amp; finish by Dec. 15th. All calves cut &amp; had 1 rd shots. Cows &amp; calves were wormed w/ Cydectin wormer on Mar. 28th. Very nice set of young 3N1 pairs.</li>\n<li><b>Ellis Cattle Co.: </b><b>5</b> Reg. Red Angus heifers w/ fall calves at side 3N1â€™s. Running back w/ Reg. Red Angus bull. 2 Reg. Red Angus SS fall calving cows, 1 hd AI to Red Brylor CrimsonÂ  Jewels.</li>\n<li></li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-04-03 18:47:34','2023-04-03 18:47:34','',2209,'https://kingsvillelivestock.com/?p=5262',0,'revision','',0),(5263,2,'2023-04-03 18:52:41','2023-04-03 18:52:41','','April 15, 2023 Cow Sale','','inherit','closed','closed','','april-15-2023-cow-sale-5','','','2023-04-03 18:52:41','2023-04-03 18:52:41','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/04/April-15-2023-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(5264,2,'2023-04-03 18:52:56','2023-04-03 18:52:56','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/April-15-2023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5263\">April 15, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls </a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-04-03 18:52:56','2023-04-03 18:52:56','',639,'https://kingsvillelivestock.com/?p=5264',0,'revision','',0),(5265,2,'2023-04-03 18:53:43','2023-04-03 18:53:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/April-15-2023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5263\">April 15, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls</a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-04-03 18:53:43','2023-04-03 18:53:43','',1967,'https://kingsvillelivestock.com/?p=5265',0,'revision','',0),(5266,2,'2023-04-03 19:02:11','2023-04-03 19:02:11','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\">[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-04-03 19:02:11','2023-04-03 19:02:11','',1450,'https://kingsvillelivestock.com/?p=5266',0,'revision','',0),(5268,2,'2023-04-05 05:34:14','2023-04-05 05:34:14','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/April-15-2023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5263\">April 15, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls </a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-04-05 05:34:14','2023-04-05 05:34:14','',639,'https://kingsvillelivestock.com/?p=5268',0,'revision','',0),(5269,2,'2023-04-05 05:34:44','2023-04-05 05:34:44','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/April-15-2023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5263\">April 15, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls</a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-04-05 05:34:44','2023-04-05 05:34:44','',1967,'https://kingsvillelivestock.com/?p=5269',0,'revision','',0),(5270,2,'2023-04-05 17:36:20','2023-04-05 17:36:20','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 4, 2023, </strong>2575 hd; Last week, 1787 hd; 1693 a year ago. Steer calves sold steady &amp; heifer calves sold $5-$10 higher. Yearlings sold $2-$6 higher. Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$282.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$178.00-$195.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$177.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$259.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$249.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$235.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$185.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$155.00-$174.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $112.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$89.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $88.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $131.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">728lbs @$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">753lbs @$207.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">774bs@$206.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers-Xbrd</td>\n<td style=\"width: 146.531px; height: 23px;\">782lbs@$198.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">856lbs@$195.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">986lbs@$177.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">698lbs@$202.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">827lbs@$185.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">HeifersÂ </td>\n<td style=\"width: 146.531px; height: 23px;\">901lbs@$174.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 4, 2023 - Market Report','','publish','closed','open','','april-4-2023-market-report','','','2023-04-05 17:36:23','2023-04-05 17:36:23','',0,'https://kingsvillelivestock.com/?p=5270',0,'post','',0),(5272,2,'2023-04-05 17:36:20','2023-04-05 17:36:20','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 4, 2023, </strong>2575 hd; Last week, 1787 hd; 1693 a year ago. Steer calves sold steady &amp; heifer calves sold $5-$10 higher. Yearlings sold $2-$6 higher. Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$282.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$178.00-$195.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$177.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$259.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$249.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$235.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$185.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$155.00-$174.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $112.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$89.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $88.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $131.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">728lbs @$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">753lbs @$207.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">774bs@$206.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers-Xbrd</td>\n<td style=\"width: 146.531px; height: 23px;\">782lbs@$198.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">856lbs@$195.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">986lbs@$177.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">698lbs@$202.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">827lbs@$185.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">HeifersÂ </td>\n<td style=\"width: 146.531px; height: 23px;\">901lbs@$174.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 4, 2023 - Market Report','','inherit','closed','closed','','5270-revision-v1','','','2023-04-05 17:36:20','2023-04-05 17:36:20','',5270,'https://kingsvillelivestock.com/?p=5272',0,'revision','',0),(5273,2,'2023-04-05 17:36:20','2023-04-05 17:36:20','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 4, 2023, </strong>2575 hd; Last week, 1787 hd; 1693 a year ago. Steer calves sold steady &amp; heifer calves sold $5-$10 higher. Yearlings sold $2-$6 higher. Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$282.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$178.00-$195.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$177.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$259.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$249.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$235.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$185.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$155.00-$174.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $112.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$89.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $88.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $131.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">728lbs @$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">753lbs @$207.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">774bs@$206.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers-Xbrd</td>\n<td style=\"width: 146.531px; height: 23px;\">782lbs@$198.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">856lbs@$195.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">986lbs@$177.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">698lbs@$202.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">827lbs@$185.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">HeifersÂ </td>\n<td style=\"width: 146.531px; height: 23px;\">901lbs@$174.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','March 28, 2023 - Market Report','','inherit','closed','closed','','5270-revision-v1','','','2023-04-05 17:36:20','2023-04-05 17:36:20','',5270,'https://kingsvillelivestock.com/?p=5273',0,'revision','',0),(5275,2,'2023-04-05 17:36:23','2023-04-05 17:36:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 4, 2023, </strong>2575 hd; Last week, 1787 hd; 1693 a year ago. Steer calves sold steady &amp; heifer calves sold $5-$10 higher. Yearlings sold $2-$6 higher. Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$282.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$178.00-$195.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$155.00-$177.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$259.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$249.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$235.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$214.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$196.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$185.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$155.00-$174.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $112.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$89.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $88.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $131.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">728lbs @$214.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">753lbs @$207.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">774bs@$206.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers-Xbrd</td>\n<td style=\"width: 146.531px; height: 23px;\">782lbs@$198.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">856lbs@$195.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">986lbs@$177.75</td>\n</tr>\n<tr style=\"height: 46px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">698lbs@$202.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">827lbs@$185.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">HeifersÂ </td>\n<td style=\"width: 146.531px; height: 23px;\">901lbs@$174.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 4, 2023 - Market Report','','inherit','closed','closed','','5270-revision-v1','','','2023-04-05 17:36:23','2023-04-05 17:36:23','',5270,'https://kingsvillelivestock.com/?p=5275',0,'revision','',0),(5276,2,'2023-04-05 17:37:58','2023-04-05 17:37:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/April-15-2023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5263\">April 15, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls </a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-04-05 17:37:58','2023-04-05 17:37:58','',639,'https://kingsvillelivestock.com/?p=5276',0,'revision','',0),(5277,2,'2023-04-05 17:38:48','2023-04-05 17:38:48','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/April-15-2023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5263\">April 15, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls</a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-04-05 17:38:48','2023-04-05 17:38:48','',1967,'https://kingsvillelivestock.com/?p=5277',0,'revision','',0),(5278,2,'2023-04-05 17:47:10','2023-04-05 17:47:10','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/Cnjr4rDNc5qZQPrv7\">Francy Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-04-05 17:47:10','2023-04-05 17:47:10','',1450,'https://kingsvillelivestock.com/?p=5278',0,'revision','',0),(5279,2,'2023-04-05 17:51:45','2023-04-05 17:51:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/TuesdayApril-4th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5259\">Tuesday,April 4th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #666699;\"><strong>Special Cow &amp; Bull Sale - Saturday, April 15th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b> - <b>Visit our website to view registration papers &amp; pictures! </b></p>\n<ul>\n<li><b>Mullins Farms Complete Dispersal: </b><b>1 </b>Â 3 yr. old Blk Angus bull.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. old Reg. Angus Bull.Â  WRF Basin Payweight 123</li>\n<li><b>Randall Brammer Farms: </b><b>2 </b>18 month old Blk Angus bulls. #16 is a KCF Absolute X Growth Fund bull &amp; #5 is a Gucci X Growth fund bull. Bulls are home-raised, big &amp; stout &amp; will add lbs to calf crop. Semen &amp; Trich tested</li>\n<li><b>Hettinger Land &amp; Cattle: </b><b>1 </b>Â 3 yr. old Horned Hereford Bull. Out of Oleen Bros genetics &amp; Reg. stock. Use on cows.</li>\n<li><b>Josh Goodman Farms: </b><b>2 </b>Â 3 yr. oldÂ  Reg. Angus Bulls. <b>1</b> 4 yr. old Angus Bull. Visit the website to see Reg. papers!</li>\n<li><b>Bar L Herefords: </b><b>1 </b>Â 18 month oldÂ  Reg. Horned Hereford bull. <b>2 </b>2 yr. old Reg. Horned Hereford bull. <b>1 </b>3 yr. old Reg. Horned Hereford Bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Miller Farms: </b><b>5 </b>Â 2 yr. old Reg. Red Angus bulls. Out of Mushrush genetics. All home-raised &amp; semen &amp; trich tested. Ready to turn out.</li>\n<li><b>Beeman Farms: </b><b>2</b> 20-month-old Blk Baldy Sim-Angus bulls. <b>1</b> 20-month-old Blk Angus bull. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Seedstock Plus: </b><b>6</b> 18-month-old Blk Balancer bulls. All Info will be available on bulls. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Spring Haven Farms: </b><b>9</b> 18-month-old Blk Angus bulls. <b>1 </b>2.5 Blk Angus bull <b>2</b> 2 yr. old Blk Angus Bulls. All out of Reg. stock, no papers on hand.</li>\n<li><b>Mapels Farms: </b><b>2</b> 2.5 yr. old Purebred Blk Angus bulls w/ 79lbs BWT. Out of Reg. stock, no papers. A gentle set of bulls</li>\n<li><b>Ellis Cattle Co.: </b><b>1</b> 3 yr. Reg. Red Angus bulls. <b>2 </b>18-month-old Reg. Red Angus bulls. Semen &amp; Trich tested &amp; can be used on hfrs.</li>\n<li><b>Kagarice Farms: </b><b>1</b> 2 yr. Blk Angus bull. Semen &amp; trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Berry Farms: </b><b>18 </b>Â Blk-Bwf 5-SS yr. old cows w/ 250-400lbs calves at side, all 3N1â€™s. Cows bred to Hereford or Blk Angus bulls.</li>\n<li><b>K. Thompson Farms: </b><b>30 </b>Blk-Bwf 3-5 yr old cows,2nd &amp; 3rd period. All cows bred to 3C Reg. Angus bulls. Cows had all shots, good health program.</li>\n<li><b>Crutchfield Farms: </b><b>9 </b>Blk 2 yr. old heifers w/ month old calves at side</li>\n<li><b> R &amp; G Cattle Co.: </b><b>16 </b>Blk-Bwf 2 yr. old heifers w/ 1-2-month-old calves at side. Breed to the bull of your choice.</li>\n<li><b>Daniels Farms Inc.: </b><b>20 </b>Blk 3-6 yr old cows w/ 250lbs calves at side. <b>60</b> Blk 3-6 yr. old cows,3rd period. <b>40</b> Blk 3-6 yr. old cows, 2nd period. All cows bred Reg. Angus bulls. Cows are good quality &amp; selling due to loss of rental ground</li>\n<li><b>Staus Farms: </b><b>20 </b>Blk Angus 6-SS yr old fall calving cows, 2nd period. Cows bred Blk Angus bulls. All home-raised &amp; very gentle set of cows.</li>\n<li><b>Mullins Farms Complete Dispersal: </b><b>13</b> Blk 4-SS yr. old cows w/ 200-300lbs calves at side. <b>19 </b>Blk 4-SS yr. old cows, 3rd period.</li>\n<li><b>Anderson &amp; Sickle Farms: </b><b>35 </b>Blk-Bwf 4-7 yr. old cows, 2nd period. Cows all bred Blk bulls &amp; start calving Sept. 1st for 60 days.</li>\n<li><b>Shippy Farms: </b><b>33 </b>Blk-Bwf 5-SS yr. old cows, 2nd period. Cows bred Horned Hereford Bulls &amp; Start calving Sept. 1st</li>\n<li><b>Nuelle Farms: </b><b>35 </b>Blk-Bwf 3-7 yr old cows w/ 200lbs calves at side. <b>15</b> Red Angus 3-5 yr. old cows w/ 250lbs calves at side. <b>30</b> Blk-Red 1250lbs 3-6 yr. old cows, 3rd period. Bred Red or Blk Angus bulls</li>\n<li><b>Evans Farm: </b><b>20 </b>Red Angus 3-6 yr. old cows 2nd &amp; 3rd period. Bred Blk Balancer bulls.</li>\n<li><b>T &amp; T Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Angus or Blk Sim-Angus bulls.</li>\n<li><b>Miles Farms: </b><b>40 </b>Â Blk-Bwf 3-4 yr. old fall calving cows, 2nd period. <b>40 </b>Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. All cows bred Blk Angus bulls. Nice set of fall calvers</li>\n<li><b>Turner Farms: </b><b>19 </b>Â Blk Balancer 3 yr. old cows, 2nd &amp; 3rd period. Carrying Judd Ranch tags &amp; bought as open hfrs. <b>10 </b>Blk Gelv. 6-SS yr. old cows, 2nd &amp; 3rd period. <b>12</b> Blk Gelv. 6-SS yr. old cows w/ spring calves at side &amp; E.T. to match. All cows off 1 farmÂ  &amp; selling due to loss of rented ground. Cows bred Seedstock Plus Balancer bulls or Bernt Horned Hereford bulls. All cows extremely gentle &amp; had all shots.</li>\n<li><b>Tim &amp; Janet Evert Farms: </b><b>27 </b>Â Blk Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side (3N1â€™s) <b>9</b> Red Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side. (3N1â€™s) Cows bred back to Seedstock Plus Balancer bulls. Bull turned in Nov. 12th &amp; out Jan. 28th. Cows start calving Aug. 23rd &amp; finish by Dec. 15th. All calves cut &amp; had 1 rd shots. Cows &amp; calves were wormed w/ Cydectin wormer on Mar. 28th. Very nice set of young 3N1 pairs.</li>\n<li><b>Ellis Cattle Co.: </b><b>5</b> Reg. Red Angus heifers w/ fall calves at side 3N1â€™s. Running back w/ Reg. Red Angus bull. 2 Reg. Red Angus SS fall calving cows, 1 hd AI to Red Brylor CrimsonÂ  Jewels</li>\n<li><b>Detherage Farms: </b><b>12</b>Â  Red Angus 3-5 yr. old cows w/ fall calves at side. Bred back in 1st period.</li>\n<li><b>Wenger Farms: </b><b>8</b>Â  Red Angus 2 yr. old heifer pairs. <b>6 </b>Red Angus 3-4 yr. old cows,3rd period. <b>9 </b>Red Angus 7-SS yr. old cows, 3rd period <b>20 </b>Red Angus 6-SS cows w/ 5-10 calves at side balance 3rd period.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-04-05 17:51:45','2023-04-05 17:51:45','',2209,'https://kingsvillelivestock.com/?p=5279',0,'revision','',0),(5280,2,'2023-04-05 18:00:01','2023-04-05 18:00:01','','April 15, 2023 Cow Sale','','inherit','closed','closed','','april-15-2023-cow-sale-6','','','2023-04-05 18:00:01','2023-04-05 18:00:01','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/04/April-15-2023-Cow-Sale-3.pdf',0,'attachment','application/pdf',0),(5281,2,'2023-04-05 18:00:10','2023-04-05 18:00:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/April-15-2023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5280\">April 15, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls </a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-04-05 18:00:10','2023-04-05 18:00:10','',639,'https://kingsvillelivestock.com/?p=5281',0,'revision','',0),(5282,2,'2023-04-05 18:01:16','2023-04-05 18:01:16','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 8th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled due to Easter weekend!Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>April 8th @ 5 pm <span style=\"color: #ff0000;\">- Canceled due to Easter weekend!Â </span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/April-15-2023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5280\">April 15, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls</a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-04-05 18:01:16','2023-04-05 18:01:16','',1967,'https://kingsvillelivestock.com/?p=5282',0,'revision','',0),(5283,2,'2023-04-10 14:53:15','2023-04-10 14:53:15','','tabloid April cowsale 2023','','inherit','closed','closed','','tabloid-april-cowsale-2023','','','2023-04-10 14:53:15','2023-04-10 14:53:15','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/04/tabloid-April-cowsale-2023.pdf',0,'attachment','application/pdf',0),(5284,2,'2023-04-10 14:54:00','2023-04-10 14:54:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/tabloid-April-cowsale-2023.pdf\" rel=\"attachment wp-att-5283\">Special Cow &amp; Bull SaleÂ </a><br /></strong>Special Cow &amp; Bull Sale <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls </a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-04-10 14:54:00','2023-04-10 14:54:00','',639,'https://kingsvillelivestock.com/?p=5284',0,'revision','',0),(5285,2,'2023-04-10 14:54:56','2023-04-10 14:54:56','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/tabloid-April-cowsale-2023.pdf\" rel=\"attachment wp-att-5283\">Special Cow &amp; Bull Sale </a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls</a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-04-10 14:54:56','2023-04-10 14:54:56','',1967,'https://kingsvillelivestock.com/?p=5285',0,'revision','',0),(5286,2,'2023-04-10 14:56:08','2023-04-10 14:56:08','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/TuesdayApril-4th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5259\">Tuesday,April 4th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #666699;\"><strong>Special Cow &amp; Bull Sale - Saturday, April 15th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b> - <b>Visit our website to view registration papers &amp; pictures! </b></p>\n<ul>\n<li><b>Mullins Farms Complete Dispersal: </b><b>1 </b>Â 3 yr. old Blk Angus bull.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. old Reg. Angus Bull.Â  WRF Basin Payweight 123</li>\n<li><b>Randall Brammer Farms: </b><b>2 </b>18 month old Blk Angus bulls. #16 is a KCF Absolute X Growth Fund bull &amp; #5 is a Gucci X Growth fund bull. Bulls are home-raised, big &amp; stout &amp; will add lbs to calf crop. Semen &amp; Trich tested</li>\n<li><b>Hettinger Land &amp; Cattle: </b><b>1 </b>Â 3 yr. old Horned Hereford Bull. Out of Oleen Bros genetics &amp; Reg. stock. Use on cows.</li>\n<li><b>Josh Goodman Farms: </b><b>2 </b>Â 3 yr. oldÂ  Reg. Angus Bulls. <b>1</b> 4 yr. old Angus Bull. Visit the website to see Reg. papers!</li>\n<li><b>Bar L Herefords: </b><b>1 </b>Â 18 month oldÂ  Reg. Horned Hereford bull. <b>2 </b>2 yr. old Reg. Horned Hereford bull. <b>1 </b>3 yr. old Reg. Horned Hereford Bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Miller Farms: </b><b>5 </b>Â 2 yr. old Reg. Red Angus bulls. Out of Mushrush genetics. All home-raised &amp; semen &amp; trich tested. Ready to turn out.</li>\n<li><b>Beeman Farms: </b><b>2</b> 20-month-old Blk Baldy Sim-Angus bulls. <b>1</b> 20-month-old Blk Angus bull. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Seedstock Plus: </b><b>6</b> 18-month-old Blk Balancer bulls. All Info will be available on bulls. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Spring Haven Farms: </b><b>9</b> 18-month-old Blk Angus bulls. <b>1 </b>2.5 Blk Angus bull <b>2</b> 2 yr. old Blk Angus Bulls. All out of Reg. stock, no papers on hand.</li>\n<li><b>Mapels Farms: </b><b>2</b> 2.5 yr. old Purebred Blk Angus bulls w/ 79lbs BWT. Out of Reg. stock, no papers. A gentle set of bulls</li>\n<li><b>Ellis Cattle Co.: </b><b>1</b> 3 yr. Reg. Red Angus bulls. <b>2 </b>18-month-old Reg. Red Angus bulls. Semen &amp; Trich tested &amp; can be used on hfrs.</li>\n<li><b>Kagarice Farms: </b><b>1</b> 2 yr. Blk Angus bull. Semen &amp; trich tested</li>\n<li><b>Stagecoach Cattle Co.: </b><b>6</b> Purebred Red Angus bulls. These bulls are LBWT &amp; influenced w/ Pharo Cattle genetics</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Berry Farms: </b><b>18 </b>Â Blk-Bwf 5-SS yr. old cows w/ 250-400lbs calves at side, all 3N1â€™s. Cows bred to Hereford or Blk Angus bulls.</li>\n<li><b>K. Thompson Farms: </b><b>30 </b>Blk-Bwf 3-5 yr old cows,2nd &amp; 3rd period. All cows bred to 3C Reg. Angus bulls. Cows had all shots, good health program.</li>\n<li><b>Crutchfield Farms: </b><b>9 </b>Blk 2 yr. old heifers w/ month old calves at side</li>\n<li><b> R &amp; G Cattle Co.: </b><b>16 </b>Blk-Bwf 2 yr. old heifers w/ 1-2-month-old calves at side. Breed to the bull of your choice.</li>\n<li><b>Daniels Farms Inc.: </b><b>20 </b>Blk 3-6 yr old cows w/ 250lbs calves at side. <b>60</b> Blk 3-6 yr. old cows,3rd period. <b>40</b> Blk 3-6 yr. old cows, 2nd period. All cows bred Reg. Angus bulls. Cows are good quality &amp; selling due to loss of rental ground</li>\n<li><b>Staus Farms: </b><b>20 </b>Blk Angus 6-SS yr old fall calving cows, 2nd period. Cows bred Blk Angus bulls. All home-raised &amp; very gentle set of cows.</li>\n<li><b>Mullins Farms Complete Dispersal: </b><b>13</b> Blk 4-SS yr. old cows w/ 200-300lbs calves at side. <b>19 </b>Blk 4-SS yr. old cows, 3rd period.</li>\n<li><b>Anderson &amp; Sickle Farms: </b><b>35 </b>Blk-Bwf 4-7 yr. old cows, 2nd period. Cows all bred Blk bulls &amp; start calving Sept. 1st for 60 days.</li>\n<li><b>Shippy Farms: </b><b>33 </b>Blk-Bwf 5-SS yr. old cows, 2nd period. Cows bred Horned Hereford Bulls &amp; Start calving Sept. 1st</li>\n<li><b>Nuelle Farms: </b><b>35 </b>Blk-Bwf 3-7 yr old cows w/ 200lbs calves at side. <b>15</b> Red Angus 3-5 yr. old cows w/ 250lbs calves at side. <b>30</b> Blk-Red 1250lbs 3-6 yr. old cows, 3rd period. Bred Red or Blk Angus bulls</li>\n<li><b>Evans Farm: </b><b>20 </b>Red Angus 3-6 yr. old cows 2nd &amp; 3rd period. Bred Blk Balancer bulls.</li>\n<li><b>T &amp; T Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Angus or Blk Sim-Angus bulls.</li>\n<li><b>Miles Farms: </b><b>40 </b>Â Blk-Bwf 3-4 yr. old fall calving cows, 2nd period. <b>40 </b>Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. All cows bred Blk Angus bulls. Nice set of fall calvers</li>\n<li><b>Turner Farms: </b><b>19 </b>Â Blk Balancer 3 yr. old cows, 2nd &amp; 3rd period. Carrying Judd Ranch tags &amp; bought as open hfrs. <b>10 </b>Blk Gelv. 6-SS yr. old cows, 2nd &amp; 3rd period. <b>12</b> Blk Gelv. 6-SS yr. old cows w/ spring calves at side &amp; E.T. to match. All cows off 1 farmÂ  &amp; selling due to loss of rented ground. Cows bred Seedstock Plus Balancer bulls or Bernt Horned Hereford bulls. All cows extremely gentle &amp; had all shots.</li>\n<li><b>Tim &amp; Janet Evert Farms: </b><b>27 </b>Â Blk Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side (3N1â€™s) <b>9</b> Red Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side. (3N1â€™s) Cows bred back to Seedstock Plus Balancer bulls. Bull turned in Nov. 12th &amp; out Jan. 28th. Cows start calving Aug. 23rd &amp; finish by Dec. 15th. All calves cut &amp; had 1 rd shots. Cows &amp; calves were wormed w/ Cydectin wormer on Mar. 28th. Very nice set of young 3N1 pairs.</li>\n<li><b>Ellis Cattle Co.: </b><b>5</b> Reg. Red Angus heifers w/ fall calves at side 3N1â€™s. Running back w/ Reg. Red Angus bull. 2 Reg. Red Angus SS fall calving cows, 1 hd AI to Red Brylor CrimsonÂ  Jewels</li>\n<li><b>Detherage Farms: </b><b>12</b>Â  Red Angus 3-5 yr. old cows w/ fall calves at side. Bred back in 1st period.</li>\n<li><b>Wenger Farms: </b><b>8</b>Â  Red Angus 2 yr. old heifer pairs. <b>6 </b>Red Angus 3-4 yr. old cows,3rd period. <b>9 </b>Red Angus 7-SS yr. old cows, 3rd period <b>20 </b>Red Angus 6-SS cows w/ 5-10 calves at side balance 2nd period. <b>15</b> Red Angus 3-4 yr. old cows, 2nd period. Start calving Sept. 1st.</li>\n<li><b>Corbett Farms: </b><b>5</b>Â  Blk 3-SSÂ  yr. cows w/ 200lbs calves at side. <b>40 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. Bred Blk Bulls.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-04-10 14:56:08','2023-04-10 14:56:08','',2209,'https://kingsvillelivestock.com/?p=5286',0,'revision','',0),(5288,2,'2023-04-10 17:27:11','2023-04-10 17:27:11','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/tabloid-April-cowsale-2023.pdf\" rel=\"attachment wp-att-5283\">Special Cow &amp; Bull SaleÂ </a><br /></strong>Special Cow &amp; Bull Sale <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls </a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull SaleÂ </p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-04-10 17:27:11','2023-04-10 17:27:11','',639,'https://kingsvillelivestock.com/?p=5288',0,'revision','',0),(5289,2,'2023-04-10 17:28:02','2023-04-10 17:28:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/tabloid-April-cowsale-2023.pdf\" rel=\"attachment wp-att-5283\">Special Cow &amp; Bull Sale </a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls</a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull SaleÂ </p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-04-10 17:28:02','2023-04-10 17:28:02','',1967,'https://kingsvillelivestock.com/?p=5289',0,'revision','',0),(5290,2,'2023-04-10 17:49:15','2023-04-10 17:49:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/TuesdayApril-4th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5259\">Tuesday,April 4th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #666699;\"><strong>Special Cow &amp; Bull Sale - Saturday, April 15th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b> - <b>Visit our website to view registration papers &amp; pictures! </b></p>\n<ul>\n<li><b>Mullins Farms Complete Dispersal: </b><b>1 </b>Â 3 yr. old Blk Angus bull.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. old Reg. Angus Bull.Â  WRF Basin Payweight 123</li>\n<li><b>Randall Brammer Farms: </b><b>2 </b>18 month old Blk Angus bulls. #16 is a KCF Absolute X Growth Fund bull &amp; #5 is a Gucci X Growth fund bull. Bulls are home-raised, big &amp; stout &amp; will add lbs to calf crop. Semen &amp; Trich tested</li>\n<li><b>Hettinger Land &amp; Cattle: </b><b>1 </b>Â 3 yr. old Horned Hereford Bull. Out of Oleen Bros genetics &amp; Reg. stock. Use on cows.</li>\n<li><b>Josh Goodman Farms: </b><b>2 </b>Â 3 yr. oldÂ  Reg. Angus Bulls. <b>1</b> 4 yr. old Angus Bull. Visit the website to see Reg. papers!</li>\n<li><b>Bar L Herefords: </b><b>1 </b>Â 18 month oldÂ  Reg. Horned Hereford bull. <b>2 </b>2 yr. old Reg. Horned Hereford bull. <b>1 </b>3 yr. old Reg. Horned Hereford Bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Miller Farms: </b><b>5 </b>Â 2 yr. old Reg. Red Angus bulls. Out of Mushrush genetics. All home-raised &amp; semen &amp; trich tested. Ready to turn out.</li>\n<li><b>Beeman Farms: </b><b>2</b> 20-month-old Blk Baldy Sim-Angus bulls. <b>1</b> 20-month-old Blk Angus bull. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Seedstock Plus: </b><b>6</b> 18-month-old Blk Balancer bulls. All Info will be available on bulls. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Spring Haven Farms: </b><b>9</b> 18-month-old Blk Angus bulls. <b>1 </b>2.5 Blk Angus bull <b>2</b> 2 yr. old Blk Angus Bulls. All out of Reg. stock, no papers on hand.</li>\n<li><b>Mapels Farms: </b><b>2</b> 2.5 yr. old Purebred Blk Angus bulls w/ 79lbs BWT. Out of Reg. stock, no papers. A gentle set of bulls</li>\n<li><b>Ellis Cattle Co.: </b><b>1</b> 3 yr. Reg. Red Angus bulls. <b>2 </b>18-month-old Reg. Red Angus bulls. Semen &amp; Trich tested &amp; can be used on hfrs.</li>\n<li><b>Kagarice Farms: </b><b>1</b> 2 yr. Blk Angus bull. Semen &amp; trich tested</li>\n<li><b>Stagecoach Cattle Co.: </b><b>6</b> Purebred Red Angus bulls. These bulls are LBWT &amp; influenced w/ Pharo Cattle genetics</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Berry Farms: </b><b>18 </b>Â Blk-Bwf 5-SS yr. old cows w/ 250-400lbs calves at side, all 3N1â€™s. Cows bred to Hereford or Blk Angus bulls.</li>\n<li><b>K. Thompson Farms: </b><b>30 </b>Blk-Bwf 3-5 yr old cows,2nd &amp; 3rd period. All cows bred to 3C Reg. Angus bulls. Cows had all shots, good health program.</li>\n<li><b>Crutchfield Farms: </b><b>9 </b>Blk 2 yr. old heifers w/ month old calves at side</li>\n<li><b> R &amp; G Cattle Co.: </b><b>16 </b>Blk-Bwf 2 yr. old heifers w/ 1-2-month-old calves at side. Breed to the bull of your choice.</li>\n<li><b>Daniels Farms Inc.: </b><b>20 </b>Blk 3-6 yr old cows w/ 250lbs calves at side. <b>60</b> Blk 3-6 yr. old cows,3rd period. <b>40</b> Blk 3-6 yr. old cows, 2nd period. All cows bred Reg. Angus bulls. Cows are good quality &amp; selling due to loss of rental ground</li>\n<li><b>Staus Farms: </b><b>20 </b>Blk Angus 6-SS yr old fall calving cows, 2nd period. Cows bred Blk Angus bulls. All home-raised &amp; very gentle set of cows.</li>\n<li><b>Mullins Farms Complete Dispersal: </b><b>13</b> Blk 4-SS yr. old cows w/ 200-300lbs calves at side. <b>19 </b>Blk 4-SS yr. old cows, 3rd period.</li>\n<li><b>Anderson &amp; Sickle Farms: </b><b>35 </b>Blk-Bwf 4-7 yr. old cows, 2nd period. Cows all bred Blk bulls &amp; start calving Sept. 1st for 60 days.</li>\n<li><b>Shippy Farms: </b><b>33 </b>Blk-Bwf 5-SS yr. old cows, 2nd period. Cows bred Horned Hereford Bulls &amp; Start calving Sept. 1st</li>\n<li><b>Nuelle Farms: </b><b>35 </b>Blk-Bwf 3-7 yr old cows w/ 200lbs calves at side. <b>15</b> Red Angus 3-5 yr. old cows w/ 250lbs calves at side. <b>30</b> Blk-Red 1250lbs 3-6 yr. old cows, 3rd period. Bred Red or Blk Angus bulls</li>\n<li><b>Evans Farm: </b><b>20 </b>Red Angus 3-6 yr. old cows 2nd &amp; 3rd period. Bred Blk Balancer bulls.</li>\n<li><b>T &amp; T Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Angus or Blk Sim-Angus bulls.</li>\n<li><b>Miles Farms: </b><b>40 </b>Â Blk-Bwf 3-4 yr. old fall calving cows, 2nd period. <b>40 </b>Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. All cows bred Blk Angus bulls. Nice set of fall calvers</li>\n<li><b>Turner Farms: </b><b>19 </b>Â Blk Balancer 3 yr. old cows, 2nd &amp; 3rd period. Carrying Judd Ranch tags &amp; bought as open hfrs. <b>10 </b>Blk Gelv. 6-SS yr. old cows, 2nd &amp; 3rd period. <b>12</b> Blk Gelv. 6-SS yr. old cows w/ spring calves at side &amp; E.T. to match. All cows off 1 farmÂ  &amp; selling due to loss of rented ground. Cows bred Seedstock Plus Balancer bulls or Bernt Horned Hereford bulls. All cows extremely gentle &amp; had all shots.</li>\n<li><b>Tim &amp; Janet Evert Farms: </b><b>27 </b>Â Blk Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side (3N1â€™s) <b>9</b> Red Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side. (3N1â€™s) Cows bred back to Seedstock Plus Balancer bulls. Bull turned in Nov. 12th &amp; out Jan. 28th. Cows start calving Aug. 23rd &amp; finish by Dec. 15th. All calves cut &amp; had 1 rd shots. Cows &amp; calves were wormed w/ Cydectin wormer on Mar. 28th. Very nice set of young 3N1 pairs.</li>\n<li><b>Ellis Cattle Co.: </b><b>5</b> Reg. Red Angus heifers w/ fall calves at side 3N1â€™s. Running back w/ Reg. Red Angus bull. 2 Reg. Red Angus SS fall calving cows, 1 hd AI to Red Brylor CrimsonÂ  Jewels</li>\n<li><b>Detherage Farms: </b><b>12</b>Â  Red Angus 3-5 yr. old cows w/ fall calves at side. Bred back in 1st period.</li>\n<li><b>Wenger Farms: </b><b>8</b>Â  Red Angus 2 yr. old heifer pairs. <b>6 </b>Red Angus 3-4 yr. old cows,3rd period. <b>9 </b>Red Angus 7-SS yr. old cows, 3rd period <b>20 </b>Red Angus 6-SS cows w/ 5-10 calves at side balance 2nd period. <b>15</b> Red Angus 3-4 yr. old cows, 2nd period. Start calving Sept. 1st.</li>\n<li><b>Corbett Farms: </b><b>5</b>Â  Blk 3-SSÂ  yr. cows w/ 200lbs calves at side. <b>40 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. Bred Blk Bulls.</li>\n<li><b>Jennings Farms: </b><b>80</b>Â  Blk Angus 5-SSÂ  yr. cows, 2nd period. <strong>20</strong> Red Angus 5-SS yr. old cows, 2nd period. All bred Blk Bulls. w/ 200lbs calves at side. <b>40 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. Bred Blk Bulls.</li>\n<li><b>Dale Roof Farms: </b><b>5</b>Â  Red Angus 5-7Â  yr. cows w/ 450lbs calves at side, 3n1â€™s.<strong> 5</strong> Red Angus 2 yr. old heifers bred LBWT Red Angus bulls. All out of Reg. genetics, start calving Sept. 1st, home-raised &amp; gentle.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-04-10 17:49:15','2023-04-10 17:49:15','',2209,'https://kingsvillelivestock.com/?p=5290',0,'revision','',0),(5291,2,'2023-04-10 17:51:36','2023-04-10 17:51:36','','tabloid April cowsale 2023','','inherit','closed','closed','','tabloid-april-cowsale-2023-2','','','2023-04-10 17:51:36','2023-04-10 17:51:36','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/04/tabloid-April-cowsale-2023-1.pdf',0,'attachment','application/pdf',0),(5292,2,'2023-04-10 17:52:10','2023-04-10 17:52:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/tabloid-April-cowsale-2023-1.pdf\" rel=\"attachment wp-att-5291\">April Cow &amp; Bull Sale </a><br /></strong>Special Cow &amp; Bull Sale <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls </a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-04-10 17:52:10','2023-04-10 17:52:10','',639,'https://kingsvillelivestock.com/?p=5292',0,'revision','',0),(5293,2,'2023-04-10 17:53:13','2023-04-10 17:53:13','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>April 15th @ 11 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/tabloid-April-cowsale-2023-1.pdf\" rel=\"attachment wp-att-5291\">April Cow &amp; Bull Sale </a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls</a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-04-10 17:53:13','2023-04-10 17:53:13','',1967,'https://kingsvillelivestock.com/?p=5293',0,'revision','',0),(5294,2,'2023-04-10 18:01:50','2023-04-10 18:01:50','','Tuesday,April 11th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayapril-11th-feeder-cattle-consignments','','','2023-04-10 18:01:50','2023-04-10 18:01:50','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/04/TuesdayApril-11th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5295,2,'2023-04-10 18:01:58','2023-04-10 18:01:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/TuesdayApril-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5294\">Tuesday,April 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #666699;\"><strong>Special Cow &amp; Bull Sale - Saturday, April 15th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b> - <b>Visit our website to view registration papers &amp; pictures! </b></p>\n<ul>\n<li><b>Mullins Farms Complete Dispersal: </b><b>1 </b>Â 3 yr. old Blk Angus bull.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. old Reg. Angus Bull.Â  WRF Basin Payweight 123</li>\n<li><b>Randall Brammer Farms: </b><b>2 </b>18 month old Blk Angus bulls. #16 is a KCF Absolute X Growth Fund bull &amp; #5 is a Gucci X Growth fund bull. Bulls are home-raised, big &amp; stout &amp; will add lbs to calf crop. Semen &amp; Trich tested</li>\n<li><b>Hettinger Land &amp; Cattle: </b><b>1 </b>Â 3 yr. old Horned Hereford Bull. Out of Oleen Bros genetics &amp; Reg. stock. Use on cows.</li>\n<li><b>Josh Goodman Farms: </b><b>2 </b>Â 3 yr. oldÂ  Reg. Angus Bulls. <b>1</b> 4 yr. old Angus Bull. Visit the website to see Reg. papers!</li>\n<li><b>Bar L Herefords: </b><b>1 </b>Â 18 month oldÂ  Reg. Horned Hereford bull. <b>2 </b>2 yr. old Reg. Horned Hereford bull. <b>1 </b>3 yr. old Reg. Horned Hereford Bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Miller Farms: </b><b>5 </b>Â 2 yr. old Reg. Red Angus bulls. Out of Mushrush genetics. All home-raised &amp; semen &amp; trich tested. Ready to turn out.</li>\n<li><b>Beeman Farms: </b><b>2</b> 20-month-old Blk Baldy Sim-Angus bulls. <b>1</b> 20-month-old Blk Angus bull. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Seedstock Plus: </b><b>6</b> 18-month-old Blk Balancer bulls. All Info will be available on bulls. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Spring Haven Farms: </b><b>9</b> 18-month-old Blk Angus bulls. <b>1 </b>2.5 Blk Angus bull <b>2</b> 2 yr. old Blk Angus Bulls. All out of Reg. stock, no papers on hand.</li>\n<li><b>Mapels Farms: </b><b>2</b> 2.5 yr. old Purebred Blk Angus bulls w/ 79lbs BWT. Out of Reg. stock, no papers. A gentle set of bulls</li>\n<li><b>Ellis Cattle Co.: </b><b>1</b> 3 yr. Reg. Red Angus bulls. <b>2 </b>18-month-old Reg. Red Angus bulls. Semen &amp; Trich tested &amp; can be used on hfrs.</li>\n<li><b>Kagarice Farms: </b><b>1</b> 2 yr. Blk Angus bull. Semen &amp; trich tested</li>\n<li><b>Stagecoach Cattle Co.: </b><b>6</b> Purebred Red Angus bulls. These bulls are LBWT &amp; influenced w/ Pharo Cattle genetics</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Berry Farms: </b><b>18 </b>Â Blk-Bwf 5-SS yr. old cows w/ 250-400lbs calves at side, all 3N1â€™s. Cows bred to Hereford or Blk Angus bulls.</li>\n<li><b>K. Thompson Farms: </b><b>30 </b>Blk-Bwf 3-5 yr old cows,2nd &amp; 3rd period. All cows bred to 3C Reg. Angus bulls. Cows had all shots, good health program.</li>\n<li><b>Crutchfield Farms: </b><b>9 </b>Blk 2 yr. old heifers w/ month old calves at side</li>\n<li><b> R &amp; G Cattle Co.: </b><b>16 </b>Blk-Bwf 2 yr. old heifers w/ 1-2-month-old calves at side. Breed to the bull of your choice.</li>\n<li><b>Daniels Farms Inc.: </b><b>20 </b>Blk 3-6 yr old cows w/ 250lbs calves at side. <b>60</b> Blk 3-6 yr. old cows,3rd period. <b>40</b> Blk 3-6 yr. old cows, 2nd period. All cows bred Reg. Angus bulls. Cows are good quality &amp; selling due to loss of rental ground</li>\n<li><b>Staus Farms: </b><b>20 </b>Blk Angus 6-SS yr old fall calving cows, 2nd period. Cows bred Blk Angus bulls. All home-raised &amp; very gentle set of cows.</li>\n<li><b>Mullins Farms Complete Dispersal: </b><b>13</b> Blk 4-SS yr. old cows w/ 200-300lbs calves at side. <b>19 </b>Blk 4-SS yr. old cows, 3rd period.</li>\n<li><b>Anderson &amp; Sickle Farms: </b><b>35 </b>Blk-Bwf 4-7 yr. old cows, 2nd period. Cows all bred Blk bulls &amp; start calving Sept. 1st for 60 days.</li>\n<li><b>Shippy Farms: </b><b>33 </b>Blk-Bwf 5-SS yr. old cows, 2nd period. Cows bred Horned Hereford Bulls &amp; Start calving Sept. 1st</li>\n<li><b>Nuelle Farms: </b><b>35 </b>Blk-Bwf 3-7 yr old cows w/ 200lbs calves at side. <b>15</b> Red Angus 3-5 yr. old cows w/ 250lbs calves at side. <b>30</b> Blk-Red 1250lbs 3-6 yr. old cows, 3rd period. Bred Red or Blk Angus bulls</li>\n<li><b>Evans Farm: </b><b>20 </b>Red Angus 3-6 yr. old cows 2nd &amp; 3rd period. Bred Blk Balancer bulls.</li>\n<li><b>T &amp; T Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Angus or Blk Sim-Angus bulls.</li>\n<li><b>Miles Farms: </b><b>40 </b>Â Blk-Bwf 3-4 yr. old fall calving cows, 2nd period. <b>40 </b>Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. All cows bred Blk Angus bulls. Nice set of fall calvers</li>\n<li><b>Turner Farms: </b><b>19 </b>Â Blk Balancer 3 yr. old cows, 2nd &amp; 3rd period. Carrying Judd Ranch tags &amp; bought as open hfrs. <b>10 </b>Blk Gelv. 6-SS yr. old cows, 2nd &amp; 3rd period. <b>12</b> Blk Gelv. 6-SS yr. old cows w/ spring calves at side &amp; E.T. to match. All cows off 1 farmÂ  &amp; selling due to loss of rented ground. Cows bred Seedstock Plus Balancer bulls or Bernt Horned Hereford bulls. All cows extremely gentle &amp; had all shots.</li>\n<li><b>Tim &amp; Janet Evert Farms: </b><b>27 </b>Â Blk Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side (3N1â€™s) <b>9</b> Red Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side. (3N1â€™s) Cows bred back to Seedstock Plus Balancer bulls. Bull turned in Nov. 12th &amp; out Jan. 28th. Cows start calving Aug. 23rd &amp; finish by Dec. 15th. All calves cut &amp; had 1 rd shots. Cows &amp; calves were wormed w/ Cydectin wormer on Mar. 28th. Very nice set of young 3N1 pairs.</li>\n<li><b>Ellis Cattle Co.: </b><b>5</b> Reg. Red Angus heifers w/ fall calves at side 3N1â€™s. Running back w/ Reg. Red Angus bull. 2 Reg. Red Angus SS fall calving cows, 1 hd AI to Red Brylor CrimsonÂ  Jewels</li>\n<li><b>Detherage Farms: </b><b>12</b>Â  Red Angus 3-5 yr. old cows w/ fall calves at side. Bred back in 1st period.</li>\n<li><b>Wenger Farms: </b><b>8</b>Â  Red Angus 2 yr. old heifer pairs. <b>6 </b>Red Angus 3-4 yr. old cows,3rd period. <b>9 </b>Red Angus 7-SS yr. old cows, 3rd period <b>20 </b>Red Angus 6-SS cows w/ 5-10 calves at side balance 2nd period. <b>15</b> Red Angus 3-4 yr. old cows, 2nd period. Start calving Sept. 1st.</li>\n<li><b>Corbett Farms: </b><b>5</b>Â  Blk 3-SSÂ  yr. cows w/ 200lbs calves at side. <b>40 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. Bred Blk Bulls.</li>\n<li><b>Jennings Farms: </b><b>80</b>Â  Blk Angus 5-SSÂ  yr. cows, 2nd period. <strong>20</strong> Red Angus 5-SS yr. old cows, 2nd period. All bred Blk Bulls. w/ 200lbs calves at side. <b>40 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. Bred Blk Bulls.</li>\n<li><b>Dale Roof Farms: </b><b>5</b>Â  Red Angus 5-7Â  yr. cows w/ 450lbs calves at side, 3n1â€™s.<strong> 5</strong> Red Angus 2 yr. old heifers bred LBWT Red Angus bulls. All out of Reg. genetics, start calving Sept. 1st, home-raised &amp; gentle.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-04-10 18:01:58','2023-04-10 18:01:58','',2209,'https://kingsvillelivestock.com/?p=5295',0,'revision','',0),(5297,2,'2023-04-11 16:54:01','2023-04-11 16:54:01','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/TuesdayApril-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5294\">Tuesday,April 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #666699;\"><strong>Special Cow &amp; Bull Sale - Saturday, April 15th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b> - <b>Visit our website to view registration papers &amp; pictures! </b></p>\n<ul>\n<li><b>Mullins Farms Complete Dispersal: </b><b>1 </b>Â 3 yr. old Blk Angus bull.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. old Reg. Angus Bull.Â  WRF Basin Payweight 123</li>\n<li><b>Randall Brammer Farms: </b><b>2 </b>18 month old Blk Angus bulls. #16 is a KCF Absolute X Growth Fund bull &amp; #5 is a Gucci X Growth fund bull. Bulls are home-raised, big &amp; stout &amp; will add lbs to calf crop. Semen &amp; Trich tested</li>\n<li><b>Hettinger Land &amp; Cattle: </b><b>1 </b>Â 3 yr. old Horned Hereford Bull. Out of Oleen Bros genetics &amp; Reg. stock. Use on cows.</li>\n<li><b>Josh Goodman Farms: </b><b>2 </b>Â 3 yr. oldÂ  Reg. Angus Bulls. <b>1</b> 4 yr. old Angus Bull. Visit the website to see Reg. papers!</li>\n<li><b>Bar L Herefords: </b><b>1 </b>Â 18 month oldÂ  Reg. Horned Hereford bull. <b>2 </b>2 yr. old Reg. Horned Hereford bull. <b>1 </b>3 yr. old Reg. Horned Hereford Bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Miller Farms: </b><b>5 </b>Â 2 yr. old Reg. Red Angus bulls. Out of Mushrush genetics. All home-raised &amp; semen &amp; trich tested. Ready to turn out.</li>\n<li><b>Beeman Farms: </b><b>2</b> 20-month-old Blk Baldy Sim-Angus bulls. <b>1</b> 20-month-old Blk Angus bull. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Seedstock Plus: </b><b>6</b> 18-month-old Blk Balancer bulls. All Info will be available on bulls. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Spring Haven Farms: </b><b>9</b> 18-month-old Blk Angus bulls. <b>1 </b>2.5 Blk Angus bull <b>2</b> 2 yr. old Blk Angus Bulls. All out of Reg. stock, no papers on hand.</li>\n<li><b>Mapels Farms: </b><b>2</b> 2.5 yr. old Purebred Blk Angus bulls w/ 79lbs BWT. Out of Reg. stock, no papers. A gentle set of bulls</li>\n<li><b>Ellis Cattle Co.: </b><b>1</b> 3 yr. Reg. Red Angus bulls. <b>2 </b>18-month-old Reg. Red Angus bulls. Semen &amp; Trich tested &amp; can be used on hfrs.</li>\n<li><b>Kagarice Farms: </b><b>1</b> 2 yr. Blk Angus bull. Semen &amp; trich tested</li>\n<li><b>Stagecoach Cattle Co.: </b><b>6</b> Purebred Red Angus bulls. These bulls are LBWT &amp; influenced w/ Pharo Cattle genetics</li>\n<li><b>Stagecoach Cattle Co.: </b><b>6</b> Purebred Red Angus bulls. These bulls are LBWT &amp; influenced w/ Pharo Cattle genetics</li>\n<li><strong>Fifer Farms: 2</strong> 2.5 yr. old Reg. Purebred Charolais bulls. Originated from Wright Charolais, been semen &amp; trich tested.Â </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Berry Farms: </b><b>18 </b>Â Blk-Bwf 5-SS yr. old cows w/ 250-400lbs calves at side, all 3N1â€™s. Cows bred to Hereford or Blk Angus bulls.</li>\n<li><b>K. Thompson Farms: </b><b>30 </b>Blk-Bwf 3-5 yr old cows,2nd &amp; 3rd period. All cows bred to 3C Reg. Angus bulls. Cows had all shots, good health program.</li>\n<li><b>Crutchfield Farms: </b><b>9 </b>Blk 2 yr. old heifers w/ month old calves at side</li>\n<li><b> R &amp; G Cattle Co.: </b><b>16 </b>Blk-Bwf 2 yr. old heifers w/ 1-2-month-old calves at side. Breed to the bull of your choice.</li>\n<li><b>Daniels Farms Inc.: </b><b>20 </b>Blk 3-6 yr old cows w/ 250lbs calves at side. <b>60</b> Blk 3-6 yr. old cows,3rd period. <b>40</b> Blk 3-6 yr. old cows, 2nd period. All cows bred Reg. Angus bulls. Cows are good quality &amp; selling due to loss of rental ground</li>\n<li><b>Staus Farms: </b><b>20 </b>Blk Angus 6-SS yr old fall calving cows, 2nd period. Cows bred Blk Angus bulls. All home-raised &amp; very gentle set of cows.</li>\n<li><b>Mullins Farms Complete Dispersal: </b><b>13</b> Blk 4-SS yr. old cows w/ 200-300lbs calves at side. <b>19 </b>Blk 4-SS yr. old cows, 3rd period.</li>\n<li><b>Anderson &amp; Sickle Farms: </b><b>35 </b>Blk-Bwf 4-7 yr. old cows, 2nd period. Cows all bred Blk bulls &amp; start calving Sept. 1st for 60 days.</li>\n<li><b>Shippy Farms: </b><b>33 </b>Blk-Bwf 5-SS yr. old cows, 2nd period. Cows bred Horned Hereford Bulls &amp; Start calving Sept. 1st</li>\n<li><b>Nuelle Farms: </b><b>35 </b>Blk-Bwf 3-7 yr old cows w/ 200lbs calves at side. <b>15</b> Red Angus 3-5 yr. old cows w/ 250lbs calves at side. <b>30</b> Blk-Red 1250lbs 3-6 yr. old cows, 3rd period. Bred Red or Blk Angus bulls</li>\n<li><b>Evans Farm: </b><b>20 </b>Red Angus 3-6 yr. old cows 2nd &amp; 3rd period. Bred Blk Balancer bulls.</li>\n<li><b>T &amp; T Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Angus or Blk Sim-Angus bulls.</li>\n<li><b>Miles Farms: </b><b>40 </b>Â Blk-Bwf 3-4 yr. old fall calving cows, 2nd period. <b>40 </b>Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. All cows bred Blk Angus bulls. Nice set of fall calvers</li>\n<li><b>Turner Farms: </b><b>19 </b>Â Blk Balancer 3 yr. old cows, 2nd &amp; 3rd period. Carrying Judd Ranch tags &amp; bought as open hfrs. <b>10 </b>Blk Gelv. 6-SS yr. old cows, 2nd &amp; 3rd period. <b>12</b> Blk Gelv. 6-SS yr. old cows w/ spring calves at side &amp; E.T. to match. All cows off 1 farmÂ  &amp; selling due to loss of rented ground. Cows bred Seedstock Plus Balancer bulls or Bernt Horned Hereford bulls. All cows extremely gentle &amp; had all shots.</li>\n<li><b>Tim &amp; Janet Evert Farms: </b><b>27 </b>Â Blk Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side (3N1â€™s) <b>9</b> Red Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side. (3N1â€™s) Cows bred back to Seedstock Plus Balancer bulls. Bull turned in Nov. 12th &amp; out Jan. 28th. Cows start calving Aug. 23rd &amp; finish by Dec. 15th. All calves cut &amp; had 1 rd shots. Cows &amp; calves were wormed w/ Cydectin wormer on Mar. 28th. Very nice set of young 3N1 pairs.</li>\n<li><b>Ellis Cattle Co.: </b><b>5</b> Reg. Red Angus heifers w/ fall calves at side 3N1â€™s. Running back w/ Reg. Red Angus bull. 2 Reg. Red Angus SS fall calving cows, 1 hd AI to Red Brylor CrimsonÂ  Jewels</li>\n<li><b>Detherage Farms: </b><b>12</b>Â  Red Angus 3-5 yr. old cows w/ fall calves at side. Bred back in 1st period.</li>\n<li><b>Wenger Farms: </b><b>8</b>Â  Red Angus 2 yr. old heifer pairs. <b>6 </b>Red Angus 3-4 yr. old cows,3rd period. <b>9 </b>Red Angus 7-SS yr. old cows, 3rd period <b>20 </b>Red Angus 6-SS cows w/ 5-10 calves at side balance 2nd period. <b>15</b> Red Angus 3-4 yr. old cows, 2nd period. Start calving Sept. 1st.</li>\n<li><b>Corbett Farms: </b><b>5</b>Â  Blk 3-SSÂ  yr. cows w/ 200lbs calves at side. <b>40 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. Bred Blk Bulls.</li>\n<li><b>Jennings Farms: </b><b>80</b>Â  Blk Angus 5-SSÂ  yr. cows, 2nd period. <strong>20</strong> Red Angus 5-SS yr. old cows, 2nd period. All bred Blk Bulls. w/ 200lbs calves at side. <b>40 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. Bred Blk Bulls.</li>\n<li><b>Dale Roof Farms: </b><b>5</b>Â  Red Angus 5-7Â  yr. cows w/ 450lbs calves at side, 3n1â€™s.<strong> 5</strong> Red Angus 2 yr. old heifers bred LBWT Red Angus bulls. All out of Reg. genetics, start calving Sept. 1st, home-raised &amp; gentle.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-04-11 16:54:01','2023-04-11 16:54:01','',2209,'https://kingsvillelivestock.com/?p=5297',0,'revision','',0),(5299,2,'2023-04-11 18:37:15','2023-04-11 18:37:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/TuesdayApril-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5294\">Tuesday,April 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #666699;\"><strong>Special Cow &amp; Bull Sale - Saturday, April 15th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b> - <b>Visit our website to view registration papers &amp; pictures! </b></p>\n<ul>\n<li><b>Mullins Farms Complete Dispersal: </b><b>1 </b>Â 3 yr. old Blk Angus bull.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. old Reg. Angus Bull.Â  WRF Basin Payweight 123</li>\n<li><b>Randall Brammer Farms: </b><b>2 </b>18 month old Blk Angus bulls. #16 is a KCF Absolute X Growth Fund bull &amp; #5 is a Gucci X Growth fund bull. Bulls are home-raised, big &amp; stout &amp; will add lbs to calf crop. Semen &amp; Trich tested</li>\n<li><b>Hettinger Land &amp; Cattle: </b><b>1 </b>Â 3 yr. old Horned Hereford Bull. Out of Oleen Bros genetics &amp; Reg. stock. Use on cows.</li>\n<li><b>Josh Goodman Farms: </b><b>2 </b>Â 3 yr. oldÂ  Reg. Angus Bulls. <b>1</b> 4 yr. old Angus Bull. Visit the website to see Reg. papers!</li>\n<li><b>Bar L Herefords: </b><b>1 </b>Â 18 month oldÂ  Reg. Horned Hereford bull. <b>2 </b>2 yr. old Reg. Horned Hereford bull. <b>1 </b>3 yr. old Reg. Horned Hereford Bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Miller Farms: </b><b>5 </b>Â 2 yr. old Reg. Red Angus bulls. Out of Mushrush genetics. All home-raised &amp; semen &amp; trich tested. Show-Me-Select Quailifed Ready to turn out.</li>\n<li><b>Beeman Farms: </b><b>2</b> 20-month-old Blk Baldy Sim-Angus bulls. <b>1</b> 20-month-old Blk Angus bull. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Seedstock Plus: </b><b>6</b> 18-month-old Blk Balancer bulls. All Info will be available on bulls. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Spring Haven Farms: </b><b>9</b> 18-month-old Blk Angus bulls. <b>1 </b>2.5 Blk Angus bull <b>2</b> 2 yr. old Blk Angus Bulls. All out of Reg. stock, no papers on hand.</li>\n<li><b>Mapels Farms: </b><b>2</b> 2.5 yr. old Purebred Blk Angus bulls w/ 79lbs BWT. Out of Reg. stock, no papers. A gentle set of bulls</li>\n<li><b>Ellis Cattle Co.: </b><b>1</b> 3 yr. Reg. Red Angus bulls. <b>2 </b>18-month-old Reg. Red Angus bulls. Semen &amp; Trich tested &amp; can be used on hfrs.</li>\n<li><b>Kagarice Farms: </b><b>1</b> 2 yr. Blk Angus bull. Semen &amp; trich tested</li>\n<li><b>Stagecoach Cattle Co.: </b><b>6</b> Purebred Red Angus bulls. These bulls are LBWT &amp; influenced w/ Pharo Cattle genetics</li>\n<li><b>Stagecoach Cattle Co.: </b><b>6</b> Purebred Red Angus bulls. These bulls are LBWT &amp; influenced w/ Pharo Cattle genetics</li>\n<li><strong>Fifer Farms: 2</strong> 2.5 yr. old Reg. Purebred Charolais bulls. Originated from Wright Charolais, been semen &amp; trich tested.Â </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Berry Farms: </b><b>18 </b>Â Blk-Bwf 5-SS yr. old cows w/ 250-400lbs calves at side, all 3N1â€™s. Cows bred to Hereford or Blk Angus bulls.</li>\n<li><b>K. Thompson Farms: </b><b>30 </b>Blk-Bwf 3-5 yr old cows,2nd &amp; 3rd period. All cows bred to 3C Reg. Angus bulls. Cows had all shots, good health program.</li>\n<li><b>Crutchfield Farms: </b><b>9 </b>Blk 2 yr. old heifers w/ month old calves at side</li>\n<li><b> R &amp; G Cattle Co.: </b><b>16 </b>Blk-Bwf 2 yr. old heifers w/ 1-2-month-old calves at side. Breed to the bull of your choice.</li>\n<li><b>Daniels Farms Inc.: </b><b>20 </b>Blk 3-6 yr old cows w/ 250lbs calves at side. <b>60</b> Blk 3-6 yr. old cows,3rd period. <b>40</b> Blk 3-6 yr. old cows, 2nd period. All cows bred Reg. Angus bulls. Cows are good quality &amp; selling due to loss of rental ground</li>\n<li><b>Staus Farms: </b><b>20 </b>Blk Angus 6-SS yr old fall calving cows, 2nd period. Cows bred Blk Angus bulls. All home-raised &amp; very gentle set of cows.</li>\n<li><b>Mullins Farms Complete Dispersal: </b><b>13</b> Blk 4-SS yr. old cows w/ 200-300lbs calves at side. <b>19 </b>Blk 4-SS yr. old cows, 3rd period.</li>\n<li><b>Anderson &amp; Sickle Farms: </b><b>35 </b>Blk-Bwf 4-7 yr. old cows, 2nd period. Cows all bred Blk bulls &amp; start calving Sept. 1st for 60 days.</li>\n<li><b>Shippy Farms: </b><b>33 </b>Blk-Bwf 5-SS yr. old cows, 2nd period. Cows bred Horned Hereford Bulls &amp; Start calving Sept. 1st</li>\n<li><b>Nuelle Farms: </b><b>35 </b>Blk-Bwf 3-7 yr old cows w/ 200lbs calves at side. <b>15</b> Red Angus 3-5 yr. old cows w/ 250lbs calves at side. <b>30</b> Blk-Red 1250lbs 3-6 yr. old cows, 3rd period. Bred Red or Blk Angus bulls</li>\n<li><b>Evans Farm: </b><b>20 </b>Red Angus 3-6 yr. old cows 2nd &amp; 3rd period. Bred Blk Balancer bulls.</li>\n<li><b>T &amp; T Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Angus or Blk Sim-Angus bulls.</li>\n<li><b>Miles Farms: </b><b>40 </b>Â Blk-Bwf 3-4 yr. old fall calving cows, 2nd period. <b>40 </b>Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. All cows bred Blk Angus bulls. Nice set of fall calvers</li>\n<li><b>Turner Farms: </b><b>19 </b>Â Blk Balancer 3 yr. old cows, 2nd &amp; 3rd period. Carrying Judd Ranch tags &amp; bought as open hfrs. <b>10 </b>Blk Gelv. 6-SS yr. old cows, 2nd &amp; 3rd period. <b>12</b> Blk Gelv. 6-SS yr. old cows w/ spring calves at side &amp; E.T. to match. All cows off 1 farmÂ  &amp; selling due to loss of rented ground. Cows bred Seedstock Plus Balancer bulls or Bernt Horned Hereford bulls. All cows extremely gentle &amp; had all shots.</li>\n<li><b>Tim &amp; Janet Evert Farms: </b><b>27 </b>Â Blk Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side (3N1â€™s) <b>9</b> Red Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side. (3N1â€™s) Cows bred back to Seedstock Plus Balancer bulls. Bull turned in Nov. 12th &amp; out Jan. 28th. Cows start calving Aug. 23rd &amp; finish by Dec. 15th. All calves cut &amp; had 1 rd shots. Cows &amp; calves were wormed w/ Cydectin wormer on Mar. 28th. Very nice set of young 3N1 pairs.</li>\n<li><b>Ellis Cattle Co.: </b><b>5</b> Reg. Red Angus heifers w/ fall calves at side 3N1â€™s. Running back w/ Reg. Red Angus bull. 2 Reg. Red Angus SS fall calving cows, 1 hd AI to Red Brylor CrimsonÂ  Jewels</li>\n<li><b>Detherage Farms: </b><b>12</b>Â  Red Angus 3-5 yr. old cows w/ fall calves at side. Bred back in 1st period.</li>\n<li><b>Wenger Farms: </b><b>8</b>Â  Red Angus 2 yr. old heifer pairs. <b>6 </b>Red Angus 3-4 yr. old cows,3rd period. <b>9 </b>Red Angus 7-SS yr. old cows, 3rd period <b>20 </b>Red Angus 6-SS cows w/ 5-10 calves at side balance 2nd period. <b>15</b> Red Angus 3-4 yr. old cows, 2nd period. Start calving Sept. 1st.</li>\n<li><b>Corbett Farms: </b><b>5</b>Â  Blk 3-SSÂ  yr. cows w/ 200lbs calves at side. <b>40 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. Bred Blk Bulls.</li>\n<li><b>Jennings Farms: </b><b>80</b>Â  Blk Angus 5-SSÂ  yr. cows, 2nd period. <strong>20</strong> Red Angus 5-SS yr. old cows, 2nd period. All bred Blk Bulls. w/ 200lbs calves at side. <b>40 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. Bred Blk Bulls.</li>\n<li><b>Dale Roof Farms: </b><b>5</b>Â  Red Angus 5-7Â  yr. cows w/ 450lbs calves at side, 3n1â€™s.<strong> 5</strong> Red Angus 2 yr. old heifers bred LBWT Red Angus bulls. All out of Reg. genetics, start calving Sept. 1st, home-raised &amp; gentle.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-04-11 18:37:15','2023-04-11 18:37:15','',2209,'https://kingsvillelivestock.com/?p=5299',0,'revision','',0),(5300,2,'2023-04-12 02:09:59','2023-04-12 02:09:59','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 15th @ 11 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/tabloid-April-cowsale-2023-1.pdf\" rel=\"attachment wp-att-5291\">April Cow &amp; Bull Sale </a><br /></strong>Special Cow &amp; Bull Sale <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls </a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-04-12 02:09:59','2023-04-12 02:09:59','',639,'https://kingsvillelivestock.com/?p=5300',0,'revision','',0),(5301,2,'2023-04-12 02:10:53','2023-04-12 02:10:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 15th @ 11 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/tabloid-April-cowsale-2023-1.pdf\" rel=\"attachment wp-att-5291\">April Cow &amp; Bull Sale </a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls</a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-04-12 02:10:53','2023-04-12 02:10:53','',1967,'https://kingsvillelivestock.com/?p=5301',0,'revision','',0),(5302,2,'2023-04-12 14:43:14','2023-04-12 14:43:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 11, 2023, </strong>2164 hd; Last week, 2575 hd; 2379 a year ago.Compared to last week feeder cattle of all classes sold $5-$12 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$302.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$296.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$261.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$246.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$184.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$282.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$265.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$184.00-$242.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$165.00-$177.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$148.00-$166.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $117.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$87.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$77.00 - $88.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $131.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">440lbs @$296.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">564lbs @$246.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">740lbs@$225.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">683lbs@$212.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">689lbs@$210.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">723lbs@$208.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 11, 2023 - Market Report','','publish','closed','open','','april-11-2023-market-report','','','2023-04-12 14:43:17','2023-04-12 14:43:17','',0,'https://kingsvillelivestock.com/?p=5302',0,'post','',0),(5304,2,'2023-04-12 14:43:14','2023-04-12 14:43:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 11, 2023, </strong>2164 hd; Last week, 2575 hd; 2379 a year ago.Compared to last week feeder cattle of all classes sold $5-$12 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$302.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$296.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$261.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$246.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$184.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$282.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$265.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$184.00-$242.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$165.00-$177.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$148.00-$166.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $117.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$87.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$77.00 - $88.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $131.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">440lbs @$296.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">564lbs @$246.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">740lbs@$225.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">683lbs@$212.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">689lbs@$210.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">723lbs@$208.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 11, 2023 - Market Report','','inherit','closed','closed','','5302-revision-v1','','','2023-04-12 14:43:14','2023-04-12 14:43:14','',5302,'https://kingsvillelivestock.com/?p=5304',0,'revision','',0),(5305,2,'2023-04-12 14:43:14','2023-04-12 14:43:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 11, 2023, </strong>2164 hd; Last week, 2575 hd; 2379 a year ago.Compared to last week feeder cattle of all classes sold $5-$12 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$302.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$296.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$261.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$246.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$184.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$282.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$265.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$184.00-$242.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$165.00-$177.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$148.00-$166.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $117.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$87.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$77.00 - $88.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $131.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">440lbs @$296.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">564lbs @$246.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">740lbs@$225.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">683lbs@$212.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">689lbs@$210.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">723lbs@$208.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 4, 2023 - Market Report','','inherit','closed','closed','','5302-revision-v1','','','2023-04-12 14:43:14','2023-04-12 14:43:14','',5302,'https://kingsvillelivestock.com/?p=5305',0,'revision','',0),(5306,2,'2023-04-12 14:43:17','2023-04-12 14:43:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 11, 2023, </strong>2164 hd; Last week, 2575 hd; 2379 a year ago.Compared to last week feeder cattle of all classes sold $5-$12 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$302.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$296.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$261.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$246.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$184.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$282.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$265.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$184.00-$242.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$165.00-$177.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$148.00-$166.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $117.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$87.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$77.00 - $88.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $131.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">440lbs @$296.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">564lbs @$246.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">740lbs@$225.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">683lbs@$212.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">689lbs@$210.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">723lbs@$208.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 11, 2023 - Market Report','','inherit','closed','closed','','5302-revision-v1','','','2023-04-12 14:43:17','2023-04-12 14:43:17','',5302,'https://kingsvillelivestock.com/?p=5306',0,'revision','',0),(5307,2,'2023-04-12 14:58:07','2023-04-12 14:58:07','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/TuesdayApril-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5294\">Tuesday,April 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #666699;\"><strong>Special Cow &amp; Bull Sale - Saturday, April 15th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b> - <b>Visit our website to view registration papers &amp; pictures! </b></p>\n<ul>\n<li><b>Mullins Farms Complete Dispersal: </b><b>1 </b>Â 3 yr. old Blk Angus bull.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. old Reg. Angus Bull.Â  WRF Basin Payweight 123</li>\n<li><b>Randall Brammer Farms: </b><b>2 </b>18 month old Blk Angus bulls. #16 is a KCF Absolute X Growth Fund bull &amp; #5 is a Gucci X Growth fund bull. Bulls are home-raised, big &amp; stout &amp; will add lbs to calf crop. Semen &amp; Trich tested</li>\n<li><b>Hettinger Land &amp; Cattle: </b><b>1 </b>Â 3 yr. old Horned Hereford Bull. Out of Oleen Bros genetics &amp; Reg. stock. Use on cows.</li>\n<li><b>Josh Goodman Farms: </b><b>2 </b>Â 3 yr. oldÂ  Reg. Angus Bulls. <b>1</b> 4 yr. old Angus Bull. Visit the website to see Reg. papers!</li>\n<li><b>Bar L Herefords: </b><b>1 </b>Â 18 month oldÂ  Reg. Horned Hereford bull. <b>2 </b>2 yr. old Reg. Horned Hereford bull. <b>1 </b>3 yr. old Reg. Horned Hereford Bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Miller Farms: </b><b>5 </b>Â 2 yr. old Reg. Red Angus bulls. Out of Mushrush genetics. All home-raised &amp; semen &amp; trich tested. Show-Me-Select Quailifed Ready to turn out.</li>\n<li><b>Beeman Farms: </b><b>2</b> 20-month-old Blk Baldy Sim-Angus bulls. <b>1</b> 20-month-old Blk Angus bull. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Seedstock Plus: </b><b>6</b> 18-month-old Blk Balancer bulls. All Info will be available on bulls. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Spring Haven Farms: </b><b>9</b> 18-month-old Blk Angus bulls. <b>1 </b>2.5 Blk Angus bull <b>2</b> 2 yr. old Blk Angus Bulls. All out of Reg. stock, no papers on hand.</li>\n<li><b>Mapels Farms: </b><b>2</b> 2.5 yr. old Purebred Blk Angus bulls w/ 79lbs BWT. Out of Reg. stock, no papers. A gentle set of bulls</li>\n<li><b>Ellis Cattle Co.: </b><b>1</b> 3 yr. Reg. Red Angus bulls. <b>2 </b>18-month-old Reg. Red Angus bulls. Semen &amp; Trich tested &amp; can be used on hfrs.</li>\n<li><b>Kagarice Farms: </b><b>1</b> 2 yr. Blk Angus bull. Semen &amp; trich tested</li>\n<li><b>Stagecoach Cattle Co.: </b><b>6</b> Purebred Red Angus bulls. These bulls are LBWT &amp; influenced w/ Pharo Cattle genetics</li>\n<li><b>Stagecoach Cattle Co.: </b><b>6</b> Purebred Red Angus bulls. These bulls are LBWT &amp; influenced w/ Pharo Cattle genetics</li>\n<li><strong>Fifer Farms: 2</strong> 2.5 yr. old Reg. Purebred Charolais bulls. Originated from Wright Charolais, been semen &amp; trich tested.</li>\n<li><b>Kelly Farms: 1</b> 18-month-old Red Beefmaster bull. Been semen &amp; trich tested. Super gentle bull.Â </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Berry Farms: </b><b>18 </b>Â Blk-Bwf 5-SS yr. old cows w/ 250-400lbs calves at side, all 3N1â€™s. Cows bred to Hereford or Blk Angus bulls.</li>\n<li><b>K. Thompson Farms: </b><b>30 </b>Blk-Bwf 3-5 yr old cows,2nd &amp; 3rd period. All cows bred to 3C Reg. Angus bulls. Cows had all shots, good health program.</li>\n<li><b>Crutchfield Farms: </b><b>9 </b>Blk 2 yr. old heifers w/ month old calves at side</li>\n<li><b> R &amp; G Cattle Co.: </b><b>16 </b>Blk-Bwf 2 yr. old heifers w/ 1-2-month-old calves at side. Breed to the bull of your choice.</li>\n<li><b>Daniels Farms Inc.: </b><b>20 </b>Blk 3-6 yr old cows w/ 250lbs calves at side. <b>60</b> Blk 3-6 yr. old cows,3rd period. <b>40</b> Blk 3-6 yr. old cows, 2nd period. All cows bred Reg. Angus bulls. Cows are good quality &amp; selling due to loss of rental ground</li>\n<li><b>Staus Farms: </b><b>20 </b>Blk Angus 6-SS yr old fall calving cows, 2nd period. Cows bred Blk Angus bulls. All home-raised &amp; very gentle set of cows.</li>\n<li><b>Mullins Farms Complete Dispersal: </b><b>13</b> Blk 4-SS yr. old cows w/ 200-300lbs calves at side. <b>19 </b>Blk 4-SS yr. old cows, 3rd period.</li>\n<li><b>Anderson &amp; Sickle Farms: </b><b>35 </b>Blk-Bwf 4-7 yr. old cows, 2nd period. Cows all bred Blk bulls &amp; start calving Sept. 1st for 60 days.</li>\n<li><b>Shippy Farms: </b><b>33 </b>Blk-Bwf 5-SS yr. old cows, 2nd period. Cows bred Horned Hereford Bulls &amp; Start calving Sept. 1st</li>\n<li><b>Nuelle Farms: </b><b>35 </b>Blk-Bwf 3-7 yr old cows w/ 200lbs calves at side. <b>15</b> Red Angus 3-5 yr. old cows w/ 250lbs calves at side. <b>30</b> Blk-Red 1250lbs 3-6 yr. old cows, 3rd period. Bred Red or Blk Angus bulls</li>\n<li><b>Evans Farm: </b><b>20 </b>Red Angus 3-6 yr. old cows 2nd &amp; 3rd period. Bred Blk Balancer bulls.</li>\n<li><b>T &amp; T Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Angus or Blk Sim-Angus bulls.</li>\n<li><b>Miles Farms: </b><b>40 </b>Â Blk-Bwf 3-4 yr. old fall calving cows, 2nd period. <b>40 </b>Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. All cows bred Blk Angus bulls. Nice set of fall calvers</li>\n<li><b>Turner Farms: </b><b>19 </b>Â Blk Balancer 3 yr. old cows, 2nd &amp; 3rd period. Carrying Judd Ranch tags &amp; bought as open hfrs. <b>10 </b>Blk Gelv. 6-SS yr. old cows, 2nd &amp; 3rd period. <b>12</b> Blk Gelv. 6-SS yr. old cows w/ spring calves at side &amp; E.T. to match. All cows off 1 farmÂ  &amp; selling due to loss of rented ground. Cows bred Seedstock Plus Balancer bulls or Bernt Horned Hereford bulls. All cows extremely gentle &amp; had all shots.</li>\n<li><b>Tim &amp; Janet Evert Farms: </b><b>27 </b>Â Blk Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side (3N1â€™s) <b>9</b> Red Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side. (3N1â€™s) Cows bred back to Seedstock Plus Balancer bulls. Bull turned in Nov. 12th &amp; out Jan. 28th. Cows start calving Aug. 23rd &amp; finish by Dec. 15th. All calves cut &amp; had 1 rd shots. Cows &amp; calves were wormed w/ Cydectin wormer on Mar. 28th. Very nice set of young 3N1 pairs.</li>\n<li><b>Ellis Cattle Co.: </b><b>5</b> Reg. Red Angus heifers w/ fall calves at side 3N1â€™s. Running back w/ Reg. Red Angus bull. 2 Reg. Red Angus SS fall calving cows, 1 hd AI to Red Brylor CrimsonÂ  Jewels</li>\n<li><b>Detherage Farms: </b><b>12</b>Â  Red Angus 3-5 yr. old cows w/ fall calves at side. Bred back in 1st period.</li>\n<li><b>Wenger Farms: </b><b>8</b>Â  Red Angus 2 yr. old heifer pairs. <b>6 </b>Red Angus 3-4 yr. old cows,3rd period. <b>9 </b>Red Angus 7-SS yr. old cows, 3rd period <b>20 </b>Red Angus 6-SS cows w/ 5-10 calves at side balance 2nd period. <b>15</b> Red Angus 3-4 yr. old cows, 2nd period. Start calving Sept. 1st.</li>\n<li><b>Corbett Farms: </b><b>5</b>Â  Blk 3-SSÂ  yr. cows w/ 200lbs calves at side. <b>40 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. Bred Blk Bulls.</li>\n<li><b>Jennings Farms: </b><b>80</b>Â  Blk Angus 5-SSÂ  yr. cows, 2nd period. <strong>20</strong> Red Angus 5-SS yr. old cows, 2nd period. All bred Blk Bulls. w/ 200lbs calves at side. <b>40 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. Bred Blk Bulls.</li>\n<li><b>Dale Roof Farms: </b><b>5</b>Â  Red Angus 5-7Â  yr. cows w/ 450lbs calves at side, 3n1â€™s.<strong> 5</strong> Red Angus 2 yr. old heifers bred LBWT Red Angus bulls. All out of Reg. genetics, start calving Sept. 1st, home-raised &amp; gentle.</li>\n<li><b>Larson Farms: </b><b>20</b>Â  Blk 2 yr. old heifers w/ spring calves at side.Â </li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-04-12 14:58:07','2023-04-12 14:58:07','',2209,'https://kingsvillelivestock.com/?p=5307',0,'revision','',0),(5308,2,'2023-04-12 14:59:14','2023-04-12 14:59:14','','tabloid April cowsale 2023','','inherit','closed','closed','','tabloid-april-cowsale-2023-3','','','2023-04-12 14:59:14','2023-04-12 14:59:14','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/04/tabloid-April-cowsale-2023-2.pdf',0,'attachment','application/pdf',0),(5309,2,'2023-04-12 14:59:32','2023-04-12 14:59:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 15th @ 11 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/tabloid-April-cowsale-2023-2.pdf\" rel=\"attachment wp-att-5308\">Special Cow &amp; Bull Sale</a><br /></strong>Special Cow &amp; Bull Sale <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls </a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-04-12 14:59:32','2023-04-12 14:59:32','',639,'https://kingsvillelivestock.com/?p=5309',0,'revision','',0),(5310,2,'2023-04-12 15:01:04','2023-04-12 15:01:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 15th @ 11 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/tabloid-April-cowsale-2023-2.pdf\" rel=\"attachment wp-att-5308\">Special Cow &amp; Bull Sale </a><br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://drive.google.com/drive/folders/1xiXsu2AELRxEjk23a4O4RbJZCyyZuOxl?usp=share_link\">Registration &amp; pictures of bulls</a></p>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-04-12 15:01:04','2023-04-12 15:01:04','',1967,'https://kingsvillelivestock.com/?p=5310',0,'revision','',0),(5311,2,'2023-04-12 15:46:59','2023-04-12 15:46:59','','Francy Auction - May 13th - Pleasant Hill','','inherit','closed','closed','','francy-auction-may-13th-pleasant-hill','','','2023-04-12 15:46:59','2023-04-12 15:46:59','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/04/Francy-Auction-May-13th-Pleasant-Hill.pdf',0,'attachment','application/pdf',0),(5312,2,'2023-04-12 15:47:27','2023-04-12 15:47:27','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.4\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/Francy-Auction-May-13th-Pleasant-Hill.pdf\" rel=\"attachment wp-att-5311\">Francy FamilyAuction - May 13th - 9:30am - Pleasant Hill</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/Cnjr4rDNc5qZQPrv7\">Francy Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-04-12 15:47:27','2023-04-12 15:47:27','',1450,'https://kingsvillelivestock.com/?p=5312',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (5313,2,'2023-04-12 16:39:11','2023-04-12 16:39:11','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/TuesdayApril-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5294\">Tuesday,April 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #666699;\"><strong>Special Cow &amp; Bull Sale - Saturday, April 15th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11 am</i></b> - <b>Visit our website to view registration papers &amp; pictures! </b></p>\n<ul>\n<li><b>Mullins Farms Complete Dispersal: </b><b>1 </b>Â 3 yr. old Blk Angus bull.</li>\n<li><b>Fanning Farms: </b><b>1 </b>2 yr. old Reg. Angus Bull.Â  WRF Basin Payweight 123</li>\n<li><b>Randall Brammer Farms: </b><b>2 </b>18 month old Blk Angus bulls. #16 is a KCF Absolute X Growth Fund bull &amp; #5 is a Gucci X Growth fund bull. Bulls are home-raised, big &amp; stout &amp; will add lbs to calf crop. Semen &amp; Trich tested</li>\n<li><b>Hettinger Land &amp; Cattle: </b><b>1 </b>Â 3 yr. old Horned Hereford Bull. Out of Oleen Bros genetics &amp; Reg. stock. Use on cows.</li>\n<li><b>Josh Goodman Farms: </b><b>2 </b>Â 3 yr. oldÂ  Reg. Angus Bulls. <b>1</b> 4 yr. old Angus Bull. Visit the website to see Reg. papers!</li>\n<li><b>Bar L Herefords: </b><b>1 </b>Â 18 month oldÂ  Reg. Horned Hereford bull. <b>2 </b>2 yr. old Reg. Horned Hereford bull. <b>1 </b>3 yr. old Reg. Horned Hereford Bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Miller Farms: </b><b>5 </b>Â 2 yr. old Reg. Red Angus bulls. Out of Mushrush genetics. All home-raised &amp; semen &amp; trich tested. Show-Me-Select Quailifed Ready to turn out.</li>\n<li><b>Beeman Farms: </b><b>2</b> 20-month-old Blk Baldy Sim-Angus bulls. <b>1</b> 20-month-old Blk Angus bull. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Seedstock Plus: </b><b>6</b> 18-month-old Blk Balancer bulls. All Info will be available on bulls. Semen &amp; trich tested &amp; ready to turn out.</li>\n<li><b>Spring Haven Farms: </b><b>9</b> 18-month-old Blk Angus bulls. <b>1 </b>2.5 Blk Angus bull <b>2</b> 2 yr. old Blk Angus Bulls. All out of Reg. stock, no papers on hand.</li>\n<li><b>Mapels Farms: </b><b>2</b> 2.5 yr. old Purebred Blk Angus bulls w/ 79lbs BWT. Out of Reg. stock, no papers. A gentle set of bulls</li>\n<li><b>Ellis Cattle Co.: </b><b>1</b> 3 yr. Reg. Red Angus bulls. <b>2 </b>18-month-old Reg. Red Angus bulls. Semen &amp; Trich tested &amp; can be used on hfrs.</li>\n<li><b>Kagarice Farms: </b><b>1</b> 2 yr. Blk Angus bull. Semen &amp; trich tested</li>\n<li><b>Stagecoach Cattle Co.: </b><b>6</b> Purebred Red Angus bulls. These bulls are LBWT &amp; influenced w/ Pharo Cattle genetics</li>\n<li><b>Stagecoach Cattle Co.: </b><b>6</b> Purebred Red Angus bulls. These bulls are LBWT &amp; influenced w/ Pharo Cattle genetics</li>\n<li><strong>Fifer Farms: 2</strong> 2.5 yr. old Reg. Purebred Charolais bulls. Originated from Wright Charolais, been semen &amp; trich tested.</li>\n<li><b>Kelly Farms: 1</b> 18-month-old Red Beefmaster bull. Been semen &amp; trich tested. Super gentle bull.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Berry Farms: </b><b>18 </b>Â Blk-Bwf 5-SS yr. old cows w/ 250-400lbs calves at side, all 3N1â€™s. Cows bred to Hereford or Blk Angus bulls.</li>\n<li><b>K. Thompson Farms: </b><b>30 </b>Blk-Bwf 3-5 yr old cows,2nd &amp; 3rd period. All cows bred to 3C Reg. Angus bulls. Cows had all shots, good health program.</li>\n<li><b>Crutchfield Farms: </b><b>9 </b>Blk 2 yr. old heifers w/ month old calves at side</li>\n<li><b> R &amp; G Cattle Co.: </b><b>16 </b>Blk-Bwf 2 yr. old heifers w/ 1-2-month-old calves at side. Breed to the bull of your choice.</li>\n<li><b>Daniels Farms Inc.: </b><b>20 </b>Blk 3-6 yr old cows w/ 250lbs calves at side. <b>60</b> Blk 3-6 yr. old cows,3rd period. <b>40</b> Blk 3-6 yr. old cows, 2nd period. All cows bred Reg. Angus bulls. Cows are good quality &amp; selling due to loss of rental ground</li>\n<li><b>Staus Farms: </b><b>20 </b>Blk Angus 6-SS yr old fall calving cows, 2nd period. Cows bred Blk Angus bulls. All home-raised &amp; very gentle set of cows.</li>\n<li><b>Mullins Farms Complete Dispersal: </b><b>13</b> Blk 4-SS yr. old cows w/ 200-300lbs calves at side. <b>19 </b>Blk 4-SS yr. old cows, 3rd period.</li>\n<li><b>Anderson &amp; Sickle Farms: </b><b>35 </b>Blk-Bwf 4-7 yr. old cows, 2nd period. Cows all bred Blk bulls &amp; start calving Sept. 1st for 60 days.</li>\n<li><b>Shippy Farms: </b><b>33 </b>Blk-Bwf 5-SS yr. old cows, 2nd period. Cows bred Horned Hereford Bulls &amp; Start calving Sept. 1st</li>\n<li><b>Nuelle Farms: </b><b>35 </b>Blk-Bwf 3-7 yr old cows w/ 200lbs calves at side. <b>15</b> Red Angus 3-5 yr. old cows w/ 250lbs calves at side. <b>30</b> Blk-Red 1250lbs 3-6 yr. old cows, 3rd period. Bred Red or Blk Angus bulls</li>\n<li><b>Evans Farm: </b><b>20 </b>Red Angus 3-6 yr. old cows 2nd &amp; 3rd period. Bred Blk Balancer bulls.</li>\n<li><b>T &amp; T Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. Bred Blk Angus or Blk Sim-Angus bulls.</li>\n<li><b>Miles Farms: </b><b>40 </b>Â Blk-Bwf 3-4 yr. old fall calving cows, 2nd period. <b>40 </b>Blk-Bwf 5-7 yr. old fall calving cows, 2nd period. All cows bred Blk Angus bulls. Nice set of fall calvers</li>\n<li><b>Turner Farms: </b><b>19 </b>Â Blk Balancer 3 yr. old cows, 2nd &amp; 3rd period. Carrying Judd Ranch tags &amp; bought as open hfrs. <b>10 </b>Blk Gelv. 6-SS yr. old cows, 2nd &amp; 3rd period. <b>12</b> Blk Gelv. 6-SS yr. old cows w/ spring calves at side &amp; E.T. to match. All cows off 1 farmÂ  &amp; selling due to loss of rented ground. Cows bred Seedstock Plus Balancer bulls or Bernt Horned Hereford bulls. All cows extremely gentle &amp; had all shots.</li>\n<li><b>Tim &amp; Janet Evert Farms: </b><b>27 </b>Â Blk Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side (3N1â€™s) <b>9</b> Red Balancer 3 yr. old heifers w/ 400-500lbs fall calves at side. (3N1â€™s) Cows bred back to Seedstock Plus Balancer bulls. Bull turned in Nov. 12th &amp; out Jan. 28th. Cows start calving Aug. 23rd &amp; finish by Dec. 15th. All calves cut &amp; had 1 rd shots. Cows &amp; calves were wormed w/ Cydectin wormer on Mar. 28th. Very nice set of young 3N1 pairs.</li>\n<li><b>Ellis Cattle Co.: </b><b>5</b> Reg. Red Angus heifers w/ fall calves at side 3N1â€™s. Running back w/ Reg. Red Angus bull. 2 Reg. Red Angus SS fall calving cows, 1 hd AI to Red Brylor CrimsonÂ  Jewels</li>\n<li><b>Detherage Farms: </b><b>12</b>Â  Red Angus 3-5 yr. old cows w/ fall calves at side. Bred back in 1st period.</li>\n<li><b>Wenger Farms: </b><b>8</b>Â  Red Angus 2 yr. old heifer pairs. <b>6 </b>Red Angus 3-4 yr. old cows,3rd period. <b>9 </b>Red Angus 7-SS yr. old cows, 3rd period <b>20 </b>Red Angus 6-SS cows w/ 5-10 calves at side balance 2nd period. <b>15</b> Red Angus 3-4 yr. old cows, 2nd period. Start calving Sept. 1st.</li>\n<li><b>Corbett Farms: </b><b>5</b>Â  Blk 3-SSÂ  yr. cows w/ 200lbs calves at side. <b>40 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. Bred Blk Bulls.</li>\n<li><b>Jennings Farms: </b><b>80</b>Â  Blk Angus 5-SSÂ  yr. cows, 2nd period. <strong>20</strong> Red Angus 5-SS yr. old cows, 2nd period. All bred Blk Bulls. w/ 200lbs calves at side. <b>40 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. Bred Blk Bulls.</li>\n<li><b>Dale Roof Farms: </b><b>5</b>Â  Red Angus 5-7Â  yr. cows w/ 450lbs calves at side, 3n1â€™s.<strong> 5</strong> Red Angus 2 yr. old heifers bred LBWT Red Angus bulls. All out of Reg. genetics, start calving Sept. 1st, home-raised &amp; gentle.</li>\n<li><b>Larson Farms: </b><b>20</b>Â  Blk 2 yr. old heifers w/ spring calves at side.</li>\n<li><b>Vandiver Farms: 11</b>Â  Blk-Bwf 2 yr. old heifers w/ spring calves at side.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-04-12 16:39:11','2023-04-12 16:39:11','',2209,'https://kingsvillelivestock.com/?p=5313',0,'revision','',0),(5315,2,'2023-04-17 15:13:26','2023-04-17 15:13:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-04-17 15:13:26','2023-04-17 15:13:26','',639,'https://kingsvillelivestock.com/?p=5315',0,'revision','',0),(5316,2,'2023-04-17 15:14:05','2023-04-17 15:14:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-04-17 15:14:05','2023-04-17 15:14:05','',1967,'https://kingsvillelivestock.com/?p=5316',0,'revision','',0),(5317,2,'2023-04-17 15:14:32','2023-04-17 15:14:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/TuesdayApril-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5294\">Tuesday,April 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-04-17 15:14:32','2023-04-17 15:14:32','',2209,'https://kingsvillelivestock.com/?p=5317',0,'revision','',0),(5318,2,'2023-04-17 17:40:13','2023-04-17 17:40:13','','Tuesday,April 18th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayapril-18th-feeder-cattle-consignments','','','2023-04-17 17:40:13','2023-04-17 17:40:13','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/04/TuesdayApril-18th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5319,2,'2023-04-17 17:40:37','2023-04-17 17:40:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/TuesdayApril-18th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5318\">Tuesday,April 18th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-04-17 17:40:37','2023-04-17 17:40:37','',2209,'https://kingsvillelivestock.com/?p=5319',0,'revision','',0),(5320,2,'2023-04-19 14:51:15','2023-04-19 14:51:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-04-19 14:51:15','2023-04-19 14:51:15','',639,'https://kingsvillelivestock.com/?p=5320',0,'revision','',0),(5321,2,'2023-04-19 14:52:46','2023-04-19 14:52:46','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-04-19 14:52:46','2023-04-19 14:52:46','',1967,'https://kingsvillelivestock.com/?p=5321',0,'revision','',0),(5322,2,'2023-04-19 17:59:26','2023-04-19 17:59:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 18, 2023, </strong>2713 hd; Last week, 2164 hd; 2365 a year ago. Feeder cattle sold steady-$5 higher w/ good buyer attendance &amp; a very active market. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$275.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$265.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$267.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$224.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$201.00-$224.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$178.00-$209.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$207.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$237.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$212.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$195.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$175.00-$195.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$167.00-$173.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$64.00 - $85.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$118.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">835lbs @$208.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">848lbs @$209.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">550lbs@$217.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">652lbs@$224.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\"><strong>Load Lots on new crop calves w/ 30 days of weaningÂ Â </strong></td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">465bs@$239.75</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">483lbs@$239.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">510lbs@$260.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">548lbs@$250.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">616lbs@$240.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 18, 2023 - Market Report','','publish','closed','open','','april-18-2023-market-report','','','2023-04-19 17:59:28','2023-04-19 17:59:28','',0,'https://kingsvillelivestock.com/?p=5322',0,'post','',0),(5324,2,'2023-04-19 17:59:26','2023-04-19 17:59:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 18, 2023, </strong>2713 hd; Last week, 2164 hd; 2365 a year ago. Feeder cattle sold steady-$5 higher w/ good buyer attendance &amp; a very active market. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$275.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$265.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$267.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$224.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$201.00-$224.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$178.00-$209.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$207.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$237.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$212.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$195.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$175.00-$195.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$167.00-$173.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$64.00 - $85.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$118.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">835lbs @$208.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">848lbs @$209.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">550lbs@$217.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">652lbs@$224.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\"><strong>Load Lots on new crop calves w/ 30 days of weaningÂ Â </strong></td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">465bs@$239.75</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">483lbs@$239.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">510lbs@$260.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">548lbs@$250.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">616lbs@$240.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 18, 2023 - Market Report','','inherit','closed','closed','','5322-revision-v1','','','2023-04-19 17:59:26','2023-04-19 17:59:26','',5322,'https://kingsvillelivestock.com/?p=5324',0,'revision','',0),(5325,2,'2023-04-19 17:59:26','2023-04-19 17:59:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 18, 2023, </strong>2713 hd; Last week, 2164 hd; 2365 a year ago. Feeder cattle sold steady-$5 higher w/ good buyer attendance &amp; a very active market. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$275.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$265.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$267.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$224.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$201.00-$224.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$178.00-$209.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$207.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$237.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$212.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$195.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$175.00-$195.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$167.00-$173.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$64.00 - $85.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$118.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">835lbs @$208.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">848lbs @$209.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">550lbs@$217.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">652lbs@$224.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\"><strong>Load Lots on new crop calves w/ 30 days of weaningÂ Â </strong></td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">465bs@$239.75</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">483lbs@$239.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">510lbs@$260.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">548lbs@$250.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">616lbs@$240.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 11, 2023 - Market Report','','inherit','closed','closed','','5322-revision-v1','','','2023-04-19 17:59:26','2023-04-19 17:59:26','',5322,'https://kingsvillelivestock.com/?p=5325',0,'revision','',0),(5326,2,'2023-04-19 17:59:28','2023-04-19 17:59:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 18, 2023, </strong>2713 hd; Last week, 2164 hd; 2365 a year ago. Feeder cattle sold steady-$5 higher w/ good buyer attendance &amp; a very active market. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$275.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$265.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$267.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$224.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$201.00-$224.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$178.00-$209.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$207.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$237.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$212.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$195.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$175.00-$195.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$167.00-$173.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$64.00 - $85.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$118.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">835lbs @$208.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">848lbs @$209.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">550lbs@$217.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">652lbs@$224.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\"><strong>Load Lots on new crop calves w/ 30 days of weaningÂ Â </strong></td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">465bs@$239.75</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">483lbs@$239.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">510lbs@$260.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">548lbs@$250.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">616lbs@$240.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 18, 2023 - Market Report','','inherit','closed','closed','','5322-revision-v1','','','2023-04-19 17:59:28','2023-04-19 17:59:28','',5322,'https://kingsvillelivestock.com/?p=5326',0,'revision','',0),(5327,2,'2023-04-24 17:35:21','2023-04-24 17:35:21','','2023 fall calving catalog','','inherit','closed','closed','','2023-fall-calving-catalog','','','2023-04-24 17:35:21','2023-04-24 17:35:21','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf',0,'attachment','application/pdf',0),(5328,2,'2023-04-24 17:35:33','2023-04-24 17:35:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 fall calving catalog</a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-04-24 17:35:33','2023-04-24 17:35:33','',639,'https://kingsvillelivestock.com/?p=5328',0,'revision','',0),(5329,2,'2023-04-24 17:36:29','2023-04-24 17:36:29','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>APRIL 2023 AUCTION DATES:</strong></h1>\n<p><strong>April 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 Show-Me-Select fall calving catalog</a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-04-24 17:36:29','2023-04-24 17:36:29','',1967,'https://kingsvillelivestock.com/?p=5329',0,'revision','',0),(5330,2,'2023-04-24 17:43:13','2023-04-24 17:43:13','','Tuesday,April 25th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayapril-25th-feeder-cattle-consignments','','','2023-04-24 17:43:13','2023-04-24 17:43:13','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/04/TuesdayApril-25th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5331,2,'2023-04-24 17:43:21','2023-04-24 17:43:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/TuesdayApril-25th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5330\">Tuesday,April 25th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-04-24 17:43:21','2023-04-24 17:43:21','',2209,'https://kingsvillelivestock.com/?p=5331',0,'revision','',0),(5333,2,'2023-04-26 04:43:59','2023-04-26 04:43:59','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 fall calving catalog</a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-04-26 04:43:59','2023-04-26 04:43:59','',639,'https://kingsvillelivestock.com/?p=5333',0,'revision','',0),(5334,2,'2023-04-26 04:44:24','2023-04-26 04:44:24','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 2nd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 Show-Me-Select fall calving catalog</a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-04-26 04:44:24','2023-04-26 04:44:24','',1967,'https://kingsvillelivestock.com/?p=5334',0,'revision','',0),(5335,2,'2023-04-26 17:02:45','2023-04-26 17:02:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 25, 2023, </strong>3336 hd; Last week, 2713 hd; 2894 a year ago.All classes of feeder cattle weighing 650lbs &amp; down sold $5-$10 higher. Yearlings sold fully steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$329.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$308.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$273.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$290.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$262.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$247.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$218.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$205.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$165.00-$188.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$146.00-$157.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$97.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$86.00 - $96.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $85.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $137.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">813lbs @$210.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">919lbs @187.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">747lbs@$205.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">754lbs@$204.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\"><strong>Load Lots on new crop calves w/ 30 days of weaningÂ Â </strong></td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">450bs@$308.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Steers</td>\n<td style=\"width: 146.531px; height: 26px;\">514lbs@$273.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">560lbs@$252.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 25, 2023 - Market Report','','publish','closed','open','','april-25-2023-market-report','','','2023-04-26 17:02:48','2023-04-26 17:02:48','',0,'https://kingsvillelivestock.com/?p=5335',0,'post','',0),(5337,2,'2023-04-26 17:02:45','2023-04-26 17:02:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 25, 2023, </strong>3336 hd; Last week, 2713 hd; 2894 a year ago.All classes of feeder cattle weighing 650lbs &amp; down sold $5-$10 higher. Yearlings sold fully steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$329.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$308.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$273.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$290.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$262.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$247.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$218.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$205.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$165.00-$188.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$146.00-$157.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$97.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$86.00 - $96.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $85.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $137.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">813lbs @$210.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">919lbs @187.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">747lbs@$205.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">754lbs@$204.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\"><strong>Load Lots on new crop calves w/ 30 days of weaningÂ Â </strong></td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">450bs@$308.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Steers</td>\n<td style=\"width: 146.531px; height: 26px;\">514lbs@$273.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">560lbs@$252.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 25, 2023 - Market Report','','inherit','closed','closed','','5335-revision-v1','','','2023-04-26 17:02:45','2023-04-26 17:02:45','',5335,'https://kingsvillelivestock.com/?p=5337',0,'revision','',0),(5338,2,'2023-04-26 17:02:45','2023-04-26 17:02:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 25, 2023, </strong>3336 hd; Last week, 2713 hd; 2894 a year ago.All classes of feeder cattle weighing 650lbs &amp; down sold $5-$10 higher. Yearlings sold fully steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$329.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$308.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$273.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$290.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$262.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$247.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$218.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$205.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$165.00-$188.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$146.00-$157.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$97.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$86.00 - $96.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $85.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $137.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">813lbs @$210.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">919lbs @187.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">747lbs@$205.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">754lbs@$204.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\"><strong>Load Lots on new crop calves w/ 30 days of weaningÂ Â </strong></td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">450bs@$308.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Steers</td>\n<td style=\"width: 146.531px; height: 26px;\">514lbs@$273.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">560lbs@$252.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 18, 2023 - Market Report','','inherit','closed','closed','','5335-revision-v1','','','2023-04-26 17:02:45','2023-04-26 17:02:45','',5335,'https://kingsvillelivestock.com/?p=5338',0,'revision','',0),(5339,2,'2023-04-26 17:02:48','2023-04-26 17:02:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>April 25, 2023, </strong>3336 hd; Last week, 2713 hd; 2894 a year ago.All classes of feeder cattle weighing 650lbs &amp; down sold $5-$10 higher. Yearlings sold fully steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$329.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$308.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$273.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$160.00-$187.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$290.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$262.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$247.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$218.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$205.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$165.00-$188.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$146.00-$157.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$97.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$86.00 - $96.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $85.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $137.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.4\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">813lbs @$210.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">919lbs @187.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">747lbs@$205.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">754lbs@$204.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\"><strong>Load Lots on new crop calves w/ 30 days of weaningÂ Â </strong></td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">450bs@$308.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Steers</td>\n<td style=\"width: 146.531px; height: 26px;\">514lbs@$273.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">560lbs@$252.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 25, 2023 - Market Report','','inherit','closed','closed','','5335-revision-v1','','','2023-04-26 17:02:48','2023-04-26 17:02:48','',5335,'https://kingsvillelivestock.com/?p=5339',0,'revision','',0),(5340,2,'2023-05-01 17:57:28','2023-05-01 17:57:28','','Tuesday,May 2nd Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymay-2nd-feeder-cattle-consignments','','','2023-05-01 17:57:28','2023-05-01 17:57:28','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-2nd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5341,2,'2023-05-01 17:57:38','2023-05-01 17:57:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-2nd-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5340\">Tuesday,May 2nd Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-05-01 17:57:38','2023-05-01 17:57:38','',2209,'https://kingsvillelivestock.com/?p=5341',0,'revision','',0),(5342,2,'2023-05-01 19:30:18','2023-05-01 19:30:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-2nd-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5340\">Tuesday,May 2nd Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.21.0\" _module_preset=\"default\" column_structure=\"1_4,3_4\"][et_pb_column _builder_version=\"4.21.0\" _module_preset=\"default\" type=\"1_4\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers-Saturday, May 20th @11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.21.0\" _module_preset=\"default\" type=\"3_4\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell following Show-Me-Select bred heifers </i></b><b>Â </b></p>\n<ul>\n<li><b>Jerry Gordan Farms: </b><b>2 </b>Â 2 yr. old Reg. Sim. Bulls, all out of years of breeding.Â </li>\n<li><b>Roberts Farms: </b><b>3 </b>18 month old Reg. Blk Angus Bulls. <b>3</b> 18 month old Comm. Blk Angus bulls</li>\n<li><b>Vault One Complete Dispersal: </b><b>1 </b>3yr. old Blk Sim bull originated off Spalding Ranch. 1 2 yr. old Blk Angus bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>14 </b>Â Blk-Bwf 2 yr. old heifers w/ month old calves at side.</li>\n<li><b>Mead Farms : </b><b>30 </b>Blk-Bwf 5-7 yr old cows w/ spring calves at side.</li>\n<li><b>Berry Farms: </b><b>10 </b>Blk 3-6 yr. old cows w/ spring calves at side. <b>7 </b>Blk 3-6 yr. old cows, 3rd period.</li>\n<li><b>Dirk Farms : </b><b>10 </b>Red-Rwf 2 yr. old 1000lbs bred heifers. AIâ€™d on Dec. 4th &amp; start calving Sept. 1st. Bred Red Angus. <b>14</b> Rwf 6-SS yr. old cows, 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Vault One Complete Dispersal: </b><b>4 </b>Blk 5-7 yr old cows w/ 300lbs calves at side ( 3N1â€™s). <b>60</b> Blk 4-7 yr. old cows,2nd period. Start calving Sept. 1st. Weaned off an outstanding set of calves.</li>\n<li><b>Lynde Bros.: </b><b>100 </b>Blk-Bwf 5-7 yr. old cows, 2nd period. Bred Blk Angus bulls &amp; start calving Sept. 15th.Â </li>\n<li><b>Kiely Farms: </b><b>2</b> Blk Sim Angus 2 yr. old heifers <b>1</b> Purebred 3 yr. old Blk Angus heifer. <b>6 </b>Blk Sim-Angus 4-5 yr. old cows, 2nd or 3rd period. Been through the Show-Me-Select program. All bred to Polled Hereford bull &amp; 2nd or 3rd period.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-05-01 19:30:18','2023-05-01 19:30:18','',2209,'https://kingsvillelivestock.com/?p=5342',0,'revision','',0),(5343,2,'2023-05-03 15:52:42','2023-05-03 15:52:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 2, 2023, </strong>4396 hd; Last week, 3336 hd; 2733 a year ago. Feeder cattle sold steady w/ several drafts of reputation cattle on hand.Â  Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$320.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$303.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$271.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$182.10.00-$190.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$251.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$243.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$183.00-$215.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$177.00-$207.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$184.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$160.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$94.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$83.00 - $93.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $82.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">774lbs @$212.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">853lbs @$200.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">871lbs@$199.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">893lbs@$194.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 146.531px; height: 23px;\">965lbs@$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">987lbs@$182.10</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Steers</td>\n<td style=\"width: 146.531px; height: 26px;\">1023lbs@$181.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">703lbs@$207.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">722lbs@$205.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">780lbs@$183.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 2, 2023 - Market Report','','publish','closed','open','','may-2-2023-market-report','','','2023-05-03 15:52:45','2023-05-03 15:52:45','',0,'https://kingsvillelivestock.com/?p=5343',0,'post','',0),(5345,2,'2023-05-03 15:52:42','2023-05-03 15:52:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 2, 2023, </strong>4396 hd; Last week, 3336 hd; 2733 a year ago. Feeder cattle sold steady w/ several drafts of reputation cattle on hand.Â  Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$320.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$303.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$271.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$182.10.00-$190.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$251.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$243.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$183.00-$215.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$177.00-$207.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$184.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$160.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$94.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$83.00 - $93.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $82.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">774lbs @$212.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">853lbs @$200.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">871lbs@$199.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">893lbs@$194.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 146.531px; height: 23px;\">965lbs@$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">987lbs@$182.10</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Steers</td>\n<td style=\"width: 146.531px; height: 26px;\">1023lbs@$181.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">703lbs@$207.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">722lbs@$205.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">780lbs@$183.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 2, 2023 - Market Report','','inherit','closed','closed','','5343-revision-v1','','','2023-05-03 15:52:42','2023-05-03 15:52:42','',5343,'https://kingsvillelivestock.com/?p=5345',0,'revision','',0),(5346,2,'2023-05-03 15:52:42','2023-05-03 15:52:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 2, 2023, </strong>4396 hd; Last week, 3336 hd; 2733 a year ago. Feeder cattle sold steady w/ several drafts of reputation cattle on hand.Â  Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$320.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$303.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$271.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$182.10.00-$190.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$251.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$243.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$183.00-$215.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$177.00-$207.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$184.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$160.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$94.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$83.00 - $93.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $82.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">774lbs @$212.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">853lbs @$200.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">871lbs@$199.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">893lbs@$194.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 146.531px; height: 23px;\">965lbs@$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">987lbs@$182.10</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Steers</td>\n<td style=\"width: 146.531px; height: 26px;\">1023lbs@$181.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">703lbs@$207.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">722lbs@$205.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">780lbs@$183.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','April 25, 2023 - Market Report','','inherit','closed','closed','','5343-revision-v1','','','2023-05-03 15:52:42','2023-05-03 15:52:42','',5343,'https://kingsvillelivestock.com/?p=5346',0,'revision','',0),(5347,2,'2023-05-03 15:52:45','2023-05-03 15:52:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 2, 2023, </strong>4396 hd; Last week, 3336 hd; 2733 a year ago. Feeder cattle sold steady w/ several drafts of reputation cattle on hand.Â  Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$320.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$303.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$271.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$200.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$182.10.00-$190.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$251.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$243.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$183.00-$215.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$177.00-$207.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$184.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$160.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$94.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$83.00 - $93.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $82.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">774lbs @$212.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">853lbs @$200.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">871lbs@$199.60</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">893lbs@$194.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">SteersÂ </td>\n<td style=\"width: 146.531px; height: 23px;\">965lbs@$190.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">987lbs@$182.10</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Steers</td>\n<td style=\"width: 146.531px; height: 26px;\">1023lbs@$181.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">703lbs@$207.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">722lbs@$205.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">780lbs@$183.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 2, 2023 - Market Report','','inherit','closed','closed','','5343-revision-v1','','','2023-05-03 15:52:45','2023-05-03 15:52:45','',5343,'https://kingsvillelivestock.com/?p=5347',0,'revision','',0),(5348,2,'2023-05-03 15:53:25','2023-05-03 15:53:25','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 fall calving catalog</a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-05-03 15:53:25','2023-05-03 15:53:25','',639,'https://kingsvillelivestock.com/?p=5348',0,'revision','',0),(5349,2,'2023-05-03 15:53:57','2023-05-03 15:53:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 9th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 Show-Me-Select fall calving catalog</a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-05-03 15:53:57','2023-05-03 15:53:57','',1967,'https://kingsvillelivestock.com/?p=5349',0,'revision','',0),(5350,2,'2023-05-03 18:20:04','2023-05-03 18:20:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-2nd-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5340\">Tuesday,May 2nd Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers-Saturday, May 20th @11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell following Show-Me-Select bred heifers </i></b><b>Â </b></p>\n<ul>\n<li><b>Jerry Gordan Farms: </b><b>2 </b>Â 2 yr. old Reg. Sim. Bulls, all out of years of breeding.</li>\n<li><b>Roberts Farms: </b><b>3 </b>18 month old Reg. Blk Angus Bulls. <b>3</b> 18 month old Comm. Blk Angus bulls</li>\n<li><b>Vault One Complete Dispersal: </b><b>1 </b>3yr. old Blk Sim bull originated off Spalding Ranch.<strong> 1</strong> 2 yr. old Blk Angus bull</li>\n<li><b>Bar L Herefords: </b><b>3 </b>Â 14 month oldÂ  Reg. Horned Hereford bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>14 </b>Â Blk-Bwf 2 yr. old heifers w/ month old calves at side.</li>\n<li><b>Mead Farms : </b><b>30 </b>Blk-Bwf 5-7 yr old cows w/ spring calves at side.</li>\n<li><b>Berry Farms: </b><b>10 </b>Blk 3-6 yr. old cows w/ spring calves at side. <b>7 </b>Blk 3-6 yr. old cows, 3rd period.</li>\n<li><b>Dirk Farms : </b><b>10 </b>Red-Rwf 2 yr. old 1000lbs bred heifers. AIâ€™d on Dec. 4th &amp; start calving Sept. 1st. Bred Red Angus. <b>14</b> Rwf 6-SS yr. old cows, 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Vault One Complete Dispersal: </b><b>4 </b>Blk 5-7 yr old cows w/ 300lbs calves at side ( 3N1â€™s). <b>60</b> Blk 4-7 yr. old cows,2nd period. Start calving Sept. 1st. Weaned off an outstanding set of calves.</li>\n<li><b>Lynde Bros.: </b><b>100 </b>Blk-Bwf 5-7 yr. old cows, 2nd period. Bred Blk Angus bulls &amp; start calving Sept. 15th.</li>\n<li><b>Kiely Farms: </b><b>2</b> Blk Sim Angus 2 yr. old heifers <b>1</b> Purebred 3 yr. old Blk Angus heifer. <b>6 </b>Blk Sim-Angus 4-5 yr. old cows, 2nd or 3rd period. Been through the Show-Me-Select program. All bred to Polled Hereford bull &amp; 2nd or 3rd period.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-05-03 18:20:04','2023-05-03 18:20:04','',2209,'https://kingsvillelivestock.com/?p=5350',0,'revision','',0),(5352,2,'2023-05-08 16:28:48','2023-05-08 16:28:48','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-2nd-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5340\">Tuesday,May 2nd Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers-Saturday, May 20th @11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell following Show-Me-Select bred heifers </i></b><b>Â </b></p>\n<ul>\n<li><b>Jerry Gordan Farms: </b><b>2 </b>Â 2 yr. old Reg. Sim. Bulls, all out of years of breeding.</li>\n<li><b>Roberts Farms: </b><b>3 </b>18 month old Reg. Blk Angus Bulls. <b>3</b> 18 month old Comm. Blk Angus bulls</li>\n<li><b>Vault One Complete Dispersal: </b><b>1 </b>3yr. old Blk Sim bull originated off Spalding Ranch.<strong> 1</strong> 2 yr. old Blk Angus bull</li>\n<li><b>Bar L Herefords: </b><b>3 </b>Â 14 month oldÂ  Reg. Horned Hereford bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Westfall Farms: </b><b>6 </b>Â 2.5 yr. oldÂ  Char bulls. Out of Reg. stock w/ weaning weights &amp; birth weights. Nice sollid set of bulls. Semen &amp; trich tested. .</li>\n<li><b>Dobson Farms: </b><b>1</b> 2.5 yr. old Sim-Angus bull. <b>2 </b>2 yr. old Blk-Sim Angus bulls. tested</li>\n<li><b>Hart Farms: </b><b>1</b> 2 yr. old Blk Angus bull. Out of Reg. stock, use on cows or heifers. Nice, good bull.Â </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>14 </b>Â Blk-Bwf 2 yr. old heifers w/ month old calves at side.</li>\n<li><b>Mead Farms : </b><b>30 </b>Blk-Bwf 5-7 yr old cows w/ spring calves at side.</li>\n<li><b>Berry Farms: </b><b>10 </b>Blk 3-6 yr. old cows w/ spring calves at side. <b>7 </b>Blk 3-6 yr. old cows, 3rd period.</li>\n<li><b>Dirk Farms : </b><b>10 </b>Red-Rwf 2 yr. old 1000lbs bred heifers. AIâ€™d on Dec. 4th &amp; start calving Sept. 1st. Bred Red Angus. <b>14</b> Rwf 6-SS yr. old cows, 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Vault One Complete Dispersal: </b><b>4 </b>Blk 5-7 yr old cows w/ 300lbs calves at side ( 3N1â€™s). <b>60</b> Blk 4-7 yr. old cows,2nd period. Start calving Sept. 1st. Weaned off an outstanding set of calves.</li>\n<li><b>Lynde Bros.: </b><b>100 </b>Blk-Bwf 5-7 yr. old cows, 2nd period. Bred Blk Angus bulls &amp; start calving Sept. 15th.</li>\n<li><b>Kiely Farms: </b><b>2</b> Blk Sim Angus 2 yr. old heifers <b>1</b> Purebred 3 yr. old Blk Angus heifer. <b>6 </b>Blk Sim-Angus 4-5 yr. old cows, 2nd or 3rd period. Been through the Show-Me-Select program. All bred to Polled Hereford bull &amp; 2nd or 3rd period.</li>\n<li><b>Whitesell Farms: </b>Â <b>25 </b>Blk-Bwf 5-SS yr. old fall calving cows, 2nd period. Bred Seedstock Blk Balancer bulls &amp; start calving Sept. 1st.</li>\n<li><b>Dobson Farms: </b><b>10 </b>Blk-Bwf 3-6 yr. old fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Conrow Farms: </b><b>4 </b>Bwf 2 yr old heifers w/ 200lbs calves at side. <b>10</b> Blk 2 yr. old heifers w/ 200lbs calves at side. Heifers sell open, gentle &amp; nice quality.</li>\n<li><b>D. Wetzel Farm: </b><b>20 </b>Blk 4-7 yr. old cows w/ 11 calves at side, balance 3rd period. 20 Blk 4-7 yr. old cows w/ 10 fall calves at side, balance 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Chad Gard Farms: </b><b>20 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. Start calving Aug. 24th &amp; bred Blk &amp; Bwf bulls.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-05-08 16:28:48','2023-05-08 16:28:48','',2209,'https://kingsvillelivestock.com/?p=5352',0,'revision','',0),(5353,2,'2023-05-08 18:31:01','2023-05-08 18:31:01','','Tuesday,May 9th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymay-9th-feeder-cattle-consignments','','','2023-05-08 18:31:01','2023-05-08 18:31:01','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-9th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5354,2,'2023-05-08 18:31:15','2023-05-08 18:31:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-9th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5353\">Tuesday,May 9th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers-Saturday, May 20th @11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell following Show-Me-Select bred heifers </i></b><b>Â </b></p>\n<ul>\n<li><b>Jerry Gordan Farms: </b><b>2 </b>Â 2 yr. old Reg. Sim. Bulls, all out of years of breeding.</li>\n<li><b>Roberts Farms: </b><b>3 </b>18 month old Reg. Blk Angus Bulls. <b>3</b> 18 month old Comm. Blk Angus bulls</li>\n<li><b>Vault One Complete Dispersal: </b><b>1 </b>3yr. old Blk Sim bull originated off Spalding Ranch.<strong> 1</strong> 2 yr. old Blk Angus bull</li>\n<li><b>Bar L Herefords: </b><b>3 </b>Â 14 month oldÂ  Reg. Horned Hereford bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Westfall Farms: </b><b>6 </b>Â 2.5 yr. oldÂ  Char bulls. Out of Reg. stock w/ weaning weights &amp; birth weights. Nice sollid set of bulls. Semen &amp; trich tested. .</li>\n<li><b>Dobson Farms: </b><b>1</b> 2.5 yr. old Sim-Angus bull. <b>2 </b>2 yr. old Blk-Sim Angus bulls. tested</li>\n<li><b>Hart Farms: </b><b>1</b> 2 yr. old Blk Angus bull. Out of Reg. stock, use on cows or heifers. Nice, good bull.Â </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>14 </b>Â Blk-Bwf 2 yr. old heifers w/ month old calves at side.</li>\n<li><b>Mead Farms : </b><b>30 </b>Blk-Bwf 5-7 yr old cows w/ spring calves at side.</li>\n<li><b>Berry Farms: </b><b>10 </b>Blk 3-6 yr. old cows w/ spring calves at side. <b>7 </b>Blk 3-6 yr. old cows, 3rd period.</li>\n<li><b>Dirk Farms : </b><b>10 </b>Red-Rwf 2 yr. old 1000lbs bred heifers. AIâ€™d on Dec. 4th &amp; start calving Sept. 1st. Bred Red Angus. <b>14</b> Rwf 6-SS yr. old cows, 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Vault One Complete Dispersal: </b><b>4 </b>Blk 5-7 yr old cows w/ 300lbs calves at side ( 3N1â€™s). <b>60</b> Blk 4-7 yr. old cows,2nd period. Start calving Sept. 1st. Weaned off an outstanding set of calves.</li>\n<li><b>Lynde Bros.: </b><b>100 </b>Blk-Bwf 5-7 yr. old cows, 2nd period. Bred Blk Angus bulls &amp; start calving Sept. 15th.</li>\n<li><b>Kiely Farms: </b><b>2</b> Blk Sim Angus 2 yr. old heifers <b>1</b> Purebred 3 yr. old Blk Angus heifer. <b>6 </b>Blk Sim-Angus 4-5 yr. old cows, 2nd or 3rd period. Been through the Show-Me-Select program. All bred to Polled Hereford bull &amp; 2nd or 3rd period.</li>\n<li><b>Whitesell Farms: </b>Â <b>25 </b>Blk-Bwf 5-SS yr. old fall calving cows, 2nd period. Bred Seedstock Blk Balancer bulls &amp; start calving Sept. 1st.</li>\n<li><b>Dobson Farms: </b><b>10 </b>Blk-Bwf 3-6 yr. old fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Conrow Farms: </b><b>4 </b>Bwf 2 yr old heifers w/ 200lbs calves at side. <b>10</b> Blk 2 yr. old heifers w/ 200lbs calves at side. Heifers sell open, gentle &amp; nice quality.</li>\n<li><b>D. Wetzel Farm: </b><b>20 </b>Blk 4-7 yr. old cows w/ 11 calves at side, balance 3rd period. 20 Blk 4-7 yr. old cows w/ 10 fall calves at side, balance 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Chad Gard Farms: </b><b>20 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. Start calving Aug. 24th &amp; bred Blk &amp; Bwf bulls.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-05-08 18:31:15','2023-05-08 18:31:15','',2209,'https://kingsvillelivestock.com/?p=5354',0,'revision','',0),(5355,2,'2023-05-08 18:43:48','2023-05-08 18:43:48','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-9th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5353\">Tuesday,May 9th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers-Saturday, May 20th @11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell following Show-Me-Select bred heifers </i></b><b>Â </b></p>\n<ul>\n<li><b>Jerry Gordan Farms: </b><b>2 </b>Â 2 yr. old Reg. Sim. Bulls, all out of years of breeding.</li>\n<li><b>Roberts Farms: </b><b>3 </b>18 month old Reg. Blk Angus Bulls. <b>3</b> 18 month old Comm. Blk Angus bulls</li>\n<li><b>Vault One Complete Dispersal: </b><b>1 </b>3yr. old Blk Sim bull originated off Spalding Ranch.<strong> 1</strong> 2 yr. old Blk Angus bull</li>\n<li><b>Bar L Herefords: </b><b>3 </b>Â 14 month oldÂ  Reg. Horned Hereford bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Westfall Farms: </b><b>6 </b>Â 2.5 yr. oldÂ  Char bulls. Out of Reg. stock w/ weaning weights &amp; birth weights. Nice sollid set of bulls. Semen &amp; trich tested. .</li>\n<li><b>Dobson Farms: </b><b>1</b> 2.5 yr. old Sim-Angus bull. <b>2 </b>2 yr. old Blk-Sim Angus bulls. tested</li>\n<li><b>Hart Farms: </b><b>1</b> 2 yr. old Blk Angus bull. Out of Reg. stock, use on cows or heifers. Nice, good bull.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>14 </b>Â Blk-Bwf 2 yr. old heifers w/ month old calves at side.</li>\n<li><b>Mead Farms : </b><b>30 </b>Blk-Bwf 5-7 yr old cows w/ spring calves at side.</li>\n<li><b>Berry Farms: </b><b>10 </b>Blk 3-6 yr. old cows w/ spring calves at side. <b>7 </b>Blk 3-6 yr. old cows, 3rd period.</li>\n<li><b>Dirk Farms : </b><b>10 </b>Red-Rwf 2 yr. old 1000lbs bred heifers. AIâ€™d on Dec. 4th &amp; start calving Sept. 1st. Bred Red Angus. <b>14</b> Rwf 6-SS yr. old cows, 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Vault One Complete Dispersal: </b><b>4 </b>Blk 5-7 yr old cows w/ 300lbs calves at side ( 3N1â€™s). <b>60</b> Blk 4-7 yr. old cows,2nd period. Start calving Sept. 1st. Weaned off an outstanding set of calves.</li>\n<li><b>Lynde Bros.: </b><b>100 </b>Blk-Bwf 5-7 yr. old cows, 2nd period. Bred Blk Angus bulls &amp; start calving Sept. 15th.</li>\n<li><b>Kiely Farms: </b><b>2</b> Blk Sim Angus 2 yr. old heifers <b>1</b> Purebred 3 yr. old Blk Angus heifer. <b>6 </b>Blk Sim-Angus 4-5 yr. old cows, 2nd or 3rd period. Been through the Show-Me-Select program. All bred to Polled Hereford bull &amp; 2nd or 3rd period.</li>\n<li><b>Whitesell Farms: </b>Â <b>25 </b>Blk-Bwf 5-SS yr. old fall calving cows, 2nd period. Bred Seedstock Blk Balancer bulls &amp; start calving Sept. 1st.</li>\n<li><b>Dobson Farms: </b><b>10 </b>Blk-Bwf 3-6 yr. old fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Conrow Farms: </b><b>4 </b>Bwf 2 yr old heifers w/ 200lbs calves at side. <b>10</b> Blk 2 yr. old heifers w/ 200lbs calves at side. Heifers sell open, gentle &amp; nice quality.</li>\n<li><b>D. Wetzel Farm: </b><b>20 </b>Blk 4-7 yr. old cows w/ 11 calves at side, balance 3rd period. 20 Blk 4-7 yr. old cows w/ 10 fall calves at side, balance 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Chad Gard Farms: </b><b>20 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. Start calving Aug. 24th &amp; bred Blk &amp; Bwf bulls.</li>\n<li><b>Huenefeld Farms: </b><b>10 </b>Â Hereford 5-7 yr. old fall calving cows, 2nd period. <b>10 </b>Blk 5-7 yr. old fall calving cows, 2nd period. All cows bred Reg. Blk Angus bulls &amp; start calving Sept. 1st. Nice set of gentle cows.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-05-08 18:43:48','2023-05-08 18:43:48','',2209,'https://kingsvillelivestock.com/?p=5355',0,'revision','',0),(5356,2,'2023-05-10 10:11:55','2023-05-10 10:11:55','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 fall calving catalog</a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-05-10 10:11:55','2023-05-10 10:11:55','',639,'https://kingsvillelivestock.com/?p=5356',0,'revision','',0),(5357,2,'2023-05-10 10:12:37','2023-05-10 10:12:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 Show-Me-Select fall calving catalog</a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-05-10 10:12:37','2023-05-10 10:12:37','',1967,'https://kingsvillelivestock.com/?p=5357',0,'revision','',0),(5358,2,'2023-05-10 16:26:23','2023-05-10 16:26:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-9th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5353\">Tuesday,May 9th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers-Saturday, May 20th @11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell following Show-Me-Select bred heifers </i></b><b>Â </b></p>\n<ul>\n<li><b>Jerry Gordan Farms: </b><b>2 </b>Â 2 yr. old Reg. Sim. Bulls, all out of years of breeding.</li>\n<li><b>Roberts Farms: </b><b>3 </b>18 month old Reg. Blk Angus Bulls. <b>3</b> 18 month old Comm. Blk Angus bulls</li>\n<li><b>Vault One Complete Dispersal: </b><b>1 </b>3yr. old Blk Sim bull originated off Spalding Ranch.<strong> 1</strong> 2 yr. old Blk Angus bull</li>\n<li><b>Bar L Herefords: </b><b>3 </b>Â 14 month oldÂ  Reg. Horned Hereford bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Westfall Farms: </b><b>6 </b>Â 2.5 yr. oldÂ  Char bulls. Out of Reg. stock w/ weaning weights &amp; birth weights. Nice sollid set of bulls. Semen &amp; trich tested. .</li>\n<li><b>Dobson Farms: </b><b>1</b> 2.5 yr. old Sim-Angus bull. <b>2 </b>2 yr. old Blk-Sim Angus bulls. tested</li>\n<li><b>Hart Farms: </b><b>1</b> 2 yr. old Blk Angus bull. Out of Reg. stock, use on cows or heifers. Nice, good bull.</li>\n<li><b>B-Bar-H Cattle Co: </b><b>9 </b>14 month old Purebred Blk Sim-Angus bull. Can be used on hfrs. Been semen tested.</li>\n<li><b>Kuhn Farms: </b><b>1</b> 2 yr. old Blk Sim-Angus bull.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>14 </b>Â Blk-Bwf 2 yr. old heifers w/ month old calves at side.</li>\n<li><b>Mead Farms : </b><b>30 </b>Blk-Bwf 5-7 yr old cows w/ spring calves at side.</li>\n<li><b>Berry Farms: </b><b>10 </b>Blk 3-6 yr. old cows w/ spring calves at side. <b>7 </b>Blk 3-6 yr. old cows, 3rd period.</li>\n<li><b>Dirk Farms : </b><b>10 </b>Red-Rwf 2 yr. old 1000lbs bred heifers. AIâ€™d on Dec. 4th &amp; start calving Sept. 1st. Bred Red Angus. <b>14</b> Rwf 6-SS yr. old cows, 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Vault One Complete Dispersal: </b><b>4 </b>Blk 5-7 yr old cows w/ 300lbs calves at side ( 3N1â€™s). <b>60</b> Blk 4-7 yr. old cows,2nd period. Start calving Sept. 1st. Weaned off an outstanding set of calves.</li>\n<li><b>Lynde Bros.: </b><b>100 </b>Blk-Bwf 5-7 yr. old cows, 2nd period. Bred Blk Angus bulls &amp; start calving Sept. 15th.</li>\n<li><b>Kiely Farms: </b><b>2</b> Blk Sim Angus 2 yr. old heifers <b>1</b> Purebred 3 yr. old Blk Angus heifer. <b>6 </b>Blk Sim-Angus 4-5 yr. old cows, 2nd or 3rd period. Been through the Show-Me-Select program. All bred to Polled Hereford bull &amp; 2nd or 3rd period.</li>\n<li><b>Whitesell Farms: </b>Â <b>25 </b>Blk-Bwf 5-SS yr. old fall calving cows, 2nd period. Bred Seedstock Blk Balancer bulls &amp; start calving Sept. 1st.</li>\n<li><b>Dobson Farms: </b><b>10 </b>Blk-Bwf 3-6 yr. old fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Conrow Farms: </b><b>4 </b>Bwf 2 yr old heifers w/ 200lbs calves at side. <b>10</b> Blk 2 yr. old heifers w/ 200lbs calves at side. Heifers sell open, gentle &amp; nice quality.</li>\n<li><b>D. Wetzel Farm: </b><b>20 </b>Blk 4-7 yr. old cows w/ 11 calves at side, balance 3rd period. 20 Blk 4-7 yr. old cows w/ 10 fall calves at side, balance 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Chad Gard Farms: </b><b>20 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. Start calving Aug. 24th &amp; bred Blk &amp; Bwf bulls.</li>\n<li><b>Huenefeld Farms: </b><b>10 </b>Â Hereford 5-7 yr. old fall calving cows, 2nd period. <b>10 </b>Blk 5-7 yr. old fall calving cows, 2nd period. All cows bred Reg. Blk Angus bulls &amp; start calving Sept. 1st. Nice set of gentle cows.</li>\n<li><b>Sandy Knoll Farm: </b><b>25 </b>Â Blk-Red Balancer 3-8 yr. old cows w/ 15 calves at side, balance 3rd period. Bred Red or Blk Balancer bulls. Calves are ear tagged to match, had 1 rd shots &amp; been cut.</li>\n<li><b>Kuhn Farms: </b><b>5 </b>Â Blk 2 yr. old heifers w/ spring calves at side<b>. 6 </b>Blk 3 yr. old cows w/ spring calves at side. <b>29 </b>Blk 4-6 yr. old w/ spring calves at side. <b>20</b> Blk SS yr. old cows w/ spring calves at side. Cows sell open, nice set of pairs.</li>\n<li><b>Double D Cattle Co.: </b><b>15</b> Blk 3-4 yr. old cows w/ 250lbs calves at side. <b>15 </b>Blk 5-7 yr. old cows w/ 250lbs calves at side.Â </li>\n<li><b>Henslick Farms: </b><b>25</b>Â  Blk-Bwf 3-4 yr. old fall calving cows,2nd period. <b>25 </b>Blk-Bwf 5-6 yr. old fall calving cows,2nd period. Cows bred to Sim-Angus bulls.</li>\n<li><b>Cortman Farms: </b><b>27</b>Â  Blk-Bwf 3-6 yr. old cows,3rd period. Bred Blk Gelv. Bulls.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-05-10 16:26:23','2023-05-10 16:26:23','',2209,'https://kingsvillelivestock.com/?p=5358',0,'revision','',0),(5359,2,'2023-05-10 16:59:22','2023-05-10 16:59:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 9, 2023, </strong>4755 hd; Last week, 4396 hd; 2127 a year ago. Compared to last week calves sold steady &amp; yearlings sold $2-$6 higher. There was a very active market w/ several good quality cattle &amp; good buyer attendance. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$308.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$289.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$273.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$208.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$184.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$284.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$259.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$239.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$213.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$179.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$161.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$97.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$86.00 - $96.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$74.00 - $85.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $128.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">791lbs @$210.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.469px;\">Steers</td>\n<td style=\"width: 146.531px;\">819lbs @$203.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">832lbs @$208.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">861lbs@$194.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">888lbs@$189.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">1019lbs@$175.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">690bs@$210.75</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">710lbs@$205.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">720lbs@$205.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 9, 2023 - Market Report','','publish','closed','open','','may-9-2023-market-report','','','2023-05-10 16:59:25','2023-05-10 16:59:25','',0,'https://kingsvillelivestock.com/?p=5359',0,'post','',0),(5361,2,'2023-05-10 16:59:22','2023-05-10 16:59:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 9, 2023, </strong>4755 hd; Last week, 4396 hd; 2127 a year ago. Compared to last week calves sold steady &amp; yearlings sold $2-$6 higher. There was a very active market w/ several good quality cattle &amp; good buyer attendance. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$308.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$289.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$273.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$208.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$184.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$284.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$259.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$239.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$213.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$179.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$161.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$97.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$86.00 - $96.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$74.00 - $85.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $128.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">791lbs @$210.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.469px;\">Steers</td>\n<td style=\"width: 146.531px;\">819lbs @$203.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">832lbs @$208.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">861lbs@$194.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">888lbs@$189.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">1019lbs@$175.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">690bs@$210.75</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">710lbs@$205.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">720lbs@$205.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 9, 2023 - Market Report','','inherit','closed','closed','','5359-revision-v1','','','2023-05-10 16:59:22','2023-05-10 16:59:22','',5359,'https://kingsvillelivestock.com/?p=5361',0,'revision','',0),(5362,2,'2023-05-10 16:59:22','2023-05-10 16:59:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 9, 2023, </strong>4755 hd; Last week, 4396 hd; 2127 a year ago. Compared to last week calves sold steady &amp; yearlings sold $2-$6 higher. There was a very active market w/ several good quality cattle &amp; good buyer attendance. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$308.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$289.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$273.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$208.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$184.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$284.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$259.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$239.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$213.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$179.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$161.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$97.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$86.00 - $96.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$74.00 - $85.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $128.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">791lbs @$210.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.469px;\">Steers</td>\n<td style=\"width: 146.531px;\">819lbs @$203.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">832lbs @$208.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">861lbs@$194.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">888lbs@$189.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">1019lbs@$175.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">690bs@$210.75</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">710lbs@$205.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">720lbs@$205.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 2, 2023 - Market Report','','inherit','closed','closed','','5359-revision-v1','','','2023-05-10 16:59:22','2023-05-10 16:59:22','',5359,'https://kingsvillelivestock.com/?p=5362',0,'revision','',0),(5363,2,'2023-05-10 16:59:25','2023-05-10 16:59:25','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 9, 2023, </strong>4755 hd; Last week, 4396 hd; 2127 a year ago. Compared to last week calves sold steady &amp; yearlings sold $2-$6 higher. There was a very active market w/ several good quality cattle &amp; good buyer attendance. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$308.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$289.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$273.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$220.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$208.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$184.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$284.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$259.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$239.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$215.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$213.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$179.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$150.00-$161.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$97.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$86.00 - $96.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$74.00 - $85.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $128.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">791lbs @$210.00</td>\n</tr>\n<tr>\n<td style=\"width: 137.469px;\">Steers</td>\n<td style=\"width: 146.531px;\">819lbs @$203.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">832lbs @$208.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">861lbs@$194.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">888lbs@$189.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">1019lbs@$175.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">690bs@$210.75</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">710lbs@$205.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">720lbs@$205.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 9, 2023 - Market Report','','inherit','closed','closed','','5359-revision-v1','','','2023-05-10 16:59:25','2023-05-10 16:59:25','',5359,'https://kingsvillelivestock.com/?p=5363',0,'revision','',0),(5364,2,'2023-05-10 17:03:48','2023-05-10 17:03:48','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-9th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5353\">Tuesday,May 9th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers-Saturday, May 20th @11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell following Show-Me-Select bred heifers </i></b><b>Â </b></p>\n<ul>\n<li><b>Jerry Gordan Farms: </b><b>1 </b>3 yr. old Reg. Sim-Angus bull, can be used on hfrs. <b>1 </b>3 yr. old Reg. Purebred Sim bull. <b>2Â  </b>2 yr.oldÂ  Reg. Sim. Bulls. All out of years of breedingÂ </li>\n<li><b>Roberts Farms: </b><b>3 </b>18 month old Reg. Blk Angus Bulls. <b>3</b> 18 month old Comm. Blk Angus bulls</li>\n<li><b>Vault One Complete Dispersal: </b><b>1 </b>3yr. old Blk Sim bull originated off Spalding Ranch. <b>1 </b>2 yr. old Blk Angus bull</li>\n<li><b>Bar L Herefords: </b><b>3 </b>Â 14 month oldÂ  Reg. Horned Hereford bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Westfall Farms: </b><b>6 </b>Â 2.5 yr. oldÂ  Char bulls. Out of Reg. stock w/ weaning weights &amp; birth weights. Nice sollid set of bulls. Semen &amp; trich tested. .</li>\n<li><b>Dobson Farms: </b><b>1</b> 2.5 yr. old Sim-Angus bull. <b>2 </b>2 yr. old Blk-Sim Angus bulls. tested</li>\n<li><b>Hart Farms: </b><b>1</b> 2 yr. old Blk Angus bull. Out of Reg. stock, use on cows or heifers. Nice, good bull.Â </li>\n<li><b>B-Bar-H Cattle Co: </b><b>9 </b>14 month old Purebred Blk Sim-Angus bull. Can be used on hfrs. Been semen tested.</li>\n<li><b>Kuhn Farms: </b><b>1</b> 2 yr. old Blk Sim-Angus bull.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>14 </b>Â Blk-Bwf 2 yr. old heifers w/ month old calves at side.</li>\n<li><b>Mead Farms : </b><b>30 </b>Blk-Bwf 5-7 yr old cows w/ spring calves at side.</li>\n<li><b>Berry Farms: </b><b>10 </b>Blk 3-6 yr. old cows w/ spring calves at side. <b>7 </b>Blk 3-6 yr. old cows, 3rd period.</li>\n<li><b>Dirk Farms : </b><b>10 </b>Red-Rwf 2 yr. old 1000lbs bred heifers. AIâ€™d on Dec. 4th &amp; start calving Sept. 1st. Bred Red Angus. <b>14</b> Rwf 6-SS yr. old cows, 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Vault One Complete Dispersal: </b><b>4 </b>Blk 5-7 yr old cows w/ 300lbs calves at side ( 3N1â€™s). <b>60</b> Blk 4-7 yr. old cows,2nd period. Start calving Sept. 1st. Weaned off an outstanding set of calves.</li>\n<li><b>Lynde Bros.: </b><b>100 </b>Blk-Bwf 5-7 yr. old cows, 2nd period. Bred Blk Angus bulls &amp; start calving Sept. 15th.Â </li>\n<li><b>Kiely Farms: </b><b>2</b> Blk Sim Angus 2 yr. old heifers <b>1</b> Purebred 3 yr. old Blk Angus heifer. <b>6 </b>Blk Sim-Angus 4-5 yr. old cows, 2nd or 3rd period. Been through Show-Me-Select program. All bred to Polled Hereford bull &amp; 2nd or 3rd period.</li>\n<li><b>Whitesell Farms: </b>Â <b>25 </b>Blk-Bwf 5-SS yr. old fall calving cows, 2nd period. Bred Seedstock Blk Balancer bulls &amp; start calving Sept. 1st.</li>\n<li><b>Dobson Farms: </b><b>21 </b>Blk-Bwf 3-6 yr. old fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Conrow Farms: </b><b>4 </b>Bwf 2 yr old heifers w/ 200lbs calves at side. <b>10</b> Blk 2 yr. old heifers w/ 200lbs calves at side. Heifers sell open, gentle &amp; nice quality.</li>\n<li><b>D. Wetzel Farm: </b><b>20 </b>Blk 4-7 yr. old cows w/ 11 calves at side, balance 3rd period. 20 Blk 4-7 yr. old cows w/ 10 fall calves at side, balance 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Chad Gard Farms: </b><b>20 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. Start calving Aug. 24th &amp; bred Blk &amp; Bwf bulls.Â </li>\n<li><b>Huenefeld Farms: </b><b>10 </b>Â Hereford 5-7 yr. old fall calving cows, 2nd period. <b>10 </b>Blk 5-7 yr. old fall calving cows, 2nd period. All cows bred Reg. Blk Angus bulls &amp; start calving Sept. 1st. Nice set of gentle cows.</li>\n<li><b>Sandy Knoll Farm: </b><b>25 </b>Â Blk-Red Balancer 3-8 yr. old cows w/ 15 calves at side, balance 3rd period. Bred Red or Blk Balancer bulls. Calves are ear tagged to match, had 1 rd. shots &amp; been cut.</li>\n<li><b>Kuhn Farms: </b><b>5 </b>Â Blk 2 yr. old heifers w/ spring calves at side<b>. 6 </b>Blk 3 yr. old cows w/ spring calves at side. <b>29 </b>Blk 4-6 yr. old w/ spring calves at side. <b>20</b> Blk SS yr. old cows w/ spring calves at side. Cows sell open, nice set of pairs.</li>\n<li><b>Double D Cattle Co.: </b><b>15</b> Blk 3-4 yr. old cows w/ 250lbs calves at side. <b>15 </b>Blk 5-7 yr. old cows w/ 250lbs calves at side.Â </li>\n<li><b>Henslick Farms: </b><b>25</b>Â  Blk-Bwf 3-4 yr. old fall calving cows,2nd period. <b>25 </b>Blk-Bwf 5-6 yr. old fall calving cows,2nd period. Cows bred to Sim-Angus bulls.</li>\n<li><b>Cortman Farms: </b><b>27</b>Â  Blk-Bwf 3-6 yr. old cows,3rd period. Bred Blk Gelv. Bulls.</li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-05-10 17:03:48','2023-05-10 17:03:48','',2209,'https://kingsvillelivestock.com/?p=5364',0,'revision','',0),(5365,2,'2023-05-10 17:32:19','2023-05-10 17:32:19','','May 20, 2023 Cow Sale','','inherit','closed','closed','','may-20-2023-cow-sale','','','2023-05-10 17:32:19','2023-05-10 17:32:19','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale.pdf',0,'attachment','application/pdf',0),(5366,2,'2023-05-10 17:36:08','2023-05-10 17:36:08','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5365\">May 20, 2023 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 fall calving catalogÂ Â Â Â </a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-05-10 17:36:08','2023-05-10 17:36:08','',639,'https://kingsvillelivestock.com/?p=5366',0,'revision','',0),(5367,2,'2023-05-10 17:42:09','2023-05-10 17:42:09','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5365\">May 20, 2023 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 Show-Me-Select fall calving catalog</a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-05-10 17:42:09','2023-05-10 17:42:09','',1967,'https://kingsvillelivestock.com/?p=5367',0,'revision','',0),(5368,2,'2023-05-10 17:42:44','2023-05-10 17:42:44','','2023 Memorial Day Sale Flyer','','inherit','closed','closed','','2023-memorial-day-sale-flyer','','','2023-05-10 17:42:44','2023-05-10 17:42:44','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/2023-Memorial-Day-Sale-Flyer.pdf',0,'attachment','application/pdf',0),(5369,2,'2023-05-10 17:42:52','2023-05-10 17:42:52','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/Francy-Auction-May-13th-Pleasant-Hill.pdf\" rel=\"attachment wp-att-5311\">Francy FamilyAuction - May 13th - 9:30am - Pleasant Hill</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/Cnjr4rDNc5qZQPrv7\">Francy Photos</a></p>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/2023-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-5368\">2023 Memorial Day Sale Flyer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-05-10 17:42:52','2023-05-10 17:42:52','',1450,'https://kingsvillelivestock.com/?p=5369',0,'revision','',0),(5370,2,'2023-05-10 17:50:00','2023-05-10 17:50:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5365\">May 20, 2023 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 fall calving catalogÂ Â Â Â </a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 27th @ 9:30 am<br /></strong>Braughton Auction-For more info visit the Anstine Auction barn!</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-05-10 17:50:00','2023-05-10 17:50:00','',639,'https://kingsvillelivestock.com/?p=5370',0,'revision','',0),(5371,2,'2023-05-10 17:50:52','2023-05-10 17:50:52','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5365\">May 20, 2023 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 Show-Me-Select fall calving catalog</a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 27th @ 9:30 am<br /></strong>Braughton Auction-For more info visit the Anstine Auction barn!</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-05-10 17:50:52','2023-05-10 17:50:52','',1967,'https://kingsvillelivestock.com/?p=5371',0,'revision','',0),(5372,2,'2023-05-10 17:56:42','2023-05-10 17:56:42','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5365\">May 20, 2023 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 Show-Me-Select fall calving catalog</a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 27th @ 9:30 am<br /></strong>Braughton Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-05-10 17:56:42','2023-05-10 17:56:42','',1967,'https://kingsvillelivestock.com/?p=5372',0,'revision','',0),(5373,2,'2023-05-10 17:57:19','2023-05-10 17:57:19','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer sale</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5365\">May 20, 2023 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 fall calving catalogÂ Â Â Â </a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 27th @ 9:30 am<br /></strong>Braughton Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-05-10 17:57:19','2023-05-10 17:57:19','',639,'https://kingsvillelivestock.com/?p=5373',0,'revision','',0),(5374,2,'2023-05-12 16:22:49','2023-05-12 16:22:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer saleÂ  <a href=\"https://drive.google.com/drive/folders/1QKcqtuTzbc-C5zXb6dDjrbwgMwiIu06s?usp=share_link\">Reg papers for bulls and pictures</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5365\">May 20, 2023 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 fall calving catalogÂ Â Â Â </a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 27th @ 9:30 am<br /></strong>Braughton Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-05-12 16:22:49','2023-05-12 16:22:49','',639,'https://kingsvillelivestock.com/?p=5374',0,'revision','',0),(5376,2,'2023-05-12 16:25:45','2023-05-12 16:25:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction with Show-Me-Select bred heifersÂ  <a href=\"https://drive.google.com/drive/folders/1QKcqtuTzbc-C5zXb6dDjrbwgMwiIu06s?usp=share_link\">Reg. papers &amp; pictures for bulls </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5365\">May 20, 2023 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 Show-Me-Select fall calving catalog</a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 27th @ 9:30 am<br /></strong>Braughton Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-05-12 16:25:45','2023-05-12 16:25:45','',1967,'https://kingsvillelivestock.com/?p=5376',0,'revision','',0),(5377,2,'2023-05-12 17:07:24','2023-05-12 17:07:24','','Auction - May 27th - Kingsville','','inherit','closed','closed','','auction-may-27th-kingsville','','','2023-05-12 17:07:24','2023-05-12 17:07:24','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/Auction-May-27th-Kingsville.pdf',0,'attachment','application/pdf',0),(5378,2,'2023-05-12 17:09:20','2023-05-12 17:09:20','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/Francy-Auction-May-13th-Pleasant-Hill.pdf\" rel=\"attachment wp-att-5311\">Francy Family Auction - May 13th - 9:30am - Pleasant Hill</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/Cnjr4rDNc5qZQPrv7\">Francy Photos</a></p>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Auction-May-27th-Kingsville.pdf\" rel=\"attachment wp-att-5377\">Braughton Auction - May 27th -9:30am- Kingsville</a></p>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/2023-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-5368\">2023 Memorial Day Sale Flyer</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-05-12 17:09:20','2023-05-12 17:09:20','',1450,'https://kingsvillelivestock.com/?p=5378',0,'revision','',0),(5379,2,'2023-05-12 17:36:10','2023-05-12 17:36:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-9th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5353\">Tuesday,May 9th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers-Saturday, May 20th @11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell following Show-Me-Select bred heifers </i></b><b>Â </b></p>\n<ul>\n<li><b>Jerry Gordan Farms: </b><b>1 </b>3 yr. old Reg. Sim-Angus bull, can be used on hfrs. <b>1 </b>3 yr. old Reg. Purebred Sim bull. <b>2Â  </b>2 yr.oldÂ  Reg. Sim. Bulls. All out of years of breeding</li>\n<li><b>Roberts Farms: </b><b>3 </b>18 month old Reg. Blk Angus Bulls. <b>3</b> 18 month old Comm. Blk Angus bulls</li>\n<li><b>Vault One Complete Dispersal: </b><b>1 </b>3yr. old Blk Sim bull originated off Spalding Ranch. <b>1 </b>2 yr. old Blk Angus bull</li>\n<li><b>Bar L Herefords: </b><b>3 </b>Â 14 month oldÂ  Reg. Horned Hereford bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Westfall Farms: </b><b>6 </b>Â 2.5 yr. oldÂ  Char bulls. Out of Reg. stock w/ weaning weights &amp; birth weights. Nice sollid set of bulls. Semen &amp; trich tested. .</li>\n<li><b>Dobson Farms: </b><b>1</b> 2.5 yr. old Sim-Angus bull. <b>2 </b>2 yr. old Blk-Sim Angus bulls. tested</li>\n<li><b>Hart Farms: </b><b>1</b> 2 yr. old Blk Angus bull. Out of Reg. stock, use on cows or heifers. Nice, good bull.</li>\n<li><b>B-Bar-H Cattle Co: 1</b><b>Â </b>14 month old Purebred Blk Sim-Angus bull. Can be used on hfrs. Been semen tested.</li>\n<li><b>Kuhn Farms: </b><b>1</b> 2 yr. old Blk Sim-Angus bull.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>14 </b>Â Blk-Bwf 2 yr. old heifers w/ month old calves at side.</li>\n<li><b>Mead Farms : </b><b>30 </b>Blk-Bwf 5-7 yr old cows w/ spring calves at side.</li>\n<li><b>Berry Farms: </b><b>10 </b>Blk 3-6 yr. old cows w/ spring calves at side. <b>7 </b>Blk 3-6 yr. old cows, 3rd period.</li>\n<li><b>Dirk Farms : </b><b>10 </b>Red-Rwf 2 yr. old 1000lbs bred heifers. AIâ€™d on Dec. 4th &amp; start calving Sept. 1st. Bred Red Angus. <b>14</b> Rwf 6-SS yr. old cows, 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Vault One Complete Dispersal: </b><b>4 </b>Blk 5-7 yr old cows w/ 300lbs calves at side ( 3N1â€™s). <b>60</b> Blk 4-7 yr. old cows,2nd period. Start calving Sept. 1st. Weaned off an outstanding set of calves.</li>\n<li><b>Lynde Bros.: </b><b>100 </b>Blk-Bwf 5-7 yr. old cows, 2nd period. Bred Blk Angus bulls &amp; start calving Sept. 15th.</li>\n<li><b>Kiely Farms: </b><b>2</b> Blk Sim Angus 2 yr. old heifers <b>1</b> Purebred 3 yr. old Blk Angus heifer. <b>6 </b>Blk Sim-Angus 4-5 yr. old cows, 2nd or 3rd period. Been through Show-Me-Select program. All bred to Polled Hereford bull &amp; 2nd or 3rd period.</li>\n<li><b>Whitesell Farms: </b>Â <b>25 </b>Blk-Bwf 5-SS yr. old fall calving cows, 2nd period. Bred Seedstock Blk Balancer bulls &amp; start calving Sept. 1st.</li>\n<li><b>Dobson Farms: </b><b>21 </b>Blk-Bwf 3-6 yr. old fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Conrow Farms: </b><b>4 </b>Bwf 2 yr old heifers w/ 200lbs calves at side. <b>10</b> Blk 2 yr. old heifers w/ 200lbs calves at side. Heifers sell open, gentle &amp; nice quality.</li>\n<li><b>D. Wetzel Farm: </b><b>20 </b>Blk 4-7 yr. old cows w/ 11 calves at side, balance 3rd period. 20 Blk 4-7 yr. old cows w/ 10 fall calves at side, balance 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Chad Gard Farms: </b><b>20 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. Start calving Aug. 24th &amp; bred Blk &amp; Bwf bulls.</li>\n<li><b>Huenefeld Farms: </b><b>10 </b>Â Hereford 5-7 yr. old fall calving cows, 2nd period. <b>10 </b>Blk 5-7 yr. old fall calving cows, 2nd period. All cows bred Reg. Blk Angus bulls &amp; start calving Sept. 1st. Nice set of gentle cows.</li>\n<li><b>Sandy Knoll Farm: </b><b>25 </b>Â Blk-Red Balancer 3-8 yr. old cows w/ 15 calves at side, balance 3rd period. Bred Red or Blk Balancer bulls. Calves are ear tagged to match, had 1 rd. shots &amp; been cut.</li>\n<li><b>Kuhn Farms: </b><b>5 </b>Â Blk 2 yr. old heifers w/ spring calves at side<b>. 6 </b>Blk 3 yr. old cows w/ spring calves at side. <b>29 </b>Blk 4-6 yr. old w/ spring calves at side. <b>20</b> Blk SS yr. old cows w/ spring calves at side. Cows sell open, nice set of pairs.</li>\n<li><b>Double D Cattle Co.: </b><b>15</b> Blk 3-4 yr. old cows w/ 250lbs calves at side. <b>15 </b>Blk 5-7 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Henslick Farms: </b><b>25</b>Â  Blk-Bwf 3-4 yr. old fall calving cows,2nd period. <b>25 </b>Blk-Bwf 5-6 yr. old fall calving cows,2nd period. Cows bred to Sim-Angus bulls.</li>\n<li><b>Cortman Farms: </b><b>27</b>Â  Blk-Bwf 3-6 yr. old cows,3rd period. Bred Blk Gelv. Bulls.</li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-05-12 17:36:10','2023-05-12 17:36:10','',2209,'https://kingsvillelivestock.com/?p=5379',0,'revision','',0),(5380,2,'2023-05-12 18:29:41','2023-05-12 18:29:41','','May 20, 2023 Cow Sale','','inherit','closed','closed','','may-20-2023-cow-sale-2','','','2023-05-12 18:29:41','2023-05-12 18:29:41','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(5381,2,'2023-05-12 18:29:51','2023-05-12 18:29:51','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 13th @ 8:30 am<span style=\"color: #ff0000;\"> - Canceled!</span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>May 13th @ 5 pm <span style=\"color: #ff0000;\">- Canceled!</span></strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>May 13th @ 9:30am</strong><br />Francy Family Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer saleÂ  <a href=\"https://drive.google.com/drive/folders/1QKcqtuTzbc-C5zXb6dDjrbwgMwiIu06s?usp=share_link\">Reg papers for bulls and pictures</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5380\">May 20, 2023 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 fall calving catalogÂ Â Â Â </a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 27th @ 9:30 am<br /></strong>Braughton Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-05-12 18:29:51','2023-05-12 18:29:51','',639,'https://kingsvillelivestock.com/?p=5381',0,'revision','',0),(5382,2,'2023-05-12 18:41:30','2023-05-12 18:41:30','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/Francy-Auction-May-13th-Pleasant-Hill.pdf\" rel=\"attachment wp-att-5311\">Francy Family Auction - May 13th - 9:30am - Pleasant Hill</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/Cnjr4rDNc5qZQPrv7\">Francy Photos</a></p>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Auction-May-27th-Kingsville.pdf\" rel=\"attachment wp-att-5377\">Braughton Auction - May 27th -9:30am- Kingsville</a></p>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/2023-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-5368\">2023 Memorial Day Sale Flyer</a></p>\n<p style=\"text-align: left;\"><a href=\"https://drive.google.com/drive/folders/1W8XIBwolDf3Uzhn-XQ0lbGJp1tklXuGx?usp=share_link\">Memorial Weekend Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-05-12 18:41:30','2023-05-12 18:41:30','',1450,'https://kingsvillelivestock.com/?p=5382',0,'revision','',0),(5383,2,'2023-05-15 16:00:56','2023-05-15 16:00:56','','May 20, 2023 Cow Sale','','inherit','closed','closed','','may-20-2023-cow-sale-3','','','2023-05-15 16:00:56','2023-05-15 16:00:56','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(5384,2,'2023-05-15 16:01:05','2023-05-15 16:01:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer saleÂ  <a href=\"https://drive.google.com/drive/folders/1QKcqtuTzbc-C5zXb6dDjrbwgMwiIu06s?usp=share_link\">Reg papers for bulls and pictures</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5383\">May 20, 2023 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 fall calving catalogÂ Â Â Â </a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 27th @ 9:30 am<br /></strong>Braughton Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-05-15 16:01:05','2023-05-15 16:01:05','',639,'https://kingsvillelivestock.com/?p=5384',0,'revision','',0),(5385,2,'2023-05-15 16:02:12','2023-05-15 16:02:12','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction with Show-Me-Select bred heifersÂ  <a href=\"https://drive.google.com/drive/folders/1QKcqtuTzbc-C5zXb6dDjrbwgMwiIu06s?usp=share_link\">Reg. papers &amp; pictures for bulls </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5383\">May 20, 2023 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 Show-Me-Select fall calving catalog</a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 27th @ 9:30 am<br /></strong>Braughton Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-05-15 16:02:12','2023-05-15 16:02:12','',1967,'https://kingsvillelivestock.com/?p=5385',0,'revision','',0),(5386,2,'2023-05-15 16:04:47','2023-05-15 16:04:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-9th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5353\">Tuesday,May 9th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers-Saturday, May 20th @11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell following Show-Me-Select bred heifers </i></b><b>Â </b></p>\n<ul>\n<li><b>Jerry Gordan Farms: </b><b>1 </b>3 yr. old Reg. Sim-Angus bull, can be used on hfrs. <b>1 </b>3 yr. old Reg. Purebred Sim bull. <b>2Â  </b>2 yr.oldÂ  Reg. Sim. Bulls. All out of years of breeding</li>\n<li><b>Roberts Farms: </b><b>3 </b>18 month old Reg. Blk Angus Bulls. <b>3</b> 18 month old Comm. Blk Angus bulls</li>\n<li><b>Vault One Complete Dispersal: </b><b>1 </b>3yr. old Blk Sim bull originated off Spalding Ranch. <b>1 </b>2 yr. old Blk Angus bull</li>\n<li><b>Bar L Herefords: </b><b>3 </b>Â 14 month oldÂ  Reg. Horned Hereford bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Westfall Farms: </b><b>6 </b>Â 2.5 yr. oldÂ  Char bulls. Out of Reg. stock w/ weaning weights &amp; birth weights. Nice sollid set of bulls. Semen &amp; trich tested. .</li>\n<li><b>Dobson Farms: </b><b>1</b> 2.5 yr. old Sim-Angus bull. <b>2 </b>2 yr. old Blk-Sim Angus bulls. tested</li>\n<li><b>Hart Farms: </b><b>1</b> 2 yr. old Blk Angus bull. Out of Reg. stock, use on cows or heifers. Nice, good bull.</li>\n<li><b>B-Bar-H Cattle Co: 1</b><b>Â </b>14 month old Purebred Blk Sim-Angus bull. Can be used on hfrs. Been semen tested.</li>\n<li><b>Kuhn Farms: </b><b>1</b> 2 yr. old Blk Sim-Angus bull.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>14 </b>Â Blk-Bwf 2 yr. old heifers w/ month old calves at side.</li>\n<li><b>Mead Farms : </b><b>30 </b>Blk-Bwf 5-7 yr old cows w/ spring calves at side.</li>\n<li><b>Berry Farms: </b><b>10 </b>Blk 3-6 yr. old cows w/ spring calves at side. <b>7 </b>Blk 3-6 yr. old cows, 3rd period.</li>\n<li><b>Dirk Farms : </b><b>10 </b>Red-Rwf 2 yr. old 1000lbs bred heifers. AIâ€™d on Dec. 4th &amp; start calving Sept. 1st. Bred Red Angus. <b>14</b> Rwf 6-SS yr. old cows, 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Vault One Complete Dispersal: </b><b>4 </b>Blk 5-7 yr old cows w/ 300lbs calves at side ( 3N1â€™s). <b>60</b> Blk 4-7 yr. old cows,2nd period. Start calving Sept. 1st. Weaned off an outstanding set of calves.</li>\n<li><b>Lynde Bros.: </b><b>100 </b>Blk-Bwf 5-7 yr. old cows, 2nd period. Bred Blk Angus bulls &amp; start calving Sept. 15th.</li>\n<li><b>Kiely Farms: </b><b>2</b> Blk Sim Angus 2 yr. old heifers <b>1</b> Purebred 3 yr. old Blk Angus heifer. <b>6 </b>Blk Sim-Angus 4-5 yr. old cows, 2nd or 3rd period. Been through Show-Me-Select program. All bred to Polled Hereford bull &amp; 2nd or 3rd period.</li>\n<li><b>Whitesell Farms: </b>Â <b>25 </b>Blk-Bwf 5-SS yr. old fall calving cows, 2nd period. Bred Seedstock Blk Balancer bulls &amp; start calving Sept. 1st.</li>\n<li><b>Dobson Farms: </b><b>21 </b>Blk-Bwf 3-6 yr. old fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Conrow Farms: </b><b>4 </b>Bwf 2 yr old heifers w/ 200lbs calves at side. <b>10</b> Blk 2 yr. old heifers w/ 200lbs calves at side. Heifers sell open, gentle &amp; nice quality.</li>\n<li><b>D. Wetzel Farm: </b><b>20 </b>Blk 4-7 yr. old cows w/ 11 calves at side, balance 3rd period. 20 Blk 4-7 yr. old cows w/ 10 fall calves at side, balance 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Chad Gard Farms: </b><b>20 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. Start calving Aug. 24th &amp; bred Blk &amp; Bwf bulls.</li>\n<li><b>Huenefeld Farms: </b><b>10 </b>Â Hereford 5-7 yr. old fall calving cows, 2nd period. <b>10 </b>Blk 5-7 yr. old fall calving cows, 2nd period. All cows bred Reg. Blk Angus bulls &amp; start calving Sept. 1st. Nice set of gentle cows.</li>\n<li><b>Sandy Knoll Farm: </b><b>25 </b>Â Blk-Red Balancer 3-8 yr. old cows w/ 15 calves at side, balance 3rd period. Bred Red or Blk Balancer bulls. Calves are ear tagged to match, had 1 rd. shots &amp; been cut.</li>\n<li><b>Kuhn Farms: </b><b>5 </b>Â Blk 2 yr. old heifers w/ spring calves at side<b>. 6 </b>Blk 3 yr. old cows w/ spring calves at side. <b>29 </b>Blk 4-6 yr. old w/ spring calves at side. <b>20</b> Blk SS yr. old cows w/ spring calves at side. Cows sell open, nice set of pairs.</li>\n<li><b>Double D Cattle Co.: </b><b>15</b> Blk 3-4 yr. old cows w/ 250lbs calves at side. <b>15 </b>Blk 5-7 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Henslick Farms: </b><b>25</b>Â  Blk-Bwf 3-4 yr. old fall calving cows,2nd period. <b>25 </b>Blk-Bwf 5-6 yr. old fall calving cows,2nd period. Cows bred to Sim-Angus bulls.</li>\n<li><b>Cortman Farms: </b><b>27</b>Â  Blk-Bwf 3-6 yr. old cows,3rd period. Bred Blk Gelv. Bulls.</li>\n<li><b>Hursh Farms: </b><b>8</b>Â  Blk 7-SS yr. old cows,3rd period. <b>14</b> Blk 7-SS yr old cows, 3rd period. <b>6Â  </b>Blk 3 yr. old cows, 2nd period. <b>4 </b>Blk 5 yr. old cows, 2nd period. Start calving Sept. 15th for 60 days.</li>\n<li><b>Struchtemeyer Farms Fall Calving Dispersal: </b><b>20</b>Â  Red Angus 3-6 yr. old cows, 2nd period. <b>20</b> Blk 4-7 yr. old cows,2nd period. All cows are gentle &amp; 1st time to town. Bred Horned Herf. &amp; Blk Angus bulls. Start calving Sept.1st</li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-05-15 16:04:47','2023-05-15 16:04:47','',2209,'https://kingsvillelivestock.com/?p=5386',0,'revision','',0),(5387,2,'2023-05-15 17:03:30','2023-05-15 17:03:30','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Auction-May-27th-Kingsville.pdf\" rel=\"attachment wp-att-5377\">Braughton Auction - May 27th -9:30am- Kingsville</a></p>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/2023-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-5368\">2023 Memorial Day Sale Flyer</a></p>\n<p style=\"text-align: left;\"><a href=\"https://drive.google.com/drive/folders/1W8XIBwolDf3Uzhn-XQ0lbGJp1tklXuGx?usp=share_link\">Memorial Weekend Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-05-15 17:03:30','2023-05-15 17:03:30','',1450,'https://kingsvillelivestock.com/?p=5387',0,'revision','',0),(5388,2,'2023-05-15 17:22:29','2023-05-15 17:22:29','','Tuesday,May 16th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymay-16th-feeder-cattle-consignments','','','2023-05-15 17:22:29','2023-05-15 17:22:29','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-16th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5389,2,'2023-05-15 17:22:34','2023-05-15 17:22:34','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-16th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5388\">Tuesday,May 16th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers-Saturday, May 20th @11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell following Show-Me-Select bred heifers </i></b><b>Â </b></p>\n<ul>\n<li><b>Jerry Gordan Farms: </b><b>1 </b>3 yr. old Reg. Sim-Angus bull, can be used on hfrs. <b>1 </b>3 yr. old Reg. Purebred Sim bull. <b>2Â  </b>2 yr.oldÂ  Reg. Sim. Bulls. All out of years of breeding</li>\n<li><b>Roberts Farms: </b><b>3 </b>18 month old Reg. Blk Angus Bulls. <b>3</b> 18 month old Comm. Blk Angus bulls</li>\n<li><b>Vault One Complete Dispersal: </b><b>1 </b>3yr. old Blk Sim bull originated off Spalding Ranch. <b>1 </b>2 yr. old Blk Angus bull</li>\n<li><b>Bar L Herefords: </b><b>3 </b>Â 14 month oldÂ  Reg. Horned Hereford bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Westfall Farms: </b><b>6 </b>Â 2.5 yr. oldÂ  Char bulls. Out of Reg. stock w/ weaning weights &amp; birth weights. Nice sollid set of bulls. Semen &amp; trich tested. .</li>\n<li><b>Dobson Farms: </b><b>1</b> 2.5 yr. old Sim-Angus bull. <b>2 </b>2 yr. old Blk-Sim Angus bulls. tested</li>\n<li><b>Hart Farms: </b><b>1</b> 2 yr. old Blk Angus bull. Out of Reg. stock, use on cows or heifers. Nice, good bull.</li>\n<li><b>B-Bar-H Cattle Co: 1</b><b>Â </b>14 month old Purebred Blk Sim-Angus bull. Can be used on hfrs. Been semen tested.</li>\n<li><b>Kuhn Farms: </b><b>1</b> 2 yr. old Blk Sim-Angus bull.</li>\n<li><b>Miller Farms: </b><b>1</b> Reg. Red Angus bull.Â </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>14 </b>Â Blk-Bwf 2 yr. old heifers w/ month old calves at side.</li>\n<li><b>Mead Farms : </b><b>30 </b>Blk-Bwf 5-7 yr old cows w/ spring calves at side.</li>\n<li><b>Berry Farms: </b><b>10 </b>Blk 3-6 yr. old cows w/ spring calves at side. <b>7 </b>Blk 3-6 yr. old cows, 3rd period.</li>\n<li><b>Dirk Farms : </b><b>10 </b>Red-Rwf 2 yr. old 1000lbs bred heifers. AIâ€™d on Dec. 4th &amp; start calving Sept. 1st. Bred Red Angus. <b>14</b> Rwf 6-SS yr. old cows, 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Vault One Complete Dispersal: </b><b>4 </b>Blk 5-7 yr old cows w/ 300lbs calves at side ( 3N1â€™s). <b>60</b> Blk 4-7 yr. old cows,2nd period. Start calving Sept. 1st. Weaned off an outstanding set of calves.</li>\n<li><b>Lynde Bros.: </b><b>100 </b>Blk-Bwf 5-7 yr. old cows, 2nd period. Bred Blk Angus bulls &amp; start calving Sept. 15th.</li>\n<li><b>Kiely Farms: </b><b>2</b> Blk Sim Angus 2 yr. old heifers <b>1</b> Purebred 3 yr. old Blk Angus heifer. <b>6 </b>Blk Sim-Angus 4-5 yr. old cows, 2nd or 3rd period. Been through Show-Me-Select program. All bred to Polled Hereford bull &amp; 2nd or 3rd period.</li>\n<li><b>Whitesell Farms: </b>Â <b>25 </b>Blk-Bwf 5-SS yr. old fall calving cows, 2nd period. Bred Seedstock Blk Balancer bulls &amp; start calving Sept. 1st.</li>\n<li><b>Dobson Farms: </b><b>21 </b>Blk-Bwf 3-6 yr. old fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Conrow Farms: </b><b>4 </b>Bwf 2 yr old heifers w/ 200lbs calves at side. <b>10</b> Blk 2 yr. old heifers w/ 200lbs calves at side. Heifers sell open, gentle &amp; nice quality.</li>\n<li><b>D. Wetzel Farm: </b><b>20 </b>Blk 4-7 yr. old cows w/ 11 calves at side, balance 3rd period. 20 Blk 4-7 yr. old cows w/ 10 fall calves at side, balance 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Chad Gard Farms: </b><b>20 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. Start calving Aug. 24th &amp; bred Blk &amp; Bwf bulls.</li>\n<li><b>Huenefeld Farms: </b><b>10 </b>Â Hereford 5-7 yr. old fall calving cows, 2nd period. <b>10 </b>Blk 5-7 yr. old fall calving cows, 2nd period. All cows bred Reg. Blk Angus bulls &amp; start calving Sept. 1st. Nice set of gentle cows.</li>\n<li><b>Sandy Knoll Farm: </b><b>25 </b>Â Blk-Red Balancer 3-8 yr. old cows w/ 15 calves at side, balance 3rd period. Bred Red or Blk Balancer bulls. Calves are ear tagged to match, had 1 rd. shots &amp; been cut.</li>\n<li><b>Kuhn Farms: </b><b>5 </b>Â Blk 2 yr. old heifers w/ spring calves at side<b>. 6 </b>Blk 3 yr. old cows w/ spring calves at side. <b>29 </b>Blk 4-6 yr. old w/ spring calves at side. <b>20</b> Blk SS yr. old cows w/ spring calves at side. Cows sell open, nice set of pairs.</li>\n<li><b>Double D Cattle Co.: </b><b>15</b> Blk 3-4 yr. old cows w/ 250lbs calves at side. <b>15 </b>Blk 5-7 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Henslick Farms: </b><b>25</b>Â  Blk-Bwf 3-4 yr. old fall calving cows,2nd period. <b>25 </b>Blk-Bwf 5-6 yr. old fall calving cows,2nd period. Cows bred to Sim-Angus bulls.</li>\n<li><b>Cortman Farms: </b><b>27</b>Â  Blk-Bwf 3-6 yr. old cows,3rd period. Bred Blk Gelv. Bulls.</li>\n<li><b>Hursh Farms: </b><b>8</b>Â  Blk 7-SS yr. old cows,3rd period. <b>14</b> Blk 7-SS yr old cows, 3rd period. <b>6Â  </b>Blk 3 yr. old cows, 2nd period. <b>4 </b>Blk 5 yr. old cows, 2nd period. Start calving Sept. 15th for 60 days.</li>\n<li><b>Struchtemeyer Farms Fall Calving Dispersal: </b><b>20</b>Â  Red Angus 3-6 yr. old cows, 2nd period. <b>20</b> Blk 4-7 yr. old cows,2nd period. All cows are gentle &amp; 1st time to town. Bred Horned Herf. &amp; Blk Angus bulls. Start calving Sept.1st</li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-05-15 17:22:34','2023-05-15 17:22:34','',2209,'https://kingsvillelivestock.com/?p=5389',0,'revision','',0),(5390,2,'2023-05-15 17:23:03','2023-05-15 17:23:03','','May 20, 2023 Cow Sale','','inherit','closed','closed','','may-20-2023-cow-sale-4','','','2023-05-15 17:23:03','2023-05-15 17:23:03','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale-3.pdf',0,'attachment','application/pdf',0),(5391,2,'2023-05-15 17:23:09','2023-05-15 17:23:09','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer saleÂ  <a href=\"https://drive.google.com/drive/folders/1QKcqtuTzbc-C5zXb6dDjrbwgMwiIu06s?usp=share_link\">Reg papers for bulls and pictures</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5390\">May 20, 2023 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 fall calving catalogÂ Â Â Â </a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 27th @ 9:30 am<br /></strong>Braughton Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-05-15 17:23:09','2023-05-15 17:23:09','',639,'https://kingsvillelivestock.com/?p=5391',0,'revision','',0),(5392,2,'2023-05-15 17:24:37','2023-05-15 17:24:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 16th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction with Show-Me-Select bred heifersÂ  <a href=\"https://drive.google.com/drive/folders/1QKcqtuTzbc-C5zXb6dDjrbwgMwiIu06s?usp=share_link\">Reg. papers &amp; pictures for bulls </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5390\">May 20, 2023 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 Show-Me-Select fall calving catalog</a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 27th @ 9:30 am<br /></strong>Braughton Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-05-15 17:24:37','2023-05-15 17:24:37','',1967,'https://kingsvillelivestock.com/?p=5392',0,'revision','',0),(5393,2,'2023-05-15 22:05:30','2023-05-15 22:05:30','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Auction-May-27th-Kingsville.pdf\" rel=\"attachment wp-att-5377\">Donna Braughton Auction - May 27th -9:30am- Kingsville</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/9sYoMqoNcBVMYJht8\">Braughton Photos</a></p>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/2023-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-5368\">2023 Memorial Day Sale Flyer</a></p>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\"><a href=\"https://drive.google.com/drive/folders/1W8XIBwolDf3Uzhn-XQ0lbGJp1tklXuGx?usp=share_link\">Memorial Weekend Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-05-15 22:05:30','2023-05-15 22:05:30','',1450,'https://kingsvillelivestock.com/?p=5393',0,'revision','',0),(5396,2,'2023-05-16 15:33:54','2023-05-16 15:33:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-16th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5388\">Tuesday,May 16th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers-Saturday, May 20th @11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell following Show-Me-Select bred heifers </i></b><b>Â </b></p>\n<ul>\n<li><b>Jerry Gordan Farms: </b><b>1 </b>3 yr. old Reg. Sim-Angus bull, can be used on hfrs. <b>1 </b>3 yr. old Reg. Purebred Sim bull. <b>2Â  </b>2 yr.oldÂ  Reg. Sim. Bulls. All out of years of breeding</li>\n<li><b>Roberts Farms: </b><b>3 </b>18 month old Reg. Blk Angus Bulls. <b>3</b> 18 month old Comm. Blk Angus bulls</li>\n<li><b>Vault One Complete Dispersal: </b><b>1 </b>3yr. old Blk Sim bull originated off Spalding Ranch. <b>1 </b>2 yr. old Blk Angus bull</li>\n<li><b>Bar L Herefords: </b><b>3 </b>Â 14 month oldÂ  Reg. Horned Hereford bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Westfall Farms: </b><b>6 </b>Â 2.5 yr. oldÂ  Char bulls. Out of Reg. stock w/ weaning weights &amp; birth weights. Nice sollid set of bulls. Semen &amp; trich tested. .</li>\n<li><b>Dobson Farms: </b><b>1</b> 2.5 yr. old Sim-Angus bull. <b>2 </b>2 yr. old Blk-Sim Angus bulls. tested</li>\n<li><b>Hart Farms: </b><b>1</b> 2 yr. old Blk Angus bull. Out of Reg. stock, use on cows or heifers. Nice, good bull.</li>\n<li><b>B-Bar-H Cattle Co: 1</b><b>Â </b>14 month old Purebred Blk Sim-Angus bull. Can be used on hfrs. Been semen tested.</li>\n<li><b>Kuhn Farms: </b><b>1</b> 2 yr. old Blk Sim-Angus bull.</li>\n<li><b>Miller Farms: </b><b>1</b> Reg. Red Angus bull.</li>\n<li><b>Farrell Farms: </b><b>1</b> 3 yr. old Reg. South Polled bull. <strong>2</strong> 18-month-old Reg. South Polled Bulls.Â </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>14 </b>Â Blk-Bwf 2 yr. old heifers w/ month old calves at side.</li>\n<li><b>Mead Farms : </b><b>30 </b>Blk-Bwf 5-7 yr old cows w/ spring calves at side.</li>\n<li><b>Berry Farms: </b><b>10 </b>Blk 3-6 yr. old cows w/ spring calves at side. <b>7 </b>Blk 3-6 yr. old cows, 3rd period.</li>\n<li><b>Dirk Farms : </b><b>10 </b>Red-Rwf 2 yr. old 1000lbs bred heifers. AIâ€™d on Dec. 4th &amp; start calving Sept. 1st. Bred Red Angus. <b>14</b> Rwf 6-SS yr. old cows, 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Vault One Complete Dispersal: </b><b>4 </b>Blk 5-7 yr old cows w/ 300lbs calves at side ( 3N1â€™s). <b>60</b> Blk 4-7 yr. old cows,2nd period. Start calving Sept. 1st. Weaned off an outstanding set of calves.</li>\n<li><b>Lynde Bros.: </b><b>100 </b>Blk-Bwf 5-7 yr. old cows, 2nd period. Bred Blk Angus bulls &amp; start calving Sept. 15th.</li>\n<li><b>Kiely Farms: </b><b>2</b> Blk Sim Angus 2 yr. old heifers <b>1</b> Purebred 3 yr. old Blk Angus heifer. <b>6 </b>Blk Sim-Angus 4-5 yr. old cows, 2nd or 3rd period. Been through Show-Me-Select program. All bred to Polled Hereford bull &amp; 2nd or 3rd period.</li>\n<li><b>Whitesell Farms: </b>Â <b>25 </b>Blk-Bwf 5-SS yr. old fall calving cows, 2nd period. Bred Seedstock Blk Balancer bulls &amp; start calving Sept. 1st.</li>\n<li><b>Dobson Farms: </b><b>21 </b>Blk-Bwf 3-6 yr. old fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Conrow Farms: </b><b>4 </b>Bwf 2 yr old heifers w/ 200lbs calves at side. <b>10</b> Blk 2 yr. old heifers w/ 200lbs calves at side. Heifers sell open, gentle &amp; nice quality.</li>\n<li><b>D. Wetzel Farm: </b><b>20 </b>Blk 4-7 yr. old cows w/ 11 calves at side, balance 3rd period. 20 Blk 4-7 yr. old cows w/ 10 fall calves at side, balance 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Chad Gard Farms: </b><b>20 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. Start calving Aug. 24th &amp; bred Blk &amp; Bwf bulls.</li>\n<li><b>Huenefeld Farms: </b><b>10 </b>Â Hereford 5-7 yr. old fall calving cows, 2nd period. <b>10 </b>Blk 5-7 yr. old fall calving cows, 2nd period. All cows bred Reg. Blk Angus bulls &amp; start calving Sept. 1st. Nice set of gentle cows.</li>\n<li><b>Sandy Knoll Farm: </b><b>25 </b>Â Blk-Red Balancer 3-8 yr. old cows w/ 15 calves at side, balance 3rd period. Bred Red or Blk Balancer bulls. Calves are ear tagged to match, had 1 rd. shots &amp; been cut.</li>\n<li><b>Kuhn Farms: </b><b>5 </b>Â Blk 2 yr. old heifers w/ spring calves at side<b>. 6 </b>Blk 3 yr. old cows w/ spring calves at side. <b>29 </b>Blk 4-6 yr. old w/ spring calves at side. <b>20</b> Blk SS yr. old cows w/ spring calves at side. Cows sell open, nice set of pairs.</li>\n<li><b>Double D Cattle Co.: </b><b>15</b> Blk 3-4 yr. old cows w/ 250lbs calves at side. <b>15 </b>Blk 5-7 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Henslick Farms: </b><b>25</b>Â  Blk-Bwf 3-4 yr. old fall calving cows,2nd period. <b>25 </b>Blk-Bwf 5-6 yr. old fall calving cows,2nd period. Cows bred to Sim-Angus bulls.</li>\n<li><b>Cortman Farms: </b><b>27</b>Â  Blk-Bwf 3-6 yr. old cows,3rd period. Bred Blk Gelv. Bulls.</li>\n<li><b>Hursh Farms: </b><b>8</b>Â  Blk 7-SS yr. old cows,3rd period. <b>14</b> Blk 7-SS yr old cows, 3rd period. <b>6Â  </b>Blk 3 yr. old cows, 2nd period. <b>4 </b>Blk 5 yr. old cows, 2nd period. Start calving Sept. 15th for 60 days.</li>\n<li><b>Struchtemeyer Farms Fall Calving Dispersal: </b><b>20</b>Â  Red Angus 3-6 yr. old cows, 2nd period. <b>20</b> Blk 4-7 yr. old cows,2nd period. All cows are gentle &amp; 1st time to town. Bred Horned Herf. &amp; Blk Angus bulls. Start calving Sept.1st</li>\n<li><strong>Farrell Farms: 4</strong> South Polled 3-4 yr. old cows, 2nd &amp; 3rd period.Â </li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-05-16 15:33:54','2023-05-16 15:33:54','',2209,'https://kingsvillelivestock.com/?p=5396',0,'revision','',0),(5397,2,'2023-05-16 16:18:04','2023-05-16 16:18:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-16th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5388\">Tuesday,May 16th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers-Saturday, May 20th @11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell following Show-Me-Select bred heifers </i></b><b>Â </b></p>\n<ul>\n<li><b>Jerry Gordan Farms: </b><b>1 </b>3 yr. old Reg. Sim-Angus bull, can be used on hfrs. <b>1 </b>3 yr. old Reg. Purebred Sim bull. <b>2Â  </b>2 yr.oldÂ  Reg. Sim. Bulls. All out of years of breeding</li>\n<li><b>Roberts Farms: </b><b>3 </b>18 month old Reg. Blk Angus Bulls. <b>3</b> 18 month old Comm. Blk Angus bulls</li>\n<li><b>Vault One Complete Dispersal: </b><b>1 </b>3yr. old Blk Sim bull originated off Spalding Ranch. <b>1 </b>2 yr. old Blk Angus bull</li>\n<li><b>Bar L Herefords: </b><b>3 </b>Â 14 month oldÂ  Reg. Horned Hereford bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Westfall Farms: </b><b>6 </b>Â 2.5 yr. oldÂ  Char bulls. Out of Reg. stock w/ weaning weights &amp; birth weights. Nice sollid set of bulls. Semen &amp; trich tested. .</li>\n<li><b>Dobson Farms: </b><b>1</b> 2.5 yr. old Sim-Angus bull. <b>2 </b>2 yr. old Blk-Sim Angus bulls. tested</li>\n<li><b>Hart Farms: </b><b>1</b> 2 yr. old Blk Angus bull. Out of Reg. stock, use on cows or heifers. Nice, good bull.</li>\n<li><b>B-Bar-H Cattle Co: 1</b><b>Â </b>14 month old Purebred Blk Sim-Angus bull. Can be used on hfrs. Been semen tested.</li>\n<li><b>Kuhn Farms: </b><b>1</b> 2 yr. old Blk Sim-Angus bull.</li>\n<li><b>Miller Farms: </b><b>1</b> Reg. Red Angus bull.</li>\n<li><b>Farrell Farms: </b><b>1</b> 3 yr. old Reg. South Poll bull. <strong>2</strong> 18-month-old Reg. South Poll Bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>14 </b>Â Blk-Bwf 2 yr. old heifers w/ month old calves at side.</li>\n<li><b>Mead Farms : </b><b>30 </b>Blk-Bwf 5-7 yr old cows w/ spring calves at side.</li>\n<li><b>Berry Farms: </b><b>10 </b>Blk 3-6 yr. old cows w/ spring calves at side. <b>7 </b>Blk 3-6 yr. old cows, 3rd period.</li>\n<li><b>Dirk Farms : </b><b>10 </b>Red-Rwf 2 yr. old 1000lbs bred heifers. AIâ€™d on Dec. 4th &amp; start calving Sept. 1st. Bred Red Angus. <b>14</b> Rwf 6-SS yr. old cows, 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Vault One Complete Dispersal: </b><b>4 </b>Blk 5-7 yr old cows w/ 300lbs calves at side ( 3N1â€™s). <b>60</b> Blk 4-7 yr. old cows,2nd period. Start calving Sept. 1st. Weaned off an outstanding set of calves.</li>\n<li><b>Lynde Bros.: </b><b>100 </b>Blk-Bwf 5-7 yr. old cows, 2nd period. Bred Blk Angus bulls &amp; start calving Sept. 15th.</li>\n<li><b>Kiely Farms: </b><b>2</b> Blk Sim Angus 2 yr. old heifers <b>1</b> Purebred 3 yr. old Blk Angus heifer. <b>6 </b>Blk Sim-Angus 4-5 yr. old cows, 2nd or 3rd period. Been through Show-Me-Select program. All bred to Polled Hereford bull &amp; 2nd or 3rd period.</li>\n<li><b>Whitesell Farms: </b>Â <b>25 </b>Blk-Bwf 5-SS yr. old fall calving cows, 2nd period. Bred Seedstock Blk Balancer bulls &amp; start calving Sept. 1st.</li>\n<li><b>Dobson Farms: </b><b>21 </b>Blk-Bwf 3-6 yr. old fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Conrow Farms: </b><b>4 </b>Bwf 2 yr old heifers w/ 200lbs calves at side. <b>10</b> Blk 2 yr. old heifers w/ 200lbs calves at side. Heifers sell open, gentle &amp; nice quality.</li>\n<li><b>D. Wetzel Farm: </b><b>20 </b>Blk 4-7 yr. old cows w/ 11 calves at side, balance 3rd period. 20 Blk 4-7 yr. old cows w/ 10 fall calves at side, balance 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Chad Gard Farms: </b><b>20 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. Start calving Aug. 24th &amp; bred Blk &amp; Bwf bulls.</li>\n<li><b>Huenefeld Farms: </b><b>10 </b>Â Hereford 5-7 yr. old fall calving cows, 2nd period. <b>10 </b>Blk 5-7 yr. old fall calving cows, 2nd period. All cows bred Reg. Blk Angus bulls &amp; start calving Sept. 1st. Nice set of gentle cows.</li>\n<li><b>Sandy Knoll Farm: </b><b>25 </b>Â Blk-Red Balancer 3-8 yr. old cows w/ 15 calves at side, balance 3rd period. Bred Red or Blk Balancer bulls. Calves are ear tagged to match, had 1 rd. shots &amp; been cut.</li>\n<li><b>Kuhn Farms: </b><b>5 </b>Â Blk 2 yr. old heifers w/ spring calves at side<b>. 6 </b>Blk 3 yr. old cows w/ spring calves at side. <b>29 </b>Blk 4-6 yr. old w/ spring calves at side. <b>20</b> Blk SS yr. old cows w/ spring calves at side. Cows sell open, nice set of pairs.</li>\n<li><b>Double D Cattle Co.: </b><b>15</b> Blk 3-4 yr. old cows w/ 250lbs calves at side. <b>15 </b>Blk 5-7 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Henslick Farms: </b><b>25</b>Â  Blk-Bwf 3-4 yr. old fall calving cows,2nd period. <b>25 </b>Blk-Bwf 5-6 yr. old fall calving cows,2nd period. Cows bred to Sim-Angus bulls.</li>\n<li><b>Cortman Farms: </b><b>27</b>Â  Blk-Bwf 3-6 yr. old cows,3rd period. Bred Blk Gelv. Bulls.</li>\n<li><b>Hursh Farms: </b><b>8</b>Â  Blk 7-SS yr. old cows,3rd period. <b>14</b> Blk 7-SS yr old cows, 3rd period. <b>6Â  </b>Blk 3 yr. old cows, 2nd period. <b>4 </b>Blk 5 yr. old cows, 2nd period. Start calving Sept. 15th for 60 days.</li>\n<li><b>Struchtemeyer Farms Fall Calving Dispersal: </b><b>20</b>Â  Red Angus 3-6 yr. old cows, 2nd period. <b>20</b> Blk 4-7 yr. old cows,2nd period. All cows are gentle &amp; 1st time to town. Bred Horned Herf. &amp; Blk Angus bulls. Start calving Sept.1st</li>\n<li><strong>Farrell Farms: 4</strong> South Polled 3-4 yr. old cows, 2nd &amp; 3rd period.</li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-05-16 16:18:04','2023-05-16 16:18:04','',2209,'https://kingsvillelivestock.com/?p=5397',0,'revision','',0),(5398,2,'2023-05-16 16:59:47','2023-05-16 16:59:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-16th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5388\">Tuesday,May 16th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers-Saturday, May 20th @11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell following Show-Me-Select bred heifers </i></b><b>Â </b></p>\n<ul>\n<li><b>Jerry Gordan Farms: </b><b>1 </b>3 yr. old Reg. Sim-Angus bull, can be used on hfrs. <b>1 </b>3 yr. old Reg. Purebred Sim bull. <b>2Â  </b>2 yr.oldÂ  Reg. Sim. Bulls. All out of years of breeding</li>\n<li><b>Roberts Farms: </b><b>3 </b>18 month old Reg. Blk Angus Bulls. <b>3</b> 18 month old Comm. Blk Angus bulls</li>\n<li><b>Vault One Complete Dispersal: </b><b>1 </b>3yr. old Blk Sim bull originated off Spalding Ranch. <b>1 </b>2 yr. old Blk Angus bull</li>\n<li><b>Bar L Herefords: </b><b>3 </b>Â 14 month oldÂ  Reg. Horned Hereford bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Westfall Farms: </b><b>6 </b>Â 2.5 yr. oldÂ  Char bulls. Out of Reg. stock w/ weaning weights &amp; birth weights. Nice sollid set of bulls. Semen &amp; trich tested. .</li>\n<li><b>Dobson Farms: </b><b>1</b> 2.5 yr. old Sim-Angus bull. <b>2 </b>2 yr. old Blk-Sim Angus bulls. tested</li>\n<li><b>Hart Farms: </b><b>1</b> 2 yr. old Blk Angus bull. Out of Reg. stock, use on cows or heifers. Nice, good bull.</li>\n<li><b>B-Bar-H Cattle Co: 1</b><b>Â </b>14 month old Purebred Blk Sim-Angus bull. Can be used on hfrs. Been semen tested.</li>\n<li><b>Kuhn Farms: </b><b>1</b> 2 yr. old Blk Sim-Angus bull.</li>\n<li><b>Miller Farms: </b><b>1</b> Reg. Red Angus bull.</li>\n<li><b>Farrell Farms: </b><b>1</b> 3 yr. old Reg. South Poll bull. <strong>2</strong> 18-month-old Reg. South Poll Bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>14 </b>Â Blk-Bwf 2 yr. old heifers w/ month old calves at side.</li>\n<li><b>Mead Farms : </b><b>30 </b>Blk-Bwf 5-7 yr old cows w/ spring calves at side.</li>\n<li><b>Berry Farms: </b><b>10 </b>Blk 3-6 yr. old cows w/ spring calves at side. <b>7 </b>Blk 3-6 yr. old cows, 3rd period.</li>\n<li><b>Dirk Farms : </b><b>10 </b>Red-Rwf 2 yr. old 1000lbs bred heifers. AIâ€™d on Dec. 4th &amp; start calving Sept. 1st. Bred Red Angus. <b>14</b> Rwf 6-SS yr. old cows, 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Vault One Complete Dispersal: </b><b>4 </b>Blk 5-7 yr old cows w/ 300lbs calves at side ( 3N1â€™s). <b>60</b> Blk 4-7 yr. old cows,2nd period. Start calving Sept. 1st. Weaned off an outstanding set of calves.</li>\n<li><b>Lynde Bros.: </b><b>100 </b>Blk-Bwf 5-7 yr. old cows, 2nd period. Bred Blk Angus bulls &amp; start calving Sept. 15th.</li>\n<li><b>Kiely Farms: </b><b>2</b> Blk Sim Angus 2 yr. old heifers <b>1</b> Purebred 3 yr. old Blk Angus heifer. <b>6 </b>Blk Sim-Angus 4-5 yr. old cows, 2nd or 3rd period. Been through Show-Me-Select program. All bred to Polled Hereford bull &amp; 2nd or 3rd period.</li>\n<li><b>Whitesell Farms: </b>Â <b>25 </b>Blk-Bwf 5-SS yr. old fall calving cows, 2nd period. Bred Seedstock Blk Balancer bulls &amp; start calving Sept. 1st.</li>\n<li><b>Dobson Farms: </b><b>21 </b>Blk-Bwf 3-6 yr. old fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Conrow Farms: </b><b>4 </b>Bwf 2 yr old heifers w/ 200lbs calves at side. <b>10</b> Blk 2 yr. old heifers w/ 200lbs calves at side. Heifers sell open, gentle &amp; nice quality.</li>\n<li><b>D. Wetzel Farm: </b><b>20 </b>Blk 4-7 yr. old cows w/ 11 calves at side, balance 3rd period. 20 Blk 4-7 yr. old cows w/ 10 fall calves at side, balance 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Chad Gard Farms: </b><b>20 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. Start calving Aug. 24th &amp; bred Blk &amp; Bwf bulls.</li>\n<li><b>Huenefeld Farms: </b><b>10 </b>Â Hereford 5-7 yr. old fall calving cows, 2nd period. <b>10 </b>Blk 5-7 yr. old fall calving cows, 2nd period. All cows bred Reg. Blk Angus bulls &amp; start calving Sept. 1st. Nice set of gentle cows.</li>\n<li><b>Sandy Knoll Farm: </b><b>25 </b>Â Blk-Red Balancer 3-8 yr. old cows w/ 15 calves at side, balance 3rd period. Bred Red or Blk Balancer bulls. Calves are ear tagged to match, had 1 rd. shots &amp; been cut.</li>\n<li><b>Kuhn Farms: </b><b>5 </b>Â Blk 2 yr. old heifers w/ spring calves at side<b>. 6 </b>Blk 3 yr. old cows w/ spring calves at side. <b>29 </b>Blk 4-6 yr. old w/ spring calves at side. <b>20</b> Blk SS yr. old cows w/ spring calves at side. Cows sell open, nice set of pairs.</li>\n<li><b>Double D Cattle Co.: </b><b>15</b> Blk 3-4 yr. old cows w/ 250lbs calves at side. <b>15 </b>Blk 5-7 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Henslick Farms: </b><b>25</b>Â  Blk-Bwf 3-4 yr. old fall calving cows,2nd period. <b>25 </b>Blk-Bwf 5-6 yr. old fall calving cows,2nd period. Cows bred to Sim-Angus bulls.</li>\n<li><b>Cortman Farms: </b><b>27</b>Â  Blk-Bwf 3-6 yr. old cows,3rd period. Bred Blk Gelv. Bulls.</li>\n<li><b>Hursh Farms: </b><b>8</b>Â  Blk 7-SS yr. old cows,3rd period. <b>14</b> Blk 7-SS yr old cows, 3rd period. <b>6Â  </b>Blk 3 yr. old cows, 2nd period. <b>4 </b>Blk 5 yr. old cows, 2nd period. Start calving Sept. 15th for 60 days.</li>\n<li><b>Struchtemeyer Farms Fall Calving Dispersal: </b><b>20</b>Â  Red Angus 3-6 yr. old cows, 2nd period. <b>20</b> Blk 4-7 yr. old cows,2nd period. All cows are gentle &amp; 1st time to town. Bred Horned Herf. &amp; Blk Angus bulls. Start calving Sept.1st</li>\n<li><strong>Farrell Farms: 4</strong> South Polled 3-4 yr. old cows, 2nd &amp; 3rd period.</li>\n<li><strong>Barnett Farms: 6</strong> Blk 4-5 yr. old cows w/2-month-old calves at side. <strong>12</strong> Blk 4-5 yr. old cows, 2nd period. <strong>6</strong> Blk SSS yr. old cows, 2nd period. Cows bred back to Blk Angus or Hereford Bulls.Â </li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-05-16 16:59:47','2023-05-16 16:59:47','',2209,'https://kingsvillelivestock.com/?p=5398',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (5399,2,'2023-05-17 16:01:54','2023-05-17 16:01:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-16th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5388\">Tuesday,May 16th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers-Saturday, May 20th @11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell following Show-Me-Select bred heifers </i></b><b>Â </b></p>\n<ul>\n<li><b>Jerry Gordan Farms: </b><b>1 </b>3 yr. old Reg. Sim-Angus bull, can be used on hfrs. <b>1 </b>3 yr. old Reg. Purebred Sim bull. <b>2Â  </b>2 yr.oldÂ  Reg. Sim. Bulls. All out of years of breeding</li>\n<li><b>Roberts Farms: </b><b>3 </b>18 month old Reg. Blk Angus Bulls. <b>3</b> 18 month old Comm. Blk Angus bulls</li>\n<li><b>Vault One Complete Dispersal: </b><b>1 </b>3yr. old Blk Sim bull originated off Spalding Ranch. <b>1 </b>2 yr. old Blk Angus bull</li>\n<li><b>Bar L Herefords: </b><b>3 </b>Â 14 month oldÂ  Reg. Horned Hereford bull. All bulls semen &amp; trich tested. Front end set of Horned Hereford bulls.</li>\n<li><b>Westfall Farms: </b><b>6 </b>Â 2.5 yr. oldÂ  Char bulls. Out of Reg. stock w/ weaning weights &amp; birth weights. Nice sollid set of bulls. Semen &amp; trich tested. .</li>\n<li><b>Dobson Farms: </b><b>1</b> 2.5 yr. old Sim-Angus bull. <b>2 </b>2 yr. old Blk-Sim Angus bulls. tested</li>\n<li><b>Hart Farms: </b><b>1</b> 2 yr. old Blk Angus bull. Out of Reg. stock, use on cows or heifers. Nice, good bull.</li>\n<li><b>B-Bar-H Cattle Co: 1</b><b>Â </b>14 month old Purebred Blk Sim-Angus bull. Can be used on hfrs. Been semen tested.</li>\n<li><b>Kuhn Farms: </b><b>1</b> 2 yr. old Blk Sim-Angus bull.</li>\n<li><b>Miller Farms: </b><b>1</b> Reg. Red Angus bull.</li>\n<li><b>Farrell Farms: </b><b>1</b> 3 yr. old Reg. South Poll bull. <strong>2</strong> 18-month-old Reg. South Poll Bulls.</li>\n<li><b>Rhodus Farms: </b><b>4</b> 18 month old Sim-Angus bulls. AI sired by Big Timber. All bulls are gentle &amp; have 65-72lbs BWT</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>14 </b>Â Blk-Bwf 2 yr. old heifers w/ month old calves at side.</li>\n<li><b>Mead Farms : </b><b>30 </b>Blk-Bwf 5-7 yr old cows w/ spring calves at side.</li>\n<li><b>Berry Farms: </b><b>10 </b>Blk 3-6 yr. old cows w/ spring calves at side. <b>7 </b>Blk 3-6 yr. old cows, 3rd period.</li>\n<li><b>Dirk Farms : </b><b>10 </b>Red-Rwf 2 yr. old 1000lbs bred heifers. AIâ€™d on Dec. 4th &amp; start calving Sept. 1st. Bred Red Angus. <b>14</b> Rwf 6-SS yr. old cows, 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Vault One Complete Dispersal: </b><b>4 </b>Blk 5-7 yr old cows w/ 300lbs calves at side ( 3N1â€™s). <b>60</b> Blk 4-7 yr. old cows,2nd period. Start calving Sept. 1st. Weaned off an outstanding set of calves.</li>\n<li><b>Lynde Bros.: </b><b>100 </b>Blk-Bwf 5-7 yr. old cows, 2nd period. Bred Blk Angus bulls &amp; start calving Sept. 15th.</li>\n<li><b>Kiely Farms: </b><b>2</b> Blk Sim Angus 2 yr. old heifers <b>1</b> Purebred 3 yr. old Blk Angus heifer. <b>6 </b>Blk Sim-Angus 4-5 yr. old cows, 2nd or 3rd period. Been through Show-Me-Select program. All bred to Polled Hereford bull &amp; 2nd or 3rd period.</li>\n<li><b>Whitesell Farms: </b>Â <b>25 </b>Blk-Bwf 5-SS yr. old fall calving cows, 2nd period. Bred Seedstock Blk Balancer bulls &amp; start calving Sept. 1st.</li>\n<li><b>Dobson Farms: </b><b>21 </b>Blk-Bwf 3-6 yr. old fall calving cows, 2nd period. Bred Sim-Angus bulls.</li>\n<li><b>Conrow Farms: </b><b>4 </b>Bwf 2 yr old heifers w/ 200lbs calves at side. <b>10</b> Blk 2 yr. old heifers w/ 200lbs calves at side. Heifers sell open, gentle &amp; nice quality.</li>\n<li><b>D. Wetzel Farm: </b><b>20 </b>Blk 4-7 yr. old cows w/ 11 calves at side, balance 3rd period. 20 Blk 4-7 yr. old cows w/ 10 fall calves at side, balance 2nd period. Bulls turned in Dec. 1st.</li>\n<li><b>Chad Gard Farms: </b><b>20 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. Start calving Aug. 24th &amp; bred Blk &amp; Bwf bulls.</li>\n<li><b>Huenefeld Farms: </b><b>10 </b>Â Hereford 5-7 yr. old fall calving cows, 2nd period. <b>10 </b>Blk 5-7 yr. old fall calving cows, 2nd period. All cows bred Reg. Blk Angus bulls &amp; start calving Sept. 1st. Nice set of gentle cows.</li>\n<li><b>Sandy Knoll Farm: </b><b>25 </b>Â Blk-Red Balancer 3-8 yr. old cows w/ 15 calves at side, balance 3rd period. Bred Red or Blk Balancer bulls. Calves are ear tagged to match, had 1 rd. shots &amp; been cut.</li>\n<li><b>Kuhn Farms: </b><b>5 </b>Â Blk 2 yr. old heifers w/ spring calves at side<b>. 6 </b>Blk 3 yr. old cows w/ spring calves at side. <b>29 </b>Blk 4-6 yr. old w/ spring calves at side. <b>20</b> Blk SS yr. old cows w/ spring calves at side. Cows sell open, nice set of pairs.</li>\n<li><b>Double D Cattle Co.: </b><b>15</b> Blk 3-4 yr. old cows w/ 250lbs calves at side. <b>15 </b>Blk 5-7 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Henslick Farms: </b><b>25</b>Â  Blk-Bwf 3-4 yr. old fall calving cows,2nd period. <b>25 </b>Blk-Bwf 5-6 yr. old fall calving cows,2nd period. Cows bred to Sim-Angus bulls.</li>\n<li><b>Cortman Farms: </b><b>27</b>Â  Blk-Bwf 3-6 yr. old cows,3rd period. Bred Blk Gelv. Bulls.</li>\n<li><b>Hursh Farms: </b><b>8</b>Â  Blk 7-SS yr. old cows,3rd period. <b>14</b> Blk 7-SS yr old cows, 3rd period. <b>6Â  </b>Blk 3 yr. old cows, 2nd period. <b>4 </b>Blk 5 yr. old cows, 2nd period. Start calving Sept. 15th for 60 days.</li>\n<li><b>Struchtemeyer Farms Fall Calving Dispersal: </b><b>20</b>Â  Red Angus 3-6 yr. old cows, 2nd period. <b>20</b> Blk 4-7 yr. old cows,2nd period. All cows are gentle &amp; 1st time to town. Bred Horned Herf. &amp; Blk Angus bulls. Start calving Sept.1st</li>\n<li><strong>Farrell Farms: 4</strong> South Polled 3-4 yr. old cows, 2nd &amp; 3rd period.</li>\n<li><strong>Barnett Farms: 6</strong> Blk 4-5 yr. old cows w/2-month-old calves at side. <strong>12</strong> Blk 4-5 yr. old cows, 2nd period. <strong>6</strong> Blk SSS yr. old cows, 2nd period. Cows bred back to Blk Angus or Hereford Bulls.</li>\n</ul>\n<p><b><i>Â </i></b></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-05-17 16:01:54','2023-05-17 16:01:54','',2209,'https://kingsvillelivestock.com/?p=5399',0,'revision','',0),(5400,2,'2023-05-17 16:02:56','2023-05-17 16:02:56','','May 20, 2023 Cow Sale','','inherit','closed','closed','','may-20-2023-cow-sale-5','','','2023-05-17 16:02:56','2023-05-17 16:02:56','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale-4.pdf',0,'attachment','application/pdf',0),(5401,2,'2023-05-17 16:03:03','2023-05-17 16:03:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifer saleÂ  <a href=\"https://drive.google.com/drive/folders/1QKcqtuTzbc-C5zXb6dDjrbwgMwiIu06s?usp=share_link\">Reg papers for bulls and pictures</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale-4.pdf\" rel=\"attachment wp-att-5400\">May 20, 2023 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 fall calving catalogÂ Â Â Â </a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 27th @ 9:30 am<br /></strong>Braughton Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-05-17 16:03:03','2023-05-17 16:03:03','',639,'https://kingsvillelivestock.com/?p=5401',0,'revision','',0),(5402,2,'2023-05-17 16:03:39','2023-05-17 16:03:39','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 20th @ 11 am<br /></strong>Special Cow &amp; Bull Sale in conjunction with Show-Me-Select bred heifersÂ  <a href=\"https://drive.google.com/drive/folders/1QKcqtuTzbc-C5zXb6dDjrbwgMwiIu06s?usp=share_link\">Reg. papers &amp; pictures for bulls </a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/May-20-2023-Cow-Sale-4.pdf\" rel=\"attachment wp-att-5400\">May 20, 2023 Cow Sale</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/04/2023-fall-calving-catalog.pdf\" rel=\"attachment wp-att-5327\">2023 Show-Me-Select fall calving catalog</a></p>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 27th @ 9:30 am<br /></strong>Braughton Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-05-17 16:03:39','2023-05-17 16:03:39','',1967,'https://kingsvillelivestock.com/?p=5402',0,'revision','',0),(5403,2,'2023-05-17 16:11:58','2023-05-17 16:11:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 16, 2023, </strong>3735 hd; Last week, 4755 hd; 2231 a year ago. Compared to last week, load lots of yearlings sold steady to firm, steer calves sold $5 higher &amp; heifer calves sold $5-$10 higher.Â  Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$266.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$249.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$183.00-$224.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$209.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$183.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$253.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$221.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$224.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$155.00-$199.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$143.00-$159.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $111.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $134.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">781lbs @$217.35</td>\n</tr>\n<tr>\n<td style=\"width: 137.484px;\">Steers</td>\n<td style=\"width: 146.516px;\">823lbs @$209.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">890lbs @$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">977lbs@$183.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">729lbs@$206.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 16, 2023 - Market Report','','publish','closed','open','','may-16-2023-market-report','','','2023-05-17 16:12:01','2023-05-17 16:12:01','',0,'https://kingsvillelivestock.com/?p=5403',0,'post','',0),(5405,2,'2023-05-17 16:11:58','2023-05-17 16:11:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 16, 2023, </strong>3735 hd; Last week, 4755 hd; 2231 a year ago. Compared to last week, load lots of yearlings sold steady to firm, steer calves sold $5 higher &amp; heifer calves sold $5-$10 higher.Â  Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$266.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$249.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$183.00-$224.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$209.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$183.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$253.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$221.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$224.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$155.00-$199.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$143.00-$159.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $111.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $134.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">781lbs @$217.35</td>\n</tr>\n<tr>\n<td style=\"width: 137.484px;\">Steers</td>\n<td style=\"width: 146.516px;\">823lbs @$209.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">890lbs @$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">977lbs@$183.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">729lbs@$206.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 16, 2023 - Market Report','','inherit','closed','closed','','5403-revision-v1','','','2023-05-17 16:11:58','2023-05-17 16:11:58','',5403,'https://kingsvillelivestock.com/?p=5405',0,'revision','',0),(5406,2,'2023-05-17 16:11:58','2023-05-17 16:11:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 16, 2023, </strong>3735 hd; Last week, 4755 hd; 2231 a year ago. Compared to last week, load lots of yearlings sold steady to firm, steer calves sold $5 higher &amp; heifer calves sold $5-$10 higher.Â  Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$266.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$249.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$183.00-$224.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$209.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$183.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$253.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$221.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$224.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$155.00-$199.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$143.00-$159.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $111.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $134.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">781lbs @$217.35</td>\n</tr>\n<tr>\n<td style=\"width: 137.484px;\">Steers</td>\n<td style=\"width: 146.516px;\">823lbs @$209.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">890lbs @$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">977lbs@$183.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">729lbs@$206.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 9, 2023 - Market Report','','inherit','closed','closed','','5403-revision-v1','','','2023-05-17 16:11:58','2023-05-17 16:11:58','',5403,'https://kingsvillelivestock.com/?p=5406',0,'revision','',0),(5407,2,'2023-05-17 16:12:01','2023-05-17 16:12:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 16, 2023, </strong>3735 hd; Last week, 4755 hd; 2231 a year ago. Compared to last week, load lots of yearlings sold steady to firm, steer calves sold $5 higher &amp; heifer calves sold $5-$10 higher.Â  Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$266.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$249.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$183.00-$224.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$209.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$165.00-$183.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$253.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$221.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$224.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$155.00-$199.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$143.00-$159.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $111.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $134.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 358px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">781lbs @$217.35</td>\n</tr>\n<tr>\n<td style=\"width: 137.484px;\">Steers</td>\n<td style=\"width: 146.516px;\">823lbs @$209.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">890lbs @$185.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">977lbs@$183.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">729lbs@$206.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 16, 2023 - Market Report','','inherit','closed','closed','','5403-revision-v1','','','2023-05-17 16:12:01','2023-05-17 16:12:01','',5403,'https://kingsvillelivestock.com/?p=5407',0,'revision','',0),(5408,2,'2023-05-17 17:49:52','2023-05-17 17:49:52','','Memorial Day 2023 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2023-detailed-consignment-list','','','2023-05-17 17:49:52','2023-05-17 17:49:52','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List.pdf',0,'attachment','application/pdf',0),(5409,2,'2023-05-17 17:50:05','2023-05-17 17:50:05','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Auction-May-27th-Kingsville.pdf\" rel=\"attachment wp-att-5377\">Donna Braughton Auction - May 27th -9:30am- Kingsville</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/9sYoMqoNcBVMYJht8\">Braughton Photos</a></p>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/2023-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-5368\">2023 Memorial Day Sale Flyer</a></p>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List.pdf\" rel=\"attachment wp-att-5408\">Memorial Day 2023 Detailed Consignment List</a></p>\n<p style=\"text-align: left;\"><a href=\"https://drive.google.com/drive/folders/1W8XIBwolDf3Uzhn-XQ0lbGJp1tklXuGx?usp=share_link\">Memorial Weekend Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-05-17 17:50:05','2023-05-17 17:50:05','',1450,'https://kingsvillelivestock.com/?p=5409',0,'revision','',0),(5410,2,'2023-05-19 22:14:35','2023-05-19 22:14:35','','Memorial Day 2023 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2023-detailed-consignment-list-2','','','2023-05-19 22:14:35','2023-05-19 22:14:35','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-1.pdf',0,'attachment','application/pdf',0),(5411,2,'2023-05-19 22:14:42','2023-05-19 22:14:42','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Auction-May-27th-Kingsville.pdf\" rel=\"attachment wp-att-5377\">Donna Braughton Auction - May 27th -9:30am- Kingsville</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/9sYoMqoNcBVMYJht8\">Braughton Photos</a></p>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/2023-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-5368\">2023 Memorial Day Sale Flyer</a></p>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-1.pdf\" rel=\"attachment wp-att-5410\">Memorial Day 2023 Detailed Consignment List</a></p>\n<p style=\"text-align: left;\"><a href=\"https://drive.google.com/drive/folders/1W8XIBwolDf3Uzhn-XQ0lbGJp1tklXuGx?usp=share_link\">Memorial Weekend Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-05-19 22:14:42','2023-05-19 22:14:42','',1450,'https://kingsvillelivestock.com/?p=5411',0,'revision','',0),(5412,2,'2023-05-19 22:17:09','2023-05-19 22:17:09','','Memorial Day 2023 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2023-detailed-consignment-list-3','','','2023-05-19 22:17:09','2023-05-19 22:17:09','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-2.pdf',0,'attachment','application/pdf',0),(5413,2,'2023-05-19 22:17:14','2023-05-19 22:17:14','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Auction-May-27th-Kingsville.pdf\" rel=\"attachment wp-att-5377\">Donna Braughton Auction - May 27th -9:30am- Kingsville</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/9sYoMqoNcBVMYJht8\">Braughton Photos</a></p>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/2023-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-5368\">2023 Memorial Day Sale Flyer</a></p>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-2.pdf\" rel=\"attachment wp-att-5412\">Memorial Day 2023 Detailed Consignment List</a></p>\n<p style=\"text-align: left;\"><a href=\"https://drive.google.com/drive/folders/1W8XIBwolDf3Uzhn-XQ0lbGJp1tklXuGx?usp=share_link\">Memorial Weekend Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-05-19 22:17:14','2023-05-19 22:17:14','',1450,'https://kingsvillelivestock.com/?p=5413',0,'revision','',0),(5414,2,'2023-05-22 17:04:24','2023-05-22 17:04:24','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 27th @ 9:30 am<br /></strong>Braughton Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-05-22 17:04:24','2023-05-22 17:04:24','',639,'https://kingsvillelivestock.com/?p=5414',0,'revision','',0),(5415,2,'2023-05-22 17:05:07','2023-05-22 17:05:07','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 23rd @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<p><strong>May 27th @ 9:30 am<br /></strong>Braughton Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-05-22 17:05:07','2023-05-22 17:05:07','',1967,'https://kingsvillelivestock.com/?p=5415',0,'revision','',0),(5416,2,'2023-05-22 17:05:26','2023-05-22 17:05:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-16th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5388\">Tuesday,May 16th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-05-22 17:05:26','2023-05-22 17:05:26','',2209,'https://kingsvillelivestock.com/?p=5416',0,'revision','',0),(5417,2,'2023-05-22 19:05:34','2023-05-22 19:05:34','','Tuesday,May 23rd Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymay-23rd-feeder-cattle-consignments','','','2023-05-22 19:05:34','2023-05-22 19:05:34','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-23rd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5418,2,'2023-05-22 19:05:40','2023-05-22 19:05:40','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-23rd-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5417\">Tuesday,May 23rd Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-05-22 19:05:40','2023-05-22 19:05:40','',2209,'https://kingsvillelivestock.com/?p=5418',0,'revision','',0),(5419,2,'2023-05-22 19:06:18','2023-05-22 19:06:18','','Memorial Day 2023 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2023-detailed-consignment-list-4','','','2023-05-22 19:06:18','2023-05-22 19:06:18','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-3.pdf',0,'attachment','application/pdf',0),(5420,2,'2023-05-22 19:06:25','2023-05-22 19:06:25','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Auction-May-27th-Kingsville.pdf\" rel=\"attachment wp-att-5377\">Donna Braughton Auction - May 27th -9:30am- Kingsville</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/9sYoMqoNcBVMYJht8\">Braughton Photos</a></p>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/2023-Memorial-Day-Sale-Flyer.pdf\" rel=\"attachment wp-att-5368\">2023 Memorial Day Sale Flyer</a></p>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-3.pdf\" rel=\"attachment wp-att-5419\">Memorial Day 2023 Detailed Consignment List</a></p>\n<p style=\"text-align: left;\"><a href=\"https://drive.google.com/drive/folders/1W8XIBwolDf3Uzhn-XQ0lbGJp1tklXuGx?usp=share_link\">Memorial Weekend Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-05-22 19:06:25','2023-05-22 19:06:25','',1450,'https://kingsvillelivestock.com/?p=5420',0,'revision','',0),(5421,2,'2023-05-22 20:09:59','2023-05-22 20:09:59','','Memorial Day 2023 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2023-detailed-consignment-list-5','','','2023-05-22 20:09:59','2023-05-22 20:09:59','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-4.pdf',0,'attachment','application/pdf',0),(5422,2,'2023-05-22 20:10:05','2023-05-22 20:10:05','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Auction-May-27th-Kingsville.pdf\" rel=\"attachment wp-att-5377\">Donna Braughton Auction - May 27th -9:30am- Kingsville</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/9sYoMqoNcBVMYJht8\">Braughton Photos</a></p>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-4.pdf\" rel=\"attachment wp-att-5421\">Memorial Day 2023 Detailed Consignment List</a></p>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-3.pdf\" rel=\"attachment wp-att-5419\">Memorial Day 2023 Detailed Consignment List</a></p>\n<p style=\"text-align: left;\"><a href=\"https://drive.google.com/drive/folders/1W8XIBwolDf3Uzhn-XQ0lbGJp1tklXuGx?usp=share_link\">Memorial Weekend Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-05-22 20:10:05','2023-05-22 20:10:05','',1450,'https://kingsvillelivestock.com/?p=5422',0,'revision','',0),(5424,2,'2023-05-24 14:19:57','2023-05-24 14:19:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 27th @ 9:30 am<br /></strong>Braughton Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-05-24 14:19:57','2023-05-24 14:19:57','',639,'https://kingsvillelivestock.com/?p=5424',0,'revision','',0),(5425,2,'2023-05-24 14:20:46','2023-05-24 14:20:46','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 27th @ 9:30 am<br /></strong>Braughton Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-05-24 14:20:46','2023-05-24 14:20:46','',1967,'https://kingsvillelivestock.com/?p=5425',0,'revision','',0),(5426,2,'2023-05-24 17:39:31','2023-05-24 17:39:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 23, 2023, </strong>2962 hd; Last week, 3735 hd; 2702 a year ago. All classes of heifers sold $3-$6 higher, and 550-600lbs steers sold $5-$8 higher. All other steers sold steady.Â  Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$289.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$289.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$273.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$250.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$217.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$179.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$218.00-$277.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$263.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$182.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$182.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$170.00-$181.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$147.00-$177.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$101.00 - $115.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $100.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $87.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $133.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">598lbs @$264.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">684lbs @$225.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">709lbs @$214.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">709lbs@$219.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 23, 2023 - Market Report','','publish','closed','open','','may-23-2023-market-report','','','2023-05-24 17:39:34','2023-05-24 17:39:34','',0,'https://kingsvillelivestock.com/?p=5426',0,'post','',0),(5428,2,'2023-05-24 17:39:31','2023-05-24 17:39:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 23, 2023, </strong>2962 hd; Last week, 3735 hd; 2702 a year ago. All classes of heifers sold $3-$6 higher, and 550-600lbs steers sold $5-$8 higher. All other steers sold steady.Â  Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$289.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$289.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$273.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$250.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$217.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$179.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$218.00-$277.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$263.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$182.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$182.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$170.00-$181.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$147.00-$177.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$101.00 - $115.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $100.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $87.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $133.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">598lbs @$264.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">684lbs @$225.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">709lbs @$214.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">709lbs@$219.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 23, 2023 - Market Report','','inherit','closed','closed','','5426-revision-v1','','','2023-05-24 17:39:31','2023-05-24 17:39:31','',5426,'https://kingsvillelivestock.com/?p=5428',0,'revision','',0),(5429,2,'2023-05-24 17:39:31','2023-05-24 17:39:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 23, 2023, </strong>2962 hd; Last week, 3735 hd; 2702 a year ago. All classes of heifers sold $3-$6 higher, and 550-600lbs steers sold $5-$8 higher. All other steers sold steady.Â  Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$289.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$289.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$273.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$250.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$217.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$179.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$218.00-$277.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$263.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$182.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$182.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$170.00-$181.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$147.00-$177.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$101.00 - $115.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $100.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $87.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $133.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">598lbs @$264.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">684lbs @$225.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">709lbs @$214.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">709lbs@$219.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 16, 2023 - Market Report','','inherit','closed','closed','','5426-revision-v1','','','2023-05-24 17:39:31','2023-05-24 17:39:31','',5426,'https://kingsvillelivestock.com/?p=5429',0,'revision','',0),(5430,2,'2023-05-24 17:39:34','2023-05-24 17:39:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 23, 2023, </strong>2962 hd; Last week, 3735 hd; 2702 a year ago. All classes of heifers sold $3-$6 higher, and 550-600lbs steers sold $5-$8 higher. All other steers sold steady.Â  Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$289.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$289.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$273.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$250.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$217.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$179.00-$207.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$218.00-$277.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$263.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$182.00-$227.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$182.00-$219.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$170.00-$181.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$147.00-$177.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$101.00 - $115.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $100.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $87.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $133.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">598lbs @$264.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">684lbs @$225.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">709lbs @$214.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">709lbs@$219.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 23, 2023 - Market Report','','inherit','closed','closed','','5426-revision-v1','','','2023-05-24 17:39:34','2023-05-24 17:39:34','',5426,'https://kingsvillelivestock.com/?p=5430',0,'revision','',0),(5431,2,'2023-05-24 19:16:42','2023-05-24 19:16:42','','Memorial Day 2023 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2023-detailed-consignment-list-6','','','2023-05-24 19:16:42','2023-05-24 19:16:42','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-5.pdf',0,'attachment','application/pdf',0),(5432,2,'2023-05-24 19:16:50','2023-05-24 19:16:50','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Auction-May-27th-Kingsville.pdf\" rel=\"attachment wp-att-5377\">Donna Braughton Auction - May 27th -9:30am- Kingsville</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/9sYoMqoNcBVMYJht8\">Braughton Photos</a></p>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-5.pdf\" rel=\"attachment wp-att-5431\">Memorial Day 2023 Detailed Consignment List</a></p>\n<p style=\"text-align: left;\"><a href=\"https://drive.google.com/drive/folders/1W8XIBwolDf3Uzhn-XQ0lbGJp1tklXuGx?usp=share_link\">Memorial Weekend Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-05-24 19:16:50','2023-05-24 19:16:50','',1450,'https://kingsvillelivestock.com/?p=5432',0,'revision','',0),(5433,2,'2023-05-24 19:51:24','2023-05-24 19:51:24','','Memorial Day 2023 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2023-detailed-consignment-list-7','','','2023-05-24 19:51:24','2023-05-24 19:51:24','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-6.pdf',0,'attachment','application/pdf',0),(5434,2,'2023-05-24 19:51:32','2023-05-24 19:51:32','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Auction-May-27th-Kingsville.pdf\" rel=\"attachment wp-att-5377\">Donna Braughton Auction - May 27th -9:30am- Kingsville</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/9sYoMqoNcBVMYJht8\">Braughton Photos</a></p>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-6.pdf\" rel=\"attachment wp-att-5433\">Memorial Day 2023 Detailed Consignment List</a></p>\n<p style=\"text-align: left;\"><a href=\"https://drive.google.com/drive/folders/1W8XIBwolDf3Uzhn-XQ0lbGJp1tklXuGx?usp=share_link\">Memorial Weekend Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-05-24 19:51:32','2023-05-24 19:51:32','',1450,'https://kingsvillelivestock.com/?p=5434',0,'revision','',0),(5435,2,'2023-05-24 21:24:16','2023-05-24 21:24:16','','Memorial Day 2023 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2023-detailed-consignment-list-8','','','2023-05-24 21:24:16','2023-05-24 21:24:16','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-7.pdf',0,'attachment','application/pdf',0),(5436,2,'2023-05-24 21:24:23','2023-05-24 21:24:23','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Auction-May-27th-Kingsville.pdf\" rel=\"attachment wp-att-5377\">Donna Braughton Auction - May 27th -9:30am- Kingsville</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/9sYoMqoNcBVMYJht8\">Braughton Photos</a></p>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-7.pdf\" rel=\"attachment wp-att-5435\">Memorial Day 2023 Detailed Consignment List</a></p>\n<p style=\"text-align: left;\"><a href=\"https://drive.google.com/drive/folders/1W8XIBwolDf3Uzhn-XQ0lbGJp1tklXuGx?usp=share_link\">Memorial Weekend Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-05-24 21:24:23','2023-05-24 21:24:23','',1450,'https://kingsvillelivestock.com/?p=5436',0,'revision','',0),(5437,2,'2023-05-25 16:20:05','2023-05-25 16:20:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 27th @ 9:30 am<br /></strong>Braughton Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-05-25 16:20:05','2023-05-25 16:20:05','',639,'https://kingsvillelivestock.com/?p=5437',0,'revision','',0),(5438,2,'2023-05-25 16:20:43','2023-05-25 16:20:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 27th @ 9:30 am<br /></strong>Braughton Auction-For more info visit the Anstine Auction tab!</p>\n<p><strong>May 28th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-05-25 16:20:43','2023-05-25 16:20:43','',1967,'https://kingsvillelivestock.com/?p=5438',0,'revision','',0),(5439,2,'2023-05-25 16:49:30','2023-05-25 16:49:30','','Memorial Day 2023 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2023-detailed-consignment-list-9','','','2023-05-25 16:49:30','2023-05-25 16:49:30','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-8.pdf',0,'attachment','application/pdf',0),(5440,2,'2023-05-25 16:49:36','2023-05-25 16:49:36','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Auction-May-27th-Kingsville.pdf\" rel=\"attachment wp-att-5377\">Donna Braughton Auction - May 27th -9:30am- Kingsville</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/9sYoMqoNcBVMYJht8\">Braughton Photos</a></p>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-8.pdf\" rel=\"attachment wp-att-5439\">Memorial Day 2023 Detailed Consignment List</a></p>\n<p style=\"text-align: left;\"><a href=\"https://drive.google.com/drive/folders/1W8XIBwolDf3Uzhn-XQ0lbGJp1tklXuGx?usp=share_link\">Memorial Weekend Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-05-25 16:49:36','2023-05-25 16:49:36','',1450,'https://kingsvillelivestock.com/?p=5440',0,'revision','',0),(5441,2,'2023-05-25 19:31:47','2023-05-25 19:31:47','','Memorial Day 2023 Detailed Consignment List','','inherit','closed','closed','','memorial-day-2023-detailed-consignment-list-10','','','2023-05-25 19:31:47','2023-05-25 19:31:47','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-9.pdf',0,'attachment','application/pdf',0),(5442,2,'2023-05-25 19:31:54','2023-05-25 19:31:54','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Auction-May-27th-Kingsville.pdf\" rel=\"attachment wp-att-5377\">Donna Braughton Auction - May 27th -9:30am- Kingsville</a></p>\n<p style=\"text-align: left;\"><a href=\"https://photos.app.goo.gl/9sYoMqoNcBVMYJht8\">Braughton Photos</a></p>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-9.pdf\" rel=\"attachment wp-att-5441\">Memorial Day 2023 Detailed Consignment List</a></p>\n<p style=\"text-align: left;\"><a href=\"https://drive.google.com/drive/folders/1W8XIBwolDf3Uzhn-XQ0lbGJp1tklXuGx?usp=share_link\">Memorial Weekend Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-05-25 19:31:54','2023-05-25 19:31:54','',1450,'https://kingsvillelivestock.com/?p=5442',0,'revision','',0),(5443,2,'2023-05-29 14:59:55','2023-05-29 14:59:55','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-05-29 14:59:55','2023-05-29 14:59:55','',639,'https://kingsvillelivestock.com/?p=5443',0,'revision','',0),(5444,2,'2023-05-29 15:00:22','2023-05-29 15:00:22','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-05-29 15:00:22','2023-05-29 15:00:22','',1967,'https://kingsvillelivestock.com/?p=5444',0,'revision','',0),(5445,2,'2023-05-29 15:01:00','2023-05-29 15:01:00','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\">\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/Memorial-Day-2023-Detailed-Consignment-List-9.pdf\" rel=\"attachment wp-att-5441\">Memorial Day 2023 Detailed Consignment List</a></p>\n<p style=\"text-align: left;\"><a href=\"https://drive.google.com/drive/folders/1W8XIBwolDf3Uzhn-XQ0lbGJp1tklXuGx?usp=share_link\">Memorial Weekend Photos</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-05-29 15:01:00','2023-05-29 15:01:00','',1450,'https://kingsvillelivestock.com/?p=5445',0,'revision','',0),(5446,2,'2023-05-29 19:04:12','2023-05-29 19:04:12','','Tuesday,May 30th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaymay-30th-feeder-cattle-consignments','','','2023-05-29 19:04:12','2023-05-29 19:04:12','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-30th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5447,2,'2023-05-29 19:04:18','2023-05-29 19:04:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/TuesdayMay-30th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5446\">Tuesday,May 30th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-05-29 19:04:18','2023-05-29 19:04:18','',2209,'https://kingsvillelivestock.com/?p=5447',0,'revision','',0),(5448,2,'2023-05-29 23:18:31','2023-05-29 23:18:31','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-05-29 23:18:31','2023-05-29 23:18:31','',639,'https://kingsvillelivestock.com/?p=5448',0,'revision','',0),(5449,2,'2023-05-29 23:19:05','2023-05-29 23:19:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h1><strong>MAY 2023 AUCTION DATES:</strong></h1>\n<p><strong>May 29th @ 9:00 am<br /></strong>Memorial Day Weekend Sale</p>\n<p><strong>May 30th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-05-29 23:19:05','2023-05-29 23:19:05','',1967,'https://kingsvillelivestock.com/?p=5449',0,'revision','',0),(5450,2,'2023-05-29 23:21:04','2023-05-29 23:21:04','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<h1 style=\"text-align: left;\"><span style=\"color: #ff00ff;\">Check back for upcoming auctions!Â </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-05-29 23:21:04','2023-05-29 23:21:04','',1450,'https://kingsvillelivestock.com/?p=5450',0,'revision','',0),(5451,2,'2023-05-31 15:55:04','2023-05-31 15:55:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 30, 2023, </strong>2280 hd; Last week, 2962 hd; 1895 a year ago. Feeder steers &amp; heifers sold $10-$25 higher. Yearling heifers sold $3-$5 higher &amp; yearling steers sold $10 higher.Â  Slaughter cows &amp; bulls sold steady-$5 higher &amp; in spots $8 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$312.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$309.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$301.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$272.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$199.50-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$174.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$299.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$282.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$270.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$236.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$184.00-$220.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$175.00-$186.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$170.00-$185.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$101.00 - $115.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $100.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $87.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $140.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">774lbs @$228.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">647lbs @$235.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">699lbs @$222.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">707lbs@$220.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">777lbs@$216.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 30, 2023 - Market Report','','publish','closed','open','','may-30-2023-market-report','','','2023-05-31 15:55:07','2023-05-31 15:55:07','',0,'https://kingsvillelivestock.com/?p=5451',0,'post','',0),(5453,2,'2023-05-31 15:55:04','2023-05-31 15:55:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 30, 2023, </strong>2280 hd; Last week, 2962 hd; 1895 a year ago. Feeder steers &amp; heifers sold $10-$25 higher. Yearling heifers sold $3-$5 higher &amp; yearling steers sold $10 higher.Â  Slaughter cows &amp; bulls sold steady-$5 higher &amp; in spots $8 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$312.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$309.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$301.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$272.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$199.50-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$174.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$299.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$282.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$270.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$236.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$184.00-$220.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$175.00-$186.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$170.00-$185.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$101.00 - $115.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $100.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $87.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $140.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">774lbs @$228.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">647lbs @$235.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">699lbs @$222.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">707lbs@$220.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">777lbs@$216.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 30, 2023 - Market Report','','inherit','closed','closed','','5451-revision-v1','','','2023-05-31 15:55:04','2023-05-31 15:55:04','',5451,'https://kingsvillelivestock.com/?p=5453',0,'revision','',0),(5454,2,'2023-05-31 15:55:04','2023-05-31 15:55:04','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 30, 2023, </strong>2280 hd; Last week, 2962 hd; 1895 a year ago. Feeder steers &amp; heifers sold $10-$25 higher. Yearling heifers sold $3-$5 higher &amp; yearling steers sold $10 higher.Â  Slaughter cows &amp; bulls sold steady-$5 higher &amp; in spots $8 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$312.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$309.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$301.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$272.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$199.50-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$174.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$299.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$282.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$270.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$236.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$184.00-$220.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$175.00-$186.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$170.00-$185.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$101.00 - $115.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $100.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $87.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $140.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">774lbs @$228.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">647lbs @$235.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">699lbs @$222.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">707lbs@$220.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">777lbs@$216.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 23, 2023 - Market Report','','inherit','closed','closed','','5451-revision-v1','','','2023-05-31 15:55:04','2023-05-31 15:55:04','',5451,'https://kingsvillelivestock.com/?p=5454',0,'revision','',0),(5455,2,'2023-05-31 15:55:07','2023-05-31 15:55:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>May 30, 2023, </strong>2280 hd; Last week, 2962 hd; 1895 a year ago. Feeder steers &amp; heifers sold $10-$25 higher. Yearling heifers sold $3-$5 higher &amp; yearling steers sold $10 higher.Â  Slaughter cows &amp; bulls sold steady-$5 higher &amp; in spots $8 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$312.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$309.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$301.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$272.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$199.50-$228.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$174.00-$212.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$299.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$282.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$270.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$236.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$184.00-$220.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$175.00-$186.25</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$170.00-$185.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$101.00 - $115.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $100.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $87.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $140.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">774lbs @$228.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">647lbs @$235.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">699lbs @$222.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">707lbs@$220.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">777lbs@$216.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 30, 2023 - Market Report','','inherit','closed','closed','','5451-revision-v1','','','2023-05-31 15:55:07','2023-05-31 15:55:07','',5451,'https://kingsvillelivestock.com/?p=5455',0,'revision','',0),(5456,2,'2023-05-31 15:55:57','2023-05-31 15:55:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale</p>\n<p><strong>June 10th @ 5 pm</strong><br />Pig, Sheep, &amp; Small Animal Sale</p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-05-31 15:55:57','2023-05-31 15:55:57','',1967,'https://kingsvillelivestock.com/?p=5456',0,'revision','',0),(5457,2,'2023-05-31 16:16:05','2023-05-31 16:16:05','','June 10th,2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','june-10th2022-horse-tack-small-animal-sale','','','2023-05-31 16:16:05','2023-05-31 16:16:05','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale.pdf',0,'attachment','application/pdf',0),(5458,2,'2023-05-31 16:16:21','2023-05-31 16:16:21','','June 10th,2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','june-10th2022-horse-tack-small-animal-sale-2','','','2023-05-31 16:16:21','2023-05-31 16:16:21','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf',0,'attachment','application/pdf',0),(5460,2,'2023-05-31 16:17:06','2023-05-31 16:17:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5457\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 10th @ 5 pmÂ  <a href=\"https://drive.google.com/drive/folders/18aRrYDaq6TFkVUmv7P5jBSFjbby1I0jO?usp=drive_link\">June 10th photos </a></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5458\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-05-31 16:17:06','2023-05-31 16:17:06','',1967,'https://kingsvillelivestock.com/?p=5460',0,'revision','',0),(5461,2,'2023-05-31 16:17:57','2023-05-31 16:17:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 6th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5458\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 10th @ 5 pm <a href=\"https://drive.google.com/drive/folders/18aRrYDaq6TFkVUmv7P5jBSFjbby1I0jO?usp=drive_link\">June 10th photos </a></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5458\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-05-31 16:17:57','2023-05-31 16:17:57','',639,'https://kingsvillelivestock.com/?p=5461',0,'revision','',0),(5463,2,'2023-06-05 18:06:58','2023-06-05 18:06:58','','Tuesday,June 6th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayjune-6th-feeder-cattle-consignments','','','2023-06-05 18:06:58','2023-06-05 18:06:58','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/06/TuesdayJune-6th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5464,2,'2023-06-05 18:07:04','2023-06-05 18:07:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/TuesdayJune-6th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5463\">Tuesday,June 6th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-06-05 18:07:04','2023-06-05 18:07:04','',2209,'https://kingsvillelivestock.com/?p=5464',0,'revision','',0),(5465,2,'2023-06-07 06:56:06','2023-06-07 06:56:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5458\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 10th @ 5 pm <a href=\"https://drive.google.com/drive/folders/18aRrYDaq6TFkVUmv7P5jBSFjbby1I0jO?usp=drive_link\">June 10th photos </a></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5458\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-06-07 06:56:06','2023-06-07 06:56:06','',639,'https://kingsvillelivestock.com/?p=5465',0,'revision','',0),(5466,2,'2023-06-07 06:56:39','2023-06-07 06:56:39','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5457\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 10th @ 5 pmÂ  <a href=\"https://drive.google.com/drive/folders/18aRrYDaq6TFkVUmv7P5jBSFjbby1I0jO?usp=drive_link\">June 10th photos </a></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5458\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale</p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-06-07 06:56:39','2023-06-07 06:56:39','',1967,'https://kingsvillelivestock.com/?p=5466',0,'revision','',0),(5467,2,'2023-06-07 17:16:19','2023-06-07 17:16:19','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/TuesdayJune-6th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5463\">Tuesday,June 6th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.21.0\" _module_preset=\"default\" column_structure=\"1_4,3_4\"][et_pb_column _builder_version=\"4.21.0\" _module_preset=\"default\" type=\"1_4\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #008080;\"><strong>Special Cow &amp; Bull Sale - Friday, June 16th @ 5pmÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.21.0\" _module_preset=\"default\" type=\"3_4\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 5:30pm</i></b></p>\n<ul>\n<li><b>Westfall Farms: </b><b>7 </b>Â 2yr. old Purebred Char Bulls. Gentle set of bulls. Semen &amp; trich tested &amp; ready to turn out</li>\n<li><b>Carter Farms: </b><b>2</b> 18-month-old Polled Hereford Bulls. A gentle set of bulls. Been semen &amp; trich tested.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Diamond X Farms: </b><b>15 </b>Â Blk 4-5 yr. old cows. Bred Hereford Bulls. Start calving on Oct. 20th for 30 days.</li>\n<li><b>Sullins Farms: </b><b>20 </b>Bwf 5-SS yr old cows,2nd period. <b>10 </b>Blk Cows 5-SS,2nd period. All fall calving cows &amp; bred Bwf Sim-Angus bulls.</li>\n<li><b>Mergen Farms: </b><b>7 </b>Red Angus 6-SS yr. old cows,2nd period. <b>37</b> Blk Angus 6-SS yr. old cows,2nd period. Bred Sim-Angus bulls. Start calving Sept. 1st. Worked by Metzner Vet, and had all shots.</li>\n<li><b>Teter Farms : </b><b>6 </b>Blk-Bwf 6-SSÂ  yr. old cows w/ spring calves at the side. <b>3</b> Blk-Bwf cows,3rd period. Bred Balancer Bulls.</li>\n<li><b>Harris Farms: </b><b>12 </b>Blk SS yr old cows,2nd period. Bred Reg. Blk Angus Bulls.</li>\n<li><b>Kendal Farms: </b><b>15 </b>Blk 3-6 yr. old cows w/ 250lbs calves at side.Â </li>\n<li><b>Bar W Farms: </b><b>40</b> Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Sim-Angus bull</li>\n<li><b>Connelly Farms: </b><b>33 </b>Blk 3-6 yr. old cows, 3rd period. Bred Blk. Gelv. Bulls.Â </li>\n<li><b>Neeley Bros. Complete Dispersal: </b><b>50 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. <b>50 </b>Blk-bwf 5-6 yr. old cows, 2nd period. Bred to 3C Reg. Angus bulls. Had all shots by vet. A gentle, nice set of fall-calving cows.Â </li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-06-07 17:16:19','2023-06-07 17:16:19','',2209,'https://kingsvillelivestock.com/?p=5467',0,'revision','',0),(5468,2,'2023-06-07 17:18:14','2023-06-07 17:18:14','','MarketReportfornewspaper June 6,2023','','inherit','closed','closed','','marketreportfornewspaper-june-62023','','','2023-06-07 17:18:14','2023-06-07 17:18:14','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/06/MarketReportfornewspaper-June-62023.pdf',0,'attachment','application/pdf',0),(5469,2,'2023-06-07 17:18:41','2023-06-07 17:18:41','','June 16,2023 Cow Sale','','inherit','closed','closed','','june-162023-cow-sale','','','2023-06-07 17:18:41','2023-06-07 17:18:41','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale.pdf',0,'attachment','application/pdf',0),(5470,2,'2023-06-07 17:18:53','2023-06-07 17:18:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5458\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 10th @ 5 pm <a href=\"https://drive.google.com/drive/folders/18aRrYDaq6TFkVUmv7P5jBSFjbby1I0jO?usp=drive_link\">June 10th photos </a></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5458\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale.pdf\" rel=\"attachment wp-att-5469\">June 16,2023 Cow Sale</a></p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-06-07 17:18:53','2023-06-07 17:18:53','',639,'https://kingsvillelivestock.com/?p=5470',0,'revision','',0),(5471,2,'2023-06-07 17:19:39','2023-06-07 17:19:39','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5457\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 10th @ 5 pmÂ  <a href=\"https://drive.google.com/drive/folders/18aRrYDaq6TFkVUmv7P5jBSFjbby1I0jO?usp=drive_link\">June 10th photos </a></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5458\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale.pdf\" rel=\"attachment wp-att-5469\">June 16,2023 Cow Sale</a></p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-06-07 17:19:39','2023-06-07 17:19:39','',1967,'https://kingsvillelivestock.com/?p=5471',0,'revision','',0),(5472,2,'2023-06-07 17:45:39','2023-06-07 17:45:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 6, 2023, </strong>4981 hd; Last week, 2280hd; 4435 a year ago. Feeder cattle sold $5-$10 higher, in spots $15 higher w/ feeder cattle futures sharply higher &amp; fat cattle prices climbing. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$265.00-$326.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$314.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$307.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$295.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$214.00-$269.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$222.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$188.00-$208.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$296.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$235.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$167.00-$200.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$162.00-$189.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$103.00 - $120.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $102.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$73.00 - $89.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $139.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">602lbs @$294.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">719lbs @$269.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">749bs @$240.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">765lbs@$237.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">782lbs@$234.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">853lbs@$222.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">723lbs@$235.10</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">758lbs@$237.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 6, 2023 - Market Report','','publish','closed','open','','june-6-2023-market-report','','','2023-06-07 17:45:43','2023-06-07 17:45:43','',0,'https://kingsvillelivestock.com/?p=5472',0,'post','',0),(5474,2,'2023-06-07 17:45:39','2023-06-07 17:45:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 6, 2023, </strong>4981 hd; Last week, 2280hd; 4435 a year ago. Feeder cattle sold $5-$10 higher, in spots $15 higher w/ feeder cattle futures sharply higher &amp; fat cattle prices climbing. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$265.00-$326.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$314.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$307.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$295.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$214.00-$269.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$222.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$188.00-$208.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$296.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$235.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$167.00-$200.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$162.00-$189.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$103.00 - $120.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $102.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$73.00 - $89.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $139.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">602lbs @$294.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">719lbs @$269.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">749bs @$240.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">765lbs@$237.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">782lbs@$234.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">853lbs@$222.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">723lbs@$235.10</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">758lbs@$237.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 6, 2023 - Market Report','','inherit','closed','closed','','5472-revision-v1','','','2023-06-07 17:45:39','2023-06-07 17:45:39','',5472,'https://kingsvillelivestock.com/?p=5474',0,'revision','',0),(5475,2,'2023-06-07 17:45:39','2023-06-07 17:45:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 6, 2023, </strong>4981 hd; Last week, 2280hd; 4435 a year ago. Feeder cattle sold $5-$10 higher, in spots $15 higher w/ feeder cattle futures sharply higher &amp; fat cattle prices climbing. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$265.00-$326.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$314.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$307.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$295.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$214.00-$269.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$222.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$188.00-$208.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$296.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$235.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$167.00-$200.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$162.00-$189.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$103.00 - $120.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $102.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$73.00 - $89.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $139.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">602lbs @$294.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">719lbs @$269.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">749bs @$240.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">765lbs@$237.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">782lbs@$234.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">853lbs@$222.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">723lbs@$235.10</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">758lbs@$237.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','May 30, 2023 - Market Report','','inherit','closed','closed','','5472-revision-v1','','','2023-06-07 17:45:39','2023-06-07 17:45:39','',5472,'https://kingsvillelivestock.com/?p=5475',0,'revision','',0),(5476,2,'2023-06-07 17:45:43','2023-06-07 17:45:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 6, 2023, </strong>4981 hd; Last week, 2280hd; 4435 a year ago. Feeder cattle sold $5-$10 higher, in spots $15 higher w/ feeder cattle futures sharply higher &amp; fat cattle prices climbing. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$265.00-$326.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$314.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$307.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$295.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$214.00-$269.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$222.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$188.00-$208.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$296.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$235.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$167.00-$200.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$162.00-$189.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$103.00 - $120.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $102.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$73.00 - $89.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $139.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">602lbs @$294.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">719lbs @$269.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">749bs @$240.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">765lbs@$237.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">782lbs@$234.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">853lbs@$222.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">723lbs@$235.10</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">758lbs@$237.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 6, 2023 - Market Report','','inherit','closed','closed','','5472-revision-v1','','','2023-06-07 17:45:43','2023-06-07 17:45:43','',5472,'https://kingsvillelivestock.com/?p=5476',0,'revision','',0),(5477,2,'2023-06-07 17:47:10','2023-06-07 17:47:10','','June 16,2023 Cow Sale','','inherit','closed','closed','','june-162023-cow-sale-2','','','2023-06-07 17:47:10','2023-06-07 17:47:10','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(5478,2,'2023-06-07 17:47:19','2023-06-07 17:47:19','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5458\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 10th @ 5 pm <a href=\"https://drive.google.com/drive/folders/18aRrYDaq6TFkVUmv7P5jBSFjbby1I0jO?usp=drive_link\">June 10th photos </a></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5458\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5477\">June 16,2023 Cow Sale</a></p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-06-07 17:47:19','2023-06-07 17:47:19','',639,'https://kingsvillelivestock.com/?p=5478',0,'revision','',0),(5479,2,'2023-06-07 17:48:20','2023-06-07 17:48:20','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5457\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 10th @ 5 pmÂ  <a href=\"https://drive.google.com/drive/folders/18aRrYDaq6TFkVUmv7P5jBSFjbby1I0jO?usp=drive_link\">June 10th photos </a></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5458\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5 pm<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5477\">June 16,2023 Cow Sale</a></p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-06-07 17:48:20','2023-06-07 17:48:20','',1967,'https://kingsvillelivestock.com/?p=5479',0,'revision','',0),(5480,2,'2023-06-07 17:49:02','2023-06-07 17:49:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/TuesdayJune-6th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5463\">Tuesday,June 6th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #008080;\"><strong>Special Cow &amp; Bull Sale - Friday, June 16th @ 5pmÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 5:30pm</i></b></p>\n<ul>\n<li><b>Westfall Farms: </b><b>7 </b>Â 2yr. old Purebred Char Bulls. Gentle set of bulls. Semen &amp; trich tested &amp; ready to turn out</li>\n<li><b>Carter Farms: </b><b>2</b> 18-month-old Polled Hereford Bulls. A gentle set of bulls. Been semen &amp; trich tested.</li>\n<li><b>Elmen Farms: </b><b>7</b> 2 yr. old Purebred Blk Angus bull. <b>1 </b>3 yr. old Red Angus bull. Been semen &amp; trich tested.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Diamond X Farms: </b><b>15 </b>Â Blk 4-5 yr. old cows. Bred Hereford Bulls. Start calving on Oct. 20th for 30 days.</li>\n<li><b>Sullins Farms: </b><b>20 </b>Bwf 5-SS yr old cows,2nd period. <b>10 </b>Blk Cows 5-SS,2nd period. All fall calving cows &amp; bred Bwf Sim-Angus bulls.</li>\n<li><b>Mergen Farms: </b><b>7 </b>Red Angus 6-SS yr. old cows,2nd period. <b>37</b> Blk Angus 6-SS yr. old cows,2nd period. Bred Sim-Angus bulls. Start calving Sept. 1st. Worked by Metzner Vet, and had all shots.</li>\n<li><b>Teter Farms : </b><b>6 </b>Blk-Bwf 6-SSÂ  yr. old cows w/ spring calves at the side. <b>3</b> Blk-Bwf cows,3rd period. Bred Balancer Bulls.</li>\n<li><b>Harris Farms: </b><b>12 </b>Blk SS yr old cows,2nd period. Bred Reg. Blk Angus Bulls.</li>\n<li><b>Kendal Farms: </b><b>15 </b>Blk 3-6 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Bar W Farms: </b><b>40</b> Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Sim-Angus bull</li>\n<li><b>Connelly Farms: </b><b>33 </b>Blk 3-6 yr. old cows, 3rd period. Bred Blk. Gelv. Bulls.</li>\n<li><b>Neeley Bros. Complete Dispersal: </b><b>50 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. <b>50 </b>Blk-bwf 5-6 yr. old cows, 2nd period. Bred to 3C Reg. Angus bulls. Had all shots by vet. A gentle, nice set of fall-calving cows.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-06-07 17:49:02','2023-06-07 17:49:02','',2209,'https://kingsvillelivestock.com/?p=5480',0,'revision','',0),(5482,2,'2023-06-09 15:59:39','2023-06-09 15:59:39','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5458\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 10th @ 5 pm <a href=\"https://drive.google.com/drive/folders/18aRrYDaq6TFkVUmv7P5jBSFjbby1I0jO?usp=drive_link\">June 10th photos </a></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5458\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5477\">June 16,2023 Cow Sale</a></p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-06-09 15:59:39','2023-06-09 15:59:39','',639,'https://kingsvillelivestock.com/?p=5482',0,'revision','',0),(5483,2,'2023-06-09 16:00:28','0000-00-00 00:00:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5457\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 10th @ 5 pmÂ  <a href=\"https://drive.google.com/drive/folders/18aRrYDaq6TFkVUmv7P5jBSFjbby1I0jO?usp=drive_link\">June 10th photos </a></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5458\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5:30 pm<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5477\">June 16,2023 Cow Sale</a></p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','draft','closed','closed','','','','','2023-06-09 16:00:28','2023-06-09 16:00:28','',0,'https://kingsvillelivestock.com/?page_id=5483',0,'page','',0),(5484,2,'2023-06-09 16:00:27','2023-06-09 16:00:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5457\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 10th @ 5 pmÂ  <a href=\"https://drive.google.com/drive/folders/18aRrYDaq6TFkVUmv7P5jBSFjbby1I0jO?usp=drive_link\">June 10th photos </a></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5458\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5:30 pm<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5477\">June 16,2023 Cow Sale</a></p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','5483-revision-v1','','','2023-06-09 16:00:27','2023-06-09 16:00:27','',5483,'https://kingsvillelivestock.com/?p=5484',0,'revision','',0),(5485,2,'2023-06-09 16:01:13','2023-06-09 16:01:13','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 10th @ 8:30 am<span style=\"color: #ff0000;\">Â </span></strong><br />Horse &amp; Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5457\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 10th @ 5 pmÂ  <a href=\"https://drive.google.com/drive/folders/18aRrYDaq6TFkVUmv7P5jBSFjbby1I0jO?usp=drive_link\">June 10th photos </a></strong><br />Pig, Sheep, &amp; Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/05/June-10th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5458\">June 10th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5:30 pm<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5477\">June 16,2023 Cow Sale</a></p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-06-09 16:01:13','2023-06-09 16:01:13','',1967,'https://kingsvillelivestock.com/?p=5485',0,'revision','',0),(5486,2,'2023-06-12 17:32:01','2023-06-12 17:32:01','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5477\">June 16,2023 Cow Sale</a></p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-06-12 17:32:01','2023-06-12 17:32:01','',639,'https://kingsvillelivestock.com/?p=5486',0,'revision','',0),(5487,2,'2023-06-12 18:01:02','2023-06-12 18:01:02','','Tuesday,June 12th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayjune-12th-feeder-cattle-consignments','','','2023-06-12 18:01:02','2023-06-12 18:01:02','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/06/TuesdayJune-12th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5488,2,'2023-06-12 18:07:01','2023-06-12 18:07:01','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/TuesdayJune-6th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5463\">Tuesday,June 6th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #008080;\"><strong>Special Cow &amp; Bull Sale - Friday, June 16th @ 5pmÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 5:30pm</i></b></p>\n<ul>\n<li><b>Westfall Farms: </b><b>7 </b>Â 2yr. old Purebred Char Bulls. Gentle set of bulls. Semen &amp; trich tested &amp; ready to turn out</li>\n<li><b>Carter Farms: </b><b>2</b> 18-month-old Polled Hereford Bulls. A gentle set of bulls. Been semen &amp; trich tested.</li>\n<li><b>Elmen Farms: </b><b>7</b> 2 yr. old Purebred Blk Angus bull. <b>1 </b>3 yr. old Red Angus bull. Been semen &amp; trich tested.</li>\n<li><b>Baker Angus: </b><b>2</b> 2 yr. old Blk Angus bull. Been semen &amp; trich tested.</li>\n<li><b>Bettels Farms: </b><b>6</b> 18 month old Blk Balancer bulls. All bulls are AI sired by Judd Ranch Genetics. Have 72-80lbs BW &amp; 600-700 WW.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Diamond X Farms: </b><b>15 </b>Â Blk 4-5 yr. old cows. Bred Hereford Bulls. Start calving on Oct. 20th for 30 days.</li>\n<li><b>Sullins Farms: </b><b>20 </b>Bwf 5-SS yr old cows,2nd period. <b>10 </b>Blk Cows 5-SS,2nd period. All fall calving cows &amp; bred Bwf Sim-Angus bulls.</li>\n<li><b>Mergen Farms: </b><b>7 </b>Red Angus 6-SS yr. old cows,2nd period. <b>37</b> Blk Angus 6-SS yr. old cows,2nd period. Bred Sim-Angus bulls. Start calving Sept. 1st. Worked by Metzner Vet, and had all shots.</li>\n<li><b>Teter Farms : </b><b>6 </b>Blk-Bwf 6-SSÂ  yr. old cows w/ spring calves at the side. <b>3</b> Blk-Bwf cows,3rd period. Bred Balancer Bulls.</li>\n<li><b>Harris Farms: </b><b>12 </b>Blk SS yr old cows,2nd period. Bred Reg. Blk Angus Bulls.</li>\n<li><b>Kendal Farms: </b><b>15 </b>Blk 3-6 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Bar W Farms: </b><b>40</b> Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Sim-Angus bull</li>\n<li><b>Connelly Farms: </b><b>33 </b>Blk 3-6 yr. old cows, 3rd period. Bred Blk. Gelv. Bulls.</li>\n<li><b>Neeley Bros. Complete Dispersal: </b><b>50 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. <b>50 </b>Blk-bwf 5-6 yr. old cows, 2nd period. Bred to 3C Reg. Angus bulls. Had all shots by vet. A gentle, nice set of fall-calving cows.</li>\n<li><b>Connelly Farms: </b><b>33 </b>Blk 3-6 yr. old cows, 3rd period. Bred Blk. Gelv. Bulls.</li>\n<li><b>Mitchell Farms: </b><b>20 </b>Blk 5-SS yr. old cows w/ 250lbs calves at side</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-06-12 18:07:01','2023-06-12 18:07:01','',2209,'https://kingsvillelivestock.com/?p=5488',0,'revision','',0),(5489,2,'2023-06-12 18:08:07','2023-06-12 18:08:07','','Tuesday,June 12th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayjune-12th-feeder-cattle-consignments-2','','','2023-06-12 18:08:07','2023-06-12 18:08:07','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/06/TuesdayJune-12th-Feeder-Cattle-Consignments-1.pdf',0,'attachment','application/pdf',0),(5490,2,'2023-06-12 18:08:23','2023-06-12 18:08:23','','June 16,2023 Cow Sale','','inherit','closed','closed','','june-162023-cow-sale-3','','','2023-06-12 18:08:23','2023-06-12 18:08:23','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(5491,2,'2023-06-12 18:08:37','2023-06-12 18:08:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5490\">June 16,2023 Cow Sale</a></p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-06-12 18:08:37','2023-06-12 18:08:37','',639,'https://kingsvillelivestock.com/?p=5491',0,'revision','',0),(5492,2,'2023-06-12 18:09:30','2023-06-12 18:09:30','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 13th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</p>\n<p><strong>June 16th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5490\">June 16,2023 Cow Sale</a></p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-06-12 18:09:30','2023-06-12 18:09:30','',1967,'https://kingsvillelivestock.com/?p=5492',0,'revision','',0),(5493,2,'2023-06-12 18:10:19','2023-06-12 18:10:19','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/TuesdayJune-12th-Feeder-Cattle-Consignments-1.pdf\" rel=\"attachment wp-att-5489\">Tuesday,June 12th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #008080;\"><strong>Special Cow &amp; Bull Sale - Friday, June 16th @ 5pmÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 5:30pm</i></b></p>\n<ul>\n<li><b>Westfall Farms: </b><b>7 </b>Â 2yr. old Purebred Char Bulls. Gentle set of bulls. Semen &amp; trich tested &amp; ready to turn out</li>\n<li><b>Carter Farms: </b><b>2</b> 18-month-old Polled Hereford Bulls. A gentle set of bulls. Been semen &amp; trich tested.</li>\n<li><b>Elmen Farms: </b><b>7</b> 2 yr. old Purebred Blk Angus bull. <b>1 </b>3 yr. old Red Angus bull. Been semen &amp; trich tested.</li>\n<li><b>Baker Angus: </b><b>2</b> 2 yr. old Blk Angus bull. Been semen &amp; trich tested.</li>\n<li><b>Bettels Farms: </b><b>6</b> 18 month old Blk Balancer bulls. All bulls are AI sired by Judd Ranch Genetics. Have 72-80lbs BW &amp; 600-700 WW.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Diamond X Farms: </b><b>15 </b>Â Blk 4-5 yr. old cows. Bred Hereford Bulls. Start calving on Oct. 20th for 30 days.</li>\n<li><b>Sullins Farms: </b><b>20 </b>Bwf 5-SS yr old cows,2nd period. <b>10 </b>Blk Cows 5-SS,2nd period. All fall calving cows &amp; bred Bwf Sim-Angus bulls.</li>\n<li><b>Mergen Farms: </b><b>7 </b>Red Angus 6-SS yr. old cows,2nd period. <b>37</b> Blk Angus 6-SS yr. old cows,2nd period. Bred Sim-Angus bulls. Start calving Sept. 1st. Worked by Metzner Vet, and had all shots.</li>\n<li><b>Teter Farms : </b><b>6 </b>Blk-Bwf 6-SSÂ  yr. old cows w/ spring calves at the side. <b>3</b> Blk-Bwf cows,3rd period. Bred Balancer Bulls.</li>\n<li><b>Harris Farms: </b><b>12 </b>Blk SS yr old cows,2nd period. Bred Reg. Blk Angus Bulls.</li>\n<li><b>Kendal Farms: </b><b>15 </b>Blk 3-6 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Bar W Farms: </b><b>40</b> Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Sim-Angus bull</li>\n<li><b>Connelly Farms: </b><b>33 </b>Blk 3-6 yr. old cows, 3rd period. Bred Blk. Gelv. Bulls.</li>\n<li><b>Neeley Bros. Complete Dispersal: </b><b>50 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. <b>50 </b>Blk-bwf 5-6 yr. old cows, 2nd period. Bred to 3C Reg. Angus bulls. Had all shots by vet. A gentle, nice set of fall-calving cows.</li>\n<li><b>Connelly Farms: </b><b>33 </b>Blk 3-6 yr. old cows, 3rd period. Bred Blk. Gelv. Bulls.</li>\n<li><b>Mitchell Farms: </b><b>20 </b>Blk 5-SS yr. old cows w/ 250lbs calves at side</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-06-12 18:10:19','2023-06-12 18:10:19','',2209,'https://kingsvillelivestock.com/?p=5493',0,'revision','',0),(5495,2,'2023-06-14 16:32:42','2023-06-14 16:32:42','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 16th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5490\">June 16,2023 Cow Sale</a></p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-06-14 16:32:42','2023-06-14 16:32:42','',639,'https://kingsvillelivestock.com/?p=5495',0,'revision','',0),(5496,2,'2023-06-14 16:34:21','2023-06-14 16:34:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 16th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5490\">June 16,2023 Cow Sale</a></p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-06-14 16:34:21','2023-06-14 16:34:21','',1967,'https://kingsvillelivestock.com/?p=5496',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (5497,2,'2023-06-14 18:07:42','2023-06-14 18:07:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 13, 2023, </strong>4981 hd; Last week, 4981hd; 1890 a year ago.Feeder cattle of all classes sold steady-$5 higher in spots. Slaughter cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$326.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$304.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$294.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$228.00-$231.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$288.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$281.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$238.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$188.50-$235.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$179.00-$190.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$154.00-$172.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$104.00 - $122.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$93.00 - $103.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$79.00 - $92.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $154.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">500lbs @$304.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">615lbs @$294.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">797bs @$241.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">807lbs@$231.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">878lbs@$228.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">451lbs@$271.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">708lbs@$235.10</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">762lbs@$223.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 13, 2023 - Market Report','','publish','closed','open','','june-13-2023-market-report','','','2023-06-14 18:07:45','2023-06-14 18:07:45','',0,'https://kingsvillelivestock.com/?p=5497',0,'post','',0),(5499,2,'2023-06-14 18:07:42','2023-06-14 18:07:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 13, 2023, </strong>4981 hd; Last week, 4981hd; 1890 a year ago.Feeder cattle of all classes sold steady-$5 higher in spots. Slaughter cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$326.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$304.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$294.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$228.00-$231.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$288.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$281.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$238.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$188.50-$235.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$179.00-$190.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$154.00-$172.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$104.00 - $122.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$93.00 - $103.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$79.00 - $92.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $154.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">500lbs @$304.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">615lbs @$294.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">797bs @$241.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">807lbs@$231.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">878lbs@$228.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">451lbs@$271.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">708lbs@$235.10</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">762lbs@$223.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 13, 2023 - Market Report','','inherit','closed','closed','','5497-revision-v1','','','2023-06-14 18:07:42','2023-06-14 18:07:42','',5497,'https://kingsvillelivestock.com/?p=5499',0,'revision','',0),(5500,2,'2023-06-14 18:07:42','2023-06-14 18:07:42','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 13, 2023, </strong>4981 hd; Last week, 4981hd; 1890 a year ago.Feeder cattle of all classes sold steady-$5 higher in spots. Slaughter cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$326.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$304.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$294.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$228.00-$231.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$288.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$281.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$238.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$188.50-$235.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$179.00-$190.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$154.00-$172.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$104.00 - $122.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$93.00 - $103.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$79.00 - $92.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $154.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">500lbs @$304.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">615lbs @$294.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">797bs @$241.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">807lbs@$231.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">878lbs@$228.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">451lbs@$271.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">708lbs@$235.10</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">762lbs@$223.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 6, 2023 - Market Report','','inherit','closed','closed','','5497-revision-v1','','','2023-06-14 18:07:42','2023-06-14 18:07:42','',5497,'https://kingsvillelivestock.com/?p=5500',0,'revision','',0),(5502,2,'2023-06-14 18:07:45','2023-06-14 18:07:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 13, 2023, </strong>4981 hd; Last week, 4981hd; 1890 a year ago.Feeder cattle of all classes sold steady-$5 higher in spots. Slaughter cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$326.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$304.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$294.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$228.00-$231.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$288.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$281.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$238.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$188.50-$235.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$179.00-$190.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$154.00-$172.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$104.00 - $122.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$93.00 - $103.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$79.00 - $92.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $154.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">500lbs @$304.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">615lbs @$294.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">797bs @$241.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">807lbs@$231.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">878lbs@$228.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">451lbs@$271.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">708lbs@$235.10</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">762lbs@$223.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 13, 2023 - Market Report','','inherit','closed','closed','','5497-revision-v1','','','2023-06-14 18:07:45','2023-06-14 18:07:45','',5497,'https://kingsvillelivestock.com/?p=5502',0,'revision','',0),(5503,2,'2023-06-14 18:20:41','2023-06-14 18:20:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/TuesdayJune-12th-Feeder-Cattle-Consignments-1.pdf\" rel=\"attachment wp-att-5489\">Tuesday,June 12th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #008080;\"><strong>Special Cow &amp; Bull Sale - Friday, June 16th @ 5pmÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 5:30pm</i></b></p>\n<ul>\n<li><b>Westfall Farms: </b><b>7 </b>Â 2yr. old Purebred Char Bulls. Gentle set of bulls. Semen &amp; trich tested &amp; ready to turn out</li>\n<li><b>Carter Farms: </b><b>2</b> 18-month-old Polled Hereford Bulls. A gentle set of bulls. Been semen &amp; trich tested.</li>\n<li><b>Elmen Farms: </b><b>7</b> 2 yr. old Purebred Blk Angus bull. <b>1 </b>3 yr. old Red Angus bull. Been semen &amp; trich tested.</li>\n<li><b>Baker Angus: </b><b>2</b> 2 yr. old Blk Angus bull. Been semen &amp; trich tested.</li>\n<li><b>Bettels Farms: </b><b>6</b> 18 month old Blk Balancer bulls. All bulls are AI sired by Judd Ranch Genetics. Have 72-80lbs BW &amp; 600-700 WW.</li>\n<li><b>Busch Farms: </b><b>1</b> 4 yr. old Reg. Blk Wagyu Bull. Reg# FB58084</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Diamond X Farms: </b><b>15 </b>Â Blk 4-5 yr. old cows. Bred Hereford Bulls. Start calving on Oct. 20th for 30 days.</li>\n<li><b>Sullins Farms: </b><b>20 </b>Bwf 5-SS yr old cows,2nd period. <b>10 </b>Blk Cows 5-SS,2nd period. All fall calving cows &amp; bred Bwf Sim-Angus bulls.</li>\n<li><b>Mergen Farms: </b><b>7 </b>Red Angus 6-SS yr. old cows,2nd period. <b>37</b> Blk Angus 6-SS yr. old cows,2nd period. Bred Sim-Angus bulls. Start calving Sept. 1st. Worked by Metzner Vet, and had all shots.</li>\n<li><b>Teter Farms : </b><b>6 </b>Blk-Bwf 6-SSÂ  yr. old cows w/ spring calves at the side. <b>3</b> Blk-Bwf cows,3rd period. Bred Balancer Bulls.</li>\n<li><b>Harris Farms: </b><b>12 </b>Blk SS yr old cows,2nd period. Bred Reg. Blk Angus Bulls.</li>\n<li><b>Kendal Farms: </b><b>15 </b>Blk 3-6 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Bar W Farms: </b><b>40</b> Blk-Bwf 3-5 yr. old cows, 2nd period. Bred Sim-Angus bull</li>\n<li><b>Connelly Farms: </b><b>33 </b>Blk 3-6 yr. old cows, 3rd period. Bred Blk. Gelv. Bulls.</li>\n<li><b>Neeley Bros. Complete Dispersal: </b><b>50 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. <b>50 </b>Blk-bwf 5-6 yr. old cows, 2nd period. Bred to 3C Reg. Angus bulls. Had all shots by vet. A gentle, nice set of fall-calving cows.</li>\n<li><b>Connelly Farms: </b><b>33 </b>Blk 3-6 yr. old cows, 3rd period. Bred Blk. Gelv. Bulls.</li>\n<li><b>Mitchell Farms: </b><b>20 </b>Blk 5-SS yr. old cows w/ 250lbs calves at side</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-06-14 18:20:41','2023-06-14 18:20:41','',2209,'https://kingsvillelivestock.com/?p=5503',0,'revision','',0),(5504,2,'2023-06-14 18:21:09','2023-06-14 18:21:09','','June 16,2023 Cow Sale','','inherit','closed','closed','','june-162023-cow-sale-4','','','2023-06-14 18:21:09','2023-06-14 18:21:09','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale-3.pdf',0,'attachment','application/pdf',0),(5505,2,'2023-06-14 18:21:15','2023-06-14 18:21:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 16th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5504\">June 16,2023 Cow Sale</a></p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-06-14 18:21:15','2023-06-14 18:21:15','',639,'https://kingsvillelivestock.com/?p=5505',0,'revision','',0),(5506,2,'2023-06-14 18:22:01','2023-06-14 18:22:01','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 16th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5504\">June 16,2023 Cow Sale</a></p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-06-14 18:22:01','2023-06-14 18:22:01','',1967,'https://kingsvillelivestock.com/?p=5506',0,'revision','',0),(5507,2,'2023-06-14 19:43:56','2023-06-14 19:43:56','','June 16,2023 Cow Sale','','inherit','closed','closed','','june-162023-cow-sale-5','','','2023-06-14 19:43:56','2023-06-14 19:43:56','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale-4.pdf',0,'attachment','application/pdf',0),(5508,2,'2023-06-14 19:44:04','2023-06-14 19:44:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 16th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale-4.pdf\" rel=\"attachment wp-att-5507\">June 16,2023 Cow Sale</a></p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-06-14 19:44:04','2023-06-14 19:44:04','',639,'https://kingsvillelivestock.com/?p=5508',0,'revision','',0),(5509,2,'2023-06-14 19:45:03','2023-06-14 19:45:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 16th @ 5:30 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/June-162023-Cow-Sale-4.pdf\" rel=\"attachment wp-att-5507\">June 16,2023 Cow Sale</a></p>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-06-14 19:45:03','2023-06-14 19:45:03','',1967,'https://kingsvillelivestock.com/?p=5509',0,'revision','',0),(5510,2,'2023-06-19 15:28:25','2023-06-19 15:28:25','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-06-19 15:28:25','2023-06-19 15:28:25','',639,'https://kingsvillelivestock.com/?p=5510',0,'revision','',0),(5511,2,'2023-06-19 15:30:56','2023-06-19 15:30:56','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-06-19 15:30:56','2023-06-19 15:30:56','',1967,'https://kingsvillelivestock.com/?p=5511',0,'revision','',0),(5512,2,'2023-06-19 15:31:40','2023-06-19 15:31:40','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/TuesdayJune-12th-Feeder-Cattle-Consignments-1.pdf\" rel=\"attachment wp-att-5489\">Tuesday,June 12th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-06-19 15:31:40','2023-06-19 15:31:40','',2209,'https://kingsvillelivestock.com/?p=5512',0,'revision','',0),(5513,2,'2023-06-19 15:41:42','2023-06-19 15:41:42','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle SaleÂ </p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-06-19 15:41:42','2023-06-19 15:41:42','',639,'https://kingsvillelivestock.com/?p=5513',0,'revision','',0),(5514,2,'2023-06-19 15:42:30','2023-06-19 15:42:30','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 20th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle SaleÂ </p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-06-19 15:42:30','2023-06-19 15:42:30','',1967,'https://kingsvillelivestock.com/?p=5514',0,'revision','',0),(5515,2,'2023-06-19 18:20:12','2023-06-19 18:20:12','','Tuesday,June 20th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayjune-20th-feeder-cattle-consignments','','','2023-06-19 18:20:12','2023-06-19 18:20:12','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/06/TuesdayJune-20th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5516,2,'2023-06-19 18:20:20','2023-06-19 18:20:20','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/TuesdayJune-20th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5515\">Tuesday,June 20th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-06-19 18:20:20','2023-06-19 18:20:20','',2209,'https://kingsvillelivestock.com/?p=5516',0,'revision','',0),(5517,2,'2023-06-21 14:39:23','2023-06-21 14:39:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-06-21 14:39:23','2023-06-21 14:39:23','',639,'https://kingsvillelivestock.com/?p=5517',0,'revision','',0),(5518,2,'2023-06-21 14:39:50','2023-06-21 14:39:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-06-21 14:39:50','2023-06-21 14:39:50','',1967,'https://kingsvillelivestock.com/?p=5518',0,'revision','',0),(5519,2,'2023-06-21 14:50:48','2023-06-21 14:50:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 13, 2023, </strong>2653 hd; Last week, 4321hd; 1961 a year ago. Feeder steers sold $3-$5 lower. Feeder heifers sold steady to spots $3-$5 higher on 550-650lbs.Â  Slaughter cows &amp; bulls sold fully steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$329.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$274.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$236.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$228.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$296.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$278.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$255.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$247.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$187.50-$235.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$188.50-$196.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$148.00-$194.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$103.00 - $120.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$92.00 - $102.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$83.00 - $91.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">605lbs @$274.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">664lbs @$250.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">776lbs @$241.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">791lbs@$234.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">653lbs@$247.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">702lbs@$235.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 20, 2023 - Market Report','','publish','closed','open','','june-20-2023-market-report','','','2023-06-21 14:50:51','2023-06-21 14:50:51','',0,'https://kingsvillelivestock.com/?p=5519',0,'post','',0),(5521,2,'2023-06-21 14:50:48','2023-06-21 14:50:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 13, 2023, </strong>2653 hd; Last week, 4321hd; 1961 a year ago. Feeder steers sold $3-$5 lower. Feeder heifers sold steady to spots $3-$5 higher on 550-650lbs.Â  Slaughter cows &amp; bulls sold fully steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$329.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$274.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$236.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$228.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$296.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$278.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$255.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$247.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$187.50-$235.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$188.50-$196.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$148.00-$194.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$103.00 - $120.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$92.00 - $102.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$83.00 - $91.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">605lbs @$274.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">664lbs @$250.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">776lbs @$241.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">791lbs@$234.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">653lbs@$247.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">702lbs@$235.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 20, 2023 - Market Report','','inherit','closed','closed','','5519-revision-v1','','','2023-06-21 14:50:48','2023-06-21 14:50:48','',5519,'https://kingsvillelivestock.com/?p=5521',0,'revision','',0),(5522,2,'2023-06-21 14:50:48','2023-06-21 14:50:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 13, 2023, </strong>2653 hd; Last week, 4321hd; 1961 a year ago. Feeder steers sold $3-$5 lower. Feeder heifers sold steady to spots $3-$5 higher on 550-650lbs.Â  Slaughter cows &amp; bulls sold fully steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$329.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$274.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$236.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$228.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$296.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$278.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$255.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$247.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$187.50-$235.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$188.50-$196.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$148.00-$194.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$103.00 - $120.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$92.00 - $102.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$83.00 - $91.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">605lbs @$274.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">664lbs @$250.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">776lbs @$241.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">791lbs@$234.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">653lbs@$247.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">702lbs@$235.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 13, 2023 - Market Report','','inherit','closed','closed','','5519-revision-v1','','','2023-06-21 14:50:48','2023-06-21 14:50:48','',5519,'https://kingsvillelivestock.com/?p=5522',0,'revision','',0),(5523,2,'2023-06-21 14:50:51','2023-06-21 14:50:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 13, 2023, </strong>2653 hd; Last week, 4321hd; 1961 a year ago. Feeder steers sold $3-$5 lower. Feeder heifers sold steady to spots $3-$5 higher on 550-650lbs.Â  Slaughter cows &amp; bulls sold fully steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$329.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$274.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$236.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$228.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$296.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$278.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$255.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$247.35</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$187.50-$235.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$188.50-$196.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$148.00-$194.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 92px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$103.00 - $120.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$92.00 - $102.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$83.00 - $91.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">605lbs @$274.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">664lbs @$250.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">776lbs @$241.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">791lbs@$234.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">653lbs@$247.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">702lbs@$235.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 20, 2023 - Market Report','','inherit','closed','closed','','5519-revision-v1','','','2023-06-21 14:50:51','2023-06-21 14:50:51','',5519,'https://kingsvillelivestock.com/?p=5523',0,'revision','',0),(5525,2,'2023-06-26 15:21:32','2023-06-26 15:21:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 6:00pm<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, small animal, or special cow &amp; bull sale in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-06-26 15:21:32','2023-06-26 15:21:32','',639,'https://kingsvillelivestock.com/?p=5525',0,'revision','',0),(5526,2,'2023-06-26 15:22:29','2023-06-26 15:22:29','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 6:00pm<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, or small animal in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-06-26 15:22:29','2023-06-26 15:22:29','',639,'https://kingsvillelivestock.com/?p=5526',0,'revision','',0),(5527,2,'2023-06-26 15:24:20','2023-06-26 15:24:20','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 6:00pm<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, or small animal in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-06-26 15:24:20','2023-06-26 15:24:20','',1967,'https://kingsvillelivestock.com/?p=5527',0,'revision','',0),(5529,2,'2023-06-26 15:32:26','2023-06-26 15:32:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/TuesdayJune-20th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5515\">Tuesday,June 20th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Tuesday July 11th @ 6pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 6 pm</i></b></p>\n<ul>\n<li><b>3C Cattle Co.: </b><b>6 </b>Â 2yr. old Reg. Angus bulls. Semen &amp; trich tested w/ BWTs &amp; EPDs. A good set of stout bulls.Â </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Donkey Farms: </b><b>55 </b>Â Blk 5-SS yr. old cows,2nd period. Bred Blk Angus Bulls. All home-raised.</li>\n<li><b>Hardmann Farms: </b><b>75 </b>Blk-Bwf 3-6 yr. old fall calving cows,2nd period. Bred Sim-Angus bulls. Start calving Sept. 5th.</li>\n<li><b>Robey Farms: </b><b>20 </b>Blk 3-5 yr. old cows,3rd period.Â  Bred Blk Angus Bulls.</li>\n<li><b>Sanders Farms: </b><b>15 </b>Blk 3-6Â  yr. old cows w/ 250lbs calves at side.</li>\n</ul>\n<p><b>We will be having our special calf &amp; yearling sale starting at 10:30 am! </b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-06-26 15:32:26','2023-06-26 15:32:26','',2209,'https://kingsvillelivestock.com/?p=5529',0,'revision','',0),(5530,2,'2023-06-26 17:33:38','2023-06-26 17:33:38','','Tuesday,June 26th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayjune-26th-feeder-cattle-consignments','','','2023-06-26 17:33:38','2023-06-26 17:33:38','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/06/TuesdayJune-26th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5531,2,'2023-06-26 17:33:47','2023-06-26 17:33:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/TuesdayJune-26th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5530\">Tuesday,June 26th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Tuesday July 11th @ 6pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 6 pm</i></b></p>\n<ul>\n<li><b>3C Cattle Co.: </b><b>6 </b>Â 2yr. old Reg. Angus bulls. Semen &amp; trich tested w/ BWTs &amp; EPDs. A good set of stout bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Donkey Farms: </b><b>55 </b>Â Blk 5-SS yr. old cows,2nd period. Bred Blk Angus Bulls. All home-raised.</li>\n<li><b>Hardmann Farms: </b><b>75 </b>Blk-Bwf 3-6 yr. old fall calving cows,2nd period. Bred Sim-Angus bulls. Start calving Sept. 5th.</li>\n<li><b>Robey Farms: </b><b>20 </b>Blk 3-5 yr. old cows,3rd period.Â  Bred Blk Angus Bulls.</li>\n<li><b>Sanders Farms: </b><b>15 </b>Blk 3-6Â  yr. old cows w/ 250lbs calves at side.</li>\n</ul>\n<p><b>We will be having our special calf &amp; yearling sale starting at 10:30 am! </b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-06-26 17:33:47','2023-06-26 17:33:47','',2209,'https://kingsvillelivestock.com/?p=5531',0,'revision','',0),(5532,2,'2023-06-26 18:05:26','2023-06-26 18:05:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/TuesdayJune-26th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5530\">Tuesday,June 26th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Tuesday July 11th @ 6pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 6 pm</i></b></p>\n<ul>\n<li><b>3C Cattle Co.: </b><b>6 </b>Â 2yr. old Reg. Angus bulls. Semen &amp; trich tested w/ BWTs &amp; EPDs. A good set of stout bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Donkey Farms: </b><b>55 </b>Â Blk 5-SS yr. old cows,2nd period. Bred Blk Angus Bulls. All home-raised.</li>\n<li><b>Hardmann Farms: </b><b>75 </b>Blk-Bwf 3-6 yr. old fall calving cows,2nd period. Bred Sim-Angus bulls. Start calving Sept. 5th.</li>\n<li><b>Robey Farms: </b><b>20 </b>Blk 3-5 yr. old cows,3rd period.Â  Bred Blk Angus Bulls.</li>\n<li><b>Sanders Farms: </b><b>15 </b>Blk 3-6Â  yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Double J Farms : </b><b>15 </b>Blk-Bwf 2 yr. old 1250lbs bred heifers. AI bred to Growth Fund &amp; cleaned up w/ Blk Angus bulls for 30 days. Start calving Sept. 1st. For 30 days. <b>2 </b>Red-Rwf bred heifers AI bred. All heifers been through the Show-Me-Select program.</li>\n<li></li>\n</ul>\n<p><b>We will be having our special calf &amp; yearling sale starting at 10:30 am! </b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-06-26 18:05:26','2023-06-26 18:05:26','',2209,'https://kingsvillelivestock.com/?p=5532',0,'revision','',0),(5533,2,'2023-06-26 18:08:40','2023-06-26 18:08:40','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/TuesdayJune-26th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5530\">Tuesday,June 26th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Tuesday July 11th @ 6pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 6 pm</i></b></p>\n<ul>\n<li><b>3C Cattle Co.: </b><b>6 </b>Â 2yr. old Reg. Angus bulls. Semen &amp; trich tested w/ BWTs &amp; EPDs. A good set of stout bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Donkey Farms: </b><b>55 </b>Â Blk 5-SS yr. old cows,2nd period. Bred Blk Angus Bulls. All home-raised.</li>\n<li><b>Hardmann Farms: </b><b>75 </b>Blk-Bwf 3-6 yr. old fall calving cows,2nd period. Bred Sim-Angus bulls. Start calving Sept. 5th.</li>\n<li><b>Robey Farms: </b><b>20 </b>Blk 3-5 yr. old cows,3rd period.Â  Bred Blk Angus Bulls.</li>\n<li><b>Sanders Farms: </b><b>15 </b>Blk 3-6Â  yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Double J Farms : </b><b>15 </b>Blk-Bwf 2 yr. old 1250lbs bred heifers. AI bred to Growth Fund &amp; cleaned up w/ Blk Angus bulls for 30 days. Start calving Sept. 1st. For 30 days. <b>2 </b>Red-Rwf bred heifers AI bred. All heifers been through the Show-Me-Select program.</li>\n</ul>\n<p><b>We will be having our special calf &amp; yearling sale starting at 10:30 am! </b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-06-26 18:08:40','2023-06-26 18:08:40','',2209,'https://kingsvillelivestock.com/?p=5533',0,'revision','',0),(5534,2,'2023-06-26 18:12:07','2023-06-26 18:12:07','','July 11, 2023 Cow Sale','','inherit','closed','closed','','july-11-2023-cow-sale','','','2023-06-26 18:12:07','2023-06-26 18:12:07','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/06/July-11-2023-Cow-Sale.pdf',0,'attachment','application/pdf',0),(5535,2,'2023-06-26 18:12:17','2023-06-26 18:12:17','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JUNE 2023 AUCTION DATES:</strong></h1>\n<p><strong>June 27th @ 10:30 am<br /></strong>Feeder Cattle Sale</p>\n<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 6:00pm<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/July-11-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5534\">July 11, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, or small animal in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-06-26 18:12:17','2023-06-26 18:12:17','',639,'https://kingsvillelivestock.com/?p=5535',0,'revision','',0),(5536,2,'2023-06-28 14:19:45','2023-06-28 14:19:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 6:00pm<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/July-11-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5534\">July 11, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, or small animal in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-06-28 14:19:45','2023-06-28 14:19:45','',639,'https://kingsvillelivestock.com/?p=5536',0,'revision','',0),(5537,2,'2023-06-28 14:20:39','2023-06-28 14:20:39','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 6:00pm<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, or small animal in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-06-28 14:20:39','2023-06-28 14:20:39','',1967,'https://kingsvillelivestock.com/?p=5537',0,'revision','',0),(5538,2,'2023-06-28 16:16:31','2023-06-28 16:16:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 27, 2023, </strong>2947 hd; Last week, 2653 hd; 3194 a year ago. Feeder cattle sold $2-$5 higher. New crop calves sold steady. Slaughter cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$303.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$292.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$213.00-$252.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$242.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$207.00-$219.35</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$271.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$269.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$261.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$254.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$238.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$207.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$173.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$108.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$97.00 - $107.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $96.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $137.00</td>\n</tr>\n<tr style=\"height: 62px;\">\n<td style=\"width: 156.5px; height: 62px;\">\n<p>Dispersal Bred Cows &amp; Pairs</p>\n<p>3-6 yr. old pairs $2100-$2525.0</p>\n<p>7-SS yr. old pairs $2000-$2375</p>\n<p>3-6 yr. old breds $1300-$1675</p>\n</td>\n<td style=\"width: 156.5px; height: 62px;\">Â </td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">730lbs @$249.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">800lbs @$242.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">898lbs @$220.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">963lbs@$219.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">662lbs@$250.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">694lbs@$254.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">708lbs@$238.85</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 27, 2023 - Market Report','','publish','closed','open','','june-27-2023-market-report','','','2023-06-28 16:16:34','2023-06-28 16:16:34','',0,'https://kingsvillelivestock.com/?p=5538',0,'post','',0),(5540,2,'2023-06-28 16:16:31','2023-06-28 16:16:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 27, 2023, </strong>2947 hd; Last week, 2653 hd; 3194 a year ago. Feeder cattle sold $2-$5 higher. New crop calves sold steady. Slaughter cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$303.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$292.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$213.00-$252.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$242.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$207.00-$219.35</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$271.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$269.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$261.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$254.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$238.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$207.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$173.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$108.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$97.00 - $107.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $96.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $137.00</td>\n</tr>\n<tr style=\"height: 62px;\">\n<td style=\"width: 156.5px; height: 62px;\">\n<p>Dispersal Bred Cows &amp; Pairs</p>\n<p>3-6 yr. old pairs $2100-$2525.0</p>\n<p>7-SS yr. old pairs $2000-$2375</p>\n<p>3-6 yr. old breds $1300-$1675</p>\n</td>\n<td style=\"width: 156.5px; height: 62px;\">Â </td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">730lbs @$249.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">800lbs @$242.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">898lbs @$220.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">963lbs@$219.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">662lbs@$250.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">694lbs@$254.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">708lbs@$238.85</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 27, 2023 - Market Report','','inherit','closed','closed','','5538-revision-v1','','','2023-06-28 16:16:31','2023-06-28 16:16:31','',5538,'https://kingsvillelivestock.com/?p=5540',0,'revision','',0),(5541,2,'2023-06-28 16:16:31','2023-06-28 16:16:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 27, 2023, </strong>2947 hd; Last week, 2653 hd; 3194 a year ago. Feeder cattle sold $2-$5 higher. New crop calves sold steady. Slaughter cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$303.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$292.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$213.00-$252.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$242.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$207.00-$219.35</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$271.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$269.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$261.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$254.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$238.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$207.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$173.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$108.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$97.00 - $107.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $96.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $137.00</td>\n</tr>\n<tr style=\"height: 62px;\">\n<td style=\"width: 156.5px; height: 62px;\">\n<p>Dispersal Bred Cows &amp; Pairs</p>\n<p>3-6 yr. old pairs $2100-$2525.0</p>\n<p>7-SS yr. old pairs $2000-$2375</p>\n<p>3-6 yr. old breds $1300-$1675</p>\n</td>\n<td style=\"width: 156.5px; height: 62px;\">Â </td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">730lbs @$249.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">800lbs @$242.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">898lbs @$220.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">963lbs@$219.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">662lbs@$250.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">694lbs@$254.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">708lbs@$238.85</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 20, 2023 - Market Report','','inherit','closed','closed','','5538-revision-v1','','','2023-06-28 16:16:31','2023-06-28 16:16:31','',5538,'https://kingsvillelivestock.com/?p=5541',0,'revision','',0),(5542,2,'2023-06-28 16:16:34','2023-06-28 16:16:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 27, 2023, </strong>2947 hd; Last week, 2653 hd; 3194 a year ago. Feeder cattle sold $2-$5 higher. New crop calves sold steady. Slaughter cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$303.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$292.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$213.00-$252.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$242.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$207.00-$219.35</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$271.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$269.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$261.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$254.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$238.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$207.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$173.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$108.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$97.00 - $107.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $96.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $137.00</td>\n</tr>\n<tr style=\"height: 62px;\">\n<td style=\"width: 156.5px; height: 62px;\">\n<p>Dispersal Bred Cows &amp; Pairs</p>\n<p>3-6 yr. old pairs $2100-$2525.0</p>\n<p>7-SS yr. old pairs $2000-$2375</p>\n<p>3-6 yr. old breds $1300-$1675</p>\n</td>\n<td style=\"width: 156.5px; height: 62px;\">Â </td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">730lbs @$249.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">800lbs @$242.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">898lbs @$220.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">963lbs@$219.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">662lbs@$250.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">694lbs@$254.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">708lbs@$238.85</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 27, 2023 - Market Report','','inherit','closed','closed','','5538-revision-v1','','','2023-06-28 16:16:34','2023-06-28 16:16:34','',5538,'https://kingsvillelivestock.com/?p=5542',0,'revision','',0),(5543,2,'2023-06-28 16:52:40','2023-06-28 16:52:40','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/TuesdayJune-26th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5530\">Tuesday,June 26th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Tuesday July 11th @ 6pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 6 pm</i></b></p>\n<ul>\n<li><b>3C Cattle Co.: </b><b>6 </b>Â 2yr. old Reg. Angus bulls. Semen &amp; trich tested w/ BWTs &amp; EPDs. A good set of stout bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Donkey Farms: </b><b>55 </b>Â Blk 5-SS yr. old cows,2nd period. Bred Blk Angus Bulls. All home-raised.</li>\n<li><b>Hardmann Farms: </b><b>75 </b>Blk-Bwf 3-6 yr. old fall calving cows,2nd period. Bred Sim-Angus bulls. Start calving Sept. 5th.</li>\n<li><b>Robey Farms: </b><b>20 </b>Blk 3-5 yr. old cows,3rd period.Â  Bred Blk Angus Bulls.</li>\n<li><b>Sanders Farms: </b><b>15 </b>Blk 3-6Â  yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Double J Farms : </b><b>15 </b>Blk-Bwf 2 yr. old 1250lbs bred heifers. AI bred to Growth Fund &amp; cleaned up w/ Blk Angus bulls for 30 days. Start calving Sept. 1st. For 30 days. <b>2 </b>Red-Rwf bred heifers AI bred. All heifers been through the Show-Me-Select program.</li>\n<li><b>Poisal Farms: </b><b>50 </b>Blk-Red 5-7Â  yr. old fall calving cows,2nd &amp; 3rd period. Start calving Sept. 1st. Bred Seedstock Balancer or Hereford bulls. June 19th had lepto shot &amp; wormed/poured. Only selling due to cry weather. Nice set of calf-raising cows.Â </li>\n<li><b>Detherage Farms : </b><b>80 </b>Blk 5-BMÂ  yr. old cows w/ spring calves atÂ  side. All cows &amp; calves have been worked by Bollinger Vet Clinic. Calves are sired by Reg. Angus bulls</li>\n<li><b>Parks Farms: </b><b>28 </b>Red Angus 3-6 yr. old cows 12 Rwf Hereford X 3-6 yr. old cows. All cows are very gentle. Start calving Sept. 1st for 70 days. Current on all shots, been worked by vet. Bred Reg. Blk Angus or Reg. Red Angus Bulls w/ high WW.Â </li>\n</ul>\n<p><b>We will be having our special calf &amp; yearling sale starting at 10:30 am! </b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-06-28 16:52:40','2023-06-28 16:52:40','',2209,'https://kingsvillelivestock.com/?p=5543',0,'revision','',0),(5544,2,'2023-06-28 16:55:57','2023-06-28 16:55:57','','July 11,2023 Cow Sale','','inherit','closed','closed','','july-112023-cow-sale','','','2023-06-28 16:55:57','2023-06-28 16:55:57','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/06/July-112023-Cow-Sale.pdf',0,'attachment','application/pdf',0),(5545,2,'2023-06-28 16:56:03','2023-06-28 16:56:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 6:00pm<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/July-112023-Cow-Sale.pdf\" rel=\"attachment wp-att-5544\">July 11,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, or small animal in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-06-28 16:56:03','2023-06-28 16:56:03','',639,'https://kingsvillelivestock.com/?p=5545',0,'revision','',0),(5546,2,'2023-06-28 16:57:54','2023-06-28 16:57:54','','July 11,2023 Cow Sale','','inherit','closed','closed','','july-112023-cow-sale-2','','','2023-06-28 16:57:54','2023-06-28 16:57:54','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/06/July-112023-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(5547,2,'2023-06-28 16:58:00','2023-06-28 16:58:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 6:00pm<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/July-112023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5546\">July 11,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, or small animal in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-06-28 16:58:00','2023-06-28 16:58:00','',639,'https://kingsvillelivestock.com/?p=5547',0,'revision','',0),(5548,2,'2023-06-28 16:58:36','2023-06-28 16:58:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 6:00pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/July-112023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5546\">July 11,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, or small animal in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-06-28 16:58:36','2023-06-28 16:58:36','',1967,'https://kingsvillelivestock.com/?p=5548',0,'revision','',0),(5549,2,'2023-06-28 17:10:31','2023-06-28 17:10:31','','July 11,2023 Cow Sale','','inherit','closed','closed','','july-112023-cow-sale-3','','','2023-06-28 17:10:31','2023-06-28 17:10:31','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/06/July-112023-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(5550,2,'2023-06-28 17:10:38','2023-06-28 17:10:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 6:00pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/July-112023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5549\">July 11,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, or small animal in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-06-28 17:10:38','2023-06-28 17:10:38','',1967,'https://kingsvillelivestock.com/?p=5550',0,'revision','',0),(5551,2,'2023-06-28 17:11:20','2023-06-28 17:11:20','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><strong>July 4th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale -<span style=\"color: #ff0000;\"><strong> Canceled due to holiday!</strong></span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 6:00pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/July-112023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5549\">July 11,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, or small animal in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-06-28 17:11:20','2023-06-28 17:11:20','',639,'https://kingsvillelivestock.com/?p=5551',0,'revision','',0),(5553,2,'2023-07-10 15:36:35','2023-07-10 15:36:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 6:00pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/July-112023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5549\">July 11,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, or small animal in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-07-10 15:36:35','2023-07-10 15:36:35','',639,'https://kingsvillelivestock.com/?p=5553',0,'revision','',0),(5554,2,'2023-07-10 15:37:10','2023-07-10 15:37:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 6:00pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/July-112023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5549\">July 11,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, or small animal in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-07-10 15:37:10','2023-07-10 15:37:10','',1967,'https://kingsvillelivestock.com/?p=5554',0,'revision','',0),(5555,2,'2023-07-10 15:41:48','2023-07-10 15:41:48','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/06/TuesdayJune-26th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5530\">Tuesday,June 26th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Tuesday July 11th @ 6pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 6 pm</i></b></p>\n<ul>\n<li><b>3C Cattle Co.: </b><b>6 </b>Â 2yr. old Reg. Angus bulls. Semen &amp; trich tested w/ BWTs &amp; EPDs. A good set of stout bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Donkey Farms: </b><b>55 </b>Â Blk 5-SS yr. old cows,2nd period. Bred Blk Angus Bulls. All home-raised.</li>\n<li><b>Hardmann Farms: </b><b>75 </b>Blk-Bwf 3-6 yr. old fall calving cows,2nd period. Bred Sim-Angus bulls. Start calving Sept. 5th.</li>\n<li><b>Robey Farms: </b><b>20 </b>Blk 3-5 yr. old cows,3rd period.Â  Bred Blk Angus Bulls.</li>\n<li><b>Sanders Farms: </b><b>15 </b>Blk 3-6Â  yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Double J Farms : </b><b>15 </b>Blk-Bwf 2 yr. old 1250lbs bred heifers. AI bred to Growth Fund &amp; cleaned up w/ Blk Angus bulls for 30 days. Start calving Sept. 1st. For 30 days. <b>2 </b>Red-Rwf bred heifers AI bred. All heifers been through the Show-Me-Select program.</li>\n<li><b>Poisal Farms: </b><b>50 </b>Blk-Red 5-7Â  yr. old fall calving cows,2nd &amp; 3rd period. Start calving Sept. 1st. Bred Seedstock Balancer or Hereford bulls. June 19th had lepto shot &amp; wormed/poured. Only selling due to cry weather. Nice set of calf-raising cows.</li>\n<li><b>Detherage Farms : </b><b>80 </b>Blk 5-BMÂ  yr. old cows w/ spring calves atÂ  side. All cows &amp; calves have been worked by Bollinger Vet Clinic. Calves are sired by Reg. Angus bulls</li>\n<li><b>Parks Farms: </b><b>28 </b>Red Angus 3-6 yr. old cows 12 Rwf Hereford X 3-6 yr. old cows. All cows are very gentle. Start calving Sept. 1st for 70 days. Current on all shots, been worked by vet. Bred Reg. Blk Angus or Reg. Red Angus Bulls w/ high WW.</li>\n<li><b>Diamond X Farms : </b><b>11 </b>Blk 3-4 yr. old cows,3rd period. <b>43 </b>Blk 5-SS yr. old cows, 3rd period. Start calving Sept. 5th for 45 days. Bred to 3C Angus bulls.</li>\n</ul>\n<p><b>We will be having our special calf &amp; yearling sale starting at 10:30 am! </b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-07-10 15:41:48','2023-07-10 15:41:48','',2209,'https://kingsvillelivestock.com/?p=5555',0,'revision','',0),(5556,2,'2023-07-10 15:43:40','2023-07-10 15:43:40','','July 11,2023 Cow Sale','','inherit','closed','closed','','july-112023-cow-sale-4','','','2023-07-10 15:43:40','2023-07-10 15:43:40','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-112023-Cow-Sale.pdf',0,'attachment','application/pdf',0),(5557,2,'2023-07-10 15:43:47','2023-07-10 15:43:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 6:00pm<br /></strong>Special Cow &amp; Bull Sale<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-112023-Cow-Sale.pdf\" rel=\"attachment wp-att-5556\">July 11,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, or small animal in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-07-10 15:43:47','2023-07-10 15:43:47','',639,'https://kingsvillelivestock.com/?p=5557',0,'revision','',0),(5558,2,'2023-07-10 15:44:23','2023-07-10 15:44:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 11th @ 6:00pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-112023-Cow-Sale.pdf\" rel=\"attachment wp-att-5556\">July 11,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, or small animal in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-07-10 15:44:23','2023-07-10 15:44:23','',1967,'https://kingsvillelivestock.com/?p=5558',0,'revision','',0),(5559,2,'2023-07-10 18:34:35','2023-07-10 18:34:35','','Tuesday,July 11th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayjuly-11th-feeder-cattle-consignments','','','2023-07-10 18:34:35','2023-07-10 18:34:35','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/07/TuesdayJuly-11th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5560,2,'2023-07-10 18:34:41','2023-07-10 18:34:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/TuesdayJuly-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5559\">Tuesday,July 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Tuesday July 11th @ 6pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 6 pm</i></b></p>\n<ul>\n<li><b>3C Cattle Co.: </b><b>6 </b>Â 2yr. old Reg. Angus bulls. Semen &amp; trich tested w/ BWTs &amp; EPDs. A good set of stout bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Donkey Farms: </b><b>55 </b>Â Blk 5-SS yr. old cows,2nd period. Bred Blk Angus Bulls. All home-raised.</li>\n<li><b>Hardmann Farms: </b><b>75 </b>Blk-Bwf 3-6 yr. old fall calving cows,2nd period. Bred Sim-Angus bulls. Start calving Sept. 5th.</li>\n<li><b>Robey Farms: </b><b>20 </b>Blk 3-5 yr. old cows,3rd period.Â  Bred Blk Angus Bulls.</li>\n<li><b>Sanders Farms: </b><b>15 </b>Blk 3-6Â  yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Double J Farms : </b><b>15 </b>Blk-Bwf 2 yr. old 1250lbs bred heifers. AI bred to Growth Fund &amp; cleaned up w/ Blk Angus bulls for 30 days. Start calving Sept. 1st. For 30 days. <b>2 </b>Red-Rwf bred heifers AI bred. All heifers been through the Show-Me-Select program.</li>\n<li><b>Poisal Farms: </b><b>50 </b>Blk-Red 5-7Â  yr. old fall calving cows,2nd &amp; 3rd period. Start calving Sept. 1st. Bred Seedstock Balancer or Hereford bulls. June 19th had lepto shot &amp; wormed/poured. Only selling due to cry weather. Nice set of calf-raising cows.</li>\n<li><b>Detherage Farms : </b><b>80 </b>Blk 5-BMÂ  yr. old cows w/ spring calves atÂ  side. All cows &amp; calves have been worked by Bollinger Vet Clinic. Calves are sired by Reg. Angus bulls</li>\n<li><b>Parks Farms: </b><b>28 </b>Red Angus 3-6 yr. old cows 12 Rwf Hereford X 3-6 yr. old cows. All cows are very gentle. Start calving Sept. 1st for 70 days. Current on all shots, been worked by vet. Bred Reg. Blk Angus or Reg. Red Angus Bulls w/ high WW.</li>\n<li><b>Diamond X Farms : </b><b>11 </b>Blk 3-4 yr. old cows,3rd period. <b>43 </b>Blk 5-SS yr. old cows, 3rd period. Start calving Sept. 5th for 45 days. Bred to 3C Angus bulls.</li>\n</ul>\n<p><b>We will be having our special calf &amp; yearling sale starting at 10:30 am! </b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-07-10 18:34:41','2023-07-10 18:34:41','',2209,'https://kingsvillelivestock.com/?p=5560',0,'revision','',0),(5561,2,'2023-07-12 17:53:32','2023-07-12 17:53:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-07-12 17:53:32','2023-07-12 17:53:32','',639,'https://kingsvillelivestock.com/?p=5561',0,'revision','',0),(5562,2,'2023-07-12 17:53:58','2023-07-12 17:53:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be no horse/tack, or small animal in July due to the heat!</strong></span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-07-12 17:53:58','2023-07-12 17:53:58','',1967,'https://kingsvillelivestock.com/?p=5562',0,'revision','',0),(5563,2,'2023-07-13 19:04:38','2023-07-13 19:04:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 21st @ 6:00 pm<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-07-13 19:04:38','2023-07-13 19:04:38','',639,'https://kingsvillelivestock.com/?p=5563',0,'revision','',0),(5564,2,'2023-07-13 19:05:26','2023-07-13 19:05:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 21st @ 6:00 pm<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p>&nbsp;</p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-07-13 19:05:26','2023-07-13 19:05:26','',1967,'https://kingsvillelivestock.com/?p=5564',0,'revision','',0),(5565,2,'2023-07-13 19:09:18','2023-07-13 19:09:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/TuesdayJuly-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5559\">Tuesday,July 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Friday July 21st @ 6pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 6:00 pm</i></b></p>\n<ul>\n<li><b>Thomas Farms.: </b><b>5 </b>Â 2yr. Old Blk Angus Bulls. Semen &amp; trich tested bulls.Â  Can use on cows or bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Tim Shrout Farms: </b><b>15 </b>Â Blk-Bwf 2 yr. old heifers w/ calves at side<b>. 5 </b>Blk 4-5 yr. old cows. Bulls turned in May 20th &amp; bred to Reavis Blk Angus Bulls.</li>\n<li><b>K. Reid Farms: </b><b>50 </b>Red-Rwf 3-7 yr. old cows. All cows start calving Sept. 1st for 80 days. Current on all shots &amp; bred to Blk or Red Angus bulls.</li>\n<li><b>P. Butler Farms: </b><b>130 </b>Blk-BwfÂ  3-6 yr. old cows,3rd period. Start calving Aug. 20th for 90 days. Bred Blk Sim-Angus Bulls. Cows have been wormed/poured, a nice set of fall calving cows.</li>\n<li><b>S.Bell Farms: </b><b>25 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. 25 Blk 3-SS yr. old cows w/ 250lbs calves at side. Some 3N1â€™s. Bred to Blk Angus Bulls.</li>\n</ul>\n<p>&nbsp;</p>\n<p><b>We will be having our special calf &amp; yearling sale starting at 10:30 am! </b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-07-13 19:09:18','2023-07-13 19:09:18','',2209,'https://kingsvillelivestock.com/?p=5565',0,'revision','',0),(5566,2,'2023-07-13 19:27:55','2023-07-13 19:27:55','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/TuesdayJuly-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5559\">Tuesday,July 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Friday July 21st @ 6pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 6:00 pm</i></b></p>\n<ul>\n<li><b>Thomas Farms.: </b><b>5 </b>Â 2yr. Old Blk Angus Bulls. Semen &amp; trich tested bulls.Â  Can use on cows or bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Tim Shrout Farms: </b><b>15 </b>Â Blk-Bwf 2 yr. old heifers w/ calves at side<b>. 5 </b>Blk 4-5 yr. old cows. Bulls turned in May 20th &amp; bred to Reavis Blk Angus Bulls.</li>\n<li><b>K. Reid Farms: </b><b>50 </b>Red-Rwf 3-7 yr. old cows. All cows start calving Sept. 1st for 80 days. Current on all shots &amp; bred to Blk or Red Angus bulls.</li>\n<li><b>P. Butler Farms: </b><b>130 </b>Blk-BwfÂ  3-6 yr. old cows,3rd period. Start calving Aug. 20th for 90 days. Bred Blk Sim-Angus Bulls. Cows have been wormed/poured, a nice set of fall calving cows.</li>\n<li><b>S.Bell Farms: </b><b>25 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. 25 Blk 3-SS yr. old cows w/ 250lbs calves at side. Some 3N1â€™s. Bred to Blk Angus Bulls.</li>\n<li><b>B-C Cattle : </b><b>60 </b>Blk-Red 5-7 yr. old cows. Bulls in May 15th &amp; bred to Weber Angus bulls. Start calving Feb. 21st.</li>\n</ul>\n<p>&nbsp;</p>\n<p><b>We will be having our special calf &amp; yearling sale starting at 10:30 am! </b></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-07-13 19:27:55','2023-07-13 19:27:55','',2209,'https://kingsvillelivestock.com/?p=5566',0,'revision','',0),(5567,2,'2023-07-13 19:35:34','2023-07-13 19:35:34','','July 21,2023 Cow Sale','','inherit','closed','closed','','july-212023-cow-sale','','','2023-07-13 19:35:34','2023-07-13 19:35:34','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-212023-Cow-Sale.pdf',0,'attachment','application/pdf',0),(5568,2,'2023-07-13 19:35:43','2023-07-13 19:35:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 21st @ 6:00 pm<br /></strong>Special Cow &amp; Bull Sale Â <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-212023-Cow-Sale.pdf\" rel=\"attachment wp-att-5567\">July 21,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-07-13 19:35:43','2023-07-13 19:35:43','',639,'https://kingsvillelivestock.com/?p=5568',0,'revision','',0),(5569,2,'2023-07-13 19:36:11','2023-07-13 19:36:11','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 21st @ 6:00 pm<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-212023-Cow-Sale.pdf\" rel=\"attachment wp-att-5567\">July 21,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-07-13 19:36:11','2023-07-13 19:36:11','',1967,'https://kingsvillelivestock.com/?p=5569',0,'revision','',0),(5570,2,'2023-07-13 19:41:45','0000-00-00 00:00:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>June 27, 2023, </strong>2947 hd; Last week, 2653 hd; 3194 a year ago. Feeder cattle sold $2-$5 higher. New crop calves sold steady. Slaughter cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$303.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$292.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$213.00-$252.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$242.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$207.00-$219.35</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$271.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$269.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$261.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$254.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$238.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$207.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$173.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$108.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$97.00 - $107.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $96.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $137.00</td>\n</tr>\n<tr style=\"height: 62px;\">\n<td style=\"width: 156.5px; height: 62px;\">\n<p>Dispersal Bred Cows &amp; Pairs</p>\n<p>3-6 yr. old pairs $2100-$2525.0</p>\n<p>7-SS yr. old pairs $2000-$2375</p>\n<p>3-6 yr. old breds $1300-$1675</p>\n</td>\n<td style=\"width: 156.5px; height: 62px;\">Â </td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">730lbs @$249.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">800lbs @$242.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">898lbs @$220.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">963lbs@$219.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">662lbs@$250.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">694lbs@$254.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">708lbs@$238.85</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 27, 2023 - Market Report','','draft','closed','open','','','','','2023-07-13 19:41:45','0000-00-00 00:00:00','',0,'https://kingsvillelivestock.com/?p=5570',0,'post','',0),(5571,2,'2023-07-13 19:53:07','2023-07-13 19:53:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 11, 2023, </strong>5388 hd; Last week, 2947 hd; 2807 a year ago. All classes of feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$314.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$316.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$249.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$243.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$195.00-$215.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$262.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$246.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$180.00-$211.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$188.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $130.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$78.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$101.00 - $138.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">713lbs @$249.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">768lbs @$245.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">816lbs @$243.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">886lbs@$237.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">594lbs@$260.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">673lbs@$246.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">710lbs@$240.50</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">755lbs@$233.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 11, 2023 - Market Report','','publish','closed','open','','july-11-2023-market-report','','','2023-07-13 19:53:10','2023-07-13 19:53:10','',0,'https://kingsvillelivestock.com/?p=5571',0,'post','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (5573,2,'2023-07-13 19:53:07','2023-07-13 19:53:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 11, 2023, </strong>5388 hd; Last week, 2947 hd; 2807 a year ago. All classes of feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$314.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$316.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$249.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$243.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$195.00-$215.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$262.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$246.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$180.00-$211.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$188.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $130.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$78.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$101.00 - $138.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">713lbs @$249.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">768lbs @$245.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">816lbs @$243.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">886lbs@$237.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">594lbs@$260.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">673lbs@$246.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">710lbs@$240.50</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">755lbs@$233.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','June 27, 2023 - Market Report','','inherit','closed','closed','','5571-revision-v1','','','2023-07-13 19:53:07','2023-07-13 19:53:07','',5571,'https://kingsvillelivestock.com/?p=5573',0,'revision','',0),(5574,2,'2023-07-13 19:53:10','2023-07-13 19:53:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 11, 2023, </strong>5388 hd; Last week, 2947 hd; 2807 a year ago. All classes of feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$4 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$314.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$316.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$249.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$243.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$195.00-$215.75</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 157px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">400-500</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">500-600</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$262.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">600-700</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$246.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">700-800</td>\n<td style=\"width: 157px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">800-900</td>\n<td style=\"width: 157px; height: 23px;\">$180.00-$211.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 157px; height: 23px;\">900-1000</td>\n<td style=\"width: 157px; height: 23px;\">$160.00-$188.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $130.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$78.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$101.00 - $138.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">713lbs @$249.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">768lbs @$245.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">816lbs @$243.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">886lbs@$237.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">594lbs@$260.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">673lbs@$246.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">710lbs@$240.50</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">755lbs@$233.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 11, 2023 - Market Report','','inherit','closed','closed','','5571-revision-v1','','','2023-07-13 19:53:10','2023-07-13 19:53:10','',5571,'https://kingsvillelivestock.com/?p=5574',0,'revision','',0),(5575,2,'2023-07-17 15:45:22','2023-07-17 15:45:22','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/TuesdayJuly-11th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5559\">Tuesday,July 11th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Friday July 21st @ 6pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 6:00 pm</i></b></p>\n<ul>\n<li><b>Thomas Farms.: </b><b>5 </b>Â 2yr. Old Blk Angus Bulls. Semen &amp; trich tested bulls.Â  Can use on cows or bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Tim Shrout Farms: </b><b>15 </b>Â Blk-Bwf 2 yr. old heifers w/ calves at side<b>. 5 </b>Blk 4-5 yr. old cows. Bulls turned in May 20th &amp; bred to Reavis Blk Angus Bulls.</li>\n<li><b>K. Reid Farms: </b><b>50 </b>Red-Rwf 3-7 yr. old cows. All cows start calving Sept. 1st for 80 days. Current on all shots &amp; bred to Blk or Red Angus bulls.</li>\n<li><b>P. Butler Farms: </b><b>130 </b>Blk-BwfÂ  3-6 yr. old cows,3rd period. Start calving Aug. 20th for 90 days. Bred Blk Sim-Angus Bulls. Cows have been wormed/poured, a nice set of fall calving cows.</li>\n<li><b>S.Bell Farms: </b><b>25 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. 25 Blk 3-SS yr. old cows w/ 250lbs calves at side. Some 3N1â€™s. Bred to Blk Angus Bulls.</li>\n<li><b>B-C Cattle: </b><b>60 </b>Blk-Red 5-7 yr. old cows. Bulls in May 15th &amp; bred to Weber Angus bulls. Start calving Feb. 21st.</li>\n<li><b>4-F Farms: </b><b>20 </b>Blk 7-SS yr. old fall calving cows. Start calving Sept. 1st. Bred to Blk Angus bulls.</li>\n<li><b>Kauffman Farms: </b><b>18 </b>Blk 3-6 yr. old cows w/ 250lbs calves at side, 3N1â€™s.</li>\n<li><b>Hunsaker Farms : </b><b>6 </b>Blk 2 yr. old fall calving heifers. Start calving Sept. 5th for 75 days. Bred to LBWT Blk bulls. Been pelvic measured by Koch-Stigge vet clinic &amp; had all shots. First time to town, easy-going set of heifers.</li>\n<li></li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-07-17 15:45:22','2023-07-17 15:45:22','',2209,'https://kingsvillelivestock.com/?p=5575',0,'revision','',0),(5576,2,'2023-07-17 15:47:50','2023-07-17 15:47:50','','July 21,2023 Cow Sale','','inherit','closed','closed','','july-212023-cow-sale-2','','','2023-07-17 15:47:50','2023-07-17 15:47:50','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-212023-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(5577,2,'2023-07-17 15:47:57','2023-07-17 15:47:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 21st @ 6:00 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-212023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5576\">July 21,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-07-17 15:47:57','2023-07-17 15:47:57','',639,'https://kingsvillelivestock.com/?p=5577',0,'revision','',0),(5578,2,'2023-07-17 15:48:49','2023-07-17 15:48:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 21st @ 6:00 pm<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-212023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5576\">July 21,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-07-17 15:48:49','2023-07-17 15:48:49','',1967,'https://kingsvillelivestock.com/?p=5578',0,'revision','',0),(5579,2,'2023-07-17 17:34:20','2023-07-17 17:34:20','','Tuesday,July 18th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayjuly-18th-feeder-cattle-consignments','','','2023-07-17 17:34:20','2023-07-17 17:34:20','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/07/TuesdayJuly-18th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5580,2,'2023-07-17 17:34:29','2023-07-17 17:34:29','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/TuesdayJuly-18th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5579\">Tuesday,July 18th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Friday July 21st @ 6pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 6:00 pm</i></b></p>\n<ul>\n<li><b>Thomas Farms.: </b><b>5 </b>Â 2yr. Old Blk Angus Bulls. Semen &amp; trich tested bulls.Â  Can use on cows or bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Tim Shrout Farms: </b><b>15 </b>Â Blk-Bwf 2 yr. old heifers w/ calves at side<b>. 5 </b>Blk 4-5 yr. old cows. Bulls turned in May 20th &amp; bred to Reavis Blk Angus Bulls.</li>\n<li><b>K. Reid Farms: </b><b>50 </b>Red-Rwf 3-7 yr. old cows. All cows start calving Sept. 1st for 80 days. Current on all shots &amp; bred to Blk or Red Angus bulls.</li>\n<li><b>P. Butler Farms: </b><b>130 </b>Blk-BwfÂ  3-6 yr. old cows,3rd period. Start calving Aug. 20th for 90 days. Bred Blk Sim-Angus Bulls. Cows have been wormed/poured, a nice set of fall calving cows.</li>\n<li><b>S.Bell Farms: </b><b>25 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. 25 Blk 3-SS yr. old cows w/ 250lbs calves at side. Some 3N1â€™s. Bred to Blk Angus Bulls.</li>\n<li><b>B-C Cattle: </b><b>60 </b>Blk-Red 5-7 yr. old cows. Bulls in May 15th &amp; bred to Weber Angus bulls. Start calving Feb. 21st.</li>\n<li><b>4-F Farms: </b><b>20 </b>Blk 7-SS yr. old fall calving cows. Start calving Sept. 1st. Bred to Blk Angus bulls.</li>\n<li><b>Kauffman Farms: </b><b>18 </b>Blk 3-6 yr. old cows w/ 250lbs calves at side, 3N1â€™s.</li>\n<li><b>Hunsaker Farms : </b><b>6 </b>Blk 2 yr. old fall calving heifers. Start calving Sept. 5th for 75 days. Bred to LBWT Blk bulls. Been pelvic measured by Koch-Stigge vet clinic &amp; had all shots. First time to town, easy-going set of heifers.</li>\n<li></li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-07-17 17:34:29','2023-07-17 17:34:29','',2209,'https://kingsvillelivestock.com/?p=5580',0,'revision','',0),(5581,2,'2023-07-17 20:03:07','2023-07-17 20:03:07','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 21st @ 6:00 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-212023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5576\">July 21,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cuningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-07-17 20:03:07','2023-07-17 20:03:07','',639,'https://kingsvillelivestock.com/?p=5581',0,'revision','',0),(5582,2,'2023-07-17 20:03:41','2023-07-17 20:03:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 21st @ 6:00 pm<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-212023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5576\">July 21, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cuningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-07-17 20:03:41','2023-07-17 20:03:41','',1967,'https://kingsvillelivestock.com/?p=5582',0,'revision','',0),(5583,2,'2023-07-17 20:05:47','2023-07-17 20:05:47','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<h4 style=\"text-align: left;\"><a href=\"https://drive.google.com/file/d/1y5-QKLIlW6JWgr_lUGXdtvkVbEsy7Jul/view?usp=drive_link\">Cunningham Photos</a></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-07-17 20:05:47','2023-07-17 20:05:47','',1450,'https://kingsvillelivestock.com/?p=5583',0,'revision','',0),(5584,2,'2023-07-17 20:07:19','2023-07-17 20:07:19','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<h4 style=\"text-align: left;\"><a href=\"https://drive.google.com/drive/folders/1xJjSFQwPzmhchqbogO3RnQ6vSkvgbZBa?usp=sharing\">Cunningham Photos</a></h4>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-07-17 20:07:19','2023-07-17 20:07:19','',1450,'https://kingsvillelivestock.com/?p=5584',0,'revision','',0),(5585,2,'2023-07-17 21:05:57','2023-07-17 21:05:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/TuesdayJuly-18th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5579\">Tuesday,July 18th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Friday July 21st @ 6pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 6:00 pm</i></b></p>\n<ul>\n<li><b>Thomas Farms.: </b><b>5 </b>Â 2yr. Old Blk Angus Bulls. Semen &amp; trich tested bulls.Â  Can use on cows or bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Tim Shrout Farms: </b><b>15 </b>Â Blk-Bwf 2 yr. old heifers w/ calves at side<b>. 5 </b>Blk 4-5 yr. old cows. Bulls turned in May 20th &amp; bred to Reavis Blk Angus Bulls.</li>\n<li><b>K. Reid Farms: </b><b>50 </b>Red-Rwf 3-7 yr. old cows. All cows start calving Sept. 1st for 80 days. Current on all shots &amp; bred to Blk or Red Angus bulls.</li>\n<li><b>P. Butler Farms: </b><b>130 </b>Blk-BwfÂ  3-6 yr. old cows,3rd period. Start calving Aug. 20th for 90 days. Bred Blk Sim-Angus Bulls. Cows have been wormed/poured, a nice set of fall calving cows.</li>\n<li><b>S.Bell Farms: </b><b>25 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. 25 Blk 3-SS yr. old cows w/ 250lbs calves at side. Some 3N1â€™s. Bred to Blk Angus Bulls.</li>\n<li><b>B-C Cattle: </b><b>60 </b>Blk-Red 5-7 yr. old cows. Bulls in May 15th &amp; bred to Weber Angus bulls. Start calving Feb. 21st.</li>\n<li><b>4-F Farms: </b><b>20 </b>Blk 7-SS yr. old fall calving cows. Start calving Sept. 1st. Bred to Blk Angus bulls.</li>\n<li><b>Kauffman Farms: </b><b>18 </b>Blk 3-6 yr. old cows w/ 250lbs calves at side, 3N1â€™s.</li>\n<li><b>Hunsaker Farms : </b><b>6 </b>Blk 2 yr. old fall calving heifers. Start calving Sept. 5th for 75 days. Bred to LBWT Blk bulls. Been pelvic measured by Koch-Stigge vet clinic &amp; had all shots. First time to town, easy-going set of heifers.</li>\n<li><b>Scherlinger Farms : </b><b>7 </b>Blk-BwfÂ  5-7 yr. old cows w/ calves at side. 3N1â€™s, been running back w/Blk Angus bulls.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-07-17 21:05:57','2023-07-17 21:05:57','',2209,'https://kingsvillelivestock.com/?p=5585',0,'revision','',0),(5586,2,'2023-07-17 21:07:19','2023-07-17 21:07:19','','July 21,2023 Cow Sale','','inherit','closed','closed','','july-212023-cow-sale-3','','','2023-07-17 21:07:19','2023-07-17 21:07:19','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-212023-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(5587,2,'2023-07-17 21:07:25','2023-07-17 21:07:25','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 21st @ 6:00 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-212023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5586\">July 21,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cuningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-07-17 21:07:25','2023-07-17 21:07:25','',639,'https://kingsvillelivestock.com/?p=5587',0,'revision','',0),(5588,2,'2023-07-17 21:08:05','2023-07-17 21:08:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 18th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>July 21st @ 6:00 pm<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-212023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5586\">July 21,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cuningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-07-17 21:08:05','2023-07-17 21:08:05','',1967,'https://kingsvillelivestock.com/?p=5588',0,'revision','',0),(5589,2,'2023-07-17 21:08:46','2023-07-17 21:08:46','','Cunningham Legal paper','','inherit','closed','closed','','cunningham-legal-paper','','','2023-07-17 21:08:46','2023-07-17 21:08:46','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/07/Cunningham-Legal-paper.pdf',0,'attachment','application/pdf',0),(5590,2,'2023-07-17 21:09:42','2023-07-17 21:09:42','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/Cunningham-Legal-paper.pdf\" rel=\"attachment wp-att-5589\">Margaret Cunningham Auction-August 5th @ 10 am- Lee\'s SummitÂ </a></p>\n<p style=\"text-align: left;\"><a href=\"https://drive.google.com/drive/folders/1xJjSFQwPzmhchqbogO3RnQ6vSkvgbZBa?usp=sharing\">Cunningham Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-07-17 21:09:42','2023-07-17 21:09:42','',1450,'https://kingsvillelivestock.com/?p=5590',0,'revision','',0),(5592,2,'2023-07-18 14:39:26','2023-07-18 14:39:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/TuesdayJuly-18th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5579\">Tuesday,July 18th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Friday July 21st @ 6pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 6:00 pm</i></b></p>\n<ul>\n<li><b>Thomas Farms.: </b><b>5 </b>Â 2yr. Old Blk Angus Bulls. Semen &amp; trich tested bulls.Â  Can use on cows or bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Tim Shrout Farms: </b><b>15 </b>Â Blk-Bwf 2 yr. old heifers w/ calves at side<b>. 5 </b>Blk 4-5 yr. old cows. Bulls turned in May 20th &amp; bred to Reavis Blk Angus Bulls.</li>\n<li><b>K. Reid Farms: </b><b>50 </b>Red-Rwf 3-7 yr. old cows. All cows start calving Sept. 1st for 80 days. Current on all shots &amp; bred to Blk or Red Angus bulls.</li>\n<li><b>P. Butler Farms: </b><b>130 </b>Blk-BwfÂ  3-6 yr. old cows,3rd period. Start calving Aug. 20th for 90 days. Bred Blk Sim-Angus Bulls. Cows have been wormed/poured, a nice set of fall calving cows.</li>\n<li><b>S.Bell Farms: </b><b>25 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. 25 Blk 3-SS yr. old cows w/ 250lbs calves at side. Some 3N1â€™s. Bred to Blk Angus Bulls.</li>\n<li><b>B-C Cattle: </b><b>60 </b>Blk-Red 5-7 yr. old cows. Bulls in May 15th &amp; bred to Weber Angus bulls. Start calving Feb. 21st.</li>\n<li><b>4-F Farms: </b><b>20 </b>Blk 7-SS yr. old fall calving cows. Start calving Sept. 1st. Bred to Blk Angus bulls.</li>\n<li><b>Kauffman Farms: </b><b>18 </b>Blk 3-6 yr. old cows w/ 250lbs calves at side, 3N1â€™s.</li>\n<li><b>Hunsaker Farms : </b><b>6 </b>Blk 2 yr. old fall calving heifers. Start calving Sept. 5th for 75 days. Bred to LBWT Blk bulls. Been pelvic measured by Koch-Stigge vet clinic &amp; had all shots. First time to town, easy-going set of heifers.</li>\n<li><b>Scherlinger Farms : </b><b>7 </b>Blk-BwfÂ  5-7 yr. old cows w/ calves at side. 3N1â€™s, been running back w/Blk Angus bulls.</li>\n<li><b>Dean Farms: 47</b><b>Â </b>Blk-BwfÂ  5-SS yr. old cows. Bred Gelbvieh &amp; Balancer bulls. Start calving Sept. 1st.Â </li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-07-18 14:39:26','2023-07-18 14:39:26','',2209,'https://kingsvillelivestock.com/?p=5592',0,'revision','',0),(5593,2,'2023-07-19 14:22:17','2023-07-19 14:22:17','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 21st @ 6:00 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-212023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5586\">July 21,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cuningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-07-19 14:22:17','2023-07-19 14:22:17','',639,'https://kingsvillelivestock.com/?p=5593',0,'revision','',0),(5594,2,'2023-07-19 14:22:45','2023-07-19 14:22:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 21st @ 6:00 pm<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-212023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5586\">July 21,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cuningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-07-19 14:22:45','2023-07-19 14:22:45','',1967,'https://kingsvillelivestock.com/?p=5594',0,'revision','',0),(5595,2,'2023-07-19 14:38:02','2023-07-19 14:38:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/TuesdayJuly-18th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5579\">Tuesday,July 18th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff00ff;\">Special Cow &amp; Bull Sale, Friday July 21st @ 6pmÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 6:00 pm</i></b></p>\n<ul>\n<li><b>Thomas Farms.: </b><b>5 </b>Â 2yr. Old Blk Angus Bulls. Semen &amp; trich tested bulls.Â  Can use on cows or bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Tim Shrout Farms: </b><b>15 </b>Â Blk-Bwf 2 yr. old heifers w/ calves at side<b>. 5 </b>Blk 4-5 yr. old cows. Bulls turned in May 20th &amp; bred to Reavis Blk Angus Bulls.</li>\n<li><b>K. Reid Farms: </b><b>50 </b>Red-Rwf 3-7 yr. old cows. All cows start calving Sept. 1st for 80 days. Current on all shots &amp; bred to Blk or Red Angus bulls.</li>\n<li><b>P. Butler Farms: </b><b>130 </b>Blk-BwfÂ  3-6 yr. old cows,3rd period. Start calving Aug. 20th for 90 days. Bred Blk Sim-Angus Bulls. Cows have been wormed/poured, a nice set of fall calving cows.</li>\n<li><b>S.Bell Farms: </b><b>25 </b>Blk 3-SS yr. old cows, 2nd &amp; 3rd period. 25 Blk 3-SS yr. old cows w/ 250lbs calves at side. Some 3N1â€™s. Bred to Blk Angus Bulls.</li>\n<li><b>B-C Cattle: </b><b>60 </b>Blk-Red 5-7 yr. old cows. Bulls in May 15th &amp; bred to Weber Angus bulls. Start calving Feb. 21st.</li>\n<li><b>4-F Farms: </b><b>20 </b>Blk 7-SS yr. old fall calving cows. Start calving Sept. 1st. Bred to Blk Angus bulls.</li>\n<li><b>Kauffman Farms: </b><b>18 </b>Blk 3-6 yr. old cows w/ 250lbs calves at side, 3N1â€™s.</li>\n<li><b>Hunsaker Farms : </b><b>6 </b>Blk 2 yr. old fall calving heifers. Start calving Sept. 5th for 75 days. Bred to LBWT Blk bulls. Been pelvic measured by Koch-Stigge vet clinic &amp; had all shots. First time to town, easy-going set of heifers.</li>\n<li><b>Scherlinger Farms : </b><b>7 </b>Blk-BwfÂ  5-7 yr. old cows w/ calves at side. 3N1â€™s, been running back w/Blk Angus bulls.</li>\n<li><b>Dean Farms: 47</b><b>Â </b>Blk-BwfÂ  5-SS yr. old cows. Bred Gelbvieh &amp; Balancer bulls. Start calving Sept. 1st.</li>\n<li><b>Gilmore Bros.: </b><b>37 </b>Blk-Mix 3-SS yr. old cows. Bred Seedstock Bal. bulls. Start calving Sept. 15th.</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-07-19 14:38:02','2023-07-19 14:38:02','',2209,'https://kingsvillelivestock.com/?p=5595',0,'revision','',0),(5596,2,'2023-07-19 14:57:31','2023-07-19 14:57:31','','July 21,2023 Cow Sale','','inherit','closed','closed','','july-212023-cow-sale-4','','','2023-07-19 14:57:31','2023-07-19 14:57:31','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-212023-Cow-Sale-3.pdf',0,'attachment','application/pdf',0),(5597,2,'2023-07-19 14:57:38','2023-07-19 14:57:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 21st @ 6:00 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-212023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5596\">July 21,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cuningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-07-19 14:57:38','2023-07-19 14:57:38','',639,'https://kingsvillelivestock.com/?p=5597',0,'revision','',0),(5598,2,'2023-07-19 14:58:08','2023-07-19 14:58:08','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 21st @ 6:00 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-212023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5596\">July 21,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cuningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-07-19 14:58:08','2023-07-19 14:58:08','',1967,'https://kingsvillelivestock.com/?p=5598',0,'revision','',0),(5599,2,'2023-07-19 15:01:00','2023-07-19 15:01:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 21st @ 6:00 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-212023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5596\">July 21,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cunningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-07-19 15:01:00','2023-07-19 15:01:00','',639,'https://kingsvillelivestock.com/?p=5599',0,'revision','',0),(5600,2,'2023-07-19 15:01:27','2023-07-19 15:01:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 21st @ 6:00 pm<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/July-212023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5596\">July 21,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cunningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-07-19 15:01:27','2023-07-19 15:01:27','',1967,'https://kingsvillelivestock.com/?p=5600',0,'revision','',0),(5601,2,'2023-07-19 15:43:51','2023-07-19 15:43:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 18, 2023, </strong>2216 hd; Last week, 5388hd; 2013 a year ago. All classes of feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$318.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$311.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$288.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$257.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$245.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$210.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$285.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$284.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$264.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$255.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$246.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$195.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$165.00-$185.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$113.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$98.00 - $112.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $139.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">744lbs @$257.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">759lbs @$249.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">841lbs @$245.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">640lbs@$250.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">673lbs@$255.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">708lbs@$246.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 18, 2023 - Market Report','','publish','closed','open','','july-18-2023-market-report','','','2023-07-19 15:43:54','2023-07-19 15:43:54','',0,'https://kingsvillelivestock.com/?p=5601',0,'post','',0),(5603,2,'2023-07-19 15:43:51','2023-07-19 15:43:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 18, 2023, </strong>2216 hd; Last week, 5388hd; 2013 a year ago. All classes of feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$318.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$311.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$288.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$257.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$245.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$210.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$285.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$284.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$264.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$255.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$246.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$195.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$165.00-$185.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$113.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$98.00 - $112.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $139.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">744lbs @$257.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">759lbs @$249.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">841lbs @$245.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">640lbs@$250.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">673lbs@$255.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">708lbs@$246.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 18, 2023 - Market Report','','inherit','closed','closed','','5601-revision-v1','','','2023-07-19 15:43:51','2023-07-19 15:43:51','',5601,'https://kingsvillelivestock.com/?p=5603',0,'revision','',0),(5604,2,'2023-07-19 15:43:51','2023-07-19 15:43:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 18, 2023, </strong>2216 hd; Last week, 5388hd; 2013 a year ago. All classes of feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$318.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$311.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$288.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$257.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$245.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$210.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$285.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$284.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$264.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$255.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$246.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$195.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$165.00-$185.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$113.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$98.00 - $112.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $139.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">744lbs @$257.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">759lbs @$249.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">841lbs @$245.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">640lbs@$250.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">673lbs@$255.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">708lbs@$246.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 11, 2023 - Market Report','','inherit','closed','closed','','5601-revision-v1','','','2023-07-19 15:43:51','2023-07-19 15:43:51','',5601,'https://kingsvillelivestock.com/?p=5604',0,'revision','',0),(5605,2,'2023-07-19 15:43:54','2023-07-19 15:43:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 18, 2023, </strong>2216 hd; Last week, 5388hd; 2013 a year ago. All classes of feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 314px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.375px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 151.625px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">400-500</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$318.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">500-600</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$311.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">600-700</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$288.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">700-800</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$257.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">800-900</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$245.10</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.375px; height: 23px;\">900-1000</td>\n<td style=\"width: 151.625px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$210.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$285.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$284.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$264.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$255.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$246.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$195.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$165.00-$185.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$113.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$98.00 - $112.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $139.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">744lbs @$257.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">759lbs @$249.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">841lbs @$245.10</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">640lbs@$250.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">673lbs@$255.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">708lbs@$246.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 18, 2023 - Market Report','','inherit','closed','closed','','5601-revision-v1','','','2023-07-19 15:43:54','2023-07-19 15:43:54','',5601,'https://kingsvillelivestock.com/?p=5605',0,'revision','',0),(5606,2,'2023-07-24 14:58:13','2023-07-24 14:58:13','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cunningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-07-24 14:58:13','2023-07-24 14:58:13','',639,'https://kingsvillelivestock.com/?p=5606',0,'revision','',0),(5607,2,'2023-07-24 14:58:41','2023-07-24 14:58:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cunningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-07-24 14:58:41','2023-07-24 14:58:41','',1967,'https://kingsvillelivestock.com/?p=5607',0,'revision','',0),(5608,2,'2023-07-24 14:59:04','2023-07-24 14:59:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/TuesdayJuly-18th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5579\">Tuesday,July 18th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-07-24 14:59:04','2023-07-24 14:59:04','',2209,'https://kingsvillelivestock.com/?p=5608',0,'revision','',0),(5609,2,'2023-07-24 16:07:06','2023-07-24 16:07:06','','Cunningham Legal paper','','inherit','closed','closed','','cunningham-legal-paper-2','','','2023-07-24 16:07:06','2023-07-24 16:07:06','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/07/Cunningham-Legal-paper-1.pdf',0,'attachment','application/pdf',0),(5610,2,'2023-07-24 16:07:40','2023-07-24 16:07:40','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/Cunningham-Legal-paper-1.pdf\" rel=\"attachment wp-att-5609\">Margaret Cunningham Auction-August 5th @ 10am-Lee\'s Summit</a></p>\n<p style=\"text-align: left;\"><a href=\"https://drive.google.com/drive/folders/1xJjSFQwPzmhchqbogO3RnQ6vSkvgbZBa?usp=sharing\">Cunningham Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-07-24 16:07:40','2023-07-24 16:07:40','',1450,'https://kingsvillelivestock.com/?p=5610',0,'revision','',0),(5611,2,'2023-07-24 17:22:00','2023-07-24 17:22:00','','Tuesday,July 25th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayjuly-25th-feeder-cattle-consignments','','','2023-07-24 17:22:00','2023-07-24 17:22:00','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/07/TuesdayJuly-25th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5612,2,'2023-07-24 17:22:10','2023-07-24 17:22:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/TuesdayJuly-25th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5611\">Tuesday,July 25th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-07-24 17:22:10','2023-07-24 17:22:10','',2209,'https://kingsvillelivestock.com/?p=5612',0,'revision','',0),(5614,2,'2023-07-24 17:54:21','2023-07-24 17:54:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cunningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-07-24 17:54:21','2023-07-24 17:54:21','',639,'https://kingsvillelivestock.com/?p=5614',0,'revision','',0),(5615,2,'2023-07-24 17:55:10','2023-07-24 17:55:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>JULY 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>July 25th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cunningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-07-24 17:55:10','2023-07-24 17:55:10','',1967,'https://kingsvillelivestock.com/?p=5615',0,'revision','',0),(5617,2,'2023-07-26 14:09:02','2023-07-26 14:09:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cunningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-07-26 14:09:02','2023-07-26 14:09:02','',639,'https://kingsvillelivestock.com/?p=5617',0,'revision','',0),(5618,2,'2023-07-26 14:09:48','2023-07-26 14:09:48','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cunningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-07-26 14:09:48','2023-07-26 14:09:48','',1967,'https://kingsvillelivestock.com/?p=5618',0,'revision','',0),(5619,2,'2023-07-26 16:22:40','2023-07-26 16:22:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 25, 2023, </strong>1602 hd; Last week, 2216hd;1707 a year ago. Compared to last week, steer sold mostly steady &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$289.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$307.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$306.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$255.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$200.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$278.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$258.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$260.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$250.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$170.00-$198.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$191.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $126.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $144.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">737lbs @$255.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">747lbs @$252.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">654lbs @$260.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">696lbs@$259.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">715lbs@$250.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">742lbs@$248.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 25, 2023 - Market Report','','publish','closed','open','','july-25-2023-market-report','','','2023-07-26 16:22:43','2023-07-26 16:22:43','',0,'https://kingsvillelivestock.com/?p=5619',0,'post','',0),(5621,2,'2023-07-26 16:22:40','2023-07-26 16:22:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 25, 2023, </strong>1602 hd; Last week, 2216hd;1707 a year ago. Compared to last week, steer sold mostly steady &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$289.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$307.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$306.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$255.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$200.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$278.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$258.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$260.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$250.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$170.00-$198.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$191.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $126.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $144.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">737lbs @$255.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">747lbs @$252.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">654lbs @$260.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">696lbs@$259.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">715lbs@$250.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">742lbs@$248.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 25, 2023 - Market Report','','inherit','closed','closed','','5619-revision-v1','','','2023-07-26 16:22:40','2023-07-26 16:22:40','',5619,'https://kingsvillelivestock.com/?p=5621',0,'revision','',0),(5622,2,'2023-07-26 16:22:40','2023-07-26 16:22:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 25, 2023, </strong>1602 hd; Last week, 2216hd;1707 a year ago. Compared to last week, steer sold mostly steady &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$289.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$307.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$306.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$255.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$200.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$278.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$258.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$260.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$250.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$170.00-$198.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$191.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $126.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $144.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">737lbs @$255.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">747lbs @$252.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">654lbs @$260.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">696lbs@$259.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">715lbs@$250.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">742lbs@$248.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 18, 2023 - Market Report','','inherit','closed','closed','','5619-revision-v1','','','2023-07-26 16:22:40','2023-07-26 16:22:40','',5619,'https://kingsvillelivestock.com/?p=5622',0,'revision','',0),(5623,2,'2023-07-26 16:22:43','2023-07-26 16:22:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>July 25, 2023, </strong>1602 hd; Last week, 2216hd;1707 a year ago. Compared to last week, steer sold mostly steady &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$289.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$307.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$306.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$255.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$200.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$278.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$258.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$260.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$250.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$170.00-$198.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$191.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $126.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $144.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">737lbs @$255.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">747lbs @$252.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">654lbs @$260.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">696lbs@$259.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">715lbs@$250.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">742lbs@$248.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 25, 2023 - Market Report','','inherit','closed','closed','','5619-revision-v1','','','2023-07-26 16:22:43','2023-07-26 16:22:43','',5619,'https://kingsvillelivestock.com/?p=5623',0,'revision','',0),(5624,2,'2023-07-26 17:50:35','2023-07-26 17:50:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/TuesdayJuly-25th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5611\">Tuesday,July 25th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.21.0\" _module_preset=\"default\" column_structure=\"2_5,3_5\"][et_pb_column _builder_version=\"4.21.0\" _module_preset=\"default\" type=\"2_5\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday August 19th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.21.0\" _module_preset=\"default\" type=\"3_5\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>15 </b>Â Blk Angus 3-6 yr. old w/ 250lbs calves at side.<b> 5 </b>Red Angus 3-6 yr. old cows w/ 250lbs calves at side.<b>30 </b>Blk-Bwf 3-6 yr. old cows, 2nd &amp; 3rd period. <b>10</b> Red Angus 3-6 yr. old cows, 2nd &amp; 3rd period. All bred to Blk Angus bulls. Good set of cows.</li>\n<li><b>K &amp; S Ranch: </b><b>44 </b>Blk 4-6 yr. old cows. All cows start calving Sept. 1st &amp; bred Sim-Angus bulls. This is a complete fall herd dispersal.Â </li>\n<li><b>Circle L Herefords: </b><b>10 </b>Fancy Horned Hereford 2 yr. old, 1100lbs bred heifers,3rd period. Bred Reg. Blk Angus calving ease bulls. Nice set of purebred heifers that are very gentle &amp; selling due to dry conditions.Â </li>\n<li><b>Kelly Farms: </b><b>6 </b>Red Angus 2 yr. old bred heifers,3rd period. Bred Blk Angus bulls. Start calving Aug. 25th for 65 days. Current on all shots &amp; vaccinations.Â </li>\n<li><b>Moon Farms: </b><b>5 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side. <b>45</b> Blk-Bwf 3-6 yr. old cows,3rd period. <b>45 </b>Blk-Bwf 3-6 yr. old cows, 2nd period. <b>5</b> Red-Char 3-6 yr. old cows,3rd period. All cows bred Blk Angus bulls, nice set of cows that are easy to handle.Â </li>\n<li><b>Harder Farms: </b><b>20 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Complete Dispersal Daniel Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. <b>40 </b>Blk-bwf 3-6 yr. old cows, 2nd period. Bred Sim-Angus &amp; Angus bulls.</li>\n<li><b>Frame Farms: </b><b>33 </b>Blk-Bwf 6-SS yr. old cows/ Feb. &amp; Mar. calves at side, 3n1â€™s. Bulls turned in May 10th &amp; bred to LBWT Sim-Angus bulls. Nice set of cow/calf pairs w/ outstanding set of calves at side.Â </li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-07-26 17:50:35','2023-07-26 17:50:35','',2209,'https://kingsvillelivestock.com/?p=5624',0,'revision','',0),(5626,2,'2023-07-31 14:42:35','2023-07-31 14:42:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/TuesdayJuly-25th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5611\">Tuesday,July 25th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday August 19th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>15 </b>Â Blk Angus 3-6 yr. old w/ 250lbs calves at side.<b> 5 </b>Red Angus 3-6 yr. old cows w/ 250lbs calves at side.<b>30 </b>Blk-Bwf 3-6 yr. old cows, 2nd &amp; 3rd period. <b>10</b> Red Angus 3-6 yr. old cows, 2nd &amp; 3rd period. All bred to Blk Angus bulls. Good set of cows.</li>\n<li><b>K &amp; S Ranch: </b><b>44 </b>Blk 4-6 yr. old cows. All cows start calving Sept. 1st &amp; bred Sim-Angus bulls. This is a complete fall herd dispersal.</li>\n<li><b>Circle L Herefords: </b><b>10 </b>Fancy Horned Hereford 2 yr. old, 1100lbs bred heifers,3rd period. Bred Reg. Blk Angus calving ease bulls. Nice set of purebred heifers that are very gentle &amp; selling due to dry conditions.</li>\n<li><b>Kelly Farms: </b><b>6 </b>Red Angus 2 yr. old bred heifers,3rd period. Bred Blk Angus bulls. Start calving Aug. 25th for 65 days. Current on all shots &amp; vaccinations.</li>\n<li><b>Moon Farms: </b><b>5 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side. <b>45</b> Blk-Bwf 3-6 yr. old cows,3rd period. <b>45 </b>Blk-Bwf 3-6 yr. old cows, 2nd period. <b>5</b> Red-Char 3-6 yr. old cows,3rd period. All cows bred Blk Angus bulls, nice set of cows that are easy to handle.</li>\n<li><b>Harder Farms: </b><b>20 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Complete Dispersal Daniel Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. <b>40 </b>Blk-bwf 3-6 yr. old cows, 2nd period. Bred Sim-Angus &amp; Angus bulls.</li>\n<li><b>Frame Farms: </b><b>33 </b>Blk-Bwf 6-SS yr. old cows/ Feb. &amp; Mar. calves at side, 3n1â€™s. Bulls turned in May 10th &amp; bred to LBWT Sim-Angus bulls. Nice set of cow/calf pairs w/an outstanding set of calves at side.</li>\n<li><b>Asbury Farms: </b><b>20 </b>Blk-BwfÂ  3-7 yr. old cows w/ 350lbs calves at side,3N1â€™s. <b>20</b> Blk-Bwf 3-7 yr. old cows w/ 250lbs calves at side. Nice set of pairs. Bulls turned in May 15th. Bred Worthington Reg. Angus bulls. Calves have been worked.</li>\n<li><b>Callahan Farms: </b><b>10 </b>Blk-BwfÂ  3-6 yr. old cows w/ month old Angus calves at side. <b>10</b> Blk Angus 3-6 yr. old cows,3rd period. Will be more pairs by sale day. All cows are very gentle, had all shots &amp; very good quality. Cows sell open &amp; breed to bull of your choice. Selling due to knee surgery.Â Â </li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-07-31 14:42:35','2023-07-31 14:42:35','',2209,'https://kingsvillelivestock.com/?p=5626',0,'revision','',0),(5627,2,'2023-07-31 14:52:25','2023-07-31 14:52:25','','August 19,2023 Cow Sale','','inherit','closed','closed','','august-192023-cow-sale','','','2023-07-31 14:52:25','2023-07-31 14:52:25','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/07/August-192023-Cow-Sale.pdf',0,'attachment','application/pdf',0),(5628,2,'2023-07-31 14:52:33','2023-07-31 14:52:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cunningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/August-192023-Cow-Sale.pdf\" rel=\"attachment wp-att-5627\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-07-31 14:52:33','2023-07-31 14:52:33','',639,'https://kingsvillelivestock.com/?p=5628',0,'revision','',0),(5629,2,'2023-07-31 14:53:18','2023-07-31 14:53:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 1st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cunningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/August-192023-Cow-Sale.pdf\" rel=\"attachment wp-att-5627\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-07-31 14:53:18','2023-07-31 14:53:18','',1967,'https://kingsvillelivestock.com/?p=5629',0,'revision','',0),(5630,2,'2023-08-01 23:16:41','2023-08-01 23:16:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cunningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/August-192023-Cow-Sale.pdf\" rel=\"attachment wp-att-5627\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-08-01 23:16:41','2023-08-01 23:16:41','',639,'https://kingsvillelivestock.com/?p=5630',0,'revision','',0),(5631,2,'2023-08-01 23:17:50','2023-08-01 23:17:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cunningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/August-192023-Cow-Sale.pdf\" rel=\"attachment wp-att-5627\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-08-01 23:17:50','2023-08-01 23:17:50','',1967,'https://kingsvillelivestock.com/?p=5631',0,'revision','',0),(5632,2,'2023-08-02 14:27:26','2023-08-02 14:27:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cunningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/August-192023-Cow-Sale.pdf\" rel=\"attachment wp-att-5627\">August 19, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-08-02 14:27:26','2023-08-02 14:27:26','',639,'https://kingsvillelivestock.com/?p=5632',0,'revision','',0),(5633,2,'2023-08-02 14:29:37','2023-08-02 14:29:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cunningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/August-192023-Cow-Sale.pdf\" rel=\"attachment wp-att-5627\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am- <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-08-02 14:29:37','2023-08-02 14:29:37','',1967,'https://kingsvillelivestock.com/?p=5633',0,'revision','',0),(5634,2,'2023-08-02 14:42:35','2023-08-02 14:42:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 1, 2023, </strong>1015 hd; Last week, 1602 hd;1761 a year ago. All classes of feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$320.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$319.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$282.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$260.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$235.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$212.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$259.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$273.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$254.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$193.00-$211.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$191.00-$202.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$115.00 - $126.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $114.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$115.00 - $146.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">710lbs @$260.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">667lbs @$260.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">716lbs @$254.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 1, 2023 - Market Report','','publish','closed','open','','august-1-2023-market-report','','','2023-08-02 14:42:37','2023-08-02 14:42:37','',0,'https://kingsvillelivestock.com/?p=5634',0,'post','',0),(5636,2,'2023-08-02 14:42:35','2023-08-02 14:42:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 1, 2023, </strong>1015 hd; Last week, 1602 hd;1761 a year ago. All classes of feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$320.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$319.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$282.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$260.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$235.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$212.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$259.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$273.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$254.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$193.00-$211.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$191.00-$202.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$115.00 - $126.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $114.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$115.00 - $146.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">710lbs @$260.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">667lbs @$260.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">716lbs @$254.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 1, 2023 - Market Report','','inherit','closed','closed','','5634-revision-v1','','','2023-08-02 14:42:35','2023-08-02 14:42:35','',5634,'https://kingsvillelivestock.com/?p=5636',0,'revision','',0),(5637,2,'2023-08-02 14:42:35','2023-08-02 14:42:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 1, 2023, </strong>1015 hd; Last week, 1602 hd;1761 a year ago. All classes of feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$320.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$319.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$282.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$260.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$235.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$212.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$259.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$273.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$254.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$193.00-$211.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$191.00-$202.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$115.00 - $126.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $114.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$115.00 - $146.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">710lbs @$260.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">667lbs @$260.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">716lbs @$254.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','July 25, 2023 - Market Report','','inherit','closed','closed','','5634-revision-v1','','','2023-08-02 14:42:35','2023-08-02 14:42:35','',5634,'https://kingsvillelivestock.com/?p=5637',0,'revision','',0),(5638,2,'2023-08-02 14:42:37','2023-08-02 14:42:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 1, 2023, </strong>1015 hd; Last week, 1602 hd;1761 a year ago. All classes of feeder cattle sold steady-$5 higher. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$320.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$319.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$282.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$260.25</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$235.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$212.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$259.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$273.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$254.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$193.00-$211.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$191.00-$202.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$115.00 - $126.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $114.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$115.00 - $146.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">710lbs @$260.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">667lbs @$260.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">716lbs @$254.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 1, 2023 - Market Report','','inherit','closed','closed','','5634-revision-v1','','','2023-08-02 14:42:37','2023-08-02 14:42:37','',5634,'https://kingsvillelivestock.com/?p=5638',0,'revision','',0),(5639,2,'2023-08-02 16:01:39','2023-08-02 16:01:39','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/TuesdayJuly-25th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5611\">Tuesday,July 25th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday August 19th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Barnett Farms : </b><b>1 </b>4 yr. old Reg. Red Angus bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>15 </b>Â Blk Angus 3-6 yr. old w/ 250lbs calves at side.<b> 5 </b>Red Angus 3-6 yr. old cows w/ 250lbs calves at side.<b>30 </b>Blk-Bwf 3-6 yr. old cows, 2nd &amp; 3rd period. <b>10</b> Red Angus 3-6 yr. old cows, 2nd &amp; 3rd period. All bred to Blk Angus bulls. Good set of cows.</li>\n<li><b>K &amp; S Ranch: </b><b>44 </b>Blk 4-6 yr. old cows. All cows start calving Sept. 1st &amp; bred Sim-Angus bulls. This is a complete fall herd dispersal.</li>\n<li><b>Circle L Herefords: </b><b>10 </b>Fancy Horned Hereford 2 yr. old, 1100lbs bred heifers,3rd period. Bred Reg. Blk Angus calving ease bulls. Nice set of purebred heifers that are very gentle &amp; selling due to dry conditions.</li>\n<li><b>Kelly Farms: </b><b>6 </b>Red Angus 2 yr. old bred heifers,3rd period. Bred Blk Angus bulls. Start calving Aug. 25th for 65 days. Current on all shots &amp; vaccinations.</li>\n<li><b>Moon Farms: </b><b>5 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side. <b>45</b> Blk-Bwf 3-6 yr. old cows,3rd period. <b>45 </b>Blk-Bwf 3-6 yr. old cows, 2nd period. <b>5</b> Red-Char 3-6 yr. old cows,3rd period. All cows bred Blk Angus bulls, nice set of cows that are easy to handle.</li>\n<li><b>Harder Farms: </b><b>20 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Complete Dispersal Daniel Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. <b>40 </b>Blk-bwf 3-6 yr. old cows, 2nd period. Bred Sim-Angus &amp; Angus bulls.</li>\n<li><b>Frame Farms: </b><b>33 </b>Blk-Bwf 6-SS yr. old cows/ Feb. &amp; Mar. calves at side, 3n1â€™s. Bulls turned in May 10th &amp; bred to LBWT Sim-Angus bulls. Nice set of cow/calf pairs w/an outstanding set of calves at side.</li>\n<li><b>Asbury Farms: </b><b>20 </b>Blk-BwfÂ  3-7 yr. old cows w/ 350lbs calves at side,3N1â€™s. <b>20</b> Blk-Bwf 3-7 yr. old cows w/ 250lbs calves at side. Nice set of pairs. Bulls turned in May 15th. Bred Worthington Reg. Angus bulls. Calves have been worked.</li>\n<li><b>Callahan Farms: </b><b>10 </b>Blk-BwfÂ  3-6 yr. old cows w/ month old Angus calves at side. <b>10</b> Blk Angus 3-6 yr. old cows,3rd period. Will be more pairs by sale day. All cows are very gentle, had all shots &amp; very good quality. Cows sell open &amp; breed to bull of your choice. Selling due to knee surgery.</li>\n<li><b>Barnett Farms : </b><b>3 </b>Red Angus 5-6 yr. old cows,3rd period. <b>3 </b>Red Angus 2 yr. old 1000lbs bred heifers,3rd period. Bred Hereford bulls. <b>2</b> Red Angus 5-6 yr. old cows w/ 250lbs calves at side.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-08-02 16:01:39','2023-08-02 16:01:39','',2209,'https://kingsvillelivestock.com/?p=5639',0,'revision','',0),(5640,2,'2023-08-02 16:02:31','2023-08-02 16:02:31','','August 19,2023 Cow Sale','','inherit','closed','closed','','august-192023-cow-sale-2','','','2023-08-02 16:02:31','2023-08-02 16:02:31','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale.pdf',0,'attachment','application/pdf',0),(5641,2,'2023-08-02 16:02:51','2023-08-02 16:02:51','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cunningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale.pdf\" rel=\"attachment wp-att-5640\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-08-02 16:02:51','2023-08-02 16:02:51','',639,'https://kingsvillelivestock.com/?p=5641',0,'revision','',0),(5642,2,'2023-08-02 16:03:41','2023-08-02 16:03:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><strong>Aug. 5th @ 10:00 am<br /></strong>Margaret Cunningham Auction-For more info visit the Anstine Auction tab!</p>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale.pdf\" rel=\"attachment wp-att-5640\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am- <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-08-02 16:03:41','2023-08-02 16:03:41','',1967,'https://kingsvillelivestock.com/?p=5642',0,'revision','',0),(5644,2,'2023-08-02 16:21:51','2023-08-02 16:21:51','','image000000 (2)','','inherit','closed','closed','','image000000-2','','','2023-08-02 16:21:51','2023-08-02 16:21:51','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/08/image000000-2.jpg',0,'attachment','image/jpeg',0),(5645,2,'2023-08-02 16:26:11','2023-08-02 16:26:11','[et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Call to Action\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"6%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Trailers For Sale\" content_max_width=\"800px\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-30.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Event Section\" _builder_version=\"4.16\" custom_padding=\"60px||60px||true|false\" animation_style=\"zoom\" animation_intensity_zoom=\"6%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" text_orientation=\"center\" global_colors_info=\"{}\"]<p>We carry a wide variety of trailers to meet all of your needs.</p>\n<p><strong><a href=\"https://kingsvillelivestock.com/contact/\">Contact us</a></strong> for a FREE QUOTE today.</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2022/02/image000003-300x225.jpg\" width=\"143\" height=\"107\" alt=\"\" class=\"wp-image-4098 alignnone size-medium\" />Â  7\' X 24 2023 Eby Ruffneck 2 8k axles. 17.5 tires &amp; spare.Â  <strong>Coming Soon!Â </strong></p>\n<p><strong></strong></p>\n<p><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/image000000-2-300x225.jpg\" width=\"142\" height=\"107\" alt=\"\" class=\"wp-image-5644 alignnone size-medium\" />Â  6\' 8\'\' X 24\' Gooseneck rubber floor w / 2 cross gates, 7K axles &amp; 12 ply tires &amp; spare. <strong>$17,100.00</strong></p>\n<p><strong></strong></p>\n<p><img class=\"wp-image-2101 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG-1006-scaled-e1595879726664-300x225.jpg\" alt=\"\" width=\"147\" height=\"110\" />Â  Â  Eby 7\'1\" X 24\' Punch Panel Maverick Livestock Trailer. 14 ply tires, 7k axels, Alum. wheels, &amp; 2 cross gatesÂ  <strong>Not in Stock, Call Now for pricing &amp; to order!Â </strong></p>\n<p><strong></strong></p>\n<p><img src=\"https://kingsvillelivestock.com/wp-content/uploads/2023/03/image000000-1-300x225.jpg\" width=\"172\" height=\"129\" alt=\"\" class=\"wp-image-5235 alignnone size-medium\" /> 2014 Horse Trailer. Call for additional pictures &amp; prices! Been used 4 times</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><img class=\"wp-image-2116 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/IMG_1008-1-208x300.jpg\" alt=\"\" width=\"102\" height=\"147\" />Â  EZ Haul 32\' Bumper Pull Hay Trailer. 6 Bale <strong>$6,800.00</strong></p>\n<p><img class=\"wp-image-2117 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" alt=\"\" width=\"101\" height=\"135\" />Â  EZ Haul 32\' Gooseneck Hay Trailer. 6 Bale, $6,900.00<strong> In Stock!</strong></p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"97\" height=\"130\" />EZ Haul 36\' Gooseneck Hay Trailer. 7 Bale,<strong> $7,100.00<span style=\"color: #ff0000;\"> In Stock!Â <span style=\"color: #000000;\"> Also available in EZ Haul Hydraulic dumpÂ </span></span></strong></p>\n<p><img class=\"\" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Gooseneck-Hay-Trailer--225x300.jpg\" width=\"100\" height=\"134\" />EZ Haul 42\' Gooseneck Hay Trailer. 8 Bale,<strong> $7,600.00</strong></p>\n<p><img class=\"wp-image-2146 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Ez-Haul-Flat-Bed-2-300x225.jpg\" alt=\"\" width=\"139\" height=\"104\" />Â  Â 27\' EZ Haul Flat Bed. 22+5 Dove, 3 ramps, low profile, 10k axels, 14 ply tires. <strong>Call for price!</strong></p>\n<p><img class=\"wp-image-2147 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/ez-haul-flat-bed-3-300x225.jpg\" alt=\"\" width=\"144\" height=\"108\" /> EZ Haul 20\' Flat Bed Bumper Pull. 18+2 Dove, 2 4\' ramps, 7k axels, 10 ply tires. <strong>Out of Stock, call for price!Â </strong></p>\n<p><img class=\"wp-image-2153 alignnone \" src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/07/Wheel-Corral-300x185.png\" alt=\"\" width=\"172\" height=\"106\" /> Diamond \"W\" Wheel Corral <strong>$21,800.00Â </strong></p>\n<h1 style=\"text-align: center;\"><span style=\"color: #0000ff;\"><strong>Hay season special $200.00 off all hay trailers!</strong></span></h1>\n<h2><span style=\"color: #ff00ff;\">For additional questions about the trailers or wheel corral call the office @ 816-597-3331 or Derrick @ 816-726-3456</span></h2>\n<p><span style=\"color: #ff0000;\"><strong>Updated on August 2, 2023Â </strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','TRAILERS FOR SALE','','inherit','closed','closed','','714-revision-v1','','','2023-08-02 16:26:11','2023-08-02 16:26:11','',714,'https://kingsvillelivestock.com/?p=5645',0,'revision','',0),(5647,2,'2023-08-07 14:47:54','2023-08-07 14:47:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale.pdf\" rel=\"attachment wp-att-5640\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-08-07 14:47:54','2023-08-07 14:47:54','',639,'https://kingsvillelivestock.com/?p=5647',0,'revision','',0),(5648,2,'2023-08-07 14:48:32','2023-08-07 14:48:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale.pdf\" rel=\"attachment wp-att-5640\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am- <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-08-07 14:48:32','2023-08-07 14:48:32','',1967,'https://kingsvillelivestock.com/?p=5648',0,'revision','',0),(5649,2,'2023-08-07 14:52:15','2023-08-07 14:52:15','','Equipment Auction-October 13th','','inherit','closed','closed','','equipment-auction-october-13th','','','2023-08-07 14:52:15','2023-08-07 14:52:15','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/08/Equipment-Auction-October-13th.pdf',0,'attachment','application/pdf',0),(5651,2,'2023-08-07 14:53:59','2023-08-07 14:53:59','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.21.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p style=\"text-align: left;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/Equipment-Auction-October-13th.pdf\" rel=\"attachment wp-att-5649\">Info regarding Labor Day Auction &amp; Upcoming Equipment Auction on October 13th</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-08-07 14:53:59','2023-08-07 14:53:59','',1450,'https://kingsvillelivestock.com/?p=5651',0,'revision','',0),(5652,2,'2023-08-07 15:09:08','2023-08-07 15:09:08','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/TuesdayJuly-25th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5611\">Tuesday,July 25th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday August 19th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Barnett Farms : </b><b>1 </b>4 yr. old Reg. Red Angus bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>15 </b>Â Blk Angus 3-6 yr. old w/ 250lbs calves at side.<b> 5 </b>Red Angus 3-6 yr. old cows w/ 250lbs calves at side.<b>30 </b>Blk-Bwf 3-6 yr. old cows, 2nd &amp; 3rd period. <b>10</b> Red Angus 3-6 yr. old cows, 2nd &amp; 3rd period. All bred to Blk Angus bulls. Good set of cows.</li>\n<li><b>K &amp; S Ranch: </b><b>44 </b>Blk 4-6 yr. old cows. All cows start calving Sept. 1st &amp; bred Sim-Angus bulls. This is a complete fall herd dispersal.</li>\n<li><b>Circle L Herefords: </b><b>10 </b>Fancy Horned Hereford 2 yr. old, 1100lbs bred heifers,3rd period. Bred Reg. Blk Angus calving ease bulls. Nice set of purebred heifers that are very gentle &amp; selling due to dry conditions.</li>\n<li><b>Kelly Farms: </b><b>6 </b>Red Angus 2 yr. old bred heifers,3rd period. Bred Blk Angus bulls. Start calving Aug. 25th for 65 days. Current on all shots &amp; vaccinations.</li>\n<li><b>Moon Farms: </b><b>5 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side. <b>45</b> Blk-Bwf 3-6 yr. old cows,3rd period. <b>45 </b>Blk-Bwf 3-6 yr. old cows, 2nd period. <b>5</b> Red-Char 3-6 yr. old cows,3rd period. All cows bred Blk Angus bulls, nice set of cows that are easy to handle.</li>\n<li><b>Harder Farms: </b><b>20 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Complete Dispersal Daniel Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. <b>40 </b>Blk-bwf 3-6 yr. old cows, 2nd period. Bred Sim-Angus &amp; Angus bulls.</li>\n<li><b>Frame Farms: </b><b>33 </b>Blk-Bwf 6-SS yr. old cows/ Feb. &amp; Mar. calves at side, 3n1â€™s. Bulls turned in May 10th &amp; bred to LBWT Sim-Angus bulls. Nice set of cow/calf pairs w/an outstanding set of calves at side.</li>\n<li><b>Asbury Farms: </b><b>20 </b>Blk-BwfÂ  3-7 yr. old cows w/ 350lbs calves at side,3N1â€™s. <b>20</b> Blk-Bwf 3-7 yr. old cows w/ 250lbs calves at side. Nice set of pairs. Bulls turned in May 15th. Bred Worthington Reg. Angus bulls. Calves have been worked.</li>\n<li><b>Callahan Farms: </b><b>10 </b>Blk-BwfÂ  3-6 yr. old cows w/ month old Angus calves at side. <b>10</b> Blk Angus 3-6 yr. old cows,3rd period. Will be more pairs by sale day. All cows are very gentle, had all shots &amp; very good quality. Cows sell open &amp; breed to bull of your choice. Selling due to knee surgery.</li>\n<li><b>Barnett Farms : </b><b>3 </b>Red Angus 5-6 yr. old cows,3rd period. <b>3 </b>Red Angus 2 yr. old 1000lbs bred heifers,3rd period. Bred Hereford bulls. <b>2</b> Red Angus 5-6 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Walter Conrow Farms Complete Dispersal: </b><b>7 </b>Blk 5-7 yr. old cows w/ spring calves at side. Running back w/Â  Blk Angus bulls since May 20th. <b>7 </b>Blk 5 yr. old cows, 1st period. Bred Blk Angus. All cows are gentle &amp; easy going.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-08-07 15:09:08','2023-08-07 15:09:08','',2209,'https://kingsvillelivestock.com/?p=5652',0,'revision','',0),(5653,2,'2023-08-07 15:10:33','2023-08-07 15:10:33','','August 19,2023 Cow Sale','','inherit','closed','closed','','august-192023-cow-sale-3','','','2023-08-07 15:10:33','2023-08-07 15:10:33','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(5654,2,'2023-08-07 15:10:40','2023-08-07 15:10:40','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5653\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-08-07 15:10:40','2023-08-07 15:10:40','',639,'https://kingsvillelivestock.com/?p=5654',0,'revision','',0),(5655,2,'2023-08-07 15:11:41','2023-08-07 15:11:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5653\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am- <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-08-07 15:11:41','2023-08-07 15:11:41','',1967,'https://kingsvillelivestock.com/?p=5655',0,'revision','',0),(5656,2,'2023-08-07 15:29:45','2023-08-07 15:29:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/07/TuesdayJuly-25th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5611\">Tuesday,July 25th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday August 19th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Barnett Farms : </b><b>1 </b>4 yr. old Reg. Red Angus bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>15 </b>Â Blk Angus 3-6 yr. old w/ 250lbs calves at side.<b> 5 </b>Red Angus 3-6 yr. old cows w/ 250lbs calves at side.<b>30 </b>Blk-Bwf 3-6 yr. old cows, 2nd &amp; 3rd period. <b>10</b> Red Angus 3-6 yr. old cows, 2nd &amp; 3rd period. All bred to Blk Angus bulls. Good set of cows.</li>\n<li><b>K &amp; S Ranch: </b><b>44 </b>Blk 4-6 yr. old cows. All cows start calving Sept. 1st &amp; bred Sim-Angus bulls. This is a complete fall herd dispersal.</li>\n<li><b>Circle L Herefords: </b><b>10 </b>Fancy Horned Hereford 2 yr. old, 1100lbs bred heifers,3rd period. Bred Reg. Blk Angus calving ease bulls. Nice set of purebred heifers that are very gentle &amp; selling due to dry conditions.</li>\n<li><b>Kelly Farms: </b><b>6 </b>Red Angus 2 yr. old bred heifers,3rd period. Bred Blk Angus bulls. Start calving Aug. 25th for 65 days. Current on all shots &amp; vaccinations.</li>\n<li><b>Moon Farms: </b><b>5 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side. <b>45</b> Blk-Bwf 3-6 yr. old cows,3rd period. <b>45 </b>Blk-Bwf 3-6 yr. old cows, 2nd period. <b>5</b> Red-Char 3-6 yr. old cows,3rd period. All cows bred Blk Angus bulls, nice set of cows that are easy to handle.</li>\n<li><b>Harder Farms: </b><b>20 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Complete Dispersal Daniel Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. <b>40 </b>Blk-bwf 3-6 yr. old cows, 2nd period. Bred Sim-Angus &amp; Angus bulls.</li>\n<li><b>Frame Farms: </b><b>33 </b>Blk-Bwf 6-SS yr. old cows/ Feb. &amp; Mar. calves at side, 3n1â€™s. Bulls turned in May 10th &amp; bred to LBWT Sim-Angus bulls. Nice set of cow/calf pairs w/an outstanding set of calves at side.</li>\n<li><b>Asbury Farms: </b><b>20 </b>Blk-BwfÂ  3-7 yr. old cows w/ 350lbs calves at side,3N1â€™s. <b>20</b> Blk-Bwf 3-7 yr. old cows w/ 250lbs calves at side. Nice set of pairs. Bulls turned in May 15th. Bred Worthington Reg. Angus bulls. Calves have been worked.</li>\n<li><b>Callahan Farms: </b><b>10 </b>Blk-BwfÂ  3-6 yr. old cows w/ month old Angus calves at side. <b>10</b> Blk Angus 3-6 yr. old cows,3rd period. Will be more pairs by sale day. All cows are very gentle, had all shots &amp; very good quality. Cows sell open &amp; breed to bull of your choice. Selling due to knee surgery.</li>\n<li><b>Barnett Farms : </b><b>3 </b>Red Angus 5-6 yr. old cows,3rd period. <b>3 </b>Red Angus 2 yr. old 1000lbs bred heifers,3rd period. Bred Hereford bulls. <b>2</b> Red Angus 5-6 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Walter Conrow Farms Complete Dispersal: </b><b>7 </b>Blk 5-7 yr. old cows w/ spring calves at side. Running back w/Â  Blk Angus bulls since May 20th. <b>7 </b>Blk 5 yr. old cows, 1st period. Bred Blk Angus. All cows are gentle &amp; easy going.</li>\n<li><b>Old Church Cattle Co. : </b><b>15 </b>Blk-Bwf 3-6 yr. old cows,2nd period. Bred Sydenstricker Angus bulls</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-08-07 15:29:45','2023-08-07 15:29:45','',2209,'https://kingsvillelivestock.com/?p=5656',0,'revision','',0),(5657,2,'2023-08-07 15:31:13','2023-08-07 15:31:13','','August 19,2023 Cow Sale','','inherit','closed','closed','','august-192023-cow-sale-4','','','2023-08-07 15:31:13','2023-08-07 15:31:13','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-2.pdf',0,'attachment','application/pdf',0);
INSERT INTO `b78GM7Ml_posts` VALUES (5658,2,'2023-08-07 15:31:20','2023-08-07 15:31:20','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5657\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-08-07 15:31:20','2023-08-07 15:31:20','',639,'https://kingsvillelivestock.com/?p=5658',0,'revision','',0),(5659,2,'2023-08-07 15:31:49','2023-08-07 15:31:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5657\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am- <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-08-07 15:31:49','2023-08-07 15:31:49','',1967,'https://kingsvillelivestock.com/?p=5659',0,'revision','',0),(5660,2,'2023-08-07 17:35:24','2023-08-07 17:35:24','','Tuesday,August 8th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayaugust-8th-feeder-cattle-consignments','','','2023-08-07 17:35:24','2023-08-07 17:35:24','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/08/TuesdayAugust-8th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5661,2,'2023-08-07 17:35:33','2023-08-07 17:35:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/TuesdayAugust-8th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5660\">Tuesday,August 8th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday August 19th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Barnett Farms : </b><b>1 </b>4 yr. old Reg. Red Angus bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>15 </b>Â Blk Angus 3-6 yr. old w/ 250lbs calves at side.<b> 5 </b>Red Angus 3-6 yr. old cows w/ 250lbs calves at side.<b>30 </b>Blk-Bwf 3-6 yr. old cows, 2nd &amp; 3rd period. <b>10</b> Red Angus 3-6 yr. old cows, 2nd &amp; 3rd period. All bred to Blk Angus bulls. Good set of cows.</li>\n<li><b>K &amp; S Ranch: </b><b>44 </b>Blk 4-6 yr. old cows. All cows start calving Sept. 1st &amp; bred Sim-Angus bulls. This is a complete fall herd dispersal.</li>\n<li><b>Circle L Herefords: </b><b>10 </b>Fancy Horned Hereford 2 yr. old, 1100lbs bred heifers,3rd period. Bred Reg. Blk Angus calving ease bulls. Nice set of purebred heifers that are very gentle &amp; selling due to dry conditions.</li>\n<li><b>Kelly Farms: </b><b>6 </b>Red Angus 2 yr. old bred heifers,3rd period. Bred Blk Angus bulls. Start calving Aug. 25th for 65 days. Current on all shots &amp; vaccinations.</li>\n<li><b>Moon Farms: </b><b>5 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side. <b>45</b> Blk-Bwf 3-6 yr. old cows,3rd period. <b>45 </b>Blk-Bwf 3-6 yr. old cows, 2nd period. <b>5</b> Red-Char 3-6 yr. old cows,3rd period. All cows bred Blk Angus bulls, nice set of cows that are easy to handle.</li>\n<li><b>Harder Farms: </b><b>20 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Complete Dispersal Daniel Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. <b>40 </b>Blk-bwf 3-6 yr. old cows, 2nd period. Bred Sim-Angus &amp; Angus bulls.</li>\n<li><b>Frame Farms: </b><b>33 </b>Blk-Bwf 6-SS yr. old cows/ Feb. &amp; Mar. calves at side, 3n1â€™s. Bulls turned in May 10th &amp; bred to LBWT Sim-Angus bulls. Nice set of cow/calf pairs w/an outstanding set of calves at side.</li>\n<li><b>Asbury Farms: </b><b>20 </b>Blk-BwfÂ  3-7 yr. old cows w/ 350lbs calves at side,3N1â€™s. <b>20</b> Blk-Bwf 3-7 yr. old cows w/ 250lbs calves at side. Nice set of pairs. Bulls turned in May 15th. Bred Worthington Reg. Angus bulls. Calves have been worked.</li>\n<li><b>Callahan Farms: </b><b>10 </b>Blk-BwfÂ  3-6 yr. old cows w/ month old Angus calves at side. <b>10</b> Blk Angus 3-6 yr. old cows,3rd period. Will be more pairs by sale day. All cows are very gentle, had all shots &amp; very good quality. Cows sell open &amp; breed to bull of your choice. Selling due to knee surgery.</li>\n<li><b>Barnett Farms : </b><b>3 </b>Red Angus 5-6 yr. old cows,3rd period. <b>3 </b>Red Angus 2 yr. old 1000lbs bred heifers,3rd period. Bred Hereford bulls. <b>2</b> Red Angus 5-6 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Walter Conrow Farms Complete Dispersal: </b><b>7 </b>Blk 5-7 yr. old cows w/ spring calves at side. Running back w/Â  Blk Angus bulls since May 20th. <b>7 </b>Blk 5 yr. old cows, 1st period. Bred Blk Angus. All cows are gentle &amp; easy going.</li>\n<li><b>Old Church Cattle Co. : </b><b>15 </b>Blk-Bwf 3-6 yr. old cows,2nd period. Bred Sydenstricker Angus bulls</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-08-07 17:35:33','2023-08-07 17:35:33','',2209,'https://kingsvillelivestock.com/?p=5661',0,'revision','',0),(5662,2,'2023-08-07 19:32:54','2023-08-07 19:32:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5657\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-08-07 19:32:54','2023-08-07 19:32:54','',639,'https://kingsvillelivestock.com/?p=5662',0,'revision','',0),(5663,2,'2023-08-07 19:33:30','2023-08-07 19:33:30','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5657\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am- <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-08-07 19:33:30','2023-08-07 19:33:30','',1967,'https://kingsvillelivestock.com/?p=5663',0,'revision','',0),(5664,2,'2023-08-08 15:13:30','2023-08-08 15:13:30','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/TuesdayAugust-8th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5660\">Tuesday,August 8th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday August 19th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Barnett Farms : </b><b>1 </b>4 yr. old Reg. Red Angus bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>15 </b>Â Blk Angus 3-6 yr. old w/ 250lbs calves at side.<b> 5 </b>Red Angus 3-6 yr. old cows w/ 250lbs calves at side.<b>30 </b>Blk-Bwf 3-6 yr. old cows, 2nd &amp; 3rd period. <b>10</b> Red Angus 3-6 yr. old cows, 2nd &amp; 3rd period. All bred to Blk Angus bulls. Good set of cows.</li>\n<li><b>K &amp; S Ranch: </b><b>44 </b>Blk 4-6 yr. old cows. All cows start calving Sept. 1st &amp; bred Sim-Angus bulls. This is a complete fall herd dispersal.</li>\n<li><b>Circle L Herefords: </b><b>10 </b>Fancy Horned Hereford 2 yr. old, 1100lbs bred heifers,3rd period. Bred Reg. Blk Angus calving ease bulls. Nice set of purebred heifers that are very gentle &amp; selling due to dry conditions.</li>\n<li><b>Kelly Farms: </b><b>6 </b>Red Angus 2 yr. old bred heifers,3rd period. Bred Blk Angus bulls. Start calving Aug. 25th for 65 days. Current on all shots &amp; vaccinations.</li>\n<li><b>Moon Farms: </b><b>5 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side. <b>45</b> Blk-Bwf 3-6 yr. old cows,3rd period. <b>45 </b>Blk-Bwf 3-6 yr. old cows, 2nd period. <b>5</b> Red-Char 3-6 yr. old cows,3rd period. All cows bred Blk Angus bulls, nice set of cows that are easy to handle.</li>\n<li><b>Harder Farms: </b><b>20 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Complete Dispersal Daniel Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. <b>40 </b>Blk-bwf 3-6 yr. old cows, 2nd period. Bred Sim-Angus &amp; Angus bulls.</li>\n<li><b>Frame Farms: </b><b>33 </b>Blk-Bwf 6-SS yr. old cows/ Feb. &amp; Mar. calves at side, 3n1â€™s. Bulls turned in May 10th &amp; bred to LBWT Sim-Angus bulls. Nice set of cow/calf pairs w/an outstanding set of calves at side.</li>\n<li><b>Asbury Farms: </b><b>20 </b>Blk-BwfÂ  3-7 yr. old cows w/ 350lbs calves at side,3N1â€™s. <b>20</b> Blk-Bwf 3-7 yr. old cows w/ 250lbs calves at side. Nice set of pairs. Bulls turned in May 15th. Bred Worthington Reg. Angus bulls. Calves have been worked.</li>\n<li><b>Callahan Farms: </b><b>10 </b>Blk-BwfÂ  3-6 yr. old cows w/ month old Angus calves at side. <b>10</b> Blk Angus 3-6 yr. old cows,3rd period. Will be more pairs by sale day. All cows are very gentle, had all shots &amp; very good quality. Cows sell open &amp; breed to bull of your choice. Selling due to knee surgery.</li>\n<li><b>Barnett Farms : </b><b>3 </b>Red Angus 5-6 yr. old cows,3rd period. <b>3 </b>Red Angus 2 yr. old 1000lbs bred heifers,3rd period. Bred Hereford bulls. <b>2</b> Red Angus 5-6 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Walter Conrow Farms Complete Dispersal: </b><b>7 </b>Blk 5-7 yr. old cows w/ spring calves at side. Running back w/Â  Blk Angus bulls since May 20th. <b>7 </b>Blk 5 yr. old cows, 1st period. Bred Blk Angus. All cows are gentle &amp; easy going.</li>\n<li><b>Old Church Cattle Co. : </b><b>15 </b>Blk-Bwf 3-6 yr. old cows,2nd period. Bred Sydenstricker Angus bulls</li>\n<li><b>Kauffman Farms : </b><b>12 </b>Blk-Bwf 5-7 yr. old cows,3rd period. Bred Lucas Sim-Angus bulls. Will have new born calves by sale day. <b>1 </b>3 yr. old Red Cow w/ 250lbs calf at side</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-08-08 15:13:30','2023-08-08 15:13:30','',2209,'https://kingsvillelivestock.com/?p=5664',0,'revision','',0),(5665,2,'2023-08-08 15:14:20','2023-08-08 15:14:20','','August 19,2023 Cow Sale','','inherit','closed','closed','','august-192023-cow-sale-5','','','2023-08-08 15:14:20','2023-08-08 15:14:20','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-3.pdf',0,'attachment','application/pdf',0),(5666,2,'2023-08-08 15:14:26','2023-08-08 15:14:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5665\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-08-08 15:14:26','2023-08-08 15:14:26','',639,'https://kingsvillelivestock.com/?p=5666',0,'revision','',0),(5667,2,'2023-08-08 15:15:02','2023-08-08 15:15:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 8th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5665\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am- <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-08-08 15:15:02','2023-08-08 15:15:02','',1967,'https://kingsvillelivestock.com/?p=5667',0,'revision','',0),(5668,2,'2023-08-09 01:30:10','2023-08-09 01:30:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5665\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-08-09 01:30:10','2023-08-09 01:30:10','',639,'https://kingsvillelivestock.com/?p=5668',0,'revision','',0),(5669,2,'2023-08-09 01:31:01','2023-08-09 01:31:01','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5665\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am- <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-08-09 01:31:01','2023-08-09 01:31:01','',1967,'https://kingsvillelivestock.com/?p=5669',0,'revision','',0),(5670,2,'2023-08-09 01:49:21','2023-08-09 01:49:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 8, 2023, </strong>1473 hd; Last week, 1015hd;1 a year ago. Feeder cattle of all classes sold steady-$3 higher. Slaughter cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$317.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$319.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$269.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$217.00-$265.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$221.00-$244.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$195.00-$225.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$272.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$266.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$190.00-$204.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$190.00-$215.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$120.00 - $135.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$109.00 - $119.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $108.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $144.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">463lbs @$330.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">680lbs @$269.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">767lbs @$265.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">818lbs @$244.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">680lbs @$256.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">699lbs @$250.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 8, 2023 - Market Report','','publish','closed','open','','august-8-2023-market-report','','','2023-08-09 01:49:24','2023-08-09 01:49:24','',0,'https://kingsvillelivestock.com/?p=5670',0,'post','',0),(5672,2,'2023-08-09 01:49:21','2023-08-09 01:49:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 8, 2023, </strong>1473 hd; Last week, 1015hd;1 a year ago. Feeder cattle of all classes sold steady-$3 higher. Slaughter cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$317.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$319.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$269.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$217.00-$265.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$221.00-$244.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$195.00-$225.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$272.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$266.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$190.00-$204.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$190.00-$215.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$120.00 - $135.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$109.00 - $119.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $108.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $144.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">463lbs @$330.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">680lbs @$269.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">767lbs @$265.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">818lbs @$244.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">680lbs @$256.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">699lbs @$250.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 8, 2023 - Market Report','','inherit','closed','closed','','5670-revision-v1','','','2023-08-09 01:49:21','2023-08-09 01:49:21','',5670,'https://kingsvillelivestock.com/?p=5672',0,'revision','',0),(5673,2,'2023-08-09 01:49:21','2023-08-09 01:49:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 8, 2023, </strong>1473 hd; Last week, 1015hd;1 a year ago. Feeder cattle of all classes sold steady-$3 higher. Slaughter cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$317.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$319.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$269.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$217.00-$265.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$221.00-$244.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$195.00-$225.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$272.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$266.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$190.00-$204.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$190.00-$215.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$120.00 - $135.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$109.00 - $119.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $108.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $144.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">463lbs @$330.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">680lbs @$269.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">767lbs @$265.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">818lbs @$244.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">680lbs @$256.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">699lbs @$250.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 1, 2023 - Market Report','','inherit','closed','closed','','5670-revision-v1','','','2023-08-09 01:49:21','2023-08-09 01:49:21','',5670,'https://kingsvillelivestock.com/?p=5673',0,'revision','',0),(5674,2,'2023-08-09 01:49:24','2023-08-09 01:49:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 8, 2023, </strong>1473 hd; Last week, 1015hd;1 a year ago. Feeder cattle of all classes sold steady-$3 higher. Slaughter cows &amp; bulls sold $2-$5 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$317.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$319.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$269.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$217.00-$265.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$221.00-$244.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$195.00-$225.25</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$305.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$272.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$266.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$190.00-$204.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$190.00-$215.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$120.00 - $135.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$109.00 - $119.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $108.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $144.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.21.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">463lbs @$330.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">680lbs @$269.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">767lbs @$265.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">818lbs @$244.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">680lbs @$256.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">699lbs @$250.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 8, 2023 - Market Report','','inherit','closed','closed','','5670-revision-v1','','','2023-08-09 01:49:24','2023-08-09 01:49:24','',5670,'https://kingsvillelivestock.com/?p=5674',0,'revision','',0),(5675,2,'2023-08-14 16:00:33','2023-08-14 16:00:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5665\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 amÂ <br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pmÂ <br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-08-14 16:00:33','2023-08-14 16:00:33','',639,'https://kingsvillelivestock.com/?p=5675',0,'revision','',0),(5676,2,'2023-08-14 16:01:30','2023-08-14 16:01:30','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 15th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5665\">August 19, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am- <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 amÂ <br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pmÂ <br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-08-14 16:01:30','2023-08-14 16:01:30','',1967,'https://kingsvillelivestock.com/?p=5676',0,'revision','',0),(5677,2,'2023-08-14 18:17:25','2023-08-14 18:17:25','','Tuesday,August 15th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayaugust-15th-feeder-cattle-consignments-2','','','2023-08-14 18:17:25','2023-08-14 18:17:25','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/08/TuesdayAugust-15th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5678,2,'2023-08-14 18:17:35','2023-08-14 18:17:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/TuesdayAugust-15th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5677\">Tuesday,August 15th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday August 19th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Barnett Farms : </b><b>1 </b>4 yr. old Reg. Red Angus bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>15 </b>Â Blk Angus 3-6 yr. old w/ 250lbs calves at side.<b> 5 </b>Red Angus 3-6 yr. old cows w/ 250lbs calves at side.<b>30 </b>Blk-Bwf 3-6 yr. old cows, 2nd &amp; 3rd period. <b>10</b> Red Angus 3-6 yr. old cows, 2nd &amp; 3rd period. All bred to Blk Angus bulls. Good set of cows.</li>\n<li><b>K &amp; S Ranch: </b><b>44 </b>Blk 4-6 yr. old cows. All cows start calving Sept. 1st &amp; bred Sim-Angus bulls. This is a complete fall herd dispersal.</li>\n<li><b>Circle L Herefords: </b><b>10 </b>Fancy Horned Hereford 2 yr. old, 1100lbs bred heifers,3rd period. Bred Reg. Blk Angus calving ease bulls. Nice set of purebred heifers that are very gentle &amp; selling due to dry conditions.</li>\n<li><b>Kelly Farms: </b><b>6 </b>Red Angus 2 yr. old bred heifers,3rd period. Bred Blk Angus bulls. Start calving Aug. 25th for 65 days. Current on all shots &amp; vaccinations.</li>\n<li><b>Moon Farms: </b><b>5 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side. <b>45</b> Blk-Bwf 3-6 yr. old cows,3rd period. <b>45 </b>Blk-Bwf 3-6 yr. old cows, 2nd period. <b>5</b> Red-Char 3-6 yr. old cows,3rd period. All cows bred Blk Angus bulls, nice set of cows that are easy to handle.</li>\n<li><b>Harder Farms: </b><b>20 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Complete Dispersal Daniel Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. <b>40 </b>Blk-bwf 3-6 yr. old cows, 2nd period. Bred Sim-Angus &amp; Angus bulls.</li>\n<li><b>Frame Farms: </b><b>33 </b>Blk-Bwf 6-SS yr. old cows/ Feb. &amp; Mar. calves at side, 3n1â€™s. Bulls turned in May 10th &amp; bred to LBWT Sim-Angus bulls. Nice set of cow/calf pairs w/an outstanding set of calves at side.</li>\n<li><b>Asbury Farms: </b><b>20 </b>Blk-BwfÂ  3-7 yr. old cows w/ 350lbs calves at side,3N1â€™s. <b>20</b> Blk-Bwf 3-7 yr. old cows w/ 250lbs calves at side. Nice set of pairs. Bulls turned in May 15th. Bred Worthington Reg. Angus bulls. Calves have been worked.</li>\n<li><b>Callahan Farms: </b><b>10 </b>Blk-BwfÂ  3-6 yr. old cows w/ month old Angus calves at side. <b>10</b> Blk Angus 3-6 yr. old cows,3rd period. Will be more pairs by sale day. All cows are very gentle, had all shots &amp; very good quality. Cows sell open &amp; breed to bull of your choice. Selling due to knee surgery.</li>\n<li><b>Barnett Farms : </b><b>3 </b>Red Angus 5-6 yr. old cows,3rd period. <b>3 </b>Red Angus 2 yr. old 1000lbs bred heifers,3rd period. Bred Hereford bulls. <b>2</b> Red Angus 5-6 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Walter Conrow Farms Complete Dispersal: </b><b>7 </b>Blk 5-7 yr. old cows w/ spring calves at side. Running back w/Â  Blk Angus bulls since May 20th. <b>7 </b>Blk 5 yr. old cows, 1st period. Bred Blk Angus. All cows are gentle &amp; easy going.</li>\n<li><b>Old Church Cattle Co. : </b><b>15 </b>Blk-Bwf 3-6 yr. old cows,2nd period. Bred Sydenstricker Angus bulls</li>\n<li><b>Kauffman Farms : </b><b>12 </b>Blk-Bwf 5-7 yr. old cows,3rd period. Bred Lucas Sim-Angus bulls. Will have new born calves by sale day. <b>1 </b>3 yr. old Red Cow w/ 250lbs calf at side</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-08-14 18:17:35','2023-08-14 18:17:35','',2209,'https://kingsvillelivestock.com/?p=5678',0,'revision','',0),(5680,2,'2023-08-15 15:10:47','2023-08-15 15:10:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/TuesdayAugust-15th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5677\">Tuesday,August 15th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #0000ff;\">Special Cow &amp; Bull Sale, Saturday August 19th @ 11amÂ </span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Barnett Farms : </b><b>1 </b>4 yr. old Reg. Red Angus bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Mead Farms: </b><b>15 </b>Â Blk Angus 3-6 yr. old w/ 250lbs calves at side.<b> 5 </b>Red Angus 3-6 yr. old cows w/ 250lbs calves at side.<b>30 </b>Blk-Bwf 3-6 yr. old cows, 2nd &amp; 3rd period. <b>10</b> Red Angus 3-6 yr. old cows, 2nd &amp; 3rd period. All bred to Blk Angus bulls. Good set of cows.</li>\n<li><b>Circle L Herefords: </b><b>10 </b>Fancy Horned Hereford 2 yr. old, 1100lbs bred heifers,3rd period. Bred Reg. Blk Angus calving ease bulls. Nice set of purebred heifers that are very gentle &amp; selling due to dry conditions.</li>\n<li><b>Kelly Farms: </b><b>6 </b>Red Angus 2 yr. old bred heifers,3rd period. Bred Blk Angus bulls. Start calving Aug. 25th for 65 days. Current on all shots &amp; vaccinations.</li>\n<li><b>Moon Farms: </b><b>5 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side. <b>45</b> Blk-Bwf 3-6 yr. old cows,3rd period. <b>45 </b>Blk-Bwf 3-6 yr. old cows, 2nd period. <b>5</b> Red-Char 3-6 yr. old cows,3rd period. All cows bred Blk Angus bulls, nice set of cows that are easy to handle.</li>\n<li><b>Harder Farms: </b><b>20 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side.</li>\n<li><b>Complete Dispersal Daniel Farms: </b><b>40 </b>Blk-Bwf 3-6 yr. old cows, 3rd period. <b>40 </b>Blk-bwf 3-6 yr. old cows, 2nd period. Bred Sim-Angus &amp; Angus bulls.</li>\n<li><b>Frame Farms: </b><b>33 </b>Blk-Bwf 6-SS yr. old cows/ Feb. &amp; Mar. calves at side, 3n1â€™s. Bulls turned in May 10th &amp; bred to LBWT Sim-Angus bulls. Nice set of cow/calf pairs w/an outstanding set of calves at side.</li>\n<li><b>Asbury Farms: </b><b>20 </b>Blk-BwfÂ  3-7 yr. old cows w/ 350lbs calves at side,3N1â€™s. <b>20</b> Blk-Bwf 3-7 yr. old cows w/ 250lbs calves at side. Nice set of pairs. Bulls turned in May 15th. Bred Worthington Reg. Angus bulls. Calves have been worked.</li>\n<li><b>Callahan Farms: </b><b>10 </b>Blk-BwfÂ  3-6 yr. old cows w/ month old Angus calves at side. <b>10</b> Blk Angus 3-6 yr. old cows,3rd period. Will be more pairs by sale day. All cows are very gentle, had all shots &amp; very good quality. Cows sell open &amp; breed to bull of your choice. Selling due to knee surgery.</li>\n<li><b>Barnett Farms : </b><b>3 </b>Red Angus 5-6 yr. old cows,3rd period. <b>3 </b>Red Angus 2 yr. old 1000lbs bred heifers,3rd period. Bred Hereford bulls. <b>2</b> Red Angus 5-6 yr. old cows w/ 250lbs calves at side.</li>\n<li><b>Walter Conrow Farms Complete Dispersal: </b><b>7 </b>Blk 5-7 yr. old cows w/ spring calves at side. Running back w/Â  Blk Angus bulls since May 20th. <b>7 </b>Blk 5 yr. old cows, 1st period. Bred Blk Angus. All cows are gentle &amp; easy going.</li>\n<li><b>Old Church Cattle Co. : </b><b>15 </b>Blk-Bwf 3-6 yr. old cows,2nd period. Bred Sydenstricker Angus bulls</li>\n<li><b>Kauffman Farms : </b><b>12 </b>Blk-Bwf 5-7 yr. old cows,3rd period. Bred Lucas Sim-Angus bulls. Will have new born calves by sale day. <b>1 </b>3 yr. old Red Cow w/ 250lbs calf at side</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-08-15 15:10:47','2023-08-15 15:10:47','',2209,'https://kingsvillelivestock.com/?p=5680',0,'revision','',0),(5681,2,'2023-08-15 22:36:40','2023-08-15 22:36:40','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5665\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-08-15 22:36:40','2023-08-15 22:36:40','',639,'https://kingsvillelivestock.com/?p=5681',0,'revision','',0),(5682,2,'2023-08-15 22:37:49','2023-08-15 22:37:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5665\">August 19, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am- <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-08-15 22:37:49','2023-08-15 22:37:49','',1967,'https://kingsvillelivestock.com/?p=5682',0,'revision','',0),(5683,2,'2023-08-16 14:14:56','2023-08-16 14:14:56','','August 19,2023 Cow Sale','','inherit','closed','closed','','august-192023-cow-sale-6','','','2023-08-16 14:14:56','2023-08-16 14:14:56','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-4.pdf',0,'attachment','application/pdf',0),(5684,2,'2023-08-16 14:15:04','2023-08-16 14:15:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-4.pdf\" rel=\"attachment wp-att-5683\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-08-16 14:15:04','2023-08-16 14:15:04','',639,'https://kingsvillelivestock.com/?p=5684',0,'revision','',0),(5685,2,'2023-08-16 14:15:36','2023-08-16 14:15:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 19th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/August-192023-Cow-Sale-4.pdf\" rel=\"attachment wp-att-5683\">August 19,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am- <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-08-16 14:15:36','2023-08-16 14:15:36','',1967,'https://kingsvillelivestock.com/?p=5685',0,'revision','',0),(5686,2,'2023-08-16 15:09:54','2023-08-16 15:09:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 15, 2023, </strong>1057 hd; Last week, 1473 hd;1293 a year ago. Compared to last week, steers &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$340.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$324.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$317.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$282.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$247.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$224.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$298.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$309.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$287.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$255.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$190.00-$230.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$190.00-$218.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $141.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">799lbs @$255.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">829lbs @$247.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">968lbs @$234.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">678lbs @$255.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 15, 2023 - Market Report','','publish','closed','open','','august-15-2023-market-report','','','2023-08-16 15:09:57','2023-08-16 15:09:57','',0,'https://kingsvillelivestock.com/?p=5686',0,'post','',0),(5688,2,'2023-08-16 15:09:54','2023-08-16 15:09:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 15, 2023, </strong>1057 hd; Last week, 1473 hd;1293 a year ago. Compared to last week, steers &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$340.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$324.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$317.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$282.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$247.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$224.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$298.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$309.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$287.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$255.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$190.00-$230.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$190.00-$218.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $141.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">799lbs @$255.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">829lbs @$247.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">968lbs @$234.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">678lbs @$255.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 15, 2023 - Market Report','','inherit','closed','closed','','5686-revision-v1','','','2023-08-16 15:09:54','2023-08-16 15:09:54','',5686,'https://kingsvillelivestock.com/?p=5688',0,'revision','',0),(5689,2,'2023-08-16 15:09:54','2023-08-16 15:09:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 15, 2023, </strong>1057 hd; Last week, 1473 hd;1293 a year ago. Compared to last week, steers &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$340.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$324.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$317.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$282.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$247.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$224.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$298.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$309.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$287.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$255.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$190.00-$230.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$190.00-$218.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $141.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">799lbs @$255.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">829lbs @$247.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">968lbs @$234.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">678lbs @$255.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 8, 2023 - Market Report','','inherit','closed','closed','','5686-revision-v1','','','2023-08-16 15:09:54','2023-08-16 15:09:54','',5686,'https://kingsvillelivestock.com/?p=5689',0,'revision','',0),(5691,2,'2023-08-16 15:09:57','2023-08-16 15:09:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 15, 2023, </strong>1057 hd; Last week, 1473 hd;1293 a year ago. Compared to last week, steers &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$340.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$324.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$317.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$282.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$247.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$224.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$298.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$309.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$287.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$255.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$245.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$190.00-$230.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$190.00-$218.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $141.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.0\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">799lbs @$255.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">829lbs @$247.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">968lbs @$234.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">678lbs @$255.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 15, 2023 - Market Report','','inherit','closed','closed','','5686-revision-v1','','','2023-08-16 15:09:57','2023-08-16 15:09:57','',5686,'https://kingsvillelivestock.com/?p=5691',0,'revision','',0),(5692,2,'2023-08-16 15:21:12','2023-08-16 15:21:12','','Equipment Auction-October 13th','','inherit','closed','closed','','equipment-auction-october-13th-2','','','2023-08-16 15:21:12','2023-08-16 15:21:12','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/08/Equipment-Auction-October-13th-1.pdf',0,'attachment','application/pdf',0),(5693,2,'2023-08-16 15:21:47','2023-08-16 15:21:47','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.0\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/Equipment-Auction-October-13th-1.pdf\" rel=\"attachment wp-att-5692\">Info regarding Labor Day Auction &amp; upcoming Equipment Auction on October 13th</a></p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-08-16 15:21:47','2023-08-16 15:21:47','',1450,'https://kingsvillelivestock.com/?p=5693',0,'revision','',0),(5694,2,'2023-08-21 14:30:32','2023-08-21 14:30:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-08-21 14:30:32','2023-08-21 14:30:32','',639,'https://kingsvillelivestock.com/?p=5694',0,'revision','',0),(5695,2,'2023-08-21 14:31:03','2023-08-21 14:31:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 22nd @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am- <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-08-21 14:31:03','2023-08-21 14:31:03','',1967,'https://kingsvillelivestock.com/?p=5695',0,'revision','',0),(5696,2,'2023-08-21 14:35:35','2023-08-21 14:35:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.0\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/TuesdayAugust-15th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5677\">Tuesday,August 15th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.21.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-08-21 14:35:35','2023-08-21 14:35:35','',2209,'https://kingsvillelivestock.com/?p=5696',0,'revision','',0),(5697,2,'2023-08-21 19:09:23','2023-08-21 19:09:23','','Tuesday,August 22nd Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayaugust-22nd-feeder-cattle-consignments','','','2023-08-21 19:09:23','2023-08-21 19:09:23','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/08/TuesdayAugust-22nd-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5698,2,'2023-08-21 19:09:33','2023-08-21 19:09:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/TuesdayAugust-22nd-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5697\">Tuesday,August 22nd Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-08-21 19:09:33','2023-08-21 19:09:33','',2209,'https://kingsvillelivestock.com/?p=5698',0,'revision','',0),(5699,2,'2023-08-22 21:07:27','2023-08-22 21:07:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-08-22 21:07:27','2023-08-22 21:07:27','',639,'https://kingsvillelivestock.com/?p=5699',0,'revision','',0),(5700,2,'2023-08-22 21:12:01','2023-08-22 21:12:01','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>AUGUST 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Aug. 29th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am- <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-08-22 21:12:01','2023-08-22 21:12:01','',1967,'https://kingsvillelivestock.com/?p=5700',0,'revision','',0),(5702,2,'2023-08-23 14:33:59','2023-08-23 14:33:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 22, 2023, </strong>1057 hd; Last week, 1057 hd;1336 a year ago. Feeder cattle sold steady, small groups &amp; singles sold cheaper w/ hot weather.Â  Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$302.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$332.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$285.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$219.00-$256.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$252.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$298.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$256.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$177.00-$200.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$119.00-$155.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$98.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">740lbs @$260.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">744lbs @$256.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">834lbs @$244.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">623lbs @$254.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">664lbs @$251.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">676lbs @$252.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 22, 2023 - Market Report','','publish','closed','open','','august-22-2023-market-report','','','2023-08-23 14:34:02','2023-08-23 14:34:02','',0,'https://kingsvillelivestock.com/?p=5702',0,'post','',0),(5704,2,'2023-08-23 14:33:59','2023-08-23 14:33:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 22, 2023, </strong>1057 hd; Last week, 1057 hd;1336 a year ago. Feeder cattle sold steady, small groups &amp; singles sold cheaper w/ hot weather.Â  Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$302.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$332.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$285.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$219.00-$256.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$252.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$298.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$256.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$177.00-$200.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$119.00-$155.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$98.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">740lbs @$260.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">744lbs @$256.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">834lbs @$244.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">623lbs @$254.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">664lbs @$251.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">676lbs @$252.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 22, 2023 - Market Report','','inherit','closed','closed','','5702-revision-v1','','','2023-08-23 14:33:59','2023-08-23 14:33:59','',5702,'https://kingsvillelivestock.com/?p=5704',0,'revision','',0),(5705,2,'2023-08-23 14:33:59','2023-08-23 14:33:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 22, 2023, </strong>1057 hd; Last week, 1057 hd;1336 a year ago. Feeder cattle sold steady, small groups &amp; singles sold cheaper w/ hot weather.Â  Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$302.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$332.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$285.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$219.00-$256.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$252.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$298.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$256.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$177.00-$200.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$119.00-$155.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$98.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">740lbs @$260.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">744lbs @$256.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">834lbs @$244.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">623lbs @$254.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">664lbs @$251.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">676lbs @$252.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 15, 2023 - Market Report','','inherit','closed','closed','','5702-revision-v1','','','2023-08-23 14:33:59','2023-08-23 14:33:59','',5702,'https://kingsvillelivestock.com/?p=5705',0,'revision','',0),(5706,2,'2023-08-23 14:34:02','2023-08-23 14:34:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 22, 2023, </strong>1057 hd; Last week, 1057 hd;1336 a year ago. Feeder cattle sold steady, small groups &amp; singles sold cheaper w/ hot weather.Â  Slaughter cows &amp; bulls sold steady-$2 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$302.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$332.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$285.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$219.00-$256.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$252.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$298.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$256.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$210.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$177.00-$200.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$119.00-$155.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$98.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">740lbs @$260.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">744lbs @$256.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">834lbs @$244.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">623lbs @$254.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">664lbs @$251.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">676lbs @$252.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 22, 2023 - Market Report','','inherit','closed','closed','','5702-revision-v1','','','2023-08-23 14:34:02','2023-08-23 14:34:02','',5702,'https://kingsvillelivestock.com/?p=5706',0,'revision','',0),(5707,2,'2023-08-28 17:58:31','2023-08-28 17:58:31','','Tuesday,August 29th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayaugust-29th-feeder-cattle-consignments','','','2023-08-28 17:58:31','2023-08-28 17:58:31','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/08/TuesdayAugust-29th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5708,2,'2023-08-28 17:59:00','2023-08-28 17:59:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/TuesdayAugust-29th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5707\">Tuesday,August 29th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-08-28 17:59:00','2023-08-28 17:59:00','',2209,'https://kingsvillelivestock.com/?p=5708',0,'revision','',0),(5709,2,'2023-08-28 20:40:20','2023-08-28 20:40:20','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/Equipment-Auction-October-13th-1.pdf\" rel=\"attachment wp-att-5692\">Info regarding Labor Day Auction &amp; upcoming Equipment Auction on October 13th</a></p>\n<p><a href=\"https://www.proxibid.com/Anstine-Auctions-LLC/Collector-Model-Race-Car-Auction/event-catalog/246916\">Race Car Online Auction - August 30th - Sept. 6th</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-08-28 20:40:20','2023-08-28 20:40:20','',1450,'https://kingsvillelivestock.com/?p=5709',0,'revision','',0),(5710,2,'2023-08-28 20:40:49','2023-08-28 20:40:49','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/Equipment-Auction-October-13th-1.pdf\" rel=\"attachment wp-att-5692\">Info regarding Labor Day Auction &amp; upcoming Equipment Auction on October 13th</a></p>\n<p><a href=\"https://www.proxibid.com/Anstine-Auctions-LLC/Collector-Model-Race-Car-Auction/event-catalog/246916\">Race Car Online Auction - August 30th - Sept. 6th - For online bidding click this link!</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-08-28 20:40:49','2023-08-28 20:40:49','',1450,'https://kingsvillelivestock.com/?p=5710',0,'revision','',0),(5711,2,'2023-08-28 20:45:29','2023-08-28 20:45:29','','bid_now-proxibid-b-164','','inherit','closed','closed','','bid_now-proxibid-b-164','','','2023-08-28 20:45:29','2023-08-28 20:45:29','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2023/08/bid_now-proxibid-b-164.png',0,'attachment','image/png',0),(5712,2,'2023-08-28 20:45:44','2023-08-28 20:45:44','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/Equipment-Auction-October-13th-1.pdf\" rel=\"attachment wp-att-5692\">Info regarding Labor Day Auction &amp; upcoming Equipment Auction on October 13th</a></p>\n<p><a href=\"https://www.proxibid.com/Anstine-Auctions-LLC/Collector-Model-Race-Car-Auction/event-catalog/246916\">Race Car Online Auction - August 30th - Sept. 6th - For online bidding click this link!</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.22.1\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.22.1\" _module_preset=\"default\" theme_builder_area=\"post_content\" type=\"4_4\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/bid_now-proxibid-b-164.png\" _builder_version=\"4.22.1\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-08-28 20:45:44','2023-08-28 20:45:44','',1450,'https://kingsvillelivestock.com/?p=5712',0,'revision','',0),(5713,2,'2023-08-28 20:46:19','2023-08-28 20:46:19','','bid_now-proxibid-b-164','','inherit','closed','closed','','bid_now-proxibid-b-164-2','','','2023-08-28 20:46:19','2023-08-28 20:46:19','',1450,'https://kingsvillelivestock.com/wp-content/uploads/2023/08/bid_now-proxibid-b-164-1.png',0,'attachment','image/png',0),(5714,2,'2023-08-28 20:46:44','2023-08-28 20:46:44','','bid_now-proxibid-b-164','','inherit','closed','closed','','bid_now-proxibid-b-164-3','','','2023-08-28 20:46:44','2023-08-28 20:46:44','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/08/bid_now-proxibid-b-164-2.png',0,'attachment','image/png',0),(5715,2,'2023-08-28 20:47:50','2023-08-28 20:47:50','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/Equipment-Auction-October-13th-1.pdf\" rel=\"attachment wp-att-5692\">Info regarding Labor Day Auction &amp; upcoming Equipment Auction on October 13th</a></p>\n<p><a href=\"https://www.proxibid.com/Anstine-Auctions-LLC/Collector-Model-Race-Car-Auction/event-catalog/246916\">Race Car Online Auction - August 30th - Sept. 6th - For online bidding click this link!Â  <img src=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/bid_now-proxibid-b-164-2.png\" width=\"144\" height=\"65\" alt=\"\" class=\"wp-image-5714 alignnone size-full\" /></a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.22.1\" _module_preset=\"default\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-08-28 20:47:50','2023-08-28 20:47:50','',1450,'https://kingsvillelivestock.com/?p=5715',0,'revision','',0),(5716,2,'2023-08-28 20:56:53','2023-08-28 20:56:53','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/Equipment-Auction-October-13th-1.pdf\" rel=\"attachment wp-att-5692\">Info regarding Labor Day Auction &amp; upcoming Equipment Auction on October 13th</a></p>\n<p><a href=\"https://www.proxibid.com/Anstine-Auctions-LLC/Collector-Model-Race-Car-Auction/event-catalog/246916\">Nascar Memorabilia Online Auction - August 30th - Sept. 6th - For online bidding click this link!Â  <img src=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/bid_now-proxibid-b-164-2.png\" width=\"144\" height=\"65\" alt=\"\" class=\"wp-image-5714 alignnone size-full\" /></a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-08-28 20:56:53','2023-08-28 20:56:53','',1450,'https://kingsvillelivestock.com/?p=5716',0,'revision','',0),(5717,2,'2023-08-28 21:00:14','2023-08-28 21:00:14','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/Equipment-Auction-October-13th-1.pdf\" rel=\"attachment wp-att-5692\">Info regarding Labor Day Auction &amp; upcoming Equipment Auction on October 13th</a></p>\n<p><a href=\"https://www.proxibid.com/Anstine-Auctions-LLC/Collector-Model-Race-Car-Auction/event-catalog/246916\">NASCAR Memorabilia Online Auction - August 30th - Sept. 6th - For online bidding click this link!Â  <img src=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/bid_now-proxibid-b-164-2.png\" width=\"144\" height=\"65\" alt=\"\" class=\"wp-image-5714 alignnone size-full\" /></a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-08-28 21:00:14','2023-08-28 21:00:14','',1450,'https://kingsvillelivestock.com/?p=5717',0,'revision','',0),(5718,2,'2023-08-30 15:43:24','2023-08-30 15:43:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 29, 2023, </strong>1726 hd; Last week, 826 hd;2222 a year ago. All classes of feeder cattle sold $3 higher w/ cooler weather &amp; nice groups of calves. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$265.00-$341.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$337.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$315.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$284.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$267.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$203.00-$246.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$311.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$290.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$285.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$263.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$193.00-$234.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$207.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$182.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$115.00 - $130.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $114.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$108.00 - $138.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">739lbs @$267.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">767lbs @$262.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">794lbs @$240.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">837lbs @$246.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">623lbs @$263.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">691lbs @$253.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 29, 2023 - Market Report','','publish','closed','open','','august-29-2023-market-report','','','2023-08-30 15:43:27','2023-08-30 15:43:27','',0,'https://kingsvillelivestock.com/?p=5718',0,'post','',0),(5720,2,'2023-08-30 15:43:24','2023-08-30 15:43:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 29, 2023, </strong>1726 hd; Last week, 826 hd;2222 a year ago. All classes of feeder cattle sold $3 higher w/ cooler weather &amp; nice groups of calves. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$265.00-$341.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$337.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$315.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$284.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$267.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$203.00-$246.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$311.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$290.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$285.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$263.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$193.00-$234.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$207.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$182.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$115.00 - $130.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $114.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$108.00 - $138.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">739lbs @$267.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">767lbs @$262.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">794lbs @$240.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">837lbs @$246.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">623lbs @$263.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">691lbs @$253.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 29, 2023 - Market Report','','inherit','closed','closed','','5718-revision-v1','','','2023-08-30 15:43:24','2023-08-30 15:43:24','',5718,'https://kingsvillelivestock.com/?p=5720',0,'revision','',0),(5721,2,'2023-08-30 15:43:24','2023-08-30 15:43:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 29, 2023, </strong>1726 hd; Last week, 826 hd;2222 a year ago. All classes of feeder cattle sold $3 higher w/ cooler weather &amp; nice groups of calves. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$265.00-$341.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$337.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$315.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$284.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$267.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$203.00-$246.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$311.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$290.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$285.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$263.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$193.00-$234.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$207.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$182.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$115.00 - $130.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $114.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$108.00 - $138.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">739lbs @$267.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">767lbs @$262.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">794lbs @$240.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">837lbs @$246.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">623lbs @$263.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">691lbs @$253.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 22, 2023 - Market Report','','inherit','closed','closed','','5718-revision-v1','','','2023-08-30 15:43:24','2023-08-30 15:43:24','',5718,'https://kingsvillelivestock.com/?p=5721',0,'revision','',0),(5722,2,'2023-08-30 15:43:27','2023-08-30 15:43:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>August 29, 2023, </strong>1726 hd; Last week, 826 hd;2222 a year ago. All classes of feeder cattle sold $3 higher w/ cooler weather &amp; nice groups of calves. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$265.00-$341.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$337.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$315.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$284.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$205.00-$267.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$203.00-$246.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$311.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$290.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$285.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$263.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$193.00-$234.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$207.75</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$182.75</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$115.00 - $130.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $114.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$88.00 - $99.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$108.00 - $138.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">739lbs @$267.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">767lbs @$262.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">794lbs @$240.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Steers</td>\n<td style=\"width: 146.516px; height: 23px;\">837lbs @$246.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">623lbs @$263.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.516px; height: 23px;\">691lbs @$253.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.484px; height: 26px;\">Â </td>\n<td style=\"width: 146.516px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.484px; height: 23px;\">Â </td>\n<td style=\"width: 146.516px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.484px; height: 10px;\">Â </td>\n<td style=\"width: 146.516px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 29, 2023 - Market Report','','inherit','closed','closed','','5718-revision-v1','','','2023-08-30 15:43:27','2023-08-30 15:43:27','',5718,'https://kingsvillelivestock.com/?p=5722',0,'revision','',0),(5723,2,'2023-08-30 15:44:10','2023-08-30 15:44:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-08-30 15:44:10','2023-08-30 15:44:10','',639,'https://kingsvillelivestock.com/?p=5723',0,'revision','',0),(5724,2,'2023-08-30 15:44:38','2023-08-30 15:44:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am- <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-08-30 15:44:38','2023-08-30 15:44:38','',1967,'https://kingsvillelivestock.com/?p=5724',0,'revision','',0),(5726,2,'2023-09-04 16:34:43','2023-09-04 16:34:43','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://photos.app.goo.gl/xHnfnFZRExqy3DBD6\">Wilkinson Photos</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/Equipment-Auction-October-13th-1.pdf\" rel=\"attachment wp-att-5692\">Info regarding Labor Day Auction &amp; upcoming Equipment Auction on October 13th</a></p>\n<p><a href=\"https://www.proxibid.com/Anstine-Auctions-LLC/Collector-Model-Race-Car-Auction/event-catalog/246916\">NASCAR Memorabilia Online Auction - August 30th - Sept. 6th - For online bidding click this link!Â  <img src=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/bid_now-proxibid-b-164-2.png\" width=\"144\" height=\"65\" alt=\"\" class=\"wp-image-5714 alignnone size-full\" /></a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-09-04 16:34:43','2023-09-04 16:34:43','',1450,'https://kingsvillelivestock.com/?p=5726',0,'revision','',0),(5727,2,'2023-09-04 16:37:17','2023-09-04 16:37:17','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-09-04 16:37:17','2023-09-04 16:37:17','',639,'https://kingsvillelivestock.com/?p=5727',0,'revision','',0),(5728,2,'2023-09-04 16:37:49','2023-09-04 16:37:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am- <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<h3><span style=\"color: #ff0000;\"><strong>There will be no labor day weekend auction! Visit the Anstine Auction tab for additional info!</strong></span></h3>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-09-04 16:37:49','2023-09-04 16:37:49','',1967,'https://kingsvillelivestock.com/?p=5728',0,'revision','',0),(5729,2,'2023-09-04 16:45:18','2023-09-04 16:45:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am- <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-09-04 16:45:18','2023-09-04 16:45:18','',1967,'https://kingsvillelivestock.com/?p=5729',0,'revision','',0),(5730,2,'2023-09-04 16:45:46','2023-09-04 16:45:46','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><strong>Sept. 9th @ 8:30 am - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-09-04 16:45:46','2023-09-04 16:45:46','',639,'https://kingsvillelivestock.com/?p=5730',0,'revision','',0),(5731,2,'2023-09-04 17:44:27','2023-09-04 17:44:27','','Tuesday,September 5th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayseptember-5th-feeder-cattle-consignments','','','2023-09-04 17:44:27','2023-09-04 17:44:27','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/09/TuesdaySeptember-5th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5732,2,'2023-09-04 17:45:50','2023-09-04 17:45:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/TuesdaySeptember-5th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5731\">Tuesday,September 5th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.22.1\" _module_preset=\"default\" column_structure=\"2_5,3_5\"][et_pb_column _builder_version=\"4.22.1\" _module_preset=\"default\" type=\"2_5\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #993366;\">Special Cow &amp; Bull Sale - September 28th @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.22.1\" _module_preset=\"default\" type=\"3_5\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Shimel Farms : </b><b>1 </b>4 yr. old Blk Sim-Angus bullÂ </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>12 </b>Â Polled Hereford 3-SS yr. old cows,2nd period. Bred to Mead Farms Reg. Angus bulls. Start calving end of Feb. All cows are home-raised &amp; gentle.Â </li>\n<li><b>Schultz Farms: </b><b>11 </b>Bwf 2 yr. old, 1100lbs bred heifers,3rd period. <b>32</b> Blk 2 yr. old, 1100lbs bred heifers, 3rd period. All heifers bred LBWT Polled Hereford or LBWT Red Angus bulls. All heifers home-raised, had all shots, &amp; carry one iron. Heifers start calving Sept. 15th, will be calves by sale day.</li>\n<li><b>Shimel Farms : </b><b>17 </b>Blk 4-SS yr. old cows w/ 6 3-400lbs calves at side &amp; balance w/ 30 day old calves at side. Cows are gentle &amp; will follow J.D. gator.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-09-04 17:45:50','2023-09-04 17:45:50','',2209,'https://kingsvillelivestock.com/?p=5732',0,'revision','',0),(5733,2,'2023-09-05 21:17:00','2023-09-05 21:17:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 9th @ 8:30 am - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-09-05 21:17:00','2023-09-05 21:17:00','',639,'https://kingsvillelivestock.com/?p=5733',0,'revision','',0),(5734,2,'2023-09-05 21:17:36','2023-09-05 21:17:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Sept. 9th @ 8:30 am- <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Horse/Tack Sale</p>\n<p><strong>Sept. 9th @ 5:00 pm - <span style=\"color: #ff0000;\">Canceled!</span><br /></strong>Small Animal Sale</p>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-09-05 21:17:36','2023-09-05 21:17:36','',1967,'https://kingsvillelivestock.com/?p=5734',0,'revision','',0),(5735,2,'2023-09-06 15:13:19','2023-09-06 15:13:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 5, 2023, </strong>708 hd; Last week, 1726 hd;744 a year ago. Compared to last week, steers &amp; heifers sold steady. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$321.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$325.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$288.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$259.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$258.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$255.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$164.00-$200.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$192.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$120.00 - $134.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$105.00 - $119.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $104.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$107.00 - $144.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">732lbs @$255.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers-Beefmasters</td>\n<td style=\"width: 146.531px; height: 23px;\">875lbs @$172.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 5, 2023 - Market Report','','publish','closed','open','','september-5-2023-market-report','','','2023-09-06 15:13:22','2023-09-06 15:13:22','',0,'https://kingsvillelivestock.com/?p=5735',0,'post','',0),(5736,2,'2023-09-06 15:13:19','2023-09-06 15:13:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 5, 2023, </strong>708 hd; Last week, 1726 hd;744 a year ago. Compared to last week, steers &amp; heifers sold steady. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$321.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$325.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$288.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$259.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$258.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$255.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$164.00-$200.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$192.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$120.00 - $134.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$105.00 - $119.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $104.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$107.00 - $144.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">732lbs @$255.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers-Beefmasters</td>\n<td style=\"width: 146.531px; height: 23px;\">875lbs @$172.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 5, 2023 - Market Report','','inherit','closed','closed','','5735-revision-v1','','','2023-09-06 15:13:19','2023-09-06 15:13:19','',5735,'https://kingsvillelivestock.com/?p=5736',0,'revision','',0),(5737,2,'2023-09-06 15:13:19','2023-09-06 15:13:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 5, 2023, </strong>708 hd; Last week, 1726 hd;744 a year ago. Compared to last week, steers &amp; heifers sold steady. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$321.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$325.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$288.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$259.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$258.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$255.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$164.00-$200.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$192.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$120.00 - $134.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$105.00 - $119.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $104.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$107.00 - $144.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">732lbs @$255.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers-Beefmasters</td>\n<td style=\"width: 146.531px; height: 23px;\">875lbs @$172.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','August 29, 2023 - Market Report','','inherit','closed','closed','','5735-revision-v1','','','2023-09-06 15:13:19','2023-09-06 15:13:19','',5735,'https://kingsvillelivestock.com/?p=5737',0,'revision','',0),(5738,2,'2023-09-06 15:13:22','2023-09-06 15:13:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 5, 2023, </strong>708 hd; Last week, 1726 hd;744 a year ago. Compared to last week, steers &amp; heifers sold steady. Slaughter cows &amp; bulls sold steady-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$321.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$325.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$288.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$259.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$230.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$258.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$255.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$164.00-$200.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$192.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$120.00 - $134.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$105.00 - $119.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $104.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$107.00 - $144.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">732lbs @$255.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers-Beefmasters</td>\n<td style=\"width: 146.531px; height: 23px;\">875lbs @$172.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 5, 2023 - Market Report','','inherit','closed','closed','','5735-revision-v1','','','2023-09-06 15:13:22','2023-09-06 15:13:22','',5735,'https://kingsvillelivestock.com/?p=5738',0,'revision','',0),(5739,2,'2023-09-06 16:15:56','2023-09-06 16:15:56','','Estate Ralph & Pearl Wilkinson - Sept. 28th','','inherit','closed','closed','','estate-ralph-pearl-wilkinson-sept-28th','','','2023-09-06 16:15:56','2023-09-06 16:15:56','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/09/Estate-Ralph-Pearl-Wilkinson-Sept.-28th.pdf',0,'attachment','application/pdf',0),(5740,2,'2023-09-06 16:16:53','2023-09-06 16:16:53','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Estate-Ralph-Pearl-Wilkinson-Sept.-28th.pdf\" rel=\"attachment wp-att-5739\">Estate of Ralph &amp; Pearl Wilkinson - Thursday, Sept. 28th - Blue Springs </a></p>\n<p><a href=\"https://photos.app.goo.gl/xHnfnFZRExqy3DBD6\">Wilkinson Photos</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/Equipment-Auction-October-13th-1.pdf\" rel=\"attachment wp-att-5692\">Info regarding Labor Day Auction &amp; upcoming Equipment Auction on October 13th</a></p>\n<p><a href=\"https://www.proxibid.com/Anstine-Auctions-LLC/Collector-Model-Race-Car-Auction/event-catalog/246916\">NASCAR Memorabilia Online Auction - August 30th - Sept. 6th - For online bidding click this link!Â  <img src=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/bid_now-proxibid-b-164-2.png\" width=\"144\" height=\"65\" alt=\"\" class=\"wp-image-5714 alignnone size-full\" /></a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-09-06 16:16:53','2023-09-06 16:16:53','',1450,'https://kingsvillelivestock.com/?p=5740',0,'revision','',0),(5741,2,'2023-09-06 20:27:50','2023-09-06 20:27:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/TuesdaySeptember-5th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5731\">Tuesday,September 5th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><span style=\"color: #993366;\">Special Cow &amp; Bull Sale - September 23rd @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Shimel Farms : </b><b>1 </b>4 yr. old Blk Sim-Angus bullÂ </li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>12 </b>Â Polled Hereford 3-SS yr. old cows,2nd period. Bred to Mead Farms Reg. Angus bulls. Start calving end of Feb. All cows are home-raised &amp; gentle.Â </li>\n<li><b>Schultz Farms: </b><b>11 </b>Bwf 2 yr. old, 1100lbs bred heifers,3rd period. <b>32</b> Blk 2 yr. old, 1100lbs bred heifers, 3rd period. All heifers bred LBWT Polled Hereford or LBWT Red Angus bulls. All heifers home-raised, had all shots, &amp; carry one iron. Heifers start calving Sept. 15th, will be calves by sale day.</li>\n<li><b>Shimel Farms : </b><b>17 </b>Blk 4-SS yr. old cows w/ 6 3-400lbs calves at side &amp; balance w/ 30 day old calves at side. Cows are gentle &amp; will follow J.D. gator.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-09-06 20:27:50','2023-09-06 20:27:50','',2209,'https://kingsvillelivestock.com/?p=5741',0,'revision','',0),(5742,2,'2023-09-11 15:47:30','2023-09-11 15:47:30','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/TuesdaySeptember-5th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5731\">Tuesday,September 5th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993366;\">Special Cow &amp; Bull Sale - September 23rd @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Shimel Farms : </b><b>1 </b>4 yr. old Blk Sim-Angus bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>12 </b>Â Polled Hereford 3-SS yr. old cows,2nd period. Bred to Mead Farms Reg. Angus bulls. Start calving end of Feb. All cows are home-raised &amp; gentle.</li>\n<li><b>Schultz Farms: </b><b>11 </b>Bwf 2 yr. old, 1100lbs bred heifers,3rd period. <b>32</b> Blk 2 yr. old, 1100lbs bred heifers, 3rd period. All heifers bred LBWT Polled Hereford or LBWT Red Angus bulls. All heifers home-raised, had all shots, &amp; carry one iron. Heifers start calving Sept. 15th, will be calves by sale day.</li>\n<li><b>Shimel Farms: </b><b>17 </b>Blk 4-SS yr. old cows w/ 6 3-400lbs calves at side &amp; balance w/ 30 day old calves at side. Cows are gentle &amp; will follow J.D. gator.</li>\n<li><b>Dale Smith Farms Complete Dispersal: </b><b>30 </b>Red Angus 4-5 yr. old cows w/ fall calves at side. <b>10</b> Red Angus 4-5 yr. old cows w/ 400lbs calves at side,3N1â€™s. <b>10</b> Red Angus 4-5 yr. old cows,3rd period. <b>30 </b>Blk-Bwf 5-SS yr. old cows w/ fall calves at side. <b>20</b> Blk-Bwf 5-SS yr. old cows w/ 400lbs calves at side. <b>20</b> Blk-Bwf 5-SS yr. old cows, 2nd &amp; 3rd period.</li>\n<li><b>J-W Cattle Co. Complete Dispersal: </b><b>10 </b>TarentaiseÂ  4-5 yr. old cows w/ some calves at side &amp; balance 3rd period. <b>10</b> Blk-Bwf 3-7 yr. old cows w/ fall calves at side. <b>18</b> Blk-Bwf 3-7 yr. old cows, 3rd period. All cows have had all shots w/ good health program &amp; nice set of calves on ground.</li>\n<li><b>Harris Farms: </b><b>18 </b>Blk-Bwf 3-7 yr. old cows, 2nd &amp;Â  3rd period. Bred Blk Angus or Polled Hereford bulls.Â </li>\n<li><b>Bolin Farms: </b><b>15 </b>Red Beefmaster 2 yr. old, 1000lbs bred heifers, 2nd period. Bred LBWT Red Angus bulls. Start calving Feb. 15th. Home-raised &amp; had all shots.</li>\n<li><b>Bryant Farms: </b><b>14 </b>Fancy Blk Balancer 2 yr. old 1100lbs bred heifers. Heifers were pelvic measured before breeding, had all shots, &amp; wormed/poured Aug. 15th. Bred Reg. Angus bulls &amp; start calving Feb. 10th. Front-end set of bred heifers.Â </li>\n<li><b>Florida Farms Complete Dispersal: </b><b>15 </b>Blk-Bwf 6-SS yr. old cows w/ 350lbs calves at side, 3N1â€™s. <b>24</b> Blk-Bwf 6-SS yr. old cows w/ fall calves at side. Cows are gentle, easy to handle &amp; good set of pairs.</li>\n<li><b>Clement Farms: </b><b>25 </b>Blk-Bwf 3-6 yr. old cows w/ 2-300lbs calves at side. Cows sell open, nice set of pairs.</li>\n<li><b>Corneaes Land &amp; Cattle: </b><b>30 </b>Blk-Bwf 3-4 yr. old cows,3rd period. <b>35 </b>Blk-Bwf 5-7 yr. old cows, 3rd period. All cows bred Blk Angus or Blk-Sim bulls.</li>\n<li><b>C-W Farms: </b><b>75 </b>Blk-Bwf 3-6 yr. old cows,2nd period. Bred Blk Gelv. Bulls, nice set of spring calving cows.</li>\n<li><b>M. Smith Farms: </b><b>8 </b>Rwf 4-SS yr. old cows w/ March calves at side. Been running back w/ Bwf bull. <b>3</b> Rwf 2yr. old bred heifers. Start calving in March.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-09-11 15:47:30','2023-09-11 15:47:30','',2209,'https://kingsvillelivestock.com/?p=5742',0,'revision','',0),(5743,2,'2023-09-11 15:48:18','2023-09-11 15:48:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-09-11 15:48:18','2023-09-11 15:48:18','',639,'https://kingsvillelivestock.com/?p=5743',0,'revision','',0),(5744,2,'2023-09-11 15:49:32','2023-09-11 15:49:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-09-11 15:49:32','2023-09-11 15:49:32','',1967,'https://kingsvillelivestock.com/?p=5744',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (5745,2,'2023-09-11 16:26:19','2023-09-11 16:26:19','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/TuesdaySeptember-5th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5731\">Tuesday,September 5th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993366;\">Special Cow &amp; Bull Sale - September 23rd @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Shimel Farms : </b><b>1 </b>4 yr. old Blk Sim-Angus bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>12 </b>Â Polled Hereford 3-SS yr. old cows,2nd period. Bred to Mead Farms Reg. Angus bulls. Start calving end of Feb. All cows are home-raised &amp; gentle.</li>\n<li><b>Schultz Farms: </b><b>11 </b>Bwf 2 yr. old, 1100lbs bred heifers,3rd period. <b>32</b> Blk 2 yr. old, 1100lbs bred heifers, 3rd period. All heifers bred LBWT Polled Hereford or LBWT Red Angus bulls. All heifers home-raised, had all shots, &amp; carry one iron. Heifers start calving Sept. 15th, will be calves by sale day.</li>\n<li><b>Shimel Farms: </b><b>17 </b>Blk 4-SS yr. old cows w/ 6 3-400lbs calves at side &amp; balance w/ 30 day old calves at side. Cows are gentle &amp; will follow J.D. gator.</li>\n<li><b>Dale Smith Farms Complete Dispersal: </b><b>30 </b>Red Angus 4-5 yr. old cows w/ fall calves at side. <b>10</b> Red Angus 4-5 yr. old cows w/ 400lbs calves at side,3N1â€™s. <b>10</b> Red Angus 4-5 yr. old cows,3rd period. <b>30 </b>Blk-Bwf 5-SS yr. old cows w/ fall calves at side. <b>20</b> Blk-Bwf 5-SS yr. old cows w/ 400lbs calves at side. <b>20</b> Blk-Bwf 5-SS yr. old cows, 2nd &amp; 3rd period.</li>\n<li><b>J-W Cattle Co. Complete Dispersal: </b><b>10 </b>TarentaiseÂ  4-5 yr. old cows w/ some calves at side &amp; balance 3rd period. <b>10</b> Blk-Bwf 3-7 yr. old cows w/ fall calves at side. <b>18</b> Blk-Bwf 3-7 yr. old cows, 3rd period. All cows have had all shots w/ good health program &amp; nice set of calves on ground.</li>\n<li><b>Harris Farms: </b><b>18 </b>Blk-Bwf 3-7 yr. old cows, 2nd &amp;Â  3rd period. Bred Blk Angus or Polled Hereford bulls.</li>\n<li><b>Bolin Farms: </b><b>15 </b>Red Beefmaster 2 yr. old, 1000lbs bred heifers, 2nd period. Bred LBWT Red Angus bulls. Start calving Feb. 15th. Home-raised &amp; had all shots.</li>\n<li><b>Bryant Farms: </b><b>14 </b>Fancy Blk Balancer 2 yr. old 1100lbs bred heifers. Heifers were pelvic measured before breeding, had all shots, &amp; wormed/poured Aug. 15th. Bred Show-Me-Select qualified Reg. Angus bulls &amp; start calving Feb. 10th. Front-end set of bred heifers.</li>\n<li><b>Florida Farms Complete Dispersal: </b><b>15 </b>Blk-Bwf 6-SS yr. old cows w/ 350lbs calves at side, 3N1â€™s. <b>24</b> Blk-Bwf 6-SS yr. old cows w/ fall calves at side. Cows are gentle, easy to handle &amp; good set of pairs.</li>\n<li><b>Clement Farms: </b><b>25 </b>Blk-Bwf 3-6 yr. old cows w/ 2-300lbs calves at side. Cows sell open, nice set of pairs.</li>\n<li><b>Corneaes Land &amp; Cattle: </b><b>30 </b>Blk-Bwf 3-4 yr. old cows,3rd period. <b>35 </b>Blk-Bwf 5-7 yr. old cows, 3rd period. All cows bred Blk Angus or Blk-Sim bulls.</li>\n<li><b>C-W Farms: </b><b>75 </b>Blk-Bwf 3-6 yr. old cows,2nd period. Bred Blk Gelv. Bulls, nice set of spring calving cows.</li>\n<li><b>M. Smith Farms: </b><b>8 </b>Rwf 4-SS yr. old cows w/ March calves at side. Been running back w/ Bwf bull. <b>3</b> Rwf 2yr. old bred heifers. Start calving in March.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-09-11 16:26:19','2023-09-11 16:26:19','',2209,'https://kingsvillelivestock.com/?p=5745',0,'revision','',0),(5746,2,'2023-09-11 17:26:21','2023-09-11 17:26:21','','Tuesday,September 12th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayseptember-12th-feeder-cattle-consignments','','','2023-09-11 17:26:21','2023-09-11 17:26:21','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/09/TuesdaySeptember-12th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5747,2,'2023-09-11 17:26:27','2023-09-11 17:26:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/TuesdaySeptember-12th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5746\">Tuesday,September 12th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993366;\">Special Cow &amp; Bull Sale - September 23rd @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Shimel Farms : </b><b>1 </b>4 yr. old Blk Sim-Angus bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>12 </b>Â Polled Hereford 3-SS yr. old cows,2nd period. Bred to Mead Farms Reg. Angus bulls. Start calving end of Feb. All cows are home-raised &amp; gentle.</li>\n<li><b>Schultz Farms: </b><b>11 </b>Bwf 2 yr. old, 1100lbs bred heifers,3rd period. <b>32</b> Blk 2 yr. old, 1100lbs bred heifers, 3rd period. All heifers bred LBWT Polled Hereford or LBWT Red Angus bulls. All heifers home-raised, had all shots, &amp; carry one iron. Heifers start calving Sept. 15th, will be calves by sale day.</li>\n<li><b>Shimel Farms: </b><b>17 </b>Blk 4-SS yr. old cows w/ 6 3-400lbs calves at side &amp; balance w/ 30 day old calves at side. Cows are gentle &amp; will follow J.D. gator.</li>\n<li><b>Dale Smith Farms Complete Dispersal: </b><b>30 </b>Red Angus 4-5 yr. old cows w/ fall calves at side. <b>10</b> Red Angus 4-5 yr. old cows w/ 400lbs calves at side,3N1â€™s. <b>10</b> Red Angus 4-5 yr. old cows,3rd period. <b>30 </b>Blk-Bwf 5-SS yr. old cows w/ fall calves at side. <b>20</b> Blk-Bwf 5-SS yr. old cows w/ 400lbs calves at side. <b>20</b> Blk-Bwf 5-SS yr. old cows, 2nd &amp; 3rd period.</li>\n<li><b>J-W Cattle Co. Complete Dispersal: </b><b>10 </b>TarentaiseÂ  4-5 yr. old cows w/ some calves at side &amp; balance 3rd period. <b>10</b> Blk-Bwf 3-7 yr. old cows w/ fall calves at side. <b>18</b> Blk-Bwf 3-7 yr. old cows, 3rd period. All cows have had all shots w/ good health program &amp; nice set of calves on ground.</li>\n<li><b>Harris Farms: </b><b>18 </b>Blk-Bwf 3-7 yr. old cows, 2nd &amp;Â  3rd period. Bred Blk Angus or Polled Hereford bulls.</li>\n<li><b>Bolin Farms: </b><b>15 </b>Red Beefmaster 2 yr. old, 1000lbs bred heifers, 2nd period. Bred LBWT Red Angus bulls. Start calving Feb. 15th. Home-raised &amp; had all shots.</li>\n<li><b>Bryant Farms: </b><b>14 </b>Fancy Blk Balancer 2 yr. old 1100lbs bred heifers. Heifers were pelvic measured before breeding, had all shots, &amp; wormed/poured Aug. 15th. Bred Show-Me-Select qualified Reg. Angus bulls &amp; start calving Feb. 10th. Front-end set of bred heifers.</li>\n<li><b>Florida Farms Complete Dispersal: </b><b>15 </b>Blk-Bwf 6-SS yr. old cows w/ 350lbs calves at side, 3N1â€™s. <b>24</b> Blk-Bwf 6-SS yr. old cows w/ fall calves at side. Cows are gentle, easy to handle &amp; good set of pairs.</li>\n<li><b>Clement Farms: </b><b>25 </b>Blk-Bwf 3-6 yr. old cows w/ 2-300lbs calves at side. Cows sell open, nice set of pairs.</li>\n<li><b>Corneaes Land &amp; Cattle: </b><b>30 </b>Blk-Bwf 3-4 yr. old cows,3rd period. <b>35 </b>Blk-Bwf 5-7 yr. old cows, 3rd period. All cows bred Blk Angus or Blk-Sim bulls.</li>\n<li><b>C-W Farms: </b><b>75 </b>Blk-Bwf 3-6 yr. old cows,2nd period. Bred Blk Gelv. Bulls, nice set of spring calving cows.</li>\n<li><b>M. Smith Farms: </b><b>8 </b>Rwf 4-SS yr. old cows w/ March calves at side. Been running back w/ Bwf bull. <b>3</b> Rwf 2yr. old bred heifers. Start calving in March.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-09-11 17:26:27','2023-09-11 17:26:27','',2209,'https://kingsvillelivestock.com/?p=5747',0,'revision','',0),(5748,2,'2023-09-11 18:06:17','2023-09-11 18:06:17','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/TuesdaySeptember-12th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5746\">Tuesday,September 12th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993366;\">Special Cow &amp; Bull Sale - September 23rd @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Shimel Farms : </b><b>1 </b>4 yr. old Blk Sim-Angus bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>12 </b>Â Polled Hereford 3-SS yr. old cows,2nd period. Bred to Mead Farms Reg. Angus bulls. Start calving end of Feb. All cows are home-raised &amp; gentle.</li>\n<li><b>Schultz Farms: </b><b>11 </b>Bwf 2 yr. old, 1100lbs bred heifers,3rd period. <b>32</b> Blk 2 yr. old, 1100lbs bred heifers, 3rd period. All heifers bred LBWT Polled Hereford or LBWT Red Angus bulls. All heifers home-raised, had all shots, &amp; carry one iron. Heifers start calving Sept. 15th, will be calves by sale day.</li>\n<li><b>Shimel Farms: </b><b>17 </b>Blk 4-SS yr. old cows w/ 6 3-400lbs calves at side &amp; balance w/ 30 day old calves at side. Cows are gentle &amp; will follow J.D. gator.</li>\n<li><b>Dale Smith Farms Complete Dispersal: </b><b>30 </b>Red Angus 4-5 yr. old cows w/ fall calves at side. <b>10</b> Red Angus 4-5 yr. old cows w/ 400lbs calves at side,3N1â€™s. <b>10</b> Red Angus 4-5 yr. old cows,3rd period. <b>30 </b>Blk-Bwf 5-SS yr. old cows w/ fall calves at side. <b>20</b> Blk-Bwf 5-SS yr. old cows w/ 400lbs calves at side. <b>20</b> Blk-Bwf 5-SS yr. old cows, 2nd &amp; 3rd period.</li>\n<li><b>Clint Smith Farms Complete Dispersal : </b><b>40 </b>Blk 5-SS yr. old cows w/ 200-400lbs calves at side. <b>20</b> Blk 5-SS yr. old cows, 2nd &amp; 3rd period.</li>\n<li><b>J-W Cattle Co. Complete Dispersal: </b><b>10 </b>TarentaiseÂ  4-5 yr. old cows w/ some calves at side &amp; balance 3rd period. <b>10</b> Blk-Bwf 3-7 yr. old cows w/ fall calves at side. <b>18</b> Blk-Bwf 3-7 yr. old cows, 3rd period. All cows have had all shots w/ good health program &amp; nice set of calves on ground.</li>\n<li><b>Woods Farms Complete Dispersal : </b><b>50 </b>Rwf-Bwf 3-SS yr. old cows w/ 200-400lbs calves at side. <b>60 </b>Bwf-Rwf 3-SS yr. old cows, 2nd &amp; 3rd period. All bred Reg. Angus bulls.</li>\n<li><b>Harris Farms: </b><b>18 </b>Blk-Bwf 3-7 yr. old cows, 2nd &amp;Â  3rd period. Bred Blk Angus or Polled Hereford bulls.</li>\n<li><b>Bolin Farms: </b><b>15 </b>Red Beefmaster 2 yr. old, 1000lbs bred heifers, 2nd period. Bred LBWT Red Angus bulls. Start calving Feb. 15th. Home-raised &amp; had all shots.</li>\n<li><b>Bryant Farms: </b><b>14 </b>Fancy Blk Balancer 2 yr. old 1100lbs bred heifers. Heifers were pelvic measured before breeding, had all shots, &amp; wormed/poured Aug. 15th. Bred Show-Me-Select qualified Reg. Angus bulls &amp; start calving Feb. 10th. Front-end set of bred heifers.</li>\n<li><b>Florida Farms Complete Dispersal: </b><b>15 </b>Blk-Bwf 6-SS yr. old cows w/ 350lbs calves at side, 3N1â€™s. <b>24</b> Blk-Bwf 6-SS yr. old cows w/ fall calves at side. Cows are gentle, easy to handle &amp; good set of pairs.</li>\n<li><b>Clement Farms: </b><b>25 </b>Blk-Bwf 3-6 yr. old cows w/ 2-300lbs calves at side. Cows sell open, nice set of pairs.</li>\n<li><b>Corneaes Land &amp; Cattle: </b><b>30 </b>Blk-Bwf 3-4 yr. old cows,3rd period. <b>35 </b>Blk-Bwf 5-7 yr. old cows, 3rd period. All cows bred Blk Angus or Blk-Sim bulls.</li>\n<li><b>C-W Farms: </b><b>75 </b>Blk-Bwf 3-6 yr. old cows,2nd period. Bred Blk Gelv. Bulls, nice set of spring calving cows.</li>\n<li><b>M. Smith Farms: </b><b>8 </b>Rwf 4-SS yr. old cows w/ March calves at side. Been running back w/ Bwf bull. <b>3</b> Rwf 2yr. old bred heifers. Start calving in March.</li>\n<li><b>DeHart Farms : </b><b>40 </b>Blk 3-SS yr. old cows. Bred Blk-Sim Angus bulls.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-09-11 18:06:17','2023-09-11 18:06:17','',2209,'https://kingsvillelivestock.com/?p=5748',0,'revision','',0),(5749,2,'2023-09-11 19:16:49','2023-09-11 19:16:49','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Estate-Ralph-Pearl-Wilkinson-Sept.-28th.pdf\" rel=\"attachment wp-att-5739\">Estate of Ralph &amp; Pearl Wilkinson - Thursday, Sept. 28th - Blue Springs </a></p>\n<p><a href=\"https://photos.app.goo.gl/xHnfnFZRExqy3DBD6\">Wilkinson Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://drive.google.com/drive/folders/1Z3VY2wGj4PCQeW7DRyMIM6NKj1FyChps?usp=sharing\">Oct. 13 farm &amp; livestock equipment photos</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/Equipment-Auction-October-13th-1.pdf\" rel=\"attachment wp-att-5692\">Info regarding Labor Day Auction &amp; upcoming Equipment Auction on October 13th</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-09-11 19:16:49','2023-09-11 19:16:49','',1450,'https://kingsvillelivestock.com/?p=5749',0,'revision','',0),(5750,2,'2023-09-11 19:17:44','2023-09-11 19:17:44','','September 23,2023 Cow Sale','','inherit','closed','closed','','september-232023-cow-sale','','','2023-09-11 19:17:44','2023-09-11 19:17:44','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/09/September-232023-Cow-Sale.pdf',0,'attachment','application/pdf',0),(5751,2,'2023-09-11 19:17:51','2023-09-11 19:17:51','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/September-232023-Cow-Sale.pdf\" rel=\"attachment wp-att-5750\">September 23,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-09-11 19:17:51','2023-09-11 19:17:51','',639,'https://kingsvillelivestock.com/?p=5751',0,'revision','',0),(5752,2,'2023-09-11 19:19:07','2023-09-11 19:19:07','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/September-232023-Cow-Sale.pdf\" rel=\"attachment wp-att-5750\">September 23,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-09-11 19:19:07','2023-09-11 19:19:07','',1967,'https://kingsvillelivestock.com/?p=5752',0,'revision','',0),(5754,2,'2023-09-13 14:28:21','2023-09-13 14:28:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/TuesdaySeptember-12th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5746\">Tuesday,September 12th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993366;\">Special Cow &amp; Bull Sale - September 23rd @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Shimel Farms: </b><b>1 </b>4 yr. old Blk Sim-Angus bull</li>\n<li><b>Morrison Farms: </b><b>1 </b>14 Month old Blk Hereford bull. <b>1 </b>2.5 yr. old Reg. Blk Hereford bull, sire by J&amp;N Herefords. Easy going &amp; had all shots.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>12 </b>Â Polled Hereford 3-SS yr. old cows,2nd period. Bred to Mead Farms Reg. Angus bulls. Start calving end of Feb. All cows are home-raised &amp; gentle.</li>\n<li><b>Schultz Farms: </b><b>11 </b>Bwf 2 yr. old, 1100lbs bred heifers,3rd period. <b>32</b> Blk 2 yr. old, 1100lbs bred heifers, 3rd period. All heifers bred LBWT Polled Hereford or LBWT Red Angus bulls. All heifers home-raised, had all shots, &amp; carry one iron. Heifers start calving Sept. 15th, will be calves by sale day.</li>\n<li><b>Shimel Farms: </b><b>17 </b>Blk 4-SS yr. old cows w/ 6 3-400lbs calves at side &amp; balance w/ 30 day old calves at side. Cows are gentle &amp; will follow J.D. gator.</li>\n<li><b>Dale Smith Farms Complete Dispersal: </b><b>30 </b>Red Angus 4-5 yr. old cows w/ fall calves at side. <b>10</b> Red Angus 4-5 yr. old cows w/ 400lbs calves at side,3N1â€™s. <b>10</b> Red Angus 4-5 yr. old cows,3rd period. <b>30 </b>Blk-Bwf 5-SS yr. old cows w/ fall calves at side. <b>20</b> Blk-Bwf 5-SS yr. old cows w/ 400lbs calves at side. <b>20</b> Blk-Bwf 5-SS yr. old cows, 2nd &amp; 3rd period.</li>\n<li><b>Clint Smith Farms Complete Dispersal : </b><b>40 </b>Blk 5-SS yr. old cows w/ 200-400lbs calves at side. <b>20</b> Blk 5-SS yr. old cows, 2nd &amp; 3rd period.</li>\n<li><b>J-W Cattle Co. Complete Dispersal: </b><b>10 </b>TarentaiseÂ  4-5 yr. old cows w/ some calves at side &amp; balance 3rd period. <b>10</b> Blk-Bwf 3-7 yr. old cows w/ fall calves at side. <b>18</b> Blk-Bwf 3-7 yr. old cows, 3rd period. All cows have had all shots w/ good health program &amp; nice set of calves on ground.</li>\n<li><b>Woods Farms Complete Dispersal : </b><b>50 </b>Rwf-Bwf 3-SS yr. old cows w/ 200-400lbs calves at side. <b>60 </b>Bwf-Rwf 3-SS yr. old cows, 2nd &amp; 3rd period. All bred Reg. Angus bulls.</li>\n<li><b>Harris Farms: </b><b>18 </b>Blk-Bwf 3-7 yr. old cows, 2nd &amp;Â  3rd period. Bred Blk Angus or Polled Hereford bulls.</li>\n<li><b>Bolin Farms: </b><b>15 </b>Red Beefmaster 2 yr. old, 1000lbs bred heifers, 2nd period. Bred LBWT Red Angus bulls. Start calving Feb. 15th. Home-raised &amp; had all shots.</li>\n<li><b>Bryant Farms: </b><b>14 </b>Fancy Blk Balancer 2 yr. old 1100lbs bred heifers. Heifers were pelvic measured before breeding, had all shots, &amp; wormed/poured Aug. 15th. Bred Show-Me-Select qualified Reg. Angus bulls &amp; start calving Feb. 10th. Front-end set of bred heifers.</li>\n<li><b>Florida Farms Complete Dispersal: </b><b>15 </b>Blk-Bwf 6-SS yr. old cows w/ 350lbs calves at side, 3N1â€™s. <b>24</b> Blk-Bwf 6-SS yr. old cows w/ fall calves at side. Cows are gentle, easy to handle &amp; good set of pairs.</li>\n<li><b>Clement Farms: </b><b>25 </b>Blk-Bwf 3-6 yr. old cows w/ 2-300lbs calves at side. Cows sell open, nice set of pairs.</li>\n<li><b>Corneaes Land &amp; Cattle: </b><b>30 </b>Blk-Bwf 3-4 yr. old cows,3rd period. <b>35 </b>Blk-Bwf 5-7 yr. old cows, 3rd period. All cows bred Blk Angus or Blk-Sim bulls.</li>\n<li><b>C-W Farms: </b><b>75 </b>Blk-Bwf 3-6 yr. old cows,2nd period. Bred Blk Gelv. Bulls, nice set of spring calving cows.</li>\n<li><b>M. Smith Farms: </b><b>8 </b>Rwf 4-SS yr. old cows w/ March calves at side. Been running back w/ Bwf bull. <b>3</b> Rwf 2yr. old bred heifers. Start calving in March.</li>\n<li><b>DeHart Farms : </b><b>40 </b>Blk 3-SS yr. old cows. Bred Blk-Sim Angus bulls.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-09-13 14:28:21','2023-09-13 14:28:21','',2209,'https://kingsvillelivestock.com/?p=5754',0,'revision','',0),(5755,2,'2023-09-13 14:57:26','2023-09-13 14:57:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/TuesdaySeptember-12th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5746\">Tuesday,September 12th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993366;\">Special Cow &amp; Bull Sale - September 23rd @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Shimel Farms: </b><b>1 </b>4 yr. old Blk Sim-Angus bull</li>\n<li><b>Morrison Farms: </b><b>1 </b>14 Month old Blk Hereford bull. <b>1 </b>2.5 yr. old Reg. Blk Hereford bull, sire by J&amp;N Herefords. Easy going &amp; had all shots.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>12 </b>Â Polled Hereford 3-SS yr. old cows,2nd period. Bred to Mead Farms Reg. Angus bulls. Start calving end of Feb. All cows are home-raised &amp; gentle.</li>\n<li><b>Schultz Farms: </b><b>11 </b>Bwf 2 yr. old, 1100lbs bred heifers,3rd period. <b>32</b> Blk 2 yr. old, 1100lbs bred heifers, 3rd period. All heifers bred LBWT Polled Hereford or LBWT Red Angus bulls. All heifers home-raised, had all shots, &amp; carry one iron. Heifers start calving Sept. 15th, will be calves by sale day.</li>\n<li><b>Shimel Farms: </b><b>17 </b>Blk 4-SS yr. old cows w/ 6 3-400lbs calves at side &amp; balance w/ 30 day old calves at side. Cows are gentle &amp; will follow J.D. gator.</li>\n<li><b>Dale Smith Farms Complete Dispersal: </b><b>30 </b>Red Angus 4-5 yr. old cows w/ fall calves at side. <b>10</b> Red Angus 4-5 yr. old cows w/ 400lbs calves at side,3N1â€™s. <b>10</b> Red Angus 4-5 yr. old cows,3rd period. <b>30 </b>Blk-Bwf 5-SS yr. old cows w/ fall calves at side. <b>20</b> Blk-Bwf 5-SS yr. old cows w/ 400lbs calves at side. <b>20</b> Blk-Bwf 5-SS yr. old cows, 2nd &amp; 3rd period.</li>\n<li><b>Clint Smith Farms Complete Dispersal : </b><b>40 </b>Blk 5-SS yr. old cows w/ 200-400lbs calves at side. <b>20</b> Blk 5-SS yr. old cows, 2nd &amp; 3rd period.</li>\n<li><b>J-W Cattle Co. Complete Dispersal: </b><b>10 </b>TarentaiseÂ  4-5 yr. old cows w/ some calves at side &amp; balance 3rd period. <b>10</b> Blk-Bwf 3-7 yr. old cows w/ fall calves at side. <b>18</b> Blk-Bwf 3-7 yr. old cows, 3rd period. All cows have had all shots w/ good health program &amp; nice set of calves on ground.</li>\n<li><b>Woods Farms Complete Dispersal : </b><b>50 </b>Rwf-Bwf 3-SS yr. old cows w/ 200-400lbs calves at side. <b>60 </b>Bwf-Rwf 3-SS yr. old cows, 2nd &amp; 3rd period. All bred Reg. Angus bulls.</li>\n<li><b>Harris Farms: </b><b>18 </b>Blk-Bwf 3-7 yr. old cows, 2nd &amp;Â  3rd period. Bred Blk Angus or Polled Hereford bulls.</li>\n<li><b>Bolin Farms: </b><b>15 </b>Red Beefmaster 2 yr. old, 1000lbs bred heifers, 2nd period. Bred LBWT Red Angus bulls. Start calving Feb. 15th. Home-raised &amp; had all shots.</li>\n<li><b>Bryant Farms: </b><b>14 </b>Fancy Blk Balancer 2 yr. old 1100lbs bred heifers. Heifers were pelvic measured before breeding, had all shots, &amp; wormed/poured Aug. 15th. Bred Show-Me-Select qualified Reg. Angus bulls &amp; start calving Feb. 10th. Front-end set of bred heifers.</li>\n<li><b>Florida Farms Complete Dispersal: </b><b>15 </b>Blk-Bwf 6-SS yr. old cows w/ 350lbs calves at side, 3N1â€™s. <b>24</b> Blk-Bwf 6-SS yr. old cows w/ fall calves at side. Cows are gentle, easy to handle &amp; good set of pairs.</li>\n<li><b>Clement Farms: </b><b>25 </b>Blk-Bwf 3-6 yr. old cows w/ 2-300lbs calves at side. Cows sell open, nice set of pairs.</li>\n<li><b>Corneaes Land &amp; Cattle: </b><b>30 </b>Blk-Bwf 3-4 yr. old cows,3rd period. <b>35 </b>Blk-Bwf 5-7 yr. old cows, 3rd period. All cows bred Blk Angus or Blk-Sim bulls.</li>\n<li><b>C-W Farms: </b><b>75 </b>Blk-Bwf 3-6 yr. old cows,2nd period. Bred Blk Gelv. Bulls, nice set of spring calving cows.</li>\n<li><b>M. Smith Farms: </b><b>8 </b>Rwf 4-SS yr. old cows w/ March calves at side. Been running back w/ Bwf bull. <b>3</b> Rwf 2yr. old bred heifers. Start calving in March.</li>\n<li><b>DeHart Farms : </b><b>30 </b>Blk 3-SS yr. old cows,3rd period. Bred Blk-Sim Angus bulls. <b>7</b> Blk 3-SS yr. old cows w/ fall calves at side. All cows home-raised &amp; gentle set of cows.</li>\n<li><b>Osborn Farms: </b><b>41 </b>Blk-Bwf 6-SS yr. old cows,2nd period. Bred Reg. Polled Hereford bulls. Start calving Feb. 1st</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-09-13 14:57:26','2023-09-13 14:57:26','',2209,'https://kingsvillelivestock.com/?p=5755',0,'revision','',0),(5756,2,'2023-09-13 15:00:21','2023-09-13 15:00:21','','September 23,2023 Cow Sale','','inherit','closed','closed','','september-232023-cow-sale-2','','','2023-09-13 15:00:21','2023-09-13 15:00:21','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/09/September-232023-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(5757,2,'2023-09-13 15:00:30','2023-09-13 15:00:30','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/September-232023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5756\">September 23,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-09-13 15:00:30','2023-09-13 15:00:30','',639,'https://kingsvillelivestock.com/?p=5757',0,'revision','',0),(5758,2,'2023-09-13 15:01:16','2023-09-13 15:01:16','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/September-232023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5756\">September 23,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-09-13 15:01:16','2023-09-13 15:01:16','',1967,'https://kingsvillelivestock.com/?p=5758',0,'revision','',0),(5759,2,'2023-09-13 15:34:40','2023-09-13 15:34:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 12, 2023, </strong>2560 hd; Last week, 709 hd;3195 a year ago. Steers &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$367.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$347.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$323.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$228.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$278.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$198.00-$252.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$195.00-$225.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$295.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$293.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$283.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$254.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$200.00-$219.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$210.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$108.00 - $130.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$99.00 - $107.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $98.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $143.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">571lbs @$316.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">633lbs @$290.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">653lbs @$292.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">809lbs @$252.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">611lbs @$280.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">727lbs @$248.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">735lbs @$280.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 12, 2023 - Market Report','','publish','closed','open','','september-12-2023-market-report','','','2023-09-13 15:34:43','2023-09-13 15:34:43','',0,'https://kingsvillelivestock.com/?p=5759',0,'post','',0),(5761,2,'2023-09-13 15:34:40','2023-09-13 15:34:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 12, 2023, </strong>2560 hd; Last week, 709 hd;3195 a year ago. Steers &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$367.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$347.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$323.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$228.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$278.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$198.00-$252.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$195.00-$225.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$295.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$293.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$283.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$254.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$200.00-$219.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$210.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$108.00 - $130.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$99.00 - $107.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $98.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $143.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">571lbs @$316.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">633lbs @$290.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">653lbs @$292.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">809lbs @$252.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">611lbs @$280.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">727lbs @$248.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">735lbs @$280.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 12, 2023 - Market Report','','inherit','closed','closed','','5759-revision-v1','','','2023-09-13 15:34:40','2023-09-13 15:34:40','',5759,'https://kingsvillelivestock.com/?p=5761',0,'revision','',0),(5762,2,'2023-09-13 15:34:40','2023-09-13 15:34:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 12, 2023, </strong>2560 hd; Last week, 709 hd;3195 a year ago. Steers &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$367.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$347.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$323.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$228.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$278.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$198.00-$252.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$195.00-$225.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$295.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$293.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$283.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$254.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$200.00-$219.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$210.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$108.00 - $130.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$99.00 - $107.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $98.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $143.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">571lbs @$316.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">633lbs @$290.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">653lbs @$292.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">809lbs @$252.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">611lbs @$280.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">727lbs @$248.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">735lbs @$280.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 5, 2023 - Market Report','','inherit','closed','closed','','5759-revision-v1','','','2023-09-13 15:34:40','2023-09-13 15:34:40','',5759,'https://kingsvillelivestock.com/?p=5762',0,'revision','',0),(5763,2,'2023-09-13 15:34:43','2023-09-13 15:34:43','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 12, 2023, </strong>2560 hd; Last week, 709 hd;3195 a year ago. Steers &amp; heifers sold steady-$5 higher. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$260.00-$367.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$347.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$323.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$228.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$278.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$198.00-$252.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$195.00-$225.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$295.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$293.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$283.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$254.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$200.00-$219.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$210.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$108.00 - $130.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$99.00 - $107.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $98.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $143.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">571lbs @$316.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">633lbs @$290.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">653lbs @$292.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">809lbs @$252.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">611lbs @$280.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">727lbs @$248.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">735lbs @$280.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 12, 2023 - Market Report','','inherit','closed','closed','','5759-revision-v1','','','2023-09-13 15:34:43','2023-09-13 15:34:43','',5759,'https://kingsvillelivestock.com/?p=5763',0,'revision','',0),(5764,2,'2023-09-18 17:51:17','2023-09-18 17:51:17','','Tuesday,September 19th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayseptember-19th-feeder-cattle-consignments','','','2023-09-18 17:51:17','2023-09-18 17:51:17','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/09/TuesdaySeptember-19th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5765,2,'2023-09-18 17:51:22','2023-09-18 17:51:22','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/TuesdaySeptember-19th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5764\">Tuesday,September 19th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993366;\">Special Cow &amp; Bull Sale - September 23rd @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Shimel Farms: </b><b>1 </b>4 yr. old Blk Sim-Angus bull</li>\n<li><b>Morrison Farms: </b><b>1 </b>14 Month old Blk Hereford bull. <b>1 </b>2.5 yr. old Reg. Blk Hereford bull, sire by J&amp;N Herefords. Easy going &amp; had all shots.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Snyder Farms: </b><b>12 </b>Â Polled Hereford 3-SS yr. old cows,2nd period. Bred to Mead Farms Reg. Angus bulls. Start calving end of Feb. All cows are home-raised &amp; gentle.</li>\n<li><b>Schultz Farms: </b><b>11 </b>Bwf 2 yr. old, 1100lbs bred heifers,3rd period. <b>32</b> Blk 2 yr. old, 1100lbs bred heifers, 3rd period. All heifers bred LBWT Polled Hereford or LBWT Red Angus bulls. All heifers home-raised, had all shots, &amp; carry one iron. Heifers start calving Sept. 15th, will be calves by sale day.</li>\n<li><b>Shimel Farms: </b><b>17 </b>Blk 4-SS yr. old cows w/ 6 3-400lbs calves at side &amp; balance w/ 30 day old calves at side. Cows are gentle &amp; will follow J.D. gator.</li>\n<li><b>Dale Smith Farms Complete Dispersal: </b><b>30 </b>Red Angus 4-5 yr. old cows w/ fall calves at side. <b>10</b> Red Angus 4-5 yr. old cows w/ 400lbs calves at side,3N1â€™s. <b>10</b> Red Angus 4-5 yr. old cows,3rd period. <b>30 </b>Blk-Bwf 5-SS yr. old cows w/ fall calves at side. <b>20</b> Blk-Bwf 5-SS yr. old cows w/ 400lbs calves at side. <b>20</b> Blk-Bwf 5-SS yr. old cows, 2nd &amp; 3rd period.</li>\n<li><b>Clint Smith Farms Complete Dispersal : </b><b>40 </b>Blk 5-SS yr. old cows w/ 200-400lbs calves at side. <b>20</b> Blk 5-SS yr. old cows, 2nd &amp; 3rd period.</li>\n<li><b>J-W Cattle Co. Complete Dispersal: </b><b>10 </b>TarentaiseÂ  4-5 yr. old cows w/ some calves at side &amp; balance 3rd period. <b>10</b> Blk-Bwf 3-7 yr. old cows w/ fall calves at side. <b>18</b> Blk-Bwf 3-7 yr. old cows, 3rd period. All cows have had all shots w/ good health program &amp; nice set of calves on ground.</li>\n<li><b>Woods Farms Complete Dispersal : </b><b>50 </b>Rwf-Bwf 3-SS yr. old cows w/ 200-400lbs calves at side. <b>60 </b>Bwf-Rwf 3-SS yr. old cows, 2nd &amp; 3rd period. All bred Reg. Angus bulls.</li>\n<li><b>Harris Farms: </b><b>18 </b>Blk-Bwf 3-7 yr. old cows, 2nd &amp;Â  3rd period. Bred Blk Angus or Polled Hereford bulls.</li>\n<li><b>Bolin Farms: </b><b>15 </b>Red Beefmaster 2 yr. old, 1000lbs bred heifers, 2nd period. Bred LBWT Red Angus bulls. Start calving Feb. 15th. Home-raised &amp; had all shots.</li>\n<li><b>Bryant Farms: </b><b>14 </b>Fancy Blk Balancer 2 yr. old 1100lbs bred heifers. Heifers were pelvic measured before breeding, had all shots, &amp; wormed/poured Aug. 15th. Bred Show-Me-Select qualified Reg. Angus bulls &amp; start calving Feb. 10th. Front-end set of bred heifers.</li>\n<li><b>Florida Farms Complete Dispersal: </b><b>15 </b>Blk-Bwf 6-SS yr. old cows w/ 350lbs calves at side, 3N1â€™s. <b>24</b> Blk-Bwf 6-SS yr. old cows w/ fall calves at side. Cows are gentle, easy to handle &amp; good set of pairs.</li>\n<li><b>Clement Farms: </b><b>25 </b>Blk-Bwf 3-6 yr. old cows w/ 2-300lbs calves at side. Cows sell open, nice set of pairs.</li>\n<li><b>Corneaes Land &amp; Cattle: </b><b>30 </b>Blk-Bwf 3-4 yr. old cows,3rd period. <b>35 </b>Blk-Bwf 5-7 yr. old cows, 3rd period. All cows bred Blk Angus or Blk-Sim bulls.</li>\n<li><b>C-W Farms: </b><b>75 </b>Blk-Bwf 3-6 yr. old cows,2nd period. Bred Blk Gelv. Bulls, nice set of spring calving cows.</li>\n<li><b>M. Smith Farms: </b><b>8 </b>Rwf 4-SS yr. old cows w/ March calves at side. Been running back w/ Bwf bull. <b>3</b> Rwf 2yr. old bred heifers. Start calving in March.</li>\n<li><b>DeHart Farms : </b><b>30 </b>Blk 3-SS yr. old cows,3rd period. Bred Blk-Sim Angus bulls. <b>7</b> Blk 3-SS yr. old cows w/ fall calves at side. All cows home-raised &amp; gentle set of cows.</li>\n<li><b>Osborn Farms: </b><b>41 </b>Blk-Bwf 6-SS yr. old cows,2nd period. Bred Reg. Polled Hereford bulls. Start calving Feb. 1st</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-09-18 17:51:22','2023-09-18 17:51:22','',2209,'https://kingsvillelivestock.com/?p=5765',0,'revision','',0),(5766,2,'2023-09-18 23:59:33','2023-09-18 23:59:33','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Estate-Ralph-Pearl-Wilkinson-Sept.-28th.pdf\" rel=\"attachment wp-att-5739\">Estate of Ralph &amp; Pearl Wilkinson - Thursday, Sept. 28th - Blue Springs </a></p>\n<p><a href=\"https://photos.app.goo.gl/xHnfnFZRExqy3DBD6\">Wilkinson Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/bWmF4Au2toyVZ1XJ6\">Sept. 30th Photos</a></p>\n<p><a href=\"https://drive.google.com/drive/folders/1Z3VY2wGj4PCQeW7DRyMIM6NKj1FyChps?usp=sharing\">Oct. 13 farm &amp; livestock equipment photos</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/Equipment-Auction-October-13th-1.pdf\" rel=\"attachment wp-att-5692\">Info regarding Labor Day Auction &amp; upcoming Equipment Auction on October 13th</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-09-18 23:59:33','2023-09-18 23:59:33','',1450,'https://kingsvillelivestock.com/?p=5766',0,'revision','',0),(5767,2,'2023-09-19 00:55:10','2023-09-19 00:55:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/September-232023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5756\">September 23,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-09-19 00:55:10','2023-09-19 00:55:10','',639,'https://kingsvillelivestock.com/?p=5767',0,'revision','',0),(5768,2,'2023-09-19 00:55:53','2023-09-19 00:55:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/September-232023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5756\">September 23,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-09-19 00:55:53','2023-09-19 00:55:53','',1967,'https://kingsvillelivestock.com/?p=5768',0,'revision','',0),(5769,2,'2023-09-20 14:48:46','2023-09-20 14:48:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 12, 2023, </strong>2522 hd; Last week, 2560 hd; 2198 a year ago. Compared to last week, steers &amp; heifers sold steady-$3 higher. Slaughter cows &amp; bulls sold $2-$4 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$270.00-$356.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$270.00-$346.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$301.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$249.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$220.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$315.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$217.00-$279.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$257.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$216.00-$230.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$200.00-$210.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">518lbs @$315.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">727lbs @$274.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">728lbs @$275.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">772lbs @$260.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">776lbs @$261.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">659lbs @$279.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">698lbs @$260.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">717lbs @$257.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">720lbs @$254.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 19, 2023 - Market Report','','publish','closed','open','','september-19-2023-market-report','','','2023-09-20 14:48:49','2023-09-20 14:48:49','',0,'https://kingsvillelivestock.com/?p=5769',0,'post','',0),(5770,2,'2023-09-20 14:48:46','2023-09-20 14:48:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 12, 2023, </strong>2522 hd; Last week, 2560 hd; 2198 a year ago. Compared to last week, steers &amp; heifers sold steady-$3 higher. Slaughter cows &amp; bulls sold $2-$4 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$270.00-$356.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$270.00-$346.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$301.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$249.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$220.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$315.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$217.00-$279.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$257.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$216.00-$230.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$200.00-$210.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">518lbs @$315.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">727lbs @$274.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">728lbs @$275.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">772lbs @$260.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">776lbs @$261.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">659lbs @$279.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">698lbs @$260.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">717lbs @$257.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">720lbs @$254.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 19, 2023 - Market Report','','inherit','closed','closed','','5769-revision-v1','','','2023-09-20 14:48:46','2023-09-20 14:48:46','',5769,'https://kingsvillelivestock.com/?p=5770',0,'revision','',0),(5771,2,'2023-09-20 14:48:46','2023-09-20 14:48:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 12, 2023, </strong>2522 hd; Last week, 2560 hd; 2198 a year ago. Compared to last week, steers &amp; heifers sold steady-$3 higher. Slaughter cows &amp; bulls sold $2-$4 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$270.00-$356.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$270.00-$346.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$301.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$249.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$220.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$315.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$217.00-$279.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$257.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$216.00-$230.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$200.00-$210.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">518lbs @$315.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">727lbs @$274.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">728lbs @$275.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">772lbs @$260.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">776lbs @$261.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">659lbs @$279.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">698lbs @$260.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">717lbs @$257.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">720lbs @$254.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 12, 2023 - Market Report','','inherit','closed','closed','','5769-revision-v1','','','2023-09-20 14:48:46','2023-09-20 14:48:46','',5769,'https://kingsvillelivestock.com/?p=5771',0,'revision','',0),(5772,2,'2023-09-20 14:48:49','2023-09-20 14:48:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 12, 2023, </strong>2522 hd; Last week, 2560 hd; 2198 a year ago. Compared to last week, steers &amp; heifers sold steady-$3 higher. Slaughter cows &amp; bulls sold $2-$4 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$270.00-$356.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$270.00-$346.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$301.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$249.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$220.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$315.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$217.00-$279.85</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$257.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$216.00-$230.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$200.00-$210.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $110.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $140.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">518lbs @$315.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">727lbs @$274.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">728lbs @$275.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">772lbs @$260.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">776lbs @$261.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">659lbs @$279.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">698lbs @$260.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">717lbs @$257.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">720lbs @$254.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 19, 2023 - Market Report','','inherit','closed','closed','','5769-revision-v1','','','2023-09-20 14:48:49','2023-09-20 14:48:49','',5769,'https://kingsvillelivestock.com/?p=5772',0,'revision','',0),(5773,2,'2023-09-20 14:49:55','2023-09-20 14:49:55','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/September-232023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5756\">September 23, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-09-20 14:49:55','2023-09-20 14:49:55','',639,'https://kingsvillelivestock.com/?p=5773',0,'revision','',0),(5774,2,'2023-09-20 14:50:28','2023-09-20 14:50:28','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/September-232023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5756\">September 23, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-09-20 14:50:28','2023-09-20 14:50:28','',1967,'https://kingsvillelivestock.com/?p=5774',0,'revision','',0),(5776,2,'2023-09-20 16:15:57','2023-09-20 16:15:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/September-232023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5756\">September 23, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Ora &amp; Shirley Stumpf &amp; Donna Chaney Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 7th @ 9:30 am<br /></strong>Piercey &amp; Johson Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-09-20 16:15:57','2023-09-20 16:15:57','',1967,'https://kingsvillelivestock.com/?p=5776',0,'revision','',0),(5777,2,'2023-09-20 16:17:41','2023-09-20 16:17:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/September-232023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5756\">September 23, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Ora &amp; Shirley Stumpf &amp; Donna Chaney Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 7th @ 9:30 am<br /></strong>Piercey &amp; Johnson Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-09-20 16:17:41','2023-09-20 16:17:41','',639,'https://kingsvillelivestock.com/?p=5777',0,'revision','',0),(5778,2,'2023-09-20 16:29:57','2023-09-20 16:29:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/September-232023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5756\">September 23, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 7th @ 9:30 am<br /></strong>Piercey &amp; Johnson Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-09-20 16:29:57','2023-09-20 16:29:57','',639,'https://kingsvillelivestock.com/?p=5778',0,'revision','',0),(5779,2,'2023-09-20 16:30:40','2023-09-20 16:30:40','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/September-232023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5756\">September 23, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 7th @ 9:30 am<br /></strong>Piercey &amp; Johson Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-09-20 16:30:40','2023-09-20 16:30:40','',1967,'https://kingsvillelivestock.com/?p=5779',0,'revision','',0),(5780,2,'2023-09-20 16:31:28','2023-09-20 16:31:28','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/September-232023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5756\">September 23, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 7th @ 9:30 am<br /></strong>Piercey &amp; Johnson Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-09-20 16:31:28','2023-09-20 16:31:28','',1967,'https://kingsvillelivestock.com/?p=5780',0,'revision','',0),(5781,2,'2023-09-20 16:32:34','2023-09-20 16:32:34','','Stumpff & Chaney Auction - Sept. 30th','','inherit','closed','closed','','stumpff-chaney-auction-sept-30th','','','2023-09-20 16:32:34','2023-09-20 16:32:34','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/09/Stumpff-Chaney-Auction-Sept.-30th.pdf',0,'attachment','application/pdf',0),(5783,2,'2023-09-20 16:34:15','2023-09-20 16:34:15','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Estate-Ralph-Pearl-Wilkinson-Sept.-28th.pdf\" rel=\"attachment wp-att-5739\">Estate of Ralph &amp; Pearl Wilkinson - Thursday, Sept. 28th - Blue Springs - 4:30pm</a></p>\n<p><a href=\"https://photos.app.goo.gl/xHnfnFZRExqy3DBD6\">Wilkinson Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Stumpff-Chaney-Auction-Sept.-30th.pdf\" rel=\"attachment wp-att-5781\">Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - Saturday, Sept. 30th Kingsville - 9:30am</a></p>\n<p><a href=\"https://photos.app.goo.gl/bWmF4Au2toyVZ1XJ6\">Sept. 30th Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://drive.google.com/drive/folders/1Z3VY2wGj4PCQeW7DRyMIM6NKj1FyChps?usp=sharing\">Oct. 13 farm &amp; livestock equipment photos</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/Equipment-Auction-October-13th-1.pdf\" rel=\"attachment wp-att-5692\">Info regarding Labor Day Auction &amp; upcoming Equipment Auction on October 13th</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-09-20 16:34:15','2023-09-20 16:34:15','',1450,'https://kingsvillelivestock.com/?p=5783',0,'revision','',0),(5784,2,'2023-09-20 17:16:10','2023-09-20 17:16:10','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Estate-Ralph-Pearl-Wilkinson-Sept.-28th.pdf\" rel=\"attachment wp-att-5739\">Estate of Ralph &amp; Pearl Wilkinson - Thursday, Sept. 28th - Blue Springs - 4:30pm</a></p>\n<p><a href=\"https://photos.app.goo.gl/xHnfnFZRExqy3DBD6\">Wilkinson Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Stumpff-Chaney-Auction-Sept.-30th.pdf\" rel=\"attachment wp-att-5781\">Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - Saturday, Sept. 30th Kingsville - 9:30am</a></p>\n<p><a href=\"https://photos.app.goo.gl/bWmF4Au2toyVZ1XJ6\">Sept. 30th Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/QGTnU74gX7aJz7r58\">Phil Kelley Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://drive.google.com/drive/folders/1Z3VY2wGj4PCQeW7DRyMIM6NKj1FyChps?usp=sharing\">Oct. 13 farm &amp; livestock equipment photos</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/Equipment-Auction-October-13th-1.pdf\" rel=\"attachment wp-att-5692\">Info regarding Labor Day Auction &amp; upcoming Equipment Auction on October 13th</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-09-20 17:16:10','2023-09-20 17:16:10','',1450,'https://kingsvillelivestock.com/?p=5784',0,'revision','',0),(5785,2,'2023-09-20 20:08:52','2023-09-20 20:08:52','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/September-232023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5756\">September 23, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 7th @ 9:30 am<br /></strong>Piercey &amp; Johnson Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-09-20 20:08:52','2023-09-20 20:08:52','',639,'https://kingsvillelivestock.com/?p=5785',0,'revision','',0),(5786,2,'2023-09-20 20:10:03','2023-09-20 20:10:03','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/September-232023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5756\">September 23, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 7th @ 9:30 am<br /></strong>Piercey &amp; Johnson Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale</p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale</p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-09-20 20:10:03','2023-09-20 20:10:03','',1967,'https://kingsvillelivestock.com/?p=5786',0,'revision','',0),(5788,2,'2023-09-21 14:57:27','2023-09-21 14:57:27','','October 14th,2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','october-14th2022-horse-tack-small-animal-sale','','','2023-09-21 14:57:27','2023-09-21 14:57:27','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale.pdf',0,'attachment','application/pdf',0),(5789,2,'2023-09-21 14:57:54','2023-09-21 14:57:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/September-232023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5756\">September 23, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 7th @ 9:30 am<br /></strong>Piercey &amp; Johnson Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5788\">October 14th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5788\">October 14th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-09-21 14:57:54','2023-09-21 14:57:54','',639,'https://kingsvillelivestock.com/?p=5789',0,'revision','',0),(5790,2,'2023-09-21 14:58:45','2023-09-21 14:58:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 23rd @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/September-232023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5756\">September 23, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 7th @ 9:30 am<br /></strong>Piercey &amp; Johnson Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5788\">October 14th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5788\">October 14th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-09-21 14:58:45','2023-09-21 14:58:45','',1967,'https://kingsvillelivestock.com/?p=5790',0,'revision','',0),(5791,2,'2023-09-25 15:17:54','2023-09-25 15:17:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 7th @ 9:30 am<br /></strong>Piercey &amp; Johnson Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5788\">October 14th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5788\">October 14th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-09-25 15:17:54','2023-09-25 15:17:54','',639,'https://kingsvillelivestock.com/?p=5791',0,'revision','',0),(5792,2,'2023-09-25 15:26:47','2023-09-25 15:26:47','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 7th @ 9:30 am<br /></strong>Piercey &amp; Johnson Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5788\">October 14th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5788\">October 14th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-09-25 15:26:47','2023-09-25 15:26:47','',1967,'https://kingsvillelivestock.com/?p=5792',0,'revision','',0),(5793,2,'2023-09-25 15:27:15','2023-09-25 15:27:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.1\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/TuesdaySeptember-19th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5764\">Tuesday,September 19th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-09-25 15:27:15','2023-09-25 15:27:15','',2209,'https://kingsvillelivestock.com/?p=5793',0,'revision','',0),(5794,2,'2023-09-25 15:49:49','2023-09-25 15:49:49','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Estate-Ralph-Pearl-Wilkinson-Sept.-28th.pdf\" rel=\"attachment wp-att-5739\">Estate of Ralph &amp; Pearl Wilkinson - Thursday, Sept. 28th - Blue Springs - 4:30pm</a></p>\n<p><a href=\"https://photos.app.goo.gl/xHnfnFZRExqy3DBD6\">Wilkinson Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Stumpff-Chaney-Auction-Sept.-30th.pdf\" rel=\"attachment wp-att-5781\">Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - Saturday, Sept. 30th Kingsville - 9:30am</a></p>\n<p><a href=\"https://photos.app.goo.gl/bWmF4Au2toyVZ1XJ6\">Sept. 30th Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/dePoFqYnax2deJPo6\">Oct. 7th Piercey &amp; Johnson photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/QGTnU74gX7aJz7r58\">Oct. 21st Phil Kelley Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://drive.google.com/drive/folders/1Z3VY2wGj4PCQeW7DRyMIM6NKj1FyChps?usp=sharing\">Oct. 13 Farm &amp; livestock equipment photos</a></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/08/Equipment-Auction-October-13th-1.pdf\" rel=\"attachment wp-att-5692\">Info regarding Labor Day Auction &amp; upcoming Equipment Auction on October 13th</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-09-25 15:49:49','2023-09-25 15:49:49','',1450,'https://kingsvillelivestock.com/?p=5794',0,'revision','',0),(5795,2,'2023-09-25 17:57:34','2023-09-25 17:57:34','','Tuesday,September 26th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayseptember-26th-feeder-cattle-consignments','','','2023-09-25 17:57:34','2023-09-25 17:57:34','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/09/TuesdaySeptember-26th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5796,2,'2023-09-25 17:57:41','2023-09-25 17:57:41','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/TuesdaySeptember-26th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5795\">Tuesday,September 26th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-09-25 17:57:41','2023-09-25 17:57:41','',2209,'https://kingsvillelivestock.com/?p=5796',0,'revision','',0),(5797,2,'2023-09-25 21:17:32','2023-09-25 21:17:32','','October 14th,2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','october-14th2022-horse-tack-small-animal-sale-2','','','2023-09-25 21:17:32','2023-09-25 21:17:32','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf',0,'attachment','application/pdf',0),(5798,2,'2023-09-25 21:17:48','2023-09-25 21:17:48','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 7th @ 9:30 am<br /></strong>Piercey &amp; Johnson Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-09-25 21:17:48','2023-09-25 21:17:48','',639,'https://kingsvillelivestock.com/?p=5798',0,'revision','',0),(5799,2,'2023-09-25 21:18:38','2023-09-25 21:18:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 7th @ 9:30 am<br /></strong>Piercey &amp; Johnson Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-09-25 21:18:38','2023-09-25 21:18:38','',1967,'https://kingsvillelivestock.com/?p=5799',0,'revision','',0),(5800,2,'2023-09-26 15:55:21','2023-09-26 15:55:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 7th @ 9:30 am<br /></strong>Piercey &amp; Johnson Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-09-26 15:55:21','2023-09-26 15:55:21','',639,'https://kingsvillelivestock.com/?p=5800',0,'revision','',0),(5801,2,'2023-09-26 15:56:06','2023-09-26 15:56:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 7th @ 9:30 am<br /></strong>Piercey &amp; Johnson Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-09-26 15:56:06','2023-09-26 15:56:06','',1967,'https://kingsvillelivestock.com/?p=5801',0,'revision','',0),(5802,2,'2023-09-27 15:04:02','2023-09-27 15:04:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 7th @ 9:30 am<br /></strong>Piercey &amp; Johnson Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-09-27 15:04:02','2023-09-27 15:04:02','',639,'https://kingsvillelivestock.com/?p=5802',0,'revision','',0),(5803,2,'2023-09-27 15:04:32','2023-09-27 15:04:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 7th @ 9:30 am<br /></strong>Piercey &amp; Johnson Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-09-27 15:04:32','2023-09-27 15:04:32','',1967,'https://kingsvillelivestock.com/?p=5803',0,'revision','',0),(5804,2,'2023-09-27 16:25:27','2023-09-27 16:25:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 26, 2023, </strong>2444 hd; Last week, 2552 hd; 2909 a year ago. Feeder cattle sold fully steady. Slaughter cows &amp; bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$265.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$270.00-$340.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$323.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$295.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$275.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$222.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$209.00-$219.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$31.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$279.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$218.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$145.00-$209.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$109.00 - $120.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$97.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $96.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $136.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">666lbs @$267.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">727lbs @$275.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">769lbs @$265.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">814lbs @$251.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">647lbs @$269.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">653lbs @$267.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">721lbs @$251.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">745lbs @$247.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">750lbs @$239.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 26, 2023 - Market Report','','publish','closed','open','','september-26-2023-market-report','','','2023-09-27 16:25:30','2023-09-27 16:25:30','',0,'https://kingsvillelivestock.com/?p=5804',0,'post','',0),(5806,2,'2023-09-27 16:25:27','2023-09-27 16:25:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 26, 2023, </strong>2444 hd; Last week, 2552 hd; 2909 a year ago. Feeder cattle sold fully steady. Slaughter cows &amp; bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$265.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$270.00-$340.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$323.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$295.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$275.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$222.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$209.00-$219.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$31.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$279.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$218.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$145.00-$209.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$109.00 - $120.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$97.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $96.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $136.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">666lbs @$267.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">727lbs @$275.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">769lbs @$265.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">814lbs @$251.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">647lbs @$269.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">653lbs @$267.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">721lbs @$251.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">745lbs @$247.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">750lbs @$239.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 26, 2023 - Market Report','','inherit','closed','closed','','5804-revision-v1','','','2023-09-27 16:25:27','2023-09-27 16:25:27','',5804,'https://kingsvillelivestock.com/?p=5806',0,'revision','',0),(5807,2,'2023-09-27 16:25:27','2023-09-27 16:25:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 26, 2023, </strong>2444 hd; Last week, 2552 hd; 2909 a year ago. Feeder cattle sold fully steady. Slaughter cows &amp; bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$265.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$270.00-$340.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$323.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$295.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$275.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$222.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$209.00-$219.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$31.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$279.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$218.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$145.00-$209.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$109.00 - $120.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$97.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $96.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $136.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">666lbs @$267.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">727lbs @$275.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">769lbs @$265.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">814lbs @$251.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">647lbs @$269.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">653lbs @$267.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">721lbs @$251.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">745lbs @$247.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">750lbs @$239.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 19, 2023 - Market Report','','inherit','closed','closed','','5804-revision-v1','','','2023-09-27 16:25:27','2023-09-27 16:25:27','',5804,'https://kingsvillelivestock.com/?p=5807',0,'revision','',0),(5808,2,'2023-09-27 16:25:30','2023-09-27 16:25:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>September 26, 2023, </strong>2444 hd; Last week, 2552 hd; 2909 a year ago. Feeder cattle sold fully steady. Slaughter cows &amp; bulls sold $2-$3 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$265.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$270.00-$340.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$323.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$235.00-$295.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$275.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$222.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$209.00-$219.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$31.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$279.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$218.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$145.00-$209.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$109.00 - $120.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$97.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $96.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $136.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">666lbs @$267.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">727lbs @$275.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">769lbs @$265.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">814lbs @$251.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">647lbs @$269.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">653lbs @$267.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">721lbs @$251.00</td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 26px;\">745lbs @$247.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">750lbs @$239.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.17.6\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 26, 2023 - Market Report','','inherit','closed','closed','','5804-revision-v1','','','2023-09-27 16:25:30','2023-09-27 16:25:30','',5804,'https://kingsvillelivestock.com/?p=5808',0,'revision','',0),(5809,2,'2023-09-27 17:54:35','2023-09-27 17:54:35','','Oct. 13th ( tabloid)','','inherit','closed','closed','','oct-13th-tabloid','','','2023-09-27 17:54:35','2023-09-27 17:54:35','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/09/Oct.-13th-tabloid.pdf',0,'attachment','application/pdf',0),(5810,2,'2023-09-27 17:57:18','2023-09-27 17:57:18','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Estate-Ralph-Pearl-Wilkinson-Sept.-28th.pdf\" rel=\"attachment wp-att-5739\">Estate of Ralph &amp; Pearl Wilkinson - Thursday, Sept. 28th - Blue Springs - 4:30pm</a></p>\n<p><a href=\"https://photos.app.goo.gl/xHnfnFZRExqy3DBD6\">Wilkinson Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Stumpff-Chaney-Auction-Sept.-30th.pdf\" rel=\"attachment wp-att-5781\">Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - Saturday, Sept. 30th Kingsville - 9:30am</a></p>\n<p><a href=\"https://photos.app.goo.gl/bWmF4Au2toyVZ1XJ6\">Sept. 30th Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/dePoFqYnax2deJPo6\">Oct. 7th Piercey &amp; Johnson photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Oct.-13th-tabloid.pdf\" rel=\"attachment wp-att-5809\">Farm &amp; Livestock Equipment Auction - Friday, Oct. 13th Kingsville - 9am</a></p>\n<p><a href=\"https://drive.google.com/drive/folders/1Z3VY2wGj4PCQeW7DRyMIM6NKj1FyChps?usp=sharing\">Oct. 13 Farm &amp; livestock equipment photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/QGTnU74gX7aJz7r58\">Oct. 21st Phil Kelley Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-09-27 17:57:18','2023-09-27 17:57:18','',1450,'https://kingsvillelivestock.com/?p=5810',0,'revision','',0),(5811,2,'2023-09-27 18:28:46','2023-09-27 18:28:46','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 7th @ 9:30 am<br /></strong>Piercey &amp; Johnson Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2023 Horse, Tack, &amp; Small Animal SaleÂ Â </a></p>\n<p><a href=\"https://photos.app.goo.gl/62kD9d9nGsdHknEf9\">Small Animal Photos</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-09-27 18:28:46','2023-09-27 18:28:46','',639,'https://kingsvillelivestock.com/?p=5811',0,'revision','',0),(5812,2,'2023-09-27 18:29:42','2023-09-27 18:29:42','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>SEPTEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Sept. 28th @ 4:30 pm<br /></strong>Estate of Ralph &amp; Pearl Wilkinson - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Sept. 30th @ 9:30 am<br /></strong>Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - For more info visit the Anstine Auction tab!</span></p>\n<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 3rd @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 7th @ 9:30 am<br /></strong>Piercey &amp; Johnson Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><a href=\"https://photos.app.goo.gl/62kD9d9nGsdHknEf9\">Small Animal Photos</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-09-27 18:29:42','2023-09-27 18:29:42','',1967,'https://kingsvillelivestock.com/?p=5812',0,'revision','',0),(5813,2,'2023-09-27 18:47:50','2023-09-27 18:47:50','','Gary Piercey & Deborah Johnson Auction - Oct. 7th','','inherit','closed','closed','','gary-piercey-deborah-johnson-auction-oct-7th','','','2023-09-27 18:47:50','2023-09-27 18:47:50','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/09/Gary-Piercey-Deborah-Johnson-Auction-Oct.-7th.pdf',0,'attachment','application/pdf',0),(5814,2,'2023-09-27 18:49:00','2023-09-27 18:49:00','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Estate-Ralph-Pearl-Wilkinson-Sept.-28th.pdf\" rel=\"attachment wp-att-5739\">Estate of Ralph &amp; Pearl Wilkinson - Thursday, Sept. 28th - Blue Springs - 4:30pm</a></p>\n<p><a href=\"https://photos.app.goo.gl/xHnfnFZRExqy3DBD6\">Wilkinson Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Stumpff-Chaney-Auction-Sept.-30th.pdf\" rel=\"attachment wp-att-5781\">Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - Saturday, Sept. 30th Kingsville - 9:30am</a></p>\n<p><a href=\"https://photos.app.goo.gl/bWmF4Au2toyVZ1XJ6\">Sept. 30th Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Gary-Piercey-Deborah-Johnson-Auction-Oct.-7th.pdf\" rel=\"attachment wp-att-5813\">Gary Piercey &amp; Deborah Johnson Auction - Saturday, Oct. 7th-Grain Valley-9:30amÂ </a></p>\n<p><a href=\"https://photos.app.goo.gl/dePoFqYnax2deJPo6\">Oct. 7th Piercey &amp; Johnson photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Oct.-13th-tabloid.pdf\" rel=\"attachment wp-att-5809\">Farm &amp; Livestock Equipment Auction - Friday, Oct. 13th Kingsville - 9am</a></p>\n<p><a href=\"https://drive.google.com/drive/folders/1Z3VY2wGj4PCQeW7DRyMIM6NKj1FyChps?usp=sharing\">Oct. 13 Farm &amp; livestock equipment photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/QGTnU74gX7aJz7r58\">Oct. 21st Phil Kelley Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-09-27 18:49:00','2023-09-27 18:49:00','',1450,'https://kingsvillelivestock.com/?p=5814',0,'revision','',0),(5815,2,'2023-09-27 19:01:56','2023-09-27 19:01:56','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Estate-Ralph-Pearl-Wilkinson-Sept.-28th.pdf\" rel=\"attachment wp-att-5739\">Estate of Ralph &amp; Pearl Wilkinson - Thursday, Sept. 28th - Blue Springs - 4:30pm</a></p>\n<p><a href=\"https://photos.app.goo.gl/xHnfnFZRExqy3DBD6\">Wilkinson Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Stumpff-Chaney-Auction-Sept.-30th.pdf\" rel=\"attachment wp-att-5781\">Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - Saturday, Sept. 30th Kingsville - 9:30am</a></p>\n<p><a href=\"https://photos.app.goo.gl/bWmF4Au2toyVZ1XJ6\">Sept. 30th Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Gary-Piercey-Deborah-Johnson-Auction-Oct.-7th.pdf\" rel=\"attachment wp-att-5813\">Gary Piercey &amp; Deborah Johnson Auction - Saturday, Oct. 7th-Grain Valley-9:30amÂ </a></p>\n<p><a href=\"https://photos.app.goo.gl/dePoFqYnax2deJPo6\">Oct. 7th Piercey &amp; Johnson photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Oct.-13th-tabloid.pdf\" rel=\"attachment wp-att-5809\">Farm &amp; Livestock Equipment Auction - Friday, Oct. 13th Kingsville - 9am</a></p>\n<p><a href=\"https://drive.google.com/drive/folders/1Z3VY2wGj4PCQeW7DRyMIM6NKj1FyChps?usp=sharing\">Oct. 13 Farm &amp; livestock equipment photos</a></p>\n<p><a href=\"https://photos.app.goo.gl/mCKuRj9zKRw6Zfrw6\">Cheryl Wheeldon Photos </a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/QGTnU74gX7aJz7r58\">Oct. 21st Phil Kelley Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-09-27 19:01:56','2023-09-27 19:01:56','',1450,'https://kingsvillelivestock.com/?p=5815',0,'revision','',0),(5816,2,'2023-09-27 19:26:04','2023-09-27 19:26:04','','Gary Piercey & Deborah Johnson Auction - Oct. 7th','','inherit','closed','closed','','gary-piercey-deborah-johnson-auction-oct-7th-2','','','2023-09-27 19:26:04','2023-09-27 19:26:04','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/09/Gary-Piercey-Deborah-Johnson-Auction-Oct.-7th-1.pdf',0,'attachment','application/pdf',0),(5817,2,'2023-09-27 19:26:40','2023-09-27 19:26:40','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Estate-Ralph-Pearl-Wilkinson-Sept.-28th.pdf\" rel=\"attachment wp-att-5739\">Estate of Ralph &amp; Pearl Wilkinson - Thursday, Sept. 28th - Blue Springs - 4:30pm</a></p>\n<p><a href=\"https://photos.app.goo.gl/xHnfnFZRExqy3DBD6\">Wilkinson Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Stumpff-Chaney-Auction-Sept.-30th.pdf\" rel=\"attachment wp-att-5781\">Ora &amp; Shirley Stumpff &amp; Donna Chaney Auction - Saturday, Sept. 30th Kingsville - 9:30am</a></p>\n<p><a href=\"https://photos.app.goo.gl/bWmF4Au2toyVZ1XJ6\">Sept. 30th Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Gary-Piercey-Deborah-Johnson-Auction-Oct.-7th-1.pdf\" rel=\"attachment wp-att-5816\">Gary Piercey &amp; Deborah Johnson Auction - Saturday, Oct. 7th-Grain Valley - 9:30am</a></p>\n<p><a href=\"https://photos.app.goo.gl/dePoFqYnax2deJPo6\">Oct. 7th Piercey &amp; Johnson photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Oct.-13th-tabloid.pdf\" rel=\"attachment wp-att-5809\">Farm &amp; Livestock Equipment Auction - Friday, Oct. 13th Kingsville - 9am</a></p>\n<p><a href=\"https://drive.google.com/drive/folders/1Z3VY2wGj4PCQeW7DRyMIM6NKj1FyChps?usp=sharing\">Oct. 13 Farm &amp; livestock equipment photos</a></p>\n<p><a href=\"https://photos.app.goo.gl/mCKuRj9zKRw6Zfrw6\">Cheryl Wheeldon Photos </a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/QGTnU74gX7aJz7r58\">Oct. 21st Phil Kelley Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-09-27 19:26:40','2023-09-27 19:26:40','',1450,'https://kingsvillelivestock.com/?p=5817',0,'revision','',0),(5819,2,'2023-10-09 15:47:02','2023-10-09 15:47:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><a href=\"https://photos.app.goo.gl/62kD9d9nGsdHknEf9\">Small Animal Photos</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-10-09 15:47:02','2023-10-09 15:47:02','',1967,'https://kingsvillelivestock.com/?p=5819',0,'revision','',0),(5820,2,'2023-10-09 15:47:49','2023-10-09 15:47:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5797\">October 14th,2023 Horse, Tack, &amp; Small Animal SaleÂ Â </a></p>\n<p><a href=\"https://photos.app.goo.gl/62kD9d9nGsdHknEf9\">Small Animal Photos</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-10-09 15:47:49','2023-10-09 15:47:49','',639,'https://kingsvillelivestock.com/?p=5820',0,'revision','',0),(5822,2,'2023-10-09 15:53:36','2023-10-09 15:53:36','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/TuesdaySeptember-26th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5795\">Tuesday,September 26th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.22.2\" _module_preset=\"default\" column_structure=\"2_5,3_5\"][et_pb_column _builder_version=\"4.22.2\" _module_preset=\"default\" type=\"2_5\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #ff6600;\">Special Cow&amp; Bull Sale - Saturday, October 28th @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.22.2\" _module_preset=\"default\" type=\"3_5\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Smith Farms : </b><b>3 </b>2 yr. old Blk Angus bulls <b>2</b> 4 yr. old Blk Angus bulls</li>\n<li><b>W.Nold Farms: </b><b>5 </b>20-month-old Blk Sim-Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Richardson Farms: </b><b>6 </b>18-month-old Horned Hereford bulls. Big stout set of bulls &amp; had all shots. Been semen &amp; trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Piercey Farms: </b><b>30 </b>Â Blk 4-7 yr. old cows,2nd &amp; 3rd period. <b>7</b> Red-Rwf 4-7 yr. old cow, 2nd &amp; 3rd period. Bred BlkÂ  &amp; Red Angus bulls. Gentle, easy-going set of cows. Been wormed/poured &amp; had all shots.</li>\n<li><b>S.Nold Farms: </b><b>5 </b>Blk Sim-Angus 2 yr. old, 1100lbs bred heifers,2nd period. Bred LBWT Angus bulls. Showed 80-140 days bred on Oct. 2nd. Heifers been pelvic measured prior to breeding.Â </li>\n<li><b>G. Anderson Farms: </b><b>12 </b>Bwf 2 yr. old, 1000lbs bred heifers, 2nd period. <b>35</b> Blk 2 yr. old, 1000lbs bred heifers, 2nd period. Bred Sygen Reg. Angus bulls. Start calving Feb. 1st for 55 days. All heifers are home-raised &amp; pelvic measured before breeding. Gentle, nice set of heifers.</li>\n<li><b>JDH Cattle: </b><b>7 </b>Blk Angus 4-5 yr. old cows w/ fall calves at side. <b>1</b> Blk Angus 5 yr. old cows w/ 300lbs calf at side,3N1. All cows are good quality &amp; had all shots.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-10-09 15:53:36','2023-10-09 15:53:36','',2209,'https://kingsvillelivestock.com/?p=5822',0,'revision','',0),(5823,2,'2023-10-09 15:55:04','2023-10-09 15:55:04','','Kelley Estate - Oct. 21st','','inherit','closed','closed','','kelley-estate-oct-21st','','','2023-10-09 15:55:04','2023-10-09 15:55:04','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-Oct.-21st.pdf',0,'attachment','application/pdf',0),(5824,2,'2023-10-09 15:55:56','2023-10-09 15:55:56','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Oct.-13th-tabloid.pdf\" rel=\"attachment wp-att-5809\">Farm &amp; Livestock Equipment Auction - Friday, Oct. 13th Kingsville - 9am</a></p>\n<p><a href=\"https://drive.google.com/drive/folders/1Z3VY2wGj4PCQeW7DRyMIM6NKj1FyChps?usp=sharing\">Oct. 13 Farm &amp; livestock equipment photos</a></p>\n<p><a href=\"https://photos.app.goo.gl/mCKuRj9zKRw6Zfrw6\">Cheryl Wheeldon Photos </a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-Oct.-21st.pdf\" rel=\"attachment wp-att-5823\">Phil Kelley Estate -Satuday, Oct. 21st-Harrisonville-9:30am</a></p>\n<p><a href=\"https://photos.app.goo.gl/QGTnU74gX7aJz7r58\">Oct. 21st Phil Kelley Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-10-09 15:55:56','2023-10-09 15:55:56','',1450,'https://kingsvillelivestock.com/?p=5824',0,'revision','',0),(5825,2,'2023-10-09 16:07:54','2023-10-09 16:07:54','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/Oct.-13th-tabloid.pdf\" rel=\"attachment wp-att-5809\">Farm &amp; Livestock Equipment Auction - Friday, Oct. 13th Kingsville - 9am</a></p>\n<p><a href=\"https://drive.google.com/drive/folders/1Z3VY2wGj4PCQeW7DRyMIM6NKj1FyChps?usp=sharing\">Oct. 13 Farm &amp; livestock equipment photos</a></p>\n<p><a href=\"https://photos.app.goo.gl/mCKuRj9zKRw6Zfrw6\">Oct. 13th Photos </a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-Oct.-21st.pdf\" rel=\"attachment wp-att-5823\">Phil Kelley Estate -Satuday, Oct. 21st-Harrisonville-9:30am</a></p>\n<p><a href=\"https://photos.app.goo.gl/QGTnU74gX7aJz7r58\">Oct. 21st Phil Kelley Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-10-09 16:07:54','2023-10-09 16:07:54','',1450,'https://kingsvillelivestock.com/?p=5825',0,'revision','',0),(5826,2,'2023-10-09 16:25:35','2023-10-09 16:25:35','','Kelley Estate - Oct. 21st','','inherit','closed','closed','','kelley-estate-oct-21st-2','','','2023-10-09 16:25:35','2023-10-09 16:25:35','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-Oct.-21st-1.pdf',0,'attachment','application/pdf',0),(5827,2,'2023-10-09 16:26:08','2023-10-09 16:26:08','','Oct. 13th ( tabloid)','','inherit','closed','closed','','oct-13th-tabloid-2','','','2023-10-09 16:26:08','2023-10-09 16:26:08','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/Oct.-13th-tabloid.pdf',0,'attachment','application/pdf',0),(5828,2,'2023-10-09 16:27:16','2023-10-09 16:27:16','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Oct.-13th-tabloid.pdf\" rel=\"attachment wp-att-5827\">Farm &amp; Livestock Equipment Friday, Oct. 13th ( tabloid)</a></p>\n<p><a href=\"https://drive.google.com/drive/folders/1Z3VY2wGj4PCQeW7DRyMIM6NKj1FyChps?usp=sharing\">Oct. 13 Farm &amp; livestock equipment photos</a></p>\n<p><a href=\"https://photos.app.goo.gl/mCKuRj9zKRw6Zfrw6\">Oct. 13th Photos </a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-Oct.-21st.pdf\" rel=\"attachment wp-att-5823\">Phil Kelley Estate -Satuday, Oct. 21st-Harrisonville-9:30am</a></p>\n<p><a href=\"https://photos.app.goo.gl/QGTnU74gX7aJz7r58\">Oct. 21st Phil Kelley Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-10-09 16:27:16','2023-10-09 16:27:16','',1450,'https://kingsvillelivestock.com/?p=5828',0,'revision','',0),(5829,2,'2023-10-09 16:30:03','2023-10-09 16:30:03','','October 14th,2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','october-14th2022-horse-tack-small-animal-sale-3','','','2023-10-09 16:30:03','2023-10-09 16:30:03','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale.pdf',0,'attachment','application/pdf',0),(5830,2,'2023-10-09 16:30:26','2023-10-09 16:30:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5829\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5829\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><a href=\"https://photos.app.goo.gl/62kD9d9nGsdHknEf9\">Small Animal Photos</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-10-09 16:30:26','2023-10-09 16:30:26','',639,'https://kingsvillelivestock.com/?p=5830',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (5831,2,'2023-10-09 16:31:23','2023-10-09 16:31:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 10th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5829\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale.pdf\" rel=\"attachment wp-att-5829\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><a href=\"https://photos.app.goo.gl/62kD9d9nGsdHknEf9\">Small Animal Photos</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-10-09 16:31:23','2023-10-09 16:31:23','',1967,'https://kingsvillelivestock.com/?p=5831',0,'revision','',0),(5832,2,'2023-10-09 17:09:38','2023-10-09 17:09:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/09/TuesdaySeptember-26th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5795\">Tuesday,September 26th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff6600;\">Special Cow&amp; Bull Sale - Saturday, October 28th @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Smith Farms : </b><b>3 </b>2 yr. old Blk Angus bulls <b>2</b> 4 yr. old Blk Angus bulls</li>\n<li><b>W.Nold Farms: </b><b>5 </b>20-month-old Blk Sim-Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Richardson Farms: </b><b>6 </b>18-month-old Horned Hereford bulls. Big stout set of bulls &amp; had all shots. Been semen &amp; trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Piercey Farms: </b><b>30 </b>Â Blk 4-7 yr. old cows,2nd &amp; 3rd period. <b>7</b> Red-Rwf 4-7 yr. old cow, 2nd &amp; 3rd period. Bred BlkÂ  &amp; Red Angus bulls. Gentle, easy-going set of cows. Been wormed/poured &amp; had all shots.</li>\n<li><b>S.Nold Farms: </b><b>5 </b>Blk Sim-Angus 2 yr. old, 1100lbs bred heifers,2nd period. Bred LBWT Angus bulls. Showed 80-140 days bred on Oct. 2nd. Heifers been pelvic measured prior to breeding.</li>\n<li><b>G. Anderson Farms: </b><b>12 </b>Bwf 2 yr. old, 1000lbs bred heifers, 2nd period. <b>35</b> Blk 2 yr. old, 1000lbs bred heifers, 2nd period. Bred Sygen Reg. Angus bulls. Start calving Feb. 1st for 55 days. All heifers are home-raised &amp; pelvic measured before breeding. Gentle, nice set of heifers.</li>\n<li><b>JDH Cattle: </b><b>7 </b>Blk Angus 4-5 yr. old cows w/ fall calves at side. <b>1</b> Blk Angus 5 yr. old cows w/ 300lbs calf at side,3N1. All cows are good quality &amp; had all shots.</li>\n<li><b>DeKam Farms: </b><b>50 </b>Blk-Red Angus 6-SS yr. old cows w/ 10 fall calves at side &amp; balance 2nd period. Calves sired by MayWay or Horned Hereford Bulls. Balance bred Baker Angus &amp; start calving Feb. Cows were purchased as first calf hfrs. Selling due to loss on ground.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-10-09 17:09:38','2023-10-09 17:09:38','',2209,'https://kingsvillelivestock.com/?p=5832',0,'revision','',0),(5833,2,'2023-10-09 17:32:23','2023-10-09 17:32:23','','Tuesday,October 10th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayoctober-10th-feeder-cattle-consignments','','','2023-10-09 17:32:23','2023-10-09 17:32:23','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/TuesdayOctober-10th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5834,2,'2023-10-09 17:32:32','2023-10-09 17:32:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/TuesdayOctober-10th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5833\">Tuesday,October 10th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff6600;\">Special Cow&amp; Bull Sale - Saturday, October 28th @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Smith Farms : </b><b>3 </b>2 yr. old Blk Angus bulls <b>2</b> 4 yr. old Blk Angus bulls</li>\n<li><b>W.Nold Farms: </b><b>5 </b>20-month-old Blk Sim-Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Richardson Farms: </b><b>6 </b>18-month-old Horned Hereford bulls. Big stout set of bulls &amp; had all shots. Been semen &amp; trich tested</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Piercey Farms: </b><b>30 </b>Â Blk 4-7 yr. old cows,2nd &amp; 3rd period. <b>7</b> Red-Rwf 4-7 yr. old cow, 2nd &amp; 3rd period. Bred BlkÂ  &amp; Red Angus bulls. Gentle, easy-going set of cows. Been wormed/poured &amp; had all shots.</li>\n<li><b>S.Nold Farms: </b><b>5 </b>Blk Sim-Angus 2 yr. old, 1100lbs bred heifers,2nd period. Bred LBWT Angus bulls. Showed 80-140 days bred on Oct. 2nd. Heifers been pelvic measured prior to breeding.</li>\n<li><b>G. Anderson Farms: </b><b>12 </b>Bwf 2 yr. old, 1000lbs bred heifers, 2nd period. <b>35</b> Blk 2 yr. old, 1000lbs bred heifers, 2nd period. Bred Sygen Reg. Angus bulls. Start calving Feb. 1st for 55 days. All heifers are home-raised &amp; pelvic measured before breeding. Gentle, nice set of heifers.</li>\n<li><b>JDH Cattle: </b><b>7 </b>Blk Angus 4-5 yr. old cows w/ fall calves at side. <b>1</b> Blk Angus 5 yr. old cows w/ 300lbs calf at side,3N1. All cows are good quality &amp; had all shots.</li>\n<li><b>DeKam Farms: </b><b>50 </b>Blk-Red Angus 6-SS yr. old cows w/ 10 fall calves at side &amp; balance 2nd period. Calves sired by MayWay or Horned Hereford Bulls. Balance bred Baker Angus &amp; start calving Feb. Cows were purchased as first calf hfrs. Selling due to loss on ground.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-10-09 17:32:32','2023-10-09 17:32:32','',2209,'https://kingsvillelivestock.com/?p=5834',0,'revision','',0),(5835,2,'2023-10-09 21:57:09','2023-10-09 21:57:09','','Kelley Estate - Oct. 21st','','inherit','closed','closed','','kelley-estate-oct-21st-3','','','2023-10-09 21:57:09','2023-10-09 21:57:09','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-Oct.-21st-2.pdf',0,'attachment','application/pdf',0),(5836,2,'2023-10-09 21:57:30','2023-10-09 21:57:30','','Oct. 13th ( tabloid)','','inherit','closed','closed','','oct-13th-tabloid-3','','','2023-10-09 21:57:30','2023-10-09 21:57:30','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/Oct.-13th-tabloid-1.pdf',0,'attachment','application/pdf',0),(5837,2,'2023-10-09 22:06:31','2023-10-09 22:06:31','','Oct. 13th ( tabloid)','','inherit','closed','closed','','oct-13th-tabloid-4','','','2023-10-09 22:06:31','2023-10-09 22:06:31','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/Oct.-13th-tabloid-2.pdf',0,'attachment','application/pdf',0),(5838,2,'2023-10-09 22:07:18','2023-10-09 22:07:18','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Oct.-13th-tabloid-2.pdf\" rel=\"attachment wp-att-5837\">Farm &amp; Livestock Equipment Auction, Friday, Oct. 13th - 9 am</a> updated on 10-9Â </p>\n<p><a href=\"https://drive.google.com/drive/folders/1Z3VY2wGj4PCQeW7DRyMIM6NKj1FyChps?usp=sharing\">Oct. 13 Farm &amp; livestock equipment photos</a></p>\n<p><a href=\"https://photos.app.goo.gl/mCKuRj9zKRw6Zfrw6\">Oct. 13th Photos </a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-Oct.-21st.pdf\" rel=\"attachment wp-att-5823\">Phil Kelley Estate -Satuday, Oct. 21st-Harrisonville-9:30am</a></p>\n<p><a href=\"https://photos.app.goo.gl/QGTnU74gX7aJz7r58\">Oct. 21st Phil Kelley Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-10-09 22:07:18','2023-10-09 22:07:18','',1450,'https://kingsvillelivestock.com/?p=5838',0,'revision','',0),(5839,2,'2023-10-11 15:30:53','2023-10-11 15:30:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 10, 2023, </strong>2310 hd; Last week, 1957 hd; 2935 a year ago.Yearling feeder cattle sold fully steady. Spring calves sold steady-$4 lower in spots. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$332.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$310.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$290.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$264.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$248.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$259.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$263.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$252.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$254.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$164.00-$175.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $124.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$105.00 - $144.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">764lbs @$262.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">767lbs @$257.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">790lbs @$257.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">748lbs @$251.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">782lbs @$245.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 10, 2023 - Market Report','','publish','closed','open','','october-10-2023-market-report','','','2023-10-11 15:30:56','2023-10-11 15:30:56','',0,'https://kingsvillelivestock.com/?p=5839',0,'post','',0),(5841,2,'2023-10-11 15:30:53','2023-10-11 15:30:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 10, 2023, </strong>2310 hd; Last week, 1957 hd; 2935 a year ago.Yearling feeder cattle sold fully steady. Spring calves sold steady-$4 lower in spots. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$332.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$310.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$290.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$264.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$248.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$259.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$263.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$252.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$254.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$164.00-$175.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $124.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$105.00 - $144.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">764lbs @$262.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">767lbs @$257.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">790lbs @$257.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">748lbs @$251.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">782lbs @$245.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 10, 2023 - Market Report','','inherit','closed','closed','','5839-revision-v1','','','2023-10-11 15:30:53','2023-10-11 15:30:53','',5839,'https://kingsvillelivestock.com/?p=5841',0,'revision','',0),(5842,2,'2023-10-11 15:30:53','2023-10-11 15:30:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 10, 2023, </strong>2310 hd; Last week, 1957 hd; 2935 a year ago.Yearling feeder cattle sold fully steady. Spring calves sold steady-$4 lower in spots. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$332.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$310.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$290.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$264.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$248.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$259.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$263.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$252.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$254.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$164.00-$175.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $124.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$105.00 - $144.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">764lbs @$262.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">767lbs @$257.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">790lbs @$257.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">748lbs @$251.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">782lbs @$245.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','September 26, 2023 - Market Report','','inherit','closed','closed','','5839-revision-v1','','','2023-10-11 15:30:53','2023-10-11 15:30:53','',5839,'https://kingsvillelivestock.com/?p=5842',0,'revision','',0),(5843,2,'2023-10-11 15:30:56','2023-10-11 15:30:56','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 10, 2023, </strong>2310 hd; Last week, 1957 hd; 2935 a year ago.Yearling feeder cattle sold fully steady. Spring calves sold steady-$4 lower in spots. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$332.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$310.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$290.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$264.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$248.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">N/A</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$270.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$259.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$263.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$252.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$254.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$164.00-$175.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $124.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$105.00 - $144.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">764lbs @$262.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">767lbs @$257.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">790lbs @$257.35</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">748lbs @$251.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">782lbs @$245.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 10, 2023 - Market Report','','inherit','closed','closed','','5839-revision-v1','','','2023-10-11 15:30:56','2023-10-11 15:30:56','',5839,'https://kingsvillelivestock.com/?p=5843',0,'revision','',0),(5844,2,'2023-10-11 16:10:19','2023-10-11 16:10:19','','October 14th,2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','october-14th2022-horse-tack-small-animal-sale-4','','','2023-10-11 16:10:19','2023-10-11 16:10:19','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf',0,'attachment','application/pdf',0),(5845,2,'2023-10-11 16:10:34','2023-10-11 16:10:34','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5844\">October 14th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5844\">October 14th,2022 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><a href=\"https://photos.app.goo.gl/62kD9d9nGsdHknEf9\">Small Animal Photos</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-10-11 16:10:34','2023-10-11 16:10:34','',639,'https://kingsvillelivestock.com/?p=5845',0,'revision','',0),(5846,2,'2023-10-11 16:11:54','2023-10-11 16:11:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5844\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5844\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><a href=\"https://photos.app.goo.gl/62kD9d9nGsdHknEf9\">Small Animal Photos</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-10-11 16:11:54','2023-10-11 16:11:54','',639,'https://kingsvillelivestock.com/?p=5846',0,'revision','',0),(5847,2,'2023-10-11 16:13:50','2023-10-11 16:13:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5844\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale-1.pdf\" rel=\"attachment wp-att-5844\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><a href=\"https://photos.app.goo.gl/62kD9d9nGsdHknEf9\">Small Animal Photos</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-10-11 16:13:50','2023-10-11 16:13:50','',1967,'https://kingsvillelivestock.com/?p=5847',0,'revision','',0),(5848,2,'2023-10-11 16:14:36','2023-10-11 16:14:36','','Kelley Estate - Oct. 21st','','inherit','closed','closed','','kelley-estate-oct-21st-4','','','2023-10-11 16:14:36','2023-10-11 16:14:36','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-Oct.-21st-3.pdf',0,'attachment','application/pdf',0),(5849,2,'2023-10-11 16:15:26','2023-10-11 16:15:26','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Oct.-13th-tabloid-2.pdf\" rel=\"attachment wp-att-5837\">Farm &amp; Livestock Equipment Auction, Friday, Oct. 13th - 9 am</a> updated on 10-9</p>\n<p><a href=\"https://drive.google.com/drive/folders/1Z3VY2wGj4PCQeW7DRyMIM6NKj1FyChps?usp=sharing\">Oct. 13 Farm &amp; livestock equipment photos</a></p>\n<p><a href=\"https://photos.app.goo.gl/mCKuRj9zKRw6Zfrw6\">Oct. 13th Photos </a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-Oct.-21st-3.pdf\" rel=\"attachment wp-att-5848\">Phil Kelley Estate Auction, Saturday, Oct. 21st-9:30am-Harrisonville</a></p>\n<p><a href=\"https://photos.app.goo.gl/QGTnU74gX7aJz7r58\">Oct. 21st Phil Kelley Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-10-11 16:15:26','2023-10-11 16:15:26','',1450,'https://kingsvillelivestock.com/?p=5849',0,'revision','',0),(5850,2,'2023-10-11 16:55:13','2023-10-11 16:55:13','','Oct. 13th ( tabloid)','','inherit','closed','closed','','oct-13th-tabloid-5','','','2023-10-11 16:55:13','2023-10-11 16:55:13','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/Oct.-13th-tabloid-3.pdf',0,'attachment','application/pdf',0),(5851,2,'2023-10-11 16:56:26','2023-10-11 16:56:26','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Oct.-13th-tabloid-3.pdf\" rel=\"attachment wp-att-5850\">Farm &amp; Livestock farm equipment Auction, Friday, Oct. 13th-9am-Kingsville</a>updated on 10-11</p>\n<p><a href=\"https://drive.google.com/drive/folders/1Z3VY2wGj4PCQeW7DRyMIM6NKj1FyChps?usp=sharing\">Oct. 13 Farm &amp; livestock equipment photos</a></p>\n<p><a href=\"https://photos.app.goo.gl/mCKuRj9zKRw6Zfrw6\">Oct. 13th Photos </a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-Oct.-21st-3.pdf\" rel=\"attachment wp-att-5848\">Phil Kelley Estate Auction, Saturday, Oct. 21st-9:30am-Harrisonville</a></p>\n<p><a href=\"https://photos.app.goo.gl/QGTnU74gX7aJz7r58\">Oct. 21st Phil Kelley Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-10-11 16:56:26','2023-10-11 16:56:26','',1450,'https://kingsvillelivestock.com/?p=5851',0,'revision','',0),(5852,2,'2023-10-12 18:17:01','2023-10-12 18:17:01','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Oct.-13th-tabloid-3.pdf\" rel=\"attachment wp-att-5850\">Farm &amp; Livestock farm equipment Auction, Friday, Oct. 13th-9am-Kingsville</a>updated on 10-11</p>\n<p><a href=\"https://drive.google.com/drive/folders/1Z3VY2wGj4PCQeW7DRyMIM6NKj1FyChps?usp=sharing\">Oct. 13 Farm &amp; livestock equipment photos</a></p>\n<p><a href=\"https://photos.app.goo.gl/mCKuRj9zKRw6Zfrw6\">Oct. 13th Photos </a></p>\n<p><a href=\"https://www.equipmentfacts.com/listings/auctions/online/event/227776723/list\">Equipment Facts online bidding - 10-13</a>Â </p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-Oct.-21st-3.pdf\" rel=\"attachment wp-att-5848\">Phil Kelley Estate Auction, Saturday, Oct. 21st-9:30am-Harrisonville</a></p>\n<p><a href=\"https://photos.app.goo.gl/QGTnU74gX7aJz7r58\">Oct. 21st Phil Kelley Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-10-12 18:17:01','2023-10-12 18:17:01','',1450,'https://kingsvillelivestock.com/?p=5852',0,'revision','',0),(5853,2,'2023-10-12 18:54:04','2023-10-12 18:54:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/TuesdayOctober-10th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5833\">Tuesday,October 10th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff6600;\">Special Cow&amp; Bull Sale - Saturday, October 28th @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Smith Farms : </b><b>3 </b>2 yr. old Blk Angus bulls <b>2</b> 4 yr. old Blk Angus bulls</li>\n<li><b>W.Nold Farms: </b><b>5 </b>20-month-old Blk Sim-Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Richardson Farms: </b><b>6 </b>18-month-old Horned Hereford bulls. Big stout set of bulls &amp; had all shots. Been semen &amp; trich tested</li>\n<li><b>Stemburger Farms : </b><b>1 </b>3 yr. old Horned Hereford bull. <b>1 </b>3 yr. oldÂ  LBWT Char bull. Can be used on hfrs.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Piercey Farms: </b><b>30 </b>Â Blk 4-7 yr. old cows,2nd &amp; 3rd period. <b>7</b> Red-Rwf 4-7 yr. old cow, 2nd &amp; 3rd period. Bred BlkÂ  &amp; Red Angus bulls. Gentle, easy-going set of cows. Been wormed/poured &amp; had all shots.</li>\n<li><b>S.Nold Farms: </b><b>5 </b>Blk Sim-Angus 2 yr. old, 1100lbs bred heifers,2nd period. Bred LBWT Angus bulls. Showed 80-140 days bred on Oct. 2nd. Heifers been pelvic measured prior to breeding.</li>\n<li><b>G. Anderson Farms: </b><b>12 </b>Bwf 2 yr. old, 1000lbs bred heifers, 2nd period. <b>35</b> Blk 2 yr. old, 1000lbs bred heifers, 2nd period. Bred Sygen Reg. Angus bulls. Start calving Feb. 1st for 55 days. All heifers are home-raised &amp; pelvic measured before breeding. Gentle, nice set of heifers.</li>\n<li><b>JDH Cattle: </b><b>7 </b>Blk Angus 4-5 yr. old cows w/ fall calves at side. <b>1</b> Blk Angus 5 yr. old cows w/ 300lbs calf at side,3N1. All cows are good quality &amp; had all shots.</li>\n<li><b>DeKam Farms: </b><b>50 </b>Blk-Red Angus 6-SS yr. old cows w/ 10 fall calves at side &amp; balance 2nd period. Calves sired by MayWay or Horned Hereford Bulls. Balance bred Baker Angus &amp; start calving Feb. Cows were purchased as first calf hfrs. Selling due to loss on ground.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-10-12 18:54:04','2023-10-12 18:54:04','',2209,'https://kingsvillelivestock.com/?p=5853',0,'revision','',0),(5854,2,'2023-10-12 18:59:22','2023-10-12 18:59:22','','October 14th,2022 Horse, Tack, & Small Animal Sale','','inherit','closed','closed','','october-14th2022-horse-tack-small-animal-sale-5','','','2023-10-12 18:59:22','2023-10-12 18:59:22','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale-2.pdf',0,'attachment','application/pdf',0),(5855,2,'2023-10-12 18:59:39','2023-10-12 18:59:39','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale-2.pdf\" rel=\"attachment wp-att-5854\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale-2.pdf\" rel=\"attachment wp-att-5854\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><a href=\"https://photos.app.goo.gl/62kD9d9nGsdHknEf9\">Small Animal Photos</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-10-12 18:59:39','2023-10-12 18:59:39','',639,'https://kingsvillelivestock.com/?p=5855',0,'revision','',0),(5856,2,'2023-10-12 19:00:46','2023-10-12 19:00:46','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 13th @ 9:00am<br /></strong>Farm Machinery Sale</span></p>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale-2.pdf\" rel=\"attachment wp-att-5854\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale-2.pdf\" rel=\"attachment wp-att-5854\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><a href=\"https://photos.app.goo.gl/62kD9d9nGsdHknEf9\">Small Animal Photos</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-10-12 19:00:46','2023-10-12 19:00:46','',1967,'https://kingsvillelivestock.com/?p=5856',0,'revision','',0),(5857,2,'2023-10-14 13:35:45','2023-10-14 13:35:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 14th @ 8:30 am<br /></strong>Horse/Tack Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale-2.pdf\" rel=\"attachment wp-att-5854\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><strong>Oct. 14th @ 5:00 pm<br /></strong>Small Animal Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-14th2022-Horse-Tack-Small-Animal-Sale-2.pdf\" rel=\"attachment wp-att-5854\">October 14th,2023 Horse, Tack, &amp; Small Animal Sale</a></p>\n<p><a href=\"https://photos.app.goo.gl/62kD9d9nGsdHknEf9\">Small Animal Photos</a></p>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-10-14 13:35:45','2023-10-14 13:35:45','',639,'https://kingsvillelivestock.com/?p=5857',0,'revision','',0),(5858,2,'2023-10-16 16:43:30','2023-10-16 16:43:30','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-10-16 16:43:30','2023-10-16 16:43:30','',639,'https://kingsvillelivestock.com/?p=5858',0,'revision','',0),(5859,2,'2023-10-16 16:43:56','2023-10-16 16:43:56','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-10-16 16:43:56','2023-10-16 16:43:56','',1967,'https://kingsvillelivestock.com/?p=5859',0,'revision','',0),(5860,2,'2023-10-16 16:44:25','2023-10-16 16:44:25','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-Oct.-21st-3.pdf\" rel=\"attachment wp-att-5848\">Phil Kelley Estate Auction, Saturday, Oct. 21st-9:30am-Harrisonville</a></p>\n<p><a href=\"https://photos.app.goo.gl/QGTnU74gX7aJz7r58\">Oct. 21st Phil Kelley Photos</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-10-16 16:44:25','2023-10-16 16:44:25','',1450,'https://kingsvillelivestock.com/?p=5860',0,'revision','',0),(5861,2,'2023-10-16 16:45:13','2023-10-16 16:45:13','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/TuesdayOctober-10th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5833\">Tuesday,October 10th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff6600;\">Special Cow&amp; Bull Sale - Saturday, October 28th @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Smith Farms : </b><b>3 </b>2 yr. old Blk Angus bulls <b>2</b> 4 yr. old Blk Angus bulls</li>\n<li><b>W.Nold Farms: </b><b>5 </b>20-month-old Blk Sim-Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Richardson Farms: </b><b>6 </b>18-month-old Horned Hereford bulls. Big stout set of bulls &amp; had all shots. Been semen &amp; trich tested</li>\n<li><b>Stemburger Farms : </b><b>1 </b>3 yr. old Horned Hereford bull. <b>1 </b>3 yr. oldÂ  LBWT Char bull. Can be used on hfrs.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Piercey Farms: </b><b>30 </b>Â Blk 4-7 yr. old cows,2nd &amp; 3rd period. <b>7</b> Red-Rwf 4-7 yr. old cow, 2nd &amp; 3rd period. Bred BlkÂ  &amp; Red Angus bulls. Gentle, easy-going set of cows. Been wormed/poured &amp; had all shots.</li>\n<li><b>S.Nold Farms: </b><b>5 </b>Blk Sim-Angus 2 yr. old, 1100lbs bred heifers,2nd period. Bred LBWT Angus bulls. Showed 80-140 days bred on Oct. 2nd. Heifers been pelvic measured prior to breeding.</li>\n<li><b>G. Anderson Farms: </b><b>12 </b>Bwf 2 yr. old, 1000lbs bred heifers, 2nd period. <b>35</b> Blk 2 yr. old, 1000lbs bred heifers, 2nd period. Bred Sygen Reg. Angus bulls. Start calving Feb. 1st for 55 days. All heifers are home-raised &amp; pelvic measured before breeding. Gentle, nice set of heifers.</li>\n<li><b>JDH Cattle: </b><b>7 </b>Blk Angus 4-5 yr. old cows w/ fall calves at side. <b>1</b> Blk Angus 5 yr. old cows w/ 300lbs calf at side,3N1. All cows are good quality &amp; had all shots.</li>\n<li><b>DeKam Farms: </b><b>50 </b>Blk-Red Angus 6-SS yr. old cows w/ 10 fall calves at side &amp; balance 2nd period. Calves sired by MayWay or Horned Hereford Bulls. Balance bred Baker Angus &amp; start calving Feb. Cows were purchased as first calf hfrs. Selling due to loss on ground.</li>\n<li><b>Henley Farms: </b><b>20 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side. Cows are open. Breed to bull of your choice.</li>\n<li><b>Ottervan Farms: </b><b>25 </b>Blk-Bwf 3-4 yr. old cows, 3rd-period Bred Balancer bulls. Nice set of cows &amp; had all shots.</li>\n<li><b>Bar-S Farms: </b><b>35 </b>Blk-Bwf 5-SS yr. old cows, 3rd period. Bred Blk Angus bulls.Â </li>\n<li><b>Remen Farms: </b><b>20 </b>Blk 3-4 yr. old cows, 2nd period. <b>25</b> Blk 5-7 yr. old cows,2nd period. Bred Blk Angus or Polled Hereford bulls. Nice set of spring-calving cows.Â </li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-10-16 16:45:13','2023-10-16 16:45:13','',2209,'https://kingsvillelivestock.com/?p=5861',0,'revision','',0),(5862,2,'2023-10-16 17:25:37','2023-10-16 17:25:37','','Tuesday,October 17th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayoctober-17th-feeder-cattle-consignments','','','2023-10-16 17:25:37','2023-10-16 17:25:37','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/TuesdayOctober-17th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5863,2,'2023-10-16 17:25:45','2023-10-16 17:25:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/TuesdayOctober-17th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5862\">Tuesday,October 17th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff6600;\">Special Cow&amp; Bull Sale - Saturday, October 28th @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Smith Farms : </b><b>3 </b>2 yr. old Blk Angus bulls <b>2</b> 4 yr. old Blk Angus bulls</li>\n<li><b>W.Nold Farms: </b><b>5 </b>20-month-old Blk Sim-Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Richardson Farms: </b><b>6 </b>18-month-old Horned Hereford bulls. Big stout set of bulls &amp; had all shots. Been semen &amp; trich tested</li>\n<li><b>Stemburger Farms : </b><b>1 </b>3 yr. old Horned Hereford bull. <b>1 </b>3 yr. oldÂ  LBWT Char bull. Can be used on hfrs.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Piercey Farms: </b><b>30 </b>Â Blk 4-7 yr. old cows,2nd &amp; 3rd period. <b>7</b> Red-Rwf 4-7 yr. old cow, 2nd &amp; 3rd period. Bred BlkÂ  &amp; Red Angus bulls. Gentle, easy-going set of cows. Been wormed/poured &amp; had all shots.</li>\n<li><b>S.Nold Farms: </b><b>5 </b>Blk Sim-Angus 2 yr. old, 1100lbs bred heifers,2nd period. Bred LBWT Angus bulls. Showed 80-140 days bred on Oct. 2nd. Heifers been pelvic measured prior to breeding.</li>\n<li><b>G. Anderson Farms: </b><b>12 </b>Bwf 2 yr. old, 1000lbs bred heifers, 2nd period. <b>35</b> Blk 2 yr. old, 1000lbs bred heifers, 2nd period. Bred Sygen Reg. Angus bulls. Start calving Feb. 1st for 55 days. All heifers are home-raised &amp; pelvic measured before breeding. Gentle, nice set of heifers.</li>\n<li><b>JDH Cattle: </b><b>7 </b>Blk Angus 4-5 yr. old cows w/ fall calves at side. <b>1</b> Blk Angus 5 yr. old cows w/ 300lbs calf at side,3N1. All cows are good quality &amp; had all shots.</li>\n<li><b>DeKam Farms: </b><b>50 </b>Blk-Red Angus 6-SS yr. old cows w/ 10 fall calves at side &amp; balance 2nd period. Calves sired by MayWay or Horned Hereford Bulls. Balance bred Baker Angus &amp; start calving Feb. Cows were purchased as first calf hfrs. Selling due to loss on ground.</li>\n<li><b>Henley Farms: </b><b>20 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side. Cows are open. Breed to bull of your choice.</li>\n<li><b>Ottervan Farms: </b><b>25 </b>Blk-Bwf 3-4 yr. old cows, 3rd-period Bred Balancer bulls. Nice set of cows &amp; had all shots.</li>\n<li><b>Bar-S Farms: </b><b>35 </b>Blk-Bwf 5-SS yr. old cows, 3rd period. Bred Blk Angus bulls.Â </li>\n<li><b>Remen Farms: </b><b>20 </b>Blk 3-4 yr. old cows, 2nd period. <b>25</b> Blk 5-7 yr. old cows,2nd period. Bred Blk Angus or Polled Hereford bulls. Nice set of spring-calving cows.Â </li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-10-16 17:25:45','2023-10-16 17:25:45','',2209,'https://kingsvillelivestock.com/?p=5863',0,'revision','',0),(5864,2,'2023-10-16 17:28:44','2023-10-16 17:28:44','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/TuesdayOctober-17th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5862\">Tuesday,October 17th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff6600;\">Special Cow&amp; Bull Sale - Saturday, October 28th @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Smith Farms : </b><b>3 </b>2 yr. old Blk Angus bulls <b>2</b> 4 yr. old Blk Angus bulls</li>\n<li><b>W.Nold Farms: </b><b>5 </b>20-month-old Blk Sim-Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Richardson Farms: </b><b>6 </b>18-month-old Horned Hereford bulls. Big stout set of bulls &amp; had all shots. Been semen &amp; trich tested</li>\n<li><b>Reed Farms: </b><b>4 </b>2 yr. old Purebred Blk Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Stemburger Farms : </b><b>1 </b>3 yr. old Horned Hereford bull. <b>1 </b>3 yr. oldÂ  LBWT Char bull. Can be used on hfrs.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Piercey Farms: </b><b>30 </b>Â Blk 4-7 yr. old cows,2nd &amp; 3rd period. <b>7</b> Red-Rwf 4-7 yr. old cow, 2nd &amp; 3rd period. Bred BlkÂ  &amp; Red Angus bulls. Gentle, easy-going set of cows. Been wormed/poured &amp; had all shots.</li>\n<li><b>S.Nold Farms: </b><b>5 </b>Blk Sim-Angus 2 yr. old, 1100lbs bred heifers,2nd period. Bred LBWT Angus bulls. Showed 80-140 days bred on Oct. 2nd. Heifers been pelvic measured prior to breeding.</li>\n<li><b>G. Anderson Farms: </b><b>12 </b>Bwf 2 yr. old, 1000lbs bred heifers, 2nd period. <b>35</b> Blk 2 yr. old, 1000lbs bred heifers, 2nd period. Bred Sygen Reg. Angus bulls. Start calving Feb. 1st for 55 days. All heifers are home-raised &amp; pelvic measured before breeding. Gentle, nice set of heifers.</li>\n<li><b>JDH Cattle: </b><b>7 </b>Blk Angus 4-5 yr. old cows w/ fall calves at side. <b>1</b> Blk Angus 5 yr. old cows w/ 300lbs calf at side,3N1. All cows are good quality &amp; had all shots.</li>\n<li><b>DeKam Farms: </b><b>50 </b>Blk-Red Angus 6-SS yr. old cows w/ 10 fall calves at side &amp; balance 2nd period. Calves sired by MayWay or Horned Hereford Bulls. Balance bred Baker Angus &amp; start calving Feb. Cows were purchased as first calf hfrs. Selling due to loss on ground.</li>\n<li><b>Henley Farms: </b><b>20 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side. Cows are open. Breed to bull of your choice.</li>\n<li><b>Ottervan Farms: </b><b>25 </b>Blk-Bwf 3-4 yr. old cows, 3rd-period Bred Balancer bulls. Nice set of cows &amp; had all shots.</li>\n<li><b>Bar-S Farms: </b><b>35 </b>Blk-Bwf 5-SS yr. old cows, 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Remen Farms: </b><b>20 </b>Blk 3-4 yr. old cows, 2nd period. <b>25</b> Blk 5-7 yr. old cows,2nd period. Bred Blk Angus or Polled Hereford bulls. Nice set of spring-calving cows.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-10-16 17:28:44','2023-10-16 17:28:44','',2209,'https://kingsvillelivestock.com/?p=5864',0,'revision','',0),(5865,2,'2023-10-16 19:33:30','2023-10-16 19:33:30','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-Oct.-21st-3.pdf\" rel=\"attachment wp-att-5848\">Phil Kelley Estate Auction, Saturday, Oct. 21st-9:30am-Harrisonville</a></p>\n<p><a href=\"https://photos.app.goo.gl/QGTnU74gX7aJz7r58\">Oct. 21st Phil Kelley Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://photos.app.goo.gl/uMPya67okrekB3pU8\">Nov. 10th Phil Kelley Photos </a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-10-16 19:33:30','2023-10-16 19:33:30','',1450,'https://kingsvillelivestock.com/?p=5865',0,'revision','',0),(5866,2,'2023-10-16 19:35:23','2023-10-16 19:35:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-10-16 19:35:23','2023-10-16 19:35:23','',639,'https://kingsvillelivestock.com/?p=5866',0,'revision','',0),(5867,2,'2023-10-16 19:37:29','2023-10-16 19:37:29','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-10-16 19:37:29','2023-10-16 19:37:29','',1967,'https://kingsvillelivestock.com/?p=5867',0,'revision','',0),(5868,2,'2023-10-16 19:38:20','2023-10-16 19:38:20','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-10-16 19:38:20','2023-10-16 19:38:20','',639,'https://kingsvillelivestock.com/?p=5868',0,'revision','',0),(5869,2,'2023-10-16 20:12:00','2023-10-16 20:12:00','','Kelley Estate - November 10th','','inherit','closed','closed','','kelley-estate-november-10th','','','2023-10-16 20:12:00','2023-10-16 20:12:00','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-November-10th.pdf',0,'attachment','application/pdf',0),(5870,2,'2023-10-16 20:12:43','2023-10-16 20:12:43','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-Oct.-21st-3.pdf\" rel=\"attachment wp-att-5848\">Phil Kelley Estate Auction, Saturday, Oct. 21st-9:30am-Harrisonville</a></p>\n<p><a href=\"https://photos.app.goo.gl/QGTnU74gX7aJz7r58\">Oct. 21st Phil Kelley Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-November-10th.pdf\" rel=\"attachment wp-att-5869\">Phil Kelley Equipment Auction, Friday,Â  November 10th-9am-Harrisonville</a></p>\n<p><a href=\"https://photos.app.goo.gl/uMPya67okrekB3pU8\">Nov. 10th Phil Kelley Photos </a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-10-16 20:12:43','2023-10-16 20:12:43','',1450,'https://kingsvillelivestock.com/?p=5870',0,'revision','',0),(5871,2,'2023-10-16 21:55:18','2023-10-16 21:55:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/TuesdayOctober-17th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5862\">Tuesday,October 17th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff6600;\">Special Cow&amp; Bull Sale - Saturday, October 28th @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Smith Farms : </b><b>3 </b>2 yr. old Blk Angus bulls <b>2</b> 4 yr. old Blk Angus bulls</li>\n<li><b>W.Nold Farms: </b><b>5 </b>20-month-old Blk Sim-Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Richardson Farms: </b><b>6 </b>18-month-old Horned Hereford bulls. Big stout set of bulls &amp; had all shots. Been semen &amp; trich tested</li>\n<li><b>Reed Farms: </b><b>4 </b>2 yr. old Purebred Blk Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Stemburger Farms : </b><b>1 </b>3 yr. old Horned Hereford bull. <b>1 </b>3 yr. oldÂ  LBWT Char bull. Can be used on hfrs.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Piercey Farms: </b><b>30 </b>Â Blk 4-7 yr. old cows,2nd &amp; 3rd period. <b>7</b> Red-Rwf 4-7 yr. old cow, 2nd &amp; 3rd period. Bred BlkÂ  &amp; Red Angus bulls. Gentle, easy-going set of cows. Been wormed/poured &amp; had all shots.</li>\n<li><b>S.Nold Farms: </b><b>5 </b>Blk Sim-Angus 2 yr. old, 1100lbs bred heifers,2nd period. Bred LBWT Angus bulls. Showed 80-140 days bred on Oct. 2nd. Heifers been pelvic measured prior to breeding.</li>\n<li><b>G. Anderson Farms: </b><b>12 </b>Bwf 2 yr. old, 1000lbs bred heifers, 2nd period. <b>35</b> Blk 2 yr. old, 1000lbs bred heifers, 2nd period. Bred Sygen Reg. Angus bulls. Start calving Feb. 1st for 55 days. All heifers are home-raised &amp; pelvic measured before breeding. Gentle, nice set of heifers.</li>\n<li><b>JDH Cattle: </b><b>7 </b>Blk Angus 4-5 yr. old cows w/ fall calves at side. <b>1</b> Blk Angus 5 yr. old cows w/ 300lbs calf at side,3N1. All cows are good quality &amp; had all shots.</li>\n<li><b>DeKam Farms: </b><b>50 </b>Blk-Red Angus 6-SS yr. old cows w/ 10 fall calves at side &amp; balance 2nd &amp; 3rd period. Calves sired by MayWay or Horned Hereford Bulls. Balance bred Baker Angus &amp; start calving Feb. Cows were purchased as first calf hfrs. Selling due to loss on grass lease.</li>\n<li><b>Henley Farms: </b><b>20 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side. Cows are open. Breed to bull of your choice.</li>\n<li><b>Ottervan Farms: </b><b>25 </b>Blk-Bwf 3-4 yr. old cows, 3rd-period Bred Balancer bulls. Nice set of cows &amp; had all shots.</li>\n<li><b>Bar-S Farms: </b><b>35 </b>Blk-Bwf 5-SS yr. old cows, 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Remen Farms: </b><b>20 </b>Blk 3-4 yr. old cows, 2nd period. <b>25</b> Blk 5-7 yr. old cows,2nd period. Bred Blk Angus or Polled Hereford bulls. Nice set of spring-calving cows.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-10-16 21:55:18','2023-10-16 21:55:18','',2209,'https://kingsvillelivestock.com/?p=5871',0,'revision','',0),(5872,2,'2023-10-16 22:33:15','2023-10-16 22:33:15','','Kelley Estate - November 10th','','inherit','closed','closed','','kelley-estate-november-10th-2','','','2023-10-16 22:33:15','2023-10-16 22:33:15','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-November-10th-1.pdf',0,'attachment','application/pdf',0),(5873,2,'2023-10-16 22:34:32','2023-10-16 22:34:32','','Kelley Estate - Oct. 21st','','inherit','closed','closed','','kelley-estate-oct-21st-5','','','2023-10-16 22:34:32','2023-10-16 22:34:32','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-Oct.-21st-4.pdf',0,'attachment','application/pdf',0),(5874,2,'2023-10-16 22:35:05','2023-10-16 22:35:05','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.22.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-Oct.-21st-4.pdf\" rel=\"attachment wp-att-5873\">Phil Kelley Estate Auction Saturday, Oct. 21st-9:30am-Harrisonville</a></p>\n<p><a href=\"https://photos.app.goo.gl/QGTnU74gX7aJz7r58\">Oct. 21st Phil Kelley Photos</a></p>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-November-10th-1.pdf\" rel=\"attachment wp-att-5872\">Phil Kelley Estate Auction, Friday, November 10th-9am-Harrisonville</a></p>\n<p><a href=\"https://photos.app.goo.gl/uMPya67okrekB3pU8\">Nov. 10th Phil Kelley Photos </a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-10-16 22:35:05','2023-10-16 22:35:05','',1450,'https://kingsvillelivestock.com/?p=5874',0,'revision','',0),(5876,2,'2023-10-17 17:41:51','2023-10-17 17:41:51','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Oct. 17th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-10-17 17:41:51','2023-10-17 17:41:51','',639,'https://kingsvillelivestock.com/?p=5876',0,'revision','',0),(5877,2,'2023-10-18 14:28:01','2023-10-18 14:28:01','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-10-18 14:28:01','2023-10-18 14:28:01','',639,'https://kingsvillelivestock.com/?p=5877',0,'revision','',0),(5878,2,'2023-10-18 14:29:11','2023-10-18 14:29:11','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-10-18 14:29:11','2023-10-18 14:29:11','',1967,'https://kingsvillelivestock.com/?p=5878',0,'revision','',0),(5879,2,'2023-10-18 15:04:54','2023-10-18 15:04:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 17, 2023, </strong>2018 hd; Last week, 2310 hd; 1832 a year ago. Compared to last week, steers &amp; heifers sold steady-$5 higher.Â  Slaughter cows &amp; bulls sold fully steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$350.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$270.00-$360.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$340.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$297.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$256.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$199.00-$240.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$285.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$271.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$269.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$265.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$188.00-$227.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$175.00-$200.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$92.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $91.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $138.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">538lbs @$317.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">800lbs @$254.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">807lbs @$252.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">841lbs @$243.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">706lbs @$265.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">735lbs @$254.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 17, 2023 - Market Report','','publish','closed','open','','october-17-2023-market-report','','','2023-10-18 15:04:57','2023-10-18 15:04:57','',0,'https://kingsvillelivestock.com/?p=5879',0,'post','',0),(5881,2,'2023-10-18 15:04:54','2023-10-18 15:04:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 17, 2023, </strong>2018 hd; Last week, 2310 hd; 1832 a year ago. Compared to last week, steers &amp; heifers sold steady-$5 higher.Â  Slaughter cows &amp; bulls sold fully steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$350.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$270.00-$360.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$340.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$297.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$256.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$199.00-$240.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$285.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$271.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$269.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$265.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$188.00-$227.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$175.00-$200.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$92.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $91.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $138.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">538lbs @$317.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">800lbs @$254.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">807lbs @$252.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">841lbs @$243.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">706lbs @$265.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">735lbs @$254.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 17, 2023 - Market Report','','inherit','closed','closed','','5879-revision-v1','','','2023-10-18 15:04:54','2023-10-18 15:04:54','',5879,'https://kingsvillelivestock.com/?p=5881',0,'revision','',0),(5882,2,'2023-10-18 15:04:54','2023-10-18 15:04:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 17, 2023, </strong>2018 hd; Last week, 2310 hd; 1832 a year ago. Compared to last week, steers &amp; heifers sold steady-$5 higher.Â  Slaughter cows &amp; bulls sold fully steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$350.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$270.00-$360.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$340.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$297.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$256.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$199.00-$240.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$285.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$271.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$269.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$265.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$188.00-$227.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$175.00-$200.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$92.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $91.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $138.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">538lbs @$317.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">800lbs @$254.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">807lbs @$252.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">841lbs @$243.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">706lbs @$265.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">735lbs @$254.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 10, 2023 - Market Report','','inherit','closed','closed','','5879-revision-v1','','','2023-10-18 15:04:54','2023-10-18 15:04:54','',5879,'https://kingsvillelivestock.com/?p=5882',0,'revision','',0),(5883,2,'2023-10-18 15:04:57','2023-10-18 15:04:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 17, 2023, </strong>2018 hd; Last week, 2310 hd; 1832 a year ago. Compared to last week, steers &amp; heifers sold steady-$5 higher.Â  Slaughter cows &amp; bulls sold fully steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$350.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$270.00-$360.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$340.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$297.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$256.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$199.00-$240.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$285.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$271.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$269.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$265.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$188.00-$227.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$175.00-$200.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$110.00 - $125.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$92.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$75.00 - $91.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $138.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">538lbs @$317.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">800lbs @$254.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">807lbs @$252.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">841lbs @$243.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">706lbs @$265.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">735lbs @$254.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 17, 2023 - Market Report','','inherit','closed','closed','','5879-revision-v1','','','2023-10-18 15:04:57','2023-10-18 15:04:57','',5879,'https://kingsvillelivestock.com/?p=5883',0,'revision','',0),(5884,2,'2023-10-18 15:05:40','2023-10-18 15:05:40','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/TuesdayOctober-17th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5862\">Tuesday,October 17th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff6600;\">Special Cow&amp; Bull Sale - Saturday, October 28th @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Smith Farms : </b><b>3 </b>2 yr. old Blk Angus bulls <b>2</b> 4 yr. old Blk Angus bulls</li>\n<li><b>W.Nold Farms: </b><b>5 </b>20-month-old Blk Sim-Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Richardson Farms: </b><b>6 </b>18-month-old Horned Hereford bulls. Big stout set of bulls &amp; had all shots. Been semen &amp; trich tested</li>\n<li><b>Reed Farms: </b><b>4 </b>2 yr. old Purebred Blk Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Stemburger Farms : </b><b>1 </b>3 yr. old Horned Hereford bull. <b>1 </b>3 yr. oldÂ  LBWT Char bull. Can be used on hfrs.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Piercey Farms: </b><b>30 </b>Â Blk 4-7 yr. old cows,2nd &amp; 3rd period. <b>7</b> Red-Rwf 4-7 yr. old cow, 2nd &amp; 3rd period. Bred BlkÂ  &amp; Red Angus bulls. Gentle, easy-going set of cows. Been wormed/poured &amp; had all shots.</li>\n<li><b>S.Nold Farms: </b><b>5 </b>Blk Sim-Angus 2 yr. old, 1100lbs bred heifers,2nd period. Bred LBWT Angus bulls. Showed 80-140 days bred on Oct. 2nd. Heifers been pelvic measured prior to breeding.</li>\n<li><b>G. Anderson Farms: </b><b>12 </b>Bwf 2 yr. old, 1000lbs bred heifers, 2nd period. <b>35</b> Blk 2 yr. old, 1000lbs bred heifers, 2nd period. Bred Sygen Reg. Angus bulls. Start calving Feb. 1st for 55 days. All heifers are home-raised &amp; pelvic measured before breeding. Gentle, nice set of heifers.</li>\n<li><b>JDH Cattle: </b><b>7 </b>Blk Angus 4-5 yr. old cows w/ fall calves at side. <b>1</b> Blk Angus 5 yr. old cows w/ 300lbs calf at side,3N1. All cows are good quality &amp; had all shots.</li>\n<li><b>DeKam Farms: </b><b>50 </b>Blk-Red Angus 6-SS yr. old cows w/ 10 fall calves at side &amp; balance 2nd &amp; 3rd period. Calves sired by MayWay or Horned Hereford Bulls. Balance bred Baker Angus &amp; start calving Feb. Cows were purchased as first calf hfrs. Selling due to loss on grass lease.</li>\n<li><b>Henley Farms: </b><b>20 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side. Cows are open. Breed to bull of your choice.</li>\n<li><b>Ottervan Farms: </b><b>25 </b>Blk-Bwf 3-4 yr. old cows, 3rd-period Bred Balancer bulls. Nice set of cows &amp; had all shots.</li>\n<li><b>Bar-S Farms: </b><b>35 </b>Blk-Bwf 5-SS yr. old cows, 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Remen Farms: </b><b>20 </b>Blk 3-4 yr. old cows, 2nd period. <b>25</b> Blk 5-7 yr. old cows,2nd period. Bred Blk Angus or Polled Hereford bulls. Nice set of spring-calving cows.</li>\n<li><b>Hayne Farms: </b><b>22 </b>Blk-Bwf 3-6 yr. old cows, 2nd &amp; 3rd period. Bred Sim-Angus bulls.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-10-18 15:05:40','2023-10-18 15:05:40','',2209,'https://kingsvillelivestock.com/?p=5884',0,'revision','',0),(5885,2,'2023-10-18 15:31:23','2023-10-18 15:31:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/TuesdayOctober-17th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5862\">Tuesday,October 17th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff6600;\">Special Cow&amp; Bull Sale - Saturday, October 28th @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Smith Farms : </b><b>3 </b>2 yr. old Blk Angus bulls <b>2</b> 4 yr. old Blk Angus bulls</li>\n<li><b>W.Nold Farms: </b><b>5 </b>20-month-old Blk Sim-Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Richardson Farms: </b><b>6 </b>18-month-old Horned Hereford bulls. Big stout set of bulls &amp; had all shots. Been semen &amp; trich tested</li>\n<li><b>Reed Farms: </b><b>4 </b>2 yr. old Purebred Blk Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Stemburger Farms : </b><b>1 </b>3 yr. old Horned Hereford bull. <b>1 </b>3 yr. oldÂ  LBWT Char bull. Can be used on hfrs.</li>\n<li><b>Baker Angus: </b><b>7 </b>2 yr. old Reg. Blk Angus bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Piercey Farms: </b><b>30 </b>Â Blk 4-7 yr. old cows,2nd &amp; 3rd period. <b>7</b> Red-Rwf 4-7 yr. old cow, 2nd &amp; 3rd period. Bred BlkÂ  &amp; Red Angus bulls. Gentle, easy-going set of cows. Been wormed/poured &amp; had all shots.</li>\n<li><b>S.Nold Farms: </b><b>5 </b>Blk Sim-Angus 2 yr. old, 1100lbs bred heifers,2nd period. Bred LBWT Angus bulls. Showed 80-140 days bred on Oct. 2nd. Heifers been pelvic measured prior to breeding.</li>\n<li><b>G. Anderson Farms: </b><b>12 </b>Bwf 2 yr. old, 1000lbs bred heifers, 2nd period. <b>35</b> Blk 2 yr. old, 1000lbs bred heifers, 2nd period. Bred Sygen Reg. Angus bulls. Start calving Feb. 1st for 55 days. All heifers are home-raised &amp; pelvic measured before breeding. Gentle, nice set of heifers.</li>\n<li><b>JDH Cattle: </b><b>7 </b>Blk Angus 4-5 yr. old cows w/ fall calves at side. <b>1</b> Blk Angus 5 yr. old cows w/ 300lbs calf at side,3N1. All cows are good quality &amp; had all shots.</li>\n<li><b>DeKam Farms: </b><b>50 </b>Blk-Red Angus 6-SS yr. old cows w/ 10 fall calves at side &amp; balance 2nd &amp; 3rd period. Calves sired by MayWay or Horned Hereford Bulls. Balance bred Baker Angus &amp; start calving Feb. Cows were purchased as first calf hfrs. Selling due to loss on grass lease.</li>\n<li><b>Henley Farms: </b><b>20 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side. Cows are open. Breed to bull of your choice.</li>\n<li><b>Ottervan Farms: </b><b>25 </b>Blk-Bwf 3-4 yr. old cows, 3rd-period Bred Balancer bulls. Nice set of cows &amp; had all shots.</li>\n<li><b>Bar-S Farms: </b><b>35 </b>Blk-Bwf 5-SS yr. old cows, 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Remen Farms: </b><b>20 </b>Blk 3-4 yr. old cows, 2nd period. <b>25</b> Blk 5-7 yr. old cows,2nd period. Bred Blk Angus or Polled Hereford bulls. Nice set of spring-calving cows.</li>\n<li><b>Hayne Farms: </b><b>22 </b>Blk-Bwf 3-6 yr. old cows, 2nd &amp; 3rd period. Bred Sim-Angus bulls.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-10-18 15:31:23','2023-10-18 15:31:23','',2209,'https://kingsvillelivestock.com/?p=5885',0,'revision','',0),(5886,2,'2023-10-18 16:30:44','2023-10-18 16:30:44','','October 28,2023 Cow Sale','','inherit','closed','closed','','october-282023-cow-sale','','','2023-10-18 16:30:44','2023-10-18 16:30:44','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-282023-Cow-Sale.pdf',0,'attachment','application/pdf',0),(5887,2,'2023-10-18 16:30:52','2023-10-18 16:30:52','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-282023-Cow-Sale.pdf\" rel=\"attachment wp-att-5886\">October 28,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://drive.google.com/drive/folders/1mI7RSsgiCfwwXrS8-0Ig6u1hdLcVoLMM?usp=share_link\">Baker Reg. papers</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-10-18 16:30:52','2023-10-18 16:30:52','',639,'https://kingsvillelivestock.com/?p=5887',0,'revision','',0),(5889,2,'2023-10-18 16:33:43','2023-10-18 16:33:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-282023-Cow-Sale.pdf\" rel=\"attachment wp-att-5886\">October 28, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://drive.google.com/drive/folders/1mI7RSsgiCfwwXrS8-0Ig6u1hdLcVoLMM?usp=share_link\">Baker Angus Reg. papers</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-10-18 16:33:43','2023-10-18 16:33:43','',1967,'https://kingsvillelivestock.com/?p=5889',0,'revision','',0),(5890,2,'2023-10-18 16:38:38','2023-10-18 16:38:38','','2023 spring calving catalog','','inherit','closed','closed','','2023-spring-calving-catalog','','','2023-10-18 16:38:38','2023-10-18 16:38:38','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf',0,'attachment','application/pdf',0),(5891,2,'2023-10-18 16:39:00','2023-10-18 16:39:00','','2023 sms spring calving flyer','','inherit','closed','closed','','2023-sms-spring-calving-flyer','','','2023-10-18 16:39:00','2023-10-18 16:39:00','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf',0,'attachment','application/pdf',0),(5892,2,'2023-10-18 16:39:15','2023-10-18 16:39:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-282023-Cow-Sale.pdf\" rel=\"attachment wp-att-5886\">October 28,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://drive.google.com/drive/folders/1mI7RSsgiCfwwXrS8-0Ig6u1hdLcVoLMM?usp=share_link\">Baker Reg. papers</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-10-18 16:39:15','2023-10-18 16:39:15','',639,'https://kingsvillelivestock.com/?p=5892',0,'revision','',0),(5893,2,'2023-10-18 16:41:05','2023-10-18 16:41:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 21st @ 9:30 am<br /></strong>Phil Kelley Estate Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-282023-Cow-Sale.pdf\" rel=\"attachment wp-att-5886\">October 28, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://drive.google.com/drive/folders/1mI7RSsgiCfwwXrS8-0Ig6u1hdLcVoLMM?usp=share_link\">Baker Angus Reg. papers</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-10-18 16:41:05','2023-10-18 16:41:05','',1967,'https://kingsvillelivestock.com/?p=5893',0,'revision','',0),(5894,2,'2023-10-23 15:24:06','2023-10-23 15:24:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-282023-Cow-Sale.pdf\" rel=\"attachment wp-att-5886\">October 28,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://drive.google.com/drive/folders/1mI7RSsgiCfwwXrS8-0Ig6u1hdLcVoLMM?usp=share_link\">Baker Reg. papers</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-10-23 15:24:06','2023-10-23 15:24:06','',639,'https://kingsvillelivestock.com/?p=5894',0,'revision','',0),(5895,2,'2023-10-23 15:24:53','2023-10-23 15:24:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-282023-Cow-Sale.pdf\" rel=\"attachment wp-att-5886\">October 28, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://drive.google.com/drive/folders/1mI7RSsgiCfwwXrS8-0Ig6u1hdLcVoLMM?usp=share_link\">Baker Angus Reg. papers</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-10-23 15:24:53','2023-10-23 15:24:53','',1967,'https://kingsvillelivestock.com/?p=5895',0,'revision','',0),(5897,2,'2023-10-23 15:40:07','2023-10-23 15:40:07','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.23\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-November-10th-1.pdf\" rel=\"attachment wp-att-5872\">Phil Kelley Estate Auction, Friday, November 10th-9 am-Harrisonville</a></p>\n<p><a href=\"https://photos.app.goo.gl/uMPya67okrekB3pU8\">Nov. 10th Phil Kelley Photos </a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-10-23 15:40:07','2023-10-23 15:40:07','',1450,'https://kingsvillelivestock.com/?p=5897',0,'revision','',0),(5898,2,'2023-10-23 15:44:38','2023-10-23 15:44:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/TuesdayOctober-17th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5862\">Tuesday,October 17th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff6600;\">Special Cow&amp; Bull Sale - Saturday, October 28th @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Smith Farms : </b><b>3 </b>2 yr. old Blk Angus bulls <b>2</b> 4 yr. old Blk Angus bulls</li>\n<li><b>W.Nold Farms: </b><b>5 </b>20-month-old Blk Sim-Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Richardson Farms: </b><b>6 </b>18-month-old Horned Hereford bulls. Big stout set of bulls &amp; had all shots. Been semen &amp; trich tested</li>\n<li><b>Reed Farms: </b><b>4 </b>2 yr. old Purebred Blk Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Stemburger Farms : </b><b>1 </b>3 yr. old Horned Hereford bull. <b>1 </b>3 yr. oldÂ  LBWT Char bull. Can be used on hfrs.</li>\n<li><b>Baker Angus: 4</b><b>Â </b>2 yr. old Reg. Blk Angus bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Piercey Farms: </b><b>30 </b>Â Blk 4-7 yr. old cows,2nd &amp; 3rd period. <b>7</b> Red-Rwf 4-7 yr. old cow, 2nd &amp; 3rd period. Bred BlkÂ  &amp; Red Angus bulls. Gentle, easy-going set of cows. Been wormed/poured &amp; had all shots.</li>\n<li><b>S.Nold Farms: </b><b>5 </b>Blk Sim-Angus 2 yr. old, 1100lbs bred heifers,2nd period. Bred LBWT Angus bulls. Showed 80-140 days bred on Oct. 2nd. Heifers been pelvic measured prior to breeding.</li>\n<li><b>G. Anderson Farms: </b><b>12 </b>Bwf 2 yr. old, 1000lbs bred heifers, 2nd period. <b>35</b> Blk 2 yr. old, 1000lbs bred heifers, 2nd period. Bred Sygen Reg. Angus bulls. Start calving Feb. 1st for 55 days. All heifers are home-raised &amp; pelvic measured before breeding. Gentle, nice set of heifers.</li>\n<li><b>JDH Cattle: </b><b>7 </b>Blk Angus 4-5 yr. old cows w/ fall calves at side. <b>1</b> Blk Angus 5 yr. old cows w/ 300lbs calf at side,3N1. All cows are good quality &amp; had all shots.</li>\n<li><b>DeKam Farms: </b><b>50 </b>Blk-Red Angus 6-SS yr. old cows w/ 10 fall calves at side &amp; balance 2nd &amp; 3rd period. Calves sired by MayWay or Horned Hereford Bulls. Balance bred Baker Angus &amp; start calving Feb. Cows were purchased as first calf hfrs. Selling due to loss on grass lease.</li>\n<li><b>Henley Farms: </b><b>20 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side. Cows are open. Breed to bull of your choice.</li>\n<li><b>Ottervan Farms: </b><b>25 </b>Blk-Bwf 3-4 yr. old cows, 3rd-period Bred Balancer bulls. Nice set of cows &amp; had all shots.</li>\n<li><b>Bar-S Farms: </b><b>35 </b>Blk-Bwf 5-SS yr. old cows, 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Remen Farms: </b><b>20 </b>Blk 3-4 yr. old cows, 2nd period. <b>25</b> Blk 5-7 yr. old cows,2nd period. Bred Blk Angus or Polled Hereford bulls. Nice set of spring-calving cows.</li>\n<li><b>Hayne Farms: </b><b>22 </b>Blk-Bwf 3-6 yr. old cows, 2nd &amp; 3rd period. Bred Sim-Angus bulls.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-10-23 15:44:38','2023-10-23 15:44:38','',2209,'https://kingsvillelivestock.com/?p=5898',0,'revision','',0),(5899,2,'2023-10-23 15:45:11','2023-10-23 15:45:11','','October 28,2023 Cow Sale','','inherit','closed','closed','','october-282023-cow-sale-2','','','2023-10-23 15:45:11','2023-10-23 15:45:11','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-282023-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(5900,2,'2023-10-23 15:45:22','2023-10-23 15:45:22','','October 28,2023 Cow Sale','','inherit','closed','closed','','october-282023-cow-sale-3','','','2023-10-23 15:45:22','2023-10-23 15:45:22','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-282023-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(5901,2,'2023-10-23 15:45:28','2023-10-23 15:45:28','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-282023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5900\">October 28,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://drive.google.com/drive/folders/1mI7RSsgiCfwwXrS8-0Ig6u1hdLcVoLMM?usp=share_link\">Baker Reg. papers</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-10-23 15:45:28','2023-10-23 15:45:28','',639,'https://kingsvillelivestock.com/?p=5901',0,'revision','',0),(5902,2,'2023-10-23 15:46:35','2023-10-23 15:46:35','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-282023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5900\">October 28,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://drive.google.com/drive/folders/1mI7RSsgiCfwwXrS8-0Ig6u1hdLcVoLMM?usp=share_link\">Baker Angus Reg. papers</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-10-23 15:46:35','2023-10-23 15:46:35','',1967,'https://kingsvillelivestock.com/?p=5902',0,'revision','',0),(5903,2,'2023-10-23 17:42:57','2023-10-23 17:42:57','','Tuesday,October 24th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayoctober-24th-feeder-cattle-consignments','','','2023-10-23 17:42:57','2023-10-23 17:42:57','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/TuesdayOctober-24th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5904,2,'2023-10-23 17:43:04','2023-10-23 17:43:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/TuesdayOctober-24th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5903\">Tuesday,October 24th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff6600;\">Special Cow&amp; Bull Sale - Saturday, October 28th @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Smith Farms : </b><b>3 </b>2 yr. old Blk Angus bulls <b>2</b> 4 yr. old Blk Angus bulls</li>\n<li><b>W.Nold Farms: </b><b>5 </b>20-month-old Blk Sim-Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Richardson Farms: </b><b>6 </b>18-month-old Horned Hereford bulls. Big stout set of bulls &amp; had all shots. Been semen &amp; trich tested</li>\n<li><b>Reed Farms: </b><b>4 </b>2 yr. old Purebred Blk Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Stemburger Farms : </b><b>1 </b>3 yr. old Horned Hereford bull. <b>1 </b>3 yr. oldÂ  LBWT Char bull. Can be used on hfrs.</li>\n<li><b>Baker Angus: 4</b><b>Â </b>2 yr. old Reg. Blk Angus bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Piercey Farms: </b><b>30 </b>Â Blk 4-7 yr. old cows,2nd &amp; 3rd period. <b>7</b> Red-Rwf 4-7 yr. old cow, 2nd &amp; 3rd period. Bred BlkÂ  &amp; Red Angus bulls. Gentle, easy-going set of cows. Been wormed/poured &amp; had all shots.</li>\n<li><b>S.Nold Farms: </b><b>5 </b>Blk Sim-Angus 2 yr. old, 1100lbs bred heifers,2nd period. Bred LBWT Angus bulls. Showed 80-140 days bred on Oct. 2nd. Heifers been pelvic measured prior to breeding.</li>\n<li><b>G. Anderson Farms: </b><b>12 </b>Bwf 2 yr. old, 1000lbs bred heifers, 2nd period. <b>35</b> Blk 2 yr. old, 1000lbs bred heifers, 2nd period. Bred Sygen Reg. Angus bulls. Start calving Feb. 1st for 55 days. All heifers are home-raised &amp; pelvic measured before breeding. Gentle, nice set of heifers.</li>\n<li><b>JDH Cattle: </b><b>7 </b>Blk Angus 4-5 yr. old cows w/ fall calves at side. <b>1</b> Blk Angus 5 yr. old cows w/ 300lbs calf at side,3N1. All cows are good quality &amp; had all shots.</li>\n<li><b>DeKam Farms: </b><b>50 </b>Blk-Red Angus 6-SS yr. old cows w/ 10 fall calves at side &amp; balance 2nd &amp; 3rd period. Calves sired by MayWay or Horned Hereford Bulls. Balance bred Baker Angus &amp; start calving Feb. Cows were purchased as first calf hfrs. Selling due to loss on grass lease.</li>\n<li><b>Henley Farms: </b><b>20 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side. Cows are open. Breed to bull of your choice.</li>\n<li><b>Ottervan Farms: </b><b>25 </b>Blk-Bwf 3-4 yr. old cows, 3rd-period Bred Balancer bulls. Nice set of cows &amp; had all shots.</li>\n<li><b>Bar-S Farms: </b><b>35 </b>Blk-Bwf 5-SS yr. old cows, 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Remen Farms: </b><b>20 </b>Blk 3-4 yr. old cows, 2nd period. <b>25</b> Blk 5-7 yr. old cows,2nd period. Bred Blk Angus or Polled Hereford bulls. Nice set of spring-calving cows.</li>\n<li><b>Hayne Farms: </b><b>22 </b>Blk-Bwf 3-6 yr. old cows, 2nd &amp; 3rd period. Bred Sim-Angus bulls.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-10-23 17:43:04','2023-10-23 17:43:04','',2209,'https://kingsvillelivestock.com/?p=5904',0,'revision','',0),(5905,2,'2023-10-23 22:37:00','2023-10-23 22:37:00','','October 28,2023 Cow Sale','','inherit','closed','closed','','october-282023-cow-sale-4','','','2023-10-23 22:37:00','2023-10-23 22:37:00','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-282023-Cow-Sale-3.pdf',0,'attachment','application/pdf',0),(5906,2,'2023-10-23 22:37:06','2023-10-23 22:37:06','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-282023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5905\">October 28,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://drive.google.com/drive/folders/1mI7RSsgiCfwwXrS8-0Ig6u1hdLcVoLMM?usp=share_link\">Bull Reg papers &amp; pictures</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-10-23 22:37:06','2023-10-23 22:37:06','',639,'https://kingsvillelivestock.com/?p=5906',0,'revision','',0),(5907,2,'2023-10-23 22:38:49','2023-10-23 22:38:49','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 24th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-282023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5905\">October 28,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://drive.google.com/drive/folders/1mI7RSsgiCfwwXrS8-0Ig6u1hdLcVoLMM?usp=share_link\">Reg. papers &amp; pictures</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-10-23 22:38:49','2023-10-23 22:38:49','',1967,'https://kingsvillelivestock.com/?p=5907',0,'revision','',0),(5908,2,'2023-10-23 22:39:59','2023-10-23 22:39:59','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/TuesdayOctober-24th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5903\">Tuesday,October 24th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff6600;\">Special Cow&amp; Bull Sale - Saturday, October 28th @ 11am</span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.22.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell at 11:00 am</i></b></p>\n<ul>\n<li><b>Smith Farms : </b><b>3 </b>2 yr. old Blk Angus bulls <b>2</b> 4 yr. old Blk Angus bulls</li>\n<li><b>W.Nold Farms: </b><b>5 </b>20-month-old Blk Sim-Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Richardson Farms: </b><b>6 </b>18-month-old Horned Hereford bulls. Big stout set of bulls &amp; had all shots. Been semen &amp; trich tested</li>\n<li><b>Reed Farms: </b><b>4 </b>2 yr. old Purebred Blk Angus bulls. Been semen &amp; trich tested</li>\n<li><b>Stemburger Farms : </b><b>1 </b>3 yr. old Horned Hereford bull. <b>1 </b>3 yr. oldÂ  LBWT Char bull. Can be used on hfrs.</li>\n<li><b>Baker Angus: 4</b><b>Â </b>2 yr. old Reg. Blk Angus bulls.</li>\n<li><b>Luzaich Farms: </b><b>5 </b>18-month-old Reg. Horned Hereford bulls.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Piercey Farms: </b><b>30 </b>Â Blk 4-7 yr. old cows,2nd &amp; 3rd period. <b>7</b> Red-Rwf 4-7 yr. old cow, 2nd &amp; 3rd period. Bred BlkÂ  &amp; Red Angus bulls. Gentle, easy-going set of cows. Been wormed/poured &amp; had all shots.</li>\n<li><b>S.Nold Farms: </b><b>5 </b>Blk Sim-Angus 2 yr. old, 1100lbs bred heifers,2nd period. Bred LBWT Angus bulls. Showed 80-140 days bred on Oct. 2nd. Heifers been pelvic measured prior to breeding.</li>\n<li><b>G. Anderson Farms: </b><b>12 </b>Bwf 2 yr. old, 1000lbs bred heifers, 2nd period. <b>35</b> Blk 2 yr. old, 1000lbs bred heifers, 2nd period. Bred Sygen Reg. Angus bulls. Start calving Feb. 1st for 55 days. All heifers are home-raised &amp; pelvic measured before breeding. Gentle, nice set of heifers.</li>\n<li><b>JDH Cattle: </b><b>7 </b>Blk Angus 4-5 yr. old cows w/ fall calves at side. <b>1</b> Blk Angus 5 yr. old cows w/ 300lbs calf at side,3N1. All cows are good quality &amp; had all shots.</li>\n<li><b>DeKam Farms: </b><b>50 </b>Blk-Red Angus 6-SS yr. old cows w/ 10 fall calves at side &amp; balance 2nd &amp; 3rd period. Calves sired by MayWay or Horned Hereford Bulls. Balance bred Baker Angus &amp; start calving Feb. Cows were purchased as first calf hfrs. Selling due to loss on grass lease.</li>\n<li><b>Henley Farms: </b><b>20 </b>Blk-Bwf 3-6 yr. old cows w/ 200lbs calves at side. Cows are open. Breed to bull of your choice.</li>\n<li><b>Ottervan Farms: </b><b>25 </b>Blk-Bwf 3-4 yr. old cows, 3rd-period Bred Balancer bulls. Nice set of cows &amp; had all shots.</li>\n<li><b>Bar-S Farms: </b><b>35 </b>Blk-Bwf 5-SS yr. old cows, 3rd period. Bred Blk Angus bulls.</li>\n<li><b>Remen Farms: </b><b>20 </b>Blk 3-4 yr. old cows, 2nd period. <b>25</b> Blk 5-7 yr. old cows,2nd period. Bred Blk Angus or Polled Hereford bulls. Nice set of spring-calving cows.</li>\n<li><b>Hayne Farms: </b><b>22 </b>Blk-Bwf 3-6 yr. old cows, 2nd &amp; 3rd period. Bred Sim-Angus bulls.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-10-23 22:39:59','2023-10-23 22:39:59','',2209,'https://kingsvillelivestock.com/?p=5908',0,'revision','',0),(5910,2,'2023-10-25 15:38:54','2023-10-25 15:38:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-282023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5905\">October 28, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://drive.google.com/drive/folders/1mI7RSsgiCfwwXrS8-0Ig6u1hdLcVoLMM?usp=share_link\">Bull Reg papers &amp; pictures</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-10-25 15:38:54','2023-10-25 15:38:54','',639,'https://kingsvillelivestock.com/?p=5910',0,'revision','',0),(5911,2,'2023-10-25 15:39:32','2023-10-25 15:39:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-282023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5905\">October 28,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://drive.google.com/drive/folders/1mI7RSsgiCfwwXrS8-0Ig6u1hdLcVoLMM?usp=share_link\">Reg. papers &amp; pictures</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-10-25 15:39:32','2023-10-25 15:39:32','',1967,'https://kingsvillelivestock.com/?p=5911',0,'revision','',0),(5912,2,'2023-10-25 15:46:35','2023-10-25 15:46:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 24, 2023, </strong>2189 hd; Last week, 2018 hd; 1856 a year ago. Feeder cattle sold $5-$10 lower except 550-625lbs steers sold steady.Â  Fleshier cows &amp; bulls sold $5-$6 lower &amp; all others sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$322.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$321.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$303.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$214.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$266.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$271.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$256.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$188.00-$194.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$162.00-$192.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$104.00 - $116.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $103.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $129.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">778lbs @$244.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">680lbs @$250.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">727bs @$242.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 24, 2023 - Market Report','','publish','closed','open','','october-24-2023-market-report','','','2023-10-25 15:46:38','2023-10-25 15:46:38','',0,'https://kingsvillelivestock.com/?p=5912',0,'post','',0),(5914,2,'2023-10-25 15:46:35','2023-10-25 15:46:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 24, 2023, </strong>2189 hd; Last week, 2018 hd; 1856 a year ago. Feeder cattle sold $5-$10 lower except 550-625lbs steers sold steady.Â  Fleshier cows &amp; bulls sold $5-$6 lower &amp; all others sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$322.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$321.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$303.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$214.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$266.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$271.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$256.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$188.00-$194.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$162.00-$192.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$104.00 - $116.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $103.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $129.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">778lbs @$244.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">680lbs @$250.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">727bs @$242.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 24, 2023 - Market Report','','inherit','closed','closed','','5912-revision-v1','','','2023-10-25 15:46:35','2023-10-25 15:46:35','',5912,'https://kingsvillelivestock.com/?p=5914',0,'revision','',0),(5915,2,'2023-10-25 15:46:35','2023-10-25 15:46:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 24, 2023, </strong>2189 hd; Last week, 2018 hd; 1856 a year ago. Feeder cattle sold $5-$10 lower except 550-625lbs steers sold steady.Â  Fleshier cows &amp; bulls sold $5-$6 lower &amp; all others sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$322.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$321.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$303.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$214.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$266.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$271.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$256.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$188.00-$194.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$162.00-$192.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$104.00 - $116.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $103.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $129.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">778lbs @$244.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">680lbs @$250.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">727bs @$242.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 17, 2023 - Market Report','','inherit','closed','closed','','5912-revision-v1','','','2023-10-25 15:46:35','2023-10-25 15:46:35','',5912,'https://kingsvillelivestock.com/?p=5915',0,'revision','',0),(5916,2,'2023-10-25 15:46:38','2023-10-25 15:46:38','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 24, 2023, </strong>2189 hd; Last week, 2018 hd; 1856 a year ago. Feeder cattle sold $5-$10 lower except 550-625lbs steers sold steady.Â  Fleshier cows &amp; bulls sold $5-$6 lower &amp; all others sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$322.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$321.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$303.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$244.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$214.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$280.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$266.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$271.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$256.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$242.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$188.00-$194.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$162.00-$192.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$104.00 - $116.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $103.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $129.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Steers</td>\n<td style=\"width: 146.531px; height: 23px;\">778lbs @$244.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">680lbs @$250.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">727bs @$242.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 24, 2023 - Market Report','','inherit','closed','closed','','5912-revision-v1','','','2023-10-25 15:46:38','2023-10-25 15:46:38','',5912,'https://kingsvillelivestock.com/?p=5916',0,'revision','',0),(5917,2,'2023-10-27 15:32:18','2023-10-27 15:32:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-282023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5905\">October 28, 2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://drive.google.com/drive/folders/1mI7RSsgiCfwwXrS8-0Ig6u1hdLcVoLMM?usp=share_link\">Bull Reg papers &amp; pictures</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-10-27 15:32:18','2023-10-27 15:32:18','',639,'https://kingsvillelivestock.com/?p=5917',0,'revision','',0),(5918,2,'2023-10-27 15:32:50','2023-10-27 15:32:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 28th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/October-282023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5905\">October 28,2023 Cow Sale</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://drive.google.com/drive/folders/1mI7RSsgiCfwwXrS8-0Ig6u1hdLcVoLMM?usp=share_link\">Reg. papers &amp; pictures</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-10-27 15:32:50','2023-10-27 15:32:50','',1967,'https://kingsvillelivestock.com/?p=5918',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (5919,2,'2023-10-30 15:57:38','2023-10-30 15:57:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-10-30 15:57:38','2023-10-30 15:57:38','',639,'https://kingsvillelivestock.com/?p=5919',0,'revision','',0),(5920,2,'2023-10-30 15:58:04','2023-10-30 15:58:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>OCTOBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Oct. 31st @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-10-30 15:58:04','2023-10-30 15:58:04','',1967,'https://kingsvillelivestock.com/?p=5920',0,'revision','',0),(5921,2,'2023-10-30 16:02:22','2023-10-30 16:02:22','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/TuesdayOctober-24th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5903\">Tuesday,October 24th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-10-30 16:02:22','2023-10-30 16:02:22','',2209,'https://kingsvillelivestock.com/?p=5921',0,'revision','',0),(5922,2,'2023-10-30 17:24:38','2023-10-30 17:24:38','','Tuesday,October 31st Feeder Cattle Consignments','','inherit','closed','closed','','tuesdayoctober-31st-feeder-cattle-consignments','','','2023-10-30 17:24:38','2023-10-30 17:24:38','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/10/TuesdayOctober-31st-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5923,2,'2023-10-30 17:24:45','2023-10-30 17:24:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/TuesdayOctober-31st-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5922\">Tuesday,October 31st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-10-30 17:24:45','2023-10-30 17:24:45','',2209,'https://kingsvillelivestock.com/?p=5923',0,'revision','',0),(5924,2,'2023-11-01 14:10:57','2023-11-01 14:10:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-11-01 14:10:57','2023-11-01 14:10:57','',639,'https://kingsvillelivestock.com/?p=5924',0,'revision','',0),(5925,2,'2023-11-01 14:11:23','2023-11-01 14:11:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-11-01 14:11:23','2023-11-01 14:11:23','',1967,'https://kingsvillelivestock.com/?p=5925',0,'revision','',0),(5926,2,'2023-11-01 14:18:34','2023-11-01 14:18:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 31, 2023, </strong>1056 hd; Last week, 2189 hd; 2738 a year ago. Compared to last week, steer calves under 600lbs sold w/ a lower undertone &amp; heifer calves sold mostly steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$277.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$197.50-$235.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$234.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$215.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$256.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$255.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$196.00-$225.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$215.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$103.00 - $116.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $102.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $133.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">767lbs @$240.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">824lbs @$225.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">942lbs @$215.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 31, 2023 - Market Report','','publish','closed','open','','october-31-2023-market-report','','','2023-11-01 14:35:05','2023-11-01 14:35:05','',0,'https://kingsvillelivestock.com/?p=5926',0,'post','',0),(5928,2,'2023-11-01 14:18:34','2023-11-01 14:18:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 31, 2023, </strong>1056 hd; Last week, 2189 hd; 2738 a year ago. Feeder cattle sold steady. Spring calves sold $2-$5 lower w/ harder weather coming in over the weekend. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$277.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$197.50-$235.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$234.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$215.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$256.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$255.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$196.00-$225.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$215.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$103.00 - $116.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $102.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $133.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">767lbs @$240.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">824lbs @$225.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">942lbs @$215.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 31, 2023 - Market Report','','inherit','closed','closed','','5926-revision-v1','','','2023-11-01 14:18:34','2023-11-01 14:18:34','',5926,'https://kingsvillelivestock.com/?p=5928',0,'revision','',0),(5929,2,'2023-11-01 14:18:34','2023-11-01 14:18:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 31, 2023, </strong>1056 hd; Last week, 2189 hd; 2738 a year ago. Feeder cattle sold steady. Spring calves sold $2-$5 lower w/ harder weather coming in over the weekend. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$277.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$197.50-$235.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$234.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$215.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$256.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$255.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$196.00-$225.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$215.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$103.00 - $116.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $102.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $133.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">767lbs @$240.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">824lbs @$225.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">942lbs @$215.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 24, 2023 - Market Report','','inherit','closed','closed','','5926-revision-v1','','','2023-11-01 14:18:34','2023-11-01 14:18:34','',5926,'https://kingsvillelivestock.com/?p=5929',0,'revision','',0),(5930,2,'2023-11-01 14:18:37','2023-11-01 14:18:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 31, 2023, </strong>1056 hd; Last week, 2189 hd; 2738 a year ago. Feeder cattle sold steady. Spring calves sold $2-$5 lower w/ harder weather coming in over the weekend. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$277.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$197.50-$235.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$234.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$215.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$256.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$255.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$196.00-$225.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$215.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$103.00 - $116.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $102.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $133.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">767lbs @$240.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">824lbs @$225.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">942lbs @$215.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 31, 2023 - Market Report','','inherit','closed','closed','','5926-revision-v1','','','2023-11-01 14:18:37','2023-11-01 14:18:37','',5926,'https://kingsvillelivestock.com/?p=5930',0,'revision','',0),(5931,2,'2023-11-01 14:35:05','2023-11-01 14:35:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>October 31, 2023, </strong>1056 hd; Last week, 2189 hd; 2738 a year ago. Compared to last week, steer calves under 600lbs sold w/ a lower undertone &amp; heifer calves sold mostly steady. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$245.00-$297.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$277.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$264.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$197.50-$235.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$234.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$185.00-$215.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23\" global_colors_info=\"{}\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$251.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$256.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$255.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$240.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$196.00-$225.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$215.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$103.00 - $116.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $102.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $133.50</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 381px; width: 300px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">767lbs @$240.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">824lbs @$225.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 146.531px; height: 23px;\">942lbs @$215.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 137.469px; height: 26px;\">Â </td>\n<td style=\"width: 146.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 137.469px; height: 23px;\">Â </td>\n<td style=\"width: 146.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 137.469px; height: 10px;\">Â </td>\n<td style=\"width: 146.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 31, 2023 - Market Report','','inherit','closed','closed','','5926-revision-v1','','','2023-11-01 14:35:05','2023-11-01 14:35:05','',5926,'https://kingsvillelivestock.com/?p=5931',0,'revision','',0),(5933,2,'2023-11-06 17:00:12','2023-11-06 17:00:12','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/TuesdayOctober-31st-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5922\">Tuesday,October 31st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.23\" _module_preset=\"default\" column_structure=\"2_5,3_5\"][et_pb_column _builder_version=\"4.23\" _module_preset=\"default\" type=\"2_5\"][et_pb_text _builder_version=\"4.23\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #993300;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</strong></span></h1>\n<h1><span style=\"color: #993300;\"><strong> Saturday, November 18th @ 11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.23\" _module_preset=\"default\" type=\"3_5\"][et_pb_text _builder_version=\"4.23\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Selling 180 Hd of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Culpepper Cattle Co. : </b><b>3 </b>18-month-old Sim-Angus bulls. Been semen &amp; trich tested.Â  Sired by Lucas genetics</li>\n<li><b>Brockhaus Farms : </b><b>1</b> 2 yr. old Purebred Lim-Flex bull. Angus bulls.</li>\n<li><b>G-M Farms Complete Dispersal:</b> <b>1 </b>3.5 yr. old Reg. Blk Angus Bull.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Brockhaus Farms: </b><b>9 </b>Blk-Bwf 6-SS yr. old cows w/ Oct<b><i>. </i></b>born calves at side. 6 Blk 6-SS yr. old cows, 1st &amp; 2nd period. Bred Lim Flex bull.</li>\n<li><b>G-M Farms Complete Dispersal: </b><b>3 </b>Blk-Bwf 2 yr old heifers w/ fall calves at side. <b>1 </b>Blk &amp; White X 2 yr. old heifer w/ fall calf at side. <b>10</b> Blk 5-SS yr. old cows w/ fall calves at side. <b>8</b> Blk 3-6 yr. old cows,2nd period. <b>8</b> Blk-Char 7-SS yr. old cows, 2nd period. All cows are gentle &amp; good quality. Most cows are home-raised &amp; had all shots. cows w/ fall calves at side.</li>\n<li><b>Carter Farms: </b><b>5 </b>Reg. Gelv. Red Angus 1200lbs, 2 yr. old bred heifers. Bred Red Balancer bull. Nice get of gentle heifers.</li>\n<li><b>Stevens Farms: </b><b>17 </b>Blk-Bwf 3-6 yr. cows w/ 200lbs calves at side.Â </li>\n<li><b>Simon Farms: </b><b>25 </b>Blk-Bwf 3-6 yr old cows,3rd period. Bred Blk Angus bulls.</li>\n<li><b>Schultz Farm: </b><b>40 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. <b>33</b> Blk-Bwf 5-7 yr. old cows,2nd period. All cows bred Blk Gelv. or Sim-Angus bulls. Nice set of spring calving cows.</li>\n<li><b>Conrow Farms: </b><b>22 </b>Blk 2 yr. old heifers w/ 200lbs calves at side. <b>5</b> Bwf 2yr. old heifers w/ 200lbs calves at side. <b>3 </b>Blk-Sim Angus 2 yr. old heifers w/ 300lbs calves at side. All pairs ear tagged to match, gentle &amp; sell open. Breed to bull of your choice.Â </li>\n<li><b>J-W Farms: </b><b>17 </b>Purebred Angus 5-7 yr old cows w/ 250lbs calves at side. Calves sired by Reg. Angus bulls. Very nice set of pairs that are easy to handle. Cows are giving a lot of milk.</li>\n<li><b>Thurman Farms: </b><b>37 </b>Blk-BwfÂ  5-SS yr old cows, 2nd period. Bred Blk Angus or Blk Sim-Angus Bulls. Nice set of cows that have all been home-raised &amp;Â  raised a big set of calves. Keeping hfrs back &amp; selling cows to make room.</li>\n<li><b>Mershon Farms: </b><b>18 </b>Blk-Bwf 2 yr old heifers w/ 200lbs calves at side. <b>2 </b>Red 2 yr. old heifers w/ 200lbs calves at side. All pairs are ear-tagged to match &amp; sell open. Nice set of fall pairs.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-11-06 17:00:12','2023-11-06 17:00:12','',2209,'https://kingsvillelivestock.com/?p=5933',0,'revision','',0),(5934,2,'2023-11-06 18:01:52','2023-11-06 18:01:52','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.23\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<p>&nbsp;</p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/Kelley-Estate-November-10th-1.pdf\" rel=\"attachment wp-att-5872\">Phil Kelley Estate Auction, Friday, November 10th-9 am-Harrisonville</a></p>\n<p><a href=\"https://photos.app.goo.gl/uMPya67okrekB3pU8\">Nov. 10th Phil Kelley Photos </a></p>\n<p><a href=\"https://www.equipmentfacts.com/listings/auctions/online/event/228180999/list\">Online bidding for Kelley auction-Nov. 10th</a></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-11-06 18:01:52','2023-11-06 18:01:52','',1450,'https://kingsvillelivestock.com/?p=5934',0,'revision','',0),(5935,2,'2023-11-06 18:56:56','2023-11-06 18:56:56','','Tuesday,November 7th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaynovember-7th-feeder-cattle-consignments','','','2023-11-06 18:56:56','2023-11-06 18:56:56','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/11/TuesdayNovember-7th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5936,2,'2023-11-06 18:57:04','2023-11-06 18:57:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/TuesdayNovember-7th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5935\">Tuesday,November 7th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993300;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</strong></span></h1>\n<h1><span style=\"color: #993300;\"><strong> Saturday, November 18th @ 11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Selling 180 Hd of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Culpepper Cattle Co. : </b><b>3 </b>18-month-old Sim-Angus bulls. Been semen &amp; trich tested.Â  Sired by Lucas genetics</li>\n<li><b>Brockhaus Farms : </b><b>1</b> 2 yr. old Purebred Lim-Flex bull. Angus bulls.</li>\n<li><b>G-M Farms Complete Dispersal:</b> <b>1 </b>3.5 yr. old Reg. Blk Angus Bull.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Brockhaus Farms: </b><b>9 </b>Blk-Bwf 6-SS yr. old cows w/ Oct<b><i>. </i></b>born calves at side. 6 Blk 6-SS yr. old cows, 1st &amp; 2nd period. Bred Lim Flex bull.</li>\n<li><b>G-M Farms Complete Dispersal: </b><b>3 </b>Blk-Bwf 2 yr old heifers w/ fall calves at side. <b>1 </b>Blk &amp; White X 2 yr. old heifer w/ fall calf at side. <b>10</b> Blk 5-SS yr. old cows w/ fall calves at side. <b>8</b> Blk 3-6 yr. old cows,2nd period. <b>8</b> Blk-Char 7-SS yr. old cows, 2nd period. All cows are gentle &amp; good quality. Most cows are home-raised &amp; had all shots. cows w/ fall calves at side.</li>\n<li><b>Carter Farms: </b><b>5 </b>Reg. Gelv. Red Angus 1200lbs, 2 yr. old bred heifers. Bred Red Balancer bull. Nice get of gentle heifers.</li>\n<li><b>Stevens Farms: </b><b>17 </b>Blk-Bwf 3-6 yr. cows w/ 200lbs calves at side.Â </li>\n<li><b>Simon Farms: </b><b>25 </b>Blk-Bwf 3-6 yr old cows,3rd period. Bred Blk Angus bulls.</li>\n<li><b>Schultz Farm: </b><b>40 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. <b>33</b> Blk-Bwf 5-7 yr. old cows,2nd period. All cows bred Blk Gelv. or Sim-Angus bulls. Nice set of spring calving cows.</li>\n<li><b>Conrow Farms: </b><b>22 </b>Blk 2 yr. old heifers w/ 200lbs calves at side. <b>5</b> Bwf 2yr. old heifers w/ 200lbs calves at side. <b>3 </b>Blk-Sim Angus 2 yr. old heifers w/ 300lbs calves at side. All pairs ear tagged to match, gentle &amp; sell open. Breed to bull of your choice.Â </li>\n<li><b>J-W Farms: </b><b>17 </b>Purebred Angus 5-7 yr old cows w/ 250lbs calves at side. Calves sired by Reg. Angus bulls. Very nice set of pairs that are easy to handle. Cows are giving a lot of milk.</li>\n<li><b>Thurman Farms: </b><b>37 </b>Blk-BwfÂ  5-SS yr old cows, 2nd period. Bred Blk Angus or Blk Sim-Angus Bulls. Nice set of cows that have all been home-raised &amp;Â  raised a big set of calves. Keeping hfrs back &amp; selling cows to make room.</li>\n<li><b>Mershon Farms: </b><b>18 </b>Blk-Bwf 2 yr old heifers w/ 200lbs calves at side. <b>2 </b>Red 2 yr. old heifers w/ 200lbs calves at side. All pairs are ear-tagged to match &amp; sell open. Nice set of fall pairs.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-11-06 18:57:04','2023-11-06 18:57:04','',2209,'https://kingsvillelivestock.com/?p=5936',0,'revision','',0),(5937,2,'2023-11-06 20:24:40','2023-11-06 20:24:40','','2023 spring calving catalog (1)','','inherit','closed','closed','','2023-spring-calving-catalog-1','','','2023-11-06 20:24:40','2023-11-06 20:24:40','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/11/2023-spring-calving-catalog-1.pdf',0,'attachment','application/pdf',0),(5938,2,'2023-11-06 20:25:37','2023-11-06 20:25:37','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/2023-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-5937\">2023 SMS spring calving catalog</a></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-11-06 20:25:37','2023-11-06 20:25:37','',639,'https://kingsvillelivestock.com/?p=5938',0,'revision','',0),(5939,2,'2023-11-06 20:43:59','2023-11-06 20:43:59','','November 18, 2023 Cow Sale','','inherit','closed','closed','','november-18-2023-cow-sale','','','2023-11-06 20:43:59','2023-11-06 20:43:59','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale.pdf',0,'attachment','application/pdf',0),(5940,2,'2023-11-06 20:44:07','2023-11-06 20:44:07','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5939\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/2023-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-5937\">2023 SMS spring calving catalog</a></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-11-06 20:44:07','2023-11-06 20:44:07','',639,'https://kingsvillelivestock.com/?p=5940',0,'revision','',0),(5941,2,'2023-11-06 20:46:46','2023-11-06 20:46:46','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Nov. 7th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5939\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-11-06 20:46:46','2023-11-06 20:46:46','',1967,'https://kingsvillelivestock.com/?p=5941',0,'revision','',0),(5942,2,'2023-11-08 05:42:43','2023-11-08 05:42:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 amÂ  <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5939\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/2023-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-5937\">2023 SMS spring calving catalog</a></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-11-08 05:42:43','2023-11-08 05:42:43','',639,'https://kingsvillelivestock.com/?p=5942',0,'revision','',0),(5943,2,'2023-11-08 05:43:09','2023-11-08 05:43:09','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale.pdf\" rel=\"attachment wp-att-5939\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-11-08 05:43:09','2023-11-08 05:43:09','',1967,'https://kingsvillelivestock.com/?p=5943',0,'revision','',0),(5944,2,'2023-11-08 17:19:15','2023-11-08 17:19:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/TuesdayNovember-7th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5935\">Tuesday,November 7th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993300;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</strong></span></h1>\n<h1><span style=\"color: #993300;\"><strong> Saturday, November 18th @ 11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Selling 180 Hd of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Culpepper Cattle Co. : </b><b>3 </b>18-month-old Sim-Angus bulls. Been semen &amp; trich tested.Â  Sired by Lucas genetics</li>\n<li><b>Brockhaus Farms : </b><b>1</b> 2 yr. old Purebred Lim-Flex bull. Angus bulls.</li>\n<li><b>G-M Farms Complete Dispersal:</b> <b>1 </b>3.5 yr. old Reg. Blk Angus Bull.</li>\n<li><b>Bradley Cattle Co.:</b> <b>2 </b>18 month old horned Hereford bulls. 2 18 month old Char bulls. Been semen &amp; trich tested, have high WW &amp; YW. Nice, gentle set of bulls that will add lbs. to your calves</li>\n<li><b>Mergen Farms:</b> <b>1 </b>4 yr. old polled Hereford bull</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Brockhaus Farms: </b><b>9 </b>Blk-Bwf 6-SS yr. old cows w/ Oct<b><i>. </i></b>born calves at side. 6 Blk 6-SS yr. old cows, 1st &amp; 2nd period. Bred Lim Flex bull.</li>\n<li><b>G-M Farms Complete Dispersal: </b><b>3 </b>Blk-Bwf 2 yr old heifers w/ fall calves at side. <b>1 </b>Blk &amp; White X 2 yr. old heifer w/ fall calf at side. <b>10</b> Blk 5-SS yr. old cows w/ fall calves at side. <b>8</b> Blk 3-6 yr. old cows,2nd period. <b>8</b> Blk-Char 7-SS yr. old cows, 2nd period. All cows are gentle &amp; good quality. Most cows are home-raised &amp; had all shots. cows w/ fall calves at side.</li>\n<li><b>Carter Farms: </b><b>5 </b>Reg. Gelv. Red Angus 1200lbs, 2 yr. old bred heifers. Bred Red Balancer bull. Nice get of gentle heifers.</li>\n<li><b>Stevens Farms: </b><b>17 </b>Blk-Bwf 3-6 yr. cows w/ 200lbs calves at side.</li>\n<li><b>Simon Farms: </b><b>25 </b>Blk-Bwf 3-6 yr old cows,3rd period. Bred Blk Angus bulls.</li>\n<li><b>Schultz Farm: </b><b>40 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. <b>33</b> Blk-Bwf 5-7 yr. old cows,2nd period. All cows bred Blk Gelv. or Sim-Angus bulls. Nice set of spring calving cows.</li>\n<li><b>Conrow Farms: </b><b>22 </b>Blk 2 yr. old heifers w/ 200lbs calves at side. <b>5</b> Bwf 2yr. old heifers w/ 200lbs calves at side. <b>3 </b>Blk-Sim Angus 2 yr. old heifers w/ 300lbs calves at side. All pairs ear tagged to match, gentle &amp; sell open. Breed to bull of your choice.</li>\n<li><b>J-W Farms: </b><b>17 </b>Purebred Angus 5-7 yr old cows w/ 250lbs calves at side. Calves sired by Reg. Angus bulls. Very nice set of pairs that are easy to handle. Cows are giving a lot of milk.</li>\n<li><b>Thurman Farms: </b><b>37 </b>Blk-BwfÂ  5-SS yr old cows, 2nd period. Bred Blk Angus or Blk Sim-Angus Bulls. Nice set of cows that have all been home-raised &amp;Â  raised a big set of calves. Keeping hfrs back &amp; selling cows to make room.</li>\n<li><b>Mershon Farms: </b><b>18 </b>Blk-Bwf 2 yr old heifers w/ 200lbs calves at side. <b>2 </b>Red 2 yr. old heifers w/ 200lbs calves at side. All pairs are ear-tagged to match &amp; sell open. Nice set of fall pairs.</li>\n<li><b>Jake Sisk Complete Dispersal: </b><b>40 </b>Blk-Bwf 2-7 yr old cows w/ fall calves at side. All calves are AI sired. 8 Reg. 5 yr. old Sim. cows w/ fall calves at side. heifers w/ 200lbs calves at side.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-11-08 17:19:15','2023-11-08 17:19:15','',2209,'https://kingsvillelivestock.com/?p=5944',0,'revision','',0),(5945,2,'2023-11-08 18:25:47','2023-11-08 18:25:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 7, 2023, </strong>3585 hd; Last week, 1056hd; 2401 a year ago. All classes of feeder cattle sold steady-$7 lower. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$322.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$316.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$296.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$241.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$227.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$253.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$252.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$241.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$200.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$150.00-$194.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$102.00 - $117.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $101.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 383px; width: 283px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">689lbs @$241.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">732lbs @$237.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">736lbs @$234.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">764lbs @$241.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 25px;\">Steers</td>\n<td style=\"width: 138.531px; height: 25px;\">841lbs @$235.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">934lbs @$227.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 128.469px; height: 26px;\">Â </td>\n<td style=\"width: 138.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 128.469px; height: 10px;\">Â </td>\n<td style=\"width: 138.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 7, 2023 - Market Report','','publish','closed','open','','november-7-2023-market-report','','','2023-11-08 18:25:50','2023-11-08 18:25:50','',0,'https://kingsvillelivestock.com/?p=5945',0,'post','',0),(5947,2,'2023-11-08 18:25:47','2023-11-08 18:25:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 7, 2023, </strong>3585 hd; Last week, 1056hd; 2401 a year ago. All classes of feeder cattle sold steady-$7 lower. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$322.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$316.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$296.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$241.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$227.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$253.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$252.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$241.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$200.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$150.00-$194.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$102.00 - $117.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $101.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 383px; width: 283px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">689lbs @$241.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">732lbs @$237.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">736lbs @$234.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">764lbs @$241.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 25px;\">Steers</td>\n<td style=\"width: 138.531px; height: 25px;\">841lbs @$235.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">934lbs @$227.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 128.469px; height: 26px;\">Â </td>\n<td style=\"width: 138.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 128.469px; height: 10px;\">Â </td>\n<td style=\"width: 138.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 7, 2023 - Market Report','','inherit','closed','closed','','5945-revision-v1','','','2023-11-08 18:25:47','2023-11-08 18:25:47','',5945,'https://kingsvillelivestock.com/?p=5947',0,'revision','',0),(5948,2,'2023-11-08 18:25:47','2023-11-08 18:25:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 7, 2023, </strong>3585 hd; Last week, 1056hd; 2401 a year ago. All classes of feeder cattle sold steady-$7 lower. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$322.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$316.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$296.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$241.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$227.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$253.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$252.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$241.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$200.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$150.00-$194.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$102.00 - $117.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $101.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 383px; width: 283px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">689lbs @$241.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">732lbs @$237.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">736lbs @$234.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">764lbs @$241.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 25px;\">Steers</td>\n<td style=\"width: 138.531px; height: 25px;\">841lbs @$235.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">934lbs @$227.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 128.469px; height: 26px;\">Â </td>\n<td style=\"width: 138.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 128.469px; height: 10px;\">Â </td>\n<td style=\"width: 138.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','October 31, 2023 - Market Report','','inherit','closed','closed','','5945-revision-v1','','','2023-11-08 18:25:47','2023-11-08 18:25:47','',5945,'https://kingsvillelivestock.com/?p=5948',0,'revision','',0),(5949,2,'2023-11-08 18:25:50','2023-11-08 18:25:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 7, 2023, </strong>3585 hd; Last week, 1056hd; 2401 a year ago. All classes of feeder cattle sold steady-$7 lower. Slaughter cows &amp; bulls sold steady. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$322.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$316.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$296.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$260.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$241.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$227.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$275.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$253.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$252.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$241.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$237.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$160.00-$200.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$150.00-$194.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$102.00 - $117.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $101.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $130.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 383px; width: 283px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">689lbs @$241.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">732lbs @$237.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">736lbs @$234.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">764lbs @$241.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 25px;\">Steers</td>\n<td style=\"width: 138.531px; height: 25px;\">841lbs @$235.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">934lbs @$227.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 128.469px; height: 26px;\">Â </td>\n<td style=\"width: 138.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 128.469px; height: 10px;\">Â </td>\n<td style=\"width: 138.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 7, 2023 - Market Report','','inherit','closed','closed','','5945-revision-v1','','','2023-11-08 18:25:50','2023-11-08 18:25:50','',5945,'https://kingsvillelivestock.com/?p=5949',0,'revision','',0),(5950,2,'2023-11-08 18:47:17','2023-11-08 18:47:17','','November 18, 2023 Cow Sale','','inherit','closed','closed','','november-18-2023-cow-sale-2','','','2023-11-08 18:47:17','2023-11-08 18:47:17','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-1.pdf',0,'attachment','application/pdf',0),(5951,2,'2023-11-08 18:47:24','2023-11-08 18:47:24','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-1.pdf\" rel=\"attachment wp-att-5950\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/2023-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-5937\">2023 SMS spring calving catalog</a></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-11-08 18:47:24','2023-11-08 18:47:24','',639,'https://kingsvillelivestock.com/?p=5951',0,'revision','',0),(5952,2,'2023-11-08 18:47:56','2023-11-08 18:47:56','','November 18, 2023 Cow Sale','','inherit','closed','closed','','november-18-2023-cow-sale-3','','','2023-11-08 18:47:56','2023-11-08 18:47:56','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-2.pdf',0,'attachment','application/pdf',0),(5953,2,'2023-11-08 18:48:04','2023-11-08 18:48:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 10th @ 9:00 am<br /></strong>Phil Kelley Farm Equipment Auction - For more info visit the Anstine Auction tab!</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-2.pdf\" rel=\"attachment wp-att-5952\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-11-08 18:48:04','2023-11-08 18:48:04','',1967,'https://kingsvillelivestock.com/?p=5953',0,'revision','',0),(5954,2,'2023-11-13 15:58:24','2023-11-13 15:58:24','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/TuesdayNovember-7th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5935\">Tuesday,November 7th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993300;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</strong></span></h1>\n<h1><span style=\"color: #993300;\"><strong> Saturday, November 18th @ 11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Selling 180 Hd of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Culpepper Cattle Co. : </b><b>3 </b>18-month-old Sim-Angus bulls. Been semen &amp; trich tested.Â  Sired by Lucas genetics</li>\n<li><b>Brockhaus Farms : </b><b>1</b> 2 yr. old Purebred Lim-Flex bull. Angus bulls.</li>\n<li><b>G-M Farms Complete Dispersal:</b> <b>1 </b>3.5 yr. old Reg. Blk Angus Bull.</li>\n<li><b>Bradley Cattle Co.:</b> <b>2 </b>18-month-old horned Hereford bulls. <strong>2</strong> 18-month-old Char bulls. Been semen &amp; trich tested, have high WW &amp; YW. Nice, gentle set of bulls that will add lbs. to your calves</li>\n<li><b>Mergen Farms:</b> <b>1 </b>4 yr. old polled Hereford bull</li>\n<li><b>Beeman Farms:</b> <b>1 </b>18-month-old Blk Angus bull. <b>1</b> 3 yr. old Blk Angus bull <b>1</b> 5 yr. old Blk Anus bull</li>\n<li><b>Cooley Farms:</b> <b>1 </b>18-month-old 1/2 Brindle Brahman bull <b>1</b>18 month old 3/4 Blood Blonde bull.</li>\n<li></li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Brockhaus Farms: </b><b>9 </b>Blk-Bwf 6-SS yr. old cows w/ Oct<b><i>. </i></b>born calves at side. 6 Blk 6-SS yr. old cows, 1st &amp; 2nd period. Bred Lim Flex bull.</li>\n<li><b>G-M Farms Complete Dispersal: </b><b>3 </b>Blk-Bwf 2 yr old heifers w/ fall calves at side. <b>1 </b>Blk &amp; White X 2 yr. old heifer w/ fall calf at side. <b>10</b> Blk 5-SS yr. old cows w/ fall calves at side. <b>8</b> Blk 3-6 yr. old cows,2nd period. <b>8</b> Blk-Char 7-SS yr. old cows, 2nd period. All cows are gentle &amp; good quality. Most cows are home-raised &amp; had all shots. cows w/ fall calves at side.</li>\n<li><b>Carter Farms: </b><b>5 </b>Reg. Gelv. Red Angus 1200lbs, 2 yr. old bred heifers. Bred Red Balancer bull. Nice get of gentle heifers.</li>\n<li><b>Stevens Farms: </b><b>17 </b>Blk-Bwf 3-6 yr. cows w/ 200lbs calves at side.</li>\n<li><b>Simon Farms: </b><b>25 </b>Blk-Bwf 3-6 yr old cows,3rd period. Bred Blk Angus bulls.</li>\n<li><b>Schultz Farm: </b><b>40 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. <b>33</b> Blk-Bwf 5-7 yr. old cows,2nd period. All cows bred Blk Gelv. or Sim-Angus bulls. Nice set of spring calving cows.</li>\n<li><b>Conrow Farms: </b><b>22 </b>Blk 2 yr. old heifers w/ 200lbs calves at side. <b>5</b> Bwf 2yr. old heifers w/ 200lbs calves at side. <b>3 </b>Blk-Sim Angus 2 yr. old heifers w/ 300lbs calves at side. All pairs ear tagged to match, gentle &amp; sell open. Breed to bull of your choice.</li>\n<li><b>J-W Farms: </b><b>17 </b>Purebred Angus 5-7 yr old cows w/ 250lbs calves at side. Calves sired by Reg. Angus bulls. Very nice set of pairs that are easy to handle. Cows are giving a lot of milk.</li>\n<li><b>Thurman Farms: </b><b>37 </b>Blk-BwfÂ  5-SS yr old cows, 2nd period. Bred Blk Angus or Blk Sim-Angus Bulls. Nice set of cows that have all been home-raised &amp;Â  raised a big set of calves. Keeping hfrs back &amp; selling cows to make room.</li>\n<li><b>Mershon Farms: </b><b>18 </b>Blk-Bwf 2 yr old heifers w/ 200lbs calves at side. <b>2 </b>Red 2 yr. old heifers w/ 200lbs calves at side. All pairs are ear-tagged to match &amp; sell open. Nice set of fall pairs.</li>\n<li><b>Jake Sisk Complete Dispersal: </b><b>40 </b>Blk-Bwf 2-7 yr old cows w/ fall calves at side. All calves are AI sired. 8 Reg. 5 yr. old Sim. cows w/ fall calves at side. heifers w/ 200lbs calves at side.</li>\n<li><b>S-S Cattle Co.: </b><b>38 </b>Blk 3-6 yr old cows w/ fall calves at side. Nice set of pairs.</li>\n<li><b>Enock Farms:</b> <b>18 </b>Blk 3-SS yr old cows w/ 200-400lbs calves at side. <b>18</b> Blk 3-SS yr. old cows,2nd &amp; 3rd period.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-11-13 15:58:24','2023-11-13 15:58:24','',2209,'https://kingsvillelivestock.com/?p=5954',0,'revision','',0),(5955,2,'2023-11-13 16:27:13','2023-11-13 16:27:13','','November 18, 2023 Cow Sale','','inherit','closed','closed','','november-18-2023-cow-sale-4','','','2023-11-13 16:27:13','2023-11-13 16:27:13','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-3.pdf',0,'attachment','application/pdf',0),(5956,2,'2023-11-13 16:27:22','2023-11-13 16:27:22','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5955\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/2023-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-5937\">2023 SMS spring calving catalog</a></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-11-13 16:27:22','2023-11-13 16:27:22','',639,'https://kingsvillelivestock.com/?p=5956',0,'revision','',0),(5957,2,'2023-11-13 16:28:04','2023-11-13 16:28:04','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5955\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal auction in November!</strong></span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-11-13 16:28:04','2023-11-13 16:28:04','',1967,'https://kingsvillelivestock.com/?p=5957',0,'revision','',0),(5958,2,'2023-11-13 16:30:00','2023-11-13 16:30:00','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.23.1\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\"><strong>Â UPCOMING SALE DATES</strong></h3>\n<h1 style=\"text-align: center;\"><span style=\"color: #0000ff;\"><strong>Â Check back for upcoming auctions!Â </strong></span></h1>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.22.1\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_section]','ANSTINE AUCTION LLC','','inherit','closed','closed','','1450-revision-v1','','','2023-11-13 16:30:00','2023-11-13 16:30:00','',1450,'https://kingsvillelivestock.com/?p=5958',0,'revision','',0),(5959,2,'2023-11-13 18:29:09','2023-11-13 18:29:09','','Tuesday,November 14th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaynovember-14th-feeder-cattle-consignments','','','2023-11-13 18:29:09','2023-11-13 18:29:09','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/11/TuesdayNovember-14th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5960,2,'2023-11-13 18:29:15','2023-11-13 18:29:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/TuesdayNovember-14th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5959\">Tuesday,November 14th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993300;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</strong></span></h1>\n<h1><span style=\"color: #993300;\"><strong> Saturday, November 18th @ 11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Selling 180 Hd of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Culpepper Cattle Co. : </b><b>3 </b>18-month-old Sim-Angus bulls. Been semen &amp; trich tested.Â  Sired by Lucas genetics</li>\n<li><b>Brockhaus Farms : </b><b>1</b> 2 yr. old Purebred Lim-Flex bull. Angus bulls.</li>\n<li><b>G-M Farms Complete Dispersal:</b> <b>1 </b>3.5 yr. old Reg. Blk Angus Bull.</li>\n<li><b>Bradley Cattle Co.:</b> <b>2 </b>18-month-old horned Hereford bulls. <strong>2</strong> 18-month-old Char bulls. Been semen &amp; trich tested, have high WW &amp; YW. Nice, gentle set of bulls that will add lbs. to your calves</li>\n<li><b>Mergen Farms:</b> <b>1 </b>4 yr. old polled Hereford bull</li>\n<li><b>Beeman Farms:</b> <b>1 </b>18-month-old Blk Angus bull. <b>1</b> 3 yr. old Blk Angus bull <b>1</b> 5 yr. old Blk Anus bull</li>\n<li><b>Cooley Farms:</b> <b>1 </b>18-month-old 1/2 Brindle Brahman bull <b>1</b>18 month old 3/4 Blood Blonde bull.</li>\n<li></li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Brockhaus Farms: </b><b>9 </b>Blk-Bwf 6-SS yr. old cows w/ Oct<b><i>. </i></b>born calves at side. 6 Blk 6-SS yr. old cows, 1st &amp; 2nd period. Bred Lim Flex bull.</li>\n<li><b>G-M Farms Complete Dispersal: </b><b>3 </b>Blk-Bwf 2 yr old heifers w/ fall calves at side. <b>1 </b>Blk &amp; White X 2 yr. old heifer w/ fall calf at side. <b>10</b> Blk 5-SS yr. old cows w/ fall calves at side. <b>8</b> Blk 3-6 yr. old cows,2nd period. <b>8</b> Blk-Char 7-SS yr. old cows, 2nd period. All cows are gentle &amp; good quality. Most cows are home-raised &amp; had all shots. cows w/ fall calves at side.</li>\n<li><b>Carter Farms: </b><b>5 </b>Reg. Gelv. Red Angus 1200lbs, 2 yr. old bred heifers. Bred Red Balancer bull. Nice get of gentle heifers.</li>\n<li><b>Stevens Farms: </b><b>17 </b>Blk-Bwf 3-6 yr. cows w/ 200lbs calves at side.</li>\n<li><b>Simon Farms: </b><b>25 </b>Blk-Bwf 3-6 yr old cows,3rd period. Bred Blk Angus bulls.</li>\n<li><b>Schultz Farm: </b><b>40 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. <b>33</b> Blk-Bwf 5-7 yr. old cows,2nd period. All cows bred Blk Gelv. or Sim-Angus bulls. Nice set of spring calving cows.</li>\n<li><b>Conrow Farms: </b><b>22 </b>Blk 2 yr. old heifers w/ 200lbs calves at side. <b>5</b> Bwf 2yr. old heifers w/ 200lbs calves at side. <b>3 </b>Blk-Sim Angus 2 yr. old heifers w/ 300lbs calves at side. All pairs ear tagged to match, gentle &amp; sell open. Breed to bull of your choice.</li>\n<li><b>J-W Farms: </b><b>17 </b>Purebred Angus 5-7 yr old cows w/ 250lbs calves at side. Calves sired by Reg. Angus bulls. Very nice set of pairs that are easy to handle. Cows are giving a lot of milk.</li>\n<li><b>Thurman Farms: </b><b>37 </b>Blk-BwfÂ  5-SS yr old cows, 2nd period. Bred Blk Angus or Blk Sim-Angus Bulls. Nice set of cows that have all been home-raised &amp;Â  raised a big set of calves. Keeping hfrs back &amp; selling cows to make room.</li>\n<li><b>Mershon Farms: </b><b>18 </b>Blk-Bwf 2 yr old heifers w/ 200lbs calves at side. <b>2 </b>Red 2 yr. old heifers w/ 200lbs calves at side. All pairs are ear-tagged to match &amp; sell open. Nice set of fall pairs.</li>\n<li><b>Jake Sisk Complete Dispersal: </b><b>40 </b>Blk-Bwf 2-7 yr old cows w/ fall calves at side. All calves are AI sired. 8 Reg. 5 yr. old Sim. cows w/ fall calves at side. heifers w/ 200lbs calves at side.</li>\n<li><b>S-S Cattle Co.: </b><b>38 </b>Blk 3-6 yr old cows w/ fall calves at side. Nice set of pairs.</li>\n<li><b>Enock Farms:</b> <b>18 </b>Blk 3-SS yr old cows w/ 200-400lbs calves at side. <b>18</b> Blk 3-SS yr. old cows,2nd &amp; 3rd period.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-11-13 18:29:15','2023-11-13 18:29:15','',2209,'https://kingsvillelivestock.com/?p=5960',0,'revision','',0),(5961,2,'2023-11-13 21:06:23','2023-11-13 21:06:23','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5955\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-11-13 21:06:23','2023-11-13 21:06:23','',1967,'https://kingsvillelivestock.com/?p=5961',0,'revision','',0),(5962,2,'2023-11-13 21:07:19','2023-11-13 21:07:19','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 14th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5955\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/2023-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-5937\">2023 SMS spring calving catalog</a></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-11-13 21:07:19','2023-11-13 21:07:19','',639,'https://kingsvillelivestock.com/?p=5962',0,'revision','',0),(5964,2,'2023-11-14 19:04:18','2023-11-14 19:04:18','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/TuesdayNovember-14th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5959\">Tuesday,November 14th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993300;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</strong></span></h1>\n<h1><span style=\"color: #993300;\"><strong> Saturday, November 18th @ 11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Selling 180 Hd of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Culpepper Cattle Co. : </b><b>3 </b>18-month-old Sim-Angus bulls. Been semen &amp; trich tested.Â  Sired by Lucas genetics</li>\n<li><b>Brockhaus Farms : </b><b>1</b> 2 yr. old Purebred Lim-Flex bull. Angus bulls.</li>\n<li><b>G-M Farms Complete Dispersal:</b> <b>1 </b>3.5 yr. old Reg. Blk Angus Bull.</li>\n<li><b>Bradley Cattle Co.:</b> <b>2 </b>18-month-old horned Hereford bulls. <strong>2</strong> 18-month-old Char bulls. Been semen &amp; trich tested, have high WW &amp; YW. Nice, gentle set of bulls that will add lbs. to your calves</li>\n<li><b>Mergen Farms:</b> <b>1 </b>4 yr. old polled Hereford bull</li>\n<li><b>Beeman Farms:</b> <b>1 </b>18-month-old Blk Angus bull. <b>1</b> 3 yr. old Blk Angus bull <b>1</b> 5 yr. old Blk Anus bull</li>\n<li><b>Cooley Farms:</b> <b>1 </b>18-month-old 1/2 Brindle Brahman bull <b>1</b>18 month old 3/4 Blood Blonde bull.</li>\n<li></li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Brockhaus Farms: </b><b>9 </b>Blk-Bwf 6-SS yr. old cows w/ Oct<b><i>. </i></b>born calves at side. 6 Blk 6-SS yr. old cows, 1st &amp; 2nd period. Bred Lim Flex bull.</li>\n<li><b>G-M Farms Complete Dispersal: </b><b>3 </b>Blk-Bwf 2 yr old heifers w/ fall calves at side. <b>1 </b>Blk &amp; White X 2 yr. old heifer w/ fall calf at side. <b>10</b> Blk 5-SS yr. old cows w/ fall calves at side. <b>8</b> Blk 3-6 yr. old cows,2nd period. <b>8</b> Blk-Char 7-SS yr. old cows, 2nd period. All cows are gentle &amp; good quality. Most cows are home-raised &amp; had all shots. cows w/ fall calves at side.</li>\n<li><b>Stevens Farms: </b><b>17 </b>Blk-Bwf 3-6 yr. cows w/ 200lbs calves at side.</li>\n<li><b>Simon Farms: </b><b>25 </b>Blk-Bwf 3-6 yr old cows,3rd period. Bred Blk Angus bulls.</li>\n<li><b>Schultz Farm: </b><b>40 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. <b>33</b> Blk-Bwf 5-7 yr. old cows,2nd period. All cows bred Blk Gelv. or Sim-Angus bulls. Nice set of spring calving cows.</li>\n<li><b>Conrow Farms: </b><b>22 </b>Blk 2 yr. old heifers w/ 200lbs calves at side. <b>5</b> Bwf 2yr. old heifers w/ 200lbs calves at side. <b>3 </b>Blk-Sim Angus 2 yr. old heifers w/ 300lbs calves at side. All pairs ear tagged to match, gentle &amp; sell open. Breed to bull of your choice.</li>\n<li><b>J-W Farms: </b><b>17 </b>Purebred Angus 5-7 yr old cows w/ 250lbs calves at side. Calves sired by Reg. Angus bulls. Very nice set of pairs that are easy to handle. Cows are giving a lot of milk.</li>\n<li><b>Thurman Farms: </b><b>37 </b>Blk-BwfÂ  5-SS yr old cows, 2nd period. Bred Blk Angus or Blk Sim-Angus Bulls. Nice set of cows that have all been home-raised &amp;Â  raised a big set of calves. Keeping hfrs back &amp; selling cows to make room.</li>\n<li><b>Mershon Farms: </b><b>18 </b>Blk-Bwf 2 yr old heifers w/ 200lbs calves at side. <b>2 </b>Red 2 yr. old heifers w/ 200lbs calves at side. All pairs are ear-tagged to match &amp; sell open. Nice set of fall pairs.</li>\n<li><b>Jake Sisk Complete Dispersal: </b><b>40 </b>Blk-Bwf 2-7 yr old cows w/ fall calves at side. All calves are AI sired. 8 Reg. 5 yr. old Sim. cows w/ fall calves at side. heifers w/ 200lbs calves at side.</li>\n<li><b>S-S Cattle Co.: </b><b>38 </b>Blk 3-6 yr old cows w/ fall calves at side. Nice set of pairs.</li>\n<li><b>Enock Farms:</b> <b>18 </b>Blk 3-SS yr old cows w/ 200-400lbs calves at side. <b>18</b> Blk 3-SS yr. old cows,2nd &amp; 3rd period.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-11-14 19:04:18','2023-11-14 19:04:18','',2209,'https://kingsvillelivestock.com/?p=5964',0,'revision','',0),(5965,2,'2023-11-15 00:20:05','2023-11-15 00:20:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/TuesdayNovember-14th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5959\">Tuesday,November 14th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993300;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</strong></span></h1>\n<h1><span style=\"color: #993300;\"><strong> Saturday, November 18th @ 11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Selling 180 Hd of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Culpepper Cattle Co. : </b><b>3 </b>18-month-old Sim-Angus bulls. Been semen &amp; trich tested.Â  Sired by Lucas genetics <a href=\"https://drive.google.com/drive/folders/1JJMNgQEd9lZKk-NO_0v8weDP7NYwpJe6?usp=drive_link\">BULL PICS</a></li>\n<li><b>Brockhaus Farms : </b><b>1</b> 2 yr. old Purebred Lim-Flex bull. Angus bulls.</li>\n<li><b>G-M Farms Complete Dispersal:</b> <b>1 </b>3.5 yr. old Reg. Blk Angus Bull.</li>\n<li><b>Bradley Cattle Co.:</b> <b>2 </b>18-month-old horned Hereford bulls. <strong>2</strong> 18-month-old Char bulls. Been semen &amp; trich tested, have high WW &amp; YW. Nice, gentle set of bulls that will add lbs. to your calves</li>\n<li><b>Mergen Farms:</b> <b>1 </b>4 yr. old polled Hereford bull</li>\n<li><b>Beeman Farms:</b> <b>1 </b>18-month-old Blk Angus bull. <b>1</b> 3 yr. old Blk Angus bull <b>1</b> 5 yr. old Blk Anus bull</li>\n<li><b>Cooley Farms:</b> <b>1 </b>18-month-old 1/2 Brindle Brahman bull <b>1</b>18 month old 3/4 Blood Blonde bull.</li>\n<li></li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Brockhaus Farms: </b><b>9 </b>Blk-Bwf 6-SS yr. old cows w/ Oct<b><i>. </i></b>born calves at side. 6 Blk 6-SS yr. old cows, 1st &amp; 2nd period. Bred Lim Flex bull.</li>\n<li><b>G-M Farms Complete Dispersal: </b><b>3 </b>Blk-Bwf 2 yr old heifers w/ fall calves at side. <b>1 </b>Blk &amp; White X 2 yr. old heifer w/ fall calf at side. <b>10</b> Blk 5-SS yr. old cows w/ fall calves at side. <b>8</b> Blk 3-6 yr. old cows,2nd period. <b>8</b> Blk-Char 7-SS yr. old cows, 2nd period. All cows are gentle &amp; good quality. Most cows are home-raised &amp; had all shots. cows w/ fall calves at side.</li>\n<li><b>Stevens Farms: </b><b>17 </b>Blk-Bwf 3-6 yr. cows w/ 200lbs calves at side.</li>\n<li><b>Simon Farms: </b><b>25 </b>Blk-Bwf 3-6 yr old cows,3rd period. Bred Blk Angus bulls.</li>\n<li><b>Schultz Farm: </b><b>40 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. <b>33</b> Blk-Bwf 5-7 yr. old cows,2nd period. All cows bred Blk Gelv. or Sim-Angus bulls. Nice set of spring calving cows.</li>\n<li><b>Conrow Farms: </b><b>22 </b>Blk 2 yr. old heifers w/ 200lbs calves at side. <b>5</b> Bwf 2yr. old heifers w/ 200lbs calves at side. <b>3 </b>Blk-Sim Angus 2 yr. old heifers w/ 300lbs calves at side. All pairs ear tagged to match, gentle &amp; sell open. Breed to bull of your choice.</li>\n<li><b>J-W Farms: </b><b>17 </b>Purebred Angus 5-7 yr old cows w/ 250lbs calves at side. Calves sired by Reg. Angus bulls. Very nice set of pairs that are easy to handle. Cows are giving a lot of milk.</li>\n<li><b>Thurman Farms: </b><b>37 </b>Blk-BwfÂ  5-SS yr old cows, 2nd period. Bred Blk Angus or Blk Sim-Angus Bulls. Nice set of cows that have all been home-raised &amp;Â  raised a big set of calves. Keeping hfrs back &amp; selling cows to make room.</li>\n<li><b>Mershon Farms: </b><b>18 </b>Blk-Bwf 2 yr old heifers w/ 200lbs calves at side. <b>2 </b>Red 2 yr. old heifers w/ 200lbs calves at side. All pairs are ear-tagged to match &amp; sell open. Nice set of fall pairs.</li>\n<li><b>Jake Sisk Complete Dispersal: </b><b>40 </b>Blk-Bwf 2-7 yr old cows w/ fall calves at side. All calves are AI sired. 8 Reg. 5 yr. old Sim. cows w/ fall calves at side. heifers w/ 200lbs calves at side.</li>\n<li><b>S-S Cattle Co.: </b><b>38 </b>Blk 3-6 yr old cows w/ fall calves at side. Nice set of pairs.</li>\n<li><b>Enock Farms:</b> <b>18 </b>Blk 3-SS yr old cows w/ 200-400lbs calves at side. <b>18</b> Blk 3-SS yr. old cows,2nd &amp; 3rd period.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-11-15 00:20:05','2023-11-15 00:20:05','',2209,'https://kingsvillelivestock.com/?p=5965',0,'revision','',0),(5966,2,'2023-11-15 07:04:07','2023-11-15 07:04:07','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5955\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/2023-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-5937\">2023 SMS spring calving catalog</a></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-11-15 07:04:07','2023-11-15 07:04:07','',639,'https://kingsvillelivestock.com/?p=5966',0,'revision','',0),(5967,2,'2023-11-15 07:04:32','2023-11-15 07:04:32','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-3.pdf\" rel=\"attachment wp-att-5955\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-11-15 07:04:32','2023-11-15 07:04:32','',1967,'https://kingsvillelivestock.com/?p=5967',0,'revision','',0),(5968,2,'2023-11-15 15:24:15','2023-11-15 15:24:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 14, 2023, </strong>2116 hd; Last week, 3585hd; 2840 a year ago. Compared to last week, feeder cattle sold steady except 550-650lbs fleshy heifers sold $5-$10 lower. Yearling steers &amp; heifers sold steady. Slaughter cows &amp; bulls sold $2-$5 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$299.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$277.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$195.00-$237.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$224.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$219.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$263.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$254.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$236.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$207.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$185.00-$199.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $106.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$87.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $86.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 383px; width: 283px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">730lbs @$236.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">956lbs @$199.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">853lbs @$224.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 25px;\">Â </td>\n<td style=\"width: 138.531px; height: 25px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 128.469px; height: 26px;\">Â </td>\n<td style=\"width: 138.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 128.469px; height: 10px;\">Â </td>\n<td style=\"width: 138.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 14, 2023 - Market Report','','publish','closed','open','','november-14-2023-market-report','','','2023-11-15 15:24:18','2023-11-15 15:24:18','',0,'https://kingsvillelivestock.com/?p=5968',0,'post','',0),(5970,2,'2023-11-15 15:24:15','2023-11-15 15:24:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 14, 2023, </strong>2116 hd; Last week, 3585hd; 2840 a year ago. Compared to last week, feeder cattle sold steady except 550-650lbs fleshy heifers sold $5-$10 lower. Yearling steers &amp; heifers sold steady. Slaughter cows &amp; bulls sold $2-$5 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$299.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$277.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$195.00-$237.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$224.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$219.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$263.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$254.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$236.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$207.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$185.00-$199.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $106.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$87.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $86.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 383px; width: 283px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">730lbs @$236.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">956lbs @$199.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">853lbs @$224.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 25px;\">Â </td>\n<td style=\"width: 138.531px; height: 25px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 128.469px; height: 26px;\">Â </td>\n<td style=\"width: 138.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 128.469px; height: 10px;\">Â </td>\n<td style=\"width: 138.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 14, 2023 - Market Report','','inherit','closed','closed','','5968-revision-v1','','','2023-11-15 15:24:15','2023-11-15 15:24:15','',5968,'https://kingsvillelivestock.com/?p=5970',0,'revision','',0),(5971,2,'2023-11-15 15:24:15','2023-11-15 15:24:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 14, 2023, </strong>2116 hd; Last week, 3585hd; 2840 a year ago. Compared to last week, feeder cattle sold steady except 550-650lbs fleshy heifers sold $5-$10 lower. Yearling steers &amp; heifers sold steady. Slaughter cows &amp; bulls sold $2-$5 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$299.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$277.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$195.00-$237.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$224.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$219.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$263.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$254.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$236.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$207.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$185.00-$199.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $106.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$87.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $86.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 383px; width: 283px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">730lbs @$236.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">956lbs @$199.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">853lbs @$224.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 25px;\">Â </td>\n<td style=\"width: 138.531px; height: 25px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 128.469px; height: 26px;\">Â </td>\n<td style=\"width: 138.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 128.469px; height: 10px;\">Â </td>\n<td style=\"width: 138.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 7, 2023 - Market Report','','inherit','closed','closed','','5968-revision-v1','','','2023-11-15 15:24:15','2023-11-15 15:24:15','',5968,'https://kingsvillelivestock.com/?p=5971',0,'revision','',0),(5972,2,'2023-11-15 15:24:18','2023-11-15 15:24:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 14, 2023, </strong>2116 hd; Last week, 3585hd; 2840 a year ago. Compared to last week, feeder cattle sold steady except 550-650lbs fleshy heifers sold $5-$10 lower. Yearling steers &amp; heifers sold steady. Slaughter cows &amp; bulls sold $2-$5 lower. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$300.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$310.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$225.00-$299.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$277.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$195.00-$237.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$224.75</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$219.50</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$263.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$254.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$170.00-$235.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$236.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$180.00-$207.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$185.00-$199.25</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$95.00 - $106.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$87.00 - $94.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$65.00 - $86.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$80.00 - $115.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 383px; width: 283px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">730lbs @$236.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Heifers</td>\n<td style=\"width: 138.531px; height: 23px;\">956lbs @$199.25</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">853lbs @$224.75</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 25px;\">Â </td>\n<td style=\"width: 138.531px; height: 25px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 128.469px; height: 26px;\">Â </td>\n<td style=\"width: 138.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 128.469px; height: 10px;\">Â </td>\n<td style=\"width: 138.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 14, 2023 - Market Report','','inherit','closed','closed','','5968-revision-v1','','','2023-11-15 15:24:18','2023-11-15 15:24:18','',5968,'https://kingsvillelivestock.com/?p=5972',0,'revision','',0),(5973,2,'2023-11-15 16:56:04','2023-11-15 16:56:04','','MarketReportfornewspaper November 14,2023','','inherit','closed','closed','','marketreportfornewspaper-november-142023','','','2023-11-15 16:56:04','2023-11-15 16:56:04','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/11/MarketReportfornewspaper-November-142023.pdf',0,'attachment','application/pdf',0),(5974,2,'2023-11-15 16:56:13','2023-11-15 16:56:13','','November 18, 2023 Cow Sale','','inherit','closed','closed','','november-18-2023-cow-sale-5','','','2023-11-15 16:56:13','2023-11-15 16:56:13','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-4.pdf',0,'attachment','application/pdf',0),(5975,2,'2023-11-15 16:56:31','2023-11-15 16:56:31','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am Â <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-4.pdf\" rel=\"attachment wp-att-5974\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/2023-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-5937\">2023 SMS spring calving catalog</a></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-11-15 16:56:31','2023-11-15 16:56:31','',639,'https://kingsvillelivestock.com/?p=5975',0,'revision','',0),(5976,2,'2023-11-15 16:57:10','2023-11-15 16:57:10','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am<a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-4.pdf\" rel=\"attachment wp-att-5974\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-11-15 16:57:10','2023-11-15 16:57:10','',1967,'https://kingsvillelivestock.com/?p=5976',0,'revision','',0),(5977,2,'2023-11-15 17:15:18','2023-11-15 17:15:18','','November 18, 2023 Cow Sale','','inherit','closed','closed','','november-18-2023-cow-sale-6','','','2023-11-15 17:15:18','2023-11-15 17:15:18','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-5.pdf',0,'attachment','application/pdf',0),(5978,2,'2023-11-15 17:15:33','2023-11-15 17:15:33','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-5.pdf\" rel=\"attachment wp-att-5977\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-11-15 17:15:33','2023-11-15 17:15:33','',1967,'https://kingsvillelivestock.com/?p=5978',0,'revision','',0),(5979,2,'2023-11-15 17:15:44','0000-00-00 00:00:00','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am Â <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-4.pdf\" rel=\"attachment wp-att-5974\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/2023-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-5937\">2023 SMS spring calving catalog</a></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','draft','closed','closed','','','','','2023-11-15 17:15:44','0000-00-00 00:00:00','',0,'https://kingsvillelivestock.com/?page_id=5979',0,'page','',0),(5980,2,'2023-11-15 17:16:02','2023-11-15 17:16:02','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-5.pdf\" rel=\"attachment wp-att-5977\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/2023-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-5937\">2023 SMS spring calving catalog</a></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-11-15 17:16:02','2023-11-15 17:16:02','',639,'https://kingsvillelivestock.com/?p=5980',0,'revision','',0),(5981,2,'2023-11-15 18:27:45','2023-11-15 18:27:45','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-5.pdf\" rel=\"attachment wp-att-5977\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/2023-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-5937\">2023 SMS spring calving catalog</a></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am -<span style=\"color: #ff00ff;\"> Customer Appreciation Dinner 10 am-6 pm!</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-11-15 18:27:45','2023-11-15 18:27:45','',639,'https://kingsvillelivestock.com/?p=5981',0,'revision','',0),(5982,2,'2023-11-15 18:28:17','2023-11-15 18:28:17','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-5.pdf\" rel=\"attachment wp-att-5977\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am-<span style=\"color: #ff00ff;\"> Customer Appreciation Dinner 10 am-6 pm!</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-11-15 18:28:17','2023-11-15 18:28:17','',1967,'https://kingsvillelivestock.com/?p=5982',0,'revision','',0),(5983,2,'2023-11-15 18:29:21','2023-11-15 18:29:21','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/TuesdayNovember-14th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5959\">Tuesday,November 14th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #993300;\"><strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</strong></span></h1>\n<h1><span style=\"color: #993300;\"><strong> Saturday, November 18th @ 11amÂ </strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.23\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Selling 180 Hd of Show-Me-Select Bred Heifers </b></p>\n<p><b>Bulls Consigned:Â Â  </b><b><i>Bulls sell after Show-Me-Select Bred Heifers</i></b></p>\n<ul>\n<li><b>Culpepper Cattle Co. : </b><b>3 </b>18-month-old Sim-Angus bulls. Been semen &amp; trich tested.Â  Sired by Lucas genetics <a href=\"https://drive.google.com/drive/folders/1JJMNgQEd9lZKk-NO_0v8weDP7NYwpJe6?usp=drive_link\">BULL PICS</a></li>\n<li><b>Brockhaus Farms : </b><b>1</b> 2 yr. old Purebred Lim-Flex bull. Angus bulls.</li>\n<li><b>G-M Farms Complete Dispersal:</b> <b>1 </b>3.5 yr. old Reg. Blk Angus Bull.</li>\n<li><b>Bradley Cattle Co.:</b> <b>2 </b>18-month-old horned Hereford bulls. <strong>2</strong> 18-month-old Char bulls. Been semen &amp; trich tested, have high WW &amp; YW. Nice, gentle set of bulls that will add lbs. to your calves</li>\n<li><b>Mergen Farms:</b> <b>1 </b>4 yr. old polled Hereford bull</li>\n<li><b>Beeman Farms:</b> <b>1 </b>18-month-old Blk Angus bull. <b>1</b> 3 yr. old Blk Angus bull <b>1</b> 5 yr. old Blk Anus bull</li>\n<li><b>Cooley Farms:</b> <b>1 </b>18-month-old 1/2 Brindle Brahman bull <b>1 </b>18 month old 3/4 Blood Blonde bull.</li>\n<li><b>Johnson Farms:</b> <b>1 </b>2 yr. old Blk Angus bull <b>1 </b>2 yr. old Blk Beefmaster bull <b>2 </b>2 yr. old Red Beefmaster bulls. All Beefmasters are out of Reg. stock. All bulls been semen &amp; trich tested.</li>\n</ul>\n<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Brockhaus Farms: </b><b>9 </b>Blk-Bwf 6-SS yr. old cows w/ Oct<b><i>. </i></b>born calves at side. 6 Blk 6-SS yr. old cows, 1st &amp; 2nd period. Bred Lim Flex bull.</li>\n<li><b>G-M Farms Complete Dispersal: </b><b>3 </b>Blk-Bwf 2 yr old heifers w/ fall calves at side. <b>1 </b>Blk &amp; White X 2 yr. old heifer w/ fall calf at side. <b>10</b> Blk 5-SS yr. old cows w/ fall calves at side. <b>8</b> Blk 3-6 yr. old cows,2nd period. <b>8</b> Blk-Char 7-SS yr. old cows, 2nd period. All cows are gentle &amp; good quality. Most cows are home-raised &amp; had all shots. cows w/ fall calves at side.</li>\n<li><b>Stevens Farms: </b><b>17 </b>Blk-Bwf 3-6 yr. cows w/ 200lbs calves at side.</li>\n<li><b>Simon Farms: </b><b>25 </b>Blk-Bwf 3-6 yr old cows,3rd period. Bred Blk Angus bulls.</li>\n<li><b>Schultz Farm: </b><b>40 </b>Blk-Bwf 3-4 yr. old cows, 2nd period. <b>33</b> Blk-Bwf 5-7 yr. old cows,2nd period. All cows bred Blk Gelv. or Sim-Angus bulls. Nice set of spring calving cows.</li>\n<li><b>Conrow Farms: </b><b>22 </b>Blk 2 yr. old heifers w/ 200lbs calves at side. <b>5</b> Bwf 2yr. old heifers w/ 200lbs calves at side. <b>3 </b>Blk-Sim Angus 2 yr. old heifers w/ 300lbs calves at side. All pairs ear tagged to match, gentle &amp; sell open. Breed to bull of your choice.</li>\n<li><b>J-W Farms: </b><b>17 </b>Purebred Angus 5-7 yr old cows w/ 250lbs calves at side. Calves sired by Reg. Angus bulls. Very nice set of pairs that are easy to handle. Cows are giving a lot of milk.</li>\n<li><b>Thurman Farms: </b><b>37 </b>Blk-BwfÂ  5-SS yr old cows, 2nd period. Bred Blk Angus or Blk Sim-Angus Bulls. Nice set of cows that have all been home-raised &amp;Â  raised a big set of calves. Keeping hfrs back &amp; selling cows to make room.</li>\n<li><b>Mershon Farms: </b><b>18 </b>Blk-Bwf 2 yr old heifers w/ 200lbs calves at side. <b>2 </b>Red 2 yr. old heifers w/ 200lbs calves at side. All pairs are ear-tagged to match &amp; sell open. Nice set of fall pairs.</li>\n<li><b>Jake Sisk Complete Dispersal: </b><b>40 </b>Blk-Bwf 2-7 yr old cows w/ fall calves at side. All calves are AI sired. 8 Reg. 5 yr. old Sim. cows w/ fall calves at side. heifers w/ 200lbs calves at side.</li>\n<li><b>S-S Cattle Co.: </b><b>38 </b>Blk 3-6 yr old cows w/ fall calves at side. Nice set of pairs.</li>\n<li><b>Enock Farms:</b> <b>18 </b>Blk 3-SS yr old cows w/ 200-400lbs calves at side. <b>18</b> Blk 3-SS yr. old cows,2nd &amp; 3rd period.</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-11-15 18:29:21','2023-11-15 18:29:21','',2209,'https://kingsvillelivestock.com/?p=5983',0,'revision','',0),(5984,2,'2023-11-18 00:11:08','2023-11-18 00:11:08','','2023 fall calving sale order','','inherit','closed','closed','','2023-fall-calving-sale-order','','','2023-11-18 00:11:08','2023-11-18 00:11:08','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/11/2023-fall-calving-sale-order.pdf',0,'attachment','application/pdf',0),(5985,2,'2023-11-18 00:11:15','2023-11-18 00:11:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/2023-fall-calving-sale-order.pdf\" rel=\"attachment wp-att-5984\">2023 fall calving sale order</a></strong></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-5.pdf\" rel=\"attachment wp-att-5977\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull Sale in conjunction w/ Show-Me-Select bred heifers</span></p>\n<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/2023-spring-calving-catalog-1.pdf\" rel=\"attachment wp-att-5937\">2023 SMS spring calving catalog</a></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am -<span style=\"color: #ff00ff;\"> Customer Appreciation Dinner 10 am-6 pm!</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-11-18 00:11:15','2023-11-18 00:11:15','',639,'https://kingsvillelivestock.com/?p=5985',0,'revision','',0),(5986,2,'2023-11-18 00:12:34','2023-11-18 00:12:34','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/2023-fall-calving-sale-order.pdf\" rel=\"attachment wp-att-5984\">2023 fall calving sale order</a></strong></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 18th @ 11:00 am <a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/November-18-2023-Cow-Sale-5.pdf\" rel=\"attachment wp-att-5977\">November 18, 2023 Cow Sale</a><br /></strong>Special Cow &amp; Bull SaleÂ </span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-spring-calving-catalog.pdf\" rel=\"attachment wp-att-5890\">2023 SMS spring calving catalog</a></span></p>\n<p><span style=\"color: #000000;\"><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/10/2023-sms-spring-calving-flyer.pdf\" rel=\"attachment wp-att-5891\">2023 SMS spring calving flyer</a></span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am-<span style=\"color: #ff00ff;\"> Customer Appreciation Dinner 10 am-6 pm!</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-11-18 00:12:34','2023-11-18 00:12:34','',1967,'https://kingsvillelivestock.com/?p=5986',0,'revision','',0),(5987,2,'2023-11-20 16:06:27','2023-11-20 16:06:27','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am -<span style=\"color: #ff00ff;\"> Customer Appreciation Dinner 10 am-6 pm!</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-11-20 16:06:27','2023-11-20 16:06:27','',639,'https://kingsvillelivestock.com/?p=5987',0,'revision','',0),(5988,2,'2023-11-20 16:07:05','2023-11-20 16:07:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 21st @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am-<span style=\"color: #ff00ff;\"> Customer Appreciation Dinner 10 am-6 pm!</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-11-20 16:07:05','2023-11-20 16:07:05','',1967,'https://kingsvillelivestock.com/?p=5988',0,'revision','',0),(5989,2,'2023-11-20 19:51:35','2023-11-20 19:51:35','','Tuesday,November 21st Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaynovember-21st-feeder-cattle-consignments','','','2023-11-20 19:51:35','2023-11-20 19:51:35','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/11/TuesdayNovember-21st-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(5990,2,'2023-11-20 19:51:53','2023-11-20 19:51:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/TuesdayNovember-21st-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5989\">Tuesday,November 21st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-11-20 19:51:53','2023-11-20 19:51:53','',2209,'https://kingsvillelivestock.com/?p=5990',0,'revision','',0),(5991,2,'2023-11-22 14:51:26','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','open','','','','','2023-11-22 14:51:26','0000-00-00 00:00:00','',0,'https://kingsvillelivestock.com/?p=5991',0,'post','',0),(5992,2,'2023-11-22 14:53:15','2023-11-22 14:53:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am -<span style=\"color: #ff00ff;\"> Customer Appreciation Dinner 10 am-6 pm!</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-11-22 14:53:15','2023-11-22 14:53:15','',639,'https://kingsvillelivestock.com/?p=5992',0,'revision','',0),(5993,2,'2023-11-22 14:53:53','2023-11-22 14:53:53','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am-<span style=\"color: #ff00ff;\"> Customer Appreciation Dinner 10 am-6 pm!</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-11-22 14:53:53','2023-11-22 14:53:53','',1967,'https://kingsvillelivestock.com/?p=5993',0,'revision','',0),(5994,2,'2023-11-22 15:40:44','2023-11-22 15:40:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 21, 2023, </strong>929 hd; Last week, 2116hd; 1990 a year ago. Compared to last week, all classes of feeder cattle sold steady w/ a lighter test due to the holiday. Slaughter cows &amp; bulls sold $2-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$286.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$262.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$194.00-$226.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$220.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$282.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$274.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$238.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$192.50-$211.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$175.00-$216.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$150.00-$190.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$102.00 - $116.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $101.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 383px; width: 283px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">856lbs @$226.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">932lbs @$220.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 25px;\">Â </td>\n<td style=\"width: 138.531px; height: 25px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 128.469px; height: 26px;\">Â </td>\n<td style=\"width: 138.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 128.469px; height: 10px;\">Â </td>\n<td style=\"width: 138.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 21, 2023 - Market Report','','publish','closed','open','','november-21-2023-market-report','','','2023-11-22 15:40:47','2023-11-22 15:40:47','',0,'https://kingsvillelivestock.com/?p=5994',0,'post','',0),(5996,2,'2023-11-22 15:40:44','2023-11-22 15:40:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 21, 2023, </strong>929 hd; Last week, 2116hd; 1990 a year ago. Compared to last week, all classes of feeder cattle sold steady w/ a lighter test due to the holiday. Slaughter cows &amp; bulls sold $2-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$286.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$262.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$194.00-$226.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$220.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$282.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$274.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$238.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$192.50-$211.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$175.00-$216.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$150.00-$190.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$102.00 - $116.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $101.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 383px; width: 283px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">856lbs @$226.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">932lbs @$220.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 25px;\">Â </td>\n<td style=\"width: 138.531px; height: 25px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 128.469px; height: 26px;\">Â </td>\n<td style=\"width: 138.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 128.469px; height: 10px;\">Â </td>\n<td style=\"width: 138.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 21, 2023 - Market Report','','inherit','closed','closed','','5994-revision-v1','','','2023-11-22 15:40:44','2023-11-22 15:40:44','',5994,'https://kingsvillelivestock.com/?p=5996',0,'revision','',0);
INSERT INTO `b78GM7Ml_posts` VALUES (5997,2,'2023-11-22 15:40:44','2023-11-22 15:40:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 21, 2023, </strong>929 hd; Last week, 2116hd; 1990 a year ago. Compared to last week, all classes of feeder cattle sold steady w/ a lighter test due to the holiday. Slaughter cows &amp; bulls sold $2-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$286.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$262.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$194.00-$226.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$220.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$282.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$274.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$238.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$192.50-$211.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$175.00-$216.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$150.00-$190.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$102.00 - $116.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $101.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 383px; width: 283px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">856lbs @$226.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">932lbs @$220.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 25px;\">Â </td>\n<td style=\"width: 138.531px; height: 25px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 128.469px; height: 26px;\">Â </td>\n<td style=\"width: 138.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 128.469px; height: 10px;\">Â </td>\n<td style=\"width: 138.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 14, 2023 - Market Report','','inherit','closed','closed','','5994-revision-v1','','','2023-11-22 15:40:44','2023-11-22 15:40:44','',5994,'https://kingsvillelivestock.com/?p=5997',0,'revision','',0),(5998,2,'2023-11-22 15:40:47','2023-11-22 15:40:47','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 21, 2023, </strong>929 hd; Last week, 2116hd; 1990 a year ago. Compared to last week, all classes of feeder cattle sold steady w/ a lighter test due to the holiday. Slaughter cows &amp; bulls sold $2-$3 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$286.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$240.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$215.00-$262.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$223.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$194.00-$226.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$220.00</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$282.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$274.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$210.00-$238.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$216.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$192.50-$211.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$175.00-$216.00</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$150.00-$190.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$102.00 - $116.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$90.00 - $101.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$70.00 - $89.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $120.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 383px; width: 283px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">856lbs @$226.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">932lbs @$220.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 25px;\">Â </td>\n<td style=\"width: 138.531px; height: 25px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 128.469px; height: 26px;\">Â </td>\n<td style=\"width: 138.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 128.469px; height: 10px;\">Â </td>\n<td style=\"width: 138.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 21, 2023 - Market Report','','inherit','closed','closed','','5994-revision-v1','','','2023-11-22 15:40:47','2023-11-22 15:40:47','',5994,'https://kingsvillelivestock.com/?p=5998',0,'revision','',0),(5999,2,'2023-11-27 16:55:57','2023-11-27 16:55:57','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/TuesdayNovember-21st-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-5989\">Tuesday,November 21st Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.23.1\" _module_preset=\"default\" column_structure=\"2_5,3_5\"][et_pb_column _builder_version=\"4.23.1\" _module_preset=\"default\" type=\"2_5\"][et_pb_text _builder_version=\"4.23.1\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale-Saturday, December 16th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.23.1\" _module_preset=\"default\" type=\"3_5\"][et_pb_text _builder_version=\"4.23.1\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Aust Land &amp; Cattle: </b>Â <b>100 </b>Â Fancy Blk Angus 2 yr. old, 1050lbs bred heifers. All heifers were AI bred on April 17th to Bismarck Blk Angus bulls &amp; cleaned up w/ Kaiser Reg. Angus LBWT bulls. All heifers originated off Star Ranch, had all shots, gentle &amp; start calving Feb. 10th.</li>\n<li><b>Double J Farms: </b><b>26 </b>Blk Sim-Angus 2 yr. old, 1200lbs bred heifers all 1/2 sisters. All Heifers were AI bred on April 29th to Teheama Tahoe &amp; cleaned up w/ Frank Hazelrigg Blk Angus Show-Me-Select bulls. All heifers are current on all shots, been ultra sounded twice &amp; gentle. Start calving Feb. 1st.</li>\n<li><b>Randy Meyer Inc. Complete Dispersal: </b><b>40 </b>Red Angus 3-4 yr. old, 2nd period. <b>25</b> Red Angus 5-6Â  yr. old,2nd period. <b>25</b> Red Angus 7 yr. old cows,2nd period. <b>25</b> Red Angus 8-9 yr. old cows,2nd period. <b>25</b> Red Angus SS,2nd period. <b>8 </b>Red Angus 6-8 yr. old cows w/ 250lbs calves at side. <b>10 </b>Red Angus 650lbs open heifers. All cows bred Reg. Red Angus Bulls. Bloodlines on bulls: Son of Mulberry, KJL/CLZB Complete, Milwillan Marble Bar, Bieber Rollin Deep, HXC Declaration, Brown JYJ Redemption, &amp; WFL Merlin. Cows start calving on Feb.10th, gentle, had all shots &amp; home-raised, Outstanding set of cows &amp; 1st time to town. Cows will sell at 12 noon on Saturday!Â  Check out our website for pictures &amp; videos!</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-11-27 16:55:57','2023-11-27 16:55:57','',2209,'https://kingsvillelivestock.com/?p=5999',0,'revision','',0),(6000,2,'2023-11-27 19:20:47','2023-11-27 19:20:47','','Tuesday,November 28th Feeder Cattle Consignments','','inherit','closed','closed','','tuesdaynovember-28th-feeder-cattle-consignments','','','2023-11-27 19:20:47','2023-11-27 19:20:47','',0,'https://kingsvillelivestock.com/wp-content/uploads/2023/11/TuesdayNovember-28th-Feeder-Cattle-Consignments.pdf',0,'attachment','application/pdf',0),(6001,2,'2023-11-27 19:20:54','2023-11-27 19:20:54','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/TuesdayNovember-28th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-6000\">Tuesday,November 28th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.23.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.23.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale-Saturday, December 16th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.23.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Aust Land &amp; Cattle: </b>Â <b>100 </b>Â Fancy Blk Angus 2 yr. old, 1050lbs bred heifers. All heifers were AI bred on April 17th to Bismarck Blk Angus bulls &amp; cleaned up w/ Kaiser Reg. Angus LBWT bulls. All heifers originated off Star Ranch, had all shots, gentle &amp; start calving Feb. 10th.</li>\n<li><b>Double J Farms: </b><b>26 </b>Blk Sim-Angus 2 yr. old, 1200lbs bred heifers all 1/2 sisters. All Heifers were AI bred on April 29th to Teheama Tahoe &amp; cleaned up w/ Frank Hazelrigg Blk Angus Show-Me-Select bulls. All heifers are current on all shots, been ultra sounded twice &amp; gentle. Start calving Feb. 1st.</li>\n<li><b>Randy Meyer Inc. Complete Dispersal: </b><b>40 </b>Red Angus 3-4 yr. old, 2nd period. <b>25</b> Red Angus 5-6Â  yr. old,2nd period. <b>25</b> Red Angus 7 yr. old cows,2nd period. <b>25</b> Red Angus 8-9 yr. old cows,2nd period. <b>25</b> Red Angus SS,2nd period. <b>8 </b>Red Angus 6-8 yr. old cows w/ 250lbs calves at side. <b>10 </b>Red Angus 650lbs open heifers. All cows bred Reg. Red Angus Bulls. Bloodlines on bulls: Son of Mulberry, KJL/CLZB Complete, Milwillan Marble Bar, Bieber Rollin Deep, HXC Declaration, Brown JYJ Redemption, &amp; WFL Merlin. Cows start calving on Feb.10th, gentle, had all shots &amp; home-raised, Outstanding set of cows &amp; 1st time to town. Cows will sell at 12 noon on Saturday!Â  Check out our website for pictures &amp; videos!</li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-11-27 19:20:54','2023-11-27 19:20:54','',2209,'https://kingsvillelivestock.com/?p=6001',0,'revision','',0),(6002,2,'2023-11-27 21:06:40','2023-11-27 21:06:40','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Cattle Sales\" content_max_width=\"800px\" admin_label=\"Fullwidth Header\" _builder_version=\"4.16\" title_level=\"h2\" title_font=\"Lato||||||||\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"20px\" background_color=\"rgba(255, 255, 255, 0)\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" custom_margin=\"|||\" custom_padding=\"10%||10%||true|false\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" locked=\"off\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Section\" _builder_version=\"4.16\" background_color=\"#7d7a73\" border_width_all=\"3px\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" background_color=\"#f1ece9\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font_size=\"30px\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" global_colors_info=\"{}\"]<h1><span style=\"color: #4f4f4f;\">TUESDAY CATTLE CONSIGNMENTS</span></h1>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" global_colors_info=\"{}\"]<p><a href=\"https://kingsvillelivestock.com/wp-content/uploads/2023/11/TuesdayNovember-28th-Feeder-Cattle-Consignments.pdf\" rel=\"attachment wp-att-6000\">Tuesday,November 28th Feeder Cattle Consignments</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.23.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.23.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" _module_preset=\"default\" global_colors_info=\"{}\"]<h1><span style=\"color: #ff0000;\"><strong>Special Cow &amp; Bull Sale-Saturday, December 16th @ 11am</strong></span></h1>[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.23.1\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><b>Cows </b><b>Consigned:Â  </b>Â <b><i>Cows sell following Bulls</i></b></p>\n<ul>\n<li><b>Aust Land &amp; Cattle: </b>Â <b>100 </b>Â Fancy Blk Angus 2 yr. old, 1050lbs bred heifers. All heifers were AI bred on April 17th to Bismarck Blk Angus bulls &amp; cleaned up w/ Kaiser Reg. Angus LBWT bulls. All heifers originated off Star Ranch, had all shots, gentle &amp; start calving Feb. 10th.</li>\n<li><b>Double J Farms: </b><b>26 </b>Blk Sim-Angus 2 yr. old, 1200lbs bred heifers all 1/2 sisters. All Heifers were AI bred on April 29th to Teheama Tahoe &amp; cleaned up w/ Frank Hazelrigg Blk Angus Show-Me-Select bulls. All heifers are current on all shots, been ultra sounded twice &amp; gentle. Start calving Feb. 1st.</li>\n<li><b>Randy Meyer Inc. Complete Dispersal: </b><b>40 </b>Red Angus 3-4 yr. old, 2nd period. <b>25</b> Red Angus 5-6Â  yr. old,2nd period. <b>25</b> Red Angus 7 yr. old cows,2nd period. <b>25</b> Red Angus 8-9 yr. old cows,2nd period. <b>25</b> Red Angus SS,2nd period. <b>8 </b>Red Angus 6-8 yr. old cows w/ 250lbs calves at side. <b>10 </b>Red Angus 650lbs open heifers. All cows bred Reg. Red Angus Bulls. Bloodlines on bulls: Son of Mulberry, KJL/CLZB Complete, Milwillan Marble Bar, Bieber Rollin Deep, HXC Declaration, Brown JYJ Redemption, &amp; WFL Merlin. Cows start calving on Feb.10th, gentle, had all shots &amp; home-raised, Outstanding set of cows &amp; 1st time to town. Cows will sell at 12 noon on Saturday!Â  Check out our website for pictures &amp; videos!<a href=\"https://drive.google.com/drive/folders/1FbgRlISzlBo2mVetq6TCkAvA9JhgfwcU?usp=sharing\">Randy Meyer Bull Reg info &amp; videos</a></li>\n</ul>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"buy-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Buying Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before buying cattle at our auction, please click on the DOWNLOAD PDF link below to download, print, and complete our form. Â Bring the completed form with you to the auction.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/buying-cattle-registration-form.pdf\" url_new_window=\"on\" button_text=\"REGISTRATION PDF\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" background_color=\"#7b6847\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-79.jpg\" background_blend=\"overlay\" custom_margin=\"||||false|false\" custom_padding=\"7.7%||7.7%||true|false\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_divider show_divider=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_divider][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" background_color=\"rgba(246,248,247,0.23)\" custom_padding=\"100px||100px||false|false\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" header_font=\"Lato|700|||||||\" header_text_align=\"center\" header_text_color=\"#f6f8f7\" header_font_size=\"48px\" header_text_shadow_style=\"preset1\" global_colors_info=\"{}\"]<h1>BUY CATTLE ONLINE</h1>\r[/et_pb_text][et_pb_button button_url=\"https://www.cattleusa.com\" url_new_window=\"on\" button_text=\"GO TO CATTLE USA\" button_alignment=\"center\" _builder_version=\"4.16\" custom_button=\"on\" button_text_color=\"#7b6847\" button_bg_color=\"#f6f8f7\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" module_id=\"sell-cattle\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Selling Cattle</h2>\r[/et_pb_text][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.16\" global_colors_info=\"{}\"]Before selling any of your livestock, please click on the button below to download, print, and complete our required forms to bring with you to the auction house.\r[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Selling-Docs.pdf\" url_new_window=\"on\" button_text=\"DOWNLOAD SELLING FORMS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','CATTLE SALES','','inherit','closed','closed','','2209-revision-v1','','','2023-11-27 21:06:40','2023-11-27 21:06:40','',2209,'https://kingsvillelivestock.com/?p=6002',0,'revision','',0),(6003,2,'2023-11-27 21:25:19','2023-11-27 21:25:19','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am -<span style=\"color: #ff00ff;\"> Customer Appreciation Dinner 10 am-6 pm!</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal sale in December!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-11-27 21:25:19','2023-11-27 21:25:19','',639,'https://kingsvillelivestock.com/?p=6003',0,'revision','',0),(6004,2,'2023-11-27 21:25:56','2023-11-27 21:25:56','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>NOVEMBER 2023 AUCTION DATES:</strong></h1>\n<p><span style=\"color: #000000;\"><strong>Nov. 28th @ 10:30 am<br /></strong>Feeder Cattle Sale</span></p>\n<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am-<span style=\"color: #ff00ff;\"> Customer Appreciation Dinner 10 am-6 pm!</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal sale in December!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-11-27 21:25:56','2023-11-27 21:25:56','',1967,'https://kingsvillelivestock.com/?p=6004',0,'revision','',0),(6005,2,'2023-11-29 15:14:05','2023-11-29 15:14:05','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am -<span style=\"color: #ff00ff;\"> Customer Appreciation Dinner 10 am-6 pm!</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal sale in December!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','639-revision-v1','','','2023-11-29 15:14:05','2023-11-29 15:14:05','',639,'https://kingsvillelivestock.com/?p=6005',0,'revision','',0),(6006,2,'2023-11-29 15:14:43','2023-11-29 15:14:43','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.16\" module_alignment=\"center\" animation_style=\"slide\" animation_direction=\"top\" animation_intensity_slide=\"2%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][et_pb_fullwidth_header title=\"Kingsville Livestock Auction\" text_orientation=\"center\" content_max_width=\"900px\" _builder_version=\"4.16\" title_font=\"Lato||||||||\" title_text_align=\"center\" title_font_size=\"60px\" title_line_height=\"1.2em\" content_font=\"||||||||\" content_font_size=\"14px\" subhead_font_size=\"25px\" background_enable_color=\"off\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-39.jpg\" custom_button_one=\"on\" button_one_text_size=\"18px\" button_one_bg_color=\"#02d002\" button_one_border_width=\"8px\" button_one_border_color=\"#02d002\" button_one_border_radius=\"0px\" button_one_letter_spacing=\"1px\" button_one_font=\"Lato|700|||||||\" button_one_use_icon=\"off\" custom_button_two=\"on\" button_two_text_size=\"18px\" button_two_text_color=\"#353740\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"8px\" button_two_border_color=\"#ffffff\" button_two_border_radius=\"0px\" button_two_letter_spacing=\"1px\" button_two_font=\"Lato|700|||||||\" button_two_use_icon=\"off\" module_alignment=\"center\" custom_margin=\"|||\" custom_padding=\"12%||12%|\" title_text_shadow_style=\"preset1\" button_one_letter_spacing_hover=\"1px\" button_two_letter_spacing_hover=\"1px\" global_colors_info=\"{}\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"on\" button_one_letter_spacing__hover=\"1px\" button_two_letter_spacing__hover_enabled=\"on\" button_two_letter_spacing__hover=\"1px\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_fullwidth_header][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" specialty=\"on\" custom_padding_last_edited=\"on|phone\" module_id=\"upcoming-auctions\" _builder_version=\"4.16\" background_color=\"#f1ece9\" min_height=\"1267px\" custom_margin=\"-12px|||||\" custom_padding=\"||13px|||\" custom_padding_tablet=\"\" custom_padding_phone=\"100px||100px||true|false\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" min_height=\"531px\" custom_padding=\"|||9px||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" custom_margin=\"-86px|||||\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><strong>DECEMBER 2023 AUCTION DATES:</strong></h1>\n<p><strong>Dec. 5th @ 10:30 am-<span style=\"color: #ff00ff;\"> Customer Appreciation Dinner 10 am-6 pm!</span><br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 12th @ 10:30am<br /></strong>Calf &amp; Yearling Cattle Sale</span></p>\n<p><span style=\"color: #000000;\"><strong>Dec. 16th @ 11:00 am<br /></strong>Special Cow &amp; Bull Sale</span></p>\n<p><strong>Dec. 19th @ 10:30 am<br /></strong>QSA Feeder Cattle Sale</p>\n<p><span style=\"color: #000000;\"><strong>Dec. 26th @ 10:30 am<br /></strong>Feeder Cattle Sale-</span><span style=\"color: #ff0000;\"><strong>Canceled due to Christmas!</strong></span></p>\n<p><span style=\"color: #ff0000;\"><strong>There will be NO horse/tack or small animal sale in December!Â </strong></span></p>[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_margin=\"-39px|||||\" custom_padding=\"||15px|||\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/anstine-auction-llc/\" button_text=\"UPCOMING AUCTIONS\" button_alignment=\"center\" _builder_version=\"4.16\" custom_margin=\"||10px|||\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" _builder_version=\"4.16\" custom_margin=\"||||false|false\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#buy-cattle\" button_text=\"BUY CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/cattle-sales/#sell-cattle\" button_text=\"SELL CATTLE\" button_alignment=\"center\" button_alignment_tablet=\"\" button_alignment_phone=\"\" button_alignment_last_edited=\"on|desktop\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"15px||15px||true|false\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/market-reports/\" button_text=\"VIEW MARKET REPORTS\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_map address=\"MO-58, Kingsville, MO, USA\" zoom_level=\"17\" address_lat=\"38.740100581804\" address_lng=\"-94.055693421127\" _builder_version=\"4.2.2\" height=\"600px\" box_shadow_style=\"preset3\" box_shadow_vertical=\"45px\" box_shadow_blur=\"50px\" box_shadow_spread=\"-30px\" global_module=\"1062\" global_colors_info=\"{}\"][et_pb_map_pin title=\"Kingsville Livestock Auction\" pin_address=\"1630 SW 58 Hwy, Kingsville, MO 64061, USA\" zoom_level=\"15\" pin_address_lat=\"38.739690973604\" pin_address_lng=\"-94.055972099304\" _builder_version=\"4.2.2\" global_colors_info=\"{}\"][/et_pb_map_pin][/et_pb_map][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" use_custom_gutter=\"on\" gutter_width=\"1\" specialty=\"on\" background_color_1=\"#f1ece9\" background_color_2=\"#f1ece9\" padding_top_1=\"0px\" padding_bottom_1=\"0px\" admin_label=\"Image Gallery Section\" module_class=\" et_pb_specialty_fullwidth\" _builder_version=\"4.16\" background_color=\"#f1ece9\" inner_width=\"100%\" inner_width_tablet=\"100%\" inner_width_phone=\"\" inner_width_last_edited=\"on|desktop\" inner_max_width=\"100%\" inner_max_width_tablet=\"100%\" inner_max_width_phone=\"\" inner_max_width_last_edited=\"on|desktop\" custom_padding=\"0px|0px|0px|0px\" border_color_all=\"#f1ece9\" make_fullwidth=\"on\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/Kingsville-Auctions.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_row_inner _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-96-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner column_structure=\"1_2,1_2\" use_custom_gutter=\"on\" gutter_width=\"1\" _builder_version=\"4.16\" custom_padding=\"0px|0px|0px|0px\" global_colors_info=\"{}\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-27.png\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-38-1.jpg\" show_in_lightbox=\"on\" use_overlay=\"on\" overlay_icon_color=\"#ffffff\" hover_overlay_color=\"rgba(0,0,0,0.3)\" hover_icon=\"&#x30;||divi||400\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" box_shadow_style=\"preset7\" box_shadow_horizontal=\"0px\" box_shadow_vertical=\"0px\" box_shadow_spread=\"8px\" box_shadow_color=\"#ffffff\" locked=\"off\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section fb_built=\"1\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature Section\" _builder_version=\"4.16\" background_color=\"#f1ece9\" custom_padding=\"60px||60px||true|\" custom_padding_tablet=\"\" custom_padding_phone=\"||120px||false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" custom_padding_last_edited=\"on|phone\" admin_label=\"Feature 01 Area\" _builder_version=\"4.16\" custom_padding=\"60px|0px|0px|0px\" custom_padding_tablet=\"\" custom_padding_phone=\"60px|0px|60px|0px|false|false\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-26.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"|||\" custom_padding=\"|||40px\" custom_padding_tablet=\"|||0px\" custom_padding_phone=\"\" custom_padding_last_edited=\"on|tablet\" animation_style=\"slide\" animation_direction=\"right\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Our Commitment</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>It doesn\'t matter if you unload 1 or 250, we want you to have the best experience possible on sale day. We strive daily to market your cattle to the best buyers in the midwest. We enjoy serving the customers of North-Central and Southern Missouri. Â We have buyers for all breeds of cattle.</p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/\" button_text=\"ABOUT US\" button_alignment=\"left\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Feature 02 Area\" _builder_version=\"4.16\" background_color=\"#696353\" custom_margin=\"||180px|\" custom_margin_tablet=\"\" custom_margin_phone=\"||90px||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"0px|0px|0px|0px\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"5%|5%|5%|5%\" custom_padding_tablet=\"0px|0px|0px|0px\" custom_padding_last_edited=\"off|desktop\" global_colors_info=\"{}\" padding_tablet=\"0px|0px|0px|0px\" padding_last_edited=\"off|desktop\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" text_font_size=\"16px\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" background_layout=\"dark\" module_alignment=\"center\" custom_margin=\"||15px|\" custom_padding=\"|||\" animation_direction=\"left\" locked=\"off\" global_colors_info=\"{}\"]<h2>Livestock Info</h2>[/et_pb_text][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" text_text_color=\"rgba(255,255,255,0.66)\" header_font=\"||||||||\" background_layout=\"dark\" max_width=\"525px\" module_alignment=\"left\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" locked=\"off\" global_colors_info=\"{}\"]<p>We have been doing this for 32 years. Â Follow our best practices to get the most out of your time at the auction.Â </p>[/et_pb_text][et_pb_button button_url=\"https://kingsvillelivestock.com/about-us/#livestock\" button_text=\"LEARN MORE\" _builder_version=\"4.16\" background_layout=\"dark\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-18.png\" force_fullwidth=\"on\" align_tablet=\"center\" align_phone=\"\" align_last_edited=\"on|desktop\" _builder_version=\"4.16\" custom_margin=\"-20px||-100px|\" animation_style=\"slide\" animation_direction=\"left\" animation_intensity_slide=\"8%\" animation_starting_opacity=\"100%\" box_shadow_style=\"preset1\" box_shadow_blur=\"80px\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" admin_label=\"Testimonials\" _builder_version=\"4.16\" use_background_color_gradient=\"on\" background_color_gradient_direction=\"90deg\" background_color_gradient_stops=\"rgba(0,0,0,0.75) 0%|rgba(0,0,0,0) 100%\" background_color_gradient_overlays_image=\"on\" background_color_gradient_start=\"rgba(0,0,0,0.75)\" background_color_gradient_end=\"rgba(0,0,0,0)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-33.jpg\" background_position=\"bottom_center\" animation_style=\"slide\" animation_direction=\"bottom\" animation_intensity_slide=\"4%\" animation_starting_opacity=\"100%\" collapsed=\"on\" global_colors_info=\"{}\"][et_pb_fullwidth_slider _builder_version=\"4.16\" header_level=\"h4\" header_font=\"Lato|700|||||||\" header_font_size=\"42px\" header_line_height=\"1.5em\" body_font=\"||||||||\" background_color=\"rgba(0,0,0,0)\" background_color_gradient_direction=\"90deg\" header_font_size_tablet=\"\" header_font_size_phone=\"26px\" header_font_size_last_edited=\"on|phone\" header_text_shadow_style=\"preset2\" header_text_shadow_horizontal_length=\"0em\" header_text_shadow_vertical_length=\"0em\" header_text_shadow_blur_strength=\"0em\" header_text_shadow_color=\"rgba(0,0,0,0)\" box_shadow_style=\"preset6\" box_shadow_blur=\"10px\" box_shadow_color=\"rgba(0,0,0,0.1)\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][et_pb_slide heading=\"Pat\'s Kitchen\" _builder_version=\"4.16\" header_font=\"||||||||\" body_font=\"Lato||||||||\" body_line_height=\"1.9em\" text_orientation=\"left\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\" sticky_transition=\"on\"]<p>Grab a great meal while you buy and/or sell your cattle</p>[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Trailers For Sale\" _builder_version=\"4.16\" background_color=\"#f7f7f7\" parallax=\"on\" min_height=\"919px\" custom_padding=\"60px||60px||true|\" collapsed=\"off\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"Trailers For Sale Area\" _builder_version=\"4.16\" locked=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Title\" _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"Lato||||||||\" header_2_font_size=\"36px\" header_2_line_height=\"1.5em\" custom_padding=\"|||\" animation_direction=\"left\" global_colors_info=\"{}\"]<h2>Trailers For Sale</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" text_font=\"||||||||\" header_font=\"||||||||\" header_2_font=\"|||on|||||\" header_2_font_size=\"20px\" animation_style=\"flip\" animation_direction=\"left\" animation_intensity_flip=\"20%\" animation_starting_opacity=\"100%\" global_colors_info=\"{}\"]<p>We have a wide selection of livestock, flatbed, hay, cargo, and bobcat trailers. We carry new and used trailers from brands such as <span style=\"text-decoration: underline;\"><strong><a href=\"http://www.coosetrailers.com\">Coose Livestock Trailers</a></strong></span>, <span style=\"text-decoration: underline;\"><strong><a href=\"https://www.mheby.com/livestock-trailers-product.html\">EBY Livestock Trailers</a></strong></span>, and <span style=\"text-decoration: underline;\"><strong><a href=\"http://haytrailer.com/hay-trailer.htm\">EZ-Haul Flatbed &amp; Hay Handlers</a></strong></span>.</p>\n<h2><strong>We will also accept trade-in\'s</strong></h2>\n<p>Keep us in mind if you are looking to buy or trade in your next trailer. We also do Commodity Trades for trailers of all kinds.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"13\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_pagination=\"off\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_blog][et_pb_button button_url=\"https://kingsvillelivestock.com/trailers-for-sale/\" button_text=\"SEE ALL TRAILERS FOR SALE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"Footer Area\" _builder_version=\"4.2\" background_color=\"rgba(0,0,0,0.38)\" background_image=\"https://kingsvillelivestock.com/wp-content/uploads/2020/01/HPG-Media-KINGSVILLE-74.jpg\" background_blend=\"overlay\" custom_padding=\"0%||0%||true|false\" global_module=\"894\" saved_tabs=\"all\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.16\" min_height=\"123px\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/contact/\" button_text=\"Contact Us For All Your Auction Needs\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','HOME','','inherit','closed','closed','','1967-revision-v1','','','2023-11-29 15:14:43','2023-11-29 15:14:43','',1967,'https://kingsvillelivestock.com/?p=6006',0,'revision','',0),(6007,2,'2023-11-29 16:41:09','2023-11-29 16:41:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 28, 2023, </strong>1885hd; Last week, 929hd; 3367 a year ago. Steers weighing 550lbs &amp; down sold steady w/ spots up to $5 higher. 550-750lbs steer calves sold steady-$7 lower. Heifer calves sold $5-$6 lower. All yearling cattle sold fully steady. Slaughter cows sold steady-$3 higher &amp; bulls sold $5-$10 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$320.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$302.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$224.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$223.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$249.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$245.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$205.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$165.00-$185.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$135.00-$165.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$98.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$74.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $138.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 383px; width: 283px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">768lbs @$232.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">825lbs @$224.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">916lbs @$223.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 25px;\">Â </td>\n<td style=\"width: 138.531px; height: 25px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 128.469px; height: 26px;\">Â </td>\n<td style=\"width: 138.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 128.469px; height: 10px;\">Â </td>\n<td style=\"width: 138.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 28, 2023 - Market Report','','publish','closed','open','','november-28-2023-market-report','','','2023-11-29 16:41:12','2023-11-29 16:41:12','',0,'https://kingsvillelivestock.com/?p=6007',0,'post','',0),(6009,2,'2023-11-29 16:41:09','2023-11-29 16:41:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 28, 2023, </strong>1885hd; Last week, 929hd; 3367 a year ago. Steers weighing 550lbs &amp; down sold steady w/ spots up to $5 higher. 550-750lbs steer calves sold steady-$7 lower. Heifer calves sold $5-$6 lower. All yearling cattle sold fully steady. Slaughter cows sold steady-$3 higher &amp; bulls sold $5-$10 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$320.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$302.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$224.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$223.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$249.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$245.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$205.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$165.00-$185.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$135.00-$165.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$98.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$74.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $138.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 383px; width: 283px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">768lbs @$232.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">825lbs @$224.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">916lbs @$223.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 25px;\">Â </td>\n<td style=\"width: 138.531px; height: 25px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 128.469px; height: 26px;\">Â </td>\n<td style=\"width: 138.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 128.469px; height: 10px;\">Â </td>\n<td style=\"width: 138.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 28, 2023 - Market Report','','inherit','closed','closed','','6007-revision-v1','','','2023-11-29 16:41:09','2023-11-29 16:41:09','',6007,'https://kingsvillelivestock.com/?p=6009',0,'revision','',0),(6010,2,'2023-11-29 16:41:09','2023-11-29 16:41:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 28, 2023, </strong>1885hd; Last week, 929hd; 3367 a year ago. Steers weighing 550lbs &amp; down sold steady w/ spots up to $5 higher. 550-750lbs steer calves sold steady-$7 lower. Heifer calves sold $5-$6 lower. All yearling cattle sold fully steady. Slaughter cows sold steady-$3 higher &amp; bulls sold $5-$10 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$320.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$302.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$224.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$223.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$249.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$245.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$205.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$165.00-$185.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$135.00-$165.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$98.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$74.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $138.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 383px; width: 283px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">768lbs @$232.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">825lbs @$224.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">916lbs @$223.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 25px;\">Â </td>\n<td style=\"width: 138.531px; height: 25px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 128.469px; height: 26px;\">Â </td>\n<td style=\"width: 138.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 128.469px; height: 10px;\">Â </td>\n<td style=\"width: 138.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 21, 2023 - Market Report','','inherit','closed','closed','','6007-revision-v1','','','2023-11-29 16:41:09','2023-11-29 16:41:09','',6007,'https://kingsvillelivestock.com/?p=6010',0,'revision','',0),(6011,2,'2023-11-29 16:41:12','2023-11-29 16:41:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><strong>November 28, 2023, </strong>1885hd; Last week, 929hd; 3367 a year ago. Steers weighing 550lbs &amp; down sold steady w/ spots up to $5 higher. 550-750lbs steer calves sold steady-$7 lower. Heifer calves sold $5-$6 lower. All yearling cattle sold fully steady. Slaughter cows sold steady-$3 higher &amp; bulls sold $5-$10 higher. Listen to our market report on 100.7 KMZU every Wednesday at 12:30 pm and again on Thursday at 6:30 am &amp; 12:30 pm by Jared Anstine. Office (816) 597-3331, Rick (816) 258-3421, Jeremy (816) 716-9288, and Jared (816) 878-5229.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.19.4\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 297px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 135.344px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>STEERS</strong></span></td>\n<td style=\"width: 145.656px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$330.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">400-500</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$250.00-$320.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">500-600</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$230.00-$302.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">600-700</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$250.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">700-800</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$232.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">800-900</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$224.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 135.344px; height: 23px;\">900-1000</td>\n<td style=\"width: 145.656px; height: 23px;\"><span style=\"font-weight: 400;\">$223.85</span></td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<table style=\"margin-left: auto; margin-right: auto; height: 184px; width: 317px;\" width=\"330\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 146.75px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>HEIFERS</strong></span></td>\n<td style=\"width: 154.25px; text-align: center; height: 23px;\"><span style=\"text-decoration: underline;\"><strong>PRICE</strong></span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\"><span style=\"font-weight: 400;\">300-400</span></td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$220.00-$279.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">400-500</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$200.00-$249.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">500-600</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$190.00-$245.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">600-700</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$180.00-$225.00</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">700-800</td>\n<td style=\"width: 154.25px; height: 23px;\"><span style=\"font-weight: 400;\">$175.00-$205.50</span></td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">800-900</td>\n<td style=\"width: 154.25px; height: 23px;\">$165.00-$185.50</td>\n</tr>\n<tr style=\"text-align: center;\">\n<td style=\"width: 146.75px; height: 23px;\">900-1000</td>\n<td style=\"width: 154.25px; height: 23px;\">$135.00-$165.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Slaughter Cows &amp; Bulls</strong></span></p>\n<p>&nbsp;</p>\n<table style=\"height: 154px;\" width=\"329\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">High Yielding</td>\n<td style=\"width: 156.5px; height: 23px;\">$98.00 - $109.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Medium Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$85.00 - $97.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Low Yield</td>\n<td style=\"width: 156.5px; height: 23px;\">$74.00 - $84.00</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 156.5px; height: 23px;\">Bulls</td>\n<td style=\"width: 156.5px; height: 23px;\">$100.00 - $138.00</td>\n</tr>\n</tbody>\n</table>\n<p>&nbsp;</p>[/et_pb_text][et_pb_text _builder_version=\"4.23.1\" hover_enabled=\"0\" border_width_all=\"3px\" border_color_all=\"#ff0000\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><strong>Load Lots</strong></span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<table style=\"height: 383px; width: 283px;\" width=\"338\">\n<tbody>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">768lbs @$232.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">825lbs @$224.50</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Steers</td>\n<td style=\"width: 138.531px; height: 23px;\">916lbs @$223.85</td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 25px;\">Â </td>\n<td style=\"width: 138.531px; height: 25px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 26px;\">\n<td style=\"width: 128.469px; height: 26px;\">Â </td>\n<td style=\"width: 138.531px; height: 26px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 23px;\">\n<td style=\"width: 128.469px; height: 23px;\">Â </td>\n<td style=\"width: 138.531px; height: 23px;\">Â </td>\n</tr>\n<tr style=\"height: 10px;\">\n<td style=\"width: 128.469px; height: 10px;\">Â </td>\n<td style=\"width: 138.531px; height: 10px;\">Â </td>\n</tr>\n</tbody>\n</table>[/et_pb_text][et_pb_text _builder_version=\"4.22.2\" global_colors_info=\"{}\"]<h1>Feeder cattle that are short weaned or new crop calves that have not had shots or are lesser quality will be lower than the reported prices above.</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_button button_url=\"https://kingsvillelivestock.com/#upcoming-auctions\" button_text=\"VIEW UPCOMING AUCTION SCHEDULE\" button_alignment=\"center\" _builder_version=\"4.16\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','November 28, 2023 - Market Report','','inherit','closed','closed','','6007-revision-v1','','','2023-11-29 16:41:12','2023-11-29 16:41:12','',6007,'https://kingsvillelivestock.com/?p=6011',0,'revision','',0);
/*!40000 ALTER TABLE `b78GM7Ml_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_sbi_instagram_feed_locator`
--

DROP TABLE IF EXISTS `b78GM7Ml_sbi_instagram_feed_locator`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `b78GM7Ml_sbi_instagram_feed_locator` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `feed_id` varchar(50) NOT NULL DEFAULT '',
  `post_id` bigint(20) unsigned NOT NULL,
  `html_location` varchar(50) NOT NULL DEFAULT 'unknown',
  `shortcode_atts` longtext NOT NULL,
  `last_update` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `feed_id` (`feed_id`),
  KEY `post_id` (`post_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `b78GM7Ml_sbi_instagram_feed_locator`
--

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

--
-- Table structure for table `b78GM7Ml_sbi_instagram_feeds_posts`
--

DROP TABLE IF EXISTS `b78GM7Ml_sbi_instagram_feeds_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `b78GM7Ml_sbi_instagram_feeds_posts` (
  `record_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id` int(11) unsigned NOT NULL,
  `instagram_id` varchar(1000) NOT NULL DEFAULT '',
  `feed_id` varchar(1000) NOT NULL DEFAULT '',
  `hashtag` varchar(1000) NOT NULL DEFAULT '',
  PRIMARY KEY (`record_id`),
  KEY `hashtag` (`hashtag`(100)),
  KEY `feed_id` (`feed_id`(100))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `b78GM7Ml_sbi_instagram_feeds_posts`
--

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

--
-- Table structure for table `b78GM7Ml_sbi_instagram_posts`
--

DROP TABLE IF EXISTS `b78GM7Ml_sbi_instagram_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `b78GM7Ml_sbi_instagram_posts` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `created_on` datetime DEFAULT NULL,
  `instagram_id` varchar(1000) NOT NULL DEFAULT '',
  `time_stamp` datetime DEFAULT NULL,
  `top_time_stamp` datetime DEFAULT NULL,
  `json_data` longtext NOT NULL,
  `media_id` varchar(1000) NOT NULL DEFAULT '',
  `sizes` varchar(1000) NOT NULL DEFAULT '',
  `aspect_ratio` decimal(4,2) NOT NULL DEFAULT 0.00,
  `images_done` tinyint(1) NOT NULL DEFAULT 0,
  `last_requested` date DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `b78GM7Ml_sbi_instagram_posts`
--

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

--
-- Table structure for table `b78GM7Ml_term_relationships`
--

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

--
-- Dumping data for table `b78GM7Ml_term_relationships`
--

LOCK TABLES `b78GM7Ml_term_relationships` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_term_relationships` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_term_relationships` VALUES (29,2,0),(62,6,0),(172,6,0),(173,5,0),(174,6,0),(175,5,0),(176,6,0),(177,5,0),(178,6,0),(179,6,0),(180,5,0),(450,5,0),(455,5,0),(470,5,0),(479,5,0),(503,5,0),(506,5,0),(513,5,0),(516,5,0),(522,5,0),(527,5,0),(532,5,0),(537,5,0),(542,5,0),(548,5,0),(553,5,0),(578,5,0),(688,8,0),(688,9,0),(688,10,0),(721,3,0),(722,3,0),(727,3,0),(894,8,0),(894,9,0),(894,11,0),(935,9,0),(935,11,0),(935,12,0),(947,13,0),(947,15,0),(947,38,0),(947,39,0),(970,13,0),(970,17,0),(970,18,0),(970,31,0),(970,32,0),(970,35,0),(970,40,0),(987,21,0),(1005,13,0),(1005,17,0),(1005,18,0),(1005,19,0),(1005,32,0),(1005,34,0),(1005,40,0),(1011,8,0),(1011,11,0),(1011,23,0),(1014,8,0),(1014,11,0),(1014,24,0),(1014,25,0),(1017,13,0),(1017,17,0),(1017,18,0),(1017,32,0),(1017,36,0),(1017,37,0),(1017,40,0),(1023,13,0),(1023,18,0),(1023,27,0),(1023,28,0),(1023,29,0),(1023,30,0),(1062,8,0),(1062,11,0),(1062,24,0),(1062,25,0),(1092,41,0),(1123,3,0),(1139,41,0),(1152,41,0),(1197,41,0),(1209,41,0),(1325,42,0),(1329,41,0),(1395,42,0),(1400,41,0),(1451,3,0),(1457,41,0),(1470,41,0),(1524,41,0),(1540,41,0),(1561,13,0),(1574,41,0),(1609,41,0),(1625,41,0),(1640,41,0),(1667,41,0),(1725,41,0),(1837,41,0),(1856,41,0),(1881,41,0),(1895,41,0),(1924,41,0),(1949,41,0),(1979,41,0),(2007,41,0),(2025,41,0),(2041,41,0),(2056,41,0),(2071,41,0),(2122,41,0),(2157,3,0),(2178,41,0),(2204,41,0),(2246,41,0),(2268,3,0),(2322,41,0),(2351,41,0),(2417,41,0),(2458,41,0),(2502,41,0),(2520,41,0),(2557,41,0),(2588,41,0),(2615,41,0),(2629,41,0),(2650,41,0),(2676,41,0),(2697,41,0),(2712,41,0),(2727,41,0),(2751,41,0),(2776,41,0),(2795,41,0),(2822,41,0),(2843,41,0),(2857,41,0),(2870,41,0),(2891,41,0),(2944,41,0),(2962,41,0),(2990,41,0),(3014,41,0),(3033,41,0),(3050,41,0),(3088,41,0),(3119,41,0),(3135,41,0),(3153,41,0),(3192,41,0),(3222,41,0),(3283,41,0),(3317,41,0),(3344,41,0),(3366,41,0),(3390,41,0),(3402,41,0),(3418,41,0),(3441,41,0),(3468,41,0),(3488,41,0),(3512,41,0),(3527,41,0),(3550,41,0),(3572,41,0),(3586,41,0),(3604,41,0),(3648,41,0),(3671,41,0),(3693,41,0),(3727,41,0),(3744,41,0),(3760,41,0),(3778,41,0),(3787,13,0),(3799,41,0),(3800,41,0),(3822,41,0),(3841,41,0),(3865,41,0),(3874,41,0),(3895,41,0),(3913,41,0),(3939,41,0),(3955,41,0),(3973,41,0),(4000,41,0),(4019,41,0),(4031,41,0),(4046,41,0),(4072,41,0),(4089,41,0),(4109,41,0),(4145,41,0),(4163,41,0),(4178,41,0),(4204,41,0),(4230,41,0),(4248,41,0),(4262,41,0),(4298,41,0),(4340,41,0),(4357,41,0),(4378,41,0),(4411,41,0),(4435,41,0),(4462,41,0),(4474,41,0),(4492,41,0),(4507,41,0),(4527,41,0),(4539,41,0),(4555,41,0),(4584,41,0),(4603,41,0),(4622,41,0),(4635,41,0),(4671,41,0),(4691,41,0),(4713,41,0),(4733,41,0),(4749,41,0),(4772,41,0),(4808,41,0),(4825,41,0),(4846,41,0),(4857,41,0),(4878,41,0),(4896,41,0),(4909,41,0),(4929,41,0),(4965,41,0),(4978,41,0),(4998,41,0),(5008,41,0),(5032,41,0),(5043,41,0),(5064,41,0),(5088,41,0),(5107,41,0),(5126,41,0),(5147,41,0),(5172,41,0),(5198,41,0),(5215,41,0),(5240,41,0),(5270,41,0),(5302,41,0),(5322,41,0),(5335,41,0),(5343,41,0),(5359,41,0),(5403,41,0),(5426,41,0),(5451,41,0),(5472,41,0),(5497,41,0),(5519,41,0),(5538,41,0),(5570,41,0),(5571,41,0),(5601,41,0),(5619,41,0),(5634,41,0),(5670,41,0),(5686,41,0),(5702,41,0),(5718,41,0),(5735,41,0),(5759,41,0),(5769,41,0),(5804,41,0),(5839,41,0),(5879,41,0),(5912,41,0),(5926,41,0),(5945,41,0),(5968,41,0),(5994,41,0),(6007,41,0);
/*!40000 ALTER TABLE `b78GM7Ml_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_term_taxonomy`
--

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

--
-- Dumping data for table `b78GM7Ml_term_taxonomy`
--

LOCK TABLES `b78GM7Ml_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_term_taxonomy` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'slide-page','',0,1),(3,3,'nav_menu','',0,7),(5,5,'element_category','',0,20),(6,6,'element_category','',0,6),(7,7,'slide-page','',0,0),(8,8,'scope','',0,5),(9,9,'layout_type','',0,3),(10,10,'module_width','',0,1),(11,11,'module_width','',0,5),(12,12,'scope','',0,1),(13,13,'category','',0,5),(14,14,'post_tag','',0,0),(15,15,'post_tag','',0,1),(16,16,'post_tag','',0,0),(17,17,'post_tag','',0,3),(18,18,'post_tag','',0,4),(19,19,'post_tag','',0,1),(20,20,'post_tag','',0,0),(21,21,'layout_type','',0,0),(22,22,'post_tag','',0,0),(23,23,'layout_type','',0,1),(24,24,'layout_category','',0,2),(25,25,'layout_type','',0,2),(26,26,'post_tag','',0,0),(27,27,'post_tag','',0,1),(28,28,'post_tag','',0,1),(29,29,'post_tag','',0,1),(30,30,'post_tag','',0,1),(31,31,'post_tag','',0,1),(32,32,'post_tag','',0,3),(33,33,'post_tag','',0,0),(34,34,'post_tag','',0,1),(35,35,'post_tag','',0,1),(36,36,'post_tag','',0,1),(37,37,'post_tag','',0,1),(38,38,'post_tag','',0,1),(39,39,'post_tag','',0,1),(40,40,'post_tag','',0,3),(41,41,'category','',0,192),(42,42,'category','',0,2),(43,43,'post_format','',0,0);
/*!40000 ALTER TABLE `b78GM7Ml_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_termmeta`
--

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

--
-- Dumping data for table `b78GM7Ml_termmeta`
--

LOCK TABLES `b78GM7Ml_termmeta` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_termmeta` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_termmeta` VALUES (1,2,'fusion_slider_options','a:20:{s:12:\"slider_width\";s:4:\"100%\";s:13:\"slider_height\";s:5:\"400px\";s:20:\"slider_content_width\";s:0:\"\";s:11:\"full_screen\";s:1:\"1\";s:16:\"slider_indicator\";s:0:\"\";s:22:\"slider_indicator_color\";s:0:\"\";s:8:\"parallax\";s:1:\"0\";s:10:\"nav_arrows\";s:1:\"0\";s:13:\"nav_box_width\";s:4:\"63px\";s:14:\"nav_box_height\";s:4:\"63px\";s:14:\"nav_arrow_size\";s:4:\"25px\";s:8:\"autoplay\";s:1:\"0\";s:4:\"loop\";s:1:\"0\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"DESC\";s:9:\"animation\";s:4:\"fade\";s:15:\"slideshow_speed\";s:4:\"7000\";s:15:\"animation_speed\";s:3:\"600\";s:16:\"typo_sensitivity\";s:1:\"1\";s:11:\"typo_factor\";s:3:\"1.5\";}'),(3,7,'fusion_slider_options','a:20:{s:12:\"slider_width\";s:4:\"100%\";s:13:\"slider_height\";s:5:\"400px\";s:20:\"slider_content_width\";s:0:\"\";s:11:\"full_screen\";s:1:\"1\";s:16:\"slider_indicator\";s:0:\"\";s:22:\"slider_indicator_color\";s:0:\"\";s:8:\"parallax\";s:1:\"0\";s:10:\"nav_arrows\";s:1:\"0\";s:13:\"nav_box_width\";s:4:\"63px\";s:14:\"nav_box_height\";s:4:\"63px\";s:14:\"nav_arrow_size\";s:4:\"25px\";s:8:\"autoplay\";s:1:\"0\";s:4:\"loop\";s:1:\"0\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:4:\"DESC\";s:9:\"animation\";s:4:\"fade\";s:15:\"slideshow_speed\";s:4:\"7000\";s:15:\"animation_speed\";s:3:\"600\";s:16:\"typo_sensitivity\";s:1:\"1\";s:11:\"typo_factor\";s:3:\"1.5\";}');
/*!40000 ALTER TABLE `b78GM7Ml_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_terms`
--

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

--
-- Dumping data for table `b78GM7Ml_terms`
--

LOCK TABLES `b78GM7Ml_terms` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_terms` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Homepage','homepage',0),(3,'Main Navigation','main-navigation',0),(5,'elements','elements',0),(6,'columns','columns',0),(7,'Capabilities','capabilities',0),(8,'global','global',0),(9,'section','section',0),(10,'fullwidth','fullwidth',0),(11,'regular','regular',0),(12,'not_global','not_global',0),(13,'Trailers For Sale','trailers-for-sale',0),(14,'goose neck trailer','goose-neck-trailer',0),(15,'ez haul','ez-haul',0),(16,'flat bed trailer','flat-bed-trailer',0),(17,'hay trailer','hay-trailer',0),(18,'trailers for sale','trailers-for-sale',0),(19,'bale trailer','bale-trailer',0),(20,'6 ft bale trailer','6-ft-bale-trailer',0),(21,'layout','layout',0),(22,'36\' 7-bale trailer','36-7-bale-trailer',0),(23,'row','row',0),(24,'Modules','modules',0),(25,'module','module',0),(26,'40\' trailers','40-trailers',0),(27,'wheel corrals','wheel-corrals',0),(28,'diamond \"w\" wheel corrals','diamond-w-wheel-corrals',0),(29,'corrals','corrals',0),(30,'corrals for sale','corrals-for-sale',0),(31,'32 ft bale trailer','32-ft-bale-trailer',0),(32,'hay bale trailer','hay-bale-trailer',0),(33,'6 ft trailer','6-ft-trailer',0),(34,'36 ft 7-bale trailer','36-ft-7-bale-trailer',0),(35,'6-bale trailer','6-bale-trailer',0),(36,'40 ft trailers','40-ft-trailers',0),(37,'8-bale trailer','8-bale-trailer',0),(38,'flatbed trailer','flatbed-trailer',0),(39,'gooseneck trailer','gooseneck-trailer',0),(40,'ez-haul hay handler','ez-haul-hay-handler',0),(41,'Market Reports','market-reports',0),(42,'Anstine Auctions','anstine-auctions',0),(43,'post-format-link','post-format-link',0);
/*!40000 ALTER TABLE `b78GM7Ml_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_usermeta`
--

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

--
-- Dumping data for table `b78GM7Ml_usermeta`
--

LOCK TABLES `b78GM7Ml_usermeta` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_usermeta` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_usermeta` VALUES (1,1,'nickname','admin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(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,'b78GM7Ml_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'b78GM7Ml_user_level','10'),(14,1,'dismissed_wp_pointers','wp496_privacy'),(15,1,'show_welcome_panel','0'),(17,1,'b78GM7Ml_dashboard_quick_press_last_post_id','4758'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"166.205.190.0\";}'),(19,1,'b78GM7Ml_user-settings','libraryContent=browse&imgsize=full&editor=tinymce&hidetb=1'),(20,1,'b78GM7Ml_user-settings-time','1556295473'),(21,1,'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\";}'),(22,1,'metaboxhidden_nav-menus','a:11:{i:0;s:29:\"add-post-type-avada_portfolio\";i:1;s:23:\"add-post-type-avada_faq\";i:2;s:33:\"add-post-type-themefusion_elastic\";i:3;s:19:\"add-post-type-slide\";i:4;s:12:\"add-post_tag\";i:5;s:15:\"add-post_format\";i:6;s:22:\"add-portfolio_category\";i:7;s:20:\"add-portfolio_skills\";i:8;s:18:\"add-portfolio_tags\";i:9;s:16:\"add-faq_category\";i:10;s:25:\"add-themefusion_es_groups\";}'),(23,1,'nav_menu_recently_edited','3'),(24,1,'closedpostboxes_page','a:0:{}'),(25,1,'metaboxhidden_page','a:6:{i:0;s:12:\"revisionsdiv\";i:1;s:10:\"postcustom\";i:2;s:16:\"commentstatusdiv\";i:3;s:11:\"commentsdiv\";i:4;s:7:\"slugdiv\";i:5;s:9:\"authordiv\";}'),(26,1,'author_email',''),(27,1,'author_facebook',''),(28,1,'author_twitter',''),(29,1,'author_linkedin',''),(30,1,'author_dribble',''),(31,1,'author_gplus',''),(32,1,'author_whatsapp',''),(33,1,'author_custom',''),(35,1,'wfls-last-captcha-score',''),(36,1,'wfls-last-login','1665079033'),(40,1,'sbi_ignore_new_user_sale_notice','always'),(48,2,'nickname','anstine_admin'),(49,2,'first_name',''),(50,2,'last_name',''),(51,2,'description',''),(52,2,'rich_editing','true'),(53,2,'syntax_highlighting','true'),(54,2,'comment_shortcuts','false'),(55,2,'admin_color','fresh'),(56,2,'use_ssl','0'),(57,2,'show_admin_bar_front','true'),(58,2,'locale',''),(59,2,'b78GM7Ml_capabilities','a:1:{s:6:\"editor\";b:1;}'),(60,2,'b78GM7Ml_user_level','7'),(61,2,'dismissed_wp_pointers',''),(63,1,'session_tokens','a:1:{s:64:\"db43bc6e602d006bfcf28b1a7a64720adef0b61de4b67bad80d3f8440edc36ce\";a:4:{s:10:\"expiration\";i:1665251832;s:2:\"ip\";s:13:\"166.205.190.3\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36\";s:5:\"login\";i:1665079032;}}'),(64,2,'default_password_nag',''),(67,2,'wfls-last-login','1701270735'),(69,2,'b78GM7Ml_dashboard_quick_press_last_post_id','5991'),(70,2,'community-events-location','a:1:{s:2:\"ip\";s:12:\"130.51.183.0\";}'),(72,2,'b78GM7Ml_user-settings','libraryContent=browse&imgsize=&editor=tinymce&hidetb=1&editor_plain_text_paste_warning=2&uploader=1'),(73,2,'b78GM7Ml_user-settings-time','1687971487'),(99,2,'closedpostboxes_page','a:1:{i:0;s:20:\"et_settings_meta_box\";}'),(100,2,'metaboxhidden_page','a:5:{i:0;s:12:\"revisionsdiv\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";}'),(113,2,'closedpostboxes_dashboard','a:0:{}'),(114,2,'metaboxhidden_dashboard','a:1:{i:0;s:21:\"dashboard_browser_nag\";}'),(118,2,'session_tokens','a:2:{s:64:\"4bfa925d524c44d8cc2e0a6c8fda904600fec0d5c0c125d19f3f9bb9ef99db8b\";a:4:{s:10:\"expiration\";i:1701276845;s:2:\"ip\";s:13:\"130.51.183.26\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36\";s:5:\"login\";i:1701104045;}s:64:\"d03648c023a862364578848d46204d5e85611e01729cbb619a2d5dfc61a4104d\";a:4:{s:10:\"expiration\";i:1701443535;s:2:\"ip\";s:13:\"130.51.183.26\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36\";s:5:\"login\";i:1701270735;}}'),(130,2,'b78GM7Ml_media_library_mode','list');
/*!40000 ALTER TABLE `b78GM7Ml_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_users`
--

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

--
-- Dumping data for table `b78GM7Ml_users`
--

LOCK TABLES `b78GM7Ml_users` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_users` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_users` VALUES (1,'admin','$P$BKmwvV2yHAbUK5IDFO1jDPQ/gWBoha/','admin','justin@hpgmedia.com','','2019-03-31 22:45:01','',0,'admin'),(2,'anstine_admin','$P$B2rgI4f.mFRgRPrAWHabYr9dx6adLE/','anstine_admin','anstineauction@gmail.com','','2020-02-05 18:24:15','',0,'anstine_admin');
/*!40000 ALTER TABLE `b78GM7Ml_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_wfblockediplog`
--

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

--
-- Dumping data for table `b78GM7Ml_wfblockediplog`
--

LOCK TABLES `b78GM7Ml_wfblockediplog` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_wfblockediplog` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_wfblockediplog` VALUES ('\0\0\0\0\0\0\0\0\0\0ÿÿ:8ã','NL',1,19661,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ:8ã','NL',1,19671,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿWÄ;','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿðp','US',1,19684,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ	ît','DE',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ	ît','DE',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿKÀe','DE',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿeœ\r','RU',1,19680,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿeœ-','RU',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿeœa','RU',1,19679,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿeœh','RU',1,19680,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿeœx','RU',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿeœ¿','RU',1,19680,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿeœö','RU',1,19680,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿe	','RU',1,19680,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿe','RU',1,19679,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿe ','RU',1,19680,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿe%','RU',1,19680,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿe-','RU',1,19679,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿe-','RU',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿe4','RU',1,19680,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿeO','RU',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿeW','RU',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿe','RU',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿe”','RU',1,19680,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿe¯','RU',1,19679,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿe¯','RU',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿe»','RU',1,19680,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿe¼','RU',1,19678,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿe¼','RU',1,19681,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿeÐ','RU',1,19681,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿeÑ','RU',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿeÝ','RU',1,19678,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿeÝ','RU',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿeë','RU',1,19679,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿeó','RU',1,19679,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿeó','RU',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ„€','IR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÄÜ','FR',1,19673,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔÀ','CN',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿƒF','CN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿƒF','CN',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿƒF','CN',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÚKž','SG',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÚKž','SG',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÚKž','SG',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÚKž','SG',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÚKž','SG',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÚsò','SG',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÚÔ±','SG',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÚÔ±','SG',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÚÔ±','SG',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÚÔ±','SG',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÚÔ±','SG',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÚÔ±','SG',2,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÛ3·','SG',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\r:›','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\rJè','IE',1,19663,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\rOž','IE',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\r_è','NL',15,19672,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\r~X¢','IN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\rwB','IN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\rwB','IN',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\rwB','IN',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀm','IN',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀm','IN',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀm','IN',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀm','IN',2,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀm','IN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿá”','VN',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿá”','VN',2,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿá”','VN',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿáÍ','VN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿáÍ','VN',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¼aš','FR',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿë§ô','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿwô','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿwô','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‚%·','GB',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‚%·','GB',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‚%·','GB',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ&\r“','US',1,19688,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿVV','NL',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿVV','NL',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿVV','NL',3,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Š9','AU',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Š9','AU',1,19666,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Š9','AU',1,19678,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ«zo','US',25,19680,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ«zo','US',25,19681,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­hq','US',1,19670,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÁ‚V','IN',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÁ‚V','IN',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÌ)>','IN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÌ)>','IN',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿæK_','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿô^','US',1,19662,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿaÍÒ','NL',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaÍÒ','NL',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaÍÒ','NL',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaÍÒ','NL',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaÍÒ','NL',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaÍÒ','NL',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿcåÚ','US',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿcåÚ','US',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿcåÚ','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÇkª','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÇkª','US',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÇkª','US',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"KV','NP',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"KV','NP',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"KV','NP',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿoRJ','AU',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿoRJ','AU',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿoRJ','AU',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿoRJ','AU',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿoRJ','AU',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ,Ÿ','ES',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ,Ÿ','ES',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ,Ÿ','ES',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ,Ÿ','ES',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ,Ÿ','ES',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ,Ÿ','ES',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿª§','CY',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿº¬','NL',5,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿº¬','NL',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿº¬','NL',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÜWÍ','ES',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"@Úf','KR',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"@Úf','KR',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"@Úf','KR',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"Aê\0','CH',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"Aê\0','CH',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"KAÚ','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"NHœ','BE',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"NHœ','BE',2,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"NHœ','BE',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"[84','NL',2,19690,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"]$ß','IN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"`ƒ','HK',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"‡ž','US',1,19690,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"ÂAh','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"åJ*','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"åJ*','US',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"åJ*','US',2,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\"ò_®','IE',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#š','IN',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#»t','BE',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#Íàø','BE',1,19681,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#ÐŠe','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#ÐŠe','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#ÐŠe','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#ÐŠe','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#Ñ®€','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#ÕªÐ','SG',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#ÛB·','ID',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#ÛB·','ID',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#ÛB·','ID',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#ÛB·','ID',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#ß','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#âÄ³','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#âÄ³','US',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#âÄ³','US',2,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#ïçÂ','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#ïçÂ','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#ïçÂ','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#ïçÂ','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ#ïçÂ','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ$^U','ID',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ%=Î%','FR',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ%=Î%','FR',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ%=Î%','FR',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ%‹\rQ','NL',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ%‹\rQ','NL',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ%ŒØØ','',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ%ŒØØ','',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ%ŒØØ','',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ%˜¶º','IR',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ%»J1','FR',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ%»J1','FR',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ%»J1','FR',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ%»J1','FR',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ%»Z8','FR',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ%»‡-','FR',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ%»‡-','FR',3,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ%ÈB‹','RU',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ%ÈB‹','RU',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ%ÈB‹','RU',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ&g§','US',1,19683,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ&€BE','US',3,19667,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ&òŒÈ','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ&òŒÈ','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ&òŒÈ','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ&òŒÈ','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ&òŒÈ','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ&òÎ³','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ&òãh','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\'e¹º','CN',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\'e¹º','CN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\'gá','CN',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\'gá','CN',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\'gá','CN',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\'ix¾','CN',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\'ix¾','CN',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\'ix¾','CN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\'ix¾','CN',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\'ix¾','CN',3,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\'ix¾','CN',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\'j\Z','CN',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\'j\Z','CN',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\'j\Z','CN',2,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\'j\Z','CN',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\'j\Z','CN',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ(Iv','CN',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ(Iv','CN',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ(MoÐ','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ(MoÐ','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ(MoÐ','US',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ)Meî','ZA',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\','US',2,19665,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\','US',2,19668,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\','US',2,19671,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\','US',2,19673,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\','US',2,19674,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\','US',11,19680,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\','US',4,19690,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢','US',3,19665,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢','US',3,19669,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢','US',3,19671,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢','US',11,19676,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢','US',4,19682,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ*Èçx','HK',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ*Èçx','HK',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ*Èçx','HK',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ*Èçx','HK',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ*Èçx','HK',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ*Èçx','HK',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+ŽÂØ','CN',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+ŽÂØ','CN',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+ŽÂØ','CN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+ŽÂØ','CN',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+R­','CN',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+R­','CN',2,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+›Y¾','CN',2,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+›Y¾','CN',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+›Y¾','CN',2,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+›Y¾','CN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+›Y¾','CN',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+Æ‚i','US',3,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+Íÿ‘','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+ñFK','IN',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+ñH ','HK',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+ñH ','HK',2,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+ñH ','HK',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+ÿ˜','SG',2,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+ÿ˜','SG',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ+ÿ˜','SG',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ,åÿ†','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-=¼*','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-LžÓ','SG',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-LžÓ','SG',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-OÑ–','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-Q\'Í','US',6,19660,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-YöÖ','BG',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-YöÖ','BG',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-YöÖ','BG',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-YöÖ','BG',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-YöÖ','BG',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-YöÖ','BG',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-YöÖ','BG',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-[_µ','IT',3,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-uP\Z','VN',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-wR4','VN',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-wR4','VN',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-wR4','VN',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-}ï³','VN',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-}ï³','VN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-}ï³','VN',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ-}ï³','VN',2,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ..Æ','DE',45,19666,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ.%©»','GB',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ.%©»','GB',2,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ.egˆ','DE',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ.i','FR',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ.i','FR',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ.i','FR',1,19666,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ.i','FR',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ.¶s','FR',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ.¶t','FR',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ.¶v','FR',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ.¶x','FR',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ.¶|','FR',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ.ë*N','NL',1,19665,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/XNT','US',1,19680,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/^ÅÏ','CN',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/_pG','CN',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/_pG','CN',2,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/_pG','CN',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/_pG','CN',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/_pG','CN',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/_pG','CN',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/_pG','CN',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/d)}','CN',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/d)}','CN',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/d)}','CN',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/jÉ†','CN',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/jÉ†','CN',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/jÉ†','CN',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/k!\Z','CN',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/kG¥','CN',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/kG¥','CN',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/kƒ…','CN',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/kƒ…','CN',1,19673,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/k°$','CN',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/k°$','CN',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/k°$','CN',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/nŠJ','CN',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/nŠJ','CN',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/oH','CN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/oH','CN',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/ot,','CN',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/ot,','CN',1,19676,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/òk•','HK',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/òk•','HK',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/òµ','HK',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/òµ','HK',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/òµ','HK',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/òµ','HK',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/û2 ','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/û2 ','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/û2 ','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/û2 ','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/û2 ','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ/û2 ','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ1Å§','DE',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ1èk','CN',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ1è‘Í','CN',2,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ1ëAI','CN',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ1ëAI','CN',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ1ëJ©','CN',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ1ëJ©','CN',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ1÷Ë','KR',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>¯','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>¯','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>¯','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>·','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>·','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>·','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>·','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>·','US',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>z','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>z','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>z','US',3,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>z','US',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>‘Ç','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>‘Ç','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>•','US',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>•','US',4,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>• ','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>• ','US',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>–õ','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>–õ','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>–õ','US',2,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>–õ','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>–õ','US',2,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>–õ','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>°š','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>±','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>±','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>±','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>±','US',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>±','US',2,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>±','US',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>±0','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>±0','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>±0','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>±2','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>±2','US',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>±2','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>±2','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>±¢','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>±¢','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>±¢','US',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>¶õ','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>¶õ','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>¶õ','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>¶õ','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>¶õ','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>¶õ','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>¶õ','US',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>¶õ','US',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>Þ(','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2>Þ(','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?\0Ä','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?\0Ä','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?\0Ä','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?\0Ä','US',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?\0','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?\0','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?\0','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?\0','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?}','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?}','US',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?}','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?}','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?}','US',2,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?Í','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?Í','US',2,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?Í','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?Í','US',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?Í','US',2,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?Í','US',2,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?±Œ','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?±Œ','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?±Œ','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?³	','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?³','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?³','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?³','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?³à','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?³à','US',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ2?³à','US',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3Qî','NL',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3Qî','NL',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3&\'?','FR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3&\'?','FR',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3&4€','FR',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3&4€','FR',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3D›Ý','FR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3DçQ','FR',1,19677,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3M5Ê','PL',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3M5Ê','PL',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3MBT','DE',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3Mæ','FR',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3Mæ','FR',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3Mæ','FR',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3O±¯','SG',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3Oç','SG',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3Qß†','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3Qß†','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3S*2','FR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3[—<','FR',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3[—<','FR',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3[—<','FR',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3[ý ','FR',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3[ý ','FR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3[ý ','FR',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3[ý ','FR',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3[ý ','FR',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3[ý ','FR',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3ŸjX','FR',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3²ˆ¤','FR',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3²ˆ¤','FR',1,19678,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3ÃkÞ','FR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3ÃkÞ','FR',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3ÃkÞ','FR',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3ÒÊ','FR',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3ÒßO','FR',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3ÒßO','FR',2,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3ÒßO','FR',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3ÒßO','FR',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3ÒßO','FR',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3Þ)U','CA',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3Þ)U','CA',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3Þ,¼','CA',1,19667,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3Þž','CA',1,19662,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3Þž','CA',1,19671,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3þÕC','FR',1,19688,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3ÿ@:','FR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3ÿ@:','FR',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3ÿ@:','FR',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3ÿ@:','FR',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3ÿ@:','FR',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3ÿ@:','FR',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3ÿÄX','FR',1,19690,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ3ÿàì','FR',1,19681,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ4ëÙ','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ4ç\"','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ4Œ)','IN',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ4-Ë','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ4ÊPJ','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ6$6','FR',1,19664,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ6$l•','FR',2,19684,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ6$¤M','GB',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ6$¤M','GB',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ6$¤M','GB',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ6$­Í','GB',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ6$­Í','GB',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ6%œð','FR',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ6%œð','FR',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ6&UŒ','FR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ6\'t','CA',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ6\'t','CA',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ6\'1','CA',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ6øW<','JP',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ6øW<','JP',1,19678,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ9€vB','BE',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ9€¡','BE',2,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ9€¡','BE',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ=ö[','IN',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ>A¼b','SK',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ>j_‚','',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ>Š³','FR',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ>&×','DE',3,19680,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ>«–','DE',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ>«–','DE',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ>«±¯','DE',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ>«¾‡','DE',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ>Ò×J','FR',1,19682,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ>Ò×J','FR',1,19683,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ>Ýþb','NL',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ@Z0³','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ@Z0³','US',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ@Z0»','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ@Z0»','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ@Z0»','US',2,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ@Z0»','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ@Z0É','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ@Z0É','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ@Z0É','US',2,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ@ã’','US',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿAl’…','DE',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿAµo„','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿB7AÒ','US',29,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿB7AÒ','US',56,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿBFª˜','CA',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿBFª˜','CA',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿBFª˜','CA',2,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿBFª˜','CA',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿB^p','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿB^p','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿBa-ø','AR',1,19678,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿB‡ ','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿB‡ ','US',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿCÍ\ne','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿCÍ\ne','US',2,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿCÍ\ne','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿCÍÆ','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿCÍÆ','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿCÍ’','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿCÍ’','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿCÍÚ','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿCÍÚ','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿCÍÚ','US',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿCÍ<¦','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿCÍ<¦','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿCÍ<¦','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿCÍ­š','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿCßv=','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘\r','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘\r','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘\r','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘','US',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘3','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘3','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘3','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘3','US',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘@','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘@','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘N','US',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘W','US',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘W','US',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘i','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘i','US',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘i','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘k','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘k','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘k','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘k','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘ƒ','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘ƒ','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘‘','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘‘','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘¸','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘¸','US',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘¸','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘¸','US',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘¸','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘»','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘»','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘»','US',2,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘É','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘É','US',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘Í','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘Í','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘Í','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘Ð','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘Ð','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘Ð','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘Ð','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘î','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘î','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘î','US',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘î','US',2,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘î','US',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²‘ô','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²’','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²’','US',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²’','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²’','US',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²’','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”','US',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”)','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”4','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”4','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”4','US',2,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”M','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”M','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”R','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”R','US',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”›','US',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²”›','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²•','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²•','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²•','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²•8','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²•8','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²•8','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²•8','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²•8','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²•8','US',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²•8','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²•8','US',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²•8','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²•Â','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²•Â','US',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²•Â','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²•Â','US',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²–B','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²–B','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²–B','US',3,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²–B','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²–N','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²–N','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²–N','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²–N','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²–¬','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²–¬','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²–¬','US',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²–¶','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²–¶','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²–¶','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²—3','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²—3','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²—Š','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²—Š','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²—Š','US',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²—Ì','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²—Ì','US',3,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²—Ì','US',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²—Ì','US',2,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²—ó','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²—ó','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²—ó','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²›S','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²›S','US',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²£Ü','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²£Ü','US',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²£Ü','US',1,19684,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²£Ü','US',1,19688,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²¥È','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²¦','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²¦','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²¦ä','US',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²¦ä','US',2,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²¦ä','US',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²¦ä','US',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²Þ­','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²Þ­','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²Þ­','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²Þ­','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²Þ­','US',3,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²Þ­','US',2,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²Þ­','US',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²Þ­','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²ß','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²á','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²á','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²á','US',3,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²á','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²âÖ','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²âÖ','US',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²âÖ','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²÷:','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²÷:','US',2,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿD²÷½','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE?@','SZ',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE?@','SZ',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE?@','SZ',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE?@','SZ',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE?@','SZ',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE?@','SZ',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE?@','SZ',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE?@','SZ',2,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE¢fÚ','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£—x','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£—x','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£—x','US',2,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£¢','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£¢','US',3,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£¢','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£º†','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£Æd','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£Æd','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£Æd','US',2,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£Æd','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£Æd','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£Æd','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£Æd','US',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£Æd','US',3,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£Ë¹','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£Ë¹','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£à','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£à','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£à','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£à','US',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£à','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£àh','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£àh','US',1,19666,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£àh','US',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£ài','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£ài','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£ài','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£ài','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£àk','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£àk','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£àk','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£àn','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£àn','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£àn','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£áw','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£áw','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£á~','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿE£á~','US',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§,','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§,','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§,','US',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§,','US',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§,','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§,','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§9n','US',2,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§9n','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§:','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§:','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§;‚','US',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§;‚','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§;‚','US',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§;‚','US',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§;Ê','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§;Ê','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§;Ê','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§;Ê','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§;Ê','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§;Ê','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§@s','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§@s','US',2,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§@s','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§@s','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§B°','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§C\Z','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§D2','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§D2','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§OK','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§OK','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§OK','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§OK','US',2,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§Oˆ','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§Oˆ','US',2,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§O×','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§O×','US',2,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§O×','US',2,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§O×','US',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§O×','US',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§eÉ','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§hù','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§hù','US',2,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§hù','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§hù','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§hù','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§hù','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§hù','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§}','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§}©','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§}©','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§Ñø','US',3,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§Ñø','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§Ñø','US',3,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§Ñø','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§Ñø','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§Ñø','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§Ñø','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§Ñø','US',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§ýë','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿH§ýë','US',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿJÐé','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿJÐ÷Ô','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿKgB','US',3,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿKgB','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿKwÝP','US',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿKwÝP','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿKwÝP','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿKwÝP','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿKwÝP','US',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿM Dò','IT',3,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿMDW‰','GB',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿMDW‰','GB',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿN/ˆ','DE',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿN/ˆ','DE',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿN/ˆ','DE',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿN/ˆ','DE',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿN‡M„','TR',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿN‡M„','TR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿN‡M„','TR',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿN‡M„','TR',2,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿOÔñ','IT',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿPûÛo','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿPûÛo','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿPûÛo','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿPûÛo','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿQ|©','IR',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿQ|©','IR',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿQD{“','CN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿQD{“','CN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿQD{“','CN',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿQD{“','CN',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿQFø©','CN',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿQX4','IT',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿR','CN',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿR','CN',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿR','CN',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿR','CN',2,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿR¥¸L','DE',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿR¥¸L','DE',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿR¥¸L','DE',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿR¥¸L','DE',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿR¥¸L','DE',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿRÈëŠ','KZ',1,19678,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿRÝˆ','IS',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿRÝˆ','IS',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿRÝˆ','IS',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿRÝˆ','IS',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿSt','GB',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿSt','GB',2,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿSt','GB',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿSt','GB',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿSt','GB',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿSt','GB',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿSåS','NL',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿSåS','NL',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿU[“Û','BG',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿUrŠÜ','DE',4,19684,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿUrŠÜ','DE',2,19685,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿUrŠÜ','DE',2,19687,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿU€U','PL',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó','DE',3,19667,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó','DE',1,19668,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó','DE',49,19672,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó','DE',1,19678,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó','DE',2,19689,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿUí&ä','RU',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿUí&ä','RU',3,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿUí&ä','RU',2,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿUí&ä','RU',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿUí&ä','RU',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿVkÆf','KZ',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿVkÆÀ','KZ',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿVkÆÀ','KZ',2,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWb«Š','FR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWb­ü','FR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWjÆ¨','DE',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWk§','IR',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWk§','IR',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWk§','IR',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWk§','IR',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWì+','RU',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWìZ','RU',1,19679,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWìZ','RU',1,19680,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWì‹','RU',1,19681,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWìœ','RU',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWì¥','RU',1,19680,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWì¾','RU',1,19680,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWìà','RU',1,19679,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWìî','RU',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWìÑ¤','GB',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWìÑ¤','GB',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWìÑ¤','GB',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWìÑ¤','GB',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWìÑ¤','GB',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWìÑ¤','GB',2,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWìÑ¤','GB',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWìÑ¤','GB',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿWìÑ¤','GB',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿW÷õ','GB',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿW÷õ','GB',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿX™óŒ','DE',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿY -.','RO',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿY\'m','RO',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿY\'m','RO',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿY\'m','RO',2,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿY.[W','ES',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿY.[W','ES',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿYu)','LT',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿYu)','LT',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿYu©­','LT',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿYu¼}','LT',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù','DE',4,19686,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù','DE',21,19689,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD','BG',1,19663,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD','BG',7,19666,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD','BG',7,19680,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD','BG',3,19683,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD','BG',2,19688,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD','BG',7,19690,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ö,','BG',2,19665,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ö,','BG',6,19667,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ö,','BG',4,19669,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ö,','BG',2,19682,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ö,','BG',2,19684,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ö,','BG',2,19688,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\öÁ','BG',2,19674,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\öÁ','BG',1,19675,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\öØ','BG',2,19676,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\öØ','BG',3,19683,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ùê','BG',2,19666,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§','BG',1,19663,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§','BG',7,19666,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§','BG',7,19679,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§','BG',4,19683,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§','BG',2,19688,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§','BG',7,19689,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü­','BG',7,19676,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[êÂÆ','FR',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[ì¨ù','IR',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[ì¨ù','IR',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[ì¨ù','IR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[ì¨ù','IR',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[ì¨ù','IR',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[ì¨ù','IR',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[î¤¬','GB',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Q/','RO',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Q/','RO',2,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Q/','RO',2,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ','US',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ','US',1,19676,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ','US',1,19681,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ','US',2,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ','US',2,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ','US',1,19684,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Ì‹v','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Ì‹v','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Ì‹v','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Ì‹v','US',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌØB','FR',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌØB','FR',4,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌØB','FR',3,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌØB','FR',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌØB','FR',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌØB','FR',2,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌØB','FR',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌÙ','FR',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌÙ','FR',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌÙ-','FR',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌÙ-','FR',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌÙ-','FR',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌÙ-','FR',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌÜ:','FR',2,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌÜI','FR',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌÜI','FR',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌÜI','FR',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌÞë','FR',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌÞë','FR',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌÞë','FR',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍG','FR',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍG','FR',2,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍG','FR',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍG','FR',2,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íô','FR',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íô','FR',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍŽ','FR',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍŽ','FR',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍŽ','FR',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍH','FR',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍH','FR',4,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í!','FR',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íù','FR',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íù','FR',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íù','FR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍÇ','FR',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍÇ','FR',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍÇ','FR',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍÇ','FR',2,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍÇ','FR',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍÇ','FR',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íÿ','FR',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íÿ','FR',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íÿ','FR',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í\nF','FR',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í\nF','FR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í\nF','FR',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íú','FR',2,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íú','FR',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íú','FR',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í\r†','FR',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í\ró','FR',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í)','FR',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íƒ','FR',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íƒ','FR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íƒ','FR',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íƒ','FR',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íƒ','FR',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íƒ','FR',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í','FR',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í','FR',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍJ','FR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍJ','FR',1,19673,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍJ','FR',1,19679,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍJ','FR',1,19684,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍJ','FR',1,19688,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍJ','FR',2,19690,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¶','FR',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¶','FR',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í@†','DE',1,19680,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í@†','DE',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í@†','DE',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í@†','DE',1,19688,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í‘™','DE',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í³Á','DE',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í³Á','DE',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¸™','DE',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¹p','DE',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¹p','DE',3,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¹p','DE',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¹p','DE',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¹p','DE',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¹p','DE',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¹p','DE',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¹p','DE',2,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ]qŠ','RO',1,19669,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ]qoÁ','GB',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ]qoÁ','GB',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ]qoÁ','GB',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ]qoÁ','GB',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ]®~','GR',1,19680,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ]®¡ù','RO',1,19678,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ]·ƒ5','BG',3,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ]·ƒ5','BG',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ]·ƒ5','BG',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ]·ƒ5','BG',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ^=¥','FR',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ^=¥','FR',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ^=¥','FR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ^õi','IE',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ^õi','IE',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ^õi','IE',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ^õi','IE',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ^õi','IE',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ^õi','IE',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ_oÄV','SG',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ_oê¸','DE',1,19659,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿaJ[Z','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaJ[Z','US',2,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaJÒ','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaJÒ','US',2,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaJÒ','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaJÒ','US',2,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaJÒ','US',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaJÓ','US',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaJÓ','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaJÓ','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaJÓ','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaJÓ','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaJÓ','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaJÓ','US',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaOì1','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaOì1','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaOì1','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿaOì1','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿbFË','US',1,19684,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿbF1K','US',1,19682,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿbF2Z','US',1,19670,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿecZ¯','MY',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿecZ¯','MY',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿecZ¯','MY',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿecZ¯','MY',2,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿecZ¯','MY',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg(\'','VN',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg(\'','VN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg/¹¹','MM',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg/¹¹','MM',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg/¹¹','MM',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgZá×','VN',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgZá×','VN',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgZá×','VN',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgZá×','VN',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgZäj','VN',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgZäj','VN',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgZäj','VN',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgx°É','IN',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgx°É','IN',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgx°É','IN',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgx°É','IN',2,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg“#6','VN',2,19681,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg“#6','VN',1,19688,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg˜OÉ','IN',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg˜OÉ','IN',2,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg˜OÉ','IN',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg˜OÉ','IN',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg˜OÉ','IN',2,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg˜OÉ','IN',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg˜OÉ','IN',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg˜¤Š','VN',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg˜¤Š','VN',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg˜¤Š','VN',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg˜¤Š','VN',2,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg˜¤Š','VN',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg˜¤Š','VN',2,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg˜¤Š','VN',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg˜¤Š','VN',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgše_','VN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgš¸*','IN',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgš¸*','IN',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgš¸*','IN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgš¸*','IN',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgš¸*','IN',2,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgÅ','ID',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgžÎ§','BD',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgŸïà','IN',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgŸïà','IN',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg¢¤','ID',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg§Ù‰','ID',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg§Ù‰','ID',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg§Ù‰','ID',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg«´','',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg«´','',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg«´','',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg«´','',2,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg«´','',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg«´','',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg¯Ùô','',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg°N)','',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg°N)','',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg°N)','',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg°N)','',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg´£Ï','',1,19666,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿgº¹R','',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv','',20,19686,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿgØ¼f','ID',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿgä@\Z','HK',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿhè[','US',2,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿhè[','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿh-)-','NL',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿh-)-','NL',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿhƒ±','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿh¨†','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿhÅÑ•','US',2,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿhÅÑ•','US',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿhÅÑ•','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿhÅÑ•','US',3,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿhÅÑ•','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿhø-','DE',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿhø-','DE',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿhø-','DE',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿhø-','DE',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿhø-','DE',2,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿhø-','DE',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿhøt','DE',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿhøt','DE',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿhøt','DE',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿhøt','DE',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿhøå™','US',3,19666,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿhúîh','JP',9,19662,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿhúîh','JP',9,19674,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿhúîÒ','JP',8,19671,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿhúîÒ','JP',8,19678,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿj4[&','CN',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿj4[&','CN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿk­T£','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿk­T£','US',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿk­T£','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿk­T£','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿk´m','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿk´m','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿk´m','US',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿk´y\Z','US',2,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿk´y4','US',2,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿk´y4','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿk´y4','US',3,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿk´y4','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿk´y4','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿk´y4','US',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿk¶ìk','US',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿk¶ìk','US',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿk¶ìk','US',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿmæâž','DE',1,19673,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿn\'7','PK',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿn\'7','PK',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿn\'7','PK',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿn\'7','PK',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿn\'7','PK',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿn*ÙÛ','CN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿoDwš','ID',2,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿoDwš','ID',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿoDwš','ID',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿoDwš','ID',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿoDwš','ID',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿoZ–$','',2,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿoZ–$','',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿoZ–«','',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿoZ–«','',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿoæÊ“','CN',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿq¡H‡','VN',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿq¡H‡','VN',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿq¡H‡','VN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿq¡H‡','VN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿq¡H‡','VN',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿq¡H‡','VN',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿq¡H‡','VN',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿr7ªo','CN',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿr7ªo','CN',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿr7ªo','CN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿr7ªo','CN',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿsõDƒ','IN',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿsõDƒ','IN',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿt0e','SG',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿt0e','SG',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿt0e','SG',2,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿt0e','SG',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿt0e','SG',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿt0e','SG',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿt0e','SG',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿt>›','CN',2,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿt>›','CN',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿt>Î®','CN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿt>á‡','CN',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿvE¿X','VN',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿvE¿X','VN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿv¾Xã','CN',1,19690,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿwO(','CN',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿwN6','HK',1,19673,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿwN6','HK',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿxlÙ','CN',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿxmÇ','CN',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿxmÇ','CN',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿxhx','CN',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿxhx','CN',2,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿxMT','CN',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿxMT','CN',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿxMT','CN',2,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿxM‘@','CN',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿxM‘@','CN',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿx\\÷','CN',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿyO÷','CN',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿyO÷','CN',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿyO÷','CN',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿy$ñ','CN',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿzrOß','CN',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿzrOß','CN',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿzrOß','CN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿzrOß','CN',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿzrOß','CN',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿzrOß','CN',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿzrOß','CN',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿz¡À\n','IN',1,19678,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿz¡À\n','IN',1,19681,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿz°\'|','IN',1,19681,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ{†','VN',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ{9?','CN',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ{9?','CN',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ{9?','CN',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ{9?','CN',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ|(ÿº','ID',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ|jFš','PH',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ|žp','VN',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ|žp','VN',2,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ|žp','VN',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ|žp','VN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ|žp','VN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ|žp','VN',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ|žp','VN',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ|žp','VN',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ|Ü6','CN',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ|ß®à','CN',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ}¤','ID',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ}ÔÀo','VN',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ}ÔÀo','VN',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ}ÔÑ«','VN',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ}ÔÚ','VN',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ}ÔÚ','VN',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ}ÔÚ','VN',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ}Ôá„','VN',1,19669,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‚´K*','DE',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ„”KË','US',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ„”KË','US',1,19688,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ„”x','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ„”y','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ„”y','US',2,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ…‚g$','JP',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ…‚g$','JP',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ…‚g$','JP',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ†zbØ','GB',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ†zxP','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ†zxP','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ†z{Á','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ†z{Á','US',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ†z{Á','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ†Ñ\'','US',2,19690,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ†ÑhL','SG',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ†Ñž,','IN',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ†Ñž,','IN',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ†Ñž,','IN',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ†Ñž,','IN',2,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ†Ñž,','IN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ†Ñž,','IN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‡}	','FR',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‡}	','FR',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‡”)Ç','US',2,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‡”)Ç','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‡”)Ç','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‡µýý','FI',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‡µýý','FI',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‰tM','SG',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‰tM','SG',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‰tM','SG',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŠâ','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŠDñ','GB',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŠÅ¬','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŠÅ¬','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŠÅý','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;¯','IN',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;	W','IN',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;\n•','IN',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;\n•','IN',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;\n•','IN',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;o','IN',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;o','IN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;o','IN',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;o','IN',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;o','IN',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;\ZÑ','IN',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;\ZÑ','IN',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;\ZÑ','IN',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;\ZÑ','IN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;“Ú','DE',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;“Ú','DE',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;¦é','GB',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;¦é','GB',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;¦é','GB',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹;Ñ','DE',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹cw','SG',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹Ä','CN',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹Ä','CN',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹Ä','CN',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹Ä','CN',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹Ä','CN',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹Ä.','CN',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹Ä.','CN',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹Ä.','CN',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹Ä.','CN',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹Ä.','CN',1,19678,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹Äˆ¦','CN',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹ÿë','ID',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‹ÿë','ID',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŒR5l','FR',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ^÷ª','FR',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ^÷ª','FR',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ^÷ª','FR',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ_¬E','FR',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ_¬E','FR',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ_¬E','FR',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”ŸE','US',2,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”ŸE','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”ŸE','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”ŸE','US',2,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”ŸE','US',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”ŸE','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŽh','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŽ,óÖ','CA',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŽ,óÖ','CA',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŽ,óÖ','CA',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŽ,óÖ','CA',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŽ]”ª','CA',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŽ]»S','US',1,19678,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŽ]×','IN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿn±\0','IN',2,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿn±\0','IN',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿn±\0','IN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿnô{','IN',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆÅ¸','SG',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[jÍ','DE',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[jÍ','DE',1,19678,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[qå','DE',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[qå','DE',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[qå','DE',2,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[qå','DE',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[qå','DE',3,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[qå','DE',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[qå','DE',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[qå','DE',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[}:','DE',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ[}:','DE',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ~…”','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ~Œ','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ~Œ','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ~Óü','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ~Óü','US',2,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ~Óü','US',2,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ~Óü','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ~Óü','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÙR\\','CA',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ‘ïÐ±','FR',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ’¿Ò','',15,19679,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ’Õ','',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ’Õ','',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ’Õ','',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ’;’w','FR',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ’;’w','FR',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ’;’w','FR',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ’FxØ','RO',3,19666,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ’¾Gè','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ’¾Gè','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ’¾Gè','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ’¾]U','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ’¾Ò?','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ’¾Ù¹','US',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ’¾Ù¹','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ’¾Ù¹','US',2,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ’¾Ù¹','US',1,19666,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô','LB',56,19685,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ“‡ÐÙ','FR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ“‡ÐÙ','FR',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ“‡ÿ','FR',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ“‡ÿ','FR',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ“‡ÿ','FR',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ“‡ÿ','FR',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ“‡ÿ','FR',1,19681,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ“¶˜Ð','CA',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ“¶˜Ð','CA',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ“¶˜Ð','CA',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ“¶˜Ð','CA',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ“¶Ø\'','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”B‚Ã','SG',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”B‘','SG',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”B‘\Z','SG',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”B‘\Z','SG',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”B‘\Z','SG',2,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”B’\"','SG',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”B’\"','SG',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”B“','SG',3,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”B“','SG',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”B“','SG',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”B“','SG',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”B“\Z','SG',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”B“\Z','SG',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”B“ ','SG',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hxæ','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hxæ','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hxæ','US',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hxæ','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hxæ','US',2,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hxæ','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hy€','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hy€','US',2,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hy€','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hy€','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hy€','US',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hy€','US',2,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hy€','US',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hz¼','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hz¼','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hz¼','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hzä','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hzä','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hzä','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hzä','US',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÏn','SG',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÏn','SG',2,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÏn','SG',3,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÏn','SG',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÐÁ','SG',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÐÁ','SG',1,19676,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÐÁ','SG',1,19678,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÐÁ','SG',1,19690,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÑI','SG',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÑI','SG',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÑI','SG',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÑI','SG',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÓ±','SG',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÓ±','SG',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÓ±','SG',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÓ±','SG',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÓ±','SG',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÖÂ','SG',4,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÖÂ','SG',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÖÂ','SG',3,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÖÂ','SG',1,19666,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÖÂ','SG',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÖÂ','SG',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÖÂ','SG',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÖõ','SG',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÖõ','SG',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”HÖõ','SG',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hèi','SG',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hèi','SG',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hèi','SG',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hõê','SG',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hõê','SG',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hõê','SG',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hõê','SG',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hõê','SG',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hõê','SG',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hõê','SG',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hö½','SG',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hö½','SG',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hö½','SG',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hö½','SG',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hö½','SG',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hö½','SG',2,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hö½','SG',2,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”Hö½','SG',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ”‡\n8','SE',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ•ƒ½','SG',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ•ƒ½','SG',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ•ƒ½','SG',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ•2„','IL',1,19677,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ•8eÈ','CA',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ•[zß','ES',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ•fô','US',3,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ•fô','US',3,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ•Ê*_','FR',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ•ÿ>.','GB',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ•ÿ>.','GB',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ•ÿ>.','GB',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ–_+','TH',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ–_+','TH',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ–_Sa','SG',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ–_Sa','SG',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ–_Sa','SG',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ–_pO','VN',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ–_pO','VN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ–_·Â','JP',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ–_·Â','JP',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ–_·Â','JP',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ–_·Â','JP',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ–m”Ø','HK',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ–m”Ø','HK',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ–æz','CA',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ—j#ë','FR',2,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ—j&‘','FR',1,19676,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ—j&‘','FR',1,19690,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦','FR',1,19676,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦','FR',2,19678,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦','FR',1,19679,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦','FR',2,19681,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦','FR',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦','FR',1,19684,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦','FR',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦','FR',1,19688,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦','FR',1,19690,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ˜çb¸','CL',1,19679,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ™\\{','CY',1,19666,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿš\0£‚','ZA',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿš\0£‚','ZA',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿš\0£‚','ZA',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿš\0¯È','ZA',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿœ6‹','IT',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿœ6‹','IT',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿœ6‹','IT',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿœCBù','US',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿœù ','US',2,19675,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿœù ','US',2,19683,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ®Ê','JP',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ®Ê','JP',2,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿæ¿‡','US',2,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿæ¿‡','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿæ¿‡','US',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿæÚç','US',3,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿæÛv','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿæÛv','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿæÛv','US',2,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿæÛv','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿæÛv','US',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿæÛv','US',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿõÊ','SG',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿõÊ','SG',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿõÊ','SG',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿõÊ','SG',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿõÊ','SG',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿõÊ','SG',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŸAy\Z','DE',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŸAæ|','US',1,19683,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿŸE]@','DE',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŸYh¶','DE',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŸYh¶','DE',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŸYh¶','DE',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŸYh¶','DE',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŸYÂÃ','SG',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŸß-Ô','US',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŸß-Ô','US',2,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŸß-Ô','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŸß-Ô','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŸßÞ¡','US',2,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŸßÞ¡','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿŸßÞ¡','US',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ ™’C','NL',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ ™’C','NL',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ ™’C','NL',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ ™’C','NL',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ ™’C','NL',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¡#|û','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¡#|û','US',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¡#Ú','DE',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¡#Ú','DE',2,19666,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¡a[&','DE',2,19690,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¡av·','DE',2,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¡av·','DE',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¡av·','DE',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¡a“ë','DE',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¡a“ë','DE',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¡a“ë','DE',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¡a“ë','DE',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0ÝÙ','US',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0ÝÙ','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0ÝÙ','US',2,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0ÝÙ','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0ÝÙ','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0ä·','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0ä·','US',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0çm','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0çm','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0çm','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0çm','US',2,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0ç~','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0ç~','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0ç~','US',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0è','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢GŽ','CN',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢GŽ','CN',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢M','FR',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢M','FR',1,19688,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢ÕûV','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢ðhc','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢ðhc','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢ðhc','US',1,19666,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¢ðhc','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ£¬ÿ	','FR',1,19675,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ£¬ÿ	','FR',1,19676,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¤Zª','DE',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¤Zªž','DE',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¤„pW','FR',3,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¤„pW','FR',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¤„pW','FR',2,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¤„pW','FR',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¤„pW','FR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¤„pW','FR',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¤„pW','FR',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥ Ù','US',1,19690,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥2Ñ','SG',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥2Ñ','SG',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥2Ñ','SG',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥2Ñ','SG',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥2Ñ','SG',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥:²','SG',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥:²','SG',2,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥:²','SG',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥:²','SG',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥Ñ÷','IN',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥ÜŒ','IN',1,19662,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥IT\"','ZA',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥IT\"','ZA',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥IT\"','ZA',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥ãY½','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥ãY½','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥ãY½','US',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥ãY½','US',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥èNÎ','DE',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥èNÎ','DE',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥èNÎ','DE',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥è¿	','IN',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¥è¿	','IN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¦>zô','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¦>zô','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¦>zô','US',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¦>zô','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§GE­','NL',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§Gb','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§Gb','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§Gb','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§Gb','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§Gb','US',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§Gb','US',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§G×€','SG',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§Gé\'','IN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§GêÞ','IN',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§cB','SG',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§cX','GB',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§cX','GB',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§cX','GB',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§cX','GB',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§rÎñ','CA',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§rÎñ','CA',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§¬B½','SG',2,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§¬B½','SG',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ§¬B½','SG',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¨wI3','DE',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¨wI3','DE',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¨wI3','DE',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ©£','ZA',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿª@£$','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ«ô\0[','VN',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ«ô\0[','VN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ«ô1','VN',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ«ô1','VN',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ«ô1','VN',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ«ôÌ\Z','VN',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ«ôÌ\Z','VN',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ«ôÌ\Z','VN',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ«ôÌ\Z','VN',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ«ôÌ\Z','VN',4,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ«ôÌ\Z','VN',2,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ«ôÌ\Z','VN',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ«ôÌ\Z','VN',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¬hQs','JP',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¬hQs','JP',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¬hQs','JP',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¬i4Þ','IN',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¬é™O','US',3,19664,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¬êÃ˜','US',15,19669,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­É±Æ','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­É±Æ','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­É±Æ','US',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­É´','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­É´Ò','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­É´Ò','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­Éµ5','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­Éµ5','US',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­Éµ5','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­Éµ5','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­Éµ5','US',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­Éµ¸','US',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­Éµ¸','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­Éµ¸','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­É¹K','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­É¹K','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­É¹K','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­É¹K','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­É¼µ','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­É½<','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­É½<','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­É¾','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­É¾','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­É¾','US',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­É¿','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­Ôçz','DE',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­Ôçz','DE',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­Ôçz','DE',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­àwõ','US',2,19671,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­àwõ','US',1,19675,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­ìŒœ','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­ìŒœ','US',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­ìŒœ','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­ì˜w','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­ì˜w','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­ì¨\n','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­ì¨\n','US',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­ì¨\n','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­ì¬V','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­ì¬V','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­ì°ƒ','US',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­ì°','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­ì°','US',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­ìÁ)','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­ìÁ)','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­ìÁ)','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­ìÁ*','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­ìÁ*','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ­ìÒ^','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ°DÍ','FR',1,19677,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ±4 ','BR',2,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ±4 ','BR',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ±4 ','BR',2,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ±4 ','BR',2,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ±4 ','BR',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ±4 ','BR',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ±4  ','BR',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ±4  ','BR',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ±4  ','BR',2,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ±7vh','BR',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ±ˆË-','BR',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ±ˆË-','BR',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²!‚›','FR',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²€\Z,','SG',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²€\Z,','SG',2,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²€\Z,','SG',2,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²€\Z,','SG',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²€R”','SG',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²€R”','SG',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²€R”','SG',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²€nê','SG',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²€nê','SG',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²€nê','SG',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²€nê','SG',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²€nê','SG',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²€ ','GB',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²€ ','GB',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²€ ','GB',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²€»·','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²€»·','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²Ÿ%0','UA',9,19661,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ²þp','DE',2,19661,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ³û','BR',1,19673,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ³û','BR',1,19681,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿµ\'qs','EC',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿµ+d','CL',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿµ+d','CL',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿµ+eå','CL',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¶2„o','SG',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¶2„o','SG',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¶2„o','SG',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¶2„o','SG',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¶2‡9','SG',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¶2‡9','SG',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¶\\˜_','CN',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¶\\˜_','CN',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¶\\˜_','CN',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¶\\˜_','CN',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¶\\˜_','CN',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ·[È','VN',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ·[È','VN',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ·[È','VN',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨D','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨D','US',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨$','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨$','US',1,19673,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨$','US',2,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨$','US',2,19684,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨$','US',1,19690,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨`·','SG',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨`·','SG',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨`·','SG',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨`·','SG',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨`·','SG',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨j','SG',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨j','SG',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨j','SG',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨j','SG',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨j','SG',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨j','SG',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨j','SG',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨ku','SG',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨lý','SG',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨o','SG',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨o','SG',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨o3','SG',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨qÍ','SG',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨qÍ','SG',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨r*','SG',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨r*','SG',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨r*','SG',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨r\\','SG',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨r\\','SG',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨r\\','SG',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨rÀ','SG',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨rÀ','SG',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨rÀ','SG',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨rÀ','SG',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨s;','SG',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨s¹','SG',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨s¹','SG',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨s¹','SG',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨s¹','SG',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨s¹','SG',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨s¹','SG',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨s¹','SG',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨sÚ','SG',3,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨sÚ','SG',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨sÚ','SG',2,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨så','SG',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨så','SG',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨så','SG',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨så','SG',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨så','SG',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t~','SG',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t~','SG',3,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t~','SG',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t›','SG',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t›','SG',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t›','SG',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t›','SG',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t›','SG',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t ','SG',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t§','SG',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t§','SG',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t§','SG',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨u','SG',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨uÒ','SG',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨uÒ','SG',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨y','SG',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨y','SG',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨y','SG',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨y','SG',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨y','SG',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨y','SG',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨{.','SG',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨{.','SG',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨{.','SG',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨{.','SG',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨{.','SG',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨{.','SG',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨|+','SG',1,19673,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨}ñ','SG',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨}ñ','SG',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨}ñ','SG',3,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨}ñ','SG',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨}ñ','SG',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨~b','SG',1,19673,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹M','IT',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹	\'Y','TR',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹	\'Y','TR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹	\'Y','TR',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹Ån','ES',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹Ån','ES',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹Ån','ES',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹Ån','ES',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹Ån','ES',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹=š¿','GB',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹Aib','LV',7,19682,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹Aîh','GB',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹Aîh','GB',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹F_','ES',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹F_','ES',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹F_','ES',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹F_','ES',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹F_','ES',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹F_','ES',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹F_','ES',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹V¦Z','TR',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹Wz(','TR',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹\\ÂP','RO',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹\\ÂP','RO',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹jÐ2','TR',1,19679,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹vÄ','DE',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹{ÌV','ES',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹{ÌV','ES',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹{ÌV','ES',2,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹{ÌV','ES',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹{ÌV','ES',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹{ÌV','ES',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹{ÌV','ES',2,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹{ÌV','ES',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹ŽšÍ','IT',1,19679,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹¥v\"','IR',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹¥v\"','IR',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹¥v\"','IR',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹¥v\"','IR',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹ÈðA','RU',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹ÈðA','RU',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹ÈðA','RU',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹Ó«','DE',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹Ó«','DE',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹Õ	\n','IR',1,19664,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹ØF','US',4,19660,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹ØF','US',2,19678,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹ØF','US',2,19688,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹Ü¯	','NL',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹Ü¯	','NL',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹Ü¯	','NL',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹Ü¯	','NL',2,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!','RU',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!/','RU',1,19684,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!1','RU',1,19678,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!1','RU',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!2','RU',1,19681,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!@','RU',1,19680,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!@','RU',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!h','RU',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¹ñÐ2','NL',1,19669,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿº§}','CO',1,19663,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿº§}','CO',1,19665,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿº§}','CO',1,19673,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿºWEÐ','CO',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿºWEÐ','CO',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿºWEÐ','CO',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿºêP6','BR',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¼UQé','ES',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¼UQé','ES',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¼UQé','ES',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¼UQé','ES',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¼UQé','ES',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¼UQé','ES',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¼UQé','ES',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¼†Pa','RU',1,19679,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¼¥û','FR',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦£','NL',1,19678,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦¢','NL',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦R@','NL',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦R@','NL',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦R@','NL',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦R@','NL',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ½~Î','BR',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ½~Î','BR',2,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ½~Î','BR',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ½~Î','BR',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¾\\‡ä','AR',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¾\\‡ö','AR',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¾\\‰±','AR',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¾\\‰±','AR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¾\\˜^','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¾\\˜^','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¾\\˜^','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¾\\˜^','US',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¾`L\Z','CL',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¾`L\Z','CL',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿ¾k±ó','CL',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ@uc','US',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀG','SE',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀG','SE',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀG','SE',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀc‘9','CA',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀc¦°','CA',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀeD\'','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ©Yû','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ©’{','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ©’{','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ©’{','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ©’{','US',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ©”\Z','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ©”\Z','US',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ©”\Z','US',3,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ©”\Z','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ©”\Z','US',2,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ©”\Z','US',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ©”\Z','US',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ©—÷','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ©—÷','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ©±.','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ©±.','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ©±.','US',2,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀ©±.','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀãœb','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀãœb','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀãœb','US',3,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÀãœb','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÁç’','IR',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÁç’','IR',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÁç’','IR',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÁç’','IR',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÁkd','DK',3,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÁzg’','KR',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÁzg’','KR',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÁ—S','IR',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÁ—S','IR',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÁ—S','IR',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÁ—S','IR',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19660,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19662,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19663,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19665,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19666,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19668,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19669,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19670,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19673,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19674,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19676,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19677,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19678,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19680,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19681,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19682,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19684,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19686,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19688,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G','UA',1,19690,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ£%)','DE',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ£%)','DE',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯','US',2,19659,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯','US',1,19660,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯','US',2,19661,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯','US',1,19666,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯','US',2,19667,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z','US',4,19659,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z','US',2,19666,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z','US',2,19667,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z','US',4,19671,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z','US',4,19673,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z','US',23,19678,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z','US',3,19686,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z','US',2,19687,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯','US',2,19660,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$','US',26,19681,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯L','US',4,19663,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯L','US',1,19669,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\\','US',4,19659,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\\','US',8,19660,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\\','US',4,19661,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\\','US',4,19662,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\\','US',1,19677,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\\','US',1,19678,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\\','US',4,19689,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\\','US',2,19690,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]','US',8,19661,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]','US',8,19664,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]','US',2,19667,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]','US',2,19670,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]','US',2,19673,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]','US',1,19677,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]','US',1,19678,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]','US',4,19687,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]','US',2,19690,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂ´0ƒ','US',3,19659,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÂé\\v','SG',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÃH','PT',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÃH','PT',2,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÃH','PT',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÃl','DE',1,19681,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÃšQ,','FR',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÃšQ,','FR',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÃšQ,','FR',3,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÃšQ,','FR',2,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÃšQ,','FR',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÃšQ,','FR',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÃšQ,','FR',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÃª¬Š','NL',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÃÉÇÏ','DE',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÃÉÇÏ','DE',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÃÉáu','DE',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÃÉáu','DE',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÃÉä','DE',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÃÉä','DE',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÅò—Ÿ','ZA',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆÛÙ','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆÛÙ','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆÛÙ','US',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆÛÙ','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆÛÙ','US',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆÜc','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆÜc','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆÜc','US',2,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆÜc','US',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆý<','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆý<','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆý<','US',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆý<','US',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆý<','US',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆ6rb','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGã','US',2,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGã','US',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGã','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGã&','US',4,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGã&','US',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGã)','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGæ+','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGæB','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGæB','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGæB','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGæB','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGæD','US',2,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGæD','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGæD','US',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGæO','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGæO','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGæO','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGæO','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGæO','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGæO','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGç)','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGç)','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGê#','US',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGê#','US',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGë','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGë','US',2,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGë','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGë','US',1,19675,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGë','US',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGë','US',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGë','US',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGë','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGì8','US',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGð','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆGð','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆ±}˜','US',3,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆ±}˜','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆÓ}(','NL',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆÓ}(','NL',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆô•','FR',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆô•','FR',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆô•','FR',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆô•','FR',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆô§e','FR',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆô§e','FR',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÆô§e','FR',2,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÇ¼È—','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÊ+-§','TH',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÊ_	ù','SG',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÊ_	ù','SG',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÊ_	ù','SG',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÊ†n','VN',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÊ†n','VN',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÊ†n','VN',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÊ†n','VN',1,19666,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÊ¬\Z','JP',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿËN¥Ë','NP',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿËN¥Ë','NP',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿËpL','BD',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿË€á','PK',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿË€á','PK',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿË€á','PK',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿË€á','PK',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿË€á','PK',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÌ]Å–','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÌ]Å–','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÌ]Å–','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÌ]Å–','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÌ¼×ú','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÌ¼×ú','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÌ¼×ú','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÌ¼×ú','US',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÍÄÙ7','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÍì›‰','CA',2,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÍì›‰','CA',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÎ½;÷','DE',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÎ½Y9','SG',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÎ½Y9','SG',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÎ½','IN',1,19661,'waf'),('\0\0\0\0\0\0\0\0\0\0ÿÿÎÆ–2','US',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÎÆ–4','US',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÏ”Kì','SG',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐW‡1','AU',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐa“»','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmš','US',3,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm6','US',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm6','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm6','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmp','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmp','US',3,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmp','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmp','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm‰','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm‰','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm‰','US',2,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm‰','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm‰','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm¤','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm','US',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm!','US',2,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm!','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm!','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm!','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm!','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm!','US',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm„','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm„','US',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmã','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmã','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmã','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm²','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm²','US',3,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm\"F','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm\"F','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm\"F','US',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm\"F','US',2,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm\"F','US',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm\"F','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm$n','US',1,19673,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm)ë','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm)ë','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm0¸','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm0¸','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm0¸','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm0¸','US',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm3U','US',3,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm9z','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm9z','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm9z','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmD','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmD','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmD','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmD','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmFI','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmJ;','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmJ;','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmJ;','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmJ;','US',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmKÆ','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmKÆ','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmKÆ','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmKÆ','US',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmNT','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmNT','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmNT','US',1,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmNT','US',2,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm¯ü','US',2,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm¯ü','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm¯ü','US',2,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm¿<','US',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm¿Ç','US',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm¿Ç','US',1,19683,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐm¿Ç','US',2,19687,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmÉ|','US',2,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmÉ|','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmÉ|','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmÉª','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmÉª','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmÉª','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmÉª','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmÉª','US',1,19686,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmËá','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmËá','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmËá','US',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmËá','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmá','US',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmá','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmãx','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmãx','US',1,19685,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmãÄ','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmãÄ','US',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmãÄ','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmãÄ','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmãÄ','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐmãÄ','US',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐqº\n','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐqº\n','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐqº\n','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐq¾B','US',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐq¾B','US',1,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÐq¾B','US',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÑa‘^','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÑa‘^','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÑa‘^','US',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÑa‘^','US',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÑa‘^','US',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÑ‘1Ù','US',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÑ‘4?','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÑ‘4?','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÑ‘9º','US',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÒÏ\\','KR',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÒÏ\\','KR',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÒÏ\\','KR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÒÓ}Í','VN',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÓÙª\n','KR',2,19690,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÓâ–H','KR',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÓâ–H','KR',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÓâ–H','KR',2,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔ&(Ò','IT',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔ&(Ò','IT',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔ&(×','IT',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔ&(×','IT',1,19665,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔ&(×','IT',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔS’¦','FR',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔS’¦','FR',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔS’¦','FR',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔkÉ','DE',1,19672,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔn\\›','MK',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔàbm','DE',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔàbm','DE',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔàbm','DE',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔàbm','DE',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔãR%','DE',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔãR%','DE',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔã•‰','DE',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔã•‰','DE',1,19663,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔã•‰','DE',3,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔã•‰','DE',2,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔãæ¦','DE',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔãæ¦','DE',2,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔãæ¦','DE',2,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÔãæ¦','DE',1,19677,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÕˆWa','DE',1,19682,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÕˆ]¤','DE',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÕ¯BŠ','LV',1,19666,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÕ¯BŠ','LV',1,19670,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿØóô','US',1,19668,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿØE¢¸','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿØE¢¸','US',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿØE¢ñ','US',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿØE¢ñ','US',1,19664,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿØE¢ñ','US',1,19667,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿØE¢ñ','US',1,19671,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿØE¢ñ','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿØE¦„','US',2,19661,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿØE¬G','US',1,19689,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÙ¶žâ','FR',1,19669,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÝxg‡','BD',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÝxg‡','BD',1,19660,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÝxg‡','BD',1,19662,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÝ|4®','HK',1,19659,'brute'),('\0\0\0\0\0\0\0\0\0\0ÿÿÝ|4®','HK',1,19671,'brute');
/*!40000 ALTER TABLE `b78GM7Ml_wfblockediplog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_wfblocks7`
--

DROP TABLE IF EXISTS `b78GM7Ml_wfblocks7`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `b78GM7Ml_wfblocks7` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` int(10) unsigned NOT NULL DEFAULT 0,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `blockedTime` bigint(20) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `lastAttempt` int(10) unsigned DEFAULT 0,
  `blockedHits` int(10) unsigned DEFAULT 0,
  `expiration` bigint(20) unsigned NOT NULL DEFAULT 0,
  `parameters` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `type` (`type`),
  KEY `IP` (`IP`),
  KEY `expiration` (`expiration`)
) ENGINE=InnoDB AUTO_INCREMENT=4516 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `b78GM7Ml_wfblocks7`
--

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

--
-- Table structure for table `b78GM7Ml_wfconfig`
--

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

--
-- Dumping data for table `b78GM7Ml_wfconfig`
--

LOCK TABLES `b78GM7Ml_wfconfig` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_wfconfig` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_wfconfig` VALUES ('activatingIP','166.137.118.51','yes'),('actUpdateInterval','2','yes'),('addCacheComment','0','yes'),('adminNoticeQueue','a:0:{}','yes'),('adminUserList','a:1:{i:1;i:1;}','yes'),('advancedCommentScanning','1','yes'),('ajaxWatcherDisabled_admin','0','yes'),('ajaxWatcherDisabled_front','0','yes'),('alertEmails','justin@hpgmedia.com','yes'),('alertOn_adminLogin','1','yes'),('alertOn_block','1','yes'),('alertOn_breachLogin','1','yes'),('alertOn_firstAdminLoginOnly','0','yes'),('alertOn_firstNonAdminLoginOnly','0','yes'),('alertOn_loginLockout','1','yes'),('alertOn_lostPasswdForm','1','yes'),('alertOn_nonAdminLogin','0','yes'),('alertOn_scanIssues','1','yes'),('alertOn_severityLevel','25','yes'),('alertOn_throttle','0','yes'),('alertOn_update','0','yes'),('alertOn_wafDeactivated','1','yes'),('alertOn_wordfenceDeactivated','1','yes'),('alert_maxHourly','0','yes'),('allowed404s','/favicon.ico\n/apple-touch-icon*.png\n/*@2x.png\n/browserconfig.xml','yes'),('allowed404s6116Migration','1','yes'),('allowHTTPSCaching','0','yes'),('allowLegacy2FA','0','yes'),('allowMySQLi','1','yes'),('allScansScheduled','a:2:{i:0;a:2:{s:9:\"timestamp\";i:1701407400;s:4:\"args\";a:1:{i:0;i:1701407400;}}i:1;a:2:{s:9:\"timestamp\";i:1701666600;s:4:\"args\";a:1:{i:0;i:1701666600;}}}','yes'),('apiDelayedUntil','1701123599','yes'),('apiKey','fb49e1a2aa8082a599a4ddd4bbad1f029dbc87f257b725d531649873085260035581d684f495054015c5139541455a06f333acb5d26779d47b1798f7df7197e102c9f61471a1f7eaff834cff751a169f1ea5aa0321c00841318c5e15576a46ce','yes'),('autoBlockScanners','1','yes'),('autoUpdate','0','yes'),('autoUpdateAttempts','0','yes'),('autoUpdateChoice','1','yes'),('bannedURLs','','yes'),('betaThreatDefenseFeed','0','yes'),('blockCustomText','','yes'),('blockedTime','300','yes'),('blockFakeBots','0','yes'),('blocks702Migration','1','yes'),('cacheType','disabled','yes'),('cbl_action','block','yes'),('cbl_bypassRedirDest','','yes'),('cbl_bypassRedirURL','','yes'),('cbl_bypassViewURL','','yes'),('cbl_cookieVal','5ca54bf1aae35','yes'),('cbl_loggedInBlocked','','yes'),('cbl_redirURL','','yes'),('cbl_restOfSiteBlocked','1','yes'),('checkSpamIP','1','yes'),('config701Migration','1','yes'),('config720Migration','1','yes'),('coreHashes','‹\0\0\0\0\0\0\0€æa:2:{s:4:\"hash\";s:64:\"9205a8dbad760a07dae1b55c6bf8ec859d6b6a5ce754bf79d34a210f31301e00\";s:6:\"hashes\";s:143296:\"\0­ˆëW7‡Ž±ht#“	²šq¡»)¤ºdÅèú$\0ÐÉ\0(Æë°xJ{ìh¢Ï®%§\r^²×:€û(ã5Á—\0(Ðœ˜úZúY÷Y˜@àIq©î›È—#áÑT»áù@\04ß—¼t‚\\v¦QçüÞ¹¾ô\'_ËáÂajxÊÒ¦Û\0E=j¶ƒËÈ‹|p8.æÂ½ÿ÷ËÖ¤ñóSGpåƒ\0Eq­x¿ƒ”ÃPa§ˆ÷>bváDª¿o4VŠG;a<±Þ\0^NÙå¼˜aðe|K ·-àÆÜ°ÒÍÉœ=ç„\0bœ&Fžö˜³ÿ%|w›í*Qr;|/Š=(A§óä<ü\0…‘¥#æBí5à¿j†ó$#õàj!ŸµþÐbN€ôjö\0Û§ÿå4(ÊK I|Š„¯0ºìµqD.^¾v¯\0>|æ;(ß¯\\W*œ7?Œö\nØNªÁ2=Ã7[Uo\0µëiäÓÖ„\"ÞûãÆ]Ñ^è°þXDþ“2](\0¹‡ö/Œ¡o)öô:4]±ã_Çøß+Ì”ëŽc½þ×\0Ôeµ*ë@’t„À±\"éáƒq	ÈNþ’5÷„H¥\0ä9Ûw’i„ó×í5‚ßÂÐ“§Ã}ˆÿ´hÂÌ\0ëüZÌˆ»~í0±=ïèG‡#´C÷ÿZ}Å* †p\0íT|Ì…_¬ÕSò8­´O0Î¼ªÂ¸0ªÃª‰6•\0÷ù-bsèG¨\n(hr\Z.ónåõù!eÈ×z.Yx€×UÏiÍ5G èÜ$PÂüuÍvAT‰‘À´pŸlçJ¢›}¢‚¶a\ZÈ\0VX=:ˆ‚8~\"2ýÊ¦D¶IèXVªf¸EW£Ïe“€ßG§]¸ñ´q)6—í	ÅjÜí”õnNØ¤^}0[PœKXs“¤+È‰a±w©S‚¶à[óU`|WS³PDæ°ç¾ŸNh¬Èb!•Æò­#§8iß>kq6¿R„Eÿ5ž”:—\"ü…;B­Ži.qXõàA4û­äuUœˆ+×±Ë…´Ï±„ç·Tª_^gyªzG‚L\"1°û³U}6:ŸŸl|‡ì(ãœ¦Á–q{ÆðVÀ~uê<¢Dh¦o*¿¯ŒcÏ¬0ßñÎÁx¢cl$‡	™4ÚÝm•·äÉøo¾¿`vA:§ø™ìˆ`{rfËÁï_ûS3/sÙmÚ?dš^Í”0ßX0ã#q–Â-mlÏ*€Ï#TñŒc™ÁxðEµÇÂƒyîˆÅ©œâHœà÷î>Ìã$É2þäŽ]â’%Æì*œ6Þ\\þdpùÛ›!½s%Ÿà]Z×YÇoåŠÝ¿ŸþŸ¥„©‘ôÉr;GÐ÷\"Š¥5 ·¡}ìx(ÚÓrÜ:a,zmKƒH1|/ã†Ñ+ò©ñGu÷Éß&Ãw]ê-H€\rRWý½\\Ì5õ¦õò\'³Œ=ÃP–Å¹ÜÊsZFˆÔ¤oD-x?ì< u¶ü„qýXQ€7aiÌ\rICÒpE–KáÈÌð‡y½€kŠÑ©}Ë£œ\\$­p\"·&Ìp+^„ºÕ\Zõ{©¯ŽÛÌÂ˜¹5ÿ|™f¢ãµ…SÍLšo3EýxÀºýÑ¥Uãÿ°q¨`Žq4uí¶øZ¢®¹ð°¯[nù8”O£ìr7‡Í0H01YL$RRAhJ6´çM¦w:/ð7š.ÊÚP”Áƒh.BÂU-Ñ—ò\'TsÁªz+p¿›×pHaœP04•ÃDí!Ì2å{ÑF°Í¹|á©ö¥¤p8$—hûÂ\"dö3ÿ¬ \\•£pY•Qëá£Ž›K4Þ—¸ŽØºðþKu³\0MÔx>]ZÛø\"ÑzÑ8ÅŽÇVßMúË»yUL¤…ÁK«ùCËWaå\\°èËÄ\nƒ;è¥0åÄ \"f«ÐÎŸïÒ\'\rÍ¤ýDÄdMÅ×ÙùÃ÷§sËÇ¿‰ØÚ´ø$2ôj)Ã,\n²\' #6ä§9\nø½^îÎ	ntº\"V8ÁM@õHØŸQ÷¯[S$ü‡ÏÚ–©õmKØ2†e²féte¾4ùœš\ZðGG.Àf­±Vy`¸Éÿ)\".o[`×ÏÝ\rÉn”óçjn¼viU\n@,›+!%u	re4Ù+JuP$,–WNÙPÙ2Ò\"Åž˜,|^âå€yÞ²ðñò/\Z(A°1]ü/Æ…­B‘Mój:­å@Ñ«ÈG+SÛf¶º«ÿ¹dVži‰\n°6W·úÔ‘\\<çOÌEj2¬QòŠ×Ö”\rÀ|þX6ÂìÔîÒ/46¤JòÕÉ?ÔÕæX’GX†~†–u™Ÿúic\râpª«õ´ûQÖÇí™œ½÷\r?c˜LÙTÓŠ•ùîqg¦È«?c—r‡È¸¦t­d®¬æB\rTJÂ,Q“Ó$šTDh×ñÐ((Zdz¶¹vOÿ¯¯Â_•Ÿ;Æ€›³EŒpYö.Õ&}öº_º	ÔQ¿Æ‰ãoSânnûÌµvêø\0)°öÌÓ½SýËnRÀ\'÷¢X§^¤ÿäkhûº·ÕÉ‘Ðiæ7´¿–ÝÓ¤å:DILV­\0yÅZþˆ)›¾K‰\nã…ËÜ˜D‹~™‰%Roøïc‰Ö7®\r¦ºL»æ>1ŠÝˆ]š^]¬RÉ¢NF™MôâJÌ,˜ï÷iêI.2 š»>1·ZØ;×¨¾‚1Ô$š!¡‡W:	¨SxïDq5ºà/wºÛ_W:œØ+fð1zù¸g¢¦‹\\Yòúâmõx³GO0ÇÎâjo].ã–½®Bœ=½f~:N¾Ì¤Fa6¢Õ¡Ù\nY ØÓ\'ºèiûÂç+­`­ÂfGYbmŸïUP©™M™JéÚ¡0€&CvÂèM“$…Ûèú¶O½·4-K¸	o6Ûlbö1Eå;±7xù?ð-™Ç±Œ¨ZÞzE»Ÿ‰*†nk±»‰E×m@ìžãéöŽéð1s®­Y•#1$Ðé\Z£=I˜ˆŠ¿b£ŽXBr½?Š·ìÍ¥-ô‚!Çiº>¡[¿²eøV{ÐW¢!FµPþb<&Â„AŠàÐüÕ8Ó`Éå]wBËùÎºõ@kp&»›¹h4Ô›µ2¶™ºf\'öGÑÓÏIS•æ} }Râ¥…ýJÐ›Z[`Æöm¦ÿI”$=„­ù¼¹D“‹Ö›&ÄÇ¾@+Õ¢ËÐqO.¯Œ…x&Ž®*p§Žö@ýlëÁÐÒþ÷Î’/kz=¬i»êîÒ Sò¨°ÔÀý\Z\Z4Ú¶1é5ÁªÇ2’3\r#?EÉQ·ËØL¶ÕIm$ÏZÊåªB\Zï!„ãœ&šÍ–Ž—Ck†`7‹Ï×\'/¹½]äiª²5 \0¼Òµ©Š2SC‚áÅ+2±Èüf!OgÐve½CÞhîÿð”ÖÎ%%Öì-ÓÕ)^\\‰¢\0«t`–kà²@§ƒ›UæOÅ”¤cp¦Ï>ã!8HB6¥Ïàãìâ=“bñÂ‰!§ônŠz\0§OS~Kêøç|$Øëö°T¡ìïÁ…ælJÆøbÿOwŸàÐáÍf\nTÀþ²­Eg\ZUê\røŸ£l{à²SYD7IÕ.`èäµÃ}#Ù§þžôJ4 ¬6éŽ¬½ìM&ð$!2d<žª\\	|\\—?gü\nKN¢eéÓŒ»ð&ÂÐŽuÑ¡Iq™t¼·‹n~T	_j×-˜›†É%³¦?ž7¡0i–»Ë}ÍeÝiZÖO™&E+rXŽe{eª½mXÎÈö<¼:¦KSy{ ®r·>K^sâVS2oõHÖá_îÛ)7¡©šãÐz_oeïÕýÅ­y§^/?h;@râK%àáLP…Çf¨àcË(|Õ_] ÛUÌÍ’o~MEÿèï×†Ý‹Ùs¬ùRpçdÕÎF[ÿü\'rÝ5lþ—¥è”åª€Žî´sèƒò@Z2]¦óºi¾¨¨](J~nø3ìàÏ¿Ù€hjóqÚoÑ2±†kLý›JQ§c\0Ï8|VÜËA‘üýŠŽNÚº¶)\rÂmäMA¼ÌæD¾°os,–Õðê$»‹ôgJ	áÅ–Ø7l}Øa¡ñ¾ÔÈÁŠ¯Ãw|ÛgRLh!ö°1ÒRóþ&\'˜ýk±D\':8YÞ¨KAa¬-¿RHöTÒÿýÿ¥ÕýŠª»(:ó=ß¤\'\\Õ\0¨¶¯|Ç8Í(´ˆ]x’Zä´ÏvJ+è~†S‰$Ù‹6ÏîvgAÑœÀÊ‹Q?­j¬`J“ñ©Nõ]î0&–ñb›\0ëV?9´Áº¶Ñ\"­.÷I3ô‘2r)rk’+`½NiMçñ2]<¾	¾h\nÚË¥—þOí€3Œ5FžÐÈ\\Ì\0÷žð“,vSçç+p\ný.‡§™é´\rÄJ*RT	ü!ŒæA&–ÕUóBÍtG=_:\\ê]>iŸ£?Î·@Ú¹ÜaKÕºÚ*¿ Ô½+]²€µÒ®gÆ‰^62óG¦ž\rƒS …|±;)¥$=XÁn!Ãº®‚l=Ø@õAÍ°Óñ:ÞV56UÆþx5ôPx››Í&ó¿:V“VæûÚ-qX¹êA9ÀMç4Þà†-²°©t\n{ëÑõ†}ÿMI	AE0NãöÜÊûµ„Å.T0b([Î²Üžª£õíoYdÔÎ%Ü å+£[»Bº•ð f¶<3)|•žŸy-¯d‚°´Êô]`,5†ïl9„oÈ¹¤x«œ;‘ˆõ¾xZŸ Õq@Éõ¶ä51a¥Ixˆ»¼MOYÀUò\r‹ZêtŠKÏ­éuJOyÅ¹¢&Ò¸øÄ*ë‘Ü²Æus#‘žt1ð²#4çÍö´Ãä‚¹\Z€Á\'&Ý8Ñ\0Ãª”¿õ›m9;:áÄÍ¼„fÂÆf„)“™¤Iïœ³Í;ÁþPoiÃã§Ú=DáŽ¯ä¤0SlíhsgÜº{”,˜Ì)\Z|œíÞò¯<„\n“x’¾*Ô×óŽý×iÄó–ÕÉ`™€hˆÿ`“P¡*Í¤¹!j1m!–~J­Ž\r¦OÓ]ŽY<yŒ}ƒ\Z»>ÉºH¨¯ðI|ÜÇPôè±ßè®àBb¥½eÔ^üšÎˆ;VT1¨Îcj¨] k^§O×ê¤9«A9/Ø\ZóŒ%˜@b¤.Œ`»ð•š poÖÀïdf¹Æ?»jr£äYåe|ÕHŒ÷h>Ý,‹ecÞ¡–Rúes5-“šàD=ÇÄû<óÚ:3ãÍÏ©‘MçñÔ>»‹ÿrî6ËÔ¤Ðô%z‹uÛ‡7þ}»FËð˜Ä[yx±¯]káÆÝ­÷Yrƒ‡Ö¼9£IV,C2\"“•ÉVÑl·—pˆ]l2¢Pïøf>ìõKpÔÇÖšJ”¾™bvw°`î©ªµ*»wé ó}±Ëø©¶*Ê˜ñ˜)>2ƒq¤–e¥€^ÕÀ)ŒP’¦ÇnûGfRô@Ol,>ivÄ:°`ÄtQÆ*·8\'¥<“ó\nã‹Á’¼ Jò·;“H`÷QØ6pq¾ÿØaó%ë®ñ\r†Ø	üì\"…Anˆ3HØIsÌ:Y¥¤aÁe0BÒ²yõPp\nï­¾¯¨™òÆ!Î›Íÿ»Ù&°ÖÉ…\'MºÐ4ãšBŸSøßÉ+\'¥4&¼$Ø¡¡óVgg¤áoÎüg~Ùëm/à¡/&t+äùâs×ì¾äÔ\"#:Z«Ü¯4ã“‰&_&ÛÇÇ6\"xFð|w`AZ_+vL\r}°ŽNßPåÉæ6ƒ«¸Š½¢_ëðÒ°æÝ¾”ýl2¡bž©¹qÃœ$U„v¡ñ	l,s¨ÅÙ\"\rûmžè`»áY×“¯U”¶X^žMs÷—6RŸH@ñ	&‰å†¾¤BÇxžö@dÆR#U³ôOþPg›žsHüoè)nÕÎÿWréÎtZìMªÒþè?%†ï¹ˆVúÜÀ¢D±°FvØ9´1{|éö;é\n$ynÈš’hM‹EÔÑ:zŸÜüà@¯ˆÁüÜ*9V›»ŒÎ¼ó[E£¶Bu}<¨î„±\Z#¶d¸4*û?˜œå¸dªQ]Bx.|9Døö:h@ÖÂQÿÏ/U\0-|_Û¢1ùg-ñ+´­·Þ}üÔ˜!^iB³ÐòJüÕ\\W¤]f§œ@@…w£=	.]¶íkZ1Ñ™mÒGõ‚ý]Ôxà0øê•É	14\"1œIxªõGL¦[	•‚±>(GáA:ŒýÇ	64µ®ˆç ¹2DMÈMâ$Ë\ræ¾i“\0Ô¬‹	8\\Å¬ç®jùA’Ê”5Ñ+X­œoˆTùm°_|	Më°ìyu$œ1¼ck_‘KÿoÝfÛÏm³…¹%û	g)[.‰r\nào”i×{4Š›Q\n\r8HŒ\rfXðÀè	v¶l»´õÙ®ß÷!ÿð¹ÿP€²mýø•\n6|Ï”K	~ÐõCèÈ«™¯7¤àÃ:À£s&uËäÙìjÔËt	©+ö{RôƒäÓÙ„åÔËnýt,´Çž¦`µ•Î|Uî–	­	½œ#t‰Ì¹»ê«p=¬I\"¼¦˜)F	Ö“ÅÜñ-Œ\nqU‰Ëiº×Í-›$àh*íØm™l	æVh˜ÐðLC‰Â»>UÆ8.Å`Æ@<Kéãh	üÍ¿¸ÊU%ÅO¨HÞ¡ñŸ…@¿~x\\6ÎÄ~â\n<º:˜X†hÇQATºÀïì·oŽáp2õ¶¹8>ø\n*„²<×÷ºÓ³³?HM²\'VÕéèLî¼\'[RÛ\nâÃÔVY\"×³è\\ºèX’@;t<HêÕûý\\\nð@&Øê[DqSÞÁÊÓðìàB—×N#F‰B…ä\n#\\˜é,Á-ö-ª*N	VŠÓ»+äÒ:Fç Ó¸‹\n*An•„¸.]éBéÄtúvƒ!‰WÒ§Mw’9ÝûF\n+P_tQÿVoêú©²ª7nÿ\nz#ù8ÍúºÒÛßJ\nDfdvPÿfŽOn:ž“˜ªa†åÐ³Â‘Š„»XÝ\nGkù ~ng˜–m.ë3\\–\nðæ°1i‚ÔjgÖ¸Ó\nv­?Ìuì	ÒÈÈfßh6Ú2Bþƒè?ñ2\03”}¦\nx‰çm¯«…nV=OD¼“\0T­ÚÞ)‰ÏUÜã©\n}.¢’†å×÷væ–e¯\nµ?æ°.zŸªE…ð»ÚÐ+É¡\n‹\\_9(ô)7‚\n—Ö/õSæà\'ägßƒ†v•£Ã\n¡9d£Çìgð~@–¤®|ëB-ŸÁ°²œÚý6=£\n¤TÂ[Cp¹±§â(,¬_V+äL\rÛ¨I¹ü(.ˆ„\n¥súH×µÑ‡c ë-y//ý?‡\r®$MÌ¤j3\n§aqYK´JÒ”Î€pù\ZJüj¯\\PÇ˜È\nÔ\n¶¯Ú·›tnŒ\r‰EanòŽJ;}(ïÒÒ™©ñÂ.°Ä9\n¸X:€¼QØ}×+öO—\\ß_“	{¼Ü“C\'a×y:¤ß\nÁû ÅW\"íˆúëw†\05ÑS NrËý©Š¼šh\n×CãÙ0ÄpFdù°‡l•\0¿ž\"uê™~2\"õT¯½p\Z\nèvÉ[\0Çõ‡XZppiý.Ì¡c¹;~&Œ†Ýø\nî·Î&ª)h4Ð_`ÕFãL“<—ã:`#pf¢ìò\nù˜˜ÛRW#Þˆ´ å¦Q¥ÆÄ“4E[£\'Äz“\r…“)…ƒk³ÌŽOÜdS0éX±z¯ú†_óÈÞÂ61k‡K(£á]1Èz¯ukpR¶!¢‰³Œ—YC8»³Õ`dfh–.^8¦äôÊ!{ÊÀÝFüN‘L{ÎçzÅ)ªú,­\"§wÍWÏýS²ŒJÇ²þžÕÁK­SÁª´Àuá¾’¹MˆÂccÖÍÞcdD™(‹Q±Ì\\™\raò•[„J?TÓÐð?ÑÿúG¼d¡æ(s†©ª¢Ôîtô¦BUI+u›˜ÀC¯ãÅ¶…R‘ŸãSF2>Â3`¥ûvÉþ\'˜:js(-Nê§²šÖ ¸ï–çNç3ƒì•ô:âVS;ÛÅáCT\n€»] þ¥C‡rJ¾2ŽªËÉm5CZ‡\0Ù/@@1ß1ÎD×Õ®6½¸8g\n)eÄÕÚzéñl¨1ùMH›‘&ÝÆSîð.>õU‘B|2›üÓœOU}¿Ú(Ô°¡ýÀzÌ¹Æ=êä†€Ê0j2¡4\n:‡²W“nþ¨”\\C2tcç2Á¬Ä’ZV†Rêé¡ƒ[§‚l#4ÿË»>1Îµ¢´Eþ€Âl|lh¬®£ÙÊ]ýŒä:ÔYÅˆõ3	š§Óì\\gmÌ»ñ1)q+#ã˜òÙbæ^0rR_Ò²¿ˆYn,ªJš©©½ÎÍ“TÈNBº(Ù-±§gõê\\ICÚž×:rÃn…Ì¿†>TwØD\n®Q¼!˜@iDäøÃr‚è´È­!wz÷L{©ïJÑy7-Ñmé×á“Gé´žYâŠ[¨ÍôãkÊÈEn#XvÕi‡w÷R»:žM7K¬kRŠ¢D·•¬‘.„ó²© L9Œô%±S÷¨³J*˜À–…n\'Íªt^ÀÎÐVÉ¹ÅO‡œÆÇì*ó(œ˜„·Š7Y‹î(VÝz|%\0\'j·Õ­lø÷Øµ®$hçTCîôßÕžNû8köÈºÉ™y·*™<I\nÆÕÿäª(øÈýx€$ÿðC\nÛ¸mœ-Bî©Ëóì›ìYVAlÍ¼2¾VSü#nÛØòX¼–‹Õ6÷ÃXî”›âñDUÈTö=õ–1O¿@ø,xÔÏý’ˆÝ³Ù Ø)®¼\r&Üd5·s/,—\"ìd·Ô_ÈJ½.ÞÙ&t8ö&mKX+ÍC·Æ†\n!‘;[oVùw22³š¹\r»³Þ‰#<*QÐfûš(¥„õ­™\r%¶P¨–˜ÓùcWé-:\'2„Uá\'FtàÝ©z\r…Š}ÀäŸ¹-V±Ûß°Þ\'eCCÊ…ãe-2,0\r1?–;IBœ=S±÷\Z“2ÍÖ¥‘&þ×†Z¤B®¬»\r5CÝÙ–˜òªNËùsÅØkú×úl›\'t35¿¶°ª\rNÓæI†Y›·½ø™Ô¯!”Çê6)¬ñI£Y\rQiü^š\ZB|­äf²‘C‘¿è-/r±ÞUÇYÙ¢ÅB\rX·[cdpSs3Ó%.Xóå|AˆºÄwü˜#(JL\ra‚{pë9ÑÙåó(A–)Ë¡…Ì®SPV†Ìsë6ì#i\rnuŠî:Ft\Z±¤\"P9ÿµ¸qP¾‰œR¸®PA \r‡¼Ëk•<vWàPäÀœvªãg(HÑ‚µ¢cŽ+d7\r”YÓøtÚW^¤ü¬}rIxÛ¯óºu†$ç/dMkØ\r Uÿò‡:ïwöçëÔ,ÈËß&çK…p&á\ZšÑ\rª7GÙ› ríXylÖï³ <U5p8â­nŽèš\rÂ›Ø×Xd	D\nè£ìñŽ¬q¼bc÷\Zu—íÀ\rÙ“£ÒC7,š¾<ÜúÜp­,ÏLùâµ~rYús#€\rç\"¾(qqš6çZN†è´Ïæ–Éû–ÕÅŸ&åh©Ï\rò\nÝîÌ*J–Ô6´¤©¾û”V^±Ï%W\\Ày¬\0Ìì»@:ƒGCÑ)Ì¦Žö|u9 èZ<Pr?s2\'íh?IÆÏIëÂ3z(BŸGQ#‰—`päS:eJÇ&„/–ÊáaÉ‹¨“`ï÷þ\nŒ}ûç\Z\\xÕ+ÃG\\%R£µÍO¢¤6³àûí}î°ã•“æ‚«Ä-ªFúkRVËð£6š·ƒG_e\r­¦\"ä}ÕQ^uâÕøÀ¿£YtY®‰sNlÉdU|ß7™‘tìUàFY€›Ènˆ[ï\n×§\ZZ\r\n²Â‚Øñd.¤«ji½!ö¯ã!aÔIWRHÛj°wHBBÇí•Îíu¤Xp\0bäUeÒ$OrÎ°Ye¼JX¥pºW	!ëL«	o÷Ñ¦Ÿ?Á11Êæ¨]ûQ[¯Ú7*ûa3ÞÇ¾Úh‰‰,¡UúŽªc\\ë¯kiš² »6uøàJ\n3*¬“KvÊi„åA&à4’ú«=‡DéÖq!è“¸Ö§f;4“™PäZµøeµO!˜vx.eèÓ8—jY¦»ûçß0\Z¢´€èP…P1¯ÔS/ÀÞ0?ëU!õÍˆ¾ß½¸õò6°??ÏÏöZž‘vˆw=2H:õ)x.°ô®‡³Éo\\ÅÔJ†Ât®LUËÕoíõßñ­L¶¿~ŸÐ)6ÓKÏ5S$Ê‚8—ÇÝ×â¡§5gg7ƒ3lsuØ¾«yˆÝà‹Z¢wÚ ›0YE\0éåÏ£èº«i\\ùÂÞ|’¼”˜Í7‰Ùwq‰Ò;,r’íäLXâü†±çÈ\\35qv.Rß¼h<<êï«‘t÷hDŠ$ŒÂ\\ç,ž»t\0_g’X%4.à¦tPš]È>ŽJT41l$yˆ,´ï`p—M¥Çj]#ÚW­B‘TmŸþ½¹7gy\Z¤ ]Oý®Y¤T€­óÁb®PÇšæ˜ˆúFâM…(ñb;ËôKáóæ«g«&\nõ-“ûnzEja ¶#‚[ÕYdIdf@\\‚K2o—–Ø‚/*Ò~ÛHwèÿc@Û2Ží,éòÓù´¶P±0ëíÁºé¦Îãîx`ÕžˆÚdZvsþ.ÔÄk‹’º…Þ\Z¦5Å\0«ºyX“§$Èõjë¤‹ˆÖIˆÂö8¢ÏÌ@t=Þä{9vÔÆ>:Ì·M\ZÔÏµ‘”±¸\rBt\rðÏ×ÌÏ3û‚i½„0bnÂÔj:ž$L gÎƒr´a˜½å­±‚öš„tõC ÿY£\n™ÜHßú$$ŸTƒÌž}^ñpfO]ÅÇ­N3­%\r\\Šà-ØA¹J²KÝªK—àƒý7P¯xeæ\'£PHøÿåHýP=,»O=šŽÈÅ+ËÁgØo´Yq¨a|Þ\nk¨3L§#™¼L‹‹ëNÁ·}ïœ\ZøEåùO\\0¸uÅÊFOR\Z)Ä§è„;S \'bN<vÙwúLSÚ»«sT³Å|Ï>QëÎ°Ïi}ÚGåD…£Ž7á OF5ì¢B×NovÙßÈ:A_-3£ûx\ZJ¼B“@k‡y50é“ÏÉ\n­×Qã(çð¯;®4ôÁ.ó¸ò`R‡Åwô‹!óT“ºuwm¡t5Éo\nÌ2A\"k”ßšz­ÿ|lSÉPpÜkÔGÆMÑ8Çüƒ•¡ÝÔ¹ÍÜöfòEËx;Ë±£ÉOØ[À÷óÌJ`uOâv&_ÜÙÜ-]ª›ƒÆE–ç;|¯µx$ åí(˜t`\"òíð/\Z=á`>&î‡oRŠÖ«Ùúª	æÚ²îç}ÆZ	wé%þö(ð4)¶;\råí;¢)6qi9CôÜ2éÜtÖd64KÕ®ÚAØU)Û³! ž¡Pdlwä+´þ¯>Æ;ç ßO¬±-LûhyŠûML)\\VHÌã3_@AJ!í_°ªdrNßdÒG¢;žÏ·ð6Á<³á°òúº wj›;ÔV½Û4dkÏÔ·Ü>·D‰ŒjÃ,p„Æþk~*Šº®Ýd}ç¯[¼ÔíçHù?âiK¶[¼i¾ú/Û(õ¯‹â^ž\\‚Œö4¢žc-¡ÃÈœ¡þ)öÍ—ÊÛ·õ¢Ò@c.ìV_;qö¦ª:uMø­ÛX®ýœbW…ìZ`ïÄE²Ø¶\rÇSèñkyíì%„/þ-‘Žu_EC©?oÍTgûNLC\"Mï61É¿ä\\ˆ)®ji®÷êÁñ]ãm¥†bŠ#¯™«6ˆ§C2 —Îaoß2á¨FýÃäËLØW¡”®%\rVJ~øpŒí$¡Á–P(‹ñqŠÇú\0„RSé;\rsò}¼ºo%Š©XOwR	É\\˜óBÐ;zÜÀÒõùñb#Êqš¾l¦¼EôˆSŒWDò€æLexìÝéª´@m!Ñþ~¶î§Ñ|dûET9v,´WÑ‹‚‡ÜÊ€KKì˜Ñ#\0ªÊf›ç¾€Gº~µ„pÈèoPqë9¨Ã\rbL\\9ö2×¬§†n*PP¼\0A¢wƒ:oHðRRˆESÌG‰ÂÊT-ëa*Qf±,S»7ôÏqÔÌ“<¦U*\";b¾r’êÛ^°&Â7jùFÅ‘øú‡ÀÒ±yÐZA\"ÊYŒ!•	=¬šxö`Jß©i.¬?w~ë/\"w¾U{«’ÒLf×1:Õ¤y;¨&Û†Þ¹[rD«ÞbóNv•Œã¤„¢Õ\nÿ\Zwr‰ÄkHuE¤ììôNÁ/ïJY·’þgöSi÷–)”N]oòëÕ}ß0<Á,ÄíëeS</öÜ“8CÒ©T2I†UXÐjFê¾\rPJ6¬\\íd$Se=gÁ®˜øÛJÞ°S·0¼£il‰ww®4‹:™øÔÚ\"D½‹¥€=[•¸ZÌï\r‹‹ç#¦A@Èf3¨1_<ÈÑîv£ÏËü(QNÐÜYCwoéÍÀÛô}zïö/+xÙ±—®\Z8Õîû3¤•¯óóÛ€TÁÑ‘/ºÇ*¨2^ÂoÜ°ì\n­0üþ\0ÓÏ1îx?F(É8Ž¯ÜVíéÅÙ/`8ÜùÐ†ÀÂŒã×t¬2Ô:²]XK%×	EL­Øå„ŸíŽté°~¨nFç^mºÜÄKYÄN§Æ\"ãè €tÛhRÏDé†PÂ>(ÕF-Ñ$>Q°ŽA*0l[U[”±µÚA7­EÎOxÆŸ±:Y§Ã{¡ñ ”2gûZÁ“+j{Üh“øöNž.m·Û©+Ë6™œr0Á…±jUÕÊY\r³²ßÏûFË%Îù\\‚V[zŒ´7¶âÂq´ãXÅ{4¦a›û©Ëç4½•¿…=PÔÒž%^\\$¶ürfš’z˜;@h§¢è¬¬&§f{»Š2ðTˆ€,Jg~ÄKOb¿‚HÖ$(ûÀþ\r_®\nt¤lì	ó6±àAx	70)P;ç¤\01¼«œM{}iÕ®ƒüEÔß\nì°}HNfÎ0/Á,u¶ÞøIøÀÆÿò’õ)æ-[\0ª·=Ö¹?¤+;Q¦…/×¬W/{º˜ßšlDA£„UÉêRp½rmm\rF6í©ãúŒØ·ˆ¡iŽ(\":ž@Ÿcà‹·: <R)‚¥%+:Á¼ø¨ÉG%Cy*àm?Û´¶/Ä\r!ÑÿÌ…æiªAHK2°ïÄw:Û%.ó;j@Û´£)H&î—R‘×°£ÄíRÖãÿwci”Fôìz›þ\r_c;âQAÞÐèJR·Q6}®Œ%™\0ã’w˜…Q1¦h~ÇB¸§×ºÊŒˆ„¸Ê¤!ígÀy£¥È{å8ãÄÙ¢÷à7\n\nïQèóÀ4Hw@«³8<Sn-G¢aMÄRAÓ¯ƒ•¢gT1üÛ^0>ìˆ\rŽœŒñåŠ¸Ö¬+)Þ×7X[_§uÒÛ±HÐØ]\"¼ª´Â¡`Änr‹XaÕ;ã?~‘ŠR¹žq3ü¸Ù½¸R ±©Úaår\0Òþ©B<c™=OR“ðÂŠÌv³B¢n|J¼±In²;51VöSKÂ6ÇH°òiÔI¥Ÿ (.fO‹Ódx,¾0Xl¿€ÜJëú.Ó*ÄJsŸ9ÇË&ž$ƒŸñÀÈ\rNÖZ/®aU‰Æ`³dLŒ?ì>C|É®Ê‹^vò…‰s‚_%„WÝ¸ï\rJ–èó*Äf’zKà˜Hv®¤M,¿ËÄ,õÛz»¦ã¡«ì?jkÁºÏ[×0}ŒÑFW@ñU0ÍÇWÕgSÀ¬2cÅêFFˆ|Õ2`85’SbêG?e?q7ƒ¸¢œ#pjÚ¥|É¨\0Yåï‚Ü°O|øaV3E‡FW^@l“2þ4KÂÌ<\\Ø/#\Z¾¸²Ðjp‡ñ!C——B¨ÎÚ‹TLåXÝ6­jîáyÂ\Z\nê˜Ñ‘Ö4ºWÁ\\\ZÓTàð¨´ÓM\\ÐVûdEêÒà¶¶|@Ý]Œ)2Ô•iqÇj¢ì\'—Vpý,äßÿœèÕKºÞzMr#»ëÜ6hæôq	:·@Äß®›\rÏßÊ0lÒž„·ÿáÇáŠ6Îj¥¤ñÌøZmŠcúƒÁþ-«“kÅÑè­Y£ÆÛxJÝÓ5í½ü_Ö*Þý–]O\\“”s—M†Ö\nÕTœ”27Œ«éoÚ CÞg`cŸ™ÞË°mÕupa \\˜|/Jîy§2åfy2qýtÏ@WŸkàmxÙGÊÄð°VÍ’´×µ¨Îpzkðè¨în!Šãò>x›\\½ðh|À,e´0?ˆ†s4n÷,äLmu™Œ\ZÜ^Î…hU}1}=Ùz£èiÁñy\'\'|K¯²W?[ r(\râ\Z3ƒ·Ìz©Ø»×fW^Pƒ1YØ2&ÔÐÛ‘pAµUØÞ¢%šõ§â˜fÜ¤G<‚+HH4ûywyéª\'hz²xáú\"¶v‰\\òpÒ$»¸boÀ™)cHúvSÜµn_ã™ˆ¥(a¤§WcÍ´AœüÏ`kÔ­BÊœÑ®,2£Ž×÷SˆØ^ÃºôDñ±ïõ\ZÑ£0?ËÞ–¿fót¶ª&Ý!-U8ö†<’´Gzï<3\0RÓ-kÐ,šuø×¼)³†æž\0­²\nù9e\n!I9K˜W÷«ÜÇ¼?_ÆIaYOrg÷Y³Êããñ/’ˆ¿~UJO¤.Å€#µòEá‹ÿú5´*Š\'CÅqk?—R³0©ž}<ÝÌ¤¡ÜÁ÷ø. ¹¶$^$¾ŠmÛæwÞ»`.AÃ_[ò¦rE£å]þJ®#é¼Ù+ß˜£4ÿD½¶,Eã¹ëÇ¡Gfóy5ÜŸ@‰ˆnNñ„¡á«	Ý36ÄM‘¬ï[ÏyéFRDÓmÖß:„mâ\\ßûØì,Tê3yÈÍÒ?ÌP¼þ¹Ôˆ+o˜óŠKqra•àU“Wj÷jˆ:M±ÚÉSìóïC\0¨ÇÐ™EšºpÚŽŒU=\\Ù«2%±ýüÊ72B¯•9º¾Ôä9kÑñÏ\r?rÊÇþqQe™-µ=‚ù¿õæûÇÓOzÎ³Â2z!•—­.‡wàì\ZFPAÀ¦¹SÓƒP‡l–ZÅNÀéÓ!&€›Qwô|¾c;\0,2ˆaÚ¢Uøè§P»ížrYÔo:Wš3§–\"6¬uxhêÞøÛSÛØ¦®«3)]T•CÁ­ËŽ1B¶‚\"$Ï¤_öY[^¡e\n‡Þ41¥­L§òHÝ©âÌ¨ò<úàÒW`’‚eíâ½Ûö	ŽU°&œzøÕ¿RýÿB=P‡KqF–uß~•ãŠ\Z8ˆŒÉöíÜÞW¦2\0èþ	Òeü½`h‹àpÃ,åë-nƒù}“;F›õ¥ \Z/qè@ûÆQ!XŸw>ã‹€Æ7¾.„lû8³èµòle¹Q,…ÀžÅ×í	nïÒa‚²TßŒCÄÓ€#ÆÉÜŸ•ôçð6œwú&Û¢f´Uâ¿\n¼ý`’Vr™{¦ôYUš¬\"V1Ä	Ç]®98}´.ú@ñ\rf[É–&þ»óÖ1^¿¢™õgÂž+fVèü`6)	ð­5ú½EÎÙSýj–ÍÉÿ…ÚrôKÅìñåujÆ÷Ø%‰öpØÖA“õˆŒ 9Xc<_:Ñ÷l#¦(åÇ€v)É£˜,•‚Ä¹¸†vÊ÷V-¤núžzâWó¬è“EÒ2âDû½ßûþ Hþ!~\\ê© FÁgë™J\Zop\'ö]Mi@’‚øó÷P;µ›ÈVKiüùV(Ô~n’ˆ&^VTâSnØÇ×^óàE§½y	Øuû\0ciñ^SuË%™Dª{oäxÕ\\4\'1–0péÉúG&û¼ÆoÊËù¼ÀAMãqÉÛ5Ï@ì=ˆÅ ø@¨ëþâ3Ù#\ZÐ¶/*t\rÎÛ6<Xïû\rˆIFPâxÇN^Ô+‡5H9_r ©²è?ïMÎ©—Ô´ÃYµº5D`$BfyÀIÓSŸWqØ›Çë¾rÞcùW£òw\Zú“(òä€î‰†&ð=\r™eLÐ|)¨a¢ój.­¢VòÔC6À•ï\r³Ÿdþ\n3[@ï\rÖ©œÜ„\'Q²\nÅ’©+ NÁAÎ¢¢ê¤:Wˆ¨¿éàöùì <\'¦Öãdÿôýæ¸’SB³4,ää¿÷hÒÉÜŸ+­ßÈ{Ì—r…~aöAÄcŸÅKAj¡TG”•/6èÕìþ\n€]Å<E&@Ç·ò(\0¾Ëað{|ï,é¥@êhaƒZÇÝ»Œ¹‰”°N/F]\0cOJhäÃ™LÏC„	ù8×«hlÄ2ê\"i\r2Ó£-à­ÂX¡C +›R¾a,¦æ©f6‡Ê—!\\©I&Cú#2MÎ8_6wsÜEŠûUí¸øP¢[ØWÒ‘´Ï4Lº{4‰Å\Z ØUú˜uw—ÀŽ\'çžŸºh¢QîiÿŸ³5z\rÃ&‡Ð‚`~ó­\'\rìQ l;4Û•¬±ç—×eóc1bÿ0‘wß~Ÿ{÷±wcj¾|m]a_šö¹òdƒ¯õ«¸4Nýœ^÷\\~”¯Ê˜™×óí’ 7q/\"]ºÔå$îù&<Ô¼	¡QÛáYíž)¶°\ri\0\"4ß•mlíÉ\"W±K‘x§šI0$\rØ!L7³®Šï›K3@š™\"[qŸâïË¯vè1 ©ÎK&.Å]ÐýÇÂ0Ö™8ü‘Êp#ü~†õ\\o±Ó=1³ÕÍîD,Äðpþ	Ú±4zÎ®)”ˆäúõF’Î\r8xÙÕÏNz$¢wFší¼m¯º$\"˜›§®’”»]X°¬¬Öeõý\"ø?ª|2þY	ÅŒ‘ø¢Èt¬-	ù¹úæà£Ÿv¯TÑÕ¨¢æƒ2H`oÞHPOn­uDpRÖ½€ã’R† nOÈÆk2Î©@7 \'y·UÙ™K;ø@IôªùÈ:7}íº.£aò	Ì‘HMÏ©:	qFçCO´‹„×úüå÷ªc#Š²Šæý y\rÝÅìÆéš<Õ¥†l½4à˜™¤˜Ö¬á(»Öïóšw	½]áïå5åõ‹Fn?•`æb8¾)½òk¸ö‡¢ÛÍš(S;’wàAqÖ^È;ñõTÈÎ¹Ø[—cÂöºJD_´–=$xÓBó2ëƒ™$5)ÁS¸ž²jrx…VŸæIR-[„ÒŸé1¹ð.;\"»é=1Ü(C]e(½d-|5QCØÉv®œ,Ñ?ÉaŠdßÓöækVŠlÙEWšä¶±R*9Â¸)7”‰ëmûvÁX­òbÚ·\'†p	Z9@³·S\r0,t`2±plêós™÷­WÓœ¯¼î)ª0Š8aIpop„AþˆB«ÙHß7¢M™¬¼´)™Íû ŸáJÿ†Obî\0ê!ØX£+cÍŽª±º¸òÇ®ô†„Ô‘8Ð@ÿøœGÄh…šar6 ÊÈrÜVB:ç\'® 4-²µ°ÈÀI9»íˆ#í\"‘ÄàiÝ”[«ú-¿l”—À+‹“ã\'2YíÉóU‚~nZ™á„õ¬cÀtÄtŠM›h?šØDmÙ%¹ÁÊ‹dê]ÄÍ\Z´ÈÕ	MØµB\Z¾°r»/Ošˆ5’¦†%±NÌ¶æÀ\Z\n2çè£~—µÅ\nò\r®Ôõž=aÓâ¸¬—]ñ•×÷7í½\Z\n²Å¬þª¾W±´O–Oõ€¿,ÔºN‹ßÆEÌ\Z\r7ÄhZ›¹ËîBLG¿Ë+‹ðüîvòS¨dÙÍ2Ø\Ziç˜\r¿°ë/ŽqÅ¡»¢uVcçx“-läl®8\Z˜ÉìÃšóZÃ¾–üÞ¨6£®¦W2ÌlIæ96G\Z¢BúXf\"ÆÔ­®ŸÉëœOÝ –%â¨K3Ñ“93h\ZÜ4þ2o^iªÈÔwß$Se(Iª’}P’((ôö\ZQ\n…S›µ³^M\0–Ã™]M\Z”‰`:£˜áûc\ZTcÏ‚¿6[æ¡L‰BÅc¸lÝÎ\rx‰çR()éÄa?\Z[Iž¿ÎÊ™`:—}ž§›V\Z¼‰TÕDn¹ý+á/`{\Z^\\%íÛk÷‡OŠ¯™€­eÄiø©: i‹çñ‹Êo\ZqRâT‡=—\0ê´Ý,×\ZXDí”šÔ\Z´h‡÷ÄÌK8h\Zxy7{³è ²èá¦ÅzQ1+5:#Mu<â¯\Z…dhˆÆ¨,ÈŠ ™aþìÃúÜ‘…†iK¦±#‰A\ZˆtùÖY-{RV Û·FRù¹!ê%8·»`û?O\Z“Iaú^à’°ñëiJ‹žHŠ:žjê:•ºÀbÂÂŠ«\Z³ð;4JpRÓ—šõ®ÚŽXÄV\\2p&àÒÙß\n\ZºÍmÒ´`Sýè|û‡•Ø0	S®sŸŸEA‘Lçö³\Zäœ«ãÈ:ûÉH2f×[ÝJm<Œ”ýxÃ<œ0”\Zé7¾›àÛ´½Ã>Û0ÊXõš…‹Ï˜ôØ\ZùASèë[ò[°„kn/§:¿%ˆï>\Z\'†ñŠ_îž¯\ZþšK ÚG“Umþ0Š;Aßò³¡†ˆ’-v…nâ\0]‡Ð†´¤{lÍûCMvãøÉ¾@¨Æ‘Tï97C¤=y¬Zùÿ„è3¿óÎ‰¤c3mŽ”!®pr­ƒûðû&,ñÖûY*žÉl}Jæpx5K²5&\0CRdR5P,Ba#1ƒQf\Z\rØÝŠžP[ŠÙYØøfdŠ£fsRt\'/i¯Qf7êœ®Ú&\'d°W–zÒ“|¶Ý1òÙÉŽz\"z|õ¦²sâeÐÝQ¸gšêJÑÐ­z-øûX—+¸|¦ó@ÎV¦ÎcÎxñÉïª¤÷‹s|˜0–üàœvÉ¶P§5Tñâ !wãRL›Äj¥Z‡^\'{Ÿ‹»  õ)8m}.\r¢d™¸_®n¼5±i?øW)œ°:\\`´^«V›½=Ìw=\"Ë[<òÏUÜ€©œÄµ²ê9ùYCW£òÇ-µâ™üžGMóŽdz[½Šg½ÊbîÏåê¤¼ì&Ü{7º¿§³37kiÖàÖ5Ñ”3‚¬N0P™®5yŒ}@Ùªåûºáb1¯po4ÉÂAÖ{†õ/\"ÞñrËu•´0yL³i·(ÀâòH¹\'ˆvØ-3 *3¼„“™^üÓc(^U#µ–ÃÿgÉphÚÛz{:ŽÛ7bc/ÉL•V9½ãb»˜ëa³ò”rñä~D–à¸,éú?Ñ ÞGd)FA‚ç’uçí`‡`çÚ¿o±èÿ¼Û­rÁ•a±ÐõóâÞ×Ú†c»,=ísK¤>P×¡®®eÚ›)9R­ ÚB£°ž[·ÎÅ|ñÙõÓÃüö-s§Œÿ˜1“ÊŽSP¬þÒ†ÔEÈGIê45ÕMCïgYÿù<¨-b²êOî,°‚w[Æù6eJ¶²G7U]\\™Jæ5\\ÐN•(-ð\rÉXö_Ïj\r15-QäÁ›_ÆY\ng^ýÊ¸\"|üµ.Y|Ûb‚ÒþåO-ìb$×t+¤8jêK×¹\Z«×ÏX#ì[ÓàªwÀš¼Íwûqüª51¸èDjã‹è…LH^é½Ÿt+Ä?ˆŒ‹–\ZcÃiñÎ{ÙÃ­®q@:Ï[¯bédl9ÖÖ€,³Ü±îƒMS,eÆlNrœ}í6¥ÞnôŽ\0O!\"¯j¦:(££!b*C\r‡zÒ\"{ëºt\r —=ÇI)é ^«sb\Z§¦¡ŒZŽ\nS­\ra‚ô¢LÛ&¥´ â­vî3+kCJ‚ÅIò\Z< \0øP>± ¬%@5êvñ%â(Ò äô™òJøù§¯…aIÓ¸\\Ñ“ˆHŒ¿O\'\nð×(PùÓ³¤¾\nÈrÕä	Ès°ÈñJæªúbómLhç¬‡û[´£Œ¶±\'{0ˆþÑlÖuÏæÊ’hk¡‹õ­FNÊ¨\nÉ,U|Ãë¡â§XæÞ5Ù)ÙaTØÝðåÔ© %2•ûýûRyÂè‚êÅ«i*Ø%h%æÕÆÕáç¶$)`v:#f“ª«˜Ÿþ.x÷d\nœ˜¹Ž:ÌxAìÿ-à¦H>ø¸JìÂy;îáõÅÓ<žðI8w2AÊ	Å‡ƒøÚ¸Øž°0À¿‰2ü–yK°|ï_’˜Ñâå%dßÒ`2ö9ª…xmÂñl’Q€W¯žè–•U=d™¹£Z¡è¸	«éÊ’c‘WZ:ÁwP×ó{6Ly«?Ø·cûâÒäìÜI\nþ¨õ•£ß¾°B2ßµ±»¸zÕ evÈz†Œ¶3ñŽÆ˜U€{î^qa%I™BÝÐ›ÍWíãý<VŸA=Þl¸ëL—Æ^Ÿ<kL¤‹ sjÝÒ¥?íbÞÉ–ðÈ’|è„Bí?-(…ú+xdú6SPÑIj‹Ò—©:K­ÏöÑ-œ`UžMâ°Åu¯nÖ§œ]BeI×ðY\rfþ6éýþ·yÍ;Ÿµµ6\r)ÐÌcUÈ«d4¢B”nDÎÕÂ®Qù¶n+RÂÓJ1e„,ìñP 6;\'—6˜•\"ýÖ ds´\rã=‹ÊVà˜’\"n*áR-ª!ÎÞ`ÎCGÖ‹¹Ù…\"¶^Ýe¤\n|5ïÏ.Þ°Šã—ÉúÎ8¹!¢9:Ÿ%îÉ±„…¤ö\'&;¶úC¿×rÂAL‹*3q˜ž8“ºì$Ç\"ïnú³ý™$åFo¤ef$•ãîS…4Cê½;®½wÐVýR[ûÞ½h\\o›ñ(»¡5OGŠm×\0}UJ5}¼Þ&ÜJmyÄâNL5¨ØÎ\r\Z˜¶0s3çûu³6!$¾0œKJŽ‚Á¨\r22ñÌß–]ôö€Ã“\'L\0ÆÛÑñI˜MÉqß2ØËªã½\Zç‡§»¸Ûi(áÀo‡‚ì)ÝNÞ¢ãVB‡Ò ÁnúLíâcãˆ\rÝàÊ¿5—»…œÊ2ñBÖG“3…u‡«²²Í*Ó0oýBÇ¯þÚÖÙhÏûäâ Î}C‡Êëºo€GØ}BdÞg»DØ‰$êŸO<L#1£OØF14.+ê¿kcù*‹ø9\'q•.ÂÜÝ;‘F¦ç›×Ãr€P\'óú­Ýlø—â1´e^>b6ØchNÊìí¼E4#\\’G¦YúZ>ÃAQ‡³Žb&µ˜Á‹YZoáœ>QrŸÍ¡’°˜íi9\0T9\\>$ˆ2ÏÂ‚œÏÝ²ØæjËÔórþ³whq­¢ÃMëÀTUòúÐ©w‡”Í™CHN\0ÉI”<æ—ŒŒ½÷.ÍO¬˜÷¢žößÆÂ†Í§²íìÂÜfh_2E²§_Tþ.ZuiÏÕYþÆûçk.\\{gá:í­Ñô­—«F„hdóòµañ¤ñGóI‘›\0q­×¹a\Z³\"D\'ï¦Ï°\Z;I>)$ÂpiŠ\"Å)¨Ól±Ñ}Õ*ÖÍ3»yXóZ‰×æjoy¸Æ\\oCØÕw=°€€usªn@«èÎ=]N1õ%P0™„ÞË.\"‰p†¯ŸŽT¥Óœ÷q(%7N¦ª…ò¤˜Oê2\"hªkUùv¦ˆróÞ´¬°°Õ\'ré-…AÛDƒ„^EõcZWq”ù8…ˆ5ãýqé†rÆÌã@Îü7VRÅÛ˜]¯7Nƒi’åÔjR\"~RÚØÿO|âº¥fÂ`ôS:Äö\rŽ×åÛb-\\³|ÊÛƒ£ø”9E´éøg±èÒƒf’Ž±]¹Hh~Ùw†åéwÛO\0LhD:m	†Ã3(TN€—ÚíÅí,ñ·Åî‚ÂøŒj¶p¬JµÚÁÌºÓÞÓèÈÎ³˜Syï®9s…68r¸MÞôÚ ¨cää‹ÛÀÑ4b¬oT“‡Œ¼,ÿ>£\nu‚¯	ÍU`.9>Y3`yk òŸÎš·À6d?j¬¥™/£&bÓ\"¡ó\nã<5.B‹ñz™ÒnÈó€1YY]}àì{6Û^œ\rßåoñþÊ aXÜ–^ôÛ	’¤…æ„s0ŸÄ×É»s¢y0‚ì1‘É)f¨x¤Ÿ– ø¾û¤Xà`øÙ[Z76ê×‘.Ÿ-*ØP«Ç—Uî-8m@eù0ðŒ5¤\\¸«wMvÔ1.²ÄÊžRûªfq\"^ähSÛ;Xö¥–~øYííYœ§š^å«üÏ»›jc¹Tî˜xàFw7¢?D?ô½¬Fa\0Ó°ª-Å@çh1èÔ+þþK(ñÑãÑa¼ãÙ]ñ´DRñß:[‰_I3y€µâ”Êwt×Ÿ»#F3÷»µ=2ç´Õ2I‹8ÊÛJpLþ] ]}²õà0nŽ£¼P\rQ¬¥ËßÒÔcJ‹ÓYBñµ=niQÒ=NeðÙÕ±unS,ŠÕåhÊÝÜËXòÍ:ª_ÙùUŸÇ-¸áJÄrSý5´””¶ãü¶…ý‘btû½LÈ’¸|Äð›n 4\0ºÙ’ó\'Ä/XMK,f\"*Z$ïí¼„4¸‚» ›%¯-æb#Û6u|‘¾Ä–}¡bæŒJsò6É âh%\nfÞJ(ÎU“Z¹þµuá@¥ˆD«RzC .¥,2F*›ÏÑz&@¤ô;Ä`x^Â#.ñ„W(–` :…kýY„Š¥MjxRÖÖ´–P=ãTÂ_U~ÞQÊ HÕÊ±àyêÞ4ÿBW”@c”\\§¦ØÈJßŠqã×GC W¡aQÖ×x«õ‚DÙ2-q%µolþ(Ñî]?Aá kuPŽ–½t¤ÍÌŠÃÆz¨\"qgÃüÆÔâÀ=…(0× lÚ\nÂ°&|¥\"äwK~›€30,Šàø>³P­¾é&w mÿ2À•ÿN»ê8úa—>BdLÁUµoVd^ ‰¤žÙüí°\'Æ © $nÞX±€´37ÚN²–<¸g ‰ÜYL«§&‘¯>â­Î G\ZuÛ%X‚ö-)Á—Ò š)—•ü>üÀ×Q—õ|Ûú	]v‰ŸCê ,ýÿ ›7êÊÄ‡êKý4ôýsNsÓ	QŸ<þsŒð|—á¥ïá ®\n	ç\Z?`%T€pñ6ôØÁ#IRë«ù÷lœR„Ú ÓŒ[*šktåC¬‘`x¶{cÔ!Õ™\ZVWîSÙÔsètŒ ÔîÄ@W4nþ‚·ï*˜tù˜Q`EJ Ý)È)e%C!³BwÎí”´‡Q€\r\Zô-……èý1ðËþO²!«ï—ÄT¤á¯õ—v†­ìÛÀ‹‰Î±ûõè!Ú¨-ÏñOhèc.Ž\ZH6!§Ùpsü4zQÉ$\0!ðÄ)uÇ^ŸÖ)òh\r¿äÈ±>uOKŽ,hc$œ¸!,“elÈsíð\\Ø÷ù055ì.fOtÁó³÷ûe¸}!5ARü/œÏ{Ca€F9ÿZº_ît«Œ%8ª,=Û«!?ÓU!îÍ)lnßUnö(\ZÇ…‰F€Z‡æéÿn!ZÜmNxIŽ>W>%ü*ïr˜ô“^ð±#\\µQD!]Í¯%uO®bû²Œ;í¦Í°(2[\nÂ—½_!iîÝ\\ ²×ŒeQ\0˜rºz.+;\0\Z)‰ªoË5£3¨!ˆÞúù\'”¨oê]ºßï±ò³tèJ¯Æ:soTßÃ!™x¤Ð6æ^q»®Ä>F70žVÖµV–>¯>²áµë°!ž®¡$ªæ1Å­9†¼†5\n2d\\aÙW—•\Zq°3x !¤:¯qÉ´&¢ôg™zž68Ö›üdåÉÇÏ;tV;U!©&ÐxÝù”[w¤Àû)¤ÆÈƒcüN–SýaÎ!´¥î>$wÄœ¦ö¡¢Fÿ\n%“`IJ×M6—o(Ò–!»bƒ™FæÞ‰g2oÃi\nNl+\ný–™ßµ£îb!Îÿ‹5AÃ ÇÀ¯Ð~ùIºüô¿î \\€ƒv(öcÔF!Üÿ(\'eÐŽ¶\r804@§šd•DÉ4þˆKS„kV!àaÀ”ZU£žï‰/<rg$½R4gÍZÂ0´÷l‘!ãå\r;˜m1Ï¼€.è{r°€6@¶C´äHc^\"A÷!ëÄ©tXóÅQ™Îî\"úÞ¾ÜÑ’m]Àà™ä2J\"TâYK‹„ý ±Á°JÖô,/þ¼Ô\\/ ûd\"ºh>:ÄêáQ ùê±Ësik¡ZµØßèEw}b\"Ò:¼+á@Êbê$¾ÏT¯AtË6ŒrÎ£\":fnùJ\"²-vS ›´X¾ï÷¾ÀõÙ^­\rË #\"JRIxý¬ï9õŽWÀnÎ\"µð¦‚aä¦öÔ™¾†ö§é\"L0]€˜“û¾Ó†õÙ¥y)UePÆÂ^÷›AØÎ\"Sã¸.87~96sÂ³yjr\'Œå]s\0 “\"\\€¨Òüêß&S§–¼¹„“‰^‚Ò\r xQŒÚìfµ\"nN½ñv?îKƒ¶¸‹g^å:m¸¶™óBlbðZ\"†½+f5f(gdC“Î<iÕË³]uÆ¨2ÙõÄ¼\"•’„$l˜}Öeé³æÉëXÁ\\Œ%È’\'AåÌJ\"•ø	®¿.FÍ¢ÖY\\õžgFy—Ž2\n\rM†Z’´\"šøGÙ$@€ÌùPÄ¹\Z7~Ô§OÆ¦pãdb ü\"):ze…0E¹Ž8ý†=!þ–7¡ÓºÖl<“Z½P\" /¸JK»Õ}µ´uÆÑvèaàHú¦Q˜LEÈÁ\"¸½Í!°zFÛº6ŒÆþð½‰üë&ß\n¤§s®|î\"ÊŠîÇ5‰¢\".Mãp•´¢-zx)Rš.%Ô.™Á8\"ØŒV2M.é\\ë™ûe#øNØíÈ¡Ï>Û.¤ý:¦àIø\"Þ_¤íórª¤ÐüÓMüDZNÉaŸŠ­\"ä«2eÜƒA#ÕáQö³)\råj|™á\\érm§=ÔÁú\"ëL›p¨6-@³”!#·^kYÚ®XV£FÂ€XÜ65´\"ì=óš\rÅBŽ¸>ü’\"ÎHá÷@Zæ#X°V¿WÎ«\"õè8¿0#>ünåàyl¦Ìvþ´Æ©rK~„8\"ý;zÃ`‚~gå¼^¾_ÖÜÜR›ö¢5„úÑ‚(öÓ#ÄŸ_Üµ?ÍWÈÖ/­žC+¹‚ƒ÷ºUÒ¼KG#…2±èsåÑ\'|xš—ò,q³™Â´ÛÚÞ£¿\\\"\\*dq#ýLj@P\\–EÈ¼õé¸nýxË$WÒ«r1Ù¾6}#2;#Á/7\n QrsE&]ÀðÑÁIe‹Yëcçg#Oyw;p…¹”Ó¿zŸw,!€:;umjõÍŠ¸)#SøRïm-ÎzÅŸQ¶¬\rØÇä¡: QêVÀ¦×Ê#fl˜æ~FƒØcAmÄ½¦b\rVÖ¯qP9iÃÏ¯»#f†èöW*o–Ø_æ\nŸãæ­ÇÖU8¯_ª¢\rÖ£z#m•«þbŒT¥á®É¸Ö=’ø©Vê“187–>ƒ#ƒµ_Ós(··Ësxña{ËÛ{A-åøô‡##°Ì¨wAÌ/còÒ[áâ&Ge\Zx%%çÓ=’C[a#±™góÇïCÃY›<Šåüb´IóV?¾¿Ji^·aU´B#³®yÄ½ùTf»‡Ü<½¾,ï9zÕ,îž;ÀPÐ›¦#Ó™>ho/Á>¦,¾F±±äªmèùƒ@`ƒ0šï#g#Ö\06¦”ù|Ð “ÕYDŠŽ…ÅÀ›Ì°Ø£wty#ç¯ÊM°°+—¶ŒBø*TvÍGÇ’?ªoLJªsù#èBðoKm±×ÄuóÌïq÷³GØKLïŠ…Ò5¦=Oß#úV}€é©›F\'y½¥#Åv	×¼\"Ã™’æ6ðÒGÎJü#ÿþ¯°ËòÚ]§=Ùð0ù¬’\n\ršÄž’^æ\'ë<$_üéÙ-»\'ò8uÐPüÒcäÀ6Ù#	KEumçÙ$\r˜ÓÇÜ·2¢Ý“ÚÏ¼Õ+‚BîÃû©É¡Q(-$³Ÿ´F:6~QQ\'×¦:ä3~¤Èó»ÊÁ§¤U$Eq<‰p Q·(&{=’ùýXËtÜ\Zúñ\'íÞ\r½~$#\'òÀîbÈ}Ô$X:¶cÄ¾úmý]ˆ\"´V¤$2¯†	½•ªJ8ËÝ+¦n\nbO+9º¬ü2˜àªËq$?Â\ZWë7âmß(w{K•„¡\\Û¶Ž×®Ž–Äj„t$Cþ¤rá{3õ¼;LnŸ,uÊw`¬°Â‹á7úùpùE$Iál;¿ûÆüû_W\ZdÛ©°À§Îˆ\0fm¥Ö$XA¦8­’8ðÊÌÞÁ3žk.b½4ˆñDZºì¥½$^õW+NˆÇN§	´¨Ò»@ÎyA$­ÏôGì¥ß+Z[($h/Ûì*Ã…ZçOòx+¿ˆ-ë¡–éHØ©TEÀá¿$jš^2	ŒÜ½“4`‚ÔQüî•Qœët²yTrŽ\'$l¾°Ûµ	ˆ¬¤n¤ˆs}ÚZåÆ×ò¡‡?˜|¼:í$‡V&´<î% æ—….ÃÚßl‰³äöøã¹¯ûæž$¨¸E,©_§²wþù¬ÄMJI:º·”žŽW«~À¶¯$¾…¤š` £òå5ì~VWClZ¾¶‡ÿ–í²	¡|GN$ÂÛ±¼çlÐ¯s†F,žÅ³eIxÖ\Z:Áå>ú;à3$ÒÛæ]ä:)„~K×F,B4w÷Ÿ¼•Ù¨/cØ,™ºH$Ô‘œÉî´<ñÈ*Y»+ºäú`pÛ_—/ãÈž)Od$ãö‰„±`¯MHnª#†<K£¶Þßè*\r½ÁÁe$èLÞ°ÌæAï,\ZÆ»ß5˜b^ù×<Œ=ø·¹õS‡%%Žák¶Älf‡;{Ý…T¥_ÀÏ<{x%¥[4dá%S3BG\n9K¡½\"àUãfºq×*A›j5ã\'ÁÏ±%Yžy\ZŠª@äÚ¤ý~&Ç¨1¯#†2QÀi×®%nMÇ®èºiñ’D7“@qŠVâÒ#vÏE©>TCdW%v+ï”4)©%îOiÿ+aàdg˜F2!ˆT+É%„žkñžœr _”›‰ÐS’µpÂïEµ°†”3±æ%°›f3´qEÞb™Ä<êórëØ]B[µþS@k1\'b%¹óë­\"H÷—kë,2Ê °…}ÿÖý·Ú—÷EÔåÚ%¾’>²f“ýè¹ã†XJÔ&áÐ–¤Õ>Z•y2p#ï%Æ07¸s‰\0\'zM|Ë:9#âh7ÀdÂJa6÷×!\\%Æ²öçÜaëU>ÈÍîZæZÓ	YD^@NÄÚøN%š%â8X_‘Ò²×§§%$9Ù”…*„_¸ÀêÛùó›©ô[%û»îÜ‰±ù`þú•»³nÇÜ››TKéxCt•¾&íXÝây&Ì·-;×‘Œu¿Hîïîä\\s!Ïù5š\0&\n¤ÈÈÀµu’Ob&»\"õM¬ùf?û+ATè±(¤M&ïp©›ØÕñj—+õÒŠþ%šs<­\\±$&I±¤ÒÑn‡àô	w²ðòß¬šso/Ä*®†é¡øŽAÙ&Jª Ñ´ÌOÞá|æ€dž),î—)	É°+\Z—t&am{[ó>ÛBv\\`šÎ :nwÕc)Èß—%Z0ä&|º€O	gñ)ö2»«*€×«7Ôo-¸Ýžró?øâÄ&„[on¹§Çñ šl–úíaÏ³‰tâWLŠQO²QÂcó&Ù–œ`Ê“Ôþ¦äðò#tÞ™,—QµŽ)DŒ9&žÄt€ïæ*–2Ž¨¤~’|ú1/ÈUÞ8ÿVY}$&­¾øÈm“4tXûF†þŒ¡@¸Rµ®ØÊº¹bL&Ó¥Ykâý\Z nß°X»ÎOêõã£Ú±é¾hÛØb)&ñõÚý!„ÿâGðêÛË!¶C›ÊoFûQ`ŸBºÉîQŸ\'™×l_JÓÿVÄìSu8VHJ„¦’£ÙÒ÷yC\'¼ªDÄ‚áD1•§ú`Ú¯ ç/5)òÌÍüF1©¸\'»¶®+F».à}M>W\nwJ½]}&Æ#V\nÓÜ\'(Ç\0*òÑPg\Z$—\"PHG!ù»ú‡ŽýÔ‰5ŒjN\'@ðúõ½?B’{´uBtÐÍi¡\'Sß?\n¶=ãÎPCÎ\'F.¯1ìEÏ)•ÁHŽ;âl”/.nø7ÓÇÇ|Wç*\'G¿¦LàªÊÏs\rŽŸÙÖ+áQ·N*õ+r;_1…ÃYö\'S{<—?’þË*ãf”;°²/Ã{’\'êœìv\'k7^¯Y«ÞêÐ6Ö¨{Jïä/ÎÕš‚ÉºÏdN©ó\'€HT*Ëìé#âßèM%GLR);þ«ÎÄªGsˆÍ:v’\'ŒÙQñ_žÃ+g®à*d©œírVÇ ·ÁûÅ\'*\'«pîGgÛ_P@EuE-ïjbc=çHè •\\M¤ÞWŠ\'°¡æ$ƒ1,;ÔbãLë(Ë“ÑÌ°OÄ\rM•gÐ´Ð\'ÃiZ\"Æ®Óf=ùD×F•ÈG¼ïéó\n_ÁB>âqYÞ´\'Æ*Ç‹w)M¡Û>êSY\nöŠSšš4ÏvnÚaÞÿé\'ÈÈ9_eÅZ÷å·ðhZìVaé‡¦Œ¼vuê[*S\'ÏNà9áÉì¡r¸g_TÆÈ»kù‚Îø–›®BºÑy\'Õq·ù&1Ðç,žÝS÷Nj64cìGÍ&Z_âá3j\'Öª•±*	[\0EE*J‹rüV€síæÄáãcž?\'Û^Êù°²¤5j%ÑV–lÖç{ç=ŠéÊ{Ám·@ÙÞÁá\'ßm/¹–lrÀ¿éÉ8êÆ*l	=$æž’Ó=£h79a\'æj*ì,¦A†.ƒÉû+…-÷T·¨ï¬²ˆ*\'íãÁä¢ÙN‹fÚî[óOŽgæ¶îŸ|\Zè	ÿ+\'î´xör²X¸kãÉ.Úñ~âÅb5·ÇŸ¨<ÒMÂåÒ(:«ýMQìß =ýë©ªßªyyL»•Þ¢çŒÚ(Cd?hv“¾ÝÒºn*Œ÷1ÔîZƒˆV„(=X•twìÉ¬DÙ .=H\ZSñÒø¡µ\Zá»5wá(?ß¾ÛnáT ¤Z«ð¦†½ý \\9ñå8vW¹øÈ\Z¥(E\0ù	ö73Ñ/>ˆu0§·¹ÂðAH*$\\¡þÈõ(\\Ã°w0#r‹Fß¼Ù¥^G‚Acwð¨,t´”Ž©´(a8°ÜÄò)€è~%ïcGÝÔ:~»\\\0p#t¢‘F?Å(fp\\3{¬?\"Ò];>W–¯Ší·qBèÝì5©mo(nÙéÐs¿¼sTòj+<$Ÿ|rE÷Î~âŒéÚ(y:wj5ƒŒ1ùº»\Zç!Êð`³®<ž¢!_‹(}¸6é ¾é‘ÿÿêÝÍ›\"»’˜à¨ûé‚$#¡(€wy‘•e\r…63TñÁQÑ-¾ˆƒY’Tœ=G(•Î˜\\õ‰Þn Ülpu¹ê‘&]š°y˜i›J)(®f¤¦–¢qièIÔpÞÜ²ã,÷úíK˜ãñ(Ã­ÑÄ¼\rC	¡üv…™±¡SæìKO]l]¬t²¿(Çmÿ}Â:Öƒ¹{™®Fi\r~^‡ü–ª`·@€2$Œ(Ú®å­wS4ÕûB¨l…q`8Ïz»áW:5HI)z4ó¸Éphzi‰þT±vÉÐ/¡Ô°x¢”³¸)!¤/¿­P²dÇÃêtòOÂ;DCá¤‰ú7P5)%^¢–VòtÀ_î\"L&x?Ð.à›¥Îò«ÒªÑ*|2OQ)JJQ¸%˜æ„x\Z•ð‡¬ø	€»rì]¤(R`Á)NÎ\\nÁËmEÁ\Zk“cúöÖQ÷¤¿­(aÖïô)OyXÝK\'µAóÆûÏA}ažŠô’Ì£ÿ‹r-hÄ·)QFÀÞ¶úéÙÐcŽóµBWÅk¢Å÷!—ñ)Zô!Y”ÙÚì¯PAä;¾®®šð]nû”‘••)a¡ÐQOhÐ¡/zÃ æS\06ñÎþ`ÚŒÊ)}´VÆOÇg§-w/¢^°w6!EãýˆèèÐò~ƒ5OnÇ)¤¡4\"m:D¦[:K~>å˜ô³‚bì1ÁEÔ©()Ä!e¡ƒ±£Ð¤RÝ€zg†g6‘Ñlñ¬[²{)ÔQ1˜Ùªèp”$«2Ën#[z*/	*?¤|¬)ôX.\rˆ•¹½j…cÄËT[q’1Ç¿Ü]MÈ:ô½‰«*ÅùýÝ&—„¿ÍØS¤¤‰ÒÆ½tŽÔ0îž¾™¨õî*%Ò¹-ñËm\\ûÍÛ(«<ø`}yœ åx‚	ˆ[l* µÞjùóÏY£„6XAS‚ìÍ\0t_¦ášB*0Ì?¢“\rÅØYoXdø	Þ:í¾©¥Ž@²ÎMFIæ)*Néª±w¸ŒàjŽ‡u\ràø§3Ëâû¥ô£ðô*P¼|Ë¿(W¯åa—OB¨§…A€e×À¾þ¥ÿ:£Õ+ë*RNÚ”%>•+£ß®6ÙÒ×èn^wjþÈ9ý²8Ü*^ÑôsJý^1Æ@E›åHÙµ5ˆEW6>íi$«±˜*enŒ©|Ó—ÛQ›¿DU[M!B\Z×Xó2ŸUgy¬*j4£œm3: PËà0ˆ\0å\0ïO÷¬Ë9ÜÁ`*k /ÙYlò§IÝ>CK:îxëÚßÝA§ní6[*¹çmáÒ°ÑÇ•(ÖySl™“SÇXL£	ý3QnœÙT*ÁYÇ×D>)‘ûk¾\'äYÜO+›j*üßUYâ2µFµ*Â×áÕ(Ž‡¢9ñ¾ÍŒvå&5d2|³Ñœo<¯v8*â®ñnT÷HSaQƒÀÊÌp¤þGÙeöõë£Õõ˜gz*å.CÜ®ñá)Üi˜±XÇêöÖF8Ž9ÑŽ,¯Úä£*è½X—ÐNã¢{åßâDÕñ–ÝnËé§$p¸žF•*îÂ‡àjlµJƒ[Ä¸Ø¯‘i•u*_ÿ	çžù·´Ê*ðwVS°1™Y«‹ƒ¸°\'õ;În_Žb¿ãåíŸ6ñ+s¾“fíhIŒ¦µ7Åö•„ôÜqó¦ zïÓ}04+‰äÕ%Û<©“æÒòhò´ýÌaæòt¦>Õä¼++ð€­BPxP\'\"àÓâXˆpóÐT©ì‘hw\"e +(Oi~”.I%·Æ¥î?\"~Yä¹‹öïbüoQ\\ÜYÕ+EÐËŽþ÷R‡‰ñ9KB‘ÂâñÅ$þ\ZÊ5Þ§°Wd+I°Ø*¬’¿›› Ã\"2’ïä­æ:Gfl”Œpà=æ¸+^ˆßH®ÿuß²ÎÖ¨ç¼n¢Të˜æçZØï7œÈ+ƒúˆ¬u‹ i‡–¯\rn×Q\\24eÐK9tM,ðOí\Z+œˆ¢òk d\Z\'Èê,¸G·ww‚ÞÖÂqNÞ+¹ùZP›ýÜÖÜ2ôÑlv,,í2ÍÀR¿Vê~’I+àëáÓÖÝê±Zr\\aËïzäîãkÖÌ§Î±k+èéèþû±£ï WqzŽ\"§[× Ë½_Å{ÀÊ,\rNMì˜âd°_“•z_T3$7Xc.ð5A˜X‰×ý,–þX‰Ù…WvY9ÉbÔ\'ùò7 …}\nÜ,#â|¶xËIh‹ÜˆÛGò:â`3Ð¢{_^ñÿcá,aYÓà}PR6ƒêã`½)Kíüfžism ¸¹è,hÂg8ôÕºŸLýÉ‹½Z÷:‡’\ZóàüÃ­ð>´7,mƒþ\ZrßbëÕÉÈÌÀJ|&\\ú¦\"C8)ˆOžæÓ},ŸŸÏ~8ù×¿K3k.FP?R()ÔoòÈjrt,®äó1†¦­^®ê7\rÕx6$\'Ö.ÑÍáò„SáWFà,°!\\u|1íôÑí;¥8¢}®s–‹¾r›ãE^ƒ,²ðlTÑ•™½%ïPê~Èœxq\rÆÚÓÆÞ¶®‚fçÇ,³S ½\ZÇ\r’·zËƒÜ]Ó¬#‘pD*tX‰k°î,·g£åEä®^\"Ç¤5ƒÂ¸ª±Ú6¦ä—FO•‡,ÉÚ€1f,Ms]B„é#^ÜÚX¬¼«†=ƒd`ã,Ô€ºJ`Ôj0¿Að\nüÁ*®L¡ÛzG,ÛiÚS~?:5^:øb\\BGãQËo—z!‹bvéßE|,ã¯¢ò/z]ö‹Åò_ù—¼¼›W­˜Øpd¼´©.f-µ \0´¸&“Åï_K:¬|â–´,Y°È´4UTÄ‘¿-7bkÙšA53¾gFEk|¸^Ú’‘n»^ê)¹-#;Å¹D ¦êÆÃä§oþ¶žIYÃMÿAôu»-4aˆkOÒý67½åZÞ¡R•)øûÒÔ&¹ð~	Ù-;i\\3ý .¡Ï\'=ÏÅrs\'ó1•\0„<ª-@Ž‚g %ˆü§†ŒuON\\}@là°Ì¥f\'»ãó¼-FP“¹Å9N†¤fš›« ;ª¼î·–hçíl—4E-½HÆP{cÜ»:£n{2ùsZ°q:³7ÊA)l-ÓŒl‡^ç.Ô«êÐÈ;	>¼½Í<äû;ŸènC\\ñ´-×ª1ý:¿ÆùcÂ„&hÉÍ	ÝÖ³±ë4V°§F½-é±,hå8–f»aP¶jgW‚>³qŒþ½Õ\\œq0­-íßàk„Çðyn:ô’ŠQ±2Û €Š´š—ô?ÃxÝ-ðÜv‰w—\\yèUô+.$aWˆÝ•2.ÍFÍÞ-÷{­=mMòzØÚÊ¶¡KÆzŒ¼gR*ƒâ›(.Ýë(2çGKzj\"õÊ,è5ê5+ö%Ê{	ÂW.Çç~\rßB|\\èÕ­}î­:tJ‹ÑîsfÉZþüì.«ßÉ\"ÙwÂŠ¸k~?š\'¨Lž-ÞÊ…+æ?.#©$.Nñ.ÜÕ\\\"ÜÀCuj€%HŠ‰EJÖˆ^a.%%­ØŒŒ÷kÉT³aßÀE¾ŒQdu°8¢Ù~Ö3ð.)¯y\ZôJ\nö*F¼£h,¶†T›TíuÔƒ× N.Kð×n‹G\'¢zäô=_å™ðäÄ¨ë©K\nÍ¯áO`r9.d-vŽŠœÛº²Å’È#uÑ7š‘)¸Ò“{µ¦.{¦fZÄ%Ÿù{þ34ñÌí‚`zo<²\":qe5Ab..õ‡IÇ÷ËÎ)6Z©n)ÿ\"6\Z]\r3ÎCFZžW½.)G]CŒâà{ð”.®=½Cõ+ã[p×Õ-¾R·.šBºøxœ‡~Cd”Æ\r(olvôÁ½úà°+×Á£k\n.Ü¢ãSP*šî¡ƒ6;§]XRCÑÉ†\re‰g–fò.ÞÐ¹hÜdBiHÉ€àn“s·‚ˆ¢á—‹\\±ÞñöO.òÇÄ:ä•%q/“}!’*«â:r\Z^ÁEÝÇÿ¢¼/¿uÀ¢C;ˆüÅ,!0ÍAŽA+¦CÇŸg23/Ìsæs³¯Z*ºj)ißÐ±®e« ôQ¹3>s<ñ/^âW)H×ç\\yÁ=Z3%·1q^QdÒaé¯H/À¿<±EÿŸ=CËûì$’xÿ“BHxšƒJÒ`Jw/&dx‘G:IVt¤Í†ŸØËY¶jáÇÏM?RŠÅ\"/#å×„Ëö×–ú4û$ŸÇ½ª»Øï~r>-h%8•X×/,±b£ÿ•Õ2Hþèøã=XÓ²\0ÀºóõÔDÄNíb1/.Ù˜š½˜ÓîÃ‡ùàKvý\\–æ)×÷w½ÛS¹/7ýÚô0/!B¸§sƒéêìÝ’oBÜÍ»¥e±}y^/>£Úwi`ÞSƒ¾Ó{¡oF’¡’ïý†:­£i8/M¶„œ°4ªêH&¤úo²l=¨|@ÕuQñD}‚W§p/_¾9^Š`5J—Ò¼,ŒËÖÚßY´âaj€KÙEÝålí/o-þ£7`X’ïfªÃ$;à,ŒârÓã­oü/v ú\'I5ßR/^\nBR7¯0Ž1nQ=‰*Q/„™|…wÎ…•±jˆR×Ãz·ZHcxS ÊJbËÍŒ¦/…YêleŸzIGz¬Üëzsˆ«¥s=\\ƒ}æ/ŽÍÔ£÷šZµ¡g\0cVðž×¥vçáð¹d›Z¶/™	43s×ýÎxÊñð¯|\"¢@Æ-8ã,^F¶/œ–GO%<Ž\"âàŠ!5Ä¨®Ç`0<¹hCJ²¸”±/´É\0¶‰NáKoƒ˜Ê©Û­è©¡{¢nggÝê/Ÿû|`ýÅzÁªZö\0^\n°ˆÍŽ#0÷‡\"”ô\0@žµæ/§çXžŽÅƒ½âñàY]¿– ”øIç÷ØOÇ/½)ø§ñäË²ËøàjtS°+KUVÝSƒxšï‡\\/¾¼?œ€<@qùŸvê¡ö4ù?„rÕcm‹5õ/ËFA@T½ïZ5Ça¡ )ðLOfÐW”»Rl!¶\"tˆš/ÛÏJ»tR8·èÔÖ“†9ÐHòµd³øFØ£8­‘/é7\0Øq©e\nO^0£sÔ@î7ÀÒÿTªŒøy0“!§ÔQ+7¯ãó`Gó#ô\rþ)ÕÇS<\Zÿ{bÐ0úˆ½–C?ãBÅkÕ\0\'Í®<ÿ×’+F/&\ZCèÜõ0ó­’o ¤7Ô‚ØÀ^²‘\ZtÙU×:+ê¡Ò0ìCOªÜ¢6Yöy—´þ¸ K8†<”G÷žT¼J‡0)¬…5¶üÖiKeÚåô£’jÕˆ’ÊÔüTö|¾F$Ë4t0F€6^Ê¤pƒ	,Ûw§R}nlD‡oïYDÈŒ\Z•0J;;æQëˆx*„©,U»ŠÓÄ¾ì<gþ_;§o-H0X!Þ\nB\"`Ã6öèÿ D© ûÏKP?±ï°ä_Š0X¹73S;ø Ç\03mä&)Ù$K>7wtT´\"µ0[nÓÚ•rµwëýe&³ýîE_ÇJãCè¡Ùä’ˆ0iÏG/þ+Uî‘W3Iœi\r¨Â·8ˆ”ØµS ¸§8•0sÈaÁ±¥…°¦`\"*ºm(|-=©9¿Æ„ú ¤A@0À(ÂËÜ<é~UÏ-t.™&]%/wˆ1…©ŠR¨o0‚iú¦\ZÛj¬±Ãˆ™¼~ú3¤¢~ú‡ÖŸNÎU‘0ŒòQ9\'«—j\rÜäp‰WC‚mög0b¨¡õu+ö<0 ¿Ïáö¨èSbŽ€º]‹^ŒìD«ì¤ÑŸd«Ü0¥…g¾†ÒÐºÊå²«}ÿbIYwe–.êGžÑ0©pÊŠRâ^=©úY› ø¼o(áä‡a*¢7Á`Á0¯Ü,d9É˜ðó„·Gõ\n6úêPÒÇ$JC97,néHç0èqeRŠ1:\'°“ÂãQD‡uÈãhVãÐÂwÏ‡0óÌ÷ ‚\rXyqÞ\\d‰ø‚]jÅ‰: +R„(ÿ7Î—0øº?@Ý\nQ¢›ÆŸ¤¢q0	2¼ˆzúRö•ÑËo@0øÉøY–ìiËÑ¾ëäc1ËýÊ\Z±²³[‡^r0ü\rÁHCxŽ^\nêë”#öçQíÌëY¶4NX…1„!3Q*„\nÏôXÚ}³(ÄbÇz¥=¥œ.Åù/1&ZVº0Ñc;÷»dÇClšÞÙÎ¾P`…–ùŸcý1/pªÎJVQƒ§ì2v…Žþì•€ž]L9çðe?4J15VƒâÆ^,û¹‹ŽgK×äÿé|#¿0£Idµláo1E(Ó|Tæ€Vc»-NÂ¿-ìíÞ¾„~znòì}µ.µ1\\ó^¡œã8ˆ¬òÄ.Òl›·jåÐ…Œ¨Í4x²]›|1]›TÇÂ’ì2J\\+	äi¦6SŽv©®S,Eï€´‰1eêñä…­8o£NØTÜ:ûw8Ä<¥:ÚÕ¨î1h\n@ú”ÞóEA:ò\"H9¡ú8‚G—×E¿1‡ÔËu¾\'ŽY	£òÃÊ/%ùÇ¼\0›ˆç¥ñB¸Â\01Œ-#öó$½ü²„p÷&ºh5híJ‰m9³ÿƒm.‚1’Ê7’õH™}·®­hŸtqŒEÁŠu6ÛÇx]º1”SP^&!é £!\r\nOñ¬6\'R˜ €ú6¡a\nµ-1œHŒüìÑ\"ØgyßüÑ†*Ù&\Z±ÎÏb&fKþ1¡¢¿_¬»«X‡#/I*D¹NÅ|æqx À]\n±\\t1³ó¢¨f¸@g˜øì<ø÷g—-vI„›Péà8îá³1×‹ÿÍ0*ºE©3:/’³2p¡ÔÕ¯ž\0K2^þ(1ï6sè4Ú>gŠøHTÂúµs„*ŸNV‰BªßÓ1ò\n	Tk5tí×{j°´.\Z éB½5$ºV¬ò{ò26?Ã´%I8#ƒAaŸ§W‚¼=ñªÝûÒ€VONhEÏ2AñþWB]±¶bž}÷¿cÞ¯B™Äè÷#É2B·Qb9ñL‚ò†\'ŠÄÈÍ›¢ä¸ýB¨BTŽ2Dl±yì¤O_!€DåFjF^¸=Î-ïv¨Q\"T2v´2Hš˜‡s|kÃ-ðD`ÂŠñ]^9Ü÷âªÁÍÄcõ,2MÎp=ÐB£ý¨†Ô+6¾Çö©A9ñ†÷ ³=¤ã)2SLËÃbˆì{¼³äšÄÑXsÓÇ…*ðž@)Q˜2vziòÛM%\\ÔíXtâ#Ýîž‡$­žeµ*ƒ¾‹2{yC$%BÒE;ù•¨¦ø‹4>©ê«f–Ý&b=ôâr2}©À)vD$t2ù.Pì—³÷·‡2ŒA‡üÚGô½þ8Q2“%bÂÉ÷ÝS½ƒªOÿ5 ]	LfÇ˜§\n‡£^¼2˜ñÓ†JáJ™/CC7NÖ×Œ\rªÈjÈÿ‹Ìi2ÌMm¡ÊQ´fÍ!áž=sö*”û™˜2Óúç\"!-Ò2Ø—§ÄŒ„ÍÏ_g[)@ææ‰û23>²ŒÇ,ñ.¼¦2ì»ÿ-½åí¿;/´{Müa¾‘‚Þ†„Ã»\\”uyê2óÙ¹Ô<­ædI=¥@M8­Ó>ª4‡c!^i N3fKÆfYÓ8~Dh_ÖÜé©ª”Ç%*&zçF¸0-ä3(„îJÊ{´*™€â\r[óŸÉÚÜ½’}†W33)\"ÆK\\,ÜÜöh+–î\\\")û`°“/W²Ú33ˆ9DkÇNd\rìF‡›$±O‡2í>ac™c;™Sö3E”!”›Ö†ÞƒXO+ó¦–ó¼)ˆ\r^gPÇJ3O¢™€jü}.£óÓãÃøj	^W/Q(Ï¿Ð¸hBC3Z:×2$¾FyÓPâ7bØ¡ü: —äy‡MúÝïí3r­ù=…«	aÔ…šñç6˜~1…´tŸùÁ}‚k3‹i°ŠåˆZ+²+<A&±ÏëÜnéã?«¼‚%Á3¢J~wUV.gD”¯š%Þ £ó.÷¿P	‚<Qï3Ï7H0Ï0ÚÁÚÔ­*:ÞÓ>âñaž_Úî·r`g3Õ¬ÚKY…CäX–-¸îkÿ“íg9[ÅëÛ³µÒ„š4Pë¢¢\ZÚÐ+KibÇE±WÐ’q`r¹\nQÏL¸4\ržÁÅ(HO_)‘µyÖJ–ñƒwàLãÅÿ†ó†Áö4¨K\0¬$ÍÚÃ|%Ü°^ñqï÷BÛ±&‚¥ÏK…ô¼4,Êj´­òÂE6©†Îþ¢Üú“æ@µúË9&–YPdü4-”;*B_|Tç•Bˆõ Ù!°Öþ\'÷o\nëQÓn4We›.ßeÙûþ>uÉ‘±ÎðyƒÃVcÉýÒ@ˆ4gÑ“7’¼öG>…\\“óJ¹ÜÖZl®Ì2ü°Æ4U¾§Q\r1#_fº­¼¢¢°H¦û’*IÑdl¿Ÿ4‘‹ŽõÞH}AC{ÒHh/ù}sùfÞÑYÃáˆ£4£%ÞC]îÄq@²à¨ôm7kêDèñû¥–W¯Ü*_4±¶]¯ôŽ]@w:üyÙºX)%Ç€[b›tbs­m/Ý94»%_^^å[¾ðì£2¶ÉâûÂi¯Ós.·Çª-‡4ËYÞ2õéË½5MŒ€fÕžv2,Ë.¼à‡¶\\~†ý¨4ÒÄ\Zr}ÃM‡ÈcPÏ\\ÃGÏ¢l8Ôæ¢ïEý¥58“ØÒu_#ôgx™»TáŒ·à7Üòú#Õlõ« r5½cíÄ[—/8àÁí>ô8g1Zàn‡àóBÈ¥gx5IwýNÒüeó¿zýÕ¾E®s-ÊM$£èg$úŽ5#_»÷DØž;}6]þ&ƒÓþ]Ì¶Žü&‰igæ>W5$;˜«/¿ÊmÑk«íØz —ð³ð™ “pƒþA5*Â¨ÁPÄÙo;è,«†£XÈ‹èyÖE[~‰ÐÃ5BÊ`íú­¿¾DÚ×ð’ÇSx|ð4øq|Ò­^’í]…5YÝY+þØWýï—4ò¹ž~û:j£/:ÎÙ‘,¦Š–j5o€ƒŠxØßùˆÒ~ì,ÓÒÊ\Zå±F<”‡H5‹Í±ð°hš×çôYó‘IË&ÛB•ëiUI­?ÄÒ‘5–p7’Ó3ŸýµÆèa¨a)¨IÓö›âáã>/½@5™	®XxtÅB\ZæÆ}O¥ž²ã‡ûLŸ =\ró6·µI5¤·<â£Ü8SIœóR\rAÙsëï¤Æsf[HœD£35îf`dP&ør:ã]û‚üÕÚï°»½ÓzØóW#[Ä5ó`œ©ßHºê•ÀÚç¾Üø¡Öº>ÑR5ÁEOI5ýŽô$lB]fùE8f,}pQ¶¬ï¿×qtBZ‡1Oû6,:}u4!Z{ÐŠšìòw1³&äv1Æ¯?ÚN@ÙÕ6= ´G!J|Glœ¿ï¥Ì£¶8(êxHï,åQ66Gñ\rékH:’\r,6œ¡YÕ§j€h½=Q’$rF÷—a6XþWÒÛ\r2Ya\n—ÛNàƒ‚D;3¿>¡?ÿ)?VÖ6k>×º£Ý	QÚêÚÑHa[×‘é]{°9·ÀÙF¼¢6tªY~\'I…Y+6ïõ5}’j²gØñÎh®yÓ:6ƒRàÃPJÃ’2]bîD\rµ\0JóÃnòRi’ÐãæZè6Š}Ÿ‘àñå¦åo\ZƒSu¿ìS§õ4Ì€n\rhþ6Š½\\Òæ¥…Tbñ{)p2¡u,®¼Ö…É¥£!wl˜Öb—6œ]Ñpåt=VËÙýïÈXˆÚ¦õá­ò¿âfYë6É•I•Ò£MkÕa_ùëßGÕ#é1Ïà²Ñm6êò´ÎÏÕ¼|d5lÂ¼g4„0æ\'ŸB`VãŽŽ‡6ð\\Õ\ntÃ\0€`6Í‹&)ªánâ—Äek\"Sü¸h7ÙISØXŠóîei¸NØî‘n˜&Ëå½¹³þdœayÑ7\nŠ@3çl,íUl‚ÄLÔ°XfRuDÖYRsíöm‚7çMªIî¾Š.çœôÚñ›-*“œ\rÆ‘æ7È§’å\\éÝ±Ñ”@Í°büÖdàxì?…¡ê7‘—)J2·,\"ÿ\ZÅV#¾µb‚¨Õ{°Î7€ðõÁ®\Z©ãÆÀð>©Qã©;£~oûàgYF½7]UP®ÿ*2©ˆ ÒªŽ#bò‚ËV ¨•ÎEÜXj7bŽ1œ€§8ß!´ÛU=…¢É€mš¾¨Ö{YQ‡7m«›¿0ç äž¤–3Å£›K7–ùò\nFg0íŒbÝ•W 7nœvŽæhÍ–ØXýd¸\"ƒôéÍ‰JèŒñÚˆ7qpÀ.Ñ}”a \rÀð`7Ñnšš’sñBÜúŒ}@Ó…v7|\n6º3«üÀ«Ò6¿#6ÑIÞ×æ?´Èà ˜7}áÍÉÙó>«³ž¼²æ`õJ+iV­ò]£Ë6¾ª7™Ù‚®·ò\ZEš¬.E{(ËYÑÒKhd`zŒk¶7¼I˜Öc÷Hƒì<=þü=\"óøF)\0Í[!Xâ\\æ7å­ü#q­$‰öTçT)Foe\'&?Prj%o7û@lDÝéÞìI¤R*)U†Òµ‘—¥èRä¶&\0e£¨7û|ì&,SÉWÄ¦l~Š°¡ e|T¾5‹—–‚oÞß8\0ªxqû± ù‹ªrgk*\"@TCRZ=òf’‘¤8K*}\"}u¾a¥Ú©ßîþÕßÈï}›#V^¡Íä}^g8KÇ–Ú´\"-?Â?,[‹À{/´Ou|ðEÕæpóâ‹8`Ñ°ÄM‹U8?˜‚i$ßîÅëî›\"³O„{˜Â8o0êË;ìà§—œ·Pjñë‘ª9I(–ÝÔhm~ÿŸÏ8~/ó°Sõï¥ù#WUD~c9u©uTÑv8ò÷-%¨©òúsç`NªŠaøL	óLÃMóÊ«Ã)À8ux:§¡´+H\ZÕ+¤ê2ÄïOš)Ú½¼Bñµx8Ú“1Ÿ‹­b;÷ü0eRÚ ñjìuU`ß` isÂ92g¢àÂæ­ìÆÐýÁþK:ûraÜW;\'ÓŽÞÌÞ19fG3óCësw[<ÝØhÇû\\ÃŠ¾°;;OA(Ks°9>|€ßžõyÉ®üŽö¡,Šn¸³a–S­Ý>\\S9IªÜ<Rîa§~ÒTªeð8JG,dèòÌ[…Js29P6’ATa~R,~F\rÖ‰«+Ìo‡)¢¥\Za0êp9PÅ `8_æK#õ£îç,ÖlS³Vd*6T3-`~9T-¤¢HÈž :9…¦¥˜1ÜS»\\\rb?FC©Óä½9Wmˆº\Z X —¨·Q?uM\0GuÌë‹7’ÉnOŽ¥9eí9‘Dõúg2[Oe‰¥ÑùÄÓ-ï„¼”DqT†noK-9f`Ewo„œ¼ß{õš)Q1W¦•<™ØÌ¶É‹9p’mÃÔRz®ÖmÀ˜Aq*èÓZƒ3ôŽŽV·\nŸ-9yÔ†&/AX‹Hòi{b»Ó÷†7f‘¥ýrw’Ñã=m9Š1»ÄY±z=&†3–‹.T°Ôö QâA[$…É¤”Zq9™7ŠTñµ™èÛÅBìRœÌ#[\rO:„K)÷ŸÅXý9œ5ÆV]‡*¦sêˆ»µjòq7«õË¨ð¡È3ìÒ9Ã¦âÀ%à!©ºbdV@ÎO GÔaMÛÃã¾¨\nµ{d9În¥‘Û~‚A ƒbÙHc†åx;‹åB®®o>1<9ÞJœ|UA6@Š)YºÒ>$UÅÙšâé§¥6b\"9áó~%qö¥2^J²ñD3]ZÃÍÀû4qôƒTõë9ò²ÄÆ·]6¤z*6u„jLñ\0ƒ<)¾+îô\0å9÷«ÙÔ$2©ã!èº…Ìu²“ÄÛéÎ™)…\0Ð¯»ð9þàžqBYaÙ‡sd¤yþPÃ¹(¹ClŸ;]«¸%É:Z‚?SjM¥aŒ\0ðùyJ†c/¸Eø#Î8Ðè s:\nå1Ñ.¢ÃÕVÄ\\ÉÁÇd†S=œ\"E,vv0²|“:$€÷UÒy\Z\n*â+–éÿÅ¾+cyª53‰3eê3:i\"R\"w`œ›ÌRÑIñœ„XÞL‘Í–šÌ7Û‰†Y¶:k6çZJ™£Wj?ËvëA‰¶ˆ^aŸ€-YêEçÏ8.,%:k¼\n<(QÇ ¦-g¨Üvv]èš¢áÔi³ýÈeU—N:‹ÛÅOñŒª3Ö›KÍiDé‰›˜‚é-‚-Ì*¯3K/: ¡ˆj\'²}’!ž „}DD·%Xï×á6âD:¡\'º¢¸Ž\ZÝ?ðçDßæ-Sp\'LíoÝ\"u¤…ä`pÏ:¬›Ùy8…–{#ÍÕ¿…mçúöÖ6mzø6Y(9:´¶ÿÝÁ‰Êmèÿ÷e0i7Y€§,<YÞˆ-|€Áž½:Ì÷ÈdŽÑ ÿeU€êï&¨\0 ÖWåÅC}>a4§È:Ï_ƒllß|Sê\nvÆ\"›2´ ÜÕçÂÁ$¯‘¯r):Ïi=£\ZYäeuÍóÂ)Óªmëƒ­}¸Ús?ù¤:ÿ\n[³v’Ég%Gpäa?>ŸˆÑm“_kÁ„ÿ5:ÿU¥#¹?‡™_jL§2S2Ôö½ü‰ñãU·ª£H^;RÀ‰îÏ^ºy]ëò¸ä%a3_)Î;teâé®;JªEÅ]N”ØjÂÌ.‡Ìæ1¥*E–—‰ígWM„‚;WÍ­ÿ ª±%H)wš<~ÐD|Ÿ7VÈ<ÌÈJÜ;d÷ ß©„,Z­zñ^u–¦XðÑ˜8ˆ}¶÷l$£Y;g½ŽÁlSÉ¹Á\0€ë\0G,i8MÂŒ‚\0çý¹©ñóœ;rïñšâãtïýÇãh¡šï­Ø’ŒVg(egÙ1A‰Hâ;z¾—mÊpúKm\0\']s\Zø)³MR!\\£U<ýè¿í;Š\r\0osoþ™B>Ã”]ÍØ÷âuc“ºò rÕ¢T‹;Ã\Zm}§gÏåêêùO†_tÄ%n¡È…Û¯‡w®?;¡è0õNU”-û\n°ÈÄûò$Î¡¾œëJäãŒ;ª·Ñ‡áQ‘ §¹¨ZÍ[ê•ƒªíÆÛh^2u£*;»7ÕD–nRÑWÝN4@“´JþsÁ`ÖIºö¨ä;ÈPÇþÎÖºîˆv}M¥ZÖµ&•V½¹ÕÊ<JS;ÏŸµ›§j\\Øù%z™všò©”ƒ}dóÿ83eª_;ê@ïŠ_–MÊ-çàÕ…‰Çï÷Ý,(gŠBàÞCÌ\'4/;ë]A(‚1Œçƒx&¢äšÌ®^»Øl_Ük8c<FÅà ´\0DÉ;Pw—Q¸œÐtøÖsÝÏ¯<·5œê©ºäõ½Õºˆ·v€€Ëñ\"ðÈ˜ÚªœåÂ<é¯:GÚß&D]Ôƒ«ÍE3 	uæÝœßtŸž³< `2!l~òsø‘òªDU¬=™¤¤ÚÏTšRýåœ@I<!{]Ëwf›ïô¤ŸÖ°„z=~îSþôAð>nJê<\' óŽ<à±\'[Oe€÷ù0ÕãÊüuÜ!ôX	‹g<7è…SÊdTï	{~ÐÓ}&(94ÍY—_¢S#+TË\Z¶<?ni6~’ŽÏŠÕzù£›ûÞîÓ­Dzm\'={?63T<m†2€Áèõå[ÈôgŠôØCƒ|ŸÜ0™´øÚŒ<qÍ#;•&„p6fÄ‚^½¾ø¯8+Ô:÷¬é¡âÑHñ<x:Èwì©âóîƒLdìdÎ|G%N†é=©s©<›\0Í  ÑÉ$Ú±Ó5Åµ‹Ç™![•ÄG7]5+<¨’H.<û1zôff:©/|Ö5¡FŸ\"©<^õ÷}úÝ<ªÿãþ°P,vuSÃákÈÖ5ø3lšD ðTZç~O<¸.xnEe×¿ªj?\'o2•†œÒ\Zh<’:-Rr{<Ô«ú!qÀœòŠÕ2{Ÿö»Q:œÎ…¹€¥2U†?=Û>­j\r›;‘ßÛæ|s‡XÞRLÓ7Å¦Ž·Sì=A@5Ó¾Á²Í¾\"ÍvÉkkaÏ›aâµ´.kògçæE=%x§,Ç\'}”<ì*ép¸öãuX„pÐsìýˆH#r=Mbþgž`<ÁCó˜ÁòX6¡ûúØ.4xÂ§Ì{=QÈs÷fÐø#Í“”1\"C¨–+3bî“5¥|<PàC=]óóùm·\'ÂO¨ÊP«0;&x\"Î¦•šƒÃÚeÓ=šãóêÚ¹¦ýÈô\\ë0äð$ÖìäÓ[¾#üb=Ÿ¯í±$ëÄHÓ3•Ôf4ñDåü±¡V­rjÑ!?öÑ=Îø—¬.	Û• &ÔIgCq [OÙØS„=Ñdtz\\àIgNì\n´d%­?8­³®e%`s2ûôI>\ZÔ×Û]Æš–BÌXv’Ø°c¯šñ¹Ó.N2ÂNÒ¹Ð¯>\"8²ùâ¹*S@-‚öbH°ˆÛ\"ËaiŠº›žEx‹>\"eY×-¦:0¨°ýÆ37ðùžþ,jÀ³ÝOâ¬>pçEÁ;A\nÛåÔáÞâõãqèÝƒá¢á,(2é	>rfÆ	/¦lùÙ¸$\ny+b+0ZHª0wbêVÇ>‡@Z‹HƒÓÇ“’§º9 Ÿ)ŸWî|„9ê¤^~ >‘	tNí}¿ú%åÂÛÇíó¯ÍÚâ˜7â µÂ6É>—µ‹¸•º°+1ü˜¡X¹sÌé²Vî×TCÌæ¬>ÐŽ¤º<è©gÍ\\^_·¥ù½9ŸKýåö¥:>ÒµPíTÏ»ûŸ±§7rï`“üˆKÂùË’#žF>×EoG‡¬ø0W^“ªÚ­>&i®nö\0½†úÎóY9>àxßÈf?)ÃÏSû‹vRK‡Z¹›ø‰ð„n½ñR>îÔ¹£îãËîWß^;žïÞèáâa*qâoÿáicý½³>ÿ¸Gãºæ+›G‰Y/„C­ê•»Ü€6ÛrÉ&¶» ?O>uÉz·/AõÇš	n5E-ù‘I„ÆGUhß³?	]„M.Š¦nŠ¸ä±b4sÞÁTô+ÏHˆ¦?ÚŸ>!©dïÙùâÀE_5ì;$~$¨„§ñ&Æ \rµ?)ã˜ ŠåwYÓx†mN#¢\"( 0wiúIÙ¹2Àñi?!a0?+m£!©ZŒ¼½uC¨<:°ÓÑÍþÍä>íGq÷?\'¬Ð€|8§iÇ{_Ðz_)-©2®=wmo½wÜÐ¡?,gu§Và¢ÉÂ”-UbëâÔÄ<eAÑÇ©KN¡þ?3Í³¦’ ¥Š´ÓóD[çqJ•‡ÅŽ‚•g*h¤Y?5KÏ¶®ñjB *Dº¹ÜäP¥ú?4žñ^‡”¼?>ºÐe©Ñàþñ¼cºý2u“ð¯ÕóužööÐ?H\'ÍSüD>í<56©Ì§5cá¨#_{8ù‰cf?Q¨O¸Éx™R”\"íÌ&À¨Z-²C¢¦í¸j\r?_±Þ6bÙ%Ÿ£¶ã»§›«èÖªKÕçÇ¯xLžÀbÍŸ? “ú—ªh]ž0\0Ú	B¢¦™É‚ˆàL¡ JÖ¿?ÓÏ\rÛ´à<—èÙãë~÷²ŸëS×1.¯ÞQ±E¾m?ëõYê¤²¸;Ü®ÂáS{Bvº,J”{9š±?õ‰W^Ëz\0¸ÓY*`\\ÁP·+’É-Zœ¾Æ ªlo?ö›E4ó@æ+œ>¸¢‚²~£_teøÎýv\nh³@®$†þyZÎ¤T±Õ+‚¸Iéf¯Ø’c#p Cø@vP…áÍèÔoêå4Oëuº¸öº¦“ŽY7jÑ¤@sÑ\'”b ÓN9E=Ð¾±ÝSÑ0¤V‰Ì{ÈK@ˆëk÷„ô¾¤¾äX$Î©PB	´òæ²=PÐS@*5­]ýðG¿‹€ô²Ýû¼ÄÖ€«Ü3)A{—Aq@:xÿcŠÃ†PV‹àïqtŠ´(„×*¤Ë@CA°RA³5³¯Pü}”§ó%šbI^½C3·®úÿ@Lo˜ÖŸG”²×j§_x0`æý8CŸê{Ïp@`@Z=¹žsXî/Ø$Xvó\0¸ÿ¶uy³8=7œ†ì@^<Û¬\'=âf©õn+Á~½äw‚;òü™\0®Ò@`±7°…ZÇ›ùbvP©‰õ2øtï@hlÈq¸ÞÒ€@qb®juªO «;…x…Ùí¬æ\Z{%y	Ì*„ð›]@v³KÞ¨kêÃ%~†|`¼Ø`„<5PëÛíŠê.@|IªNÀA½åY®˜:_Iâ¡¤Îüa±*„)õgÂF@‰~ÞbR…é’¤ìZÜ^¨Æg¹£õ4œt\\E[]Îx.¸@l×lü4ÒôwÀ2¿³lªÎq¦Î3P±äà\"Ÿñ¾@ž•F3ª¿ò\\;ôeåˆ0ÛšÊëNÍQP£©\Z@«;„®ÊEí îxS§\rÖ=ÎK¦A-ëõpž×y@µ@É¦¡  =ôKw€Ù¸\rk¦)\\XsÊ‘•]Ú Üˆ@¼Q4Ä¦P¢ñîª±Àl¹NØŒÏïF!ÂÛK»³¢å‘A$ß0©jðºg\0É3dhfGTÝíGü)Ì·³!A92Ð!Z9œý^v*¹\0D8\Z=Qµy‚ô\ZAbôAv¡{/Gªgö^6Æ~FÔ\nÄ–ÃÞSA	“½‚»A€¼è®5ÞÄùNök…j(WÜ{lüÈÂ9ŽXIk.Q\"#A†²«’‰c¡¼7€î6ßQN^ò\"BÔz´ïÍNA«2,™0F\rv< qbš9×&Ç°îsÛ&Á/ãA—´©„Z%ä†6PãÃ™Hç—û®[h\n@ï <¦¼A /úõeÈÊ£Pêš3ÁsEä‚bzáÌï%xKÄ#Tô«AÀjŠÚ±ÿ]½UæúfÝ89b•yFvw1¾„Ì$ˆeôAÅN~šúômDD*ØW Ž\n´e©\Z×ö^¿Dhuß]AÓ@z¢$zYâÏ­umÙp¹Ü”õ^¶£6Â/£bÞAÕ‚¡Ô8OæÐ²ä€í¼ŽœOzœ»yÅK\Zt®\\AÕÜîª‹iß¤^ñÏôÛfßWÍŠÃŸvº¢#Ÿ\Zg¬aAÜíë•Ùåã)ú6Ï.k#Õa\rU¸ˆ²AÞe[	ŽºŠvÌ›3ø¾¯kçg\n\"…¥¹®ïàÝŒèAì°tx‰</YâùÆDÛÎá–:=Ñóo«Ê›˜	u…AÿýÊR<KÉå!tïD¶JáýNðû½]F!Æš|\rjB\0ˆž7rï”\n–75š¬ƒ³HŸÏ„K~‹+‚ÜDBo‡B–ù5¸}\r}dT ýä/´Ð¨îÈØŽÀé,BBI\\c±cx|Ÿ¦³c\rì”wHN,4ˆß?ØÒBŒ!!ô½ä$úã‚±Ö„!¶÷V[Ž®Ðû¢]ÇËòQ\'B&ˆÅJÿP:o†¤ûlÊG|PÄ:qÕ_pŠ!Î~¤B*œ/zâén¦äë-‹ðTýfY£ÂÄzO|…EìVöBÞF$bßé²øÔ$.…-zFneƒMÔ*/„èšç¢ë|B•VÕÅþ\n,°¶Äî¾£O{Æ‚9õÒ¢™°ýó,ó–BŸMZÜÿrDžgKÙ÷Z”y³ð{¶!Èd÷ÍÄüÐVBÊ<ž= P\'\r³¯ŠlÝû5hhH@ñCp3Ï2É­vCcBÖR»Ä*8Å˜¡ÓïTåðö/]s·.9T(Èê¿ÔBÛ¥D~Ç–Ü¬ßB>\\_E”ˆq€ÉÒçlØOxy\naÅBÜ\nç™¨Ä¡?}Vx¢¼qAÛÐ½a˜³IÕwA\'6Bã¢I˜èqƒš0úq\ZÏ* ªéZ>ÃÇ%CØ!lC6må©è›¥í×mlÉ ýõ‘ÆÚ2‡}$\\A/C>0íÚ,cïÜÏJÁvy˜Èìš“(TÝ„çžI•CN6ïÔZ:™czç15êùÁ(Esë{(’ùM×½Cjá¥¥-«DX\rHKÿ®„«ëÕq¾MÊ`o»’ˆCnâUcœ]üÀ¯ÊüLêá˜]Ä¢6½ÀC1rþCt‘…¹[–ÓP9oŽ&Ñ–·cvÑCÇ¡â‚b™²;C‡]ƒóÉU½:3µ<Éøv=\rˆ\\ŠåGã)¸ÍC‰âv¹m9)Á¶“ÛæwÌlçÜNdü?¹>o¬C—å4)Öø’’“½‚iÇŒŽ<1ÏuÔÐŽ¸Ï\"CœO‚5‡X”þWÏ	ÃÎNùî¢áJ”½Í6ûåC«]ó×ª.7íˆÚfbíÊ¹¦šoÑ	$»Lá™ÍæpDCµíø3¨ð(`¡èe#¥½bö3Õ~;o¬‡ÒÂ4TCÒ÷ŒjšU#HL¾\\Y%úðý\"ÜrSì{¨õtÑÊªCÜ½=#\\‰4Cø.ûðfÔä>)!ãßÊ\"ÖgÛkCÝyÔŠÃJDo H¼yþê¸$õÑÜ+ñ|°CêO¸W%“®¤tßÞY×|ÂÕ&‹0VÂŒÐ\\ÌCô9–~®‡f~&ê’ò%{	7ñÈ¡[¿{aOyíÝDg9‹Õ¥Ô+‹ ›½Çwèw\'ÞßYJÄEÕD2Pwr8ÕI—þeW’}þ)ŠsßnÑà°ö³\0þÿD?–j^*¾Î¥{2¹	WÀc|§ ÿ]‹ÔyütDC…ˆ\\N\ZK`aõ—o¨¡ì2õL·JÄSw5:L»TDHoBäT\"—Áª/¹T[‚h‡N;ãÖ*w´o´©^´°®DLSgÑÍg¾Ý¨»Ü? çŒ‘åÍÏž«Y1Ñ› hDWè¥únÒL°4É+¤X’«_Š;­¦‚‡Å¥ÂDkäÊ5ö2øñÖüÒoÝâïô…«èä‡+¥×¤I0ð¦Dp\"Šb›PÖmEN÷}^¯¹³[ÜúÚ:¨qþf¾¤D€©i\"ñÁ÷¢ÇžútÛ±ŒR@…8¹Ú¶ÊñuvuD‚T×E™)$GòÊetæsÌ®EÙ¹¬ª\n­¢æãDß\"ŠKê–ŒT„œ¥+qrË9 šütJ£v!!D£%}³IƒÚîm‹ãF2ï=(ˆ\'+¥äA’‘XÓD§˜ù\"eÏ9‹VÖýI••m‰425CÚ¬AóP½%_D´ÆŽ­6Æ¹S´xä«hjï°ŒG­]iÏÒi°‘Ì_D¶U¼;F=£¹è½d¦øZŸK/ì³h-$»ÝçX#DÇä\0w‘ìÄV—ìvRwo‰–«‰ï×~èMRùDÞTÕX6•_8T&\ZUc\Z~®Àœ@ªQ’ÂßÓ3góTDêzý\nrÆÅÒÖä#o8¶­]ÔqñË©8g¿Úw–ÔDù\nDKbuç4iQ\'’:é©-!êš:	¯ú2ÎWi\\ÝDùœ¦N¹™-I0–ÿÌ0?‡4àzfÁ€<áHníE\rÙ×¢Ê4¦/¤X!Á3ùè¬~\0Ÿ¶Òðé]ŸE(ÄçÚÀÂK\"Ây¤Œù69=aÞ1c“3øú0˜mE*Èñh5|ðy;f\r±kÀ€Ôa‡í“¤~NËrðE0À8ÖµLó«ý}qe%v·BÀ|:±h¦w†E7·3~ã¡Kµ\02³ˆòÓ7r\"Uª%¼-ò_:²E:ú™kfèdœtps*H@ëœ+IÊ35_\ZrŒ3´EG-=ÀŠ¥|èð†6W ”+xA0õ†Icq_–+EJúVU÷2b7jMy¢ð8]×nF}°ÞZ‡²?4íêËE`ƒÁf;¿uí³\'wI÷$Ž0Vžo0H3ûö]E}¢¡œZnÕ.G„¸–{$‹XÕêº(jyqê£o=E’ª‡î6Üx7à”›ånÖ÷oj a¸úh.¹eŽë5½Eš õ\'Þ%Xmš-ÿQ»sØûáÄŠKeb«øb©XpbE¨-8\n‘u‡ÚT/ÀÂ§ÎÎiâ¿xäúr&¤ æ3E¨Qé¶ÎÖd¤§8’LÜ®Å¹@ñüª ì#]sï­EÐˆ›Äø\ZëT”•Ý›¯Ÿý¤×µ„Ë$çé;±QEé!¶!‰¾Í¥ü‰ƒ)r;Ûn6ê®EkêS1þ$`^F Í¥Z©Z(5JC©Âåû¡kù¨\"ü«óó|dwqFÇ¾š\'ºT%cë*|k¢¨‘Èƒ½ÓÓu\Z²™N±ôçMF´kfSÈGK#:ÈÀ·³Ý’m¸SkÜÂÅ%ëF­hëÞ™øºï«HmÎð‘k™ÈÜ²=æ¢¯™F÷w•Ø³YÀã=çõœ!îB´\rØJœÅ9´F!	úP™ö\r\'ów“¸:(”Q\n’=jlõèhj¶¬F+\"º£àù2|+öFUšÃŠØ;Y¶Iá”}f}|F.¡®AzÉ~G-v^t^¹°0ý\r—­6<‡Ð…fhFCöAÑý>=²šóh1­ðXJWDX˜4Ô\"Š=TXFO—¡ÿV3\"øªõœïÔ¼£ª!kÐPòFV›Ñ—±aè6y±p\'î3®¥]µ\'†´îÓþ,F}&w=4qu®\Z¬Ûù­X?·F{û©W¥B!½F§¯Š{KØP:†iòªgF´\\öÜZ	(\0GpF¨ûø¸Éþžy½½€Åý™ßéíâ3núÅàóÓ#Ü;F©§ôÀR´<`¿=#iâ¶zAg³Dd)ÌÀ‹qF¼ÛzÎg­Ùsfý7˜B»÷¹X²ñÐ·Iw±EñÉFã˜tö¢Ç£vûÖ\Z¥:ë;„þ`ÖjµÊ ÔB¡G‚›ð^Ð—Î±ñ”›tG¹eøåšÍ)×Ùí²ú\\G½nŽ“¨U¯ó>)_\Z1¿d†/ÚÅ2¡’Ò>\ZÚJG\'AQhîMÍÔVí§¶v‰S(˜G¼¬l^~@yÝGBÇT•‚g‡×{–yÃˆ·ª¢†C‡”–ÙÎÙIéÒ‚ÙGBðìàÒ#”(ö>”·‡+:ËáùÔ¾\ZþähþÞ/T‚GI}¯‰?\ZÜ)[>\"nå`ºÎ÷ÙC’Ñå cfã”G]€Ë½{0nÙ‘)mæwhní¸m­«TCñÎ&G^˜Pÿ[òÙÖ°a+Ëä‚“ÞöÝˆm—gÏ ¢?÷Gsq\"¡÷qk•¶,Ù&ðu{nºŠi>Ÿ¨ámÓGs}ê£©²¥~V/	Ý­æÙ¤[öëí:ñY£×\\Gt_!ó§HXÍû­«Ð«wc¯qÏìeäúþ6Å>îTkðG~x%í¾ƒË³ñâó>)žµ¾d(Å\ZBNJ!G…ë+§Ú8“v³Í®1g*=^5ŽVøô¿é€…·\nÈ\'GŠ@‡PÈƒÃUˆ! 9ï1XYM“ÉÿQeˆ \0×`ÆG´?}ço>ÈÇUÎŒÿ5®O*qú&+v‚3\ZRmh@G‘™gr8É,ïBÌÞc]u_·a\rÌŠ²ÐÊ;˜~ËG½¦W\rð\Z‡äG$é7iD>Éb‹¤á^Ï®Èï4öGÄ³Ë—»YqUé„¦´¨´lâ\"	ìÈ,]âûf§C\"sGÆö\'”½Y¡¾½7Ëÿé5T¹jçd5:Â€“ÙX}{üGØH{²p•<Z¼ßtM¨‡h`áKÐÄÇAL–¿ÅGð±¦ŸcëÈ`B+91l%SÂ;à8B!¶ÖºÆG÷Øí:—³}ò«›ç¤ï\\¯\r¬Ë÷#}gàÁÀóuëHóAfº%Ö³1h°*#ëë\Z·UEUhŽ>B=r‡Hp\r³\0VÜQÎ]µ¹%<‹ Ùÿ	Ð&si\Z­[•H…ßHeùQÎÎe	=:¬æ2sOÅ8×Oõ½rÈœÅ–ÒH,Ïo‹ý¸1ô@O> ã•ÍR{õÆâ’5k©e•ËÄH69ìó—ÃŸÀ$K²¯&úó‰k³­ÚáÑ•‘\0ðy}H9méPÈ¥ß\"¦T€žŠ¶ËùÆÕ©þÖ/5Ê{!ß#Ïû^HBÁŸú˜]=|\rÓUJÂ¢ ÑèI±Á‰¨­wÖj ~HNÏ>ÙÙ+föãòVQÑ‰ž2§žåð½çË^ÍÐHYƒ˜fAp²0]ý™OcÂ‹—B §/¢ï¡±$‘g:H`kfN–°Lôäõh×`ûˆoíè[agvEHaÇ÷”÷ÒÀYB¦3GD†«ÛŠìõY¸|åå_â]ÀH{Ã8;sP‚%;£q‘Ð9\\š×}óI€“W—ªH™Ù¤]Ãªù\0Øë•{/|È öodl€J/1±H¥©Qïƒ‘¨0zí/ÀtÓ$ÆéÚÈ7È)æÌIH¯ˆ Àÿ{ÿä\"!b(ÂïëArõìD´]ìÉßR;•­H·ãËJá²Ÿ¢Ã ` ¨÷ò…ût¯HV¬{H¿¶è¹5±\"wqnG8ÊxC·ˆZš(Žî÷«\07ÿ¢HÄÆŽù—ÝË+@µIë·Üb‡š^=¶QvM6_iLHä3–:Bk[e<KRƒT6ë¬uLÁö‘b€ŽhÎñùËI‡¥­10—%óV`Þ®f¬aúö¦²8~(×õ§‹I;BŠô»S¥ó»©âG¬l¿º”D‰kÙl,\0‰åä)IGQp¸œÍ5u½òŒ\0cÀ{Â}­çAìðÂ>INÒä®ÿE™ç¯j‹4“G\Z\Z}”®«C¿JÅC¾IZ¾“4¹ÿÜÖ»{Ò—×7taÙxÐ’H­1–¢ÆÖðIyñÏ\r|­qª›–SAý*†	çÄ}H¿àPÁ”æI‰|á™µ0ÇÝá¾7aÒn¹Òe;\\Uôœ÷ÚI£>Ù½âï^iliA®$UMÂ™>œ¸ªl¨)£¹$iI¤Àg-¿ÓÓ®¶P?{ÞuâORìRr%‹ë“~ÞÐI®Ô?Š¾ÔRñ`#¥àC\'\'\"·®Ó\\j\0aR²_îôIÎèPÕ$ÐKÑ~á¢P¬«mhfâñ l<!,%ÞfäúIÏ3d7°Z4ŠUØ®!VÒRü™\"Æß†Koœd(â²IøB¾qM 5{s6 liæYÐ,žÉ¦dÓÃÙeÃ\reUIûÜ?«5j¹Ín7à¿+#Ik¥ÄS¦Úïð›c‰ˆIþz÷V¡%¾NÒ)½¡ÚSÊ\\²²n«$-/Aˆ@Ü`JR2ï›Îîñ_¹s{\n/úvgLiòœ›:%¡ìJˆ¦§œe©N2\0íY ¥¯by¨_·B‡šÔýéQñJ(|\"ŠDçÖw@Î¢ð–˜wîï§;`®Sþ ¡Eá\'É]J0^iæN™Õé¤¸®yÅLéÂm¯¿¾øës{ˆá(J;?[(Óæ*Qý‚{¥84á…¶AfùU±ùý†ÿ5f;¨JWóæÜeüjù ¯JA¨£ËU]1‚Ž^s?Z‚Æ\0JX#jÕÀÇwöÔÓšYûùæUZ+òõvä *+Œî·J]²Æ <SMvðidz„å«×ý>€à¦…&<d“˜CJj°;þÖãKžã;s¼\\¢•2Ç~€Ú‹4½J~ÃÄ=¡;ë…žü”#– á	\"K\ZE+‡í½Æ13°˜J‰3õAZ[‡§;‰`“›´Ÿ³ ¾ƒ3Ë¦ÄoŸ×J“4Ç+`b	ïˆÑ\0YŸ‘yØ¬6WqDÃ…Jš „ËÃV¡sf™^·”³¥Ìªôüçó0G\\Š“J¨Š¬Y™ŽF Á >%•PMFê? iºO—êJ¬‰	p5v…ã”„v½õÞô´ð8Š‰œƒ€( °­ÁïJ·bjbî‰4Djw*4ž¾Ôé±‹p÷-:Vx@óŸ~J¼•÷N¬@—`Ù¨ý¹P)@-8Y°Xì-ØÑJÐ6d¢ãA—Ël{ÁÐ™\0¶Ÿ›ƒßJí¯÷îhJßÆ}0òÀË.ÔäûpƒÎe	GÎÜ^—ð~•»QyJã”$§ñEæ¾!\Z€ó\"ÔÆówŒONÕÐ‡Ž«^mJìíP°Õ#d	Të¨Ž=ì†v*Qf§¦tz\n“½±KI³å1ZÄ. |¿Å=ƒ3÷S0\rž÷8]„+K3¹SÎãxF¸Hn¶¹ZDa‹ÝÛ³Üðwïs)*xK;PÈasz‘nZ‰ú‹ˆ—£*dWÄ‘í«j‰]rKPð‡”F1)oÑô47æâ–@VÿOäçfU5gÌìKa;¨×¾ð$ù(Uiéò{i­N)hi\'…ó¶TÍŒY01Kb¡C\rÊöü·it¥ê…£Ü\r?Ö\ZŠä½áÓ6·Ke«]éoãüï¢ˆ‰?>ñMŒ‘¢3ö<¯—îð€XKxd]pÀì”Ÿì6rîñ€7qŸù7nh»àXJ!K€Ô´Ë‘‡kéHVÛýà†×AZ!Úš¡¿ÓÐÐ÷\\ïÎKƒõ;„¹.8^Ò&ÄÈ\Z•ætÝ%ªnâò“|TºáÈKŠ’šht÷£öµ€Ã¢ÁÂª–xšºä\0,\nywÊÂKžz­Í¼3cÖ×Þ–22Ž?Cô· ®Æ@äb_LK¢;¼ztå¬uµî‘,1}½·V\Z&!…ü5W«ü,(K­k˜$H­Óít8¡0™%\Z»µ\'‘¡€%Ž  	ujK³O™ÿE®ênÛAFò>®š£Ú’d3ø’\Z_»0D)\'KûÏ\naÚ„h)Äˆ#å·†BÝPå¡$û;¦ÀL$QÐöA\Zÿ3­oTÐÖŸñxåp\\‰Cˆ™ñÐi­5L&üýz¾ÁŠ„ÏÖ›Í­+Õ	Â*&X»¥ö&R&ßeL>ËçìS\0ÔÑ}ß”¿â¹\"².jônÈ¡z%ža |LE\'“²Ž—J€nEý@”»lÑr!3Î†”Âé·Ív\rLL¾Ô)<ñ¶Õ”˜«ÀjïFÿœWÿêìB0–#pmÔLOHTcõ¬þKã6®„æ.…e£;ø]ÀAesË¿S ©FLSÀ© #Vˆo€8ki.£e\"k©™«û’£ß¦ÒêòpLq4¿Éä‘Z“´Õµ†H\0Åe7f=êçª\rÞ\nDC>OVLz7\ZUÛ¼x{UW?EQäK‚0à†\Z÷§ù`hlÉL(pypÜ]Éó&Ê8å¿,\"6»Í$cM×³Z}uòÅL°Y5›æ{ÑLîIl#6MçXHïxP!\'þú+Îm\"æôL´f6˜Ñë=¦([Ñ…€Åó•`•õ#7~µ(aLÈêO<«e7¼j}ó;Üh¯—&KÐ9ôø<• ‹¨ÂLÉÅÁ&}³†PÏðïÜ›Ø¤Ê|b31ÔÒÎ³LÌCí•´1%ÌPÇ­Vîç©«q{¤•{r\"H¤.«QÇLÌC¨°UÁÉäØhU;4æn}Rm«¤x;è¨ÄŒÜßLÓvQ4Ôä±ÀxŒƒ™¡¬ßA>‡—krík-§\0àLÜ:}øŒ%,¤âƒ\\}£~8\\Âþ»Oa’ 8ÊDsX‹LÜ¨\\H»ø=cÎ\ZïâIƒp‹b€xÆn5¥À¼ÿILä*~Î à¨E‰x¾¤®ÊI<¥\'ÕULhk_‹fÿBLö›å]EÔ;B–/y/k]ý®r¯\"›û< H$ÉçLúí¿¯™˜òRHâxßýsÄqÓ5]þÖíMÛf9M\nA\'J@c¤VëM|)®ª=þü5â»c[ØÙÿ™!M\0(¥ÿ@hF(Â¨o\ZB°FœA\r™w•7™–M„ÇÂ±MÞCÒ×Ð-”ù”8Vò]\"®?FÏ/Ð»‡MV‹€s¥ºõhìÉ$ôCÚr+B·wÞ&Êu&k Mk_!:°Ã³“a‰»‹¿#“ªËþÚø\\	^1³ãM9³9Á„7«ÎV%lÜz‰[B6è\nÔq‚Ê•çÃðÌMY~q’¸_$ø19±wÙåÞ`Œ¯ÁñÍþ¦\ZîÓM[Øiö¿%MªáAD½.ñ¯l.\ZnÍ ýp´T‹tƒMyL;-˜Ú›%I¶u\\‰K|,ÌžâÃfíû] ›M;*j‡®hÒ\04\'×u\r_–Ð`ìt\"ùOÍ–þ4M˜Ä®ü.4jW[áäa`Aù¥ù>œ?6eXÁMÀ«q¼\0qÝ.ˆž2Ý¾šA/^GÌÙ/Qû¾trªœêMÓ¬ïP×èð–=ÈM‚Ó>lw¯ìÀ›É—ov†\0Mì€~ÐÅËY¡‡kø@Lÿ\"#\"/;c®†vj~\0ìdßMòøôßÏ¸\ZP‹\\xÒÕç\09‰Fæ\'?Õ‡·÷í=MöSpØá}Tƒ÷.!ÿ©û$|Nê¿\\µ¸Å×Äü»YNÄâÝEhÞÆÍÞ’\ZâÃÝ¯¤,P.gÜKNmö¢†Šgl‘)¼´¥A“ó¢½„ˆÁ?–‡ üN‚NÜegRÈwS–nÍ\n¶¯Gû™Ðš‘½Š£¯qN9Ø“]`ÈT¥Þ*Læ)wæò\0—…+øÄÃƒ-r]çËNA;Ö·o•‹ã5¿9‹Ž0„Ö6ÇîlúÃ†lyz£ÏNL2¼¤hÚ«F¥$H[=NÊRµž2\rQ$ß{üù„)NU–Ðïš{ö¸‡Wçkz\\ºðm‚˜™½lfÇëÎ#7N`?g¨\ZÓØ‚žË€Æèz±írz…e=×s¥à%Œ>éNp.jªìƒ£f´7F¥,DÅÆÛ2Ù­:Ä¤2ð­+,¥Nzâ€—Ò¡r´¹9;Óô´›,=Äèõä—ˆd†¢GyNÈ©Ÿxƒ=â.åŸÛ’¸G¸¤—nøÎca(N€\"Â?ßÝX¨ÑhÉLúæf?e!#+¿ovŽÌ`ˆÐn¶N¨×:ÖûÆŽ°ê>Ý%ç,7è	çgâŽ`eézš,N­v²ÐêÞçLTgwRöö€–\\˜ÐGïh,–´N´€‡Ñe>h¦Ì@ÜJ|jôÎl÷Å·p>U¸ÐNµjß$ÈÈ-ñGE)€¹ˆ³&J©Ç4ðÑG¿âêTNºÅkŽûÓ²ÙØG\'ƒ:‹¯±˜2]¿üFÃ+”‹‹ÞNîYÄGDbþiÂ\\iRL<Ø&\'?ÍÿÀã<·þ³U3XNÿ§«WNlN4~˜Œ J& R—\\xdœ×¾tR_é¢ã O©	Yÿ@²9ŸP®·-¾¸íÁÅË>ú5ªÎUw\n\'ORÖkÔg)¶eFÃ¨°Á¼lõ,Œ›Ú@Êô«’OÙ¨›|áe]|mK¿~éF¨Ó‚Ë;‹J\"´ª¤ºO(µî{\\¯Ç¨UÞ^DÁ%þ!ä¶£ª†¡XÞÑXJO:X…ZÉ%”ç§M;Ž—‹‹	;?®™¤Õ—læ%¼OCdo^žù¼r²õ•”?žÓ²ždºùôÎ8ú&V®OG¾Þ£Y8+]Ú^wâtæºÔåX]Ý¯“s6QzOVÖçø/Ÿ«½~ZÒÊ<Ý)Ïr!h=›þXÍ4´XOeIßVi\\q<º:ûmé´W³DlK‡Í„ÞÚ\'BÐI„Opbå6å<FÏ»«iÖÆä²¯Hp†\08•2¾û£Cî*O„e„/¿<‘ìêHÄ}	ÊJ¾ƒ¶¨t‹†J‚ý3KÃO…ì%zŽ¸³¾½÷wvœãW8X¯F­ˆ]úÁ¨lUOˆgû6r\rþ\nôp¢»H¼Ì–Ö·Ž—|ÄO”AR°„`qL®?¯×¬ËOÈ3våv\0UowË\0Kœ½O˜Åóâq%s5zût†ëgùµ’™UUöîîÇÇi~~ïOžuì\\\rû\r$Å-…×k}’3§ã`É\\®kxïùO§W\Z‚9Åa¸q(”Ž: 3¹Þ+¢*+¾›£ˆÒm;êOä~xwU.] bfWÕ`³h‰šWòƒ\\Ü­¸mP\nkHºžâ6w#rüv{0…õ£=ï«Œ\0ãi.PzºZ¨¤û©bØoBL¹]Æî+n¬@$Gã*ŸQÑhtP€ü\n„O#~íõ#•Šü |öäŽF:Q>Ý„äGÃPkSþZëz´ƒ½–0«D“ÖÏ«¡I¹,1hÆáÇ]jP=ÂÙqÎúá˜Î\"\\&É4Äî¶òoè“0š©iPBÿ1BÊ8‰aSßh@<í ^!›©”|\nã¿àPB™HŸÑ<þ}ÿFÃÅJç›âˆg„­=rv×ŠúûqPD+Ë¢³RÆ†ÅÜÅƒõÄ5BhþX¹â]lÞWP_ÀºMŸ4˜µWûM$\r]¾\n¬Öý]’”³|°øa*Pk:ES¯ïv\Z˜LÖÁ‚³a¶©ÞÞ\"i\0SO2sá‘=äP~¹ÛåØ¤‘X7L¶G¶0©»°†ÊQËûdkL;å}P¦¹ØV\nB§^~ýˆ«Uh ÿy»rî.FÇ>6pN›Pps%½Ã\\*ûáóÒ #Q=ƒ¼£QCg8ôPƒ1mK¯=ÊY4à$Ì	’r‚Ö¨Ø\r(|/gË¥$¡P—j\n\n¹hbZïW²>}øùnö»“oFb*Rˆê…P¤Ä½¼7_c¿ZþêÑsÌ82Fù®%ìª\ZFJ:7PÀP°í*HÆ²ƒÁŠB?ÂBÅðn´ôÆ¤1K ]ßsgP·‡õ3—îJFúÃ‘mÅèß\0‰[l%©ž£Ö$ÿ\rP¿ÄK&O˜«Ú5®\'‚RTË¢Ï\"L¦rÁ<Ï‘6ÛÚPÇ,–\\§ïÃ×óÁ­áÞZ·ó`áä !þs­º£†3PÎW±à³ÕJî\0w~¡®\ry!R\Z‹[BE&@Ãù$\rãPåOÍ\r\0ÐÝ‰Öð U}$ïaúÜ)S~\'ÃA\\ŽKP÷”©%þ¹?çkN&Ñ{(ŽÍbGŽ!ã¨œ”¬Q\rLdž^×!DG4ÚøgŽt×µíÊš¾Hÿ·\"£»QˆAYZb½DeO×®0Ÿ{òóY›0èŽéXvQ&·»göë“£a¨ƒ©œI¥\Z5ŠEc&#ŽM/Q8¨ƒ.àf\Z`š>Ûû”ªËz;öƒ¶™+¢8$3ÿQ>+]Œ«6\'ŸGq™*r-­U¶Z\\±>ö#)âµMQJrýZ#6\Zíëd&!;]ÔþsZú¿\neÃÙèê7 ûQKP¦;ËXÓ¦_f)ÓŠüàìCœ?«*ž£®Qj¹éÛ4bº$V7UÄô„ƒäŒ¨M|RbBthÕQtAFB;<b|³»OPó£tèÛgyWŸZ‹Ïî‹Q‡ÐœhE»cžN0ÂëGÇ	–7ª=ƒµµm0é;Õ]QŠú]ÙÝBá¼ƒ¯àr4°?N&Øu°Zs¿”Q¨ ^Q‡JC£˜}f½·ÀLª¢[`%%™¦ËšÅ¿b¹ƒiG¨Qzz·³·u}”Ï˜þÕ¿¹¸ùò¿±>g¸™&9ä8ÑQ›ªöH\'èô<Å~dhÃ§–øªÍrú$âuÃ­0Q¡÷!¹ßt±©L7	Ž\n,N¤§±{Nÿ’Íw9Q¢à•Ÿµ[»#³¶T¤Ó¯Ò`ì¯0õŽ”QÔŽRŽŽIQ¤N´\\ÇÀŸsžmG«iß&½¸!0‘\'„ï2òQ¤T¸Ÿ\Z\"™sÔ­Z\'@µÔÂ‘›>=;FÆsõÇP[QË®5w=ÛCzË?\r.hÍ+ p‚\rWý4U…Fë0ÖQÓ~­uRðkH%ö6â³t–uÓYÐ0¼Š9¤|÷*/ •ÜQí™\nZcÛÈ4Ø…	ðgieû-±\'©í¬äkRñ|7¿ªå5˜÷¢I‚|fš(¼ï‡ÿØj\0R(ß³\\úß¥H‰£3âõßð±ùÜU= ùNÙKóRe£ Ã{(¿TFâáÏ²Q”…þAðÛÅ	ïÇ´ÁÈNRrú¢ù‡2+P¸•;Ê…r{\0ÔêÌL]ã˜Û‡¯Õv+ðRu8¯ip=¼J£Žõù”]¼õó”âwBÎàÏÂ‚è¾RÍªÕ›†›2˜ñ—Á$‰!äˆºF~eÞH‰`ÉURîPÁæõ¢\"b •M¨É=ÑsHmÓu§–¸/öM®RòñÅÞáŸ„éóa:hx¸–E	ŸgkAùÜ	+ ÏSÏÖ ÇƒnðD×JŠH0Ûh@õëÛ*Nt`¼ÑJS¼ìÅtBmÛ„4t›å‘\\ÊN9¡†Hð„6ÿ§ýÛÃ‘SBdžÿq…RV+?ßå£ÇóòŽ»¯¥õ0éÿâ®SKÃI­r)ƒ},2§äxqÔãj¤ø6+­‘ˆÄi©D­S^[m‡¯_ØÂïÂ,YÆùá%qº[Gà¨êDýç=oS_ÐR“v­F·¨™Fì5¼ß³7så\"O’Ùõ\'ãGShÃçá`.Ç!‹1eîÓUG19rj<bÝ4$×US›,µþo¨5È‹\0øÛ\'–Y¡Ãb-XjQæÈ(,FàSµéßÐ-Âyâïq.´/v5ðAªÕÌó”üt*·S½õ1VÖD†›†FEÑT4fÈÊÛÐó¹ŽN‹§ŽáSäþˆé„Î\n@GÝÃãfì_`IF¸aQm]-÷<Só­°íÂÂ|·ï ƒŸà|ŠI––2¤!Viè¶¦ASõÌŽ²[;¸c¹ŽÆÃCð\Z•EÌÒÄ4­?6óÐS÷A•4c\\DÒ56-ŠÍ#¼¾d*³ŸÒÒ½Ó¾Rýþ†T	y^â\nÎÃ\\Çew\ZÐKÈWÜårN©e/ð{ßÆTƒ³Xù%°—¸ïNuØ©§z~cÆ¢ä¨C	W[Tz¶º1PW÷j=Üb·×Y\'ÇªtNT)è¨“{\'T*âYà»n›Zv.\r¿‰Þ_©\"Èˆ\n«)jÔeT<Ý!‹MÑë,Åzì[†~>VÝ2ù…#}‘ÍE)÷˜TTš«2·Ÿ?%ÉiËIØ	ø`ÃV-½  ÕŠ˜¬tTV¹‰¶\\æ-ðOKXÇ¯›É.Å¹NÃÝÐ™Žu¡¦1^TY¨ºô£;ŠGVƒÎ\\7´åhW~àO\\Q{¶\"T_þ Õþ GŽÜôlöyºNç2Niæ3¥ªËù¤Tge‚\\PMåŸüø¯wûQ{ki}‹‰\r¶iÂT“uõsÉò)¾më·è[|l¦ôÅIÿÞ\\Â³\ZÉ¡mUT¥€Q¤<Jhwøö²ˆ)àŒþ\n\\ö7<®Ì½¿óêG\\TÃñÿF´ÓH‰QX@fSá…õBŠ©ÊDh8V÷I?Tí†w¸_±`zzÎvŽù5`rP®[ý}~3Àô´UËTîÏ“©ÆÆ0.ºÃ°‘!ô’î÷hËPŸ1s0ƒd¬Tñm9Áè‹âëŸùÂ¹­†åv•·Ý.x¸™•§¯Ñ9Uä9óŒîƒÁÕÈ›\ZAÓ=Cm„Y¡u\Z¯n§ÍîÎU‚í‘V«Î™õ­pWxÔÂ$”õ?»Ìäâ‡¼Pð½Uƒ€ôcZ’al(Û+;ý¯\Z&¸E\"¤H³yµùLU04+@qj?™35ÂÑS£rÝ{õÛˆR×ú;ÍŽU;S´È´ìTS2.Ë}¸Æ1X“SH…&ñê¼XÿE6™UKCWéÂÍ¢/‘Z3ŒÇ\ZÓ¶I²–qœî£îÿÊú¿UW&k?u­nù.N±oÁ³è^ìÓñX®£ÖÛ…5PUi<¶À§”òT	,sT¸à¢Øáaí»6ÂÊ÷¡VUlÒ6>8ÑâSÔá’»fu8‰ºÉ	q~À$rÃé‡UmØPÞãå¬g[6˜m†	e·cÛY;èâæU}8æŸ:lãÖ‘‘õ¶Å—™[³ÎJÒƒäƒÞ\'™žgU”y‹Bºôç\'l;FÑâ‡VÓ¸‰z©`|\nþ¾C1BmU•kÚ\Z¨\"Ö4™i`FVm†¹Â¬GXƒÿ˜‘i•EU¡áÖÛ¶B—©?âwN€ ˆ-ñŸôÄŒóm\ZÕ§•U­ŠM÷: Ý—ÎL-^š)—¤½§ãÆ|Ö;%õU¿ÉËÐÈò•s(»4>\0ƒxŠ}ñŠv‘Xú*WR\0>UÞÑúéW¶¾qPu¸U—T‡=?V#í20Âfâ~\\Uáˆòêš¬²7žé²E™§²EÔ¢n;é­º‡©9Úô¢kUéæ­É§†kñ€)‰©€I)Gé¸55	©‡féR7Uð’ƒ”œ`Î›)Í½HEÚl²#„ez‚Ç†í@‘DÔUñeDœÞòDkáX¤5\\h=,è™U\Z˜ˆ8Zÿ\0íUýÞ.‹Š¤Xýå}Çb£Á,W²sfyyE•QØF_¸Š[Vn.v&Îãa+’“¯ý8î³	™ŸÏÛš²u¯ðA<WV,©{+ä¹â¥x}-ø½\n uM8gý>,l»Ûœ{TVA™\0×“ðÁDN`\n‘)PÄk9ôWQµ±ŸóÒŒ·Å»>VK¼‰ˆ¸„a¬FÕq©kùN÷ÆiÁÊ7Îº¨å”PîVX×òWãÔ–Þx€@*ký‹U?P•Â6¼Ñ¢\"Œ­5V_Q•Z®ñHÎØ›¼N\\èè&IU±bóš‚‡\Z|ã÷} V†¾¦éxGÙ˜‹o)yõé†0ã¿`cÔV‹à¡›ê›ËóJ[lu°¿“³Xkûà·éUv½\"PV¤¦™XøÌÏÑQ”3ÊÔåâÇL!h¼\"i‘â#:@V¬žÌ²D3Ä3Ê˜>/å×ÆQu`Ê¤·R@@V»\nŽÍ³wÿµˆÅ“ga\\×ï€ˆ~J8wàú…N:m½N+VÁöíýEóâI0uÀXÏÈ÷­^Ù@&Ý2*ÖXÑVÇbqPJëÕÞ\0ô´¯?ÕHý÷ð…ÏYÖî¦ððzVÎª\Z\0¨G7h\"±] cÂ.¿±°µ.Ì­I¶kXßVÔq]Ž5Ô ð.]¡@MùÄ*ÒuóÇ°bÊ¶DLJ7Vé*Ð:ß>¸·I<ß7Þò{ºþ+Ø%Öô¢¼÷¢Wa¡Vú>ÖE¬€fw)\\‡ÀúÔQQ.óH¼º¦zØÀ«†\rÉVüòk•8vä>KP€3‰X{òÖ:žlc@W”E&TVþU¸\\O ¡Âë8°NOy¶!b‡¼´yïAvÇZW\r5’|”±a‚±U‰›‚ÍˆÊú3(|¯‡ßÉ“»kŽƒWÖªšøØß2×|Ï0óN¨ÒµxÇ£YO24pW;ˆ&Žc6ÇpDÂX]`à¬gˆ—ŒPÐã×ŒU]!íW`f¬ÛE/C2Ñ×r)‘Óù…l£„ô‘PC°ž‰¹Cj?WeÅ½§_õÖÝ²:É}ú—@Råé×W›Ð¸EXúWfC3®ÐæKu!Ô7J!l7Ë¾ã‹ÄbêþÈÔ¿£Whø?áCexl}Þ$ÊÓˆOJù›cÞ ®†_ÈWsyWh‡aÏµºµ¨:[\"5a‚¸cQQt	€EõWw«£¢•R%ÇGÃ`{¹ì¦\\]†3+ûG]l»-`W„y€Ó€Vª]@ŒaMËò°xezE®hÛsQ¾ågmgW†xï¤/4®¬êŸ÷/Ñ\'x/ÇÖ‘ù-©°Ø\Zzs¹ÕyWŸÈoý5ÒRjÏ?š˜U·˜£µZ×(ìOñ%“zW¦÷x…²·OãŠ`5ÇÜç$=áÞU>oú´‰„WÑ¾\rÀ%,½Z	A+”»uÿ‚8ÊÕ×ç2,gLÄ\Z_ÝWÙÚw~¸s¨Ró8Q,Ìq!´èû\\s†Ÿ÷kMåWõ9ï,ïÐP2eë!Xµ:™^uIµôVn›íNY«³´Wû„}ü¿¤‘ 8.t¢f·ØôòÐÄ˜í0\'‡é	±WûÅêÓÁO}¢l‚eVd±ç“Á`”Š¹1Ê0bñ¿W@XXâPÚ¯Ÿ HÆ_Ž÷0¾ãNc\nZâ¼þ`OÜàðX\Z’¢?yvÚ}ûÿ•ÿŠ‚hD¤.Éå¬›M¡v)X\Z›p/}âÿâÕºà \r_ÂÈ<\"ù½Ÿ\ZÒ!ý}Ë¥X(è¦”þ˜úù7¯‹™+NìbÙ&1¹Y[; £á‚X(ó¶fÿ»âë˜\0–¾ 3JÛËËmÝ<\n%làr½ÉX8°P©öÔ_9õþ®kQÅa[èç-mS\'<‘@Ì!V:XHíPïpEè%øÐ*ƒ+%‰…¼¾Œ¹tÔÐ×f`ÆXb²}”Ì¿L‘Š,ÙgCÓî‘îy~ý™eb\'ý\n41íXc\"Œ«hª.½Aõ‹bªq‚œëK¬Ó¹w‘_U@9XißÿéŽcðR²)RÝÇ Î.›#`jjÅ¸3?Xp*-[ÚDP<—V8±A#¯ñsAgS«»Ïn‹cÆ½XˆÈÈÅº=ÿ )e×Ž¾Œ“.ëx–’¤ipXžL]O}FùÈw	Vy\"§žç#aqÄ\"=ºËÇûrX¤ÅÃ–e™$ž<qŽÅ>”j…M÷ã˜5Ì¸z>6çX¶!¿wñ4öÔð-<[áÏEÈùÑAÝb¥¤´Çg×z­XºÈ“PñŒIäJµøpe8ç ,cm‡éÿË[›X¾ä%B{¤0Üy2³|íkõTUÃgmë¸ÆÌ#ùYXÒ}wÉ—ÜþR6©7ÛuM·T‚!÷¾ÜŸÊ· ð\r2ö©XåxE‰¾KÆª.ÖÇ,lX>w{oyìßi‹%UHqAcXìÁrƒŒ5…y™…•¥w]jªÎ³Ú¯zÐ¶ƒ\Zô±YV$‰óÄÿ/ï¥Ÿ@=²÷…Ãî»V-½Ødc°Y£Eü»4¥˜¥³eð†V·LÊF/”Uk,¡Æ~¢Y?cÀ*«_×aµ)‹À\0|Ùñ4S²tŠƒˆ}¹-âÊYAD¯ÿ§]Êˆ”€xYN.¡òâˆ7l}ežKYBŽéRbØ-tsxŸcÿo®@ÒÔ¾PüÈÉ«YCÏ©ÏŸ¡$ëpË¯=Ÿqj=hs\"æø(\ZNî)äòYtmük9ÞQÁç…‡0€`ýÄõN»šÚi¬’‹ïYð“%øFš„V­O«åÁ‘‡cþ´ª$ûmÿ3½\rY›l5½pY=·«è!í\\^ox™>œSÑÉ8äY¦-Y¢µ`x¦^.¹ÝH#Æ¹/‚2 öÿèÌ×Ý4üÄ“ÊcY¦@µe£?ÚW\\\'øl¤mç^‹9°¯ÄÞ®-›+ÔY´Ú=&¢¤ç—~.QÙLFýÒõ½øË›ŽÕŸYÁËìÅÏiHÆ\0¨ÒU3$LÀž³$•žuñ“HäsòYà7É¡Ü¼a/c$Û®Š7\rDr\\½š.˜ì¦öæFEÑÎYó1n¥8£ÆDo³Xäa0É«Á£Ôqèžp&E–Z£4r—ƒ½“BÖŽ“Ùzn—Õ¢>é \'údRíÎZª›G‹\n+:På|>s°Pc^™M\"qÇêÁ¤…ÇZ%¤·4ù\'“\nÔCôî`ÅÚZÃ³Ëå4Ðcj¶/lZ6žråU—B÷!³téR³ytJû—I0+dI\"î1ëZWjÕI\ZÂg*(¨TØ\n\\L´€br7tÉ€²\nÏEAæZWr…ó\\#¹Í•	þ!¹^ltœû”ËÝð|oÇCØ ÉlZ^¡ìx ª «ê„-–}©:É\\ƒár¶þÝòNZb)ÎVlJ½…fd¦¾„¡XòÒ#lW @ W Z‘ìS-ù`óØ~­çnVë•ž\"Ò\ZUM‡T;¿Âô?ZÓ¦8yéiëŒÃîkP\Z3ÎÊÂ‘è‘Šï]›è¿ZÐÖªÁmë–•—\"|O§íÈºJ×}^·ê@“Æ»åZÕ…‰ ú ëÝZ/.ë)üþàw¦Î}¥·é†¶ÖèZæé-rå»’ö^Ž*`t6‡‘’§/Â“[<Ïhéïù[\nx…SØSYPåž«BñÏ_XƒÞÇK8SÛþa#æê[\nÈ*k0æ5Dëa˜4Ì´‰Öü±á;Ð\0/_–7ãa[•&(Ü‡\0‘ÒÉÎ•l„jüø¬GÓúùñ·n[\Z$ÝkË¹þ±éŒd?‡\\{\Z¿ÄÝ³g/ã_,ip<[$ºr(Àë´Ú›€·îœ8¦tbMq\0>¦5ðF[5—µ4(KL9Æ&-k‰ÀGRK$ÃÅz,üb6Fpùâ[8sþiõ!ŽµÈ@¯ë®{ÍBŽu$fþ¼‘ò<[B¥ÿ©ÝÉû<»s™©*Ëù;ÑÕ¹CÆ]+áƒÆÌSŽs[Dþæð\npðhÙSîu¸o9†a`Ô\0B,\rûi[e2·<þwöt5¯HÒø®ämù|ö×Û¯x#FëÉ)=h[e¹‡¾6ÓS»äë\"„»“Ã±¦xakAyR[t;}Ìn[¹¶Z¦VL¬Ÿ[¦¾qTÃu!ÍïË-.üæ[uŽ#ºÒ\'þKF}ˆa~\ZY·	1áÛóžL.¨Ñpû[[8ŒæœìaýkI©€¸ìé%\'žn©€&Ôù éG³[€)ß‹ìT0èuDWP\",L”Ç«[­I,Þ²Z²F[–”%y¼KR¨Ñãb6Æ=F\\ºÃÆadÂûï¿á[˜ÉßÌU:ËƒVNû:‘OˆeàxûÎŠÔJ/Z[¼~œKÆXé€‚[\r\"\Z,À3zÂ.ï‡SÌ\"¦;r[£êÀ\n)Ð>l=ÑlºøVƒË;O—w——~ €º[©žó¾f\'TOT¦ÝÌeó¨¦f==ºãœ&Ói[Å6àäÒ;]‚ÉÙqd¦äÝJô\n}Ê‚¸É¥¤D[ÖàäyüV…´ |‹t\r\ZÐö/]X\\m$ý’®äÛ[ìÈŠD1V•yEˆM	š¯âeÌÈ\n~%Uà,¦+ž\\É­G½Í«…¢FøV6BZµå²ß@Ûª2XŠ4Mw\\Jt.¾NûáØ4\0ƒ8Ú\"†ØÌ¥A;(R[Š“l6\\^;×ªh±z{‡»ÅaT¯‹B†©™ó{í`Èµ\\sÌqƒ)“|Ñ½ÖIJ<Í§,xLI2[Kö£Þ0äPd\\x¶c,ûÄkŒWbžŸaÌŽß2©\n‘•[e]\rÊsJ\\|æß¯ìT(tÿ2ý±Âˆ…Dn\\£‘ýÆà3 \Z# \\ˆ#G7€›‘ø1¥°ð\0nXs°d÷ÆïÉÇÁõ¶\\”ô?¾§œ•BÚ:ì{Ó–73ÂšÅL·Î”Jðß\\•283=}f.ÙÎp{Ûç£¨Æ­:½¼Ómd\\ŸA‚RZnÆ9îìlr(Xùu”O™šæmCÉÙàœ„C\\«_{ð”ã[Á‘GÛDÙ%”†¨@Xºo[tOx1¥\\±”ÁHODÄ¨{Ïd}d2ësÃIƒô1eO:´yÑª€±\\ºWƒÉ¼‰SWè#6+2º}O}|FT±\\ÁIŠ\r\\Öµ$ƒÙm]Iù„EÿÊ#¶Å(\"€Ôsc­1„.\\âlCøþv!ÛÂ÷BŠ§wnsîÛ˜%y\Z·©Y(\\èó±úÚ˜=‚0ƒbÞòœ©²‘2Öšÿ½ ”`sTR<\\óðŠÿ3í“Sî„Rã\0»Nò´ØE‹u=ß˜oïí\\ô®y›T{†Ìâ³ñ›ßMÚåP“u|)?Û\0@\\ÝÑ1B\\ùžU6ÎÓ¡jÝ€]bzÜŽ6éx+}\'rìËéÒ™] ÂË|$ä,bEw³¬¯`&uI\"¹5…à`a]ÑF’Í5&ôŠÙ-]Ÿ´¿V4âÉdB@Fõç£])…S¨wäãÝÝMëUÕX…ú¢QÔ=‰X—|ú¸]<r£ºÖ½¯ÿ¼Î4Çj\n½¨çãhNR‹z/ž>ÀúÕ]A.÷É¤…ýô‚ízâ.ãÒjŽ¸/z»¶µÆþ©ù]H½¾BÚÒÜ	Ím3ÍÝüùÑh¢ªÜ¯0x!ek¢´-]JýÆÄøŒebU«§fÈ7bÄ^p3KOFÜâ¼¶–•ç]NqýCðN­¥öÚÙ“ÑÔ}~î<aõ¢«Áûð¥Û]`~$‰¯˜ã¨mg[ØKã5ÈNœdÃjsišRÍF]fÃÝCŠø¦-\\Oa+ë°Ž#i4þ²xš$jK]¤ÈÉ†è¸Èô‹mÿ{ùwÇ°#ßŸ^éÉ,nŒ¶´µ,>]®£ðFHrPç-s“òen|‹¸Xq\r¦mfÙ`áyù]²Qì€Ë„=PÝµuÐQìÁ{>Ï‘¸ó]ÄÚC˜¡Å€ù¹ÐPy£É(ÔòìcÔ:C#òŠ8ö·]öàâvYÓ\n‚uŽ)ŸÌSEEõ\\ô>A˜?]L”V]ûµšè•r¿¿6|©ÛW©äèŒ„€ùw\'ÎY]ýÐÀ¡øV0¸Ç5,ùMÎŒ9Ïn·rDUuç7]ÿ%hqO‰¿ÐšÝ¦úì tÞqÀ;+sV1B„åÕ]ÿÀØ•¨ÃYñ\'¾TƒùãÒ¹0­ “P¬=<ûû qš^ÔÁTàÈº^ï†‡Ä·>`}jÊNGÑ\\\'Ì…^Í>\"Š5éJ+f´¯iª7h&CöÏ­X»±2þ\Z¯K^7qü²ô°Ud>©V¹N³ õc§ÓhaÀ‘p9k<^>Õör=`œ¾”³·7«Ê\Zë–å·è)¥xÍå^AG“œÈ^ÝÀ7 Í¾«Í6`Ñü*þ$^¹v„Ïé”_^Jãåp!ùÉ<“ÁÊ›YÇ÷–©w²½\nþø)l^Nbu\ZxÀ\'!T¶èþ¡8Êo½Ì	y›Y|‘~•C\'^W;s]Ø-4§¯àV€Þ8´4¦Æ^ƒÍ¼ºå€,i•Ñ^g öK‹Ïc¡ZÝ0ì(Ú!ÿ¹~¾zWê\":Nž^mþÜm[Ø(˜²Cí«,m.^ü—v‚DÝÒG=ms¨vã^¦ßœƒÃÞÌÎœëºÈœ³5y\\³ÂásãÜü–%½˜^« úçªq (j— åª\0Iù–f}ÑþÅ\"l×ü\Zm^·:–U·›Ûr¯UìÐ¬ËD¿UA6Yf¿ô€Cb^¸•U§jx”·{–Ÿ+\"&?5¹Y‹pÑµÿD?¼ÎåT^ÀÜ€×\n¯0{zsŒ„>Nzéœ/Ù@ó6×R^ÌŸø¯LG›µZÜ¯Qñ8VŒW—…9ç\n¡Hb2^ÍHR7Ô-ŽIAœÄÃ¿L#ç~{¼Ú†•øÉUÄÚ~ÙÉ^ÝŒ)®n¶Táh):3\"WjEv9ˆ÷ÆNnZ-mÑµËK^äPºK:¹`X‚¾÷ÂYÖqpËËI»ûÑ~µ^éªíe2¾Œ2eDÂÂú\r®ˆÅú/Vøñ½q^<,×Ù^ú½Ãîø.ß:®%5)4N¨€’c¶j,Ö¨6|^ý×‹Ü„úyiT­™Wé¬ažŠóD#¶ÌFu–å†æ2_2öÞf\nw/Þ©¹} \r¼<ºàÞ8Zûµœ$„_ã¯M7°ÆÄ˜Tf&%Z”©€1€ŸàÎSÅ/ð-þv_|BØO\Zß­/Bã‘úlk|™S|dÇˆhe³ÝPà_,îçÎaLOÊ0lÓ”B\\ƒU²{üïE¹r§ó‡¹@4_-nÜ2zYfy…#†à¡–VP· MÈ\"~ý_^¦›_=>7bá™\n’¼6ˆhé¶¨Pj|õ\"ˆx»hÈy_>Ÿmž“j¥Tð±‰(ø‡\\høˆ3ý-äQHcEÔ_?¸,êþÀIàˆbe}éé8Æ\\Lì£asŒã·/_T_:r‚cÐöß˜ÒsÌNÌ/Ý]é\nð¬{ìz–J_duÜ÷A›#fE£*„.\nn9í§žT\ZèÁ9pYbXˆ_lbò®¥R¸,Ë\'«´ôI°hže‘œRƒâêD8}H_o½µ°YÙ±ÉÔRQ™¬_}ÇGJ1m„ö]à~ø_8ó»@ô«zdf0p`oÖqqÍ×U:¤Ç_˜È7Q¿»«0²W“éƒA‘-@\ZC½§T•M2‘G_žØ½™•37~…œq/j¤ž\nï„ï9»SÞ#s©_±«Õ”J´å¨\nüÙZ“Dü¾.ªs½A	1ªd Í²_·å6“4	šƒÔPí¬K_ß`¿ÖIË¨Ü1?ä§ÅL_¸ùû±%M€SK¦9À$yˆï«Ã¶îgŠ€„‘_Gÿ_É$@\"¡4](ãê¥XU¸jÄ³f«´Is¡òŒÒƒ_ÕYÕUsEÆ¹TÐ4qP˜îåŸM¾áDSÚF>ŸÊC6_Û×›?&mž½H[¹JðR“¨c#ý ¦Ùœ¬M6E‚à_î,@Ä\\Sµù7äl¼oÑêFÏPÛþTŽëßÞ¨G9_ö3Ì¥Èþ3ýê*m	¡h\Z¾nM·¯² ñÑüìñkXì`Œž>:‰ª6Ô©fï‘™±	øÂµê(õr£áP`1:	¥çuá£æ3¥4°v»Yðya%Ì¸®\"ìtæ`·>PÍˆË™À$I+=¡Æ›0úµt‘W26Sþ_¦<pH`>´ÁNgñ¾–K)ÒËã–Âžˆ¡p&0L@eë\Z¬`T¹°.õ|	ÛžÄ‰©[bTœÚçI¬ùŠŒœ©¥ˆ†÷‚``íõtD;ÓÐùµ?^+Ê“5mèÑPþ|ó&`{óYÆñ¤hÕuA²lT­ÈN¥-çoÂrgêÌìþ’`‚\nÁÿÆÍäùR ]­›sÂ?šI“di#®8Gp`ˆ¦ºhsþ€4DœUëž.f«ˆ$™»E¥aæ<p[Ò`’í§\Z»¢Ó>f”>à-\n})€ÙÞž‡®ÅgGKÖ!`ŸË!\r;^w°®³ÄjMRU\"&Ý»IžÊií<l^Hï`«=Ø÷ÝI xŠü\'àuÿàÐ|¤àÎ™K«ˆ!`±dIUgQ|X™!áfÀ¹~jŸm%‚ZöªÐÄp–`¶r±½{R©.1çB•iKk)Žß¦5M”²µ®Õ`ñüS,ÀÐ«…=êÊ3î R=àhR1Â\ZöMâ„$¾a\\C…›äÒ‚–LÏÉnôUË[þÜ ý{\'‡Ua\n‰U”Ø~®šžX‡s˜Ç\\\r>ßcf\"òó®a£2>îÕbçÀ[º/Wó‰–tz\rl´yÁoùU€da\'ŒÂÉŽ¯DÚu9MJµúÙ5u|Cõm¤FhS¤¢00•aC¸Õ$å¢qas©²6[`œšuŠËÖ“À@W]-Í§awÌAVÈ Ø>[÷‹GA•§I\Zì Öâêcr\\lèaœfê˜K¿¤†ZX~ºÁýÍº¡¾3ûbŠ]L¸<7a Ç+J#àÿ\r/_ÌìT±QP×ó‰OŒÙl‘é½Žl?a¿²E<2`\rµ_ˆñra€\n²ä·{!¯’{‘½™QØ¯aÁ²¾µ~Í§•žZBvû˜LjÚ*Ahó* ƒbÀaàè³Øó zCå±…ZÝ€œ ¼;ë4ˆr=“Î˜|­aîuùYò•]ò˜äiZÜ¤O”ç	ò®UÇh$»\'©aö®âÝDˆ¦Ž¬ÃmE–˜©RÁBtÔ\rÓ?fQb\rÀ“C?ùD†¿÷K}Òú¿—y¥/„å;|MñT$è?ñb-é“a?Œ<óé\Z-·®Ììr\r$úø¤Zî…|Y¾\nbGŒ03âŠ¼šÒ\rQºQÁQ@„vIƒF.3íMÜ²%UábJ’m-ý¬Ê§èýÕ5Ú53P#ÍA{¸ŽáÖ6ýù\r54bOÚQâwÃ¹ìLÑ Ã¢þ©¬–™›ƒ9QÀÔlrlbP9ÐêÃúÞ¤yP¯ÛågãÑ\"î¬Ä˜ü‹\"VÀbST2¥Î‘«CCDÓ\\`Ý®>­E‰ÿ?ÜJÑ3ª¨bZG~Þu½™&\rå¯1æ¥ƒ/Ž+/i·½øbgB—xŸËÍÉ–)#éB•„_ùu®ñõ©¨rÝß®+b¹ýWÌæ·(öŽ›: Œ|ã±×[ÚKñ0°bºKçõsÉm„FdåAÁëÛŒ‹­›R•$¦	ü³b»bµÙ²¥J®4k&rÿ¢hXÎ+Äv×ýOtß$ôìbÀ²0#Ï¦í–¤˜A*>¸pjqœL*LN*\Z4ÔbÏÌé;•±Ø½Þìw\"ŸƒS§8\\z‘æð£©}ÒN0bÛQ†\Z‘êB£×ZQXNT‹6ÉÏÞ{’¥hBÜq‰bé²‹ôˆ€®9©Ü!½ÅX±ø€:\r3_:ÆÉãmcbõ’çq²áqú[˜°¦çÓJsæØ¢_~Å4/ É`qÊb÷püÑdî^R\n§`	¿=dA«c4´eóçñs,c#Æˆ|Fúw¡J\0¯`w~Á^vEpÙûLÁ••Lcð¾KÍ˜÷GÙñ| á÷ù÷\0×wO>ÓW!’¾ c¿Ùú²Œ‰:¸ÎåUe¨ÓH CÁB\")SƒÎµ{èc&ÿç~L‰Rt j>Ú¯¼¤ÇöãñE@>êðÇ¢`ÂcIH1Å¨’¥?ª‚ÊÝ\"Šû= ãü\n·³w\"à{°¢ÒxcS¦g¡î±úy(ÎÅ0^£îðxŸað&[ò5 fcT‡2¡éª˜ìç\'¾Te+b 6;òc¾Îþyc`G¬‚Ãè¶òÙ¥çTÜüó­~z¢™FÉ+ÒUÈYÚ,c¥ï…udyÌOT.þÛ`è~üòú<jxÊù.\ZaÑ”W6c­´OÿŒº`H¸‡Ä;üÐ³ÃÄÒCeìß]Ï™²T¹c»9®×›ŒaIâøaX8\rr,Fü\"Ï¦×C2Sy‡cÑÅÐ^\"†ì¾“ÏUŸäÛa‹?ø»ªWSQgb»É¡Ò‡cÕHo¦›Ô“Ä±ðÀRUó~ošÂÏ³,ÚPÁ)RWF÷céª®jÞ¾¨‘?ûl\'ò84ïçF=/3;6ª)_qÛØcï.sH³á*Ù-Ø¨ö_ê:Õä€À%–;R\'‹KŽ„Ñc÷ä!Â#B§i*+\"ö\r¹nš÷çIÆˆ¼XÃ‰úÊwÙcûÃÊ—úÏ’ BZé†Ü7Ã²ß;_ÌZ–ev‹²d$G¼™ûjw}XX‰yu2íZ=ù²Io*Û6d/eÜ\\sýÃSø:ì§†Ñø„$fl©²mÂoéjd1ú3ù\'mœzìU=&Ùª$ÔÙ?tõØó×‰$ûh\"wd5[æ&*%ô×\ràÛG²Œê8	òpSÓ-ì©Ÿq`97dBÝ‘É\\ÙE©ÕÛgEÿ8\n–·ò¤ŒÆ±z\\\rxñ/§dPâ±±ºø¾©X.]âÌó9ÉFÚPžáö+‹„zdWŒ\'MJ¹eÉ~vxÎh{Ès_ª|qúa‘Ý´ºÆeÍ¬dcÞ3b½[·]	€¤~?;\\[ÑXk•™Ð—ºŠ`sdf/–ÈdBl›ÑâçÙ‡òPú›QØ=€Â#djq’ùe^Â1wK4IðntåfVC2÷¦çþ2@qòdr\\ïƒû=Þy‹ZÐÄ]›‹¯¶ù.×É±ÆúË d€|I¢m¡ÕÛtåPžòç€¨þº9‹Ø6ã£|dƒ¿	Y——ïƒ@@›“+¡ÏŒÒ“gèÊ>$/’âd‘ÌƒÎðæ‚qx?’\'?lí¹JÞkúSÐ#ßî­ßd¨”ð¾IX&Üšîs½!µ,ãËç,\ZVwYLìd­rSzn<NÌ{1JÝ,‹ˆ¦[o6«`ÜW»oîãdÒ0èÀ±(žî¸œ…Xð}v–ï·`ñÞ\"dä«ôWîiÛö^$À£ŸåÌŠ_òµfædòri¤\"—fvxœòÊ…Áe¶K­A?Ž²¨Sí2ÿdóNûWN½VSCÆ¨!­\\K;e!£…×Ù*T¥âdüœ·9¬¦œÓ0€2‡ÓËÿh,A*ÿ¦;3OŽA¿e4¤¤ÿcÒr}šcÙ¸eK¿WC÷s$äXgŸàˆ-e5ˆkyHµ~¢„¥­^}ýô\\ ˆf”‡#´¸6Õ×ôe:iKû p[“óÑ×Æ8ñqBåQñÄ›(3”–eTm´?˜Uy7,’Ké\r“ˆpSUÈÀ¯n¢8Í·@e`Ý†à.÷Îƒ:Ž”jEó\Z³Ò° åè‚5ß\Z¨)en±R.	OFæœOXï™Púíh“¡ÜYC>¿Wêe›YöÌ»LýÇþ¶s{T¾ªí=BêrvIFUK×:eÌEB	ª¥¦Lz®t›¾=ãFœ,ìfa§‡ZÄà{­’Ô²eÖßJ*ÙÌbV†,Cv¬b¢Êƒû™Pµ~…ú‹$eØ“î»¼„Ôr¯JQ×(¶O@_Öy\'§+Û*&w²Ð\".eåþóçNí÷×±Å?$ 5e°Š%¹éŸÍç »i3ÿœe÷÷Ób|(G½Æòªï\ZìªrKÃÍ<ºœ›7ñÉÇ˜f=EÄÜ¨Yñð\nò2ƒÕfìVšLˆ$/DE±Ý×fl/ÈioÖÃVÛL5ärp¸HÍ…Ñœ5!Ùfpü0UÇ~¿‘½Æ‘Úïœ]ãf›O#•iUÌ|dpf1\'¤ó)UŽÉº‹OÊ+×pñâæ‚ú‹P\rëkšÎ¶èf?ä‡sÓŠÂ1˜˜‰@cd`¹åûè‹²Ó÷6üÄfS¾~¯\'h‚,û’P.E1Jþ>3&œú`Bù(ú¬Lfb\"=üÂg½.›ïê>ð{aÛ‡aN‡¸l;)êO&a,Wfh ÅP1ÂŽ8‘jIUúØ?7zÎ“Æjþuº­+j(>foïr\n&Ù£Ü/	–E.“FÞMæü¤â§Ç_†h‰°fµ9ºªâÈÈ†y‡7”æè,W2ƒ)ú©[ìÅ*Êoféú“¸Õ ]ì”õø|i‹\Z’\0ïçÖ¶Š^²Û‡´gäÓ¦\rúW:íPžyåÈ}p!î;•\r‚žc	%¸,g-ïÐ„Æè#h;>–Þ	Œ|¡„£3ÍzB×ËVøþçûg6¤BÂNpüúý£&áÇþ\Zg¬q:æs¸dÑÚÕüÞg;74Ù£·eZÆÉ=`7yÈþœ®´!üuTé9V\Z…gV¶|ÓºgaWoÄE½žÿ\"÷{QùTÊêS{>giI?F]	®{¨°Õ[¿Î•ù$¹^#Š”ÍžÕd	g…AôkÐèD·«	€dB§(9òÑÝæÂÔ½âÉ&·g‰aóaq®$‚œ+q«0k+&”´î€;\Z\nl$–hgŽ%b]Zjùd)²¹-³ŸpœFÏþú–jŸ 9g›ÔÅ >º›À0®n)³á´X2´)‚—Ê0?8óòyígŸ¤ÎêÆ>”º Ù—€×Y‰— lÁ\rï—\n	Pm¶Ag =‡{wu2©œáªx„’šµjä5ëˆ?þ¡›üÏg²;aÚÂ¿]†X±rÆ~·îö\n“tÑÂ¹ nø¿29Ž“gÆ.Å$óo8qµ§;Z7tz?À‹ÝÎÇ°æ»¬Ú¢ê+gÎªî#ÛØK„’Q]ˆ¸÷•\ní44w“ñK£ƒägÒÑHê7ÝI€ÊŠ—|¯HiÑÅ³lCÞ²ä¨»gÛgñdv|U=ŽD²FBæ;³~ìjZ¬fîœgàÓ•W–…šíÑ¦ðÆ\n[Tù\nuA[z­âƒGzah\rÉÊ’Û©#j¶EÀ;Õ«åèíû}Qe-‚6Ä€ôCh\"“n¿§9ü(aà›h‡Þ¿ÇçŠ[ŠGQúˆ<\"‚h\'€+•:êèu°gƒcYcÜÙgÞÜ=ÂÒhh0zN¢™åW:Õä\\jëæX½%õ…@Ìf‰;ÄhBkD]{•8‹ÃÇhªºá~-2q ®ï¼ÁàaZ›zhI¯·© x<‡®þ¨ƒ%•Ûji°ÕÂ¦˜$h\\´¢¦|qA\"÷®_;^þ¯g‹à•cwÌÎä›\r{Ph‰…íãÁ•¬÷Z}›‡Û‡ßb¢„ú¾äÎ”ärÓ>×h–ø†€‚Í¼›˜ðÙÐÆ¾ek¿ Y€÷Ý\Zfð²mhºh<gÔÌs).ª×–¡ª¾ŠWËð0¯xZHCDÇh¼]3æÀ…l%Yæ+¿‰!¨‹†F«o^Œ=•ähÕ¼oÌ8u\Zð:É8úNäî7 IM!ì\Z·lÔjô#7hùp­S€=T_k. æ>òUÕCÖmÞiV½ïhû–1Ÿçp¶îFº)y­dÊ±¨vNyN/¹¨>Éu‚iÔrõ«Ù	§!8¥»´©@žDîa¾E„Î{i+;Nªà3ÈÇÌ–± E†âÝ¶—Aä¹´¿Ê½£+i:ˆ¡™;ÆŽ0™$Pvû‹œúÎF\nSpô2×Ö¹i[-Rÿ[½¬4œàœÌ ¸/IwF§ÑE	UãUx«Êi`W’‰VdšüÌägz\0• *Âœ˜¨Ná·Œ^àâeipZ&ÏÐû`UnÌ$Pé9½xA	‹Ó‰Ä½üÕ\0±iyHˆEùÑµ3EŒ\"“÷:ÞLï\rXŠÛ€,$|uÄWpi~÷·ô­†::lœÓwÅË‰Î¤Õ«â8QðiÛ(½wAi}eP³.P|S§[wˆÊë ÈW¥&w€4ƒŽxi’æìMÆW@žUû}ßP—O¼õÒO„Jjƒr4çßM_E{i“Ô0“yN›¸G\\8á9ƒ\'¶¯1+8*Hdi£ê¼iYS’Ê\'’ëŒµ`Rë^˜„¸yœg4i±n\"}„VŽ»u©3)!Æ«èÈúZÏ¼~Õ\\C^&Î$i²Ê±L.1©jÉužÀ‹ÇìéÑ0šuýå/Â&ñS0i¸ý¨áðvÍ*+¸ü&Ê&@kM&Q„ÊÏÍ’iÒ›o¾âÃõH÷ÓŽ¾J1ü¥½Ž¢À„ßpµ@tiãt.%´-Åx;\n—>rý#,œìKñ+È·iäcõíÃ\'Í”Òž»>™Ï:‚”2n²Q š§n‡^Siøh0=ú£Ú]8Y«E\n*õÓ½ž¶ºÀnsÑÜˆjh\nÑ˜ ä(€á&ƒ„£E¤¸¨eªI\\Üs`|j¼ÝÎS“×Ì=£sÊòï¼•Ì¼*÷¯aâ	Šñjòbé±íš„Ìð^U¨sv8ÑÂ$b´„Má3y’j!þi‡¯H4ÒÁ]ýeLÂ8žð\r«ÑS™l±Ècbj0¦‘4à1@E»ä©X»<Ù\0µÒ+&ŸYj$6g¶Cj6vtˆ5år#gAWFÙžÚÅÏ#ñúYë¶Å …¯~j<öð©	Ñ©*$Ü°*s£r‡M`¬ôeÒ‹!ƒþj=åë8Pã™NØä˜T\r˜†]L®®éÆÙTÝC\0\nòjC,æU”Ma£ã¦\\kdDßÎwî„i°Û­²jGË\'æC1´Kðhû‰b¼õ*|¬øü¦YF¹¸jI\n£&U@š—”ýÂæ4o=±Ÿ¹ñw|x“Ó¡¨ý^ÏjPV¢Ÿü]Õg„Žü2LûRSlwµBqÑK¶¢’je+=ËµhOêd\n:t÷˜©(Ùþ³„ŽÒt¤Æ%¼1¿j|TT˜ *™·ðÝ/#[¶ý;ÔU[©B?,žÜ¢`5j‚Ÿ8ÚªN9Ýq‘¢¾’†› Ø9\r¼D@ñfTUj‚Ììá4ûCu\"ØB(ò³7Ùã\rX ÄF4ŸušNcÒÃˆj†áÕP©.ƒcHqóI<Î;wœhB‹Nb8\\8côéjŒq¯ˆ[@èÓTaÜ`¸vÕ+õsûÑ…ÔßáŒfßî‹j›­	Ö¶ÎÐ÷-òŠó%Z²L9I~xmHŒÕƒ×jo‚9\nÕ ›Î’yê‰[²Ž1	é—ôIÉÅª€¯jŸ\Z¢p‡£ûISñÅbÊŸÇS}Â_ÆVšÂ•Ã¤†j£œ&Z“y\nær[¦„!ÌÄ‘Ö‘IöÂî}	ÛI+§j¨~Ë´nBA¿Ã-¢ÒÔ˜FüOÚZ*ÐÔÕ3yA»^j¾¯`î²+Aå+þ÷9½5·¥¥¥Š SJ:9ÃrjÖ¯cÁ’Q1\0Fo› fyHŸDö0@)á„CÒêjà–]I\Z–âKxzÕª^«ˆê©!bu™ñ°jûö‘A´\0ì.ÆSøhNê}×•FŠ|YÌE\Z>ÑÅN¦ÈjýSwôK–a^Ã&œŸÒ4	®ú‘ÜîtB»Û¬ik¾i8½5{ñ¨?}©Õù’\"!¼‹AW,@zàˆUk¹lqÇUsþn¶…3\\}%2¶?rzÅB‡Ì²ú¡ÜÓk2©{zå…×Ð$µ\0+3´›éQÓ‰XÞË¼£ PþüïkH%|¤QeÔH¢z\rY‡o•6Fp“¤i0[²½ç¯€kN¨IPóõ”Èõ-\Z7}H ‚ŽDCú;®Î®>£EˆÄkO—­øQÅúÎ|6[”ç°®+ãUÂ›§MT/“2©kUMà,¹k–EH+‘±yëÏJvöyöPKÓ¨óËÀ­ƒe*k]°^‰‚=®Þu\Zí¶;¾dªê2·ŽúÅkøXÍóµçD\'wâ£÷â…MõÿCÞ\náŽº\'k¬‘ñæ¾wÏ6XN\rŸ»—£ç0ÚcçÒÙïÕ–òk¶3/BþžÜó	ßª\Z”pó\"ÖJ¥gžh³•»kÓä É·dZ¶qNÐ›¯\Zç,²F\\åÈ\ZíD+ïÓkÛUËÛœ[9Ø€jóLËÀ2u¦Á9ì?u»ñ‡£kÜ]úë70TÎÞ­q§½•#¯CÂÃÖ ™Ò²0äj‘kâ¬Zu”ÐÒð¿‘Í,†¹=\'žÈôö®Ð¡Ç—:Ì¨kïŒ›P–;åòÁ‘’N3pìãê\Zxq‰ÏRWö¯Æl„šåÖ»qS)ö?¦ôç¬ëË\\ZÔ­„”Œ!†?lÚ¦­”Ýøñ=•Q¨>|ZØÎüÉŠ»ôô>F5YƒÑl!‹ƒª}[z£móª§¥çÚü£W†Ö#	±Úê\ZlLU[«d¿g.\r•ÄÍ5Âîp\rQ±‘€<ø[«vr0l_](7e†/ªèÑ6ü¿déÚÎÝpëÁšk#»lšßH¿€âìñÝ‡\r]0×$õ{øå	%O!ÑØÚl¢»!®Ýö‰¶Oõ¶¯ïeuyMém1«Ë/³ól­­K$Çs0FP|PêÇ\\ÛV¥SÍ&6B«=·úÑ²ŽRlÆi4ì¿¦¡rnµž±Âîu³)K€jð¦5€æƒW	lãîˆ-¥ùCüÜj–·Ø’¢gÉ\\°rÄ¾Ï¸CIËClùaŽ{!hÉPw{æ%&ÞÖÊY0ÆŠÒ’ƒ±|tm\0‚\r>œÈ‘ÕOv<ÈÚk¡a£eéCñƒÈÔù@mòÛÏO›]^Ë-,¥qsr°¤6µVø%F²Ú»è£ãmeÑ‡_îúTG\"^çjU@üÙs=FÑ†ú5|¦›m\rXCÐ9SÉguhö¦~¶ÞRkYmeèâý¯mN ŒÂÐÕ\nTmÔßéG#Ð˜·ã}‹ZšYÕ€\"m9¶­(Ô¼ü“±y[³EA½”óš§IÁ\"Be]ñm;Aý\rdÔ+ìõ¹é„j¨7áËÕýqNýÓy	Àv\"P÷m`§Ã6ë½©©Ï³¼ú®%ôÚHj®äl“Ì¬?™–.ml´’›ò|à,Cº+èIbI$Ó¨é¬\ZH„Î£^\"lQAëmlã§ÔŸÄB:»ú‡,¼%c5iN÷›€9¯Àmnm>ÞŽÙQQ0Þ504|$8÷Ò]W¶p_ÙÆLtsm|i)m`mðI}IdKj+ƒ9›VöõÍ€jÁ|,òÄ¥m~<]ŒxLñò´1±‹äA8•z˜\0†-)@Ê…øm‚£bO-æ7Â°™O¿a$üLÁw?þJEQU8m–oyfrGÝÞÚT^5Þ”ó\\kpðÐ0ˆ[*!×èm˜v<íô.K®“	1\\¸ö§ WPµÏLùˆŒŽ`Ämš×©Ùs]S7LAZ&<ìì„–³vß‚ÈífP¿F¤mm£G Õê ËÂ‹=·ŠÅâò~Í5OURD\\Wq–áeâm¦ØŠ—„}—ÀùŸ¶àBP\'|{M2ñ÷gê×‘YØm¾­M ÈÚ½ñÝ©=F§VÛ7­RîÍ¶}9½dg=mÚÓ¥\'“éº™RÒ€ÒŒú*zú#:³×ö,û`$âcmãú`ek}Ã¢ôˆyF¾[­ÿöuÎ\n€e›˜²²³Å^mçÿ¥<F¼hävú%EÏ‘1Ò^A›Ô»\r¡”mö“%å™Ê„\\ûˆË[<˜-N¥Ž–2ûà´ER0mý¯¸ƒÉÀè»jšÑö8tÉ—ÓíKü\r±¶»?×G*¤znDs&UñC”Ôƒùn},­íií\0võ•_¿l\r³än4cyp¶¿}´í´%4ø¹m‹b&+uvBÂ‰¨n5ÚÐjÂ†Ax3fL•{ÐÃÁ“÷éiÆŽ9¡nB „%EÂ¶>é9d[[}·3ä¹+…hl_›nLÿzí<æßkÞÉ…7€k-—\ZAåAD×¤Ñ`(2nZŠ\rc÷ %èmGÔòâV–@mâ@vTàûIJæKn\\ ù¸§ä/JßÚ-+ÔÑ\rÎX*JŸ¥„iúHndkè.ëCz]É9fi0ÚñÞjÏ\'Y¦G¯úg>npgœgðûzó gº5Ìs.n5¢†µLŒWÂ4œ³±nqÊ0Ç#†O‚}À\"Š´EŠN„t²ž!ª®©CénuàúÐ¹ÖoìLÏ³¢óSoïcoUFaë÷[‰×±Þe\0\\nð£TÄ‰IÂè˜êïv’ÜêyOiÇ’4‰ªMx£Ÿn€èÅè-­ÇQ1H.x(jÕ«8ï¯ÇXßÊD Ánˆ!¸5]òÐXö¬ë­›ó¾èSã;Úu<}3U8Þ\' n”-‡yu_´¾\":~I•8õÏ*2«ùY‹rƒüã5än¨ì;àNæ9€@I-Åz®Ì¹‘¤>á™ØôGqÅü° –n¶0í¼oF!ÄV_1\'Ÿ¥”x¨Ähs<z=n¼¯ƒj¸wÛcÃ=ØÑ˜þZ®7×Vƒ=urýËhnÓG0’%E(G&ÜWX†Ÿ1tüF!°£ÐÝäÐnç´U¨ÛÄú¨Â¢ÕHüÈß¥ã×ZOçÒçhô?\rnü¤iÉL&MÙ˜x=²ØN“ãf[¿y=ñ/´So+UâYûÝµß›r0~x†¹Os¤,2Ìwo‚°”šhæõQd¢MÂ\0…Ž;HÕ†úpïÔ7ðCo\0ˆE”ÏÅ¤üCwÊÊh#9\\é“½¯¯|öËõÝoýEÂ²tQQbo\n®þºïrî¡QqÚá\"/±‚Ž…o2á‘q÷\"ë,Hf”!O›þ×¦œæwZ=P¢Lo5rášÊð à+£®öÒ}¾ô£Šo–38€øJÌo7\\¢j¢ÂUB/í÷O©¿îéî…4ûD`0ñØ`/Eo:G$ .¬\Z%è©Ð‘ËF›’Fªh‚SÁ§u”<¬oKSñÛc3çÖ÷¿úY¯Wö$ÛÇyæ6Vl21@˜á9Á>ovQ\"û˜„Œ“c4¡…’ìyI½ARÝéªKSUo‘QòÖt\'„ØFæOS’Ú˜Û‹¹Uâ.Rúo³›}\nd‰ÆÖ‘«%?„ÃþM€ì›ªõ¤ÿÊ;”·oË×…¿CHË÷œ€laèºÕ˜úqÞn‹F}ÒúuoßðüÉ‘E+¿w¾õÐÑd™c‹#Ï{ACî\Zg·oë£Ö‘çRà`#Â:ÙÖ¥6dÇˆ›8ïú‚ÐðÈ\ZoîóxõÔ6úÛ}DPÿ\rM˜bèÂ1aõ¦»Ú|iáN™oñü˜\r1d._¶¹f/ç7qÔAŒE¼•¸’p W|±b†O…<fÕcÊë#_V´È|ç\\;ùZ½óp\n}\0ª]tt!ù…x° L\'m¾µ,iÎñÇfÐK#$sppmµ+Ú>ã\\#J2=”)ôÁ\ZØÕXÓÓ®=P	~rp“%h¬›ä¤Ô7¨=×APºÍÁÃc(@Æ¼›p%{ŽerBÝëÚ	¼Â…Ðd>HÞK5œÍû¬-c1>}p(%Ýx5IYéKüƒfM¤Q	÷Ú­£L_:Ì÷Gp+Â4éÓN¤d–ÜJºu\0’5H{Õ7`S_FvÙèÚp7RVŠÄŠ:Û^Lî©~ôòŠÒ»:äˆØTW—ŽWp<D¤Ê9‘ÙŒÇ	 Dp›ëH2†¡•LReGþM«p>2¶éÃûx«ö”tnè˜tqÇšïºßÆÞ©àbpLdvïX3\">ÎbÇ„„Yó‚_[M€Ïµ\'pó0ð„ŽpTc ŒOj-åÎ¢	suj®”4û¯IýTï×#°Á‚pkºæxèƒÑ¥LÒ—©í”)òDîÌA‚z‹Y€n±Vî8Öp‡~žçˆÃäŒ$\ZûtBÝ@g™Zz^L¦éÍ¥pšˆyüÁ²ÊÿJz\\ŠEµòŒHÕ ëT`\n“ˆ—Ç\\7p¡£í½Ò%‚Ñ˜È®WÔzìîÌ€+QSrë=«·:À5p©Y˜Ñ¹!eóu0vûß?.jú¹Æ[‚ˆ,Ä¨†!•pÁÈm£Ó˜´DäÖåÞ.už“IdnÀ·‚¹ú1wpÊ=DY\'cq‹Œà·Å­gawð OÁa<¤;Ö9ÿ–pÙuæ-iŽì,Úð€’pŸñWÃç¿c}hÊøpŒpèñëâ2ÜWÒ|Ô[MQßÍÒõ‘Ww‘v$|­CpýÞó+ü¸ˆLÒúÏë¼à,þWyü4mâŸ|Cü¨qÇ,–\0É:ã>|¡«˜ÎAC˜zßÂ½Ìlqg›bÐà€aÇÐñüÐïÜÿö,ÐOãð©–%åV“q(˜—FlÌè‹—njp¡Er-R~ÂOà¿¾SN+Kq*ˆO×DžšlªW2aëÞ\\ð,Dû%1<Âè–Ü­ï¥qq.\Z‰kó‘Ø€E…á¸Û#æÉôàq‚ŠÙ£\"š§q=ë1®‘#ÿ;°¡¹+”²Ù\\^ƒ‘‰”p°$ÆùºqYŠ3i\'ÓÚG›±ã¢C–?o(÷™˜€\0\"+I}lq[8×òdõƒ¸èwŒû‰ßs˜›#­bþj:75ÊqcO2väh¡½ö1(þO2øg	_Xª­ÄZêUqi´´j³jÖe*Z…µœHG[Ä?=–?jìzÔ„FaFqzLòkÃ\">àÙEÆ°zºx»áQçe6ú´ç¹éqzþ+£k×‰Fzø3“Ó7-¸R6>‹³é‘ÃÔ#n&q}¤bN‡Š°OÂnœžYV8èYõ¥R3SH‰C\rjq‘¼Ï‘ùþ\0dÔ@Ð›íˆ0l»,çëÿ‘¢Ö¦ètDq™CP Î!Ü3‹Óü×ëÐ°_ d‹	Ç¸uu–…iŠGq» YŒÆ±ñe$ï£irhNF¶I¥lóŠ´,ùoiqÁíÊ£uG(ëŠaVè…7fÌézà£îñžL¸mÄ³qÃº·Ù«&½õÕUzHk‹o‡–VßÈ!+lVŒOª–ŸqÅäïàÎ—vCFñ‡Â0¼w‡×/Qc‡˜}/[Æ qèþ$ÍÑ1WÖ‘û·=–J=<¨À‘Êùí-\\#ÆÁ¯r\ZWèå	Ü¿d,ÖˆÿðL_@¼àJ£JA¨pb\\·©r±<ÌK§ŠêeûŽí2K¿­{EÃ…˜ºóôƒOòr,	RúB—¹“fæ0ÿz^ðŠ*H§a*âˆ:r4(^0ò¿ÍÿFÄ1°´È¶s¥tÑ\nr´4¹Îó¶rHÜawVm²Ç7Ëc­:öÜËaá4åÛÔ{+•ã=[rKX?¢kz^C…Ìˆ9X\Ze×ýF»YŽ38‡_ýrVÛj•-­jnÎÃ[MÍñw\n=pÉ²²d€4¶æcÚÏr_!Ûá¥LPpÇf<vsåß$â\'âú”â¤ôèorl[MÃ‡\'’‹…Á³H«$•ÅÝ¹§>ÅQŸ_ä¹rŒàÀ	ŠL\r¸-°\n}^×\n)÷*ã´ã€†Ð®\0í¼¼r®åbðSä¢ˆšÃ%VŽÈŸV[9šn½®!ž„Ïr¸„ÕÃYÇòè\0˜jå‰ùo;ËÙq>wÐ,Üuž™rÌûÂùoZ•æž`°ïa%Ò,ü@°¶ûH\"J7¯xrÓm„\"•]=aàn$áà±7-j\"ÅÝ\"Ð4)NMrrÙNP_;æ bˆ»0ÛfÈL\"9u¡éS‡ÅåÇ,ræ§;´íÍ/n#í~Ø†®›—üªæp…$`Íš¼W}>rõQ[¡ãûŠOð½ßßGOÐ€\'Ô˜L‘—®±Ë‡îrõ]À`²8b«ý@¼é#T€ãŽFè\'w?Ý’6rø´ß‚ÎCZöÜÄèóîðZ{ÁÊL†¼!¶(Ûî’€Å;säµ#a\\±”’ïûž8Qƒù0²súlÊ}ß¯]Ñ6s\Zrµ:³<[×Rd™}:ÅYd±y²(‹Ñ©P€\"°äPs\'ý†j{õFCäºh™¨Ì\'GåìM˜g0À®fžs( Ç8¡(›äƒ\ZÎ>e6¡Aˆ¨RŸQ!3´¾>Ï†Ïös+ˆ\rU\02äå³#×\Z~¼zÝÝ€hèsî˜Ì«s.CU¨±Û õ½MË^³ðoSÌF8à6Eï¤ò»ûsNÐlD\Z5Ì‚Â2¿G†êW©ÏR½¥«»”FÄÕ–sP¶‡Ô3ã4«	5©²>Û²#Ãv×ñÙGÔp”sPûÔ4ŒÍ®4¥­¼qoÍ\"öF\\	^:QÙ·šÑs‡ý#XÛ–+pFXT%?œ?¥¬crS¡yNÎº&Iþ\\’–s ˆ”_£d´Ye‰kžP¶(¬HPÝ6P´Oûs¨DV‹iæšß¾ý[žbÓ*ûa—VaŽý	½ ¬ëøs²¿U”Œ$$ñÞæìVËògþÏÑÈb\"lx°mÊâsâ¬8N\Zç0å‚ë-ºÍÎ1ö¸ÉÂ¶Mä=ü‰1±ú¢©sü2—il)1äy¼þÝj¤uõHuMÔt5(Iñ:ÑE[t\r{Ökƒ?iÎkä•C\nLãðƒ‘bïÌ‡ÝWyt¯*Ì½vdWã;1!lH²ÇÐì9ƒþ\'<«	CÃft›lT›^´âû7Çå‡?1Ü	[à‹]¨øƒ¨#TÍ#t:srã¶9øÕë¼caË>ýS|0õàø+/\\3•j@tB»ËyüûÆiC8Í¿ªžL4›D£QþÌî\0½oz¦tG=9’\0»“a·Ê®œéb>\Z€O™zò˜cŒÏõ1Å}tIqóÚ|\ZG¡wPÕ8±^6Âõe…NÙc“f	Ít‰rX#\'…ùXlmRq{ô¿8·Û8FùÜñ€Œ‹t™GV&^`Æ.^2‰°IXÃÔ&$ÖGë9‰, MBêtÀ­Š2zèv´fû#´ ÛÆ:M´Ýâ³‘{%tÅÉØ>\Z/AãæØõùöG*¶Ä6Œe.©‡QitÐ•ºsÇ)W­j³Dr¼™Dðiº¥<¤Ÿ6ÉN§ÃùFtÖá¸¹ÚÁ–]Þ¸º®á«H€ù™ZMm¡ØÜõ‹Úmu\r}[’µ-·È™×BÐúU`BEÜrZ‚nˆÈZð?*šu«…œÈf®KìÏóM· ]¶å=_mA98¿\0©u Nr8Äãö³\r1íæ\'„p{ñqbs/þ“¾†¥u#gTdý.C—ü¬­ØùæYg Ð‹±UWžæa{õu)Ör×Bæ.Îp÷óc“=ÃÑt\'Ù×s)¹‘Ó\0€ï<Iu-Ñ£‘¼ŽAH‡´Z·64Š?²ðÑ§:á â¢}u6,]å³gÂ8M÷ÄU†dÍ]8µ7ÌNXÊ¢©‰}Mnu?|ŽPÙ4¦™TVìm+óìsÏü¨ù”q‡dm~)u@?î›Ô’$pû*½%ÇËãºër(b=ÏAéê—iòÔuƒ€¥Ã=Û¦µ´„íRnJ+^íãZâš\'=ÀÝíU\'Œu‰Ÿ‚¹@ÒüÝjñh´0/å \'0O¯MuŒDÎœÊÃ§‰1ùÌ1{ƒ‚i›\Z¤-ûj»¿ø˜Ð’uš´ ]‘‰$)í ÅÈßwØàî¶5h1#}¾×8t¼\Zu›;rõŠjùÿJ%©ÊÆ0$½«ŸU•CÌ:õ\ZY!uœè˜#eo^3÷“|xˆ¡„ê½˜ÄïžËPœªu	„üx¥ÓÁÐ{	_Eà•Ûd(^äš6uûõ™HßâU?/:êº¨äAw\0­¦x2Úš÷pÆ>Bv\0WbmA¡[¶ë8i¡EâäR¿S0E¬`7dà~›v\0Çá¹k‘ÉETvÒ3dx“eÊ™…–\0z?`•¼œv7cš\0|¼q[jëQ‰[&LûÆ—¿PÌNú¢lvË9ù\ZR\r…2ôó@¢ä]3‹˜z#\nòï¿q\r3¾vÐ\'æ2ÐY./T¡}™t b³HŠ<6ÚPy-ÜvÈÏxggïgy)Î¦ÿÒ¸s!ï@XQ¢Rc1ŠFv%Ê_Ä\0Ðb$m‘&`ëó–Å(û=™m<Ðb\Zo0pv.”Î¡W¨Ô»lq¿HÑÓo‹¬r\'«Jm7Ïbåóv26†}Ûžèâ‡\Zâ\no‹¯g$ä$¥@[¡C—\\Vv3)<ª‰>÷‘ró¶y(L¼1üyUé»\n©vâfãav4Zß}k¯ ÈjÅø>XÒÔËš¹WR/%jð†5t Äv6œ\\ãÍyvT\\MÁŒò	FQKG€u0ùíÿÜv?Hmˆ®rÐq¿\0þLš‘¤Ü>=e\nS¨óŒòR‹v@nÂL†Öî¢!rëìoóî\nå»îòµÚ·¹¦ÄºvY¢<•\räÂð4eš6ño™Ž§R¤ù;Õ¯C;×vŸïŽô!ž³ºþ¥zÉß¨ÆA1Ä ÃüÔ`©[Šñ³-v¦ÓC‡	aÎ\'FÞ;€øò±zÚ»”(eJí±Lv°;aÿ\'\"Ís Ü{„Ct±(~å+ò~muÞÂÊ@v¶|ËPu<>›n4päR.þãõsI<ÃÜü›¯Àúv»Û2áÏ‚¦¾Zû»ª7»“ºQóù÷¿½XwF€u}vÞ{_5Öô[átËZ;a+Ì¤X•\nx\\€õò&vëÃÿa-iQY½ÐhJt«	ðÏHiƒô”ç–2&ƒi~vòë1RÊCÖ…m²Ú×žRÈeV98¤¬ÌxýÞ§vù¡=}í†­”:vt!)™T‚&”Óÿ”òàšÆôú4w× `g0O›õù±…!’·£+ÙU\Z4ÍÿjV½9woHpõ®¬åùÝÃŽ’ \"M^­Y\"ÎÿƒùSÞïˆÕ“§w¸A!Õ(vé.Bc?ð[àËD\Z;v…ßE”U¥¨w&C}5QÙ’×¢ÿuÉ<Ø4Uw Õ+hñÖÝÞLËOŒw0?±pºn~(§3e4«þþB¦!QwÆ»Lb®¸w<[ËSö%l†n,ó-SÀ~ê¼]MD¹pÂÇŒÃˆµ¨ðw=c^©:Â^N¾[°Ž äX“%Ê%NÏ,ôw@ò c|ßh«(ÅêHzÑX[Ÿ_Æ:€xº0ƒ)KwDiÿgÅk\Z#¼ïVçJ PN]¼»	Y\\8ˆdÊœwHoôÕŒ7ëÿ9lí\n!˜{î´ŠO[OÿZøjwM.ëç…#SÖ{Ð.¡›íœœ½¡D£G8óq(µFÏÀ¦wP±˜:B²!›‹nƒ¨$dÎ2e¸ã|6Ó¹Ñ®:0²ÊwSÄt+°\Zï¬®HH±ÇÜ·z H„–oËõ\'3{”¢öw]<½	^ÙJúdOh„¬þYþHª×žñ£t.ä¬(@,wfÆÆ¿toÛæÓ‚XXGö‘ì\nFÄœcIsÞ*ß¤£wl™E\'~ÜN‘\r4dAËŽ¯@¸7j;í.¡šW[ðg½‚w„»àG´’TÄˆãÑ‡_¤|\'K¿\r,½ã#scw…qï•X¦9ß\0¨¢ª§ýV\\äÀ•½éÓ%ÇÓtwŽ~B¥Í£aÂÕ¨1ÑÔ¡u?n·‘ \ZÞùöÆÊodw·c4y¡ªÍOù.ÌüÈ~H—½{æ_Ê—†VÐ“¿wÉ>Sa¾ÎÝð	Â?½œÌœ™Õszœ°§¾‰ðiÃ¾wÏÆ\nŒˆí~;H4ÔÇœã/tÔê«ÿ²_vîŽi%]ÓwÖ^q¹ˆ92:èâ§×_kÞæÃ_]¤z`Šž=*1wß¹x¬€o\0øÙ(üü¿+%õ5ëBœ¶BSrl?!GwäŸº ÐàQ¶×~Êu¨Q’ÔÖ4¬1„\nx:óŸwå/bÝ±\n]Â\nANŠAº\0¹ÛÎvLÌƒ¡GwçºÃ¼}\ZÑO·gïÇ f#ÜE¹1g=gÍRz‹–Fx#oC:[ÒL6lˆr€z|w´Ç3â:«B‚=½¥™x\ZÛ“E…ž¡\\kª!\n\\D‰º6°RˆÍÜ~—xwØ^˜ÓtFx{·ç™Ö¦óê7ç`­-Üã¼È†Žíx3z	lÇrgRMqÀè;çÃ¢¼h»À¤0ü:Ó¶x3‘Mé1«Ÿýw:Ìª‘xÐðM(òyð/2ð®Ë,x5¨Ÿr#Ð‡XtÆ%JFCD‡£±û\rÎœØ\0ŸÉÑxKPƒÓéØù%ÝL“aÚ¡ÚëUÌxÿÆ\n¼GŽUÄTäxP1v“£ÜÕË›o©Ô0{ÏWÃO†I- z²ïwCEâxh@j†±AšÎ­‚®Î°ÜhÕYò*~itÍ\nŒwé±\0%x‘Qn¹g¿ìgW.6£Yšäõ·z#ÖIÄ²«x§Õ$‡ä•P&Õ}ô‘`\\QyGpr¥Ì*}9Y‚xÅ·(í²µïG*&ýÈIAvœÑ„_¡R!‡?ˆxÈˆ\'eöîÅŽª4m#ÅÛ8âÕu¨ÆV‘hþ•û©xÍoÛ?‘!lN;8gÜ_€¹[j×œ3&Î‚q°3È¦QxÝTÀßÈ±Ñn¯^ÇÀJn\rC@ùëÔ Gú«\\xèö•»ÂS†½ï‡Âùn]±ÞBƒóræ½/óÝu<\rxëR#Vàà5è*¡Î]â	òŠ$é,>Tù€xTqHxô—…âYãÛ\Z†>kªŽEº¯­M—R6.‰™ä\r[¼îxöl,Bê³%æ\\°‡O!šó¾®S<æ³yð¼¿ÐRÅÀúxùÔ´W%\'7&\\az<’ AK×oÐ% |7ë¯ýKy Ý£¸x#\röëôjÙÛ¤£âEäTæCœIfà›nZy-ó8Å¼‹<Ûá¦@<]Je<¿w^Û„à½CY¢0æB­y8‹Vüx^„î·¡ˆîkúåj“¶ONlì\"3`‡y9èÖt­û½º$ßJˆf³¥ÆŸ»×çÅúÑ\n[d‡wîyK6³¨hà„®+>Aî”ÁW[­ñ¡úÜ×,ï1/ÏÁy^&	†ä\r&HÚ3÷»›Ô\\ F¸£[5²\0ê¶/ycÆ++S&êa¤1gÛÕ­óˆ[yá—ƒÄ©¥Ÿ·nyd-fÑr\\áœ•>X­1¯Ê -Q¨ÿNÒyr:\'Ý?eÑO–¼ŠF¨Z»©«ÞÆô¤è¯®\0ž3¥y—8e„—ûöÔÞÝÖæ(Š´™—¢@ß$ÿòáÞk(\Zõy—ãˆ”‹4Ét¬F´Kò ö¤ï¤v9ßgö>M@€ÒÇyž¬„‰Ç§•8=Úuï˜<³&(3‹eŒ¬_Ü`\0„¶y«Uñb‰\'d04Àêt‰‹o¹/\Z+ˆñ]!Îóèd‹:y®\r!²’\r´s|Ü°k¿FÍËÿ»a2Ú¼@Åî\Zy¼Wÿ@•ãÞçÃïõ]ûaíÁù¶õXÇ%©T†yÉÜu¼~ìû61ò«ZÉ\\ÿ/[çl‡ýÙü(yÞÊL$L	rj™küàKƒô÷‡ìôÚjVx\0IÑsßzFÍ+Š1¦@‹Æ,¦ã›Œë0ŠCÎJ£Oà!Ôz‹Žñbö¯ªÛèø­¯Ö¬Û³yg¾FbçeEÝ=º¼èzLj³˜äR3Z\n†\ZÈÏÓæÐ“(ánfÒ\rô÷¸z$p~ñ»=PÛp\'’»áÿey¹èK!v^kzP¿*$	ÿõe²(WI!–[(„ôŽÜš>< º‰òzUm{‰Ú¿Y>pŽÀÖ¥x³w\nTÏmwë\Zõ~äìIŠz‚÷eˆe `ä~Žöw€úýã‹ò¼G$us4oÅ8z’Çó$²E†ðgÒã¶gŠ9šK93)Uó˜¹:ÔSz¢_ÒJ¯?Qõ)º”áÐÏÐð¾aL^ã;V½ðúæzªr…ÏOU]¤LÝWq$¿»NÐôAw¤ ½ÎÝN—zÉ\"Àö|‚5Ü—§î:lW8]òPübNþC~zé-6‚ŸŽ©i	F<>£Á’LO<kÔ¨1\n˜r\\Äzí™kùÏ¤c¾Qò=’ÔoJ)ç¡Ö\0.¥e©»2 Ò,zôHm¬aøµä~BÊ;@«ûlõ‰\'eÍðÛ¼sDÅ‘;{¾3ø™löŽpª^÷3ÄÚkºà;ÐØ\nìkÀúè{÷ 2žwø\rOHÜS‚uÜŸn¡±ÓŸÜ¢²»›¥‘{u)˜£x!âD@Ÿ|ˆHÇFÑ9ÝBu2Í\r<Õ[?{5úyÈ†dj2&«î =IàâU,qC”<ÂmËóU˜œ{@šà¤¨ð$g+ö•E’‹Àäôèg[r3òüŽÖ{EØA\n­š­¾ìþÿÆëêÃÎÃ	Ê«6“Q`U{MÏ3±#ãô_B?nÎýg²ìÑ<Ûvw-i{\n‘í©{iŠ;|-#qYædð_;¦üQHª\\©µù‘ª§B%ºÕ{saˆÀ¼VmHº»•¢û	Ù±+ôr§<Ä¸T;ä[‹{™“\rÅ›¢9°Å11ªT_P,[DÒçý:ó¿Æùwž{¢n]Ö\0Öˆ˜Ýn»\rÏµôÉ<§wË·X)ƒàÚ:{³„,‚tã4S)hùdŽŒ÷Â;›}KáƒÑ1á{Àg/èÏ\\ÌEÇ°\ZèI|\'á„›D·iûê…!H{ÄO”Wì=!ÌÐW\\\0vRý¿ª&ÿÙ~GÊ½ÍÐ#{Ð©NïäÀ±7¢!QZÃ\0EÝ1ØÍ¦ÑûÔÚ¤!gÔ{öªÀ»õxªPž¨Â *+ª]L‰â’|p¯¹^=n|‚…˜mÞÉ{öcDà1Ò×\"D]]=ØÉô-c\\ƒ|]Ðo”›(jF\'þÀ*À¶´áÙ¡Æ—îEF$K#|åh‚ÐPìœiÅô>è‹ì@ñJæ6³ÐlQŽMãž‚|#•¾˜¡vœ”€¯h`JO™Ax®ÿ\'¼^Æ|(\\‰¼QÐ&j™‹\"†ˆ’·n	ô\nuÕÛÜÁÑ |4rc¦ÈËDV*Àµÿ¾¸{’3Fø|E¯d™Ë\rºqÐÈ®#ü9¶žÏð\n®Jìêtï|F¸Y÷c~\'¿B Ž_ïõ-dlè¼0h|QìhÅ[s†ob\"ý¶þA ºf/Ö$÷å|ýœ|U6çs\ZJZýÅ\rà~5ßÜÆª\Z|ºßæ$Øù¡Ýš|Y\ré¨:l_žÆ™=§¹Ý¤.M\nðÇ×º‘*¼|bà)MGA\0ÌÊ3Y\0Žï«öÏQª§ÿ°½yLœ=|m!“5Ã¢zdlöÚ¯4uOln{+ÆPÈ;©\r|qÜ7r’œ®ßŸ÷{Ç,À\'‡ÌŒÎ\n¾À_ÛÅ|u¼ú¡kpÙîf1Ú¯ìâeO,õ5]vR0Å=I½`¾|{î¹¨F½Ãë\Z)cŽ	5!q8ïc\\kpðåKó>|‚&ë•þ1´`À	••Bò	ßNt-s¡ó e[|†-²ß‘§:o™‡Ó¶liøÁ<§¬aõ+‡œ“%„ùP|•™\Z$Ò\"«_wæB°&iØòt\Z|ª³†|›@&o•|ÇX4Pûu@¦C¬oÕÙ9›RŒËd³|£zp-€v¼ˆÊdüÝÕ.Š,[\ZÈÂ|Qëb•F|±ÒuˆßÌôÄ_íNacýÿ˜µ:-·Ÿ•;|»üpÑ¨²º¹7{Í+¥ÃôFí;Óé}ÊU¤|Êƒ[ÃÂ„^BcxÍ‚ÅÊ^ˆ @<=ð·£FòDÏ|Ë†ðÓ°P—À<Õµ>ºÔDdA.ÒG}ÉÊ}­_|Ï…z’á,Ðj=g§È·ô	ŽŸÙðê²úTF!w¨d|ÓN!x¨äV$”W8qIA©öC]1!Ó’	­±}^ä¼\Z¥%EòÝ·2=¦›cûìÌƒP÷FÙ«ÅÖ}ßÊ_‚ã˜þçÜØ¦b¿qÛŒ(h=æFïÄ¼}CYÒ…³8Ö#j<¯ÁÙëQ\0Æ˜:Ü/¸DÊ}DË	4?¬¼Žþs¼·.M¹ç*‹£î{TªÈ‡¸Fd\r‡}c‹ú±[–/ÒNHÊjüûnò‘‚Ã¾ëL•\ZXm}eExÀêíI‹Å<°»gB\Zù9÷skfÿ·þ(hº}yŽì#Å©¢Mßss˜‘ø®áðD£°j\"Ù}{þ€q}•”P•d,Ø_PšÒ9¤1·+Bw•†ÆFŸ™~M§ù}Êž¯Õ4!ÏìÊ¨Yô6Y%ûdX‚SÙ»¬\0Gµ‘}ÛÂ-6×\'°f¦nT Y@©¡y_{|nŽ<ÇèÈ	}åm™-Ö+‘Ñvi 1¾ûŸs„\nŒª›U¢÷¥‘8u}è)H@ÇßŸVbR\"\"Í¥Ø0×¹ãöoüµk’¨¸}úŒÞ	W€¸úb‰2ácf©HBŽ£y‡ïuù©P~eý2èƒÒçý4x¹`›ßéâQ¦x<C­4ÆÜ_¦~\n-5ÂRT½¥ú¥ø×w4Ìê„}3“}w3&Ïy7~ÃCp†¾V_<r‡Z¢þJ†ý‡GÔ¹?Î¿œ\\~\"=ŽêBåê»À«Žêc¦ °\Zì‘\r®z™Œn3^ý~5:ŸÜ™ŽµäFšìÿ“LWÞÿ¹s@ë†˜ÓN§é7‚~>,äO0FçÜÿ2vÆF\r}ª÷Éž“êÀkTZ;›ªÓ¢~DZS¦TÌµöp-7êEev_ñQyšm˜K\\¶Œ”)p‹~G¢6œ86ê*“Ùç£ü\" â§Œžf\Z¦=^×\r¬‘~PjgkÎ–	üöf:§‹\"ÙvEî¹Áy0ÑsÕß¤£d~QoEÙ3RoJ¨9>æX£•èçÎµÇ\"Ø‡Ü1ƒ~vÝ~Ðz´S5„ÞÈ¢«Œi½yˆ®ŒXñpÖðdH~x«\"&/íÐâÛV¤ò¢!¸ c»aÝ6Ê¶ftÉ^‡Ø~r §‡ˆ‘Ÿd †KHqŸá•#ê%´Y¿Zê—‰~£±^4‘Ç*º*®Õ:±r´ÉCísÌþ%uKhdç~¹ÜE»UaáŽqRh}Ÿóìä?£B@Ù:¬‘ä°§†~ÆGl*h$*V«{M¹&UlÄI¾\Z\\Þz’¨™~Ô;ÂYì¤›±N³PŒÇ¢±lôÅ&©4çœ%\0~àÉ)+:ñí ™1Å¬Øˆ\"la@M¹¢ŒSÓ½kÐÃá~á·Õ„¦:ˆ×Ù«ÒÚ\r…rq03aÍ½¶íÿä!{â-ð~á¸v—œÔ<¹gz_¦çßÝ‘á	RC	~ž5B[1E¸É_õ®ï\'ƒìÀ¥&xmóò øfí•R2Ih+Nq$,!%‰>o•5ô&qœÚëZ—q-Sœoˆ4¦PÒÇ9ëu›,›ˆ£ù*á3‰æR®“ W®IÀD[1hÑ’Õ3ì˜X?ÓÁ?$ÆgÆ`ÄÞÀä¶`£ L\r9;`\\tMQþ¬Dj7iÀ®D–ÂfbaêÞ9SžÁ%â,#ìÌ”¾¤Ïñëc£~ðrƒÈÀÇrÈw´CpMñÅ\0©w™º‡dÄJª•]@øÆÈÝÜ¶¤eu©¶_³¯öŸ(ŸÜ¨ujçÿø«››³éÐÇp½PÏóœŒå5\\†–ðÖŒþ(×DÊÖrüˆñ‡‡ÅÒ3ñf!UHžŽåQà^3þì\n“µACª“’«Äásÿ¤u–<œf•8sÒó®l‹pÝZþ®(Fc1÷\'•æ¿‰Çã“jò$cFƒePna¼³Þ¦†@ô#‰€\0$6i2ÔnìÉt™òö_‘oÃßÃvÍß‰pjâ›ÞOYv€qQß,|äa6¸Êíè-=SÖ¾I‘ªpdÖí€%_#µûÎåŸêïkCÓ ! …!òns`»)^a€IY\0¹¿öÂ1sX‘	vaC¬¿H†âÞÞ¯9Î€LîikýÐ8>:Gõs ­à^êu`ïJÅ=TÙN¡`äÂ€Q5cU±¢ÐFa=åOÈòœÅŒèÜ°ÁTõ®\\h€X…8ÝÓçºGR\0§z_BÃ?<(ôÐŒeo·€uÉ:Û@Goë5 í¼—{`ñåºdQðz]À‡<€{#¹G®Œçææ	;€c¦¦ÂÆ\\73!Ò}Ö\0´20€‡ÍŒšã¯B“¤i¿\\5,¦k?øL‰ÇŠ*_È„çú€‰àbÇu%dNà¬âv3Û tp>?X?æl:\"€˜€LáT˜²Ò˜$xDsš^ùh_!kC»\"1\'ü™_Ô€œxÍ9®à‚lPîyf¸Iu”‡™&¹pË3œ¡2‡¾Æ€¸ñOkÑh£WSŽbÜÞ^S\r )ï[Çe÷D<Ý€¿îg/{>Ì\\Iš„6×R÷à§5.vþß‹º° €Êf6ˆ¯‘¾*Ÿ#6“á—ÚÔ:ÄcKx:1#Ù¨ä³€Ý†=$ñ¼Oè/KfÔºÅå–„>·8~3>×‘ÃÞ€ù©Æ\rY3¾¡5é)×ôæØ>FS¾‡Ë=ˆ(ª€ûk)¹Yt×•ä©‹Å¼8¹]c’>%Ú9\r’ËÏ¤Ýç€þ–fz»››Uç¢âÏ<éMhª&E•NŠ+Ñ€Û÷‹ôÐ“Hü O>ß06}ÿ#¬ù<Q“¡ýðnºúàwßÐöÄköVYÔ‡/ @ƒœ‚¦Ñëò|Û€²ž\'&ZË¥~oÆ—ZÚ–‡ñ\'ïú6g‚ºi0B±<a 0Ä²[«™ÿ\0=ÉÆòUðª0½ Ó-TK#¥ i¶>×l¶.¢Z0øKªá]Œ<Š’l>æ&Þ‡Cy\Z|W°¢®	Y|z>6ˆÛ}½¿\\ Õyñ‘«\\–FeÔS#lt^5:~ˆ/®b]¦©Š{ô©Êý.\\+úBá À ¨B„°ZåÇ3¨#f4.xÍi:ˆpY´AdàŒBÍKÒŸ\r!U3JÝnmƒ$]cmÐ<rž,#œÚ\0ƒ!8*JÜ1ÜŒC“¤bwñÔ×y—‰‰pÃ¸º\0EIntUæ]×°h‹yRï^£ó2Ìv *§èPL<î‹ÿßÅ§éSÒ™™w8Ø«Ü‡Si.=$#	Åb»/ð:ÝLV“¸çäœ{l©´_§í3t ï¯Ány @ã8\Z½fU¼Œé[º%ªµ M‰Æâíœ;\ZLÒ á¹j·\n_‚š0ÇßäYà<¦™Tý®iì¼Ö´	ðJ¾]ìÚ8´NøØ»Ô½,Å¬ÁÑbf¨†æ`)A.?qŽí¾_L1¶ž£ÓtÔçÿ4mTýëñ“d‹6„Wo›kµë,Ó®?aËGü£æËŠ¹BÇ7J?°­Únñ)ép)¤=jk\"/%>‚Ë;û¹×ÚÛ’g%@tÞlˆsÅÝÀîËjêj…rÆ‚r6yZ¹±û.÷\\þëÎžú\0¯õÀ?©`ðb{C‚»TD.fˆ0‡l©°‹¿¢<ÅxˆˆïCqZ`h‚\"$—v¢¶R‹âø9ãyæ©ÛÉìo4óh:	\n¡*‚fÆŠ2•×gnî…2Ià {C“[HrA\Zb‚‚ýÑÛ–÷Ü†lWÏGŸñ·UaòÔú¶ßGþòèb{\n‚ˆiáòkTðvQ4Õ‡¬úÈéE\r0E…)l‚Œ`êŸ&@ò©šºº`ü\'a1Š‰kÌ–VS+\nWy‚öîÔM‰öå9>üþ±Uð:¾\n’´ÆÕ¢\06‚‘¾×\r»Q\\¡lz?9y¥˜˜N¹q©ñJf0Ûî£‚—[ÜÃÔ;P\0º½¥X-\'*›˜õ\0Ie#Þü¨‚µÒCÑïø¥Á/ÐMÁ´þ„Óè;ÛK\nAt/†c‚åC\n˜]Ç\\ëJÃÞê½ìÞà=¯°\\\rRqñ¥L ‚è…ªpç/ˆÙÄ¤üDQ.¹žG¶ÒÈ—{õ<)¤ìMÁP‚éÑ|ëÄúyEÔ^8²Û}“îßØšn÷Š¶t²&O˜‚ôø8(dœó56GJ\'CÛ:R,;ˆZ,œ\ZFÇB>‚ôÉ,\\¤	XwêÍl4ÿ¥>‘Ío¬…à\ZÈ[_‚þ6‹.$Kyo_3Dë&QB²¥¥éÛ2ÞÏ\0Tý\\\'_ƒ©MEÃw^¡TŸw[X«j4—™¢s··®ëGÚƒ5±h˜)èp\"K¼4cí!\ZÄÉ­á¸>Æ÷Å$îƒ<\\Ø&eûï¬\nPÏÂ\\¥*ûFy´?¡š|áI‘hƒFIXÌF¯‹Hå¿E\Z*9Ý¶×£/B¡‹‰€Fú	Â>&ÑƒJÚ5›4ÇÉÇØA6•“#\"b2SévJ¼á@Ëä’ò{ƒU­1ØÚ¸>)T}Â…°4¦ù:¶Øî4ûSmÅþåƒVˆí½YWØÊ>\0\0qM[Ol\"o èˆ²3S¥±\r(7ƒ_ è»Y£o¦$šbµô°Ü¤ì™rÞ9‡«2é4ÕÑ?yæƒkþF×Kû¶ßë·Oî	Œt\nPkº î2úSÐÓ-ûðƒ€i‚¿>~Åf±½KJú…ƒ` õéôÚ3èÔuxñ”Eƒ…æ¢–^Õ—ÈcË|§üÜÙž4ä|c8¬\\Ãž9YƒÛ³%ˆL`N/~sÜ†4ž}?\\Qî†°CãþîÛ`®ƒéÕ¯—&m&=ÐC}ÖÎc¢”S<%ø•`øý	ƒ ¨L$àk…¶ßãˆ¼°¬çìO!F÷øh[õÅšÚŸƒ ¦&ýÆI¯›EibÜ±ºlª“@!´ÛÜC¦ƒ©×\'0:¢IéWU„sA«@;éÿJ/8ÔqÚªígÃƒ¶›lDAÄ×‘A“=òþ<ðž¬ñh9)¼Al¾…ÏtƒÂ©±‚|yg8T:5,uÚ„F…œjðX4Ž\rW<0Y°ƒÞ{V9‹\\.ÌIp?¥H[™sBÍHöxGq¤ZØ8/Zƒß%¹Fw<Êè+-;åQn¹gpŠŽ®þÕŒplñVöNƒæµ»w«IK¥`ä9q8VZgø`<Eîîô¢\Z£ ƒèç«f–›VV.|ÄvXÓþ•N´°8D×‰ÇDáŠG„\\ßØÙÖIÛPØG1hFYŒ‰Ô:w	ßbd2Á3Ì‰„g•B@¸]B ÌyòÊq +6Æ€=¦’’_€›ñ7„kÔÃyÂ~»ÓmèÈåÁGú|F©Á¢¦:†9Ÿ4„uZ7>fà Ø«D„†—ÞiÔÇUgpþÙ©väª„Ò{ë\0÷¿/¦´9\'™™œx~¶ÅÑ°fú7ìë®Q„–ËŠÏo„ ,«|ê$ùAßŒÍü`¤ØÉsÕÝ„¦W_øwÃ\rz]Þ·vÁXÖ„#»b£ÛxNÎí„¦£Öq‰FLþÓg~~ì4øUÚŸ+û\r¦ù  °•„¬™?Î¾zÜ2lãŒÊñ=ó€!öß¤$¡x¡”}„ºÜÜ…öºe(86 6g½PE¦¶tµÃŒ	ús«Yk„¿÷ýœþMcÇÇ³o1+Yœðlç’»©V#¼º„õ„ÏqÏ«ïp_§j§›fÓ?8omc5Ö’ü\\PM%½ÅÓÕª„ß	T0Jñ\0ç™ôÍ(=ìDÅ*ÁÛ˜ååÓµ>ú‰„ö\0âµZÌë(×¯¤Î‚ö| îÆ\0‚·#…•Š…àø‡×ý§~^y2òcótè‰Hü&¿DO\rù´ZÏŠ…Å¸ÚlÕsƒ@0jd2S*\rç¬Kƒ§™²³Œˆ¥‰…ŒT(¦³g’.´Ùƒ§óýt¬}	ŒzCSø0Êj¹…)wÖd‰ÏâéVßåœ¥¶¦1ËÓJ{ôôhV æ‚ð\'…JÓb´-i.9ÖEAù~Ÿ+|%\0ö…ÂìùŠ@Êm…V‘wäç%©%È: 3CQ#+gÖô›	•–e¹}×…Îì@%s5FÅ’j¬fpvñÁÄG°¸ñVýÛü…ŒMvxÂêÐ!!ªˆàîì90MÖ—‚¥yµ‹-t3o…ŒXD±Èwå‘XÁâ² ¼ ï‡xTüéñA]W…¦¾eZ\0—p›ô¡õ7¸ãßg KëzðXF¢êD¢Èk…©5pB÷Ž€#íŽƒä:N¿þÓp[·ÏÈFd›*n…Á¦7Ãdë·1\Zh6x:i6“žLf ¤`O÷z…Õ~¿Ó\\Œ‰Aj!ž^E¥h©†Ü×ú{´RP¢…á‡hOì‹ð	ögÖpª3°²X|)F}h¾9P¤á*…ú‰K_	Ë÷ý&Z2J”i;és±Àb¸š…~~:¢†~UwÏiÛ«uE™fµIrqæÒæp“EæW?œ†ëÊ#ƒÜˆ³*Ò\\ «ý©f«}·ÕªÌ±mÛ½œ†24ójºi´Ý(S3ð„¤\r25y\0²2ySÐ¡ŽfU²†N”É¼JA1\0sPÔ+?§>°~y\ZYmÂøžpà5†\\žŒsöI[ç(.ËÙEÄ5ÊMh%IÂ…ÒL*ß4y@†^xƒ>ÿÔëp$Ö!¿péŠ[ör\rf^ãnœ×E†dºf¾ŒÖ3]¡bv<%pIHÞ:Êþó™W=Â®Î†i±\0©ÂûFs«\ZN–ÀþÌÜaFRÈ«‰?|Z=«çp†ƒµþ¹U)®\Z±¯Ëÿ¼É!ø›Œ:¾y®4†„ñDY\0ý6È)°Ãâ|šÕ)õ0¸x†;Q[5æãS†ÉÊèÈ·¦dTKˆ:o‹ë¥VÓL‹§•E‚ì”2Ÿ†Üë¤yé¡Eùþ6Á_À‚%Xc_Øñ+˜|V7òT†ì=ðÕ¸NÉ69Øõ\núpÿ«¦=x/NîÓ³Fs†ï/È—Ü\ZCªþŽeÜ»´Œ½iL$µ@¿V¯_%ÁÅ†õDXÆ+Cì]ŽD¯$W+“fÈ›yi><†\\Ÿ4ƒ·†÷]\nêcÈÇåÎÜö\rŽíºÆæù6ç¡Kä¶-¥}ÑBÁ†þÇörÈ(\rnðç¤b|8íÖäöŠÒš¢b²‡ú^+Æò­‘MrVŠ5ÑÈ-\rñ¤×\r öJÜ<‡$ÚjŸ¡§Ab×¹¾W\"0AEßÿšÉà=câÝ¶•G¶‡/twv„7©ìKã›´ÓoGÇ§„vçÓæt™ä¯aAX‡Iìö©léE†Kà°Ñ¦ø¦?Z£0JT¬Úò‡âáU™‡X“”ö²	¶Þx6R\n‡”aXü‚Ö«5ÇFÝæ\'ñúÔ‡m¦4Î@ßxœ5ÔgÇ@ÅOƒÃs¬t7—z½¿”‹Qæw‡€Š™¯·\0ýå,ƒ7‡ x/Ë@69	­ÐŠÜE¸*#Š‡‡†óÝ/p?iëQ¿ýkÒgÆ±y™ÛÅ {ßÛ#‡\\o%E9ÁñPÊËŽs„¾]¤ÙhÍ‚R;b¦E:\0‡µÖ7Û&[ˆ/=sšøcÒ´ÅÀìLúøHòDòl±‡»üCãb–ÌâºÇ«o·oÌMI]2|P^<qD+£‡Àœ_«÷úŸdþ+¸²%nþÐG#HÐ´%Ü˜r„ŸÏÜ‡ÊJ<¥\nÓ”—w2´§öÃÂñç¬{SU%ö’	N3y‡Êu;°VDë™ÎÁcmWHì¶îÑÉÒ\'KúgRü\n‡êÖœÎåƒð#ø](®Q\'nÞ¢¸y—z¶Ma¿Í|¢®‡ðÏ×ÿZ„83P#êèWÑ(P)ö‹Óç\n¤ÙôÕœ‡ðã£7|š‡#ü«|˜¤‚igû˜Šª™Åå´‘‡ùØ>³=ƒthº@~1²J³ÑÀµ#x9QªbvL\nê‡ú\'¬×bþ•rL¼\r8øÖ’ØÒ\\„êÃì’8˜¯c…Iˆ÷Îòû]uZÏÍ¨[\'iÎ#¡¯3]¼b¾Z\nx„©ˆ…~(0Ò; ZÅ³‡…4öÇ81‚O ikù™ÿž’ˆ(réô.PÆŒØ¤öÆxºîn±®GAhÍYÞIå£ˆ0ãvü¸ž6³°¬-ù€ô£Wk)(yó–jRvˆ5Ó“UþÄ“*\Z™°˜\"ÂLvÑ::	ÿÆÈ”jÊF»¯ˆ@V:™2GÛˆÍ~OÉÜ_iS\nJ£ìI>)õD3j\nˆEòšI5xpÒ*I£\r!£	Pif«Vqî‹×lFäDˆVS³><ïûÉ§X[\"v-V€¸ö!º¥vŠ[è8ˆeEÀ:BÉäÇ‰ñŒê”8!Þ>E™ÂšaCÜtïˆe©Q‰s›Ç,Mz™ÖX{ð®\\[º(HfCP”A´»vˆy5åªéÿÒF·Âàµ­Y^´ªÒìã4}ù!?ˆƒýøøè‚Ú\n—\0÷­È<–Â8h,O\Z_°©SâAáˆ›~nD¸m ÎnC!Öºù4åK…™ã¸)Ý…Œ3€_Êˆ´àö_¬1å[“”ÍÀFŽ*›J‹Œ¾@-©$¥ÞˆÃT˜‡€$ïTD£MR¬ë…¹£~ÈF-¡š5®é™‚{ˆØª\0†÷Wx&¯_‡	3g_`ÆBÆw½iÁ[úß\'ˆÛ\nTèT\0¼Œ\"½«-Þžv	¿žô±‰kþ°ˆè¶Y›d4 ‰wº£ñª°‹½ý;/u‹)Ù¢X´àÀ\rˆìû¤/_oË¡[’¤‰BÛÇÓó\nKKxm¶|¾çT*Hˆõ9K@k‘„df«ÇÿdQ0?ÐW*ªæ­˜fa9ˆøÙž¤Ú‡š·]îS³Î…HDWIôîFã~¦ç„°‰<X1g9]=-ãÒŒé‹ýý>èÅ¡0Á8(ô¥š‰\r4hþHÅ”ÕÓHøblƒœþ¨X¶T»\n«\0y\"‰aRTf‘þÅB-.ÄRc/“nµÔMœÀ—,=g‰$§(}óBâÝ®D–9i¤¤@¡”‚×]dEÁÍ^‰CAm”Ë7ùtb¡vùá[5êÔS{GåR™i®6‰K7ø¡3!˜Úþsºtˆi‹q)Õ¸JÎ\\(\'UÆ‰LÍ¤¦~¦†™[÷óÙ´‰;R6ž¿‚yØ0v ¹)¸d½‰RÇÂ/¯\nfJ„Ãh”vi5ürr¹–\\z\"6¥q%	!‰k˜—ýQ*ú;MŠžèÁ£°uO*¼§á-\\jµ‰mkeŽw[pÔ¥1ãÌ%œ õ¸7c©p!L—7wg‰~ë]\' Î=,7þ9‡v…•Ü/ü_—¾œ!ß€P‰°wS5˜ íb#fJîW¾neoRÞ¬´«ôA¤ïW_fE‰Â}š÷*B+¼ä®vÏ˜D-á@Atw‘›r³¤ôF‹N‰ÒR_éþ\\e+›Å!¿ hoæ¬Ê%9Ó­Ï¬‰ÙƒÌ	’–§KW¤e2ÔP¯î¾‚–[ç, Gì‰Þ7oˆ\\;›ÝïÆ’CÁ(Û”ªH\\Ý˜9™Èfõÿ/‰å‰V©ú•Ó|Ù³çøiöˆ¥¨3<Pin\Z¾E«O‰ï¥Vo”Cu	Œ†ìš17,så·u¥Í‰v,±¿²ü‰õKóyJc¹eòÅFÂGÉÕîÕü2Ÿu™«]\"\\¤‰ù#3î\nVÜdH-SLö86Ý¶ÒÀ;¡›6ß	‰þæyOÂÏêÏ=ÃPÏåoŽ½ßÐ£?¾”§ŠÛbu—êùùÈ×”®”­®\0ÿ‘G¨\\%´AÌÇèòïŠ\"õóû¸^õÐcÎ¯ãûk™ÛÜŽoÎTŠ+%§Å$çÃ[Š[ß/tH/ŒÄ(ÝŽ2‡Š–°ËeqÇ3ÛžHë-X‡Št? ÿL›ÑA±ý$G¢í?Cž¤¿Œqêœ†GGÚTŠ|æPÂ:6«¦hL6^‰E„zPu ²–KÃ;lù)Š™„‰ª¸cÿë<S\"²ÍUÎBIï“—D\nm?‰5øfƒŠ¯ð¥‹¤\"M¶£,áO=Ÿî:“ Gà>êŠ´þ‘¿m‚`!ºl{_,D”‘L–Î+Õ2€iþ4Ç„ÊŠÅ…´ôë.z;£ý& ¨»Þqé±ç¢Ã»ˆ¯9ŠÍýÔ€ÙjÖƒ7\nT¬ÔtiCÜbÐ‰ÎOKñÌŠã¯¦0NV‰¶É€kÅØbˆX9¡ý´¥åQ\\ª\\ŠìmˆÝ,z¦oôºFÄSI‚aÁ)~óaÔFí=Àö2åçŠû\nð)©¾œÐòá}$îþ¦ì‰Á$÷•¹NÜ)‚”aãûŠþd*\'äI<Þ}‚ª)Ø»Pª*l¥—Âw‰ˆKB‹}ÞœõúÁÃs2C`»ÁŸÝh`Wâ>¬®‹!•í\"8zH›0Ñi¡ žÄV(‰+Àûk§a–Pµ‹)ºø²2\0äÕ’Î\0‹¾ý¬á·UøÒä(ríbwÇ‹9k\"m{ïRØ7èa%,qºJM0è˜Ïwé)å^¨¢‹ZªÙ9Ð@-ŒõBãxiã´UßèM?Âq!À 0µ‹_Î +£\"g%ç”–O0û®[!·<I9ãÃ\"¯žN‡E‹hÜ•AOk> f5ÊÆ9%,ÿ<±×îš9;]9Ë²™‹i©í0ÕøÌIcÓ;ÆåÆŠëß@ŸpÐ¥P\r{I\0‰‹‘ÿ(<C„£¿y…µ¡Ï¦]1Ô£§Ë¿D¥Grcò\nË‹ÏÊpC3Q3®Æ#9\\\n#IÕhq24›>šM{‹Þušs½Š’¹!Rd/ýhZSóC	î›“ç]_¯‹ûW¯-{ÙWFùvòv4[åi?irËzGÜöa×Œ/¸\nÙ‰Ÿp ±®RÆ?61».x¡‡l‘ö\"²>£Œ¼ŽÜ%|o¢Ê®o3ƒú®–dÝÜlÝˆàs9Œ?9§Ü:PŸkZœ‡À¤I%-öÚäûU¥?œ·÷Mü$ŒL¹eŸâ¢’U_F=Ðç`o^™FpiO@²·^/¦ŒX\røñûÑ!ï¹Ðh“æÚ6KÄw?®¡o=—7Œoƒ|<ÙÕÔ›RéSªÊKVQLn­„wŽ—ø©÷ÎrŒs7gøÚxP0¶«™µˆÊÊ_x_ùûzµÖ“‡ôÉ¥ŒzdóÖêä^ŸÐ§GÂÙDC.%ÌÍ{?_ïÎÿ±zñ¹Œ}+êiU&4cü?=Ý½“òKèD`‚(ì$Œ‚(Î[Öä… @h9<}ÖRù=Â-ôï+K…[ã;E¨xŒž-É©ÈÛH\0ÿó…9Ók°]À4:›B’2æÇ6eŒ¸@^ÂàIÍ®âs¦“Š´·¯LŠ:}|9óÆ¶¼KXkŒå¥,kÝ x”÷°¸É~6uz°`ØŠii–7òRµŒú»¡§qøÛ3@ÍónMÜà©5Ýˆë7¥-7¤Œÿ”#“K…èT7¹n.…=Å$·£ÎqYõ¸\0þ\"M‚úå(\nOraŒHQ°ùè61…¬%ÙºxŒO[AÍ¸úëña\Zð\"`ÒƒÝ=È±RvH‚m†…‰f`´ü±l¼sžW¿:’ùÛuù#£†`Ì·O¼Ã“z,ö£ûÐn_­©BBÔÐåÂ\nµSd3•–“WºçLš+&ùìŒ‘cD`§_«eßöd£vJNá•ª¥À>bg2†ŠZ•THêFÈS}íÒ×!*‚rUjßÍk´¤$4mxY¶J _‚Ã\räðîkøÇ@7ÔWð	Úñ¤$w(æÒM€PÚX…†pCì}Ë²û˜ùãýÝª¨V.¡ŒWPr÷™ÄÖE!å“oÏ¦¬¿½IŸ]§1PCN9\\¼f1	2³vvmêÃÅ^L®ä§éÖÐ×yf(¿_<>MÐfv‹€qÁª\r´‡7jZ2¬)i8›&þË<0~í€t&ubüvüÀËZÑ“¯®Ûaæ©î‘_IÓ\nBƒ¸cyb€Ëi¯¢XfK¦×»Z H´ãWrµRkLÒéCÊÚ›/Äx\0œës”-QÛ³·¼èÎÅ#ø\0Õn{‡óò]\rÃWÀh0Ù@î²=ìrþØÏIKÔ®ˆþ~gÄŸ0âÈ£)!»Œ„Ñ±ãK&Ø@<“\n%	d§>?‰GÖgÈt!½3]#Þ³jN7è£ž|ÝÂ&?¨Ç°ÿÕ²bš>ÔÊàÂÀY>r]™b¾ƒŒ¨Ï‡3ƒ¢¬õÞ´½Xà´>mÝ>ÐÃƒOUy‘vò†H\nÀ;àQÄ±g\"·¢©WAÒ§_gÓÛsìˆëUþ™M’œ-Gm\"¦Æcµm#{œtµÓ##Ÿ‰!á6­\'D„«óõ!¢õ£Û\\Ö¡‰qâ<pZò«÷«¤q3þÀglóª™›°#¤iâUËP£¢Ó(sP°™g°‹´ãÿ/Dgˆ}‰#÷Ø&ëŽHâ3Ä&XwÒ¼Y»Ï:z½ q{ëìIŸ†<îsœ¸­›UxŠtWËgAO/©’mÆ°Brbª,çÌ}Ž71‡–­ÿO[¡“§ž\'GçºÖÁ‚d7z\r|¤q-[ŽIvùÂÎx»D!ÅfÏ–êåcàDFCÅ ]•ñ5íŽX»Q\nx¹Ã!§sÓæTªŽ„ô½PÄÂ¾ÚT1¤!Ž`µðBÝIòÙrQ˜µ¨q\"‡ã”Z¡F´~Þ¦-Ãd±õ™ŽlWê“]!“r†”tÊTÅ$MKP\0â¶žlþ¨O\'džŽ‚]<ØHÅÅçã²Ý§—‘rø@Xa‘’â›Ê\"cÆŽˆ| ßÍW00Rõå¬¶8³¥Nh.¿s)Ý7\0;XŽ–\\âtª‘•I7žÒSc4,¢O/`Ò»ÆŽ¬õ[%pP\Z¦ý›ÓÝcFšØòí~¨c£¹RøË†Ž»ViêMàJ¹\n12Åô\0Ý„´ï¨x1€Xú ØŽÄ\rÄîTé=2&{$©”Æ·`z#?@øÌ\\Å\0uŽÑ5¶tÇÂéiÿkt„j3Ø\róàh—vacJ\rˆÁŽØFöïMG‡zÙûÑp‚	ûê(‹_™ßðvÁÑÂ²„ŽÙ@þøkrÇíyßÜ~¯ˆÄºC9lØxu@÷ÇÆáŽáH¬þÈÎyá>7·ãÌHÖf²ãFÛ4·«ñ””<\ZÅŽé‹]sLé¢óoxEl!\0œÏÏü·gUg¦ä\nó‚ôGŽð\"Üú‰¶ï÷GÂï-¨„OŠŒ\'²æBç© ã^Žøc~\\fR;¹#„šÜ¯]•ÆÈÀ1‘@ÄVk˜h¨@Žú†vãžø½\"…@:~‡CGôKE`Â^-ÔBÁ\'F*òS1?´||Çwôº–¥~`Uaüð¼ê‹=\n3ƒ-‹:o‰RFñ*&ƒ\rÃJsâJ§¤ªˆ\rd^Éš=P¨šò=ÁyÎp°èy‚Pôÿæå*u]ÿõ«ž*hYefáÅÛmÃVrÎ%£ÏÖ)Ó‚x	©ëcÝ`³9«yÅD#îøoí˜×\r…—µ‡æëp†j@\'û%Ó÷š(ð±‘¬§ð„\r‹\"`»4¡ëÖ-XoœlKùk$ëÑ¯„fù7yÓ–‰ëus#ä†i$	…\\X„i „™</jÕ½\nÚ¦*Ï’\0œ+èØ”% ÞVé»‰êŽyw¬\Z1äìÌ1•0+ôÞ ¤ÙÜ]øë²  “ö\\¹UC_sð¶öè¿ç±!)è~Í´Ý­ñ>ÖÂË¡Q5·Æ¾œbós\Zp.“(Y*é‡¨u½’%yÇëy‘eðS¥÷h\'¸:‡‰üx\\ÂéF`fè¢s¦ãBX#ÄM¬lŸ–äWÊ\0ê’#ó_óÝâÅEÙœëL‘¸‹]Z2Œ}½ ~8fHÅÕÝ§¥„O´wžˆ¹$}äöjEƒkw$Øþôh|¡çëaX¥x’NGñZù‹n7ÂRstÿÉðº•Å°Ôù0¿6<W¡U´.“s:Iù>ýÀT-¦×6fO°ïlb]Æâ9P…Âð½…Œç@Ê1Åü^xzëêÙoU5¿e2yþü)qŠ ­n +÷£â¯„UÈ0i°¡Ûq¡¼Â ,1Ã¸ÏŽ£ã,°…¼¹™ã•™£Ð}@íLÀ’‰(ßÍ™VZ—g«­|_}ÐU)©³87^»*¦S$ @Køò•^/T¢°\Zªé”2µÅ\"\n@+øª²èüãà\nV)-d·˜ Ž¶CùËâ­›Åû ië{ÈPAÄÍ†kÎûñúd©¤‡M\n©Œ×+v«˜®5Æ¿^Ó54­Aîlƒ°es¬ú¤ú’^Ø×¤š RúæcÓgïÚÓ€æQöÛ‹ìØc÷@´y¬‰‘Ð®*•]a²ÑÕ/¢“>^ôo</º9?ò©¼s‘®‘:î)Ù1§\"€{/†ïpTjä®Ù–É\\û‰\ZÅ?M€‘¡Ðân{1)\nü› „-‘QËG¥\Z?ZŽþ}/3‰‘\'“õÒl:Æ9±wâ):Iõ™)Â‚šÌ’]O£‘CÂ{dv”c^ÙÌŸ9Îe³§Q‘Û_ƒWo{_‘T7ÕQÌÊ‚…÷Îwû L.è°‡M ðÆê=äBÖ‘’\rå¬\0AtÈ‘Nä\r¢ý>§-¦-bmYUMe˜‘¼I†¦_i ¤¥V¶ØÄHˆY(ñ•oÙß œî­Á‚‘ÂŠ!°k{ýustÙ¼Æ’‡l|ýÕazªº4‘Ìñ¦5š5@	^Ên4èk«¸=ú\r	»_æK–Þ\"‡ÞX‘×]4—ß@™ð´NS	ªÑtžw”Ò ÿ÷aF^ýºû¥‘ìËî–˜îáE!”Ôö@Z­[æ|†ãi(~‘÷Ç_MÔá8Uü¼«.pF«÷ùÂwŽ:E`ðMBâü§’LÿiEª ;¿’ŠŠÔŠÔR‡yÑ›jp²]c?Îí’\nT°”£MOmKÓw`Jåúñ€çÜ4/ww-6ÊÌ’ ž½q¯nJÐ0\"dJÝíª»‡R\Z5Îò,¥jd¯’\'Yˆ²BcH‰7*Œ(ß’,æ—$Þ©ÒÕÏkŒàš’3`tmœ«ý5^°7¡}´MÒR€`ý-µxñÉ’c‡›ræ-‘AÀ$Ú:T¸þïÇV¬8&óEÃ75’g¾o…wç¯VÅ»Ãêž­–BÑ›V¸„€‘jËÌ|k’qÅä¨YæjY9èÚÜM–Hž›®•îEX¸[X²’›]@Gš3¦¸‡:Omo]?G¡ï[¶!YŠÖ’œáõûSß1Ö“Ñ}ôdÏQ*£tÉ/ð‡^RÃ¶Žµb’«=9¯ˆ¹@ˆÅd…“£æárŠ 2H4×ÑŠ’®JMBÆòÑ¦«}ãí\r™20‰2h×(G:è?{’°þr\"¸\0\'5Èw¸÷Ý³ó™tÞ3c‘4­Y\0VI:>	’ÍX\"ôFq³—U¸{–Þ ¹iM$Ìµ<‘4‹–lûñ’Ø¤í ¶ƒ8¶0”/\n}¶J`3¿cl6éÆH¹W“	’9z^q-ö¦û7žšïŠ6,‘s­vÅ„Te}´¾ “5ÊÊ;³uî÷+Ä,3.¼¥-ŸÃ9š#FïÌ}¢‚E“üjvA\0ý&Öß5Åx¢P,šz\r&â8¹gEßÌ“\\cÖ>k,-—ª\rhiþÞIZ+^ ÀF©Œ”FÂV“\'$$˜¾It´üž¥ý÷¯ëã&kîû -–®8l„Z6“>FÔYŠ\\3§œ8ÃåfÿGæOÉÃp>úKes!2“BÇS\ZBeLÆ“3Ÿ#Ú¾ÝÄb‘j52=ÿ<PÊ3vð“Y¾ù…f«xM—«Àw¦|W$Ô<‘&hÒñ•§ë70€“k7ï·N2wF™ŠuO4-@cët¢É·3´(°ü“k¥Gå¯²ä\nÎƒCD#¾6Èu\ZëÖ„EÚ£@K1“y\"“/S‡5à øü¯M3ü8¢i¯)BC[ïÜš“~”ZWîÀKŸi7ø‘/ZŠŽ¼ÉªHz…&‹0,·“ˆ°?R-âÆÍeÅj2­#XíH¶\nd³5\0Â·¿“ˆçô¢x¹¿\"}ïv}¨ñÐÐÑu0\nâM\n×d†¸>¥á“Žƒ@,z\n™Œ¢‘&ˆÒ@]ÖÒDÝá6N‡ïI\"\"{ç4“–:g¡²þñ\r®¦ŒIýS©Älž¹Ð£­ÆÖï/“¤¶í¹m~…Yønró87ÁðÝÕECÌ\n·j1sÕD“­ã)UÇ@Õ3ªkó{];š²Èì‚Ä‰·aÕŒ“àÐÍQôdÆÿ³8ý—k5¸ƒòœ5aiÇ*äUW—÷s“â‡¸s{qÃúœKcB¸Ïˆ*›œ\0å“&Æ¼\0?wío“ýÑ˜SŒŸ®$¤¦€ÄÐÔG†í£ºÆJNglc^”^HHµï^zçÜS­&^ »žF”ñÞ¿hY;ÈknÝ”|ÎTSäÌO¬cwžÜñDÙ›OeièÍj3OÐ)”½oœ®\Z`N~uÙ©ÉbžX–É$öZœÙ˜‰”ÀZÝŸi_ðô›­LÆ5>©}R%ÁZŸøÅAâ>Í%|”ÒÎí´Á@Ö‚p¨wØë^õÜo(‰éfPk\"E”ãÕº…l5ÑzƒZ†«8ìÁØàÌqªº½}\rÏÐ2”û{Â$ŒÑ7F--sâž›G2³,aýÀî?‰Üd•Iu3„ím§òôK=ðøžëV\\‹±Ô‡â˜|¾ÔÞ•6Mj‡	ÖmÇÅ9$*x§¶…g´U(xýåä9•9ÒP¹T—ÚÊnÕ¡c6‚\nÞ¢‡{z®tŽ˜@•;=¤JMòZàÈ}`î¥èóáÁ‹‚ùà·¬e÷~vïJ•?š\"/†i´È\r–<H¡i5×+:~p1K‹G{Æ•`ØÍÝ¸¼òÂ¹\r?’† yît®bgÉ=!Ó«¾ò§•ˆQ6ÀÌò9¡…`\"-tPƒ§(cnƒ×/˜ù¿æÀ>š•œ)b@HOŽ€?þ¥5>PQ¸ç	áµFšç¼ƒì`•ª\'»à%ãYˆÀƒê©•â¸ÜËoÛ°&£dÄtQž§•·À½;<và£Ä}\'P[ŠY%/?_@­e¤&«ú›•Ðý†û¼\'³õGpp2[zDªwN´½ëžjúÃ•øXä=¦Ð§l1Y˜^²2xìÄO^úèä¤ë;–?Låu5Reêv¹&ßÎ-”kUobE³…ÚÀ–7Ü¼øŽóðzL{·Ô{·MËTG.{©‹}¦)¦cÀüž–Ië ¼+@êÿ±>Hã¦#qL=ìëaÂ.”cUÌ\Z–Mw‰£¨æíòJÍÃ—¨ ú·õ\'bš\nÈ}\Z–Q!£áx˜‘\r5±ÙÍDQ’UäÔKÿ€Ü……±§Þ–‚À:(O.Xiß+”&	õMâ’EÞ	¸ˆ¾¬èzFg–Žùo¢1‹ù:‹Ñ³\ZžÉé°>A¸\rq–ù7–•0O|Á%6`	‚PIŽYã;I (ËÅ¦Ï‹YÎÛ–­å¼uf/ÝZú¼\rÒåÿáGüs<Öhï¬4ÒÑ–»oÉWxôª³Ûº!ÑÙMz0V_.=*ym\0ø–ÁCª{!YÃðR¨†a²\"¥š	`F?MˆËU‡°Ç­[*–Îa:Ñ&·3Ü¸<u×LJžÌP†#é=9+Fñs–ÔÖqÑÉIB§¾:®U{G@ÔBší=ËÇ\'ØÖ&È–ßù‰fC Ñ~ø.§n,ˆº±1`Ÿªo9]å¦k\Z±¾–ñq4Ù±x¿ˆr°ó*ø¶Ó¦wŽR–ZÒ	›ZëJ–öh>ÔE|7´ˆèÜb½{Ñd±ð8*ÚÍY±ßyÑ—B.÷ºõí*¢ó	òlò2Q­Š“_d_§ï,6—QñaA[þØ²—¯ý»æ=¹‰Ø	2þâm…í¼Ÿ—@êß”>Ê@ATm~FmÓ “NÉlãl>èõh—IîÉ2Y¿ÖÖ!ƒln}¿°1dåñ¥ZÑÅÅ×—K´7çGù¶÷ß?-U>˜‚»ººƒÑtQÉ+qíKz:—né9>‘j5§èdñä3Ëû=Ç’€˜Y±¡sNqq—pëc×ñÜuÈºtV5ÆÈ¤m9\Z8Œ°Œ£q}—u}oƒ8>&©VÁï½ý&NÛAµ²ò,\r™ÌjY—‡ØÑÒnxIvæIv°òóÔšÐë!2q#&aˆ“ñ;Lù—ˆÁl¯ðÊ$ã®d£š3\Zå&2Ô	%¯\rÌ%~ŽÐ×W²—ŠÖ8¼ñhŸñsß+dà°Æƒ¦œá°*&ã9É¯ß—–‹—+n}ˆÒÅ`”ÿ+j‘Ò	þŽßQø¨Cè——PfÐÔ¥®ÆE¶†Zë‘N%‰è=ÐËè	î$¬É—œÈóçØ[\"!ÅvÕO\r#-óSÕZ8(ÉƒA×Ò·‰äh—ŸÙÙþÄáÉ/¼°vàà.OÁ¼2žW‡¶ðÿ\n—¥9†f/3MM;#GÚªWO&’tSûO\Z±­ÀÆ˜ò—»údÈ*ÂJƒ?‘^wŽzTŠGÐ§õ,€„âÒÄ—ÍÄ\n\\yqÐÝ#1­˜êŽ6¹&Z\n8ûÓŠ´‹ý—ßUuBåà©‹‚9úELÔa=äTì/ûÐ8Ž,i?Á—ßÃÈDò/½ ¶-Å &~ô\'É‹‰œÝ±ÙŒ»äªÀ—þ¿çÏ]‹êÆùÿ…‘œ‚â¥!zD–W+õ®µjJ˜äÓ(r ]¤Ê\n=+À’ÉWU}O/injõ4Çu˜9“Ï¯ã\\-£/O²Ò5dXS^í`æM“.˜NÐS±IÆwº*‚/\rÚiüwà‡lžüµ%Ñ7˜Rêc(òZ=m­±ƒ“ÊÀÛ—šAùÄñ\'Ìj;Š§LB\"˜^Ò/µ±:Ž¿óqQðÆoBßf õl¿G2ÄœŠ˜h\rô‹=çÐÉ¬Ë¥¡c¿·µHõw{TRz>ñ=MëÆ˜w¬`’wþ²”níõN‘¢ÿ3=ÛÍŸhKr¿rºi˜}I^Lð\\95äNÞYï¢…°;í?z «aE=’˜ŠòJŒ‘8¦[úC=S¹Ñ¡Êk¤Ó{£Ï[„k˜¥ìF€ô`“Rl>§Ä)í“†oÉ8³07M¥R×nÍËï˜˜®}\rÄ¾E~ú¸ÛóÅ’\r\"\'—ì³“ƒ04¿tbt˜¯wã¬ÕKÒ\\ÈiU¬VD}Ó3yøœ(åîsŸ¿$ÿí˜ÊTßç±»a‚	A²a½ø| ;žTróÉ¯Í(£˜˜×&o{÷©!¥ùû2ëoÊªŽžÒ’ºçD^Ð¯D1˜ï \néí¬9æ)Kb}«Sƒp¡ÊåŒMcPžAYX˜ñÑ+{^ÇÙ«X(òß› ‡“«M[çø>òÚm–M˜÷¹C±«°ÙôoMtË}ÑqqXAÖiYQõÃMÞ˜ú\"#¢¡ØE©ÉòJp~&w«¡»¡® Æ_‚„Ú™6=«Çïuqùe4_oq–Ö‹tp^B¥a@^#š™$ªg‰™…Kýdãù²/›Ä—5“˜\\H½RøÔ]Ü.™H%Eqùùãà £Æ©cnœ­Œ‰\0»¬µÇÚü»™QÇ£d3MEçDßÄv/óZ°_a¯!Ñ/.âA1×ÔÜ™V®£ñs©þ|æÌÑÂbPo25é*ŒSÍæ¤ž6§™iâ,æ‚ím»O¬¥#½?VbÈ,‚C-Ü¢cÅ¾\Zhá™pˆŽ\ZYvœ1]@Ã´©ó¾õø“Úy—$]‚Ô6¥ÿ™y=¦¬ÁgÎÖ˜þ‡ÅßÉeŒˆQ›§´bÖþ\\‹™ëìo~†Ü‡÷] OL÷HP¼xò	Ý9lK³S§ï™™’#ô¤ünØ6¦½@#Gb×bµ5_é*BˆpX¹ã™ÜrVÃw›\rAU(–\rØbeË&U6[†¯F‚#`lÛ,™êÃ[u\0T‘9££ß< 	cò&Aèw¼\ZíEÎNê™ñ£Y°—qÎÜÄžiù¥6§-%1LË­Ý;\ZÍþ™øò2’ãuYë@\n’¸âWèÜ‘Ðº¹Ö%?¡í¾òš‘Ÿ–;…`,èÒÄCÁÕ‹ñúBè·xóøŠšVõu(|ë«/§ó9¬µ´ôJúÛ@û“¤hyš¼½¼(¤¾KË4š\ZU Œ+h÷±A\"ó?ò_6GAmšìÞšÌè€!3¿hÜ„óþ£\"äìVj`Õ’š+ë*GÐ6jÂq`8î&R1`ÙÏóý\r\Z{Ûøƒ š5y¨G‰\\ú‚Úñ0ÉìM—áx[ÅøÅ-òýª¸š<P6Y£‘êEÅ[3oHSVÐ˜ç E]:S*ÑËšD€ÿ›Ï{vJ¯Ò-C:IËJ™*HÇ]½˜˜9ý[šFŸÃ|A9»’xÂÚ~·d‚rìï¦š[;èŸ#;.êH™AÛ£¿c…<¿ÝëEp&U\nš‚OþÁKEÉrñBÉÁ±øÊ³õgU¢Þàa1/•ÀqXš‡ûå¤žËd°‡9SyrCT\0µÑ«.Í´YbÛjNZ¾Mšº¤ì<hýÁs±Õ½Iº–\\Œ‰è5\'Ð›ßLøIÀxXšÈçò`öÇE…ÑªÐÙB+‡A›™p:G¶Á:˜Þå,šÕ›™K{P|«™L/ÓÖ\"À³Ež‡l®+«Ü¢GwËš÷ê–õÎraÇH¼\n´È}`ÕR¡±NÔè·|Ç´”:G›w&×³Ã?/K$^ce?^ZdO#Ö%¡XxæŠÊ†¯¿Æ›-F8ÚãyŠ“d™²ß]3Îf^Šéœë6CøwƒÙ›;eRvªŒZ«ø[2¹ˆÝÐ­µAŠ¬>•¢¿6ãBVW›?ì\\v¢¨­Ò§ªx«PÃEpÆçà…ýì§6ôí!IP›g~xˆ¯Þ¤¾!ÚªÊÈ –÷}+¸`¿¸™Õa›-Ó¬3+¹†À@wØFõÝ_+xË·Ó€Î+\'CÏï`›!VéÊú®Èÿ-ODâÛD‡¥óxÃýCaÝ_-Ö›œ&¥œÍoB”hà\0”6ÿ„Êú—6½+£ìu0†›¢ÿ·ëÌçæ¥2šÔ­p\Z;¤Di¨Íbiá\"r\Z@›¥!:»–MêîuüYSê¥¦š%Cp‡¢¯,\"G†ƒEN›¦NN×ßL/•4ÑÿÞp`Î‘á¸Ø41½úP›«‚céÍqõÛ27¿í«¹Ì1ÜI±»Ê^ªÐ¦³›¼DvÔnZÍUÿ‡C7Œ¸òôUpx, w´ºŠÇÃ›Í€úvNxÌk¡l¢fB2ò€½Q²¬W½kñœ´UÚœ\"**ëðöR”èðëõ™¢§Ük˜hæÏW`­îÙ­œR|¨5µÒç˜Önu-\\Å×:ÔœY\'KöFŒûƒœ\Z1Z¹S%4äéüVb*P†[°±‘™d8geÍ½C\Zœ\ZSï­j0–‘13îÁ¡4]Í)—½ÕéÅÎ¶œ\Z]–(Ê 9Æ¯€Hü¿³xÑ&®FÈè\"§=v.Ü/|ÑœK0ÜÒ›z½ú\'uÂz©¹u÷¦À¿«`Ì¶$Ëœ\"µXÐÁå•ê•ïMNáÍ†¾&øVª\'#Ç™ÌO¤‹œ0Ø-kˆq2w¹Sc¶³š¤?d¬ßUÈàõH\nQ7œ3hÊ«ÛâæÜm<¢ÅGM]’3¹p+L‚¦—KNÇœHRfžµ$Ç|ék´«|s\rÍßúÌ£64\rë»IbmœHæ?ÁC\nÇD†ÞÔˆÝÁt9!¼  ‚Ãø¢ÁÒD¯œWòÒ~šò<~ÉÄJ€(“ìuŠâ˜µÎBþ&šâOÁÁœz³•8Ö…ÜˆÜˆó{sfÑ|Âß¶­Ü}~ú(=5æÇœœªç‘Š[m Ñ¬ž˜¯7§ ƒÀAmÀ¬ÇØ	,œ¥¦„ùL…CTœôNR×€Ñ‰”@;êC¼Ou¯Jœ±¥9Ÿõ¨¶˜®\"ƒ\ZO°Ï§Ã‰á•Æ“‹{OýNrœ·çX«ë˜ÎæUé•œ¤QÓÙ©\n i/$–Û:t²niœ¾„ØKSféÚ]é›cÇäÿX\nn\Z„÷ÀF³œçîæÑç÷€ˆp™pJ„æV™®ð¬ŸA#\\1æö{A…œð ×Ã»§õ«Í¥J«ï“OmOš:Ï™éçÜl˜W–5œüTŒ2³îƒDB$‹^VyÚg¹½É™~ú|§\rU„ÐtJÖ`†g04	n²ÈÕžFíLZ³‘ö\Z¾qQIW#(4¿É\Zòb=9¼úø-C¤/s‘#]®´:œáfR-_®\rX›©ñ\'“€æÛrX4<V;G‹6Ë®…CÛŠ²%G´8µëóqÒ)Ï¥Üâ£vÇ¯j7Z›í÷\"Sìèeë(š¨µ«$KVC‚Üäm[ë;†W8<{bçæ\'ÊÅ“…Äq`\n‘3ŸÝoÍÞ³B@8õ†JcÃ½³Ån&VÉ¹Ÿ”/[©)Û»zƒ¤[ŽÒ÷gö±EÇ>b`*ãe·ÑÐN¾Ý“¿\r	é´ûƒhÇÐÊHjøÊã	gèQ.Xþ]ñŽz˜Ñ©*gˆàw¶€ãã/^xGq1%S9ëû?RÁæ°#¢¨B~²ñ::†ãXò‹g5[mÐåQÓ¨›CM.C\0çW{•â4\\vkÎ©ÀxÁÔØ[í¤»%¡º–í@œÜcÞèÎô©ÁÙ†#\Z>Oæ;ìjGgß¦R0ÆÔGlàY(ëË\"y4‚h“/ØEì‚¡»p°¡4¤3­37¬-sÕ£Ü+Íf^ÆÍÞç…™ä®zÏÚ:³ò…–—¬ÈF™Í‘–ºÃÔÚ¢b?¯·ù£»@×ñË¨ÿ]èrH÷¤!À|ò(µa×«ÈvC,üöäT1>K)||yDá×pä‚¯ÇóÀBÙÜç½£× #A.®{Ari=¿M-·þ?Ú3u;­ï\\™ÜÝ#ÃÇS´†ùÎR²\\¹;ÉY¥¶üßµz„›ŽCFª#LÜ!N@6¬„9‘žjØc@%à ÜžÚ?LŽÜ$bmjT0)±ŸÞåº ôÎã|ýlž¦€`$ Ö\\{ó›Ñ\"´º?~cj:‡‘¶ïÃ¨Æž‡Ç‡ôŸ\0(¥8à˜ƒGþf íÈWiâpJ©pMbVgž®C/ŽV!”WÑç—3ñßÔ¹i“9±Ý*mÅV wž“©kZŠP[:Ðí¸ýUjB¼ÁŽ5†‚E²®“ ž$í\rˆ(›õÔ‡þ~YïG=C\nwêê…­9G)Ž\\–Mž0xa$k¸´Ù¥·äÇ4­a&dkGS‚Ž#<›Ëýxâž>)\"&%qÿÙ£íøu4ˆKM¿$î¡ožºÝ­{ÂA\ržQIç¼Qó\ZÓ(µBß}Oà^Q4…uTìv¿ûîÖ1žƒ•úˆ)Óæ´\\NzàÞo”Ç\'\n]Ág\Z‡çuF¹ž­(:\rá¸ÎSÎäà¸ÎlßV¥l&Ñ×rÕ\\;;ªPžÎtóNçÉ€ÝÜ»õ•†HÛ»‘»§Ü%kH\\¦ZƒàžÏ¼¿ƒOa¾Œ¿ÔèJæ÷àaE¼Á²7ìdh|˜žàóŽ«qBù\\)6Ñ¾pDÁW{Û“Û¾!$Ê¤5g[9žðÚSí¯äöZ6Â ž>ÿ),ÌÉ(…EòÃ<žý;-›fÍNù§Iã‘Y¨YÚ²»½íeŠÙ\r¤Ÿ––¯~ûÉ<©‡k¬¾Ñ\"`	Ôð¥[Žß¬”Ÿ\Z)^Ktz â`t^Úu]Å5é8ipvk\ZûÜŸŽ£ª±%T’þŒ”®›1žÓ#§WÁõ$ÐÛ)z/WLŸ-Z‚„E{ÔÈð÷ûKÊÑ­vè·_‡§½_\"“l&ÔŸ3ãI49°q¸ÎŒáïøZœY¿FU	-&\"Æ(¶Ï6Ÿ:Õ/óV\\´F‰ñK&§f	:Áüª€7íú9µ\ZŸ]†•–\'ÄÃ:¸‰áÀËrQýFG‰ßµ™¹‡¢#Ÿb?ù–ïyâgñ	Vúiå”Wÿ’Ë\ZÚXÝJxÚµÕŸq*Ó×V8ð,xÑÒ¸Ú$­Ý «IBS¥;Ã É•8ŸŽ1ú°¡¬lL\'\\š¸ud€øú³jœFÚ×•VQCŸŽ3›x)Ä!éTU›33Ws/wÁ˜q·Æa_KBŸ´Ó	.A»ôê‡ë·YæèÞDµ–Z<ÞX´m\ncŸÐh}®ô“‚ôÕ!åaXÌÉ±Ñ9ˆ Ü6óï#ÝŸØÈÁ{m‘]‘RWr‹Þ™”« ò¨V¥ ŸB™a×Ÿç§¦Fz™ÂþJ³O#Ë%ÄžI,S«MÄûVœ[uŸ÷\r÷uB„—V–èoÊÓÑê²þ¿Ñ#ÊÈêIv4¯Ÿ÷dªï?¹ÜÕîŽ„QƒlHJàÒ6\\2Äúmeû8(¾ ÔÔ\\á¥0¬\Z%ëhe€[íÂ>K5\Z´ ›* VÁº\\”òz%ÎxÄ¦Y1xYf[FãX6cÇ *ÚÂŽuk…§;•¨)‰ógR‘ã”Ib~¿\Z 4žV€ +u¨äŒ÷´crùè›>×\0_ßs ;ÒÏ¸ŒÒàˆBáõøsÔÕ1M—+JØ5C†$‰r <0”ßçÄ É‹[!Í‡é»Ÿ·\\dÁ5crýF‰ MÔô=ˆ‹ó]ïÓ^¸Ü©ƒ¹	_n=Ãã&o\\L P2¢ur±~o‡(ï„MàÊFäSÇáâ“*:lØ5\ZÅ> ZåD¹rgåoµEIÜÅH¼÷Pé½g÷”^ ]nÍü0Í/Ç¬àˆ÷Ás?ÿÛFü×ÏŽãIïìs˜\n4 ^ýTÙéXÝr&Ô’l¶ÙÁ(EèC4)öö£¯Š\Z rK(‹1ÿ2ÔeÔ^Zrð#¹²‹–ïjŽW ÖyÉ5 ˆ-e	G¿_óÿåm» Ðríƒ?gW¸¬Õ ³à‹:5«W«ÄþÍÝb4#Ê>)c¡ SuïÞ ÍÚ ˆñ rš¡2Ñ¥þÎ@F?šå&……Ös¬~¿“Õ ”($öÌ».èÝÃ×LxkWNg<ò¿åöüó ™\\ÒRgž…_¨üÃ1’Éá3Û¯)16œŽOûÞƒ¬  ^L³;¹¹Ë‹ê.#Lè¤ˆI.½§]æãÿ °+ÿ„ÿ«Ýæöé›ÞÐJp«·(ø9Ù°XÃÎŒ\nð ÂÒ\0’¡ Ÿ*pÉÄÌ•ì^ XE†1¦¯oO÷ŽóôŽ Ç3rß ð˜1nv\0jÄHÀåk7ÈqÍ-àÕ;CÙ9 ÇæRêÉ_ØiÏ$ªÏÔŠ¡ž¨•6tqmäÝ4_rën Õ‰$u·*&?º¬e`=8ÇÛæ”ò9Çþ=¥è\0½ ãåÜ¥±ÂEµÚÝ‰ÊÇX8«ÍYm	»éãž‰ÙQ¨­ èlA¬§Þ\nÀ!„gÂëúCn|èI²âÁ#*ß0\'p éò‡Tÿ”,œúÅRr¾ºØ¡’¢ A—öãªîÍ5¤s¡\rýùp>¬Â*€9wÂ—ƒ’dg_+oâ9Ò0Ãì¡ÖŠ©soŸÊŠÆøÂ/¶]O]Ë8\0qg_€Ç\Z«¯^¡“E’6{:,\';ðZ»B â§cßÀ¥ùå“NØ¡\"Âƒ!gñù¤»´xšu¼Eª\rûÌ‰8òi&F“¡?åøw[â„Ÿè¿¢Z‘ Éqü»!\\äÿ\'-Qx\0L¡D™¿-Z#SÐ¦÷í[%Éšl“³¡ñz*mÒ¢¡PWá1ù \\>ÍžuLvÎ}È:wžÑçP([f®ÂÞ¡0÷¡[[¢ÿÙ\nudv8ÔfŒ…ä¡R»¶Dœlž‚Õ¡e»$šË*}Ö¢Zhý\\w‚OWïÚwËSi7¾G™;¡x„…VùÙ\"Œ\0’ž·Ý¤ˆÆ«ñ–¸H›à2ÿ`¡zw›`oi0æVj×\0ÙŠÐlj.Ú…Bõ¢ìº\'¿¡|ZÔÞÃ¸súæ-p0p@¹ß[´¤¼øêL‹¾ëf‡¡¿d@Äâa1®‘ÞkvÁžŠŸ<+r¼	“½HËù¡ÄbXÒž¯L„¨ãæW1&“@þrŽJÖÞÚ‡¡Çžsb¿_˜`6K+Á·“lñ¢ù|âS.£ Pð^¡ólÔä	l9Õ/È¬x`ÈóÞ:eu)‹Ÿn\'»\Zc˜¢EÓ\\©Áš|–Ï:DúÌNÖl,Žl#À“¯CèD%¢K]¯œúà¨QÐ ð‰ÜÂLø!ž¥jÄRÉæk‡Á¢VÊ=~RŠÀ[ºÎC¼;>ÔøfMÃBòRò+¢mš£vnã	tÀ¿;=%J„áyë ¥R%ø0Ñ\nfþ¢/e÷ë‚áÃ–¶IL*ÔŸÎrWtô&BmvWU¢m£à/yÍÐªp!˜Z{¥ßEçÙ–Þ.ZqoB„\rH7¢#wI•†$ŠÚKlh5ÿb4:ÎÑ•Wnàw‚¢3Tg-Z´ãBF”(O)šÙ\rf˜zˆá?¸ž×\'€¢=\r‰¢0™CìURù\"õ$d¼Ã©6ñ¥¸ù°)¢ISÆÑ¶—\nàE]ýmùY5c\rwcDç¹ä4˜Aq‚¢Qòix—Œ–÷¾WD2oÙF·¤0ýÄ+—åvBJàþ¯¢X½“´\0Tëí«¢±¥PO›]\Z8UÉíËmVqþ¢^o#™Z›Bô‘aCuÍwIT-‚$e‚·*1¢g|v…ÓÞðêv	Ûv…ÊÄ›W\0É(ì‘@j ¹^xì¢hé·)à­Ù¿“ýÒ vŸSh_â­=ÚXDÓÓp¢iÿ-½›wÐFêa¡\ZPN;æ«Ë®ž°hƒ·Jû4¢mB¢´àB;ô3Ó¯ñÏÍhPÏ;Ê)Ú“Vz\0D¤ó¢r?Ï{Ù.‚Å<ƒ§õün®;  Vèà.Rä»à¢yƒRŸTx»\\ÁýhÜþ~DÊ@n\\Ç¹”ßiv•í¢zß{ˆ\Z”]_q­|@ØT°bs™üBzV&Î¤ìk<¢‘štûCzô ž¤Ín`j\r­MÍðN\"Agó×æ¢‘ùx%´&õ–ïëyp¾Á5à×L&Á†]äø[ÓRÕ¢•Y¼½BÑµ…\0­É\\4:\r¶a·’™¹—¯o²|(;Ò¢°–¿Ló]ê²€Njàù°ßuÅza¾ÈhpF ¢Â3–‘üHûÑO³)-ÿ>!\"\'Ù$t-}ðÆ×Mû¢Ç61p9“Ç¡©ô¤ºå‰ÃÜkþ£×TbÊ:XË%nŠ£¢Ü¢“ÿx²JÐ; œvww§ |UÔ-ˆ%=™FÌìùŒ£ÿ«Mï¿ß>gq=÷ètGˆOwmjdÀ)¹íß£\0‡¾$QŠ%_âîá×Þâ{¬1ÍÞŽœ7ëÚ…£\rÄ,?·ì•ñÈzDþx¡•‹&†™ù÷fvõ©£$ãÁãHK´ôóAh±É†§…r\0ÙaF1‘mÔ£8PÆ?³±Almèí ¹Á:2M—è”ÞmÜX:~Ú£8å ,Ë´ÿËí”t»úý©žT^×¢+\0Â°^£Užä`à<,MW¾é—Ât\\œ‚ã’+ŠTÃ„\"^J%£VìŸCy3BVtIÊpp¼¼Fïyšðß/sÜ®ü£}GäT@¡Ïà!ŽQRçm`¶ªˆ+Nû*uÆ6£ŸNƒâ[ÿs¢<ÄŽ)àÃ ºZÃÞ9QBÅæÅŒ¡°£ÊõÂ\'úGè,~IœfÅ™ÀÌÖ›·NŸoîYt¡¿ê£Ñà8q£ésM·u•±[É×¥VW©Ð­4pp7ÎîíÔ£â;Áž³¤\ZÜ•ŽAŠwöÔW¡II¡wÓú	‰†ì|£ä¥îô¸dÊ2Lu›ŒŸÌéƒí=#ÏJR9:xÝ\Z«z¤\'‡Ó#m:…uZÇ¸È>8Ðû¨ü·„|×Î{K¤iª²E<Èþ¤z?eL²<M\\¡}°¤vƒ³6Äó¤\Z¥8zRv`Ý\\.€)ïŠ.ú^ÀÂËpÄ”·¤/E{~2	Evš“£h:¦mþîwµW‚åÃdÎÓ¨$¤B|Sž1,¸¢|ñ¢KÆY$TTL_Ì|£h¨@ß¤P%ÞHD>í¤¿óÊÙ¿ff?_Ë2“Y\0d#v¢Çæ¤Tœ„ÍUùÐ¦Å[TmGònaÐÈmqÝY\nT©orqKK¤crµ <#P5r±hf_‡D«×mÖ”mNÿ€+™K¢¤w<PBñ®èZC÷kºSI¾Q!Ú\n}i¤{÷VOÚu-Á¿ÒQd;Ú++O;vœDÌ)(žP9Œh¤•]í,vÉ®v–Àš«±JMÊ(0(&™#ŒìŸ´>¤š_Q7%ßl|µ[ØôŸl°|Éâß˜AÓ†–ÁIŠ¼Ž¤yæ~èþÁk\'$Ñ‘±ßãÈè^ÎYÑ\"½ awE.àë¤®¦ãªÜ5þ]‡ìÌû®~¬½o]bTÝÅþ\nñÃ§‡Ù-¤¯ŒGÓÜ=ØÃ[öŸFJÂÂ4Ù@Å·ž¢´æqaûb¤¼n då«É\0þØn¿´Xf6?,­¢®=Ê¤¤Î ×K\'ßë9ˆƒÃo—dÐ?pˆòàGŸZ{âe&\"¤ÓS†¦¿\nT¤kêN&(uu0ì!Ï©7Á$šV9Õ¤ÕwÏ|ÚN\ZvFd6f~œ–n°dÝZ$Âi*–ö\'lA¤ñ\\`”toéËôGßã\"©ÝöîŸ*°ý+cW d«¤ú€”½+ªÎŠMò?\ZòL š÷ºr¨Z%\0Ì\"lÓ¥YÎMå‘2£<Íß	VToÀ^%Fã”_Dt±!Éä¥g˜©NQ	µ ¯”Š‹ð/æØØ	·y5“¯‘¯êÎ¸c¥i¹´	ˆKÆN5ÚˆýGeäQB²þ•\Zï­k`èÃ¤¥mu¬¤9³u·H|¥Œü —ØÜ–aQLþ²ÖU¿ž½¥‡ý0\Zú~{vhœ‹âÆ‡çw’RjIyphó¥gs¥Œþs Ñ&Ñ:°×Cã¿©âé\rÖmÙ9>zo|.Òó®¥HàÁ»ÔÌÆÚižàíc÷!§™I).ehˆµ‘¯·‰¥”\rÇ©óP¹\'âRëIÑýR›š\0ø¨‘)Þ$ÅuÅ¥½Œó	µékÑÏf]W^\n²< è´¡Ûýb_ñÄ‡â¥È¸[G¶ˆü&R9»2àÙ&­€DøDcQ¡âEQ¥Ó‚_Ÿoóù‰fIo	˜}B’3&Y$P’ô¤Ê¥ò¸{ÚkZxS?Ît\"Q¬®ë?™(£n¾r3ýú¥ôŒ½ÁAÐÌø÷]]ëhi¼²È{Ü Ôƒ‘Æ§cÂJñ¥û}|‘ß\nÍ¯Þ°AÍ(>œµjÖ2OÆž}VêO »×¦wDÑ{¢so	ˆkÐßjLAÙÁ£¬žRƒ	®˜V¦\Zz¾L0¥´QwbÞÃ×€Ñ…Áˆ–fRè¶=k­Çæ¦&©K•¿psÖyäÿ\Z˜@?7GŸc®#EU›¦)þàÎàÏµ9ôD[·üý¥.NVÔKuZ•\'Þ‚Õ?©¦0×¬á¨’–çÿÐ;J;\0±j=\"(‰ÕP]<Xõ¦4Í£m%ïÌ†\' ¶?Û2¦[üQè€8/sG¦7mÂíÕwÞ){¸\\I \'ôQ}mË®$ÒR4´U¦:k‚$âGw 1æ@ï¼Éu²iLÄ0KÄ¸:ì@¦E^Ø›‰36€v‘ç¨!l{°PVw¢éSá¢!¹n¦H+‹ò\"†\0Udà–:¢ž\nõê˜O«˜*”SÐ ¦LùÙ„ýŸì.\r>Ö›n«]Ð¾öøÃ9ú^	ºa‚¦ZË_p®ùhRf}¼ê	PÞ¯šZ™{Ö¢J„ÁZ¼¦b±«ÍR«u+„$Jp)Û°#è˜¥Œ>æXV%¦z_XÂí@KOuKMF©øõq:…RSO† ™®uÑ¦|=o%-™“ã„Ëþt,už‘·.ëàØ —\r¦’Hxe¬U›çÌÒêú¬UHKÍ^ìíÇ„_%¶×šù‹*¦¥°¹«À¶\'í»†ü÷Blm&µÙÂš^Ï/‚ÆØ±-¦¸ñMp êó÷#<_ØË¥d^»ÊÆ´ÔÏÓÁ5ç¦ºûîÄº¶ÌŒ»ã&Œù¶Ö³–†Ý4@78áíôp¦Ä›înåÆ+ÜÜ‚æË¬ä§\ns5ÌøÜ*ƒD^àkŠ¦Ê2mi^¸+ßQfú\'ÃN,ŠntR&ïÇ*‡\r¦ÕSˆPœKô?x»7Å.ÞýÕžÝ*LÅu¥KÖ¦ð”âv2ZgÒ,zê[^¨£×…”ªYç¹÷güöv´¦øþýâ­¤YZ¯V%›Is!ÁÐ±©ŸÜj8>Æ\0Ø¦üÕü›ŠnéÿG²UÁvŒèi•¥3‘D¼¦CA¦6DÈ¦þ¸`íLs<ò­òŠÅ¢ìÛÉÞt¶E§>Põªô—ßs§±\n#HNoŽý­œãî&í©¢¢ÔWZê€ÌMl§5ºýe)qˆoþuvR¯¼Ú¬¨Í#‘´ä[§qOyŒ4ø`5É¥ºÆ)¾d)Ì]³\0J©ó—|M¹ô™§s¢`bFœ+¬u\0²¶#¯\ræŒ LmÓNßŒu®‹äí§uc^=¬Â¡DU{.¡¯öÄ¯.Õ¿¥¬]Üñ­d0Ó§zEvGL7…t|Ú%\'Œ§4‘¸%¬Òf‡p#e§hÓ-ÓÄÂœ¼hü8q9À¹\ZxÅ	²VG’%%h/%§Rñ/ÆäðÎ®qéòeG±F^6•`v‘BI	ð|2§—PS?šhFÁMa¤ÀæÑÈ‚U«E°~z–“Þ§ž#Æ^8Zõ½€y€©7UÜ²º={ùŒsñäÎ&ˆFW\n§ªR_	Á\'Þ×H™˜u)WÆC}ÓD&›7ü,H‚§Ú)m-ÈENÓMì”A£ÃûªÍ›	,§_~Y×µ?ck§Ú_\0¡Tó0y†k€õåæãM38•WŒ\\ãåQ7F’\\§Ý14g†3ÑÂ\'%øL| —ƒ{íW%Ùê_g	·@M§ÝÐ\'ú®F•|S=Õ’áï«\\[8¡(YîÿYêû´§ëVd7{mÿ`C’9+§eý©f¹Ò¯÷6‡ó êíU§ö\ZaÀzß[î_”K }PìÃ0;¶rÉ‘B©ç@?§ø@[P×ŸòÑ^“3æÔD5Vw\0ž\r\'€îTËí§üûP´Î¢`Ä˜ežÎ­‰Ñuö¬ÐK>fL˜/¨lØ4!†ž\rÁ Z<›ó½‡PŽÐl·æÑ_à²Î¨Â/Þ\'F9r\Z!æÐp©ô\'6D;%^-ýxh¬¨%O 4y:X”0•Ö^ªYuGyDñ³QÒ÷ùbþì¨(Æg«ðEpÖ†õ£riÝ™¡hF•áè=ííÄyZ”QOÀ¨/ÝL%²ò¬@Û=ÅÀ-ÿ–eËÎ-I+RŒžª°zþ¨<\'à Ñ–rÑvqS’åKU7âWˆß¤_iþô«9q¨Qo	Aý4fâ”gS€·Õ‡úh%=Z‹NØ=þ_¨Qu~Ò¿„žú$3GÂŒU4¿&\" €KFñ§¨j”é T(¦5´å—Ýo[á‰…éw•O«P\\‘¥>0¨–3	æó{ÉŸÓaÃ6]0\nì¿*É(à)Î\n´ï¨–ÇžŸŒ\0¡“z½v÷VÛMAJUªla‘1 Æ·Å¨œŸrXŽä>ÞÛŒó5SÆ¤H[{ŠëPgð¼Ù¨¼VÌ!6\"	B˜ÔÐƒ®«h9¼¯Ûí.ì…ÎF²8„¨£éñve8û:½Ùîc;°%èÚt}5;­F[ ?EX°¨ºnØ´G~ÏZ¾Ý¸§µ\\¢üB[)¹¢zì¸ºãm¨È¬Oû¡…~Bç·|A&´–ˆšÅþÝ†ÅÝÊéBJ8?¨È3§^’_Í¢˜—¤¹·opÊ«UCgwÞ(i~¨ÌMzãõåe¿®Ëx·nÞ»ºX),üÔ#–Ó¨ÖÂûÏ1»°T‡z|Ù\'Ñ¦Uf+ù2é‹W[NT©\0.l>Wv&ãÎçôÏñîúq©v§+‘ðüI­N~žW©L ô|F² éƒóKGOª]ˆ5^ùAG¹\"$èA[?©¾:ÒMÀ¡ç2(ÃÌV ‰£æ—åA“Âì/|bý‘.©Ëå4ÓL\'iWFT³ÐŽØ™‡ËÑàr7ã¢î“75©F|D‘ FIJÓ5å3mÖË,Yl¦wN¢Æ‹¢Fù©e\\\\¨‡¯—y2…#Ÿ¹niÀüÔùF¯3œ’æ´N†©r¢b0“ã3jgŸÚÑõ¥Ž\\ûèmPßPÌjxà©„ãþ5æ”Pû$jä¨ó¾\"ã`õ\"vËR€\nì³Öl¸_©›ÖËð9È§n‹\\\ZÞø„r»Rã\\¨ê°ª˜Âô[³©¸Oâ¤óo™Óøý\\.‹¬a 8âûœš„4rÁ5$†©¹‹	±C\n†\ntYÿwýrÕc¼\'ÁSy»û:G©À`}.û,‰]|ííºÖ…ÝÐ¿ŸÐµÂÁIø†Û©Òb±Á–¹ØÌšúØù×ùâw[$Q²Ó¬h,·aª“€»\Zø°ÎÖ÷cN°ùC…Cýn°ÐÃ¸•¿‚€‘ª“\ZÏÿ$…Š#ãk\\=¯¯ü¬Z®ÙGóÀv³×ÜŒoªè©‘¨ou¯j>‚×]ü7!–¯¤Ó‡kª\raH%oÈÀWkŒÏh„·À0io­|¬¸Ô§À3ª\'È\'¦Ùc²L:bøÓÀ_ÜL‘Xxý0IÊª+Q©°Ð;Ëñß/žhE;è?TÒ8èVÜ’ ’—÷ØªA#Iˆƒ”ŒˆÕ%d{°°FÄØíï\0+¾\"6ÎÆ¹ÈªJIZ;wè%—¶!ÕéƒøW9åëÖÑ±÷SÃ	}Í9nøªN-®>•£ŽÄ˜tÎü´¯üBâ¢/Ô£(qØúÔ[ªT&¬à7,Ç¼]m+7‰^Áê«’¨®¦†úvóK7ª[E¨u\r:‘‹&i|: 50= ¬åSöUuµ5°²ª^_w|)‹W6›¯ÙcÄ*&ÄªÑù]›ÛÇZÖñ\r4¬­ªt„Þùãš\ZæwMiÞå¨ÆG>B\\Œ©gôÑªv“`Î(1in£šŽœ ××5U{Iäoò4BµªŽî]’SfÌ1Ð®#²8ZL½Øúó¤õ¦ è}÷åOª–BåÈ«[yíû·‰â®Ý}BxwIüZëÐ§Ê&¼ª›N‡Øå-)ÍˆÃæ»ƒ…ž~5È|zI(:.ïî£Ë’ª¬*Ÿ—Ëg”H-#=a×$-“-ž9\'ÀcÚª²B¾@\\HõN8¾P¨áß£íD¸ó.øÁ´ªÅuœ½’°ï¬Çÿ¬yÝ~B5vÚ7[›k$lÈ…<úØªÊ?I&k½œÔ¡èE•YB=Åb*Ò¿Î3FtªÕšü¾”è Qûæ†D¼P•ÎØ‚_?yÑ`Œ£¡ø«ª×5èm¬{æTÔ<g‡F+j\'‡pûQœÝª÷\"}ÅFpz.ºù¸TÔ&lG¢ÅM©ki_å\Z–Q«\n€]í(›´_å,pgi1”³õ¸}þ¯.’Í‡3wÀ««z¢$W<¤§leP[™?è‰ÂÂp®>¼ËHÕ«#jÑË#Eø‹é^C­5¬½Å‘Ü”)=Ò=mfãht«$#ºŠmvtq¾%‹Ùwc\r†[ô©Gv›Ÿi/(7^Và¥«)\'«¨z1*˜~6ºUãEèÀÊýü½‘éæ4•[kP«1¢®¹w¿Ó®ˆãÿ\\ÔÁ ^èÿ¶º`Y~›F±«9‡õ-Éa9RdlwÙjÃRaóéS(7Æ©¦\rÜ\'«E¼^´¿rnâÍ2ÍªU?‚å—¸W\\ëVšeð«L,A/š\" —›Î4ô²zXô1é]í¯¼½[º«MT@JÅóŽûmä4ŠN«2a0Nm).:ôÒª}«]ö%¼vÛÔác¾ÒÝˆø(ùY»“Ue%Ã!¶TF«i®/4‡iíÒ\n!<¨‰jY°|BQó®NpÚwx«o9ñ·j›:Og7(½ûd©øKQAª“ŠërUÚ&«³©›†¢ZÖÀ¨~fû,é·¿ûÿ‚¿½Ü»\ndšŠ«Ÿ`«4Ï.­{ÓmÏ–ÜS‡¾¨à9\n]b¢G+\n(x«£©7öÂ\"€Î÷¯\"Û5nž‚ÒÛÓçWIiÉÑÒèa«Ùz¤ˆ_Ý®o^2S\'ÎVAFÉXÿj#»–[Í«à3«HÎÏÄ@!Š½ íßÂ+siA$uN9µTµ«á+ å«ÆºDüƒ=Æ#Øwüj¦xíyÓ‹h‰OB.h «å2š—;ÏbIþq‡ã‡ÛØSÃî]ïBšÉ^	þíQƒ«ð;fWV¢•\0sø“lèä^€—ä°}!™§Ü/e*¬\"O-4_piL\0Q[\"KrÊ&&7«ÃÁÏÜZd\r±¨¬\'ß#„ÝW·l);*š=¹$º9¿9Ocor]ÜÈ¬-ñÊbÕÞçà‹`üàå(¨dÄõ\n#äD!†êÎ¬:uè¨s¨ŠWOâûŒÒÿ¦(ÿ›PX¾2Ö›t ¬=¬çgÍçÀy”0&Ìþòâë/‚jÛÔôüÜ—à#èx¬VÁeazÓÂîåß×UÜž|-ŠõøÒÈT¡[7Å|¬|ï¾A®©tuÔÌÎºia2ü¤´¶¯Û0¶Š²Ñí½Ä¬ž]F››sfèˆ*½MŒš\'{HsƒÜú©l€\nmL¬³7,M!mÛ–¨Ÿ\nþ=FK 	Ê.œ˜.>D(¬ÅÛÙªìO¤¡õ-ÁRº6”ï§äW=±ùq;7žÐ6¬ÓÜoæ’´²\rV>Ù=ðƒ­5‚øó…èt“Óã[ß“¬Û@Ø‚€º»I÷D^Tºï@¼@ŸêVœp@TUÛrÚO¬éÌÎÛ\0úÁî¨©ÖsuÁ1 h,OT³®ÿUÌ¬í$¨&ú^€9¶]Wgà½³G‡²ÐÓØè\">­J®o’e\'¤7XŽw†(šuc‹J§¡º[1œ½\r­Zñâ±š[±Qj\"Ž0Z‚7×Å-WN‡5Ž©à­\Z•/yF÷û²&’º°ïë}=\\HíÔV@r\"ƒB­ Í€zÏ—o­Ö¿×ÿÅ¢Ä&ÎÈ£ª%;G‚aó•­3~†‚YÆ¼\n\n.fd÷†Ù\\>8{Î†ðAHÿJ­E´š¬ã«2¢>ÊÆØü›1Í}‡¶Á›¬“\0æ:a­TÔM[Ð-o	‹‰_ó¼ë\\f\\Äj•tƒ¶±­z\"ÝHP¯’Ÿ«l„ç¼³¹ƒü?úÐx4ÑP,æEå®­}a¸b`á€Znæÿ û ¡/Ÿ^5®ÖÚÕ)­šoå¶\0«³5ÁÉÙxÊÂ€%‡,“_`û@á¯ü¯cŽ­¢?T¬ˆDôÝçBu®ä=781øèzö`~€Ã»š­«éñÒR\'‚µØ)Fÿ]\rõ^›ËÓn@­hÊ5â­±™¢ˆÕ˜°A-zÜÕØæò¼‚£Ó.kÑ»/™ñƒ­²V\"5PG”•±7ó}jÍ!–mYZvˆ¯r¥IÆ’¶p­Ã4»Øñ¯§æ{±·‰JÚÍYEÜÔxÆµÄ(±Ù«E¦­ÆµÖá5ç¦dãì=?N®rÙs¬©½þæ¡.£P¾ü­ÐÃ¤O¶2É:~½,úÖ)ZÐUÞs†kÔôÕ\\u­Ú$œªþ1£JÕ–’3ÏÞ1G3p³»øR˜mÛç®œ<åÅ¨ïõÜ…þÇù7iãUå\'£¨£z¸:	® ö6ú¢îˆïã/Ðz@’Ö6TØ&\0âCp›Ë„ºŠ®(™¥$µ€ƒnÅTw¦VýÙÕ;ÐøLQ72€®NÇÀÍ‹-mÏÞ4|¦0\0;¤ºü°WË4ê²bˆ™®Q(ÉžÐùö@âtal2œãX“¦æƒíæËcæýïI®RL¸þž 29‚¡^”d¯6_V$CŸ8tà{S®\\ î‚ÒÛƒ àƒIîôŽø£ƒbòÿº\'h·5Ú®_ù¶Ø\ZQÉ’iêëˆ™O·sÆJ™:h[¾¿Ú®	Û®_Æ/SttòRÊ”åWé‰CUÎx´´~²:rÿQâ¨®w¹¥˜†…E÷…Áõãp¿ÌÄVÑ¼ÔîøüÂscÄ`P®zl\ZµÓC¹ÚDà¨Ã#‚aöNµç3\'XZ“®‰‹EØ‘¯]} Üƒwúz,ôû<šâ?§Pªà&ä®•#®ssÂÃj6tv¨DzàELZždMëª¶W‡ñ9®›ITLc«¦r\\\0\Z€åþh	=YkHTxD£eä»:#®®òo±0m°öÏ¿i¦úyŽû®½³Û‚÷l|4¦h¬®´Nó´‡ÒO~%„ö\n}\Z¸ð·ãôÁHœ®¼[6‰aù‰ŸB2jf×7”ôœ¹ÈÔÜfL~Eàl»f\Z®¼]ÍÜ¤VB\0nœ%MÉ/‚ª[×ã;„*ü¡öæ›þ®¿éÎ&/ÿá_Åôè¼/€!ÙÊÀr…Øæö½Àz®ÑÂ¾Âü Ô$etÚÀ%±Tn5”Ç?ƒ*ÛB‰Rg³§®Ýdm?ÀÜ*\r4›&#4°NœeTsÇÐðßMÖÁ®ä!™r­÷ËéÙ£Îßýœªà0aêTæÉ\0àÚ²Œ@Þ®í.m)¤Nãu—´40ŠÁ§¶d0n”–h\"í¾$ðý®õùÄWwYKL\nÅì	-*ýèÉ^e\"eÆ(_,g¯\0÷$ò§’ý\r‘¿ÌO;zjJÄÒ,nq ƒU8c¯³¯Á¼O¾\'„x™ÔvW—\"ÈøãjC´+o“„%~¡œ¯å«qõ­¦Oô\ríïÿï˜æP´‰\'ô§GrHq¡¯\' ¼Á[y‰-NÄIzc`ì#ÉÕÓü‹¦0¿Ñ¿û×ß¯;„Úý<	`>7þ¸Ts|þ46é¯f’’B¯!Í{¯C*iÎ‚\Z\"Õàcå9ÐÉq¯L£Ô¬¯¥· ä*7p¯€Oð6¼S`Žníôð±jó°ðV…FmTª`ü¢b3&¯….ÃjÓãÝ¤(qSjÃp!puÝzI0J\0‡øÙ&\\Ar¯¤Ö¾v“ü°æW¤µ^Ü¨ºÜ/„,¨G‰pÀú»Äßœ¯¬ã@d†îÇÃŸ-ÞÈ§Ò›‚°Òx­ÀÿºFkbûsàz¯¯X¤˜h‹Â%ûMµÏn¢ñcCE+c:Ž¥\0¬eÂôÉ\r–¯°Þª¨ë~„\n€M×w_‹øa<å>VÔXœ\Zlàù5jÀ¯²~d3£ßv_hòi­Ð0â7àÇ§?Ô{e‡&øóÚ©Š¯¸\0ÍÍ\'4n@ñþÃÓÿÌØ\Z¥.ã^ødiŠ$GÙ¯Â6-Ö¢\0¥¯qú®ñxw&a\'vúVçÆÒ§¯æ#ôcÇÊwr†4w³¤¡%}´P,HÿÔÓR(¼°‡¶€ÃT÷©6aúÛ\"@€ðšJÂmÏ l/Ã‰hSÙ° &^SçÞÑh=.éMå\næà6SÛQûãœaHtŽžú°8h•‘ísàÎ]—±\Z´ŸU*Fþ°Rg:ô(¯ÛB\\°L­|Ô‹àÆ\Z/Ë5––Lr¤ñ`[ªRB”Ø™W*_ù5°Ní–^…;Ôë¦&:Â‹ ¸˜\nW1*UëyKeÅ°S¨!ý.!ÍÄð¦ò5C^™žÕÛŒ	Â›±Ä°|vVïu¾ÅMšM=rvƒÂí^\"r-Ž³$€£ãðÍ°ŠUq#\0°ù‡„HD`˜Œôñ>„v±Ôó·+’OëÛé°˜7šùøð®}\\¾:3Ò¹¶\\‰dA®“ye8h@Ü¶°ã¸sCUÚäÜ)åOƒtß¶ôäÎÚ¹/m3R«?Ô°ö¨¤w‰Óù­ÃZLÔ¹ ô«ò£·¢5c„Z÷ñS°û.^\'Úçå‘°†%âûJ(ÊV‡“ /+¨µMèÌé¤±\0ä.yÛ3š6ªx> [/.ÒtT¢]ÃwpX×%þ]£±Ùº~|4uá­û›oÐÝAf\\ÄúQ(¥ážÃ‹±\ZÁ %ßÖ|^¿øÆÄ]ÙéöYØ^úF« #c*(Øë±#œ\n=<Ìeæã^ Ò·\'#Sâ=w‰W| K:Ó\0¦kG±%¿™¹oCàºØ‚lõ\'Á»Nˆ\n–p_·˜ó ÄŽ¨±+$Ýiç7=Íù˜Iû5™·ÙãÙiBÖÜ4<ïÒ±,óÔûFÈ‰g•§M½èÈRhj¶áéY€…Ä±/Ê<)®…šê¨pâQ¶ÊÐš’ç…P_súŠÅZ±0TÙXŒ®Añ’#6{ÈK>Ùù~¨„q¡Iâ=!±486À·Ñ>$ÐVsÊyJy9ËDž \ZÌ_`ºX?4¸±=!ß\\óz—RhpÚ}…¿@ê,ìrâQà!§Uñ±fY5¥u¤¡àÏ±€\nøE›faqÙÒº§¿Z:þÒ±‰…ûÇb¸ßÇLÃn-#[\"6ž1zvi~±Š3g¹F\ZÙ4\Z/ÇÉøÒ—|CýA»b9„gä÷=±ŠØ><P¶0–\r”Ëµ³ê¡Ícš‡+\r*+H¨\n$^Ñ±“¢&>HLi#a\"£´¬ØO¿fßý,Ð8õ±›,M4aµ!÷ƒ_~ÑšâCO×´&…Â8ÒY­:íß_±ÀØ‰üÄú…ðíÿ\'qP—#Å·œŸ[ï¨ðÜ`µ~;±ÇñH¤kMXÖMÒL•`b·…Öÿ›:ø$¹d®ûš\r±Óæ†s«¥Ë>£„§L>\n&”H©Ë¼>#êŒ†Å×7¡±×9\\+Í¿<wCÏÒ}œ\"	º²\nT)Q\\u§:êb&pÅ±äÿ}ó–BH.G—;d\\ZÃáCÏˆ†\Zo/Ýþ±’b±îoï#¦Wø¿×±­.]H>Z*0þüëãoo¾±ý¼±Qwf<É¯]Þòqm¥éf¬‘~µpÅ¼ö=±ýÀLJ‘þá¥hëWgy>¹€Ê!}Yþ,:š„vÎ±ÿ‘yö!tª{eé÷%œYV7CbL–ëŒªO{9¾á²\nßÂˆ.ŸåªÝ5YÆ6èÓ}§oÑŸi-íý(¶~ê²	ÇW÷Ïp`$<õ\\›‰5wJkSf36Ç§Ç›²m‚0*@/ó´úWbožÏwZ•øl\'[‘ÇÙ”\\6²1éiª:—‰©S9\\Á,$Ù’·È<\ruôv2Ê6žFg²Gž,|ã8ÎÚÓîà£Éi1ÿÐ<2Ú,‡8Õá+w²lU™‘ì§yª’u##e«dà	ÐA3Q5‚R»²p1\'rëSl¦¼ùY(7wAä£ãO)FP]™°ÄÄã6²~\"ƒ’åÞÒ?B´wMÒ³(N`Ûq–Ø¯¨©ÍU²””]ÌÒ†\0êêõÿB¸]3ªÈÛ«Å#ÉíÉCàd5F²œC;Ô©yN¹¨¥*)Jý-°ª¯æÞ´1vôj.²¬—¡«¥y‡1¹BÇ·Çqk\n*;zÃÉÝ8jšçÈc²Äñ£üqý#ßc-aPäF©& \\(×1½«ý£(R²ÉÄÈ^´à§å«\rmŸ)áO7•x{@*;ã=³²ÛËÐþ@Šøsâêã³;õJÊ˜[Ô—Iø>~§®Ìö4³\r\Z«ÖÆ$AùCÑSwXZ{ð}»aj†Dû}bÐ9³-œœÏ%«\"ï!N˜Û_)Ô\\š˜¼Á÷*1Ã°ïÜ’³5o3˜–rX\ZÓ&?ý´V\nŸÊ)¼K‘-øãMé$¡³³AéíÍŒ·‡ìk	«Ð/m§ñdæôó¤œÓ²js³EF´<3•Ág“«{\'¢mv~®D¥E‚fM³N¼ôsêî\"*\'7´Ÿ‚p$iºx¿¼”´È­¤vµ³`•öGûÂJÃy•$°:çxty*YÍß°úÌ%ðüì³d«>Ä÷†¼º	¢iìH®º¬ßb$ª&žnèàê6—p\Z³^H\Z&E5CCqÂ%Ò.AB·Ê£VžÚ—åý¿C;³‚7\"ÊA…b¨IYI„\0ç:—)Ñ·Ç¥Ä`wcw³˜\nžNÏIÇÅÖ+Ïa\Zs Lz·fÙÿ#4C\rVvÌ³¢éby:‰ƒ8›3ù³oÞ\Z³õŠ€±æ“ö\"Ú¹ú³¬®ÏŸ?®ó˜Éj¤˜íA’>V\rÖ‹ouºØÐ³¯\\.$kÚ½´¹ÎšŠeÐíh±nËäÝn!!Þ³»µ}§ÇÍi¼K4KTóTb=2UáŠ°OB–¹`‘³Ë³Æ+T¤Àë9]Ëð-!IývãÃs–¦[ýhý˜÷Ï?ðÆ³Ë29“¼{·qKÎ¾¹Ð”ÿ!¡ïI\0žŸ(ñI`³Ó·—Û¯	(î’Ãhs-âÑ™¸G«$%TBy u©³Ø©äþx‡×™;gÒdBŸ]EÓ\rßâr8áùïÏ³â+N+RâfèàÛUPt©	à9áâ™x²ØÙl†œ³æ2ÅªÕ[jÆ—Ih‰¦*é@I=ñƒØh‹¤¢QÛ¦³ìïÑ…0rÃ§\r®bRÊvO~°•nw}ß¯žgK3Õt´§¹e¬$°Dv„­ÞôE£Z6ÔfÑ¸‚+(¾ê)¿Ñ´! åç„\"aDr¡9aC‡53¯§{î„ÿAÖ{ª´*Ñb2KwwqÒ¿¹o&•ðîG°DÍ¢¨a\\ôLôÕ´+^Â	œœÉpü£BJ¶ÝxãÃÈ7Ö?Qá±·£[´=åŒ‚ßÈÕ¥Å^žüàÛü^¿3P²ê¬’s¦´I‡‹!â´Á“>¢°ª@œòY‰Ÿ›{²<§˜´NÒÿ²ùa+âƒžÏ78c*QtÏS,á8Î½Ü\0´T\'µëL¨OOx—üàZ_EÁ1ÕTÊô1¶VîmH´Y7tR~ãçå¶ô‚k”{š™Y‹£ØD+)îàY;´]‹¶‰ì^’Ïe-+‰A¾nõÖò÷5&á¯ù_àÿÖü´q4+SHæxæÄ•{Å?fêÏm3¥¡ÍÈ`êöaó´ˆÖÿteBÄK82Ì½ß×VõånF{âi(¢ù]ÊfÓ´»¡û.#,º‡ÞtŽ\0W&¥–·³‘Ü;yÂc¯ˆŸùª<´½ÔÐqÙÐŒèË2ÄýÚèÑù5Ý¸ç;ˆÍäN†k´Ñþ=xnÒô%þvA ”[¥y8nî\n	(h‚!ú¬e´Ø÷®˜´kbžHkŸµ½ö”ðÇ[b0Qy7ÇŠŒE´Ú3SjzÅ$\ZM]°6Œ˜8€Dz´ù£kTykm|¤-´ãã½@Ã–]y‘%U?œvwXlö^ñ{qÊ´ìD›6¥8…Nó?£%aPÅ§)…]NCÐ1¡Cÿ´íLóŒW\\M!DJ‚y®7Fá(<\n“ÔøoM,Z´ü—ì`1OêYÑï²†A¾Qç°Î2:Á*ì t«Ó\n«ÿµæhO|‰;Ìz(¢Ã‰Š\'ÀËô¥™œ£¥äúµˆ;·wh‘{á#6ú„qY¦}è½æ6GWÈµ!~é÷ëÒ™ZÃ£Ïƒ~SàÔ÷ŒžLKjJ|¨µ4ž¦<Ç&Cn\roÛ¼‹—0+Ë>‡|ÌîPJ€±Pµ*ù m¢ôl¹ó·à@6TÑ•Þý\"Ž¨‹Ò·¯AðlµHŸg¯¾9ÿ‘LÄÔ°Mèôö=w¦:U®K×¥®DµIïHçîÞÖûÙæ &dtM6×ç³&¹Ûµb¡ì8ÿÏZ	k™{Ù<Ù…J“W©ÅÈ~\\ìž¬2µcÃãß\ntÎ®JmI!K3|MÒ1ªõàj¡+ÌH\\èµdyòÖö‚ö†q±œE~’ßƒ!Ü>\'c‰ëªÂsÙtµ³Z*J^Ý;6Ô³\Z~IDÕ®$xÇPÕiAU-µ¿”]†=“—©\rj1•[Wfî%”¿>qpð<ÕŠÏ\n…µÚ¾²)ì Ë^^Èc%¿æW­€£Ïmž’Í$µã:\'bL gÝ}dA	¼,¥r×æô·ÛwKw/á>µêò&z©káÊœjM¹®U:~o‡ãÑh¥}¹5®[µï;ÄRfªñÉˆº5äk_ï÷æjQræªQµõVÛ\'é´ÅdÑM õ2*^äº\0ç\nÉqÍ#\Zä‰©eÞµú²¢ŠÕIÁTv5´Ü„ëSy8û#±¿äGyFâÌ$¶\nr`óèZý¯p¿G‡G*¶\rr\n™è>|õ«èY¶Òw$¼á±\r£G×ë‹W[r¸Xõ<•£æ´{\'¶&”W4x¢°Wç’ª¢Zœ)±Ž\rÔ“(aï¿y{;Ë¶2¬fá°Q˜,ÆòÑáÑ+<·\\\0\\\'™â®	¾ý¶3GÓdÊß¬T”ð²ø*§ú€§ÒÂJ\nÃ^D1šÔo·¶=á$(1æ¦ùŽÉ\rÛ–™/ùzh‘Tç<Íð]’˜¶oÖ:x<UqöPJ‹}PI ÌI]è‘y lÇH\npá¶€uÚ÷!°4ß’íÈÝjFª\nz÷ã\\Wšâ—|ó÷rÓ¶‚bÏ’\0EÖ0+F7üÌš\r–<!-:Z[¯ÏZjäý¶…m`_«»¦õï÷2Í]Ü\"Ú{(4«0{¢Ö£ÀëŽ¶ÃØ}\rq;;)DÍm[Šÿ5­¼!Ú&ç`¦µ¶c¶à>?`(Ý®>Hfü=ð\\ÃT¦-]gžˆr˜”•{ñ¶ÿG[â\Z ÜÑxËÆDs¹uÍ¦ýþÑÞ±Ã4EXD²6·\0„Ü—D“¬áÓCxÞbQf‰rÞ03‰_LAŒ_ÜÈg·\Z~ˆ€.î”¶”‡H0õ®.‰îLì@Û•CìÓ)­·20mzø·{T()1ÖZ5-PqBñá°ÐÒ–MŠ·Gx99d‡ðŒ”äŠNŽûç5“«½8ú\'¿Aá·Ð·vNtvjµö©IÁú?!ù\\\Z\"ó½4áóö<µ4·{}ˆaÐ‘á8a¬;[\Z&+:ý3Wçë¢…?\ry¤·¢ÏQÎ€œÎ·ó!LeÓèŠÃs©¤Eøg#ä\Zwjçt¿#·©¥³W¡å$%[—¡ƒ6åúÓâÀPmª‡´œ\\I¨Y·¸Ó*‹ÒÌ%vbb<J<˜¯süjïÚÄºÔ´Uzäï·º„9ûç¸™;ƒO[x`—à*ã8HÉ*rý.Pì·Ä#Zž‚Öõv¦Š:¼.NÒM­Væèrz$É}ô9ƒ·ÊÜ÷:ßqÐCœ»¬ >,Ñ|’ç4öÇ0F|=­.·Ëá2Ç¥Þ{ÌE[rÄPE~P(^ÉÞ\\>]!·Õrç^8Â¥Z#uð¿ï`íx+I[È0ÙN‰M·ß[xäV\"2ÃûFê¯qçâÃ‡Ãâ“õ“óHÆ•¸4ªí£6#\r0Jš7\0ô[iùõrïB´®Îã-p¸˜ñ*©i²¯Æ­1Õî›{‚×(HÈ ÔŒæD®Ÿ¸ /ðú‘Clgõ’9Nv„ºÜDB\"ÖêìA@%€¸\'+hçLñâ‘ÆÖ^^î+½#e¸)É.æ\\µQäˆ\"‚¸6zƒŠÀ}_T4xæ°ômúaªÂ½#EÉü‰¦Ïï¸>u—ÜáôX˜$={+cÜ§løoÑàTÎ\'.õ—Ž¸E‹“ÞÎî]³á\"f)|ØnsúöM€–dmÚË¸OÑ;v¦Wþ®‡láà+`è`BüÜ\\Ïæ&kkŠýå¸hÌ×iÛïÀÔqÅ…¿ùm	¤Üwb{Ag¿ù/š÷Å¸˜síÃ¤6ÕI-Ò-mŒDW4Ç2ÂŸV•ó9ÊX‘¸™-¯åý¥ÖÔ¡ÊÄýÆž±^©LÒí•GäÍ8ã¸­ÙDC<ÂWöÃFüNµú£B\ZŠ· ‚	{÷yWPJi¸²¿È\Z<@œkÏåqýsa…,jJÛ!ÐwÙSžåá¸µ·¹Þ™Ü)==€)±¸©eFKìx¿:5D9@“¸Ø‚ŠÏ¨\'¦<Mtï©v$d]#ì§›ý¾„ëß¸ãX[nJ•@ÓôÊzv»ŽT\Z0:tð{Á^!=î­Ž¸ãÕùñ.`8GÔ?|Àæ#ÿCˆÕ=ˆ²(Ë6×›¸òiu†h\"KS1©ªüR˜¬Êñ®Ùï+/ÿ;þý¸ûiY–.7/ÚXýèÌM7ž~Y”+ÁÔ/\\‘ì1Åî¹ênçX \ZA°\rÐÒ†àµÌEã÷rÌBèöÈÐ‹g¹%ú½î3ÜÅÇ×³ØE¼q=v,·¶ŸVý\"¶/ÖCê’¹=‘¹Ï8Î¡uâ„P	ÞkÅ‰/óLšAN3Ú)ä¹ECCä¹=ë÷‚Ð\0µ{€×§Ë\"};¥Áé¾¡Œt¹O«ÂÛ÷¾m—_·’ªjWG€ú\\ÆÉábojÀH¹]x!+·>½ÙÜöÔŽ±çÀýzžú¼4¦Jþ1Ð~J¹…Ç9K§mÁ¡ûÁ`§›vØ‹^Ã“GRfñï¹˜òÜ&¤½vcD´€ Oºv‘ÀcQø]¥P=Šãø¹œôöí$aF‰«×jFä&|uPUã¢MeG1ážø£â¹³Ûß¹ã²åãbÛ¥!	¤9~ÕüGgl¯òª¾¨÷È¹ÎÞ3|oµ?ÌD^aÑ@ ç²C—C—õ²ÐN&ÐP¹ïSçtâi²Çz¡r³é{¯cY ©®Gè±ËÁ*3¹÷\0´È‡z¡=†B°£–øl3ƒŠu@šÃ¿c÷´1Ê,Ÿº)ßa)çqÙ¼­qþÄfâõä¾L†›ÿ1ÙÑJ…|b(º#}©\\E†ÕºÂÊ¾¤Õã€—¹ˆŠUù‹Lâ&›…º6o&€‚Ø¡†[ŠöñtJYÕÒ$‰M“ûAØƒ«µ¿q¿úº6©¦\\Y?+c2$Ÿ«Ïòç)6êí¼8*æÈ°:Eº@}æÉzPWE4Rýc	Ä‰ðÿÛ“jïÚ”\'ÄnšºMþ}9É`ñAR)õ’’¯y€©Æ$±*[óØÀ|¶ËºVB&ipU¦ ™.—âVi“Ëtt‘]÷\\;HÛIºdÝDpp’øSìóð’²Ás°J£‘Ç¢–\ZòC2]ºhšä?³Ý±Ö†–~8žÙl©Èª4,Çž?ð´ºˆlÿkJã™¸3g>˜‚ËÚ·ÀdGzfwSCå<º§v®Ð\0ëæf{¢æ8:¥Û\Z…\09Aô©øB-¨º®\\±Ÿ\"î‹R·ËLFÌvÉ©Æ¡-×&i¢§õöºµÿ˜N±JŽ)–áÅñs¼¶+Á£áNüôm–ºÝÃugÎhƒ2%€é.¡g¸™0¸ú¦¹KÊõ²‚>âºäœG£ÿ€.P@Já3t–B¨k¼÷„ÓÃD|$ƒTðs	ºý$Yš„¶Ÿb\"Ò)òªHzdººÒå<÷Ÿ–ÿÒ»#žà©ya\\©Ú«:Kè€B Ë8ÉÙco4™ÚÔ>G–»1J£`¯ÁZ§·©ŽI=³ôcBfeµÆ·C„\0«»22ï§Á²Jn§óM†°ìF¢Æ2ð¸Á¾Ñxü<ŽÆŒ»6&FµL\r‘Ýÿ<\ZRº#ìº£Ldp=è@fIWðX•\"»MBÞ1ÐQwoX4bx±c)@DŽË¥°Îk»aÅË¯|9Y\"ô”ˆÝi‰¦*éUšùL<6\'I>·»b–5pª<õeëZ¡ps³Ð}ÿ[ŒÉY!°¤šmÇ#»eçölp·¦Î.x©º\0¨mxP/d;sT¦­s¥Mµ=»jì%Ú0žbïÙNøtR&y­.ªûsE¦£¬$i»l¯ž{Óy¸Ú#”ÍÜ]iÔFÇÈFç3JÐ=¼{$ Ë»/Ê8&ˆƒïså3o‚˜¿ôü,\nß°ñ½j˜ë<»BHþ@?’ a±ã‡ÀãÓýŽÿõÖg­Þj%²a¹ó»†ÊY\"p§ÐÿýåÕk“²„bóñ}ñ»ßëqB„ôùŒ}»›,?×ò]š¿š/ë1ü{¨–¨‰õÖÆ„Ú/ë:QÞ»ª®ÇvÊõí>rr)qåAoè\rË:;(S>»´ûB­!VÈ5Rþ_Bµx< |9Ä\'bL*^»¹Ã÷÷Z\n·’’\\È©ñ³Ä|òÐÉkZ‰=¿™\"»ï”CÊý(k\"!ë™Û~°5ž3¿´ñ…üÔ\r€Ï›$L»ót»*1×3×p8A„ñt#Ý†¨?]áðDwšŸ_¼¼X§Y5hn.ßc…e›\"ÉÓŒ­	Ÿ„\ZSÉö¼–ÇÜ:Éáþv´B¾ié7JÌ7Î]1¨kÒk©1GÂ¼,`|]$9æ`ª,ôûw\r>®­-±Wû¹Ú7*ë¼ç<:‹’gjö6– Tz30Â8°Xháµ^~mÏ~¼ Ùu×µ´Þ„¹†È22’RYŸRP4H9‘ÂOý}X¼c@P¼`ù2Ñ_°ÍPVb–BÈ­ItJ Ì€r¼{O§sîò\r¶ùê®é–A¡Í3ó³Ç¢j!8‡ø}ý¼›ù¨¾c×GñJÛË´ `’nØ˜¹Uœ’¼\nš÷=¬±¼¢øIµ»¯Èn}\'þ`C˜5Öš%ý{·A™ûš/Ð^¼®çr€)·prAJB‡QÿvÂepþï÷)Ì ïRŸ™¼½Ny¼ŠÄH¿°ïy+3‹H(H^’e½E1ô”oóy¼ßÖŒHFÏõÐùY?\nŒÕü}VµÖ„é­˜n¶érô¼ÿ\0v1£êsÔNí>cIDÙ¦¾Ö„Ié­0ÿ-½*âFãÐ:®£Ã…=IH\'x“â\\\"ÃÐ\'‘³:½*;:ÈÇÝj»lÔ3 0d€âscîŠ©\0q|KF½0šŒ_qùå­YsBK¥bÖ·b®ñ(±7^:ÿÅË½2‹dl@üWHÅñÖwÝ\0™€	wWœK9˜“‚¥ŠÙ½3C,wÅõ’è³WÌ‘Å>ª¸\n›c6i·Sú!‚àº‰½Y8V#r«Q‚$[)‡¼zºnÃ¡œW;¿»WÑ Ý¥½`¡–§WÔAA\Zò!sn?RÓv¶à˜ºmð}aäxÖ{½o€Jó™á¨·N¥5qäÚK­õ†ÔZ_Íé©VÌ#Œí½pÜW£Í]BS7÷Šjˆ YË4òci…³–AíW»\\ÎÀ½~Y–õW4‰Í#a0Ó<ùg|.J¥øºDS‘ôy·à\0a½¿e¼®ƒ÷æãÔ¦G9~½rsÈjJÐ‘OÆè½Â}ÜÜÕ5á›eÿ3¹Ù3ÁŽmhyDæŒQ(½Ä¤àg^ÏLØ\\FëqA\"òÇäýÃ’Á@ï½Ò€Ç[;žK¨kq?Bæ†yÆ:P\r\0ˆË!—‹EáÃ½Ò#¶‘äMOz«þqšƒŽ~…íÎ“8é°,Äõ„°½ÕŸÿÌ/äÞ¸j!TˆŽ¡¸«ãNTØ­¡×	Óâ“½ä…¬+.SÉ^Q’iÍ¦š&Ã·êÞYX1\"”ýƒì½çŒIÛ+rÏ|ÙwÔÍ‚T1a>00nio½ú+Ë\Zòoo`üyfúnÑyÃ=CÑÎúÕª8:÷Î¾eZT£‡ÕWÍ0w XÜ$âq/Â£‚1Ž»„½S4¾ûiÔj#ìDÏê¦Ë]”ÐUuºü¤_ˆÉ(KÁ¾œ-‘„«ÿÒÇn´D(@½ˆÿ¸º&éƒ6Þo¹Zä&µ¾$ÂÆbÐ³¡XâŽ\\mfkJã—Ú“­IÂçŠÊBá¾(ð)°&.£}‘_æjÎh®F(®™œÖ«‚ä”ö]¾*|WjuýÅt.!\Zf=Î>/Î\'ñ¦ü„^O‡•o¡¬ÓE¾;3\'Ü(?¾óŸG>cgÊxªW‘Ê¡§ÌV-ïEê¾ArDx±Á•+žè+`Õc`¨/[¦Î‚î-ùJëHÚn¾OQ™…þ†„_÷*‡}ã£ƒ³ÜŒ£Ž€ýâ|¹¾QÐ‘¶\rq-F‰äóVÆ0´€šˆ@¶¹¦ä•âÚ¾TÙ†ùìÑÊ\nÞZ–•~ \Zó—,oÁ{õÀþl[¾UÖø«·E¢X}AJv¸d\Z´¿<`eaÀ¨÷¼¾X»ì9$GoÆÏ)åÍÕ¸r?SŽ´”*Ð8ŒqÂ¾}¶¬=3xûA9¼ªñËl«p\0‚Æ°Ó9e.O¾¬m¯)qpùìßôpJÃNnxh\Z‰a±Ä? Ã4š¾¶áø»FsfYØ2X7\n¼@k%|/å@J:y¶$Lq¾¸rh)uF@1ãþƒã¤ùƒËž–o”ßA<îæüTQãÇ¿\rù94Jbä© ³rª1øõÝLL¬ƒ†“Ù£d‡¿îO^,ØRºô§N¾sSnì/Ä§¨ot²öUö¤¯þ¿$D_‘ýP!ã†d\0LpÂOk7õNlû²ØLn\nq¿&x2„ã´Ûå*Ôn¼;Y{šíÀuDWß[Š–dêgý{¿dœ ÊBïsÈûùn·ü‚½ˆ9¿­“içãS*LDE¿$ùƒƒüApf­–l_:YTÜ^,FdÎ”‹PÁÜg¶E¿˜ÌƒV˜À§ëíÿ÷¥õš@P¡8øí‚S0šJÈª¿Œ’¨¨\"¤€>0ßmT¾‘â°ÍÞÿÖ!ã\ZÙí¡9A¿¥)Z/ˆÔ@¦·*ˆ6ñyêR7,ä“¡DÁà¿¢FÙflðª~£0#´F¶©y®Wy©•$ÁÀƒ-¿«„\rm–îèÔ}QÏ4%{Ëâ°{`ƒ\"2nEÝ*V$‹¿Ê·Òx¡c‹RYK¹¦S¿«M¶´‡O-ÝvY¥› Îð|¿ÐþÏIÆ€^Q.a²W(f›Ë¿b\n‰;UB¿ÞÃgùnÂ½ŠÂEã•9À¾[9­|<C+~î¸T¡”¿æRBE÷´ ÏüÐnH.ÑVR3+Ö½½fjÂv„“5¿ìû+i#\"iR,k2qÏX¿8	Ö ,It8™¯Ò‚ßYî¿òUNê*‚>F‘ZÐ’ý-úzµ¹ÊÁ	Ì‘²TûgqœÀüŒÿ’Ü§G8)¡NÜ*è¹‰àèü*01ð‹G9À!1òßåÅ}¾WŒ«F°8¬|ŽVaÿØópVâ\Z2ìÀ$R9Lž‰ÖG&m”[¶Óp(šf$ÊRËÎzXÕÀZ8t„§þÏ80pV¢Ûg<é\n¢­E:0o?ò%À“”Ú¡cÖàOˆ\\Þ±Dið¹¸c,7[8ƒNGs?À é×Êÿ3¤ÌU‘Qf~‡-X5ÚÞ\rJËVæÚÇÀ£-ðˆ«c%#ïepž~ÀÖ8Ïš]kÎd÷nOÀ§æE‰Å¢”¤7˜¨?>¹»AòÉ2N†pñ$u³ÄÀ»ÖpŠƒ6Y¸¸`È»Íÿþ#¹vñ˜Rë0u^®þ/ÏÀ¼\'~,·èÊÛsJÌû$¤·òTl>6ÖH<ÀÀoBr[¯é°n×¬©*ÂªX¨zâ‘\"ÃÊ£›YÅÀË_£à”¯<‡³â‹\'}§™Í@iÉÀXÀ¼¢^kÀ×VQÄþà=Ê§‹!Îàùá¯ìô±d€~¹+ËOÛÀê½Åiígi!ßÇøÌHÆ\n\nu+o}¢Ð¯n€“À¹£Àë¹˜¹[€ÉhD—e–(¯ÞfO¤[Ï“v¡À÷©\ZædŽÇïq|j?RŽN>‡AA¸{z=Î\0t÷ÅÀúWs	aÝýiÕùi¿W[/;´‹q‡P~ëSr|žÀúL¾¹ü8ÇeßV@Ë5œœœ Ãè]Äû”U°žVÁ1Nk™ÀÔ†	§3OÊ‚ÑÂÙ„“ò9kÇ‹L[ÁAS\Z3H	ÂÕQ9Í³o³@h_¯Ú!1S/£èxÁB‰« ô øMWŽXr0aF•ôd{Q¿x‘ïÉ`´âÁS³‚8,ß^+î¾\\é¯Û\")>(JãêÎû‹,ý­e¢ðÁhè=Úá›U—P|ç…?Å7¿²ÚÑTvA2YB¼\\_ŠÁ†‹´dÕaê¥åŒ!›\"“QYPÂï56#ÿ*Á­Oy½Ô¬,°œs2Œæê˜áx§pFõ—T-o¢Á°u	ªTTï>ñ…&W‡Øm¿_îxËÐ˜4rþkƒ)ÁÀqºuÛëF¦@IetÊ°·K¦c5gr§µžk¯Ù¾ ÁóS–d¶1DS²™ËëZ‡Ûó”ü–½\"¿¹:4é¸Áú¿KLJ_JšÑýA<ÿD†Æ„±±È$ÎÕ&–€lSÂR¡ÎsïËGW²ÔÄ—TÜó\ZZâ¾Ô%²À´ëªÂu¹Ý_¨÷H\"È®¤ïßV~	0‡“Š0ÎjÂHbÐ½‘\'ö`”/Þƒ}XÓ3ª\n ßD{|À²‡	ÂQäýaK0Rb=µô¨â«Ñ¶Xï×®,c\n5iªk¢ÂhâaßŒ5©úÕ>tÙŒ¸^8B’rZâ¤`^Â‹ã=1¢{KÒôÃ	œ¬~žØ¸1„`\"ìL„\\|›Â–w.Dk€ <Àÿ„á d¯Ãðžúr‰¢Ojñ³Â¼·ª¤Úƒ(éÅý°)#}µŒžGùl°Jv)Â¿<Î~üÍ°zuùh,yqpåhÓÁ½O3A(æYÂÕ-!V°»>d¦*jPŒFÝ	È;QÆµ±šN1aGœ(Âþ)Šsâ³0J/®¸@Ù(rO| A®>m¿¨/[ŒÍÃà*nB_ûRG-·YX‚Î/ÂŠ”ŽZŸKî¹qÔ0ÃÐ$…ÑHÂ‡¢ÛÊÝ]po=\'søþÊX&Í‹EˆÓ;\ZÃâ%¢*Çjµf…/Æi¬>‡;õ	àZ¸ó¿\0¡¾Ã*sˆ\n¶7)ùþ]Vl^BÃñü—>ææî¬þœ¡ŽÃ-Êt@“€^~¿«×Wá-æðO&4#Ãh{àIlòÃ1ø@—lhbù¢®T7a+¯ÄÄÖy$½ý[Êã«7´·ÃB¤7kÍ¾3žµ’K³¾Ëd\0Ö.eÀ‹½^7AAßâÃR&DúGm1eEšê¿:Ã¢íõ©…¡s®êl”ÌïÃ\\ÇKÇŠ­œÁmîÖb\0™V€Ù96 ¸—\'¼?ÐnH‹Ã‰ÅvÙÒÎþp\Zß¾€­©Váú‚ÛˆZ6ñj¬j€Ã‹ã±H%¦ÿf¦VŸÖ—·ôM^´Åÿ^4Ì\Z°£Ã™ÝôàK¯»;°JwœHúä½)¨´®KùK¥fÃÏÎÛ•t}ƒ‡y%Jnâ„æí<ñ†~ö…\Z­jéÃ¦g³½Ämp(_ÂYN³Œj‚s>šþ¶¦ÂESiÃ²\"æÛÓƒÆ‹»äÝ—T^ôÞ‚¨‡¤µÿwû ”ÃÎð]EÔ«è½™â.ßF=|²ÍòÀñÕÖÞàÃù!.Üs?¿†g6G8§ ‘\\2x™_ÊÜáì5\'ÈÁÎÃýí•V?\rå&ó²ÚÌEHDu`¤FŸ2¦<Ë\"hÄÌ×Ö­ú¿€²ÑÖK€Ã&RsÄfiK$øcó”—N\ZhÄ	9ÿÒ­’¶dÐˆV¾÷oß¡c¢8Q§š1E/Ê=¥Ä\rX ¦Ýƒ	h^Ö/÷WXgjU@Ú6%±›0I\r÷Äâ¼ÛD4e6ƒSðo5RéZfÞ±îÒ<Å¸vÆÄ Á0 ¸¡“!!ò×õNÇæ’Ö¢Æ½Kr=ß)4ƒuÄ+v‡Dö·>ÖÜm\0Ùü‹Š³Òa)Èä7t2ŠÍ«AÄ:®õ©ÑäðÁ‡yLÂª%XÜš¿lYDºøŽÓ}Ä;7sÌ»Æªû±„ô²?ýð±£ìÖÃ­sÍ©5DÌÄL Qù¦\n(vÆy×eîÚr	6sÍÙÿ5Q¡Z_^mÄ]®#knn\r¨¦ÙÄñ)Ö1­:¨\réxÅù¿g	àÄl¨!÷¬Øœ„S\Zñ©»c/$.BE½k\'ZFyö|ÿAº¡ÄvPUIEAL`¬ L_ùá2,õMtÖ)oáf.Èz%Ä“©.ÿp!ih08¹ÌnædÚ7Mûlþ›òTçR ßÄ•†Íx\'ªu~zŠ‚¨­…¢e|º\\EèÄvÓ2r·òÄœÐv 7“¢g‹iU÷eÞ«tÈ¾¤!Í“<Aßa‰OgÄžŒÇ‘ãK]Q_örŠoÐØèžXÏ³.úÚoÔÄÈáAÌ³\r÷ÌîÙÙ]y ëÅ~1]	L(p_ÇÇ¼Ää] p^´†‹8È×cL‰Ó™®nõåR…Í\0ŸRÄåÜ\Z\"Ôö\r h÷àz\ZªE£’S)nnMRŒaÅ\ZpK3=V#ejài×N<’VüÀ]À¶\Z˜År¶”?ÊÉ_}ƒŠ9z¹ÐÁÒÛfi·•`âÅ.=ÿ»m˜\Z¨Åláa<c†GBžÃ\"$§–¤â)ŽÅ8¤Æ$W–ä**„fè±S/‰,Hóãk!]\ZjqÅBàlãú¹À°Gu%ö?ncÖòfd•vä¶ßêädÅGB–wÛ«ÕiJºOà×¨Zì@ž-½.³qòÅHØx7©©û®¡„\0Ä;¯4\0•Þ\ZÝoÖRD­•\ZÅJµÏÉv\"ª(pŠ­·Í{vƒ;÷fË‹ ö&UuÖuÅUÿ^$dÌ`ã·ÏóŒvŒî7îfErRÇ-üyÂÐÅVß*‰Lg®ÅbJù„êxÈß.g0Vìƒ»ZesWTmÅ^²\"¾‚Q»ÑœG(Í¢Ûe²Kü@^¦(1ðÖ]! \'\\Ås™¿rKªSÛáèÐ#A€/\\Â\n¡óÍ\Z\0Šc|fýfÁÅ™<TÄ>ü]|O½ÃÖ\n\'ª¬ØÔ$KŒ¯#\"jñ,û”‹Å›<=ª!Ó-uWï=«T\0ùc¥á„’ËF`”±×¹Å¦O­´\røÃ¹¢+¾\0½Aö\nN8øø¶Œ5pÅÂ BŒb÷tVV:Ï¨<(ôîyŒÄk^¼ƒm¼<üÅÆì¦e•é6€am÷Ô®œîäúR%M1;–¤ÅÑèzDk16§âˆƒ\r BXÑš˜§z°y¡õÞ—ÿÅï@t†!0¦%äÚ/;¤+(Ý€ït\Z•Uô)ü²ÅñŠátäÿÎ	-²¦b[í)>°×\Z\r¾Ðgó¬6ÅúÚß·\\‘qÅ÷-w\'ÅHBàöKùt99ÛJmÎæü|qÆHƒ\n© w28+ÝÃl r®Ÿ¶oëP@üs>L×{¢Æ4`ôDÐÓMï¼ÈçÒêµåoœ°aâYÃãmù€ytºÉÆP*ôÁ\nDÕ³0AA\n·k´z}Ñ*ç‚$üc†ÆSÑ)KxX€®1ÙÿØ×Ó¼©¢ÅËÉÝ~ÁðÆbÀüÓÝ¥ÿÏ9½wEE3ƒ²ÌÉ|:Gä¦u,vÆlÈ¾lÁ™td±¢“A±4fè–ÂÁ@HÙòÑeXqŸÆ\Zd% \nØö[ÑKn®Ž0ÁóÖ!ò–õ&^¶ØpÆ„+ø•ßÜn‰T\0¹•ìo<\\?³Õ_.,¹OÓ”UÆfBÌäŽà±ÂÆCöÝ<Z¾x0‡ÍÙÏè­ƒÆœ¾î´5-ÀZd«Â“n3ÊI×ÜÍ\rC¬Ï\ZHùücAÆ¨žf}û¸À>^zûT«RsEyø»º:ßvÀÊ‹8Æ¯—<å„1¶´Ö³Šðƒ-…Pßf@ˆ§GÊ\rGàµyÆ´.× g]¬Jz¶ƒ•`’™Ø½¥­$LóKf‘<ÑÆ´sfçO–CÔ|u…Ìt=)ó´ü«k% ¤Ya”@Æº\Z4‚_î9lRâÔkU›¯k\rP\'7¸Á/^âÆÓÅ³tÑF\\Ì\r€?¶ævÃÑôWCYn•qCÝÿ}8|ÆáMÓ\\¡“<d^ï\"Ä…’9Þ•„A†¤Â„N‰Ä”ùÆæªòœœ é\\bæZá‘_¯u¢C¹,PI1à[\0å2‰_Æè³H9zn©Dž¨	¹·•rY[œ¸áÖ\"?¡\"ÄZÇÿŠcñ¦±¯°gœ\rÜ~ òÒÇVÚáƒ5?ÈBÔÇ $ýi1aî0EQèaQ›‡¾â“Ý2¤šFÐ\\>0Ç/á.…€\nwŠÇ\'”‰O-\\mo}%-“¨\0ïŽ¥{ºÇ@—£Á\nˆ{éÞ	Ý’Ûéõ­åS/Ç-6RÆÓŠèØ\0·ÇOeL¤oXr\ZÛÖ´QJóæ¾¥eš”:¢PöÞ\r(uÇY\nç—¬ó™}K´ÅÀñ‚ÇÂ³öZ?¬Aâ’,\Z©ÇYáêum¥ÚËÞ<slMÆaPL/é«+v™wdäÇSÔzéÔQÍc\\ìN–õó§äæ~(fZFÄJî‘~\n<Ç”ŠYðMÙgE+ÞUäXÛ57·HE´¦htÉ6¢îsŽÇ£º@x?ãÐLû·HeßxºÝ¸q’º*Õº„¸ÇÇa.‚ýdNG÷í¦kN×šíPõ\'“hH>[Ò°ÇÑÂ[g¤¤-éÂdû­9#	‡35¶{¢ñ¢¾êGg{ØtÇßöÁ<ï¹y‘SÝ€ùà<Ÿ³†NÏç!)ñvÒÑÇêÄ¢m%ÑQHšy\0Ör|}´D‹ÌÜô{Jy3W6;Çì§øXù³^Ô\'€P¯1|Ñ€8&dàÄ–KÑ]ÇÈ	’ÒÅä©ÀE4vó÷ú×Û¬„Š€>t&gâkÈ\"ŠºÎ\r¥+´í»fUºÊ°4ØxY¹*RÄÞl¼Õ£zÈUªcÀë\n5¸K™™‘€éÈ··»»84]$Ë0T`1ÈoôFûÅ\"—¯&Ô\"9 ªÜÄ(ìœízÎ&ÎåÌ±ÈuÃÒÆ§åÆçžÛcîáó¯uÔj…ÍÓ„líûtóÈƒoîg•´‚Q’—„ÑíýfåùßðìEñ¸-fãÈˆ„ØIy\0]QÈá¼£¤Þ(™í®ÿüïÍ²ñÈ³­°(à^zqp}Ù³·?è‰{.’ò¼†Õ™GÇñp€Èµ0”•8ÐÈS9ºM\\Ô1Ö´nƒáž Á/{³†4È»IŸßÅ”»qÒdÂœÜ<ÚPlÙmüì,9/,†I;?%ÈÀû½y[.]_zºÕaZ%ÛUò$DW-ê{Îü};¹yÈÁ*¤0Õ›sÓ:@Ò&¡O\nÎÑov#žÏ½0ÝÅD#‘ÈÉ#²âa~Â7ÔºM‰ñÞ§/<]¹ÃçFtãÍÖÉ\"ÉO`3±è‘ñòvTlËïÎŽ§Â‹\rG˜ÞW«õ6É,®Îƒ_¤šœ{â*‚O%E»ƒûHL\rjòMÉDÑŸÃb³SF\\žv©¶l%\'ÏÍ°^³3ÉEŸ>ëúË‘§ÁYÃÀ,XñóžäšRk¡õø2˜úÉI?~Ê4÷»ß]4¯ûÇ‡ŸK‚­Fªý\"v«I(ÉQLéO”¢Àí’P »÷¯£(çû“ðèmŸÏ|9p¼ÉYËuc¨‚?-ÚâüþÌÉÆFí½ÀÙ=Dq÷¸JkfŸÉ¢úÂ::Kqî©³‰é¦3‰úŸ5ÆFûpu@ÿøÉ®am†€È™§@•DŒ²m¤PØå”óÿJ‹ë¢É¯	j[IY|Ô²ìªb‘X$n°´…G>Ž‚²ÉLIÉ¯O3e–ÍF»Ôã›†·Öv+¨ãÀð.r/Ü>Ÿ,É´ß10RzÊµ°†g\ZßÔ‘7¤„ùÈ²ÓûàÊª%áœËB]gë\"`.EÉ¢q§’²çª×à-C·ÎÖÊÚ9šúÿ6q ë„<R†_‰Á\n‚YBbÖñëÄS\"¹BÊ-+GãQ×JÍ2²ÙÙ~snmàª1+ufÁ\'sOdÊNðtk½«9^{¬­ýsx*Xà®\nŠ—ßb¶s‚¢é·ÊQÝh\Z÷P?ôÒL·±°y§8úß&‰>ûÚI¬¦B+ƒaÊwqËïŒ\\…ÊN];L?sBisíØƒòóï(Ü€ÊzHú»Oˆ±?ªÑÛ·¬‚GØÛ Ô™Ñ>Zÿ“	œ~êÊƒÄãýyÒg-ÒéŒGyv»mëÿ\"å”GB&i¾7qÊ¥™¶v2œËZ‡ùÀ}K_³	Þj¸ÑæI™l0”9ÂRÊ±~o©ã2\0“?S©V=«­÷¨ZÌæÁßs‘ñÊÆLMkþ·;PÉhJK{’+âf‰0Ö|°#½›8•:kÊÏ¢efËíH>ñ\\­p¬V)ìÉ$|xÞ<S¼¼ÊßéÅý ùòßªGGß0hø‰ÁdâréŽ„…\nl§jßÊãs!¥Î~éøBÍOlÚ;iïKe?¨>VP®bAªÊåyí¢+ÚÕL/S©ÕŒ‹$.öbnëeÍžBªÊî‚xÙM»–gòàþFÑhäWõÛ~d\\Ó1ÉaÙ\n§ÊôTp@æÂÇ˜vDz|¶3E6’Eð¸	jö\\ÄP¹¶(ËgßÚCüŽ?à#ÌÓ$/ëñªT‡¤«èA}åû\\ËDUÚ¹^˜±ŠŽ\\æ¢ÛmïÅ$ÿ·Io¢*áº¾V\0Ë!ë[… šÿ#àÙÞ‡´*\Z«mhø¿¥p»ƒ6¯oË2&™ô\\+ÜþÈ\0P<IYM ¦v¯ž\"ó¡	¸ªªXË8Ídˆ9#×ZËÑoÏó\nT¤#ÿŒtÿ‹Æ9rd77¾Ë:²¿Ø#!”ºµ]6î†£I´03û—ÇÑÑµŽ†!RYË=~×Šu(î,£·\rºD¹íjTæÎûO®‹•~\"ÙLËBUx£ØÄlrXw¶c¬ë<Àz!\n’bïOð¦¹ËpÁ¿L35pD^8ÁDX‰ŒÚ#qÖ»ê«Þ\'ùfƒêÙËsÎû.ˆ¡„ü‡3Å7n“µ¾ðeÆíg]{N j˜èHËñã.N!¢­q?M£†Ë*Æ]Ùá-£ y3,4P9Æ•ËŠ“%(½½º³Ô|Óâ›©µœÚÝvq\0½å}Éêí\\lnË 9‘ÕýHŠœÇ±€Uh¸LgNÄ{1W(–w£\nÛË¶bûÒÌaÂÕt›+ó¡f§lmò:óäÙßó²‡ËºC¡ûÁ„ü\\Õ=•vp°¬OÃWó )‡ë[îÐ¡M†ËÅÍç2êÞS˜­éÝS{zb½þ-ïÍ¨¤ËÓ4]?¥^Dk=3š!©Z=	©ÿÐkÄñBÂ§´«ÃéÍËÕ*P²¢yX&%¾0VõúÉÚþ¢>\0ÙVûKNËô\"KP´¸K…/+¡Ýˆ«R$ùfßö!ë>ŸÉ7ËôMiéØì_‚\"ª4†ŠÝ	»»ZgÈþ®ŠƒÑ\"aËôxh\"‘‚Œ’\'M÷iø5á5LˆÞÒÆÙ)ƒê¬\\eËûŒVAÎåšÊáþí7”Äø©rdÅÆmÊÄ¶beÌúT¼©»Ó,Œ÷î—WMz(²¾Ç=ÇŒ	ß<Ì5å/Ÿ#P…N g×z\Z´&°Œ¦Æx½Š­?49Ì<c\'‰c:y4ÎOg8Ä²FèG\0\nÖ£Z7|öÌAqú+SO\rÎzÌ~(ÇfÆY²êàaÏÎ¹ý£y=A\r¡Ì`œ•]Æ¢ VÇ]¦„×)#–ûÂdÙOŒX1¶¤rÌeT8k“,Á—YžàÁh\\ÀºcµúYNµ›ÌiT7v1§X~J¢©£´éƒõ÷¨ê=_[i„\riJéÌq¬Ío2æÒ‹eŒ}¤±ÙXto|zJHãŸÞ°žæ>Ì†FÃ±Ã„#\rb4Á8îæL•IŸÛµ©?á2™}ÌŽ 1‡B›èSÞøîb`;\0&:Tuð%°f^Ú5Ì“>-Pc/s‘rtæ§)¬ÐxK>òl$,¥\Z±´øŸÌš×çQÕ\0uû4J47²Á:ÿ\"R,6´µÎ\0\\¼–Ì¨†tž«…X\'×JÜ³Úaióøm¼é>#MˆeÖÈÌµò¶ £±‰Ý*Ìo2Òd»‘¾*_6œ¤øc\nzpÌøÌ¸ä\0è¦SE‹6§‰pÓúþ—æOx4`!àÍòÌÑqÀJÞ±³¯e Xí¾¬{~k¤¿\0aÖ’9¢ïpA¶ÌÛ&¿ažÑ&Jù_ÌÚÊ\"OŠTaÎ\n¹ž­SñÝÈø.ÌÝÆ7Ä®Xþê¹è`j\n¥föÊ}‚DåEr½ÌñF þý¤Jï?¾CÁöËNÐ¢´rÉ7ÞÔe§AÌôVk¥Âƒ];ûYÐ¿Eä™¡m6%\\‚3deœÍ\n¬uŠ8K°8BT×I)–›ÛW\'÷–À„Ž³|ª=Í«]m8Å‰”­n-`¦u–&ŠtÊîßœ¢â‰ÃSáuÍ¼j2€kpæWì6—{0@\n-“¤¥µt9Í$·-ÏVrTÂsYÝ¥¬/÷Øåˆh)ð£`ô6¹Í3\nç\0fByj­Zi„Û\n°FŸØºØÞ\0Ö Âµ#Í7Øf„¢œêÔøhCaT\"Ñ‘^>2„–´^~\"¹Œ-ÍI-.—§¼\r’Q1*aä÷	D.Ž…6¬ŽÝÍOGÔ\npÌQjÁ×‘8ô.q}PæÒ©ËJ:hQÍyyf\\uñ¦á:ôÑ66k<¿RV8:xêÊËÈ‘ÅÍˆ{g-¿Z}³ü^0:‘~¦É+Ã>‰x[¨ÇPÍ¨œë—8àQòÌï\\äùÐfM­JÖý’õþ¾¦‘¡ÍÃJª8¾šGš–\"œçƒŽN/6åÊj–)RVñ9¦§ ËÍÊyOóñRv‚ÛnXÄ3§f%0y8x{¯NoÙ:KÍÑ°—¥y+î!·1š±ŒîE†æåÃ€í\'¼¿ÎU¨¡ÊÍàÞ %Ix¼ž½„`¿ù»²’ÑLbðÉšÜ[_I%®¨¬Íä×Ç†m_‰|SL¬•¼ hŸaÑ\'\n¹Ð	(Ó\ZÍõ\"f_Åi\\µ›ƒÂG=X¶1±å¼!5»4ÂVÐ?g÷ÐÎ!Ù©ö!_#‚ûü*Ç“³Úç¶B	:¥ý’_Î$ÔÌ»°{Ï›àÊî‰@]˜ÓŽÁSŸÆC\0Ôà3éx—ŒÎG²÷X]×¸j%¢«=%ûï<ÛIÑ€çhV8qW£‹ÎSœ§Øè\ZN½ß| \"ˆhek•>t¾3Sÿm*3ªÎ^ñe®9|#Uê«6UOµµ¼ñþTb¾àìo¡¥~ÎsÅ/Üâñ‹.y±N+4[xV¼˜5·+D”\" žG{\\Îu-TÆ©ºÅØ\\XÛi·…ˆýÁ{Þ !7)÷Î{d£2SØõ¡¬¥¸gzfÄžóMJú±KKY1ã¢Î‡^\nÄb—‚q<v`x¶ä£K¤£ÁZ—WŽÏ>°GwÖÕÎŽÆuæÜLÒ%ç\0ý‰ì“ûƒÁÊÍï±ÏM0û@Î•¿NÐ:ù9ÉÿR¯}³5U\\Ÿû_ƒ…^s\nÈ|úÎÎ—¡ù)ŒnS&[{T.€·6Yãîi*¯H¯óó³çY_Î¨š4û—O¿¦o„„¬·aRË¯§«^Nrk/5âÎ­wJ.Ö¹¡‡Òˆrï²úá~Ñów=4ŸjØÌÈÓÎ®Oœ†O®ìyƒÂ#M¨«PìuæbT2.tÝ‰Ù°Î®Þ¸F¯\Zg¨T °‘ËïäiÈ†0bòwôiñ¸ÎÚ·{…¼ž½ÂÖ0EÿÖÎ–×¸@ó¬KxÏé :ÎßIL™ÇíŸ\0Æš›Ÿ|„Cþ–Ô	&M6é\"E;Îúâ²ži«`¨n7Ì(ü}å¬ú9‚/ø#T˜?ÏDP¿X`þd¡Ó‚®óã|ÚÑ›:Â’D˜3ãCÅSÏ d‰ó`ò¯ž+4šYê;Y®ÆZZtõð#}ÏCŒklS“´tÃUa\"6ôkHD…¢¢UŠ·xKU¶>5›ÅÏJÊ§ê·-ŽL‡E»{_Eƒ¹ñ\0§	ú©RB¥}êÏNÅs®EC‹%ÎÎ\'õÛ“ßŸRf¥?’\rˆÄÍÀÏU¸neˆÐù“\"Ÿ4ˆˆØ\0Cp/à5éûÌý|ùÏX@ãºªÿûgpü.§¶\nÀ5_ãUqÚ s?K3ŒÏ^ñkÇ§!ð\0Þ¼LÍÞ½\r‘b•Õ£çÝ­,Ïl™uÝš·àÅ>Ê-´:„‰[BÇ“|*ïC–Ç£@Ï‡8Ù7!ÒÚ\" (åRÏ‹‚–2\r\Za­DDŒ{…oàÏŒž=_}³+~òæ½èÀÎ(Èže¤ìvrC[mâKÏ¹ò%è™¬Yu{].ñîøØ×’d¢.˜Ð@†·ÏÏ¸›ö$ý¸âaÎŽ5Q¿¹ÃÖc¸›ã‰Vjv…`dÏèÈŒ÷mm„Y³×ÀQ,|¼:´K’Ê’º%¥DLÐ#Êübå´XWbºpú?²Íÿ\n©Q¸@xËHcëÐ(ïX‹.ÙGùªÇµ^Kõ¡ú,8²®¨úÙb2pÐ*XÈOLëÞa/£öÕèö{Ø’a™·wn\n——yLÐIàF³Þ)|#¢µópš±SŠ“RƒNbTÿ—isÐm¬óT¶ÃJ{)AïoÎÈnÎ;Œ9µ%¸ün[:ÚÐmö‹µútØûÖÉogæ87ÝPÇvÉZ:ÍEF¡¼úÂMÐs,–¶¾æÁì6äÇLb!’G3Jv^5KÊ`GCÐŽÈLÍX]½\'kªÒAûm”]·¾›J7ç½M”B©Ð”‡lWh‘<S§=åª\\ù\"0 €iC™DMÒÞq\Z¯Ð™ ’Böýz\Zã•k VÜÚòw¨n¯áól)\rìÐœT±ÑFC)k|šÆW³jƒÁNÆÉ©Z] /e{Ð²e^½²·K\rŸs ;Söe‰D+ãVc¾ò,/ÔNÐ¾‘;ìc\0×„5s+œ{ƒu‘¥7”ú·^“ìŠÐå”ß­kFƒ5-nÍ!íx`Ok´ŒsãŒÐîu=J$˜ u	š°8âöÔ@åZx`Þ÷™#Þ)Ž+—Ðî™p­oáPŠË¤hzåÂÇY÷‘[|`ýà;]·¢ÕÐòÿŠb¥`&h²2ÈÂ)V¥KF}Õˆêm ?*fûæ­Ð÷@æ%T‡Ä·ìx6Ò’O£Ó„¿9Ä„’ü 9.z8Ðú¹á‹ÁXË–<R²hÊ#IJç‚á* Täqª²\0t<¤ÑbŸCK7j¹BœYíCÄn‘Â»ÉÌ¹)B#)öÑ\n@Ë}ãn¦ÇF¯ÉÎ>Ûk7X*¢úveÓ{}b‘¡ÑDî¾ªZðÚ\r_§.>âQ}Ö²Œä¥Ê|ŽÝ¸hOjÑßÛÓI¨ÆñP0Î¹o-Âø¯„jÂÅòCÑ-û¦ÑæW¹ÕBBu´„ÚîžsÙ¿	#gÿ2­&º*Ñ<ÍÔžŒ°1ÉúVâ=¦¯ô(„Œ¦´sSˆúl‰.ÑBå+u€\\íÛ§ãƒ-;í-R8kðpŽ§4C÷9ÑRWJÌ¡f+V÷¿UÍämúÒ9jŒÔOø§D†ªÔíÑzqè”·‰´žƒ‡ò™gƒ\rÓ’dKäùô:DÑ¬Þ¼.áA¨¼ŽÃQ„¸%8;+Ã[}©œ2\0OŠÑÂÁ\nqbm°~	+¾­éžÂj¹DÉÅ§¤É½²Õ5¶hÑË«\Zx$ÒwB|9âW©8¢£gk£8Yljüo™Ò\n`Ê\r$%ëeG\Z°8…	cbÂ¹#k ¿uh(\\åFÒ#ƒjÔÆóW7äî\"×eÊK´CóÁds’2R‰\'YÒ.·Ä‘3ÍþEŒÞ9D>Þ	›.¨Ý2˜,Ÿ!Ò@%}¿1i}¸.¹kÖ›ükágpÝ‘b›Äy9ÒYÌS‚Þý[œw\0m0HÝ+ÂÇÙ\rq‹Ž(Ï2÷=ÂÒ]øŠ$É†pƒýÎãLdGßa2¾x±Ü~eì_ZÖçÒa5“§š«×ìÐªøÚ¹-á¥{øé˜UŽ´VdHÒr°ÏVŽ”(-¡W‰ß#Qî¨Šù?`G÷uGp~n-Ò“Djk“Âÿ€h‡‚¢ð¼ˆ)…fx³wÿêËêLQ»Ò“–saŒ\"Äo?á†ûþÐ©£®ø»˜Šc9C§‡…öÒ§‚Ø1 8,ã©^¥2ŠêšyÖI˜Õ[u(¡ÒÃQ¨ “-¯yj™Ö$ie‘ÙYi{pØø¹’\\—ÒÅ8ÏöæÚªÆf.ç$F¼õL6wfžj\\½iÓAxkÒÑs·tü„~¤ÛÕþÔn§Â¢^ý2ªà¹™ f·ÄV)ÒàÊ*^D.oÂáäRí|Dã9O²•4[žJƒ¿²Á°Ó	\"­<ëòÊÆ¶‡‹Š2»î,*¥5µ÷pÚG¡ÚÓ;âù‹w2^“í¥ðfëÛŸë5¹¸@Õ§Í3‚=ÓE¡?‚‡:íÃzMì$ŠÖîq·eÆ­b€a2³E!td¬Ó^ç×jjë)RŸBxºBL‡¡ †=IÒ5EÖ9Ógj\"XkÀ‚‘Œ»’°séÅÞ	&åQé=IŠÓjòE‡NÎ7Ž\n;Rù®}l¸þpfV–b‰m´¼‰ÓmÂÿhîc\\µJ¸Ã×ö~9‘HíJ¿¦$[¨«Àx[ÌÖÓ~Èm/æíûÈ¶”ü>ßÅ©T.)–,l¶;;¬o[Ó†ÜË‰DŒgšu\nÄâY2.å‡C0ÃŽMÞ(Ó‹;sd‚O¸ô&hÚgC0–»¶‡u!Î[+Ô\0ýÓž*Ø³ÊêjEŠW§;éÞÙä>$:ó¿Ìˆ4dÁQ+aJÓ¨+±`qs•{9¿¬„OF’œ°x¥vNms‚ñ{êÓ®ÁÂ¾Š&º¼Áj\0Ðv«S ·âÀúûÌì|.åkÓ·Ä†“{çº¿mÃ-a.G–ä¢ÇB1«ÿn—·É×:sÓ¸ƒØ9—A!ðàÖ=ÆÀ‘×º…aê	òäLÊP:ÓÍÔœ´í÷éÌ¶:wyjœ=º¡üÒ•­ÖÄ«6xö½¼yÎÓ÷SÌÅžœy[9Èøå l:èZ=ÖÍæóÔ?V¤ºÇ2T%<Î‹ÌªÒÂÑ¬½J±ÚÀ’Ùb‘+•Ô/?BËÕ<\\Ï|8èW)\0Æj|·²¶(	Ëy¼zòÔ6§•33Wq¶\'§Õx¬0`¡CæõAðW\'®>Ý©ÔAÌ$‚¬s”†ù8¿·ôè*wú,»¶ûù^4ÔK‚ñá•\"wª-\0CÒÿ˜V!ôýŽ)3Æ§UÕ§yâRÔQAæ|sÚùô¥ºaÎ3¢jqdP‰˜÷Od¬ªR}{ÈÔu\nah†Fz½¤f¿\\”\rÿg­üm€qžÔœI|y\'ÛÚÿñ vädñô§ÅŒ#ÞÏ®t™èÔ¡‚*IbW]3U…ýL“üÖ]Tè)”!îEÀAqÔ¥å®‚³E¡ŒO1ø\":©9¹¡(ñTQ²æ\"ŠM4%ÔÁéô&r’OÐfA[È²4ªÉÝqU}Rà\"¯µ³æÁGÔÇ„ÆøéL¶g+¡\0vÎQò§v1°“R2ß¡ÔÏ/Æ”Ù~—Ïž-¼\\Ø ª\Zû­@G>âØÞuèôy‰ÔîwpŽ!QæïÌ÷Ç³Çñú@;e$Á‚%­Êß©.ÔîËax³òn`ù¥fãw?Õ6y}>ÒÜm\nM×æ–ÈRÕ\rÐË¢ÊÞ\Z¢ÕN‘tïºAœF˜A\rÌ|Ö?¤ÓÓü«Õ4’A¢&E(6í~eâ|vH¸Ël«;îä®àR­Õ\ZVËòy¯f`™T‘Þ°ÑÃ˜`‡ñ¡šÍs[Õ|œCÎÈIûmÅyu>j„©Š€™Ç\"¦eû[8%Õ\Z\rúÈÛÎäË¤‚\rN}ßR—ÔmãD<ÕkåžüÕ1¨\n“ù%¾DÍ{RÓ¢\0›M+ÚÎ2ÔÓ¢€ÌæÕ;ß\r´MÊ@†Éj¥ù˜c£3.·RÃ2 Ÿ‘-ÕBHÅø)ë/¹ n0;Ù[Ç¢`3Þö\0&VÕOeZ}{®‹Ç 7 tBR#\r¿¸\n0f“_`Û½ðÎÀÕ\\É\nð}(“nÈaŸ¯îw×Cð9‹-A–šIQE„DÕ^³Yl2ÿ¨ÙJjËf\"3¹—zW£0Y®ïP{ç”{Õy„Tzwƒyj†m€ÔË¬€\'äï¨fñäÚšGÕüÄ’õ×GNÛ2’õ*íœRmWF~„mK$QŠÕŽ1øç¨Ïm.JM\\kØV¾?1 [`u>\0!,»¹Õ•¿ð¬Ê>­oü*ý®å ,_wE™ ™Ž]I`[3Õ–érÂ\r¬§GÿVpGG¢×ÝŠX3íßø€›ÀØ;Õœøºã5IË†ƒÏð3Õ§KnLm\\UîkÚJØµlLÕ¦‡`˜A»^{·ÓãB»ÿbƒ\rNÆ¦‹€†\ZßÉÅÕÆ¤JÄ¾**X|i» Ïcy-‡u6pèÀC-æ$*\n¼ÕÓ8“Yd^†^žu¥Yçq,c$½:$(§YÖz¸/gÕåJ¬>#ó\nñ\"7¨ñï`)Šw¿Þ1ª0.Á^RÕ÷bÇâ†ö±ê´šfÝÕŽÈRS\r€ñGñ4åç‡Ö(¯¹!úOX*ŒäöùŠý¤Ò7’A©òl±\"‹ÉÇÖ&ŽÀap6f±K)¹^o©çOs‘<«—ÈêA6ÂÖ3æAß¯†%wZÎ5-DÜÚ¼éîé@ÞÀÂ—°×ÖJ‰S›\\<‘CÞÐ=s\'WI&\Z‹(þÐðvaToÖOá,\ry\"¶ÆºHoëõS­vêP	¾SKÌw‹cp­ÖUô%(ÜláfU}â­æçñ¸hùp2Ùÿ+nDËÊ­Ö~°™›â÷c¯yhG³K›®SŸîhuP¥¦¥úÊm¢(Ö…Ñ58V¦éŠIÑ0’ôý=ÔþYªúý—ÿ›Ö†ãvBÇ‘dX ±ç1f­vH¬ŽÍyÎ)ñ«lÉÖš‰ÙÄƒ3Í’€\rÎÄ¹„©ðîè’TNô3À_*˜.Öœ_â[2(y+9}QªIï•*\0Aº¡\Zà»ÊfgÆ>÷Öžê£&úu×ržÌö|ôÑÖi+Q­`Å¸M1¯UÖ )–ø©í–8Öôl°÷/Zà¤Rö=²Yp…«ýÖÝO–¯2IûÑu>&Ë·À ™èuòUµÎÄ–ƒ«ê{Öæ°x`Ë &{;«ÙuÎÕ¢µ.Àç÷¢Xù¨vÜa‹×®‘§kdo\\•¤æÉíoè©ù~(yØ&j×ÍÂF¦×ƒÒ%¬@¤I¡µŒ(ª.#–“5U[Ö‹DB@ö…i~1”×\'7Ã–ðŽ\0ñW”ÀÆ2j—ñÌÿÊ™úê„ÔÑ{`€ü×01]!Ö¥\nÒc3*ÏÓóaVÖ†e¶Æ—ÓÈÔŸÕ×9RíìOt\rÎC_Þ×ù§Ü4cØzÿ¨S†ÞâsÓT×Aq†cÚ·¿Â’59«aýOöùëÒ„ê?§t‚ü×M)†P­HŸÙ¹ÅœkÏŽ%7fˆ+È$Ú.ºÚ~Ó›Û×Mxkv„\rnÙsŸž]%®”³°Ìÿ¡T¬Ä‰Ò©ª×^Å{ðÆŽÝuî×ñíÐÿ’º“Îj-{V¡=OÍ\\î×dT5^+—ôß‚`,¦Â<ÜëWØˆNl›SÝÍ×j±ÒÕ??f&:¦së[#µRDs³¥;Ê…i×lbX‡’.Ó-¬t/«ºy ›ÓkOÕ‡Ç|{W9¿×mdJNRéjœí8?|›ÄH!‰sÑ’i{OT6ò¨Ðëµ×{z4˜8ˆ0øog3œx×àF±‡RòýÇ.ƒè:+€×°É§&ä„‡û2ëÇÐC.Œaº‰eE0ç,9×Ô\'ZS5€›‡ï4ˆ¡G[«»\\e¿€}*<ê|L;÷z×ÚxÕÖx?&ÛøWFèf­=èãxé;Ò¸™.uL×ôš·)Ôœ2ŸûdÇÏL{ù€å0€Î3Ê5¾½Y’!ØU\nhq\\¯®DÞGÛhB„,Ú;b&´Ü<éC­Ø$ìH\n>š‹»‰T¬ ÷EõGâN™Ð`öâ-ðÞ*ÍØ(ºqº¢–#Ôœ‚¼D“]KæƒãÐX ÂÐØJê•n¿ú·piÎ®oÀ§(ËÞF ‚…°ãýrr^$îØOÎ5µöüMÝ&õJúùüDÏKð‚0£FãNw0\\ØPÝ»s-\"»d›,½ä¸–ã„nÇ7z:€nÕÉSKn‰ØSTvàuÈé!@bv±7NgëûVCœ…Š%Ê{øˆØ~4žuÕÎË÷	k@Ÿ5’=Ë(¤æ{\"²XØ<úÅØŽ\\Xüâ)ìÐ¨Â®4ÁÊ¸cWÃ¾#E5ÛöÓ‚Ée%çØÃâ/šÞçh] “ÅÍÞ²»#Ñˆ9“²ï`vÚÉÁØßàðbÆ9óN/‘ÞlRýagLû¡êwÔºáQ¦Œ\'ØêbÙ(cÇ/›ï²Æ:»²ôø+õˆßÂî„~ØãäZØðîüµµ²öñ|\0uŒÜ%rvBT‘ iæ‹·ð“óØôÞ‚NÜÉ««Ôýá¿à/¡†=õ–1†ÜI¶ÓÿðÙDj0\\l›ÒM´51(Ráæ;\\gÕŒeøÕžþ$çÙ_,¯j…þè–¶Ãût¢C@÷¼ÏŠ¶ü€‰¶Ù&8H×ƒaq_¤/ñÀý •³†™BuZôÙ&‰?´yØÊí=Ó¡¦ÃC6™d6òmÇ\\´]vayÙT*«f‘Z/ä8†ß¬ÀœU(WòÖíöUòï—{ç-–ºÙVÍ—œÙ8$4§l\\ýÔL4y¯\rñot«f`8†Ô^Ù`¤§˜=¬@ûl¤TzÅœ8Ö)}”~–H}±‚qÙ—ÿÞN”¥šaiËýÛ9U‰³¢á¤»Ñ\Z{ûöÙ˜‰ù\"Õñþ[Ñ,ÙTý#ŠHÕÎ5\0ùF	\rÕRšosÙ™ßý$¼Ñ°„¹ÕR¨ej`^„ª7Ìè‘Ÿ%ãà¬yÙœ›³¦ÿMèó¾9\ZÖ/·´ÖÊ\'í«ôÖõ Ùž˜4bVtîƒûêÕçtk‹À…Ep%ñ~D`%Ä\0‘;Ù´Î M\nŽ¶¿WX\nŽèº¨Ò|Í|3ßœÔþ+ø+¸4,Ù·ªç´±˜1]ùÖ²lzŽ¼bžVPê¹xëÌœ¬=ÙÅ­Í?Æ/‘’¿ÄŒ)å-\'LÔ— xå!ô¢Uw²ÙØ_nFaõŽÙ>e3¼Ÿ;vzšßãtÜåÕPi(üdÙØÎ|\ZVw7BAzÒázMk+Àš¸øOš5î­ÆÍ@ÄÙÝ&}ˆ,pyÆF(%²Ldïö\r*n=YNtÙïª,kšL®]*–º]>N5c	Ynô±ñl)\"†Ùðïqšqpu˜ªuŠ‰4FÂ€æÇÖÝ†$ÍÓ•ïžÚ_Ùp~Ì*Ìß60¤#¤?BTèP„|½Âÿ:ûX´ÚkÇô>Îñ`ËWßOÜ@¹!Ù¾”p}®ß_0[´Ú\Z@Öd­\nf!BïŒÏ>j§×\\R^3Òâ¹óªÚŽV™ÐcZ¼Î=.\0…ý¸¦ÜˆÜõ\\º\'ˆÆ,ÿ™(Ú&€ÏäùM1^t&*/:7`P\n¸€S!:úb=¡Ú(àÝmybVõaIÅjWp™Œ¯(!AéðëÞ<(±XÚ.#ËR[$V<¢åZ>f+ ÿ¶mÕ½Rh_i;1²ÖzmÚ6@£Ìd÷3×5(•G\\‘Ü§Doi	PŽp*vwÚ;ÇèääX?=æs|V§F˜ýÆ¢Id³šE<8µÙmÚJ.•EwjôÔöÞÒ#_\ZÜžf®nN€þ7’‰·ÚU/¤“è/gÿ#ªÍJK²Ó’Å]å ¹‡üÀ²Èý|¬M™ÚnÐY‚M\nªŒ}2 `’ÛQæóßvÇñ_í\rzBž^=Ú…¶c:íÆÜ¾|@¸°lõ\'ÆÒe±©—ß²“ ~ÃÚÚ†L-u5Zkw‹=03O¸Œ* ;XJŽ¢²\'z0Ú«Å²¶ÿöT\"ÏÛ\\S‹@¥„Þ¥–+0yrx9ôM,‚›Ú®(‡\"¡Y<%°I 0c+	¶±ƒÄðMÄìv1ÚºQþ©GäƒžuÆGiÔ¯Òg—¯Ìç#dNõ ,ˆ—ÚÃòÖ¢âü’¼ï¶è_ƒöš5†^Wç{£KbÚËFÐyPXÈÄpŸ^MºÆ´s>ê\Z‚HÇ.\r¶ÁÐÚÐýßZ£\\UDÑàþOÜtóÞ”³&Å”LZO\Z£4ÚßvdUÓÒòé=‰Ã…=cx\\÷µé­ž5\'ÒµÛdÕ»`¹›k½Â_[aJ{¡Öp\ZœE=„(X‚’óÛ?l;Œ˜]ÖË)O=b”¹•Šñ×Ö¹’\n™»Û\\s	Ãp¤JŒTX~†×\\és±Ak×\Z-=}FÛb–áœ¾ïTEw!§†}ža}.›& c-BÈ\'¡Sj?Ûpå‡€,Xž¨Ãê©pöãú!‚:ô±ÌE»ÀÎsåÛt6–÷õSzìÃ¥¿ù«Z¥ã‡æýëÑú,jÕÛ‚wT\\â… ¬+Ú=ÅÑáž¶ò…b\'^÷xØKÃ.ÐÛ‘þ&\ZéŒ·ßÛ7ê°~è¿øÄ±†àrbá©ÿÛ£ë‚Ô°<€ÿÐš~_ém?#±†¼©í#B	î(ÒÛ¥~b%…w\0 ˜z±9ŠwsÓÔnùÙ>Dy1Û§–•ø†è#)\"Uõ­ÎÔýG¤þº´ÛÜ‘é]õ­Û­M:EœÞZÛ<v(@^••òeõíKã\0Û³}sYDk6›Ðë‰ñÍMµÃ(kGN‡Ø©\\BÎ‡Û»øoXcÍâÎ\n‘jJæ¾#›Ÿ@R 0¶ó`ÛÁTÕjñ¤5àDžý­-8FŽÚÖQ\r%Ñ.ÝmÛÄ5RÂã–©\r;ögPkl„r<âèCDŠâ0*\nö)ÛÑÅÂmÖÓx:°.ÀožÞwýpÔ´6b@âW‚FkÛÓ-¹ëÖÛÏìïÜÑ1éäq‚[¢4š2\Z@Ñr»: ÛÓªN‹÷lT­D“…Û,\'›;Î=«¸†%È~æ	H`ÜM?ý~\"ÈÍu%Å[þ,l¤‹‰ú+?F-}±M)ŒÜƒÝÌ`@}6ç°Ðï[d=w\\˜Æ+yåÍ%e‘-´_öÜ+ˆ°^•ÃJ6ÂÊ^NihÈõOJkföiBªÎáÜ¥DœÌ‰I~Ñüñ§Åú.lœâ²v«Pg»ášwv\rÜ\"aMIøÇñ\\ÝP¬;bóÕ>ê§’5>7Dub«lg ÞÜ=z^«z)t‡õ—?Åªïé³Š<)–“+$á>ÜB€FV­d¼0¥Õ3ÓàŠø¬mæRî2t¦Ý/vÜS 4Íh¬\"•hAD\'¶\'|ëº6[kF=×\nyiÅõ«Üfóm»³±‰Rþ²…ÔÌ—U’iØœÏçÖ!Y¹Üh‡Lêça¿þé—¨bøË|\r,7@\\\'>Õõº™0ØÜnƒ+SûúK‡ËÎ&€s¯„ñÑ‰·\\;Y·q»9š‘Üw¥m3Ÿtï	›ÇÐ«Qvš#`i-1ÙžäUúhÊÜ‘ñ‹‘„Ç£gþÖÚ\nÜÜ÷4 ]´Dø$ƒ¯ñW¢¹Ü—•E¹V¼8Ö‹i;±fÀeä|­Ìâ¢Ë¤†ËÜ.r¡µ²ÊYMDMKÈqöÄ¹zëZïpçïýÞßÕÜ£x³ÅL#Ë!ÝîE±~p#‚w¼ˆöpý1[©0L´ö\nÜ±f²œžX¤ÅIñ`&•›¯:•=^bçKGÁ\0.ÔÌÜ´&Š#¼Ôkp‹e`£ò·ª± h™fÏsIžXNkÜÇ—!ºàJB(AL….V#8öde\\Š†B_•&ÜÉ:øµK³º¿:õ\"Â‡$_åÇ¥ý\Z˜†g ¹…ÜÐpSI”çÛ{Ç«2jP±µfåGi+YHñKÜ×€¤á…îÃÞ&¦©ôf8•§ÖŠ„ó®Hk[%ó¶¸ÜãmÖrÂŠÝs+n²0ÙOfüžßìÖ ®Œ7Àíy€Üö×ãïùç¨¶þ¶é\n£oN{mnP,Ùh¨+p]h4ÝÅî§g\0xâ-“•¬¨8£“ÀøßúEèmbßE\rHÝ	Zº¶m¼Ž‹Ý\"®6‡Š¥N`ï! B\'wC•Ë®”Ý.°0{\'~K.sJ›·µIPÚ«º&nR‡	°2ÝJ¶ù¯X}šúkŽ;\nÿäöÁé5ñ¿V´ržû4ÝŠwµ?ÂœL)£ä­K¸ÿå†f4Ùº\ra~÷tnTÌüÝ©zK›±u‘ÃYáà.ÃÃmýiÂ4Ÿ’«*¬UTâÝ´ªÏøî\"c¿YO€|Då\0øÁ;í.ü¨–ÓÑ´º*NÝ´ÀKÂñbTß3•y´*Ùúú× µ\rFøŒ˜·ý–Ý¿pü\\ä/h#]\"\në=Í/Êþ‹¢MZÖƒ²á×IÝÜ33¹u n°±M5Kh&ÍbV\\%˜Z$èiöîÖÝâC±1Ù~sÙ\\å6ÎrÛ˜âôŒÂýŽ¸\nÎ£ÉÝêç6tt‡Ž|ëüÉhf¥­S?îfí_z¢ªŒ`ôy‚ÝõïÈë…(Hú2\nyÏ€8â…FÑp¿˜àBÝøÈk¿ÂÊ«.E» Ÿ\"yË3ø(ÉO6ÂSuÕ›Z&ÞÿÎêS,®	É×Ôpö\nb!êós!œÍ®]‚>ðÈÞ‘T¡xÞ{æÏ\\7ë€õRáÁAg¥ÊÒÌ[:ëÙ	cÞ\n˜óOºÛjÇøÔ5»RLC‰I˜e¦ôºèá»”Je\0Þ.S”Fˆ>í.œ«çÝî¨wïgÞ:$€\Z	ž±ªVÞ8{äõV÷íú9Ë/ÎjÚzbbžÞÛhFøµ+”\0~šÞXÛtáðÇž¬ƒC¼¸{•Ðã%¨©fÍ\"‚´Z_m=ž‰ÞZ>D[¹{¶©Î/³Žm9qNÔ9wN|\nÞÖ¥ÙÂsÞj*Ðñb”ŒîTÿó…O5påp´`€„)ÂÄÞ–ÇpöŸÂ1iýÅÐœÕ¶û&ñÓ19Þ }D3Ì²»Þš$>ªÀ÷ª*ñôÈÈÖ~wa°\rÔÁµxŒš„Þ¥\\Þ}ü9QZ×è\rHO\Z™+ÈCµ3\rÍ‡q†Ñü™,âÞ±ÔÛî\n1ç¶$Äd8v^!*˜3Èçó#Íœv@ÞÂ3¬&h±N;y‚B\ZàªåN¤ 8	jüxÞoùÞÖXQl~?‹8’¹•¸ÖiæÓêi8|¡«†þÕLeÞñ\\UÓ·HYQ¸\'¥\0¤h³¼$z¯É%ûÎ¹Ÿà|qóºÞþú¯Õ÷ËIÓ_y:÷¶Ž“&Çë³ûRªzß²<OT%x\Z´âÜ‚it11E¹gÜU&½¢2ß1°YI\nf	œê¹Yá¦ŠÓÏFrLÇ™¼Ø7€ßu…¡•´ÈS–tÖ—ù³õpèœÇ¯$U‚-²mö©ß ‰—~ÐÜV°>ƒ¢¯ò˜€¹çEY\r’,i¼Õ‚ˆþß!\r„2nÄD¬›À9Té%TÖ–Î\r>™‚›ì‡Æ¾âÎüßAýYä{,P\0~b•Š\"Üƒ°›½îƒê×©n\0Aã¹=ßRŽ’˜<îF{È;xÙ¾Û¶IÄx3¦\nézÇ–ÛQÊßh°Â-nñ&ûU±ìe\\ÑXjš`øünÙ­Å|ò&ßkÁ—2ØùÊ°ãS|§ØôIÚ…ß†RØýy¹rÿßv@|ßz÷%ÌÓ¶p,Áro;B5\0±ÚC®…yaFßvÙVNcÛŠŠi÷Ba•ÖáÜÓÆTÇf€Xß÷ß| ³jòªÓb·ªdPÏCW>báæ°$=OÜtÇß—>G8jÅj±4‡•8µ-sZî‡ÔsÅfª?ß…y÷Rë˜zå5ñµT§˜\0ËDUç££	«wÌ¯ØßŒ\nû‰ür†ƒsgÉ´ÅÚã5Z¢}Ì¼¯õâ„ßŒõPÊý½Ü»†\0·{QçÐ©#î÷m,Áx\\`ar_ß”õÌ}>&žIy¸	p‡—Àby1©°8‹gœJ\n °ß™w¤·,Øä¬ sÆŸ¶lalkHŠïJàn Ý?&b+Îß ƒ„B.qf6*_…í-×ëªù‡¦W–I£Õ4—öK2ß§Æ)óö¹¥sûgñç¯,„øüHeä|•\"ÿjÌ‹2(ß¹VïþªˆÑçûÏN«A=´ÿ²XÝÀ÷\"ìÃ.€\nßÅ…i‡2—³~ê<´g»qÔ´TÏ—öæî~‚%>‹ßÔ6mÿ®“–_¨5Óô³Ÿøí›è}Ï;[IßòFêöi±Óêã|x¬7N¤™*T¤ÏÏàZ¦´j”\rßóu^kbÚµÄØÈ)†P\0˜€×[\'à.¤l7†ä^\rßö?Š%ÕRþ¿êc’Á­Igl‡ìŸù–¢QRx\ZÐË®•à¯R«-S®ZoŽ3Ò³CA›j»—¯	™M”‘^à2ÒÉ–<”tfp\'ÒÜP6ß±Éú)¶u›´@üŠåàB–‚Jp–’ê*\nØ›WX¤&q“bœ”#s¼²à‹Í¯àS…ÿC­o†¶­m9¬Êô…4]·2IeEü˜k…„qàhÂö@N>ÌÞ‡Í˜RRSo sªBycó!Íõlàƒª¢çê	MJh^ö…`Å¼7¶ýZà=ÎÚà^Ô¯¤¯à…ÏÄ½1ÍTg‘«Ø±ÿÀDËñwàhÏlàŽËÔ‘“Ëì_‹x†4Ž°®í\r[òÏ	\r+¹ù…¾~à\"j—\\êç²ƒh_EÌV\"¶§·R­ŸÒ†càœÞ}œ×o©iÓ¿FpÜ&KÍIPÊ½±D²á[‰’ùà¢ÔE=3iJ[aÄÝx­(aB½tgñP	Š‰BƒÛú†\"à³„½±Æ\"-dÀJ¤¬°”¥©Õ«	U½{˜”ŽöàÏ(ÜQGè<C°<¼’¥÷êF\Zm_=|…kÂ„±BÃ´àÑ4¨á>]F´fw\'à‚†ˆ¥¥¿æ¬šêã­Evm8”àéaøÄ†î¨¥êJÊÿ½µHÚ¢#e§ Rû¾7\"dàô‡#!ÊE!,ñæ”clà5„B\\	W´\"gÜ·¿}}áè”ü|Ÿ¬“ˆC„ÊC0½ü²óvÓÇ0Ké°\r-ÊáèÉî´èp¹Å®úº4,™áéKY(—IŽ á xD¨Qƒ¹á/¢tú«àÅv›±ÉîÇ¹Uå¿8¹á&Ý.a©•YAø‰=°6ˆø	Ý¼Øæ4\0e0Œ§Ìá-¦â©é4J \0ó)SÖ´ÅÔÍëò?Êk\"4àZ¹.áZ9…\r¡k²ÕïXêÆe‹_^ˆq(Ñµû/Ì¹áh‡Ñ2¤úë2&ÛXˆt-ååÛÂaüœZ¸námúsNâQ\"?»mFN8ª?™pi\Z²hê©HæzëáŽžO,äk”h¬iY£´eÕ8;w*AÞŠ&\'D:á™Ð5’`ôv>‘çdèŽkÿ}< ½ºö6Çþ€ ™á›,?‡n“Ñ–—³Ë@“(¹Ã¼^÷½Ák±†\\c›¦áŸÈ€òKBîÛµ&|UBÆõ\0¨Y¼Ô;@7Òñ³ìäá GJãòÛ½æ·+ÖI¾¤-…“Æê°i3×<áÊîe\n!ñd>Ççáa‚ñ÷ö±%+£eT7 õÒ§gáÑÙå¢é¿ßdë§ë‚ñ,w=	©{|\ZZoÏ¢.šÀáÜpÖ]íU\ZeßÚûO§lP¨ÄÎÖ&A{°Š5áá[8#=G˜æ{tj‹\ZC`ÆqR%ç®ÚD³‹\"áå/ÿÆw?Z)H%ÁK“-œxrNœpê”¨Ôò%ýâ\r/<òõ©\r¶gl+ŸQŠ_rð€-mÃPîh¦Q‰‡àâ$,¶©…©5ö%mŒœüäí§¾ÿÛ,»\nu(Þžw0âKoHJ,aô»	”r†U9\'s?Ì|ˆó™«¾äôâR0™ÏAtRWëE  )©çÖ…uT‰±¬R¹ÏYÅâT6™Âr‚ä³\Z¢IZ)³þ[w[]ï¡=`Lï ÃžâV GëLßä¡÷™¬¦mJ—ÄaÎÏf¤o€\0åÔâW»˜eØ2Ú`Ô¥:Z?¦š¢Óì^X=GÈÎ³¹âb<H”G§âwE×21ïwh„a3(JÇ@âg)•¤òz¨„ëŸ³9çÏÅ=°Á8ÜÔýÄ\'ãKI\rn°â€µ`úiz  òy}ý³fWÌmhïGmM•³¶]â˜H\rìu’‰:ðº4ˆá›Ì©¢i²ô÷——7[Gâ¤ì³™rã/a4 v)šw}Uõ³+ú“è°†{3â¥¾¨Ïµ¹ó¾”êç‘‰—N)]ôòW1—Ò+Z±§â¨*Ê Òu<àÿeëëè\nÞç,›§¥&­ÛÍ­1¿âÊ€Û:If	ÌÚ¦%‚‹±5Ð@Q‰85õÊ‚1Û-5âÕÂÕ¼ymén*$ï\\lµüGš…ÈÁ*²EäM\nlâ×­Ïm³[ð-ùB²8Y´ŸÙºª’d™¨ûJ6áÊS.âÛV59á†ûœú4*·„¶f¿H	¼‡ìr™š*\0ñYâã±¿;+h<Rô¾Ÿñµ¹VÅ_ã×u&RƒÅá‘:âê˜Æ¹éW\rbC¨JŸ™9 žnàFB ˜yßJ/ãad¸Ë“V§ÒBZLC€ù¹¦;’wxãY^Áã&^¡Ó=·xÊ†Es-µÁy@ÖG¼y—\ZõòÅ}øqã-ª³óÑo/@ø8Ø7²²Ÿ?ð›Ì!c°¬^ªHþ\0ã1F=ƒ¾†\r»\"¢8ðýÓ˜¦dšÏ0{öÀ0Z†SïãEœ*ÐÚªIòz3^M±Ž•P4Æ¥¶FlÃwRCãH1“\0H\rgf´^Hq*ƒßvþ6MÇg2ÜÂ¬°ãI®Y¾–”ã›g²·Ö_¦Ëùµ,ý\ZI.&;Ó¾rãV<SgàU|¿4E+5å¤Cõ828¨˜‹Ò½ãoù\'Û?ÓõŠ_æ8ÅäÛ—0]$47F\Z£A#„[°RAãrÐÅ57‡Ç{›0²7f=ê9GûcNÌÃùyÎŸorã|‚¸Aî\ZíU˜\0®ÎjJ´ŽÎ†PÈM6.\n?ã~¢oâ•ÇÎ¥™TXJ)*a›†ºL#ôVÖñÅ·Šîãú42Bê2Ž¢ü±,u¶ïÊ•n}~ÂÒ‚Z-ã¨3¯6	Åàž£›ø>Ó¯¥\Zÿz?<^ÀæÁ¡…ÏÞº©ãª%8¬÷\"¿yÙ±OlBæ=VG‘áhó‹!â³ÌKö<ãÙJšq¯Ç;»(5nOÇj¦nYZ5qÚÇPÜ ÄÎ4ãôzgzBìtWnŒWþ¢&»cÞ\'J@{TçÈÖrŸq¯	Ÿä*k÷ÓJ+ß0úÏ}þVL¾f6	•âÇüÓ†`lI*Hä?²6­‹ûÃG§}hêoÚBƒêñ Ÿ‡%ãùµLä@¡Ä¥¡òübu‰(FHP\\È¯C9!²cnÀäN*NJg§ª}YvËâµ7ÑOh%.\"A—Xä*ä¯‚·:«rÿ µ›oOÇ\'7x¾9´ é)y³‘ûjäÑ?wkÑ6òÀŒ£(.¥T–Êv—Ì¯1‹ëª½¨»‘äæûŽþ5‘NËíbð7Ù³UwŠÀ*)Úh	+Úž²äé‡\n)Q¶àNÊkÛÂUî4žÉüJ°M›Ñ\\ÌñêVäë«ßõ^1µÜîÃç¨u²îrYÞ¥1m³wæô’±täìÚø¦ˆ&˜Cr\'BMFÓu\ZxÙÒ/D9Á«ðzHäó&Uéÿ>È+Tœ­ôKðùF(—³,`:7­†QäøäúÇ±-F„¡ŽZ«QéTÆ·n\r¦õ·{ŒãÁäüìšvA™¼Ùó‘Hø\0‡eq$óWÕDj›³K+{j¨åPuÀÏ…ü¹~û\r|F¥ÅSža(ãJ€}ÈŸµA\rå1PÔxœzšuíîÑ·±;gtS7„×éGn+‚¢Qå1âÆrg¤“‘Q× ygáÐß5ù±.h¢”f°ÿhmå;½öÈk¢ »ðô²±W8¡ÜÐË‰Œ¡ôÚnátåAÜèƒøby—MÏ;(ujûù?Öó]ë$ÍCÞÿì&eåZæÃ%¿,zf¯w#nØ”5²0DŒ*/r…xª¶Påb=¯-.¹“´XÿÀî”ÎþTüÅòYnžÐÐPæí„ågÖæb– =#à¢\0öMœ)ðÝB×áã…\\eù±åˆCAøï²wƒŠÙwK°HYøªÍ\"÷´ä0d´ß·žå”À~ÈØýkí:µ£\nìøäâY¨Ã¯y.¾5 <€ä”å£oÊÆ¼oP?¹–†ü©D¸“O%³úÚµN:(ì²å²{¥ZØÓŒU†J•£øk#H‡…T]^¥Uÿ\0T’jå´ &¹Y|ís<“²µÕéÓBŒšäJ	ò(zÚª\nå·Ä…[Æ·G®Ï¥ÂÖ±!IŸzóAè4Nÿ:ÓŠÎå¸ðU	ž[–ÇÃºêæy-ÈÕÜòøŠó˜Ê)­ä›5å¿,ë)w–ÉÐZDUºâvÿR>kù<ˆÙvd«åÈ_âBa\rcÿ­‚ëÑÿ;£ö‚pîæ×vˆgm-,åÓÈý_í¼\"T›Pœ].íž­jî¦8\\3Çc\ZÙ^ÔýåÔ@i# UcjH«q.—!þâî¿Û´	^UœÓ\rã¾såâ¶ö&äzƒ‘³\\õÚÝLÒ ¥Üð¢Kcu[¤åæžþ;må¹¡™F}I­-6áœnÎ$[åé¨Ž$\nÁƒÂ9Ÿ2%ÍV¶ÙúÂ”Ò0D2`qœ¨åî¨T&²¹%ÑíqŒ5Ã¢ÿy\nVÚŒ¾™H©tÈðåöØÈ:œÐ<‡k%·›û‘Âäÿ (õ„Â1²Ó.æpŽIŒ¸u˜Š¼ÜeIªt9ŽëÔ]„\05¹ôå^æ\Z!žùÜcçxN°®d×iÔGeAI@ï\'iÛ¤ÿz¿¦æ*ÍýbT‘JÓ-2ãÔÌ<…8Ko|’nF&Qó Itæ-Z\r“Ë…‡òH«F® wbä9Ñ¿\ZÓxRî×ãÖcæIŸ0ã{šÈeQDäÐ ìç€{‘°~aK\\-ÖB\Z¬æ](5zÆ!üUÇâN[áaÀ9»{ÝÏÏÆÔj©›B0PúæoU­œÈÛK¯˜j¦ÚaW”Å›\'„´—Îyˆ³¬Yèæ›—>Öâ@-œÏäºì=•æ	gò„_šð³õæ¤ñ{-SP+f£´QúpäÔë87i!*Iåíà§æÈ£7ƒ\ZÔ,ñ¡šä¨[xËÎR,<XŽê¦ÈæÉ6ëKk¹	ííŒo´Œ˜yA¼w)öÄ}\\C	\nÑò¼=æÕ‰{£¶†•½o×¶gbUŽ•œhº6‰ÿ–XE’.æØÛR‰un5jšŠ©ô¸ÚO\0é6\ntìuÙ=´´æÚù—§5Qæú%Ç›|ß‚Ž¢ÁY³MÞ\\ÉJ»ažábæöÄÁTÊà÷jŸÝbGar¸Ußê„~•\ZoZæö\"TÉ·Å\rMÙ +èÂš	`‘ˆÌÔgOålæþ:”æìâæøl³}s1¤iJoÄZš3wÔ/atØç6’µaK‡¯‹é5…È”4\\4M÷Y¶^eŠxM~ç?\\pûŽiEEËþÊ,›8±ÿ¸¾)¢TÅn,û„q»çSFÂz”È²MRýÃW3ÃÒ\\ÏŒ€è\rÇ×q¯Äò1?çXE¿°GD†f°ÜL­SÂq…†`Ö	€”ÈÙ·çsï†PøÉ²W›‹M¨Qó~@äÅ¯ÃÃ—ÒÍ”ç‚¿EÈÃî$>9¬6g\0­ëÃˆ¿];µÅlˆ¬ ç…\0lš*\r¾ŸŒÆ\n%žE\'ÈtûûFëàä†ùç…¶\Zf=?±ž;[§”é%óÂÖj×Ä{j‹ôMa7ç‰Ð 89‘5¥p(å\nÂ±vJ¬J|5þ:Jh”¹ãî¶¼çroØ«ÉèÛlî]FAŒ1_†í‚æè„\nïÌÀ!ç—°fùWeJS’“ZŸwëkìX¹ºÚ±ÜòÓçšØ~¿ç‹\n}Ê@™=ÞáÜ\\Y³ñYÁCªˆ]ÈÇ¢é‘ç¢‚€†Ò5 ¹¢Ìc§Z¡Ïç°\rö»l¶Yç¤Æž[#Äi[Ÿ÷5Ð–Ð³4\0ÜÇ2mÆÌ&ï™h`ç§Æq\n\"Ž)\nŠÑêSe]œé~¤&^v¹ŠwçÅœ‹¡´‹‡v|Ú†…`z`±®„²I{ûzÔÖC€9çÉ]Wªòˆî9Õ‹Ê¸oz=ª®™p³røÄóþ7çÎ¬Õ4µ²9ìå‘E‰çùç\Z\'™x$ú“ñ¯“–åè\0£H\n({ÝS=gè³®ÙÿÂ‰kyoÌä?þ”•¼è½¸Ï8Õ‡¥Ð|BÛç’D…Šÿæ«1˜‹3œØ7šÝè¶íÅ£é¢\n<Yz\'±ÉjìXœ¶»`ê¡fr¥Qè\ZöÈ¿Ó4ÿáü«M†F/Ç-îf‘¿r“:CK\nèÛ8]“›PYÝÀ5Hý¼ågbÇÜ:’<žxÝ¢¦ÔXè‚Ç,sèÝÕ\Zi™(±6è²¿!˜úžÿgŒÑŠÑk8è&¨Þ\\ú¥-›Òõ38žå²ŸkÔn¾ ÉÏ£è,+ÿYy.2À\rt*q7ìØ,jðŒ_HËd¼QPY±@è-¢Â›dŒ´xøj½)”£dmˆxÔÌß»‡ë?è9Ý±|û¾X!¢l½‹·ú%1+ãw…çÔ$­5èJíck!Ô›è“HæF¼fKè\Z¾–ö­ûRœ$H¤è´ZYî¡Á€\n~íÜP.åêxêœƒ N×ýÃ®(¹gFèÊw©n~i;›³VÖ€%óTF“±~¿e|,|6DèæFRÁ\naý*!_^è²¿¦r÷…`H¿«a¦ñbÇèøw÷@è©YÔÌÃÀa_‰^ËËf¤¢^êÑÂ(Ä\rOèý«>×è¸­,“×ƒž¹š¯ýð\\qç§œé³rï*³ï„³ÚÁ¾L–lf¢°­Š°< Õwžé;·?Æá¾Ýšµd ‚t-ÌÌü8eä0WŽø~»*é>< *±ì0V÷ê‡çå£ä©Ø\04¾~Òt¡µúU‰égLóQšù¢ºŠÒùç£º1ZÒktx¬Ã*ýš¸5Iéq¬™ò*ÖlmKÒ£kÄ\"ÐMÿQ?Êp§’aØ‚ç¦4é„³~ã¾¥Ýµ„n„n\'´-˜ç„ñ˜Ò‰VÞ>çéˆ¢Ú›Ôr],?i(R;¾À½}¾˜>•ÖÜéžQV!yvpcÌ’P` ˆ-že9rJ“K\'tÅÏ>;é«¥úÄ§gZï˜ÁúŒëCÝÞ§ÔJ oÀé*^ñ¢éÉ°1–N»JýR’áiÀBèíŽÔOõÓ¬BÌêVé×h´pCé%äâZí–}¾=¢™s<Û”ŸË[Zè#g *éÚé°\Zé;1\ZE”?Ic®_€†æðcÄ#ÅˆÑMéèž-µ[\"¹Û/$Ðn³Eª*9‡p“:ÖcZT\\×ç›:_½ê–&#`Q¸\n.	.ŽE¬@¬ÑŽ.ú©%E´¸gØüˆê=ážN3äü¸>½ì¬gœ|S(FÑjÇ•\nÙÕ;•eèêXí4P£ievØûæìWßsoÚ‹ÅLñ­QBWÃb¥êe¸xþñAíj,p¤rñˆk•jV°iƒÉê›Ù]ÈA¦\"”¥‘±—3#Àq Æ†Ö\Z¾)+l\0#<9ê¬¥\"Ï•ü“ôA¥ÙvÕhzÄJ>AŽqƒäWß&zUê®V¨šµÆ\nW8 ­²`\0ayxHÃµ¹× céêÎÍ¿Í°µÛ9Oü8ñ^^ç]¦½ýt*fæ%ËýYEêíÆ5ð<Ê`ðWÿ²hµ«Ëj0g÷_M†üªÑTJêï\np²…cÂ‰[«ùÇ_:E(.)“&$*~Ï(gf“ëØ;Ÿ—‡c©×\0Ì¢¸¹câ÷eÛ:Hb>R@\'=½vë@5)ÛëîyÅ&¡Ö«“†‹\r»¶œ;ÄðÓ&ëÆØ›Æ¿¯Ø»Í5|V¿{£×¾üA\rreAFzK`ë\"Ù?ÐßE¬õzÛêcRœz±ÐÍžó.VÇ~!ë6ø˜k8•Ö½¬éÿ§ W\'Ð|Ç˜Ìý—rf­H	/ë@\':{ªY½T3NZ¥OÇQË¶Ü©8ÓN?5ÈìnëA”¹.ºy—aÿé¤·’#‘šÎcÁ¢ð½^Sá§ëAƒý_šÈß7ý\'hcvœ‘]½Ô#\':ÙzØëK×lßà?÷YkÒéÅ2‚óÉìW>§Øô-ˆMõëPûN`g?\\\nÂ\rK¶´¹\0ðßJ<Ç˜3bxT:ëW*–Óªr—î-6¢föpxc×,hoNƒI÷ë[Í\\ß`ÿnBæ7$Î‡#tý\"S¬mÐÚ-®§Cë`Í¬ÉŠÎsÎE#)(»ØôA[”h™\'ù®øçë|àùkaOïIŠîhÝ9A\08(¿?¼K\nµöÍ ¸ë€ZNt­aÂZ¬”f+Ç ‘\nõKèá°ú·°œb¯ë¡n8œõÛà1\"P£ªÁäì&±8×X;ÃU^ŽÛ¿Òßë¤LDL9Æ4“Ý¬JÒæ•ÝƒõCí¦lE<aÇˆ…ïöëë¥lã.Ä“zÚÍ]\nºÕ\Z‰ý:›Âzs\0nÄ½Ìë¶ÿ°>¸eÅ[7“ÒNJõªttŽ@êŽ`¶2Zë¹\'S§VÙ\"ê*‰XAŸvkœOx¼Þ¡ÖmdFFÃ…fëÒa+‡6È¬ç³åÁ÷)rbÆ4”Ê²g´©}S“xëÛvÖ»–aÊ©ÆD\05SS†-’Î*Ã^Ó…Œ\\w²ëê…±¬/Y6_ ì ÑwÊpk²wöÁ´0ÿÿ§ëð­Ò%`0Š¸ª•vl·¡µ\r®˜˜\n?¿4É¿ìrÖO©n¿õ_4Ä`…/“-ñ\'ÀîaYI|6Æòì`Zâ4‘¨\n¿é\"ž±l\'ÁãU8yîkSlöØµAÆì(GL¼¦8!Õ<z½KrÖiãáImV‡e(iCxùì/?‡¿¨O‘¾ÇE¥q¡²ði7A:Š3\r”³˜¢:ì?°ý2=‹,¬+)ÍÌ»þÓn£gš³»3©(·î¡ìD—íÔaˆ!_yþ	ÂQ“VGK‰³Ò‚½šsv@ÖìE‰\nÃF		äõ²M«Ãß%{Åßa‘ðÚ`,à±ìNºËÔù\0å}AŒv³¨ÃA¾‘$Î=Þ08Q×j€®ìV\\†Pè[àpHaÝF~yQ¤ËŠôã€¥àÃrôáì`å§\ZæËÜ9ñ÷•8Ra>rÕZåì!´e%©ìd¡uH/l+ÒïÞ âÝÔîÖ.„ÃÿI6Šñ(Ûÿì›Žy—Rôjò·\nM¢Çø¯Èx\r.sˆÎ‚÷…çßÁŒ&ì§I×nÿ¹6Øä¢_å³‰”£ga8ÌØyÍÆ].Ýëì§^Ÿú5P’«—näî>Ÿá:ÀýÝ´Í,GòI°z‘R¥ì®À’¢y¥îÃY#¨Ç³ÃE	´è92¿žžä„ì¯»ƒvnjs,_Y{\Zk•˜]µÙ›z¸Jò^zêì·{‘MŽþÉþ9l+:A¢ê}0¤š0ÈÝ.½@LìÆ3¢lå›”‰\\ÕHiÜµx„fîLl#@Å¤‹åe+ì×¹=’¾¾³So\nhÑ±¢Ù‹!J~áºžÇ¡É¹ìá½™Ág\rÁ„yôuCxÄÔ;P{ó³kØîÆéyMìã#µh .˜’?éõt#É ‡‚£\"ü‘ëz)`–ìúRI+‹_#aØÿp[o×ñ|\'ë:@ôîóAª×} EíÃé¥¬2,ò’¡Á)º“w_êDÊ‰Ô¶§Í‚íÎÔ6j4°0FŠ†Scö\"«µ~ÖÖG8<\'óÀˆÞí¹€ƒ³½‘:ïÁ¨ŒMÄ6©ª¿/î¿U­9)íO…àãÞáªÞWTÁ>•ËûŠSÁ€0\0É;§õQOí%$Kðþ	œÕ\'ßàÍ•{)²°_ºÒÂÄŽ#/qí&ôOÄ[Ê¶Ñ÷O¹\"Â²æ,êìôl?2j&—Ýíí,‡kàºûäþ›¥û$t3ßó?iYÏ²YÚ·O†í5]Iÿç{ö¦Î£›¤ƒÙš‘X‚LëlÇÌòÌ#,\níWÓMb™©X°³zp)\'ì•Fñ—â{§ôPniqŒ¾9ío§ÃÌ³l5Êy9òMb†&iK–èues¶<%íqÑ¬6ÙþI¬¬½F™_‘‚\'Q•7—3#5XN¸íxL+ºÖ–}	gTj°ô,Þ)0fœ’Ûí§­;7p>íƒDy(éº-s\'ìã¿#Ö›XÌÞ‰êÎ†•>¼í’Ý9ÈF„Üð± Ê÷dÈãíÖ°H]@eéPaí™yŠÅ&)Ô§ü»0Ðx)/ÒmÛ…ÍrÙUzßí¨•þê„¼Ù&š•¹[j’}wR÷Eý·¥vàäíÌ{ðAï„ñôG‰5öFä¿i	y*dq]œOŽÈX=íÜžÂ“ÃW[Bœ\rDÝ¬çý‚ä è³vûp×Úíù>ý’j*¶¡Ììš¬»eí3Öpž]æ¬LØ}ž`îÔ`ÎDX1ó¨˜äç¢Ø¹“óWJÍöšÍ]cÆˆfî	uøJ0f°j\0Ö‘sìÐZR‰~•]ÍÁ´ß*Ã¦Üî\"Ûrd SŒ2é!æ{—Ö£:=úNzäàïÃg†&þî$—F,lKê¸‰/Ã9özÞÃœu ê\Z\"Ødmî*\ZÜîä¬XÝÍ¹[I|•4rñ_œxS‚´©î*tÁ–€Û^ç&ðÆ/Ê\\$ÌÒêr\\`Ê³aþÌî7%€¿eÅ±CS6Õê€ÿÒÇ€èh¤2.^W¨wñîHèÃ®4ñÄòðnþ~2p{wq\Z.(ô´WÑaî_NèóCœ³ˆnÜd,y¼p¯¾U³~¶—É2Ê©ùîwÇ:µjUÊ/¸ªt#Lÿ¿Ž\"uât…âPÇw\"î…´LÛx|ï(.ayâÑ«uÍ#\ZžÚ„e÷œœuîÇuIå;o·è,1ù{÷˜[rÑ¸5é¶b¨,î ù½‰B2ó«+YÔGHéõ¼QéM·®p+ÖÊiî³Ç2ÑvC°­’Æm’*ÑiúžüQLC·H8îÀRvJëÜj…Ãoœ™×Þ¼f2RFt½¯…	{[OîÖbº4˜‚ÿ?Õøäfs^ÅYÚÙ\0‰©Á©¢½À^÷îíxê{ù†NÁ0GuóD/…S¢ÊñÿÄÁ²÷“;îî%ümp2X[j_aG·…¹Ðâ…v»@Þ2‘«b\\þï\0æ“ƒí«~*JÕjTÙ\Zw·?/™cƒg—‹)eÕï¬øöZ~&¢q»ÙN7Óó Z-í‡ÌÉÎ…rõÑ$Eï\Z3b\n¦îæNyoHëN„mQûÑvaýNï/	äYï!vâ‘46]3º]£ë3è<§µÚ—“ñµ”ï<‡*=Ütó…¡¢pE‘KL¶ËÈÖ[œMrx%\0ïb0qq¬Ä‚õ®|x»î’ïñ:¬_³˜V…5:áU–‘Sïo2Ò¾Pÿu‰A_•*}ë~Êô‚\'K9ö;ô¾ÿ4ïÖp«ä\n+=U¯Oª}Ýî…6ÔŠ|¼‰è±}<yï­¼Ö‰KîhxÞ«(Ráïñ1Êõ=~ÅPäwÄïÂºT¡+·Inö™\r{¸ãMë™ã÷_ðà»˜`3x¯ïä4‡•Lê#\\r°¼Ô¹FÅ \"‹$qÏcí@\næÿïø«CñâKnAìO] ™`þo§¦ŠC›ýK¦‚ðÅ.ˆù‘U8u…±›iÏÄèH<pShÛZØ°/ð\r.‚Oôû}9žfPkÈoøÖ2,”=A}P¨ð#\r5ók´à›,P¬D·+ª>J»Ô5ë”§ùn€Îð.\0UŽRqÏk\'…¾šž¨i_i,…\nÑGËô+Lð.\rQŠ\0€½%¶\'óyóm–_˜Ü#ê?ÚÑðE1\0«Â² ÷7“¥5mw>ZÍùß2Q2K=¬^NƒÜâðq¤Ùó¤íQ\nôIS„}V#íN7=‰êÉ·Š5øÔðžgD¼ò©>h]3Úð\n0_¬ÑáWg¢1*ð¥VÁ¦ðåÁFIP´¤ x¯‹fìvL»@èÙÄpàðÀîÆR;K˜ØøÊÑÀúRÌñ[:[ÿæ*w¿(æ1€ª yðÎjL3Ë‡·d„\'­þV&}l›Å]dOìÑgñÆV§æ:ðÓÙ5ÅËfHµ¤A~l!/»6äyÔ¶žî!ª¹[^¦IðÙ·O3Ç³EØ}{˜ÝY¶z¬½Œ‡#¦âñ€@ðÚöXaÍ°]çâ()cÿkÏÐ!~só~h®íî¢q0ðÛÁ•X?8ùÌ…™ƒàH‡Ûi,+xú¼ÍµŒSEðå®9¾r=˜#_~­\\£/SÍ»Ù(YC/#/à€Dðô^>¥6\\½¾ãâV¿6 Eé‘iÇ*ÙX,¤/²6ñÿÚà××}%]ávˆ	§‚\ZYû«¨á<ž}]ñ8æc›Ü4=}ŒXíj(	;ßÝwãgÎÖ¸,\\Rñ‚0©$kÆoˆA­…{¿°¸†ÿÊ2#ì˜amªˆ\'™ñƒY#ÎòO®ç(&\r\n0Ø{zÉã€öÇû7¹jÇá»åñ¥Rºv’•‚^0Òõ?ø2DhÙ4†SGÆ8RH“eüÏñ¥ò|˜œÿ5/îiò¢÷’VV#VÊåí²AðÔÓÙ`ñ¸4Ú‰3Åz\ZríK,îIÞ—ÅOeÀx¨ÑŸ‡ói}„ó.ñËkQ¾_ê3«°9‹y\n£bÛ-5c,R¹–ñè3£§Å\'„r´˜.]9cËx·ªßšY9í\\~ÏóòÂØÄfÖÊÆÇ¶hýj}u—pIXåpâÚ¾Î©T²§…ò/Ó6F€ƒkÍT†E;æH	#Ûß›ÞöˆÍ{òC\'VÛ¨/ÉéH_n{ÝÔFWÔê?^Õ®¢VŸï‹ òN	±á»-«²²j¹›Çs\Zjhß½CáÈ™ªIùë²EòR‰˜ú1ÀãGžÅ¸Ä‹±î‘d/8Ôí“Z{{¥S’*QòbäÁU‹aöÈÐË9e×½R§²X‡?æ¥ˆ1±µòih\ZÎÒ•üƒX¼T÷9€¥€ÛòEßŽ¢iðšÑ†	òkû½!P‚BxQA.TåÐÛ„Òß«à¹ ¯ƒÃÛŽ‡ªòv²••&²=GžŸéVŸkr2Î×C5¶­¸ÏmôÊ~q~Œò‰±Ø;rfXá…¸½“eXÈt¢Åª.+[¤µ£ûòŽå’©H{vúÌò./s|UÈZÓÈA§h$DU²sÓËò­æúIÍ{\'\01ÁãâÜŒ˜ä‡røªŽk¦ŠDßäòÂa²cÉö´ö#kôQbm(ö¹(· {ia^¨\\vì·JòÖM©”C`QA6 _Í~‚jÓcˆ,1®îŒF\n)7Üòä©¾!è@¥˜ë	Ón›ˆ÷K^$ÛëN€Vj¡ýÊqòì`J…BZ›Þ…ˆJ¢Œ•X 0u¦9 >¥!®‰v1’ó ìvªêÄ…¯>¡›ªÐ¨î&ÛD™6X]`ïÇ=ós\0Óê1©y5zÔåÉ4ÎO¨Âš|pÂA5¢PíÛó%MuŒÔä#•¨g±¡]®zmÜ¦³ø‰8‰Öòu¸ó(fyÞÃ2ýÉÐ­Ï9¼àexÜkzªBü«4Ûò6óHy·/=žÝu4¼_c¦µ…	Î¿\'Ž‘®M|4³ógE;+\\¹)HÐqÏÝ{@ÃdX{a2ÕH´=·Äó…GÍÈ6Cm­Å:î|ÄÒ!%¨â…p8ÇUgð¿Œ«ó’ë¤AçNˆÕyúqoÊ…#&]#mV°Û•ºrÈ¹ó¦ÂÔLá=¦Ö6mzQh¨´ZˆêöòœàÁÑÊCÓó¬ µ¨ÊT¯Î±ˆˆåi•½ß Pom\\D5~Ô!À…„ ó®­ËÞo¦éa[™ce«Uõ>TÈõÝÃ¸·~3…ë$:óÐ—†ùÃ÷e¨åãW‰_6|—T-Ý>{ÜrC\nÌ=±óÚkÈÅRdŒj€¦6¿ÄôžTãÏÂëøÎ\'‚³¢óâÂÏït°â®Ýa\'îX%=æB–-ÝEp…~ž\'ÿu)óù’3HÎ_cxøÅNãžÛpn¦¦x{V…«‚@Óôf!··D.S°°J/ÞxkùnZ¶~qÆê6Lê‚¨$Ôô¯ˆ?{II%õ&œV(Aw®Ø<ä©»„Êêcô$Ða‚=¥¸®èµ!3C¹PY¬â¡.c%Ç0b?Oô)MíŸ´™ûøË[Â%>xdë]?ZŠñ´ž1õ€¼ô5ÙÎqö)•9W/`¯çkWèV*à_i_\'hÊMaôCQWÜ~KÛ0±X~DÎ<ý¤Í>Ì5ëO!	U\'£ñôIaÓ´9+¶åí6ì§ÚfFÉ£7«r,Áõ?ÏËOôP“Ó\ZârŸ(gaëžu;YˆR‡>èºv\\ÙÂ?sëkô\\¸ ¸~Ðm†”àVýâ|Ý¥\0™‰!ÔôÙ–X6±¶ôaªv›/%1UÿEd È_w\'±Þ¢—¶×KGs³*<vôu.˜€ùìê—S²ÍA`\n¤	t§úÿp\'â\\Ë‘+&ô‘¡*u4ªµc	\Z{\r˜ˆ†ö¤õ@l(2Ïu¥Üô®-V°ÿð’ÎâJË€…¢z•Ø§`*#–äjô¯xZ¶É&ç\ZÞ{C\rB¶]¢ÞYá#ð<\0!_ô¼M~(‰ª¥ú­kÜà_MèÖW¼ÔF‚i‰]È«ÓôÁë¶åiË’¡BÙÝl@†jë!ë\0@‚þÎ‹ôÅ²Ž3÷´‡²pv`ñr9HŸƒ(¶cßWÞK\"…$ôÆGàÏ­\'·6ÜI\"óVÛÉœ=«Â0¹Ûþµ¼²ñ\ZôÇó×hÖ­Ý†<e1L¢!Ó³ø„\ZªŠD¤K¾—iôÍ@*SŒÄ˜RgÔÉº	r¸ÍzÞ÷2,oÛÏQ®¹ôÏ•ÎFUö…élt€°*³gª§ëÐVâ˜²Ã¹ÇËô×ÔÛ¬ƒ£BjÆLNƒùhZìíe%“D\'‰ÇüG}wîôåEÏk*	ªÏWØŒj»¡|•ÂK\'’ l×Èˆ<ôí²ŠÓÇÒêfdUÈÆ¬¶æ‚ÉÈ\\ê¯fHÜËëö÷v„õI¬IšÝwßd¦4\"°é†—ÑàÞÒ0_Õëhí^1õ Ê-åcÖj¦HtfÝ¬Ó?óáÊD)Ä\'·ÖhcF,õ4¯|iÓQl°p§êt÷>ñ%y£¨²ä1P¥bBüõR‚ý¦ô[B}–\n[ŒÚÜ;	I2qè‘UÔ>åõn)Í„¸ºIx´ñ´VV$ºÌZ=¾”qÅUOúàcõƒïæ\nÔÇÌ4\r\'RŸ2ä8ÏF(>Fð„2 ”Ýõ”Â\"Qj6¿h³ë\'–Vh¦­~ÆÆAd’º€7Üõ¦Dšc€ÉÝA‰\ZµH¯zyÝÀI“íîêQè‰]‘oõÒ%<»°DN«N‹÷Mž^ó®^º¾/jC9òtb–¦pö\r<ë!!dŽeŸpõÂ\ZÂö	¥0mz“ÃÇ˜é%ö…èU‰^¾¬ª‹9pÝô&ÙîÍ`önM{¬ n¾Lö\ZNúŠñ:‡J0¼²L©ð2æû\"L±íâ¯œtÂö%>œ:1¸W™µR¿ÚØŠÍ©°ÂQÔi‚ñ~Õ^Gö7p/è+\Z­Öz°‚ªÚ:MôKƒžp§ƒÔo¤*A¾öTÚŒÌ„ÊŸ[w®¾ÁT™y6›™1?\"p÷¹LÝ×È,övr’`GáÌƒÎSý€°„©Â$ áÁ2|‚¨>éõ‰YöwMüW[þë ´ßIËî/¯H-j\r%èD’°³Éˆ€öƒ+¯P4Õg.½àžÄ{ÎáÊþ^WœÄ/![quöˆÍT ®&gÉ–Ð\r.…Ä:Ø)§QÙÝ7‹Ý£ð ™hö³\"bŸY(VÝÑWË|/5[ýrðÉ·*ÏÊÐM–ÚÔlöº¿ráþn©¶zW„úm:føO&y(ëHÜ´ãÔùö»\nª#_F¯D:±®Õ1IÓ}U\"\0HØBŸ&`Æ8û€möÈ!U¡c%rT ”êã.ªqƒx†ë¹ž=\0öÚÔ\"øIà8cï_Ý;¢kà6½ùR¤r‹çE?{dÂÂöÝG_ÍA”›ê7©¼œÃc0+›Ù^EÎéh1îä„{ëó÷9UÍ,·ŽÞ%k1X\r LcNï‰;½<KÎ÷{–*Òúk“L¤½œÍý–ìE,Ít*«J¸.	ì—÷¼»*æ­\\5œµc%ªaû¤PŸTÁ›g³xÈ»÷=—Ü|@” ÔƒÄÙ\\¯›HVq2ªÎv5Âo«›,™\0÷7ûIÑ´ùE‡³£™Æ90.BAeµ4>]yþS‚Pk™÷=ü9iÎðfCu	l6E€#ñZt,#<‹\ZLÇ4Z¼´÷FUª±¿!}\\ÖŠÿô_È•«ÎoÀ/BÌ\\!÷Z<&Á^‡SÛÜèŽVÄÀ?½ÀºR†ÃŠ¥]€‚	„÷–µôU™Å@ýqð‡âZû˜\ZÒàã×7ŒÂàëñBI÷ÞÍ®6ÝØô»R¾ŠÔ¤z†¤8\\4”ùwæÄc‹÷ßyŽ¼€Ýs–˜øM™)9@óŠ£îþÉðŠ2î‹ÐÁØ.Á÷êVü/B°Îc5a—º\rRI G>?£¨çy;Í+šú‰÷ô\'ùSAE¦D>ÌÓÆÞqqaç_ÊËØˆK)ôAºø,7q‰ø>d\'ù•·‰º@²@xÄÂ°”E½]|ø/ºó±YQ€°;¥#æ6ÌycäÈŒúÊ—ÉjÿßÈLø2©Ë-[Ñ 3»æý]S³³.ïã\\þŸ0×”£ÕøB/\nÉj“z\'açÿô¸·§ø½÷ÙÕFðL\ZøH-L	`$p1/>:r—ýÞV Ç™=={ðÍOrøRÜxgÓJ9G0>z×c&öIÃ†b4~¨*LªQøRkg!iÍïf¦nb.*ëÍÎ·ÛØð¢$ÏgwËøTÎ©#;?²Ú`Ò?ÐÉ;\"ŒèAäöY|û—X;uøaôw?oa”æîbN$²gIÌöÏôõ+Ç·áR.øeî\ZúèàÀôptñµÖá£ˆ¥É:\Z¤`\'8Áy`ø•¥w‰Wðö0ãÛÈP·ªR†Æ‡²î]±Pöd«Þ$*Hø9\n?šg{Ñ÷¥gsû	gOÈàXžIØ#nø¤¨!F#YÈ¼v\"|é:àÝ¯CG#\nY¹E[‚‘VŸwÎø¹i¢%¨-%Fþ\0ëåÀ[˜nî1SaŽ±Ó+ÒÓä]øÛBªE2Øs–ÅŽ)–?ÔŸÌB°	î¤*èZœOÿøÛ’n+zü`ß—Ý×]£^Žé‘$¼d›gÏÒGf¼øçmä°G8²@~nóñ?â	x¶Ä*Õ‘x½kûþS‹øëžµ9À¦²ú”U×RÝ¼\"¥EI¼ {†`zåë$„øì¨€qíæëZ6hÖ²C¾†R=¦8H ‰ÎÔÉ<øíÍ>æyêèyå=ôû ôØƒ•ÏGòÕÓ©&˜‘øî0ýÔ*—·²üuã\0u\r™æ+M\nMÆ¿Ó4€øfù_žMG…àæ%2q¹å¾0è/Ò“:;å…êeäW¤G’ùÊˆÝPäÄ,ÔöK´”A]HÔúë%éóûí¦AõæQù<¯˜£“!B¬|$k¨®¼Ýˆ # Œe¬i%0ùDæ´ÛžVèš¹xRBBy%ÄhÑWv³ÎÇ¶mØ}nùG>pûãÑ¹úáWþƒçÃé5šwõ™ÄOÎEÍÌ¾¶mùGŸ”. Õƒ»g‚ù?ÂƒÐr°Ð¢js$_”D&Ö—»ùH«²á­s%âúÆvüx-âèî#õ¿¼?	äêùT¥¹´5á«)ßø\\Npš±¸Áè[Šá>»ä&¬ù]Œ‘âˆ÷:ÿœø.»Ñ¥×‡„¢Ì4öšžU‹ŽÚùhnl±ÃhÀÈÊ«ÍjF¬**\ZŒµóWînfrP#3ÊùwÖ¢$ØéÕí¡Â¡æ¡˜3þ¼­DÇ\\È[¢I£€ù——wD=O$l\ZÝžðïåIâ9<€ç0oxé¼>ù­L1 Ì\Z?–¯ê÷fè]ÅûÐt2Ðˆ˜èò5û²úù³I˜vË¨CÀ(ªß±wzi›¥C\038§\'Uˆ“éùµ$öSª¢(Ô]4âP¶Ó•¿¾cUÜvÅá¢­—(¯cùÍ„É¯ýTÎ½Ú$_ýƒâõ®¥Søêñ‰©ñÐŠÞ|ùÐ|…åÙnÓãD“~½–v-³;&ˆ¹ãWî²š¥0ùá;äé7Ë\"‘L~Þ…»LEº`!à)lÌÊ›ýhLùëOØ/Ì©3½z4ÎšûC:Ufz^^Gnçõ´ãùì/·pR1‘CúÌ¬20°2€J½Î<±‘:·_ùíB!s*þ¹Ãlª°ö6ÇÕØ\"Q_ýÈ¹©2®¶ša7ùî<\\U}Ï\"A¨´²sÜÂ?—ÜC9‡»Òñ`Âr«Èùð0Ã‰‰ÏÃîò\0èØ1¼Öy£iúN7,N]Ü8äùûÏª¾Žü˜ÌÄÍÜC‘,01›SÍ­ç-€aœ½bùüªpYíx{VcÞÿo€ølNG¢qlkb‡¡ùñá¦aúòÃ±ÔŸ‡ybÐÖ@ËYÓäÔ(J5}×¸d“t`Muú¼ÌÆ‚€Uz[çºw\\=Ê¼\0[\nKixµ-b>´Åú,Eýd½Ò”à\nNß-Žëî\0´9pM0+±½~0Ÿú:6rÂ½cÉÏ	…âh{€M\\ó¶ÒËÐJ¬š,ºk\r?úúO\Z/Þ†f…½à?½xÈƒ9ºú\rQP@\rïÌ\Z¾áÁûúSÒzó½¬\n³ÀE´OŒ“µÇwF.Pùê)n>³ù<ñÏúW¨ÎS)¿‡Ð_×]µæêÃYÿaŠ\'kY¹­ÙÿÝú_otërã£)ÍÖC§“¹ÙE®IÇm/½;×ïàëgúg¼Å­Ž‹Æ±Òà0`ü®£8^ùùì\\‚¦Æ‹ý~– ú~’J±Ì7$kSsYme(°|£‚.¸Å¹zZàÅ[ú¢¸ªëª¾l°céì‹…ŠqÚo×Ÿ¡¸KÈÖ›+ú°º%íØ‚Ã!aÎ29\nÜãÈÿ½`¨F_h” *Šyúº.¶Z±Û­Pî0·¨\"€’j…ÅÎ§=xat\\Kú×h“£á9¦õÀäwÇÐÄí¼;Z)õÂîKþ~ÞúßQ‚[::Ýü´jžsÞØ^Z@2nâì³ve)e_úäuî‚éî!Å9½]´we<»¹‡Î¹iJkNúêuMüóÙ‹‹OãI0x{MðyR\r´~»®S²îúíµBST…ª½ð hÂZs©*†÷²[?	PO´“vúóDÅŒi*ïŽb÷ÕÚ*¡;Ø©D“Ú¨²nó/NàœúóIø¨}7+Æ•¤A÷Üàlæ¬¿B÷õtÛ\'s÷ðtúú‚¾sh«wí¥äk1]ÿ\':ò&e¿t¤b¯tñîúÿ*Î\n\'¼Z%±À$^Ùòô*¹B¥üR_~ñ;AŠ•òúÿk8«Úæó\\=†>Jõ¹ºÄ1íÀ~(‹æéAcïqûo%TFþO-ÁGzÂJTN>Ú\'¿Ùñý‚”ç˜#.ûD¥=±ôøÒÙaÞ:ôß\'j•Kùä WHS’ªÜû`\rÈy~Eä~|ˆ\nRËi)fl—é¥”e}ã)ldû*ôÃ€IñFª^‚È¯—Ü’ì‰åWø’é@ž~½Ý˜ÇûTÊ`Èl©ìÀ Þ9¾˜çªPÞkÖKVÒâdªÝ*ãûX\0M‡oï•DO=hÙW¹û\0 á7$÷Ýê—ôR¸Tûbý¸zúHpÀfÀœ?÷@Ñ˜Ý²àI ù¶¾ŠG±]ûqÓM;ŒÕ>l\nAíµŽ>åÎk˜hÇØÝRºÆñ8ûyO¬ŠtïldôUÐý^Á­E¡%OˆðnÞ¹Á~}û©J[ªAn>šã¢ÈP:²›éÃÆ7àî«4iwŒîû­ÙqïcçsÏ @€\"/äÙÁÅ¡|sP|0›‘Ã´þû°Š!§JÉÈ[h7e“^ïJžT«uµV°”Ú…ò6ûµ»bJñ³õRê©#ŒÿÔ²‹Yu¢nénO–œûû¹¿Ž#£\rÐF1_Ò¢\'žSz§<ÂJ8«@Ýbûäc\niz½N£y×Šìô´}Ëœ.Üþì®\Z»^¡­šûñ*Ì¶=·²ÊÙ–‡.õ)~Êñ	Ì_OPü\nøx+©UÇ×1ï›wëî€zœ)­\"4„+ÜB\\ü¬’IIÿ%¸%è\"Ð–XŸœ¢å~X4;;Ý]*Å	ü&Æô¹ô\"TÑþQWvRiº²dú3’mþ`aÅø3\rü45q$¨&Î’9QO*z½kB…Ž€½µžþjdE,üTg‹OrP~øtgn©gšÉí(¸W¦{v¨êÑÍ^ôüZ¬è}ÈC6Ýž÷«+‘?‹Û¸ZøPËd?Pü\\ÄÒùèƒkO×ýÃø}H¦\"Fï+:ÌµLZ’KAüryüä9Hø$ÅÄªìÌß50K5:\'òÄŠÆ$ôÜÔºŸšüx¡‹ÇÂr¼^/û£Ê\'ðD‡~ì•4èdôÍÂ`8`qü×†dÅªC*†k]¬0É¾\"€àþâÍ¶#8Kå®Äü§r×À’Ø|\Zéã‚5¬báŠT2¼®Ëph=´±ßü¬®—§jŽ#ÏjR……ÏÕ	ðª¨Ú|‡zÂþü03Åü¾Ü¸OV1¨SlfwVç¦Î1	üØl?Î•.\r•üÆ¨;p¸-ä¤e*îÒÑ`žˆÊ[í§p5UÿüØÍ³§Ðá¦{œ£án¥¿Â!z[Û>µf¸t4‰üî÷s^¦tE+WêLêÕ¯‰èÿ¦CŽêøÒ©Ï‡HýhŸZ;PáÈ.¤çóËs.¸1º›qþ+Ü‹\r’4Êý$PdµuU1¹Èô×8›—ð<Knâs¡µÀpGR÷bý:LÀÃ0ñ÷¬j}¼y•ìŠŸWÄ¿ÇSh¡5GHý;ÛVƒ­(üÊ(Æ\ZB\0ˆ\rËlÅ—™àÂBäs°#3ý?+æê‡Wpâ¤P¾Mçk]¼<px_Á\"RÝLki ˜GýAp“\Z\\½¢á?hç8°ªó€Q‹È$–d1úìËŒýGPPù(ÔÏžÁÓîSËá3Qý?(H|,ø;pŠñýH@yÆ„¿k}Ì{Œ¯[«ÇW{ŒLGÍ.ávOÇ«ž\"ýM\r6IcÄ÷½ýòE‘«,M+,¢Ç–¸åfŠž ýMPæ†[°Y&åð¨Ï\rŠ¯,·¡ëYDxÎÂxæ©÷ýVÞŒ˜\Z­Ò~´VDéÙÉZ6ßaWÊÀ_à÷¢tÊ©kýgìi\nÁB±_Èê[•\0‹Ý7¢Ù4òw5×ØÌqáë‚ýy°ŸäÚ1±Ð©3«&³TtÝÈ¹£ê8€=âËSýP¶yóYmíí«ˆûm¶æ½UíI¶æÏOÀF	!•ùýŽî›qÀ¬Oç¤~Ã¾`·Ï·7“i.KþÜêK´ìýœþ;Œ¢3@¢†\"ŽÁ_Ò“dª/5¿ðýŸà%ƒ´Ûè9”U6>÷Nc°VŠM°Tp÷W \r0¥ý¤äçZ|›\\ŽT‰-‡±BýD\"Ð,QÃuÜ³Á÷n¡ý¯¦.˜ÇíñÚA\ZÝÊX¦m,¬éP\rë—J·hÜýãxÅQ#’›\0Â‰Àtgû¤ò¡FªÁÎN¡õßvýó&›W\"üÄ²}:€®ñkÕSà÷-e&sñcôþ1héØ—]m3ÄºXq°Ã÷ìjÂ_Þy®[+xòEèþÇV0zÙêÁxiÇþ\nÌí²ÛFž\nËè·þ7‘Û4Ææ¬‹\\ó Mè=„°æO‚¡–h³¿£™’þ=Øíln&ÎÑø¾„çÄƒæJÇÓ—µ‰£~ÄÄÞ÷…élþL;•-ºÎFÒÄ\0ÓÙU±ƒ*/·—ÖÖdã.>z_ÛþMEÈMÕ-/vÄç_Ú…c’œâ¯é?,U&üß\"–‹Rþ[à˜¼Rá±ÆØá|LìõŒ•§<uQR”V³¤ ¸xþs 	b[Ðy¦iÏCàâ¨õ\0öâôãTþq@W~‡þ{™á¹œgñIU9ÿ\0ÅØÚ¡Swíq’\\(LpR^þ_mËo²<eÇç{„FE²P\n-ÀáðÞ,5Hþ¼:¤œ@¾æÆ\rà%·­-ƒ™½½à,$y·Ãkèþ¿\\ý3†ë”¢ß“{½B2—Aá™êÖGÙ<Š&%þÁùß¼w$ž¦™cŽTVÂ¶\r‰|fø7hCÁp\ZÐþÝ8šwGþ+‰dUxÑÕXcˆÑ¨Vò*¿6Øi(ÎþåHÖXwÙ6[òþ|ýJaÙÍ´çÐ–Òq^ü¥þìOžh;xAô3×÷-\r¬ðèhMœ>kv7¥Å[þòžÞ×‡d£Ì‚zR<¯¿2õêèKˆ®ÓØÃ7‰I“þýIÆ!1&™j¶‡[6›¼ˆš56i¹8ç›nžtþýl™*ÿÇñ?·ˆò½/]À\Zø4í¨¹tXê*ý¹ò5®ÿ2ó.p²Â·Ð\"„Fœ6ZØ™\n¹Ý$zŒ÷z¸¤\rÿ9`\\&S9â~{-LKÅIÛT–iØï;•u!®öÿ7ôÿ±˜UÍe°H> -ôä%G µ(ŒmÎ\0˜ùÿDO;†™^ñKÔälµ¿½€Ø¸!à/?aFÓzìò#ÿU³%föî­{øxóÊiŒ<ç¹f¯œ;¯˜µ–š‰KÿZ9Þ°NúÝWj_‰Hñ¬]ÏÍšV”IùR[ëƒ›ÖBÿwðšs°ÐbN}¼qY…Çý7zo•Uæªuô\'¡¥Ö1ÿk¯®’~P,oü¨ÁÊ‚-~¦BÊ¾Ëi>1¹/#ÿ´Þ#öÛyš‹XÔoaª…\\DÅžheb¤‰õÿÂàhƒæ?)—3Ž»1àuóŸ¡s˜Þ_sñ³¢Ð¨dÿÄ>V *RˆŸ/\0˜ˆòÛãÓ·ï~rÆ%\"ÒÊæžòÿÅò8lbØÎºÿ§\"ž7eŽEŒ=n~ÛÑÍ™\'2ÕC/ÿËâú¶¸rÍ\rÇÌˆÙ\r‹;ÑJ¬UŒË‘-ó\\BÿÖ?»›	C¿Q–¾Ûc2 Gƒ‚”â“½eåÞh£ähï‘ÿÚÝŒ^Ý@óË¶\\},nÑÜ¿Û›~AëF×,ìÿâ\"øÇ¢ì@¬\nŸpy4&¾7‚:˜wO–h4jùy¨DØÿý{Å<n—Ð½¯>!Äí2ú¤_UÖd~ ÞpØç²7O\";}\"ñ”20\0','no'),('currentCronKey','','yes'),('dashboardData','a:4:{s:9:\"generated\";i:1701275274;s:3:\"tdf\";a:3:{s:9:\"community\";i:5796;s:7:\"premium\";i:5888;s:9:\"blacklist\";i:10720;}s:10:\"attackdata\";a:3:{s:3:\"24h\";a:24:{i:0;a:2:{s:1:\"t\";i:1701187200;s:1:\"c\";i:11091157;}i:1;a:2:{s:1:\"t\";i:1701190800;s:1:\"c\";i:11773147;}i:2;a:2:{s:1:\"t\";i:1701194400;s:1:\"c\";i:11561182;}i:3;a:2:{s:1:\"t\";i:1701198000;s:1:\"c\";i:11214093;}i:4;a:2:{s:1:\"t\";i:1701201600;s:1:\"c\";i:11327298;}i:5;a:2:{s:1:\"t\";i:1701205200;s:1:\"c\";i:10942014;}i:6;a:2:{s:1:\"t\";i:1701208800;s:1:\"c\";i:10865446;}i:7;a:2:{s:1:\"t\";i:1701212400;s:1:\"c\";i:10621237;}i:8;a:2:{s:1:\"t\";i:1701216000;s:1:\"c\";i:10622920;}i:9;a:2:{s:1:\"t\";i:1701219600;s:1:\"c\";i:10967715;}i:10;a:2:{s:1:\"t\";i:1701223200;s:1:\"c\";i:11053728;}i:11;a:2:{s:1:\"t\";i:1701226800;s:1:\"c\";i:11208649;}i:12;a:2:{s:1:\"t\";i:1701230400;s:1:\"c\";i:14731921;}i:13;a:2:{s:1:\"t\";i:1701234000;s:1:\"c\";i:16995533;}i:14;a:2:{s:1:\"t\";i:1701237600;s:1:\"c\";i:18615768;}i:15;a:2:{s:1:\"t\";i:1701241200;s:1:\"c\";i:18941028;}i:16;a:2:{s:1:\"t\";i:1701244800;s:1:\"c\";i:18671413;}i:17;a:2:{s:1:\"t\";i:1701248400;s:1:\"c\";i:18450522;}i:18;a:2:{s:1:\"t\";i:1701252000;s:1:\"c\";i:18453786;}i:19;a:2:{s:1:\"t\";i:1701255600;s:1:\"c\";i:17442015;}i:20;a:2:{s:1:\"t\";i:1701259200;s:1:\"c\";i:10735732;}i:21;a:2:{s:1:\"t\";i:1701262800;s:1:\"c\";i:10438366;}i:22;a:2:{s:1:\"t\";i:1701266400;s:1:\"c\";i:10193483;}i:23;a:2:{s:1:\"t\";i:1701270000;s:1:\"c\";i:9734188;}}s:2:\"7d\";a:7:{i:0;a:2:{s:1:\"t\";i:1700611200;s:1:\"c\";i:367531172;}i:1;a:2:{s:1:\"t\";i:1700697600;s:1:\"c\";i:431138001;}i:2;a:2:{s:1:\"t\";i:1700784000;s:1:\"c\";i:432195625;}i:3;a:2:{s:1:\"t\";i:1700870400;s:1:\"c\";i:428886438;}i:4;a:2:{s:1:\"t\";i:1700956800;s:1:\"c\";i:362935588;}i:5;a:2:{s:1:\"t\";i:1701043200;s:1:\"c\";i:316753449;}i:6;a:2:{s:1:\"t\";i:1701129600;s:1:\"c\";i:306157647;}}s:3:\"30d\";a:30:{i:0;a:2:{s:1:\"t\";i:1698624000;s:1:\"c\";i:308865465;}i:1;a:2:{s:1:\"t\";i:1698710400;s:1:\"c\";i:295501819;}i:2;a:2:{s:1:\"t\";i:1698796800;s:1:\"c\";i:325402433;}i:3;a:2:{s:1:\"t\";i:1698883200;s:1:\"c\";i:440167635;}i:4;a:2:{s:1:\"t\";i:1698969600;s:1:\"c\";i:491996167;}i:5;a:2:{s:1:\"t\";i:1699056000;s:1:\"c\";i:514067964;}i:6;a:2:{s:1:\"t\";i:1699142400;s:1:\"c\";i:318395598;}i:7;a:2:{s:1:\"t\";i:1699228800;s:1:\"c\";i:288416389;}i:8;a:2:{s:1:\"t\";i:1699315200;s:1:\"c\";i:398166557;}i:9;a:2:{s:1:\"t\";i:1699401600;s:1:\"c\";i:420424672;}i:10;a:2:{s:1:\"t\";i:1699488000;s:1:\"c\";i:451439853;}i:11;a:2:{s:1:\"t\";i:1699574400;s:1:\"c\";i:471190249;}i:12;a:2:{s:1:\"t\";i:1699660800;s:1:\"c\";i:451746981;}i:13;a:2:{s:1:\"t\";i:1699747200;s:1:\"c\";i:474128098;}i:14;a:2:{s:1:\"t\";i:1699833600;s:1:\"c\";i:466537459;}i:15;a:2:{s:1:\"t\";i:1699920000;s:1:\"c\";i:467301458;}i:16;a:2:{s:1:\"t\";i:1700006400;s:1:\"c\";i:516800011;}i:17;a:2:{s:1:\"t\";i:1700092800;s:1:\"c\";i:535870774;}i:18;a:2:{s:1:\"t\";i:1700179200;s:1:\"c\";i:554384735;}i:19;a:2:{s:1:\"t\";i:1700265600;s:1:\"c\";i:415570609;}i:20;a:2:{s:1:\"t\";i:1700352000;s:1:\"c\";i:411667894;}i:21;a:2:{s:1:\"t\";i:1700438400;s:1:\"c\";i:438682891;}i:22;a:2:{s:1:\"t\";i:1700524800;s:1:\"c\";i:360715268;}i:23;a:2:{s:1:\"t\";i:1700611200;s:1:\"c\";i:367531172;}i:24;a:2:{s:1:\"t\";i:1700697600;s:1:\"c\";i:431138001;}i:25;a:2:{s:1:\"t\";i:1700784000;s:1:\"c\";i:432195625;}i:26;a:2:{s:1:\"t\";i:1700870400;s:1:\"c\";i:428886438;}i:27;a:2:{s:1:\"t\";i:1700956800;s:1:\"c\";i:362935588;}i:28;a:2:{s:1:\"t\";i:1701043200;s:1:\"c\";i:316753449;}i:29;a:2:{s:1:\"t\";i:1701129600;s:1:\"c\";i:306157647;}}}s:9:\"countries\";a:1:{s:2:\"7d\";a:10:{i:0;a:2:{s:2:\"cd\";s:2:\"US\";s:2:\"ct\";i:655558740;}i:1;a:2:{s:2:\"cd\";s:2:\"NL\";s:2:\"ct\";i:256383773;}i:2;a:2:{s:2:\"cd\";s:2:\"SG\";s:2:\"ct\";i:195700798;}i:3;a:2:{s:2:\"cd\";s:2:\"DE\";s:2:\"ct\";i:181988571;}i:4;a:2:{s:2:\"cd\";s:2:\"FR\";s:2:\"ct\";i:134236718;}i:5;a:2:{s:2:\"cd\";s:2:\"IN\";s:2:\"ct\";i:105469595;}i:6;a:2:{s:2:\"cd\";s:2:\"GB\";s:2:\"ct\";i:84302639;}i:7;a:2:{s:2:\"cd\";s:2:\"CN\";s:2:\"ct\";i:74584482;}i:8;a:2:{s:2:\"cd\";s:2:\"VN\";s:2:\"ct\";i:57802075;}i:9;a:2:{s:2:\"cd\";s:2:\"ID\";s:2:\"ct\";i:40998216;}}}}','yes'),('dbTest','a:1:{s:5:\"nonce\";s:64:\"124ae99da66c5ef029772b06fdd248ca86af787b4494ab93dcf4058c659f331c\";}','no'),('dbVersion','5.5.68-MariaDB','yes'),('debugOn','0','yes'),('deleteTablesOnDeact','0','yes'),('detectProxyNextCheck','1701235429','no'),('detectProxyNonce','','no'),('detectProxyRecommendation','HTTP_X_REAL_IP','no'),('diagnosticsWflogsRemovalHistory','[]','no'),('disableCodeExecutionUploads','0','yes'),('disableConfigCaching','0','yes'),('disableWAFIPBlocking','0','yes'),('dismissAutoPrependNotice','1','yes'),('displayAutomaticBlocks','1','yes'),('displayTopLevelBlocking','0','yes'),('displayTopLevelLiveTraffic','0','yes'),('displayTopLevelOptions','1','yes'),('emailedIssuesList','a:284:{i:0;a:2:{s:7:\"ignoreC\";s:32:\"b4efdc145d23b0cbbfcea25656cdcd9d\";s:7:\"ignoreP\";s:32:\"b4efdc145d23b0cbbfcea25656cdcd9d\";}i:1;a:2:{s:7:\"ignoreC\";s:32:\"28e0a8a2a589f98d43612ea34aa0e480\";s:7:\"ignoreP\";s:32:\"28e0a8a2a589f98d43612ea34aa0e480\";}i:2;a:2:{s:7:\"ignoreC\";s:32:\"2d28e06cadb1c413b4afccef95fd4c3e\";s:7:\"ignoreP\";s:32:\"2d28e06cadb1c413b4afccef95fd4c3e\";}i:3;a:2:{s:7:\"ignoreC\";s:32:\"c9b30d9b603e978e56a9236dbd9f9d5f\";s:7:\"ignoreP\";s:32:\"c9b30d9b603e978e56a9236dbd9f9d5f\";}i:4;a:2:{s:7:\"ignoreC\";s:32:\"118b8f8782519082ec90487d73ae8f8c\";s:7:\"ignoreP\";s:32:\"118b8f8782519082ec90487d73ae8f8c\";}i:5;a:2:{s:7:\"ignoreC\";s:32:\"8490ecdf621199e9e7e4a0c6e427d1c4\";s:7:\"ignoreP\";s:32:\"8490ecdf621199e9e7e4a0c6e427d1c4\";}i:6;a:2:{s:7:\"ignoreC\";s:32:\"a8d34544a9ad77f2a4f946d3fe0291fc\";s:7:\"ignoreP\";s:32:\"a8d34544a9ad77f2a4f946d3fe0291fc\";}i:7;a:2:{s:7:\"ignoreC\";s:32:\"bd3796e10d6b9ba233821f02b56d20c3\";s:7:\"ignoreP\";s:32:\"bd3796e10d6b9ba233821f02b56d20c3\";}i:8;a:2:{s:7:\"ignoreC\";s:32:\"445585003cef88246c54640b6f704555\";s:7:\"ignoreP\";s:32:\"445585003cef88246c54640b6f704555\";}i:9;a:2:{s:7:\"ignoreC\";s:32:\"c176794cc130fa4a009573a3a1c72743\";s:7:\"ignoreP\";s:32:\"c176794cc130fa4a009573a3a1c72743\";}i:10;a:2:{s:7:\"ignoreC\";s:32:\"5b7f123b0fd16c1a57d406038354ffd3\";s:7:\"ignoreP\";s:32:\"5b7f123b0fd16c1a57d406038354ffd3\";}i:11;a:2:{s:7:\"ignoreC\";s:32:\"5cc9e9c1f7d27a903e71f6d00c46032b\";s:7:\"ignoreP\";s:32:\"5cc9e9c1f7d27a903e71f6d00c46032b\";}i:12;a:2:{s:7:\"ignoreC\";s:32:\"fcd4dcc2feb50394019d446f4db82374\";s:7:\"ignoreP\";s:32:\"fcd4dcc2feb50394019d446f4db82374\";}i:13;a:2:{s:7:\"ignoreC\";s:32:\"00ae4d2121c4ff34ff0ed926c8e97ece\";s:7:\"ignoreP\";s:32:\"00ae4d2121c4ff34ff0ed926c8e97ece\";}i:14;a:2:{s:7:\"ignoreC\";s:32:\"920b8db759b5f78fa5d45daee2c06e1d\";s:7:\"ignoreP\";s:32:\"920b8db759b5f78fa5d45daee2c06e1d\";}i:15;a:2:{s:7:\"ignoreC\";s:32:\"4b8846538b35a1f9495a4ee2f1c1d6fe\";s:7:\"ignoreP\";s:32:\"4b8846538b35a1f9495a4ee2f1c1d6fe\";}i:16;a:2:{s:7:\"ignoreC\";s:32:\"cf294282eab8f157d212706e0459e228\";s:7:\"ignoreP\";s:32:\"cf294282eab8f157d212706e0459e228\";}i:17;a:2:{s:7:\"ignoreC\";s:32:\"0936cd2ca57ed805b25c27d737d75585\";s:7:\"ignoreP\";s:32:\"0936cd2ca57ed805b25c27d737d75585\";}i:18;a:2:{s:7:\"ignoreC\";s:32:\"2694c982e42c77b95a697979b66bc397\";s:7:\"ignoreP\";s:32:\"2694c982e42c77b95a697979b66bc397\";}i:19;a:2:{s:7:\"ignoreC\";s:32:\"ebedded923b409ba1d8312656d08849c\";s:7:\"ignoreP\";s:32:\"ebedded923b409ba1d8312656d08849c\";}i:20;a:2:{s:7:\"ignoreC\";s:32:\"b8e0fe1b2302e1e635b1408260c00e23\";s:7:\"ignoreP\";s:32:\"b8e0fe1b2302e1e635b1408260c00e23\";}i:21;a:2:{s:7:\"ignoreC\";s:32:\"0f866f849e75e849294d72674e560c98\";s:7:\"ignoreP\";s:32:\"0f866f849e75e849294d72674e560c98\";}i:22;a:2:{s:7:\"ignoreC\";s:32:\"ba353b71d18d1ce48de32c4f6accd971\";s:7:\"ignoreP\";s:32:\"ba353b71d18d1ce48de32c4f6accd971\";}i:23;a:2:{s:7:\"ignoreC\";s:32:\"9050712ff9d06e8faa3b3f072a9c9054\";s:7:\"ignoreP\";s:32:\"9050712ff9d06e8faa3b3f072a9c9054\";}i:24;a:2:{s:7:\"ignoreC\";s:32:\"3d5cbcd0c24d342a524ddf6c7e69c974\";s:7:\"ignoreP\";s:32:\"3d5cbcd0c24d342a524ddf6c7e69c974\";}i:25;a:2:{s:7:\"ignoreC\";s:32:\"0023c1e2f71a293fa539576da7953770\";s:7:\"ignoreP\";s:32:\"0023c1e2f71a293fa539576da7953770\";}i:26;a:2:{s:7:\"ignoreC\";s:32:\"468f44c4da2f16fb38e969c4bef93385\";s:7:\"ignoreP\";s:32:\"468f44c4da2f16fb38e969c4bef93385\";}i:27;a:2:{s:7:\"ignoreC\";s:32:\"6fd0d290b978eab8027e6b79501ac149\";s:7:\"ignoreP\";s:32:\"6fd0d290b978eab8027e6b79501ac149\";}i:28;a:2:{s:7:\"ignoreC\";s:32:\"79118510e3ee717e5b7e7d85afc5a824\";s:7:\"ignoreP\";s:32:\"79118510e3ee717e5b7e7d85afc5a824\";}i:29;a:2:{s:7:\"ignoreC\";s:32:\"c7c1dbf8004769eae66ed1c3d65b37ac\";s:7:\"ignoreP\";s:32:\"c7c1dbf8004769eae66ed1c3d65b37ac\";}i:30;a:2:{s:7:\"ignoreC\";s:32:\"1177d77074fa238b730c66fc75fda76d\";s:7:\"ignoreP\";s:32:\"1177d77074fa238b730c66fc75fda76d\";}i:31;a:2:{s:7:\"ignoreC\";s:32:\"194ddc075b302c63cedf27285cb0bb8e\";s:7:\"ignoreP\";s:32:\"194ddc075b302c63cedf27285cb0bb8e\";}i:32;a:2:{s:7:\"ignoreC\";s:32:\"6394167bd5aa8fd84c38510495d0597a\";s:7:\"ignoreP\";s:32:\"6394167bd5aa8fd84c38510495d0597a\";}i:33;a:2:{s:7:\"ignoreC\";s:32:\"3d8cb662d4beba37cb1dcded8698f90a\";s:7:\"ignoreP\";s:32:\"3d8cb662d4beba37cb1dcded8698f90a\";}i:34;a:2:{s:7:\"ignoreC\";s:32:\"068d808f4025f1c2c95ca8b8f623b281\";s:7:\"ignoreP\";s:32:\"068d808f4025f1c2c95ca8b8f623b281\";}i:35;a:2:{s:7:\"ignoreC\";s:32:\"72a0b90634b34fca20865f80800945aa\";s:7:\"ignoreP\";s:32:\"72a0b90634b34fca20865f80800945aa\";}i:36;a:2:{s:7:\"ignoreC\";s:32:\"a0bd60d342057a6b75d1fa92989cf6ab\";s:7:\"ignoreP\";s:32:\"a0bd60d342057a6b75d1fa92989cf6ab\";}i:37;a:2:{s:7:\"ignoreC\";s:32:\"44c99ec5a3500d6beef37c283ba1cc9f\";s:7:\"ignoreP\";s:32:\"44c99ec5a3500d6beef37c283ba1cc9f\";}i:38;a:2:{s:7:\"ignoreC\";s:32:\"85cec6835540e63ef7e27e7eb0a77314\";s:7:\"ignoreP\";s:32:\"85cec6835540e63ef7e27e7eb0a77314\";}i:39;a:2:{s:7:\"ignoreC\";s:32:\"7d527ce5500017932d526ecbc41ad3d6\";s:7:\"ignoreP\";s:32:\"7d527ce5500017932d526ecbc41ad3d6\";}i:40;a:2:{s:7:\"ignoreC\";s:32:\"1d6aa494b68afa480ff98a29e8dd9258\";s:7:\"ignoreP\";s:32:\"1d6aa494b68afa480ff98a29e8dd9258\";}i:41;a:2:{s:7:\"ignoreC\";s:32:\"eabff09e98e1538b5cf007dd2460d988\";s:7:\"ignoreP\";s:32:\"eabff09e98e1538b5cf007dd2460d988\";}i:42;a:2:{s:7:\"ignoreC\";s:32:\"0bbf00b7403c2412fa4c8664d2eeb243\";s:7:\"ignoreP\";s:32:\"0bbf00b7403c2412fa4c8664d2eeb243\";}i:43;a:2:{s:7:\"ignoreC\";s:32:\"8f8b9be53f37349e8c286a99fa08af1e\";s:7:\"ignoreP\";s:32:\"8f8b9be53f37349e8c286a99fa08af1e\";}i:44;a:2:{s:7:\"ignoreC\";s:32:\"3e4a826a0a06a410b343f4f0f926ce9e\";s:7:\"ignoreP\";s:32:\"3e4a826a0a06a410b343f4f0f926ce9e\";}i:45;a:2:{s:7:\"ignoreC\";s:32:\"2671879fd8d80567ab1602c31b2a19ee\";s:7:\"ignoreP\";s:32:\"2671879fd8d80567ab1602c31b2a19ee\";}i:46;a:2:{s:7:\"ignoreC\";s:32:\"d7d79fafe7922801553161ec039c8ab8\";s:7:\"ignoreP\";s:32:\"d7d79fafe7922801553161ec039c8ab8\";}i:47;a:2:{s:7:\"ignoreC\";s:32:\"d1243681ac040ec7cd825553349454f7\";s:7:\"ignoreP\";s:32:\"d1243681ac040ec7cd825553349454f7\";}i:48;a:2:{s:7:\"ignoreC\";s:32:\"73f0448a8c7f109764912964049f3318\";s:7:\"ignoreP\";s:32:\"73f0448a8c7f109764912964049f3318\";}i:49;a:2:{s:7:\"ignoreC\";s:32:\"ddb6e48b3cebcb2d0598da8a14bbeedf\";s:7:\"ignoreP\";s:32:\"ddb6e48b3cebcb2d0598da8a14bbeedf\";}i:50;a:2:{s:7:\"ignoreC\";s:32:\"9071ba672b39ff5410e6a5874d3b5b6f\";s:7:\"ignoreP\";s:32:\"9071ba672b39ff5410e6a5874d3b5b6f\";}i:51;a:2:{s:7:\"ignoreC\";s:32:\"c81b30786a7a937b4a0bed75db6743c8\";s:7:\"ignoreP\";s:32:\"c81b30786a7a937b4a0bed75db6743c8\";}i:52;a:2:{s:7:\"ignoreC\";s:32:\"8f60f20b9d98572958bd446480e00666\";s:7:\"ignoreP\";s:32:\"8f60f20b9d98572958bd446480e00666\";}i:53;a:2:{s:7:\"ignoreC\";s:32:\"54aa39529c7824f447ce8ec3d4fc93bf\";s:7:\"ignoreP\";s:32:\"54aa39529c7824f447ce8ec3d4fc93bf\";}i:54;a:2:{s:7:\"ignoreC\";s:32:\"d3fde87d8159e54efe26533518ad3026\";s:7:\"ignoreP\";s:32:\"d3fde87d8159e54efe26533518ad3026\";}i:55;a:2:{s:7:\"ignoreC\";s:32:\"84749d600cce3c46d53f1845fcbc0839\";s:7:\"ignoreP\";s:32:\"84749d600cce3c46d53f1845fcbc0839\";}i:56;a:2:{s:7:\"ignoreC\";s:32:\"c3ba27a67bf1b08b9a7eee258b48b8f6\";s:7:\"ignoreP\";s:32:\"c3ba27a67bf1b08b9a7eee258b48b8f6\";}i:57;a:2:{s:7:\"ignoreC\";s:32:\"0e2cdbd90d4d1205b1018b97e075ecba\";s:7:\"ignoreP\";s:32:\"0e2cdbd90d4d1205b1018b97e075ecba\";}i:58;a:2:{s:7:\"ignoreC\";s:32:\"62847f75b0800c9730918f23042072af\";s:7:\"ignoreP\";s:32:\"62847f75b0800c9730918f23042072af\";}i:59;a:2:{s:7:\"ignoreC\";s:32:\"9663053592bedcb641363d07d2358357\";s:7:\"ignoreP\";s:32:\"9663053592bedcb641363d07d2358357\";}i:60;a:2:{s:7:\"ignoreC\";s:32:\"6c1e94b12c0e5b56eae9cc867c5f7581\";s:7:\"ignoreP\";s:32:\"6c1e94b12c0e5b56eae9cc867c5f7581\";}i:61;a:2:{s:7:\"ignoreC\";s:32:\"7a1ede62d004464b95389660abd4beaa\";s:7:\"ignoreP\";s:32:\"7a1ede62d004464b95389660abd4beaa\";}i:62;a:2:{s:7:\"ignoreC\";s:32:\"74e5b49c4fb4156e857a89422e3ee616\";s:7:\"ignoreP\";s:32:\"74e5b49c4fb4156e857a89422e3ee616\";}i:63;a:2:{s:7:\"ignoreC\";s:32:\"06c5c730d2ab47d6fd8206e5319f71dd\";s:7:\"ignoreP\";s:32:\"06c5c730d2ab47d6fd8206e5319f71dd\";}i:64;a:2:{s:7:\"ignoreC\";s:32:\"9302d73342becadf6c737f844d910da4\";s:7:\"ignoreP\";s:32:\"9302d73342becadf6c737f844d910da4\";}i:65;a:2:{s:7:\"ignoreC\";s:32:\"c96912519ccba166c12ea22c472047a1\";s:7:\"ignoreP\";s:32:\"c96912519ccba166c12ea22c472047a1\";}i:66;a:2:{s:7:\"ignoreC\";s:32:\"1a9f170c5dfd230c5fc59fe459e3df63\";s:7:\"ignoreP\";s:32:\"1a9f170c5dfd230c5fc59fe459e3df63\";}i:67;a:2:{s:7:\"ignoreC\";s:32:\"f4cf826a5d06cea85394a958cbf99be6\";s:7:\"ignoreP\";s:32:\"f4cf826a5d06cea85394a958cbf99be6\";}i:68;a:2:{s:7:\"ignoreC\";s:32:\"508e22f0399d08fc1ade83e151ac8ffb\";s:7:\"ignoreP\";s:32:\"508e22f0399d08fc1ade83e151ac8ffb\";}i:69;a:2:{s:7:\"ignoreC\";s:32:\"3a4ff45481a27c95c860e176531f51ec\";s:7:\"ignoreP\";s:32:\"3a4ff45481a27c95c860e176531f51ec\";}i:70;a:2:{s:7:\"ignoreC\";s:32:\"e4169fe91e717a6468314ec48f861010\";s:7:\"ignoreP\";s:32:\"e4169fe91e717a6468314ec48f861010\";}i:71;a:2:{s:7:\"ignoreC\";s:32:\"55a8f3fd3ce1ba3bbfa9307fc0516ac8\";s:7:\"ignoreP\";s:32:\"55a8f3fd3ce1ba3bbfa9307fc0516ac8\";}i:72;a:2:{s:7:\"ignoreC\";s:32:\"800c751d8d814f6c9ee3a81fd3b601f6\";s:7:\"ignoreP\";s:32:\"800c751d8d814f6c9ee3a81fd3b601f6\";}i:73;a:2:{s:7:\"ignoreC\";s:32:\"b06011107954728c35925554c8a0e497\";s:7:\"ignoreP\";s:32:\"b06011107954728c35925554c8a0e497\";}i:74;a:2:{s:7:\"ignoreC\";s:32:\"f03af272e0b4f3cb256086a2d7998bc3\";s:7:\"ignoreP\";s:32:\"f03af272e0b4f3cb256086a2d7998bc3\";}i:75;a:2:{s:7:\"ignoreC\";s:32:\"5d271d4afcc70d408a81b26f49afb798\";s:7:\"ignoreP\";s:32:\"5d271d4afcc70d408a81b26f49afb798\";}i:76;a:2:{s:7:\"ignoreC\";s:32:\"836c636c2e268e5cc3c7ef2314b89250\";s:7:\"ignoreP\";s:32:\"836c636c2e268e5cc3c7ef2314b89250\";}i:77;a:2:{s:7:\"ignoreC\";s:32:\"9a56dc4702540803eb177eb7320e0490\";s:7:\"ignoreP\";s:32:\"9a56dc4702540803eb177eb7320e0490\";}i:78;a:2:{s:7:\"ignoreC\";s:32:\"4426cd2193bdb8f4b4bf2b8ef1a113e0\";s:7:\"ignoreP\";s:32:\"4426cd2193bdb8f4b4bf2b8ef1a113e0\";}i:79;a:2:{s:7:\"ignoreC\";s:32:\"675f57bd75ab1c0f524e53b5f7f714dc\";s:7:\"ignoreP\";s:32:\"675f57bd75ab1c0f524e53b5f7f714dc\";}i:80;a:2:{s:7:\"ignoreC\";s:32:\"e8bd9efe774b1c8ee3f124e25ea3510e\";s:7:\"ignoreP\";s:32:\"e8bd9efe774b1c8ee3f124e25ea3510e\";}i:81;a:2:{s:7:\"ignoreC\";s:32:\"db31f4f54aaaad6c0e54528a963ca113\";s:7:\"ignoreP\";s:32:\"db31f4f54aaaad6c0e54528a963ca113\";}i:82;a:2:{s:7:\"ignoreC\";s:32:\"34dc24dce72a8b7b1ea0b62a3cd44e75\";s:7:\"ignoreP\";s:32:\"34dc24dce72a8b7b1ea0b62a3cd44e75\";}i:83;a:2:{s:7:\"ignoreC\";s:32:\"f196603392a946f6251e2d40188b2e61\";s:7:\"ignoreP\";s:32:\"f196603392a946f6251e2d40188b2e61\";}i:84;a:2:{s:7:\"ignoreC\";s:32:\"08fe8886ba35b070e7e9f5c3a10eac4c\";s:7:\"ignoreP\";s:32:\"08fe8886ba35b070e7e9f5c3a10eac4c\";}i:85;a:2:{s:7:\"ignoreC\";s:32:\"f60d6ae2bddf9d573852ce2bd56ec873\";s:7:\"ignoreP\";s:32:\"f60d6ae2bddf9d573852ce2bd56ec873\";}i:86;a:2:{s:7:\"ignoreC\";s:32:\"6fa913dae4305c6a35bd943756990ef0\";s:7:\"ignoreP\";s:32:\"6fa913dae4305c6a35bd943756990ef0\";}i:87;a:2:{s:7:\"ignoreC\";s:32:\"2a3d47dfa01d91e92b0978365d264c7d\";s:7:\"ignoreP\";s:32:\"2a3d47dfa01d91e92b0978365d264c7d\";}i:88;a:2:{s:7:\"ignoreC\";s:32:\"196e391a60ad108189d7507454d031f4\";s:7:\"ignoreP\";s:32:\"196e391a60ad108189d7507454d031f4\";}i:89;a:2:{s:7:\"ignoreC\";s:32:\"6a21a7b2fb3e4ec0c892f9c97c7ca9af\";s:7:\"ignoreP\";s:32:\"6a21a7b2fb3e4ec0c892f9c97c7ca9af\";}i:90;a:2:{s:7:\"ignoreC\";s:32:\"beb75c2f2aeb011a405fdefa5ed6214e\";s:7:\"ignoreP\";s:32:\"beb75c2f2aeb011a405fdefa5ed6214e\";}i:91;a:2:{s:7:\"ignoreC\";s:32:\"e787056477cab78edd8af3605897e5a1\";s:7:\"ignoreP\";s:32:\"e787056477cab78edd8af3605897e5a1\";}i:92;a:2:{s:7:\"ignoreC\";s:32:\"d86cef2bcc889cdf998b0dfaaf11d32e\";s:7:\"ignoreP\";s:32:\"d86cef2bcc889cdf998b0dfaaf11d32e\";}i:93;a:2:{s:7:\"ignoreC\";s:32:\"554adf055e919ad697b6d9d80245aa6d\";s:7:\"ignoreP\";s:32:\"554adf055e919ad697b6d9d80245aa6d\";}i:94;a:2:{s:7:\"ignoreC\";s:32:\"4e0cc0fb8893c69b4c5f980faa81c2d9\";s:7:\"ignoreP\";s:32:\"4e0cc0fb8893c69b4c5f980faa81c2d9\";}i:95;a:2:{s:7:\"ignoreC\";s:32:\"7cd701a88527d16bca2b23e3c9bc42a8\";s:7:\"ignoreP\";s:32:\"7cd701a88527d16bca2b23e3c9bc42a8\";}i:96;a:2:{s:7:\"ignoreC\";s:32:\"97dc79b3f48cbaf96cbcb64a8df86ecb\";s:7:\"ignoreP\";s:32:\"97dc79b3f48cbaf96cbcb64a8df86ecb\";}i:97;a:2:{s:7:\"ignoreC\";s:32:\"773fe87923f4c7bf49327389ff8cd7c8\";s:7:\"ignoreP\";s:32:\"773fe87923f4c7bf49327389ff8cd7c8\";}i:98;a:2:{s:7:\"ignoreC\";s:32:\"df1f92aac5fc89f1c983fd93eb99a241\";s:7:\"ignoreP\";s:32:\"df1f92aac5fc89f1c983fd93eb99a241\";}i:99;a:2:{s:7:\"ignoreC\";s:32:\"a6b2d8cf94c1e4e577b63916b7cc0a9b\";s:7:\"ignoreP\";s:32:\"a6b2d8cf94c1e4e577b63916b7cc0a9b\";}i:100;a:2:{s:7:\"ignoreC\";s:32:\"1637cfd00eb63e285f4313ca257e576c\";s:7:\"ignoreP\";s:32:\"1637cfd00eb63e285f4313ca257e576c\";}i:101;a:2:{s:7:\"ignoreC\";s:32:\"1f57461d1a17bab7f1587ff31f1bb597\";s:7:\"ignoreP\";s:32:\"1f57461d1a17bab7f1587ff31f1bb597\";}i:102;a:2:{s:7:\"ignoreC\";s:32:\"d3fbb0e5c9559cf8d5ab1fadef93eac2\";s:7:\"ignoreP\";s:32:\"d3fbb0e5c9559cf8d5ab1fadef93eac2\";}i:103;a:2:{s:7:\"ignoreC\";s:32:\"ef262e727c17d29a8650a191f152111f\";s:7:\"ignoreP\";s:32:\"ef262e727c17d29a8650a191f152111f\";}i:104;a:2:{s:7:\"ignoreC\";s:32:\"b6c28e08423045c32e066e1ff20ee0c2\";s:7:\"ignoreP\";s:32:\"b6c28e08423045c32e066e1ff20ee0c2\";}i:105;a:2:{s:7:\"ignoreC\";s:32:\"6fd59a9d1ec07c706bc87c40c4814823\";s:7:\"ignoreP\";s:32:\"6fd59a9d1ec07c706bc87c40c4814823\";}i:106;a:2:{s:7:\"ignoreC\";s:32:\"8bd96d95b960771dd454db21a2fe62ef\";s:7:\"ignoreP\";s:32:\"8bd96d95b960771dd454db21a2fe62ef\";}i:107;a:2:{s:7:\"ignoreC\";s:32:\"5b07d661d2ac9814497599140a2bc6c4\";s:7:\"ignoreP\";s:32:\"5b07d661d2ac9814497599140a2bc6c4\";}i:108;a:2:{s:7:\"ignoreC\";s:32:\"19cc5fe8d250414bf45dd19712171672\";s:7:\"ignoreP\";s:32:\"19cc5fe8d250414bf45dd19712171672\";}i:109;a:2:{s:7:\"ignoreC\";s:32:\"673cb6b08c3b18d44b1566e889a5f312\";s:7:\"ignoreP\";s:32:\"673cb6b08c3b18d44b1566e889a5f312\";}i:110;a:2:{s:7:\"ignoreC\";s:32:\"170ba1deaf57bddfef82a2d26c32400b\";s:7:\"ignoreP\";s:32:\"170ba1deaf57bddfef82a2d26c32400b\";}i:111;a:2:{s:7:\"ignoreC\";s:32:\"e7fe96525d325a5e33c283b7dda8f3a1\";s:7:\"ignoreP\";s:32:\"e7fe96525d325a5e33c283b7dda8f3a1\";}i:112;a:2:{s:7:\"ignoreC\";s:32:\"4215230377354b899cb8bd1b0ba04441\";s:7:\"ignoreP\";s:32:\"4215230377354b899cb8bd1b0ba04441\";}i:113;a:2:{s:7:\"ignoreC\";s:32:\"a7b3f98c3a4ea4dde046c2a63819544e\";s:7:\"ignoreP\";s:32:\"a7b3f98c3a4ea4dde046c2a63819544e\";}i:114;a:2:{s:7:\"ignoreC\";s:32:\"32ceb1728ac29a917a97b955c31ead2c\";s:7:\"ignoreP\";s:32:\"32ceb1728ac29a917a97b955c31ead2c\";}i:115;a:2:{s:7:\"ignoreC\";s:32:\"55309a8670ec2a6bb0d5570f3a3a0ae5\";s:7:\"ignoreP\";s:32:\"55309a8670ec2a6bb0d5570f3a3a0ae5\";}i:116;a:2:{s:7:\"ignoreC\";s:32:\"19bc0f55db750ed78ddc4ea9c60ff732\";s:7:\"ignoreP\";s:32:\"19bc0f55db750ed78ddc4ea9c60ff732\";}i:117;a:2:{s:7:\"ignoreC\";s:32:\"3fef88ea4cafe5e80511983c15720048\";s:7:\"ignoreP\";s:32:\"3fef88ea4cafe5e80511983c15720048\";}i:118;a:2:{s:7:\"ignoreC\";s:32:\"cb00516794530ee638f5d52f189c9dbc\";s:7:\"ignoreP\";s:32:\"cb00516794530ee638f5d52f189c9dbc\";}i:119;a:2:{s:7:\"ignoreC\";s:32:\"5c7c38ab95e8ed63d27ba48a220cde0f\";s:7:\"ignoreP\";s:32:\"5c7c38ab95e8ed63d27ba48a220cde0f\";}i:120;a:2:{s:7:\"ignoreC\";s:32:\"29c75f05cc023d32123445693ae9aa42\";s:7:\"ignoreP\";s:32:\"29c75f05cc023d32123445693ae9aa42\";}i:121;a:2:{s:7:\"ignoreC\";s:32:\"9f2438dfc4f0828d485ca5ac5fb34b5b\";s:7:\"ignoreP\";s:32:\"9f2438dfc4f0828d485ca5ac5fb34b5b\";}i:122;a:2:{s:7:\"ignoreC\";s:32:\"f6e4bb9fa906ac4f195eafcc3b373df2\";s:7:\"ignoreP\";s:32:\"f6e4bb9fa906ac4f195eafcc3b373df2\";}i:123;a:2:{s:7:\"ignoreC\";s:32:\"7282b09ce757e580c1d83985e01ae94b\";s:7:\"ignoreP\";s:32:\"7282b09ce757e580c1d83985e01ae94b\";}i:124;a:2:{s:7:\"ignoreC\";s:32:\"c08dd9be46cdec30d6817bb70e614d53\";s:7:\"ignoreP\";s:32:\"c08dd9be46cdec30d6817bb70e614d53\";}i:125;a:2:{s:7:\"ignoreC\";s:32:\"a094e568d2f0444e6a7cef7233baaebb\";s:7:\"ignoreP\";s:32:\"a094e568d2f0444e6a7cef7233baaebb\";}i:126;a:2:{s:7:\"ignoreC\";s:32:\"a7047e1bc2863897ae4074d540cfdda1\";s:7:\"ignoreP\";s:32:\"a7047e1bc2863897ae4074d540cfdda1\";}i:127;a:2:{s:7:\"ignoreC\";s:32:\"5c272f05332f0bb52b500212086f5673\";s:7:\"ignoreP\";s:32:\"5c272f05332f0bb52b500212086f5673\";}i:128;a:2:{s:7:\"ignoreC\";s:32:\"188b04ec624f179f57e90086b25ad43a\";s:7:\"ignoreP\";s:32:\"188b04ec624f179f57e90086b25ad43a\";}i:129;a:2:{s:7:\"ignoreC\";s:32:\"10df35529b84f7040e53c5ea09771e2a\";s:7:\"ignoreP\";s:32:\"10df35529b84f7040e53c5ea09771e2a\";}i:130;a:2:{s:7:\"ignoreC\";s:32:\"24117975f6a30dcc10eb13acb08a1b7a\";s:7:\"ignoreP\";s:32:\"24117975f6a30dcc10eb13acb08a1b7a\";}i:131;a:2:{s:7:\"ignoreC\";s:32:\"1e213c3be232e5a56694b28a177bc406\";s:7:\"ignoreP\";s:32:\"1e213c3be232e5a56694b28a177bc406\";}i:132;a:2:{s:7:\"ignoreC\";s:32:\"c6693a3cdfeac24e82cffb5e875e9427\";s:7:\"ignoreP\";s:32:\"c6693a3cdfeac24e82cffb5e875e9427\";}i:133;a:2:{s:7:\"ignoreC\";s:32:\"9cdf4e2cdfc9455386ada2965d196e24\";s:7:\"ignoreP\";s:32:\"9cdf4e2cdfc9455386ada2965d196e24\";}i:134;a:2:{s:7:\"ignoreC\";s:32:\"40684ca8e3fa7e67b3d2bcb938eb8f49\";s:7:\"ignoreP\";s:32:\"40684ca8e3fa7e67b3d2bcb938eb8f49\";}i:135;a:2:{s:7:\"ignoreC\";s:32:\"5bd7775df639c5ef00f5d564577d9fcc\";s:7:\"ignoreP\";s:32:\"5bd7775df639c5ef00f5d564577d9fcc\";}i:136;a:2:{s:7:\"ignoreC\";s:32:\"4411809a49d22e39cd6dfc6ae95ca300\";s:7:\"ignoreP\";s:32:\"4411809a49d22e39cd6dfc6ae95ca300\";}i:137;a:2:{s:7:\"ignoreC\";s:32:\"d949bd3813923e216048182759693e35\";s:7:\"ignoreP\";s:32:\"d949bd3813923e216048182759693e35\";}i:138;a:2:{s:7:\"ignoreC\";s:32:\"5580bb10280f168ce671c4dff80b77f2\";s:7:\"ignoreP\";s:32:\"5580bb10280f168ce671c4dff80b77f2\";}i:139;a:2:{s:7:\"ignoreC\";s:32:\"dd5206130816e538433aa9c0764acc76\";s:7:\"ignoreP\";s:32:\"dd5206130816e538433aa9c0764acc76\";}i:140;a:2:{s:7:\"ignoreC\";s:32:\"f8482ed59e6ea90f344c02cad5d30067\";s:7:\"ignoreP\";s:32:\"f8482ed59e6ea90f344c02cad5d30067\";}i:141;a:2:{s:7:\"ignoreC\";s:32:\"c0c50106ef079f57be5749ed84538f0e\";s:7:\"ignoreP\";s:32:\"c0c50106ef079f57be5749ed84538f0e\";}i:142;a:2:{s:7:\"ignoreC\";s:32:\"00a0fcc3c9312fd9b18f61bc633a5c3e\";s:7:\"ignoreP\";s:32:\"00a0fcc3c9312fd9b18f61bc633a5c3e\";}i:143;a:2:{s:7:\"ignoreC\";s:32:\"6de8b498b364c72971a22ad3d714e787\";s:7:\"ignoreP\";s:32:\"6de8b498b364c72971a22ad3d714e787\";}i:144;a:2:{s:7:\"ignoreC\";s:32:\"538e459ef25657ca1c349b6d4933d01e\";s:7:\"ignoreP\";s:32:\"538e459ef25657ca1c349b6d4933d01e\";}i:145;a:2:{s:7:\"ignoreC\";s:32:\"f522e7be27dd6b87d6a7b0e659cd45b2\";s:7:\"ignoreP\";s:32:\"f522e7be27dd6b87d6a7b0e659cd45b2\";}i:146;a:2:{s:7:\"ignoreC\";s:32:\"938ec4c68c5380d96e4393030575c1aa\";s:7:\"ignoreP\";s:32:\"938ec4c68c5380d96e4393030575c1aa\";}i:147;a:2:{s:7:\"ignoreC\";s:32:\"235b14e0a55d714e490ad94572ef65a9\";s:7:\"ignoreP\";s:32:\"235b14e0a55d714e490ad94572ef65a9\";}i:148;a:2:{s:7:\"ignoreC\";s:32:\"315ad8f11bade70d608ebd98bea23f0f\";s:7:\"ignoreP\";s:32:\"315ad8f11bade70d608ebd98bea23f0f\";}i:149;a:2:{s:7:\"ignoreC\";s:32:\"01e08777ec04c09bf612d49710dc7904\";s:7:\"ignoreP\";s:32:\"01e08777ec04c09bf612d49710dc7904\";}i:150;a:2:{s:7:\"ignoreC\";s:32:\"ccd0e5bfcf5daf286b67ae793b657194\";s:7:\"ignoreP\";s:32:\"ccd0e5bfcf5daf286b67ae793b657194\";}i:151;a:2:{s:7:\"ignoreC\";s:32:\"ac48594cce7d0496f155cfa15921aa05\";s:7:\"ignoreP\";s:32:\"ac48594cce7d0496f155cfa15921aa05\";}i:152;a:2:{s:7:\"ignoreC\";s:32:\"0f1a4d60172ff2cce8bfb8cd35fa9a5b\";s:7:\"ignoreP\";s:32:\"0f1a4d60172ff2cce8bfb8cd35fa9a5b\";}i:153;a:2:{s:7:\"ignoreC\";s:32:\"f59fd6d264899819336f4262b30c2f8e\";s:7:\"ignoreP\";s:32:\"f59fd6d264899819336f4262b30c2f8e\";}i:154;a:2:{s:7:\"ignoreC\";s:32:\"3cc9ee4a28dd9986678c190b86ba8c7e\";s:7:\"ignoreP\";s:32:\"3cc9ee4a28dd9986678c190b86ba8c7e\";}i:155;a:2:{s:7:\"ignoreC\";s:32:\"043fc28d71fe7767be46c58e443b5b7f\";s:7:\"ignoreP\";s:32:\"043fc28d71fe7767be46c58e443b5b7f\";}i:156;a:2:{s:7:\"ignoreC\";s:32:\"e6ee0f3443eb9e8866ac4f80342e68a0\";s:7:\"ignoreP\";s:32:\"e6ee0f3443eb9e8866ac4f80342e68a0\";}i:157;a:2:{s:7:\"ignoreC\";s:32:\"9a0a19b30d3c590b9b50113dd90c4612\";s:7:\"ignoreP\";s:32:\"9a0a19b30d3c590b9b50113dd90c4612\";}i:158;a:2:{s:7:\"ignoreC\";s:32:\"2430e4ad35c4975d851fc103fb21bf7b\";s:7:\"ignoreP\";s:32:\"2430e4ad35c4975d851fc103fb21bf7b\";}i:159;a:2:{s:7:\"ignoreC\";s:32:\"61eebf60accd7da26662e8e9351f95c0\";s:7:\"ignoreP\";s:32:\"61eebf60accd7da26662e8e9351f95c0\";}i:160;a:2:{s:7:\"ignoreC\";s:32:\"23f7dae434626947cb54762c6893b363\";s:7:\"ignoreP\";s:32:\"23f7dae434626947cb54762c6893b363\";}i:161;a:2:{s:7:\"ignoreC\";s:32:\"bf8f122be1ae410b5e1f243c241c527e\";s:7:\"ignoreP\";s:32:\"bf8f122be1ae410b5e1f243c241c527e\";}i:162;a:2:{s:7:\"ignoreC\";s:32:\"d4e931a66103ac9f4ab9bad7e2df8ef1\";s:7:\"ignoreP\";s:32:\"d4e931a66103ac9f4ab9bad7e2df8ef1\";}i:163;a:2:{s:7:\"ignoreC\";s:32:\"c492df53307473e0a47630b6924367d3\";s:7:\"ignoreP\";s:32:\"c492df53307473e0a47630b6924367d3\";}i:164;a:2:{s:7:\"ignoreC\";s:32:\"46e9781fd57160ba67ddc12304cf317c\";s:7:\"ignoreP\";s:32:\"46e9781fd57160ba67ddc12304cf317c\";}i:165;a:2:{s:7:\"ignoreC\";s:32:\"bd2cb84e941ab36ecea1399e071530d0\";s:7:\"ignoreP\";s:32:\"bd2cb84e941ab36ecea1399e071530d0\";}i:166;a:2:{s:7:\"ignoreC\";s:32:\"030466295bd1f04925dff16131bd787b\";s:7:\"ignoreP\";s:32:\"030466295bd1f04925dff16131bd787b\";}i:167;a:2:{s:7:\"ignoreC\";s:32:\"820f9beb9a24189ee15d1fcc3c62df01\";s:7:\"ignoreP\";s:32:\"820f9beb9a24189ee15d1fcc3c62df01\";}i:168;a:2:{s:7:\"ignoreC\";s:32:\"eabf3d528e107aa58ae9cb26df5ba38d\";s:7:\"ignoreP\";s:32:\"eabf3d528e107aa58ae9cb26df5ba38d\";}i:169;a:2:{s:7:\"ignoreC\";s:32:\"8484057677b15992cd1c5d55883feef1\";s:7:\"ignoreP\";s:32:\"8484057677b15992cd1c5d55883feef1\";}i:170;a:2:{s:7:\"ignoreC\";s:32:\"cf39e24934eb79c14adb99a64eb3d8e7\";s:7:\"ignoreP\";s:32:\"cf39e24934eb79c14adb99a64eb3d8e7\";}i:171;a:2:{s:7:\"ignoreC\";s:32:\"b875f47da7042c633603aa48b1983a77\";s:7:\"ignoreP\";s:32:\"b875f47da7042c633603aa48b1983a77\";}i:172;a:2:{s:7:\"ignoreC\";s:32:\"197b420bf2f302dde71c913e3ee8a892\";s:7:\"ignoreP\";s:32:\"197b420bf2f302dde71c913e3ee8a892\";}i:173;a:2:{s:7:\"ignoreC\";s:32:\"8f7b67fc26291745768153409a4d4199\";s:7:\"ignoreP\";s:32:\"8f7b67fc26291745768153409a4d4199\";}i:174;a:2:{s:7:\"ignoreC\";s:32:\"33bb4b55c54f042aa38fd211c8fc7507\";s:7:\"ignoreP\";s:32:\"33bb4b55c54f042aa38fd211c8fc7507\";}i:175;a:2:{s:7:\"ignoreC\";s:32:\"58d245acd062b663b42f3837d05fd1a7\";s:7:\"ignoreP\";s:32:\"58d245acd062b663b42f3837d05fd1a7\";}i:176;a:2:{s:7:\"ignoreC\";s:32:\"cc47e692766cf81b9dc71249e555bc55\";s:7:\"ignoreP\";s:32:\"cc47e692766cf81b9dc71249e555bc55\";}i:177;a:2:{s:7:\"ignoreC\";s:32:\"351187c599a71c6e14a4ecfa76bc5120\";s:7:\"ignoreP\";s:32:\"351187c599a71c6e14a4ecfa76bc5120\";}i:178;a:2:{s:7:\"ignoreC\";s:32:\"b368eec4b3ec69dd1242eb0909fdb6ee\";s:7:\"ignoreP\";s:32:\"b368eec4b3ec69dd1242eb0909fdb6ee\";}i:179;a:2:{s:7:\"ignoreC\";s:32:\"6c1c5a7111e2067edc7bc10d5602b97a\";s:7:\"ignoreP\";s:32:\"6c1c5a7111e2067edc7bc10d5602b97a\";}i:180;a:2:{s:7:\"ignoreC\";s:32:\"50f3e6342dfc860c139abf53cdfbaa9c\";s:7:\"ignoreP\";s:32:\"50f3e6342dfc860c139abf53cdfbaa9c\";}i:181;a:2:{s:7:\"ignoreC\";s:32:\"a65e7c2b56e3a86326311db5fede645a\";s:7:\"ignoreP\";s:32:\"a65e7c2b56e3a86326311db5fede645a\";}i:182;a:2:{s:7:\"ignoreC\";s:32:\"4293ec094bd167a0003869ebf315dec6\";s:7:\"ignoreP\";s:32:\"4293ec094bd167a0003869ebf315dec6\";}i:183;a:2:{s:7:\"ignoreC\";s:32:\"7d07f55c329b47dce62ddb5fa58797e0\";s:7:\"ignoreP\";s:32:\"7d07f55c329b47dce62ddb5fa58797e0\";}i:184;a:2:{s:7:\"ignoreC\";s:32:\"62c8a2c1bc583c5229738283612b3dbf\";s:7:\"ignoreP\";s:32:\"62c8a2c1bc583c5229738283612b3dbf\";}i:185;a:2:{s:7:\"ignoreC\";s:32:\"970400f5c60a87e7757ef6952028ee8d\";s:7:\"ignoreP\";s:32:\"970400f5c60a87e7757ef6952028ee8d\";}i:186;a:2:{s:7:\"ignoreC\";s:32:\"91ea87fa7e5564e5fc3ff634e6c6b9e9\";s:7:\"ignoreP\";s:32:\"91ea87fa7e5564e5fc3ff634e6c6b9e9\";}i:187;a:2:{s:7:\"ignoreC\";s:32:\"5d6f96f30f6e174ae86f8b0f23dc120e\";s:7:\"ignoreP\";s:32:\"5d6f96f30f6e174ae86f8b0f23dc120e\";}i:188;a:2:{s:7:\"ignoreC\";s:32:\"107dfca1e02ff582746556e5b0959e7a\";s:7:\"ignoreP\";s:32:\"107dfca1e02ff582746556e5b0959e7a\";}i:189;a:2:{s:7:\"ignoreC\";s:32:\"7e85f41fd004140f12f3b11c8b18d061\";s:7:\"ignoreP\";s:32:\"7e85f41fd004140f12f3b11c8b18d061\";}i:190;a:2:{s:7:\"ignoreC\";s:32:\"a2e56625f6d6866a626446e70bd95fa3\";s:7:\"ignoreP\";s:32:\"a2e56625f6d6866a626446e70bd95fa3\";}i:191;a:2:{s:7:\"ignoreC\";s:32:\"df4e0820b063b2c9594764fd6c38c532\";s:7:\"ignoreP\";s:32:\"df4e0820b063b2c9594764fd6c38c532\";}i:192;a:2:{s:7:\"ignoreC\";s:32:\"554c9f841a665cad66512a1e55ac6674\";s:7:\"ignoreP\";s:32:\"554c9f841a665cad66512a1e55ac6674\";}i:193;a:2:{s:7:\"ignoreC\";s:32:\"b5a71e6aefe0eba9b405b72058198082\";s:7:\"ignoreP\";s:32:\"b5a71e6aefe0eba9b405b72058198082\";}i:194;a:2:{s:7:\"ignoreC\";s:32:\"f5c13640eed467e6d5aa59d9a2d18424\";s:7:\"ignoreP\";s:32:\"f5c13640eed467e6d5aa59d9a2d18424\";}i:195;a:2:{s:7:\"ignoreC\";s:32:\"007b6bfde105baf58e42edc418228fa1\";s:7:\"ignoreP\";s:32:\"007b6bfde105baf58e42edc418228fa1\";}i:196;a:2:{s:7:\"ignoreC\";s:32:\"4a1ec8119b3b004716ab50ba952ec886\";s:7:\"ignoreP\";s:32:\"4a1ec8119b3b004716ab50ba952ec886\";}i:197;a:2:{s:7:\"ignoreC\";s:32:\"ca6711d912647cdb28f119943270deff\";s:7:\"ignoreP\";s:32:\"ca6711d912647cdb28f119943270deff\";}i:198;a:2:{s:7:\"ignoreC\";s:32:\"4371cb83838a03b6fb3b4e2407c27086\";s:7:\"ignoreP\";s:32:\"4371cb83838a03b6fb3b4e2407c27086\";}i:199;a:2:{s:7:\"ignoreC\";s:32:\"75c297cc883e7e0d721029d7babb437e\";s:7:\"ignoreP\";s:32:\"75c297cc883e7e0d721029d7babb437e\";}i:200;a:2:{s:7:\"ignoreC\";s:32:\"1747d71d319fb68d5bf99e863456084e\";s:7:\"ignoreP\";s:32:\"1747d71d319fb68d5bf99e863456084e\";}i:201;a:2:{s:7:\"ignoreC\";s:32:\"0d0e31d36bb3935ca3fe6472688f739a\";s:7:\"ignoreP\";s:32:\"0d0e31d36bb3935ca3fe6472688f739a\";}i:202;a:2:{s:7:\"ignoreC\";s:32:\"aa36b9718a31c4852949c4adbcf6ccd4\";s:7:\"ignoreP\";s:32:\"aa36b9718a31c4852949c4adbcf6ccd4\";}i:203;a:2:{s:7:\"ignoreC\";s:32:\"80aca2ee8035660d6647b8a206c8d757\";s:7:\"ignoreP\";s:32:\"80aca2ee8035660d6647b8a206c8d757\";}i:204;a:2:{s:7:\"ignoreC\";s:32:\"205f217cfe33f9f2bbd10f34ddcdc3e4\";s:7:\"ignoreP\";s:32:\"205f217cfe33f9f2bbd10f34ddcdc3e4\";}i:205;a:2:{s:7:\"ignoreC\";s:32:\"90191093df3347e1d81691629d552517\";s:7:\"ignoreP\";s:32:\"90191093df3347e1d81691629d552517\";}i:206;a:2:{s:7:\"ignoreC\";s:32:\"ef0da92603905e1180cb88d7b0ed682b\";s:7:\"ignoreP\";s:32:\"ef0da92603905e1180cb88d7b0ed682b\";}i:207;a:2:{s:7:\"ignoreC\";s:32:\"925ef7acc329b798c63e25321ec9bfbb\";s:7:\"ignoreP\";s:32:\"925ef7acc329b798c63e25321ec9bfbb\";}i:208;a:2:{s:7:\"ignoreC\";s:32:\"1dd968006d00302f153085617661ac67\";s:7:\"ignoreP\";s:32:\"1dd968006d00302f153085617661ac67\";}i:209;a:2:{s:7:\"ignoreC\";s:32:\"6563b83b35915da1f5b56c6f49879365\";s:7:\"ignoreP\";s:32:\"6563b83b35915da1f5b56c6f49879365\";}i:210;a:2:{s:7:\"ignoreC\";s:32:\"966dfe6c38adc899fe3817acdd8cbfb3\";s:7:\"ignoreP\";s:32:\"966dfe6c38adc899fe3817acdd8cbfb3\";}i:211;a:2:{s:7:\"ignoreC\";s:32:\"915c4fe3bc0ce2d873d1d9ac8f3b176d\";s:7:\"ignoreP\";s:32:\"915c4fe3bc0ce2d873d1d9ac8f3b176d\";}i:212;a:2:{s:7:\"ignoreC\";s:32:\"9a8e6f0f145b8594923e175443227e00\";s:7:\"ignoreP\";s:32:\"9a8e6f0f145b8594923e175443227e00\";}i:213;a:2:{s:7:\"ignoreC\";s:32:\"ce8f07f83e0590446725792440384f1f\";s:7:\"ignoreP\";s:32:\"ce8f07f83e0590446725792440384f1f\";}i:214;a:2:{s:7:\"ignoreC\";s:32:\"c0836293d206b6229435baf6db27559c\";s:7:\"ignoreP\";s:32:\"c0836293d206b6229435baf6db27559c\";}i:215;a:2:{s:7:\"ignoreC\";s:32:\"ecfaf25917aa09e8831f99da5d3cd7e7\";s:7:\"ignoreP\";s:32:\"ecfaf25917aa09e8831f99da5d3cd7e7\";}i:216;a:2:{s:7:\"ignoreC\";s:32:\"3220971c60a14fc15c062b48e379d4f3\";s:7:\"ignoreP\";s:32:\"3220971c60a14fc15c062b48e379d4f3\";}i:217;a:2:{s:7:\"ignoreC\";s:32:\"7cfb34014d1618d37389a064236ac791\";s:7:\"ignoreP\";s:32:\"7cfb34014d1618d37389a064236ac791\";}i:218;a:2:{s:7:\"ignoreC\";s:32:\"4b4a9f66dc5927a293fdbc5b06b7cd70\";s:7:\"ignoreP\";s:32:\"4b4a9f66dc5927a293fdbc5b06b7cd70\";}i:219;a:2:{s:7:\"ignoreC\";s:32:\"bd39e2bd730ab50296c0dc6f4b44b39d\";s:7:\"ignoreP\";s:32:\"bd39e2bd730ab50296c0dc6f4b44b39d\";}i:220;a:2:{s:7:\"ignoreC\";s:32:\"fcb69d28e26d631df1dcda74ec7c9085\";s:7:\"ignoreP\";s:32:\"fcb69d28e26d631df1dcda74ec7c9085\";}i:221;a:2:{s:7:\"ignoreC\";s:32:\"779983cdff7c3e40bef99d6ddd308644\";s:7:\"ignoreP\";s:32:\"779983cdff7c3e40bef99d6ddd308644\";}i:222;a:2:{s:7:\"ignoreC\";s:32:\"bae501cd4dd12f270d5a4e1e3e630176\";s:7:\"ignoreP\";s:32:\"bae501cd4dd12f270d5a4e1e3e630176\";}i:223;a:2:{s:7:\"ignoreC\";s:32:\"195048136c1e2a160aacbd78a69ea1db\";s:7:\"ignoreP\";s:32:\"195048136c1e2a160aacbd78a69ea1db\";}i:224;a:2:{s:7:\"ignoreC\";s:32:\"bd174bdfa17bc0b917dbdc38a11cbb62\";s:7:\"ignoreP\";s:32:\"bd174bdfa17bc0b917dbdc38a11cbb62\";}i:225;a:2:{s:7:\"ignoreC\";s:32:\"d7092c5db6ab2c60dea8e02793f70bce\";s:7:\"ignoreP\";s:32:\"d7092c5db6ab2c60dea8e02793f70bce\";}i:226;a:2:{s:7:\"ignoreC\";s:32:\"c17645bc340c2061cf26e0868ef5a754\";s:7:\"ignoreP\";s:32:\"c17645bc340c2061cf26e0868ef5a754\";}i:227;a:2:{s:7:\"ignoreC\";s:32:\"52a6736527605156668a50697e4531ea\";s:7:\"ignoreP\";s:32:\"52a6736527605156668a50697e4531ea\";}i:228;a:2:{s:7:\"ignoreC\";s:32:\"ebaa443b70d6755bbf21a89244f30918\";s:7:\"ignoreP\";s:32:\"ebaa443b70d6755bbf21a89244f30918\";}i:229;a:2:{s:7:\"ignoreC\";s:32:\"e2cd763fb3aa1a4aa5e5699b83caa30a\";s:7:\"ignoreP\";s:32:\"e2cd763fb3aa1a4aa5e5699b83caa30a\";}i:230;a:2:{s:7:\"ignoreC\";s:32:\"a2d60f853b4839d0fbfcc072a2cb310b\";s:7:\"ignoreP\";s:32:\"a2d60f853b4839d0fbfcc072a2cb310b\";}i:231;a:2:{s:7:\"ignoreC\";s:32:\"17cf465805c9751c767ce3975a3bf841\";s:7:\"ignoreP\";s:32:\"17cf465805c9751c767ce3975a3bf841\";}i:232;a:2:{s:7:\"ignoreC\";s:32:\"b0bbd607a33dc8f46cf53057184b8ae2\";s:7:\"ignoreP\";s:32:\"b0bbd607a33dc8f46cf53057184b8ae2\";}i:233;a:2:{s:7:\"ignoreC\";s:32:\"84d9270639a64fe181464cddc29cd8e3\";s:7:\"ignoreP\";s:32:\"84d9270639a64fe181464cddc29cd8e3\";}i:234;a:2:{s:7:\"ignoreC\";s:32:\"1cd6ed5dddb082e32ee094cf6508219b\";s:7:\"ignoreP\";s:32:\"1cd6ed5dddb082e32ee094cf6508219b\";}i:235;a:2:{s:7:\"ignoreC\";s:32:\"15785a5837dfaee43c44a47ed99224b1\";s:7:\"ignoreP\";s:32:\"15785a5837dfaee43c44a47ed99224b1\";}i:236;a:2:{s:7:\"ignoreC\";s:32:\"828ff2ee9b0258c66cdcfad46f6f0913\";s:7:\"ignoreP\";s:32:\"828ff2ee9b0258c66cdcfad46f6f0913\";}i:237;a:2:{s:7:\"ignoreC\";s:32:\"297ba80c973ff98bd9380ff307e821d6\";s:7:\"ignoreP\";s:32:\"297ba80c973ff98bd9380ff307e821d6\";}i:238;a:2:{s:7:\"ignoreC\";s:32:\"ac83efde3c1e70b197f9cc32cccd9ea2\";s:7:\"ignoreP\";s:32:\"ac83efde3c1e70b197f9cc32cccd9ea2\";}i:239;a:2:{s:7:\"ignoreC\";s:32:\"f9a21f212ad9c955e46d0f51f853e71a\";s:7:\"ignoreP\";s:32:\"f9a21f212ad9c955e46d0f51f853e71a\";}i:240;a:2:{s:7:\"ignoreC\";s:32:\"f009ceaeabc76d5840f930887bfa1611\";s:7:\"ignoreP\";s:32:\"f009ceaeabc76d5840f930887bfa1611\";}i:241;a:2:{s:7:\"ignoreC\";s:32:\"1679125407de4190adee37d05111045c\";s:7:\"ignoreP\";s:32:\"1679125407de4190adee37d05111045c\";}i:242;a:2:{s:7:\"ignoreC\";s:32:\"f659f5a9c915d9c1849a4ea9450fa905\";s:7:\"ignoreP\";s:32:\"f659f5a9c915d9c1849a4ea9450fa905\";}i:243;a:2:{s:7:\"ignoreC\";s:32:\"8bbbc5fefef5256c71eb91db7ad5220e\";s:7:\"ignoreP\";s:32:\"8bbbc5fefef5256c71eb91db7ad5220e\";}i:244;a:2:{s:7:\"ignoreC\";s:32:\"858d56fb90508f87ed6e083d18bc8498\";s:7:\"ignoreP\";s:32:\"858d56fb90508f87ed6e083d18bc8498\";}i:245;a:2:{s:7:\"ignoreC\";s:32:\"6dae3ed1b1befa071e9adfd7ba29c8a3\";s:7:\"ignoreP\";s:32:\"6dae3ed1b1befa071e9adfd7ba29c8a3\";}i:246;a:2:{s:7:\"ignoreC\";s:32:\"835040392fbd019ac400c675a2262285\";s:7:\"ignoreP\";s:32:\"835040392fbd019ac400c675a2262285\";}i:247;a:2:{s:7:\"ignoreC\";s:32:\"049b9df78f81dd99083fba856dd46c9e\";s:7:\"ignoreP\";s:32:\"049b9df78f81dd99083fba856dd46c9e\";}i:248;a:2:{s:7:\"ignoreC\";s:32:\"841522ca7f1ad75e66feb0b24f86ca66\";s:7:\"ignoreP\";s:32:\"841522ca7f1ad75e66feb0b24f86ca66\";}i:249;a:2:{s:7:\"ignoreC\";s:32:\"f854883cafa6f7c69f83d3cc4f38e71d\";s:7:\"ignoreP\";s:32:\"f854883cafa6f7c69f83d3cc4f38e71d\";}i:250;a:2:{s:7:\"ignoreC\";s:32:\"4e35a426324013f9683b57827ff14336\";s:7:\"ignoreP\";s:32:\"4e35a426324013f9683b57827ff14336\";}i:251;a:2:{s:7:\"ignoreC\";s:32:\"ca5da2e2e49678143c52ad4bd880ff2f\";s:7:\"ignoreP\";s:32:\"ca5da2e2e49678143c52ad4bd880ff2f\";}i:252;a:2:{s:7:\"ignoreC\";s:32:\"ce544457bea3dfdcb301688ec02e85eb\";s:7:\"ignoreP\";s:32:\"ce544457bea3dfdcb301688ec02e85eb\";}i:253;a:2:{s:7:\"ignoreC\";s:32:\"7730b5cfa0e89193cc013d9efdc2ae1b\";s:7:\"ignoreP\";s:32:\"7730b5cfa0e89193cc013d9efdc2ae1b\";}i:254;a:2:{s:7:\"ignoreC\";s:32:\"f391bfc203155d7fa676fd95da0a74a2\";s:7:\"ignoreP\";s:32:\"f391bfc203155d7fa676fd95da0a74a2\";}i:255;a:2:{s:7:\"ignoreC\";s:32:\"aa5a36f7878ecb962a4c854acede4eb5\";s:7:\"ignoreP\";s:32:\"aa5a36f7878ecb962a4c854acede4eb5\";}i:256;a:2:{s:7:\"ignoreC\";s:32:\"51ddd1c9c5103a420685bdc968bd6363\";s:7:\"ignoreP\";s:32:\"51ddd1c9c5103a420685bdc968bd6363\";}i:257;a:2:{s:7:\"ignoreC\";s:32:\"4945532e0b91cc6e36d308c618eb9b8f\";s:7:\"ignoreP\";s:32:\"4945532e0b91cc6e36d308c618eb9b8f\";}i:258;a:2:{s:7:\"ignoreC\";s:32:\"4f5ec59356f7510a23d540a2f85ce199\";s:7:\"ignoreP\";s:32:\"4f5ec59356f7510a23d540a2f85ce199\";}i:259;a:2:{s:7:\"ignoreC\";s:32:\"a45d53f383e590485a4ee7badb322b5c\";s:7:\"ignoreP\";s:32:\"a45d53f383e590485a4ee7badb322b5c\";}i:260;a:2:{s:7:\"ignoreC\";s:32:\"662529c23c23c9d87a582dd91476f119\";s:7:\"ignoreP\";s:32:\"662529c23c23c9d87a582dd91476f119\";}i:261;a:2:{s:7:\"ignoreC\";s:32:\"a87fb30390c4780f606f29bfe1794883\";s:7:\"ignoreP\";s:32:\"a87fb30390c4780f606f29bfe1794883\";}i:262;a:2:{s:7:\"ignoreC\";s:32:\"8090e3c4c1b7a59e075175db598a6dc3\";s:7:\"ignoreP\";s:32:\"8090e3c4c1b7a59e075175db598a6dc3\";}i:263;a:2:{s:7:\"ignoreC\";s:32:\"b28bb6ae0f36f844a1d5a7aaa63aeb46\";s:7:\"ignoreP\";s:32:\"b28bb6ae0f36f844a1d5a7aaa63aeb46\";}i:264;a:2:{s:7:\"ignoreC\";s:32:\"1d1cf1c67e2406ead0fc2f17544bfef2\";s:7:\"ignoreP\";s:32:\"1d1cf1c67e2406ead0fc2f17544bfef2\";}i:265;a:2:{s:7:\"ignoreC\";s:32:\"511aaffd7f1e8cff3eb27da5c8c5cdd9\";s:7:\"ignoreP\";s:32:\"511aaffd7f1e8cff3eb27da5c8c5cdd9\";}i:266;a:2:{s:7:\"ignoreC\";s:32:\"88549bc556f6a8b55db301b65a3dc3a0\";s:7:\"ignoreP\";s:32:\"88549bc556f6a8b55db301b65a3dc3a0\";}i:267;a:2:{s:7:\"ignoreC\";s:32:\"6dd28f230d81d89fa66a07823a0cf193\";s:7:\"ignoreP\";s:32:\"6dd28f230d81d89fa66a07823a0cf193\";}i:268;a:2:{s:7:\"ignoreC\";s:32:\"98ba3180b58cb1c773b9be96646cbbc5\";s:7:\"ignoreP\";s:32:\"98ba3180b58cb1c773b9be96646cbbc5\";}i:269;a:2:{s:7:\"ignoreC\";s:32:\"d6e832922759a59700d9b26ed0dd1e2a\";s:7:\"ignoreP\";s:32:\"d6e832922759a59700d9b26ed0dd1e2a\";}i:270;a:2:{s:7:\"ignoreC\";s:32:\"deb31d1e6e3a591265cf727aaa459b16\";s:7:\"ignoreP\";s:32:\"deb31d1e6e3a591265cf727aaa459b16\";}i:271;a:2:{s:7:\"ignoreC\";s:32:\"539c1e7d5771a2fbdb34c829aa6b06b0\";s:7:\"ignoreP\";s:32:\"539c1e7d5771a2fbdb34c829aa6b06b0\";}i:272;a:2:{s:7:\"ignoreC\";s:32:\"27a915c9125ae76ff08f6d33f08c15ee\";s:7:\"ignoreP\";s:32:\"27a915c9125ae76ff08f6d33f08c15ee\";}i:273;a:2:{s:7:\"ignoreC\";s:32:\"ba7b44c03297d2fd1164149a29ed29f7\";s:7:\"ignoreP\";s:32:\"ba7b44c03297d2fd1164149a29ed29f7\";}i:274;a:2:{s:7:\"ignoreC\";s:32:\"0cc1f1e325f5f65ea54dd5416087df36\";s:7:\"ignoreP\";s:32:\"0cc1f1e325f5f65ea54dd5416087df36\";}i:275;a:2:{s:7:\"ignoreC\";s:32:\"bd7528c128eae828fbaec945820ad141\";s:7:\"ignoreP\";s:32:\"bd7528c128eae828fbaec945820ad141\";}i:276;a:2:{s:7:\"ignoreC\";s:32:\"9530a7413f08db8c89b312e6c56631bc\";s:7:\"ignoreP\";s:32:\"9530a7413f08db8c89b312e6c56631bc\";}i:277;a:2:{s:7:\"ignoreC\";s:32:\"cde046404f8e04882970b50258a84b63\";s:7:\"ignoreP\";s:32:\"cde046404f8e04882970b50258a84b63\";}i:278;a:2:{s:7:\"ignoreC\";s:32:\"51810b7e53e90903757c07d8d1325b33\";s:7:\"ignoreP\";s:32:\"51810b7e53e90903757c07d8d1325b33\";}i:279;a:2:{s:7:\"ignoreC\";s:32:\"95991fd18aee0c8904f699dcb831467a\";s:7:\"ignoreP\";s:32:\"95991fd18aee0c8904f699dcb831467a\";}i:280;a:2:{s:7:\"ignoreC\";s:32:\"be89c9ff66f3cf0aa1c3eadf3e892a86\";s:7:\"ignoreP\";s:32:\"be89c9ff66f3cf0aa1c3eadf3e892a86\";}i:281;a:2:{s:7:\"ignoreC\";s:32:\"51b0033ccade65e3d20860421de95236\";s:7:\"ignoreP\";s:32:\"51b0033ccade65e3d20860421de95236\";}i:282;a:2:{s:7:\"ignoreC\";s:32:\"d2688171bf3756860b2a96c802385dbc\";s:7:\"ignoreP\";s:32:\"d2688171bf3756860b2a96c802385dbc\";}i:283;a:2:{s:7:\"ignoreC\";s:32:\"9948fcd94172f0bd2ce8614bffd18ee0\";s:7:\"ignoreP\";s:32:\"9948fcd94172f0bd2ce8614bffd18ee0\";}}','yes'),('email_summary_dashboard_widget_enabled','1','yes'),('email_summary_enabled','1','yes'),('email_summary_excluded_directories','wp-content/cache,wp-content/wflogs','yes'),('email_summary_interval','weekly','yes'),('encKey','815825e4ccc98af6','yes'),('fileContentsGSB6315Migration','1','yes'),('firewallEnabled','1','yes'),('geoIPVersionHash','a1214acac1b3109ae51eae6349fb045cef4b53346ee65840edbf84fa0fad9677','yes'),('howGetIPs','','yes'),('howGetIPs_trusted_proxies','','yes'),('isPaid','','yes'),('keyType','free','yes'),('lastAdminLogin','a:6:{s:6:\"userID\";i:1;s:8:\"username\";s:5:\"admin\";s:9:\"firstName\";s:0:\"\";s:8:\"lastName\";s:0:\"\";s:4:\"time\";s:28:\"Thu 6th October @ 05:57:12PM\";s:2:\"IP\";s:13:\"166.205.190.3\";}','yes'),('lastAttackDataSendId','222451','yes'),('lastAttackDataSendTime','1701258209.525011','yes'),('lastBlockAggregation','1701245973','yes'),('lastBruteForceDataSendTime','1699525797.959600','yes'),('lastDailyCron','1701275642','yes'),('lastDashboardCheck','1701275642','yes'),('lastEmailHash','1699317301:f99a1087f9de4eb5de5da1e37735cb02','yes'),('lastNotificationID','4944','no'),('lastPermissionsTemplateCheck','1702487163','yes'),('lastScanCompleted','ok','yes'),('lastScanFailureType','','yes'),('lastScheduledScanStart','1701148988','yes'),('liveActivityPauseEnabled','1','yes'),('liveTrafficEnabled','0','yes'),('liveTraf_displayExpandedRecords','0','no'),('liveTraf_ignoreIPs','','yes'),('liveTraf_ignorePublishers','1','yes'),('liveTraf_ignoreUA','','yes'),('liveTraf_ignoreUsers','','yes'),('liveTraf_maxAge','30','yes'),('liveTraf_maxRows','2000','yes'),('loginSecurityEnabled','1','yes'),('loginSec_blockAdminReg','1','yes'),('loginSec_breachPasswds','admins','yes'),('loginSec_breachPasswds_enabled','1','yes'),('loginSec_countFailMins','240','yes'),('loginSec_disableApplicationPasswords','1','yes'),('loginSec_disableAuthorScan','1','yes'),('loginSec_disableOEmbedAuthor','0','yes'),('loginSec_enableSeparateTwoFactor','','yes'),('loginSec_lockInvalidUsers','0','yes'),('loginSec_lockoutMins','240','yes'),('loginSec_maskLoginErrors','1','yes'),('loginSec_maxFailures','20','yes'),('loginSec_maxForgotPasswd','20','yes'),('loginSec_requireAdminTwoFactor','0','yes'),('loginSec_strongPasswds','pubs','yes'),('loginSec_strongPasswds_enabled','1','yes'),('loginSec_userBlacklist','','yes'),('longEncKey','831c68617f32306e37dbd5f4d408a4b412491bf617cad9845f87a4741fcccd2d','yes'),('lowResourceScansEnabled','0','yes'),('lowResourceScanWaitStep','','yes'),('malwarePrefixes','‹\0\0\0\0\0\0Öy8ï\0ðÙ—»Î;Ë½sIYJ…ŠBR$RI%QŠDÙZHJ!I+…J”¤H‘Š”´i!*)¥EE+Ò&~ßßŸçœyžyßç3çÌ3>ãÇŒ\no>^×ß\'Ì_wBØx³1ãuO¿\ZÞÿ Õ%ïe\rÉ?ðECËÄ)¥³ŽM¾>í²Í8)ûÿ}–ãu×„ú-XïöÿË1ff–æÿm\0–é\0øý\0Ýràa?\0xG7\0?Û )ûô`‘\0ö4ÀÖDÂK@ÜbH½\0Y®+ gZ\0¹p\ZÏê¨›‹\0êß@1¶Pt„ô¡€180å\0ûv6ÀÙÈ. à);€÷¾ð§´Õ¼\Z@U—	¨Ó{\0uŽ ¾\'ÔÏîÂÌ@p_ö€F»Ð\\q4·Æ\0Z.=€ÖÂ_€ö\r0h²êíèŒït&Õ:A‹€!·í\0]ýß€î¤\n@7è\0 ûb? gè]¬–ÙÛ;€aÜl`Ø,[À0ì`¸í`xý,0ü`00¼¯aŒ˜ñì$`d½0Z§U\\\0Œ>ÍŒK>Æï&¶)€Éæ/À¨S5Àè½)€;0ó­€r°Ø=	›»7ë?î±À¸ë­À¸º`\\C`9Þ°*XXÕ€Õïd`üÉ~`‚6LˆXKþÖ—_ÖW–6$`Û÷°»¸˜t¦˜t/˜<$p8·7ŽOÓ\0§ü`šm0mà‚.V!ÀôÝý€kH,à\Zý˜ÞÌHðfœ~Ìx8˜9½˜•ü˜uúà6~à–…³Žî«\\÷Ÿ¹À\\§`îÃwÀ<Ç:`^s0Ÿ³\0,?\0,H{\r,8ã,(N\0\\Y\0,øžx,þxä¦\0žcO«Ó€gö#`¡½-°Ðuà¥­xx›s€·/à]˜\0,¹%|ˆë€ãøl¼øª0À÷,õÔ–Y·ËÖþg×8`Ù×À²Ñ€Ÿìàçžø]ôüêCå\'v\0þkÜ€\0É& `O,:	X©˜&\"@`çH hú4 8ZÇÁÜÕàs`õÞIÀ\Z0XÓºÙ›„A@XPv¹/6\"°J bé\Z \"k\0X§¯Öõ:ëýï\0¶†‘—Q òU5d•DG]\06=]ln¶X†[VÁ@¬.ÄE±ÿ½»Ø$ˆ½·Øúó°õ.°-©Ø¶ï,°íù; ~Îj >éŸNñuç„µù@BŽ#8ºHÜ7H|;Ø.v„¬’œ+€$— i‡?°sä ¹+\nØõÊ	Ø,v4{—Àf7°gëo`ï§ûÀ>Ùw`ßÈ^`_ïN`­R<æ)AÔ=ÉÀqÀ—R M÷6f0\nH—/\02ÆK€g; Ãc\"9P²0%k€ÃÓ¢€ìá™@¶ßD gß= çž3pdQ!p´ý4p¬YäÖÜòÀí@Þzs ï£×çœpÍN\Zþ\nŒó‚t_àT£pª[B±@¡ñI pþm ðá\Z °=(ìžœn»œ1\ZœY\Z{¬Š—{%\'Fç|¦\0ç*^¥&Àù™•À…)ÚÀ…í‰@™ü(›2(OR£³€Ë§ª€Ëw&WÞæ\0•“` Òm=P¹2¨Õ@õôk@õF :ñP}®Õ|®×Ù7:†µ†£€ÚS÷€ÚÛç€[9ZÀ]¸r¨Ó™\0Ô5G÷f6\0÷|åÀ}E$pßð@¿xxx8û2ððÄ/ Á4h¸txtöÐ8S4¡Ï€ÇcÃ€ÇQÀãGîÀŸ§À³Í^@ËÅ6àyì à<xaj¼Øû\rxi9x9Y	¼Ü^¼¬^KÚ–ºmébàµ·=ð:$x1x;rðö²)Ð®c´¯\r¼ŸÐ	|hK:ÌO|€Ï»u/¶³€o‹¢ïç§]ËöÝÀ# [Ïý?ñ@÷Â@ ûˆÐã=í\r¿_…ðÇ¾ø›Uüý¶è»÷ø7c\"ðoN)0 ‚K€àµK 4M„ò?€Ð§û |„c¼@ÄºDöº‚h¼-ˆ/1\'ÄþÎq¬Ä†xÔx6$/ÍEÖ. Èë8(Z;]ŠË¢@ñ”@k@Éð$P2Ù”†ß¥[ß€2»hPöu:H¥DƒTû3¦Ë@f¿\'È{²Íù G¤‚ÜºP¥‰\0UûAUR\0¨ÖêÕŸ€ê‹é úÞ~P-…E© °n8¨™Ujé¥ZÃƒZó|A­ÆM ¶~!¨íUj?ùj?{*›\rêèåƒ:›²Aš-ààÀvpp¼)8D³¢WêZ;º¯úÛÓ@WÐÀóhðò84-zq	8lé0Ðp®4ÌN\r_[€ÃÙ\ràp?8¼X’Ž¸œ\Z}M\0]AãÙ;Aãñ 	”šÈÚ@“8ªÑõë.8\Z\\šŽ}šZÍÂï€æà Ð¼·ë³{*gp·b8®í\0h9v>h¹ûh™5´šø´JN\0Ççéƒ‚û@k™h½þ\rh}À´þ¹´ÙÚìlmN^mÊAÛoEàÄ/ã@;ç~ÐîU8iÑ?Ð>&œÌ/\'?O\0§|D@§@\'pZÙÐÙz!è<ù8=‡]#~€3g‚3¦G‚35\ràÌ+GÀYn€nÁÙ÷€î_A÷œ±àð!8®çºXƒóôÓÁyEÁùêÁùéÀùÿüÁÎà‚È\rà‚$%è!o=†ï=êŸ€­– g…¸pÏ\0¸ðœ/¸°y¸híApQå\ZÐK²ôš´ô:R.¶ß.¾üôn‰—äçƒ¾‚K=ÓÀ¥G·‚KóTà²kÐþúeW¸d‚+ÞOW|ëý7]W>ØžÆÁÀG0Ø¢®²4W]\0WÝX	­…å‚Á{0øµ’?^†½X†uÇ€á#ß‚ƒÌÁˆŸ¶àÚõ!àÚM¯Àu+>ëªöƒëošƒQ>Á¨3öàFø4¸±Ë\0Œ^5	Œ>”	F>nú¡Æ\\]Æ< ÁÍ\r\npóÓLpó«à–+àVf=¸uº7¸mú2p[êWpÛ‰}à¶\'0nb·ÙŒ·Œ\0ã÷€ñIÕ`Â’,p;¿Ll§Á6¡àŽGÁ¤X)˜ÔÜ&¯œ\n&§?w}H÷ø·‚{{æ‚û´‡ƒûæ=\0÷ß¯÷*S—x€©-ŸÀeàû`Ú‘+`Úýr0í©\r˜>hxpõD0ã[=˜éè*pç‡·^\0³RÀlU˜Ýž\0æ„\0sþŒ1›Ác/÷¹“U`î\"3ð8_R\nÿøÌ›˜\0æ5žóþöù÷ËÀüëÁ12° y6Xú,ø»<µxêÃ9°Ðì*XX÷,ò™½`Á3%OÀ³²MàY+sð¬¿<»&<ûÛ\r,60K˜@°´0<ï·¼0lXÆõƒe¹3À‹J°B¶¬0«+æ.+Âgƒ—–„€—)7ð²gxyÕEðŠñ\\ðŠ×H°«+·«FE‚W¿Œ«Ço¯¹?¯E<¯Ï×kòCÁšÿ9u¼ý¬5¾Þô¼½,¼ªÞ®©o÷‚wuç‚w‡^ëÆ¸‚ììÀ‹–‚\'‚‘àÃÿêÐ ï	>\nj¶\0}qw§ƒ=‘`S½=ø-ë{(À\'oÁæià³$l‘õƒ-#g€Ï×/Ê°µž_š$ƒ//Ô‚¯ü+ÀWç?€¯žãàu\0øœ	¾s°ßµ•ïz§ƒïùµà{›^ðCÒðct<Ø1<\0ìv”¹çmÀONÖà§ÙÙà§sÎà§Û§ÀO/ëÁÏ ø¹¦üò~øU´ü>}8ø½X	vÅ]»:°ÛX\nvï{öDÝ{ËN?ã1ðçïbð—×oð×2_ðWÀvðW¶ø«u6øûÂ\Zðï#ðïÃà?Ãõà¿²0°Ÿêûk;ÀW; À“†€47CàÝìp† #ºÁ\n{ž0\0Áv¶|ç„!Äb9„.y¡ l×¯ºæ1€ˆm#!rû\'ˆ¼\Z\n‘!Ñ¼XH²%’:+!é©«ôÆ[HfÉ¾\\€äSÅü•-D\ri…¨ã\'!…»¤hÙ)1Rj/€”w, Î¬â“Û!õ?H0ý	VG!a»$ìð…49¯ ­wAö4_HG{¤óO\rÖÞ\röt‡‡<…ß{\rù÷ÒËŸé}Üé»‡ôW¼‡ôwo„ô¿˜@CÇÖAÃÜžAÃ|AÃJ¡a—» Ã‚+Ðˆ–5ÐÈYrhäÝ#Ñä\ZÈèŸ\n2î%!€Fi-†F‚F\'¾ƒLß4Bcd%Ð˜+ 3ŸdÈœ\" ±ê]ÐØ-éÐ8ã$È²p*dYÆBV¾@ã\'éC,t Û$dmÙMXÙ— ûÃk ûìóÐ»EÃrHQBŽsS ©iÙÓhÚª«³û7È¹ð;äà¹lš\0¹¼\0M\'CÓùhúÅ.ÈÕ³r]=rÝúr}òš5*š=ú$4Oè†æ_<	-øï<ÚC $äIxAžs]¡…Â4há„ÐBo3há=Z4|=´è±+´èÏSÈ«v\'äí”y§ZCK<ÇAK²ã %Õ«!Ÿ!ë ëxÈ×}ò¼¡¥\Z ¿›ß ¿7w å‡â åOfB+Ö\r@+chåž…ÐÊ»Ã¡•o@+{CöéP`Å;h;Z5ÍZÕ¤‚Ý à\"h5­v7…V—‡B«/–Ckà¹Ð\Z×PHÖ(t:…Þ_…ø…d (Âé!±÷;´~ÔhýR	ù,Š	5…brnA›‡VB›+>A[ìïC[w|…â,= I$”03JØ9\0%ü˜\nm·j†«•ÐŽ˜(É´Jšì%mý/¯%½ú\n%_‡vM¹\níºòÚíqÛí¹´ÚóÇÚOA)g_@)/Ú Tq%tÀâ”V˜¥O|\0LºÌ	Ì\ne¸ÅA™fYPæ„(óñèð9Oèpçy(kH”kåøèCG8tditäØèÈ“è(g³»{ûk	_Ò\r?~ÊûøÊ·Ì€ò#G@ùCùwÖC\'à_Ð	‹ŸÐ	—YÐ‰´[ÐÉ¯¡¨*ØZj}	êB…ÏCEˆTä9*Ú>*ú	Ag\n~CÅŠ÷Pq¨*Þ?*)Ì‚JN†Î¹* swæC¥cÊ ó›pè|ž7tþÔTè‚è2T€AW™A3äÐ%/	tÜ	UM_U½q®n]]M•BÕG k	‡¡k§¿C5žÐ\rãïP­Gts÷cè–ÁLè¶XÝí9\0ÕiŒ :Ó èÞ:º×®Ý°€Ð º¿ zÎªj=ª›5nó†·\'BOý@Í÷ë çË@èå¿uPwj3¢ ¶%YÐkê\rôzÊèMÆzèmrÔ¾9zÿÇúqúðÒúðeÔ‘iuš\nuzý€:ãÊ O×Z Ï~MÐ—šãÐ×øoÐ·ýFÐ÷ÔN¨ërÔí	uÇüƒº“µ î{_¡ks¡Þ3zPoUôsÕmègýaWA<R >í{Ð¿žl¨¿FêïÃa4…Á©q0”z†mü`¸¦FôžÁˆÑuËw‚±ë‡`Ü&Æ/Ã„ùr˜ÝÊÿÜ‚I`L¦–Á¢‘‰°(»	µ³°¸[KM†%\'ÁÒKÉ°ô±,\nËö¼…eµ?a:*¦_„•F7`e”VÂÊ×&0C‰`N‘s‰‡`ÕâË°ê×qXX’ÅÎ°ðt5,4Á\ZûdX³Ck¯ºš:\"‚u|&Á:mÇáÁ›Pxð²}>¬»î!¬—Ðë]Üë›{ÂCÅðÐÊýð0ä<¬Ý6t>ï<\04˜\0™Ý9\r½`£Ol\\k	›|÷ƒMþYÁ¦^ž°¹$6wþ›Ÿh…-ú¶ÀV6k`«¤Eðø¸x|É=ØºðlSÛ4¿„mþ6Â¶_ÂíRà‰¥ðÄ—ØnÓ>Ø~°!<9¼vˆ};\\4…\rÀS¯o…§™iÁÓª_ÂÓžR°³Î(ØyÂ\rØ¹èìB?†]£ð*žÑqž	ü‚gN¼\rÏô0ƒgfngÅÀnR`·‚ðìëbØýÌxN°<×PÏó=Ïwœ/Ø¬‚=`]x¡Õxáö>xÑ¹¡°WÉ?x±Ë}xñ[öÖ.ƒ—|t‡}F$Áÿ•öqx\rûô0°ïùPxéíÝðÒCáešxxYåjxYÕ+ØOoìU	ûåÀËï\r‚ýKõaÿ–°ÿg\r¼ÒÐ\0^Ypë	Ú˜ÃkÿÁ«\ZÊà`>Þ¸^=ê¼æE²çòÌµ}AÃaåŽpØ[çÂómáˆ³YðºîÇð†’»p¤±y1	Ž¬©†#ûoÃQ3]á¨Â8êt¼1ù¼1¥ÞøÀÞøñ¼Éló!Žù˜Ç‚×àØÝ¼õÌ;x[Ä(xÛ6Žsy\0ÇøÇW-€ã__ã;†ÃÛhxÇ‘›pÒ´hx\'ðÞ>ÞåvÞ#ÚïyõÞ;é8¼÷ãx_ï{TïIÀû§‡Sà¶qðkà¹Cà7‹á4[N[ë§_n€Óo”ÀéÍ[àƒß\ràs78c¥6œÑågš	gf¬³K:áœÛá#áMð‘£>ðQ¦>zÅ>f³>îLÁyGà¼ëpÞ£ùpþ ×ð	\"\n>‘p>Ñ÷>©ß	ŸôŸ¼íŒ,‚Ž;Â§NØÁ…]YðéE›á\"ãHøÌ°£ðÙšøìmK¸¸..Yu.ù9>·r|þÙ<ø¿.cÏÃSþÀ‘\rpÅí…ð•!p•m\\uæ!|õô1øZâ%¸&g.|£º\r®¥ÂµñýpíþvøæüÅð-#ø62¾ckßqkƒëìžÃuŒàº.søžØ¾We?ôq†<‚–Œ†ëm@¸>ÚnØ7ÄoîäÃâVÃM£ZàÇ§ÖÀOf™ÀÍ»õàæ¿ág5üÜwü¼Ö~Q9n=LÀ/=àW+õáWý?á¶UŽðëHøÝØð»¸^ø]ö-øÝß«w¿Ã‰6øãXøãÒF¸óª;Üù~)ü©oü5x*üõÍoøÛMgø»w±r¸ËÃ\rîÚow½Ûw?6…{\Z÷Á=ísá1ËáÃ½:‘ðÏË«à_Ã#à_»\'Á¿Ìá?^•ðŸKøï¼#ð_ïÍpæ¸?[<Ý\0´†>Ø\"@ÌnÈ>ÀÔ7©‹ So#hÊ}=Á¦®D°åí^q!ÝD<9\0ßND$·!’æ/ˆ´R‘¹9!²ã·ªæ&¢¨MD·Úu$Bïÿ…ÐOî#Jî¢œýa‘L„}ØŠpÖÁošŽðG_ ªsWÕõND±QçGÅDxv\nÑ²ûŽhE× ZÿmÍLD»¨Ñn_‡h\rD‰® ƒ®ŽGt¾ýCt~5\"ƒ§¢ÈàÅˆÞoDïãDßà¢ÿG1ð{ˆ´NF†>ª@†!©ˆ!º1…ÿšŒ\\w1\nŽ@ŒÖš\"F}çãvˆñÆÈèŸ¦ˆ©}bÚ¸³â\'2fà>bVe‚˜K& æ^oÅ]Ä\"u\'2Ž¼ŒŒ[jŠŒ‹š‚Œ»X*G#–­g+ub†Øè©ÄÆß	±%Ò‰u}ˆÝ\\dÒÚaÈ¤c+{{	2e¡âàðq˜{q(õFë†!N:ƒi›aÄyCâ¼c*â|<q>¿q¾rq9}™î<™^õ™þù	2£¡™ÕŠÌü¹™%Yª¹ˆ[¨7âþ1™3ú\Z2ÇÅ™»j\"2÷B\Z2÷½)2··™§úÌ3²Dæï¹‡Ì¯Z†,È„x„ø!a%ˆgäÄsƒx›‰,Ü¾YÛ!^•Ûo¬ñÍ@¼×#KjZßÜ	ÈR}CdéüUÈÒØCˆßÚ2Äïh$â—gŽøõ¾A–¿ +NÞBüUYH€*YÙ½	\\ð	ÌƒžòFëmUž?UÙ4þ(Ð†ÇE‚OÿBV§îEV7CÖLÄ‘5Gí	)X‚„N[„Ö¤#áKA$âúZd­n²nîsd½\"Y‹¬¿T€l\0­‘hó$:à]q‰qöG6óáÈ–)…È¶ÅÃ‘m)ó‘x×j$¿ƒ$,Z‹$¬þ‹$$E¶—íÍw7J‘$Õ,$é’\r²s¬Ù¹ñ’|ñ’ÜÃ\"{œ¿!{Âu½“W {ž#{?mFö]@öSÏý¿> ûÿ™ )‹Æ\")¾’«¤\ZERçÎCRï7\"\"Î Þ#i[Æ uäàä$$sÛxäÐ¸ñÈa«.äpb3’uŸE²¿: Ù½™È{äèÞ»ÈÑ‘£ÕÈ±²³Hî6=äøÉã†!yb‘“J9y¡9Ym‡ ÈiÑE¤hrrÆá\0r&Õ\n9Sø9kô9;ë3rö„R<Í)ÑíEJš,s}<R:ë7Rê>¹P›‹”Í¡‘²¢gHÙýD¤¬¡¹8®¹¸érIã„\\?\Z¹<B.§!W^k#•§® •wâ*Ã&¤*°¹:aR½%¹NmDj†¯Gjân#7:JZ­õHíËHíoä¦¤¹ÙŽ ·¥!ÈÝÔQH]¹1r/[¹÷{\'r¿-©Ÿ•Š4Øö#ŽU\"Í5H“í¤)ŸG{ÀÈ“Ù7‘§{¥ÈÓÞ…Hó›õÈ³,K¤eÈ$¤Åù1òÂ¿yy«yEø!mâ™H›ñ8¤íÎ\Z¤­eò&Nykóy»ÖywÀy×ê´K;öâýH{m?ò8…¼C‘÷çò\\òñ¿úv¤=D:_”\"ŸV|C>½³@>ƒ8òÒB¾,[†|)´B¾œ­@¾”.B¾Íþ†|ûÑŒôÿF~ÌüŽühÔ ½óÞ€R¤7Íé-›ü4{…ü>zù}¦ù£Uüñ¬@þ&; }K¤Hß3äöé²	é_péo»ŠÀ¿™(øü\'\nu¥£°:	Eîú èÊ›(\ZøEkÕ(®tBqÃû(Y‚Š†¯EÅ¢¨Ø´•¼?‰Ê®ODåª¨ªB•3ÚPF/e>c(Û‡r#¼P÷pTsÂd5Ü¨A‡<~‹êŠÊPÝq*T÷‘/ªÛ2Õãß zëP½œRT¯ñ7ª?•FõåèÐìÙ¨¡Aj-B‡ûCGOGÏ¨IúqÔäª:æõlÔLP¢f»ÚQ³C‹PB-¶÷¢]jñã5:¶í\":ÎÁ7ó\"jù\Z@­\\ï¡Va7Ðñ{eè„•¹¨5¢ÖÏö¡¶cÝQÛ}cÑ‰ÂÔ>ˆNÞ²Ç¡ïuPÇ™CQÇë:èTÍgÔiÕxtšÌ¶=u)ŒB]Î¶ Ó±2tºz=êúx:CtÉ–¢n¥ž¨[e;:›˜€Îžzu{	S¨Î[ŠÎëšŒÎ|Ž.0¹‹z² ê¥{õzTŽ.Þ=\rõÑ’£>½E¨oéÔ÷6ºÔÅõ[rõk‹DW4ŒEý³¾¡þö¡þÍÛÐ•ƒþ¡+=î +ƒ`te¯>ºŠÚ„®JnDƒôÑÕ£o «/;¢!c×¡¡Þ›Ñ°\'4|G,\Zžû]kþ]?è-º!xºá¤\ZI8£‡÷ \'ïE7èÆ\Zi.B7»¼E7ç£èæ/1hlc9º5e\Zç*G_¡	±SÐí_ÐÄ/¾èŽ[SÑá5hòLc4ù†šÜ%CwÅÐènE\rºÛ>Ý}åº7nºo·ºÿ‹5š¢wM1´@SÎmBS®X ¦ÝBS£®ÜGÓœÑ´}Uhº‘z0V„fì|†fêÝ@3ÿÕ¢‡l|ÑÃ#ÃÐÃ\nÑ¬1uhÖ­ÓhVó4g„æŒM@sâ\"ÐœìX4çe(šóa$zôd4š»­Í-ÑEžˆæ­(Fó²–¡ù3tÑ|ÿ¿h~ô4¿Í=qFOôíCOæm@X-ÐŽEÆ¬CNÌFO­¯BO{FO¿?ŠÇ$£%þè½½è…ÄZôBû0´L÷\rZæt-›u-+üˆ–×ë£·­G/÷e¡W¾¤ •Ÿ\\ÑÊÞ·èUýèUýèÕaNh5´­ÖrF«+£ÕkÐk%Íèµ{‹Ðk_Õèõ·ÕèõžXô†üzãbZkí€Ö®qBoRèÍË^èÍêzôvä(ôÎš«è½­è½}­è}Wz?&\0}([†>\\‹>’h£IÚØaˆ6þ‰G›¸õh“mÚT€>‰ÉGŸÂuèS¡è3}Vbƒ¶ì”¢-® Ïw½GŸŸ9‚¶®z…¾ôýOr\"ú²5}5¶}eÝ‡¾Zÿ}Õþ}=¾	}=ëúúQ(ÚnrmŸô\Zmcƒ¾OtEßßÈD?ŒÉG;lÐG/´có´ã,‰vú}B?Ÿßƒ~þ<ý\Z‡~i°F¿jMF¿ê_D¿ÍF¿›F»˜\rh—æÚu§íºûíúÈ£Ý£œÐîCÐîs«Ñžâô‡Ã/´×¥ý¥Fÿt¼Bû‚æ¢ÿÖßCû!S´TÚoÖöGÍ@û3¦£ýùè\0RŠ­O0¤\ZÅÐá–cX{†ý‹Àðò_~?\r#Ê]0âæ;Œ¬vÄDðyLlž„‰}Â0ñ²lLb`‡IâÎb²•w1Ù†û˜ì€QÌyŒqS\Z¯Ä¸32Œ/?©jžbªßN˜zô-L}ÄS·…aš®S˜æO¦5ì¦­ç‚içbÚU‹0íë	˜ÎSslˆn¦{ Óƒ0½Õ?1½¼W˜Þ×I˜ÁÁHÌàÈSlhB\"6,~\r6ì[fZŒ\r÷/À†_˜‹°*ÆFûƒü[Oæ°Ñ5¡Øè/©˜©Ö Ì´&c²³/k¾{à663\Z[þgò×TYÀ,Ãõ1ËÚl¼ÉLl|­-6a¤	f3î/f3ëfË¿Âlí1Û¨ÿòôåØÄá¾Ø$ö6©ô6i ³×Y‰MY€M)ù9™aŽmŽØÔa7°©¡C°iŒ6í†;æ’2sùHa®?‚±ªÁØŒ#§±Y5 æ&ÁÜ¨cØì¸nÌsÁæôgbså+±¹†ýØÜßžØ¼Ò7Ø¼o?°ù6ÿq)¶\0¾…-h×Å<Æ÷asÛ1ÏÅ=˜çÞ˜gÁRÌó¹æùÖ[¸S…y±±Åƒa‹—žÁ¼Ó°%?ß`>ŽK°eƒÞaË&]Àü—b+z³°€!ñÈû‹­tÞ­|5|q|{[5e4ò”ý:„Ë\\±àg$Bta!Þ±ò×X¨‡…¾LÀÂªî`ágŒ°ˆá³±ûuØº‡±uñØ†Ç½Ø†g±\r_œ±È]ÆXôˆÃXôÉõXtq>¶‰Ü„mª…m€mN8m>tÛüÁÛ²Û‹=šŽÅþõÇ¶fÍÇâôZ°¸I\rX¼xÿp=–ýK¨þŒm—çaÛUúØö*¶½é–x;Kìý€%Ý·Ãv¦ŸÅ’ÃYlš‹í”b»£plÏ”5Øž§ÅØ¾Ÿ°ÔIk±ÔLK=iƒ¥ö.À\'`éÃÃ°ôØÑXúÍìàï4,3x\rvh÷ì°îì°?–eúËºn‹eêbÙi4–cÜƒ¹ñ;ÊNÁŽ-ËÂŽ½:„å¦c¹—œ±<t–\'Žå©¶byw\r°|h!vâ»;	þÀNîŠ„?Â\nDc§-ÀŠtß`E®qXÑu.ê&±3ºéØ™àuØÙå,V¬JÇŠ›°â-!XÉ¡©XIÏeì\\ÿF¬tü9¬ÔÚ+®ÂJÝi¬´ê¿¼%»ðDŒ•uÂÊ!%VþÛ»ˆÁ*nÃ*úý°KZýØ¥o[±ËzºØ•/XeÔn¬ê;…]µf°«?n`ÕmO°k\'7b×\rc×—ºb×o.Á®·\rÅjb°š={±š¼Ø\r·UØ\r¯cØ;ØæùX-7\r«}ÿ»™»µÍ	»]=»Û…Õ!û°:ËZìÞòØý%ØÃÑµXÃÐ9Xƒ%„5B_±\'…]Xs”%öltö,<k¹V…µü2ÇZù•X«3†µú™b­»¦c/Wb//Ea¯ß-ÇÞ0[±·7±w§°÷Ègì}oÖÁÂ>¹ìÄ¾*ÅØ÷¡õX×ôj¬+{2Ö]õ¸,Â~G±ëÒ°QYØ/,ûµ\\‚ýŠøývZ‡ý±à±?N…ØßÕ#±¿ïH¬oÏB¬¯½û÷æ,ÖßÜ‡;q ª‡Žþ§Ð\0G<Üq\\¿\'M\'ã¢÷qñ	\\rk.å÷àÒŸSqÊö®hjÂY­hœÝÓŠs•›quÐF\\(Ý‚kt×á\Zc®mŠkß¶Á5â:¶à:óýp\rJ|°›>d´5>dÅ[\\·R…ëöøázÛ¾áz{špý­6¸~å]ÜàòiÜàÉB|˜ô>ÌÊV­ÂGtÅå¸q~nüõnrt=>*å<>êD%>úîMÜôòOÜt`â]„é8Œ›Õ¼ÆÍ‡|ÀÍmÜÜã,nÞmˆ[ õøØ„p|lê;|z\n·<®À­ŽOÅ­n˜ããu‡àã—=ÀÇw8áv¯Â\'TŸÇmlnã6¶z¸ÍÎ[¸M-nó­	·à]7ãvƒzp»wñÉý¶ø”`k|JúOÜÁ?w[‰;MÁ½áŽ;MqÇ#\røÔ˜d|jZîÔÝ…O³º;ÿÆ]¸¸KŸ>Ý0ŸnºŸ™îƒÏÌ0Åg®Ãg¡Eø¬\0O|Vw%>;ø\Z>û¨7în·Ÿ·ì,>ÿ¢5¾À>_°e/îñéîy¶÷¬[Š/´Ø/|¶\n_äq÷zŠ{uà^\ZÜÛ0÷vÆ½/Vá>ÇƒqŸOÁ¸ï²KøR§6|éû»ø2íåøòÊø\n»)øŠžSøŠŸkpÿ\'^øÊßx >_µ%_õ5zö	¾iŠ¯^p_½p4:Œ‡}_†‡¯×ÂÃ£àáOjñˆ{3ñˆOðu’‹ø:u:¾aÕy|ÃÆ	xäüuxdÜ<òxYa‰GåÃ7\ZNÁ7Þ¿Gs×ñè?1ø&ÿ5xŒÞg<&­y±\ZiŸ‹oþß|ÿ¾ee4¾åí6|Ëçqxìj|«¼ßzi(¾m	ÇÙïÆ^ÅŽ4áÛát<³Âýa<ñÀ6|GÎG<é¾5¾sË|g[%¾³ÃßÙ;OöuÁ“Wäâ»2ßá»:¶â»2øh¾çÅ5|/‘Šï»¢ï?óO	îÃSÒâ©ZÇðTO-üÀž“xzÎ&ü ~~0x%ž1EŒg,‹Æ3Êÿâ™	ûðÌÔOxfC<~ÈÄ-Xˆd‹ÞÿÏjOÀ³/¯ÅxïÅ\\{„y4ÏEÿà¹5žÛž‡Ÿ óñ“Ê‡øÉ 9øÉT/?/ˆZƒ\\?ôŸÀËçà§­Çã§wOÂO×iá§ßÞÀOwüÆ‹Ø»xQ„Ÿ]nËôñbË\"¼xïm¼ƒ—´†á¥a_ñÒÏeøy™?~¾Ì?å	~þÍ+¼|\"ƒ_Ì†_vÿƒ_ö	Æ¯,}…WjÝÀ«‚VâU%3ð«³xüêñ“xõª>¼:ÿ~Íë=~mÅ0üÚycüúÐ[øõÐjüúÕ\\¼…×8â51µø9,~SÓ‰ßœ¯Æo˜à·¿Xàw5;ñ»Cþs¿»Ãë CxÝpküž»!~ïëoüÁüPü¡,8é þðû8¼ŠÂe.x£*oáû´ð¦µ¾xÓf¼iÞT’Š7Ýš‚7õ1øã,þX‡?±?™Ø…·Ì:„·l·7Ã[îÎÁŸ/qÁ_„á­ñ—¶x›Çu¼-ˆÇÛN\0øëqÏð×±£ð·q)øÛt[WÂàïž.Æß—<Ãß÷Ç?<Â;|ðŽYø§m“ñÏz/ñÏ¶3ñÏgSð/Mð¯g7á_{,ñoÓûñoµñïkÖá]•\Z¼ûÔ.¼gw6þÃªÿqÏÿÑfŠ÷®kÃ{7xoúaü\'i‹ÿŠ–ã¿Þ×à¿]Å¾‚ÿ>ÕŠÿ~Ñ…ÿÑæñ?&[ð¿²øß«x_’ÿÇ;áÿ*@¼³1Þ_ƒ ¦ø€÷r|àËA´_G€ó0Õ„\0K)zw”@Ô?ÄÀŽ@vÈª¨í0ãö˜ÅN?ÐBšh‚04\'Ä-0!™óô$d)úUr˜ w$Ê&;‚Clåg‚½7…àp]‚¼à|	>b/Á—ö*^‹Pe²„0ï0¡y}™Ð\ZšCh%7ÚƒfÚŸÚ_wƒ¡ÛÄ`b\"1xëbˆh11DaCè…}%ôö\ZD,aP3”Z²„VSEî	\"†Ž †ï;NŒx¬KŒ$Ç#i[bäH#ÂèÑCÂxÞUÂDvŽ01ë!FÏF‰Ñ«>£ã„iÔHbŒÕEbLT\'aæïDXœ{NX|ßNŒ‹~BŒÛ÷‰×õ°ä|Kƒ/„¥y\"a9O—°|’OX~]IXö|$¬’‰ñ–«‰	­«	ëá×	•/1±åaýš°ëAØ})%ìõ´	ûýÎ„ý½nbÊƒ/Ä”v„C¯%áèŸILÅwS‡ÄSW¶N6§§–#„Ó·QÄ´™	g­ë„³½+á\\H¸\'\\FU.%,áúî1#p=1h&fžšEÌ\"ˆY\'r	7·I„Û³å„Û›ÂÝÉ€pv\"Ü%î	ÄœÙóˆ¹ãpbîŽ˜ÇTó[Çšµ	Ë6ÂS/˜ðt]Nx–Ì$¥‰¯ñ×/×c„—¯ŠX<=šXbA,~¸šð‘J,™®$|˜W„Ï|†ðó™X*®#–fÌ –æ†KÏÆKïß\"ütëˆÎ;	ƒ\" )šX9d\Z¸.“l¼HÓk‰5Ã¯k¢Ìˆ5Ïˆ	éDèR#\"Ìêö$‘ûfO„çÜ ÖRÄ:v±žXKlð\\DD…WQ?kˆE-Ä¦ð@bAl±>Nl¹2›ˆ]1ŸˆÝ¿ŽØZt“Ø¶Ãœˆ»NÄ=o&â†Ûå×‰ÄÐÓDâåED’d5‘4Ì„H:<•Ø…ž&v‹F»#²‰Ýêˆ=6‹ˆ=µ‰½ÿôþSLì\'Üˆý+Ü‰ýÇÚ‰ý)=DŠc‘ú6“8³‚8pú-qàL‘f´ˆH›áD¤½F¤ö#ÒçéµïˆôæyDzûaâàÕÄ!Àœ8dHr¯\'²`k\"«4‰Èi¤ˆ#“eÄÑˆ£¯“‰Ü¡—‰Ü\'ˆãZ÷ˆ¼›“ˆ¼oáD¾f€Ès‡È_<•8©ßDdcDá¤ûÄé¨#DÑ´ÕD‘‡œ(\n<Ou‡gÀADÉK”(u\\B”î¸O”þ7[çO¿\'.”ü&.ÔÚeÚÝDÙ÷¢¬WJ”ãˆr\'¢ü˜(?·‚¸è¾’¸X§M\\|ò•¨¨®\'.¿!ˆ*‰)QµëQuh(Q½»Ÿ¸¶d€¸`FÔW7Ø\\âÆp	Q{Ù‹¸9}qË&“¸ekEÜºBÜ>¸…¸ýBMÜgNÜY‘OÜ‰xCÜ©_AÜéßMÜcN÷\'÷MkˆûÞ)Äý}æÄýãwˆr)ñ`Ã\nâÁ—â¡-ñ°oQ·ˆ¨ß7‹¨oL&\ZøDCÓ\"âQ²;ÑøÔšh|YL<Y‘A<é»I<Ý %ží!š-ÌˆgCYâÙ9k¢eÙq¢%-xAê­¯@âåö$âü–xxŽxÛy–ø°¾‹øðÀ‡øèÖO|\\FÖD§¬èÔ½Et.J|Ö6#>¦ŸÓ´‰oÊiÄ7õl¢KGt­¯\'º|ˆžÓ‰žãw‰žÑ3DüHÚ@ôÆë½·½opâ·Gñ»¦›ø“ý™øÓ«Eôé{}?~ýÓŸý®S‰µ>1ÐpŸx.%Á/H˜õ a£h.V“ÈÐZ© 1q‰¹Í#qµ‰/ÞAGW“ÄÓs$	äæ9¤8Á„”ú6’rÿS$µÖ¤¾= B8I?ï#Å3’™?…d\ZãHvh)É¾B²Ýy$ç°žäX“\\i3©:ð‡T—¼!±)<ÜOj–=!5N’Zò$RËõ\r©5ï9„ZIê\Z’¤Þ‰•¤¾$ŽÔ/Š%õŸ®\"\rRQÒ Ýš4ø+\'‡-üA«¥HC>š4ÔúO‘‚¾}\Z9bÎrÄÑNrdÞ0rä!¤‘«iäöŸŸIãÕi|c:i|k7iÂž\"MœF‘&±ÏH³2\'Ò<siÁÖ‘c\'_%Ç¥+IËÑ£H+ÓXr¼d9^JŽÙKÚlYOÚ6&m§½ mgú‘¶oH»5ÉÉD9ÙUM:ìyI:ÜÒ%1Òq;HNõYDN%§žùMN³øFNË¯#wÎ©^¤ÙKN€I×³ÛÉWÊI·­‹Hwÿc¤{Séþ½“œ#i&çLyDÎ)NÎ­aÉy²ä<íä‚g†¤ç4Ò³ê¹ðd¹°Ä…\\dëD.*\'½¢<H¯ä³¤×¡¤×ûç¤×ç}äbß¿¤·×ÒgäZÒW“NúÊ!}°¤ïÇcäÒµÉ¥	{È¥?-ÈeeKI?Äƒ\\fN.Ð@®ÑC®¸N®hM\'ý]êÉ€‹É•OƒÈÀ¶…äª:rÕï¯äª¿ÃÈ`Ï?äj#sr\rÓB†Œ\r C\"2äÈw2¬Êœ‡¶’á§‹É§2\"4Œ(|L®Ý/%×>ô&×•©Èu³Èõ›GLf’>O##GF‘n¶dd/FFÑSÉ(ÏKäÆuëÈ1ÏÉhÅ2:y4¹	­#7ÚJnòÞOn*~FnºlDÆ¬LÆ´-\'7;DnNYOÆ™Ý\"Öm$J«ÈÄ±dâÇŸäŽ5óÉ¤_dR¿7¹3$“ÕÎdòždr×¶Nr7ñÜí#&÷É³Éý÷BÈ›dêõÍä-òÀÎ•dÚ=rð›™9ÿ)™¥ß@f™U“Y•ÙdV+™½n\'™Sµ…<²RF…’Èc/=É\\„Ì\r¸Kæ^}Hæþ»Eßõ‡Ìk:OæË´ÈN\nòd+Y°$RkÈÂï#ÉÓ¼-yúD\ZY¤¨ ‹†~&Ï<!‹-F’ç`#òœµynZ\"y®YªåC^ðM!/„m\'Ë&\'Ë¶=\'ËúlÈò‘ÇÉr¯J²<|-Y~ë=y1MNV¬¦ÉKZ:ä¥©/ÉJ·Gd•=yµ`yµûY=í5YâIVço!¯Ó:äõ\"%yýÚX²f¦+YSêJÖºe’7N7ÃkÉ[„š¼ÓMÖé<$ïÍ{K>pJ\'\\t ŠÅäCcòáòaiùðëU²Á{1Ù8MŸlÊ-&›n‘Mí×ÉÇ.ÅäãKÈÇo{È\'kÞ“O=¼ÉfY*ÙlžO6OÍ ›Wo!›“zÈg†³ÈgþŸÉg_EdËŸ·äóR;òùóäóß6d«‡5Ùê÷”|S½…|ó=—|;¨ƒ|öœ|[’ïný!Û¯\'Û¯ÆïóµÈìkòÃ5=òãÌ²Ã²Žü”0œü”QD~6?D~îÚN~9ú€üRJ~[‚ßòæ’]ÈF²»xÙ]æMv?u&{râÉ^Âü…hÈ_êJòW=@þ¾ÙDþbÈ?-É¿V{È¾É¿É~å²ÿò(²¿ê’Âˆ€Ú=\"pÉUÜR.‚¿d‹m\"TvPDL²‘>\"²ÿ–Hlc.Ïz+{­‰k(‘|ý8‘¼ÇQ¤X½F¤xKŠhŸ\"fZ…ˆõu±¯oD‰øˆ‹\"õ´ñ\"ÍÂf‘Îî×¢!;4¢!BDºÊH‘Þ_\"½gÅ\"½·Ž¢aŸ\rEÃG&ˆF:o;œŸ™/2~á/\ZÝ÷A4vm”hÜ°Ñ¢qwAÑxH\"\Z?\\#²6ø!²<Ed\',ÙÎMÖÜM.s9¢‰\"GŸ¹\"Ç–]¢©óÑ´3¯EÎ‹D.ØÑôª¢ùËD3ÞD‹fžˆÍ.¼#ro=&š“›,š;shÞ Ÿ¢yCÏˆær¢ygîŠ<NOytõ‹Z-Š(ZT†‹¼Šgh‰¼oF‹|2)‘O•¿È§m»Èçc—h™â»Èo¦©ÈÏëÈï„½hÅ\\sÑŠ¸?\"‹¢€7E+ÝlD+?÷‰cƒEAC/‹ÖTô‹Â¾6‹Âo.…w­­ÿ\'Z{ÅV´ö‰½hCPžhCÊÑ†*R´ñÌ^Ñ¦nGQL‰B´9ø˜hëÁ¢xì‰(¾ÌB”xÿ±(	>+ÚéyR´³¢H´¿ðhÿÓõ¢ýß4¢”‘ßD)!Ù¢”®±¢Wæ‰ÒÊÇ‹Òú–‹Òsgˆ>>/Ê0_+ÊÈÛ-Êxë&:4¯Ht(cŸ(ûBµ(»)T”#d‰ŽHmDGM\rEG“:DGó>‹r“ÿÓn!:¾æ‚(ïÞQþ;Ñ‰(mQ¡h±¨pòZQÑ²¢¢ÌzQQùPÑñÑÙà	¢³kÒDÅõŸD¥Ã÷ŠJFˆJfˆÎ‹Dç¥ûD*kEe«V‹Ê‚Då‡µEågBDþ3E—äDWfžU&é‹®nµU«­D×®ý]ûüPtÝn¨F–#ª©ž,ªýÆ‰n~±Ý28.º¼Ý‰4ÕY´ˆî…¢ûç²EõäQý§vQC”RôhþOQ£è®¨)ØXÔT0Aô8K*z¢q5+5\'E/bíE/®^µNX.jm¸,zy^½z—,j›é)z3h¼èMôÑ[ù\nÑ;Å4QÇ–Á¢ŽDÔŒ‹>/[(ú¼â©èóÚBÑ—DÑ×ä‘¢¯gôEßÿë½ï¾ïE]ßòDÝ7xÑ¿µ¢¿(ú»ó²èoÆ}Qß&¹èßƒ6Ñ¿®·bÀJ,F&U‰QÇ1šê(&òûÄä‡]bQ›¯X¢%KÆîË¶ù‰eÙ‘b¹l‡Xžó],¯8-¦µ2ÄôøX1íü\\¬?ˆ™=Å¼ÿ\"±ºd¥XëÕFñà±ùâÁ¯VˆõÜG‰õÚÒÄJT<tâ5ñPÏ	bC¡C<|¹£xDõ\\ñÈÉÇÄ#{x±Qõ\r±ñc±YÞV±Y‰ØjŠ£Øª³C<áôNñ„ÒUbkÀPlí½Tlâ$¶üX<Ñ/WlŸ÷J<Å@ç?ÅSÞ;ˆ§z±b§6b§ÄÓÍOû˜.žö÷¨ØeõlñtÝfñô`ØµËP<kUxÖ³/b·=b·Œµb·Ì$±ûžíâ9þâ¹]kÅóŸT‰=ïbÏâÅÛ—Šïš-^ü¾P¼øÛK±÷FkñÒE“ÅK;Ö‰—‹¦ŠWÌm¯ø¾Aì_)ÜÄ•§Å+~‹WIÓÅ«j’ÄÁ¥´8¸‡tDˆCg¤‹Ã4Žâ°Î­âˆöâµfqäu‘xãÕÛâM…vâM¯·‹c€qŒ®x³Ö\\ñæ¾Ûâ-•ÛÅqjSq<tCœà$ˆ|ëÅ	ûôÄÛß\ZŠ“ˆwz4‰“K«Å{!ñÞ–.ñÞŸ×Å©Q¯ÄjÅi›÷‰Ó’ãÅkO‹>JgŒgiâ¬ËíâœÖŸâ#ë§ˆw_çé>ç]\\,>’(.­üÝ*>e(.{G\\Ø¡Ÿ9ŽŠÏnr—nÄ¥oÖ‰ËÆ’âò¢§â‹CŠ/º}W*WÄ‰/{ˆ/o._ÙÑ#¾R˜+®Ú” ®Š;!¾šm-®·H|ýÆqq­«…øVÂñí[CÄ·ÛôÅwŽnß9»U|wˆ“¸Žú(~°¶Pü™%~¸cŒ¸þâhqƒ%\'nðw7ÄM7|Î7\n£Å[ÄMî:â\'Ôñ“ì`qóþâ–Ò[âç73Å/ö›Š_4:Š_ô¾·êí·î£Å­Öâ6ËGâ¶-®â×Æ‡Å¯ëäâ7 •øM÷ñ;‘½¸½·ø½iµø½óxñÇ+ÄŸx‘ø“û)ñçkÅŸ¿“â¯ý£ÅßdÁâoË‹¿[]w½VŠ{–ˆ{>6‰l©ÿÅ?:Å¿¦Xˆû&ÓâþAKÄýÆ×Åý»Å«\Z$ÀÝr	˜.‹ÇKàï%xóc	±¥XB> !Z7HHi„ÜûX\"\"~HDå$¢[Ó%bm=‰Œ’(§]•0A\n	{¡O¢rš(QŸs—®áä ‰¦÷™dÐ\"™dÐ2dÐ†\'¨F‰ÎÆÝx[‰nÉ6‰^¤§Dè ‰Á‰’¡‹]%C?—Ë[\"1<m.No“Œô•ŒüsIbœ{Eb²ò‹ÄäƒX2êŒ£dTçQÉhûÉèd±dÌõ‰ù¶%‹ë=’±Á’±»Í$ãG;I&´‡JlÀ^‰M„Äæñl‰]À3‰}¬—dŠ¡Äá€½ÄqÇ\'ÉT#B2ÕÚLâ4<Nât÷¬Ä©a–dZ ÄYëªÄ¹ì»ÄÅõ½dF,™ñï’dfÜnÉ¬k	·I.’¹çwKæ`$óúd’ë½$~C“ýJ‰GU­dá?Éb“g’ÅÙó$‹KgH¼_6K–ÈI–èDI–Ì<#Y²<X²$Ô[â£Þ+ñ‰Z%YÆÍøï!ño«‘LÏ‘ô8IV“¬\\ÿJ¨n•žÿ\'Yg+	z\Z(	zM²fe‚dÍë½’5?%!îç%aÆÖ’°’$IØÅ{’°G%á²IÄƒ\nÉZç,Éº	’h|ƒd“\0I6õ“ÄÜx\"‰umlåÞJ¶^m–lû+Iòž&ÙiGHvúÛK’OèHöx{Hö¬Ú\"Ù;û¦doê	ÉÞ×%ûæ¸JöÇ™HR}ÞHL–¤ÕÍ¤ÿ}-ÉPÄK2I²¦r’l™½$»·Q’“òPrtœXrtÙbÉÑôLÉÑWI’\\ûe’Ü½’¼Å€$ïõiÉ	}7É‰­í’‚¨S’SóHNeÞœ:üLræÔ!ÉÙ™³$ç>ëIÎõ‹%¥n»$¥>*IéÉùU¹’ó¡%e+Ã$e]†’\n–Tž—\\ú¼_RéòHrmÃÉõ^’[õo%wxSÉÝë%uò­’:Ã5’º]’{›s%÷v~’Üÿ¾XòÀw¤äQñ9IÓõ%’§vÑ’æºÛ’g¼%Ï#s%Ï¯·H^¾ yáòKòbÍIÉ‹ØÉË£¥’—§â%¯®\r•´Ý³´=ì”¼Þé,y§IÞï³”|0è“|„^J>Å¬“|öWK>7œ“|þ |Ùë&ùò3HòmÏHÉ·ôc’ïæ›$ßoŒ–tk›Jz¼T’ž;¦’3K%?‹GI~<(ùÝm+éû›*xzI\nÙ­BSl¤0u]ŠøšI	i¼T$K—ŠO$KeC»¤²á®RÅÊERÆ/IÊ^”ò\\ª”;-Õš(ÕZuKªmûX:\"w¨tDï?éÈ©“¥#ÝÃ¤FÛÂ¥&`¨tôK:J’!5ë¡tÌ†*é˜Ýk¤f‹‚¤f‘{¥æ¶ï¥æÕÑR‹©/¤.W¤wJÇŽŒ–ŽýI:6ÍP:¶»UjÍ’Ú$Ÿ–Ú´ØImg®“Ú6<•ÚäHíâû¤vß‚¤“FäK\'…žÚš#V,œÇJ¦ˆ¤S-B¤S[ÇJfÜ—:e’NÔÒiÿéô\r…ÒÿîJg­:*uÓv”ºç¤³ŸŒ”ºGŒ’ÎqÛ)‡TJ88K=ýí¤ž)C¤-FH½¬Ì¥‹OóRïd¹Ô»¤Oêãè)õm,]v8Pê\'¬’úÜ)õ›Õ&õKû-õ«\Z®½•®0Ä¤þúÍÒUë6KƒüZ¤ÁÜ&i°î9iðÐ×Òà¸\"ið{‰4DV#\rÑ,\r·JCu—IC#>HÃ^n•†uœ”†ý®•F\Z}“F:àÒ¨S¥1û^I7»I·MÉ”ÆñÝÒ„ï¤;&H“–‘&WJw‰é.ýíÒ]‘ÎÒ]\"¤ûmçI÷?É”¦Ø–¦\\Œ—¦Ö”JÓWèK3‡Íöé“fÕŒ–fß´‘uù =zè¥ôøÁ§ÒwéI]\\zò×3iæ*=5í¡´èl­ôl}µ´¤ê­ôÜºÑÒòƒ·¤cii\'½Tä-­ÜþTZ“&½–î!½Ñ\'½Þ»Kz³÷ŽôÖƒÒÛf•Ò;K}¤uáqÒºæûÒ{p—ôÞ¥péýa¤N¨¤õfþÒG+\"¤5QÒÆºÕÒ¦	ùÒ\'sNJŸôß”>½²Qú´ö©ôiý%ióå‘Òç–‘ÒçofH_zºIÛŽ¸J_[“¾ž%}kHßvµKß­Ì—¾’~œ íØ½MÚy%Búi»ZúY·Kú¹6Xúua”ôëÁ?ÒïT©ô{ìni×è_Ò®\"éeC¥½i¥Fß•þÉ/ý›*í!íûýGÚí”öG®•»¯ÈÀ¢/2èJ…~<H†ú¼•¡ûeØ3s~AK&úIÉÄà™D\\.“ŒçeÒ€-2¹i«L~P¦øR/£Ï¥Ê˜rLÆbd¬K¦Œu?.cÿÛ—3dÜOöÉøq™2µvL½÷„L;v°lPÞt™ÎÍ8Ù`tlpc½L7ñ³Lßj¯ÌÀlŽlh°Ì0ÚD6¢ò“ÌèV¯ÌxûM™	rG6ê¿5£Ç>‘öú$35ÉÌ>’™=L‘Yï•=á#[â,wÉZf‰¡²	JG™­ùp™­ß|™}ùhÙä|©lJ÷\'™c²H6m°lºI¦Ìu¿¿læ©e²™­d³*@™[ôBÙ<¨D6y,›—â$›?>L6¿\'EæñFæ9¨XæéýZ¶0èžÌ{ñv™wò6™Ïb‰Ì÷H˜Ì÷\Z óÃ¿Éü¾É–o›+ó÷m‘ù—_–…Ôî“…<Åd¡\rÍ²ð¬í²ðógdáõdkÅ:²uK²dd‘¶?e3e;É¢É¢OúÊ6Õ.’Å¬ß/Û²u…,¶0YÛî(ÛvÍ]g,‹\'ãe	#»e	Ë¶{xËõÞÈwN‘íø³D–T¾K–ð]–¼ÇR¶gîzÙÞa¿d{­\neû}ÏÉöß)‘¥’¥š.;°½Bvðœ ;Xá\";X7D–Ñ;L–ñ\'YvÈ=U–Åò²#9•²cV~²c{]e¹þ²ãÛ>Ëòç¨e÷Ãe§ææÊ\n§<–öÜ•ž&;cœ(+®é“ß\\ ;7ì„ìü„ÙgmÙ…ø0Yù°²ò	–²K—þs£Wv©.PvÅ“”U«þÉ®…ÈjþêÈn˜•ÕzËdwî\'Éê‚žÈêÎZÉêªâe÷„ÈîÛËîÏ”=lœ {<§]öDy[Ö,þ)k¶t—=KY\"k!\\e-ò]²ç¥Ke­Ü!ÙKî•ì¥±›ìe -{óYöÊ<BÖöx¶ìõSZö&ÚQÖ¾ã©ìCg¡¬Cv]öIY.ûlž%ûòV.ûÒÓ.ûv{ìÇÜ%²åkd½Ÿrd½}5²?E¦²¿¢û²ºoeÿ¶—Éþ]2–õ7|“\rÊ‰Fò¨nŸ-GúFÉQï09N¿ãËp9~¢RNìû,\'~-’‹nŒ”‹ÇEÈÅÆÈ%¤¯\\jËÈeîÛå²öyrqGNXÈ•«ålÂ69{\\-çI7¹`\"×>¯’k×WÊ5úÉuš¹Nïxùàç9rÝ{§äúë¹A­£Ü°è­|ÄÍ-ò‘ä#o}–M©–sóå&¯¿ÈGédÈM—·ÊM·5ÊMK¶ÊÍjäf?7ÉÍ\'Qò±À¹e,·J®•[•gÊ\'x—[w¹ËmžÛý,”OùÈˆrÇ1˜Üñ/*w:yLîôq@>mßEù´ëåÓ*óåÓ¡rWí?ò¢9r÷õkäsÇäsNFÈçôî—Ï{§–/°\Z*_tYî±òƒÜã[™Ü£\'Hî¹b°Ü³¤H¾(E_¾(s§ÜË¾@îu×Z¾—{¥äK>‘/Û5Zx©A|¡B|­|õ]N¾&}¢<äé7y˜Ö9y˜Ý#y¸»§<\"ì–|ýˆy¤n¨|£LG¾Q1J¾qà´<:I_ ß4wª|ëätùÖ?”|ÛX¾­~›<nêyyÂàvùÇHyr§§|×‚ƒò]ÿ¼ä»7¤É÷„›Ê÷4˜É÷uëÉSÞ¥ÊS%Õòƒ‹¶ÈÅºË³¬Ë³o“gï~(Ï>÷[žóï‘<×ÃHž›0C~<€’ç›ùÈOÂå¦GäßMäE›cäE/”ò³+Kåg¿Œ”¤É‹\rSå%­åòÎÓäez¬¼\"/G~i¨‹üò¤xyeëyµÛiyuÖbùµ±Æò\Z£&ùÍ†JùÍ·ò[™\nùíš6ùý§Cäš|äß–×]—?úa*onÊ›’CåM5ògfñògï_Ê[YùËe×åmÛÞÊßþ-·W×ÈÛ»Xùû;ÁòC3ä÷UòÎ-iòOZ¹òOËäŸÞêÈ?}ªY>Xþõ4#ÿö4ZþÝçµüû\0 ïÊÐ—÷z£òÞ§ä?ïýÿªø*ÿ{¡OÞWÕ.ï×.¨=AeÙ”J!ø\\\n‘÷PøP\n_Dá›/Päh=Š|ô‚\"ßÖQ¢÷)ñ¬Å”8`<%Ñó¦$¿!J¦XJÉl£)Ùµ­”ìó9Jn6@ÉÏ\r¥(AQïÊ)ÅêHŠŽÜGÑQý”òîSŠ‘®¥Ó§»‘ ØC»(.éÅµ†P¼¨…Rï\\K©û#(MÈbJËš ´šÃ(±7¥£¹MéXÆRCì¾PCŽ\\¤†<¼NéÎ¸Bé}ÙIé3‹)}­`Ê\0~Fõ£ÚSCÛQÃÀRjXÒ=jØ/kÊ0{65ü¼5¢b5âQ 5’\ZG|]CMúMÍà(ãK[(?5e’s–\Zeúž\ZÕZK~æF1\n Ìò%”ÙµTÊ|îyÊb=H=}“\Zg¸‰\Z·b+5nS?5n×>Êj\reuv5á~e³Ì–²‰¢lî”í³ÔÄ‡Ÿ¨‰õ(;ó¹”]X85©óeïö—š2û5eLM	þC9¬YH9äl£zÖSŽ©©©ñÁ”“åÊ©¬‚r¾•E¹ø–Q.‡’)—ãß)—†§Ôt£óÔôEæÔôðÔôW_)×É<åêaCÍx~‘š¹Ÿ¦f-:H¹	{)7¯&Êm§åûžr?6Žro7¡æ9@Í_KÍ÷«¢æ¦DõP¢RÊCœKyþ-¤Ú]¡¼ÖçR^Ÿ\")Ÿ÷)_p7å»—£–n»F-+¾EùÉfP~ñw©åZ?((Š\n 9*àÃnjåüñTàÐb*pÃ<jÕÃ\ZjõšrjuR\rj<›\nË;K…§™Páã©µîµŽO­ÿöÚp¾ŒÚð£›Š,ÝKE^ZLmÜ2œŠvN¥¢£QÑ·¨MŸþP›>o¢6wÛR›ûNR[&Ž ¶¸(©-þs¨8¿X*ÞtµÝc9•˜XDíàë¨ZATÒ¦[T²™#•œ÷Úåð‰ÚuÊžÚuë&µÛ¥…Úý=‚Úû{\"µ¿@DØ¸Œ:pÔ—JŸ™K¥Ï’Pé¯S\rÆS—¥Q#â¨ƒYÔÁ?MT‘Ee8Î£0¦=L:#¢²¾6PÙzaT¶~•ó\\JÙoN¹0ˆ:za•k±„:1$:q7˜:ñ;Ÿ:¹Ç*øz‘:ö‰:õc!Ux«˜:í6‹:sâ+uæ·@yR%ÃÚ¨’ÄeT)µ‚*~:¿åUvzU®ô¤ÊèQó?QðFªbësêr­	uyàUµ=Ÿºj1„ºÆÔu¯NªFg:U³fU»$ŽºeQ·ÞjQ·¨;NvÔ]Õ^êÞ?êÞRê£.õ`ö\rê!ÈSõèÇ ªÑ²Šjü`E5þœG5U$RçSÓ”Ô“êÉÝÔSG\rõLÏ—z–^Hµ¤‰©ç›HêùnõBkõÂtõÂÕžjój¦Úâ/Q¯ÕÇ¨7ƒÃ¨7—qêŽõ.v	õÞò.õ¾¢œê8ÔJu\"AÔ§A~ÔçN?êKdõ5&”úú®˜ú†É©oK©ïùo¨.³OTWàfª«§‚êÚMõo¡~NùAýr- ~Ï·¢þàºÔßè§Ôß_ÆTŸrÕ7*‹ê»ð…êÿºNôR€­ÐÎ•\n¨h°–®RÀß*YKØ(^:[AäÝRÈ‚\nYï?…Ü¨MAÝ²S(êÖ+èµwJ×9\ne¾BYÙ `4M\n¦|¼‚ýòGÁ)ó<uCÁGØ+ø‹£ª²A\nuû9…0\"\\¡=¦Dº(í\\§Ð14TèxVè¾§Ðcúz—ä\nýA†-Å\nÃÎoŠáó—*FÌ^£±«B1âŸ›bäïá\n£ÁM\nãÒ\nãkk&T¾ÂdpÂ$xŒÂd‡ŸÂÔ)J1†V+Æ,WŒ	ñPŒy>MaFlW˜yW˜­y¡0»ž­°Ð8(,VD+Æ¾?­7ÆX1ÎáœbÜò¿\nË¹Î\nËÐŠñ‘Š	7:^+lMÔ\nÛc/vZ“ uŠIç.*&}^¬°7þ¤˜rèºÂá9¯˜\Z®R8ñ{Ó²ç(¦ÝNR8«P…ëŠq\n×è8ÅŒîlÅLÛ^ÅÌÄÅ¬i!\n7SFáöežÂm F1[ÿ»b¶y®bvHžÂýçDÅ<»ŠyåŠùì\"…\Z®ð¸,(<ù …§©X¸:R±pË0Å¢1c‹Ž†(¼$s‹“[Þ‹êK–ÞV,é¹¦ð­Ÿ¤X¦{_±Ìq—bYB¨ÂÏd˜byã|Å\nƒy\nP¢ð7ãþ9cþµËŽCuîŠ€nŠ•sŸ(\\Q¬’/T¬r~¤Ú÷MlúB|=W±¦m¹\"ä½TÚ)Âlá·7+Â»+Âûþ(\"þë…ˆq–Šˆ}†Šµ*Ö®;«Xû¯@±á÷*EÔñ¥ŠM¼›_ŠØ+ÉŠØê<EÂæmŠí»‰Ë+‰›6)+v0;–MPì¬«Hö?¯Ø•ˆ)v\'J{GSìuýªØ[ˆ*RWe+R7MV¤nÓQ¤7¸(Ò;}éßÆ(2|)2Ò6(2­œ™ŽÇ™±2Å¡Ÿ&ŠÃqƒ‡Å*?YfAŠ¬IwÙ?ãGvKG\nâÇRÃÇ…3Š<Ã%Š|›4E~ôÅÉÅÉ½\'»AEv¤âÔbNQ8b§âô˜ŠÓ¿íE[ÕŠb·¢Ø‡TeçW¤]ŠrýZEî¨¨¸’¤¸´Q\\Zí¬¸t¶Uqù}ŒâJ×IEeèE2_Qu´âê„ÿVýèQTÃ‰Šjñ;Eu‰—¢ºûâzÉ\nÅÍÑžŠ›ã‡(n¿¦¸…\\TÜjwUÜNx¬¸ýý¥âî¼*ÅÝ]KuÆmŠ:oµâÞÌxÅý ©¢Þp³¢qˆ•¢qäEc¥hÒ¬hj-R<¶z®x‚*ž°õŠ§ç*Íæ‘Šf§pEsï~Å³¼EKùÅs—ãŠÖÛmŸ6(^/tR¼®Õ(Þ«x´Rñþé~EGL»¢sJ»âS £âS_¡âËÅ—»]	ñŠîêEï~ÅO{•â—ëÅ¯…ºŠ_‘y_Å_a¾âï\"Õî*úÌ!\Z˜VFÿ\ZiÐè\rÍ¦áCu4rI ‘ƒ4º¥—Æ\ZŸÑXÇ\\\Z_/£ñ¨J\Z¿PA“gúh‘^-ŽVÑâÚ=´Ä„ %û/Ó’ÛiYIMOghúã,šÑ²¥™ã›iæoÍ:\04[“Gsw_Ó*µ/­òSÑª·ÿhuH6­Îq§…ui!>®¥…Z†ÖØÕÑšË¾´–I5­}ý<=èu1­SCÑ:¿çÐƒmjéÁa¥ô[Öu«¤õ†œ£\rZëè¡ƒuè¡A0=4¤G>t£¶¾£ö©i£œFz”m\Z]H›\\¤Ç8ÇÒcº÷ÐfÆ‹h³P/Ú…h‹¢\0ÚÒø0m¹0•¶Ò¾H[íÒ§­š:é	E=áÁTÚÆum«½’¶µ5¢mÃ2iÛ_½´ý(m_MÐS*GÐS±ôTj=uýzêÙ“ôÔÖy´S‘=Í¹˜žØ@»Œ¼D»LF»ì© ]îjÑ.ßkééoÏÓ®ÜXÚõPíú/ŠžaÞJÏÜ§EÏ¶8HÏ~Ù@»ëHh÷¡ïh÷—h÷×=\'@ž³n=çäIzÁZ˜öð™E/¾½Œö®O/™ô—ö	Ê§}n¦—Í¼Aû¹O¢—×<¢—?¦éLÌ~Ó+\nãé\0·2:0HC¯ú\"¥ƒþyÑ«ã«è5«Eôš´Z:£éÑwéPG5ök-îj@‡‡EÑáçMèðŠ<zm\rA¯¨¡×]MoP¹Ðúºé¨­\rôÆýÛéè c:úÎ}zÓ{5£?„ŽYèGÇì¸Ho±H¢c­7Ó±³NÑ±Q–ôÖÓ†tÜÚñtÜ/3:nÀšŽ¯]O\'Ø-¤®‚ôöS:qR:8CC\'ù/–}§w,¯£“ò¿Ð;g×Ð;Í¡w¦ˆéäÐtrV!½KØGïò:Lï\nÖ¢w8Nï–TÒ)3ÇÐ)W³èÔ–têÊ\n:uGús*}àŸ#~MNÔ\ZDgN¡3ïåÒ‡¼sèC§éÃ^£éÃùatV¬ÍÝ¢³	úHÆ?úèi˜>æhIk_Iç&TÑyØq:ïÊúäütÁbwº è)]p.œ>ÕÃÓ§“nÓ§k¦ÑÅ®WéÈ‡.‘¢KšFÓçL;és=ô9ÏAt©];}>m8}áÛ*ºüs]á\rÐqéô¥múŠg1}åÌújœš®EÑÕ©»èk=³èZƒºÖy}KåMß2×¢oOˆ¤o_½LßE7ÐuQ=ô½­Öô½‹–ô½>¾O¤ÐõÒº~b,]x†®?5”nØ¾Œ~$Ê¥™ÕÑ\Z·Ò^“èÇŸÑOç=¡›7}¥›ïÎ [†™Ó-Þ™tËï|ºåï|úEÉ\0ÝzN—n½iD·>w¤_n~A¿lJ¿2´£Û`Oº\rÙC¿;”~íÏÒ¯ƒýé÷‰Iô‡ƒ“èÂsúãóññªýñY4ÝžAwl˜Kw´ÖÐ¾ÐËÓ…ÇèÎ‡&ô\'¿úSpýuu2ý5TB½GÿdLw-ú@w-í »\"fÑ]GÆÐÝ¿ÝéÞâÝôÏ=Ïè_¾Îôïåcè>‹|úŸe%ý/Øî‡ŽÓ»>*¡k%:dƒ[8B‰ítSâ`¢R”sE)ÊµPŠ?nRJ‰yJÙì{Jù(©Rþh’Þ*©™”ÔÎ‰J´BIÛLQÒ›£”LA’wOÉõ„*ù“S”*Á\\©\Z“ªTÍ^©TEŽS\nf Rx²G)¼ÖRj)(µGnQj÷?U~²Z9äÊ$¥®ç	¥ž×]¥Þ•óJ}ÓÊÂeåHÍKåÈ9uÊ‘¯‹•F/Ž)­Jc;{¥Éàå(ózåèã³”c´w+ÍÌ+Í¼•æ&?”cy¥rÜ”ñÊqá€ÒÊ7Z9þ{ŠÒšÁ”Ö6û•ÖÙ‹•6±o”¶ý5Ê‰ª•Ï…)\'<WÚ0J»ÿöµ{ì¤œ|¤A9sSN}Réð4Sé$+œW:•V:ý;£œvl±rZ™rº5®œ>uÒµ¨Léz~ŸÒõÃOåÃ™ÊÏß(g½2WºËWº7­QÎ	¤œ³3A9·‘rÞsZél¡\\¼gƒrñIåâ²³Jo¯J½\\¥Ï¶©J_Ÿ7J__c¥ïnC¥ï‘XåÒåÊe³”Ë¾¶+ýúæ(—Ã×•Ë‹F+—ßÈT®µD¹rpµ2HI*ƒÛ•«\'(Wo^¯\\}Ï_¹FºF’ä¬ùî£U_Q†VÊµ	2å:Q®sØ­\\7ÓI¹áí^e”ì‡rSÀwå¦U•›úß(cÄ)Ê˜ë­Ê-š<å–ß¯”±fW”[§}Qn{F*ã>)ã¥Êø‘w•ñsŸ+ã#b•	ÒmÊ[@¹;§Ü¾‚WnOß¢L|3I™ÄÇ(“\'­PîjîRî¦?+wJUîKKU¦²Ê”œ…Ê4ÑseZùeúece—­Ì˜h©ÌØl¨<4ÆQyh}ŠòPëBåá CÊÃQzÊ;eÎâÃÊ#V±Ê£’1Ê£ö6Ê£eW”Ç°Jeî\"oeî[©2/(S™ŸZ£Ì¿„(OŒÙ¤,Pö)œ•§&´+OÍÇ•§Ž7+÷¬Wžù1HyV¬<«=DyÖh¡ò¬Ã/eñÇHe‰z®²df«²Ä§ZYt]YÌ*Ï½§<wy©²´ÛLy=¥,#Ÿ*Ë¬o(/^Æ”o~SVXè*+Æ>Q^ÒÛ«¼üc•òJô}å•ø_Ê+/.*¯tÝRVY¶+«âì•UÙ¯”U]”Õ§ieuÛåµ‚ÊO£”µî¤ò–ƒ§òÖ®å­7”·ÇqÊÛÃ”·³TÊÛ\'Ì”w$mÊ;¹¤òÎ›­Ê»Ë—*ëlb”÷Vÿçi™ò¡ž²ñërecßiåS@ÙÜôDùì˜‹²el›òEÞMåËƒ”¯Ž+”¯Î)_½ý®l3¦|=\'Lùº\'Wùöä!å»ªBe{h­òýš^e‡ºRÙ1šSvÒû•ÅÕÊ¯•Ç”ßþìW~?>OÙ5E¥ìú®PvC®ÊîÛÑÊž¨²wò€²÷e‚ògÔ`å/ßËÊß3(ß—*ÿìUþKÊg\0¬‹fÏa•¯¤MÁ`Û¯3Ò¥µŒ4\'‘¹ÃÈ7Ù2qƒQ0ÉŒâX:£4¹øßð¥0J—iŒòã†Ý3ša;ãÞ©ŒQÑùŒj÷HFØ–ÉhÂãÍƒßŒ–ÇdF[]Çhû{3ÚÏ¾2ƒœ3:£›%/™Ág62Cœ\'1ºFžŒ®Ù4FoÇ;F¯2šÑ{0ú	ÚŒ~Õ)ÆÀ¥ž–º’1t\\ÅþþËŒ¸òñúc´ô<c\\ò˜1™r1I¸ÉŒZßÂŒ^óŽ\ZÁ˜Æ|gÆÄîdÆÜËX$ìa,Ç¼d¬.`Æ{É˜ñË{™ñy•Œu@c³/œ±“Ÿd&ùÚ3“B´˜Iì˜I™·û0Æþp,3¹5š™i1iæÌÔËÙŒÓª\0Æ©êãÔô“qzü™e¦•}eœÓ­ç2GÆå…;ãš;‚™¹n3Ëø:3;ö3ïx!³`ötfÁ²fAæbÆcó(Æ3jãùKÂx[Ìøè1>W2_c	ãkoÍ,ÝªÏ,m\r`–þýÃ,[ÙÆ,»÷YÖìÊ¤²L@])³r{³J4ŒYÕîÃ)Lð\\&8¶‡	Î?Ë¿úÎ„L™Ï„Õ3!±ÞLHú.&ä.ÒbÉ„ù1aVQLXë&¬-‡	7»ÏD|_Ï¬{ØÄ¬kñcÖ}[Ã¬7¸ÃDd\"C\"™¨Õ‡™¨ŸW™C²™™UÛ™­ºLô‘*fcÏÄD11g™Ø½ÌÖ…9ÌÖ÷õÌ¶!µLœ£w0˜IHºÉ$d•3	çõ™íïL˜ÄáLâ+]&±»IŠ‡™Í/™]Ië˜Ýc†3{”Ë˜=ïv3ûÙ3)h5“²ã“ÖðI®2é¡£™ƒN2A9LfóX&Kû“5\rg²noc²#F09ˆ“cRÉY=‚9rm	sÔæ\rsôo“KœerãÛ˜Ü›ræ¸î&ïð\'&¯R`ò^Ocò=_0\'¶OdN2µÌÉ´³ÌÉœLAÊsæ”Þæô¿¡L‘Ñ¦ÈJÂmå˜3¦8sf‰#S¼O`Š/¦0Å¿2Å¦3çB&3ç_ý`.Ðû™/ü™ò}QLyçbæâ¹L¶™©ø&b.Mˆg.­®a®¤Ía®\\žÎT.Ì`*ËåLÕþ­ÌÕå4su‡/S½ú\0Sýzsµc®­<Ë\\»?œ¹žÐÏ\\¿˜ÏÔL:ÁÔìzÌÜ ú˜L\"sƒÝÁÜëcnºïdnVG37_52·\"§2·¿ìeîÌ=ÃÔe»0÷†,eî}ÅÜOûËÜÿy˜yÖÁ<|-gêõ/0õ‘Lý»³LÃ’iü9iÂ’™¦_û˜ÇCâ™\'Õ3™§\'Š™æ£Ì³ÛO™g¿¾0-†Ìóµ•Ì‹‹+™—K—3/Sº˜6¡…y}?‹y«<Â¼ýrŒy§qaÚÛÍ˜÷sL˜÷\r¹Ì‡¥·™‡2™çM™\\˜Ž½û™Žg™ŽwFLç|óyÇ\0ó%A—ùrÈù’K1_Sqæk)Î|c1ß·c¾¿ÈgºÌ®0]•¦ûÊôì¥™žÓÓócóýç.ó«ð<ó»ñ ó7©šù{ß™ùÖÆükF™ÅCf ¢›hñbÁ»2ò9ÉB90]>ËB¿ÃX¸ê(ÿ~Ç\"¿–°¨ãh‹9ÁbOo³¸{<K ½,ë³Ä2/V4î+9 g¥~ÇXù/9KéG²Š†×¬âï2–6îfi“,½~«´R³Ê\rËXå‘4–9|…e¾¯b¹mY•I#«š=ŽU\rØ°j£PVýq+HpVKÅjÙ÷°ƒŒX¡8«“|’Õé4a{¦²ƒ?g±CÜeìúZVWs•Õ5ñcusQV·à«7ÌœÕ·S±ú®z¬AÌXÖ ¸š5èxÅ\ZZße‡ºìp¥;œ‹c‡_ÅŽ O±#,ÝÙìˆ»æìH³«ìÈ´Åì¨aÙQ7²cÚ\'³fºå¬YGk>\"€5-°æ6Ys‡}¬eÍŽ5yÁŽ5£ØqÙq//°V#CØñÓ¤¬µÅÖÚk=k}y%k£çÀÚ˜f±6yZìDÏÖŽÃNZ±“¶Þe\'5d\'õ}díéuì”á(ëà½Ÿu‚Ö³No&³ÎÕ_XçsX—Ðìôó~ìD`ÝN=aÝÎ4³³Ý`ç¬ŸÅÎiÆÙy+Æ²\nBXì¢c·X/óÅ¬×Rž]ìàÅ.öÊ`½§ç³Þ\'×³K†áì’ÿj¿ä›ÀújOe}GT²¾sKØel1»ì»7ëwCÍ®´øÎ®œgÄ%¦²ÁÓ­ÙÕÛ\rØÕçzÙÕõ%ì\Z°–]“¤bC´kØ\rÛÆ†¾Î†i=aÃFú³a£«Øp“R6B±kÛ¿°ë¾G±‘²f6²BÃn´Ïa£mýÙhO6:d;“šÅnn©c·xx±[Û¾²qÈ6îÀs6.o-› µˆMÒMg“.`“šlÙØ-vgúR6yR»Ë{2»ëÂvÏšCìþíiìþêkìþÚB6uÁ^6u×&ö@ë$6mÃy6ír*›qQÃfüÚÁfBßÙìöClÎÌílN†9›ÓëËqƒ=:a9{tîiöhJ>{ôM{li {lÅ;6×d){<þ›7^ÄžÐ°cF²^ÞlaÕhö´Y\Z{:`Ï\0/Ù³«²g¿j³ÅŽØâ?Ù’‚ZöÜ–Åì¹b[öÜ£Óìù•3ÙH[žÀ–ßd/gT²•ðr¶rÈy¶ªY`¯j¯d¯]èd¯ýöa¯O¹ÃÞG³7ÜöFH={óìjöæ€½£ÎÖ‰—±uVWÙûT{k{ÿT%ûÀà2ûÀÜ…}°öû0<Œ­ïia¹š±¢|ØGñÙGÍŸÙÇšŸìã·Áì“A9lsJÛ\\¹‚}6¯}¶Ðƒm¹SÌ¶<7dŸLbŸ/¸Ç¾Ü7†}yr<ûJ5}µË‚}mnÃ¾Þõ}óÉˆ}kïÎ¾›2mosfÛŠÙ÷·~²=0¶Ãr/Ûyá+û	˜Ï~ª˜Ì~Þ»€ýRZÃ~ÕhØ¯î9ì×$ö;|ˆýîü‚ý>a»ºÇ²Ýåyl¥6ÛãQÎþ˜šÉþÌŸÆþš]Àþ¶\ZÌþ‰`ÿÚ{²}6°kâþ“Îþ}ôýÛdÁöé²}Ñqlÿüj¶¿à,Û_ÛÍ(-Ø;û9ÀëlÍ¹$­ëæ ¦\\XÄ!Æw9d<À¡{í8ììsŽ2‚#¦špäÍ/œxµ)\')7ã¤ê©œôd\Z\'Óäq2çŽ–0œrP§üjÏ)ûpŒË3ŽÉ;Ï1Mg9VgÇ¾±â8óŽ÷ÝÊñq|]§Rpªº5œêa6§nÅ	Ç9¡e\Z§Y£à4—pN{g7(½ˆtï0§c×Ì\rîÊátcê9½3œþ”—œAóTÎàK7ôðnØ‘ÜðP?nx£7b˜=7Âd,7Ò$‰y©Y«ÍlXÁMåŒ»—q&Ñ¹QÁß¸Qm‰Üè]nôƒnô£·Üè×³8S°›3\r.äÆ4¯åÌ/áÆ¨¸qm½œå°Cœ¥ùBÎÒÑˆ³ÜÂYý9ÇO)äÆ§÷qZ-8ë¡œMÄ!Îæ`$gûä7±å.g·¥„›ôtgoQÊMÙÂMölã&_­åžâ¦žà¦–ösS+hÎÉ%‹sÚRÇMSdrÓÁœó,_ÎùñÎÅò87˜ÌÍxÉÍxtœ›õç7×`	7wÜDnî9[nÞn^ò1n¾Là,ºÃ-¨Vq¡ÉœGç.ÎS&å<á&*¹…ÿVs‹fqÞcnrK<â9Ÿ£ÍœÏ[Šóu9ßÝ0çûÐ›[\Z,pËnÙr~zÜòC¸å?,8.€óŸ8‰P\'r+>q«,¹À}¹ÀÏ2n•ù&.XtŽ‘àB&Çq¡›‹¹Ð´R.´±[ç-ãÖ£ç¹õ¹?¸È	O¸¨hn“wcáÁÅLÔãb~­à¶üšÈÅ¶¶q[·¿à¶þ«ãâ¢Ã¸ø¿û¸r,—ïÏ%Þ]Æ%Uã’uÆq»T¸=N™Üž;K¸½Órû’çsûþÝãö\'æö_ßÊ¥è{q)¹¥—¸4>…K«Ë¥Ó7¹ôØÅÜÁ§wÈNÉe‰C¸ì?<—37Œ;áÌí(çŽé+¹c=Üñª[\\õ…Ë»ÓÉåÏ^ËåÏå¸ü]ç¹û¶p\'ÎmàNÃ¼ZÁì¶ã\nº¸Â>[îôiWÔaÏvsgŽ¿áÎŽ ¹âY¹â¨Å\\‰[WR±ž;ç Ãë>Ê•‚‡¹Rè5Wê9Ž+Ýù€+½ëÌ•\r+áÊ¦[re¯så~·¹‹ó~pHWAçs—fusWor•[ª¹Ê¯k¸ªÄÜÕÁ¹«ÇÚ¸ë“¹š²Ü‡4W;6š»Y{„»“íÂÝUqwÍNquh&wOÍÝ3b¹{“¯r÷là´\nÜÃ‘½ÜÃ9g¸‡QW_ð”kx´‘{tº•k\\þžkxÁ=+_É=»\ZÃµ,àž3bîÅù2®µg?÷Òä\Z÷2á6×vÚ˜k»YÌµ¿å>À\'¸ciîãl×1]‡ë´íå:Ýp®ÓÝŸû¹Šû´u5÷™üÅ}Étç¾–Îã¾\'vp]–“¹®C×Õ¹—ëÖªãº+¹žg¿¸Þ7<÷ó€ˆû™‰p&¹q÷›rß8s}óçp}‰¯¸Ú„Ø°¯ãó!<èZÏCR–‡.Lå¡Gz<ÔQÄÃw	5äQ‰	öoç±§n<©ó˜\'GÝæIû\"^4¤‰m²àE{ôxÑÃ¿¼„Êæ%ëNñRï^šSÌK”óTFO•ò\nx4¯ˆLäûûxEIOïlà•syîÃmž·íçÕñ›yõág¼ðl=¯µk¯U\'â™ÏÊ_ÅëÖó:søÁ©?ùÁ7óù!G¶òÃNšó†S~ó†§µxÃ2~øÚ_ü—L~Äž ~ä…{¼ñr„7I+âM:ãøQFóùÑ±¶¼éáÞ4çoZ“Î›>ØÄ™¸„ŸÀ©®áÍ”¶¼ùSÞüÛpÞbzoákÌ[ìià-uŸð–WÎñVê8Þjl\"oõá	?þf??¾-ŸPnÏ[·oämjLyÛ ¼íšw¼í)Ÿ=›Ÿ¸%Ÿ·›ó†·ÏžÅOÏO™YÂO)ºË;ä×ðŽ§Òø©3ªù©½søiŽ)¼ó–HÞeì-ÞeœïñŠŸîÖÃ»š—ð3D‹ùy¥üŒ§Cù™cÖñ³ˆj~Ö~V/Â»¹ŽàÝ2êùÙóî»øy-nü|¯ÍüüÚKü‚ï×ø…÷£ø…Ïñ^[CùÅ\'Gó‹+\'óÞNü’éžü’wJÞÏ÷ ï?Ê„÷Ÿ¦Í”à~[ðÖ#øU—Ëø`¹¿:`¿æk8\"_Ï‡‡ð!ƒøo/ùPlzév½‚láÃÏLå#bõùˆg~üZì9¿î‡„_ÿ/©üÁGê¬ç##ÿñQ_\nùíþ‚ßT^Íojuà7uMæ7Gfó[vä·4ùð[æòÛ~á·Õüãã¨,>nøA>Î<ˆKäãÖæããƒøøòÍ|äÌo§+ùíãÓùD…+Ÿøþ6ŸÊïT%ó»BÓùÝ¦3ù=¶ü^ò ¿OåSÓÿð©-ù´‘î|ZAŸVý?äUÉgùóYeÇù¬ŸÑ|¶Ã>Ûí4Ÿ³v	ŸSp•Ï©ðçiSü1×wü±U:ü±2>—µâó.\'òù·«ùü\'wøü¿øz–ü‰Ûýü‰ïù‚*¾`›_pm_ð8œ/hÉåOmãO½œÂŸê_ÂÖGó§Ó.ñ§K~ðEu•|QgIãÏ5üÙü%üÙÎÿâ¯	üÙ»|qý;¾$2“/)ÃŸ{_Ê_ˆjä/4MäËL¦ñeG\0¾¬!›¯ˆÛÏ_Š‘ðWvßá¯ìµâ¯dŒà+ÙN¾zjmþþZGÝ…ç¯gò7¢bù[-eümé`þvsgxgÂß­åï\'Uò÷»óVÎæ.;Ï?,Ï×¯;Î×»Î7ÌØÂ7Ü~À7­œÏ?ÖÆø\'Ž\rüSù`þ©*“j9“o¶Há›†óÏ\\¿ó-³»øçUüóù=üû/ü‹éßøÖ9|kï:þ%ñ/•#ø—»3øW©ãø6~\"ßfË¿¦Ïñ¯UðoRñosÏòï!}þ}û;þcÿx¾=ÈwVÛðmü\'^Í–Çð_þ<å¿¶ËùoŒùoÿ|ø.ˆïöšÇwGËøÃøG_ñ½·_ò¿&zó¿<_ò¿UyüoãÑü_Ã¿üß¾ïÁMþßÝþß\'¾É÷kUðýÇòýÅóøÕy~àˆFèLV*p‘½\nÜ0DnvR»ÝUû_ìä§BïWa¿Î©ðÁWUøá»*¼ÜQEhÌTÄ{\\%Þ÷\\%É®’ä;«äøo•|”½Š\n¡TŠ–*Ú<LE{9©”£ä*¦dŠåzUì§—*ÎçºJ5¼P%0E*áh‚J“)RiN<Si¹OUi\'ViW—©´ïþRéˆ©t&ýlP\rÆ½TƒµN¨†L¿ ÒuŸ«ÒK5Sé½ø¢Ò|¯Ò¿`¢2»¢\ZñË_e4|°ÊØb³ÊdE™jTÊÕ¨ÌtÕ¨ÖÕh¹T5Ú‹VŽÒS™^ËWÑŽP™KRTæmTæÁ·Tæ‰Ýª±K.©ÆV$«Æ%IU–È•eS Êò÷|ÕøÕø¶•µÍ~ÕDD¬²§p•ý¥j²ßN¥©*‡ [•ÃÑ4•£­½Ê±¶Qåø}‹jª§ÊéºZåôà™ÊéÏÕ4ô°Êyì9•óøC*ç”•ó‘Y*C½ÿþö—©¦Ç…ª¦7¾WMèVÍX8_5søtÕÌQ†ªÙµ·TîÌj•{îL•{ÉB•{EžjŽqþêTsÊ|UsZUs~¹ªæ¦¾QÍ\\®šçw^5®½jÁ•÷*;*Ï#ŸUç¾R-\\ôQµ°æ´jQæ?•—ácÕâ\rçU‹ÓŽ©Ÿ½©ZüÞCå}!DµdÞr•Ï*_i¥Ê·ÃFµ,bjÙV=•ßÚµªå#ÒTþT•*€Tl<§Zyï®*ð”ƒ*°8^µª¹Y4d@¼ŠS­>w^µFë»*dÓ2UHB¦*TK®\nÛ¤\n¨Â\nTáÁUk;W©Ö«ãUÆ\'¨¢¼Ç«6\rØ«b¾óª-Íœ*¶àªjë/ÕÖª<UÂ©oªÄŠfÕŽ˜4Õ®¿ªÝÌ8Õ¾Ú¥ªýMcT©²ÝªKf«ÒÌ¨Ò\"«ÒµóUé«#TÃ{TOª,ÿûªlê±*;ÈW•³ó½êèåÑªcU^ª\\ÅUn*­Ê}xTu<¶FuËVt_¤*Xf§*(¹¦:õ_Ÿºõ«\nçìPVu©ÎÌUm°T›ú«Šëç©JNf«J*¯ªÎuS•å\0ªò’›ªò&µª¼{Žêbƒ›ªÂ`ªªbë0UÅßvÕ%+Pu)©JuY·[uÙ4CueÌÕ•=ªªê‰ª«>aª«‡ÒTÕþ_TÕªkCîª®M\\£ºž>ZuãÖYU­æ¦ªÖo›êæóÕíEª{Ï‡©?Q=Èúªªß§ªÏº«jX’©jðÇTMFIª¦ìŸªÇ‹tTOE{TÍ‰­ª–—=ª–®ªÖK“T­î«^†šª^f§©^ùfª^Å<Q½ÚûŸO\rª6×ª¶½ÏToÕ™ª·ó—¨Þ-|¥zÿÑUõÁé†êÃÁ`U‡¾½ªÃÝ[Õ9“TuîfUŸL©>ïY ú\\ò[õ¹á”êë¿qªo\r#TßžÏTu§šªº[8UOëLÕù‘ª‰±ª?†OUqÕŸËTSõÅ«æ~W3F©Ï_jÀû¼\Z8`§ŸªÁïfjÈñ½\ZÊITCÇŽ«W#ƒ§¨qG5qA©&^T©E&jq¶F-s|«–ùŒSËñ÷j¹ü¯šzW¢VÌ\'ÕŠò›jÅG•šöLU+õª™þ}j–ª9\'µj¤ƒZpØ«f5©…?µv\n§d»D=¨N_=èqzðæ,µ~ãjµAðBµáðõð%uêáA:êbCõˆá…êEïÕ#®îR4ÏU|rFmqLmtF¤6–NUè«MäßÕ&i\rj“WÕ£?ªMÓ–ªÇ˜P›7ŒS[èS…?¨Çéy«ÇîV{ûHm9a°z¼û<õ„)>jk&Em=[_m³ QmsûªÚöP™z¢÷õÄ£çÔv£¿þ§[m¥¶ËðPOÚõQ=ù@zJBˆzJ»§ÚA¾K=Õ˜UOµR=õø\nµÓÄyj§mMêicÚÕÎoÞ«]ÂãÕ3G¾SÏÜè¢ž™+UÏ>4\\í>ýŠÚ}Iz©ç¤ÏTÏQ¨ž;w±zîº³ê¹¶ê¹3ÕóžÓê¯6¨=_4©ú.T/²÷V/Ú+R/ºõ]íµÉTí•Yª^ìÚ§^|B­öv>«öÞ´E½$É^íó$CíËTª—RWÔKwÚ©ý2¥jÿ“Ú¿ã´:`x–z¥jª:P.V¯ÊìSëZ«ƒ9ªW7„¨W¿Ôk×«CÂ­Õ!y.êP­ÿèÜV‡çÕk\'ŸQ¯‹4T¯»Jª×G|Uopx ŽZ’¬ŽêÐVo\\j¦Þ4ó¬zÓ¼¡êMù\ZuìáBul‡:öÇ0õVƒõÖƒÿÔq­ê¸\'[ÕñÔIuü¼ê„åÙêí\Z™zûV^½ãÑIu’öõÎ…Uê—cÔÉCN©“ßQïþï™÷8¨÷xLVï-Uï;V¨N1•©S¿¨S÷žU§¾›®>b¤Nox¤>¨½UQ4R}hÇ|õ¡òvõá#+ÔY¡zêìU6êœAúê\\ƒêã=ËÕy!fê¼ÝÓÔ\'6»©O<;¦>ùû®º 2Y}êñKuáåhua‡µºðë*õéCÔ§ûÝÔg¢õY¿u±c±º$ÚS]ÒÝ§>¯ªÏ¿©/ølT—Å°êò–DõE¿`õÅ·ê\nýHõ%Õ9õ¥‹ÑêË³²Õ—_¾R_Ñ9£®,2S_­»­®~¨¯[[¨¯÷Ç«oLQßˆ[ª¾qã¶ºv£¾¹|¿úöÂ\nõcÕw÷W¨ï%g«ïÕ_Wß­£~`€¨rêŽ¶ê—F¨<Q?¼¯§®×tª$Yê†%¿ÕÖé¨¿£ê¦7^êÇHú±dªúq¬~¢wOýä§~Ê ê§Óç«›Ÿf©ŸßÕU¿¨P¿Ü½MýjoºX¯në0R¿†n«ß4j©ß¾÷V¿ËèT¿«º¦n_°FÝ~tˆúcˆúã› uÇ@„ºÓó†ú“~²úÓ½{ê/\'ª¿¬Ww9û¨»ÌW÷h‡©{Ò¶ª8mQÿtœ¡þ¹ÄWýkê^õ¯=SÔ¿Íªÿ,ÍPÿyûQý7WŒœ­x/QôçÀÄ2|ê  óF	èZBÀr;k#`××	8øCÀÇð#ã<oŠ€¿‘	$²L%åâFA²ÉGjŠÙô{‚lÖ\'A>£TP&8ÊÌÓ»e¸À–¼Øs\nAõÎ_Pß\"¨ÏŒ„¿\"Aóè¤ µ\"LÐžDÚáåÂ «RAÇ;EBÍ†ê†½†dŠ…!¹w½Iƒ½û…‚~Ñ-AÿÝZÁ d¸04æª0ìãGÁÐíˆ0<A_~£GÞ€\nF–³£Ðw‚qe¡0êÁrÁŒÛ-Xh¶c·¥\ncw¹cÛü…ñcê…ñþÁÂø3f‚õÖ‚¾‘0qûpaâþRaR´ž0©+^°|{GZ°ŸµY°o;*LÞß.8\0Ÿ…©áK\'Ñ\\Áù²H˜®;N˜¡¿S˜5ñ°àVýHp«	fWÇs¼R…yV~Â¼ÝÂ¼ËW„Ó<…\rº‚Ç¸\"Á“™.,ºóEð2_\'xu7KÈG‚ï¿éÂ²Ð$ÁŸ\\/øë¥	:…Àå3„ÀÂõBàéoÂª‡ˆ4£WºúSªÕ‚ñ_Bp£¯°zÒauéaÍ…z!DˆBáD!tÃh!4­A=ÿQÛV-DD‰…ˆl+!¢Önü&¬Mq6\\6\"åBT¿FØpTØ4á€#9&Ä	1÷Ò…ÍæÂæƒ…-ã…-2…­\"„m©“„¸aáBÜüÓB\\Þ8!®+CˆŸ8_ˆo/â{DBÂ~RHH¿*lŸ•-l	‰Yç…ûZ…$Ç—BÒl7agÈwaçßáÂî?ÿ„=ëW{\nû„é_!e!¤üÖR\r„T=!uÙ;á€ì’&oÒÙ	gþ|#dÌr2¢!cÏR!ã·‹©ï%d–Ë„C¡“„CëÓ„Ã+:…,ÛOBVJ‡M8	Ù1£„#1O„cs{…ÜQË…Ü5Œp|îXáø¦Z!O“÷Ÿ!øZ!ÍQ!?!QÈOsNoNÜb…SnW…B3sáŒÉáì¿QÂ¹qB©ù&¡ôÝráÂ“sB™AœPö¾D¸(	.î9\'\\¼9_¸l6K¨\\½O¨º’(\\U¯®þZ(T›˜	ÕŸ÷×ÙµÂõ³2¡fr¦pjnÌlnDX	µ£,„ÚîµÂ-þ°pëùráŽR$ÜYr\\¸“(ÜEdÂ]¡nØpáÞF\\¸wÚ]¸ÜW¸gpÿ›\\x¸ä¾P?¡U¨Ìês?õåžBã”Bcè\'¡±®Oh\Z¼Rx<ÆBxj7Dxºb¹ðtO“ð,ÛUhYøVhyn$<ßí*<¿ã+¼ÐÛ.´šæ	/Û\n¯8{á•S·ðêk¯Ð6c®Ðv-VhëÞ,¼ñoÞ-ÿ\"¼k ´‡B{•ð~Ù7áC¯ÐY)|Â>\nŸÌÃ„Ïö\Zá½@ø:ó·ðM/Gø6)BøæµJø–2Qøv-Hè\Zó@è¾’$ô¯zß0Bï×.ágòá×S‘ð×UGè»Y.ôýÝ!\\™¨F}Ó\0ÙQ\Z v§xóOš˜kÀí\rdØ¯˜jà\r¾Jƒž­× ï^hða\Züã\'\r9¨L#Ú¾Q#ñH#Mº®‘ovÑÈ¯5häOfkkó5´õ~\r]sH£TOÕ(Ó?k¸Ñ75\\3¦á>ÎÖð÷M4ü³_\ZÕZ-ª×@#üMÒhE«4:Úã4:/Ojt:?h?××èEFkôöN×èýiô5½•š¡NrÍ0JK3lÌ\"áç1šá¥+4FôÑê·\Zã£íšQSÍ(çQšQ×M5£~ÖŒÖ\Zª1µ²ÐŒ	Ÿ¡³~™Æ,èŽÆ<â½Æ|SŽÆ¢CK3ö@fœörÍ¸K±\Z«¤§\Z«Òyš	}C4ÖIï56\r5v¸›ÆNØ©±k\\«™2ô€fŠÛÍ”­ë4{-5SÃÚ4SóM4N·sæsu¯Æå/£™.²ÖLÔ\Z×ùK5®žš™Lf–ÄR3kÐg›§qQ®qÛtTãö|¬f¶íÍ\\ô‹fî¤§šùGAÍ‚ß—5ÏÓ4ï¼4žÏ‚4sfhû¡ñB²4^ƒ5šÅV;4‹£Í’Ù´Æy©ñMØ­ñÛ°S³¼|½fEtŒfE¼¿Æÿäÿ[•&@{Ÿ&Àiµ& §C³Òú„f¥ã}ÍÊ¥Ÿ5+³ÞhV~]¤Y5óˆfÕ¼RMP* 	îx¡Y­¿ú—y8oÇ‘­„Q÷ÎÜ¹sgî:wŸ»I¨¨”(J‘”B¨D‹­•6!R²f§RJö}§\r%T$KÈÒ‚h¡ü~|žó>Ï<sÞ÷œó=3ï!]7A8êPLð¼÷àå9N8‘u“à­EðQñ%øüŒRþ¯^üÛR§ß8N]@8óP—pæcáÌ¯=„€¼ B@ç,!`ö!ðm?áÜg=ÂùÛ\r„º½„zÎ„‹éi„KÜõ„KMÂå[.„«¿ŽBß×	„PD‰~¾˜pýã#B„Y\0!ÂÒ‚pÃ£–p£7Ÿ¥çG¸évžpóXá–ÂBôåå„Û/Þb–-&Ä@9„˜à„øö+„“GHøšIH<áKH,p%Ü‹w’“wf>’–€„¤¬lB2ÖEHÙrò\0$¤zÈRk¾ÒãMVÛ	ón„¬a˜5[K¸+8C¸ß»•ðÀYDxHÐ$<t[Dxè¥Hx´Ì›ð¨Ý˜ð8?šð¸cŽ«ªFÈ-þEÈmñ%äC›…¬õ„¢¤ï„¢6SBñîvBñÙ•„—BI÷jB¥À€P~—PÝoK¨=ð‰Pw{1¡îÕFB½E¡þÌB}-ƒÐp±ƒÐ¢Gh”&45|$<óô!<‹üBxqàáÅ£ÂËÿãyY:Fhnr\'´ÜäZÅi„VýaBëîXBkÁ,á•s\náÕ‘Ï„×Öß	¯÷)ÚJ„¶¹„ö”„ŽÏ„Î%#„ÎˆM„Î,+Â[b¡K¤OèJÞEè6ÚGè.ºJè>FèY]Oè‰m!ôä¸>&Ñ½›	}>K	}O	ýÇ¬	¹gŸ¸\'	ŸD×ŸŽŸÆ•ŸþU—º­.£Þ†v†5¦Ã¢Û„‘Ô£„‘¯u„±ç	_‡	ßö„ïžE„I%?Â$ã	aÒÏ˜0íN˜¾Ç!ÌÈ¯&ÌYMøÅ\\JøNø5Ð@ø]XOøs÷\nav‹0kæG˜ÝWB˜{þÊyþ]$ÊÙGåZ\'ˆòî™Dùv*QÁËŒ¨< @\\¨»¸0­ˆ¸ðCQ-v\'Q=%j~k$.Ù«JÔšÓ!.Ý•BÔ~F&êHŽu¢^u†ŽuÙo‰z«ˆzyáÄµ‡ˆ+~>$®Ü~•¸ò…„H\\mHÜüˆà¾‹DHü‹¹ÉË\\‰dä‘r~ÝÙJDC—©o	D:ùn<!2äœ‰Œ“£Dæ½=DÌâ\Z+\'±\"ö#È¹û…ÈÉ6!òælˆüi¢@G(ž!â‹_qm¢ÈÇˆ(æÃD±(Ù=E”òŽ¥Ý†DY…?Ñ@N4N\"®Å\r„´©D£•óD#ƒZ¢q:qÍ¯@â:«âºš¢‰h\rÑäì\'¢é´<qýÍnâúRœ¸~Ü‡¸QEƒ¸q	h6ÐCÜÞKÜ|D@ÜüµŸ¸ù×;¢ùÆõÄ-ê%Ä-E^D—Q¢Å%¢¥éÑòn4q[V&Ñêh•êA´i¶ ÚnøL´‹0\'ÚLwïºEÜÝ¿›hÙNÜ³b%q“*qÏ¼\"ÑË#:\\8LÜwWè¸ižè¸åÑ±‡JtÚêDt*‹#:›„]ž \\ýèª~–è&¬%ºGÊÛ¿‘\'xLôà½<N½ú\rˆ^“â±7½Äcí‰Çþ-#ž´÷#zßÞHôùy‡è{­„èµ…èÿ\"žªŠ%žÍ‰$žp!,8GØ±—Ð4@T¹AÔÈ#žS%ž[²…x^=•xþ´-ñÂâÝÄ\'Äàü\"bðç)âÅ·õÄKåcÄKýŠÄËËpâeê!âUÍibèòlbè%gbhô1œ“CçŽÃí\nˆá·ÿ¯ï<EŒð¾FŒt=H¼atŠUþ“x³.’»Q‰»-žëAŒÓö%Æ™þ!Æ9!Æ½ÝBLì|A¼SëELº×GL*ØOLÞDL~þ?_ëˆ©n‰©Ï‰iGžÓ.i3Öž\'fx ÄŒ/›‰™†ÄÌ½¹ÄÌ£µÄ,£ÍÄ»Wˆ÷ÿå³W¸³7<$fW¹À÷ˆ9¢EÄ“ÕÄGyˆ/ž!æúŸüˆJÖÄÂ7tb±š±˜~—XXC,‰%ô!bÉm*±”cJ,å? –\ZxËÑ~bÅîNbUø&bUÄb=x’XÏð!ÖsùÄúš£Ä¦³‰Ïå¯ŸƒÏ‰Ï¯ü ¾ V_˜?\'¾°Q$6o|Cl>—Dl!x[­ˆ­·u‰¯]Þ_‡Îß¸?#¶³ï;Uˆ_žüÏ[â;ÐøþN%ñý¤*±+d9±ëãjbwŒ±çŒ>±g,–ø1Ô„ø1\\@ì½vŒØûä=±ÿt+±?çñ“ñÓ(Ÿ8Èj!Ù‡=6‡op‰ŸµÂˆŸ9§‰Ÿ³‚ˆ#~Ç‰£´6âè…ÄÑ¸Râ˜‘ˆ8®*\"~±ì&~m³\"~{&Güþ}’8ñn%qR/qÒëqj‰\rqjN@üq\'N¿œ$þ\\nEüiK&þZuŽøG\\Bœ5&Î:LœË2&Îkÿõ{çaq~=Èí\"\n»\n¯\0Šëµ%‡q@©þ 4üP–¿\n¨l°T¼—ª\nŠ€ªþ_@µÔXxÞXô‹	¨ÅœÔFÅšuÀâx@}Ñ ÎÔÍê¹¿\0Íå\0Í“ç\0­¼›€NX¾AÐg\0+ŒƒN^\014 †]\0p-\0ìoÀa\0L‘à£ë\0)( •/Èm\0œ]PLzÊ	!€è{ˆg-€Ô·hÔs€zF ¾]Ð|­ZÐi\0Sc#À|0?ó\0ÖÖv€5ç`n7À¼\0·Ãàù\0_ïÀgçü»%€ ï \\ú\Z^»Ë¿\0Âj#\0—,ðCÝ€ˆˆž£€dþ: s–dƒyÀ*ý?€Â5ÀàK	°\ZrV8\rœŒ¿Ö\0klk€u\n:À:;À$ÇØ¸/°1/0»µ0g®ÌžÀ–³¯\0‹4ÀrÉ%`kíf`ÛIÀŠ›\nXñÚëÒf`»C°ÃCì¼ÔìÛ€]û§\0Ûµi€Ý­ÇÀîåÁ€ý+Ø³;pÈÌêœ½Ë¾{]Ù€£|°ßí#àà8ÝÎâƒ=õ€ÛÖMÀa8<ÿðÀ¾\0\'ÒO[1à56ówN8›>A€/ã0à[tð;}ð»8ýq8û¿ŸóNÀùÌ> XÏ~ù¸¸.â™À¥¯ÏËàêŸE@ÈÓàÚ`f>„9Láf½@ø‹6àºŽp}kpý»3iü\ZˆL?D–~\"gK<[àÆÓ JMˆò»ÜôZ	ÜzéD_KnG5\0·‹û€˜Žd Vuˆ%Ž±Ï\"€8Â% nj17Ý$Á@¢$Þñû›;â`àÎé[@ÒæJ ¹g9ò¼HiÝ¤öÚi“ú@º—á»ÈxtÈ<K\02Ïå™a@Öm?àžapïW	pŸýÈ&¯²Æ\0V,\0®”÷·9N\'€œ{!@N»ðHÕÈu·ž|_\rä™Ž\0ùµa@þm `¯P˜|(ŠŠîˆ¢<	Pì<ûµ%v€Rò# L\r”\'…\0Ur€ªý¡@ÕŸd fWPs#\0¨]Cê®\ré@cïf iÉw ‰Ð<¥DOÍ·Oíó§žýÀËs€fÝ£@ó\Z3 EÍh©SZƒ7­×~¯»€vÛÅ@‡þ5 c$xk¯¼õï~€÷B ‹.tµºóÚîà=ø8^ô6+\0½3q@Ÿ\\0Ð—ëü¯‡0U` œ\0ŒÃÏŸYK5`äq;0v+Ëñ\0Æ>_Æíû€ñïÀ¡ðåh$ðU^ø*N¾îi¾­¾Ù<&\"éÀÄít`¢ë\"0¹±˜¼èLáÚÀÔiàçÃ?ÀoÇoÀŸ9àßËõÀ¼å`þÁ;`>ŸÊÑçA¹{—Aùg@ùhGPE(.ú]	ª•Aµ7ï@µ‘— ú]+P£ÏÔTI5@Í@*¨9\\\r.Íp—\\\0—\0uèÕ ó&¨·²Ô£3@½h9p…à¸\"¡$ìÞ©ÛARó4Hîöa$D|Í@ÔÑ¤%>iù‹Aºy(È$fƒLËÏ €@6Çd»Ã ×käfæ¼Ï‹Am$(âîE-(¦}Å7Aq\\6(1>J\nœ@ÉÇ)PÊT\0õbÁUú¸jš\Z\Zû€†“·@cÙuÐxKhìè®	ì×=×êÛk_š€ë¶û‚¦‚p}ƒ¸Áú¸qÛ7p£ãqpch¸11´X<n5*·š?·3·žr·†ß·Æ›VW®€Öô[ u‰¸]hn?þ´9ÚîÒMmO:€¶9›@ûÀ.pÏ—ó ƒ tx,÷^w÷‡éƒ”ÇÀí\Zÿ#|e¾€Nº¥ S„3è4©:MþQ\0t™ŽÞzº&2@×Üàaß!ðð §«9è™™\0z--Ž­¾\n*€Ç.7æÇ»V€\'õ+À“¹dÐgµ6è³Åô}\0úf^ýôr@¿N{ÐŸõô?ýô¿ÒžZÎOƒg7(€ì3`Àw0°ÏR^\nž»¡^P\0ÀT#ðBÅAðÂo{ð¢¼4°¼BÜ	†\\Û^;´\rn¯ŸÃÁ¨€s`Ô\r30ª9Œ\Z/oþ©£ƒKÁØÛ`Ü	{0>á=˜ð>LïdÌ‚wJ¬À¤\rŠ`Ò\r`rÆB0Eã˜Ò7¦_Û¦ÇìÓ;ÆÀŒà…`&²\0Ì<uÌJ¹ÞÓïö÷OùÙÒÝàƒÕ)àƒÝoÀŽYàƒÆ ða×y0Çý3˜[ýÌ­=>QLŸ´íóô\rÁ<×80ï¥2˜óã§Àü9o°€{\r,Ø|,pYøFqïÀ‚º`Á‹¿`¡¤,¶\0³»ÁÂ°p,,Z”-–‹p.X´Ë\r,\nþ=±‹y\0X¼q+X|³,NI‹SµÀâì…`ñ§°dg,XrÕ\n,‰K/[‚¥y{ÁÒ×›ÁÒY:X¶åXæÞ	–%ªƒei\n`¹²XN\rË\r}ÀòuûÁòØ,°¼\0Ë¿\r€å¿½À\nÅ°BU¬01+¶l+¶Ý+.T‚RÀŠÇé`E5X1ZV.ì+¯?+§|ÁÊ_+Á*¥f°*$¬º™VåŸ«~­«æ‚ÕÄ`5:VéÕŽª`Âu°Ö9¬=¦\0ÖúÀÚîÿ×ŸRÀ:\r°îÞo°®aX×s¬ëëftÁúú`ý¡J°>Ò¬OëÛ•ÀúN.X?â\r6¬Ì>ƒ\r;úÀ†B>ØP»l˜«ý`£C>Øø¼l;6Îlç5Á&ÅX°ÉÍ\Zl:¾¬4[³À–%°%f\'ØÒ„‚¯H\Zà+n#ø*\"|õ6|5™	¾©‚of—ƒi>à;Ç\Zðý†XðýÞcàû˜ß`—J/Ø½ÖìnÝ\0~ Þ?~K{—L‚ý¾à€æYp`Iø‰bU÷€C–àð49d\nŽÚ?G[ÊÁ±\0ÿèŽÏî¿¸d€_jÎƒ_7ƒ_ÍªÀ¯ùÑà×¯[ÀoÞ?ÁogÀ‰œ\\íN^0§@/pJØN?r@pšpœ>Nû”Ó¹ŸÀéª	ð×žÅàï¸Qðw×:ðÚÎöŽs¥/Á—Øà¿;›ÁùÄUàüW_’œB)In;N’O‘$$…Èf’bŠ¤Ø¼˜¤q¤º8š´Èh3I­/Š´˜w–´ØZ´øŒ\ZICIÒ8’4\"ˆ$šß$.>iÉ•s$-I+iéúnÒR·AÒÒ;Õ$í¿±$MW’N$JZ®æKZ¾Ñ´¼­†¤»Â›¤k|‰¤7Æ#­`æVØ)“V8ì#­8y—DñHÄç&$ ŠL¿ü%AÒ~%:‹DÉ§‘ÐÐúZ‹DSN!1-ªI¬®S$¬ªž„µ†°÷OHìoÎ$Î¢i\'ô‰SøˆÄc\0$Þ5’0·†„‡Z‘D¼Iâ’äÕIò%„$\\K’yF20Iç·‘VkË“VÇÝ%²oŒÑÒÚý¤uÏ¶“LT]I&îI¦§mH¦Á$ÓK;IëeIë+«H²JI:¯‘6*…’Ì¨ÇHf1>¤Ís$s5Ò–ôÛ$zÉ\"ËŒ´ƒøŒ´ãè(É†ž´‹EÚU°œd‡T’ìÛ“ö@Y¤=gv’ö¤†ÔKHÍ$‡W%¤½BÒÞ×!$G›DÒo’ÓÍ¿$×øÇ$×¢$7ÉíåÉ]fJrß1Grˆ\'R-$ÖŽ&~I:òÄ€t<»ä-¾Hò6}Lò>>Hò¾Œ‘|^\Z‘|ÿ\"ù3#ù…}$ù/ÿK:e<C:uÓ—t*F•tÖ÷)€ûŒp#†ˆ$‘[IcÇIAy3¤Fº¤VÞ¤G\"I—†“.ßÓ!]yíNº¶È‚tM¢@\nóL%…ÿ;HºŠI…¤ˆë“¤ˆ®¤ˆ™ë¤ÈùK¤[¶I·?b¥ËH±nV¤¸ôý¤øß¤D8”°tg‘*)IŒRÞ ¤T-œ”¹ù)3®‰”å´’tWN@º>Dº/zOºoQEÊV}HÊ^IÊ_Dzh]Nz}‹ôh…ˆôÈ4‘ôèú!Òãû¿I«–“òDŽ¤<ïFRÞµ¤¼ÂrR¾«Œ”?÷”T qŒT¸ÅTÜpTvCL*kºF*ç¯ •[“ÊçI•„Ç¤ªlˆTõdœT½è©Ús©úÛAR@ªÝ^OªƒÎêOô“\ZÎý\"5®í#5¦n#5>\"5=´!=ÍÍ\"={õ•ôl°‰ôÜç,éy}éùÓÒóÏí¤fƒ¤V1‰Ôúò:é5ˆôzñR›#LzÃè\'½¹¶šô–N\"½·°!uý–.«\0R×þ;¤®ËÇH]ßÂIío‘zü\"õ±y¤¾‚R¿Ö]Rÿ¾RèER‰+ià·\Zipù}Ò Ç;Òì+iøüi8²€4Ü’>/ÛK\Z9<O\ZyÚK\Z½ü…4:™N\Zó\"M¾\"ý{H\Zç#}9BúŠú“¾Y<$M,U#ýè¿Cšv\Z%M?ì%ýŒr$ýìŠ&ýÄH?§n’~a\"Ò‡|ÒŸ3Ú¤YG5Òœ\n™47çEúË¹Iú[|ô÷ËQÒ?\n$·L\nÉc!9CoH^~#$÷Zpù$´ 	„|7„\rb\nRÙºR5k„TÍƒ …®+¡…µÐ¢Ÿ!µG5Ä€4ÜïCK”Î@KZ ­…ÖµVe´ôÝgHûÉMH;ï´Ü”é\Zì€VüI†V\"ò¡6\"¾­€\0f\"¤î€{Sð¦‚Â5 ¨Y\"ï»‘/+CðgˆB5ƒ(kl!t¢ºçCÔˆfþ¢·€íÄ¼O‡X[¦!Ìo\'Ä&ÆCœ„|ˆ\'‡x†û žw4ÄÏÔ†øÿ!þü\0$XÝ	<w@‚fHPA‡ïÎC¸§$úg‰M4!é‹hÕögÐª´hÕd°md0c	­&¤@†æ&aÇ\0døë5d|€Ö,Í†Ör 5k¹Ðšuhí:)´Ž¼Z?C„6(€6¼t‡6øC\'ï@fœ7Ðæbhó?&d¡P	YÆÖB–ãFÐV³uÐ¶ï»!káeÈ:(	²€¶?m€¶Ï¿v,Ž†v8iA6¿ h§;dG¼\rÙíw€Bü }:|hŸÿZhßÍÅÐ~¹vhÿ<\n¹\\³\\ß@n+C ·Ptˆ’\nÞtòØ6\nµYõ°…Ž6¯‚<ÏA^ê!/ òŠ.€Ž›\\„Ž‰¡“Kg ïÏ ŸåqOùdo|ÊîA¾qÈ÷öäÇ.‚ü¯C~¿L!ÿÕ®Ð)“èT½:íÃ†N—3¡ÓMP\'\nr:{?ßì]ž.X*CÁ»¨ÐÅæfèbÛRèÒêkÐ¥³&ÐÕ‹…ÐÕ¢·PÙº6±\nÕ–Baü(ìúI(,>\nk¹…[³ ˆÿs±zŠèè„\"~«A‘©‚ÿI‡nL½†¢ú_A7ÙZÐ-õ èÁºýû%+l‚âp(î{=oö\nŠ?%Ð¯A	ë¡„êïPB_\'”ð#ºó¡J.‹‚R²®@©ù\\(Ãé8”q(\rÊ< LÙ”yç\Z”9øÊr¨†²¢¿Bw+š¡lN4ôà`\Zô\r…þâA	|èq””{‘å–¤@Oþ×eû”÷}”ï{ÊoË€\ný¿A…Ë ¢`U¨¤v*¥X@¥»¡rr+Ty*ÃC ª$T½<ªÉU‡êþ÷]7d5ä‚šðB¨iGô´èô´Êz!>\rµ”ž†^™f@¯BA¯o†^7P[—1ÔöõÔ~u8OCé— ŽéP\'šu~ Î?Ï¡îíû îòÃÐ‡ßÊPÿþ‡ÐÀìè+úd$ƒ>eŽBƒ\'5¡Á4/hðõ*hhÉkèóòès‰4FÝÕûCcí‰Ðøª[ÐøÑEÐ—’aèÛ ôÝú^ZMT;AêÐ¤ú,4™=M]Q†~¸&AÓŸqh&?úµÕú•¿úý¨úó\næ^ÔB_•Aÿ¼Èr³ýdùÇÓdùêcd^Yá»?YñÚi²bî²bÛ$Yy;¬œàNV.„È*1Yd•;qdÕKaä…oüÈj×XdM¿»ä¥£ßÉËÍäe&5dm«²Îê!²N×;òòžßd]²®ž-Y·Ê”¬ÿŒ¼B]Ÿ¼\"z¼¢•O&¨»‘‰7‘¦Udp8€=þN†ü #…ÏÉhú:2šS@f-“±›2ö¨…ÌV8Cæ¬æ‘¹Û:ÉÜ´dî]52¿\"ó‡gÉ‡²àÒy²°á Y8šNŽçñ-‹É¢\"²˜²‘,¶’¥æîdiÚm²´²Š,kñ\'Ë¦2ÈúždýälòªwÈäCd¬Ÿ¼\Z¢‘WÿÎ&¯ñ2\"¯)zL^§s˜¼Þky}‚yÓ¦>²9ã\"y‹¸š¼ÅG™l1¼ˆlùãÙZ÷	Ùºÿ-y{9NÞñ¢ž¼£\"ïÍ!ï’W\"Ûê_$Û^6 Û]½NÞ}LHÞ³Èƒ¼§Æ‡ìàUGÞûà\rÙ¹Hv¬1\'ï¿™L>p8Žì¤Gv†N’“ÉÎá{É.Ço’%œÔ#»Z³Èn‡$dw§7d÷c\Zd÷¨Md÷;ïÈ‡ïÉ‡ï?ºGö@~ZqÉÇTâÉÇ_xÿ\"Ÿè’O®ò#Ÿ|~•ìC™!ûTÖ“}\\ÈþoòÉ§îì#Ÿ6\"Ÿ¾_BÐé\">1\'æ›‘ƒrÈçV¨Ïm}F¾ ×Mþ7E¾¸âùŠ|ùj„6ùjÏ	rH¹ù\Z?ƒzè#9´ŽDí¨%‡]ýŸbkòõ/RrÄË¿äHYùÆÎOä›K«È·ÉähMœ=kI¾=œMŽ]äGŽuÛCŽë¹CŽßGŽ¸œd6CN:MNF®‘“Ý”É)µrêyrÚ9}rÆ=äÌ€käÌ©rV¤)ùîaœ|¯]H¾_|œ£xžœ³l˜œ“ö¿mÆÈÔ7«“M,#?¦n$?è&ç*®\'çªÙ“sItrÞä‚ÆIrAw¹èb!¹(%\\’lA.¥ÐÉ¥a‰ä²y)¹œçO®  W‘äÊ;éäê›uäê1Or…Œ\\“B\'×Ê+’k[-Éµž“ë›È\rzÛÈ\rÔ{ä†trãHù9 A~1# ¿T&’_{‘›ÌÈÍmÈ-ÁÍäÖ,ù•|	ùÕb9ò+­­äWÙªä×œHrÛr[ž-ùö3ò›=wÈí£çÉ”CäŽÍ‰äŽBGò»×Aä®ø=äî±äžm¶ä^5&¹W§–Ükv‘Ü{{œÜÿ3ž<øX“<ìHþ]\'D^!\nŸ“G\r·“ÇšŒÈãÔzòxÐmò—…qä/Þò×­;Éß^û“¿ó²ÉßíƒÈ\rwÉ“|&yêÿ,¿Kþ!I ÿ°õ!Ïm!ÿŒ÷&ÿ,ÚIþÙy…üsêù×ÿýúËÎüknšü;Ø‰ü\'Ò<«6CžíÙ@žíS&ÏÙjçJ?“ÿþßŸcFÈfÈóïÔa¹š)Xž¤Ë[ûÃòG_Âò7…°üL¬pÊ^`\0+ªß‚=	°Rb¬ôä4¬|£V.Ô†U–¯ƒU,`•£ë`Õ¥¡ðBx^h`«ïÒ…5ï…5»oÂKÎúÂK¾l‡—î’ÁËÞðaí¥1°öÖÍ°ö.5Xgy,¬cy^¾b#¬»¨Ö5´†uãm`½b¼¢ô#¼¢y^iy\Z&Œ`ðöWŒW‚Á„ã0ÉêŸ{\r£	#0U¤S7äÂÔÜµ0uj3Li†iR;˜éP3ë¸0ëÚIS8c÷ßÃì^0;ã/Ìqp9ß/À\\ÜL‡õaá-Æ	æ°(ü,ŠÂ¢„*XTd	‹jG`1°–hXÁŽ,ñÛKÑXjO‡õÝÔáUáëaƒUi°¡¥%lä˜ïZ_\n¯ÑÄà5áÅðšæe°Éž°©Ö¼ñÂSxcÄ\"xc²&lö›oþ3\n›/Àæ1Û`óüØ¼´¶XûÞzò¼µç¼mô3l>[?€à¡á]½|x×¯¥°-÷0l›VÛÑ;a»ôx·‡!ì Ü\n;8ýos~ÁÏz`‡y	ì¸;îš‚K‡à«Á&a\'	Ø™ó\nvjƒ]ˆvðAÖcØµ¸vc®„ÔÃ¹ð1øxûÊÁ°ï›ë°ßÖRØ¯q>e&„Ïx§ÃgoªÀgSÄðÙG8 ö2è\"áÚpPRÔŸ[œ\rŸ«x\0_øëËŸ„ƒïÞ†/Þ€/±‚àK»7Â—ßÂ—\'ºà«gXðµwðµ™ÓpèÿuÍó…CÃ¡§á0ø6ttŽ0àÀ7V­‚£~³àhXŽþ¥ßV€c§>Áq¶ÃqRŽ‹á„Ê`8ñ^!œø£\rNRº\'Ûà¤p2M\'ûÃÉQúpò}}8µÜ\0N‹lƒ3üPø^NüÀ€s’—ÀlZáGÙ«à\'{®ÃOö‚ŸU…ón	á‚ÿ5^˜d\0éÙÂE3^pI€)\\úÄ\Z.Ûõ.{¶.?]\n—ß*‡Ëß&ÀåRáÊçáª¦pÕø¸Ú·®X\rW_>Wÿ À5ËTà\ZÏ—pí‰L¸~d\nn\\Ð7.õ‚›4šá&Ú¸É…ŸŸ,‡ŸŸ‚_žÀ/ðpø…¿tq‡_äÀ-¹àÖ—	pk[\'üÊí)ü*ƒ_õ‡ÛÔá¶×‹à¶Oø´n_ýnë†;æNÀË\"àÎuL¸sr\'üîâøýÊA¸k_Üp®€?-‡?\\2€ûîÂ}‹+à~;\"<Ð¡¼ÿRØZò<4Ö­†‡®tÂÃb/xø‰<â®¼\0iß€Ç/ªÃãcRøËö ø«Wüõ\ržØ¸ž×€§†‡àŸ]áŸÉ‡á_¯¦áÙgxnHþÛìÿc¥È)ÿ ÈmRäQ)r‰(ò–û(ò¾Žù{,Êle¿‡²ÀeeAç%ŠâeE)¡Ÿ¢<µ€¢\"è¤¨l¬¡¨ï¡¨Ü±¢¨T_§¨ÔvSŠÇ)\rïP>ùBYÄÜEYÔ{‡¢æRAÑÔI¥,1Ö£,é S´Üµ)Z^í]óíroŠÎšo”åcŠžZ\"Eo8…²‚s‚²â·„²2g3…ÐøžBL¢ï5Q\0G&…Ô8ATÿRÈ_Z(ð’f\nåB>¹3HAªžQ¨þ&ê -…öm…1©Ia…ÍSØ‡×PØžw)ì,O\nû—…ûm7…§»\"Ð~L”¯¢ms(Âk0E$*¡ˆ¶ŽRD­©ÍŠ4¤\";7KÑ·m¦èŸÐ§¬ZÉ¦¬â=¦„¼¡¼È¥¬^³—b(î !O)F›~SŒv|¥]ð ÏQÖ¦l¤¬ÛÎ¢˜4™RÖ«œ§¬ÜGÙ°ÛŒ²)(²éû4eÓ¬!e³!—²åægŠÅ›`Še@±,G±|yŸ²5ñüÿ$P¶N­¦X»·PlôÃ(6w)vNQìžRvÿåSìuý)öi)%\')¥«({•¢){;z(ûvÌRö59PT\\£8_¢S\\L\r).M·(®½3·Ø”CÉ‘”Co_Q<ŽöR<4)ž¼6Š§•âyô!Åóô	Šgþ&ŠA“âuø+å8?å„–€r’z•rÒ2‚â½àÅ{³5Å{“âíÙIñ®Q|E;(þK–RüÉw)þFÕ”Ó/ò(gòÛ)gµô)g/÷SVý ¦¾£av” È”s¢û”ó‹U)çO*P.|í¡Ÿ§\\lÌ¡\\2*£\\ú´„r™7L¹ÜãH¹BO¹òeåZ|#%Tp—Z4E	s¸C	{ñ…ÖrË£\\ßÐ@¹I¹žð‡©aN‰l°¦Ü`ÈSn\\øJ¹‘óžrã¥%Šs‹mbG‰~1B¹½«ž×´ˆ’pú%Ñ1Ÿ’ô¥Œ’<UGI¹J¥¤æ¬¡¤¾¤¤ö/§¤±Ó(éÕ™”Œª”Œ—]”LçLJ–H¹»g%› ¥d³Jöº\0Êƒd\rÊÃ%JÎôvÊ#Õ	ÊcI5åqÕ9J¡Î¥èÆ¥Ô°ˆRÎÒ£”ûúP*¬”Ê‹:”*êeJUy:¥Ú©˜Rð†RãºŸROI©ß ¥Ôç¾£4pç)\r^*”F5SJ£¦¥q[¥éÊZÊS½E”§³_)ÏŒH”g{®RžëõSž£Û(ÏíîR^>|Fi\rÝMi­<Cy­Bim ´mýDi«¹Ki\'PÚe‰”Ž:¥£àåí¶M”·ç_RÞOž¤tSª(={º)=])R>>xJù8u†Ò+Qz7Ÿ¢|Â[)ŸfVQÿVQ†z¯S†•\"(Ÿ­•(Ÿ¯î¥|þeG½z•2fQÆ\n“)ãÊ;(ãÂg”oÄc”‰—½”É´ó”©ƒK(?2C(3E‰”_kc(¿6~¦ü2;L™ý€QæºÅ”¿åïÔ*DNo)\"wJQ`Åœˆ’ê/Di³¢Šù\"32E’.dQ°¢†N\"jGO\"ê5RDc‹¢±ÝÑT¹Ž,qÜ…,y‚,ÛªŒ,;½ÑÞâhû©!:_%ˆîŠˆ®ïD7±	Y¡1€¬\"„ãáQ;\01¼àŒÀ-Éüí-‚,A°_ê« ±Ÿ*|¡å!´2E„¾ì+ÂL=‚0ßä\"ÌÙ5kùFËØˆ°÷>C¸TE„ËnAø9wþ¬\"˜ôA„êF~3	ÂÉK5DúØÑèDV…E «† KÎ!Û#CÆ9Äðˆb¬¿1Þñ1þ?þu+/ ë.\n‘u3‘u}ÛM}ÄäàÄ$Ò1uÐEÖ»T!›ô‘MgÍ7d³‹Ù|Î1×ÉE¶Tq‹›·Ës)È¶º?È¶ïdÄJ¡±v×G¶×Œ ;8#ÈN¿ndçûnd×úËÈ®KkÛhÄŽáŒØm³Aìü‡‘ÝMˆýJEÄþå\nÄQ¿9À=‚Ø<€ÈèGœÏû!/|D\\/f#Gô#G†ˆGôcäè-Kähnâ¹hâ™#D¼î§ ^¯\"ÇÖø#Ç6Î Çê¢‘ãªîÈq+äøÞVäDÕädˆñ–[‹xz Þ™gïžˆõÄ÷²3âÛ\'FüýSï`ä´²=rºü7ræ­	È<†ºGo?E‚„ÖHÐ!=ä|ð?$øVréÓäòð.äò|+rEÓ¹áŠ\\ùÿ×p¥hrÕdrmár­m	]à‡„]„„~ùŽ„‘® a5îÙ„¿Y‰DXþO.±k7u¸‰z6Ü<r¹yg\Z¹U¬‚D@nk[\"·Y3Hœc67¤ƒÄ\r¿F’~¯D’æÝ‘äÞv$å4‚¤t:#©=?‘ÔÛô­HF5Žd.û‰dò¸HfÁ-$ëò rwå(rï};’ÍÐB²…®H®V ’Û;‚<9³yÒIGò4ú‘¼€F$ïs(RÈ¯C\n\'ã‘\"j?Räú)rëBŠÜ E)£HI		)%BJYqH©ëRÚ©Ž”Í) åº!H9ò)oü”ÿ›Dªµ\rjf$RÝÓÔøö#µ°R»!	©ÝÌAj+!uHÒàã„4<à\"\'ò‘Æù¿H“ÎRäiÚwäy¹\rò\"øÒ\\qy¥éŒ¼:Wƒ´YŸDÚÆž\"o®r7õEHZtH\r×6ä-õ>ò^/y0yßP‚tg/F>´Èz+ÒsàÒS{ùh¥Ž|,ý‡|«Czã\nÞ»\0Ò÷Q(=…Ò=ÁnOä³¼òùo2úê2>î‹|	ˆD¾Òo _o/D¾%F&‚ž#“ÚºÈ$³™RíF¦øÍÈÌêd&‚†Ìdv#3yÈÏŽLäWË}ä7zù3>ŠÌV!s³—¿B\'äï¥\'È?Ífd~¯2ô2ÿh*g¶UàG£\n\'ÐqÑwLÑ¥Qè‚§×QEÍ¨bpª˜ðUìhDÿu£Ê¤\\TÙÖUýÛŠ.ôêD½ËAÕÂ¢ÑÅ’¨ºiªa>€jØF5¨ÆÃjTãOºÄûºäòTË¤Õú2€.ë5Dµ¶¢:!—Ðå„Ityg-ª›;„®p8‡®ÔÎEWæœE?”4àB±‰(™Ö„’é{Qò‘µ(·¡0r…Ëž¢È¥ÖM¡Ô&J;œ€Ò\\Pæ©8”ù¾ÅÚæQ¶Å3”«åÙ_DÒ*THiG…ÌTø¨Å?¾@EW7¢¢gr¨XxËRQÉö0T4]%|®êòA\rNk †>î¨Qú\rÔXE]sv3ºvóº6Ô]ûH‚®}õ]¼5yª„š®Ú…®÷Ùˆ®¿þ]ß…n „£faC¨ÙÀ4º‰ÏD7?~ŽškŸ@ÍþF·ü©G-®D-µýP+‹«¨µÛÔºâ:ºÃðjÃŠEwff¢vò­¨}ì/Ô¾g?ºÇaº§ö	º§ÛÝ3}ÝëŸƒî3|†î»¬îK2EAOÔ±ö6z`Õ>ôÀn3ôÀCuú§º¬8‡ìyƒºR\rP×„¨û¥ ÔcS8êq¹õ˜å£ÇË-Ð“7\\Ñ“½n¨³5êsÒ\nõI¯G}÷¢þÒ¯è©DOô´îzôtØôt¤\ZdWŒž³RAÏ/^p¨F/äX¡ºÑà€@4øÿ˜/¶[£geè• \ZôJ¤\Zz•;^ÝŠ†ÄðÐÐùV4Ìg\rë?…†/œGÃ-ªÑˆ+\ZéˆF$ 7nø£7J/ Q¼4jÝ4*ÈúmƒÞœMFo\ríDcKÐX^4Ží„Æma¡ñ£­h‚M\\T€ÞqÞ‰&mµA“¶ ÉkÐ”çB4õsš¦µMÃ|Ð´çhÆö	4ãÚ0š1[Žfñ^£Yn÷Ñ»bWôî»\"ôþuôÛRôÁÅZôÁ•—hÎ¼1ú¨û9ú¸&}üq1š+ÈCs’Ñ\'ßh^ƒZ°³-p˜E\rÐÂHw´ðƒZ¤g­m@‹«Ÿ %‰áhiÈ6´¬nZ.ß‡Vö£Õe0Z£ÚŒÖÜb µM–h}A&Zÿ2mPjC‘hÓ—Vôé*ú´6}ž¼}q5m^ˆ¶\\ÏB[zÑVÏ0ôÕúZ·}ížŠ¾¾?‰¶\'i¡íEíh‡¼ÚÙ†¾]´}»~+ú>§íb„¢ÝJÑîä%h÷Ú=\n£VG¡lv =¬ƒhÏ«}èGôÚ«uí½ë‹ö¡ýEÉè`úÌD‡-ÑÏ¯-Ð‘5¡è˜¬\rßñ¯Z€~Iû…~tA¿+¢ßÀèDB\r:ÉœG\'³ÒÑ)ÍiôGÄôçú¯èO‹<ôg¾úy„þ~Žþ®¼Žþy¢³«¦Ð¹ÕåèÜ[ôïX!ú2@çÉ³èü­—T9Œª€¶RÂŽQ^¯¤.¸÷˜ªÜC]8^H]¬iL]¿Žª©®OÕäGQ—Ð»¨KÖ]¤j…Q—*¥Q—?j¤ê¶ZRWF_£®œv¥TP‰ãÚT\0› ?\n©à‰ET’G&•\\|\nï8I…¯¦Â¹7©Õ**%©–ŠìÛAEò“¨Ô5vTê-{*µÍ’J«±¥ÒÞð¨ôõ5TÆêwT–B7•ŸKÅv…P±#ÆTìç•}‰KeG·S9À(•sn•‹fP¹mnTnÇw*?#*ðÚNb*T<Ý—*V;@¯ö£J`*­Õ¢ÊàEÔU´TªÁ)ªAêoª¡Ë+ª‘üqª‘³Õh(”jœÚB5n]J]£ÓO]sÄ€º.œE5ù{”jºNžj=GÝ¼pˆjÞÿˆºe·:uËDÕÂqÕ¢5—jñS‰ºmërªÕƒƒT«‡bªõ-êöî+ÔáEÔ5ÔžÔ]ù#TÛ†ÍTÛ¶/T»¾eÔÝAª=ñ4uÏÂiêÞûË©ûRR×¶S»>S÷ï\\DuVÒ¤ºm©£ºUÆSÝ-(T÷ü»T÷!-ê‘…Û©/S©ÿŽP=Wÿ¢zž z6K©^FjT¯ã6ÔcÁÔã=Ô€z\"¶šzòKÕ{h\rÕGý\nÕçè7ªÏ±ýTŸ[»¨¾Ü·Tß—ÊTßáýT¿uÿ¨~iO¨þq¥ÔSY4ê©úÛÔÓ=¨göLQB<¨çÒ\"¨ç:nR/ì?@½ÐlA\r6Qƒßq©—Â—Q/+Q©W 0ê•=CÔ«rÎÔ«º*Ôè\nõšç*êµÓqÔkêÔÐ…ýÔÐotjX&5ì›<5ül5B£Œzã•&5*°€\ZUºƒ\Zõ7†z“t˜zs ”\Z-S££K©1ãÎÔXä5Þº\ZŸéBM0ÿGMÔ7¤&:†P“=¨Égr¨)‰5ÔT³~jê=.5õ~<5Í4š~¾š¥ÒFÍÚ®B½Wú”úÀ-‚ú eõáESêÃL	õá\\)5Ç?‚úèjõq¤2õq.úø]:57x-5Ï=’Z0?E-Òt –øzPË\"T¨å§SËÓË©ßS+÷¼ Ö+\\¦6¬Ž¡6rîPó©•Ô&CjSáOêÓü.ê‹’çÔÿ\"©Í±\nÔÿJjË¨9õ•Éeê«½CÔWÝ_©mç7QÛêj¨íë¾PÛSL¨Ø5jÇÕUÔwY|ê»—«©ïþöRß¯l¦v‘–R»6™S?®5¥~üØGíÝXDí;OíoXG4u¦…tR‡\ZS‡º©ÔÏï»¨#_â©£ºG©£ÜýÔ1ûãÔq«Ôo‡¾S\'™7¨“Ý¡Ô©iKê4ÉŸ:#wž:TRgÜ®Sg¼Aêï¶UÔ?*ñÔ?oë¨sEë©s?†©ß þ¤Pÿ¹/¡þ;ò:oãLß?H“;;B“P¦É‡·Ðä›Th\nCkiÒè4Å˜yšÒÑ4%¯o4åC}4åOq4åo\\šJƒ\rMeú8Mµ¦-¼z—¶È\\‘¶(fmÑx\"m±Í6šúÚIšº—¦Þ£@Ó8¡JÓ8³•¦‘HÓ,©£-á½¡-‰~N[’|¦EÜLÓŠÍ£iÏÿ¥é”YÓ–7fÓôLŽÐVêÞ¢ÊÇiÀm\Z}¾[A#M5ÑÈkœhóÅ4D‘HCí QRiÔ¬l\ZÝ ™Fw×¡1L,hŒ–.\ZsÝv\Z3i7µPŸÆò£a÷#hÅ·4ŽË$“ðƒÆÕ}Iã¶ÿ¥ñi¼¢4Þü\Z?øM¼&¼J§	³\ZhøÆ“4ÑÒý4Q?MfA[U”@3TÒ§nw¤­;O3Jž ¥B´5´µÜik·\\¦­7–ÑÖv ­£mD^Ó6²ÆhM¯Ð6îÛL3ƒäifÇ3i›¾ÄÓÌåiæilšy†m‹KmK|6Íbf¹0f9.¤m[©CÛ–³Ÿ¶}IÍfeÍ™¦ÙÜÊ£í¬k£íœüI³]\\D³Óè¥Ù‰Sh»µªi»ƒ\'höËiöv54û\r´=W–Òöú{Òu´ý2i˜\n4§2OšËƒß4×gÆ47VÍ-h1Íý´Í}Ž@;Ò_Oó ¡yÞ©¡yÑhÞ\nh¾«Ñ|.Óü°VšŸS ÍïX1Íÿ•<í”<—vf”àsƒðÈœ$¼N;ww-íÒóg´ËA»hW¦]é§…\\ØJ)úM^IÒ¤…å§ÐÂþEÓÂmßÑÂûe´ŒH‹¬|M»ÑSH»ùýíV¾5-Ú2˜v›ø“ÛþwÆ×ùˆ¥Å¦Ðâ«Ñâ[ci	òþ´„ìJZÂ³tZbó;ÚåÁ´¤œW´¤ÎaZ2º‰–ì”–ÂÔ¢¥<FK[Ð@Ë8oDËÈ;HËÒ’Ð²VÇÐ².? e}±¤Ý=…Óî)Ü£ÝR¡eëKhÙwh§Zi¾ÒqÕhÎÉÓEhÐrýÌhO˜ž´\'åiy\0–?¼ŠVhyŒVUC+|­G+Z£B+j£›@´âCiÅ¡Ÿi¥ÒJZ©µ\'­´FVî«M+OùŸÁG´òÉ7´ŠEZåÚJZÕáVZ5ù/­&2˜Vs Õil Õ­ûDk˜W§5t =54¡=_ó˜öüÇ9Ú‹ÊS´—Úëh/ûßÑZVôÒZ…Ž´Wr®´×VŸh¯ëNÓÚ¼\0Z{êZ\'ÝŒÖ³€Ö9u’ö6ÖŸööŽímÚÚûÉ\"Z×76­ûd,íCk-­wûNZï\'”6€¥Ó>qÚiŸ$—hŸ¢§iŸèÐU¦hƒ_–Ñ†CÒhÃõ¡´Ïêî´ÏÖM´:@ykHg;ÐÆw\rÐ¾¸*Ó¾ú×Ó¾öî¥}Ó¢}÷ÿDûJ MÁWiSé$ÚÚÌ)6ssžö+CDûçIûÃU¤ý)=C›•ÿI›^A›Cƒiã]è\nOnÒ•”Ò•ø¥te=[º\nTCWq§«öBtµŒetµÉ—ôÅ–»èšg\nèKÜ\'éZz|úÒèGôeæþtž]§¿™¾Üê}yÌ	º®þkºù\n]om}@¦¯XÕG_yl}åGô•m9tÀ\'‡Þ¡ÑÁ{™tøM9EG—¤SÍõèÔ€::õû\':}AžEgT=¡3§/ÑYêWé˜M%ëÊ¢³ß$Ó¹a\":÷Þr:oY·ó)7·Î×YGÇ÷‡Ññºûtñ­Fºt‹]v©Š®¿²€nxrÝøÞbºñs”nüñ\0}M¤”¾VÁ¾VRL_û¼œ¾Nã}¦Ý$î\'ÝdÞŽnz÷ }½¼>}}š}ÃÞ•t³Ÿ—èf¿_ÐÍ]mé[†þÒ-¢—Ó·fséÛ–Ñ·õLÑ·qèÛ_;ÓwHlè;v:ÐmèvMºt»iúîùôÝO÷Ñí‹.Ð÷%Ñ,>Ð÷É«Ó÷í¼AßççJwìÊ ;íH¦»ÈÝ »ìv¥<õ„~ðs\rÝS¤»íûLwÇ¿ÒÝ»vÒwEÑOLÐŒo¡=m@÷\\ð‘îõ€B÷zš@?‘J§{ãQtŸSè¾øbºŸw(Ý¯6‡îÿŽM?µÀ–~JæJ?í@°¼M\\„ÐÕ“éÎô@ÿƒôÀ·{èç÷ÿ¦ë9Ò/_S¢‡øï ‡¤bôt}z¸š)=B¤IÒ¬§G%Ðoå¹Ò£¯Ðãj_Ðã†ôéñ|èñ•éô„zâ)wzbÔjzby4=qö-=Ù)žòBO+ë£§}4 gll gÔÕÐ3>$Ò3±¯ô,GcúýöTz¶¾.=»¤gî¢?€-éÖ|£?¼9FÏ]ÚOÏË·¦çýxLÏ›I£ç?]H/ø?Ÿ…ø-z¡Q	½0ÿ8½°J^|2˜^Ü	ÒK87è¥á=ô²¥gèeÆ‰ôŠ¸.z¥¦½Š¾ˆ^UëJ¯þ¾™^Cl¤× ¾ô\Z·Jz­Æ<½v©½VGD¯ÛåJo° Ð›7Ò›Î?¦¿<ëGoîœ ¿‚	ôWÃßé¯3]é¯ß©ÓÛLSémÝlz»‘.½Ý\'ÞB»`1ýã7z×ezOàVzÏ•ûô~Ðûìƒé}á·é}	\nôþí\rô~×jz…9}`óCú§£¹ô¡Ïkè#5%ô/ÚNô/û>Ñ¿jŒÐ¿¯{Oÿ¾¾þ=êý{úÿTjÑ\'4=é“1EôÉÄAúd÷yúÔÅwô5úßíô_Òkì¡ÿÕw¥ÿÝçCÿ‡hÑÿ/§Ïï}LŸwä1äö´2”ü^2”®72”þ,f¨–ìd,|,ÇP;åÄX¬%e¨Ã†õívõßšœ{Œ%ö‘Œ%×=Z#bÆ²mÚŒe‡Ÿ1´-ŒÚ)†Ž‘cù³(†î²d†.ú”±¢´•±rÁ:ÆÊô:kföòD¥9Pw’AÒÑcÀ&‘Jw2ÙòŒ¼hfPG3hî$íŠƒ.w•AOAOSY‡Á<íÉ`/‘18îÞï]Á8™!ø±†‡Í3DnCtß‰!±aH~´0¤þOÒ.†¾—±jÿÆª+šƒíóï«÷O1V§ü?æ¤?bnˆa¥Æ1Œ/?c¬©-e¬­ÿÈ0ýò‡aúëcãV9†W—aæÝÈØ”2ÃØTBdlª\nalšßÍØ¼¥•±ùË>Æ‹1Æ–¿–Ë½ËbÆÖcúkgÆŽ:C†:Ä°*;w¿`ìúºŒa+é`ØŽ0v«-bìÙÉpèå0ö:_gì-¹ÁØ¿5—±ò\nãÀNkÆQo†³0‡á<ÛÃ8¸˜Å8˜cÌ8X¹èBnºnÀ4ãð‰xÆ‘9Œ#é7G×ïax&Sžo;Ç·gßq™qüÁo†·zÃÛ£Šá#\'ÇðÙ\\Ïðõa2ü¬ÙÿøÆ©¢xÆéeqŒ3›rgs\ngÿe\0ÆAŒÀûW_úA.ÕŒsŸç­ÆÞ¹2‚Õ®0‚÷‰ÁçÁ]Œ‹fkÃ$ŒËsKW3®1B;ùŒ°9FxÍ$#‚«ÇˆøÇ¸±ó.ã†Ë7ÆMôã¦ñFôøvÆí˜	FÌÚFüþXF|òOFÂ•|FÂÜ #ñØaF’ñ;Fòì#µˆÄHmÕg¤AƒŒtµ9Fº¬‘ñr’‘™ù›q—îÆ¸›ËfÜ-+dÜ-`Ü»¸q¯,ˆ‘¢Áxðö	ãa¶„‘Ã[ÃÈiŽ`ä®eäÅ,bä¯›aäßÚÄ(Ýc˜3\n3-E£¨r\'£5eA%)£ÄfžQÒò–QÆ;Ä(ûÕÊ(_“Æ(?KfTð¢<F…é=FÅ—fFep£ª9–Q^Æ¨ŽÚÀ¨Y«É¨	b0jž2jÞ\\`Ô.ÝÌhˆˆf4bŒ¦\'îŒg½ºŒfÍ(Fëº\rŒV¯.ÆkñNÆk£Œ¶ãß£=w7££ô(ãí£ÓŒwZW]ÜF×uœÑ­´€Ñ½Ç—ñ¡¼…ñ±õ2£W®›ÑûÀ‘Ñ÷[Àh­c|Ê2>½œe^Vdv¥2† <ÆÐ@,ch(1üÁ‘1Ü“É?Ê5DcÛŒ1/ÆWÊø:ÿœñõƒñMv…ñ­bˆñ}ÇUÆ.dLœS§¦Sù‡?ì2~”³ÓàKÆôƒãŒ™³LÆÏÜoŒŸ­]Œ_Ëú¸:Œ?ÂdÆluc¶3—1ç(dÌ¹§1æÞ§3þºé3þ6‘ÿt0þ¥º1åÞö1å÷é2d#LÅÃR¦Òø#¦r–)Se@ÂTùæÃT­b.Òæ0ý#1üe.þÑÈTßgÎÔXåÇÔÊ%0µ>0—6ª1—É–3µi3uì¯3uâ½™:¿N1—Ç&0õ¨þL=VSï§s…y\rsÅ“ÃÌ•ºóL‚‘=“àTÏ•˜äãLx¦“	ÿÕa\"UùLôÂ:&ÚVÊdÊ`2ÿiü.“Åa2±K=LöÂ…LöÉ¿Lö­…LŽc“ïñ–) f1kß3ñå—™xÂr&^qŸ)JaŠf†™’õ™’ôsLýgæª€@æªò8æª7LƒËû˜¥JLC¦!àË4ôtg\Zé•0Õ¶0)IL“ÓMLÓ%ÃLSÝ‹LÓñ£Ìõþ·™.‡2ÍŽ™07¦37{d3·hÌ2·p_2·œ‚˜[žš0-æ3-oÔ2-ßobZþranó2·ådîØ`Á´IIfîÄ³™;;\\™»Ø;˜»¤FL»¡L»ok˜»71w;Ø2í÷?`ÚJf:0˜©Ç˜o–3÷.³cîÕ]ÉÜ\'\neîó¸ÈÜ43÷÷®eðxÎtj©b:[,d:_HeÌ™_ldºÃtÓ¼Æt_x†éÂtÿ‚0).f\n±gzü›y¨/éa–ÄôH&3=^ÿ`zšžfzY3±Ú™\'öG3}}˜¾g3OÙè2O¼Ì<t”y:œyÆ}šyöÌaæÙŠ^fÀã|f¯‹tc†y~P‹ügŠyé !órÇmæåáÓÌ+™!ùºÌ_bæµÆ0fèÓ0fI“¾*þ,þÁ’qc32o7ó†éaf”b2óVŽó¶Ó36^ƒ›÷û¾„Ws™Àæ1ï$92“†(Ìä×™)•<fjèbfê­fj¼32ÈL³>ÌLÛÉg¦{t03oŸ`fu0ïq÷3³µž1³K™O1y–1E,bæïºÊÌ¿EbæÿÊcD`•¨1‹Ê™Å3‹ç1K4?2K^R™%½5Ì’i1³\\m„Y.Ä™•Ý»™Õëc˜5‡™5¿Š˜µ¤¥ÌZ§%Ìz¿8fƒÆlHÞËlèÉf6Þ0›ˆŸ˜MvÌ§ÍÌçÊ^Ìç}ß™Ïÿ°™/\n˜­Þ ³uì)³}óVfÍ“Ù©Ì|kqˆÙ˜Ïì»§ÀìßÍìŸ=Ìp`<¼ÅÄ÷2‡”G™C6o™ÃVÅÌ‘Ù1æÈ_æ¨JsL•Êü²¬Žù%v”ù•¿šùMÌüPÎü~«Š9Y\01§Ö¨1<ÎœY5Çü• Çüó;—9{N‰9û¬9;þš97–Äü·G•9ß›Àœÿº›¥ mg)<–c)Qÿ°”5XJy&,¥Ž2–²\"KåFKuãaÖÂˆµ°b-*Òb-^ÀZ<îÅRïzËÒ€Y\Zè<K#ð(K³`	kIÙk–v0Kç(ÊÒée-³tÚ±tß¶±Vöo`ûYD\'C0^ÁubX‹\']ÃaQMüY´c1,Úó?,Úç­,Ú÷Í,†÷m³¾ÅØÇb…U±Xþ²Xý­,¬2ŸÅÞ¦Ëâ°8b\r/ï>‹o±øqr,þHKð©’%4ÞÁÂÍ:YxžK´Ë%Q{Â’h-`IDïX’$KzøK&eÉœ4Y²z,ýE–Áò^Öjº-kõçË,£º¬5‡fXkî¬d­[þ†µ®Þ‰eòè4Ë,À2?·eq.‡ey,Œµõh\rk[.Ë*—ÎÚŽþem—y²¶{ö²lŠX6OÖÎtÖnd;Ë*cÙmg9[°œ¼XÎ¿/°\\Ö8±Ž@ú¬£Û‹X^^+Y\'½ï±|µ¬Y~c®,¹^–¿ÝR–Œîÿìc¾b^QcÖÑYã¬À‰&ÖÝG¬wÏ².¼{Ìº$‰b]Šöe]ªna]^²®z¿b]\rNa…äö±®éZ°®Ù	Y¡eº¬°-u¬°7YáŠ¬¨­+ÊÆšu+á+zQ7+z?—}/œu{9™¿.•Ÿð“•¸c5+±¶ˆ•üi)+¸ÇJ›…Xé„=¬ôÜƒ¬Œ(ˆ•ÑÌÊ\\²²Þ)°î.ÿÊº¯ŸÎzà°›•“¶žõ(	a=Î*c=9ù•×”•ŸUÎ*½fÌÜcüÍeÂY…ÅÝ¬Âš¬¢ªBV1é«x=Æ*‰šf•ùîg•/²Êÿ^1s†U)¿‰Uu0øºXU‡Ï±ª/v±jöi°jWø°jc%¬ºkKYõ—¬†ÿóÓtVÕ4ÔÊzÊï`=3Lg=7Sg½p‹`½ð:ÃzñÏŽõ’õ‘Õ\\™Ãje­a½þ=Îz³öëÍŸÖ;Ú=Ö{Î_VÅ‚õáÀê¹ØÁê­ßÉê[·5h=Î\ZºàÅ\ZúÜÊ\Z¹“Í\ZÉd±Fº¦Y£aïYcÂ×¬±û klcww°¾¹¨°&*XSZJ¬©ÊqÖTK\'ë‡škzóÖtöwÖô/œ5ƒžfÍÌ”±~šÀ¬Ÿ	ñ¬Ÿÿ@Ö¯gÑ¬Y‘7kör,kvfýU(cÍ¯eÍÛ³æ£»19ÓLîÏ &o°SðÔÄž?ÇM³1ÅySŽÂT)J˜ª…\0[h—-_Ž-:»[Ô¶S#‡aj\n¦f/ÁÔšý±ÅÊ‰Øâ¸LCÌÂ4ç0ÍdlÉÚl‰ÓlIB¦u¾ÓJZ€-ƒ8˜NW?¶üþ.lùœ1¦ëÑƒ­PîÄVl¨ÅVØù`+óå±•.bD‹J1  æµ1ÒŠŒôv]‹Á ”hŒlÅÅ`žÒÀ{kÉ°Ç¨!%Íù+F»nˆÑ—8bÌ”QŒ9´cmÝ‚±-`œµºÇÖã<·Æ¸A÷òyŒ›qØfb‚¨9L¸ ê~ÆDÏ\Z1ÑH&¹Ö‰I˜´`“í·ÁV-lÁV­üƒpQlu*€îÑÄŒ–i`F:f”è‡½WÇŒ¹s˜±”ƒ¿;€­IÄÖÜSÅÖ´”a&9ç0ÓeNØÿ!l£uföã4fn³\Z3O\ZÃÌïça[aV˜Õ#6f½Þ³ÎÆv^a;¨0¡?¶ó)Û¥ð\rÛmR‰í¶\nÁìÃ0lÇ¶§ê;æpÇÛðÛÛ»	s”\"˜ã*ylçNlÿÀ!ìÀ_UÌé\\æ¬è‚¹p¯b.ƒØAÈsÝü\ZsÇ>cîæ~ý\næ^ö;\ZùóºÕ‚ÛWß…°Ã±“#}˜ÉÌ×óæa;¥Ý…ZkŒÝ¢ƒ=‚ag?Æ‚œaìüÒT,xí2,ø£\'vI9»D»‡]:ä†]î7ÁBÞŸÃÂüæ±ðÕ)ØõÇ—±È;[±{XÝ‹\n¶Ân–a7ËžbÑY±˜î,æëS,V£‹ßò‹wýŽ%\\‰ÆB¶b‰Eÿ3×‹Ý¡ŽbwRcIW+°¤±ÃX\n[Kõ„°4æ/,ío–¾T‚e:7c™õK±ÌE,K¸ËÚpËÚ£‚e¹ˆ±»‹Ã°{²SØýö`³3öà¦3öp	{ØoŽ=æìÅrï*cOŒ³°\'öQX~¶+ aMæX!ìƒ•8c%\nXé½Z¬¬¤«hÀª¦´°š\r&XÍ…z¬Vb‚ÕecõK`\rç5±†B¬áÖð·kTÌÃšb$ØSiöì5{ÞÜ…5Ûa­„ßX+«kí¯ÂÚˆ¬Í¥k;Z€µ5Øz.Ö¡Ü„½¬°·oÃ°w¹Û±÷ò±÷&ãX×’³XÙëfM`¢c=•eØGµ×X¯•\ZÖ¿ÑëwB±þcêØ§6wlØHAæ°ýÏØ˜àö•²ûvÉû.ïˆ}_9Ž}?¯†}ŸzM¶ObÓ6íw›Î¿‹ÍD^Åf¢—b3ã†ØÏ¬ì×\"ì×ë\'Øz4ö§þ5öwÑMìoÆ%ìï´öÏ3ûª‰ý+×aËmµg+g/ÐÛÊ^èÉ^p~€­Èqc+ÚÍ±=·³•ÆcØÊöélå+wÙªZïØª«EìEê®l59”½ØÆ‰­àÅÖØÈÖø»Ÿ­é°µ -l­Ñ\n¶ö²=lm7y¶¶w[û½¼Ï†­ký­;²Œ­Ç:ÇÖ+ReëÕ%±W\\CÙ+òKØ+^]efž±[6‰aÆ&¥m`“…ßØä-OØ”ó8q|ÀFâþ·Ï?³‘ïþlÔô›ê¢Ê¦y¸±iCûÙôêl¦N2›Ù¾ˆÍ*ËbcïªØì|M6¯ÞÍë©bš+Ù8úß¼Ê½©e‹]Ž±Å†ÙÒ%ëÙÒ¤lv-k±gË‹Ùú¾_Ùú©\rlýæöªç\0ÛhÇ$Ûhp9Ûøb{ÝiŒmr\nc›ª¦°MÃŸ²ÍHd¶æÁÞd1ÀÞ4Ëfo69À¶pa[n»Å¶‚£ØVNl+#¶µ¹ˆmýKÈÞ~½‡½£ÙŸmšÆ¶é^Ä¶-wcÛ™±íUì=hÛÁÏ…½Wn-{_h{„:{ÿ—1öØãìb¶ÓZU¶³ÂZ¶³›„í2º„íò/š}H}ûHU+Ûcl˜}´y€}Lo–}\\í&û¸Ø–}b½ûDvûDwûäº2¶·ãr¶/S‡í[TÈö·ÔcŸâ.fŸ¾ö˜}fþ$ûì²Kì³÷ÚØ·þ²/<Ša\'³/“6°¯8}d_©ÄØW½w°Cø?Ù!¯dì0¸™¥ÈŽ»ÂŽìPgßfßš5cß6Ógß¾ ÃŽÁgØ1žqì˜Ä7ìØ#Øq§W°ã†o³fBØI/åÙÉ\rÃì4+vºùv–ëoöÝÕBöÝ·vì{ˆûÞŽ-ì{Ñìûj÷Ù÷÷4³ï²³•KÙujØ(UìGv$öcƒ)öãÊì\'Âì¢\'Eìbù9vq]ÜÏ.žÙÂ.y­À.}PÍ®44`WÑýØUÅìjTÌ®«ZÈ®AÙõ›V°ãìg÷Ù/$ö÷£ìL‹ÝŠ\\b¿\n#°Ûäÿ±ÛôæØmè»Ìn3Žb·g±ÛZgÙ7—²;ÿ×Ê[2ö;Å:öÕGìÛØ=+’Ù=Þ!ì1ÛØ½‹Ýû}úÊ[Øýž†ìþ`	û“á[öð;öÈÑ«ìÑòbö;‹=Vq…ýmµ-û[µ*{²<–ýTcÿúÐÂþQÁþ³b	ûÏ\\,{.p{îf{®ú5û¯®7ûŸð0{ÞB•#gþ•#w™Ç‘wå(0®pÜžs¼.à(¢p”¾÷r”WÍsT|!ŽªËÿx<à¨FsTsÊ8ªß¼8Ïp	sÔÆ8ê×ws4.làhÄmæhÄ¿æh\"!œ%º-PÎ²®íä\0ŽÎ’ ŽÎ!ÎŠ½œ™—8+ÊÝ9+Û£8+ß28ÄŒžç€!Û9$¥Mh1ÂÞzpÈd*‡ÌáÀ9™ÆAFç9è6‡º)‚C½>Á¡;Éqº{9LÒy3ø‡ù€ÂaíYÀÁ§9ì[\nîôn/©’ÃŸà¨¾Að0WUààKk8øfŽ8²™#3SæÈ6§sd>‹9«^Ÿà¬þ°•c4qŒo°9ÆÓZœ5ÄuœuÔ¥Ó}:œ€-gãzsÎF7ŽÙ`(ÇìKgS€³­ÀŠ³c«\'g‡ÍmŽ\rVÅ±‰áìÊ<Ï±ÓÎ±óôäØ]¿Ê±§\'rö6söM>àìg|æPÎåÈyÆq9ÛÄqÕ”rÜjÒ8‡ÍVs<’VqŽn~ÁñâUp¼\ZsŽIhœãW_rN:åx·{p|:ô8¾VtŽÿÁVŽØYÎ)I9çô¡3œÓóœ³¢PÎYwçìíNà†vÎ¹0ç’ŸséàÎ¥Ö&ÎÕóÕœÐôtNè(›®qÂË>q®+\0œˆ3Ndë%Î\rê)Î\ráÎ‚­œ¨<œs«°m™Ã¹\r¯äÄ*[qbo|áÄ»îâ$h¦q’pÚWr>žå$>YÈIÚoÆIšVç¤ÈŸá¤„×sRnDqÒ—&q2G9YYœ»Özœ{oä8÷&J8÷å$œû†9œûƒiœì#œÞQœœJ#Î£‰§œ\\¯vNnéSÎ“W_9y§~qò^Np\n´+9EF9Å”\'œâ£Û8%ÃcœR­NéúhNyøSNÅ©N¥±5§ŠlÆ©I¾Å©}±Sûã§~ùnN½§qœÈi’´qšº×qš&pžz¤qž)lç<[Èyæ©Ìy–ù˜ó¬Bób¯óòg§¥Ð‘ó*Ã€óªý§-æ¼á†pÞ¬‡8opÚ\'ë8Å/8S79o·¿â¼ãI9ïÖ÷pÞoŒåôìºÌé}:ÃéƒÕ9}ôËœþ…nœþeÏ8ýä5œˆ&Î@‘7çÓþœOew9Ÿšõ8ƒ^1œ!¿œaÕ	Î0k€3Ì?Ì•ÛÈ+³àŒ}‚8ãÆ\'8_Þã|õªá|ÛÂ™Ô$r&Ï7r&£9“O²8?VàœiÒ2ÎôÚ4Îô1ÎTÈ™åü)¨äüyz‘«˜‘ÇUü—ËUºgÍUúp†«Làª>lä.Òšåª›½áªgÞåj*|å.éåjorµï8su\Z¿q—ïÍåêêésué®\\Ýæ»\\½ôTî\n{îJ{.aÛn.áãK.ñu à†l./Çw°¹ g¬—ã’Úq!yw.”Ä%_yÍ¥¨üæR’‡¸¨Ñ..3SËR°å²Wjq¹õC\\^m—ŸæËx?ç\n\r¶s…¯Vsqã»\\¼\ZçJp%®Lq†«¿«„«ók0Å]íq»:£»ºz‚»zP…kˆÀ\\Ãý\\ã¼§Üµ£u\\Óg–ÜõÛ·s×ç<ânðæš‘ßp7»×q7Ç\ZrÍ¯r·är¸–T¹Ûv\n¹Vÿûµù\Zß¸»ûörí?xr÷¬˜âîyãÅuÈä:üpå:Ìs÷®zÇÝ›ÁÝÇrÃ¸ŽOz¸ÎómÜƒ–Üƒu—¸®•×¸nŸ/pÝ·¸‡Jz¹‡C“¹‡#Ø\\O§s\\ÏŠN®—Ÿ	÷)ƒ{lÓ^î±¶4îÉÎŸ\\¿L®ŸÞvî)6÷Œ|÷L„9÷¬ÙSîÙÝ¦Ü€Ú?ÜóczÜó“÷‚ûGn°Îî%Mî¥†î•x]î•)6÷ªu÷Z(›{­Û„*È\r=ÒÊ\r-mã†ÜÀ\r{·{§q#u¸}ªÜˆ!=nÄo.7ÒÏŽycŠ{ãï$7jÏKî­2÷Vµˆmuž{[yœ{;÷(7öÊunlÌ?nüIWn©œ›po	7¡ü\07qW7q>€{G˜›‘ÌMÊÌä&e½á¦ÛÀM\'+qÓ›¹H7£æ\Z7k	ÄÍŠËçÞ5YÁ½kÑÉ½ë/æÞ­åpï/½Î½/<ÊÍNÄ}@Òá>\\q^ØÃ}˜ø‡ûè2•ûø››[ý†ûdÙ\0÷Éˆ7Ì-ðçNÜ¢Ò\"nQó\"n1jÊ-qrá–YsËðýÜ²Õ~Ü²Ý®Ü\nCSnå®½ÜÊ\'ÆÜÊSÜªÞÜê…òÜš×ÚÜZ¡\Z·nv·Þ©–ÛpÞšÛø¤žÛ”\'à>½¨Ç}¶Å›û<æ3÷y+‡ûB÷;÷Å=÷%ºƒûòH1·5)ŸÛf3Êm??Êí0ÍâvÜJávL[r»äÔ¹]·Öp?‚AÜwr{O¤q{¯+r{ãEÜÞ¾ÛÜ>ø.·Í9nt·¿¸ƒ;ðlw`ÊšûIu÷“k6wàIæ/îä{Ûp‡kš¹Ÿ/ØsG¦rG~ŸáŽÖ]à~Qcp¿ÜNç~ùÁýÖWÇèþÈýÌsdTrq§‡l¹3¢bîÌx?÷§åþ&s~=Îý¥úžûËä2÷·ñzîŸŒ!îŸOÖÜ9Êyîüí>žü¶Nžüû2ž‚YOá¡oÁ¼2O1>†§ØÓÀS’næ)[½å-¬á-Š2â©©+ó/XÆSPÆSÿ~§éÅ[²¼•§mu„§ãáÉ[žWÆÓe¾çéUÖòV>iæ–ò €\nx„Ù<Èg-|\ZãÁ§xˆÂ+º³–ÇP™æq’Uyœ´z—•Ç·kâ	·«ó„³í<ÉëžŒÈ“‰ód¯vòVŸ\\È[ý¸ˆg¨ñðŒ\"*xFã;xÆ6ŸyÆGªxk	ª¼uÙÏÔù!o}f\noÃö}¼\r/Bxñ¼[¯ó6îKãY¬ØÍ³t2âYV{ó,?<çm}Dämã¦ð¶oâYEÅñ¶3ßòl¢+y;/*ðv^~ÏÛe|‚·ËV·ë¦3ÏÎò1Ï®ô$Ï¡õ>oïã¼}q¼}JxŽN\Z<§k,žÓO]ÞAÙNÞÁygž+o„çæö„çÎ}Å;ò©žwT=œwtb\'Ï+ûïÄúdÞÉU}¼“•î¼“s<ïÂyž¯þ]ž_vÏý\0ï4äÊ;³Ñ‘ph/ b/(Ð‹TàÄ;—õŒwþû}Þ…öL^pÊ5ÞÅeOx½\\y—_à]Cx—\rœxWØ«xWsyWƒ³xWïñ®¾4ä…¬YÁ»WÅõâ…ÙñÂ¼2yá^ž¼ëÁÇy×ï\\áÝ8vµ#”u\"ŒMyÁ»žåÅìzÈ‹yéÄ‹}(æÅÓÂxñNé¼ø¼„Ïy‰¾Þôƒ¼$“N^ò/¼ä¾‡¼Ç½¼Œdo^Æ\\/3x/3ö/k‹	/«$w÷Ì!Þ½Ô‡¼û¡©¼ìoÁ¼ìéÅ¼‡jyâx¹Ûjy¹Mµ¼¼÷i¼|›¼ÂûyEwTyÅ¢S¼â\\”W’1Ë+Í}Í+sðæ•Åüà•ÍòÊKnó*¬žò*2³y•jt^¥Á?^t‘WÕÑÆ«¯óêÖ>åÕ…¶óêI[xõ&^½s8¯ÚÈk¸ú÷´µŠ×¼o¯%z÷\ZÆx¯´òºlry]\r¼®‹ßy]Ù>¼îmd^÷åÝ¼mÞ‡Æ=¼/ÎñzLy}¬`^ßš#¼¾©¼¾ñ¼~¥£¼Oª£¼OÇxŸÎ½â\rž–òŸà\r“xCµÇyÃÄBÞ0bÇvÉá\r‡êñ>¯äñ>¿ùÎûz—ÁûV2Ãû~”Ï›Xó&Ž½åMÜXÏ›¤b¼)ó»¼ßŸ¶ðþ|ŒåÍ2Óx³‰N¼95UÞßQKÞ¿?é¼ù1o~b-o~ÞŠ/ïLåË_\0ù\n:ù\nåùJzb¾RÎ¾\nPÌW1²à«DæóUzÈ|ÕŠü…Çüø‹Çø‹¸ò|5ñj¾Úº2¾š…¯V=ÄWë2åkðÌø\Z•>|._s§&_³c7Áˆ¿,á\'_W§ƒ¯Zóõ®:ðWöó‰,3>qû>1µ•d-ç“ì.ó¡“–|XÝˆO¹öÿâ£„A>JûÊ§.$ó©`\rŸæ®Æ§]¬à3\"I|Æ“x>s¥\nŸ•~œÏê~Ìgÿ~Æçüöäs«’ø¼+d>/Õ„/H÷âãËëø¸%{ìæ‹lšùâ³Ö|	=Ž/5kàK÷Åð¥^š|ýþ§üUAy|ƒm#|ƒ÷æ|ƒ‰?|ƒ_ƒ|ãÚUü56Vü5®Õüµ«–ó×©Lñ×­tä›˜Ìð×§Õð7¨?ã›=îâ›•ˆùfu\"¾Y}-Ó›F¾ùacþ–s/ø’;|ƒõümr*üm¾·øVËÙ|ë3ëùÖÙ“üíGBø;#=ø»l™ü]³‰|[~ßöÊ0ß6<—¿;ï ÷—Ë|ûI>ßþ×C¾C¿–*ˆ€ï´a\rßi[ßåÐ*þÁså|7®ßÍú6ß}Wßý÷Qþ‘:*ßc‡ß£ „ô…ßóˆ<ß«°ŽlG\"ÿø­4þñTyþ‰uþÉçs|ŸXu¾OÂU¾ßV%¾¿ÔŽï¿Óšïpÿ”r/ÿ”S\rÿô›Mü@×Kü Èþ¹Àüó}±üÐ~cþuç?üE\Z?b<…IÜÇÌ?ÉZÍàGÍióoú*óoußãG?äÇ_À™ýÃû¸’ïõ‹Ÿ°ô0?ÁY‹ŸóïD~â\'qƒøIFùi—NóÓ—›ð3¯©ñï¾ZÊ¿w®†ºÀÏfÜâ?œ¼ÈäÈ<¾”Ÿ÷EžŸos’Ÿt‚Ÿf¿P;•_ø±‚_¤VÊ/š±â/\râ?ZÍ/õä—¾‰äWXîçW¸ˆø©‰üŠ&S~Å·B~åž~¥¿-¿Ê\ZâW‡ókVà×±Zùõ&~}½„ßðÿû£ÇøÏ[oó›·ñ›»2ø-»Õù-3¥ü×CMü7Ûnò;Ô;øûóß:—ñß~âwÿò?È)ó?è¾ä¬Wäl™ãì¬à÷Nßâ÷Eóû×}ãhà†ò‡Ø-ü¡ŸGùÃQþg1þ‹Äá¤ñGfóÇRÙü±fþ—­‰ü/5#ü/“¯ù_W:ó¿¸ü¯œçü¯qøßønüoŽòüo¾¹üos+øßØñ\'îð\'oñÀuü^Nü™ÔküŸÌ\nþÏù?\'ÖòµŒòÛáÿÑúÍÿSçÇŸuBøs—æøs«ù¶òÿ‰ÂÒqÂP°@a¶^°à_ X#(~¾(Pa¿¨XèT³ª9wþ^ó,:c)PÓð¨yÓ\ZCGš¤{‚%®Z;ËË¬hÏž,ÿ·@ {.G ›Õ.Ðë—	V0Á\nÛ¿âq¶\0ØøV\0œ|* ­½* õ¸	Ècogåb±\0ùb/@Xô”¥€:uL@[ðA@Kž06	˜\r÷,¢\0³]/ÀnÆØRûîs\'j\\À[Ið|#|³dàøf ¬G xg.¶¡Ñ“\0¸{F ÉH~/¬\"Ñ«.ÅVŸù%0´|(06ÀkïªÖÞ÷¬K,˜¬¯˜ì˜’pé:oé–3‚\r¤`Á†ƒr‚\r¿O6>:\'03ÿ\"0û™&Øt5A`ÞúG`á\n¶>X)ØÖ”!°²X¿%°~ø?7Ûgt6¶I›Ë¦‚]¯[ÚwíVS]ò€À®ËS°Ç^S°çn’`ïâ}‚½:ûÓ,~WœÎ;	œ5\nœ/o¸n\nJõ®Ò‡×7m7ñ„Àý„†À=/BpX1Ypø‡XpÄÖBpä¬žàèþõ‚£eÚ¯Eq/¯ƒ/_¦àXQŽàx‹²à„ÙVÁÉ‘À;ð¨À\'ôºÀçº®À\'¦Ià›KøŽoøÑlþÛÂ§hÇý‚sºGçåë4äÁ•³‚‹ðiÁer–àraœàŠÏ  Ä\"Opm¤IÊ> ¸®¼Tp]\"ˆÐêDÜÿŸR}Aä±U‚ˆ¥àæ³BÁ-“`Aô¾LAt{°àv?]c‚7HsÆL§Ô\"H8E$l$fë	’äe‚$ç$ARÀ  ¹?U¢z[2öHZ¥!HëÒþd.\rdrh‚ûˆ@}ÎLóL,È™Öäú\r\nž<Ú-x21!È»z]×ò}f‚<AÑ¹AÑ%® èE” Ä&YPúó˜ t6LPÖ		ÊQ;Ayƒ· òÁFAe9]PùÙCPÕ’ ¨qÔÔ¦XêGB\r’PAÃ¶/‚Æ\'!‚&Ë:Áó…ú‚ç·×\nž9.xñ°NÐ*IÐš:\"xõ*xý Mð†÷GÐ¾p‘ ½¥SÐáá è~\'èìý.xg<+xwQ[ðîÎà]÷ˆàýMÁû/‚®¤A7\'RÐmp[ðá¨‡ \'Ò@ÐsÏNðÑþ»àã€‡ 7EYÐwôÃ §…àÓ‰\\Á§´>Áàm?Áð£‚áÄs‚‘}g#yy‚Ñ•)‚qØ@ðÅ^A0Á?&˜¸7\'˜øØ)˜´œL~„Sn‚ß~L	¦›?wütIü.èüž¦fM¯	f¯ÌÖi	æŽª\nþ*Ó›‚Ð%Áü\'‚ùX(çvG(—n ”{pP(—÷^(ï/T°•i\nœî.¸—!\\ð•-Tµ”.ºü\\¨–}_¸Øð¬Pý}µPsñ¡Q(Ô² µìç„ZÂ¥ö¯„Ë~µÆ„Úi€P;ÝM¨¦$Ô=tB¨›L¨÷x¡@ë\Z?\n‰úuB	I7	É††BxK¶¾b$¤ä5é!µ“\'¤UŽ	{\\„¬ÎÓBla¤­(äèÁBõŠÃNr+ï\nENšBiE(sx$ÔM\Zèð„«ƒw	\rç›„FDU¡ÏXhdó^hìg\'\\+‡	×Ž–M2ö×z+\\8 \\7.ÜðŽ*ÜóN¸ñ§‚p“nÐü’¡Ð<ÌRhÞì/´¨VZô®ZN<nµY(Üú¶E¸mÂNh½´Rh}\'B¸]ë–p‡Q¢ÐFí–ÐfU±p—E¬ÐÖù»p·Ú]¡½n…Ð>eÐ¾ô·ÐþÏEá^x³ð@òÐùÈ5¡Ë–F¡KKµÐh&tï²ß\"<l¿Hx8ÄYxøíoá‘µòB@¡‡ÅO¡ÇsE¡çÃµÂcVyÂc{´…\'>õ	OZmzG}úký?M	Ïhf	ÏÔ¯†\n„AgJ„A%#Âs–[…ÁòK„ÁG„Â‹K„—®E	/¿ì^1Û\"¼’;-¼Ò ¼2ý[xµÜBxí½Tzh©0,S$û+¼?#Œ„î	o,[\'¼A} ¼ùÈSý;H3]\'Œ•æcØ	5žm	Â;ï…IiÂdß½Â”&P˜VvS˜ö6O˜.ç\"L×ß\'LŸf`Â×áý¯…÷ƒ^³÷ç	³o&	l[.|\">´>¼›$|Ø°]˜³Ý_øèa0O¨(Ì;Š	ó7\\æ_¿#ÌŸÌšÔGž‹‹¯{	ËóÆ„•¢Qaeù5aÕÿÚ®^—+¬…Õ…û…56Ï…\r¦ÂÆ÷Ë„#aÂ§€•ðÙá.áóåñÂ–¡Â–û„­=ÂW…!Â×´{Â7A«…ífÂöP]açªïÂwk´„ï	»4“„]m©Â®ÎJaw†·°gëAaÏn}aŸÿUa_ç.áPÌrá°ÿváð©qáðÍÂá¤oÂÏ‹\n?oò~;±Xø-ß@8e\n§÷Î(\ZjÞþ\\)üuó”pÖŒ\'œ;> œK¥ç*\nÿžÉþóŸÎŸ®ÎW¤àrÚ{p\ZW0½‚+œ=Œ+¼~ˆ«üVÇU§6áª?ªñ…è|Ñýµ¸Úýo¸ÚK#\\­EW\'©â\Zò]¸Æ|i(¾tr\Z×a[á:µør¾®KœÇuËázKúp½ÐÝø\næ8¾R²_¹‰¯¬]€ã„„‡8é¢\ru\\Æa~#Ž¨ÆÑ¥\"œ\ZMÃ©¯~ã´.8­]§G×ââÎ&áŒççqÖeCœßŠcÿ\\pÎJœ;ÖóÎ´ã¼šÍ8ÛnœŸ‚½qA{<.øgŒãQ«qÑß¸˜éŠ‹÷]ÆÅçGq)U—Þ×Áeä\\&øŒËÌ÷â²ŸøªÅðÕq#ÕC¸Ã7:dˆËöâkLÞàkÜ¦ð5SÊøÚ¶7øÚq7‘zã¦ö-¸éÈS|=è‹o°	Å7®Á7º;àŽàfÛ-p³ƒDÜ,l¾)Â7Û§âæ:Å¸EYn1ÏÂ-Í›qK¾Í)ßV²·Z)Å­v	qk*€o?ËÇmò¸Mßéý	ß•ƒïjwÇwÃmcËpÛ\"\'|÷ûøåÕøž•‰ør/¾Ç|ß°wˆÏÇFà{5•ð½z»ñ}Ô½¸ãÅ\'¸cõ|ÿà_ü€²3î´ïîäVˆ;]ãà.«\rñƒÛpWBîöh!îÖî…Ú°?üØ?üïî!Ú‰{¼û‚{Þ}„{V¶ážÿNà^”püøK\rüÄÿu<@Æ½	¸ï-GÜ®Žû™À¸¿u9~êÑWü,Å?Û#Ä–‰ð\0x?6í\\€Ý\ZÅƒ†ãçä^ãçÈñsv~ÞH?ï=Œ_0\'âjÿáÁp:~1Ç/5Æ/ÊðËÏñ«™Oð«ÏôðÝ»xÈxÈtŽªàá²§øõ\"ñÿXqÞx˜ˆGÞ~‡ßˆ9€GiÁ£Þ¾ÀoåDáÑºæx|Î?<ÑtO*>‡\'Ë«â)à?<å‡žÊÙ§¾¬ÅÓ\\ãYþùøÝÀ.üžà-~Oÿ~|‚?T—Ãs‚¼ðœz	žh‹?Ùƒâù;ŸâùyðÂ3Gð¢-xQV^ô2/úmˆc?ñ’Oñ’?¼´0/­>—Näàåxå)\n^½D¯©6Äkíºñº£xƒñ¼‘îˆ7íÕÇŸÞ;?ÏÇŸ\0x³Ÿ5Þáˆ7ÿÚŠ·Üû¿â§â¯ÄqøkîiüµXo·Z€·WnÀÛGnà›	xçò|ü­_þ6Ï;t—ÇÂ»L²ñ®¡z¼ëûU¼[»ÿð°ÿxlèÃûFVàýãýõ¹ø€Å>èØ]À‡;®àŸ‡Uð‘e©øÈÏ)|ÍÅG­öá_VRñ¯Ž\rø×“;ñï—>á“¬ÝøTÑþÃ\'Ÿ¦xáÓÅ­øô\Z>óë >ó§ÿm¶\0ÿ½=ÿííÏ”àskÎãÿî·Šä˜ÛEòN‘ü{@´àÉ‘b(Rõ®©6¥‰\"KEOuŠ^f‹™øŠÍm-6\niœ‰-y³Z´dJ ÒâY‰´ŽÜiÝ½\'Zª4.Z\ZüA´ô¡T´l•¡hYn‘hY©L¤Cø Ò	±-ß[)ÒuòéíÊéi‰Vp£E+|­dÞ­¬Y#\"<; \":Ï‰@ª™Ü¡!‚&1Ùû˜®TQª9®(BúÊDèT¨ˆ–K1*þŠ˜çDØýÃ\"Î•1g _ÄUPqc\"î‹\"oq´ˆÇ¬ñ2—ˆxzD|=–ˆ=òÿÁó¦H°²U$ ,	ªCD‚Þß\"ü‰H4ê ’uu‹ôëÚEÚM\"ƒq-‘áöý\"Ã=™\"ÃÎ‹¢5;ö‰Ö„»ˆÖ¡¦\"ÉœÈäx«È¤á¡h½¦§hý1™h}È/Ñú¯¥¢\r\\\rÑ†uƒ¢\rGEÊn‹6vN‹6þ^(2#Ö‰Ìv|m2	mº Ú²ªG´%¨_d¡j(²X¤\"²¿%Ú\n¨‰¶ÞX-Ú¶·]dåðUd½ÃO´½‰.Úµ¢Jd»ØUd\'§\"ÚR\"Ú³›(r8Ñ-rHIíÕ\\+ÚG[\'Ú·û›h_ñ1Ñ¾–õ¢ýÝ)¢%\"§g«D®žŠ<´‚DÞkDE èØ³\r¢[Ù¢e¹¢“”jÑI;WÑÉ¸w¢“\rA\"o9+‘wÄs‘ÿSeÑi¥Ñé–hÑée¢3Û1QÀ›iÑ9þœ(XíŸ(Øö…(ØS(\n\rßûŸÊÑ¥Sá¢Ëýª¢kÝ.¢PÓ^QXò}Qø<Qø¸¾èú:kÑõ¶JÑõËD‘…#¢x€èÆîÇ¢›÷óE·níÝ¦ËD1ìjQÌ¦nQLæ5QœçQ\\P¡(Qõ·èŽ©—(‰!Jâ:ˆ’+™¢”ÎQ*ÿª(5ßK”–¤$J‡´D™{ûE™7D™iE™U4Q–‹¡è®ñkÑ½…gE÷|•E÷þEˆ²Ç,D´·‹4n=ô+å(¿å\\ûß&‚¢œ>%Ñ£ïEä	QÑšLQQÅQÑügQ±ýsQ±ëQqXº¨dÁQ‰’§¨Ôë±¨Œ®**¯o•wNŠ*G.‹ª®ÿU×è‰jd?DjlQ?NÔ”Â=Í0=Û/=«ñ=Ï–‰šù‹Z<E¯Žº‹ÚÚbDíÿÙÛ36Š:‚è¢ŽÁFÑ;Þ”è]_¶èÝ7Ž¨ë,_ÔÝ²CÔûÌ[ÔGÉ\r¾ù \Zž\r}Öw}þúU4b*\ZÕŠ¼–:‰ÆBÃDckD_øÇE_¶¦‰¾šªŠ¾ÝŠ¦Ì»E?¶ŠEÓZdÑLêÑO¾‰èwb‘èOÇÑ¬Š©h¶ç¬höÛ\ZÑé´è¯ç±œaˆXÎ7Y,3\'^p¿C¬Hý$Vô;(V‚Å‹öóÄ‹Úˆ“,Å‹³4Ä‹+8bõŸ/Å\ZLw±FbˆXóè.±–ÎJñRÓ2ñÒañ²%Abm$Ö±X!ÖÙú^¬ûJ$Ö³þ+^‘­%&¸öŠ‰û£Äà‡…bèŸÐä\r1,¬ÃµbxØMLq®SŽÿ£Õ41µr¯˜æÓ!fP11CŸ.fÜgˆ™»#ÄÌþ41«Ð[Œ­Ù.Æ2|ÄlÑ!1{xDÌÙpNÌ[Ló Ž˜wEÌïˆïZÄÂg÷ÅÂæ1n *Æ×‹N®K2ËÅ’ò?b)rF,›Ú$Ö\'ìë‹íÅÇcÅ7]ÄŸôÅ«]TÄ†[ÖŠ\r“‰\rœÍ•‰…\'Äk«*Äë® b“{¡b“’åb“Æx±I—­xýÐVñåñ†ãÄÆ.‹Í\Z¨b³v9±Ù§±ùÂ(±yœ¹ØâØ±Åko±%;Ll)m[þ2[éü[7ÉÄÛ;Î‰wŒPÅ;·®ï|ÿV¼kí¸ØVÑNlçõG¼ÛJSl¿•(ÞsÕVì@t;Xˆ\\›Äûø‰÷Û\\X‰à;ÄNÕÇÄÎzÙb?uñÁ\\ŽØUG vC]Ån§Ä‡¤ûÅ‡íkÄGöú‰=Þ{=š_qH|\"VO|Òôšød~¦Ø{w¤Ø»û0(bŸ{›Å¾ñiâS”Bñ©f?ñ©©­âÓÄ§¯ÜŸÏx&¾°”&¾ Ë_€RÄ\niâ`~°øÊãFñÕVqÛZòãŽ8”¶Efª/û?7ª[Äìpq×Hy+T|Cë8êÞñÍ¬kâè[WÄÑYÅ±¿çÄq–;ÄñÖŸÅñAÎâø=âøhq|í%qZ,N°Ø/NHÞ/N¤k‹=JÄ‰â;\n=â;÷­ÄIçûÄIwŽŠ“\Z2ÄÉÕ¹âÔh‰8­ \\œNŽ§_*gTEŠ3|gYÌŠïÊ3ÅwW|ß5ý,¾_BgçÍˆ¨ŠÈèâ‡Q=âÆañc?Xœ›ª)Î}òGü„Šˆó8/ÅyÎ+ÅùNËÅ…Ò\nqa®ƒ¸p@Q\\4ñV\\<A\\²âˆ¸Lã¹¸üñuqy«Ÿ¸\"5X\\Ù²C\\¥øP\\åQ\\{k½¸Ay—øé÷qñ3¹]âgÂsâgïpñóÔ\ZñK%%ñK ÷\nÅ/Íˆ›ßˆ›»Ÿˆ[8â–ä÷â×ìÇâ×¯çÄmoÔÅm}>â7{TÄíãþâŽÝdqÇÿµè\\´FüNi¸ko•¸k8_üa¹†øÃ^ŽøÃ‰qOašøcÌ¨øcv´¸—²H<pÁ[<tö¸x¨ÖE<Ôã&þlõD<úRK<6¦\'‡MÄ§«Ä“fÝâ\n-âëêÄ?óÄ3\Z±â™žrñÌØ1ñÏ\"™øg‹‰øW^‚øÏ©ƒâ?ÿ\nÄ³¡¿Ås5â¿«¶‰ÿ]hÏSˆçw:KäÚKÈOHØØJq²Déº¶Dé‘ªDùË‰ªÆF‰ê\n‘DuÓgÉÂ\rC5_êÿ¸JÔòl%‹õ“$êg[$ê‰;$êowJ4B3%šý’%K%ZNY­¬cmõ‰ö^7‰öØÉòÓ]ák‰®8F¢ûK_BØ.!:êKˆs]hù=	¹ÈE«ÔH`-DÓ»%ÔÝ5êžÅºÕq	}w„a±CÂº¶X‚qÿJ8k$ÜÍ—$Ü=ÆÞœP\"Þä+‘ªxI¤›I’UZ%h‰Äàä˜Äpw‹ÄèÕw‰1q½Ä¸™)Y#ë¬iO’˜4Þ’˜nš—˜\r˜¾]&YOÜ&YßƒI6Ž\'J6]L”l†®KÌÅk%–ûf%ÛÎXH¬t—I¬\rkGL²ýþuÉ“’7+$6ì›o$»Öî’ìêø%±Õž–Øžè”Øž.‘ØÅJìŽ5Kv+zHìO=•Ø×œ”ì1û\'qo”8¨\\•ìsñ”È>!qúD’8[ÕJ\\N$—J6OJöý¸NIÜíò%‡Œ¬%‡7hK·ÍH<äç$±|ÉQù‰çµ/KrBÞPrÒ¨Kròµ©Ä[Ñ_âå ñ	”ø2Š$¾ÓÉg¾Ä6^rJù™äÔË)Éi…¿’ÓO§$g” É™Û‡%g>Š%g+$Î$	’s´’s›¾IÎÙIÎÝì”œ+âIÎ«=–œï\\(	¾Ó/	.],	®%H.ÒÿH®°¿J®ŠßIBä3$a\ZÉ’°êDI¸ùIø±äº¥$âÔ°$âq—$’\Z-‰”\rJ¢›$7e’›.Ñ’›ÿ¦%1Z$IÌ:KIÌè2IÜ¡’¸´`I<Ø)¹s V’ÌU’¤ÔëKÒ 	Išû¸$]çˆ$+3Q’õ$Hr¯*MòPï¸äá¬š$Çëœä‘jžä±F–äqE’k²\\’}S’› Ô×H\nšó$…¾æ’Â«Ñ’ÂxSIaÒ¬¤Èñ·¤h¸RRÂ{,)I%¥©Þ’² 1I¹ÜCIEx¶¤2ç¤¤²÷ ¤JÏARm˜%©³”Ô.—“4¬\"J\Z\\+$\rãª’F$HÒ8yRÒtöœ¤)ÿ´äi¶Pò¼—¼(ó‘¼|9#i^\'iQß%i)ø*i}KÒv3BòfåI{ž¾¤£ú¨ä­ì¹ä½‹·ä}ùCÉû)CI×Ë|É‡E)’m’¼DÒ#Ù*éÙÛ/éé{#é½¬/éí×–ð.JD_%ûH>ùÔK>u&J†VæJ†7\\’[NH>J’ŒšyJÆ$c…‰’ñã’ïëÊ%ßÏ×I¾_0—LhÞ”LÐÕ$“¢ÉdØnÉä­HÉÔ?%ÉO]ÉÏPLòë¯’ä÷APòÛÇ\\ò§óªäï¦@Éß’.Éß©/’ùƒƒR9ÈT*¿­HªtRºp³•ta°DºHiNºQ—.:°]ª¦ùCªfÓ ]ü}—TÃ}Dªie#]¢øAº„ƒHµH‡¥Z‡ÏIµnIµ^ÛKµþ\\–jÍuI—v†Kµs¥ÚŸiR|ŠTçe³T§Ÿ$]~ò TW’®tü,%8}F´¥Äó¥ÄÎËRÀ~D\n¸ëH\Z)8â)%tKI{º¤$ÇRÈ“%%WÚKa8\\\n_Ú&…+Ë¥”–)åÿK*J©‡ç¥Ô[3RZl–”ž¾UÊÜÃ–bîªR,kDŠ\rÆKyOÜ¤ü›{¤Ãy©à’§W¿/ÅÛöJÅ×¥â¹©d•T*#•¥KeÍERý§©}»tõ©­ÒÕ©Rã¿‡¥kònK×]o—®+Ó–š‰•nHÂ¥j¿I7¦n–n¬Öš™?—šÅ¥›àíÒMæRsz—Ô\\`\"Ýb°[ºÅ—\'µø)µ¼“\"ÝêÿCºÍm³ÔÊS]jí¨*Ý¾“n¯Õ•nÿ¹GºCYUºã$Ýq5@j\"µuˆ”Úe&JíjRûwéžY¶ÔÁÜVê²Mê„m:Y8J\\Ç¤Î‚RÍ>©Kp†ôà\\zpÚQêÚüAê¶mXêæ“&u”ºÓÚ¤îüté¡`Ké¡_W¥æéR¯F9é1£WÒ“Ø5éÉiM©Ï?\\êgHýîKýƒå¤þŸ¤þm©ÿôié™§Û¤gç¤J·¥_Ü¥ç¨w¥ç²JÏUl’žßÔ/\rþÿ,Á©¤—r¥ÒËHzÅ\Z–^©I”^uÏ”^ûÝ,\rå¯’†ÊPix˜H\Záà-˜½/ÏKo|•ÿ@\Z5,½µ¥C\Z»jP\Z¯œ#÷£KözH“Ó^H“«ÿISU.KSeKÓ”yÒ4ò°4ý%Cš,ÍŒ»%Íš‘Þïs“fÛ†I\Z}“>ºðFú¸J&Íë-—œÉ\rI‹Ž¯–`H‹úr¤Å¶òÒ2tRZ–º[ZŽåK+´b¥‡\0iÅi%<!­ô}\"­ZI«¼•Vo–Vû©H«ËKkNK¤µz¥µ¦ç¥µ¯¿IkgWJë€õÒºí5Ò¦$é‹]ÍÒ—«Qi‹¿³´õì:ik˜±´­r›´mFQÚ®[ mw™‘¶û¨I;úVHß¾ÿ!}7è.}¯ì+íZ*íº‘&í~ðFÚý4IÚ³6]ÚÓT*ííQöEVIû†‹¤ýŽléà¦é²µtˆ·[:tð˜t(U[:ÌN—~~{W:B©Ž:8IÇ”ÞIÇ¯JÇ|¥_À`é×€5Ò	gX:q×V:¹Nf§KgºHžÒ‘þJ)–þêz&ý-¦KW¾•þ¹ðO:«»F:/S³”ÎmQ–ÎßLÉì•)¨ï—)\\”“)9È”r¿É”	·eÊµe*Ø.™êæ}2ÕÛe…±²E®›eê$¦LÝT_¦¡P#[úñ§lÙ¥!™öß*™N¸²LçO©l9ÕD¦{fLO;^¶Bé¬l$/[±c½l¥a¢Œ–Ê€Á<xtPFÒø(ƒ¼A×•dPä^yâ„ŒÂß-£Œl•¡Ý2ê¦…2:å¦Œ~ÏHFv–1êµeÌ“‰2–Q¯Œe—&cyre¬g?dØG\'»àœŒ“U(ã5åÊwKeÂïwdøÿ\0½í2±£²L|Ž#“5Êd\Z“2ÙõyÙª£Ùjœ#3ô¶“­Ó»$[Ç]$3)T’™ÚÕÊ6~{,3{_)3×µ•™WYË,bd–Kíe–Î¡²mG.É¶ýº.³ºÜ(³–GeÖKdÖÛzeÖmÅ2ûÃïe{0_ÙžŒ0Ùž¬«22‡ð™Ó·Ó2W|‡ÌõÀy™«³›ÌÍX,;¤\';tz‡ìˆF‹ÌC/óÈ§É<ŠîÊŽzÊŽzåÊ<IKdžþ¥2/E‘ì¸ªTv¼ðìDOæ/óm^&óýâ-óÓò’ù‹þ£°¾£¹|ß8€‹PHÊJd5ìT¢>ãùìñ|öžI¥\"*šVöHV\"#	EYY	ÉÌH²J¶²\"”ê÷ýû¼ÎûŸçœç¾¯ëúã2‡Ü\"!¡¾÷ç!^:ËY*ÄSñét†øEwCüúe!~Áÿ×U\0§ÃÀÇÚÀâ<Hàl$ÈÙrî;$Ô°*|	½·~rG6rçÝHøûÈ]¯/»åzˆ¿ÈC<Hä»Í(]MHÔåDH4-\nr’‰•:‰Ýq\0rÿ\no›I¼w’dÐ\nI:4I²ð‡$…[ARÔ‘”ÜƒG2žGÆ‹GdGÈãQ*$-Ö’¿’^’>¥yjt’¹/ò¬<ò<ñ-$z’-üÉo3€äo,C\nøñ‚LHÁð ¤P9Rø6R$BŠlÍ!E‰Ç ÅiŸ /»÷A^=»)“‚”\0)ë{)[ºõŸHÅ62¤¢œy½é¤RÐ\n©üQ\n©Z“…Tïx©6Õ€ÔM)C\Z.hC\Z<`†i	H£úH£¹¤ékê€¤å¡¤¥lÒzw	ÒZpò‘ûòqX\nÒQøÒùç ¤«OÒm{Òí\\ùëùâ=\rù’§ùª´2¸þ\r2dL†¿Ê]‚ë!ÃFõaËdÈÈ.=Èˆ‡dT^2v¯2–_\0ù&ñò])ò·ò½T2é›™’ìƒLÇ†A¦ST!Óƒ<ÈŒ[,d&ûä‡´dñ\r²ðTY¤yC¯mƒ,Þ{\rùum+äw¿d¹É\n²<u²j[Y\r£BVÿ.Bþ8•C6ÌÅCs¿g!ýÎ@þ>~\rùwoòïéÈ¿á`¨D<*0ùŸ%¨ôd\rTÆX*ƒ×‚Ê<S†nù“ÝZs*¯²Ý¾kºãTÙ$ª{ªg	U#´@ÕÛâ \Zw¡\ZŸí »ÃÒ¡šÂh¨æåPÍÅPíäÓPí!P\\	T§è\nTwßT7\nÕí/‡ê=o†êï½Õwç@÷2†î½”	5Ôö‚šfN@Í¶©@Ž<€’:=2µ(R†Zük…½ú\njeÞ	=æá	=öí$ô8“\r=y\0\nI„Båä Ð(ý\n{ê…ÿbBg2q®ŠôT€b÷B±3Pœú>(þF;\rJ€þ€¢Ÿ@Aå(øDJ2;¥üj†R‰uPÚþ(íU	”3¥Š‡2ðç¡ÌßíP;Ê>qÊ¾ýÊ!í€r…PnÙ¨@\'*|\0ö€Š>~‡ŠGƒ â#è‰¯ÓPk•ÇÐ“¦/¡§Ô˜ÐÓvnP[…»PÛ‹÷¡Ž2³PG|ÔñÆCè¹“fÐsE=Ðº+PgŒ6Ô¹\ruQu†º¨ƒºt˜@]ã¡ÐKz*ÐK¤ —¯JB//LB/¯ÌAÝ„· îf\\èÕ0,ôj•	ôÆ€2ô¦S.ôÖ·MPÏX%¨2zûã<ÔïU4à»54pY\Z4m\r6ÿ\rÆžƒ†ì>\r¥¤BC#!ÐÐèËûÐ;£æÐ»§f w_€F‘¡‘>ÕÐÈl\Z4ZÉ\Z}ÿ94f@\0\rª‚Þ?j;O™…&¢ ‰Ô.hâôshò•BhòÕ!hòû‡Ð‡ÜhJä%è#úè®\0š*}ì»šöð&4mvšþ@šž·š±©š!§Íx´úäL*ôIB	4³Åš•óúìš°\0Í¥`¡y–ÒÐ<\'h^|4ï\rš7ß\0Íû;Íoô€¾ˆò‡°ïBªR¡ÅwhqÀ\"´8h+´øq9´$DZ’¦\0-~}é	}¥†„¾êÆAËÂF¡e÷³ å°h…ò9èë–4håù!è‰ÇÐ7rw ÕÁ“ÐêÔÐÚ76Ðº‹£Ðúsg¡\r÷,¡\ríKÐ&ÙoÐ¦h³&Ú²&†¶ñŸCÛÌ¡ín\'¡íázÐöäehûç‹Ðö‘ÐÃ=ÐÎ3G¡]Ú‡ ]WŒ ]ÆÐ®!hwÉOhí´Oh\rí›”~þxúyQ\rú¥EÚ~Úÿ½: ó:°z\r:$–€¥Æ@‡•\\¡Ã£IÐQMKèX°:ô›’ôLðÖ…N<Üœ‡N§êB÷Ctl‡þÄ¡óyÐ™“ÐÕí\nÐU³YèÚtíët}¹º±Ùú/hôß°LÂÊ¶éI7Lò¨7LòULò&=\0“jeÀ6ëVÀ¤	ê0™\Z$LÖò/L–}&Ûó	¶åÌlËEKØ–Ñk09Ûë0yÿ£0ùL˜Ï¶íŒ2LQ¦\r¶ýYLI#¦|Z¦¦Ry¦*u¦J;SêSï…©ÿäÁvjÃv‹Caš\Z›aÚ’î0í+7aÚ)§a:F]0‘¦ë|¦wèL¯òl; 	;à¤3Pk‡†TÂŒä¦`F¨U˜™•{ÃÌ³`æuŸa‡BŠa‡Fp°ÃKØÑ}0ËniØ1]ØqÓ‹°ãŸ`ÇßAõ2`°;08¼\Z÷Ì€!?_‡¡Õ`è˜tæH{ŒÃ?±‡ó90R¡4Œš²£kÍÀè®Ã¯GaÌã0¦\rczïƒ1}CaÌú=0jÆê¼cƒoaxŒûäŒW…ñ±N0þ‚\rL°VæÀ„]x˜ø„+L|÷L|?	vn;1º³v¤Á¬—·ÀN±Âì\rraöØ!Ø™n<ì‚Å>˜S:ìb²ìòzØ•Æ0wù×°«*?aWuR`×^ü€]7ß»é´	vó³\nìæ\r˜‡:æ1{æ¶ó†9Ã|þLÃü¿‡ê&ÀÁ;\ZaÃ)°`A8,8ü#,ÄÄÂU……ZfÃBQ†°Ð?XhM#,ìsìî6kXDä8,²-\ZÙß‹Rû‹i²Ý“é‡Ý+_ƒÅYÜ…Å~‹__‡=À0`	ìTXBÐ,1\r„%®Á’t\r`ÉÍÃ°G7þÂRƒKa©Õ<Xjcìñ@,MÂ–¶ƒKƒÜ„¥ãaé#c°ôj°\'’?aOTzaOïÀ27í…eª„=§+Â²sXv‰-,/ –¡V Ü+Ð‡\0…°¢$5XñXñ1/XñÂKX	d\rVê5\0+“‡•~ë•ÎÝƒ½²v•©…ÃÊL|`eè-°2ÿYXyr¬b;VQ,{]~V)Jƒ½á\"aoòzaU\"GXUê3XµVý,V³¡\r«;è«KW…ÕiÂêM½`\ruã°Æ™ý°¦[‡`ïøq°–ž<Ø{	\rØ‡–c°¬.XG™¬Ûn\0öùë-Xÿ®/°~÷°þp#X6x¼	6tÞ6ì7+ÈMÌ™Á&Öra“z°Éï‘°)­NØTO<lúä lºô:l&zì‡ñ\Zì‡½/ìGûl	Àæl7Ãæ5æaóÚÿÁ`‹û·Â¿ÍÀ~ÙÌÂ~#÷Â–UöÃVÌ¼a+¿Va«wÃþØÀþ„ZÂÖ+­aëÕ9°¿Î;aÿ&nÀ%£7à›óÚáÒnãð­ÞFð­µcð­Ëšp9ËE¸<R\0—o‚oÿ\0W”n…+ÂÇàŠ3ZpÅye¸â†\\)â+|‡F=|ÇÈ\Z|\'â|\'ñ<\\9w®²B…«f\\„«özÁÕwœ„«¿ƒïN‚Áw?Á5Í³áš›p-â4\\«V¾çœ|O2\\Û°®÷Á®×#	×—€ï•	‡ïµ^†ï«Š‡ï§¼ƒŒhÀ\rÇ~ÁÍÁêôÀ\Zž‚ÄTÀ^Ã\rÀÍ¿™Ãu‚.À,ž€[*›Â]òƒŸ@Ãá?÷Â­8pJ\rŽx»Žx_\rG=ÞG[nÀÑ¬pŒö[8>ÃN¨h„šþÂ™2Cp–ò~8ëð%8÷»:œw\0çßáÀÁ…¾p‘ë}¸øI8ü,n]ƒŸ4hƒŸ\n–…Ÿ®š‚Ûþ‚Ûþ~·ÇÄÁÏN„ŸÝ=\0?ÌŸMK„;ÎÁÏMòàNtÜÙÝ~qk\nÜUI~9ï/üŠÌGø•ýuð+ÁÓð+oáW†¯ÀÝ~{ÁÝÉ$øÕ°JøµƒøµN=øµ\røMÌ0üfîüfå9ø­¥­ð[}á^Ü+sî•—÷©Ó‡û´…ÂýçáA¡3ð`­+ðàx(ê!<Ô.ê´ëÖ„‡ÀïzÙÂïNLÃ#{Â#ŽYÂcûíàñ3ßà	?xâÓ~xò˜<åñixÊDüñ‘&øãn]xšÄyxšâoxúö~xÆÛqøÓ£Æð§ü¹b7ü¹ÃxnV$<ïämx^Ú&xÞ‡Zx~’¼àïxáæ÷ðâpx‰-^R¢ÉüyZ^:U/ì†WU€W?<¯ñó‚×ylÀëÆðºEsx=ä/ümr	üm½¼QŸo„ºÂ›’8ð¦9¼¹\'þŽ~þNP7ÕoM†À?|Z·¹Ã;zìáêYðÎÇmðÎ·-ðîøx¯Êsxï&¼7Û\rÞ;åÿ¢ÿü þÿr5>p¢>p…\rúÕ.~ž\Z€ª%ÁG)uðÑº«ðÑ{ø˜³3|Ìe	>V;)‡[Ÿ‡?>\nÿ|>‘F€OA›àÓW,àÓÞ^ðéJKøÀðù\02|Q˜_¼»¾[_|ù¾„H…/…ï†/eBà+Náëg–à\'Ýáí›ágåM‡\0ÉR€4>ŽxHgÀYŸe`Ë›÷€Ü•j@®m7 7ôw=	(°«…P øþ6°=õ\'°=ÏØ¾öPúÑìØg	ìÜÚìœj”\r•~@e‰\0¨~ù¨õþÔÛ0€zûI`Wü/`7xØ½ahÕ¿ö.{>{¾ª{E€Þ­\Z@_aØk=ì4\0<;X*\nn\0FýË€±Ù$`²ç`’œ˜šw¦ÙÍ€™;\Z0K¨öØ‡UG€Ã\ZA€…ôÀòÉeÀŠ6X]\0¬\"ÅÀ1½RàXáp|ÿp¼ð!\0±Ù@®Ž°YU\0îRÀý>ð?Ñ\0Â?@~ (­,\0Õæ`êý¬»€Íÿà\0xä%\0ŸŠ€øµ\0OÏ`z7@²ËHÉV\0éé @>‚\0È7†ÊË\r€šv	 É]è<:Àh0˜_&Ž]À;êð¦¤\0!­§»R\0ë %Àº\"8Y{8-ý°•ÚØ98\0ö§žö¯r\0‡3çû€³îù€ãˆpþ†8_+	89gÌà\\H.¢W\0Ó(ÀåÓaàÊ¯ÀíËà6¤¸?n˜Ô7ˆ§[\'Wi1àéxð¦ŒÞ±’€w\\%àpð=ø)ì\0üœñ€_Þ[À¿a(Y\0‚Ø@È4„•‹€;¯Ÿ\0wt€Â8Ò\nDV16@L»pï};|ˆ]ââqŸóøxO ~QHŒ’.ÄIË ™~Hfõ\0ÉÃHàážkÀÃ\nEàá\"H¹¤r×€Ôz7 Mß\0Hÿ\0È˜\r\0ž\"†§ÿöYTàÙ£\ràùçÀó§3ÀóC [F\ZÈ½\"rßzo%‚×Â…R ¨®(¶ßwt/u¶¯£×W[€×óq@¥¯Pùš\nT¾¥o&T€*•N ê¢<Pu…TÕ[Õû”€ê¸£@\r\nÔÊ	€ÚÓC@Ýj)Ð°šôfÍT 9â7Ðœ›´Em©G€ÚöñX ÓhÐù\'ø´`t)9\0]kš@wïÐ#ãôì4z>\0½ÁHàsˆ\'Ð_a|Í8|•jþƒÁÀ ÏŒK›>CÙ›Àˆ=øVµ˜ ¹Ì5`*ò005ÓÛ¸À´’)0}ú;0ýú\00=m	Ìõ.?7·?5‹ú#À¢íc`±H\rø•íüjùü<,Áf€ååßt`e‰¬êùkÒ·€5`ý…!°^Ã\06HP`ƒå\0ü%Ýþ4„Ä‹ƒ‰¹„¤îBòÅ\'„´aBºð\nBvß„œNBÎçb›Æ4b[s(BQ_¡x#±½ø4BÉ$±Sr/Bå€PÈC¨ñòêËÒˆ]ÒÓ\r“ÄnÃˆÝc½ˆ=ÃÚ¦;:/:5|„n¦B/2¡þb¯±7î6boN:b¿£â€Ú_Ä‡Šƒ\r£ª‹ê<ÂäòQ„IôI„É£ „éQY„™.\ra6pq_0O©@˜·œGžÑ@XÜ(GX<¸Ž8j¦…8JŽB<°<Ö‹°<+FX9Î!¬<UÇ=.!ŽÇö\" ž! AwðïËà°€ú €È7$ž†@=Ý„@\rµ#ÐÁ÷èã-À*Ä#°‚pîÔ[1 Aú¸AÞÝˆ _-EPô²”=µd/‚¶ï(‚Öì† ´ 7,}\'‚`OU!8²	NŸ	BðîB0º!< D]câ´\r„5ù2âäM;Ä)BâTDâT_â´è\'ÂÖ aç‹°Í”GØ©3vu„]£\"ÂÞ¢aŸ:ŠpP	G8¤GœÑ?‚8C²FœµA8é<@\\œ#\\È?.³ˆËý	ˆ+ï:nÜîäQÄÕ¦HÄµ’/ˆkkˆëS/×\"®¯Ö\"n¨Ó7–!nÞÑ@Ü,ú‚¸ùý.âÖ\ZáeQ†ðº›ŒðÊ:„ð†f ¼^#¼¿—\"|õ¾Sþæ \Záµáßò„€#‚¥5Á}CˆàÕ5D˜ñ_DÄVŽ¸¶\rqgp>¼Œˆxö\0y$9g‰ˆœ¿†ˆÁ\'#î]¬EÄJCÜÏ=†ˆßQƒˆmB$È\"N¾G$ºF$ææ#«†I¿. R¼_!RÊò<Ã©?i¿¯#ÒÍÏ\"Òc²òˆŒfÄ“`_ÄS½Ûˆ¬Ð4Ä³E&\"ûH\"{*‘Cø‚ÈÉðEä4/!r‹v!òÌ¯!òíÑˆ\n\';o\"Š8{%˜‹ˆ—‡Ž#J\r#¯&eÜD¹Ö^D…ôoD%ÏñFÊ\0Q»2‰¨`ˆúˆˆú16¢Ad€hqD4<.C4µ š$kM¸pDÓ\'KD³ÝÎ; š_ïC´Xï¯\\F´¾‰@´Î!ÚFmß$ÿ³Šh7B´§¶ÑˆN<¢óA¢s!Ñ\rÖ#ºo¬\"º__lû_AD±ñU5	ñU B¹†¿ˆöÉCŒ¦Ö FÛ‰ˆñˆñŸ.ˆÉÆíˆ©]Íˆé>YÄôš\01³y1h˜û!æ®§!~ÂóraˆÅˆÅ˜Ä¯ü<ÄRŽ>bÙ¾\0±\\€X¶A¬Žå\"þ¸=@¬/ 6,ˆ¿‡åm!þ¾)Aü»„øWn‚ø7v)qm)53‡ÜÜ@GÊ\ZHY¤6rKBrk)\'ŠBÊ¹Ö!¶ .á‘Û8“HÅr»²©´/©ä‰Bî­\"w^x‚ÜYê‰T–D*_ƒ\"Õ»F»ÿAjlnBj8!5F\"5/H#5_!÷›!µþ uMj‘z÷k‘{£ ÈýG¦ûKÛHÒ`^iðGi¨\0i¦Œ4\"\r MÕ¢‘f_7GR.!-ªu‘G»|–fHËgGÇá1Èã7\"HÈÍ9$43:v	ßÓ„s¼\0ë#¨ø‰D¾C¢_w!qR&Hœãi$.+	ÆžA’’dÖm$y&Iy;ƒ¤ê}BÒVö\"ézp$C©Éœ1D²%#ÙÅd$»‚ä v#9ÑëHNó7$3ÉÍ‘‚‚q¤ ®)<ó)Ú;†K6 Å”¤µÛyäiéTäit$ÒvÛÒÎæ0ÒÞSyæv	òÌcä™ç6È35‘g¥aHÇ«Lä9¯\ZäE°y1zéRõéòaéúFy©½yYÁyùÑgä•¯Ïnk‘È«9äµîKÈ›;‘7¶ê\"oßAÞŒ1CÞJÆ#oMíEz˜Î =­—ž\0Ò3‡…ôñû†ôY‘þßŸ Ö¯\"wB†¸u\"Cj^ Cc Ã¾!#¶Ý@F8b‘>Ÿ‘*LdTÁdTk2\ZÿMŸCÞªAÞ›|‡Œe%!c/\"ãdš‘ñû6!hîG&Xš!âº‘	ÿ}Ÿ¨ÚL’iD¦ØÏ\"S®…#S*/ 5^E¦I-#ÓBdZ¢12Ãb™çƒ|êÆCfîÞ„Ì,¼Ìz‡Ìªf#ŸÛœ@¾~‹|q|Qô\ZY³„,<š€,„þF–”mC¾<Š,õiC–þYE¾RÀ ËÐÈ2ÀY†­B–=ØŒ¬ðëAV„Ø#+R*‘•‡•Ooö5 «LÕîCÈjŸ1dÍýÈúSÓÈ¥_Èw²!T€lÜ7€lô2F¾‹ÞŒlyùÙzWùAû4ò\"ú¿•ô5òCí(òÃL=²íø²íª+ò£ÁeäÇ «È_§‘íw\\áÈŽd:²óÙYŸ†ìyƒü¤@vyU!»Ò×Ýw¶#{äÓ‘½›Ÿ {ÑjÈÏ#öÈÏÿå|rÀÊ9p59S‰ø[*2@ŽìCŽþØƒÓø€üVÎA~7G~·lCÎÜ…#gº7!çE\"çÕÕ‘óIÈâsä‚C:rÑ2¹˜#‡ü}uò÷ƒäŸç÷ÿS\\cB+ÿ¦{Q%wP›v<Em2³CI:*¡$ŸK¢¤~FmŽYGmý€’N\"£d¼CP²R(ÙÓÚ(Ù$jËí¨­Ç ¶þ†Úæøµm=¥x‰R’HG)µY£v¸5 vr`(å@1JyŽR!!P*ÔÏ(•³ûPªUe(µÍQ\Z.u(Mùh”¦Ë~”V×<Jke¥sÖ¥[ÛŽÒS5FéÅ¢ôcPzQúFÇPú6I(ýÚ+(ýEÔ>É\\Ô\r”TÊÀ\'\neh‡2Úk2Ùí‹2=2Ûg„2£F¡>œ@™_°GRSFj–Dú¡‡:¼ùêpR/êˆC1ÊÂ/eé±ˆ²¼“‡²Ì.EYÁ ¬ü×QÇø[PÇD¦¨ãˆQL#ß5†J£€Ú$\"Ü…à P>Ó(Tm7\n5·†B/H£0ùP¸ûÑ(\\±\n¿¹…ÏÊD]Î£ˆqÏP¤§R(RaŠ\"2CÑRTPôR#tÅ2Ì@q2tPÜð›(ÁÏh”pT%Š9ˆ¿uC*EYïÉ@Ùì8ƒ²ÁÄ¡lhn(›î\Z”íÉ-(;«Y”=üÊ¡Š:3n„:+“:{Žr”ÙŠºÐŠrZ‘D9— .º\r \\¬\"Q.´}(¡Ê%—‰rÉA¹ÆìF]º`…ºÌ{Žºbñ	uu3€ºþ,uss\"ê¦G(êfL*ê3uë}êÖø[”‡ûy”×¦”×-U”WzÊkÆåÓïˆòÕÙƒò5^Gù>CùïtGù?,DÄ;¢‹QÁ®Z¨àFT¸Ã*¼u‘ž†Š&CÅühEÝSÅ¢îeG£îNAÝ_wFÅ:‚Š4D%HY¢\Zö£’¶ ’uPÉw¿¢R¶Ö£RPS¨”v(êQÊ\'Ô£÷Tê)Tûêéž¿¨ÌéÍ¨Ì? *Kƒ‰zf•Žz6°õ<Sõ¼Nõü}:*[ö&*;¸\0•#ú„ÊÕDå–÷ òè%¨<—«¨¼Ï *¿Zõ\";Uð3UÜ]*Q+G½tÕA•jY¢J›2Q¯6¢Peº_Qå˜\\TùÀ ª|‰ª8ªœÍCU›Z£ªC‰¨š&¨šÙË¨Ú‘í¨:W!ªî^ª®èªîgªagªuÕ4í…zÇ¸‡j±BµpýP­ò’¨»ÚQ÷¹¨OjE¨.“\\TwQ,ªûÝSTïfoTß‘Û¨>—c¨þ	Tÿ¢j@4\Z¸¢£gQÃ\ZÎ¨aíí¨á¦§¨‘Ã­¨‘cQ#£F)gP£§TPcSq¨ñ¸Ô·j\nêû_ÔÃ	5uŽšeœBýÜ>‰š·WD-¸M •¸¨ßÝQË{ñ¨åèÔŠ!µÂû‰ZcP+)K¨õ‰ ÔÆy;Ô?‹Kh‰ª>ô¦°·èM±ehÉœ|´ÔÁ]h)Î´Th(Zêczój4ZÖº½åF8z+ã,zëãh¹ä´¼uZ–‚VøÐ‰VX@o[>‹VÌJB+¶©£×]ÑÛ‹\0ôÎo´òõN´rt;Zù#\Z­RŸ‡Vé¾…V=~­šù­&w­¦~½‹5‰ÞuS­qÎ­1=‹Ö´%¡5ï˜¡µ¶å ÷ŸFëé¡u„¡uŠh=½E´þ¿èýûÑOõÐ¦\rh³”óèCW‰èCËôaqÚ’g‚>Þ&‰†<ÓFC^=CCõï¢a\ZûÑ0–\Z~Â\rÄC)Ðˆ‚P42Ùº2†FÍª¢1§úÐ˜˜hl›#\Z¯¼Ž&JÍ£‰\'úÑàÑ4I5M*ˆB“ªµÑTîšêKEÓj.¡énËhzý4›ˆDs¿î@óíuÐòi´à{%Z”õ-úú-Î¿Œ>1GA[k@[Ïj£OÖZ¢m6h›ðëèÓà Úöþ]´í³oh;ZÚN„¶ûa€vhy>Ódƒv,uCŸ\'E_\Z¡/ÝB_È=€vÒø†vÚ?†vB;š£/ÞD»¬…£]üF_¾óív~\ní®ò\rínè„v_;‡¾Úå€¾a7Š¾õÎí& =ü³Ñ^ZÐ^öÑÞ;\'ÑÞw£o[#Ñ¾¦L´oV-Úßö2: ƒHîG<ÙŽ|U†ü`ƒ™DS¨èP¹4tX•}ÇàúN^	A‡w=FGyÓÐÑíÕèÇÍè˜0t¬a:Öø*:.’†Žß„Ž…~ðÐÀ‰B\'Ü9‚N˜öG\'->D?YC?ü€~¼B@§¹ü@§… Ó=Ñ+{ÐO>)¢Ÿz 3×*ÐÏàãèg)éèg/9èç‡/¡Ÿ“ß£ŸgÑÙí‡Ñ9*Ñ¹>t^«úE“úÅŸ“è‚ét!Õ]h‡A—´ïD—BƒÑ¥Áéè24]ÆÐF—o°Ð÷fÐ¯×Ñ•†kèJîqteÛiô›©rô›…Tt•¥1º*Ð\n]U‹EW½¡«{Hè\ZQ8ºöV;ºv*ý¶B€n·F7?F7ßE7YÝD7·z£ß!\\ÿ³~?€nÝ}Ý\Z%F·>z„þ°öÝ¦¶ÝVd†no2Bw\ZDw¦ù£?	åÐŸþ^Awƒvèî\0ºG¼€îk“E©¦ ¿,<F´ÐÓKèÁ–èa+>zxh=²==ªU÷ÎAÇ]FÛûý­[\Zý½®=a\Zž°¸Œž„­ \'ÌÑS»ýÑ³*Æè¹ªNôÏ IôÏ»¶è?z‘0^Ì?†^>–ˆ^¾C/{ß@¯¼«F¯²ÓÐðAè{òè¿ˆ«è¿(_Œ„i1f“LfSówŒôÉi¿TŒÌ†\0³å€fëCŒœ>#Wø#C£ðáf[³fûAŒÒL;Fiáfgˆ<FÙvF¥ë+Fû£ZÝŽQWÅìÞ¼³ûb\ZFS«\0£6ŽÑ‚†`ö¸ú`t:ç1úWÌÞÀÌÞž˜}GÚ0û\'1û¢1¨Ì,KÌzUŒvc¸5cx…†1ü[1©rÆ˜šbL19ÃóßÛ0‡N¹`Ý‡9ÔÝƒ±0ga,\Zl0Gyî˜£n0–ßÎ`ŽU–bŽ—ìÀ@$ú0U(n—OÆ ó0ÈJÖƒÚÅÂ Ä2T°\"•°	ƒ3Ãà\"ÿapcVÜÜ\ZÁ7Lb6G1`\'CZÎÅP’\Z)CG`˜fæé—ù2†ýEÃY4ÄðŽebø—Æ1Ò-Œ J#<2}õÀX‡œÃœTmÃØô?Âœrå`låa;ƒ.ŒCÌÌ™µAÌ™Ì9…>Œ“ÔYŒ“¥Æéf.æâ—WWUkŒ›ª2Æ-nÆíÍ(ÆýX=æ\ZIsí¿º^ÒÇÜøl‹¹Ù˜Œ¹¹ ‰¹•Y‹ñ0y‰ñp\\Àxøb|<ã1·µ¼0¾œã_ÿ@Œo·ÆwLãsÅø—yc\"O`>dc¥ÏaåÃ1A¾Z˜à¡2L(®JºŠ¹;‰pPÃDNc¢\rå0÷TLÜ¿	L|Z>&Á*“ðr“hx“x6\0“8?IsÃ<Üy“R™ƒIy\'‰I}iˆI×àa24I˜ŒWý˜ŒIOLÆòaÌS5æé¡L–¦/&Ë!“óñ&gq\r“³ÆäÂW0y™ß1yBLþnOÌ‹ôÌ‹¿0…buLáÝ`LQîOL±™)¦„ñSr‹y¹qóÊ\'SÖÕŠ)çþÁ”{yc^wGcÞ|lÆ¼‹Å¼™JÃÔŠžcÞ:%c\ZüÑ˜†¨lLÃR2¦I÷¦¥÷)æ½Çæ}€/¦•RŠiýŠi]åbZÿa>¦6aÚÃÍ1=%›1}7\'1}ñg0_†*0ý‡²0ý÷Ë1ý%o0_Ý›1£˜Õ%ÌàÄ-Ì	3üÒ\r3ü÷\'fäÌÌ(ƒ‰ó0ÅŒw`¾Ùb&ôŽa&fr1S\\fÊ‰™Ø†™•ü‚™MlÁü”óÇ,ºc~±ž`~eêa–J7c–†Ã0ËçÂ1Ë˜åÖ˜KWÌšõKÌúif=\r³^×Ùà]Ål¼ûˆù«tós+©y\0+Å˜ÁJ9ÅJ];ˆ•ã™båT±òKýØm¹¿±Û*z°Û¾ýÃ*ÊÆ*ž<ÝÞò»½½\n»Óâ&v§+ˆU	ñÄªüšÃª	èXµè¬:Ù«²»ëUv÷Z4Vëà?¬–•VËóvÏþ!¬þL>vïÿ­Äî;ÖÝ…ÝWw»_b»ZŠ5¬‹Â\Z•A°ÆjVXµkX“½ÎXÓÃç±¦U°f	X³%-¬ÙÆ]ìÁ´?XóWuØC¶6ØCg¤±‡5°‡ÝÜ°G“naa+µXx`^÷,fafóXÄ9,â‘2ÑïŒEmvÅb.\Zb±ˆ‡Xl‹	–pyKøpK\ZÀ~ñ°ä²~,õf–&3Ž¥™WciªXö6/,ÛJË1ÎÃrŽÂrM¬°ÜS=X0åE`ùÍ|¬Pº+|cEaEe±\'ú„XkÝ¬õÒ öddÖ¦ü:ö”â3ì)ãFìéP¬íÿ´<…µŸ\rÄžÙS…={yëèœut©Àž×abÉO±Î‚`ìÅŒìÅÑX¬«%öªcöê×)ìuÏ0ì\nì9\"öæ—q¬¼ëö`½&r±^k>XïŽL¬ÏÖZ¬Ï]>ÖgÖ{;²ë»;ë{B\ZëŸŒ\rtã`ƒä`ƒý`ƒ§\\±!2°!¬“ØµIlÄ¶ØHM,6J|\Zý£	³(½ÿü6~×GlüKìƒü+Ø„\'¡ØÄ\n6éÝ;lÒ}Ød	l²…6ù™56y<û0Ø›òŽˆ}tS›zÄ¦·}Å>õ×Àf²[±™o¾`3We°906\'L	›r›?ñûbk0öÅþ;ØÑdlB\n¶Àê>¶€|[ø>[„ØŠ-î0Ä–îkÃ¾ÂÕa_eIbËXØ\nÅëØŠ¶¢Õ\n[1\\…­”†­¼ÅV6îÄV®·`«{7ck¤-±5Ð]ØÚç½Øú“l}m+¶~\nÀÖÿÓÂ¾\rœÃ6\\ýŽmhŸÇ6âý°MUVØææØwÄŸØwÿ°-R*Ø™Ø–%Ø^¶åÊ/lK…:öýg#lëlkÊKlk—3¶MŠmgVc;Š§°ÝW‰ØlO@¶ï·¶ßÔûµÚ;¨÷;x1\r;Xe¢<Â=‹Ä¶a‡¯{b‡7R°£/%°cÍ¯°SŸÛ±S¿wag6!°?bagµÏaç¼¾b>òÀ.¼ÁbS³°¿æ‡°KñºØ•êaìêûç‡\0»öâ*nK\Z·©Ï\'ù¬\0\'µ/\'µö·y`\'½²Œ“q5ÂÉFÀÉþ2ÇmÁ©ãän;ã¶m^ÇmsÀmìÄ)ŠŒqÛ§p;‘q;ñGqÊ‡¾âTÜßãT{`8µ×pjŸqj?Ä8µÅs8õ=18õ‚Ý¸]Òq»Žà´ìup{ô>ât0n8—;pzSÓ8}•<œþ>N¿ÿ$no··ù(nï(g²Ó\ngb~g‚ŽÁ™xÄ™ô1p¦aXœu;îàEwœ¹4wè+w˜Þ†;¹wÔÀëˆÇA\Z/ã`5á8ØÔ=ü›>™Llq¨ÖZ†QŠÃrq¸¸G8¼¬Ž`AÆ‹pÄ˜ÓŠ#ÙŒàÈÙƒ8Š•ŽRê…£šÌáhkn8ú},Ž±ÉÇ2×Ä±‚þÓ~Ç®pÆ±»ßã¸õp¼A8ÁËû8!ó4N8Òˆ)áÄ¯cqÖÓLÜÉÁ\"œ\ri\Zg±‚;å¸wê…&î´ùyÜé¸$ÜéñFœmÒVœÝ!mœ}×cœ})îŒý\"ÎQ~?Î‘ðçè§Š;—GÀ9®Æ9ÇqNo[qÎ°œóÛ×8çÑpœ›ÛWœ[æœÛëœ[-çá‰»¦[ˆ»®’†»™ócpu–8Ï=¸Ûe·p~£­8N.@¥\ZpbÐ\"tÿ¯$ýa¸ M)¸ £í¸`‹\\°0:8‹/Gã\"\nCp‘s¸ÈM¦¸ÈM¸{Ú	¸{,%\\Ü~\\Òå;¸dz5.Ùn	—ÜÙŠ{ø‰K¹ÔŠ{¤ÍÀ=²QÅ=ê”À=v·Ã¥A¹¸\'·’q™é¸¬on¸g›qÏý¯â²¤ã²ßàrÇàr¦,p¹§ìq¹¡ÇqyšP\\€Àå9Œâò[qZ³¸‚ê‹¸¢I+ÜKí/¸—{]q¥j¸W7^â^%|Â•…ïÁ•+¨á*ôeq•Ù¸Zy®–9kúï]ÍÞ4\\ó·“¸X<®ÍŽk»{×ö=×ŽZÃµO#pb\\ù7®ãÓN\\×¹o¸®p\r\\×È=\\/‡ë\rÚ‰ëýã‚ë#9á>‡ùâú=žãú[™¸–-nPY7ŒÙ…>Syi©Ù‰yw7òûÖ«^/n\\+7î>€1Å}›©Æ}§ˆp.2¸‰f)ÜdåÜ”ÂsÜÔv5ÜT17Caáf¾(àfæ!¸²_p?¶Uâ~hÀq³šF¸Ùãq³ÅÉ¸Ùe&îg(€[\0ßâ’¸EþcÜÒ‡VÜ²á0n9\Z…[~ó·B‡âVAÜê/ÜŸgÅ¸µ¨0Üz8·ÞÅm8ºá6‚¾ã6fµqÿ›±Ñ_qÿfÇð›®ÜÆozp/¹ë^Òf/Ùã—ÒÁâ¥.PðR¹óøÍªzxé/[—éÅËj¦á·îÃË®àå¥rðÛMñÛ&ÄøíeaøÖ3xå„ox•úA¼ª0¯:SŠW]ÊÁ«õ	ðê^³ø]($~×ÉR¼†ñ]ün;m¼ÖÓ	üö^üž*9¼¶´^-Äï»•€ß‚„ßo[‰ß¿T?°4‡7TÆ™ÅàÆñ†qxc(\Zo|Zo|á\ZÞ8 oòú	Þôˆ\0oÚö	oú‘„77Þ‹?TèŠ?²Ùd­o>‚?Æ¤àoƒáËã¡–ñÐÂ<´Üûaƒ‡\']ÀÃ_CñÀ”\Zõx\Z~¡Š\'íÆâIE9xRË[<ùl+žâ¤‹§zâi-Òxº{?ž6‡gÕNáÙ\'òñ|œžïPî2ÂŸØ”‰·nDá­7ðx‡óøSAdüiñ:Þ6h3Þþ{þÌx)þ¼R9þÂ®¼“ýk¼“ó6¼ÓÂ1¼³9Ñ)ï¢\"¿ÜùïFÅ»yÔàÝ‚Yxwý5¼{`9þªvþ:\'\n=1Ãä4þ÷3þÆÂü5yüM½xÏP\'¼—9ïUøïí{ï}_ï+†÷óAà‚$ð‹Qø ¶Wøà„x|p®\0òYæs¡¢Šh;ˆ<Ð‹5ÁG!yøhÃ1|Ì|Ìo|\\¡>þùþŽþÁ‘øÌ|BðK|Â\'üÃƒñ³ôñF†ð©šAøÔ\0Yüc¨þ‰Ãü7}ü“§Åøg¨Nü³Ëaøçþy\"ˆ>kŽÏ9¸ˆÏÕ²ÆçÕÅç­ãðù»Çð¾0‘/:ƒ/¶Ø‹/~±‚/!´ã_ZüÃ—‘\\ðå;÷áËêðåOâ+ôLñ\r§ð¯“<ñoÞ¦à«|ÜðUßñÕ›sðÕ[\"ðÕ“®ø\Z™<|Íö9|\rÿ)¾f®ÿöÁ3üÛÄ`|cþ¾yÓkü;R¾åh1þ½mþý÷³øÖb|k“;¾u\0‚ÿxm¾=†ïÁ%ã{>êâ{kø>Wþ³\"þsa\0þsévüçž/ø¯Pü\0â7~°(?Ú‘ŒcâÇ*ûðc\røq½bü÷G\nøïu£øïmðß&á\'Uñ“d~Òö~*D?íx?=¥ŽŸÙàgXeø9I&þ§M\rþgy\r~AÌÁÿ>€ÿ}m¿DQÅ¯èø?}\'ñ†‹ñk:þøµš2üÚg+üzûVü?ë›øs‘„MË7’n6ÉBkÂfsÂî^ÂÖÁù‚ÂWÂ6åUÂ¶iAQPFPl› (N·”ŽCJ¸B‚R @P\n™\"ìØ\\CØÙ}– Ú5@P§ç4Of4Ãn´*Þöp6öÜ/ ì©%ho½KÐ\r{AÐ›œ#èÛëôWZ{/µö¦‡ö.Éö}Ë%ìÏ~FØŸó°ÿý=‚AÕÁPÎ†`Èñ&f\\\"µfŒ~<$¿ÝE0™W$T%9F°¨+%È ç	0®\"ÈŸ# ÷vÕádÿÊï3c!`À)–¦JÀægpÊ®¼ä:o£HÀ»÷ð+Aq/(5L žøB Ü\"P+Ÿh´#Ú½›VÕ­žGà|«&p~¥¸·“ÜUs? ˆõwÄâ$‚¸ìáÄ™L‚µJ!ÁúõQ‚õ°+ÁF­šp\nM8Uøƒp:*œ`»M“`ëz`ûsÁö—à eF8›A$8š.ã_û×	çãß.°_.Äž#8EÔœ…J„‹W¿\\z ×>ÂŠà¾ÙˆpuË9ÂÕ˜bÂu»k„›å\0Á#ê:Á#©™àõ«ƒà}®…à]Fðîä|.|î/<›Ì	A¶Æ„àúM„$‰RjBƒÂfR	aë§	wÖs	áubBø½‰\\¨!DŸ&b´	÷do¶¬Ó‰½ÿåª!iw:!‰Ø@Hz‘²c¢OHYÙNxÔ²BHmxDxÌ\Z ¤INÒ_&¤ËJž<*\"d¢‚	™?žùÏ\"AÂs½=„ì(5BîýtBîoB^t#!ßÔ—ß¸›P°Í–PdRG(*’&ÿp&”ø’%¾„’ÚÂ+ÖvB¹ÖOÂkôáµm#¡Rê¡²¾ˆðæÂABÕ˜)¡óœÐð9‰ÐøÞŠÐ¸Exw{ˆÐâOx(Žð¾ŠKhuÝAhý)\"´þµ\'´à	m¼TBÛ¥;„v,¡ó‘áS–Ð+¥KèÃ¨ú\"Ö_üò	_é	&Õ„îaÀö\naÀóa ¨0jO\Z\n$£L	#³Æ„Ñ|ÂØM€0®èJo{DøöLðÝ\"’0ÙœK˜>¹Lø1Â%ÌjŸ%Ìem%üüêA˜±%,(û<F‹u„_uÂ¯&á·àá÷[YÂÒ8a©þ:áÏCEÂºæ/Âú‡„\r9+Â†0‚°ÑyœðšIø7\\G”pN%nÂ\\#JY#ˆ›÷œ$JGe„.D™@}¢ll?qË‘-D¹Ô1¢|ä¢¢£/q»cQIz™¨Tq™¸Ãøqg”<Qùx!QUðœ¨îœOÜew“¨áZMÔü9GÜóA¸ç“Q?†OÜÛÿœx`@4DÄ˜¯‰F‰ÆmëD“M2ÄC±aÄCMXâáo_‰GJ{‰GY|âÑo™D«»æÄã`%N:CDê‘/g‰¨‡}DôŸ\"f‚ˆ9?HÄ¸|\'b\\ß	éfDB“6‘(ú@$&Ú‰CzDRq\r‘\"ª\"Ò°›ˆ´¬DæQw\"éLd­cˆÃ7DÎÁb\"çž&‘3Känw\"r\"ïa‘7–Kä«ùÆCD!¢žhíJ<©K#Ú\0KD›{%D›ßû‰§vÄOU3ˆ§þ–O‹#ˆ§ÓHÄÓµ=DÛ\r5¢ék¢ýÑþ¾6Ñ!Ex¦þÑñ ñÃ‡xþà9âÅ2xqLLt™^&ºÆ²‰®SÁÄËÊp¢›Œ9ÑšJtg8ÝËºˆîu(âÕ‚WÄëÔóÄâ³Äµ*DK\'ˆY¾DÏ‰/D/	¢Ÿá+¢½žèçL$úŸ¨%úÏŠ‰AS3Äà‡‹ÄP÷0bè£—Ä°£Ÿˆw\0\râŸÃÄˆ›þC%FÞ¯ F)3‰Q.£\rÄåQâ=¿bÜéUâiCb\"CL‚\\$&p‰I_]‰)oÆˆ\Zˆ©ûSÃ^›*3?Ó×ˆé_ÉÄÆmâ“zÄ\'…ÖÄ\'ïŸÊŸW…³w> f¯]#æ½ÝDÌ×0$æïÞGÌ÷zI,(/ }³&1%–T~%¾Äï!¾Št\"–…¾ –¯&¾>-K|ív…øºÊŽø&ö)±Zf±Ör;±î¤€Xç@\"Öï%Ö¿Ë!¾½ÜNlÚýƒØ¬£HlU÷\'¶þ|IüpßˆØ¦bOlÛ#Il›ˆ#~<dOìØ,Gìhž$~R{Fì‚{T‰=Ý<b/&„øÅÎ›øÅ½‚Ø¯©Jì/ê\"œs#ã[‰Ã“}ÄQ|6ql—ø-Ö‹ø­ÿ3ñ;Ö’øýñiâ÷Õ}Ä	§Ä	D<q#Eœ2úJœ:[LœŠ‚§ÙaÄÞâÑâ,T8÷‘8ûøqNSHœ[Ð&þ,»Hœ¿×L\\¾Iü}#“øÛû5qÙú\0qeîq­Â‘¸Ö=J\\¯?FÜÐƒ7Â}ˆÿd<ÀMÊwÀM7ºÀMÙ $Š	J‘þ€›}Ò@Y¯bpKí\"(¯\ZÊëö‚ò‹e Â7;Pqh\nÜ¼··•l@%×ƒà½%p§Épç_P9LTyÕ’	 ZÎuPFÕYP#´ÔX›w_15Å4P›óÔ¶}ê(€º—ž‚º±hpï=p_‰6¸ßfÜï&÷7ÿ÷¿;è*\ræAC[6h¸¾\n\ZñdAãDÐxc4)Üšüw7ÓÃ;@³QUð`’h®Ÿ	ÖÐ-Hæ åÅ*ÐêüðXå\nIùB70ÔãÝa±å ,o+øš€À£ B[\"éý Êè\nˆB¿± ö\nÄŽ†øµX€ÿá¿Abª1nšÁ´:dSôŸI*+RL€T¯\0vØ¤Íª€ô­ ý(ÒçA¦9d ëü Èš³\09$+8rW  ßó%ÈŸ¸\nl¼@S5(4v\0Ežr h^K¾\0OXSÀSN í~WÐ63´3Ží,CA{Ãÿ\\¿Ú—2@ûv1èpÿ?•àY:x–Óž-øžíö[¦ÁŸÁv 3ö!x‘Ùº|7/á÷€—\r’ÀËÑþàÉdðŠl(xÅ9¼êõ¼ú\"¼º~\0¼æQ^Á€757ícÀ›gMÀ›‚7ûž€*;AÏ<èÙ\rz£[@o°\nôþaÞÖ\0ýîk‚þzv ÿŠ\'ª3†‘À°Ök`Ø÷0ðÎó*0¼ŽÞ-@ƒw‡7ÀÈO`ÔaY0ZÞŒ9.Þ[c¥õÀX‹c`Üê50^¹Lxî\0&Zî]jÁ$©0)í>˜¼/|¸z|¸¡¦H7)rçÁ½!0…¨>rüO-LÝÔ\r¦N7€i/õÁ´\Z:˜öi7˜žÒf´YO¶Û€O¡{ÀÌ¿ÀL¿Hðù&Eðùçp0;õ(˜eæ$•€9ÅÍ`Îè0×ÊÌ#ß\0óšÀüv;ð…æGð…é9ðÅII°PâXxÝ\n,ðgŠÁ¢tXôs,Ye‚/“2ÀRU#°´ë	øêç°,D|³V½ukdƒ5A£`m:¬Û³¬Kÿ¾=~\0|ëŸ6È€\r±!`ÃÃã`³\Zlî‡‚ïn?\0[;Îƒ(Ýà‡¼X°-?vAÀvó\\°½8ü¤Ù~Bi€Ÿî¼»¦äÀîäJ°ûÕS°·£ì‹èû2î‚_ÆÒÁþ=®à×<ø5éøµx8ÆòÝÀ!g88ô>}¶\rS}Ž¥i“}tpŠ]N­\0§÷®ÓCàœìøs~8\rÏ½›YàbÇAð×Ä¸¤ø\\Úî.-¥ºzÁµÍ[À\rÃP’DÙ]Ò&½ÿøl!É4Ú‘d/ú“ä¤´Iò\\\"I~LDRÈÐ$)¼É\"),rHÛÊbIÛ©XÒöÄÒŽŒ4ÒÎ%$ej4Iy±†´{”DÒ´ë#i­“öè£I{ŠHÚ×%H:È\\’.ðŒ¤ûKŠ¤ß1NÚ§u›´/2†t€®O:P‘L:0D2t¨&G¥’Lß#ü˜F2?ûˆtÈÕƒt¨ÁŒt¨é\"éÐdéˆã8Éâ\Z™tO:Š#õ#2&YB<I–Ô	’å´\rÉJN‹d5J:~n‰t¼þ\r	j²Ï­$Á_¡HÀN\"È‰„Ô“†’$¤ð	ùVŠ„Â/P“{I˜©³$\\R	7Ã\"\\î“ˆ½$Ò±S$òÖ8uÏ~4$ÑL’ª$¶ü{ÛØ•Ä®è#q´IœK;H<ç)¯0›$„ßÕI\"~#It¢tB^™t\"ctâï0édÇÒÉ!tò‡d³•G²éÐ%V(\"¾SI²µc‘lo“_“.Xé“.dM’.›’œÕHÎÁoI®©ÿH—òRI—CnJ\'’ní®#y4Z“¼:X¤Û·±$ÿ	R€Ì$)à…4ð2¯F\níµ#…h‘¢4¾’¢ÌHQ‹ê¤è;HÒ½âvR¬±)vnéþ]RÜ‹bRÜÌR|À%ÒƒÄ›¤DûdR’<†”¤ÑOzHþÏDéáO)åJ)gHJµá’G“’ÒÛRIy¤§õ6¤§r¤ÌÆ_¤¬‰EÒ3©¿¤ç’\"Rö11)Û•@Êö}MÊõ{Lzß èš\nâö“\nëjIE;ßŠü\nHÅË¤B(©tYTæÒG*ß+Az}ô5éu2…Té>Aª\\+$½1œ$½é†‘ª,FHÕß’j¸É¤šk¯Iuk¤·Ó“¤†t	Ro©Yj©ùt#©ùª!©û‚ÔrªÔÒJjYÕ#½?å@jå©“Z¿›‘>lßCjË„’Ú²‹Hí/²Hfò¤O§Ÿ‘>¾ u=í&uCçIŸqOI_†6‘¾Ì®úýdIý÷¥IçUHaé¤ÁÎo¤!Ñ&Ò°Ui8Ò‡41;OšÜñœ4™w‰49À$MÎ=\"M~Lš®&Íœ’\'Íêï&Íù¿%ý<cEúõ‡ôó¡i^í	i>»´t’´h•úŸç¤E<™ôÛH™´ÒAZÁ±I«R*¤Õ RÒjz3iíÉ_ÒúÖÒúå!Òú£¤¿šWIÝ·þÝ·$K†‘%»\0²”‹6yó…déšd²L?…,;’BÞ’PGÞ’Á!Ëd9j;Y^2ˆ,¿ÖJVî +š\\$+>o\'+öÙ’·+´‘·»KÞž½BVº›KÞI#+W4“•ûO‘Uì“UÎ‘Uï–‘U{Äd5‡RònC&Y2LÖŒe’µ´§ÉZ0Gò¤Yþ¬ó¸‘¬;FÖ1\'ï5ÙIÞû·—l\0K\"\\Y%	[ÈÆY‡É&wkÉ&¯È&ãÈfgÈfƒd²¹m>ùððùHº\'Ù¢<|Ôwƒ|´ã3ùè¯Jòñ-ªäãß!Êždˆõm2d!‰‹Ÿ#ÃÚçÈû‡ddHF®´‘QrwÈhÏ\Z2º«‚ŒQÏ$ãöç‘ñ”Kdr—Lž S6ÁÈ”¢x2”Nf¤ú‘9£2g\\†Ìu.\'óucÉü»2dþý\r² Þƒ,Ì¸ENÝ\"‹Þk“Åÿ>‘O:÷ŸgäuédkãGä“+ò)g4Ù6”O¶MÜF¶-– Ûé‘íY)ä³®4òÙ\"ù<¾ˆ|!}…ìä{’ì¬ãGvÞ;I¾è“O¾8ÔCv±ö\"»4ì\"»\n!»r‹È®µt²ëª\ZùÒ#€|©°ˆ|YvŽ|¹~Š|­¨|­Ñ•|}óò\r”ù¦<Œ|ËCöðÓ&{æº‘½5\"È>`\'Ù§B¾­‰\'ûú\"¸œ&\\^!º¦‘ƒfƒw“ƒ¿$“ƒO“C çÉ¡ÔprXl=ùÎŽErÌµoä˜›Sä{Õ“äûÑ»ÈqugÈ®Æ’øf“À³äÄ+ÞäÄô£ä¤-‡ÉIÚ,rÒcgrrþUòÃ-&ä‡Æfä‡á8rŠTù1T–œ¶ÿ*9ý€9Ãªüd§/ùIhù©ìKòÓédr&y?9sÎžüìV(9›_CÎ® çpÃÈ9ÅÝäÈ…œBrÑ–nr‘!—\\´q€\\|žN~ùÒ™üòã}ò+ÔCò«çÉeí7Èå†!äò³zäŠ`Cò· rUf2¹Zâ¹ZÒ‡\\½Wž\\›H®ÎÇkT¯’ë¼¤Èo1oÉÚäÆ¯ÉM./ÉMoÉM³³äæ¸yò»Zä–ìûä–õò{£ä÷ÃrkØùÃO)r[À#rG/ƒÜ¹/”Üõ_ºý‚É½GBÈ}}ãä¯æä¯¼ò×Ó&ä¡šÝäá3¿ÈÃ[È#ÿõxôä	ò¨ýòè\0–<:\r\'uÂÉã~{Èß¶¾$O”‘\'\ZƒÈ“ñäéýeäi+yFÔNþ9Mþ‘Mž={Š<û5<\'xDžßZIžWýEžoU#ÏzMþenAþÁ‘Ÿ’—³’ÿÜê$¯‘“Ékuöä¿+nä;¬)çØ©/Š4J‘¹þ˜²Åº›²ÅY™²Å­‰²%4Ÿ¢pãE¡æ1EÑû\"eûÖ&ÊösK%Š7EUöEZLQ_‘¡ì’Ê£ìºÓGÑH{JÙM,£ì.v¥h®8R´û(:uë”½¾\Z”Ü&Êþ6ÊJ8Åp—%Å0¶šb„ SŒ’¬)FóŠÉ1Å4=ŽbúNšbFRÌƒb)æe\\Ê¡W”#ÆK¯ŠåŠ}?Åê­)åøÎzÊñÌ—È¥\nP§\0#|\n\"P›‚ˆ­£ ú(˜#›(øi\'\náä	\nùl>…ú_¾¬¤g/QhäWúGi\ncë/\nsHaÑpã…åLa\' pU®…ûõ	EðÕ‚\"ÜTD¹ÇPNë´QN×õPl·ü¦8\\ÞM9ãü‚ræ%œrVÑr–|ŠrÖZ‚r66‰rN³›rÎÝ“r>Vžrá¤å‚CÅÉÔ†âtÔ‘âltââº“âpŽâºcƒâêp”â\ZÞO¹L¸E¹RùšrUz‘rUm„r5ŸO¹vHƒrí|&åZìÊõõyÊ\rÓ`ÊÍº«mg(žrÎO“â)p¥xzò)^½”ÛE¡ß;•¿/N”€KJÐUJP˜4ø_éRBj(!#Ñ”°¿)w”ÏQÂ¹û(w6(‘º$JÔétJô•jJW‡›ò’û)%¾Û„ò\0YMyàìMyÐK¢$JRï±(‰©‡(Iy£”\r<%E·Œ’?By—@y¼ëå±É0%­½’’ÖË¤¤_\"PÒKz)éÕw)R“”°‡ò$Wò”«NÉ¼Æ£dí<HyöWƒòœÏ <ÿ(AÉÉÆRr:ßSr9a”|ùPJ~ÜÊ‹í.”‚+”BD-¥ðÝ-J‘Žå%!ò’º‡RÚšIyu¯šRvð¥œ´N©x{•òÚD“R©ÛGy³ûå\r-‡òÆµŽR•\"O©éyJ©ù®O©e¬SjÛº)u§r)õj”·‡¬(oûÊ)\r=2”f“¿”fÇÊ»Ü‡”–Ûã”÷ò”÷Š(Ê•~Ê‡‡Z”Ý‡(móû(g•(m?)N³”Î™6Ê\'ÊJ—‚ˆÒ#¦ô\\¢ô†)}¤PJ¹å«¾eà&Š2ƒ¢ÎZR†m”!N)eH¼Ÿ2t²‹2ô©€2¬*¤s§Œ*QÆ¶…QÆ|.RÆ¯HQÆ=åÿ“@¯§|ÇºQ¦þ”©38ÊT[eºÊ›2#sŠ2ó7ŒòÃ¢Šòãj åÇÍ”Ùª\0ÊhJùµg‰²ì|„²|íe¹9‡ògÛåÏ™û”µ¬g”õMí”\ruÊ§ò·Ä•ò~™òï‘*!«@•¹LÝ”ì@Ýôþ.Uò¾usêZµ©[d©òý	Ôm]-TÅN&uÇ×T•¸½T•—ZTUõwTU·(ªêõWTÕŒgTµMXªÚÎ:ªZ¸!U-ù=u×VªÆè)êîìª&Ù‰ª…\n¡jŸ•¤êÄÎPu>£êQº©z—!TýûKTýQuÍ2uÿ·‹ÔMTƒ­ËTH5ù{žjºÍ“jº=—jvLšjöü=õà­¿Tó<8õÐžêa]%êa&õðU7ê£\rªÅi-ªÅ÷kT‹ßpêÑ¸*ªõ#ÕêÔÒþ›\nM%Sa«›¨€WM\0©hÏ³TÜ–.*®ä •0œH¡4*éé•¼f@¥Hí¦RŠŽR©û\n©4îg*}Ê$ý¤2›PY=ªTÎA*•þ òRù-¨¥vª â\rU;O})¥Š·¨Q­Œ¨ÖÏÌ©¶S©¶9bªU\ZÕ¡XžzæÄ\'ê™(Wê™Õ`êÙäWTGX/õÜ—!êy£Ô\ZÉÔÚ¨–ÿRê;¨N_ßS}Í©Î5êeòAª›ÅªÛå­T·¶\'T÷¬}Ô«{c¨W¼©WƒË¨×õîS¯ÿÙE½d@½‘TO½y%z«°”êp‹êóÇŠê»#êÛàK\r˜Ô£*yPÅÔÀ°ÛÔÀ¢%jpŽ\Z\ZTA\rÍv¤†þ QÃ^¿¡†Í&Rï´¼ †‹­©wû‚¨×™Ôˆ»óÔ˜-ZÔ{¢hê½ÌXê½O¨±«Ô¸ã[¨ñëzÔ$mê£·û¨/vRÓ†¯SÓå©éâ÷ÔL…š™RAÍl˜¥fÙ:QŸíW¤>?ü‹š½ý5Û+›š½zšëÇ¢æí’§æ7GP‚¦©ãÅÔÂ“2ÔÂõÏÔ¢WúÔ¢u9j±Zµø/Z²{/µ´³‡Z&SËéÔ\n«(j¥n>õ\rzµJ·˜ZõTZRkù,j=}ƒúV¤O}r–úö1µ±{†Út@mò¹I}—B}77B}£J}ÿ{µõö_ê¤õcívjûÉjÙ€ÚÉåR;cj©I	ÔÎ™ýÔO—J¨ŸòÑÔ.™\"jWZ\"µ»U‡ÚkhKíûoús¨ýmê Ä)ê`‰-uXòuÄt–:º­Œ:^ùú-Ê†úÝEH²ÙD¾¾—:ý!…úc®’:{iu¶º•:»âGo|H]è¼Bý…¦þŠw¦þ66¡.ÑØÔ¥³{©Ë÷ü¨+ƒQÔUðu5òõR=õÏ}uÍ÷u}Ë#êºÎuýfu{ˆú×·…ú·=ˆúOç#õ_…-õßHMsš¶ÉÝ‹&…;LÛ,1MÛì¿@Ûü­ˆ&#¡ÉXëÒ¶ìAÑ¶†ÚÐ¶¦†Ñä>ûÒä5·Òäû‹hÛ\\WhŠ¯ëiJ	4¥¤K4¥Fm\'3•¶³äMEcž¦Ò…§©×ÑÔIv´]2tÚ.ÍRš†Â*MSáM³qŒ¦`h{”nÐöPi{Ò ´=Ïƒh{zçhÚ¨Vš¶W	MçÆ[š®a,M_!‰¶Wð”¶×ö$m¿Ê\"mÿ£%Ú4ešAËOša¤4Í(ñ\rÍxä\ZÍd;‰fæG3•ð§™¥ÇÐÌzð´ƒ˜ï4sÏ@Úa¿\nÚ‘y4‹š¥f¹D YÑŽ™ŽÒ IT\ZH§[ŽÓÖ4ä÷4‚Ö\Zqû\Z>¦‘M:id\Z9n™FQ·£QÞ`h4å»4ºß<x˜ÆàÑ˜ì&\Z[¯ˆÆÎ§±WoÑ8tÆ£n¢ñÏ£ñ¯–ÐÏÆiÂ®û4:&\neÓNè<¢ø>H;y¶‡fs=vúYÍ.ÉæÐrŠæÐõ‘v&þíìõFš#Ü€vní)íº›vá.šváÙ]Ú…wþ4\'‹_4güIšsw\"íbÍ(írÂšûn+Úµ»6´ëè‹´ëqƒ´ò´›ûRi·Ž§Ðn-n¥ydÒ<QÏhÞ™×i>ßÞÑüÎ| ù[ÙÑ¬#i[üi¡³¦´¨WÁ´èe:-fäíÞ‡5ZìZlC-ög-ž\"K‹Ï×¤=€>¤%Ü/¡%¢i‰ç¿Ó¯÷Ò}Ø´Ä-é¨-¥ñí±¹–™AK+¼@Ë€gÑžèß£eIŠhÏ¥hÏ•%i9ÀKZîr\'-Ï¨•–wNË{ªFË·§½0ãÒ^˜+Ñ\n|Uhþ‡i…ÚY´Bê\Z­°û=­ôà>Z©ç3ZeR>­êá+ZÕ\')ZÍƒ&ZÍòwZ­ÖYZíë\\Z,‡V—~†V7ù†Vÿ%†Ö@h\rBiZÃ)ZS‚ÖôGö®†Fû ,OkƒÄÐÚ®-ÑÚîÐÚí@Z{@­}¹Ö±e/­#1“Öù°˜ÖY¨@ûíNë†ÍÓºŸ…ÓzÎGÐz.ž£õe+Ó>JÓ¾ìÖ¡õ¿|Hëï8Iûªw6pqŽ6ŒÔ¡D^¤Í´±šÚøeÚwæÚ÷‹´‰\ZmØ M>q¥M\r7Óf\rgh³6C´Ù÷hs§hd)Úâ¥eÚ’Ã5Ú’3¶TÉ¤-T¢­)ÒVÕ·ÓVwÅÓV{nÐV“iè_h:?ÓÖ_¥­ß\\¡­céÊ·éRhúæ™7ô­T]n_?]¾â*]ád}›ü]º¢Ë(]1Y¾cÿVúÎËte‚®¼ñ–®bâAW\r¾OWÛlB×¨ÙB×>ZN×~M×~ÿ~àÖÝp‹;ÝðÑOºÑ¶º±ßºq›nÒSJ7íâÐÍ.ì¥›=Ð§¼:N7—ûL7Ï¹D?”†§ÑO¢[pbègêéV8kºUP-Ýª}•v¦Cg“ép¤#àUÓ‘c\rtT÷:fñ\ZkèEÇ†Ü¤cÓ´éØZw:ŽnLÇM£è¸ù5:þÝN:þƒ-h¥ƒ_žÓI3:©IšNŽ3£“«èôÑktÆ©Y:#¿Îzþ‡Î–þDg«øÓ9tÍƒÎºBç\"ÿÐyjè¼K³tÞB:A¨4Ò…~›é¢?1tñi5º8=—.Î£‹ŽÐO<«¡Û$UÓmÚué6Üé¶3út‡Gú™—ÁôóMôóo/Ó_µÒ/êxÑ]Ð]ƒt7øUº{y3ýšF)ý7™îqc+Ýc´†î)}˜îuåý6S‘î««N÷ýE¥ûéß¤(¿  }è¹éoÚèAíAô`‰9z°×6zá=ÂEì§G.xÐ£´è÷NÑc‘ôûì:zÜ¿ez|pýû]úƒw\ZôâUzBÆ)zÒÚ/z²ë,=ù†=¹,—ž*%¤§ªØÒG\\¥?n¿HO¤§‡ï§§ÏÎÑ3vÑèÂú“¡Ýô§;æèY‡Õéy^ùô™Ïè…ZfôRÙyzi–^æ©I/‹	£¿ÞaDãœE¯µ¾C¯-ùCo¾Å¥·„ž¢¿_§wº&Ñ?\r£wå_ w¯ŽÑ{†íè½‚ôÞØ‹ôÞ„(zoÿ5úgÛVzr(ý«’>7GHÌ¤Àô‘òpúè[€>æüœ>æÞEß|“>±™>^xŽ>Þ¨Aÿæm@ÿîÒFÿÞ&AŸ8y>©èLŸ¬èÓv5ôé[\"úôýG‚>}öÒ_ú¬—}n›}.×‘¾hvœ¾hîM_t„Ð—Ü£/Y‡ÐWé+‹é«šôUCúŸ{2ôu¡}£¤‰!q«‹±i,Ž!é°Æ²ÙÂØŒ«aÈøÿ`È¤Â²¡¡Ù‡4†ìbc‹aCn6C>“ÆØ&zÄPt-`(.80vj1”O¥0”ÏÒÊ•{*e•Zc†šñc†\Zì)Cíž˜¡Ö+ÇØ%{›±»4•¡ihÊÐìdhY”3´H­Ñz†¶Ã%†ŽMC§ÉÐ=Æ`èÞ|ÆÐ{RÎÐ7cèÿ{)Œ}$\ZÃ@V•aàÃ0’\Zf…¾`÷ÞdÄR‡…G„AŒ£ŸÙ«ú«×ÝŒc*ŒcÿDŒãõûÐmïÐŠ\\5xÏ0¡”‡#ÆÀ°&q·ÇžA|ZÁ\0ý2äBõO5ƒùÀ”Á|±ÈàÎ>`·Í3„þ2Ä!ïÖ¡êŒ“äxÆÉbÆÉrŒÓpã´§?Ãvõ>ÃÞÐ‡á ¾ƒá\0{Çpðd8¶|dœ©1Îóçg®2Î¯§2.üf0œ¬_1œ:*N\\†³\nÃe%…áZ&É¸¤Â¸L2g\\®™g\\î…2Ü¼Ÿ2Üuv0Üs ÷¶AÆUrãša\rãV•ÃcÚ‹á=uŽáóƒÈ¸XÍð£~eø«¦3ü363iŒ Í`F°ì#4Z–Z Í3b„?bÜ-0\"TQþŒ¨ðMŒ¨ô=ŒËFÌõŒ{_3â`UŒxõÝŒÑÃŒÿFâYFâò8ãáÏýŒ”[Œ”GŒÔÒ	ÆãÍ²Œt|	#ÍÈÜñ”ñì²ãY¾7#{º’‘½lÊÈ1í`äà9ç\'¹ë§yRïygzùíÍŒ{\\\"£Hç£8.ˆQü#™ñÊJñêÕF¹ÞSFE6À¨¨fTtU0^›92*eW•%•?õop?Ui\0£š‡dT‡z2ªÛ\\ÕëŒš®6F¯„Qç€gÔ}^`ÔÍ[2ê{“oÏ)1Þz2oß¿c4ä63\ZkŒæÝjŒæô¯Œw5ŒûYÆ{\rÆ{>£Õl‰ñácãÃº£Í`|dº1>fJ1ÚS¬†ŒNîãSs?£Ë‰Èè\nÿÁèúx˜ÑM¶bôDù3z²ú=Õ»}O¢}ÝÆÛzÆW‰¿Œ¯®RŒ\n1´.Á®ngŒ<ÎgŒo¡1¾‹Œ‰Ã·wû“ö½ŒI\'[Æ”Q+cðaÌ&<cÌmþÁ˜Ókeü<”Æø|‰1ÿßY<ÛÈX²ìb,\Zb¬Š]«ÉÒŒ?ÊöŒ?Õßk®›kU\nŒ3íŒ\r9Æß´<Æ?{\Zãß:™)¡§ÃÜ”pœ)©u„)Ù‘ÅÜŒŽaJã¤™2Ô˜²²˜[/1·Ìê3·¾È`Êa¾1å®¾cÊË\\gÊk\r0d/3\\Æ™Û¦™ŠG{™ŠP¦’i4s‡þ:Sùr5S¥7Œ©¼eª]]gª•f1w]òfîº&ÏÜ••ÊÜÒÇÜý÷=SÝÀÔ¼ÞÁÔ|9ÅÔê^ejý±eî‰Odîùs—©½ÖÏÔw…2÷BN0÷íÝÄÜÿà.Ó ‰Æ4¼QÆ4Jqb\Z5¬1c˜&Š¿™&œd¦Éß¦é	+¦YÖ=æÁCsÌƒ=ÞLóH}æ¡ž8æ¡^æaZÓ\" –i‘hÇ<Ê{È<š¤Î<Ú¢Ê´Ô6dZ©leZg0­ÌckLèç½Løæ`&¼(•	ÿ¸Îx¹Làö&\"ÜŒ‰,ëbb\Z¥™¸íû™¸=;˜8Œ*_}”Iìœe’†àLòŸe&õ5ŠImKfÒ%ùLzåI&[æ,“Ý­ËäÈU19³îL®—,S(Áa\n½¯1E7iLñí¦\rüó”^ó´*È´¥O2í²™vý³L{Û¦ƒÀtðxÎtð9Çt<’Í<ç/f^hzÈtBW3MÍ˜ÎõñÌ‹­ÑL—ÐóÌK¤bæåMhæL·K;˜n›™î6ÌkC$æµ_·™×³˜×\"˜7Ždz8D1=º·1=	W™žÿ|˜^‘AL¯^o¦í¦OV&Ów/Žéw¸éçQÆôßÛÇôg\\aúóÞ3ýÏó˜þ¹¨ÿ¬3¶®2ÄÌ€¯kÌàÅqf¨™3lh€yGîóN‹93üy.3BqQw•‰MbF>xÊŒ¬d1£™1üDæ½CzÌ{™±ô\"flÿkæ}]æ}·rf¥‰g]ÌŒsŽ`Æ¹v3ã¯Ä0ØÅ3Ä´3 ýÌÄÊf’ÏSfrÁWæCw3ÅIŸ™òM™ùÈÎˆ™º²‰™1¸Ì|b£ÌÌTNef^ÏafÑÖ˜Ï°^ÌìÆ3ÌìÌœßŽÌÜö#Ì¼ûDfþ¥fþçuæ	}æ‹ÛÎÌ‚t_fÁ¸%³ìÇ,\\gh3KþÌ1K³L™¯\n>2_ý™a¾Z[c–½b–Çœf–)0Ë\'0+Ì}˜¯Gª˜ož„2«sú™5QÌ·Fç™o‹n1×‰Ìf\nÙÔÌlšc¶¯evRŸ2»o>fv?YbvÿÙÇìyÌaö9‰™_\"k™_¦=™ýKÑÌ¯»™-jÌ!SæÐ^sèÃ-æÐ—gÌ¡¹Tæ0»†9b÷€9’HcŽEC™ceLæ÷¾Ræ„Cs\"J†9õ•9Y(ÁœÚËœv¸Çœe?aÎÝ™cþ¬ÌeÎƒÿ˜‹\'<™KyFÌåðæòà\ZseŸ¹òe7sµês­Íž¹®1ÀünËüûp\'óŸ\rÀüªÏ’ø™Î’T.bIÒ²¤ºûYÒ¾±¤K±dÉ³d<n°d\nY²û\ZX²n¬-’Ž,9ÕW,¹w?XòÜz–üõ/¬m2*¬mj±¬m,\rÖ¶€H–âr7k{ÀCÖö¦rÖöq–²‚µãÕY–ª\"¥¶ÿ7Kí·&K“ÍR/êfíz$diíöaí‰HféÌè²t6lXz×ÍYzñpÖÞ AÖÞþpÖ¾=çXûo¡XÀ5–AC/Ë`òË`YŸeð§™eØQÊ2jmcCÐ,ã+,“ËLÍ:øøë`#„eîÕÍ2O‰b\Z`qúÅ²¸Ã:*˜`íŸaYM&³Ž5>a[&°Ž7¶±Ž/ÑX°-*,ØK`!d²‚3,„Ï\nQœÉBªg¡ûŸ±0†,P\'‹ŽobYd“ç,JQ‹ªûšEõ²YŒo\'X,\rÏ×Å{Àâ7$±ÜR–Ðv™%ô™a	›ËYâš,ë±ÖÉ™K¬“‹–ÍÍ~–·<ËæÉ1Ö©[{Y§Mî³lÏO²ìUÎ³ÎþúÎr¼a9Ù]a¹€J,—%Ö¥“bÖ•7ö,·ü<–»e>ë*5uu%†u­q˜uCéë.ŸuãRËÏò¸Çò\\dyC±|^<fù|+gÝ&•°|ÍJY¾GÒX~Ò«,¿wY~ñx–ÿù–Ó<+Pc’ìf}ÚÄ\nëwaÝ9ÐÊºÃ\n/8ÂºÛúafËŠÀ~bEt™±¢ž~cÅ¼úÀº÷už»Ë«ÌŠ?eÅ{³YñÙa¬ø±$V‚r+‰´‰•ËJú$d¥$e¥ld±RgÔXiv¶¬4_VZ„•Þû„•‘WÀÊøú‰õÄí?ßÊXOUa¬Ì_YY¿î²rŸXy>¬¼ÄVÞYV¾ì!V~N<+2‚õ‚°ŸU4ù™UŠÓc½:Lf½²ªf•k¬²Êo±*†Xo–‡XÕ5š¬ze_VÃiKV£;«™óŠÕ²ï?‹¬HëC‰õ1Ç—Õ®¥ÉjOðcuh°:±9¬Î‘JÖ§Ï·Y]Ô·¬n¶3«GcÕãÅêÝ²úîL°úþJ°ú!r¬¯û”YW¬Ú~Ö ÿk°b‰5ä½“5sb\rßµg}n`M)°ÆSüYß/Ø±&§YSÝ×XÓÖtxëÇ‰§¬ïÞ³f÷½dÍRSXsæ\\Ö\\“%k> –5ÿuŽµXgÆú…Ìú5÷‹µd+ÏZ¦¿a­lF³Vbw±VçìYzGYë\ZY6³%t‹Ù‡o±7=mdKýdKñØR!|¶Tôq¶ôv)¶ô.¶´&-sÊ-s;™½¥)”½QÇÞú|[n÷[^ÆŽ-ÿè2[±ÂV²}ÁVzq½£Î€½°U¤ylõ¨lõ_*lÍj¶Ï—­šÉÖzeÎÞÓ\'ÁÖ>žÍÖfcë(]`ë¤²uµÚÙº¹T¶žHÌÖ÷´ü{_]Û@­m`Î6³Ù›Ø‡¾<a±a	±f[D.²é²å>gC?`CíúÙ°Zlø|3Ég±QÒ¹lt)`³qúilœŽûêÍÆ#VØx¿e6>õ\0›(±‡\r¦N±ÁþëlRà›ôã+›\"UÁ¦œ›eS¯9±©þZlÚ=›ŽwdÓFÙÌý…læp6Ó*‘ÍÞWÄæ€³9œr6Ç­„Í¼Åæf¬²ùûÊØü[OØ|¿E6!Ÿ-HXb{Ù¢$<[4ãÄ¶¾fÍ>õV‰}šóŒmk^Í¶]¸Ì¶MdÛe´±íž6³í>ícÛv°íÿÜg;À—Øç‚Ø™4ö™c?Øgí`;¾©fŸó\'±«³f8lgf2Û9o7Û¥‚Êvc±/5d_Ö·d_ª³/;ïe_®˜d_QWf_ÙmÊ¾r2›}mÒŽ}m£˜}=Ê€}Ã€Á¾åÜÁö0¢³=[Ùv²=Z7Ø^cWØÞ»3ØÞwÜÙÞoÙ>É3l_;Ðû;Xî;;DÆÐf‡ÕÆ³Ã\ZzÙw´\nÙáÏÂØwO±ØwóŒØ÷\ZØ‘»4Ù‘gÙ‘Y$vTƒ	;êS1;ª÷	;:4Š}ÏgûÞ¼ˆëþ”}¿ï;÷€ObÇŸmbÇßhc?ðèd?hg\'Zß`?º5Î~ôÚý8z7;mÛyvš¢4;íø=ö“®Ïì\'?ŠÙ™<væ‡ýìì˜óìœ\Zv®ò\'vî©·ìÜàdvn•G8ÍÎû0ÄÎç?gç_ÚÎÎ¿Ã~Quœ]d¡Í.êlgû6±Kn¹²K¼O°K\n°KÑoÙ¥ô×ìWÕXö«žv™s»¼³•]amÇ~Ó³‹]eµ•ý6<‘Ýøà\Zû=Îþ¨‰ewª°»\"ÆÙ]­Îìn«ûìÏ±£ìÏŸØ_n|b‰Mg÷#Ï²ûíØN8ö€ûoöÀÌeöàs]öa{¨®”=¢6Äž@ù°\'ØNì	á\"{êÒ {êÉ+öÌ!öPgöOÏ@ö¼c*{þü7öbÔ\nû7£Šý›s˜ýû„&{i«<{i{é0‰½²ç\Z{Åi„½ŸÃþƒUd¯é·±×NE³×9#ì\r	öF*“ý*ÇþgùŸè3ì¥Ž„·G²Ã‘\nÖàlî‚q¤Ÿpd©–Ù{åœ-ÍÛ9re\nùïu™|Žb$š³óàGeëGeàG•mÈQ›>ÍÙõ¦£…1ãh_âèXpt/¶pô¯›sö*]âìí¯æì³»ÀÙçþ’³ÿ¬gÿ5.ç€ïkŽ}\ZÇ ÙŸcüë\'ÇLs€cö¸‘sÐ¡”sÐY–cnÁã˜ŸœârÓä¹´™säÚCÎÑ,Ç<÷Ÿ8Îq=ut{0z@‘×ØàÀÓ>q\09\"H]ã\0³ƒ„‘e±ƒÞdÏAg>ç`x%<ÝƒƒÈàà¿pRâÁ\nñŒ‡øLJ¹sÀ{¹°ÃCÊrHK6r{>‡ÜÎ¡X19”oFÚQ‡>¸ÄaÀwq­õNm ‡Ë*åp¹,×!–ÃsìàðýU9\0ÍµsÄ‡â8â*ç„ã.Žõ‘ÏkJ5Ç:«s2õ(çt›\rÇÎõ2Ç>ôÇA‡Ëq¸aÏ9ãÉ9›õ’ãxÃq´Xçœ‹+ç\\ÈHá\\xJâ8é<â8K^ç8Ëýå\\¼RÉq±¥r\\*s\\SÑœKÈÎå¦zÎåž6Ž»àçêkÎÕÕÎ-KÇS#ãIMãxžûÎñ\\päxwÚs|n.qünårü•Ú8~\rœ ³DNÐÀ\'Xæ\'8ô7\'ø=œ\Zòˆzßƒ¶ÚÈ¹£´Â	×âqîþ×ÿèN.\'z œsÏ…É‰•8±Ëœû…xÎýe\'îX#\'ÎàÄEãÄë{pâÏþäÄÿKá<hs’¬Žq’ÞÏsþ÷ž”žaÎ#\rUN*™ÁIÍùÌIs9ÊIûfÁI›Wã¤-â¤_á¤§Kq2ÜœŒkKœ§gaœ,]NVäSNVÖ\nç™õ~N6§ƒ“}Ò‘“TËÉŸ2å¼HŽàÙá”Ý9%iO8/£t8¯Úðœò(NEn%çuÇN%íçŒSMòàTÿvãÔmåÔ]¿Í©‹ãÔ/xrÞŽ 8\rw|8\rÏe9ÔœfE\'NË3á:9-ÿ*8­¸ýœÖ|NkƒçC¡;çC›óañ§-a7ç£lçã¾tÎÇÏåœvä-Nû(—ÓÅøËéâätoæô`\n8=I×9=Êœ^ô0§÷þ!NoËNßs#ÎçüBÎçq[Î——ºœ~ŸZNÿ·Çœ¯ÓéœQ#gXjž3¢{ž3j‘Á½/æŒ-—rÆ¾qÆsÑœo\r)œï\nQœï¿–8ŒbÎTI:gúUg&Û…33¿óc¥”3KPá,zÏr~5ks~\'\'q–dÄœ¥´`ÎÒKGÎòŽóœ•ŸÎŸuÎßÈ&Î¿x®ä³^®ÔHWÚàÞþre4V¹2-S\\™…«Ü-¡B®\\ŒWîSWÁ®•«x*˜»}e7WéÁwç¬W\\áª\\>ÍU-Wâª-\'sÕKD\\\r££\\Í€c\\­(_®v\\4W{HŸ«ÛkÈÕÃÝãî5ýÉÝ¿”{àV×ÐOÈ5léà\Z|á\Z)ypÊ‘\\cè)®qT×äL	×äÞI®I=ŽkjrÍ%*¸æ3lîám§¸v¯¸Gõ-¸–\ZM\\Ë½\\«#;¹Võ6Üc°Üc³(.Bê=á°ÈEDnç\"oús1JI\\á)s–ÎÅ„^åbªÌ¸˜ßR\\ì\r;.ø3œKîjâ’Ç¹Ô !.mûY.3å/—ud—USÏe7*r9­>\\®z—{Ä„Ë½Èârg,¹B¥í\\á%Wôê8W|å\"×ºì\r×æ¯€{*2™{Ú+œkkvžk§ùœkG\råÚ]á:W¹öéÜ³¸g½OrÏQô¹ç¼Ö¸çÂº¸N»T¸Îë§¹.«®k¨2×õž÷Ò¾«ÜKå«Ü+wÛ¹î²\"îÕˆÜ«oßs¯Elå^›­åÞ`[soTfp=a\\¯£ç¹B_nÀ)Gn@Ñn`Ñnà8—¼îÃ\r9²Î\rIËâ†¶<àÞI»Ë½Óvž{gã7<î÷®ç6n$“ÎÊ–åF}Fq£ÅTnÌ)OnÌª	÷>µŸ{¿9œû`,›Œä&*å&êå&{ØpSì/sSfîrS¹ÒÜÔÑfnúÛ\0nzë]nÆõíÜŒçËÜ\'ªÙÜ§F\nÜÌ(47³j€›5»‹û¬B“›­£ÄÍŽqææìvçæB~qsÓƒ¹¹UJÜ¼q\n·¨ú·„Eä–åp_¶à¾\Z¿É}õï7·ìònY¦\n·ìÅnyæwnÅuîk·›Ü×%\'¸•)Üª¸nÕÚ*·šUÍ­Ý™Ç­íòæÖ|æÖ¯·rß:ã¾íËæ6’â6Ïç6†]á6¹èp›Þôp›M&¹ÍvŠÿiã6—ôrß2¹í{Ý¸ÍíÜ®öËÜÞ|n_~#÷s-…ûeË\n÷Ëz1·K·ÿÄ·ÿe<·¿v7÷«E÷k›w’Â|u‹;¼ÆáŽüâŽ®ÞåŽIáŽÝapÇÍÇ¹ßÞFs\'÷q\'ßˆ¸S^q§*Ïqgo{sgs‘Ü¹Ow¸?÷}åþœþÄ·ðç.¬Ïr7up?Þåþ>Šäþþ»‡»|àw5šÄýóžÏ]Wuâ®SC¸ëþ0îúÝiî_N÷ß‘Ü$î¿Ûr<	¦7ORæ3OÒXŠ·ÙJ·9Ïš·¹¯›\'-cÉ“žÿÈ“=¨ÃÛÏåÉS1<÷ç<ÅŸ]<¥hÞŽ¡W¼ŸryÊó^<Õ—î<õ˜<õ:OƒXÈÓøÈäíïàíNÍæíž¼ÉÓ„Ÿái:¤ó4Ï\Zñ4¯­ò4—ûxZ’·xZwæx{nÕò´«Üxº’Ûxº¬ÿ²‘ÅÓKÎäé/	yûd›yû5ð|ÞÌ3À‚<ƒ†<Ãýž1Ö‘gLuáG}â¿GñL£<Óû<žÙÂ$ïý[Þ¡‰Þáóûy‡ã±<q:ÏJâ,ÏJÏ;&?Ä;&<Î;vî\rþaŽ‡À²yˆÞ<Ô}úl\"UÁÃ¼iäaêy˜¶e–\ZÇÃ—kðHÖ%<2°Ä£všð¨“J<úå*=7Ç”¸Äco]ãq-GxÜÁ[<á¶<qÍ4ïD•,ïD—-ïÄZï¤¹\"ÏfKÏƒáÙ$\"x§;òlÁZžmµÏ®Ï³ÿ®Ás¸ÒÄ;‹?Ï;[ñ™ç([Ås$\\ç9>LåÃ•òÎ5$òÎ½?Âs²±â9Å¸ðœÙÒ<ØÏ5z3ï’Š7ï,ˆwYº„w¹éïŠAïš/ïæ¼[„xž‡ñ\'ž\'É˜çEæyÅhò¼]°<ßðDžß–BžŸ§=Ïïé}žÿH&/@ç/à¥/p[%/Ôå…|Êã…óBgya¥h^8‚Ë¿ýwWR‚‰›ãE‘fyQ¼^TÕ/Ú¦•³û/æ¿ÚÝ—HäÝ_”àÅKöñâ#Uyñß¯ñJx.úðÒÍÝxéwßñžºØó2›>ð²îVó²ªÇyÏ4ðž	yÏŠŸðž—ûñ²ÍÜxÙLx9ô]¼Ü\nïEö_^i3¯ÐÀ†W¼k?¯xú¯Ä¸“WbbÊ+±”å•Üèä½”úÅ+ëå½:VÌ{•UÇ{Õø“W¦Â+¯°åUh]ç½ÖtãUšPyof¹¼\ZÑ^ÍË;¼ºßÖ¼zh¯žðÞJó\ZŽœà5¢nò\Zûp¼Æe€×¨ËkþíÂ{g¡Ì{|Ÿ×¢z˜÷¾n…×z<–×vÎ‹×Öµ‹×î>Âûäö×åº›×í²Ìëkx}¥6¼Ï!bÞçñ·¼/:\'x_O|â\rœå\rÝÆ©ÿÉÝýœ7Jñæ:œæ~|Âûf»È›D(ñ¦¶]ãMýãÍäðf	¼¹jÞÏäÞoÞï×\'xK‰xKÏoò–>`yKêyËØ	Þ\nþ7o5›Ï[ýËû£ïË[7¦òþê yñ#¼«ÿø›nð7µ,ñ%kjùRËD¾º/ËåoÝ>È—íåË›xòåïlåË·4ó=TùŠyk|Åš§üíþöÈRþöWßùJÕ|å‡ù*k|u0›¯þw™¯q™Å×ð\nãk4§ñwó\nøšËr|­DKþÙ3|m•p¾6-•¯Í¯áëÆ:óõ¤~óõ_¿àïõ\'ñ÷¼Äß÷ÍßïÜÍ?À¸È?ÐRÊ7zþ“oÜ@â›@~óMÈª|Q(ßÌûßÜmÿ°Âþ›A¾E˜ÿèÝ­ü£IP¾Õ±Í|«Û¡üãÙ\'ø@Žq…ÌG4å£ûø˜ck|Ì7»U“Oräã{Ìù„èO|¢»%4þÃ\'ùó)2‘|J,„OóáÓ+¾òé½‰|f¿>Ÿ{p7ŸËkàó7‡ð&ã|Á™i¾]É2ZøÂ._T2Î·áÛ&eñí~êñíþ|á_XÎç;Erø.£ø®#pþ•\0/¾[Ñ%¾»ÀœSZ–sÏÿÖ‘¯|›Z|!ßc²‡ï)áÃ÷D-ð=ñŽ|/Ÿb¾Wíq¾WsßÓÍ÷ÙáÏ÷É~Á÷\rãûýµäBñÉ;ùA¢1~°†!?øü?øêG~ÇoNàße}àß]~Ïx¼ñî\r?j„ÓçGqøQmüè\'Lþ=36ÿž¿4ÿÞp7ÿÞ\n†ßéÿ~˜>?N¶Š§$ÇßçÇ_GóüÂò–<ø‰?ùë%ù©ÖþãIü´ãütü>~:÷:?Cþÿé/~f¢ÿÙÖ$~öŸa~ŽÝE~î£7üÜ†6~SŸW×ÀÏ˜ÊÏOÅñó3ø/ôçø…osù%ø~É÷8þKã/ü—¡§ø¥KüWÃGùeç3ùe¯óËùëüòN~ÅË-üJsuþË‹üªòoüê©#ü\ZÝ¯ü\Zû2~¿Vö¿®~ßñ›xãüæ5k~‹/¿(à¿ÿ¨ÊßÎo•~ÂÿHtâ·«ùípO~Çˆ/¿sÜ”ÿI æwÙMð»Š·ñ{ºþðû£øŸSËù_®ƒüþñ]üC. Åä¿ämæó‡\\þðƒ)þˆ>š?¦§Ï—‰çþá;AãsrçO¬ëð§î–óg†üø³RSüÙ~ÿ3oŒÿóÀŸ¯‹âÏ/\rðZRø‹Ãüßíüß_ñ×´îñ×--øÿž˜	¤0[Re(ÁæßËé\nš@ºë¿œy\'Øúû¥@Î\"T ÿé‹@áñ¸@¡ý“@Ñ®_ ¶ßü(PºC(¥$vœ\rìTèì4i(«ð*‘‡*žT«§j×O	ÔŠê¡úŸ‚]Ã½“L–J U•#ÐÝÅèïèŽ¬	ßÞEÜ\r</<˜Ž\nÌô6f¼™B`n¶[pèhºày³àà àˆsàèßÏˆ¢\0Š¾.€ÉÎ	à¥(ð\"V€Yà	°Öá|¨›€(yM@¬2€Ê…PÕN@–Pâ/\n¨ó\Z=[@gx©×Œ@óNÀÚR+à|pÿîðí6	Y†¡Õ´@ø/Ñ~\nN8=X›¬nX|œ\nNi–l/Ðö\\CFàð}ŸàÌ¶ÁÙrœÀÑV[p^)PpÁn³à‚ÏÀIF,pÒ#.\Z<¸vÔ.Ô	.›®O®ôûÜOxÜÝíî!$Áµ5ÁÍÏ½-4G8KàùŠ*ðÕ\'	|\0_B‰Àßò— èt› ø:(Uˆ„z¼Üù`*¸ó§^~RMp÷jš bR_ýÈH\nî½Ä¾QÜ7û\'¸Û$ˆ»&\'x°oC°ëŠ A¿XÔ$HvO<ün,H™¿&xÔÝ$x4R H}°\"HÍ‘<F_¤Éí¤A—¸‚Œ6¦ óW‘ ç(ÈÕ-äé	òŒ?\nòD^Œ½º«ŠÖÕÅ¦‚’Ú$ÁË^ª BºSPq_[ðº3SðzD$xcT½ZTÇè\njöÔ6Gê¶¤	ê/¿Ô§§Þº!\r’“‚FkAãµhÂ/	š-¤-\'©‚–_ÁûS­3C‚vë<A§|„ ó‡ª ëv’ 7ÃCÐ·ÏJÐwî’àóà‚à èW1Ø\'ï†C3‚‘æ½‚‘¶NÁ(:E0š,|y	¾-³ßµö	¾_y$˜8-˜hG	¦<Ò3Û7	f*­?r³úí‚ÙžFÁBÖiÁï¹‚¥µ|Áªç\'Ái%ÁŸ÷“‚5›%ÁzÓÁßk\"¡Äo‚PrßáæKBi‹?Bé8¡tá/¡ôôO¡ŒÒg¡Ì¹[BÙ0¡ìL‚p‹Z‰PNæ¤PÎÌE(×‡Êû\'	å_8à¡‚ûf¡BÚpû«sB¥™xáŽ ”pG‹pgF¬PUž&T}rA¨.qS¸û8T¨;²U¨/Û.4rÛ)4z£(4Ò\Z¿pšèèÿZÊ8­’àÂcPW!hBÃM„0u\'!ìx^#„g¶	ŠæB¤ç†E?)D	n	QWú…˜ÌJ!¦Ï\\ˆ¯Ñ’»k„{	!­%¤ïš2i\"!ëJ‚-²rÒ„¢ŠBë¸­Bë•áI3\r¡Ïá©²0¡Ý¶ÐÞCUh¿úEx¦iQx¶ú¨ðìÄU¡ã‚ÐQ,#<\'8.<×µ(<˜*<*]è%¼\"(¼Bºe¾ºÜ^m\r^×bo|¹)¼5yEè1ŒzhztzËŠ…Þ+—„~0¡ß‚Œ0pG¢ž.EC„¡Q9ÂpSYaøo²0BÕZu¦G}»D£V\'Œy­)¼G{\"¼?CÆ-N\nÐ„|ã…	«ÂÄ¦(a’I˜l\'Lö‘&æ\n“7~\nSU†„iðAašÛœ0ƒ…>¹\\-ÌT?&ÌŒ¸$ÌÏféH\nŸk>/x+ÌFífû·\ns}Â¼O®Â¼›„ù2ÂæmÂ‚‹›„EK(aqÈ°äÌaÉÍûÂÒ›ÂWY6Â²ö2ayîáëúçÂ7ß„U„U_ó…µ÷Ç„uŸ„õ¦xa=ç°^\"|;E6>6|6™]6—6m6›P…ÍÞRÂæ¢°¥/|¯ûVøþ¶‘ðýáûþRáƒÂ/„*;…mªŽÂ6O_a[þoa»¤‘°ÿQØþ˜-ì¨¶v‰N	»I?„½¿¶¿ù#ìOó~=El©F\r3L„#—”„#¥šÂ‘µáèñÂQ_P8®²O8®\Z,ü&]-üÖ³Møm¸MøÝ<Zø=¡T8a!œú*œÐÂI¼®p2þ»p*±N8sG üyüp¡ò˜pÕ%\\“·®­g\n7¼ØÂç–E°^‘Ä…Ñ¦2?‘drŒhsÚ_Ñæ–‘lû}ÑÛ£\"¹=4‘\"%Rœ–m—­)½ãˆvx8‹v<Ù)Ú1%)ÚI,í¬‰T²Dª^ý\"µ‘ú¢h—+S¤1×%Ú¼)Ú£Ii/Ÿéø	E:\rd‘~Â!Ñþ*wÑþñ¢›P\"C¯\Z‘³Pd²ÛNdR?)2fE¦_ˆÌ\nDåEæÛŠE‡´E‡†Š¿ðY´…E–ˆŽßf‹ŽçA\"«DÔo\"xÚ	<3MD‰Ua\"ÔáJêíaZ -B_†ˆ0/ãEØ}í\"ìH­ßä#Yc\"0FGN‰Hó…\"ŠÑoõ5QDÃ‹èÍš\"†ßC£Þ\\ÄêPqžÔŠøÈ~¿P(ü^YÛYŸ—YÔŠN:T‰l–5E§s‡Eö?GEŽÅJ¢sø Ñy7Ñ?¦èBž–èâ5e‘«ÔG‘ëë‹¢Ë[¾‰.E¢+t‘[ŸÈ=\'ºvxMt}äŸèÖ‡Û\"²–È‹~AäP$òú– ò¾Jùo(ò/MLÊlFªˆBôLE¡(]Q˜·ªè®iŠ(â¢½(jo…(öNŠè>‘\'ºÿ×RÉÅ§¾=È‹%ä6‰\rEI.Ò¢¤àK¢”ú4Ñ£‹×D©²Eé‡¢œ™èéî¢§F€è)øWôôy‡(3[W”µ=RôŒ@e»–Š²_È‹²«—EÙQîŽhÑÛ½¢7JD…¼\\Qá¥PQ‘‘¬¨¨pTTÔ+-*šó.‰Jë‹^]y.zøŸ¾uQ&ª¸›&ªˆ¿)ª{(ªñÐ5Œ™‰\ZÍŠ\Z‘Dƒ¾¢æ$5Ñ»ÜQËÍQÛiIQ»Ï9Qç¾¨ûl­¨çÄ¸¨çâQ?ÝUÔï\Z\"úúµGôõ×²h\0Y.\Z*\r\Zû‹†–.ˆ†K–DcÛÌEcùÑ¸úfÑxÕNÑ÷WLÑ¾R4qš\"š„ÓD?þ›»æ·D³vª¢ÙEEÑÜžÑœN¤h®iY4÷[R´ðV$Zú‰~ƒ¢ßM<Ñ²³h•5#ú“Ñ+ÞdËoZ-o¾].–VðË”«ˆeý·‹·Ê°Å[¯;ˆårpbù¬,±Â/±âZ€xû­ýâíoüÅJÇ´Ä;XŠwXÌ‰w\\?#Þ‘uJ¼ç(ÞÉ++#abËy±êú˜XMÙT¬fþK¬†¯«Ç.‰5¬PbÍk\nbÍ!ŒX«ï²X¥&Ö=\'ë~ú\'Ö›mëËmëÅ‰÷níïåîï={V| ä–Ø ÈAlÔµKl,Rl|Ö]l2½IlV“&6%‹–§ŠÍ?;ˆ—Þi\'¶¸p\\|´÷¶ØÊ+C|l[—øX¤«z,_ÍÖCëN‹áªZb`Ÿ¦‘¥\'F®žãt¬ÅxC\r1žÐ+ÆÛw‹	Ç*ÅDg1‘Ó,&¿Ú%¦à%ÄTž—˜.¹\"f^Q´žŠÅ\n­bñÑ\\ñ	ÿ“âm€ØÚe§ø$0-¶|->uñ¥øô×¿b[ó)±-o·Øö¢†ØnLZl÷ÛYloŸ.¶÷ú+¶ÿN;xb‡WbGÎ{ñ¹Ç=âóß¥Äç§+Åàâ“JâSâ‹ÄcâKªyâ+áeâ+£¿Äî@ºØ}dV|M›.¾v¨\\|i(¾ÖqX|m*¾®xM|Ý/]|ó\Z]|ëž¬Ø£­Mìi -öŒ7{\Z‹½€$±×“(±WÅN±÷±Ïÿ1\\ŸñXQ\0Àe§aÙ\"Ñ”d”\r´Ð³÷Þ{?vÙ+-+\"’¥‘­\"”™†ŒEÊÈèÿñýÜûòwÏ9÷wÎ\0H–\0!!;\0!ïÁ€°Ol@Øx œ(„?\"6¯\"|ê\0þ7‘z7\0QÎJ€(Ðu@Ô›Í€¨¾e@4?sBˆ{b>*\0b?S±²€¸^ ™Hé(\\\'­\0n0Ü8c¸A\r\0Ü\\™\0¤/h2ü[™y€l­À779ê¯9EI€»¸)@Aö@áÍã€â^ $ð D|P2…Tl\"\0*†þ*÷e*_|<Úâx<åx’Ý	xJ³<MÞ¨®ø¨ÉŸÔüŠÔ¬%ž]=¨u³Ô¾þ\n¨k\0Ô€\0êÃ¥€çu€FÝ@£ÑC@kV$ õc% ÝEÐQÆ¼4Ü	xuÞÐõ$ÐmmèFª\0º__ô(–\0zYî€>Ä^@ß,	ðvcÐÿº0à²0hÉN†N¬††”\0CŸ#I\0#¿÷\0Þz\0%€eþ€Ïx	`,Aðex\Z0™L+&{ø€É¥eÀ”ÇfÀÜ0\0ð=ã=à‡R4à6ðóÒ\'ÀÏ&eÀœ¹\'`Þî3`žOüºs°P{°(g\0XÜÛXvÛXAæVVÏ¾\0¬vö\0ÖÖŽ\0Ö\0Ö›&®DÀFm(àß¡À¿c;€›ÜÁ@9(_ Ê¿\0®þ*ÄÚ›ï\0•žæ•s€Ê-€›æ›ƒÕ€[,ï·ªà[-ØÀmzw€Ûn€jI€ZÚR –Î\nPçšP÷äi ÁÀ(Ð¨ùÐ¨_h|öÐ84h²·hvÇ¸{ôÐÊP´29´:phÅŽZË…­;wm_,íM1@Õûÿ{tà¢û¸Ÿ€FŽ\0˜²k~*îñó:h:u€NÓIÀ£-²À£ó›€ÇþÂ€.ög®ËI@7ýÏ@·æs@w„ð¸R8ÐãÍo ÇG çÕO@Ï¦C@/6èõ[xòèÓ·èKžÚ›<ÅžýVt€þv€þe`À×Às÷çmö=\0^tî^|g¼8£¼”ÿøü0Hõ,0èçIàåñ@@·òØMÛ¡{î\0¡é@hÕ3 üf)ÞõˆŒaQä ª¸ˆÞbŒ¾±Åh î„Ä»|â?ÊÓ€„ç•@âÇ@ yhHº¤ÎÇiJ7€´XK m2H[2‚ºÌf*m¥\rd_\0²œ€ç-@Žà=g#ò§€ó?@K>PrÞ(ù¾”Ú=J7º€!ao!õJÀo€!ÓíÀð¼cÀð7>Àð÷CÀß­À+>ï€WÄg€1žŠÀø$0þz0¾´˜X<\0L*=LÖI&CñÀäè7À”>Àk9G€i‡¾¯ÏÞðòÞÅoþ‹¦«cé1ßYõÀ¬p`öùÀì`vÉ0çùq`®˜+Èæ1ë€yI›€ysÚÀ|í_À{ÄEà½¨5`ÆX¨©\n,¼(,Lù,lþ	¼ï˜¼:,ªþ\n,ö÷–žÑ–>»,¿š\n,ÏÌVÚ2€=gU¡À\'ýÀjK°æ2\rø¹XNÖÕw\0\no\0wþoô;°™ï\0lÑG[lâ€í÷K€ÿ×S§ŠØ™ûø²7øŠ™ìv\n¾ù|Ø¥	ìé~ìÝ5ìM>\nìûÜ|§—|—kìÏD\0D?ÏGvšßÿµŽ~}üà´ø±ã$ðo	øyÜøÅ;\Z8±épb&8YÛœ\\Ûœ2Ýüšœ®¼œni~¯°\0~ÿÝœÙ•œ	Çg’ê€39‹À™µ$àZ]àOägàÏ(GàÏ[nÀùù·À_r²À…—ëÀßzõÀß\'Àß´À?‹´§À¥7ýÀ¿m×k—Î7šœA2¬7 £û åõ\' Í¶Q Í’<ÐæÞ Í}& -¹% ­b%Zõzýu†éÆ%æ:Vù~V{H›ž\0ÚqÉ´#þHwS7Hwg1H·a¤çµ¤÷\0\rÒO4í<Ñ\0Úùþ\'È4àÈödú¦d&x2/e‚v!‡A°ý Kç.%\ZÚ}‚Úc¢ÚsE´ç´gÐdmb²Îv\0íS­í3Uíû‰íŸ:èäkB«•~€wIAN[UANÇAÎ Ë%U«Ü?ûÄ7Ðñ“# ãeî @GÐ‰¹ êÍ ñb·B\0èdqèd»=È§Yòú:#Œ…ÚÎVö‚ü7VAçmt@çÒ@ÅÐ¥^((ð4ÈÂ‚Sƒ‚$S àÊ00æ&BÚ‚žA_½Á$ÛAˆxCâ·\r±D!I© ´`„i§ƒpì= Ü­n>g„_šD·AÄSª b¦,ˆbW¢8QÎãAT‡W *í>ˆ:›¢á½@Œ1ˆi™b(Ø»nƒ8Z@Üü þmÁ\n$LpIr@!‡ì@¡‡›@¡•Ñ ÐVyPXìQPd8tåÆuPtc(fé(V2ŠCƒâ/çƒÒû@	¯•A©r­ Ô($èšz\"è:ü	èzÑèúÇYÐÏ<ÐÍÀÐÍièÎ”ãÊØ2Ê¼5Ê*leßº\rºƒå\ZðAyQf |&(ÿÆPþ‹iPþr7è^¯1èÞÄ9Pâ	PTPrtßÂt¿ÍôÀÊôÀö0¨86TRÿ	Tje*½•‘>€N¸*¼@•àQPåÚÐ£SÐãím *u è‰·èéw?Põ­S ºPÝê/P£ÔèQj\\¸	jzXj~jþêj5rµ&µQ™ ¶Œ P§ê|ñôJøôjp;¨Ëj7¨ËÕÔ•ó¿#P·OèîèÍµPo5Ôgšê{µôn|ôî_¨ÿV:h0à	hðîcÐà’h¨*4œ•\Z±z\ZÍ~\n\Z³ü\rú²õ*hüÈcÐ8ù)h<Ý\r4å\rš¸ašÈìMÚG‚¦B‘ ©„Ÿ éër ZN \0!h¾óè·ÍÐo\Z	ôýYd‚\rw–Ÿ­<‚þ¾°ýV­ï{Z¿­ÿ¾Úèvm|ü\r–q9–%É€e¯+‚åÙ`…êR°¢¥X1\rVì,+AÒÀJ5É`e³ðæhxË¡Oà­8_ðVñ:x[@x[„#x[jxû™i°ªÔ¬ú¯¬fVƒŠÁêë?Á\ZÏ‚5>îk:€5µ¤ÁZá`íÓë`”°Î‹°Î›x°®QX·ÖãÙ‚õR‹Àúšá`}ûI°~½;XÊl¨Û\n64À€\r—.‚XOÀFq/Á¦ˆý`Óá\'`³{T°ùðsð®Ìdð®O½`‹˜;`«Ëãà=ÏzÀ¶!ÏÀ{_YíGºÀöß’ÀìN°Ã{ð>´/ø@ŠøÀGU°£øØ±¶\r|Ä¶|äÞ4øÈò	°“ã øèŽdð1)øó,Øeµìú9ì¶l>^{|B„{`Î€=-–Áž­À^jÁÞf¥`ïÀ°wÅy°w/	|²RìÓ¢\nöY	\0û&Úƒ}ö€Oi3À§Ú:ÀgŽ&Ïª†‚ýþŽ‚Ï#wƒÏ‡Ëƒ/,‚=šÀË!àÀÕYp°î~ðeº¬ž\0†ä¹€!¯¸`(b;GÃZãÁ50‚èFi½£ŸAÁ˜oÖ`|@+ŸžÆw^dÕÁD ˜\\T¦ý0ÓíæÁô&˜ñ Ì”§€™E0û˜ß\ræ<~æy¼ówlº~€Å¾?Áâ%`i‚=XÚŽ\0KÇ®‚C^pÁ!CàP£:p(Áúå8lÇ8\"b‘§\rŽŒ4GN.¯*©€¯<_ýÛŽ1Ž=y/~NˆÖ\'zn\'ñûÁÉ§Á)8\Z8ÕCœ\Z¹œúù*øZÿ&ðµECðÍSÀ7ïEƒoƒÿ‚o\'Lƒoß›§—D€ïœ¾¾S1Î±ç”&sÝ¢Áw!Æà»˜dp>\n\\°\r\r¾ïw|Ÿr\r|¿.²>.r:.fe‚KÚÁ¥ÊùàÒepùwp¹mÀÿªÁå6ƒ\"ŸƒFƒ+Ü\0?ÖšWýÉ\0?ñ\0?9—~Ê`€«-Ÿ^?ë*?[k±æàº9)ø¹ÇSðóK5àçÄ)pƒ×mpC[3øÅ\\¸i­ÜbTn=ÿÜšlnýH·Ý¬·_Î¿² ƒ_­=w}î\"´€»fGÀÝÃwÀoÜáà7,pOÁopïß7à¾€ð;3&ø]é4xàäx°f+ø½y<ø}¥\0<Ú§\0þàbþÈxþXþø´<–vü±<þæ0xbð#x’KOfè‚§\0ÛÀ_ÙKà™ÛÁàŸ¸vðÜðÂþ,ðÂ›à%¹(ðR-¼<¶ü÷zxÕ\0þ·‰þ—ÿ²IŒ€È]ÖƒÈ_‚(€nB4@”#_B”oÕCTØï *BT~×@¶x\n![®„l©…lßÞ	ÙÞq¢f^QËÃAÔJÊ êuS\r™6ˆ†ü&ˆÆ2¢¹ü¢…‘B´Hÿ :DKÈŽA4dÇ§ˆ®»6Dt\0¢Wÿ\n²óR-dg“Ä`i\'ÄP—1Ìÿ\01ª:1ê‰…kUBL(å“ªIˆÉp4ÄtÿuˆYÎ>ˆ¹9bNyÙåÅ‡XÍWAö,¦@¬ïŸƒØÝ­€Ø•AöZþ†ì½gÙ[k±ïƒØ¯B¶„Cö]ûÙÏCCöª‚>Dƒ8¶„8y@?ŒBŽˆ±§ßµcìs×5Ä=šq¿}\nr<Àâ±òâ©<ñDjC<Ã5 ž\r\'!ž3ˆw|\'ädæWˆç:Ä\'õ(Ä÷íQÈ©Ö3\ZË3™ gm& ~ª{ ~V€Æ$È9ÕÈÅm6KÖ!UZ R¬ëË@`êL3!ðÚý¼ÁD}†`ª\\ ˜eOn›>/¡@ðE;!„CëÒ‹‹òÏ:åBçœ‡05f!LÀ*„W\ra?ACØ‘Žÿ~ˆ þ6D”›	óq„„_ß‰0PD„m…DiÔ@¢>¸B¢\rS!Ñ»áè˜Ã“Ø€ƒØw(H\\»7s	¯y?™‰Ÿ®$l\n$ÊP!Ér$HJû:$UJ‚\\“ñ†\\¹V6¹• „¤» ééhHú]kH¦±<$k+’ÕÔÉ&@îÐÆ!w6‚!¹9‘»g+ yv|È½‹‡ ÷n˜C\nN³!—Ã …J­%HI-¤tÓ)H¹¼:äá•gGüýÇnVÇLyÈã»ç UlGÈ“½Ê\'v\'µZ§ÀTHõ¡‡ê£\Zþ3È3ÚfHmÞ+H]/Rç%¤áF\ZäÅõHÓðKH‹ü3H‡B>¤£›yyÈò²¢\rÒõ;ò&ú1äM\nÒcÞé5q„ô†î¼5¹ygƒˆÞC$¡(Èˆ[	d“\0­¨€Œ~øùøü$ä3÷\'äK\n\r2~ûdâ9\r2Éõ†|=…†Lë„C¾ÿ\Z…Ììˆ€ÌfdA~R\n ?ßyBæ7á!óA-_Çç ¿µE²˜YüÔY.xYî?YÑK„¬ˆ!+ÅÝ¿ÎÓUÙKUÈ*$²ÆáCÖýö@Ö!ß!ÿJ.Ce¡½P¹}÷ r³P9¨Â—E¨¢šT±fª$ƒ*ågB•šPPeeUèæ6\0T¥Ý’¬ÝNÎ‡ª:)BUƒ>@Õ4EPõŒ¨F´T#ÕÚÖÕY8Ý8\nÝÁAuEw¡º¥Ÿ zîÇ¡zm>PýøH¨¡‰ÔHý0Ôè|7Ô¨ÿÔÔ¼j.ßµ°Ë‡Z:9A­h‰Pk‡ßPk±ÔöÖ>¨m•\0º]Ý7¯Ýîô€c6ô`Ùkè¡ÀÝÐC?¡‡;¶@_éA<@CžÒ8=šcu¦ý‚:pãåCÝÖ4 Ç3ˆÐã¥.ÐòzPã¨§s4ÔkÓS¨÷nu¨÷Õ\"èIžz2†=9q\0êãã\0õ½sêûú\ZôÔ>è„,ô%\rzÎg;ôÜ÷¿ÐK%ŠÐËAÃP@M=ÂCaÙ· ðÔ,(‚´E–Ü„\"×™P”)Š‚7C1CuPìšŠ)…âÿ%B	Ù(á#JJÙ%¥Ÿ‡RPÚÝPft\'”£ÿÊì‡\n¡JPñ‰‡Pqy<T²9*µ)ƒJ&ÐÛ5hˆ‡4äòKhèM\'hhËahX?\Z®\Zþm74R£\Zikìx¼ÂßFUŒA¯lü†^Eœ…FûhCã¦G ñ—¡‰Ö\\hb×4	XMEC“\"ª¡)ÐkÈ2è5üô†®ôæóÐÛÙnÐtYUh:÷¿EhFX4cžÍôð„fiiC³QÐðmhLš›í½{æ4/lZ€x-hñ…XB‹Bü ÅTGh	ÅZ¶ÓZùrú¨2úØÛZEû\r}BÝ\n}’¦\r}ò~?ôé§XhM€´fzZ{HZwñ6´>ù5´¾¡ZÿÞú<÷´áR´ñN0ô¹ÚÔm>ºÚöè\r´­“\ní05„vŒÙ@;ÏB;oX@_ÝŠ¾ª\rƒ¾j¸\0}½5ú\Z’\0íÚdíbŽC»Bd¡ÝŸR¡oæ; =m¦Ð¾i/è[£³Ð·ÎÏ ýÐæèûý©ÐÑkMÐÛ®A?ý„8\0ýT†‚Žm©€ŽùBÇºû ã‘7¡ã7¾AÇïD@\'O«@\'	[¡“O’¡_Ÿ=ƒ~¿|\nú½­:sEÒ¡?Ðùí÷¡óË ¿\nžA3 y!ÐßfbèâX%t	ï	]>º|\'\Zºüœ–ß¡¡Ëk†Ð¿6<è\Zq+t­]&#Œ‚mÊ Á6ý´ÉY¸Âäº‹a\nƒƒ0Å«\Z0å„\Z˜JqlË—ØV¬6lÛþ£°m#Øvb5Lz\r¦¾+¦‡i^4‚i)ÄÀt¾ˆazr\0ØÎÓ¹°Q\n0Y#˜ÁŽ˜ÁÕ&˜±	flS3N<3³`¦ûK`f\ZJ0³>˜ù“°]‘Æ°ÝÍPØîßî0«ùV˜=EæððÌá¶ï¬ìÀû.ØAò%Ø¡¶˜“¼ÌyÐv¨s9–sÛ*s³þórVyÿ„´½\ró	7ƒùVÀNMDÁÎ<Š»óãÀüÃaþ0ÿ¹—°st=ØEKX áàÂ€;\rDÂ\0¹%0àž`ì§á\rCVˆ`ÈÚ[0¢†>¿ÃÞÜÃ¶lƒžŽÂ(ådõT!Œš\\£é®Á˜WÀ¸êO`ÜwÖ&ônƒ	?í‚‰t¦a¢k0±Öi˜˜m\r“¢\naáZ`á–›a\0°È£ßaWNÍÃ®ÞDÃ®þ1‡%ž{K¤¬ÂR¦žÀRG«`×ƒ6Ã®¯ŽÀn¸î€Ýt2‡ej>€eÒ±°,‡c°,ä}XöÖ>Xö2,‡p–{ì(,ï‹ìÞ+¬ ê8¬ÐµV(Ø	+ÿ+,ø¿j+2¼+ú\r+¾ü	V\\ò\0V²õ\Z¬¤ÇVºí¬´ÑV.äÂÊK\Z`¡:°Š¦0XÅÄ:¬òº¬Ju¬J	«‚OÁž”NÀžThÃž’ÓaO³oÁª‘c°\Z2ö¬‰{öŠ\0k¸khÛ\rkxkþµu¾„µ\rb`íñ¥°>Öq-\rÖ9zö’SëÙ\"ëýlë‹R„½­cÁÞùÄÀúÛÁ°Áw®°áhØˆ{#ìýÊ5ØèvÂÿfa£‰¿`äNÂ>¼Ï}t­…}y<›°»›´ƒM™¶Ã¾­?†M«<€}ßûn}ÏbÁf=a³s`ØCØ#°¹È|Ø\\—:ìwð\0lÑ¨¶x2¶J…­‰°uÞmØ¿±­ðM±à²¼U¸lŒ\\Þ]®D¼WÙq¾Å»¾¥¡\0®š\\W«ö„«õ@àj¿~ÃÕ× pÍ)_¸ÖM\Z\\û½\\7j7\\¯ý\\oA×¿Ÿ7	€¹7RŒ„=Ù	7ÖJƒ_»71˜„›>€›ÊÝ€›:•ÀMÉ\'à¦ÃÑp3“Sp³W¶póÚ)¸ùŒ|—áÜ²_·úq¾R·Î€[ÁmŠ‡àv8,Ü^·no÷îÀÇÁ»?¦0à‡WÍáŽÆ¸£w,i™tƒ;Ý=\nwúË†å8Á.í‡»šÃÝ÷ÀÝ&ïÃÝ·l‡¿J…{ÑáÞ1~pŸòl¸¯ÝÜü~¦M~±ª	h	¶Â»¿À\'áÁíÓðËÉÍpÀù68½‡9™Â‘³fpÔw;8FCŽ¿óNˆ‡„ÂIºpWN“«3jçàŒù\Z8û{œ·£Î¿ªM‚áb<.fÏÁ%“kpé¿rxHÈixH÷xè¹Pxèí@xØþð°,<âº><ÒK¿êà¿\Z¯\05ƒÇ,®Ãc/ãá±nð8Ç]ð¸É:x¼Î2<^â¿w?¡O8O(<OLÒ†\'¥à©!ûá7kÁoŒî‡ßÜû	~óeüvÊwøíz#x–m;<—üž›.†ßÕú¿§/øx^(FÀïãáÅ›€ðâØðâ´ðâ5?xÉP+¼Ôõ:¼Ô×^>Þ¨i¯¸š¯X¦À+MQðGØÏðÇ‘sðj‰#¼æA?¼6\Z¯Ëo”\\‚7\r”Â›|„7/ü7ÿ[€·Ô¨Â[8ðV“ÿÇó½:ðNU¼ó8\nþZÇþz¢\nþz#ÞmqÞ©ï@ÁûÄ÷áïœFàï\Z3àÆBøÐ×Løp|$í\Z|¤Ï\n>ê¸Û\Zÿ\"÷þÅh>Ñ\nŸ¬&Ã¿~ƒÃg@ð™âÏðÙCþð²Ñð9­Aøœ·\'ü×X>|z\r¾€‡/i</}ó¯è·ÂW3ákáDøzØKøFPü)!Ãx-;“¹‹ß´Œ?Rˆ_ \Z\'JÁEå^oÄæÊÿ’[T_ ¶Ýþ…P5µC¨©Cê\'ä\ZÌ­¢„¶…BçDbÇë;ˆWºnûú\'4;Ã«;3m‰·+&C+m„a¯ìÿD“ã&³še„yâQ„ùC\nÂ¼VaÙv±ûóeÄäM„uá,ÂæX8ÂV†‹°m?…Ø»ÖˆpPA8œ-D8<ŒGì‹èEìçû!]ÝŠ8”éŠ8òÐá´ù$Â\ZŽp® \"Ž…íA¸F#\\¿è ÜÒkî#%3„Ç³Y„Rá•æ„ðšƒðµjCø~ä\"NMŽ!Î¼Bœ%ò—”Ñˆ@9\"ŒRQ@ÝC\0\\J@b28ä‡€»ðsztÍ>f­\nýà…ÀÁUøè×ÂÅ±AIf!(óTí¥‚±\'ÁüD°ÂSE‚S<‡àjØ ¸Ý¾\r!‚\\Aˆr¬Å&Dˆ›#\"TJG„…¾B„W1WÍ×1ûF1×.!b±É5ˆØêDìçvDìd=\"Îõ\"®«ú	‘à{\0‘X˜‰HbÉ\"’nC$w^@¤†&#R°×\"­i+g7ün nÜœCÜŒEÜÆ¶\"Ò­’é)éíýˆŒç$DÆz=\"Ó,‘\r¸‚ÈžÚ„È!}DÜ•ïFÜSFäýiAÜCy#\nÓÚ…¯z^$#J¬%ˆ\nM3DÅ•yÄc¹DÄã‹{¼O?Ë!ªs³Ï«½\r+¹ˆFø1Dcd=¢±h\0ÑøÌñ‚wÑ¤hr– Z.˜\"Ú!uˆNÑUÄ«¶ Äëã¯Wš]rûÝO5oÞAôüßÞßÊ}A¼\rtC¼ëWFô=sˆA®1Tkxïc…ø ôñÁÐññqâ“ÂvÄ¤Ebj?\rñµûb\Z²Œ˜ýÞ˜Û9˜?CÌÇN#æ¿”\"~9mF,¼Ô@ü~˜X<YXä7 V,1ˆÕKˆU±&íG¬ýÞƒX×¹ŠØ†\"6Šmÿ_!þåX\"eT/#eÊ”òvJH…Ó‘ŠÓäæA\nr‹ìNä–¾)äÖX:rë½	ä¶¤j\0©úÔ\n©n‚Tçª\"5š\ZSHÕ7H­¨³H­èÏÈ	&H½=¾H}~rgz?Ò`ç?¤á/u¤‘iÒèh1ÒXŠ4æ×\"MüG‘&“5H3w1Òì÷&¤Å¶d¤E¦2Òr¸iõ$¹GÍ¹‰GZ.#­Y¿6QH[íãÈ}{!¤Š‘‡Õõ‘‡«þ!“¤È#›N\"ÌÎ?W.9úH—þV¤+_éfõé‘OFz:¾BzÅ©\"½2®#½Ö‘Þ³¯>ösHßz1ÒwmyÊ&yÊ<ÝøyöÀò¬¯1Ò,ƒô‹\"ý—o ÏÙìCž79<ïúy^\0E^4!…/A\rHàŽH`\0	‚É#Aâ$Ø‹; ÁHð&òv	ÕWCBƒÍ0ÂÆø‚D*–\"‘®HÜñQ$þ°’\\£Ž¤Ê9 ©aãHj	’v+Iç‘ŒS}HFò^$£ê\r’×»É[{‚ä#‡‚Bƒ³HÑ¤8¤)±x”ŒBJÓÒ²‡Èmodè.2d:\Z¦ƒE†¿GFðAYÈˆ|däöÈ¨ô_È¨{6È+YÈ+O°È«F×ÿ7ƒŒ»$DÆ½òFÆ\"ãó‰&2Í¶\Z™V»™62‚¼í/ƒLß\"A¦Ûõ ÓÃô‘™˜pdVà5dÖøä2WP„¼{H„,E©,!‹´lEÇCEÝ$äùä5yd±ë,²â¢\0ùxÏ>äãðtäãñ}È§ä5äÓÔ9duK²vYK×EÖJÝ‘u×#^ _4Z\"_ŸG6=kF6­6 [´Ž [hQÈI7²5ßÙ¶»ÙNÎGvº×\";a{‘#‘¯.ÿC¾%!{]î!ûŽ}™oå’‘oC. û5ãýÞ•ÈþûÈþi]ä°Â,rdñ2r4á6òƒÖiä‡ÖdäÇTòÓGcäg,òóE+äçšäX29Ö”‡|FN22“ÁÈ)¹(äÔWoäôÂäw;1r†EÎB_ Âš‘sìqäok,ò„ƒüÓø¹HÙ‰\\ªUF.}ÿŠ\\q>Žü;\rB®¦\"×µ\'ëûN\"ÿÝDÉ*£d·¡dÉ¶(y‰\nJ¡y\Zµ™RÙR±¨F© 4Q[î¢¶®~Gm»†ÚVö¥\nNG©–ãQjïVQ\Z	¨[ÆQºNÕ(Ý^O”ÞŽx”žù.”€ÒK¸‚2ÔÜ„2.ÊBE™›£Lý¬P»Ö\"P»ÕÝQV!¨=r\n¨=*¹(ëÚ(›c¨ÿç=Ô>³ƒ¨ƒ›ÛQ=íP‡6íGÙËA9Mw¢œ³=QÇ¶–¢ŽA¨ã©s¨·P\':-P\'&†QžïQ^ß[PÞE(ïVÔIGê$=å\0¢üBPçÍ¨j\'PÏG]úœ‰\n)¢‚~Ž£‚ƒŸ ‚_@¥ñ(ÈÄ\nš¡€‚éå `­Ã(Œ&…ù‹Aá:Pø=çQø© )ÎEnqGQ6šPÔb6Šv&Eë7@Ñ™WQÌ*(±gJ|­%IAIÆäPÒ”/(i%d BŸÚ¢\"ö¨¢\"û¢b\\mP1§ËQq/\nQñ€ß¨D…pT’Æ(*Éí*âŽJ‰‰C¥þ®B]ƒ¡®IÚP×êÿ¢®õ	P×ÕZP7®W¢nFÿEÝØŽJ‡Æ¢2¨Œ©VTæÞ	Tæ¡tTæÅZTfª*k[*Ë-ugØ•ûD•gW€Ê+IBå?­Bå¯žF[W¡Jž„¢J»²Pe¾ÛPÓ]P‡¢* Z¨Ê¸:Ô£Ë8Ôã×³¨ª+QO\ZbPOÑe¨êÝ7P5i*¨ZgTUÇc¡\Zj·£^ÐQM;ÿ š÷ÝA5ç¡Zõ¶£ZÔP8]TÇr\nêed/ê• Õ¥Õåí‚ê×¡ºÖsPÝù¨7J¨7˜¨·êA¨·÷i¨·n¨wÆ¨wÄ!T¤7ªÿ~6jàÞfÔàÑÔÈÙ}¨‘œ¨÷&¯Q£fn¨7Pî/¡>ë¡>\'®£¾ìE}Á\r£¾PQ_B/¢Æ¯¢¦zo¡¦«ÿ ¾+X f*P?µkQó¯ëQóo#Q¿‚“Q¥ÿPÃ!¨?O²Q‹\r›P‹ÃßQË_PËãë¨å?‰¨Õëq¨õ¦¯¨èMqïÐ›ú†Ðrg\'Ñr;´\\wZ¾¡­GG+žc •~D«ôÑ[¶õ¢·8ÞFoyy½´\r½5Å\r­êž€Vý´­±Ö:QŒÖoBë5IÐúEÅhýeÚ@fm˜ICV¡\r_œ@émE7áÐfŸÑfg´¹sÚÜ£mqÝmQ¤…¶(Þ‡¶ôø‚¶¼àƒ¶ÄCïŽ¼„¶	EÛLÐö\'zÑögž£÷ÛÑÑû9OÐ,ˆèï<ÐÏ»¢&9¡ªÉ ‹mÑ./ÆÑn[Î¢ÝŽ§£Ý~ô¡ÝÝÐîhoôñj9ô‰–Q´—›ÚË\'}rG:Úg\ZÚÚ†ö=­‡>¥•†>JAŸµ×Fû“EûÛüA_<i‡¾˜IG_œïA_Rä¢/íy¾T\"E2î¡ƒtß ƒl4`À\Z\r¬á A%ûÐ ŽhÐß#h°¦\Z\\èƒ†|8†)lEÃ•2Ñð=Éhxù\Z¡î†Fîå Ñ|4NpûõÏ×A8hâöq4Ñ¦Î3Ð4chºÍ/4}Œ‚fÚ†fz!ÑÌŒ}hæ+4‡F³(_Ñìo{Ñ\"ÍM*Fó\0fhå&ZPçˆôE¢…ãhñA=´ô¬2:4„ŽP¶GG\\ù„Ž\\þ¾ÊÊFG7qÐ1]t\"\"rj:VNÕÔB_WA¡oÞë@ßìŒDß>®N\'ýCgïUCg³:ÑÙå\"tn~-ún~:OE/¼€¾gõ],@—ðÐÅSÏÐ¥í†è²¸QtÙÂ]t…ÉWtÅÏïèJŒºòÏô£gÑèG?xèÇ‰jè\'ÒnôSÕýè§aè§)tí-t-!]ØýÜgÝh@7æ$¡_Ô¢ÑMš£èfÕ\\tó$ÝþwýêY\Zú5ñºËúº«3Ý]ÝŠîqèA÷pèèžº×‡îãÿF÷õïA÷¶¢ßYlA¿+g£‡–×ÐÃò1è‘@!zg†ÍþŽþ°n†þÈCA£ÑfôÄÛNô”ýí:ým9=ód=óâ\0úÇÖFô| =?sý[Éý+‡^Šƒ W2Ñ+opè5óÝèuåiô†dý/Fý¯ãúß¼#ãö#Û‘éÀÈÌ®bd~…aä-Œ0òîƒ…£åÿÁ(]àb”Ïc”—vb¶ø·c¶Úªb¶«tc¶KOb¶?¯Àl_wÇ¨]Å¨/bÔn`ÔzoaÔƒ1Z”ãígÇ0:ÞXŒnª9Fï7£·´€Ñ÷ªÀèßÛÀì\\JÃÌöcm1#,c*AbLG¸˜]}ŠK¥½KMuŒU†c²ÅØlÓÄØÖýÆØ!aöÊœÃìÃ\n1ûã\n0¨9˜ƒÓ¯1‡ö¨`«)a[e0G‚Z1Î›²1Ç]Æ;9öc/Æ%¦ã™ùãM}Œ9ÀÇœì¹…9ß‚9«9=vsÆn;æLaÆïõ.ŒÿZæü^]Ìù¿˜—>c.Ý‡c½Ïb%˜ qUÌåSK€ˆÉb1àG#ðËlä);×ßÆ tÝ1¨¤0ª\r‚A+þÆ û1˜^\\Äs¾¾Cr­ÃÈg0¤«w1”ÜzC¯ôÀ0—0ìc%ö*Ã5Âp»bxÎ0ü±RŒðHF(¡cD†û1bÜ\rŒÄÛ¶¬ˆ	Ïåb\"î¿ÁD!îa®ìÂ\\¬`® v`®´.b®š÷c®’µ1ÑWp˜¸ÕÍ˜xLü?L‚m/&±Æ“¬6ŽI•ïÇ¤&R1i#9˜ô°Lú$“ƒÓÁä…V`òÃÍ0ù¥˜ü®#˜Âæþ¼7¦)3VÄ”¹€)çLaŽ£0•8˜Ê¿ñ˜GDÌSåí˜§÷‘˜\Z+0æ™óõSk÷SkÀÔ•¿ÇÔ½ÁÔoÛŒi•`^˜0/õ1MzL“K*¦ùÝ*¦E”ˆi}Æ´mi¹Œyu0óúÓÕÃtõbºþ(aº™(Ì›€vLÍÓ#ÈÄôúžÂôYÅbúÃô}}ykìŒyÂì:Œpù„˜[Æ=‘ÇËÜÅeb†¾Ã¼R0£~ï0Á˜O×0cc‹˜/ÇÆ0ã®`&•1Mý˜IÍ\\Ìd€f²mf\nU™ºï‡™Z;ƒùz‡ùZý\róu9óíL<fz«ff33ë¡€ùq[3—†ùµ\nókéfáûoÌŸ&=ÌbFfñÁkÌbµ?fY Á,g»aV1kš&˜µë0ÌZ™#fŒÙ·ÇlØ£0ˆƒ˜—®˜B±2±²p¬üyM¬|ÁV¬ÂH>V)f»ÙÊ\0»y©\r»µå4v»#»}íV5•UMûƒUŸÃj<\nÄj:\ZauTc°:þo±;¶ªaw˜Ûc\r´Õ±†>²Xã;¬IÉ\ZÖdàÖvkÞX„Ýµ8‰µ<i†µÊBb­å°Öj\rXëªì^W¬=^»Ÿ¬ŽÝÿj{`Çmìà~ì0wìÊ;ØCMaXgÓ\nì1Íÿ;ã¥p¬Öë¦Ýu‹´ÄºÛÉ`Ýébì	|¬§òw¬ç\rÖ«Ñ\n{2Õëþë3rë{Öëûú%öÔEìñ)¬_ës¬ßlÖ¿&pj+6àÕ\rìÅŸÖØÀÏØË3¹XÀ·,¨ü\"š¡‰…¶±Ð±!,|g:á¨…E\ZÃ¢|±¨&-Bc1[\\±½óXœ}6åc‰87,ñÍ,ù·\'–Òb…eþŠÂ²â°¬Y,;åPna¹e…Xîw9,Œ2Ã±\"ùT¬‚ÂJÔ~b%,V\Z†•~8ˆ•ÎÄ†fßÁ†\0`Ã†IØ°y46ÜÈ^¾ˆP`#¿ÇFrÆ±QiØ+(}lÌÞBlL7ÕŽMò\'a“É…Ø”–Ø”£9Øéslêÿ9»¦×ƒM;‘…½y\n{#È{ãuöæÎãØ›+™Ø›ëëØÛ\nÿ°·ŸÁfdûc3«J±YavØ;^SØœ/&ØÜ½ýØÜÊlnÓNl~š#ö^¹¶`¯\"¶Àå¶°\Z…-6ÏÂÇÊc‹—ò°ÅëÆØËmØ’˜»Ø2p2¶œ^ƒ}x[[áÞ­¯Å>Š½€}4=‡­*cŸ¤2±Õ‰Ø\Z$[ëñ[·±[ßj„}ïˆm4¼‰}¡÷Û\Z×†mí+Â¶¸bÛêR°mK°Z›°AÞØŽàlçí}ØÎ‡·°¯¼€Ø.Ô{l€íê¥b»¿Mb{wÖ`ß:ïÂ¾’`ßÅÝÃö§Yaû§|±ý_cŒ±ƒv°CNÕØ‘¾›ØÑÕ5ì\'‹£Ø±8ìXû\rìØHö‹q+öKT#vâNvÊ\r‹Ê\"a¿Z~Ç~}×€ýæéý¾ÁÀÎˆÆÎM`g†}±³ÉIØo`¦8bç”8Øùx{ì|¹vÁp\0»`2ý]…ÃþÁõ`Ò°«M}Ø\'G°ÿ®¸cÿ-oÁÉ˜+à6ñŸâd‹ûqÊžU8å©tÜ–âZÜVÕEÜÖÝçpÛ.)â¶oRÁ©ÛàÔv“qj¢9œZf?NíÉ!œ†^NÃÑ§éÅi­ŽâvèÃéÞ\rÂéö|ÁéÇ·ãvRÎàv–`q&Î °g00Š3ŒÛ3ŒÅcãŒ?bq¦‚Bœi|Î,ö Î,i3Îœb3O<†3¿»€Û5ÃYäÎã¬|Ÿâ¬(\n8«$mœÕ£Ÿ8ëæƒ8m2Î6ƒÛ«e‡Û;ñgÿüÎþOÎÒŒs˜«Á\\zˆ;ôçxÌw¤%\0çt+\ZwÔnç,ãŠsáÜIí8Äœ§s	Îóöoœ÷n?œ÷Þ,ÜÉ’w¸“¯¥8_“eÜÙÒÏ8¿cœŸW\rÎÏ_çGÎÇù…žÅ]hø»Ø»‚,¿ˆ^\\Á]Þù\rwyWTÍÀA¶/â jó8È+jP‡ƒNÂÁ¼q0F?qP‡@>Ä!>2pÈ}ïqÈ[xÊP‡ùáÃNhâpÖ8ÜuW~:\0‡ÿ¥…#H_áˆgpdÝ\'8ròE×G9ê‹£êàhÎ®8Úõm\\Ç¸3„côUá¸ën8Þúœ@%\'8ˆzùâÄ.8ññË8q\'ù¿yJ>pa[4qá)pÀn\\Dr.r²	UŠ»ÚðÓ„‹=Rˆ‹M¸…‹Í­ÄÅUíÅÅõmÂÅ§©álšp	p	wÎãÿ*ã’N*â’ðj¸ä—ûq©êa¸´œ¸›Ê¸tß\n\\úu.#ƒËòú‰ËÕ.ÅåÕÌàò–Oàò÷ûáò=qù“Á¸{A[pÖ\\AÏ>\\ÁÜvÜ}×\\‘Ä	÷`bW\\Ö€+›áÊggqÇVpãÝ1Ä=þé‡{z W½õ®æŸ=îYz®Îô\"®ÎuW_®‰kÜs×xâ®ñÁy\\ý®ù×›Çµ¨¹àZ–òpm¸vùp\\{Îg\\gýgÜËzÜËéû¸W÷~à^Í›ÿ/÷úÜ\Z®Û¿\n×}ëîíŠ<îÝÊoÜ\0§7{7´)7Ôw\Z7ìq7ÌÖÀ\rGá†ëoáFVqï=Ãpï‘!¸÷þ¸÷Y¸O^,ÜT|=îë7†û®¡ûÞ·‚›”ãfÐ¸YÍS¸YÆ)Üïs¸¨yÜIsÜ\\H×ÿÏ”QÜßº2Ü†³\nn£u3îßCm¼Lêi¼lÌm¼G\r¯˜]‰Wºô¿îÍøÍÆð›ÍÈøÍ/‡ñ*œSø-‰Çñ[[¾à·YîÂ«úàUËæðj¨½xõ}X¼úÔ^c\Z€×”y„×)pÆë,´ãuVÛð;búðzz9x}X^?ý+ÞÀropƒ7\n;Œ7úFÀHÇûðÆSxE¼¹‹:~×¾l¼åà~÷>-¼ÕíL¼µ‰=ÞVãÞvÌ¿~ï W€wH5Á;”‚ñûƒ/à÷÷Ç;dàÛ[ðGvJðN¯öàgeñÇ{ñn^\'ðnóøã}ø—†ñ^ê\rxßš/xßYü)¿³ø3÷wãÏ¶=ÇûikâýL®ãýŸ\ZãÏk^ÂŸw à/ÀÓñAV®ø I>øzþrÃ\" ôp÷ÃØÎx`c(‚1ÆC\rôñ°£}x˜OBâá*ñpg	qQlÇ£RSð¨f3<:\0‹Ç*mÇc\r‰xÂT2ž°úOÔ;…\'ÁœðäƒWñ”ƒ—ðä<åÏ<Õ’„§ÎÛãé¡rxú÷r<ãò<“#‡gMèâÙN×ðlÂc<§ÇÏ‹ÂÎxâ…Àkx‘\"/zæŽ+ÅKì]ñÒÅÃøæ6|¸¥,>ÜJžêÏ¥à#ëƒñ‘Syø+7ÌñWËñ	Z|‚ÿ\0>!ù>áO>qó,>ñÀ%|rŸ\"8ƒO…á¯¹hãÓ\\“ð×9EøëOâo´©áo¿!àÓsXøŒµøÌ\Z&>‹µŸýð>þ®ñ>Ïë$þ^_8úÿk2þ÷¾ØÄ_ì—/a7àË|Ìñeþ³ø‡šzø\nÞ-|¥ÿøê¾ZÇ_Ó`Š¯s]Ä×ácðõñõøúÑ×øç]ø‡ôðÍƒð-‡¼ñíãÛÓLðÕø—ë·ðÿß1|÷¶<|w±þz>¾w[3¾hŒ°¼’â‡~Çÿ,ÂpÔÄ´ â?ÞÒÄÒQÆºãÿ¢?ƒÿ–ÁOœ¯ÁOIÂOžÆà§>ñ_íœñ_ñßþÀÏÊÞÅÏ\Z>ÀÏŽ4âH*ñ?²îãd‡áçr—ñsu[ðóiðâBð‹éQøÅW¹øåƒ‹øåŸzøå•møô~¥©¿ú¿QžGØt•KPF”ßÜ&(¿?GØ¬_IØp† Rp—°Ý·…°=ý*a{ ê\\CPMŸ#¨ö9T‡‡j¢^‚ºA!A3b† õÞŸ =àJÐ	L\'ìût/“ú²‘„—¾v–êŒ\Z£Š~‚¹s9a—[=Á²B@°¬×$ìFí!X5hl6yìüC	{ƒµ{…„½¿2û‚Y„}Ï6Œ\r?\"ú‚#8~\'Q&Až#á°G\"{	Gß¸œy^„cL6Áå¦\ZÁÝ¹špÜ6p<õ1Á£Mðh8Kð,ê\"xÝˆ$x=3!xÛU¼Iw	Þ%`‚S0áÔþ	ÂéWw	§ßˆ	g´~²q?­)‚¿‡Á¿v•àßô’pnx…p¾zŒp¾õ+áu…pQF™pñ˜\Z!¨D‹ô£‹ÜíB¸üB‹\0¸iK\0–©`¸¯¸s\n1Ê! Õ«È·Œk/[N%àÒ\'	„k^b@ryJ ]#:,	d«<yœK øv¨¿´­ç	lýHûÑ%pç#¼äh‚± «„ù£Q¬%AºbMˆTÏ&Dß#D’o¢”ªQû¢Î+®¸v®Ü©&\\)9O¸²aG¸Ú™NˆŽ¸Kˆ^\"Ä{+â•„ä<2!%ú3!¥~ƒp]Å‘pó€2áÖæÂ-páV^	!Ýá\n!=ç-!ƒšNÈ4‹ d&-²³ÙÙ¡„;ËŸ	w1­„»s=„¼²\\B~L(¡àÿ|n{C(.ØE(5F(•êædÑ–„\n¤¡¢R‹ðÈ¾‚PÕYOx2ÐNx\Zu–ðtú(¡Æ>‘P¬J¨+i\'<?:Ghd¾$¼èT!¼x%%¼Ò±\"¼ªQ!¼.yMè~&tOÞdÿ ô<CzG“½_¢o«ÿ¸\Zü	ƒ¼RÂ`z:a$ì&a¤Î•ðþ¢”0úºƒ0:L$|8ÖMø°~šðññuÂ§)8ás\\áËÑ“„ñ%„ñ±nÂd½*áë%Â7îeÂ·ÂUÂ·j6a\ZÜIø>[@˜ÝK˜#»æøz„¹\"_ÂÜ‡Ÿ„yÕ\ZÂBÐwÂïÝÂïGò„E “°¤ÓGXZð#,ûÖþ&Öç¾6@ˆ2»\"‰²¯˜D¹=`¢|ï9¢¢MQiú>qËÑcÄ-Dgâ¶ýŠÄmÇê‰ÛH+Äm<8QõQdBÔÐ jîØAÔ4ùFÔ<IÔºµÞn\"j[ð‰ÚSíD¡Q<DÔmÀõ!ÅÄW>w®™\rÂ÷\rJ{ˆ†ÕD£‡¢ÉÌ0ÑÜÉ˜¸Ë—I´¼ç@´òn\"Zý»GÜÓth½Ç‰h}f‚hã\'ÚZ¨m³Sˆv-ï‰{!\\¢ýæ\r¢}šÑþ.¸oëUâ¡c_ˆ‡2µ‰‡ôÞ#ù¡OtúiHtŽÜKtÑ{Ety½@t»œHt‹?G<î C<±-‹xâò1¢Çu¢§rÑ³Õ—è½õÑû}ñ$ï8ñÔ\\ñ,A†èç.%úaƒ‰ç¦ìˆçE±Ä»‰žÇ/¼—\'^TGUâˆñýD\0c’\0A:DˆÚ4ê\"$Â	ˆ³d\"âÌYp„ˆÊ˜$¢•uˆhç—DÌ±D\\Ú<÷¢’HˆÍ\"R…ˆÔ;\"ÍtHkw\"2ÌmˆÌ!:‘•°ÈÊ$Ùrgˆl·DNü\"‘[éNävùy‚<¢Pº(\"½\'ŠÍê‰â cDq.ˆ()X%J!‡‰RÂKb˜Z1b×bØ—Q‘IŒ<=CŒŒüGŒŒ×%FE÷£c‰1±HbÌ8†ÝIŒEn!Æ9Ü Æu$&›>%¦ÜQ\'¦üˆ!¦ÒˆijöÄ´[‰×Ç.oÔ;oÛº3‰b&e‰˜åx„˜­kCÌÖ7\'æÌ#‰¹çwsÁb^n%1ïn1¯ú ñ¸ƒX˜.\"ë<’\'>xO,~¸—XæRM,§$VÞ½L||á0ñ©”C¬®Ë%Ö˜7Ÿ)œ!Ö\ZÑˆµÁÑÄ†â‹¼Db“l,±ù`±eûbË½XbkÍKb§F#±Ó …Ø‰ï\'¾²h#¾¾;Jìf§»£z‰=*÷ˆ=vÏˆ=³/‰}iaÄ¾%4ñ³#±¿Ûœ8ðgq(:Š8ôþ+q$»†øþäEâGîñcÜGâ¨ž8öü7q\"h?qäGœ<¦AüŠ	!N{¥¿¿#þ«U~#þê7!.Pœ‰‹Übâ’Šq‰˜L\\Ô ®¨Wv&®k×·º×‘BâÆÖ<âÆÇâ¿\"iÓ¦¤MáûH²E$¹G’ü	IiFRp\")´^!)\"åHŠ\\Iq,ž¤”@Rº‘”H¤Í÷p$•ËbÒÿ’Ê+’Êx#iËÛó$µ²D’z¬I=½—¤iûˆ¤åEÒŠÕ\"iÕ”’´ë\nH;¸ó$½­C$ýi\Zi§riçY’ªdrKB2ùK2ý[M2óP&™!.‘veg’,Ð¾$¬Ébí7iwXi÷\r%Òîú’H²zÂ&í	;E²¾ìL²þ* Ù9ž\"Ù‰\"Iv\r4’½¾+iŸ‘é@Îé`±é0¡tD=†tïOr©&¹4×“\\º‘ÜôÜ}_“<»y$oÝ½¤“ÇµI>—ï“|îh|ÛBH§˜H§·Æ“N›>$qð\'óP ]P‹#þ[%½zL\nú¼F\nV¼L\nÞ]Lº|Ý’Ü{<p€ŒºF)õ@FI ¨}˜±à“ Žƒ$Èx-	zá	:¼„°U%¡óH˜Î1¾ÄD¼2H\"t!‘aÖ$òO¥Ô›D…G“¨\\%=÷#‰ÑTAb\"±*“ØVGHœÞygf™ÄK}JulÄÃÞ$Éå³$I¡)IRò…\Z7D\nœ\'…_Á“\"°XRDÂÒ•@\"é\nFºúr\')ÚÜ–½CŠÆZbþ~\'Åe‘&I‰GŽ’šII/ýH7ûH7†«I·&Ù¤ô¢ó¤ÌÜ%Rf	’”}{ˆtÇè%éÎÇrRnõÒÝ_ßIy~Hy×UHù&¤ükq¤üéÖT`þ€TØ|ŽTÔhGzp6„ô \"‘T¼‹C*¹Ê •ô\'‘J&óHegHežE¤2È\0©,GT>óTqjˆTÁX%=Úü†TEÛIz©OzJS$U[=$ÕlÏ$Õ,&=ß>Mzî@%=?ÿ”ô¼é#©É¹”Ôôí©yO!©ù +©¹˜Gj^¤ZeVI­û!¤V¨:©=Nê`ý¯q;é«„ôªã.©«\nAêš\Z\"½ñâ’zL”H}i¥¤¾\rWR¿-žÔ¿¸@\Zàþ$\rž%\rm]\'\rÝÜN\Z>r•4<PA\Z•&\Z†’F·’F[ÂHþ¿ŸP\Z¤OÜË¤±ö\nÒ„O%iâk%i’OšüÔ@úú¯„ôí‡.i6÷inþé÷7\niéçYÒÒ‚1iùï=ÒŠ´R7LZéøNZ™-%ý½hCZßßJZ™‘Ö{¬HØYÒ?72YvSYnÂ”,7gG–ç0Éò	,²Òžbòæà¿d•kÉämÚCäíÞÊdM§d­\ZY;Y¼ã£	YoBHÖ·ž%ë£dýµKä¤\"²¡Â²¡ø#Ù86„lâ€\"›Zû’M½‚Èf6L²™s.Ù¼ÂƒléË [žÏ$ïa­ƒÓÈÖwÈ6^çÈ6c&dÛwÈ¶•ådÛ‰l²B Ù¡iÙá%¼oöùÐg²£Ò²ãÕ%òQÅ/ä£Ÿ`ä£käcQäcÍãdÒÙep7ÙuM>¾ÝŠ|<Å‹ì}þÙ;‘C>9åFöø’}÷‘}‰…dßOPòéÇ·È§{wÏl{@>Î ŸEZýöôýNùý	8ò9pùÂ¡£äMäKGŠÈ—’’o·ƒ+áäàúrpó_òåØT2ØS‰1‘!Ì:24iš}C!Ãc‚ÉðØ‡dÄ))1ãNF¾Ø £Þ¨“ÑU»Èè÷zdL°ˆŒ¡9‘ñr02þ°*™ø¶Lfÿ#“£“©F©dêP-™ú}?™¶QGf¦¦‘Y²)dVH8™5iLæ\\‘¹-êdî|™÷û8™¿’C†ÈÂk«diÔo²´Êšòï/9¢ì\r9’ùŽåôŠ|%ƒD¾R¾DŽvûBŽYˆ\'Çjg’´“.“ÊDÿk\"\' §)Ô¯ô‘¯ÿ%ßÎ’o/ÿ%g\\O$gŒ¯’3w­3ïŽ’³àýä¬®dòÔ`rÎå%rŽÈ”œS GÎYýLÎÐÈy©0r^…9ï<9ÿÝ4ùß/rI‹ù¡¾ùQE¹ÊŽA®:¬C~ƒü4ü9ùiV¹ZÞ™ü¬(\\Û†!×y¬’Ÿ“O“ŸW|\'7LË‘¾!7–fGåÈMh>¹éÜ¬`InéD“[íÞ‘[/í%·fÂÉ­+Èí*§ÈíE¾äŽoöäŽù*òKÊù¥ä\"ùåäW~šä×½ä.`5ùMØ\'r6ÜsgŒÜß¾JîÿŠ\'ôn%ô¡Éƒ˜òf\Zùã™(ò£ò—©ËäÉRmòTá?òŒ\n‘<£QAþQSKþénHþ)Í ÿ¼sŸ¼ ñ\'/z-“—\Z“ÈËŒcäåiòÊA?ò\nö$y#m/ù_|.Eöo%EN;\"×nF‘·°¢(U¡li¦l3ò¦¨~Ê¥¨ïÎ¤¨×ûS4vP´Úò(;®©St1-Ý>#ŠžP†¢—»—¢¯¤AÙiö?sŠÊ	Šá\ZÅðþ.Š&‰bL¹I1þŽ¢˜wPLÛÎQÌ»:(ß¼(V‚-k7Åú‹6ÅÆí6Åf˜A±\rt¡Øn¦ìS…Rö½“¡ì÷~@9\0.¥˜õ¤ŠÜF9,€rØKâ¸óåhæ7ÊÑ\'úçÀ”c{˜”cÂ1ŠëëŠ[øŠÛ/<ÅC&‹âyqˆâ\\F9¹iŽròêådæCŠ/f†â[×E9“{Ÿr¦qÅÏà0ÅÏ*•â7	¢øçÝ¡ìP¦p¢(å&”s%E”‹úÊ¥€\"J`óEJÐ!\n%¨î%X°´•^j¥@PG(0v(>:JAüÿ}ÈkÊÔÈ\nö†=»¶›‚«X§àk)„Ý\náÖ0…XlL!‘s)‹‡Jä\nU@¡§fRè¿wS¬(Ì—ÁÖ•N\n÷÷y\n¯t3…ˆ§/¼ ˆŒæ(â»&ñlEÂ\n¤„ÂÚ(a%üb%ü‰åŠî_JÌÀ8%æ“7%6j–wà%®d–’è°›’8Œ¥$×”SRe()]”k¦¾”k‡•)×<G(iíß)×i)×¿ZRn|¤Ü\nQÒãžSÒR²ç+)¹EJî‡?”»÷œ(y(\n%H¹wbžR M)°Í£<\0£”lºO)Ñ¡”m«¡”Y¤RÊÒ„”²{Þ”òE<¥|ù\'åao6¥rŸ\'å’Fyl´—ò¸ÃŽRÕ4HybmA©îbSjÙ÷)u\nw(uÁ\0JÖŽRÁ§Ô+†Qê·Ÿ <¿ñ”Ò8¿ƒÒ$/Ki‚\0)­z(Ú?(c)mª”Î™\"ÊKÉåå ,¥Ëþ.¥ìJés¯£¼uÎ¢¼Û·‰2˜mKyÿ0ƒò~ˆCùx{œòé-eL¬HùRp“2y]•2ù:–2U\'CùºB¤|û—@™æC(3ç¼)?,ª(svU”_\r”_ÿÂ)Ô(F\')‹\'Ö)Ë&•”•€=”Uo5Êêˆe­k‰²nð•²Þ@§lèÌS6XÊ¿Ê9ªÌoê¦/¯©²(>U–{*OJ§*Ø¸SpéT¥3öT%à3ªò	U%ÏºåÕgê¶_¨j¨j>NTíùTM…ÏTí«½TÝ†cTÝ&UïtU/í#U/ÿ)u\'%‚ºóêªÁî5ªÑUÕÄêÕTÓ˜j:>L5³{M5o8LÝ–CÝÕLÝÕdAµ,9MÝýl–j½ÓŽj}7˜j“}Žj›	¡Ú–8SíŽ,QžQÜ, êDR{P]~n¡ºº?¢º^üCuÍ6¦º®`¨ÑöTÏuª×zÒR™êSº•zZdM=«½‡zö‹êO0¥úÿð ˜ÿ¢^P»@½@Ù ^\nÌ¥^B‹¨–[©yÔÀþlêåÚt*Dk†\n}ÑGE¸%Q‘±©ÈGåTÔ\'e*j:ŸŠÖ£b.S¨Ø‡©x/ŸªB%¸ü \ZQ‰¨Ä^1•:¹…J³ð¦ÒŠd¨´vs*ís(•~b•:J¥K®P#AT–Ÿ\"•´ÊAP©œP2•é¢\nƒG¨B*V|B?T¡JÎTIw(5¤Ê‹\ZzN\rO}K\rI\roºHô+¥FW¯Sc{¨q`jÒA25¹Â‰šr€JMÝ©OM…ëRÓžRo¥4So‡úR3²ÏS³ß§ÞY*¢æˆÂ¨w—3¨ï¨…¹g©÷_TQX€©Åî`jIø.jÉwCj©^µ¥F-¿õúÐm’Z•£VvSé\\¤>ÅSŸÊ >}B}úÊúôçYjmC=µüú#¡6¸©/ÒP›jÜ©Íï7¨mª…Ôö>µ£cµkÒ™Ú{´ŽÚ_dM0¨¢<±¦Ö] ¶ˆ©ƒ_S‡=èÔ‘ížÔ‘´zê¨Zu¥Nýò‘ú¥=Š:¾ÿ=u|1†:@~E¶h¤~kPg´‡©3Ò9êL€úÃ%‰úã>“ú£ú\Zõ§æmêÃ‰:WžLGÜ¡þ6u§.qÏQ—øÇ©kwP×†îR×õ#©ë›©S\"ê?‹cÔõgi›p4YSM^H§ÉgbiŠ)4¥\'Ž4¥oÚæãã´­ñr´íjiªrBšjB!Mí¦y\'Msl”¦Ã|EÓk~DÓßâD38êA3\0Ñh0šÁš¡§;Íô•fH™§åyÑŒ\ZvÓL–âi¦¥tš™ù Í|s*m×5EšÅëZÚî4ëûe4ëÎW4ë•Û4›Ekš\\?ÍnÆ˜f·øœ¶Ï­”¶ˆvàÔí`Ž.íðú}Ú@ÍI#šæ¤w—ætêÍYÃŠæ’RHs\r¿NsZ§¹ç_ ¹ÿÙ ÏyJ;¡¹ƒæé:Cóô©£y!KhÞØ34o&‘vrß(íäL.ÍGÜDóY…Ð|·,Ñ|­Šh¾)\\Ú©ð+´Ó^–´3:Ú™	(Íß\\Jó/<Eóþ‚ Ñ@;gL;GÑ¦‹½J;oÍ¦Ú)Ó‚åà´à»0ÚåMQ´Ë¦i—!x\ZLö#\ræs†m¥Áï1iHY\ryX‰††ÆÓ04Œ×\ZZEÃ­wÓð1_hD\0F{¹ÆÐî¤1u«i,ÇX\Z‹ñ‡ÆVÒØ¹Ž4Î•\Z§h3²™ÆÛ&¢	7ˆ4‰ýqštÚ–²MJE …Ñ´ð™#´‹iñ¿ÓdZdì4-jÔ†v\r Å8í Å\\ ÅF|£ÅW§ÐäÔiI>bZÒõc´kâß´kJii»Ýh×_™Ñnìõ§Ý`VÑnÝO»É:IKW\0Ð2ßÒ2)ÿh™}´,®-{cvgïZN­-—‚ Ý=TGË‰¢å1¥åCßÓ\n6li…[©´Â‰W´¢€ÚüfZñv/Zq°\n­D¯‡VçÑJ‰¿h¥©£´ò¸_´Š‹´ÇÑßio7Ò{C«Òš¡=¹?A«nI£=s³£=Ã¼ ={¯E«ïÊ¥=W|EkðÓ\Zàõ´Þ ­az/­ae‚Öô!”ÖÌo¦5¿m¥5½Ok‘\r µä¼¡µ»öÐ:HZÇT\níeËÚ+UÚ«i­kçZ×>>­+ÜšÖ](G{C:DëÑÛOë9äEë}}ÖwœJë+»L{{.ƒö–¢F{glK{w\\“ö.|…öîš3m@ß’6ð~ƒ6¼F§”ËÓÞKÂiï+ëh£\'Y´ÑÏ¿hXßh{RiŸtKiŸž¿¢}š¶£}®~Iûüa6XKëÿH¤·Ñ&¶lÐ¦Žì¦McÒ¾AËhÓÔ4Úw™í´ïëlÚÌ\"6[,OûÉ}A›ó†Ó~]¢Ò2Ó~Ïï¡-=9J[j}I[>åB[y¥­š¾§­YÀhk•ž´uýzÚÈ™¶‘ÔDÛh{LÛXh§ý³§Óþ}u¤Ë•iÑ+°t%­júæºJQ:}+¤¾Ý	DßÞ4D×Ø_G×hÿE×˜—Ò5ËlèZ© ºÖ5º6L×–¢ë*ŒÓu{­éú\'ªèúé	tCSºÙÅ,ºhŒ¾k+‰¾Ë¶¾Û£—ne§O·ú¦B·Þ\ZG·L§[ƒ~ÒmÌÖé¶T#º]Æ8Ý®7’n7J·[ÛGß+I¡ÛÇ\0è2^ÒóuéG\\At§ø<ºSoýØôÝå®	Ý=hî>w‡~(¢{šNÑ=)wéž}ƒtÏiº¬”î°N÷ÝdL÷e×Ò}Û°tß?·é§”ÐOKEô3¢Íô³À£ô³=éþÆt¶&Ý¿ŒHP¤\\»M¨ë¢Ÿ÷¤ÒÏdéçÃ3éÍ¨ô‹{+èïOÑ/);Ò/%ÄÓ/å¡ZäÒÆÓƒòSèÁ¿yôËAÓtà+:˜N·¿¤#7ÓÑ¡^tLP	3x‹Ž½èKÇ>o£ÀD:Ùð7ýÿ/ì¯N§~ ÓZàtºÞU:ã‚?qû-ñ(“Î¡„Ò9ÏþÒùøtÁc}ºpAgWÒÅ…£tÉÞaºT)‰.ÅLÓ¥-9ô—hzÈÛz(ÿ$=ú‚nr”Î¶£_™ê£_½I‘_¡ÇÍÓã?=£\',ü¡\',ÊÐ»­é©{ÞÓ¯™€éi¢Aú6=ýø\"=ý²==e=ãW\rýÎN=×f„ž[\r£ß½}žwp\'=O§çqèù“ûè÷îï¡´áéÇéE“ô>²ôÒ¡ôòó(úÃd?zå´\'½êßýÉáúä_ú“o3ô§\nNôj³môê“öôjt&½æL<ýÙ©iú3I=ý¹u\n½ÁGo8žEoÀjÐ_ÐÎÑ_¤pè/ÆãèÍ×Ñ[ìÖé-ÙÉôVjz›‰?½íÎNz§½.½sñýe„”ÞUªFïù?Oï6—Ñû×¬èƒÕ_éƒ\rô¡Øfú0aƒþžkNŸw‚þ¾,˜þAþ>ýÃ	múç—6ô/;~ÐÇåþÒÇéã\'ƒéã7îÒ\'«éÓÆîôïPúÏ}^v™þGñýü\n}ñŒ¾|Ó”¾\\B_QäÑWÚíèúÒW¯ÑWÎÑWÁÕôµ³^ô5–\n}Ýh•¾îz¾¡SJßXfÈx#2õ\nÙ}Ùw;rÛ\nÁç\n-R†¢â†bñI†RbC9å+cs\"c‹M?cë2cÛ5e†ª„¡úÜ…¡yÍÐ¨ûÈÐLeh¸3t6Õ1v„_gèÑ×úžÚý1ƒŸ»F/¯3Œ‡Á“ôH†éõE†ivÃlù!cW˜Ã²c·|Ãªn‚a}}˜aýðÃºòc¯3”±whˆ±wÃ‚aó%Ã¾ú+Ã¡uc·š±ÿâÆ~¾\rã\04‡qðÝSÆ!«Gï^Æ‹4Æ‘è$ÆQ«JÆÑðH†óKÆ±kW8áŽ:ÉðÆG2|<¾2|}Û¾1õŒ³Ž3Î–¹1ü†¿ä¯Œ€KÉŒ€+&Œ€æÛŒ€™=Œs’AÆ¹<ãÒ¹%FÐ\\(#øä>ÆåJPÝÃ\0þ 3€QØ‚õÄ3`ÉÛ(íST¹;£9ÅÀþ~ìºg_ÍÀ=´dà?Œ3ˆ”NQ|AòÕfÞV1ÈÅ÷4Ø=.›Áð`0>1sGlß-N¤#ƒç,C<q‚!mA3B/1\"œ·3\"¢£ùíŒ«Y“Œ˜ù|FìÖËŒØŒFükEFJ³#ÆH\01ÒTŒŠÝŒ›öÖŒ›ûw2nP`Ü,KeÜÚ,fÜj±eÜzÈHßñ–‘~é#ùˆ‘‰¾Ê¸cgäô_bä‹¹¿8Œ»öŒÎWF¡•\r£0Áƒqß;–Q”³•QÔ•ÅxÐúQ\\þQÜqQbšÍ(½Á(m‹e”2ªÞÕ3žà¬O5J-ŒºN1£Þ!Ñð¡†ÑxÃh¤üf4Æ´0š¶ä3Zw¸0Z]ƒ­\"cF{ËwF§5’ñ²ü!ã•ŽÑÝŠf¼QŽg¼^c¼¹†eô©u2úð§ïöÞgô¢CoIŒá§åŒ‘m!Œ‘‰;Œ‘Ûï\'	Œ÷¿Ì£ZrŒåÞŒO?ŒŸ1>«3cÏÕ‹(Æ¤í<c:P‹1ëÉ˜IßÆ˜½Äø‘¥Åø™»À˜èeü2³aürºÃXŠ|ÄXÙYÏøû³•±zÊ™±ú{ƒ±Vgl@v3e«‡™²Ï­˜rÏö3™g™*VõÌ-{>3·F~en“ßÅÜfšÈTß•ÍÔ`gjT15Üfj²•™ÚÆÇ™:õÍÌ\\<sÇ+L=ï_L=€©ÿ÷$s\'Â¹Ë`î¤íf\ZNc\Z+m0wi¤2­vßgZÝÔgZ_ 1í&\Z™ör;™ö\'™öD¦C$‡¹¿óóà<•yØÉšéhëË<rÇœé¤w‡é´ÁtÖ>Î<&cºøé0]ƒ´™î¦÷_LoDÓ;ŠÎôN{É<Åfúx‹™>Â˜>KÖLß’¦ïûëÌÓÇü˜gÈóL‰Ó¿ÿ*óÂ®·Ì˜læ¥?™Áé$æåO©L@3™	Ä³˜`n\"¶™Ç„‰J˜poe&<K†‰X)a\"}Ò™¨\'MLtÙ£•ÁÄ–1‰k£LºžIÖÓgR‹Ó™´¸E&ÝÁ¤Ÿöf2Ho˜Ì“L–’“å•Èd™e²‚²™,¸“Ýö–ÉS\Zb\n>ú3%Ò\\fHïyf(ã3”;ÁŒ8s–`Ì¼\";ÌŒ®ÿÎŒy{Ÿ3¯ÌŒ¥=dÆ¼eÆUÉ3ãÆ™q;˜ñî—˜ñ]™‰}õÌ$å,f’Ÿ93åîofêm&ózð7æ\rsóÆÕÇÌ[òÌŒ™ëÌÌN\rf6]ÈÌN<Í¼óÈÌÁb™yÎ fþT.óžN\r³Àë-³Ð¨•Y8ãÌ¼1È^g>Xg–èÖ3K`ÊÌ’šrfÉŒ-³ôàWf¹{1³Rá\n³r)ó11šYåìÊ¬Ê[gVÍf1ŸÞ‰`ÖäÃ™5?¢˜5«G™ÏêJ˜Ïê˜ÏÛhÌ&o\"³ée³Yv\'³ù¤3³Mÿ³í…/³Ý¸ÙNrgv\'1_mQbv™^cvA¢˜]YƒÌ‹ef¯–ÙKšböÿ_›™ƒ÷»˜õàÌOn÷˜cVÌ±*æ—o™Ž8æL9/ôaþ†—1ÿLê1»¾2—¦_0—^Ì¿#‰Ìõ‰1–Ìc(kS˜-Kö;“%wøK‰ù¥üÌÚZ{µMV‰µ´‡¥^«ÁRïÙÍRŸ÷bim$³´ƒˆ,m2›¥ó§¥³âÂÚ‘¦ËÒUaé©¯²ô¬šXúýçX;ÏÄ²Œþîf™àÏ±Lïù²Ì<,³ç–¹B&ËÒÙ‡eÉêdYÖ\'±¬L­XV	b–Í!u–Íç«,;÷(Ö^ûDÖ¾ýU¬ý§ÆXû	‰¬¡é¬ÃÖ“,§Ç/YGV³œÃN²ŽéXÇ°YÇ¾›²\\R+YÇÂYíÃ¬“ÉÕ,Êë”…å7t—åß’Ë:G3a“L°.&gžà²‚ó;Y—7e².›JX\0S]à ‡x6Æfõ²€åù,ÃäýÔt…s:ËB\Zú²Ð	wY*Š…õøÌ\"ÄÕ³ˆßÞ²Èâ19ÃŠEùôŽE]ÎbqY¬Ûa,VáA{;˜Å¹¯Èâ†°x;è,Öv–\0øŽ%tmb	³Y\"ŒKÔ4Á\nóteE ³\"wÚ°¢›YW¼¦YW5Å¬«IÏXÑµlVœ±€wÅŠ;žÍJÖ³’w|`%Ûh²Rþ±RªY×ê6X×ºcXi[óXi£¬ë*Ù¬—ˆ¬[¦Ú¬Û\'%¬ôÃ™¬L¹^VÖŽV¶œ3+û~#ë¼ž•¤³rm¬œ¹HV^‹6«`à+«•Æzq‘UlN`•¨Ö²J.Î³Êä¸¬2\nœUnàËzØ‘Ïz¸ÞÄª8·ÈªxdÏz$ûŒUušÍª	YÕ7Ÿ±j\rôYµ’«¬f™¬æ{BVKB«Õp7«\r5ÏjªcuDmauôg½ÂO²º.±zY=Ž\'Y=î&¬Þë­÷\rÖ;b?«ß€Äê¯–°úkËYCvy¬¡•Ã¬áù6ÖðêwÖˆîNÖÈ¡dÖ¨F\nkôWëC‡õÙö\"k¬Þ„õEFŸõå_/kü¯˜5QYÇšXA±¦4\\XSÆY¬o]m¬ï‚Ö÷ªRÖìiÖìCë‡ÏUÖOÖ5ÖœÎ<kþ7‰5ÿç5k~ÅŽõgç)ÖŸxÖß‰Öê§iÖšdk=ÿk½kŒµáŽõï‚½iv€­ðv­ä¼ÀVú‘ÏV–“°•\"Ø›7±7Ã|Ù*‘ªì-ûMØÛôØÛÇ9ìí²lÕS¶&Ä“­…½ÀÖZB³µ-Ù;v°wVßeïìÙ`èay	Ù¦Æ›Ù¦®l3ÏÝl³‰ló8Û²¯ž½;Ážmcz‚m»p‹mgâÆv¨	fï+bïëªbª_gJd;	«ÙÎôlˆ€íze‰í:y—í&w}Â“Ïö(²a{v~e{)HØ^;lom[¶wÊ%¶wíNöiígì3v@ö™Êì³…=ì³•ûÙg±ý.²ý®QØþÎöìsg™ìKrcìK:ìÀì`b&;øêsvð×Ïìà\r?6`UŽ\rô“²!³[ÙP›lèy6Â—ÁF\\Ía#U¦Ù¨ý³ltÒG66Z‡W­bã=Î²ñ(96AužM\0k°	MÃl¢î16ÑYMvªfSjØ,i0›Û7ÆæÇ)°c½lÑæl¶hä[¼ö„-1‹eKƒØ’’slÉH[ZãÍ–v³CÉ‡Ø¡­»Øa·w³#ž÷±#o°£â¢ØQ«löÕ/“ìhõýì˜¿eìØçGØqS+ì„P;ñÕCvòfUv²Aû\ZÎNóæ²¯[ Ù×\'mÙ7WmÙ·¿F³³•ÜØw2 ì|o);ÿ»pÞŠ}?îû~úv‘¥»¸|™]br™]òÉƒ]–[Ê.W·g?Ôµ`?lÝÂ®°sgW0&ØUöXv•Ã~\Z¶›]c¯Â~†¿Â®eE²ëä†Ùõ£ŸØÏ-Ÿ°U±›^f7_f·‚ÝØ­ŒZvÇ‰-ìÎ.!»ÏîúVÈî9®Àî¹SÃîûÆ~kÌa¿›£²û‹²ûŸµ³ÍN±‡Ln°‡ô³G>y³ßÇœa¿¿‘Î~ÿÀ†ýþ‘ûÃ– öÇc2ìÏ6Øc\r§ÙãG³\'ïÏ±§Š†ÙSÿ˜ìoÖÿó1`OÓQìéø>öw³6öì§\ZöÏ»¶ìŸ}ì_Aµì_Irì…³7Ùì¥‘·ì•¡0ö_eSößc±ì\r›‡™­\\ŽYŸ##üË‘iµâlJOæÈeæräQ8òíùÄjŽ‚«G!²‡£½•£P{Š£¬üš£|è6G…RÅÙÈçl5»ÁÙ\nŒâl¥}æl{0ÅÙnÄÙŽ|ÀQÓas4å¢8Z·~q´îst·¾çèb½³78z?Z9ú679úà`ŽþTg\'Ã1fÑ8fŸ­9–!:+7g\'˜c]äX?0áØ\0?slïÙqì4g8v	ög¿Îg?ççÐÑwœCÒÎá÷#ÇE\Zç¨`/Ç¹ÐƒãRÑÏqyîÀqÕlâ¸ad9ne›9î²Ï9\'Ê9N¶/-ŽwìuŽï9ÎiYç´K%ç¬§\rçlÁ ÇÏÄŒãçSÊñ#8püO›süç\Z9äN@o/çRP=çRL\'øÏàõ‡èã€ð<Ô\0ÉÉ8ðGß8¹×Ô\'úº[‘Á!ËyqÈ–Š2‡ª*æP÷Ös¨WW8ÔuWM5ŠC›”å0†i¦åMsO‡ÙCâ°-Ô9Üc_9¼eWŽ ù*GD7æˆ¾ésBgÿpÂ¤jœð×O8‘“œ«g8± [œØt2\'öG3\'!³”“òÇ…“xÏIã>ã¤s97-87Œ³9·§Ç8é¾Nz›ˆ“>(ÏÉ(zÉÉNØÊ¹ƒ1ääžÞÌÉí£pòž¤ròÞZqò_£9÷\n‹8U\'8…Îý­O9Eçœ¢Öçœâ41§üS(çÑå‹œÇ²ç9Ño9Õ\',95îœ:·1N#Àyqò%ç…O§Å†Êi‘B8-É9-7z8-ÓæœVGNkœ§\r8Éi+}Êi[Žætœ9‹•œ—¯b9¯\nç8¯/9¯ÃÖ9]Í–œ®noÎ›»LÎ›_#œ^²€Ó›ZÃé~Èé3¸Åykã¼Ìä¼£pú×^rÊosúr=8CÓœ¡—®œ‘îXÎû+_8£‘œÑ8cÎè—ó!!óásçÃòÎGOYÎÇgç9Ÿ‡8ãgã9ãeÎ„5–3y:‚óõ[\rçª‹óíÿœOoIàÌìzÊ™ùÎàÌÞÍ™=¥Ä™½ÌçÌ²ÿ_S-8o÷q–¬îs–Ï9K_ßsV,ösVNpVðƒœ¿9PÎßÎ\nÎêŽ[œÕ°3œ5§Î†9‘óp˜»)»€+AæÊÞ¬æÊþØÄ•«_áÊÁ¸òŒR®|IWÙ¿«<9ÉÝüÂUá®s· Ü-ñÜ­	ªÜíNB®êW8W½›«þ³Ÿ«‘ù—«ñÄÕŽòäê8©ruçÏpõÊs\rBV¹F\rv\\£ÉX®IB%×<ÄµÏäZî•ãÚì%qme“¸vÚ_¸{Ÿ)r÷~r÷é´p÷E¹û>krB¦¹‡XMÜCÃ¹‡Uk¹ŽHo®ã›óÜ#£­Ü£ˆ&®sð^î±³¹.„ƒ\\—×Mo×ÝË=¾§‹{üÄ?îqÆCîqi.÷øÛÜ*»¹\'ž^ãzx—p=Í¹žI\\Ï?ú\\o-9îÉÝDîÉÚ“\\Ÿú­ÜÓ\'?qÏôzrý6©qýqý¹þ\ZŸ¹þ¦\\÷X®ÿ›°mˆ ¿Â\r°½À=g2Î=×¸Æ=/På^œóä^êÖâšåGFpƒË\n¹Á?¸`Ý[\\ˆä²xšåc¹Ð¸8.² ‹ªèâ¢Ï¹˜¸»\\lÊ_.ùÞa.¥]À¥Q£¹ôó.ãÇ¥SÞp™Š¹l/.»ú —ý&€Ë),àr/	¸¼F-®ð^\0W8ÅíQæŠÍ®qÅyd®D;‘+­­æJ_irCÖÜÐÔÜ0†#7òÅ$7rˆÄ½Bsã^á^}¿™ý ˆ#ÃàÆ(\'rcÑÇ¸q?Îq÷s?Æs“ô½¸É 9nròsnÊnÊ¸=÷\Z>„{mµ›¦Ê½¡t…{“ßÏ½ÞÈ½ÕÌ½gÂ½Ýáf¸_çfÚ¸·\r¹YVmÜ¬âÓÜì	%nÎÓ!nÎP7OÎ’[°^É-<\'Ï-ì[åÞgõs‹ðmÜò˜4neF·Š÷ˆ[•)Ã}‚òå>\rå>1ä>3Zã>s°ä>W\Zã6œ!r[¹­1eÜÖBî«åGÜ×[r_r¸¯†¸¯?sßÔÍs{Îºp{§¹ §ÜÁ`yîà]gî°w¸\'Ÿ;bƒæ¾×mâ¾w›ã¾?“Î}¿îÈý`åÌýDLà~úò‹ûùÂîø^+îø!îxÄEîÄîû7wjÝˆûõs7÷ý3÷[a#w¦{•;«‡çþLgqþÛ¹qWî|f9wáZwac\'÷÷_\'îÒ³=ÜÕsÜ¿\ZO¸«y(îÚ¡îZ‡wý €»mÏÝ(úÂý·½Ÿû/ä/OÆxOfàoÓWž|õAžBížÊ+eÞ6t\'o[vo[{2OíOÓtŽ§Åæíð­ãéu>à„lð]•yÆ®<Sµ<ó€_¼]žÏyÖ\n÷yÖ\0Ï:t˜g³¼Ì³­àðìªòìêdyöû ¼}{yÍfxGd»yN†Š<W/ïxM:Ïc7’çyyÏó[\ZÏsyŠç…ïäyUøó¼:3x§^òNÓNðÎ\0îñÎ A¼3ïL¨ï¬ïžv”°1Ã»0à]T\ZåÉnåwó‚ýöó‚Ã²x—Ý&x—½{y—G¼y€ãP ö%PÝÄbyÀû<E4çOZñÀé#<ô+jÂƒþÒæ! *<Äb¯ÛÌÃßHåNëóU:<btál1Ë#W¨ñ(øc<ÊôCÕJ›ÇL•á±Ä4ëãwÃ\'ˆŽæ	^˜ò„jŸxBæ4OøÁ¥rxâDž¤úOêŽà…Œþá…|1ã…¾ÞàE¤äEÜ)åEŒ£yQp>ïJ_ïªÊe^¬g/®ÏKÚLå¥ZòRƒnó®/OónDýâÝh~Ä»5µ…w;ú2/Ýï/½ë:/ƒ?ÃËŠ¿ÎËÆ*ñ²¡¼;º“¼;Kxw­òî™ãÝ=±ÂËkñçåû|áÝ;yƒw~”woþ¯ x…wÆ+ò‘ã=H<Â+£æU^ˆåU>¸Â{ì<Î«rùÂ«zŸÊ{z0Š÷ôÑ~^5§šWÝð“WÃˆäÕªñêŽDò\Z‰^ã¸=ï…b¯iÀ•×¬õ’×¢Ïk±—áµ$ðÚ0y¼¶L\n¯ìÃëò†ñÞ\0yoH¡¼žîh^o¹”×_Hã\r¼žä\ryÃ[y£1Wx˜Çycýí¼/\Zx_æxß£Kx3Éy³Æ“¼›‚x?2è¼Ÿ ·¼ŸùÞ/ÙÞ¯òo¼“2Þ¢ÂsÞÊ×Þ_8†÷wæïïz&o½ Œ÷ï’/ïßTST\"SÇ4_.Ä†/Ï®å+xóe³ùŠ»ùŠOeøŠó`¾Ê·Ëü-§lù[\"õø[Ê\'ø[–óù[çœùÛî~ço{¿‡¿ÐÈWÝÈä«·*ò5¾…ð5=ýø;Ž;óuwÃøzŽ£|}Ò6¾a‡oØSÀ7ò¿À7Êfòå;øÆjd¾q’o®‹¿ë|ß\"\ZÂ·T‡ñ-/çó­Ð7ùÖñF|O<ßÖX™o[r“o§¯Ä·»²‡o7Š¿×S“¿Ïà-ÿ€ýmþÁF<ÿÐÞAþ¡Ódþ!1”Xéÿðô-¾£Ùi¾ã+&ÿÈ\nïä¶Îwê¹Á?ªùÔ?žï¼ÅïÜÂ?v\"Ž¬yßÓ>‡ïÙ¬Ê?upŒÊ5ƒêúÿôÅÝü3å–|¿$?\0×ËÙÇ?\'¯Ä?¿\'†>®‚>ÁÜ6Ä¾Ë¾õ‰y‹”ÙûÿòÕ#|@çY>˜åÎ‡~òaOÎðáZC|¸Þ$“áÇÇ}=ÅÇýúÈÇŸOäã36ó‰‰>©NOò)†·øTù“|Z<›O÷ŒçÓñ|†‰3Ÿ³ã0ŸóDÏ3dó…½ù¢Áã|)ê	_ºz†²-š’Ë\róÃÔ“øa«™üHð;~äÒþÕºíüèû™üXçE~õ?q²”Ÿ´7•Ÿ,yÇO®¤ó“W²ø©ÏTø©¯ø×N,òÓ\0ütˆŸ™ÈÏbyó³zuø9Ôy~ÎC8?w¦ƒŸÄÏ/3â‚ù…Ï>ðK¢wóKýFøeÂür¼?ÿ!$Ÿÿ°a–ÿðÏ2¿Ò=_åÌá?ãóŸj$ó«/ÔòkrøÏà_øµžü:›N~ýÔ2ÿ¹ò1~Ã¼\Z¿ñÛ~~ã:ß\"·ÊoY7á·iDðÛ‡øµü—·7ó_Ë¾à¿ûÉïÊìãw¾ÆïîÖáwà÷/à+ùYÃüÁ—LþÐ!sþpp0¤¼›ÿ¡\'€ÿa@žÿÙÇÛ|€?á…ßäñ>ÊŸHÑàLò¿Ž»ó§—5ø3Sù?ÆnñçÎûòçåíø¿þóÿ¼zÍ_„¸ñ—µCùËëoù+—ø+CBþ\ZB‡¿Fà¯½¬È•^È•AŠ4ÒX@õ]°}3@ †i¨÷X\n43Ÿ´ÔMZŽ.ðwÞ\'þí‚„%ÁÎ‚?@mBµÀ Ò\\`è)0¤¢†wFr‡FäR±%[`ªüD`ÊÎ˜«ŒÌ‡‡Ù‚Ý¡—VÅo{”6Ï¶}p>J`å °{NØuÜØ_z+pÐO8ˆ·öë~ìwsìŸYô·úè%8ÂÓ¹Z/pÚ2(p‚ÂG:.ÀBÛ`«À½GàNü-ðØIxž¾,ðüô^à­º,89¬(ð)÷øT=œi$ÐYœF\\¸2\"¸Dy.ÔO¯	—À¡Èù©\0ä(\0µý€™àÈ¸fU\0±=$€x 2RÔxA\0z	à‡­3âO…\0µ°,À\'%	ˆ:TñW€,£  ^NP_:\n÷êŒ±sá³€Uî\"`¥8-ªÎH‘€gø[Àÿ¾W ðþ*@„GÒ¢ÐN(ó­@ìm\"‹Ûtï”{UÚ.ˆ²ÓD…›®ªý\\=´KËÄŠ‘‚8òŠ îN± ®FC¶Ið|BHX$fn’~ ÉÏžR†•©ó‚ë!‚ë_ä×gy‚?/\nn»ÓéÒéÑ[™‚NAæZ­ «t‹ û|—àÎÛ$ANP ÷„ ÷kšànÚA^ä1A>vŸ àf› àK³ `$(Ä}Ü·ÍÉ¿yf	ŠJ–¥‰·e×åõ²‚\në·‚Ê\n¾àQ°@ðøaœ \nLT\nª$»Õ³ûÏN£»^\Z»è‚Æs‚ÆOY‚&:\\Ðœp@Ð<µGÐÖ÷KÐ.x.èÈú,èx¦ èdr¡]‚—Û/\'/ý™‚W?A÷´Š ÇrXÐkt^Ðëá ècˆïš5ýOWy~‚A‘`¯#^QŒXå	FúGïsï>¸?|8/|–íŒQËco&>‚É£‚Éâ-‚¯F…‚ogv\n¾õÄ\n¾s	‚ïüß‚¥NÁL\0]0-ÌTzfÉ>‚ŸùbÁ¯¶@ÁBhŒ`á«`éÒ_Á’Ð_°,”µ¸%”½Ñ&”A„\nPo¡âèSáæ`ŠPåÈ}áV›YáöÍÕÂíµ4¡ª\\’PÍÐ[¨öË\\¨~ØQ¨ÙvX¨ÍØ)Ô.j¯š	u´™Bž\'Â	Âïõ‚iBýFKáÎ×CBÃKyBc½ÃBã\\¡	¢Hhº 4×©š×žî28*ÜUo%´\0-}	B«¥váž§…Ö»o\n­SIB±«Ð6¸Nh·¹]hwZWhw®F¸÷ŒH¸·(´OÍ:xB…ÉëÂ}»t…ûS„ûûg„‡de„‡ÎŸ:^Ü#tÄ…N§\'„Nþ6B§2žÐ¹H,t¡y	]ÝyB7WáñsxáÉž½BŸ˜³B¿¤Ð?=_è?†ú¯X\nV./ì^œ^ÚR\'¼fÝ…A.Â ÍÂ`¤º€®V´…À»BPÎm!¸ñ§ò.P™BUnawBØ»GBø‰ÝB¼Wˆ$¨\nQÎêBT¢Pˆ¾Ø/ÄÄ±\r_…Ø}B\\.Iˆ›z-Ä\'V\n	‰_…$Ý!‰i!$Í\"…d§óB²ÔLH~R¿O	Y‚.!++\\ÈM¼&ä)\nùªBa‚™PÄnŠ/‡C–f…¡=„aaøJ¬ð\nÂHxu°Q­!ŒÉ«ÆâvÎ\n“«†„É/	S…©}×…ig\Z„×7O¯;U	o˜b„7soÛìfìfåé\n³Ù:Â3;aÎIyaNj¹0OFF˜OÓæß6æÿÞKšZ	ë«…÷çÄÂ\"å.añ¡ÂâòÂâúEa‰íŒ°¬-DX%jV©	kb±Âgog…µ+a}m›°¾×Vø|W°Ñåœ°iò°å¹¡°ÃŠ\"ìx$ì…/K}…/_;ö_¿™v?à{vê{½„½ßò…o-	öI„ƒ.Lá XC8£$%:?:m~”Þ~ü÷Fø©ì–plÄR8ÞZ _Ú-œrÙ$œº\"üÚ‘(üæÖ*üû(üþüpöŒ“pvñ”ð‡ÉŠð‡w ðÇi±pî ‘pÞp\\ø+/ü}*üÝ­$ü£rQø‡µ,\\šHþM~#\\Eí®…¯×¿©	ÿ}=*ÚÔ–\"R85.RøðP¤0ñN¤xð‹H1%V¤X1\'R:)RÂ¶Š”Ê“DJß¶Š”~m©Œm5\0‰¶;‹¶ßžmO©ú5‹TË>Štˆ_E:¼\"|¢hÇŽ¢«‘¾s¡È€Ë¬=Zë‰Œ{~ˆL;ŠÌ¯Í‰v\r\Z‰,ŽÇ‰,-\"‹ÌN‘Å\"+;]‘UHdµ²[d\r‰l|­D6,‘mXd»,Ú;¼Kdo4.²¾YdÿöhC¿è@e¨èà¸èPìªèÐã}¢ÃŠË¢Ã¨‹¢Ãñ¢£ìiÑÑ¡\0‘sõ?Ñ1ÉˆÈUy§È5&Räæè&r‡¾¹çÕŠ<’@\"Ïs¢“ÞÕ¢“cY\"êf‘Ï?„è”o˜èôþ>Ñu¬èlï_‘¦HäßùMtN½JtÁ|Ct©ò®èÒÂCQ°,J\\š-\n~Å]îQ]þ¬.ÈŠE@ùr°f›d¼GŠk\ZšD`/Œê».‚*Áš/‹àº]\"Ä9R.S„Ì¿*BGD‹Tîíá”«ˆˆŠëªD”Ø&%=CDë.ÑæˆØ›\\Eì6W%EÄñFDü”Û\"¡Š•HÄC‹ÄÎ\"‰ß‘dÖUeX%ºz5PSzKê)Jðú J²°%WˆR.NˆR³/‹R»Ei©OEi?zE73o‹nV-‹n>Ý¶6¥me´ÀEwŽÊˆî”lå4Šî¤‰\nŠï‰î_ÎÝ/\r¹TŠŠ;ÿˆJ–è¢RÜWQù•K¢ò;‹¢‡«f¢\nž·¨âævQE^T1þ@Tñó¨è±òÑã¬eÑ“×EO.Ý=Ý|Zô´!ªæ DÏ^Dõu1¢ç2¢÷?¢¦$yQÓ¢³¨E­OÔ¢_&j]:\"êP<&ê¸,ê½äŠ^‰^PE¯~w‰^ËrD¯\nD=ƒE}‡wŠÞ)Èˆ†>Þœ6„%ˆFb¢÷$SÑÇÃò¢ç¾‹>>Í}!¾ëõŠÆÍ¡¢ñ¸hüÝ’hâÒ1Ñ%šš}“×}³i}+< šNˆ¾«qE³†)¢Ù¿í¢Ÿâ4ÑÏW¢Ÿk¢_*\n¢_GzD&äDË¶OD+÷¡¢•…*ÑßÃk¢¿G>Šþ†­‹þÞç‰V¢Õ…vÑZÜœhmH Zû6&Zg¾­¾&Þä.Þ´lü¿P±\\ðm±\\s§Xî}¶X¾¨L¬ P¬Dˆ•âw‰·’‰·ßƒŠÕIbM/±fYƒX+²X¬u,Ö.4ë¨¿ë–ÓÅz’bý¸Ø(¸Zlª©.6M‰M¯cÅ¦E†b3{%ñ®!b‹ÒN±Å‹U±å·Uñn%w±Õ+¡xOA†Ø¦PFl33(¶MñÛÞtïU-ïÅµˆ÷\nRÅö~–bûÂ±ƒê˜xÿïKâƒuwÄßÍ‹ü?•y–+v\nÚ#vúõS|ô`ŽøèE±3$Jì’ôYìšf*v­[»Ö§‰Oì–ˆ=vË‹=¾‰Ä^nb¯ïÛÅÞ°bï»hñIÒW±ïößâS‘Dñ©fSñé©>ñ™]»Åþ®ˆý	½âsšæâ‹ì^ñÅ¡qàÔqá³8(í°8øG8{UDŽ‰ÁÆ…b°¯¦ü‡/†TÄP\\†\Z?+†tÃ:¾‹asnbÔfŽEº%F+÷‰ÑGÄ˜i¡ë¼\"Æ\rÄ‰	A¿ÅÌM1¡(&++‹ÉÝþbÊíy1õÄq1Í²]LË}+¦k.‹™~›Äì@k1û÷W1çð€˜sO]Ìëjó>6ˆ…Û¾Š…¼XØ.¶¿»¿ˆÅ½Íb‰-q-‡^ê‡æ•‹Ã¶ñÅ‘{µÄQ•×ÅWÈÄW»—Åq‡_‰ã\ZÊÅ	MHqR„¥8ÅÒSœÚY\'¾¦§ø¿ò‚5ÅiÿŽ‹¯\rß>ß²§Ë[ŠÓz‹3ÿ·Ò+Î6sgÛú‰³{~‹sFNŠsþåŠsµtÅy²qQº¢¸Øz^\\|Ü[\\\\9(.‘&ŠK¢Ï‰+ßŠ> ®bÑÄ5ä/âgÔ›â:q}Í7qý¿5ñóáBqƒ§¸ÉeUÜ´b/nñŠ·Ò â¶cÄmL°¸íÁq‡s£¸#PGÜ‘ ¿„üwÿ_s½—~‰{[Ä}Î¦â·¼{â·W¿‹ß–ðÅï¶¿CMˆû¿ˆûgÄC‰}â¡ÔLñðÑ\'âÑ\"¬øƒâ!ñª¹øã\nDüÙ’+þâ:,žèþ)ž\\pO…ž›¾(ž>µ$ž¾rVüý«—xflV<{&K<›¨*þ]\"þ­&žk}!žkgˆç]ƒÄ¿Ò6‹JÅ+ñïúŸâ?˜qñ’i©x9\'PüW§\\¼ö+^ÏSo\\&ˆÿ­8I6ŸIä¯œ(éì“(Q†$*Vé•/9’­›¸’­öG$[Cä%Û~Ü“lŸú ÑØ-Ñ¾rI¢ý8W¢ÝwO¢cóU¢s\"Ñ™É”ì°Ú)ÑåJôP};¡D%1ôxý¿a‰Q5Obôf‡ÄhÄSb4.1–Ñ’c{%ÆBˆÄä…ÄdÈ[b®úGb8,Ù5}VbaÜ.Ùm‰“Xµí–ØhÃ%6ˆ‰Í»í[3‰íâ‰ÞMÉ^u/ÉÞÆU‰½Rbº\\²_÷ ä\0¤KrdjFâl}Fâ¢Z$qóH–¸“¸_	‘x\Z`$žÞß%ž>‰çÙ,‰çu˜ÄëT·Äë‘äTÚu‰ßü1‰ÿ19‰ÿ×DIÀ)‚äü^ÉùÔ×’ÞÝ’Ó?%¬${ÞK‚\\ÞH‚.«H\0Æ‰ÐŽ?ó ‘+\'A)ü•`2_J°þ|	Ž—n%dð\'	e.¡ïÛ.¡7p%ôn˜„ùXÆÖ¿]vŒ¶„+a¯>–pìH¸rQ^¼¬„á›D\0\0IšD y-Ô„ID7$âðU‰ääœ$dO®î+‰èž•\\i\r“Dm•Äé<•ÄDHâ¤G%qubI¢º±$yGª$u~«äÚ‹³’ëâ_’$7»F%é“IÆËnI¶$SrgAM’Kä.“ì™”89H\n¾K\næI\nš%…§’ûF$÷Ú%”l$Å²I±÷gIY+ER¾Ž“<¤£%76IªÖIê\'$õ{Ò$õy’†«0IcÂIcý¢äÅÎ%É‹â³’¦3O%Mçð’¦ZwIÓœ¼¤Y÷²¤%#i•½+iS5´9B%í~\'$/îK^}“t\'VHÞlz#é)¾\"é)é—¼¼û´(pcH¨\'%ƒ¾	’!%¡d84F2‡”¼¿h!ùàT$ùügT2&|!Ž|¡|”|)˜“|5”Œ»|”Œ‹«$“v.’o*’ï~hÉw‘ždFÿ¨d¦é³dæm—dVédÖý˜ä‡ÁnÉËxÉ³Ã’Ÿx’ùë’_;e$¿z’?ýY’Åb¨d	8/YJáI–%‡$ËîHÖ”~IÖŽVKÖ®¤JÖ¾€$kS.’ž%ÿ€cR™iÒM¢ãRYA Tö³†TÑ÷¼Tñ¥TIó¶t³u¶T…c-UiL‘nßã&UßÇ”ªÿº\"ÕðâJ5ò¬¥Z·¤Úo¥:¼T÷{ŒT/IWª/{Nª¯Qªú…TÿÃ¢t§›±Ô$2SºkÇ€Ôrï©å•yén9©ÕU®tÏþ$©õ.€Ô¦p\\j—= u˜aJ÷¹·K÷çÌI|Ž‘ÔÌ’r•:¡b¤G¹£Òc®SÒcÙ\rR‡n©›Û€ôx‹‘ôÄé‰•íRÏÒF©Wû{©·\\½ôdVžÔw£RzÊ JzŠ¿Gzú°«ôLàMé¹í·¥çü®IÏ—â¥ç¿ûK/{K/Ù–J/5ï•ÍJ»‚¤\0{)ÈcJ\nB5KAÒ3RXÆ n~VŠä	¤È÷O¥¨fÐ/E?	”båRl¼¯ûÄHJPt•Ï–’”ˆR’Šƒ”luPJþQ*%ÿ©“Rjj¤L)sÔCÊÒ¬“²,Ã¤\\°‚”ûø÷Í…÷\0<”É*QFI¢’\"Y™©ˆDf!QôÝ{ï½GeSv	%£ˆ†\n!‰ŒH‘øÿÎÿÅç</î9÷Ü{ŸçÜñæ²sÛ9{³\09_U\0·ýØ€;=–€\\Ø{@nã}@îäK@žY4 /np÷\0X¿\0(¾\0r³ÀÉ\0¸î8\0¶ó\0ÙÐ@¾ó ¦1\0L¥\0k˜Àïñ©\0âŸÛ\0Òé>\0é~5€R1 \\\00ÚØq‘\0n¼€û¥À$0\0Bd@bä\n\\ßàÎ\0¤_\Z\0ò®\"À½ˆ4À=ô5@á–\"@áÝÇ€\"ŒPô¨\nPì,”¼×”n¿(Ýã\r(½Ð(ãï”3\r\0JV½Š€JMg@åT7 ªò: v½:àñ>(àÉb0àic	 !¬ÐLá^¤F:N‹‘ÿÅ\'|@g¢\Z §\0è2E\0Þ;x{u\'à-FðîÔ$ Çoàƒaà£ÉNÀGšàSï3@oØ< ŸvÐ_­\n¨»hkŽÄ\0†PHÀ°ì:`¸Ã0<‘øR7q:©{Ó•\0¾^ù	˜ØLÞñL2\'Sû/¦×»¦¹\0scJÿÙø¹íàçòà·J?à÷§+€åï§\0·]\0¬V\0V/ø×ý¼T¸T\"ûüw\"i7_n8x¸á¤¸ÕÜ¤^T1÷n>éÜ\\3TÕúTMüT³¿ÜÂÈª_¤\0Õóf€[cÿÅ·v}jujm—·w8ïîp9ÔƒÓz/€;Ÿ\0\Zvvƒ€FK%@ã¿YÀ½þ±ÀýçýÇc€ñÀ/@ÀƒÐíÀC OÀÃnê@«w½À#õ§ÖNm@C{à±.ÐÎ¨xü¨Ð‘Ü<ctÖÆ\0Y‰ÀS¸õ@wÐc Gæcà™ðcÀ3Ÿo½¶…ýê]g·ÆÏê¶ý5—€þI§ÁúŠÀÐ¹MÀóëÛç±¯€·\Z/6^lÜ¼ØŸ»é[ý‡Ã+ŠáN/‘ÀÈ/`”S:0êço`´Û0º¥c Œñ,Æd¯nf¯†Ÿ^¥k¯>˜^}çŒÆáÜ€	Ñ0`\"î>ðºcðúIàõ‚?Àä)0eL[ïL‹Ú	LßÕÌ(ÿÌ–\03ŸìÞÄ[o\n;€Ù¯Þs^›oW2€y÷³€wl€\0P(°l\0zÖ\0AÇs èX ˆ§ºÁCOàÅE ÌþÆrÂ­lð²k@xˆxÈ\"A\r@Tˆ^Mâ­½D-K ñ0H¼®\r$b¬Äg…@*h:¶ÈŠk²À@à%žänœrmš\\/)÷äù&€‚Ãö@Á‡—@ñ:)P|’×ä%Àn tÏ& L«(;:¼oh\n|p­\nXüæ+°d—3°¤ó?K§¥5ÆÀG·ì–‰ÀjÏ£ÀZõ»ÀÚ“Dàco!ðé¦EàÓ}FÀ§âÏÀ§ÍO¿çk{€ÏÂ¹ÀçÏpÀfÜàg\'`+ÊørÇuàK<ðå“H`\'ä%°så9ðõý`Wù\Z°kp°û{<°{Éøfã°gÓIàGÇàç 9à\0)øE¿\Zø%ñ9ðËpd›\'päöuàØÖRàö7p¬ò-ðkágàø†TàøÖpà·Ôyà788¡ÉN|Ê~ßhœ¬Ûœ:N=oþXZNïƒgþ¨n^þœ{œ?#Î|€ó÷¢€úë¿zÜ€‹ÍÀ?!*À•-	À³»À5K{àÚ¿Û …áXÒý2Ð_hCïeòIC2Ô´ÉD´É¤’9ÚÜv¤ŠÜ\0R3ºRË©Uw€Ôyê õšxzûIÐVÞ†>¤9Òx\nÒŒíiõR@ÚÿA:>n¢¤Ûã	Ú¡ÿ¤oÒû\nÚu`dXºdÔÏÃ˜ ãÆXÉúDÉ©ß )Èä_$ho‹>ÈôüwÐ¾<YåIÐþ·Pyá:EtÐ›\r²4YiYmý²z´dµÐ:šö\ntôæg:ÈÎGdÿ=t¼Kä 4¹¢€Ü ¡ ·_gA§µA—·<¯öƒ¼x /ÿ\nW°ÈûI5ÈçhÈwý(×\nÞ>u\0§€‚Ü|AAµ\Z à¸÷ Ð7pPèr$è|³èüäÐ…gëAa»®€ÂÐ@á›‹Aá¥ PÄ)(Ê\rºâêŠVPEÿŠ¹šºjºÚÕŠ–þþ\0%ªÔ€7ËAIÖW@)0PÊµû Ü%PŠ`”ò\n\0J=z\rtcö,(ý“3(£å1(£/\Z”É‰Ý|å8oå\\òÝYôå™-‚\0×Y Às+Ðjè¡>½‚ðgA°Ç@°¼¦„¬5aŽaò@Ø‚^nü/ˆr@DµÜ¢–ú‚h]AÌa\0ˆ]â0I þsŸÆñCABµa(#$úö$6P\0É6s@r¢”ßS\r*(oV:‚\nAÅ§·‚Jé‘ 2D¨¼ª\Zôð¢5èaòKÐ#`?¨úÄOPmØ)P-OÔˆÜ\rz¶¯ôì|¨àz¡\nz!¯½([j_+uün½·2õDá@ÏYz¸ ¾öP¿àèsnhà4—ú²ÿ<hd/\n4º\Z-þúj{ô\rõ4ñð0h¢þ(h¢54ùÂ4ålú±}4}ïhÆ¥4{:\04\'ºú=ÓúÃÎýµŸ¯Ë1¯#ž¯üVM	V}º¼Åô X3È¬™´¬­T\rÖñðë$ÈÁ:·ÁÛŒ[ÁÛ[‚·}[\0o/\n\0ë À>`ƒþ°×l|´l¸¼û\Z\Z¼û¶¼ûîðž+OÀ{füÁ&\nAàý¿Ä`‹“‹`‹q{ð+ÑàÃÞ÷ÀVwìÁÖ/ð`[Ãn°mþØ¶çØ.¦||Ã=ðqÀð‰gB°Ã•B°Cì81\0>iH;m€O	a`×Ü`7Ü[°{ì2ØÃñ;Øã¹2øÌ­`¯¼X°×ØçRØ×5ìK*û> ‚ÏºýïÌ‚ý\'ýÀAY­à Ê^pÐh\n8ä}	84oæ—/UGz\0Á—ÝÏ‚£ü€cN×€cðŽàXo*8ŽœŽßF\'Zÿ\0\'¹~_kf“—>ƒSÀi§dà4ºøQ¾ñCœ~ë\n8£J|óú8ûø?ðí”mà\\ä,8·¹|w~+.VBÀ 08é^CgÀÐ|º\n†®€QGö‚QÖ3`Ô}F×;ƒ±s¯Àø©0áZ,˜ä’&[ºÉýù`Šg\Z˜Âü¦ê2À´²«`úÙ=`:¨\ZÌØªæ˜Þ\0sÌ­ÀÜí`þžÿ°¸`AXêi\0–-%ƒåjnà{­ÿÀ÷Ÿ®ç[<nH:lÑÁe©Ñà²[Àå*ãà‡yàG_<ÀŠTp…h\0\\|\\åHWÇ¶‚«§!àÇ8øi$üT¾\0n²xn: \0?Ù›­€›¡`p3³\0ÜúTÜú\rnËk\0¿”ß¿RQ\0w<ŒwÌ@ÁZ»À:Aà×IÁo5î€?x‰Áà[ÁáàOÊ‘à>x\n¸OîWX÷«½\\º¸¹<Øz³üåüxd3<¢-`mÁ£›æÁ£È.ðØkx\\Cžˆ_Or.ƒ\'_÷ƒlO÷zƒgçÀ³ƒÁ³á¹àYÑ9ðÏxíž¯:þ¥öü‹Ûþ•/Æi€ß€€—×šÁ‰Ÿ!ëÞBL$E…yˆ\"»¢XÅƒ¬?ÙÙ0i	Q¶üÙœ‰‚l®ÜQcMC¶ƒ¨›}„¨\'/AÔÅ`ÈÖw‹õÍ;úM±2D»õ;DÇ±¢Ë¼Ñ[?Ñ3¨…è<ÑwÉ„èÇ÷CÒu †»V {¶®ƒìé†ALœÜ {¿CLï-Böm?	1GC,^¾‚ú±Ü\0XöGAÏ¸C¬6‡=9Z=±nQØ$)AlC- ¶‚ˆ}êäxÚÈ‰Gg!Î÷j!n{÷Ð\Zˆ{=Ä#|\0â«œ±CÎt‡AÎLtB¼lý ^¨ï’\"ˆFña©@|3Œ!þ•HÀ›\\Hà^2$å	Ê)†\\2Žƒ\\JC.ýˆ‡DôI!‘_k —Í?C®„´@¢;-!qkF„¨0HÂ•„kº¤%9äZözÈµŠyÈuƒqÈuHZÕ6È !äß\n’	¥C2r 7ã!YÕ Y3¾ìŠ­ÜqHNk8äv«äv?rg;\n’«ý’ëáÉ-yÉÛ¦ÉC¿‡\0N@€£µ	ˆ…@È`Ú²ÿlA;¿†`eìïsüÞ!xôCˆ#ñç(„Tl!7@¨\nKªA,„úL¡yåAh‘§ tÅ!ãøOƒrÂj~	aßAØ	›áÈÎA8£ ¼*DÀ^„ˆ´f \"§\Zˆ42\"ýû\"3¼	‘¿¿¹y°‚äÇ# ù=Ç!ED1¤Øã¤dRš¶RfyòÈXyÄ6‚Ôl€Ô¼þ©µ÷„ÔÒ#!µ\r>Ú	\n¤®Íò¸½òÄi¼x\nÒ”V	yŽR€¼°I‡´èXAZW!­Ïÿ@Z;ï@^í\'A^‰{ ]ÒHW/ò¾ò.éan„|jS€|ú—	éÕ£@z}4 ½OAúŒ!>Ÿ\\H_Ò÷°Òÿ¹2ÐU	Úù2Ô‘Noƒ|9/†L\n=!“ß“ ?´: ?B.@f~êCæš s«\"ÈOßMŸ³My[mÈüê\"ä¹ò;y/äwýmÈŸá“¥œåõé¿‰q¿?r ÿ¢ã!«>dÍï\nTqÝ/èúJuèFÙT…PU[‡ª­O€ªáyÐ-™¡êG@Õkc š‰»¡Ú\ZÙPm-$T»›Õ£A·íQ€n÷ªëñºã—1T_å\"t§itç›«Ð]°H¨Ab	Ô5Ù59„špwB÷†ºAM< ¦Øè¾£ýÐýÖ¨…Å9¨-jÑ„8~zðÌ=è!×è!¿è¡ô°=jEp‚ZÑs GlÐ£»ÁPë‡-Pëo‹PëßP³dè±ŸiP;‹7P;Ú Ô~½7Ôa—Ô!,	êÒ	u½:Uü†:o>uÖºu=¼\nuvºÆ»C]‹í §ÍÏAOúuÛauÿ¨õèð†zn|õT#BÏ°”¡Þ±\'¡¾ãP¿´CP?.êW‚ú;›@dnÐ½%ÐsÚ=Ðs¦ ç¯CÃ´·@ÃA/]J„^þ¯¿(Âôªçwhç-4!šMò¹Mú~z]óôz4š¢?Mõ.‚¦~r¦¶Coøj@3R´ ™è[Ð›\'b Y[j¡·.ÿ…ÞÊþÍy¿½½;8¹iAAÐýPp\nIj†Âö¸Aaÿ­ÂÎŠl‚bÝ ø+PBå(Ù¥ì¿¥âZ¡Ô·:Pê´.”32\\‚²¶œ…²t‹¡¬?@(§ŽåŒß€r÷ƒ <ãÝPI*Ô«ƒ\nr¨èüO¨x*\r*Q*‡JnhA¥oiP9¦zòšÿð.´È´Z\Zâ-}m\r}¸±úùZáµ­ÒC«2hU´Z+	Z£­=±­å` uÆþÐÇˆFèã5ôÉ–×Ð\'ÕóÐ\'Ÿ„ÐúŽ&èÓsÐFm´ÑB\0m\\†>ƒv@Ÿ¯Ù@[´|þÛZò -áÊÐVy\r´µ4Ú:½Úº²Úö4ÚÖ\rmÿ=}9å}µ}ô•Xí8ß\r}gÇ‡öÄ_‚ödí€~ò…~jÿ\ní½ªˆ{\r<²:¤¡bÜ‚cœ Ãow@G #ÔqèˆÜ:\Zh\r6‚Ž.ˆ¡ceèX	ú5ì1tb:y\r–XBgbÿBçžüƒÎ\rúB‡zB÷çC¯e@—f=¡+ìèZ]t­c¦àµ¦t¦¦ä¥[¯[¯w¶¡òlcžl#s¶iï\'˜JÆ^Øæ¶C°Í+Ñ0ÕÍÙ0µm/`jÏ˜0µæqØ–d0lK)¶åñL=U¦Nø	Ó¹“ÓU˜‚í?†í(ýÛ1>3°+‡”‰a{¶mƒí!a&Ž\n0ÓÛª°}sÞ0ó×aæG)0ó¤6˜ù5Öêaæ™°ƒì`ï,ìÐ,vh%vX³bÜ‡Y\'ž€s0„ÙÉôaö7ra\'ŽÖÁ×;ÀS’aNÞoa§.`®û^ÂÎ$ÀÎ|€yÿ€ùÁ^ÀÓaA™s° Âß°`x=ì§Z5;·vA¡Þ4‹Â\"k\'aÑ‚û°˜M—`16°« X¬ž,Ž¬‹+³…ÅUƒ`q³XXüíyXüüCXü²–(#À’´W`I§$°¤n ,Õ –ÞËðYƒeÔÃa7eÊ°¬æ°¬\n°¬4,;B–³§–û­\r YÁ gÿÂà¿œ`G-‚G†!¦Òa¨Ï.0Ô÷<ú…gëÃe*Ãùça„ïa0Â?%	óFVq†‘“nÀÈ9ëaäú9%­FÛêclûcÖÁÜ\Z£WÆ¤jÂXçô`ìÄ{0öws×¸\rÆÅ»ÁxË0¾FŒ¯c” `‚Þs0Ár/L¨u&šòƒIF00iuL¶îLæ‹†É¿¿„ÝS^†Ý×K„å¿†å;}‚Ø‡Ã\nŸ„ÀÊæFa­íaðŠ°\n7eXÕ§°\Zã.X]úì1«ð\0Ö±\rÖ‹5åNÂš RØ3»nØss¬Ù~¬ù6Ö<À‚½TÛ	{io{y/Ö1ôÖ½û ì\r{7ì½#ö>ÙÖS…}¨~ûèÙ\nû¤ë³,‡}Þ¾ûœs6|çlTý\'lì_8l|ËOØÄl2·6•7\0û!‚Â¦wöÃf\\½`3ÐjØì‚lNÙös°\r¶`„ýzq\Z¶xV\röÛ0öûÝiØß;•°•OØ¿ðØZyl­¡¾ÎX¾Îw®”_?·WÞlßDÝßrá\\s\n×\\›k9	×5+ƒë†[ÃwœŠëûÞ…ï¼ü\nnà’74Á6$Á<á»ìà»ƒlá{Á÷Ž\\†›*äÀ÷Ål‚ïk„›=?7ë¿\r7ÇSáÞXÂÌÀrÓá‡íßÀÇ_„îÌ‚~í·²=·šØ?²ñÜZ¬·±º?Vè·k·àöáö³pG|¸Óö¸S×9¸{èÜ½·îvîâ÷¦nûì„Á}ŽƒûdNÀÏ¾«‚Œà:wáA™ð/<ôˆüB1~‘•¿X2\0¿Øþvþ\r<,Ú	¾á<ê@&üÊ‚üjå	xÂaøµ£wàÉz?à)Ë%ð4<ÍožÞË…g¾Û¿‰u‡gù^…ßò¾\0ÏfKàÙ÷¢à·sZà¹wxî½+ð<àcøÝÑT8€¸¦çÀÁ›/ÃÁ¿OÁa!¿àˆÝ 8òcù¹ŽŽ”ÃÑûà»$8v÷—¿ÇGßƒã±pü»8ñ»N:…‡“xFpÒ\0N±j€3úMà¼02\\&†çðpá¯¸9\0—Ø…Âå×Ãå,c¸\\Ôðkž¯ÏgÁllá\ZàÅ9ðâÅ‹ðv:¼äW¼œû^yå¼Zt^ã¾þ8÷!¼^ÑþôÞDX‚7ßø19\no9†·ÜÂÛ\Z’àíf¯á/W‡á]åŸáÝOÀß8¡áoÊŠào¾úÂßÞ Ãß‰*áïšóà=›à÷§Á?Ê,á½u.ð¾<|¨é(|Ø‘ÁG~^~ì„½Úÿúù>|ü÷\Züûávøä>*|òÄIøT±\'|Z÷|f8>³z>{p>ZÿÔÞÿ¹Í¾ÐÿþËö ü÷ÕpøŸÿêjyŽXwt¡£ƒPÔPG(:ÿF(ûë/è!ÖßqBl¸hƒØKA¨¢n\"Ô0ëê’ê\Zl\'„&Ï¡ù1¡£ŠBl{ÐƒØlØÞ|¡‹©@è™L!ôÂ¢zá—úŠ½ˆ›¿!v¹|Bì’ú!v5Ô#œ¥ƒªX„¡õn„q¯=ÂxB±\'ª\0±‡…0¹‰Cì­|Š0µ³A˜½º…Ø½0_~ˆ°p!È¶ ,mHˆÃjIˆÃZQˆ#O ŽÕ#Ž6W#¬DXƒÍÖDmÄ‰ó¯‘ïØ\rÇç›\'K„\'Ÿi„óñ)„ë)g„kN\nât;áyÕqÆŠ8Bxéó¾„oñv„ïoâ¬ë#„ÿ¶mˆ€•*Dàa.\"ðèIDÕuDPÑDpX\"D#q.¾ªÃ@„æB„Né .ToE\\¼ÌD\\”Ba^îˆ0Œ\0V¾¾‰Ž?¨„¸ôŠˆóBÄœˆCÄÄX#®žCÄîIEÄEä âòñç‰f¦ˆDï.DâØiDe\nqÝ§\Z‘¼g‘²%‘–ŸHç#Òáˆ×qDF‘qî\n\"³L\rqÓø=â&Ã‘å¿\r‘u7qËè<\"ç‘ëÁFäY_BäáÍy#Eˆ»wS\Zw¹)`|xË­G€f#À×UPå«øn6q*:t?E\Z¬Dù_E8† òášÂ~m×]ðÁ<\\†`2¯#X§Ü¬È¿Nç?ƒn9ƒQâ7¦©š\ZBšHFHK¿!äž*ˆ{Â÷K:äºÒ…þIˆBˆ¢ðg.¢èñDÑ\ZQm„(~=(h#J~†!J!pDYœ&¢<¡\0Q^„xXp\nQyªñ˜¨ˆx\\vñø‡ñä…ñdrñTyÑx \rÑXõÑØHG4~‹E4å#š~; že Ïˆ™ˆf¬¢Õ|/¢íx¢ïŠè0m@tl@tß©Etã%ˆ·gôoI:ˆ·«Û=ûï!zJÃ=‹0ÄÄ‡ÈýˆOäˆ¾{0Ägß/ˆµeÄP1ŒYB¿@Œ(à£+)ˆ¯‰«ˆq³Ä¸Í/ÄxñÝ˜šÚø1¯ƒ˜=ÏEÌ>­AÌ]ôGÌGu#æë>!~M»#~;‡\"–Ô\r¿BÿìÿÂ%ˆÕ¿k_k—¦ë›AÈõÿôNœC*¯KAn<©ÚÕ†TÓEªM ·@Ï\"ÕUš‘ê«¡È­ŠÇÚ‘ÿé{†Ô1ÜŒÔDîÚ‹4LX‡4Œ!k#÷,@&t,Ò¤E†Ü»•€4Õ>Ž4o=Œ<”=Š<¢!DìDÕÐAZ«K6MµH»‡sHûÇ­Èã-¤ƒÐ\0éÔé¼%éª‘‚<­ì…ôÜX‚<ó\'éåB@zù˜!½þ.#½Ûb¾ûl‘¾l¤ïRò¬2°ñ2 €˜€!C£42ÈªäùµZüy~Â\ny1îòbV12ìãFä¥+áÈK·È…dÄìcd~Åg!¯_ ¯,9 czqs,dÂÃÈÄâTdÒyòÚÛ]Èë 3ÈdôdÊt62ug,25‹L»9ŽL+ù€¼!ý„¼ÑGf¾Ã#o\Z«\"³Ž¯Gf5^EÞN2AÞÙCæÞvGæ­—\"Y×@F†tDÂ˜û0Éc$Ü3‰Ø¹ŠDv ƒ‡‘H»)$2Ë‰f\\CâÜÕø¢5$át’Ðßƒ$•r‘ä[‘”½Û‘ÔkíHÚž$-î2’žc†dÔŒ#Ù9¯œo-H^æ’\'\rFò•l‘‚cP¤àf=R0y)ä>AŠ¿!Ep4R„»€—úÏ¤øÙ\"RÜ+FJ_BÊ©!eI±H/)ÿd‡¼’…|p|ù€xY°ï ²àT²\03„,h@!ViÈÂÈxdQ”YµYÌhE–hú ËvN Ë\"úrô‘•Y‘UI—‘U¿#«ÙÈêøÛÈj`²ºYçb‹¬cÆ#ãÞ#ëÐ\rcRdÓU&òYä-ä³ØNäóŸÏ]ÆÏA†È–Ó\rÈ¶›3Èvc)²}îò%Ôù\n’ì8òùZgò5¥ÙÅyˆìz†Ev+Bo«oÛ÷#ß,#ßýWóï±ÿï¿Ô!{î!ŸÈ?½çG}¯¿6\"‡¯nB~ÓóG~;=‹œXÜœÛOFþl& çgaÈÅçQÈ?-uÈ¥}zÈ¥?är–rùžò¯®\'òož*rmÄ¥´p¥KF©´Œ¢TMO¡TL¢TÏ5¢¶Â&Q[Ç`(Íõ(ÍûGQZ{!(­7j¨íÆê¨í=6(ÝÌÔŽÆÓ(ýÚ‹¨5Q†Žž(£ó(ã–Ý¨=!ŸQ{·P{ýÇQ{‡¬PûNÔ öÁ(3ÎÔ~{j?\Z„Ú?¶eáõ\Zu°î\0êà{M”åu\'”ÕøI”Õ¯c¨#]¨£s‘(k‹×(ë‹X”MñÔ±|”­ä/Ê¶a+ÊÞ;u|ãêDKêdÏ8Ê¹üêíÊåd-Êeà\0Ê^€rìD¹‡æ£ÜpPžF;Q^ÒV”ÏºeÔÙ-E¨³KÛPþê\\T@ÝTà>KTÐ5TPî8*Øä*Øâ	*ô4ºªŒ:¿í\nêBG,*lvuIŠ<úu%\0º\"Â b¼†PW3mPñûw âFÅ?Ç¡zè¨$ß«¨¤©0ÔuÇ¨äk9¨áWP7ù Ò_(¢2LÝQ™¯£2Ç\\QÙïä¨ùêÎùXÔDKÔÔ÷¨Ü_•¨¼m j€û @…\n(pôMx‚€‚Ö¿EA_¼DÁÓ¯¢†Ö(ä››(Ô¡z\Z;ƒÂJ®¢(Š(Ê\0E5¯D1zx(6¬Å1(@q‡Q¼à7(¾¡ŠO×E	­C	JQ\"ê$J¬ù%é{„’&ËQÒîë(i¿%J®[…ºç @Ý»ÔŒº¤„z@/BÎj¢Š¯:£JÖß@•Ø&£J7£Ê(¨²‰¨‡Ò\"Ô£çÖ¨J«Tåý2Tåt0ªÚ>UP€ªn\n@ÕlþŒz¼æˆz\".CÕ_”¡êãP\rðhTãu¨Æ‚xTc¡)ªyñêÅª¥ê\0ª-¨Õ¶üÕ€£^>Ë@u¸N :žŽ£:Ãß ^{½C½¾ê‹êÚÜˆêzöõænêíˆ\Zêƒg/êãû#¨PŸÏQ}.¢ú†D¨Å$ÔàV9ê\ZM[A?@M\0¯¢&Ý­Q“´¨©“Q¨©G\"ÔT×ÔŒÞ]ÔO·u¨yÒnÔÂòÔ/å=¨_y2Ôïº.Ô’ã\"jù°õwû>Ô_ôê/±µ²)µ²f‚Z[pE+½\\VúãÞ¨v½©U½iõ+zó™Iô–z,ZÝH	­î\\ƒVod£5ò\'Ñ\Z­hM.Z³É­ù‡ÖŽBkCþ µËÑÛb\0hÝÏÛÐ;ØôŽ9+´^­GïLÑEïR®GÄ§ \rÞ¾B¦8¡<&ÑFÉÊèÝ°rôž*Ú4Ñ½/1\r½o­m&¿ÞŸ2ˆ>h±mœ…¶zÞ‹¶î~‹>æFEû&C;¹¢Ž‰Ñ\'‡Ñ\'\'FÐN–QèSQ™h—KhWûçèÓ±R´›B?ÚýJ9Ú#ƒ>“·Šöª\ZB{—Ú£}Â•Ñ¾F.h¿´_Eú¬EÚ;\n~8ü$ú‹iªDŸ[Ú‰Ý;‚]>€¾`G_ˆ¢/Ä.£/,‡£/ú¨£/f[ Ã‚ûÐá6ýèK&èKtÄ¬ú²?}9²}¼}y©\0%¿ƒŽV¢cî ¯ê_F_-ÿ€ŽMy‚Ž]þ…ŽSÉDÇßA£¼¢M¾£¯]i@\';‹ÐÉÑGÑÉ×è”ßŽèÔÕ·è4ÿZtZE4:môúÆ±™Î8\Z†Î„}Fßt*Aß¤/£o>ƒ£oØ‚ÎþŠAçlÞmG-2Ð@K\ZÔœŽ§×¢ÁÜD4¤¿\rõDÃyûÐðÁ“hä•óhäíb4*–…FÕ—£Ñ‡£1Çþ¡1h¬ÝI4®YçžG“ ÉÆšh\n§\nMyæ‚¦Ã»Ð,æ{4ë¡Í¡ÙÐ\"4Gåšs±Í¹ì„æ½SCó·mG÷¡Å\'«ÑâR´xÄ-©*CK·¥ ¥/è{’Ð…ñ<t±]‚ÓC—m\0¢ËÐcèòMÛÐå{³ÐåfsèGûÌÑ×¬ÑÕÔ­èê\rtMÎ&tm]÷€~¢÷]ÜŽnÔÿÏÝ„”¡Ÿ%¾G?»æŽ~vg\0ý¬jÝ,UA7Û~a³	ýÂî!ºjnE,£Û¾ù¡;CÊÐ¯Ežèn¥{è7—Ñoµ&Ñï“éèžûèËèÞètÿñAô@—+zð\Z=TúýesúËîô÷ zÔ°	ýõª1z\\¯=î5ˆþ–ÄB­EOš|@Oþ´BO®ýCOÿ1FÏXŸEÏ¼T@ÏÆ;¢çŽ>AÿÜ?€^8ÔŽ^LE/DF¢ê?¡i,¢ÈÑ¿/rÐKž§ÑËÐ+ÌŒB«FáG6FIõ)f½i+fcÛfãH>f[ŠQŸÀ¨1ÎaÔ]‚1[Ûº1[»ï`4íµ0ZÇ£0Ú¯M1:3$Œ®fGðcŒ^¨5FÃfçæÌ®ð*Ì®›æ˜]ÌoãkÓµxÌ>Õ5ŒYE+Æ\\1s@Ð…±åc_>‹±jÚ‰9‚óÃéžÅX³Ék©;Æ¦Yc{¾c{cg2‡±_ù€9þ´ã °ã@ÒÀœLõÅœ:ºã:q½q»ŒqÏb<væ`<üV0çÊ0g¦·c¼æb|ž9`|ÿ`ü1þH_LÀP.&PÊÃ~ÈÃ7Ä:`‚7+cBÔ¯aBÞäcÎémÅ„2h˜ó\Z™˜m˜°ŽbLØŒ1æRm(&B©sÅý\n&zû2&v²Wµ“¸~&ñÓL’¡&¹ö&Åþ&õr&5I3z‰IÁ¤›—b2ô_c2ÕNb20™¥‡1·\0L¶6“üŠìÂ€íu1ñýÈß@Œ|)ÇÀ+|0ˆHrýI²?ƒuÄ`+ÞbðÜß¯\0C½ÅPoÕahézÉ)ã÷“.Ä°\ru0l®3†ÝqÃ5pÇð0B¦6FL+ÂHâf0ÒÁEŒl×1Ì½ì;˜û+É˜×®`0»1*˜‚\'LIº%¦´ð¦Ì.S®˜y´ÆTœ	ÂTÝ±ÂTï±ÁTw´cjå˜:ëÌSÏ˜§I˜æ3×1ÍUPÌ‹íS˜VÓLkûUL;ró’ôóJÙ\róêÝ#LG©¦s%Óå¡ƒéz^ŒéNÙ€é.À¼©ìÃ¼ë¾y7ß‹éyõó±¡óñ«¦·í¦o)Ó¡búÙ˜þÂM˜ÏC9˜¡ke˜/‰0#;ú0£s©˜¯¸\0Ì7Qfâ*3ñœƒùÖ†ùþë$fjƒ3u%3Å!a~q˜é«|ÌÌEgÌì9%ÌÜ˜.æ§v:æçí·˜Ÿ²k˜ùõÁ˜ynf^Á,½ƒù¥>†ùeIÄ,ÆOcþœ˜Ã,\raþ\Zc0³1+Gl0ÿ¢!˜ÿ”0kSë±ë¤G°\n¯±ŠÇwaCj±Š¿ža•Xï±ë=Æ°ëaÊØ\r]7±–Œ±*ûô°›]ÞcUÍ°ª\0K¬j­vËç¬vÌ6¬vö4VÇàV‡ð\r»-ív{ã7¬®5«ÍÂêö…cu¿ÅêåüÁêÁ¼±;öbwyÆ`wµÞÃ\Z<\nÆ\Zj¬`wÇ±{>~Äš„ë`M>·c÷.½Çîû¾k¦ï5{»€5ëßˆ5ÿ\\ƒ=tòöÉk™ë€µºñ{ôÝ4Ö–ÅÅÚßÃÚ>ÝƒµKðÆÚoHÄ¯lÃŸÕÆžðŸÁžHHÃžX)Ä:„™`À½XÇØT¬#A„u6vÆºŒbÝÎ„`Ý7(b=\rwc½zš±¾Ûª±¾?€Ø³NØ³Ø³E0¬ÿ±6lPÎlP›=6x¥šƒ\rac/Ìc/†$`Ã6bÃF»°aóÃØH˜*6rÞ{y]8öräyl”Ézl¶]×nžÇÆðf°±´_Ø$[lù)6i®{í¼769$›üþ\"6ÍC{#ô&6C.ÀfZþÁfú¼ÅÞüh„Í\ZØŒ½•\0ÇÞúp{Ûê67¥›Ë\\ÃD:X ù{,ÐŽƒÕ{c![V±ðÉ`,bå7i#Â¢?þÄ¢®a±w%X\\Âa,xKðoÅ›\"°d;,§‹¥wÛ`Ä6,ãY–i£‡åÔ÷`yÚ\ZX¾çW¬ðXVxÝ+ü†•œY•©ïÆÊñŠØû»®bï?¨Ç>P_Æ>Y‡-;Š-[sÁ–ÛecfLbµïÆ>zS‡­TLÁVê.c«2ßa«ÖØj«ØšªÓØºbl]n¶{[‡»‰­{í€­›üŠ}üèöÉ»+ØúüØÆ3±1tlÓ¡\0l“¿öUˆ}6ªûßj‚°ÍEë±-©LlKÉlKË\n¶\rÞƒíÌÜ„}­í‰}·»ûžî‡ý°?ûQ•Žý(˜Æön-ÅöÝ)Æö}Ç~æGacG±ÃúJØ‘ïç±£û/üÿÛÒÑ¿&Ø±s<ìX”-v\nfý±c\'v&É\0;Ÿö»P7‰ý¼…ý•c×)a—–³±Ë{Ò±Ûž`ÿ¾ÍÇþíÅb×Š­p\nÐœB§xðnÃÓ)œ²qnãÈKœŠh	§ºŒS]Å©mDáÔ÷¨áÔOòqê^Ù8Ëe8ÍS•8Ío¿pZSqZŸátò¿â¶õÕãô¶›ãôŒšqú¾Q¸]±,œÁvœG6ÎæŒ3ÖÃöãŒoæâv;îÆí)˜Äí=‘„ÛÛÝŠ3M:‰Û§e‚ÛÏú†37z3>Œ;hÿw=‚;d>ˆ;ä3‹;ÏÃ.½‡;ÂgâŽî°Æ=ôwÔ=\nw4«gÍ¸„³Ù`Œ³i³ÂÙ>yŠ³ýÃÙ­_‡³Ë§ãŽmÄ×Ç9&vág5qNâFÜ©G8×i=Üé}ïp§ãRpnºé8w§%œ{^,Î3ÔwæöAœWU7Îë÷Î¯ýî¬âœ?¿pî2.°f.È÷î\\¥%îü=î‚ö1ÜEv8.ìY!.¼¤þ‹_ÙŠ»Ô¾wµå‹»’ÿý ýlCÈÁÅÿÀ%Èsp	¯tqI÷®â®‘Fp×ñp×Ÿ qÉÆ÷q)jÞ¸ÔºÃ¸´+i¸ÌÆ¸›gšqY¸[{Þã²ÿ”árJ\Zp¹¿7âòVà\0Á…8P‚©À!z3pHÕXr÷6Êþ$=S„Ã?ã°Œ`.æWo‡ÃŸ¼‡#œnÅ¢}p„¯Î8¢¦ŽØž#îÂ‘>dàÈ´\ZÍÏG*ÀqŽã8D§§ÇK¿ŒãÃ±8Á]œÐûN(1Ä‰u…8ñ•w8™Hˆ“Ûpd®¸ÂX.®8ƒ„+qÁ•ÆÏàJ¿\rãSÂU4ká*õâ*ŸNãªµh¸š¨\\ô*®vë*®–ÆÕþcâê4p‡†pOþÚâê÷[àêo®âžú}Ä=MÀážþ½Žk‹Ä=;u÷‚ï†k¹Õ„k™ôÂµªìÀµ}îÅµÏp/]jq¯*nâ:®„à^WŒâ^ÿy‚ë2SÃuù9ãÞédàÞ?šÇ}¨Ã}Ü®‚ë5|‚ë-z‰ë£&áúÜgÔoÜ`+7`€&;â¾¤Šp#:0Ü˜l7îë+î[’?n¢…›¢Áýxq÷cÐ7]«›~v73›)TÅÍ†uâæ?\'á*Rq¿ö‘q¿Üªp¿~ôãýq¿Ç¸¸?\Z—pÄŽ¸?ËOqßiãVõàþýWËkùxÅÑ\rx¥/¼²“¯œßÈIÄ«¼†áU7^Ã«>lÁoùãƒWÙƒßš}¿•½Š×¼Ãk,Åkúãµ6ýÇä^ÛR¯\rú†×9„ÃëØÇãuÜ¼ñ:)VxL^§ê^·×¿ã\n~ç‘sxC½<¼áõ‡xÃŽh¼‘oœÖ7f=Ãïyk„7	ø€7¹¢‚7i¼7¥fâMkøxÓ§Õx3ìÞŒÁ›×ãþáá½³Â[^³Ä[¦qñ–€Rüaëx+ÍGxÛMÁxÛ6W¼=’…?Þ:Šw0ñÆ;DãaÛñ\'YâOÚUâO^ãvˆðN‹`¼ó;%ü©Àü)¤!ÞÅ&ïÚã†w«/Å{ýHÄ{›¬á}³âýž1ð~_?àAðA”ø \Z\\DÃ7}À·9áƒ¼Ç‡Oâ/®ÜÁ‡kèâÃµNáÃC\Zñ—ÎÁð—ÂZðEøH­=øHk|äá	|TŸ7þJS4þJ»\r/ÃÇD+â¯ºlÅ_}ÀÇ\"ãã›Uñ	wFñ	3­ø¤Û—ð×Õ¿áSµxøÌøÌ,w|¦¨	øKû>[«Ÿm¥‹ÏÎ\ZÀç¬ÿÏ©ãoÞÆß†·àï\\ØˆÏÝ]ŠÏ=\Z‡Ï3¾‰Ïó®Åç=¹Ž¿´÷µ¸û4©ÇƒN,à¡µúxØy\n¾çîOÃ#Nãëx”åC<:ä\0«s›`àñ¹Çñ„0žðÀOXÞ‚\'FåãIÌßxRÉ8ž¦7§÷ÚáÅ<cèžÙýÏÞÏŽœÀó7Ùã….^X<Œ—ü{‰—2÷á¥.xé„*^†\"âåkü}ä.|e_ðo3¾tý|yy4þaí!ü£4\"¾Âj_qã5¾2Í_¹v_ëþÿ¸!ÿäÿ4³\0ßpé\'¾éÿluÿ\\ù\Z¾Y/\0ÿâò3|Û›q|û°?þU®\r¾{÷Güæü›ûoñïð=ÎæøOá×ðŸªøøÞ½-øÏyçðŸçã‡ŽÑñCnñø¡E{üˆòüXæ ~Lþÿ•t?n\rÿ\r¸?ÑjƒŸ,º„Ÿ\n(ÂO•–àœ¶ÅÏ ~âgDßð³oBðst	~a‡þ—“7þ×ÝOøEJ	þ·Ÿ6~ÉØ¿ôYŒ_ÕÀãWO<Â¯^UÆ¯Ù„à×ü9Eš°þp6aý›vÂú©6Â&k!a<€°©âAµ–NPGÔBþ4®…4 —ZÇC	ZIš­\'Ý„mÝÂö§(Â;‚^ù1‚^ÍS‚þ¾J‚áÎUÂ˜°§6”`\"v$ìåö	¦ö½L0ûÉ\'Xì•,Î= XÀ+üç·	“î>¿G8d3I8l&\"~\'^~D8\"¦ŽÈj	6ç:	ÇTã¶6$‚ýÜyÂ	c	ÁüŸç#\'¼Á…¯Ip™œ\'¸Þu#¸ëÜÿ•<ÎBžéQ¯§.¨/Á–Ið-é!ø™¯§ÙBP™!˜ØJ~~‡ÜŸA}šG¸0ãF“áå@Bä›»„Ë;+	Wöµ¢›+	±Þ|B,Nˆ=#Äù1q.âÚ·*Ì‰£Ÿ×´š	ÉL!Y®@H¡¸RÛŸR?ÒìÓ4.!«~+á–ÂBÎŽaBŽØ‹ó¾ƒÓßF¸­Ø@ÈÝL¸ëõ\0ä\0ãà•Bp¦˜\0ÂNÀD˜ó\0ãPÍótˆ€Ó‰&à©h.#>VÈZ!²I W«( QeB@;ö€@+»K ¦è_ôÙW†ö\ni´•À2ÃØ}¶^ñ-¯Ä… ÈŽ\"HôxizAZœK¸·”D(ˆÈ#vrEn.„âN„â;Bié?Béç»„2½u„rÈVÂC#9á!šPÁŠ$Tv•#rBõ¹ÿDèªŸß TO>\'ÔuÜ„ºy,á‰‰áIA\0áI•/áÉp¡¡3‡ðœ\"!´0-—mùÛ	íÊê„WÿÍÿÕ¯jB‡Î,¡Sá+áõr2áÍd2áí™^ÂÛæDBŸ¡ŸJHW!æ8¾À®¾oFÌ¦	#w£9alw\náëÏÓ„ñÌ×„i„é§ú„<a†Ç%übGé£„?ù>„eÀá_\'”°6ó€¨ÀÐ&*ýc×Ò‰Ÿ—U¬+‰**D5ÇÝD5^¢\Z¦¸e’ETßŸDTg•ÕŸœ&jô²ˆ\ZKûˆZkG‰Úg†ˆº‡uCW‰º‰µD]¦„¨ûØ“¸CVJÔË½EÔßnLÜµñq—–qWÇc¢AÀs¢áœq÷ô¢ÉKÑtœhz}Ñ,äÑ,JÜÑFÜ¿¬O4Ç‰æÍáDó_§‰=\Zˆ‡<ž%Ú-¡‰–R_¢•ÁzâŠÑF™K´¥>#ÚMí•–‰Ç÷Ú{›·¼\":šM¬t‰ÎnÄS£ID—Ä&¢«Î¢kÞu¢kÉÑm}ÑÝ¯†èž{‡èÞqƒèqo?ñÌ¿!¢÷ÊÑ·µŒxö]ÑßîÑ?§ŽrÝ“2ŸI<÷A•ºÏš:­H<¯UO<oeA<_G\"^„ü%^¬zMë$F\\zKŒh\'FüI\'Fšm%FíþF¼² Æä—¯ŠŒˆW[¬ˆñ®Öû“8™Äk:RâµÕ(bÊÉ6âRb:ó1Ãö\01£é41ó°ñæEkâÍ´<âÍ)1+C¼õ·˜3ü™x»`˜x»k?ñö×Pâm«Ä;¹ÝÄ\\ßbÞñGÄ»N»‰w‡@DÀ¶l\"DÔA„Lì$B=íˆ0§;DñžÕDDð…Ddµ7ÙPJDN×ñZSDB´ˆH¨Y wI¹:Drl\"‘üv™H%Ø6·ˆÌÐDæ£&\"ó5ŠÈnÃ9z§‰Û,¢ÀC•(È#\nDÁ/¢ðâ¢ðkQr*‹(¹:G”fe»ŽïÝ$Þ“î!ÞwI$>íìˆ±Ä\nïÄŠebw±â‘”XQÕL¬Ü–A¬Dvkâ¾kÞÄ:£bÝ%±A©˜ØH\Z\'>×½N|ÞíAl6] ¶¨®[÷Q‰íN±ÄÎîjâkMñõÉvb×=-b×7Mb×Ô\Z±{:ñ¿&â[ø¶{ŠØÃ ~ºË%~zøØ·#‘Øç»ØWò…Øª…Ø¿2Jül£A0M%©¤Gì]ˆ£¾ÇêÿÇ§	ÄÉ€âÔñ‡Jq®pˆøs›q›LüUiFüõ;–¸Øˆ%þð%þF!ˆK[f‰Kv=Ä¥g†Ä¥•zâ2Î˜¸¼ìNü»CD\\±±\"®œ?FR8ØCRX­\')jPIŠ×ôHJ÷×“ÖGü$m8ªLÚp@Úx¿’´ñk*ióxIUèIR;H\'©¹þ\"mYì!©34Ô´|IÚ%‰¤j(Ò.6’d ®B28À$¥’Æ$$ÃÒ$ÃÊ$c5*Éøi	iwå$É$¶dË ™SH¦5ƒ$3{Él!›´÷QÒ~‡’ùá«$ó¦$ÔO’Å³aÒÕû¤ƒ9épØG’Õ¡\'¤#¸*ÒQ;\0é(õéèÓ$k¦Éz­Œd³³št,\\‡d«L$ÙÝ+\"/ûN:ñB@:y}žträ8éä´>É)8„äÌ:Hr.À\\£Ð$7m	É Ñå’|>†“|í¦H¾A$¿ÄÒÙÿÆì¿É‹ ðxÖŸœ¥E\nÑí!³#ïÊ&]àóHubHa]ÇHáìH— ú¤K²qRd§3)êí<)úŽ)ÆB…tÕ”FºzÌû0€÷·Ï<FJìßMJêºFºÆ~Dº^åIºþ\"•tý»*)y[)U?Œ”¶é\"éÆ …tò‰”Spžtû…/)oÛ0)/¤twýPï:	xê=	ˆùD&ßº“ ¾›Hp\Z	ýù	½œAÂVD“pUHøs½$R‰|»œDÝ!Ñjw‘èEõ$fH‰í§Db) qÍÆIü¬0’@ÿ*I2úš$µ“î¿xCzààM*\0·“\n]²HEëIÅöûH%°AR)ö2©lg\r©<WƒôHº‡T‘>Eª¬Ñ\"U/Iµ{žê>âH‘KD¤\'»ö’êö\Zp±¤ç¤çC‹¤–­¤¶ïn¤öƒLÒË\r¤—y»H#é¤®¯xR×ÂÒYÒ›Ò¤7\rëHoWHoO™Þe4Þõÿ%õôˆInŸ\'}²ˆ#}º®Kú$Ö%õÍ‘úko“>›<&\rl@‘Ü¯“d$Ò@¾6iÐaž4ˆ$\r[‘Fc£Hc‡\\Ic—©¤±¨tÒ×ºVÒøQ3Ò÷My¤Éê¤É~é‡§	i~GiþöižJZÐÞEZÈÜAú¥µ@ú§Cú·Mú7û´ºN…´–’NV^¤7ßÐ!«\Zü&«RDd5ŸOdˆdíò¶²&ò¶·7ÉºÓOÈ;Þ‘õ(d½N2YßÀ¬Î!ïÜ¦LÞùÏ“lŒµ&ï.³\"ïn‰&ïž’÷D:‘÷@pdTyïw-²é¡U²YmÙäB6oÞM¶x©E>øéÙRŠ%þÐK><ÒM>fÌ óV ƒ¾\"Ÿøpì˜‚ Ÿü1K>®@>E¼Avý½ƒìîÎ!»4ÈžËödÏÕïä3—³ÉÞ×È~¾ä³7ÉþÉþ_¡ä€\0%rÀður…*94 ”|þ@-ùBö&r˜	’6w“~<Ÿ\"_I›%ÇÔÈÉWþ‘¯h“c7G’cU·‘ã/‘ã5‚ÉñÑäxor|šœàEN,úLN¬É%_ÓÉ×ÊÔÉ×\'7““+ÉÉ}áä´H9c’œ!ß@ÎÊö#ßrª ßz½DÎŽ™%çj¸’ó4Î‘ïzfï¾{F¾û¾šPÙMT‘Md¸Íc2âØu2ÂmšŒ8·ƒŒä”ÑMÑdÌ‰çd\\¼#ŸK&˜yÉå¿Èä¶P2\r…$ÓO¾&ÓE}dúò%2C¿‰ÌT“™2ù’Ì\\) ³\\èd6&–Ì@‘¹_“ù±d~ó%2L˜ü$…6dIà^²ùˆ,yµ,õö$KÁádÙ›cd¹òùÞŒ”|ÿÉ%rþ.	9È™\\p°ž\\bG.¨›\'ªÉ…*äâàJrI›\\èG~ô¢‡\\ÔH®Ì\0“+{ÈU¿†ÉÕrMru£	ù	ežÜpá¹ñL6ù™rùy_\Z¹¹ÿ¹åòKrKž-¹6InÝúŽÜ ¿T©!¿<I~ëF~ùì ¹#ŸH~m3O~ÝO~“”C~gM~7»‰üs–üiÝ<ùSk¹÷E\n¹OINî[~HîM&úß&ë×“‡-Ç¶¶’¿qÔÈ!Óä‰\\4yâ—<u·üãGyúÎ(yúŒ<ûZ<¯Hþ…î /–Ç‘×ì\'ÿ™\0—òÉ¯j’Wÿ»9­{’JQ¨úAQ¤P”ÍQ”žzQ”¦wQÖ/P”-T)›º‚(*Kcµ“õCÊÖg7(\ZM\nm£ý”í(º;R(;¬Ð}»»”jó”S(»öøPçRŒR—(FäcãY>Åx‰N1±ÚM1»©@1››¦ì?{‰b±ö–b¹îÅòÂŠeÖ ÅëK9¼äL9j I9jiK±Ž0£XS’(6^(6uÝ›–iŠÍÚkŠmÅ;Šýš>å¸VÞÞPŽ¿L 8h>¦8NZPNJÜ)N\rÉçäuçw/)§ôvS\\6I).µ&”Óú¯(n0}Š{@åÌÍÊ™§¿)>‡ÎR|Î$S|ã(~¼‚ÿ´SÎÌ)g>Rƒ”ˆ8Jü8%4È†&ES\"´Ü)‘”ÈK…”È¤yJdûÊåñJŒJ7%ff€rÕ0ƒr5t’rõß(%ñÓyÊµçß(Éc”e“”ô3J:LI¿O§Ü„NRr¾øSnßí¥Ü÷£äkRî¦¨R\0²(\nÈ¦v5¦@lÇ(Ë]hØ7\nÌ“KAXSïM(È^O\nŠœ‚ùÞHÁ‹bT9…8=@¡èR(WŸP()\\\n51™BÛ~†B{™C¡_±£0T(ŒÛ_(Ê\nc5‰ÂŠ}IaoW§°¥ãö£\n\n{ŽNáî=DáW)ü7w(‚©QŠÐ¼‘\"$¢ˆöSÄá‡(â›(b€\"Ý=A‘:‘)ráMÊƒÕvJ¾á_JÁ„*¥p\ZI)ŠeQŠ±”R¼¥li˜RîëGy(³¥<\n8C©8hO©Ï¡T.n¥T·¸Qª‹)5&í”ÚêJÝÎ J]“\"å±½;åqê6Ê“„5J}ù]JÃyJSJ\n¥©¬„òŒïJy6²òÜJi%ó)m\Z”vw*ååÚMJGþ[J§n¥ÛÉòž¸ÒÓµBéYŒ¥|˜Í¢|\"\\¤|ZPz·‡SúvFPúh4Êç3»(Ÿ½I”ÁKŠ”ÁèUÊí<Ê—}½”/×Q¾LS(£çå”ÑÔxÊ×[§(ß {(ß\nÎQ¾ãæ)“Nµ”é]ï(3)sÊ|†ˆ²ÐZEùµâOù}W•ò»<„ògÓ)Ê’™*e‰OY\r¤¬½U¢*D7S–Ò©Š[†©ŠïT¥#Ô\rnÉÔh-ªÊVEªÊÁ\'ÔÍ\'û©›ßŸ nƒPU}U¨jÖû¨[§¨[dÔ­1¨š¥_©:-ç©:/ùÔí\nñÔí‡/S·çŸ¦êž>IÝÁw£ê5UPw*Ê©;oS©»ò¨†:›¨FÃcÔÝ1ç©{¾wS÷,¸S÷¬`¨{UvSÍÆvP-¨v§RíûHµÜ<O=L0¤öR­+Ì©6¯ÏSí6Š¨v~bª]\\ÕþØzêq\0õø³ªÃÎ?TG0ÕqNêd¿FuÞÈ¦ž‚Q]¾A¨®»nROo¥P=lÎP=\nÀT)Õ3ú\rÕgd/Õ·ÿ+ÕÏEõ[Š£ž\rM¢úëo¥ú{ž¦ú{R6¨P5Ô`Š\Z\\8L\r?L=b@=WM¡†-šQ/ms£Fì?ArøJ½¢rˆ\Z½S\Z£Ì§Æl£ÆÄPc¨q\nóÔøçÔûj¢õÚ.}j²ãajò;,5Õjœš:IM‹Ñ¦fôúS3¦OQ318j&§ˆš9ô–zóZ\n5K+†še\'¢f¡Ê©YâãÔ¬û§¨Y?6So=ñ§Þ\Z>M½µ¬EÍ~QMÍÓ, æ½ÇPïrs©àÓiT(a\n3]¡Â’Ò¨°ÛîTøå£TLÖe*¦ô»Í˜Š_J%Þ\Z¤û©dU\r*9všJ!p©T •ÂS™Ž*³g;••Kå #©\\\r8•ïuƒÊ÷£\nŽYR³O¨\"ÕhªØñUìT@•™;Påç;©÷œÔ©÷ÈËÔ‡?Qº]¨…7.RA¨EF¨Å»*©%òCÔÒµ,åµ\"5›Z•YI­ñ¼O­;G§Ö·í¡>½ØLmÀVS-P›’±Ôç3$js£µyRúÂ1ˆú\"²•ÚÒžOmSž¤¶/R;PáÔNÉKêëdSj—çgj×\0‡Úí‚¦¾3ï¦¾{¯Fý ùšúážúgFý‡ÚVOí›0¡~¶®§~Ž¦ªÚQw;Qû§¨Ã/ÅÔ/Ÿô¨£äêh[õ+ã7u[D$ÄQ§4îSl¸Iý1ÐIFm¥Î=ù@]¨1£.Þð¥þ&|¡þfþ£.¥•R—YG©ÕxÔ•åoÔ¢C´uš4EÒ$M)RHS]¤­o?FÛP˜NÛP¦OÛXð‹¶±î\rMåœ¦öÐ—¦VOÓØº@ÓŒÊ§iÊÓ4;‚iZl]šöàÚvÉš®`¶ccMïLM¿ì	m—m\rm<…fh”D3?¡í™ÙO3éô¢™âÂiûÓö½I¤™y*Òö7ž¥™i“•´a^´OWiã§i‡!HšÕÖ,šÕ¶c4«S4+*žfõï/Íæ›íUf«±f›=H³ûov4û}Ÿh\'¬ÑN’i\'þÝ£9ÚÐœƒ4ç¸{4çÜQš«­/ÍµñÍõµ1íôSÚiûÃ´Ó‘i§_inÊ­4w(Í}¶˜æQ³…æù£Œæ=±žæ·î<ÍoŒ@;{8™æÿ…Nì¦£ýh!–1´þZ¨ÊZèž\ZÚyÄ$íÂÖBÚ…„LÚÌOÚ…ºC´‹×kiC´‹Å9´°ZxÑ(-Bk’“üŽƒŠ Å|u¡ÅÞL Åœ¦Å­ý£Å Å÷i‰zwiIû¾Ò’Ü¬iIœO´¤\'\0Úµ¨M´k±Oh×Þ¬§¥ÔÞ¢¥^½JË@Ci™þ´,ÍDZv®-[ø†v»¨†vÚJËÝ‘JËÍ\\G»‹P¤Ý]ÆÐ@/­hÐìX\Z´»‹†H´¢!Ê7Ñƒ4\Z2œCC9í¢¡2hèÐ5\ZÖê\rçû€†·¢Òðø\\\ZÁ|7pèôRŸF-ž¥Ñˆ4º“„Æì;IãX~ q-h¼ÐXšð™&\\!Ñ$fÅ4ÙF!M¦¶‘V¤F+š\n¦•˜¦•ï¤•gÑiåeá´‡ªiljiUÞ+´*úñVûSö8áíñ°œÖ5OkLœ£5Žl¡51ôh-UbZk´­-É™ÖN9C{i£½,§½œßN{X¤u,o§u–Ñ^øÓ^Ÿ»I{})”öF;†öf8›öÑd•öÉCûÄ\\£}šÒúú}iýJã´!g(md´‚6û‹6Vz„6Ö}ƒöµ$–6^šIûöA›@®Ñ¾Ë´É\rÚÔU4íÇ<–6KT¡ÍJüh³ëhs\n´Ÿ\'hó%Ý´E÷TÚïâŸ´ßKiµ/ÒþêÐV^ÏÑþ-uÒV³šikWºhk] ÚÚL.}=ý	}Cƒ6}ÃŸ(úg,}kµ˜®qÍ€®©¿B×tH£ë ×Ñ·™î¤oW÷¤ëNºÐõìRé;\r=èFDSºqU}Ÿ{}¿ùú~Þ-ºEÒgº…´~0è4Ý’”F·:¹‘nõ ‹nó#”n§ŸJ·;¸“nWK·?XN·O¦Û3Ëé÷Ãè\'™wè\'§<è®ë€tWâOúé„9ºûÍEº;Ï‘î¡ZI?³ùÝ{Ã[ºÏØÝWqÝÏÕœ~6)ŸhÔFñ¢‡$NÓCFèçô¶ÐC/ï§_ÐT¤_8B8O;çMË¥‡·ÕÐ/]§GØdÓ//eÓ¯h>¡_	©¡_9WO¿òê5=öJ=îõEz¼u=r†ÿ[L¿]MO¶{NO¶o §è3é)ôI=¥ï5=õD\"ý¦Æ,ý¦®ý&ø6=ëÐFú-Ífú­ýöqeúíMúmI=W°@Þ£ƒÞ&Ñ!WéÐ•:GÇDÞ¢c™It.†N<ô“NŒÏ¦“6¥SCïÑi•¯éŒû\ntf¼¥¨OgoØFçøÓ9×*è ‰ÎÝîLçíÌ£óNÒù_åt{+]¸{]”TN—ìr¥KÉé2/Eº\\á-ýµ~_¡~ß|œ~?ªž¤çË›èùuÕô¢ƒ…ô\"˜\n½X=^â‘H/§—³–èS°ôÊïdzÕn%zUï?z]¶%ý‰â)úƒkô¦ý)ôçEôæTWzË®ôV=mzn½=!‚þj9ýgŠÞùƒGò•þúÜ½k/†þF¡‰þ6©þÎr†þÞp?ýã…yú§¯pzßFSúçSôÏ¥Xú€?}\0ÚEÖ[¥	ˆ¡×ÒGé#@úÈ/cúØfgúW­uô¯>íô	ý;h3ýGõúôðAúŒ‡	}æS4}ÎIŸûâIŸ[n¥Ïç/Ñ€ú¯§é¿C›é¿»{éKO¯Ñ—CèËUßè+¹púÊƒNú¿X}¿‹¾*ë ¯~ë£¯Î÷2@ †Â§†ÎØà\'cl¸u†¡¼û\0CyÐ“±‘2ÀØ”8ÌØôœÇØÜÅPµµ`¨ÈU‹¡fòŒ¡öÏŽ¡Îk`¨ehìóbh\\ª`hð734;KÚçŒmÛ2tÓo3vL]`èµ°;µŒ‘;c»\0\"†%Ã0w×˜Ó¦EžÓ_ã³îTÆþ‡†9Z•aÞ`Ç8 ¸Ä8 «fü®Ì8dË84Ì°Ü„fXò–Vå™Œ£JG	%ë)› £›kÇÇ\"lÇê®3ìbvO÷3ìåúŒãÁ*Œã‡&Ã1¨•qrT‰átháÌßÄp^›gœ2¨d¸úfœ~Æp¾ÁðÌ~ÍðDàž$s†§ ŒáùxžáU¥Ãðš,bx{2|.gøždœ•Ø0üõÿ0œ„ŒàF/Šj’qa5^šÊ¸tÃˆœG3.gÿdDYÜaD÷j2bÔþ2b“w2bsDŒ¤ð8FÒ;cÆµ³ŒTíŒ´\\FÚÈ8#ýÙ~Fú»+Œ›o0néžgdÒûOãŽO\"ã#7ò#—yšq÷r\n¨Äf€ñ?ÆEÜ¯Þ{ˆ}ø‹Ë™e™$iÇF9‚È þ»Â`¸{3ytc…Á`ºÝg0¯fpÓ\\@ƒûc;ƒKeðïG3„C”²…!º‰dHÜ¡ù5S†üæ-†œšÆ¸¯lÂx°í:ãÁ½Œü¯þŒv£`h£ø#›Q²¸™Qþ¸ŠñèÑF¥²£Rÿ7£êŽ£z„Q}‡È¨‰xË¨!âu×÷U3ÓuõŠHF½ßFýCF}û4£ák\Z£q€ÆhR.f4yÑÏ[Œ/hç­VÆŒ—Œí|F§’5£s›1ãu´ãõ÷LF·f-£›Ggtw2Þèš0Þ$3ÞfY2Þæç1z@Œž?ÍŒ¾FßWFßÚVÆçGSŒÏñŒA;Æ`—1¸²•1œûƒ1RfŒÝa|;ÒÄøv#”ñíac\"šÈ˜X¾Çø¾ï+c’‚aL10¦ØÆ,Î˜½aÌçé3->0cÿ0SsÎBKNŒƒ«Õ½Ìuû™ën™ëšZ˜Šyw™Š˜X¦R ”©Ôw–¹>ÏÜPfnè²f*+h0U<r˜*c]ÌÍ3	L\róD¦&§©£xŸ¹Ýh†©«t‚¹#ôSïH2sgA\nsç€¹+{Ó M‹iˆŠf\Z²1\rG&˜F¤X¦±Ø—¹çòsæžÞLSá,Ó¬Ñš¹?I‹¹ù3ÓbäóÀlóàL\ró0á?\0¦¥à9Ó*¹™iõ»‡im¼Ì<¦6Î<fXÂtºq—éÔÝËt¶ùË<5äÈt9Ât»ü•éöùÓñ›éÉ)bžqšbžyëÌôþ÷…é£ÀôÁ_b´Ï0c™ŒÌÀWf]ÄÙ¢Ä9cž»zŠy®7’êÓÉ¼hö˜y1%ŸvjžöZ~¤€îòŠqÖ™yù´3êƒ×%bÆOD2ãÿê3îô3¯Mg3¯¯ÿÊ¼~;™™|O‡™BWc¦Š<˜iŽ`æ$fÆ|>3so3sä3k¥›™Mµfæþ~ÍÌhaæåÖ1ïî0#qLF?l>Éç0!Û¨L˜ý[&òf	ùd‰‰™hæ\n“GbbMÔ˜¸ÛíLõ>“0w€I:ÝÄ$]D1IÍ_˜ô7yLVB\n“}à	“}fŠÉÉÉerÛ‡˜Ü‘5&Ïì(“?TËeð˜¢?W™âíb¦toSžEcÞWègÞÿÌ|P´Â|ð„ÎÌ÷5aÊ~3‹ŽX2‹Oæ1K÷]b–¿¾Ã¬lÖ`V~D0«ÜJ˜µ©\'˜µ¯Í˜Í0ëC¿1Ÿ:¼e6ª‡0›ªj˜Ï=ú˜Ï—2›s™/¶3[Î¼`¶Ä(1ÛƒÝ™¯{™¯ú|™Ühf· €ù&éóí–&æÛsÞÌžóÌ4CæGmgf/ “ÙO­g~ö÷fl|ÈpÊbÄ<`éª1‡2·1¿:Û3¿f#™_óó™ß6¸0¿…b™ß&XÌïôæ¸s\ZaÎ™1nÀ1n1çQ/™¦ë˜‹ÈÌÅOæo¿æŸ­ÎÌ?º³Ì?éQÌeƒÝÌ¿*˜+¯™ÿ”š™«ÏYŠ7&YJÂXëHXN7±6\\íb)Ïžf)/`m}ËÚt¾˜µI ÌÚTƒ`mZ;ËR‰.e©LV±6Ûïgm†^bmî0`©>Îe©­“±Ô”…,5¿,µ4K\rŒc©uÍ°4#¶±4‘/YšY,í–K,­¬]^J,Cú6–¡Ë2úfí¹bËÚ3ÜÂ2‰©b™<ÿËÚ»¤ÉÚ·ë6Ëì”œµ¿î!Ë|Ñše‘•È:°C‰u ÿë Ôuð¹ë›Œux±eå`Y1:XGŒXG*-YG\r±lT‡X6=î,›¾Ö1½\\–mæ#–-;€eûïë¸Ž)ëø6Ö	ß8Ö‰rËáÌz–ƒ@›åL÷f¹ü£³\\ß¡Y§ä¬39.,/ÉË¡Ïò.6fùÄ(°Îú„²Î^D±)¥¬ sVÐ\nVp+‰’SÅ:—É:¿¹Šuž¯Í:?oÈºðÌƒu±eî—Ç\nÿ<ÌŠ|t‡}ÌŠ\rs`]\r½ÅºÚ˜ÄŠíºÀŠýxŒ•H°®¿—±ÒfYéáoY7\'lYÙí¬ì”$VÎË—¬;5¥,À5ðã_ôÏ’lÈB1XèÖI6é	›óš…«¾ÉÂ=ÑaÒw³(™Y”±peí1‹úÎŒÅˆta1Xì”qGþ—Å]›eñ´³Y‚¡e–Ðú?YfK¾É’ÿIaÝƒÌ°îcŽ±î?°tê±ò_@YX­¬‚„+¬‚—u¬\"·[¬\"b«¸Ä*¹Žc•9À*\rÜË*ý²Æ*ƒ±ÊòƒYåam¬‡ê›Y,ÇYo±*ð.¬ªC6¬êcV\rÏ”U#Ç²jF¬Ç…§YO:úYOóX\rá+¬†DVãFEVÓ6eVSP«)^ƒÕÔèÎzÕÃzVƒc5¹ÉjÉ?Àjm}Çj©euôqYã»XÆLÖëƒ;X¯k¬î°aÖÛíWYëRXŸ¬KYŸ>[°z›Y}ás¬}kÀÏ\Z °†<O³¾|ÜÍ\ZùÀúºéë›á\"ëÛuÖd¹)kª8‚5ÍgÍ<\"³f}{Y³Ü¬ÙoÖÜâ8k!É‰µ€yÇúåmÊú“c-a„¬å³¬åKØë€%l…ùlEk[)è[é²-{ý‹B¶ri:{£Ÿ\"{c\"Ÿ½±ËŒ½iÃ\0{ó”[uÕ˜­¾`ÇÖØš­¹SŸ­yÎž­ùï+[s‹­Õ„`ëênbë:U³uß°õ\r?±w2|Ù;ÅlƒOoÙ»u«Ù{ÕÍØ¦mlS¹”m¶«’måÀ6âØgªØ){Ù™elËfì£Ì1¶YÛ&ë	û˜ÏÛö†œmûžÈ>,eob7Â>±úœí°CÀvœœbŸÒÝÊ>UbÅvÙö”íúI}ºî,ÛÍAƒí¾ï$Û}Ìœíyd/Û,d{{HØÞi!loI>ÛG\'‘ícMbû»e±ýá]ìÀ±RvÐö%vð¶\0ö¹¿×Øˆfì‹¾‰ì0±#;ìÙûÒû÷ìˆuìÈŒÿn6±vT[!;êÓ&öÈ1ö•ESv´é\n;FE•«ÚÎŽwlf\'ì	b\'ä©°“r,Ù©G;Ù©özì´\roØi¼Ø7âÙ7:÷°Ó~³3‚KÙÍ:ìŒöÝì›zdö-Á$;ûæ1öí˜NöØ½ì¼Ýtö]m\"x ˆ\rô¯fƒ)lH›œ\rÍ5bC6¼æ:mö‘1bc¦ÒÙøÓMlÂb›8Âc“›Ù”¿Ílêë—lÚºlÚ¶h6“ÌftIØL½ClNÁ0›G×aóZ•Ù|à%6Ÿv•-Š³a‹›¿°¥:	lÙ›P¶<?ý€jÅÎà°‹ÂcÙEJì¢ßkìâ3v1\"Ÿ]bû˜]®’Ä.ß©É~xÙ†ý(Oƒ]%bW¯«gW¿/a×la°kg×~9Ì~ìâË~¢YÎ~B²Ÿâ_°ŸÖ¹²¥Þì¦í÷ØÏ¨+ìgÇÙÏë„ìæk®ìÕSìÖB$»mÕŒÝ®\"`¿¤ì`wìå±»ÓÙo\Z´ØoÞ}a¿·Îg¿.f³ØŸ7°óŒØC\rîì1îöØ‹Çì±…Ëìñ,wöT²\Z{nÃ>öÏß+ìùØöüT{ÁÄ‚½P¶…½è*gÿÙ´›½z¿ˆ½öå+{mÅ^ûöš£àÕÍQX.á(¥ná(åŸæ¬·ïæl\\˜åljTålv^ál~ÅQ»œÄQ«ÝÊQ×sç¨GVqÔÓwq4Ž~âhjq´eÞœí©§9ºq¯8ú,G9c(>É1îïä˜á˜,NqöÚGpöoÜÁÙÏŸä˜ÓÙóö9ŽÅ\\ç@øÎ¿+œCœC$çÐC\rÎaï\nÎá”SœÃê9VÍ½œ#ã8GºÎrŽ:erŽ==Ç±;¢Ê±÷¦qŽ“%G+(çä¸Ç%UÀq}PÆñÙÏñöp|^ìäøÉ¯pÎîùÄ9Û¹—ˆ8Ì	¹Ã	\\¦s‚Šœ`‡“œs3RNé	\'lbˆþ)€a8Å‰näDJ\r9‘¿8—Í¼8QÚmœ¨(\'ªä\nçÊ™se9†MYàD·„pb§æ9ñ~¿9	ˆœÄñœ$ë—œT†9çÆéaÎ9GNúÆmœŒ §œÌñeÎÍÙCœ[?ë99ö*œÛoã8·ç9wröpòÒÖqî†iq\0ß#9‚eôæYÌü8[â`\'¡œ¥W&çàoç†Í8D‡ÈùÀ!¶¬qˆË¶’˜CŠ	ç•ý8”0‡z9™C£áÐ÷ÙpnÆí½Æò;{ó%Ûþ\n‡;XÊáþÊáÄnQ®G|ó0GÌ¥r$£œ{gßsòïip\n†8Ec¦œÒufœR•Néq}NÙ62§sSþ ƒS>°‰óhø5§òc5§ÊÖS¥Â©;3Ï©Òä<yaÆy\ZÏã<¥ä4f„p\Z[9ŸÖs\ZGwpž)ˆ8Ï;[9/˜KœÍúœ¶Iœö€-œ—Î+ûœÎ]Mœnâ(çŽÓsÙ‡óñà:ÎÇïyœÞøkœ¾Ç*œó\0ÎPi<g˜Áù¢æŒl¸É‘8£	œ1âÎ×Ô@Îx?‚ómï gBÃ”3i#æÌâ8œùÎ?œ…GÎÂÂ#Îâl1ç7‡ÍùsËYæ¡9+êg9+‰[9+C8«.m\\…›£\\…Ñ÷\\Å}îz³—Ü\r£¾\\eÑkî¦ˆ5îf«Q®šüWSù\"W3ÈÕº&áj£¸:„aîöõŸ¹ºëä\\]éwÇ¦—Ü!Û¸Éú\\CB×pÀ5\nyÃ5úñ…»\'›ÏÝ3íÊ5IüÀ5ù°‰»·Ý»/y…»oä9wÿ™q®yž2×\"Ì‰{ð›÷°G%×êÄîQö.®uðA®­ö&®mª×^ÀµÄ=þã\'×!d3×aºëØXÈ=yz™ë’tŸëÒµŸë:fË=sÝ†npÝI\\]+®‡‰ë© ÇõÜŽäzúép½6=æzë3¸>ÕbîYý]Ü³Sª\\ÿu[¸þþ®ÿ•Y®ÿ;Mn ‡xõ+7è÷\'nðÅ8n0l„{¾Â\r5rà^¸pˆ{Ï½ Óå^üö{qí7œ”Ä\r6r/}\\àF¶³¹—×s£4?p£èÜÝYn¬æwîu™!7%Ü’›z¦‚{ãe7]|Œ›¾ü{Gõ!7èÄ½ó¸±žÒÒã‚ÏFsa¶u\\Xê5.ìß./àþ¹s‰Q	\\’b—dñ–KŠIå’þžã’ë¹\\J÷~.µ|žK»¹“Kã›qéq\\DÎeôÂ¹,\ZŽËÎÞÎåÊ¹Ð®PDãŠ£ÎqÅ ®TÁ+]JæÞ3£rïqïõŸàÞßäÞ§esóŸ¹ù“­ÜÂø“Ü¢ˆn1µ„[\nRæ–÷Æsn|Ï­°&q+lös+¦¯r«vNséç>ñâ>™|Ì}\ZgÀm¾ÀmŒYÇmÄq›œz¸Ï6xsŸ+¹ÏµpŸÏr›Í§¸/,¯r_´å¶äæ¶ä/q[ï‡qÛ÷³¸/‹vq;4¿r;&np;wÆp_ßoæ¾]Ïã¾Ýµ•ûîŸ6·§h–ûa~ûÑRÀýDùÂýô9œÛ«åÌíå¥rûwÏsû[º¹ŸÍ-¸ô`î n’;Ôš;´6Í®)ç~™tâŽÕÚpÇ&ª¸_ƒ#¸ãFhîÄzî÷X2÷;`ž;yN›;ù¬;¹rŒ;»pˆ;¯	æÎïYÇ¿æÈ]ˆóä.ô^à.üÕà.Ú7rÿ„¾äþ¹ç.iíæþUôæþÅ¤qWwðÖñ;xëªðjíxŠí¯yJ{ZyJÃ(ÞúuÎ<emO%ñ#oËíHžz¹œ·5½…§°…§ÝWÂÓ){ÈÛKçmKð¶@<]æ1ž~œ*Oÿ®Ï@Žá~¶âIyFÀIžÉ3öuåWïã7*ñvmà™ØXòö‚¿òö}vç™Qµyû”óÌFyæC<‹Ã?xŽ0ž…_:Ï¢Â‡wèÄ;„ÕàYª?ãYž)ãöCñ¬ê®ñl¾BxÇÿÌð.<ÇüÇ¼“ÚC¼“:¼“v¿x®Ò­¼Ó&y§Ë1<÷b0ÏC=ˆçÉàyÄð¼ê­x>ûvó|„Þ<9™€åpçxAçuyA‰5¼ì¼è4/\\.åE|<Â‹XñbzfyWÕ½yq›²y‰—fxIÛVxI${Þµå¼ëþ§y×¿Ýå]_óæ%ïùÈK‘bxiJq¼4e/Þ½\n¼ôý­¼ôÀÍ¼Œ)/£[ÌËìçón>¬ãe9»ó²»óy9–ÿx9÷òrF»yy_ÿñ\0(ÐZÃîõáSºyà®£<4Ïœ‡yò–‡µuça»[xø`-iÎ#sŒy”C{y”Lº6È£ýLå1nþ÷ W:Ìc[»ñØã‹<>‹Ç)«áq»Ëy¼{Ê<~ œ\'8{Š\'¨jäIÍ¶ðä‰{y÷vy÷¢²x÷ûñî{¸ñîW^æÝo:Æ»¿¬ÍËÿfËËÿûWÐuˆW8íÈ+žHå•H¾ñJûðÊþ\rñÊ/tó®Ãó*F-x•ë,y•Æ9¼Ê%$¯ÚpˆWíý‹W}i=¯úï&^Íé§¼Úì³¼ºS¼º8 ¯nÆ«Oä=%\rðžÎxOWOó\Z´Õx\rŸŽòš:2yÏ,ûyÏo%óš5ä¼f°€×Ú4Â{uÌ”×Ñ™ÎëTVáu:uò:;›x]w7ðº>žå½9&à½‰Ôå½)ÙÄ{+ÛÂ{·÷ï]´&¯ç\\¯çY¯OÅëøOñOÞ`¾oXé=ï‹qïŸÌc_à_lçÏ©ñ¾÷;ñ¦åÕ¼é¹TÞ,tŠ7WåÍû}÷)ïÏVÞÒ”oåÏÞ¿\0Þ¿c“¼y«U¿x«¼5S[ÞÚ9!oíœ¿Ž»ÄW8ÒÀWXYÏWqâo®\'ñUmY|Õ¼Z¾*0Š¯v]ÄßòÕ¿5Ò™¿µûë\n€¯q,—¯i*ák)-ðµúðµ£?ðµ__äë,òu»ù;Ôù;Ú¶ðõÌ3øú‹®üþ)|ƒTG¾Agßø½-·Ž¯…;ÿvK¾Å‘.¾Ë· wò8ºòœ¬ç¼×Â?´ýÿp´ÿè½E¾µ†1ÿX‡\nßÖgŠo·î	ß^aß^i/ß~þ\nÿä‹ªÿß5ß†ïZRÈwýÒÁwKÒà»M£ùîïuøÛa|vÿLf\rÿLV=ßKÌ÷²_Ç÷ÞŸÍ÷±˜àû„hò}Mùþ;ù!:ù¡WÇù\Zùðrþ®ÿÂ§0þÅ§ùkùùáIfüKiQü@??¢ÆyË‚ùÔÿÊÍmü+2	ÿj4™»ÞÊ+ÑåÇ®á\'è«ó-ù	Ÿqü¤0o~Jã~j`%?µešŸ¶ã;?}â=?#•ËÏàhñ3OÍóo%gñoÍçg_~ÆÏ~|•ç–%PXÏ=æƒnåðÁ¤f>¸ç22YÀ‡,%ð¡ðT>\\y^›ÉG+æðñþ||«ŸppŒOXvá“tA|Òþn>‰‘Ï§2¦ø´~/>ý†ŸqÁg:ñ™•r>s)ŒÏÒ\nçóÂø¼4>;žÏÏ›å‹w8óÅw¿ñ%§Oñ%Wø’%=þ½Ôoü{¬~þ}¿nþýHÿA‚ÿ3€_mË/4®çvAùE§ÛøE—ð‹æ¶ñKÀ¶ürå~Åp$¿êØ_~uŒ_Ý1Ã¯íÞÍ¯3¯å?ñLæ?‡ðŸ|óë¡+ü&,•ÿÜºŒÿâZ¿%6›ß®xŠßnv—ß~ñ¿óX6¿ÓÍŸßùî>¿Ûë;¿»tÿÍ«ü·Ñ/øoÏðßjòß;Áù=¤ü]3üáÅü>«U~ÿF}þÀöüÁ#5ü/;€ü/È5þXâþ×þøC:ÿ›¢»™?±TËÿîÐÃÿîõ–ÿãçZ©†?ý^…?q‚?›ãÇ_è\\Ç_xû„ÿ{{ iø6ù%Œ¿²4Éÿ§àÉ_ý:Ì_ýMá¯Õ¼¬ûN¬[9 P:õC 4h(Ø <)Ø¸ÃF V\"P{Fl¹U >ºM þý¼@}q¿`ëžzeL }[O ÓôR ë)ØáøI`à÷W`µS`°tR`¨å-0.˜p&c¦\ZZ‚}cOfù³O)‚Þ‚}@Á¡s9‚Cy£‚CÕB¥cŠàè¶à(*G`sîŸà˜V«Àn®Z`·:+8þ(Hp|9Rp‚‘,pH³8\n\'/œbsÊsá°àÔi¬ÀõÈu—†¶Àû±£À[)8ÛhAÎŠ‚œ£ TtPp1\"Jj+ýQpéd¹àRh° rœ%ˆ©z$¸j^*ˆeö\nb+o\nâ?¶\nj8‚„îhARç¬ ¥ÏGz>ZZÈ¤>¼.HW6¤[	2ì7-\r7[YÜ\"AÎî,ANúÁí­3‚Û$”àŽ Apgú  ÷–šànæà”\0à*\0„<\0ÂÛ@¿œ.€*`ë+°›ðëb\"$E€ø2 @nÐ7è²\0ó&Àü	`¨Bú?ÑÑV@t¿8	È+òê	M)V@sF	h‚%½LCÀ8;(`\\˜0`÷L¯Z÷ü&é,¬…	„®‹‘I IòHjb’‰ ìl‘@.\nÜ3—	îÅf\nÐ7…ŠU‚âËA‚²#å=‘‚Š„AAÅŠ¥ òœ® òÎEAåH‰ zî» Fé‡ &ÛCPƒË<áª\n\ZŠ\r*_\r’õ‚Æ¬\\Á³lºà¹+RÐšÿVðÒ%XðjIQÐé½_ðúÛŒàõÒfA×„¿à½ÉÁû:kAÏ ­à£Þ€à“o‚ ÷¨•`à¿<\r­j	F¢]#ÉÛ#ÁHÑ¸`”ŠŒ=SŒM}ŒCð‚ï/tS‹W?Ž~LL\nf€³‚Ÿ»F¿ôm¿ØÁ¯Šß‚EÇÁbÒ~ÁR.T°¼q¯`ÙR_°\\¦*ø[«-X94.X	j¬H/Vš­+ŸY‚!G«/o¾	7nÈªÒ„›?U]Ì…[‚:„\Zs¡V)R¨õÛZ¨íè)Ô¾S)ÔZ·³ê*…	w˜´wÀÊ„;Þ	…zž®B½Øz¡¡·¿p÷F¡é©Ð´/Üw¢A¸ï¼§pßìW¡Y9FhÖ&4Ob	´Ô-6“o­”dÂ#mÂ#ß\n]ZË{„Ö¿’…Ç\\ì…vÍmÂãiBƒ¡ÓLšð”ï²ðÄSxŠ°_xŠt]è*Ôº;•=¶X\n=³n\n=©¹B¯c¡×«gBßÏþB¿ˆU¡ßå)áYaœÐÿìCaÀWÂ Ò&ap¸¿0ø‡›0ÄgQr)<¿øWxáøŠðBä 0¬h§ðÒ(OásD1^yW(Œ±nÆxÞÆÙãrs…ñ‘ÝÂë…i¶¦Âô¸Â›—„YÈãÂ¬–Â[.á­&‚0û`­ð¶åvá º0—£&ÌûôTT<%T¯¦\n H!($N~5.„^òÂö‘×3…ÈÉ;B|ðe!qC„øs«,ë’Ÿ*É3îBÊ‘e!å]Hµ	Y—¶¹»Ê…<¯·Bú†×Õ&ä‡Þò[Ê„B+¡˜1\'”>ý\'”ûnÊ„÷&Ë„ÜÏó3…5cÂBóaÑòea±aƒ°˜Ú/,²„¥kåÂ2ÆNa¹¾Ÿ°¢!,\'>,º*|4ß%¬Øb*¬ÄÌ	+KJ„Õk¡ÂšgÁÂÚ£ÍÂZŸ7ÂZš‹°öCŠ°vXWX\'cëjYÂºŽ­Â§›…Í¾w„/þ†	_Å…¯Z÷»/¥	»£‡…oæ:„o•‹…Ÿý/?ÿKØ¡„©„ƒëš„ƒ*û…Ã¾Âa©pøÕˆpøXø…þJ8ðE8j ŽÝRŽÑí„cM§…c/Ë„ã>_„ã“KÂo(áTà¢pºr½p†e,œõ]¸pä‚ð×þá¢š¢pñž»pñåCáŸc@áßË§„«ç£E\n,ªHá^¤ð&K¤x«_¤¼ÉQ´±©F´±™ÿŸÿâ=‘Ê/SÑÛ‘zn›Hóñ_‘ËW¤c\néF‰¶ÿ‘‹t3–D;ŽléñDú7Dú7‘4]dT©\'Úý´N´G­_dZÙ)2[,íçZˆ¹ˆ,/EŠ,¿%‰¬ŸäˆŽ]ŠlDvj\'D\'ÏÐEN#~\"ç#e\"—R‘ËÚÑéÕX‘‡Uä±MKäÙ)ò(yžšyYy….‹¼Î/‹|ùV\"¿ 8‘ß;CÑYÕç¢³f½¢³‡D5BQÐÁÓ¢ «Q°I„(xÔ[²ÕXòÉGtîÄQhògÑ…ECÑE•QÌAt¥ÂYUüÏQŒrˆ(¾²H”à*%PsEI*£¢ëº–¢ä@°(yÊW”ÂŠÒ™¢´\'E7z\ZE™xÑÍ*{Q–K½è–Ê.Q¶÷eQ6ÊPtû6Ot÷âV §W^Á÷“DÌubü»µÎS„vëa×aiE\"l1V„mŒá„A\"¼Ö:á^—ˆ¢\\ÄfoqÊ~ˆ8¯BEü„qÿæy‘ø¿±H¾ÅŠdð\"ÙÓ÷\"y0Et?2O”Ÿ´I”‹\nÀ@QÁÃ\nQÁ¢XT(™Ãw‰ÊpM¢rF›èyLTÁ*UïlÕ^ŠêÖmÕmJÕq•Eõ!¢§ÔQ}VÔ4ðMôìÚ\rÑ‹K|Ñ‹ÇE/D-«oD­‹Z‘¢Ö–‹¢¶{\0Qû6¶¨½8Iôê—¡¨‚uJ«E¯Ï¯uûžu´‰Þ$‹ÞL¶ˆúnÅ‰ú½ÂEý…¢Ïã/Dƒ‹DÃ·Š†Ë”D#²Ÿ¢‘¯¿E£qŠ¢¯áDß\"™¢	VhÒ\\A4ùÝB4uð§hê§‘è‡ž“è‡\\4ÌÍ(Í½÷ÍM‹~b\'Eÿåk¡ÕU´ðöŠè—ƒ¾h™\Z+úûs§èï\ZOôïd“hõù&ÑZM¬àøQ¬€¹\"V¼õ|‡Xé½·X¹ØQ¼Qª\'Vq‰U®½«)DŠ5hÃâm\r¶b½c\"±žh‹XO>$Ö¿c,6xöTlðÍVl°Ø!6RBˆ×Ä{Û»Å¦ûPbóâWâƒA¿Å‡íö‹%ŠÄ¶‹Áb;ŠžØ^A*¶°„ˆO,ÝŸü`(vNÿ.>µ\Z,vQê»X•‰]2QâÓ1ËâÓÏ‹ÄîJ/Äîjãb÷ÏbçcbÖŒØë½™Ø»ðµØO^\"öW^ÑÄÝoÄÀ@q`Ý^qðYŽøÜ_‚8Ôþ„84ÕHZÉ_P~\'ï|/ŽVG°SÄ‹7Ä—7Ÿ_Þ(ŽÊØ%¾2› ŽK4Ç‘‹ã¿Ö‰RÅ‰á\râäÏiât‡âÌ·Úâ,Ã9q–ÑqÖAMqÖñ-òñ­2-ñî qn´²8¯&Tœ÷¥C|—ç,@Å€\'Åbàå3b°¹ŠšÃœÿ‰aä1¬qNŒ\0Œ‹QnýbÔEe1z,WŒßb$ÆßJÓœCÄ´¾˜ŽØ/f·ˆ9n{ÅŸy1?’+•¹‰Åõ9âÂ“>â\"|‘¸¸ô¼¸äÞ]qy^ƒøÑ%‚¸RsH\\iÇW”Š«î€ÅUŸ¿ˆ«F¬Ä5ýÄµfwÅõgâú’HñÓÄO›•Å\rèlqCíŒ¸Qó…¸ñj‡ø™‚’øyåOñóA²¸™_\'~ñPKÜz§_Ü†¤‹ÛÆ‰_îü,~Å6wh¢Ä¯uóÅ]:â®’_âwWÊÅ=Å÷ÄiÓâ¾ãBq¿†½¸?ç£xàt¶x0U<¬výOHBÄ“CñâÉï(ñô}Žx6áxvŠ*þ¹&þi~Güd$ž\'z‹ç9–â…y¶øWØ‚ø×}°øWõMñ¯÷xñŸK—ÅK¿ÛÄË\r…â	–âÕ¾YÉ:gK‰¢=O²±ÆC²qê­DåiˆDíˆD¢vmH¢6Ü/Q7;(QÎ–l½3-ÑØd\"ÑÈ°”h`‘1‰¦zƒDœ)Ñ¿ä\"ÙåÔ,Ù5^!1ˆê—éK$»—-%{4HöÌþ”ìt—ì{›\'Ù¿:*1·>!1Ïº&9\\xYbµ\'Gb%o–é®’Kÿ&±½J•Ø>Jì>˜HŽWü‘œ %õ7$Ž¯\"$Î“6’Sû’S×þH\\«$.U‰Û=u‰ûˆÄýÛ&‰kRâõB&ñúa)ñ¶uøÇ§I‚vJ‚“-%!Ç\Z%!åÉ’sÁW$çO`%çQ’‹ÉE©äâé[’°¬$I˜°Nö€ ‰Â®“D•ŽK®`p’è‚QÉµƒÉõ>’d§	Iêýƒ’Ô†I\Z(Ikð–¤FI2Ž%™ôBIfF’…} ¹U%É~Û!¹½[\"¹C2•äîPýO’û É3U•Ü?#¹ûÐNô;(`%À	d÷	Lïž&^‘À3t%ðG¤úF	Z#C‚¶Í“ ÓÀô¯z	ú«Ëõ’ànKð—‹%„„ýBEÂÈ¦I˜ßc%ìÍá¶!@Â—°3#%œËŽÎƒnC¼„÷bT\"\Z9,Ã\r$r+{‰	“È›7JîP•Ü‹R—\0¢%	’ÂÛIágIáÀIÉí’’\"IiA‰äáÞc’Gþš’G)	’Š=¯$ƒÅ’ª3‘’êT\rI5¬JR{%MR¿\'it(‘4¶Jšz2$Ï4þIžIž…J%íÑú’öš¤£ð³¤Ëú‡ä=FÒë{NÒ›h#é½;\"é7ž–ô[`$ýÑÅ’Ï€>É@æ’dt•/·Õ—L¼H’|/•H&ÿH$?l:%?JîJ¦|—LCîH¦ç$3=Ž’YZšdö»¢ä×wÉ¢šd±ØX²8!”üÉ¥Jþ6$+N7$«=RE÷mRÅ@_©b˜µTñ~¸t½ât}Ïé†6}©Š<Oºùñ”T­¡Cº%gYº¥®\\ºeÀ]ºe¼Wªn¼&Õ„JµìðR­•‹Rmƒ¯Rí?=RJ·t{¨štûÒg©.e“T·”#Õm­êÝï–î|¾Oj”#ÝmØ$ÝÝc.Ý£æ.5yâ\'Ý\'JÍ¤mÒƒ³~ÒCZR+µR+Ó©­­‘Ô¶_(µŸ–ÚJ¥ŽÞjRç\'SÒS?¤§¿8IOOÿ–zœ˜•zªæI=1ÊR¯.žÔÛð´ÔGå“Ô§a@zöÁM©ÿs®4$ä›4Dè*=×tG\Zz\"\r+	^šu“FlM^Þ)NIc·JcRPÒ¸Éai|Išd,M¹n\'M[Jo`Â¤é¦Òô\rÒŒíbéM“;Ò¬‹‘Ò[<7iöN˜4ûV©4[øBz;˜+½ãØ%Í›dHïîî“BïÆJaOiRTD©Å{\"Å~ê–â×¤„#R¢SJ>W(¥4ü’RmïHi–VRºgƒ”!h–2ª<¥LÛV)§rFÊÍÞ\"åõIÅç…Ré«©Ì;C*W™–Þ×þ\"½¿GQúÀû4¿zŸ´ÀtEZ’ýIZj¡\'-m’–)¹IË]¥Þ®H\rzH+N8K«ú¥5÷¤5Q½ÒÚÜ[ÒÚ™õÒÇÛJ1‘Ö”Këk9ÒØké³‡2é³¶ãÒç#•ÒçósÒæ§|éP‹ôÅDÚâzPÚûCÚÊ~,m«\n’¶õDJÛËó¤/Ïž“¾Ä ¤¯Ú·K;ŽåJ;µ<¤Ö{¥öNÒÎ/ýÒ×ç¥ÝxôNŠôÝ¥;ÒwY¥ïA;¥Ô¤=4¤¯8I{I¤ýöcÒÏ_—¤[¤µÒ¡¼Òá‡¯¤£>)Ò±á½Ò	é˜ô{I:s,‘–Î4¼”Î6kHgW¥sKËÒŸ{:¤¿¶Jÿ¤HÿTªHW=®JWkÓ¥kâe\nËX™Âj­Lùx¦l£«²l“ÄG¶Å¥T¦~ÄK¦Ny)S_x\"Ó\\-–i©\rÉ´œ*dZWA2-’§L[sA¦Ýï*Ó)–m·Ø!Ó5È—éº.Ó¯N•ÚøÉŒ•5eÆ¨\\™IéW™é¯k²};5dûoøË,,Å²ƒç²ƒR=Ù¡Ý{d–±V2«¯2+øz™Õl¿Ìjž!;Ú%‘Y¿‡Él`eÇ²@²È=2§Í³2§®p™‹g°ÌõOæ6wNæö÷†Ì”¹÷Ü•yþ	–y\rŽÊ|m4d¾¶|™ï-#™o9[æ§)‘]Ù,óßñWæ_¥,P\r d!G3eç†^ÉBãÂdçƒƒea[ßÈÂÎDËÂßl”EžÌ—E¶çÈ._ÇÈ¢—eÑ3—e1Ás²˜ó;d12¦,¶óš,NÒ/‹›÷%$ÅÉòeIñëe×1²dp½,ù_ ,ÅËB–Ë‘¥<Z\'K\r˜–¥&\nd©T_Ù\rDŸìFŸ®,ýÃ9YvK–\rQ‘ÝyxU–ËQ’å>ÐåµËòz‘²»\ZÙ]ÜIØ£PõGÉ`•2´|U†M*—á®•áó2\\M³Œh¤$#&fËH¦¦2ÒMy÷9*£¦»Éè¦\09%£’1ì:dÜk&PÆŽÿ ã‹ÓeÂ*]™ø¢£Lœï$“|€È¤%s²{’hÙ½k²û6ËòéÉ\nÊ~É\nÏž—9$ÈŠ>ÒeÅÆs²G¬Ô «øö@V\rO”ÕXÅÈêà;dreO·Ë\Z‚e¡²Æ LYcÓCÙ3ºŠìy¾Ÿ¬µã»¬ÍG,kÿö]ÖþÃAöÒ,{I…È^·Ü•uÝh‘½½â%{gsXön²AöéÄaÙ§²{²¾C²¾?Y¿bŠì³vŒì³ãÙç¥Ÿ²Áƒá²ÑlÙhË\'ÙøSÙÄ.€lâ{„lò]“ìÇ½½²™å²Ÿê¿e;üd¿7iÈ–¾ÈþºOÈþù8Ëþ…½“ý‹”­©•Ë‚å\n}ªr…ßÝr¥¶“r¥©Oòõ}Ñò\rù†r]ù¦é@¹Jb¼|sÚ&¹*í­\\µò‚\\í§§\\c]¬\\ã°“\\ƒ+×LÈµýäZ9	rm#š\\»|³\\Ç“\\tC¾­åƒ\\ïXŸ\\ïÔˆ\\ïU“Ü@mTn ¹\'7h¸.7\n*—ï~óP¾çÐ>¹‰N¬ÜäJ²ÜT±Dnj¶*7½B›Î}‘›wÈÍ¿àäßNÈœI”8ÊmY\'?4õJn©š#?Œÿ)?b´$?zÅUn·÷¥üø•ùñ¢¿òãòåÇ1åŽ¼2¹ã`¹üä6sùÉíÎr\'L±Üù>Fî’‘\"wiV”»\"!r7âg¹{Ê:¹—ëv¹×Ý\\¹WÏ	ùÙrwyÕyP:Bô^W´Ô/¹ôX’Ó-KÞ,cž“‡qÓäád¾üÒÛ%ù¥åy¤Ý:ùå¦VyÊ[óôü*f@›ç*çÈãG#ä‰\'<å×Ï²ä×‹÷È“Æåixù\rI«<Ãß@ž1²]~S9@~ëT¡<ûÅ%yNâoy]I~{ØK~ûïyn¶«<ïËq94í¬Ú“\'G½?#G#9rÌ¶Krlˆ¢Û²NŽ3“ãÐ9^+\'ä$ø?9¯#§¬¶Ë©.UrZœªœ¥ gå÷09‡g*çyå¢Í9rñsE¹äCŠ\\ú&U~|ó?å÷ZRä÷Gå~ÄË=ÇäÅÕä%›äFÈ+ŠÎÊ+ê\\å•ïMäU9¾òêÙ»òšB¦¼–pM^÷Å]þxèŒü	ÞO^? o|…’?ó{,vÎPþüï˜¼ùïUy«õŠ¼íùy;JAþò$ZþRb$ECË;VÊ»\"å]÷WåÝ33òw\n½òw&ò÷ÊYòú<ù£Iù‡°^ùÜüãç@yßì¨¼ÑI> .ˆh–*¿“¡È‡2ŸÉ‡ÈÉò1òQùX½\\þUÛE>þô¸ü›Ñ\'ù·Äÿ1\\Ÿá\\pQ\0À)#IeFÛ(J’ÈJ•M‘‘Jf¢É*Éˆùï½÷ÞÓ*)…H¥Œ¢xßç>¿ç|»÷Üsî‡só;¿Üˆìœ¯ïœjÜÐ9­¾ªs::¾sºÇ¯ó»qçwÖÎï¯Ïvþ8µÔù#Ýù‹} sV£¼söÚµÎßñòÎßð¡Î?oÚ:—¶Ot.¥œïük	ïü›z ²° êÉ¬Òò¬š¬–¿¬î\0¨UÔ\0ÔÛE\0\\>@ãƒ@Su e½ í1X×Éè¼mè¦\\lÜDœ±lª­l>|°¹D	ØŒ90RgŒ|ÞŒÎáÆQó\0# Àì‰`Kf`K»ÀüÄ[À¶&`{©*`ÇèIÀî]­€Ýï\0–÷€\0+ý€ÕSK€5°y÷	`—]°«\0ìçã\ZMÏ\0ŽðÀ¡?b€“ÀpØ¿p8ÿ à0pQÿ\0pK=	ðøYðdîx©Þxi¼ò\Z\0^3Àq‘-À\'V	ð¹xàC1\0øèüt4~EB€Z	8Ù}pJ?pê^2 HU	üœNÔœqK\0DÝ²œ›}ˆÎ†ÎÇ¾\0\\‡\0b”«±-@œd >ò\0 ¾´O#.Q˜€„V\Z ¸ÜÜ¸â¦\n¸\"H\0$:ì$F?\0$þ›$ŸùH=s\r\n=HÛ|pýûg@põa7à&mp‹Ú\0ÈµäTnïü\0¸]¨(È¹\0(¸Û(Ôy(\Zz\r(ax\0î9]Ü¿ºp_zPÑÊTü°\0TÁU1l@ÕŸx@õmCÀã/€úˆÀ¤\n !\\hè¿\rhtÂž¥fžM$\0ž—­4£¤€æñÝ€–,[@ûWu\0P\n\0šÏ@ñY\07\0’œ@Zcû@\0j3\0€–\0Ø,\0û\r •Hó\n\0õÂ]\0=”àîÅx\r\0‚wá\0áèw€ÈE»=Èò\0òôÿ=Åä°«\0Eÿ.€r­@ix ƒ\0”7\0”8@wg& ßôàíP\r`dé*à£î`ôo `|µ\00±30ud`ŠÍ\0LëÎ\0¦÷ ß(`À·)mÀâ<`f˜™Y\0üÌú\0˜~˜³*\0,¤”þDí,©Á\0K €%|àïºdÀ¿ý Š·PõÝPuÑ¸ªh?P­Ü¨6T\0ÔÜU\\CÂ\0µ:³ëðo€:F@w!Àõ‘ÙÀõ·^7Ú\07ø@³C@³7W€Ö+À­«Ç;¶å\0w´êwGü\0Zúª\0-ïÏ-{TÖÃ€6Õ ­o3Ð¶Ñ¸Ïêp_€*Ð¡åÐáoÐQ¨	t\\‚.\rw‡CçÎx7 Ë—XàÖ] «Ý_ Ç³ã@Ï­AÀ£ÏÇ®Òú¬ÍúªZ}í©@¿æhà	õÓ@— Tá®\rÿë†¼œ†\Z>†>)†Jõ¡_þ\0Ã¾<†_éžöOƒô€§§¿\0ÏX|žéýŒÊñ\0F§­ž/^8S¼ yŒ]GÆBlq;€ñNËÀxŸb`|xðò–nàU×RàÕtC`bóW`\",\0˜º\nLÖÓ¯aéPS`:²\nxëöO`¶êg`ÎÉ~`®ß ð¶ÿ~`ÞØCàS¥À;í/€þÀø	`ap)°Øy°ôú#à½G#Àû‘ÑÀ²ÖgÀ2Xþà%ð!­XYÿX}o°ºþð±çðq·5ðñøE`müz`­<Xw3ø¬ñ°Iª¾\0ó­«?[-¯[ag/™ÝÀv—ƒ@ìq¸\nˆùbwY\0ñ«¶\0	#™@b>Hšè\0R&\n€T— Ãì ¹åcä\'‰‚õZ@¡ãE øûZ ,ð:Pö·¨¼½Øêì.^vKþ\0»¿ö{¼ÉÀ¾Ì!àÛ™oÀwÅLà0,ø¾yøžhüPù\ZøQEüÈ|üTóøy<8n¨\r—,\'.½NUä¿Îd¿Ù„ð¢€?÷‰?ÏR€?ÉÀ_úÀÙ£o€³oœóÔÀßÎ~À¥Áà¿{2àrá	àÊÁzàÊÊHÅÂ¤Ú©Î^­¢ô‚V½í­¶ƒÔ<öÔ…ê \rë†í7†´¤Ù­aˆ@k÷Ýé´É@hAº¿ôBò@ú²\ZÐfßaÆoQÖiOhË#\"h‹âÈü—ÈBd¡²È;ÚÚ;	ÚvRÚÖ“ÚÖo\rÚ^bÚ1—²Š~ÚÉíÁ`@{?lÙií×€œ,MA‡é ÃR?óe&È\0Y]\0:2ýä\Zèr¹¹”‚ÜÒp wÎ+Ç™u XÐÑà|ÐÑAÞÚª ï÷Á Ÿå>Ÿ¢ä¬äÿyèT\nr)Ï…¸Ô€B®.BÏƒB^m…}*ERZAg9XÐ¹G2Ð9>tÞj=è‚1tá‚/è óí/(–üïÖ\0Šòt),”´tÙÆt¼\rtù_èjÌèêÅPÒårPò9(\r	J×ÌeØê2\\ì@YO€rBìA¹)- Ü7 Û\'‰ ¼Ð <F(¿ýèNïÐ]ßPí,¨\n*þ•‚îRAåÿßãÁžÏ ‡EGA•{«A•Q¯A}CAßoÕ„^Õ^Å€jëü@uÝPƒÆNPyÔ¨]j¤…€š>AÏsU@ÏY§AÍŸÆ@-\ZAmÇ( öçy Wn@€8;ÐbØJÌ@ ó ðä_ÇAøTl‚¯¾B˜ÓAÈ­ï@¨«»A¨¬&V&áÏeƒˆÐtqDªŒ‘7¼‘k÷(½`­¢D“´€˜Ÿ{Alµ§ ¶V4ˆãÞ	âjqo€xù@ügM IŠ=HÚh\0’ÑÕ@òŒEâ:ÔÕýÔ½FÔ·úèuª7èõP#èÎYPÿE¨_1\ZÐZ\Z $€µÂAƒ5AÃDSÐû¹ ÐÈÝË ¯\Z@£Q ñ<hü­;èËÕ$Ð·:4è»ùCÐwî\'ÐÌj#ÐÏ(]Ð\\®hAÏ´¨\rúý-´”¹´TÏýK–Õ>‚–»\0 •\nÐÊS_°Êv6Xe\rVm<^½¾¬vñ=XÝ8¼¦+¼nm9X§\r^¿6¼1&¬o¹l°áxu¼¤\0›„±Àæ‡ÁV­`‹•ðbðÎ]ùà“¥àÝÝ/À–¢£à=ûÖ‚÷Ì€moè‚÷=ëïß}¼(l?| Ù| !|@vìhsì”æ	>òâØÝödƒ=jÁGs^€~¾>~5ìmÜö®¸ö&Äƒ½»ªÁ>!oÀ~%àÁ\'HÞàÝÁþ…¾à s)8(µ¼ç2øŒ[8Bý8²ý\"øìéeðÙ;pTþ 8z§8ú÷$8>~øRD3øŠÉ	pÒÉÕàä¶)pŠš	8e‡œrõ8}ý3púÅ‹àtÂ[p:9	œ?ÎÌ÷g¾#³®ÑÀY/Î€³P‰à,évðÍ‡éà[æàl8;ë-8\'÷:8‡Y	Î}1Î]©\0ßvó à{¡GÀ÷áÁ•ê	àJÇipåk}pÕÊupõ;pím0¸¶Ý\\w[\0®dnH›7ÔâÁOUþ‚Ÿ©ƒŸýæ‚›RÞ€›X±à¦¹Vðó7Zàfã/à–³“à–¨fpkófðËäcà—yýà—’Á: pç[0à¶„ƒÁk®ƒÁï»À¬ó`ØN?0\"¬ŒÄD€‘¯gÁèë/ÁØâh0®ŠÆ¯‹“/S»ëÁ´}Å`ZR	˜±©ÌBƒ™)]`Öä0»nÌ;¥æIO‚ùU`~X(˜Þ<\r\r™¥ü4°tùX°,×mw]IwUý\0w»:€ûþ¾÷;Ø€ûIPðÀózðÛ_Áoÿ¬q—Á#áOÀ(CàÑÛ÷ÁŸ4õÀŸ<±à‰mªà/¡Lð¤\rüõÔð×ùð·gð÷^ø‡J3xæ \0üË=<{žkWÿ}dþû1üÏíø_û?ð?bxYå\nx…¾¢‚)„¨ºhAVÝn†¬’@Vã’!jq~#/ šƒ!ZwaµêÈ:SkˆÎÓó\r*!º³¦Ý9\Zdã¨>Ä ½\0bˆ(„\'ûBLK ¦á\rSùZˆÙÎLˆÙ£)È–G\"È–ê~ˆE<²õ‘6dÒ²KÓ²+âÄ2sÄFÙù¿ëÅ½Öw!vÙ¶}ïú ÿ®…8þì‚8.Õ@œ3m .ëþç÷âÒSqM)€¸¦¶@\\¡á×þvˆ»æQˆGë*ˆvÄ³˜9\n–B¼>ÌBŽ©¿†xßN…ø;ñÉR‡øv¼ƒœý‚œøª9éÓño…øCŸ@üAiÁÐÈ\\È™o Éˆ§\"Hdf$êÃ_Èõ%ÈÐwHlO%$.¢÷é+$>Uríú#HÒÕ\\HªÐ’f½¹~\\r=i$£O¹ñ¤’yüä–ÏÈ-täÖâOH¶V$§º\0r{õyHÞÞ‹ü¥S‚HmÈÝ4*ä.\0)’ï„”<5…”ÄBÊ?C*i§!UÈtÈ#ýUê	äñƒçZ¤.è3¤îö-H}áIHC@	¤!yNT‡4WÐ!/‚¶A^ÔÕAÚ&¢ /›ðŽÿ{Ð9’¸$@€œýý	¨q\'žáAè¥@Ð!ÒeÅæ\r„\ZÝ	¡‹€0îeAØÞUÎÍQ÷œ-„o*„ð¯k@DiG RÛˆÔåDé…ÈÆÊ!Ê‘wî‹Þ›,Hß¥s7ù÷v@ÈˆÅ0däòA·2ºM{í>ùt÷\ZdLCóäB&Wl Sw} _O´A¦l…üð%AfL·@~öªC~å ¿*Ç!³à9}3ÈÂz+ÈïwG!½ Ë¸åË!åiÈòb)dEUQ@U¶l„ªÄ”@U< ªc j×f¡êƒPõl¨æðvèÚ§PíöV¨Ž~T‡e]ïóª·%ªg[Õ÷ÉƒnvH„n®@\r÷äC·ÜnyIƒšgî€šäA·Î\'@·m—A·¥ùA·ý9Ý¾q+t××)¨•Ö)¨Õò¨µe,Ôúøv¨uñ>¨5\nµùûºg[tïŒ?ÔvW7Ô¶èÔÎìÔîþ[è¾­åÐ}B¨}¦ô€Í*¨ã]G¨KÈ¨Ë+¨Óz¤ØêZÚu¡´Ð£ëb GCÒ ÇtÐc¯@½c-¡Þ¹ÆPŸ».PßgfP¿“›¡\'ýNAOß@ýŸf@ýß‹ !G ¡y#ÐÐ‡» ao¼¡áÐ36NÐ³K[ çlg¡ÑzCÐhOô|²\n4Æ=\ZãYýì½ˆaA/’Bãz·Cãû‰Ð„Ñ$èå–^è•ÕèÕ¼1hâB+ôZøôZâ4i÷[hRáhrÈ7hê‹(h\Z¼š~Îš½~	½i€ÞìÇAsö·Co;@óÖ\n ¼Jè]­Iha½´ÈcZì¦€–<|-yÔ-i[½ß¸-Ÿr‡>j†V¦žVfB«£Ðj²´Fÿ\"´æß}hm]´öU=´îv´¿Ú\0Ú	mdNAŸ~œ‡>·5€>Ï)„6#„Ð•Lh‹¶\r´¥3úâÚz—m³ùmž‡¶ß/†v¸ŽC;.ì„v¦p¡ÐÕ%PØ…ŸPøÈc(*ã£B±y>P\\Àk(ù¾7”zi\0JýpJ?uÊˆˆ‚²{B9ÞæP^ù~(ïy\rT¨¾Z€Š\\ âæPñg\'¨4r*ûb•_ßUÞA»¢c ÝÍÐþAôÝ•4èåthˆN\\9_ýhÕ\ným[	…ŽUB¿DC\'5;¡“ZvÐÉ,\0trþ*ôëã2è÷5EÐ÷ó¡³ãO¡sÕžÐù}; óñ¡‹èâ	èâ\\t©Äº4Ê†.}†.ýz]fäAWú-`ªhLuü+LuÅ¦Þü¦¡±\r¦­\n[ãù¦áÓ¦vÃ´?Þiÿš‡­û\r[,¶~Ñ¦ç°¦ç³¦þfÐu¶éè[˜‘ão˜ñs\0ÌÄã*Ì<î5Ìüºfžá³HƒmËÛÛE‚YÆýYÓaVmßa6ú¦0›ga{Ò°=ì`{]E°½äk0ÛûŸ`vàØ~§B˜ýƒ˜=NæÐ\\;øæ)ìø=ìðšlØaÃxØañ˜³Z ÌyDæ¢­sá­idÀ\\qÚ0×¯æ07O˜ûƒ³0È˜çrìØ¿.ØqÇ0ß¿a\'º­`þX€G8,HcâúRÓµ›‡…íw†¾Ä€9tQ¹1Q‹ô¹;[²‹:È†›0‡]HÖ„ÅéÅTäÃbêÁ.\nÎÁâ»ÃañSË°„¼ë°+;ÞÃUæ`‰æÇa×vmƒ]‹:»öõ.,©K=6Ëxã»ñ¶v³=–s²v»ª–›»ãŽ†ÝA­ƒ´°a¨vXÁÇµ°»iPØ]¾\r¬øI!¬d­-¬tÊ\rvo=\rVvÁVÎÛ	{àV	ó…UiØÂÙ`j`ØÀj@A°úy}Xƒï\ZXÃÒNØÓ¸XØÓ‡\r°ç¶°ç!‘°f–¬e}¬õ‰\ZìeöAØËªÐŽ\0%ða šiòX£ÿ†¹~†Ý †á¶èÂðZ†0üK1®FÊ…QL«a”`ô·¯`ŒÏ`Œä¯0¦æuóv1ŒÝ×~<	¾…ÉÎSa²Ó0â1Lé¹S.ß„u—Áº`}›°¾×i°×Î¯aý›¼aýÿÖÃ˜7`ƒ¯ZaCÔØ°)\röÞ46²7öqÕ>ØèquØèe8l”Ùûä™û|­6ç\r¯\\›æÀ¾¦Â~<ƒý¨ûõ›}][Ü7û§êûW`\0[6”ÂV†¨pÕðRøjcc¸fe\\ëÐI¸Ö-\0|mf*\\;×þz\0®Sl_Ÿ°®{<®ç,ƒ8§Ã\rÞ‡oZ_7‰ƒÂM]Á·avÀ·;aáÛ?Àw0WÁwE5Á÷Ô0á{j}à{\Z0ð=ï^ÀíüßÀíB¿Â÷í°ƒï_ßî‡ïgªÁíMð	ŽpÓWðƒîpÇéY¸So&üpP/Ü…ó\nî\"m€Éý\rwo¢Â=epÏÖµð£ë¸ðcwâáÞ«0ðV_à\'|ŸÀOjÂOy†Ÿz½8íð¿Tx@a<ÐÒ˜zX]	z\nÉt‡‡`øð/êð?½ð0¾fþp\0~º-\r~æp<Òp~þÝ,üBã/xŒf<&Ìós/<þÈ<>^~	>\nO˜¬‚_sÁ“ínÁSF¡ð4SwxúŸøõd<Có-<cóIxF›=<£ã9<c¶~£%ž¹–¿)p†gƒá9çXðÛ+nð¼îHøuOáw‚ßÃïä¿…ß!ÃïH+à:Rxã=x‘º-¼øüCø=kUxÙ­óð²G»ác0øÃ¼òûAxå/{xmçAx]E=¼A‡7„7ÔÃð§~4xSW	ü¹î*øóÞxKD3¼åa\n¼µØÞ¶½Þ^ö\ZÞ)Û®5€ƒr˜pðÍ{pè)ÆO‚#š4áØ;p¼ NHÃ‰ŠkpŠœÊÿ§=N„3RöÃY»èpkœ]\'„sÈ#p~ÓY8_þ.°ÃE†Gáb„\\b•—zµÁeNÀå&p¹b/\\Á…+XKpe¢¼;ÛÞ÷8þ:£\0ÞŸ­ëoõ¿Dø°E\0|ç	AÁ?œušî:ÃGkðO÷ÿÀ?=ü3rƒm„\r¶ÀÇ†´áã[¶ÁÇ	>ð/±‰ð/É*ð/•Öð)‹Ûð©q\røôÖUðéFð™“ð9»yøÜƒøÂW0üwS=ü÷‹õðß¿á\n¦àÆýàKÖ5ð°BÕ1¡êt	¡ÆÌChì}€Ð<‚@¬ñt@¬u{ƒX{Î¡³µ¡ûR±Ió\Zb“€0\0\"Lyº3ÓL„ù¾I„y¦aþ\r±³c±ûj%ÂÒ{aYÌ@XÅ€Vƒók,±7ò!Â®]a7t±Ï$±ï¶&bf±ÿ0±ÿØ0ÂþÝ2âÀ\nÂÁºá°ÿÂÑ±áø8qh“Â	b‹8\\¬p9¼€p™a#\\=ÇnèËw”áa¹áQ1ðÀ?Bxp#G#\ZÇ:þ ŽŸ_ðî\\AøØ!üMŒþ´	„¿è7\"@’‰™Ã!Â9!Â¡[§§#\"v\"ÎVT ÎBbÑë1™ˆÄDÜWD¼×FD|+\r‘pu‘v	q¥î-âêz)\"Qu\nqm8‘tö\n\"5h‘ZÖƒ¸n›Œ¸Þh€ÈïDduÅ\"n&È·W#²ã¯#²ñeˆ«hDÎ¾\ZDŽãSDîYMDþÁ>DÁÏVDÑß!Dqÿ\n¢dÍFDÉÌâ¾ÞEÄ}Y¢ÜU‚(¿Ø‚(©DTD#*î=BT°;vnB<@¯ L•ç#UÖ~ˆêCïžG<ö!jí<O®e!žü*B<Ýú	Ñävñüê¢uG!¢øÑb…x¹Œx9uÑ®6‚h‡‡\":ž|Ct0^#^MZ#€\\¼#fBÀ§ˆžÔi•C eéŒG³2‰À¿“#ˆö`‘5Ž ×ìGP\"Õ¬‚U~ÁB|D°äkœÉ]îm‚+ÎEð(Xß ÁÏXä«#„¡Ï1„0l!Ì<‚ôu#¤Ì\'ÙÖÛù¼BËF(ÈG]™NˆT¢w¦Ñ7ž…èw:„èŸ,A¼õƒ\"†ìÝC=Ä{fbpñ!Ó\nñ±:1:IGL¬­CLJ_±ùˆ¯ÓÔ»ˆéõˆŸ› ˆ_Îï¿žÅ\"~½Eü¦\"~\r\r fïas4ÄÜ×}ˆùÍ¿?x ~O¸!ó[«Û+ü¤ÊF#¤šò;RÓ#©uÈ©•æƒ\\»Ù	¹Ö1\Z©Ów\Z©G)A\Zp©H#Ÿe¤…ƒrt¹sür÷¢ÒæÂuäÞ\n&roOÒvwÒî\0iç?ƒ´ëAî;Gîß¾¹_‰´÷½ˆ´ #àH§Ù<¤óÂ¤‹¯òˆK-ÒíWÒ#†‹ôø=<æ>„<ÎWGÿŽ@_.Ez×+‘>³¯‘¾Ö(¤ïÇ¤ï¯È“Û½\'Û¢Cd°\"²>\Zú&yºáòŒ†òÌè+däyîíd´yÎ@Æ¥¡‘q7cñ™ãÈøÇeÈK6È+3ýÈ«‰-=ÈkúdÒ¹$d²¿;2¹»™¼ø™\n3B¦1ìéÁ½Èë‘Èë3+ÈÛ3‘7‘™Wû‘Y \näÍ?d¶Ígd®œ‹¼Ý…Ìß¡…Ì¯?ŒÌo9…,x¯‡,4öB]9ƒ,vžG–æÆ Kï®A–Ó½‘†1ÿ{|ð×YiR†||EÖ©ø ëë\rþ†ÈÆy)òyg5²9}ÙÜš‹l]\ZB¶ÍA¾üÛl­C¶C¿\"_¦\"{J€àHp^RBB(\"$4ë&ö¬\0	CÔ#*NHäO$Æå*ÇEbrL›)$½IŒd|¼ŽdîA²«m‘œ>Hþåv¤8h	)¾ì†<”\0Þ ¥—3‘ÒÜ‡Hií.¤”†”~úƒ”‡Ì#åŠ|¤©ìHBvyå »ã\n¯¯‘ýÎ‘Èº1rD¾soA¾×\0 Gÿ?ãSÜIä¸ƒrüâMä„§ù¥ŠœDïANE\"¿îÈEN×\"gÎs‘?\rò?ãàÈß_1ÈÅž%äßÈ1(ÕK”êÇ\r¨Uj§P«<QjA1(u¥qN†ÒHWCi®¶Bi¢•¨µ§ýPkÙ‹(3F(GÛPë/C­…Z?CmÈ¯CéìBm4ý„28MGmÒùŒÚôÔe|x5Ê8ÆezèjË!Ô–ûI(}m”Å¾ç¨Ì¿¨]/ÛPÖù×QÖ2C”Í»XÔž¨u¨}«•¨}Þ£(G¶êPãêÐÜ\0êHI=êH¿ÊÕú;ÊídÊ-†rëoGy3QíPÇÀ(ß\'Q\'æ&Q§ÞDù{†ò+P©6¨à£GP!þ‰¨Œ*<\'>?„:íËEñy:Sµ	u¦Á±|\ryËu®/·}Ç§…Š»÷\r÷Åu‰¸\r•½ý;P—=V¡.wËPW¢MPWËÅ¨kÚ£¨”ÒT\ZA\r•öËuý†*ƒõ•éñ•uæ2êfd$êvÝ?Tžõ-T>î2*ŸÞ‰ºóµUtoUìë*®_A•ù Ê.´ Ê·¨ ÊO¡P}e¨›ŒPZ1¨‡kÜP!“¨Jv	ª:2UÝ@=n.DÕlÐ@ÕGÕ´ë£jK j•~¨zH)êÉÞpÔW$ªÁ›ƒjø†jÔ¼Šzºaê)´\nõt`õlÓqTÓøê¹nª»ˆjÑà¢ZôP-ƒ[PmŽRTuÕ![B½Ê¾ŠêÜ´€«¢@GƒQ {Z‚ê à:ÏPð‰\0ÂR\r…6mCáÆBPxÕQþ¨>\nÿû!Š D€(’KŠ¼1Eí@Qg×£è‘PôgpsÛE«0\0Åâ>Eñ,> O\\PÂ\n\'”p~%:±%¾§@‰·¢dŠ”\\¹¥ˆè@)À6(%ªÕÕØ‡êâ<Du{ÁQ½âM¨>\Zõ&´õæô$ª_«5 Vƒ\ZPB\rnëA\r&ÑPƒÍY¨w÷H¨w¿ªQï²QïcsQï™P£:¨Ï•|Ôça jŒ¾€\ZW±A}‘£¦rQßT³PßÓ7£fê§P¿â™¨_	4Ô¬6õ»uõ\'(	µt.µ¼n/j¥åZ%Í­‚^B«Z%¢Wq˜hu©.Zýï{´æîhMËè5•ÇÑkí‚Ðk_¼Ak»|Fë@Ñë¿½Bo:R†Þ,¢¡Žk£¦ß¢=Ñ&¸:´éª´iâ=´™AÚ¬Ú½åP	Ú|½mž3…6/«G[L%¡·®±Do·}ˆÞþ&½#ë(zç]?ô®÷ôîÂ‡è=J9zogz/é:ÚÎözÿãmè-pôoh‡_Ãh§x5ôaì5´óÚ»h—ô‘±5è#Ë\0´«¡5ÚÕ+íÖd‚ö ¡è &G{=Ä }©h?×Tô‰pôI\'\"úTv8úÔÔ´ÿúX´ÿ#:p¬$ CFóÐaÏÐ§µ5Ñ§ÿø¡#‹ÂÑç\n7¢£¯½BGÿ3C_pËDÇšF\'è­B\'üÄ ¯4nC_i\ZA_£‹¿¡Ñ§ÐIQŽè¤Û…è¤ÅDtZûNt:¹¾Gg¨ŸFgâ^ ož@ßìÚ†Î@gcÐ¹¶|tþÃ3è;mbtâ$º(L]T\Z‚¾W&@—Oy¡ò¤è*ÿ6tý\0ú(]]ÉB?Þ-G?¾>‡®YLG×Ÿ)E?QœA?«1C?¿þÝÜ A·¨ÜF¿8ƒn¤¡_-|GQëÐÀÓh°ÛU4ü‘\r¯¹ŒFj8¡‘ùÝh4\r‰Æ4=@ã4¼Ð¸Ãýh£Mð\ZC“ÞoCSÒo éÐ4ëy/š{ºÍ_þŽ\0êÑ‚·¯ÑBÐ(Z¤ú?Æ3´¸3\n-9Ùƒ–m*D+X{ÐÊP-´’õÝÅþŒî.Dw·¢Ð=‹zèÞÐ}¡èþ“›Ðo‘tô»…!ôû0#ô£ÍèÏö£?×ÑÐcöÙè1OôøN\rô„Éiô 5zJ¥=•SƒžzˆD¸„þÖ‹FÏ8îAÿ\\Aÿ\ZBÏ¢¡ç||ÑsuNèùŒèEƒ½èE—ô¿É+è•Öƒ•0/ÌªcZ˜Õg¶`ÔìäõDcŒzcfM£Õ~³Ö´\r£]ïÑ~–„Y—)Çè¬#cÖŸ	Æ¬ûˆ1¨«Ál\nÓÂlŠYÙ”ô³Y÷fsn0ÆøU7ÆÔï7fË`<ÆÜ1\Zcî…Ù\Z{³UP±4ÌÄX&\\ÅX²?`¬b¢1V\\ fE1Æö*³Ï³\Z³Ÿ›‰±¯ÔÃ}Š90f‰qPÄ8ìÁ8ââ1‡R–1‡ˆg4ÆùÇmŒ‹ÅŒËi5Ì‘ðEŒ«q-ÆÕ²ã~HŽñŽñøæƒ9jdˆ9Vë‹9ö7\ZsÜosœðã£›‡ñ±¹ññÿ‹ñM<ˆñ³óÂø]0Åè0ñÍ˜ÀŸ™˜àÏÉ˜ÐÚL˜ÅLxó^L8ø-æö&¢æ&bå>&úñ&Ìyl\0æBŸ&F¯[cŠ‰[·“((Å\\S?ƒ¹ÖŠI:þ“|,“…Ä¤haÒm1éÉÇ1U17úã0™z{07o217ÇÏc²‹bòwÌb\n‘L!ú¦‚Ám¿ƒ)ÚñSÜ‡Ä”ä¶aJª1e1—0e¿¤˜òï0ÐVÌƒèÌávLå–O˜*%\nóÈ‰yÄ&c-_Æ<>kŽ©1èÄÔ,cjîýÅ4ìÚ‡i¦bžyÿÁ4ïïÄ¼¸ùÓvÝóò`9¦]\'ÓN;„y¾xDÀ\0Ð5àÂDï;rzééÅ@CL10n59ž…AyÅcP^T,	ƒŠß…A«üŸð–&lƒùÜŠÁüþ…Áùbp9ÓÜ†`ðCŠ»‹¡ôlÆÐ_`1Ì-NA†OëÇð‘ã{Œ¢ÀÈ’0²Å;¹à;¦ëÂkÌë½y˜×M+˜I8f8Ò3üa7æ#’Ž=ˆù„Ø€™ÐûˆùBŸÅLžý™D»c¦ò]0S=˜¯îN˜éÌôœ\næ@Šùu„ùõðf®‡€Yð¨Âüù9YüÛƒYn\'`–¶˜å7w0+à	¬êùµØU°«ÃS±êOÜ°\Zx¬æqvÍ±CØµ}&XíÍ#Xí–Øõ\rXýšOØMœl¬¡°k¼A5.:5þ²‚5EÅbÍ^øcÍscÍÑ]X¿&ì¶ÊNìöØïØäËØ]·z°VK°Ö»†°Ö‰NXëd¬d-Öæ#»¯[ŽÝo†Ý?¬…=`ÁÁ8æ†=è´„=xí:ö`÷mìÁÞ3ØÃy™Xç´:¬3ü1Ö…ûëz_„õÌ\rÅÓ¾Ž=æð{,â\"öø9öø²:Ö§Ž=Æž¨²Æžœ2Çžê´Çúw-b`Câ—±¡ê-Ø0\Z6,€\rÃ´cÏ8&b#œl°½%Øs÷8ØsÐ$lô	ö¢bÇ-À^òÂ^J¸ŽMH3Ä^9¬‹½JrÂ^ËXƒMúmŽM¾ëŠM.ý†M{í½¾ð\Z›Ñ–½1p›Y–ÍécsóK°¹m¯°¹ÌzìmÎUl^änlþ°1ö¿[è-j»ˆ-Âa±÷Ö`ï/aËt>cËÜÍ°åyll9P†­È*Å>(½}¸~[i!ÁV%?Æ>Þ5­W_­‚°ÏÈ!Øç×°Ï³‚°-¦óØ–Ì»ØV|lke<¶­ÑûÒáöeÂKìKðì«Nc,@ohõtzŽcb¡‡R±PŸßXXüf,~‹Ê]ƒEÉwa±/Ë°XKHø‹%ÆÕc‰üXÒâ0–\"ðÅÒÿÄÒ~°t\r,ã~–5¼Ëm5Áò¼j°ü°f,ð	+¼Ÿ‰ðÁŠ>ÎcÅ	_°RM¬ôª\ZVö)+â‚•‹ê±Šðh¬QŽUÞ6Æ*;Ø®Ò9lwÄlwc\'¶g~Ûwàöõ1v€$Å0¦±&öí½0ìÛì»15ìÐØìûsØ‘vä¹\nöã™FìÇÏ=ØQƒ5Ø‰«°_©Ø¯t°ÓÇ*±?×ýÄþÄ+°sÓ³ØßVØE‘5öoÓì¿4uì¿‡bìò‘³Øå!ì\nÀ§R9ˆSÕÚ‚S}”Œ[e3ŽS÷lÀi|JÅ­y=ƒ[{ò-NûËœŽX€[¯g[·€[OHÂé”âô(HÜÆ5Ù¸s†8ý«ßq†N`œqg+ÎDß·EŒÛ¢¯ŠÛŠÅã¶’Öà¶_QÃm¯ãàvcq»…q–o%8«oWqÖ	wqÖb/œ\rŠÛsø8n×n_®>Îq³)îÐÎi;w¸î!Îùi:îˆ^.îÈÞ[¸ã‹é8ï}»qÞÇ÷á|/ã|¹8¿‘ƒ¸“eopþò\\€ö.\\\0*ø„\">Æ	ÃqÁ=wq¡wvãB;2paz@Üi««¸3,\\Ô¦\\t@\'î|Pî|§îüdî‚Ä“¯ÀÅ­nÁ]vÅ]Î[»š®ƒKlvÁ]»ÿ—l¤KNKÂ%ßû…K±ØŽKßx—^—‚KÞ»~ýîÆ`.2†»Y¹	—Ýw—ëïË7µÆåÛÂåGjá\nŸ˜áŠ®ãJ&ºpe¾©¸²;\n\\Å–6Üƒ£TÜƒSûp½Vá*Oãª´}q5öáêV©ãê±½¸\'ãú¸†m\\ca7®ÆÀ52†qÏoÊp-†0\\Ë®\\^÷â×7\\ëÚ^\\›ýQ\\›d\Z÷íëmÅuÞpÃRp€R(Hdá ÇpP‹ý8è«,bæ!Õ?‹C¨Åa–Þá(QÇq”¼“8êQŽ¾×ÇØîcZPpÌ”Fs1ÇÒ[Â±6ÂñÓÞãøÅpüÇN8K=N,]ƒ“(<qÝn!¸n+\\wÒ3\\Ïd\r®÷×(®_á†ë_šÂ½=t÷–<ƒ=ÈÀkãÆdþ¸qv8n|…Ž›è}ˆûr&÷†Æ}‘gà¾>íÁMŸ£â¦o\\Á}»2„›ùÆýTGã~ºGà~F¸ã~æYà~\nîáf-öáf/Uáæ¢p¿p‹&c¸Å}Ë¸Å‡†¸¥?Ïp+Òp>x•2^eÑ¯js¯–û\n¯6¡‚×°ÆkNÂkâÇðk.¥âµ66âµ §ñZó0üº€0üú,¼M!~S×#üætÞÐû(Þèè ÞÈOo¶†Œ7›câ·4ÞÃ›ï”áÍà·nÛˆß*Dá·{Fà·3­ð;4Tð;²eø]Ž_ñ»5CðVâ\n¼¡\nÞ†Ÿ„ß“¸Œ·­5Ä;TUàþÆ;ùXâ]tŽâä|À».çàÝÎ“ñn#½x?ñžžø£óx¯ójx¯IGüñƒx¯8¼ÏñN¼¯Ðb]þ¤ÖAüÉÝFø“ø-ø€õ=ø Ó)|Ðð-|ðþ<|ð]|èí%|˜ª->ìe	þô\røÓagñ§ÉX|‰<óµf>êeþÜ|ô¶\nüâ(þbâN|ÜN>Î5© 	Ÿ°?Ÿ½\ZŸð	+)øË§á¯X|Ç_ñeá“L\\ðÉ‡QøG|†ÀŸE·Äçtæàs¤©ÿ«Æç:­Çç\ràÀWñw\'œðEQMøâ¦|i†þÞÏBü}ý›øòàz|ùÝ|ÅY|ÕŽ/ø*—\n|•k&¾\n†ÆW	ÿàÝ~ƒ¯ž–àkË3ñu^Qø:˜¾®…o¤¼À72Ÿáy–ø§§jðOÃKñOÛ øÖ—›ñmcªø¶Ÿ^ø—¶øÎ	3<À*Üm‡‡ÞâaaÍxD¤ÈÁ#Ú¶âQ‰cxtÉ4ž°\'\rOjWÇ“ÏlÁSUÐxêžP<õ/OÓwÆÓ|âé©-xúJ7žY‹güPâ9vx^À¼ÙŠ÷,ã¥N~x)ÔéžxÙ[^Áçã»2—ñÝNã{vrð=®Ÿñ=c%ø^p1þÍ>w|ñ-ü€›þ-ïþíküàöÛøÁá\Zü°w\'þýê{ø‘Õ?ñ#Åbü\'ÝƒøÏY±øÏ—ðãßñçéø/‡žâ\'S·á§.oÂ]-ÁOÏ–â¿ÀÐÅ¤†ÿQu?“}?Óú¿Pp\Z¿ ±Áÿñ}‚_ŒsÆÿµÍÃÿÅ]Æÿý‰_ùOPybJP}\ZBP3t\'¨+a-Ûs„µ—âk“l	ÚŸ?Ö8AX¿ö!aCÐ=ÿ› ›ÖDÐÍÛBÐ3ôÞi6,ôAÉý™,Â¦Û@Âæü·Ãu±ÃôWÃÜi‚Ñš!‚Ña‚±ù‚1áÁxìÁdE…°Å1˜°¥æ2ÁâV\"aÇêiÂîÌ‚õƒÂžƒž„=•I»O†ûø‚=ªšpÀ@…àpƒApƒ	ß¢´‡S?\\Ýþ÷ò!ÁÝfÁËÆ‡àåÓKðJi\'[È$_s˜p|0‹àsàÁ§f€à;\ZEðëN#œØŸE8uä!¨µ‡læCÝ•BWN›æNçêNÏ¼\'œÙø‡pf®åºH8¯Õ@8[BˆBb­G±ˆ„‹µ<ÂÅº(B¼)!~4˜p	dJ¸«F¸ZSK¸ºKHÞãIH}2EH‹YG¸þ<¡\ZKÈØ^O¸±$#dVœ\'d\"b7¿&d¯9@È~¾ÝfEÈ)8OÈó_CÈL\'Ü1A\nwž&³ÅKxBÉ¥ï„RBé-6áÞ?Âýž9B™ÉKBÙ®BY:¡‚D¨è!T,~$<8ø“P¥jBxt$ˆð8>–P«5K¨ÍßD¨wª\"<{J\"¼((\'´î¦Ú·ÚÜ«.:ƒ	„ŽÏ„W—v\0ƒêÀâQ(&€o	à‹C°ì	À#@>dà?-è_Ö< €Ÿ›\'SþˆíMòösÊj=ížãE`®Ë%°Êk	ì‡šŽú g×Gàã¶„ÖC!K› ~ƒ%H«ï¤½û	2OB×ÃÛ„n+¡s†ÐãÂ!ô®…zO&zS>ÞL~%ô¯ùH¬M%¼{•JÚDªýFVÞ/‹	}“	¯IŸÖ<&|\nR\'|®ñ\"Œ\'¨&»ûSw	SÌ­„©®W„iÏ_„ïÑ„ïwæR\n	ó\rÞ„« Â¢Æ_Â_³K„¿iz„ÿºØ„åÜß„•¥)âªkAÄU%Ç‰kôŠ‰kô_µDp¢vc\rqý^=â‹hâ®qÃT\nQ7{€¨~ˆ¸±TN4Hb\ržV7ú\r¯x\ZoˆÆžµDs;¢™Û¢ÙÍ1¢ÙŠ¸µê\ZqûšâöSsDË<9Ñ{›hÕjJ´öS!Úxo#îÍ&î-_O´Þ&ÚÙ#‰všD»†&â¾OáDû½ŽDû©âŸ3Ä³‰W›~K%:É$:ÆëºWˆÎ“»‰n¾·‰názD·6ÑózÑ[œè]áJô†[}qÁÄSIÄ\0ÛwÄ\0øZbàX%1¨Ü‹ÄýN‰ï †ôl!†žŽ#†^Ö#Fª}\'FAöcÚˆ1ÓÄ‹®ºÄø$âå¤+Ä+ë…Äk€%b’m:1‰$¦<G¯Ã®3i­Ä›/]ˆ·p¯‰ÙîÏ‰9ÉÍÄœº?Ä\\“‹ÄÜ>âmÍ¿ÄÛ{ÑÄ‚kêÄ»vFÄbËÄRß6bivñÞD6ñÞ7ñá†)âC‹UÄ‡Þ6ÄGÄ:ôb]ÿ6býþGÄúã\'ˆõÍ¡Äzé$ñÉ\'âÓ+ÄgîgˆÏ\n¡ÄgMë‰M&pbÓ[b“ÏbÓï½Ä÷<ˆ/Z#‰/¯©ÛëŽÛ{Òˆ.³ÄôEâ«ì³Dõ2\"ºB„	‰PÞk\"ìÄF\"<èùAÄMkñ·´ˆDÝoD2p7‘üÎ‚ÈØfMd1‰Ìƒ7ˆLç.\"óå3\"³w’ÈÒ¼BdA	DV÷n\"gú‘Û¯IäþúE–XÅÓo‰’\rD©ç=¢´·ž(ËÓ&Ê×»’çˆ]Ü^b7=ˆØÛ=Mì£È‰¯áXâ[s7â;“gÄwADâ»¤Zâ;É(q\\B¾‘G|__O¹Lü@¿Düü!–øyf#qÌ§ž8ÙâNœzu‹ø•¼“8M¹Lü¶Y@ü¾Ð@œ9MœéK&þ÷ÿ$ÎÕl%Îoô\".ÜÌ$.üûJü3<H\\<VG\\d´ÿnýIü[FüÛ²ŸøïG\ZñßoMâr›¤Å“TâHj\Zú$µW9$u•õ$õ\'Þ$>)I£?’¤i]HÒfì é3H:ŒIë_%m0.\"mHº?<HÍþ6&î!mš¢’6òH†µOH†BG’Q”dbgO2ÁÞ%™>¼@2Åì!™E®&mÉÏ$™{Y“ÌÃ¯,n–‘¶t‘v?ºH²4í#YéÜ!YÑ…$kó{$›Þ^Òþq*Éqú éP\0št˜®E:¬ø@r¾…&¹l>Fr1õ#yT“<@kI>«}H>¿E$ŸÅ\"’ï±l’ïøk’ß-$¿¤SëÖ“N…ZÎƒIàvRpÅ/Rhx\n)´Ä™Ú3@\nC’NûÏ‘\"6:\"\"ÕHg½IçõŽÎƒ_‘.ÌKI1GÏ“bžÓI±õ`Rt\')þA:)ÜDJ(¾DJ #]±÷!]]ŸCJŒJ!]{FJÊ™%eD˜’23\rIYHY<I·*³HÙŽ\nRÎD\n)—äEºíUIÊÓÝK*Ró#•D“J¶‘J–žîï;E*ó8Cª8ó›T¹Ù‚TÉ#Uõ›•-jTIµS§I\rí-¤Æ·÷IO[–HÍæ<Ò‹o2R«hŽÔf­Kj³¿Ejß`Nj7ºDjßGjÛ“:´O“:ÞÆ:†ï‘^¹i’^ýê\'u6>\'u¾°!LŒH€V%	øá>	|‹Og«‘À¯·“ ŸgIÐÿ{	{ƒ$Á¼#!³$äu7*.š„¶M%¡Ï·“ÐóOHx½Lþj ‰ˆ(\'‘~z“ÈÆ–$rÈõ‚\r‰¶q‰YåHb]‡’8WIœ7&$žÁ@âë,“øÛI‚«oHÂf$I´ê/I\\qŒ$ÜE’©úä	I!ÿBR^0$)™¶$åÀmRINêÞöÔóšMêY#\r¥Ú“†Øµ¤¡Þ0ÒûžO¤`1éãèGÒ§ŒÒøªó¤ñþ\nÒ—»i¤¯Û¾’¾4HßúŒHß7óI?·ß\"ýêÜKš+<Cšëÿ@šßOZXÝMZÈê\'-@ú·Ç´|0ƒ¬&«t+È«íÉ«‹Ž“Wÿœ&«Eë’ÕÃž“Õ¿Y‘5ÔN’54´ÉZÃOÉZ¿gÉk\0È:f~dVòú³®ä\ryÈºšt²þ½-d/ySÞ Ù¨ÅlDâ’³É&!ÏÈ&“ždS^\0ÙôÝ:²YVÙ<ç\nyëfò¶8còvÙGòµ\"òÎásäÝ÷È–§.‘-‹ÊÉV9²!…lM¼B¶–U‘­ÿ@È6‘wÉ{aåd[\rÙnÛ*²-™l×!#ï×™%ïç™íßÉEAäƒ‡Þ“^\";ît&;*ÈGJ×“ÝÖÎ’Ý†uÈî7Àä£CGÈG¨’Ý9Nö†›“½ÆdßšçäVx²À)r h59ðÓMr“„³\"õe’ƒO:ƒ‰yä˜9Ô¥’vªîpŠ|:Ð‡|úþZòizùŒ±	ùì‰µä¨Éç.§“Ïÿ!_(‘cþ™ãò^’ã‡ÓÉ—Xä+Øò•Ïä«¥tòÕçKäk·UÉÉ·~‘“+Þ“SôšÈ©flrúzrº+9ÝW“œ>òœþÅ‡|½*ƒ|ýQ79ãj/9ƒìK¾Ð!gÆ_#g>„’ož½KÎþw›œó¨œœ°@Î­}AÎ;ÜNÎ£ä‘ó=$ß½jC.,É&V-äÂ÷\"rÑÅyrWJ.ÞÓN.Ý­G.\r¼A¾o{‡\\æ:E._çN./X!?\0= ?¬1!Wöß!W{ÃÈÕéäÇ÷É5¿^kµ‘ë®áÈõD¹žD~Z2K~&R#7 È/|[u†È­gÉmºWÉm·òÉmÓä—î]ävCrÇ:ùÕy4Ø–@Õ\\$C”D2d€@†ÆÓÈÐ10¦ú‰Œh½HÆVµ“qoÉä;2qŸ=™TÐD&#^‘)&Éôö82&3x¶dvû;2çˆ5™óõY°E—,<˜,,‹\"‹cÈbïÍd‰æYrÿYz3€,‹V!ËÉZä®±Jr)Üü›üH&”f‘ß‘JÈC~EäïäQ³,òg×»ä/‰Ýä/CÁäÉò”³ù«×sò{`òæ\nò3ä­ëÉ?È?6¢®“m\"ÿ\\l!Ï~úBž<DþE^Z“N^zx€üwQAQÕQ§¬Ò9LYµa‰²êš²ÚKQÛ€¦h¼Ÿ¥hüdR4÷ß¡hÒ‰”5R2eÍ#-ÕZŠ–Ôž¢ûª‰¢÷’NÑùC1hÌ£@ßR\"(›´S6CöR6c)›gŽRŒ¯|¡˜¸o¦˜L0)¦u)¦ì(¦òg3½!ŠÅe[ÀmÊn/#Š¥OÅ²\nF±ÞA±vò¤XWGPléRlÐ”}z(ûn(ûa”ý¡G(öf”Þç(ˆG)A)Žæ$Ê¡/)‡ ±0åHógÊJ)Å­4ˆâÞð‡â¹;ˆâåïEñ:—M9¶³r¼%ƒâGÓ£œ,âP¤0JÀû½”Ð?O)aM”3”È“µ”³¡­”ó«R)±Q.”8•û”8F%!N“’0žrYc†rÙO¹ü ƒr¹\'…råhåJÌÊU7kÊÕÎlÊUøJbá(%±HIæ·RR>úQÒÌïPÒ*¶PÒ8”ô7JÆYJÆ“\0JÆÐvJ¦o\'%óŽ’)½L¹Éï¢Üêœ¦ä…’(yÏT)w>q)c”»7Qî>ÝF¹;ÐH)Œ{L)2Ð ð£”x(÷m](÷¿ØQÊAJ¥k5¥Zý6¥Ú|ŽòX/ŽòI©ë‹ Ô)\rö[)O;)Ïâ])MÆé”&¯fJò$åùÁÊó\\<åùýiJ³&ŠÒ¢SAy!²§´é0(/Š(Ž/(àuYpý LM¥@¶ÆS —Õ)°ö}~%€‚¨k£ Ö}§ â·P0Ng)ØLË@Rð%ç)„\na;B²ÙJ!k ÷fP¨[7PhÅ-†Õ\n{å\r…»ÍŸÂM«¦pß7Rxû‡(¼¤{Á•QŠ`é0Et¹\"m?I‘þ¾D‘yRä=0JÏÅ6J¯ç¥7÷0¥—Oy]’A8~Œ2´Dø ¼¢PÞý¤¼ËfSÞÀ(#g²)#7ó)ö9PFÏ¥|¾±…òYlJ_u–21bKù²L¢LuÞ§L¢(Óv¶”éÃ8Ê÷ZÊwÊcÊÏMu”ŸÞå”Ù”,Êü1cÊBÇÊïôJÊâU=ÊR‡1eÅJYùRAUë?IÕl‰¤jNRµ¢V¨Z}0êZs	U;Ã•ª3ºŸºáa;U÷àU÷Á\nUïƒU?Ï„j°!‹j\0ØB5Xj¦n^mF5\"êQ×RMŒ©fËéÔ-}©æŠ·T‹/›¨Û¶¤P·¹]£îÌ]KÝåt›jéŸGµLÎ¥ZÙP­µ©ÖQmÔ=%áÔ½Ÿ-©v+ÁT{÷\Zª=àÕžE¤ÈÙI=ðxŒz )zp¡‹z(e˜ê$þJuC©nÁÁT·Ð.ªû‘ST÷À1ª»Àê¢z–&Q½R/P½P}2iTŸªïa{ªß:ÕïÇzêÉ=óÔS§+©§ÔàèUÔ¨>õLòjT†zîcõÜujôiCj4žD¦Sc~¥S/n\\G½˜ÐI/Ð¥ÆW|¢Æ/ð¨	zSÔÄòpjÒŸcÔä“O¨Éü$jº¡z}×{jft3õæû‡Ô[«‡©·Žþ¡æÚn¤æŽPsùw©¹C«¨·B¨yá~Ô¼K¨ù¼Ô|EõŽûIjÓµ\0ñ†z÷Æ$õnþcj	džZºË”Z¶é,µìê-j™²‹Z6ü‰Z~É„ZñH}pÝ“úàÁCêÃ‹Ô*ÃUÔ*Àgj÷µæÕµÖ¼–úô‚\rµ©öõ9Ä€Ú|¥ŒÚ¢-£¶|âQ;7­¢NQ!FUT¨ÑI*ô…œ\nËK¦\"ª¼¨ÈûóTÔ_*Žó˜Jd¥’|{©äÅN*5ºJû¾™Ê,q òaÃT1JD•8•P¥ô¨Òº»TéìjªŒ„¥Ê¦ÖP»ê˜Ôn¢µ[~žÚ–OíA…R_Ã®Rß¤ØRû¿¾¤”USšQßfûQ?l+¦~ÌL§~ÞOÕùJý´6‚úéàWêX5:îÒKð§NR¦¨“oƒ©“Ÿ(Ôoˆ*ê7Î	ê÷ÉêJu¦ŸBýµùuùR:u¥lš¦{@SÕ1 ©~‘ÐVí¯ ­zPISóè ix=¤iö£­ñ\n£­yÌ¥ií.¥i¶£i¯&Ñ´·iÚÿ’iëÌiºva4ƒïÓ´M¬šÑi!Í(î!Íè&f\ZC ™ÊÓÌJ7Ó¶hShAc4‹¦(škš¶õÔ3ÚVLmûú´í3_h;}¶ÑvÒ,›,h–ýJšåDÍªù<Í\nSA³þLÛ#ÚJ³U}K³Í Ù]zL³+FÓö­w í{×JÛ©vàÍÁv˜æÐ\\Jsì B{ÑœÀi.üÚ‘ò‹4×S4WÄ$Íõë[šÛ=2Í=>˜æ^ýæ^¯Kó¨cÓ¼Ž^¢WzÐ|ôÑ|É´“ÛÒ\"h\rž´ ŸJZ0h=-X|’v‘H»v”>¤¹ûŠi­ E–wÒ\"9LÚùÚy[ZÌk*-Ö4‡ûü9-þüí’Q íêBíÚ¾\r´kcdZÒ,-)…LK‰ßBKMÉ¢¥¥ÙÑÒ«/Ð®_˜¥Ý iY‘´›#$ÚÍ9´[¤c´¼‰´<ç ÚØHZá!­Tø‚VúF»ß`@+“—ÑÊ7Chå,CZEê\ZÚƒ5{h5Ó*-fh5É=´\Zá­Öý­þú0íÉÙ%ZƒY5­á¶=í©·í™ÖEZÓª/´¦#Ú´çá½´æÄ|ZsœöÂPN{a¾‰öb·­UPA{éöƒÖañŒÖ¦½RýC{Eq§½šj¦Öo¦OÒ@EWh1\ZôÇA\Z:Oƒï§Á¿yÐC@\Z²ˆOÃNuÑp4rùn\Zõ½?z‡FÃ6Ðè%L\Z#J—ÆÜûžÆôþ?†\rÑ˜J\Z«tÆÂ­§±·ü/¯ŸÆ‰‹£qh\\Þqš°JÑÄk„4ÙÁšŒ„¡ÉE4EY\Z­Ë=‰ÖÕ5LëÊ¦u7m£u/®Ðzki}ÆÞ´>çk´>o­/Ox5Cô‰¡\rÞºA{—XE{\'\'Ó†L{hÃ¥´÷«Á´èÚN,íjš6ÁCÓ¦Ì¹´o{X´o9»i?^¤Í¼¶¢ý$ÔÓf\rúi³¥á´YìIÚÜÆ>Úª—ö\'©ö7•Cû+]C[I¤­<,¢«ô9ÓWIûè«u:éšƒék¬@t­í7è:vÒ×/QéD	ô\r=éº±³tÝÛ;é=ÿÐ7&LÑõs\\é;çèsëè›ú=é†™[é†ÏÖÑ‹èÆ9ýtÓYCú¾Ý\nHß!ÿKß1ó¾ÓI·ñ¼K·[Ñ÷îK ï¦Ð÷‚\0ô½¿îÓm½ké¶Úô}ŒMôýçÑ÷Ï¸Ðí2èö18ºýý}t{l.ý€ãqºÃ„\ZÝ±m‰~H´Hw2_¡;=}K?œ€î¢QB?²cÝ•3IwýWGw{¦{˜[Ó=õŽÑ½^NÒ}jEt?0ýDS=7NüC‚Áèa”dzøèezø‚.=ü¯\rýL¢-=â¤=bù=²Ëù«µSA?§öŒkH½ÓL¿XÉ¦Ç¹A·9O§¯Ðã§NÑh>ô„ÁÇôË<ý\Z‰EOJøKO*\r¢§íl g˜ñè\'Áô=³ô›¯vÓo¹Þ£ß‚ûÓo1ªé·~aéÙ€;ôœOÉôÛ¼ô¼Áô<x=ÿ”\rýNö\'zAm8ý®î4ý®û}z¡Ù]za½°ñ3½ø„\'½´•D/…zÑïïR£—ó¡ôŠ\0MzÅœ½jG½Z¨C¯~¿Hl¡×½( ×½dÓë†9ôzç?ôÆgéï·ÓŸIåô&GzS*½	VFo¢÷ÒŸ=£?Ÿ~JoŽn¤7§zÒ[š?Ñ[ ©ôVƒíô¶ý¥¿=½Ý÷/½ýÛ8½£w™þÊ4‰þÊÖŸþÊ#“þ*f;½Óh3½³I“@ÆÑotéÀ7Qt†D‡ÆŒÐ¡B0:nE‡iÓá	UtäÎf:òç{:ÊKÇD|¢c*úèØ:%÷GÇ`éø–tÂ“·tâ•x:iG>fB§©iÐ™ÛèL–ŒÎJûEgÞÓ9tW:ßMBçç}¦ó›Atáé·tqÈgº˜º.9r†.½§K§Séò›Ùte·½ë4‘ÞË Ðû6GÒ_G¾¦¿‡Ñû\rëèƒ¬é#?éã:.ô‰Ý“ô‰®ô/ùú‹>õw/}úÊCúwwoúÃô™šhúLþs?˜þë‰’>ïñ>S…>_FŸo=Oÿý¬‡¾ä£ÿK²¤/sìéËoÆè+˜WÕCŒUÅÍµdc†ºÉS†z\\C=ý\ZCýæC«pC«ÿ6CëŠ¡³ËX†36ìúÍØ\0qbèþÐelL^bl„~`ègk2BŒÍåŒÍ=†¡Ú\nÃÐèÃð¥ÃÚÎ0=šÌ°8àÍØ:z”±­T…±½4—±³0™±«í\"ÃêM	ÃZ‡É°>dÉ°ä3ö~dØöç0ì‚…ŒƒOYÇuŽýAŒÃ‚-ç#OÎƒÎEC×_†kaÃ}ßu†û„áqcÃ£i‚qtg2ÃëCãX¥ãXŒq¼#ƒá+\\ÅðóÅ2NÊ\'ƒ!ŒS5wþFŒ€ÂjF ýOFð¡FˆŽ*îd„›ó§×ýdœ3\"\"Ÿ0\"^Œ³ÿ(Œ(ŽqnÕGÆ¹ôÆùÝ1ê³ŒØ­¿=-qVƒŒK¿T	¹Œ¤ÂmŒŒ]FFx #ƒÉaÜ(B2n|bÜ*qfäm~ÄÈeä/Å3îþaÅ<g” /1J‹º÷œK÷7Ù1îçq÷ñ:Œ2@!£ÜBƒQ¡1È¨$ô3jnìfÔý 3êëÀŒú÷îŒ\'u»\rµM…ÍºŒ6Ç/ŒWmÆ«{û€—å\0lž^»…¾lÃ€¨ob@Þ˜0 ÷°+VDå6ÇÀÇ0péSÂ›bN1ƒôð\'ƒºÞŽAo¨eÐŸe0FÃœ³Ú®Z3ƒ·Ñ–!ðîbˆÎå2DW¯2$ÏO3¤ï0äay.Ÿ!Ÿ¹ÆP4Š]EŒnH8£GSŸÑÓ›Íx½9˜ñfO%ãì:c°$€1Hg}ûÌx¯µ•ñþ¥„1’ïË{ú‡1á½šñ…nËøÂ+`|:Ì˜ÒúÄøÚœÎøVÞÌ˜Å1æ0wW;‹‡Œ¥œaÆß€4ÆòÏ|Æòïl¦\nÊ\\ÅòfªëüaªßÛÂÔÈRg®•%1µQw˜Ì«™?$1\rO™›z1÷v2[™ÆKÚL3ËN¦y¬s[‘ˆ¹ƒæÇÜYÜÈ´l 1­JW˜6Õw˜{&‹˜¼62ß_f¾üˆy8Êtþù—éÒjÍtA˜.K®Ì#³½L×–³L7»\Z¦{€%Óýƒ7ÓýÛ:æñëÑÌãùiLo\'\r¦G!ÓéÁôyý‹ég\0fž0=Ç<{—yÒŠÅô7ieú‡½aúç¤2Ê&˜z[™æ÷™A-$f¨\r–yºæó4÷óÌÄf €ÙÐÍ¼Pf^À˜±[n3¯¬=À¼šÏe^}²y¼ÈL²ve&I˜ÉQYÌÔ÷>ÌÔ17fê„3íB;3ÝÃ‚y£è3“”ÊÌ\"|gÞÚÊ¼5t™ÍÊdfOlcæ¨ç0o0óÏ0ó MÌ;²qfÁ‰ÍÌ‚ªXfax ³ð5Y4c×ì`÷1K_~f–Åíf–I¾1Ë	îÌŠW™¢æƒê»ÌGŽÏ˜^²™Õ˜,æã±Ì\'ïÉÌg­-Ì¦[ÃÌçŸ®2›k˜/F2˜­å×™í{_2Û+O0ÛçÖ2_nb‚:ß0ÁúLè¹L˜)š	?ûˆ‰ê<ÂD_²c’Ìì™¤íºLRŽ3“È¤~ÿÄd=f3ÙN1…[™\"Ÿ›LQá]¦¨_ƒ)^eJÆ˜LYÎ.¦üSSá^ÏìÒ?Éìº¬ÊìJ)avG0{ÃÅÌ×Û!Ì×µ_˜oRt˜ý­ÚÌÁÈæàëcÌwXæp’sø¡säßæõØÿ%2?\Z3ÇtW˜cN½Ì±·Ì‰!óKp(óKøæä&>sÒ,ž9ÙNg~E®eNG€˜ÓŸ˜ßÔB™ßÎ0g´™3ßO0ç`=Ì…ÕuÌ…Z/æÂË&æ_ÂærØ<s%|„¥2‘ÁZUmÃZõ6ƒµ:OÀZ¶d©Ÿb±4XU,Mæ)Öš·XkúµXÚkD¬u•­¬õ×î°Ö—ÂYë_t³6»²toßaéþ(féiå±6ªº°ôq%,¿¬Í‡É,ã÷Î,“²8–éÇ=,³.Ö–Ï–ùd<ËB-‘µ5çkë‡\"Övæ[Ö\rGÖNá4k÷áó,«–UZ4ËŠ«Í²ymÀÚ“Î²½È²…V°ì’Xví9¬}ïkXöÿX¶L²Wí`9Z˜°ÍÀYNo6°ï×d9ësY.)¿X.MB–‡Â’åµöËëÝ*–×ûÖ±âj–ohË·8‰åd²N®°Nî<Ê:õü/ëè+à)Œè“Á\nhf&­°BÚ”¬Ð¦+¬PI+¬L“&´dvÏcE$ê²\"`Y¬s§úYÑ‹ö¬óö³.L­fÅ„àY1ü¬Øu÷XqG‡YW.}e%\Z²’µUþ7ÆJ¶Hf¥–‘XiþlVzóGV:Ç•u½<‹•Q´Ìºqð+3WÌÊzy™•õ&•5·ÄºuFu+ƒÊÊn\0²²1%¬œóæ¬\\óIV®ì%ëöv<+¿^“UðÈºës‰UíÌ*\\~Ç*ziÃ*¾±Àºw4Œu¿ñ«ŒçÂ*Wc•?üÌ*o³b=ˆ/d=È¼ÍzøÙ‚UIA²ªlX[ÒXµýþ¬zùVÃ[]ÖÓsGXÏTmYÏ\rÔXÏ·ë±ž£¬6%ÖKKwÖKÂ«½z™õ*¡ÕišÄê\\¶c^f×(X`óv„Ï‚n° élx…ºÏ‚Î²`\rr8…²Òc¡\ZÚY˜Ç‹,Ì†…mÎÂ=´e‘–ž²ÈYd‹¶ã+‹yZÂb™F³ØA·ùK¸¾‡%Ü›Èc‰§YŒKZÌ’¶;±d	,ÅêY–Ò(˜Õ%qg½þ¾Èz³[ƒÕßêÌ\ZÀaYƒƒ¿XC÷Xïwé°>n5e}>cn‘³F½-XŸF6²Æ~¸³Æù¬	”kBÆe}aœdMöN±¦°BÖ7y.ë;ø\'ëç¿BÖ¯¥O¬¹ÉÖüí¬ùkQm\'ëŸÆSÖ¿“«Y+ÒY¶jèO¶ºš’­±w+[#Éž­iô­YSÈÖÚÀÖºIek=ck§±u6*Ù:M¶ÞÁël½–IöÆ°vö&¤ÛÐÔ˜m(­a…;²Í(Il³I8{Ë­¯ìíÏÙÛ§î³wbw°w¹Œ³wá²w¿e[†²-Ø6¡Ø6gÙ6¸‹ì½*þl[2Û.Ú—½/ù%ûàÓ¶£æy¶cYÛ‘½Žíä¿‹}øS\rÛ¥„Ïv£Üe½&fqdûä–°ýœRÙ~Ùì*\Zì¿Ù\'ï°Oé¸°ý_°ýh³\"±c²I;ØÁjLvð¡:vðÓìµ†ì›Nì°Ivø§yöés›Øg\\¬Ùgæ2ØyJvÄ³+ìÁvöÙ9	û‚Þ1ö70;f´ëËNd^b_Koe_{Îg_û³Št‘ÃN¾¸ƒ2ôŒjø†úLÄN]xÈNKªe§½:Ç¾!agÜìaßzcgû“Ø9ëôØ9ºoÙ·¯,²ó\r‹Ùùòtö+¦ìÂç®ìâ»¤Í¾‡ÝÃ¾Ÿe—…²«¿*Øù>ìÚ¿ŸÙõ@»ž·]¯øÂn(õc7Ü¯a7æ<`?M²f?%ý§<ÙÏ2äì¦ã<vÓD.ûy²\r»9%ÝüÆýâÙö‹¿ÝìÖ°Ëì¶Wþìö¸v{	ŠÝÎZawÄ\\ew4ìawô¾bªþ²]îlàH0‹bÃ¾SØp€ý!“‰ö`c†¿±ñ;^²‰;­ÙÄë^l’w\n›”Ë&•²ÉWæØÔaC6­Á†MkúË¦ê±Yðq6ûj\'›ø–ÍCóÙ|Ÿp¶Àö[€ña‹Î½`Ë=.±å¯ŠØJ=v¶ÝèÍ~ãÊ\\ýšýî‹{(ä>{Ø>Ÿ=\\/a¿OÍb¿/¨a„ª±?ÜúÂý§Æþ|u€=i5ÌþúAÊž¾ßÇþ–ÕÉþa²Âžñ{ÃþYžÌžuÙÈž‹yÅž+>Íþí“Âþý¤ý{ÖœýçIûÏôö¢Úvö\"Þƒ½4Êþçˆc//¼ã¨ìrTídÕ#8ªè|Ž*Aƒ³Ê¹³j–ÏYí¼–³\ZàÆQûº£Y»š£òŽ£uõ,g­úgm¾1gíÏQŽ¶êjÎ:[>g]zgÝË4Î”	gÅÙ0®ÃÑµTåè¾çè~ýÂÑË;ÍÙ¨ÞÊÙhŸÍÑÿ¸Ì1x+åòS9ÆÎpŽÉ§×ÓÇqsÏ]óã«8JŽÅyg»Jg»™g»§gg¢;g\'y€³“Šçì^£ËÙýÍ±¬éæX%ÜâX¿ûÃ±ž˜çìÉdsövéqöuþáØgò9mÑàÎÁ©%Ž#bÇ‘±™sØ£œs8ÿç0ŒÍq¦Üçùò–ã®#çxXnãx¦@9ž•¿8G8p¼6r¼ÎÿâxµpŽí5åx9>Ãž_i\0Çô—ãÿÃ	ø©Ï	lûÊ	rà}_á_pâ„V˜sÂ“œpÃ`Îé„6NDŠ?\'òI0ç¬ÕÎÙÃk9gëq¢Èÿ8ç®C9ÑV/8Ñnsœhxç‚Î_Î¢Œw:‹—íÁ‰Ur.©Ýã\\:ëÇ¹t#‹s©Ï–“pjŒ“\05ã\\­ÆrÒÌÕ9iå¹œë—ê97š[8™fœÌ;ß9™@ÎM¸‚sSDçÜz¬ÊÉá19¹®œ\\6’“—¸‰sg‚S47È)Q—sJ·frJwúsJ™‰œÒîœûGwqÊ›_r*âæ9bçaà\rÎÃØ^N6”S%3åT·xrªaO9O¸=œ†õœßËœ†•zÎSÿ!Î³•œ¦t/NX“Ó¢SÏiÙ¢ä´XÚq^Úùp^²M8íOZ9}Î«_¥œN•@ 9\0Ñ0ÝÁ¦­ç€Ötqà«—8ˆ]	dZ(õ´ˆƒ3½ÌÁER8É^áÝ)Ò˜CÊÖãÐN\Zsè9%†Ã´:Íá¨s8œ_8\\wï”#¨uã¦¡×Žð†	GÔ­É‘¦r8²›`ŽLp‘£<ßÀé)ìâ¼†Mr6[qìŸp29ƒÅÎœ¡UUœÑ+žœÑ¬aÎ\'ãÎçXÎØ×@Î¸ø#gbëÎdéfÎW‰„3­&çLoýÎ™~VÄùó3ÓEãüjæÌ.äÌ·sæ®­á,˜P8‡\0œ®G8Ëüœ·_\\ã@®Š3WšÍUçÏr5¦_sµ^ìåj‡§s×}Iæn(@sõ«r7=Ká\ZÇésM^rÍtîs·è¤rÍ]ê¸Çœ¹>•Üí*ýÜíNr·ßàîØÅÝqù\nwwôe®Õ;®dˆk_àÚˆœ¹{€Ç¹{+G¸Vc¸úÃ¸Ju®Ó™zîáÉa®ëú®ko×u0…ëYQÌ=ör/÷x\'‡ëcÿë“ºÌõ{°‡ë‡Måžàpý•Ü T87øònØÎinX7ÅÀþãFuqÏãË¸ì£¹1«µ¹1a§¸1éÁÜX“ûs„{Q?Š{±À½ÌåÆË¾r/Y¾ä^ÊÏá&DqRÍ¹	w¸	¤îå#îåL6÷ÊA7é›rg57–ÌMÝá¦&1¸iåÜ´•Zn:ÀÍø¿f7b¶r3ÉÇ¸™ÊTnÖ,7k‚Ë½iWÊ½¥6Ç½õÿ)û¶7g-››ŸÌ-„‘¹Ev£Üâ#Tn©c	÷~3‡[™³›[ù¼”[ÉHçVG8pß¦rëFU¹\r>¦Ü†€ÜæNîóµ/¸ÍÂ¹Í£G¹-ñw¸­¿¹mk;¹/ÇxÜ®‚H\'pÍ\\àé\'\\àkS.(—ÉÉ\\¹ÀD.$m5Â»Í…­äB}C¹°¸M\\XU+†•rÕç¸ˆ>g.òB3)ÙÏEIŽsÑ\n8»ó— ìç#R¹$¿$.ùE<—âóŽK»”Áe±U¹¬ï$.ûó5.÷ï.o×s.ïu\n—?ßÂœåq…¯¹¢n®è¯W–ñš+ëõàv\'¸]\'nu·Çí·ÏÐœÛ—XÁ}mßÍ}¥Çí¿‡åöKÂ¸˜~îÛÔDî !ûNº…;ì1ÉüÌÙ¸™;r	ÉýpxŒû©pûé×#îç£Üñ\rîxÉsîÛXîWµîÄ=ÜãýÜ¿`Ü™{öÜù]?¸ë´¸—Ë¸ÆWqßà.-pÿ®ûÃý»-€»üÛˆ§NþÎÓØCáiÝŠçi×ñÖºèðÖ¦Pyk¯{ðÖ¥ðtÖò6lòæm8nÍÓµ›åéK~ðÐ‡xFf<“ŸHž©}ÏÌAÊ3_÷gncÊ³ÀáYŒ¸ñ¶×\Zóvt\rñvÎ¼àíÞÎ³\ZÆð¬&Îòl*Êx{5sxvÀ¼}É!<û5|žýÎTÞfï@_ïÀç.žC«#ï Ã;Röw„šÉs­íà¹ânñÜ?Ôð<Ç<xGOçe$ñ¼ó¼’ry^ðažšÂóšÑâù¼bòNXHx\'2!<ÿ×xþqv¼\0…9/Hã/¨ŒËI‡ñBG‰¼ðºµ¼p	ït¼€w:=”ÑàÂ‹\\gÊ‹¬Xà}ÀâÅ¶kð.n;Ê‹³¼ÂK0Yä% ¼y	?By—_ÿâ]þÂKåó’té¼ä5‡y×ßhñnæýäÝš§ð²£{yÙõf¼\\á6Þí»ëx·ãyù_Nð\n²<yS¼»1“¼BS8¯È€Ì+úšÊ»W\'äUDÙð*Îwð¦|çUŽ»ò©\"xÕ÷x5OCx5+¼ÿ1^o\rï¹e¯¥3“×2‹×vl„×†xÅ{ùæ6¯¸ÈkcÁk;Ëëøx€×1{ˆŠJàÁÂjx°Iõ¯’‡iÕæa&by˜&OÐâá{<bÇSqÃ#uiò(fOx”…ï<êlõœG+‡óh¤$ãÂhæ1$yLëYËÓƒÇš¶àqvëð¸%©<î×ƒ<¾iOXÉ*ñ<Q9Ž×uø7¯·ŠÌëS=Ç{íjÏ{¾‰×Óá½uæòg§yƒÿ¬xC¯öð†wêóFœ¶ðFpÞg“\\Þ„I;oÒý=o*°‡÷Õö/ï+7#oçýê)åÍ>ëãÍë\\åÍ7wð~Gðþ¼}Â[òÀó–¹ñU7òU¿jóWªóWg×òWƒ®òW#‡ø\ZÏoò5Ã\'økR¾òµCøëîèð×;üæëEÏð\r²³ø´+|ãS|Ó7i|Ó_5|³ÉÍü-÷žðÍs›ø[WWð·ÎÞâo[\'äoó\râïôúÌßÍ¸Î·0ùVÞ?øÖ—=ù{ª|Û¿ùû_´ðí}mùüƒŠc|Çzß¾ƒïlªÁwvóƒù.Cæü#ï’ø®M,¾+Èwýý‚ïþÌˆïñ¼‹ï©ú™Ôí\ZÿxHÿxÝ+¾|ŒJí\r? à3?0ÍŽÈ óƒÓ£ù¡~öüˆ‡RþÙSïøÑç¶ó£GNóÏÓÞð/HVóc_uðã0~|è?~a#ÿRã!þ•ô^~bE:?¥œÉOûÌäg(>òo|àgz´óoš=äßj.äg_:ÍÏÎ6ãg?Ëäg“ôø9›ø·í>ðo“.ñór¼ù–ü»™ªü»c~ü¢^ü{æ¾üûºø‹îü‡ü‡Ãþ£uþ#›_jÈìÕÁ¯¹œÇ¯ðk·ñk›}ù\rW±üFC¿qÆšß$?Ï~â\"¿eÊƒß¾i+¿#ÀßYÅ5ó!c?øÐä6>,ö6Kä#ŒI|ÔÍ|œÈ‹OØkÂ\'PÞò	3Ý|â“>9cŸ¼\"çÓŸðéÚøôõt>=ç*ŸÞÀgv]æs‚&ù\\ìF>—>Äç\rçò\r£|Qv7_|x˜/Ùp’/ÉñáËÄ\0¾l´Ÿ¯ØÅWˆ\nøÊIu~oªˆßW@æ¿v›á÷{¨ñó›ùƒó`þð0Ÿÿ~÷Fþ?1ÿÃãþ¨&ô³\ZÿÓöþg•4þç%ü1•ü±Ûøc=Åü‰û¯ø_ÖŸà­ìã3Šà§NñgŸçÏ!îòV]åÿ‰8Ì_rðÿjUóÿ†õñÿ­à/›\"ø+ªzü•×*ì&ê†/Õ™(ÁªÍµuºµËEäFC°Æå¡@Ë³U î%Ðzä.ÐúxP ôN°Îù@ç·T°¡÷ƒ@—h.ÐýÂèÁôú ½‚Í\Zax«ÀˆÓ(01ß*0YÈ˜Ì	vÚév]ìz,Ø}…%°§,ß›\n¬96»l{6l÷­Ø}&°«\ZìwNØ;¨Œ8¸L	2Þð_NIkn?<µÛ*8ºtNà¥3+8–Z-8Ö÷Epl¸Xà½\r-ð¾vPàýnIàý+Dàã:/ðÝ=*8üWà¿ñ¦ ðj³ l„ òÛfA4U\"8??!¸`fû¿*Á…Í‚˜5ß1[	.>¹!ˆÃ“ñùÇ—ºñ‚ÄìlAÒY” 9ÀQt¤|W\nÒ£M×Q§×‡Ü×\'à‚Œ\Z5Á\r‹HÁ¸6AÖÓï‚[ˆ=‚œu¿9]AÎØeA®p ÷í’àvðyAÞi© `Ã:AÁÎÁÝñã‚»j‚BÕAñ¡Ÿ‚×Ó‚®¶ tw¯ 4Y ¸÷$Vp?–,(3Ô”¡ÖÊuŽª/ë•\Z	²ï‚g‡þ	šü	š-ç2-õgí¢AÇ©»‚WS»þW€¾tÈj·\0RµC\0ÁÞ@ƒ£¨\'·¨g‘ôe}Z(à²N	ðëÃ„¬€PÞ! Òjåñ €~ËGÀ(\n˜¨T‹S(`CN\nø3zÁ¹¿Ñ‘*ƒˆ	Î±ò¥@<i)1HÙttŸ@6—,P@hÅ›4A…­ WeYÐwÿµàÍÁÀmcÁ@J04CŒàS+·F‰‚qó\'‚/I?“SVÓƒÁ7ó£‚¹Ýó‚¹ðÁÜ^°x°[°xŽ(XZw@°ôÿûþ÷Ò\\¨zêºpõ6májßBõ±¡FL±P+¯Z¨]’&Ô9î Ü¥!ÜPÛ&Ôë›êg|j…ÆÁ‹BãP{¡	N(4ÕšE¹	Í*„fd-á–Õ·…Ä0áÖÂÂ)[„»îh	wÁb…»Ãr…6{ƒ…6Â½ýw…v.óB»VB»`-á~«|¡=,WxP\'t<#tšðºø\n]l…®\ZR¡kô¸ÐõZ¿Ðme•ðèÎ]Â£‰mÂ£k…Çl‹…Ç7œz—L}\\Ë…\'¦Û…þ;ß\nº|„ÁHaà9Ž0èùAaà©0h*¾þE’¬%Ý²\"k[\'<mOžŽ²žY³Nx&bBxæÍŠ0\".AiÑ#Œ´?\"ŒŒêFÅFx	£Šÿ/ùc¤#ÂØ¬0a,ÚXx1aE·h&¼ì¬#L\\^óÞ L¹ LÝã.LÅ.Ót…ém…é²ÃÂëÛ±ÂÌÌ{Â[GxÂÛ+ÂÓkÂ»*„EWž\nKm…÷.–I«…ó>«vg\n­*¬¶V‡þV\'¼VïVwà…õrðIo¶°±j@Ø‘Ÿ¥<>#Ž›<…-*±Â–ÆRá‹ŠDaû]a{vž°ã l§\n;ÏP„€+¿…ÀÍB!èë˜<|Mþ‘ „E~\"Ÿš\nQºû…ØBìgG!žüLH°œ÷DI.„4¨Ö“*dŒ…Ì‡±B¶§§“Ö,äÝ:#äå•\nù\0m¡P~L(º³$”î\'¥ÃíBY0U(¡•:¿„Jë¡’µSØ2v	¿	»=.\n{xUÂÞ´‹Â^Ômaß}¶°oä•ð\r½DØ¯c$p8%|»éŽphÈQø>+Aø1 Zø1Ï]8Ê?(ü\\%ü<òM8f,Ž;wÇéÂ	G]áÄO8!²N:NÕ>NAO¿i~<\"œ~\"NÃv	§™dá7·á·Æá·	Špf^[øó£›pvS¿pîJ—pþS¸ð%\\\\»,\\,Ø/\\B^þk	®HDªn?DªÙ—D«<BDj:f\"5“r‘úC‘úC¤QÊiN‹4>è‹4‡¡¢5ã^¢µ1\r\"½\'kDõçDDú7Dz­¢Mª¥\"#›§\"#à5‘IÔ~‘Ù¹\nÑÖº«¢mµK¢-m¢ÝÍA\"ëÿk“Šl\Z%¢½¸AÑþõ?Dû·KDE\'D4Š\rÓEŽòÑ!ö‘‹¹ÈUöBäÖï#r7¦ŠÜ]EîoãEç2EéEžÁm¢£\r6¢c	ŸEÇ5	\"ï€Ó\"Ÿ\rX‘žªÈºYäWë\":™Ú(:eä\':µl%ò×ø\'òŸ°îrâjDAGv‹‚REÁfE§üE«ŸˆÎž/ŠN\ZEçæ‹.OÅ/f‹xpÑe”(Q±O”8)ºÆê%Ý#‹RóD£¢LO”…x%º¥‹²-wŠ²î‹rUJE¹šË¢Ü¢Û»Dù±%¢»–¢»—·ˆ\nß¿$‹ŠUwˆŠ•¦ž•\"ÝD÷¢ŠÊÆ¿Š*l=D•;7ˆE£Dº\ZEÕÏ3E5ÿ×¥fw³¨öz­¨Žý]TÿîšèI¥Hô¤…\'zì5\\:+z¦úCô,¶FôòXÔ´ÙSÔTÐ+zî\'z‘!½À‹Úž6‰^J;Eí»7‹Úd¢ÍŸ¢Ž×E¯òW‹^-¶‰\0¸\"p×WìÙ=L^(Bð¢E‰¾ÍfŠ0ëçE˜À\"–ûZ„Üaÿþ‘\nãE´õBzIÄø\'qPE¼2;ï!DÄû^#âë[‹þ\"aU$$‹EbˆB$ÑÜ!’àGD²Ê}\"¹Õ¬H‰GŠºRå¢®(Q·ª‘¨\'ÙDÔÛEõPE}8GÑkž\\ôz,zQ-ê +\ZˆÿŸÂMôÎ•(\ZÚh/\Z²g‰ÞïS½ß+\ZY¥+\Z5È¾1}æG‹>OÐD_^ESõßDß#Nˆfª¯‹f ¦¢™·¢9cÑÂ÷_¢?HÑÒ×|Ñ¿›}¢åñ›bU³\nñ*Ãñª¾ñª%5±Ú+‚X=)Ö@]¯9ðH¬µã˜x¾E¼!p§xÃé^ñ†¦×bÝû±.-ÞhŠë‡\r‰õ(±þ»f±[§Øàœ¶x³šºØhž 63y+6Ûn#6‹ÆŠ-ˆ¶âm—2Ä;BßŠwö?ï.*[nž[¶í[MÞ[ývïÝ7!¶*ÛÅ²Äû0kÄûAkÄöqX±ýScñÛB±ƒ»@ì\0§ŠV‰ú*v\n:!vo;_p»þ¿Ü÷y‰êm{Ñ{ÄÇ½ºÅÞ*h±÷KŒØž*öÚ\'öÛž-ö{‡ŸÈ«Ÿœþ$>µ_M|ê4K|êQ‚Ø¿þ§Ø¿ßQèzÚˆƒÝËÄ!ÏgÅ¡=/Åá»vˆ#6Æˆ#þ”‹£~½G/<Ÿ¯:\">ÿ4T|qDUÏ™_Šú)NX÷Nœ°ÑJœPtT|¥¦\\|µÐLœüÙFœrhQœº¾\\œÚñ[œV\n§Q²Åéahq:fZœÞÛ%¾®{B|]!Î<\ng–•‰³.ˆ³>‹Å7þg?+Îî¬g,‰s(âÛ‚	q~Dªø®e´ø®5Q\\”Õ#¾_Êß§ËÅeûÄ¤•â‡žâÊ˜Qq%x½¸êŸ‰øQ·¥¸n­‰¸¿G\\q\\üä,MÜhå%~vyLÜ7?ßwCü´IÜ<ºGÜr+TÜ2qWÜ2÷^ü¢ÝSÜÚe+n»—+nû”\'î(Å‹*T1@{Aêœƒpób°§Úê\"†U«Šá¢1âëz1r_•é‡#S]ÅH€BŒ¤^£xÛÅ(i—],Æ™8ˆqÇÄ„Ú)1Q‘&&iÅ‰If\n1}TL/Þ\"f¤Ù‹™W7‰™€b–Kµ˜­W$æ¬ësî×‹ÿ<Å‚:˜Xl$Ÿú¿H„X:ÎË½ÅÝ‡¼Å=›VÄ}s×Äo¢JÄo¦§ÅFSâ·\"Å#ÿ¿‡&=âÑÄlñ¨-þ4„¥`ÅS=â¯6Š§_(ÅßW{ŠgF¡â_\\ñ¬ó^ñÜó)ñB­©x¡cFüûp¸ø·h^¼–$^\Zü-^3”¨8­–¬V¶I4–íîF‰Î*MÉúéh‰n:O¢×óH²ñÔ:‰á¾‰û‘ÄX7MbŒ\\Ê–˜Xÿ’˜ÜbILGÃ$[ª-%[Æ%æû%æ|‰Å/ÉÖZ¦dÛ>”d;ÉX²£ñ†dÇ/Šd÷ú—’Ý¿Aë„l”dO»dÏHˆÄ.´Zb×¹Ub\' ÙwEW²%9°¯Ä±dŸäðV;‰ó}¸Ä%\Z(qy\n—i´—¸¢²$®?%nU%žaÅÏ•#’£ïÏH¼\"ÎHŽeêJ|ÈÝ_ïßâß{¿óh‰ßÌIÀöß’ÀÁRIð	sI(¹]ÊâJÂŸœDéDnW‘Dâ<$‘â9IÔÓÕ’suItè€ä¼‘¦ä¼b‹$öd¥$^öQrÉ*Zriš%¹Ê\r•$úõK®9H®åKRú’$)¿è’T\0E’V•¤‰8’ôH?ÉuõHÉõ˜|É\r±$Ó¯@’	•ä~j–ä›‘$wŒÎH\nÕz%Eß%Å»7HŠ_?‘”%÷jZ%÷m~JÊÎ’”s$åÔk’\nÏ7’‡5¾’Ê=V’Êwù’*ß’*ø;É£‰ÉãFmI\rê‘¤F¾\"©=.©½,‘Ô9­—Ô!\Z$õªA’\'‡ÿI\Z¦Ó%;Œ%Ïƒý%ÍírI3v¿¤%×@ÒÊï‘´=’´ÿH”tÀ<$€À`	 «ZÞÿFNÿ(~I1Ñd…¿ÅÊ• ¦Õ$èŸ}L±„ g !¾”Î9IHyqÒó\n	UsIBƒ\rH’	*’pfoJ„Î-¡E\">zH\"éÄId:Sy‘¾DÁJ–(W­•ô4WHzÃr$½É+’¾³±’¾¾ Ißw¤äu`˜ä5E_òF—)y3a y·<!2®½VJÞ§î’Œ¨JFü[%’:$£zU’Ïk,$co5%“ô[’o)–’o¯$ß\rµ$ßÍ(’Ëƒ’Ù-7$óó’ßF’ßä/’ßKÉ_™ävH²Èh‘,¹¯–üý‘%YöJ–,ûý‘¬ôHUìIÒUZIRµà6©ú÷/RMÿ	©æ+¹T³óTË¸Bªuwt­3Gªè&]7n#Õ™¦H7`í¥F6J7L¤zwI7N­’ê¿Û\'Ýt:IºyÝÿ\\¥›;W¤†È©±£†tKÁ}éÜ!éVt²t÷Þ‡RË¨“R«Ï÷¥Ö‰³Ò=?ç¥{¾RÛDM©Ýá½Ò8éaíRg ¦Ô%ý°ôW)uÝÉ”z¨o—z\Z‚¥žÖ2©çÇ(©Ï=Šô„~¯ô„å!é‰UÒ“v[¥\'/ý’ÞÞ$\rä¿—µ9KC°\nih5M\ZÚ–&\rÓì’†-úKÃ1¹Ò3\Zé™µŸ¤(Œ4ê¢·4Z¹WzA.½@N“ÆîÑ”ÆÊt¥q…»¥ñšIÒÏ`éå™ôzáui†ó¤4s°JšÕÔ-Í\Z¼-½iùJš=vUzÛÖ[zS\"ÍÛñQšo‚“Þù»,-øí,-øë&-¤n‘QÏJ‹¾÷K‹U‹¤Åó]ÒífiÉP§ô)Lzo¬Bzï«¥ô¾û‚ôþµFi9ü–´Bë†´bzôAûCiåáÒJw‚´:·\\Z]ì#­Ñ’Ik¼\Z¥5†ÒÚfmi]B±´.SUZ×@‘Ö;¶JëÝKŸé†J›¥Íc¤ÍeÇ¤-áFÒ–…KÒ\Z¤/Ê¶H[Ë£¥m„Ò6¥§´Ý¶D\nˆú#‰¤à­îR¨î‚Ú\r—B=¥›4)\"¦[Š)×‘b«š¤Xòc)¾Z %fÍI©ƒ+R–°_Ê¯¹\'Ý—JšWKåç,¤ò_-RÅgg©rnJÚ›ï,í£ð¥\r7¥o¿ÆK”KÚ¤ƒÞKßÕ(¥C#PéÈ]éÈaGéÇ˜Òå$éØ¢t¼ý–ôK\'LúeÙY:M‘NfJ§§2¥ß® ¤ßUJúëIçÉyÒùŸPéÒ“Véò¹\ZérÆ¨te•–texX¦rrJ¦Úh,[=óM¦>­”iHâd\ZïºdšS2­t L«–&Óú–*Óú“/[§-Ó¶fËÖùSdºõÛdzVÙ2½=z2½_™2}‹™~–¡L¿!S¶ÙYKfp^fü› 39Ô\'3³w—™¿´–™å2sÊ\Z™…5EfÁÃÈvØ®‘íú»Wf=³\"³©’Ùî2“ÙºÊlƒ/ÈöÛ\ZÉìw9ÊìG–dÓ Ù¡–Ç²Cíš²C¿×Èß¸#sVK–¹Œ‘dGÊ³e®o®ËÜ4ÇdŒd76ÊŽ•yekÈ¼þU½&ŽË¼§®ÉüÞçÈNÂÿÈNmŠ–JPÈ¯[È‚~_’Û±eÁû*eÁ¾0YÈ+²q,äß~YhGÚ’Þ¥‰ð‘En@Ë\"wgË\"Ã¶È\"§ÌeQ¾7dQOÊ¢uŽÊ¢¯´Èb,zd1n¹ÿ£Ëb¸I²Ø¬,þL÷cN¿£C_&»T»E–\0‰”]=ôT–øÝ_–T5/K­“¥*”¥\\¿+K…#d×7ÌÊ®÷±d`oÙ\rÙŒ,Óó•,k°Tvëó´,[,ËÁòd·…WdynYžßÙ@Ù|YA\ZKVÐ.+RM½}\Z”Mm”•ÀÍeåAY¥žª¬2£JVIÎ=z${ô´FV=øTV›ýFöÄ\"^Ö0Ê–=‹ù.kÉÚî”µÉNËÚ.²ŽnKÙ+•ZÙ«ÂRYçªaYgÄ^@‡\'MeÀ±aèH”ô|rmŸú,L[„É0ûçd¸‡d¸	;>ÎTFHÙ\'#9!edû¥á„ŒñÛKÆäþ“1Kd,ÿ\nG½NÆÓ£Êø|™P÷°LTU,“0œe’îG2iÞN™t MÖ…L”uaŽÈºªËztƒe=ÿïßkß%ëí+pâË\\¿ÊÞºþ•\r½“ËF|Wd#ï¶Ë>ÄäÉ>\\Y#etÈÆÔ™²ñk\Z²ñ2ºì‹ª½lrÇ!ÙdOŠlrÂG6uà‹lŠ–}}æ,ûuXö³ªU6›½$›-\\+[(?)û]c+ûã¶Qö÷p¦ìŸTö/ç¬\\Å ]®ÒÜ+Wþ!W¿Z/×ˆ¡È5²Täš½b¹æçßò5OUåÚùåÚ/ßÊõ,rýv\r¹>™.7ØöPnð\'On|?Nnâ<\"79õBnÒN–›\06ËM¾\\–[8HåÛŠºå;„Ûå;•?ä;Kä»Äò]Æyò]–öòÝ™ä–îrë•$¹ã-¹‹šÜ¶TEn÷¤D¾q@n{N~0·M~ØªO~˜‘»:<•»íZ%÷Øä.÷B,Ê½·.Ë½ÏOÈ}6ùÊ}º=å\'V/ÉOE”Êýý¿ÊƒìÉòàÂ,yèZyX‚…<L9#w[”‡×Êå§{ßË#¶uË#Fúä‘Á$yäó5ò¨cJù¹¤­òhûòóôuò+òØ¸:y‚e‡<ÁÙDž0ë$¿²öŠü\nõ ü*lQžh2&O<%¿æ‡‘_û×*O^‡’\'Óhòä!ž<åäiyÊí\'ò”…ßò4£ûò4%UžÑöH~ÃG_~ãÂùzùMèIy¡I^XöV^øL /BRåÅG_Éïk¸ÊïÿÐ‘—¯1”WéSåU&>òj—çòê²ýòšóSòÚ>Ky]Ç°¼q[¶¼±zTþ´k•ü™ÅNyËõ-ò—…,yÇŸòÎ¡\n9@‘/ºÊäÀT9èÇ¤†±ÃW”Ã±NrÄæ\Z9bå›iW,G…ÉÑŸ˜rã­ï)Ççß‰÷å¤¶e9yO°œ,{*g®¯‘³ÙŸä<ÒŠœosT.¸\"î…Ê…óNrÑ¹»r‰o›\\$ÊåÇÈõÙreqŸ¼;©WÞ“¼$ïm‹“÷7VÉžÈßòÈòa;´|˜~QþÞ%ÿØ_\"ÿ8n\"ÿä¡%ÿ|G]þ“\"û@–O¤™È§êoÈ§Ÿ¨Ë§W°òª ù0ù¯òRùœÊwùÜìnùÂb‘|±pHþ/2Uþ/;J¾ÌMV¬.¬S¨Ûë+4×Ph­‰P¬Mx¦X·c¯b]òCÅzU˜bCÆ.Å†¦}\nÝeUÅÆíIŠe»ú·Ã¾;›V«+=û&nX…Ù\\„bËs#…ÅMk…EûQÅVU°bëv¦bk]“b›J±cÇŒb§w½bgÜkÅNÁyÅ.³…ÕŸr…uÙn…Í•…]L«Â>µKaÿù²âàæ,ÅÁ%[…£z‚Â‘:¡8žŸ¤ðÁ!>Ü…o¦‘Â/;Dqb­XqB¿Kqâs»âä93Å©¿Õ\n³\"…?¡R¸ËWè{CüÐLò­;#S„ei*\"ÖN)\"Bf‘´|ÅY—mŠsúkçþª+.pr—Ö0—/(ý(®]þ®HÚ#P¤è¿Q¤…e+®ß*nlžWÜˆ­QdÁÙ)Šœ®ZE®­‘\"÷fˆ\"W	Wä­¼Rä‹þ)òGw*\n£êÅÆÚŠ{6`EYÂzEùÈ¨¢Âê©¢rö´âiAQsõˆ¢ÖÛBQÛ°¤¨KÝ©x¢_£hÐ&)š¼ÚM),E›¹½âåª5ŠNd•äuHš&* ±üÃ:òá3Î¶K;é¤À7½WàÛ‚xô=^é¬ –;+è8k#±FÁ¸ª`ö+Xj\n#NÁî6Rp}òÜÞ[\nî˜Š‚·Z ¬öV¿*D–\nqã‚BüÜU!9Ñ«]‚)d\"…üí…²DªPV_Pt*^ß…*†ñŠwz¦ŠwØŠ¡ÛGÃb¤b¸‡¬ÑQ|ÀÓ¸bÅÇEŠO÷éŠ1ðœbüLŽb<½T1ÞuW1±ÉGñeCŸâ‹S¸brÝ¢b2§øvæªâÇ¹CŠŸârÅìÎ}ŠÙ4wÅì«/Šy¶b^+J1¯¿]1ÿób9ub¹©L±2S¡T?ªTðT®.òQª5ô*×(…Ê5_+×B•Êu„JÍõÊõ\'þ(u§ï*\r^*7K•†_÷)ð\rÊ-‹”Û-6+w}MSZêVZ¯RÚ´Qîq(÷5”û—”ÆËJ.LyÐh­ò`–™ÒÑfVyH©t\nB(ž½W¶ªR:G7*]®/+hžTô)]éKJ·hÒc×´ÒËÝQéõZWyü³—Òûƒ›ÒûGšÒOyJy\"«<iUžŠ4Rž¢²•þút¥ê¥Öse ]‘20Œ¤q{¯9õNz{A:œ¡Ãf)Ãf¨ÊÓV0åéÌÊ3q×”QÙ\'•ç¸~Êè¤\Ze|ƒ¶ò’Îå¥*±2áó]åe¼@yÅ¦Eyuì„2q‡™21ê€2±p»òšù[e’v˜2IJQ&·*“—¯(Sc*S±Êëgß+3E%ÊÌõÊ¬…òæËZå­”!eö™eNÜ´2ç‰µ2÷ô#ežÕ>å\"Ž²À¤,hW t•w7;(ï¾kR‹•Åþ\rÊân\'e©Ê[å½“ÊûQÊûyÊ²¾teù%¡²œŽS–Ú¥|?«¬`+ŒUV³¥ÊZÀce½ÔSùd‘¢l<¶¢|\ZÌV6}™S6{(_¨÷)Û8—”ík|”íÉ;•íÕ	ÊvZ¿²½»OùÊV¡ì<vVÙÉQS±•àªƒJXQŒ.G+ÓW”È­ë”¨ýX%ú,L‰ù¡¯ÄŒUâüž(ñ\'î*ñ‘l%þž‡’Ø²_IjIWRd))#cJªW½’¡ý[Ép&)©B%3SWÉ9a¤ä_+94¨’ÛŒUòrM•¼÷R¥Ð—¬~/SJ!JÉÍV¥ä÷s¥ôã¥|q½RQt_©ŒÓR*Ÿµ(»ÃÂ•Ý}ÁÊî”½ùÛ”}ÿïý6î±ò½Ååûåó„òÓãCÊ±Ú)åD1Y9_PNeîVNµ\\QN-\Z+§?h+¿»(¿ýGqy‡sáu\\()¡!M¥BFÈˆPF	‰ŒR¡”(«l*Ù²GT¢¢RÉÉV’Ñ}÷Þ{ïiôþÞç<Ÿ¿î½Ï™÷Ü{ÒÿrQ÷ÿrÉ¶ùW¶þ~:üWtjç_QOþ_ñ¿’¿‹ëœÿ.Êuþ.õ’þ.)Ûÿ.|ðwEôwÅÂ ’ð°ê@@5. Ú7P³·¨\'ÔçwV‡ºVâkúM\Z%¾€µ²Àº‰=€õÁÓ€\r‰\0mîE€Î´=@×’ÐõQèVèN66hlj¬\0l~°õ\0°}ÓUÀöá%Àî‹€ÝoB\0»ùß\0´^ÀÞ·r€!¸°ï~1`_%p -\n`Œ»j\0ŒSØ\0‹áû\0›O.\0›Ïæ\0Û5\0ÛJÀv&`×p8øà8‡808Ý{pñî¸œŽ;<8V”8~nÀÕí.ÀµÜàÖ·pr}Àk­ÀÇ+àóñ.à´‘à¿à›Q	8³8óªàw€	ðsœø/H\0AÇsçŸø\0BÔ^\0B\Z€‹P€‹ãRÀÅ©‡€Ðºó€p•Ë€uS@„m\' ‚\\]¿¸¶sàÚ¹Š¸®`n4_Ü4óÜÑÜ|º“¹\Zwsß»Øì\rH3$Ï’eM€ÔÄß€ŒsL@æm5À!#@–Lµœ¸ÿ6pà\r çsî\Z çI4 ÷Ë ¨u/ øÖN@qÛf@©\nP6Tì8¨ŠdªyÏµ€ÚÏu@Àã¬9Àãwõ†n€§9î€§mw\0\r?g\0Ïj÷žkž7=¼8üð\"ÞðbÌÐtù åë~ÀàMIàÍóM€·6€w·{\0ïþ´î´FÁ\0ïÍòmýF€_O@÷þ0@·ïq@wS.àCF ç¿|öm=øxD\rðñdàcËà£¸ðéÉ$` ;\n0æŒ|‰|©­|-|³Ýø6c˜²0L§Nfü€™A%`6•\nø;ø¡ðÃ,ð£†	ø©üvpÌý)üÉ·\0ü™»\0˜7üø»Oøû÷\0$<€t— kî ÞWHÒ	\0J¼	€R ¿N0Ü\0B¹€¤® !¯Ø,4€³\0à‹\0ô=€0¹ ¾i\\=p­2X\"@~Æ Xµ ø4XÜ{°x		XÑ2¬Ð¼*žº@•ppÕ±T Zê$Pcì-PkÐ\0¸‹j7mŸnŠn6\rê;¾\0ê¿Hê/|n+9Ü¾¯¸g_pá\'phxçpßk:ðÀ6ð\0´hâøhºÆhº3h¶Â\0Z´åNåïZÚ%-ÓZ€VÇ€‡[]6çF€¶éí@Ûþ·@ÇG5@GÂ3àQ“ S\rè¬¦t¾|èr`\rðøR<ÐX\nô°Ý	ôHŒztgOÎé=·ozÒT§z;€^5aÀÓ6ÖÀÓ^†À3Cž@j0àþm`pÔsà9Ÿà¹Zkà¹†ÛÀó¤`ˆÉ+`9\rBý¼h§@€WáR`äw`äï`Ô05–\nŒ>ÞPñÞïÆ¼}Œõ8ŒkœÆ€·``âž?ÀÄkOIi€ÉýÀä:ÀLB#ðÎ‡\0à½„ûÀû%Àl»^`v 0;Ä	˜ýj\r0wi˜—ý\r˜_ŒæÏ\rN‰€Ãß…O0À¢žÀ7–%I“ÀÒ\raÀ2…°¬:º\røPOøÐ.Xw°\rXŸ(>ýè\n|:uø,dð¹‹\0øÜûðÅðÅ;)°i`Ølé|µ|M-¾q\Z\0¶þÑ¾Ÿ,\0¶yM\0;ÜÓ€ÞÝÀÎÎdà‡ú`Ïþ~`-Ø7·øQ<ì×±WÜŽ:ŸŽ%®ŽµRc€_ûG€“5Pà·q+àæ\"p†,Î^Ùü±±øÃQø+3øk®økyøÛ{ø›œë~\\ÀmþÝ„D¡ñr ìÎ ¬ø\rNr\"Ù.@”þ# Z½ˆöþ	DŸÞD×ùñ×	$@\"r;Ô;¤}º¤sÊ€Ì0AJ2€ì«€ìV §€ä,oò^X_r€¢Gs@éÙ@Y¡-PþcP±k¨dc&€KFÀ¥‚ýÀÁtà¿Ëª U®Lz”´zëÐ\ZbHcbh¹hý1h}d#h=Ï´Ai	\0é†€Aª€6—ƒ¶ô<ééAz€%ÐVÓg ­_/ƒôO¶=àƒ¶ý4m¿á\rÚ»ÚÎÃ€v:¬í|q´³U\0Ú%û\rÚ­w	´ÇÚ»ZÚëR2´÷íó>	: sd£€™yœ™¶‚Ì«mAC¯@‡ÔªA–ôu ÃÇï?ã‚lŸƒŽ0æ@ŽGg@Îÿ‰ËèXÊ9Ð1ì+r³h¹çöƒ|.4€|†×ƒÎ<Ø\0òÓùÍ@þöi ³Ïƒ‚Î„ƒÎUïgÓA!ÏcA?í\0]¸\0\n½4\n­¨]q]³½ŠŒ\0ºÁ\0ƒnNN‚bWoÅ=I%0Þnƒ÷‚’ï%Ûý%Ÿ\r%W˜ƒRm·‚Rÿ$€Ò?Aé©* ;1s ;·k@wª‘ ¬¦ û/A97rß÷€òŒ×ƒ\n&@…ëAEŠÏ â§N âWëA%_ö‚Jæ\ZA%$¨T	*ý­*Û*³@¢AU­gA58}ÐC\nTëôTû\rzü¨TïzÚâjÊ}zÉ\r½¾¯\rz»qôÎÊÔš+½ïÔ½Ÿ;jórµî‚Úy q¨s­#¨“Yê6Ç€ºëÜ@¬ÿ>T^õÆñA½21èãúm A×\nÐ`æ\ZÐß4ºþ8hÔ×4Ú)¾\ZŸ½š(W€&zÛ@“>/Aß\\E ©§×A³NÐwYèG£?èÇ—Ý _„\r ß¬} ƒ? …/ \0IÜ·	¼Þk-‚ oR@PüúÏK«ÁñL\n8¢íÿ	¢ý~bt½±@l`ˆ­PqÞ¼qC Þ%ˆçžæ\0AÂ§@â\0Gu$}~$s&ƒ–;‚–Q?Á*«wUs¶ÕÕÀê;¶×ÌŸk8€5Uu¼`ÝƒßÀ›w‡‚·lýÞ–ƒo›g€·-ÆwÞï*¬€h`ÃÏàý‡Á&ªæàƒ\\\"ØÜiØü.l^¶d¶€­«Á6:E`Û›`{Ñ øHùØá6ì°`vîÖ;Ó\0»Œ_»íó{¬*{¯?ö.ƒO7y€}kgÀg®–€ýYÉà\0í×à\0z68p&H]\\¤€ƒ¥nàóÙàÅkÀÏž_9ö|%GŽ€]G~\\_×ÂƒodÛƒof6ƒcŽcòƒÁqep©\'\'ìéß26\0ßRFƒo_²\'n¤€áãà”µàÔžßà´²0pZßpú„\'8]fÎ\\7Îº0Î‚~gÁbÀ÷ïÂÀyâ(pÁ6{pAÎ!pÁ“à/piÍsp™\\~¦\0\\q×\\kg®ó\\×¥éÝ?þ¸~\nö7ÖO€‹àg\Z¹àgí,ðsO;ðó°§àç7gÀÏkw‚›¶6›ŒÕÀMÇYàætðË+áà—)!àW¸%ÑüNq\nÜ\n£Û/‚;lÃÁM\0p×	¸ûb3øÃ—)p5\ZÜ|îW8€?ýxXž?;Y˜WG.—‚G*àQµëàÑ(kðhûgðgKSðWU.ø«¯:xò!ü\rÏODƒ§£·§ÛxàÏ?à™{»Á3‹\nð¬Þ+ðìnKðÀpðÏp*øç—Çà_¢³à¹ípðüõðÂ™à…»ÀÀé`àÏG`Ð}6^áFg€Ñ‰;À˜«00~ö5O)\0[¸`ÒÑÏ`R_˜ì6	¦®©S·úé»VÀô[Þ`†öC0óD4˜µ¾Ì:°Ì6‘Ù.OÀìz(˜-lóƒÀür0;U\r€Å[’Á’ýú`…ÿW°¼üoÎ¢šmQí¸Q3;	Qg~høWA4ÇL š_‡ ZšLˆ¶E=D·R²±æ!dSÉ1È–‡U½3ºýC‘}‚d[X.d[ã)È.²‹Ü\rÙcý²§\n1lÜ98¡1ýøb†˜…˜ûƒ˜£Ds¡#Äb}\ZÄ\"¯bùé)ÄJËrXÃb“e±Î‚ØÝbCìõ?BŽ¬¾q¨÷†8zì…8%/CœƒÚ!.×ò!ÇÿÌBÜp· nÒˆ{øAÈÉvˆ—‰Ä{çÄ›ºr:á$àÌH`I7$ÈdTD‚œ[ß¹d€\\²ƒ„ÚP á2!áƒë ¿öB\"æê W¤«9ökíiÈÔdÈõ˜¨gHTr;äFG8äf‰\nä&þ\Z$¦P\rS}wá<ä–zäVñ\0äöÕW¤š$G#HÒ™»ä}HêH*$=ñ$½k$Ãz$S|rÇtäŽŸ+äþºNÈ}êzHv¾/$o\0É¯Œ€ä³J!…û!…— …¹é¢×b‚1¤ÄŒ)¹&”>Ü)\nT.Bªœ9ºñÈãÍzýú?¯!Oml!O=[ O«÷C\Z}!\ruAÆÑuçyxÈ‹Z\'ÈÎ(¤IOÒœày9›\nyÝ>i‰s¼Ù¡yóù.ä\r\ni}}ÒîQ\ritÒ¡¥éä	 ];!]Àîü³îŠ^È‡UMžƒùžC…ž£o =é$HïS¤/è¤ÿ“2àö2ð12\0¹|ñ2ö÷$dŒ_™Xÿ2i‚|;™òX†L—…Bf«r!~¸C,‡ _‰!Så¨Æk,1‚x{‚:ÝÁÜß\nÁ¼»	Á›©Cð6\rmBÔû\n!në‡6d@¨;L!ŒSß!î „ù€a=N‚pvü„å$ˆÈ¿\"\Z@Ä´-i	Dæ’\n‘[kBä·WCzE¯ýÅ?ÎP•õ,¨ªíc¨Z=ªáo]ÃCµÍAu=U yæÐ-û«¡[Ž@·<è‡ny»ºåÓ-¨Þø6¨¾ñtú t{«:ÔàctoÒèÞ\'Ð}–ï û¾&C÷9\r=Ø­5‚šþ\r†šÝ¬ƒšý¡@ÍjAÍ36C-j.B-¡ –è+ÐÃç^@íbP;q:ôˆƒô~ê”Zu	ö‡Ûûzì¹\nôØëÓÐãÚPWóÇP×Yu¨0êÂ@OÀs¡\'¿ÏB=û; >á\rPôg¨	=“÷êwvÔoüÔ…„”„Õø@ÏÙ¨AÏ)^AC¬¿CC~* —žÍBÃ¾¶CÃ}Ðð+2hÄæMÐˆ¦÷Ð›–ªÐh4îÉ;è­‡áÐ$û,h«\nšùËšeZ½ïç	½ŸVÍþé\nÍ]‰æ…´BóB ?f¡Å~ÚÐâÙÇÐ\nZÖ«„V>C«dîÐ‡\'ßC&¨Akµ.Bk•&ÐÚ•%hÝ…ih]F\Z´n<úÈø\rô‘ú¨	­”CŸ«/@Ÿßv¾ÖC[f’ ­»^C[§Û ïõª ïýS¡m3xhûÆÐöƒÐ® `h·ê9hG:´¯¡é?8Ð èÀs.tpe:bkí¢BÇbT¡cµ3Ð¯ç¶@¿¯@§¯@gï£ ³àÐï{Ô ?}œ ?oFCÿT¯…Î_ˆ.Ö….Øð ÀÝ((H†€B>A!}Pè–V(|h\0Š¼nE\'A1R(¦dŠ™©‚â‰g „\\<”è´	JlN†’$PÒ­PÒ›ïP²Ú(eÛV(µm=”þWÊ`H –”µSe½K…rÞâ¡ÊÛòf PÁ™WPñR2TJ€Êv|€Êb¨ü…)T±×ªˆk…*€¿¡‹õ+Ð¥u— KÕ¡Ë¾ÞÐåG-Ð»B ÿNØÂTò<aªÆ¹05ï°Õ`«Ñ°µÂÖE0Î\'ØÆÿ&âÜý0=Ãµ0=Alki#Lv7lÛùØŽ“°‰‡a{lÖÃöœvƒíAÀöFÖÃöÎÀö­;\rÛ÷Lvà	vàå˜Ñ]ÌØ½f,ÁL4Òa\003óo0ót˜ùé›°CÑ×a‡ÊÿÀ¬¼~Ã¬®Ëa65}0{Í9˜}f?ás°ˆ‡9û©Âœ_aÎ¤#0——(Øñ	0·O¾07Ð,Ì#Ä\0æß\0;qñ&ìTþ˜ïÂG˜/7æ»¸ó»]\nóƒÅÀüe@ØÙÀí°€4,€§ËmØzò´”Þµ	vnv.é#ì|!vþyì<àìB§v¡ÇvI6­……E>‡…M>€…)\"aáßÜaOK`WwGÂ®=¿	‹Òÿ‹¶\n„E¤°oÐ°ß½`1!JX¬¾,¶Ä·ÓÇ|K`hÁnå›Àn[[Â’oÂRüvÂRbB`)ì)Xª•,}»	,£»©	»S»÷í*ìx=ìž4–µº	–EùËŸ…åv0a¹Z°¼¤rXÐ–ßý–ËlÂ\nÿÔÀŠÊC`E\\2¬¸à¬xTVª¢+5€•f©ÃÊö]„UÂaô!XeŸ&¬¦ô7ìáØCˆ/ì‘öŠƒ=©¸\r«_•«8{:Ÿk*€5:a/6ÀšÇaÍñÇ`¯ü6À^ÃÞj5ÁÞyÁÚ¾.ÁÚÝ>Â:l†`Ÿ`]þá°®æ°nßõ°«°[¤°µjXÏ37X_†ì#ë\ZÃ>‡\r8[Ã†N„\rÝ¸Js€\r=TÂFòÇ`£]ó°Ñ1}Øçñ»°‰5>°¯¹Øä.lïû–uöm:6µú=læ6\0öKûå·öëöKn›;­„ýI_„ÍWß‡ž¼Za\'7äã\r´g\nï6‚!\nËaˆ‡—aè6x›·†ûSÃ	á/þ…ÑSaÌ”,ûð#GÎƒñê>ÀxÓJ˜àÓ^˜ÄòLÒ“¹çÀ«{a\nI&LÙ¿¶ô>¶r±¶’¾®ê>W{Ë‚«ëDÂÕÛà«uð5»#ákÒnÁ5ŸÓàšløº·ÞðuƒÑp­n\r¸¶ý(\\ûã.¸Nÿ\n\\÷N9|cq|SÂ,|S®¾éù)øæUWà[êá[~m…o·µ‡o÷ûß~ß¶ß½¾wã#øÞ¿¿áû‚vÀ÷µ9À÷wyÁ<i†ÙÁ<\ràFâN¸‰G6ü ü&Ü´W7k—ÁÍäOáæ¾¥p‹®:¸¥é	¸UvÜÚ+n}ž·ÙnwanÁ	~„‡;è”ÂtáŽ¯TàG›vÂ¶OÀþÉ€;û]†;ß;?î+»Z•Â]›ÖÂÝ§tá\'ÔàðvÑðÙ\rpÏÜst~jõmø)ôÜwó¸ïŸðÀ«Lx`eü<¿\n~qÆš6}\néÂC™æðË‹0øÿø•\"<âå\0üº!\r~}rE‡À£gÎÃcÃc\nlà·âÀðDðD=x\"ç8<¹ÞžÜxž¶ŸO»ÿžë‚§ËFà{àð~Wµžzž«ŸÏ™>‡ý~J€?à–ÃË÷ûÃËëèð\n“?ð\n÷ÏðêöRxÍþwð‡·ÒàÇÏÀëµRáÏ<7ÀŸu<¿L Â_+SàojèðÖ+ÿàïýám\'|àm[xÛò5x»a:¼ým	¼ãèxÇ½ðÿx´þòØú˜þ‚€PÍà£#{àcGÆác!.ð±ÿô¾†‡±ûÿÊ…OÖõÀ§NºÁ§\Z¶Â§É½ðiáWø´\\>½ü>ó >Ã*‚_—ÿ«ÿI„Â[¶Â–Âç2á×öÁékààmÏààË\'ààœUppMº+õ¥À±.&pÜëp|Õf8\'Ù[Â×7Á¹«Ëà\\å&¸`í¸\0r\r.6ƒ‹iÁÅD\\¶®Ðô€+Oü†+\ZàJàuø\"d¾ô_Ý.1uáKËï*6„ª)bõ†xÄšÊÇŠÄZ¯q„fIB³w±¡Â¡sÁ¡ók±iÍ$BÏM¡÷x±m›±­w±óÆ3„A^!bÏ‹Cˆ½Ïc{I%#h Âxd\râà—=ˆƒ\\¦¾WCùË7„U×q„MÙk„ì0Â«‰8òGáàs\náØ¼qt¹áláŽp¶ÕB¸.!uˆãîÿ®ì1„[§á¾ñ-Â=Z„8yÄ	q²<áylÂó_\nâ”^#Âër\0Âkð\ZÂÇ¤áë5ˆð]¡\"Îhq~§8ÿ¹d„?É¶8†AmºŠªúŠ’E\"‚EIˆs9ÖÆ\".ÐV#.ª—¶Ì#BÍÈˆÐ¤›ˆ°µ)ˆ°‘fÄ•Ä•aâúº>Äõ«`DÔ*)\"êR#âFD\"¾Â‘ €HðùŠH*ñ@¤\\@!RÞ3©§*w*wˆˆ»É#ˆ,ƒ(DVåÄ}ÓçˆÜ›¾ˆ‚sˆ¢âî¢8Ÿ„(~(¯F”NŽ\"Jù`DEZ9¢òÈoDuÑDÍÕ\'ˆšÇµˆ‡ÖnˆZvÄãuÇý†çÎ êkôõíEˆ§«Š\r`\'ÄsÐ\nâEÚ¢©ì9â=ñJþñúŠ¢eå&âAâ×>DëÇDûÍDçþËˆ®Û£ˆ®Gqˆ.¥¢»ö¢~ÑûÌÑ‡F|™FôíG\\ÌBfd!†Š~ †9»#Q7ã«\nãauˆ/ÞRÄ”*bb¯bâöWÄDõyÄTfbŠu1CûŽ˜ýbŒ˜ŒAü\0]F,|×E\0PúàŽpÅcD÷;º¥	½ß@o¹‰@\'‹èOµü±û¬A×ŽA°Xþö©<»¾Ái>‹à,E~g#D+_âA[„tr!Û4ŽT!–Âøˆ¥ðÄÒü0by×Ä²+±pCüKÀ#UòF*KHuØ\0RG®Öy\\ë¶ˆÔr/Cnx¤…ÔŽ5GêNýFêþüƒÔ%E#u—â‘›8H=YRÿd	RŸÓŽÜî°¹ð¹ã]r—Jr—y\ZrWò$rÏíbäÞ…ãHãÌkH“ƒFÈƒ›–‘¦½5H³ý(¤Õõ%¤õ“UÈÃ£sHÛM\"¤mH6Ò¾¨éèòyÔ…tJÔF:e¶#ó’.\'ÑH—{vH—ŠIä±ÈçÈã;µÇ¯›\"]Ó_ Ý®#=º‘½žHÏ­iHÏÿ§ÖÞEz©è ½ºf§\rš‘gbaÈ35_‘gúÁHÿ§}È³J2àB2¸\"rm-òÒãÃÈÐ§‘—O, /_øŽ¼ü»yÕ¤\nyU¼V×€¼Æã\"¯\'g\"¯?¾ŒòéBFOüAÞ\\¹ˆŒÙV‚Œ)hEÆÆ®FÆNÇ#ãµiÈõëÈ„=ä­dJI2¥J™òÊ™ÉtEÞÕJAÞ})EÞ+Df%	YH2?þ52_yY˜Ž,ßA\"4EbÌ¥ÉÉÈÒ¯eO¥çØÈÊ3W5	9Èº4Mä£# ä““»OB-‘õ7#õã.È§±ÈçbdóþZäË$Uä+_òÍ†È73Èw}k‘­«®!ßŸ‹B¶¯yŠì|¡Šì>CvßlF~`¨\"{T¥Èž?doÙ—5‡ì«²Fö¡â‘ø\"‡^¶#‡Û¾ G’ GPÖÈÊäèågÈÏkxÈ	‡ä×CääQ5ääTäÔ—7ÈéùmÈï46ò‡Ÿùó-ù+„‡üUB@þ>ò9÷|5òÆ0òüržGþ5A‚\nT ©Ü®ƒ„uw#á7\np`ö‰ºQƒDë‘èKöHÌT\rÄŽ5!ñŠ$Ññ!’¸2$/<FÒ{„HÆÝQ$cØÉL\"™òY${\\É!ìFrS+‘ÜŒ¯HÞº¤ ùR<þæ#Åc×R\r¤”ŽBJWF‘²ÍHù§sHù)—Å!Þx¤r3©ÜŸùËÈÅ5ßË¶Èåhä2å\rråß3ä?¥\'JE @­ÚœˆRHD­Æ©£Ö¨EihrQk·Y 4·~Biº- Ö‘x(-¾jÃ>jCdJÇéJgì;Jwõ+”îd	jÓzÔ¦j³fJÏô+JÏ/¥—ý¥7òµ•}µ•ƒÚö™ˆÚÑP€Ú¹·\Zµëò_Ô>L	jÿônÔä2ê€ƒ2Ê“ Œ]Ö¡Ljo ¬\'ÚP‡Ã7¡ç Pö!/PŽ½¨£È(÷ÏPîÆ§Qî‡µPîTw”Gt2êÄj&ê„Ô\0å¹6å©k‡ò¼r\ZåIÈ@Zk…:%hAy Î0lQþàË¨€\0* ì,*Ðö*ð\\*hšŠ\ni«E…@o¢Bö B?1PW¥7P×47 \"×\\B]À¢n$P±{w£âvÐPqT$*~Õ•5x\ru;TJŒá¡’š?£’ÝP)¦¨ôÿöÜ™£î._CeåE¡îg}De;@å„áPùlTÊTÑ½QÔƒ=2TÉ	ªLòUYÏBU½¯DÕè: æÙ¢j{$¨ZÒfT-Ÿ‡ª;-AÕÅœBÕ\rÞA=rAÕ_.B5<¡\Z¨¡\Z3rQÏR¡šþE¢^mùCq¨–M7P-!TK’Õ2tõv‹6ê]Gªõýê}è+TÛiªËéªÛ‰úðŸÿ€<TW\Zª×à#ªï@?ªïÆ)T¿„úôü#jÀt58 ‹\Z^&£FîÝDR…¨1\"ê³Vê[|#j*I€š¾V€úîwõ=ÈõËú.jþê/‹zë¡€é«QÀ÷1(Ð»^x<ÍrDÁ¶£P°6\n¡ÐD!M(äóÇ(ÔÐyút\n3Ý€ÂæJQØ¡·(œ-…e¡])(²þÙ‹¢\\ ˜[ÔQÌ–ûW-ŠƒDq0Pü]`ßJ%ð\rD	¢zPâ‡=(Åö/(Å°5j)Fµôî.j…ÚŠZarÑ*ë£Ug¿¡Õw¶¢ÕËž¢×L” 5ö]GkXZ£58èµIáhÍž{èuIè\r@ô†±J´ö¼ZÇ©\r­smZwà/z£ízãø$z³©*zsê>ôl>zÇÕ0ôŽ¿çÐ;\'÷¡wi%£\rìòÐ#íè}[=ÑæŽoÑ–¯cÐVõèÃö7Ð6Û\rÑ67Ž¢íÊŒÐvÝ\rhÇ§æh\'KK´ŽvQòÑÇÃÇÐÇ_´£]µhh×h÷ñhV.úÄÚïè_~¡Ošv£=.¡=åÐ§ÂœÐÞMhÜO´¯–\'Ú—¼\r}F\Zˆößi€ö¯‹Bû²Ñ¿V¡ƒ¼ƒÐÁ–ÏÐ!{Ð´ÅèÑoÿ×–@óèËe›ÐWnÜ@_50AGî²FG«ŸDG›=BGÑ7.¢Ð7G+Ðq^/Ñ·¶ÑÑ·LÌÐ·ˆcèÛ›ÉèÄ[-èÄ™1tZñgtºåitzC:#ÑAÏ@gšïFgËièœÝïÑy­Vè<Q(º@#]”¸ý@Õý@Cˆ.=Õ‡.}ìŒ®LwBW6•¢+±Dtu}ºf>	ýðTºöé,ºV9®‹x~‘†~|+ý6Œ~‘S~A<€nÚ«n¢£_÷¢_½{ƒ~Í1A·œÝ‹ny]nx¢ßªC¿]·€~û¤ýî/ýþXº}ÝRA÷­ô¡?F× ?V=CZ“…Xg…Ø7øŽLoE-IÐÃ*YèaõMè§³èÑËíèÑþ2ô(Ù=æ@EmCO×£?Ïô ¿jŽ¢¿*3Ð“FcèoNÑßä½è©8z*ÏýÝ~ý[‚þ¹cýóvú—ßMôï=›Ð¿—ÑóG:Ð’04pâ7\ZãŠ—íACT¼ÑÐ÷Ñ0H\Z±½x‘ŠF¼ ‘z~hŽÆ¤d¡1ÃÍhþ(\Zkó?€@ãë8hÒw[49âš<Š¦ÜÈBSÕ.¢™œ14så3š}fÇº¢¹¿.£ù†\n4?†ˆ	ÃÐ²1<Z¾.-ßÒ‹–ûš •n“èn7ÑÿüuÑÿP@ŒJ.³j„Q›CaÖ¬a4bÇ0ëvŸÂlX>€Ñ5ÝŒÙÔ·³åÁP¶`¶P«0ztÌVÃ~ÌÖç)˜ãÆ˜$fç­¯˜ )f°³§Õ³w!c`bö_¥bö+S0¬\\0Fýfãµ¶ãíC“sï0&iw01¦†ß1¦W0ï¨˜ÃeÛú`Œƒñ<ÆiÆéÀŒóT Æ™¸‚qÙi†9¦ÁÆcwaŽq/`ŽŸ\"c\\UîcÜŒo`Ü…þ4ŒçL/ÆË*\nãóã£Ä`üž20~J)Æ¿Vãß¡†	pÑÆˆïb‚½¿`‚\'V0çD0çGô1çe[0!Ùe˜z¿1·‚1¡Ý—1á\'vaÂã0—‡™˜«ËÝ˜(`æ¦ó.LŒw&ž\Z€¹p	“¨ý“ì‰I~­I‹I¯ú„ÉÄ`2»îbîØÛa²>`²ê<0÷]1Ù;·arÊŒ19oÜ09¿ì091yArLÁ¶˜{S0ì\0˜âmY˜âÛ+˜â+LñÌeL)ö!¦ì÷Lyc(¦r7\0SµÒ‰©ö0ÂTû7cªgó1M\Z1a]ÎÃ<\ZÂcË˜\'QLýîrLÃ˜Ó?‚i”ébžÝÞŒy^ýóœ`Œy!.Æ4k`š³;1Í7Ì«ýs˜×iLËLæÍªdL›¤ÓŒÄt­\01¾eaúJ}0}=6˜~Lÿø\"fèí)Ìè÷dÌød\ræËRfâ¸æk´5fÒv3ù¶\n3e~óýd&æÇŽý˜\0ÌÏ”o˜_›,1¿žcæÂÞaæ¾À0s¤O˜?0:Z˜o]ÌBx&°Ê°à`\0N`Ñ,t©ÙÂ@\Z0ŠèVkô¾îƒ2ŸÁ`•¡œC%ß´	CQ‹ÂPF±jÍ4†æzÃØnƒaþ2Â°ºF1Â¹NŒ¨õ\'F„:ŒG˜`Ä‘@ŒôR/F^}³Tt\r³LèÇüS+ÄªäVbÕ¯^Ãª÷OcW¯nÆ®žZ‹ÕpÅjœÌÆj‚ØØuÖØupkìz«*ìú¸5Øõ¬N¬¶½\nvsE8VïÉ{ìÖ›O±Ûûbw?Àîî¬Æ\Z¬ÉÀî1=ˆÝ¿§»)Æ\ZÍÝÇ\Z2±&C{°¦ÎáXÓÄF¬)°k~Ç{¨YµZ|µnõÄÚèjcmä°¶æÙXÛTÖÎúÖî>kOu¸?†uÚ¥†u9V…u+ù‹u=ˆ=õê.Öwëí¢õQUÁž®C`O3¢±¾–b¬oŠ:öLu2öÌkìÙUg±gMÅØ€†½Ø r+6ø[6øûfì¹¼^ì¹®.ì¹Ÿ/°NUb/ÚßÀ^ŒëÆ^êóÂ^BWaCñ°—¿žÃ^a5`¯¾ÝŽ½v|/6úÝCì\'O°7Y°±aØXÜ*l<î6ö?›h²›èÍÁ&¡K±©w/aSÇÜ±÷²¾aïÝÅÞƒ8b³ž9`ïo#aïû½Áæ˜:asÊÑØ¼Cl®#ö)[òw-¶ì®¶¼“-ïZ‹­ËÃVî[ÂVqÁV7›ckŒb±µ·wbk?\'aŸcÚ\'°/a›íÇ63µÿCûúÔ]ì›“ÚØ·—¼°­¶Ø÷;pØÃŸØŽ˜½ØŽÙØÎ÷ï±]eØÎ/Ø.ClWÅClw¶!¶›]Ší¹íÕ¹‚í5Áöæ‡aûž%bû¬°ŸÁØ¡—Ø¡™QìpPv8R;rñväEvì,\0;VÙˆý|–Šýò®;á¥†¸’€ˆ?ƒ˜âc¿fìÀ~ýõûí¯;kJÀþ‹°?³¢±?Ÿ½Áþ:÷û;Hû;&û;—[u;çÔƒ]¸6Šý{ä2öïÑ ìß(,€AÀ?^Ã‚N>Ä‚oÕ`7Žc‘ï±¨s‡±xÄ<–`qKÈ‹Ä’o¡°ô	Xö*,{@ËÙSŽåÌb9ü÷X®­VbP…•Xëa%Ó©XÉ¯ïX©ÆQ¬4Û\0+K8„•~ƒ•Ûfbåïa•;l±Jè¬’å„]üÆÄ.]ÔÅ._Ú‡ý‡ÔÇ©:¾Â©¾WÁ©u¾À­yV†[ëÂ­#XáÖï¨Æi=ñÁmVãtžà6Š£q[âÎã¶dYã¶j5ã¶^ÔÀé_nÇmS¿‡Û¦Ám;ý\Z·ý¶;nû—\\ÜŽïq;úáâÆq{¾àöÇmÁ ¯Â‡pÆ³+8cÁ9ÜAû8Ó\Z)Î¬Ÿ‡³ã»¼ÆÙyqöF8û°Ã8F-ÎÅ+çÂ¸;~¾wüB2Îu\rçêòçÝsÏYÂ¹Kãp\'|ôq\'h#8ÏH=œ\'Twªp\0ç³y\rÎgç?œy(Î\';ç›Y;»¹w¶õ\n.è`.hê!.xÏM\\ð™2\\pùîBýÜEo1.ô”.4°šù	Þ»wÙ¸wE¯wõD.òh2îzÊYÜõ/\0\\”«.jÚ	uÆEsºpÑ+…¸†.¸=ó¸›C¸›¿ïãbÆq14.Nç.®ñ.>ƒ»ußw«÷#.ñ]).iæ#.9-—šÕŠKÙ€ËˆØ‰Ëëà2ÍOà2Ÿõâîi%ãîwåá²gæq9Æ¸œò\\N/—ów—ûËæãò[ãŒUã€ûq%¶q¥ÄU¸2O\\yH®Âô%®ª.W‘ƒ«¾á{d^ˆ{¢~\0÷¤9W?k‚{š¼×À‹Å5,;á^¬!ãZœpï’õpï\n\\qïäã:\"pIÕ¸®à Ü‡xs\\ß]\\OÀK\\ï¡\\ï¯R\\ß3\\_ûmÜÇº7¸ ¸þ\0=Ü\'MÜ@„n0¸7Tv7ü…1:‚ÝéŒ[â¾,[à&¶ºà¾N—â&Õûp“®à&K\npßFÎá¦n¿ÄM«œÇÍXXâfpwq³‡Å¸ÙÉK¸ïtÜ÷ø=¸_{Vá~¿àæ\nÕqökà€Gq@-ð~#ä6Žƒq°”885‡Ô:ŽCnÀày>8d“>9¸‡¶IÅ¡“òp›+8LE\rCYÆáY8ÂG|sGÆâÈ8ŠG[wÇZ»Çéº…ãÙ\râøÒ4_6ƒâ·ã„¬8QK\ZNüœ„“lÀÉº6â_á–7\0qËxÜ¿#–¸³FxÕùxU¯–XˆWOñÀkXâ5ÜFñš¯cñh¼¶¹^Ç)¿ñ[~ãÜ*ü¦Ûñ›M³ñ[×iá·îDâwÖ[âwk2ñ»}Âñ»‰|ü^•cxC7*Þ0´o8ôoø5¿Ï/\0¿¯÷\0Þ(t=Þè‘Þø´Þ¸.o¬lÂ›¤YâMžuâº?Ä›¶àÍZ­ñæÕ ¼ù\"Þš)Áž(ÃÛxÍâm7–à¼Dãïã[á¶âÖºá~:ŠwYul1ÞÝar-ïtïšŠ÷“ˆñå›ðJ| w\n>°v	”ƒÄ‡|Ç_ˆßŒ¿ÈëÅ_uâC·}À_ö2ÁG¬+ÇGØŸÇ_\rá¯*4ð×ò«ñ‘¹9ø(½1|T}|M{Ž‰çãck“ñqæûðI:~øäÛOñ©j×ñ™:[ð™ƒ\'ðw#‡ðwÑð÷Jlð÷Cnâ³—­ð9\rø‚¾¶_H8ˆ/\"?Ã)ðÅD|Éöø²æ|™HŠ/Ž¯ð»€¯\0‘ðUãÖø*Á¾®ä¾îY.þ‘YþÉú5ø\'÷ñO\r[ðO‡žãÄ¶øÆ#‡ñÙhü³¼füó42þy–þyã|ÓS_|óÇ|óÌ;ü«{/ñoNøw”¯øÖ—åøÖAüû±p|{2ß©®ƒï´!á?¾½‚ï¿¾ßÿj?òg	?ºõ,~tð<þ³ùWü„—~rs~ÊÃ?\r?Ÿ…¹áØÒñ¿^uà«Mãõ™xÈ¡cxh‹5†ÁÃurðð«ÞxDâ‰YÄ£_ÙãÑäxü]<ž{OÞ¯‚g:añLJ6žUòÏÞõÏž*À³‘ÿ-Ï|ÇóÖâùi%xáÀ6¼%À‹6Qð’•íxyš^9¿¿Ø¦_ºq¿Tý¿„7À¯œô#¨tþ\"¨ªTmMªŸÔÇ5	êÔVÂêH}‚†ú Ak;Ÿ°AÆ#è†Ÿ\'è>Ð$lÌ™$l|9OØüBÐþHÐo…¶1ž¶»…v¸~#ì2ûG0üò…°o´Ÿ`¤ÙE0òüM0ŠUŒ¾–Œµ\"	&¯ÌËÂ	¦ßè³²M3ô Á|Ù™ph8œ`iz–`µ¿Ž`½Ù—`]¦F°æ 	‡©úÛwR‚-H`7×Jpˆì#8m\0œOn!¸ÛE8v\ZMp½=CpmzEpýªJp+|Lp\'ÄNÜÓ!œüëM8õö$Áë§*áô;ÂË„\0k!8È…p>d5áüÅ·„óoa„¡¿Z›ºm	“Õe	„Ð®B˜ÃNBþ!|[4árK!‚ØA¸ž{‰5Ë$D«¢7r	7`¶„›±LBŒn!&«˜»NˆzâÎáñö÷	ñˆBB‰!¡t†.!¤l_EHï¬\"dÆü\"dfÌ2DB&§™pGÁ#Ü=B\'Ü=ö“p·ˆE¸7åEÈ>-%ä¼o%äo.$p„¢)¡Ì_—PFÏ#TœF¨˜µ\"T®n\"T-Zªïijú#ú	Žçk#<ö¼JxüfŽðxnžP¨\'Ô³üù„w·Ü	ïîü&¼ÃÉ­ÝïyZ„6­=„nC„?»	þ}$ô@±„¾½„¾ëz„OYë	ŸÞœ ò	C•ê„aË4Â—ÍÂDôYÂWÕë„¯„Âd60sDN˜¹Eø¾Ñƒðýç\ná;)‘ðcõ\"a™Gø\\$Ì»ºæ#?þÞ¯&üm<D\0Ô ü7M€Î\0ÛRI€ÙÕeZDß	®\' BwPY\rìí‚ÕcñàñëKãZé¡M`Fò	¬\',gDà¸üûÞ\n ¤ËÂ{‚hAdNAeñz3‚ôÔO‚´W‹ ‹¿G5äa‘E¶*a1É°4þœ°l\\BX)ÅV&CÿìŸU\\`ÄU6_ˆjSTâjñqÍã¢†‰)QR@\\{¨¸.å0QÇ»¨ëÅ%nþÐDÜb¬BÔÏ¿AÔoç·o!n¯ö\"n ˆ»W9w×½ îFu\r>Ì÷t÷fˆ†ûì‰ûM¢ˆûO­\"8dN<PÒE4ZH4Qÿ@4ùÖI4¿·H<4G´Üx’h¢ ZÊ®­â–‰V5ÃD«ŸND+`ñpt1ñðŒ\rÑFîN<rõÑ¡Ùˆè€W#:FM]zw×’‰®núD‡D†‹ÄCâÉóŸ‰ž®`¢ç;uâ©4Ñ+¶†èýF—è=w‹èã?Jô¹+#žV¿H<íJô½D\'ú>I%úv¤ý*Êˆ^G‰ç[µˆ&7Ã\"†¹[Ã\'DÄpl\"ñ2M¼jŽ$^‹$Fjï\"^ÿú­{‚öxãI1ñæÇ\"bŒS1îÏbBÄñ¶ò\01éY.1ŸELËÞGL/ÚKÌ8|„˜9ÓB¼³Ë…x¯h+1Ë€DÌÕL\'æÂsCˆEÛ«ˆE¹¡ÄbW,±x‰N,Ñq#–òqÄŠÓzÄª½_‰Õ!×‰5‰·kŸÚm<F|”½B|TPN|¬^N¬ŸXO¬ÿu†Ø`nGl(ñ%6¾xO|éA|sï*ñÍ+3âÛ{ˆï.ô[\'ïÛßÛ7W;íF‰w³‰Ý÷©ÄÞÄ^Á;bß?-âÇ âÇÙb¡±¿ç±ŽJü”YE¨í\"ª·‡y{‰£¾mÄñâÛÄÏ¼âñ›÷#âôw\nqú×&âÌ]qæ·.ñç‹íÄŸˆâïGâèqqšüVI…|\"‚.Aÿt‰0\"ìñã$©®BD\Z¾#\"¹ß‰˜¥=DÂç)\"QœO$1ßÉ\"O\"Ýé&‘9£Md¯‹#²¿ï%r¥QD^¥‘Çh\'ò·ëùþÇˆb=w¢ÜwQqù-QQ7ATš]\'.>{N\\ìÏ#.íñ .õ\'.oÊ%.ÿ\"WìfH*u9¤U¨$U ImMiÝ{’†aIÓpœ´n]\'iÕ’–“7Ika?iÃíÛ$m²=i3æiîIÏS•´õÑÒÖ	Ò.Ýu¤]£ÒîM\0Òî˜’ÁåF’Á/Ò[=Ò×\'IÆº¡$SçC$Ëü’Õ£7¤ÃPU’Íl9ÉÎ‡I²oó!¥œ!^%9wÎ“\\ß’\\ª‰¤ãAv$·ÖÓ$Ok’Ç7ÉšHòX^O:…\"4ï$¬è&:‘JòR}Jòê8Mò~9D:j\'ù¦#ùæÕ|»mIAUHw¯&]\Zˆ$]¢¿%…í­!…ÕÝ!]î,#]1Ì$]!;’\"ÕH×¼¡¤ÈÖ¤HÓK¤ë÷BIQæ|R´×~R4¼ts¾†“»‹Ë*$ÅùW’â“ÆHñƒU¤„uÒ-<)©È…”²´”O$¥ñ#IéfH‡’Iv­¤Ì†¤;‡9¤;G’îý)\"eU¹“²Õ½I¹ä¤‚=Rw™T¨cAzM*îœ&•»]!UÄ7“*›7’j6GjO¿ =Òž!=¹¤Oª/2&5{í$5_t&½Äv‘^úAjit ½I¨%½Û-\"µ†é’Zÿ“Z1á¤÷cÏIíVÆ¤ÎSRçÔ;¥Oê;Oê“ú“>2IýU:¤±oA¤1Yéó­¤¯oûIS³¤í`ÒÌ¤ïbÿøMúqJúMŠ ýaÙ‘æïY“ÐûI\0)	øA×“`‰K$Øˆ:	žü‚ÒIÈ”F–¾D\"x%æé$âþã$¢)‚DžùK¢:Ø‘h—_‘h1P½VHbßi!qÂo‘8È\0¿ßš$0%	µI¢µ1$1–$ý-\'É\\à$¹l‰$WÆ‘”R’2º´¨~†´˜_JZ²–‘VbûHÿœIÿNzþ•Å’Unl\"«Ô”‘UÓÁdµÀ²ZY1yÍÁ)²Æ¤YUNÖüDÖ~!¯Ã;’µ|ÉÚgþ’µ{óÉ»È[Ô­È[^\"o%õµ‘·m¿EÞV¸•¼#\'“lH6úM6~K6}€\'›m5#›íK\"›ÝA‘Íi©d+{>ÙúV!ù°o%ÙÞ ‘|ä™&ÙaÃ²ãüK²‹IÙÅÞ’|¬¬‘ìŠ‘=ådtù$ŸDöô\'Ÿ\ZÒ$û@¢È§×m\"Ÿ6M$Ÿnq\"ûZôýÛ’Ï®’’ÏJ•ä€hr ÅrP2›´t€l}„üÐŽüF“|®ø/9ä`,ùByù’Ú.rØÆr˜#9ÌÔƒîHŽ“¯`.‘¯Ðä«¦ÈWÝ“ÉW/ù¯9ê’¯¹µ’¯þ&_¯ù@ŽRQ£œ0ä›fkÉ±«ÛÉ	gÐä[‘Õä[ìÈ·¿…“RáäBrjÐirêµÓä»=äìØ6rnÓ5rA„\\«$1N’Ü­\'—˜»KZ“È¥f6äÒxCr…ý!r•y5¹\nJ®¥“k*]ÉµoRÈµý(ri(ùÉ0žü4q˜üôŽ7¹!ï¹á9ùA…ü|M~á&%7o\"7ï`_)Þ“_w°Éo¿Ž‘Ûž\'‘Û=ÉéäàjrïÖ`rïrïùã·4rÐ0¹¿f7¹Ò@¼%%]\0’‡rÏ“‡“ÈÃ3åä‘×Åäñ^Mòdi\'yªbù{ÿ^òÏˆzò¯Ù	òoO8ùwT.ùÛŸ¼Â%.\nÉÀÁ@2(·Š¢3É`í.2ÌBŒ®H\'c¶rÈ˜¿ódìs2Nµ“LˆÏ!OL‰¸_d’ýW2ùƒ™nI¦(-ÉôK†dFÚ2³ò%™õ!‘Ì	·%s5GÉÜc†d~±Y°Öˆ,È8GÌ:‘²ðÛ0Y(j!‹YT²d;–,[h#ËÛ\ZÈJ•Q²2#œ¼È†“—ö—“—þ«™åÝRòŠêy%`E…MY“-¡hLÍQÖºÓ)šS)š²”uw¶R´jþP6¨_¡èü»@ÑxOÑ-AS6íS6ô¤l>mAÙüûe‹/™²£Ô™²Óbe×©k”]-Ê®ß(»`-ƒÃÃƒ_\0ÊÞøÊÞ¢$ŠáFOÊþ”ýÙ”š)ªz)F1ý”ƒg7SÌƒ)‡‚_S,ñ=+¯«W|Š:‚rØj€b£C±m¦Ø=Ò¤8„\rP×fRuvQœz(.‡Ó)Ç´3(nÒJŠ›Añˆ9J9aäH91½…rÒ/ˆâÕàDñP¡œ©ùJñ{p—â×—Mñ_¯E	ô²£ÆºP‚3§(ªS.öS.¢\"(—ÊK(áGR)áƒ]”+Õ2ÊU:†rí¬	%ò 3%Ú#Ÿ]H¹y0ƒrsÐžCs¥Ä’Ä”„Ñ1Êm÷”DËU”ô \'JÆC6%3ä$%SlO¹£¤díè¦dYÜ£dÕÄSîç¶Pòb¯Ròˆ@J¾…?¥Èj¥Èë!¥hdåÁ{Ê„„R¶J)·§TlÉ¡T¦=¤T™¡T¯r¥Ôl¤Ôø\n)5’”Æªo”g~”gð9Êsa\råÅ†”—«(Í9bJó\"‚òjKyclOy{±œòN#‰ò.è=å]”!å4•òÞ»…ÒöçúÌS:üþR:½F(]A•”˜¥wC\"¥/ÓŠÒW°…ÒÑ“Ò_$¤|¢ß¦n)¥žò¡%iS†òŒ)Ã\0*eäœeTe\reìž‚2öð-e¬m‚òùDåsz9åsû\rÊ+Ê—\03Ê„ÿjÊDç^ÊD·\Zå›ÅmÊ7·4ÊÔîË”©ê)Ê€D™m¥Ì.ß¢|ÏK¡|ïM¦,ø-RþÞ¥\0£(€o\n0ë8ôyâ–JTwS ‡(0ýßØ»Óxx=q÷AO¤ Éx\nÚÍš‚%S°+O)Ø,…¬yB>6J¡ÜU§Ð_£0ûSØIcŽGábÝ)ük¿)üêOá–0ŠÐ_H‘è¤S$¦I^\'Er–\"\'½§(4ª)Š²Ë²²èEYLñ¦,\'R–Ò(KEA”•U”•]Ê¿ŠÃ”‚ZêªìKTõ±ÇÔÕU%Ô5»8Ô5W?P5R+©šS4êú¶êzÆyªŽÖU÷W9u“Þ9êæªOÔÍ?4¨[v.P·ì{GÕ+m£nõ÷§n¤î„šPw{•R\r6n¡\Z¾\\CÝ7ú…ºo¡†jd¡I59®E5ñ¢ZÔ_£Zõ‘jEœ¡Ú’¨¶Åw©v^¨vÚTPÕqÝ9ªã›ûT§–ÝT§y3ªË±IêqÏ2ªkð*ªëÏ1ª+å(ÕMÏ…ê®’Cuï	¦žüdD=Õˆ£z[°©Þ´aªÏðõô>#êi§WÔÓ	ªï˜5õÌ¿6ªŸÑªßG&Õçª¿ÏkêÙ	ÔÀÕë©ß©ÝÚÔs›Ôó¾iÔóÝG©¡£\'¨¡tMj˜íSjØàmêµ`ê5ëÇÔÈÿÎFN7S¯ë^¡^÷­¥F½°§Þ4 Sc\\J¨±/Æ©ñjbê-‚5õöänjâºÕÔÄ„ijò¥_ÔäÁ}Ô”“ï©)á%Ô”–,jêsWjš³.5-IM+ãQ3\n^S3×FS3\r¾Rï¼›¢Þž¡æ>Só~PóùÔja…Z8X@-œ+£mÎ å< >Ðì¦>ð½D-=J-Yð¥–õ-RËO¨»©ïNQkQhjÝ‹ú¸íõqûfê“ýLê“ëÔ§¸vêS²’ú”óŒÚ\0¸OmÞvÚÜ\r ¾º7Nm‰j¥¾ÛØD}ŸäOmTSÛí\Z¨]»ÎS?ä™QûôŽP?ú^£~*ø@°Õ¦<Œ¢=<A>½:ü*:ŒQ‡%¨£†>Ôñ8*uÜFýêJýZÜDý¦B\"\ZPgí¨³\'©³\\ê{3ÔŸyÔŸM©?—žQç€«©Ç©×‡©ÀäT`Í)*XG…˜í§\"Oí¥¢ß< bìú©˜ú*–ÝHÅuyQqËåTÂL•ÈH¤ÒÜTúV*ÝHen›¥²FÎPY²ÏTÎ7•ßaJ¬M¢\nt¨¢ÙTYÛ{ªÜm\'U1yŽºxFº˜øˆº¼W‡ºòMý˜Ký×7KS‰6 ©\Z< ­ž²¡iºMÓh9LÓ„Þ¡­»8A[ú‚¦•fNÓ\Z#Ñ6´2i0/i°ž4í~m£·\Zm³ÁšžÚ4më­|ÚV‘*MÈ¶Íê*m[½	mûK?ÚŽžM´]š–´]Km´Ýwòh{ï¥íýQH3ÄäÓö\n¤7}§&ÒÌ÷\rÓ,¶¼¡R:Ð,ë.Ò,Ù4+—‡4[òÍ>ìÍñ¼”v´p„vtA—æ+¤93i.Õ³´c]z´ãÚ8šk†:ÍÝqÍ´B;Q™F;y–E;ù•Jóôô§yþZM;õMóÞý“æ}ð:ÍÛiŽvšhM;cw‰ægÓIó»LhÁÓ‚b*iA‹oiÁ‘´óX]Úy˜v”J»ä—N»$í¢…¶¥ÓÂ]Êh%æ´ëÍc´ëâ8ZT}5íÆádÚ81-FTM‹½³‡Û¬O‹%4ÑâH´øLíö±/´Ä¤9ZòÙDZJ¶-ÕH–jÙ@KËÚ@KjÓ2ví¤e\Z&Ñ2ÝîÒ2‹§hwÖiÒîT®¥ÝCœ¢ÝÐ²Þ|¡e!Üiù§/ÐòÏ$ÓŠü¨´Û6ZIv­4e™VÆ÷¥•gÐªÞ¨ÑªÓhul;ÚcÍc´ÇÔ[´Ç‚‹´\'‡šiõfZƒl–Öøn€ö,þ-í¹Q)íåöPÚ«\rÚ«B8íµá­e$’Ö\"¤½ñúA{óÐŽö6Ðœö>ÜŸö^á@ë|3Më*cÐº×WÐ;hCtÚHnmÌ>š6ŽßJû’ôŒöå]m¢ôm¢¬öuÕ ík‡9í[L	mŠ¾‘6mÛCûÑKûyò\0í÷ñs´?‹i€“«iÀ\Z®F¢¨4ÐÙ\ZdÓ\Z$â\röÖ\'Ð’1\Z¡wœFþxFõDÐ¨“`\Zm-‰Æ°£1=Ëi\\›]4þ\"°L§	?ÐÄæª4±_Mf7I“Åý¥É\'„4Åów4¥6†¶”0H[Ž<O[Ø@û—ÿŒ®2ì@_µð–®ª‹®\n¤ÑÕ¾æÓÕbú\Zåzº†XŸ¾ög#}½o}}9…¾¾®•ÙM×ª¸O×îyK×I¡ëÀ–éºgûéºÄbúÆ[ôMÛ^ÒõäÑõâé[ÿÓõŸ ë/OÓwØ‚é;Ëçé»ÄÇèYô½roº!Ê‘¾Ï\'‚¾¯ä.Ý¤žI?¸=˜nš7K7;QK?dœH·,¼O·¬Ö [MèÖQhºuÇQº5Í–n›õš~ÄAJwÜEw´,¡;zÂèŽ#éGu\ZéN«ÃéN4ºóÍaº3ûÝYaJw‰(£yîzq;ÝM?qoýäŸtÏŠ(º×A=º×ºOÂºoš˜~Ö¸Ÿ~Öå=ÀW—ÐF´zH<ûžÄí¥‡´:ÒC~Ÿ¤_¸rˆ~Qe„~åó4=\"ó>=âù=âkýšt3=R·‚~}õ4=*ö=šò”ÜIµO¥Ç%èÓã£µéñ©)ô„_Éô„ßuôÛíéÉô”ÍZôI=m8“ž.W£gœ_EÏ¨-¡gLbé„Zzæ# ý¾ùqúýzöP\'=›CÏÙC¤çª&ÓóÖdÓóLÈô‚»ôÂé…e–ôBx\0½Èy=½ÄT“^BÒË7”Ñ«’éµÒù¤?#–Ñ_¨OÒ_hÏÑ_@xô&}czSZ½ùÐNzóûçô—§-è-ê^ô7Zóô7{Œèo²àôÖz»ãIzûG&½ƒø˜ÞùÇ˜Þk£÷ƒ»éýØ@ú§•HúÀÃ×ôÑP0}tú!}ì´ýËX}\"É€>eRDŸ™¡ÿ\\_Oÿ™Aÿ5ïDÿ;3Mÿ»XL‡¤Ð¡ŸtØ\':üÊ:bãC:Êf‚Žú{ŒŽÂÅÓÑš:t´þk:zè:ã“@ÇDèØç\rt,Ú†N,5¥Ç-éDb$H\'ÇTÒÉÍÎtòàI:µC§.UÒi{é´_>t†~\'‘~•ÎxD§3(Ít&@g¥l§³æ>ÐÙ‹:çY\r[I 1èÂù]t1@—­?C—…¶ÒtÁš®dm¢/†}£/ÅEÐ—ÚíéKã^ôåèE†JÍW†êóf†j‹\'CÍ\nÀPKÌ`¨uãêübÆjc­Û#ÆZön†fò cÝEÆzµ\\†vÉj†Î	.C\'@ÉÐ=®ÊÐí1t\'çÝÓ›5*úó?ÛN0vDE2vÞ_ËØ»û+c¯°›axÍ†aØbJ…Œ}ýw¦Cî³³ßfæ§ÌæÀX†ùòQ†å£3›õë¶gŒ#ãŒ#ŽçG4GR60Ž,2²†ãO†ÓYo†s©?Ã™®Ãp9¤ÆpI>Êp)ûÎ8.|Áp+†3ÜPŸîó\rën†G7•qÂ5q‚ù”áy—ÊðÚ…`xeex=þÁð±0NO g`/~¦ƒÿÁŒ³¦“Œ\0#PŽd eYfœ{¡Á8_2Í)ud\\ÜÁ¸tî#TNc\\s~Î¸æNfDº3\"“åŒHe7ãzQ3#Ê£ŠcãÄˆm¤0â\Zƒñ•ÚŒ¤5Œä{¿É¥«)ƒ9ŒT“‹Œô°3ŒÌ5óŒ»Nw}Çw…û÷9]Œœ{Œ¼ÝŒü­éŒ|ÙFÑ¼\nãã£xï\0£xô£äÃFÙ¾ûŒ2Ú£ü‰\'£bÅ¨¸¿šQqgT¬Ô3ª=¯3jgÔŒ%2juâµŒ×ŒGTuˆŒ\'»>3žjE1\Zâ[MZWMM0Fó†@Fs£¹{ŽÑod4c“Í‚Œ·™‘Œ·„nÆ»]?ïr“­ÁŒ÷—‘Œ¶8{F[ƒ£=è£ý–%£#¸ÑÁüÃøp*ˆÑû\0Åè…•1ú5Ž1®2š\0Œ°c€´1y’1tÂvØÀÎ¹À~¾–1ò³š1ª_È}ö”1¶ã%c\\KÊ§80>»j3>—M1¾à—_¢_ó™ŒÉ–FÆÌqÆ8œ1·³–ñgÂXðúÎ\0œºË\0žÌe€¶g2ÀHäû%p•wþÊ@nüÂ@=00»¶20Ü,`‹\'1p«ø[×´ƒ|žA–·0(7t4m!ƒvãƒVÃ ÍN0èÕ*†Ü•ÁþFbpLZ@ƒ;™Ïà|a¶½cÒ\rR·1†ô†!ýPÏPîf,F82›f+Ï²+”gŒ/ÙL•OG™«n1U/Ç0UçŽ0U•fLõÂÃLuX sõÎ~¦Æ#0s­x\'SÓD‹¹Áeˆ©dnn<ÎÜ²~¹ÅÙŒ©?pœ¹ƒ—ËÜ­¿‰¹gàsïž¦¡ö+æ~­\Zæþ=ÿ˜ÆÁMLãÂAæAXÓtµÓôži®\rgšçÒ™‡î3µG3áN2-ÓÞ1­sLÛw¦më¦-IiwëÓ>~=Ó>w’i_õ…ydìóhˆéá1Ïk0K¿1,3»72]õ73Ýžïcº[µ2O(T™ž*Lï™¦ÏGÌÓ!×˜gTç˜g0UL¿){æY=3æYÙf@¾>3°¦y®Æ¼˜e†ž?ÍßKd†[˜áGŸ1Ãi@føâórÚ?æåû™W-õ™W‹.1¯b1¯÷`F‰\"™Ñ›¾1£c[˜Ñ™uÌ›Û˜7k˜±i\nfüáf¼ï3AÄ¼ú„™<:ÂLïžafžócÞ1úÀÌ¾SÀÌnyÁÌ†™ÙŠ?Ì\\q83ïX&3º‘™\'¹Ä,Rób9w2”<f>$1K<©ÌRÉ5få¡mÌJéCf•‡:³ê}³ZÓ‰YSÐÅ¬)^bÖúo`Ö~1ë‚¿1?ºÎ|rî³þìÆw‘ÙÐ0Èl¼/g>‹zÉ|öw³)Â|½e;³ÅÍl¡$0ß<š`¾=Bg¶~Kb¾_Ë`¾<Éì”}f~8¸›ùáì³çT\r³§«€Ù{¹”Ù¯y’9¸*›9|ŽÍ;Çœx±Šùµ<™9ÝwŠ9‰bþø1Çüùt+ó×Ekæïú|æ¼c\"s>}š9ÿg€¹à)g£¬˜ ó(&µƒ	ÞéÎ„Ù1áÐwL8ï#!‘0q‘<&þø;&¾ —IˆÈ$Ì{2‰\'˜DŠ’IIå3©æ™´Êd&\r cÒ`ÆLº8“þÌû?2˜Œ¿ÍLNe“CùÃäî˜grí\'˜’°0¦¤¬’)Ýòš)[eÂ”Õ`ÊZ2•»â™Ê!sEØÅü—»†¥¦ÂR÷¹ÅZ½=›¥Ñý‚¥Áç±Öy°´ªÖ²´/6°´û¼Y:ÙV,ÝëXºt3ÖÆ,oÖ&c$kSªkSÍŒÐYÛOmfíÝÆÚë­Í:`q†e2¿u0¹eßÂ²¸}uH}ˆuH+še£Ã`ÙØY¶j,[†!ËÎÅ“ejëHúk–£‚åäÇrzÀr\"€YÎYS,g\Z“åR7Îr!N²Ž—Ø³ŽyÏrí?Ãrë¶g¹êYž¾“¬S1Ë¬S#,¯„–·å}á\0ëÌµ§,¿“&¬³íV@Ê+àýÖ9D\Zë¼ÛUVH\'+$;R7Èº4Íº4íÆ\n_©e]þ9ÇŠ¨¨eE€6²®ØÄŠ¬n`EâW³®ï±n®5bÝÜ™Ìºéõœ›ú›ç\\ÂŠ£?`Å¿yÍŠ_4bÝÆ^e%fü`%5ÁXÉ~Õ¬”äqVJãYV*(ž•ö8œ•~¢Ž•iãÊÊ,Îbe	˜¬ûŸ³YÙsY9mÁ¬¼µ‘¬¼T+ÿ¤«Ð²‰U8_Æzðè;«tÏ=VùñlVeÄwVå[{V¥°U5°ŸUõó2«Š`Õ:*Xµ¿o³ê\Z®³ê\0Xþ³ùÉ92ë©ÅOÖÓ’U¬‚«q’õì‚«)ó«ù€	«¹~€õê1ëÕw\rÖkWëõ…«¬7©I¬·O‹Xo•_XíÌW¬Ž¸S¬ŽºdVÇ\"œÕÕ«Âê©ùËê¥>fõÑcõU(Y}Ê¬Ák“¬¡+;X£«¢Y£•¬q»^Öç®¬/-¬oõ×Xßˆ6¬©7XÓŽ»XÓ¤‹¬™‹¬™8]Ö”W¬ŸXÖ¯‹e¬ßUPÖ\\Hkn&õ§Áúó§…5ï\reÍG|d-ôÜg-LZ°\0ž;Y€Ö,à\0†ª~ËßdiÙ,hÏ~’…XY`¡¼±P¾7XƒY¶3E¨—°ˆµÿÁ`¥ž,rÃ\r%Ë¢n!³˜\"m+v‹•îËâªM°¸^‡XÜ{WX\\Àq‹\ZKPý„%Úý†%r-g‰Î.²d\nM–\\k\'K¾²—¥4Ç²7º±3°–,ÜYKøÖr‰/[åt{Uà¶:^ÉVçýa¯†³×„³×äqÙ\ZZclÆR¶Æ³`öZëöÚ‰9¶æW2{óm¶–Ô‡­ý©€­ƒt`ë&M²7æleoöÏgoý˜ÏÖÏšcoß´–½¸ÂÞý¦Œm`¤Í6(>È6è–²÷ø&²÷–:²÷ö´°÷¢ãØ†ÞÕlÃ,&û@ÿ2ÛÄTÂ6)+bŒTa›þD²Í¾¿f›ûÜeòºÎ¶¼/e[E[³­bž°­î`Û˜u±m¤l»p=¶]\"ƒmdÛßHdMub;>e;…RÙN&l\' 9ÛÙ¶}Ü¸’}BeŸã³OLeŸÄ„°=™ÇØ§ÈÅl¯ä*¶wî;¶¯Ì>ó/žðjš¸ù*û\\Ã_öyÕLöùñzöù¥{ìãEì×!ìãìK€v(ã;ìe;|ûûŠ³:ûJ€?ûÊÌ$;\"ÂœQÇ¾zx…}möûÚ¿3ìH«Õìh…/û¦œÉŽIÌcÇ|mfÇë«³KÙ·ŠØ‰À¿ì»^vê›­ìŒí0væÚv&¬Ž}Gr—}gy„e²‡}qžÍKbç¾açwO²ó¿\"Ùùˆ@vj»ðx»ðÃIvÑ¬ûO1ûÁÏWì—3ìò+ŸÙå­Yì\nO/vå	svõÚzvÍt-û¡œýpÏ~8\nc?œa?r˜e?òhd?Ýa?‰7b?ÞÆ~ªý‚ýtÏ;vã-5ö³ó^ìgIÙÏÄì¦µfì¦ôöKãHöËóÕìWv;Ø¯g^±[²?²[òØo®*ØoÍß±[#ÙmH}vG.†Ý]ÐÌî®øÇþàÀîõÙÏþèÍî7re÷3éìO6;Øà.öð!\'öø§!ö—Ò\\öäÖ{ìÉúQötÁ)öÌMölZ7{¶%‚ýkê,{Îrœ=—}‘ý÷¡+ûoˆ\rxÂžüËöÛ°Á?N°¡;ÆØP¿6ÜÁFlƒ±§ØHJ>…ÝÅFß¹ÍÆÀ\nØx­q6ÑC“M6ÔdÓrØôØ\rlö%›ùƒÍ^~ÍæàSÙÜ„&6¿¢”-°hcï²%žÿØ\n•Ÿleú4{i¾ˆ½$ØË^9µ‰½2y‹£²ýG}ãgõ¦ýœÕ£û8\ZÆÖk8kÕ‡8ëœqÖ½tå¬dp´È8ºÞ\"Žîó\nÎæ6ŽÞªŽžì*g+(”£õ%g›×g»m.gÐ†³“~“³W±“cT½…cô{ÇøçŽÉ*%ç \Z‹s0;spvÇÜmˆcþÃ•ca;È±¼ÖÏ±|~œcíücí>Î9,{È±ÙPÊ±1›çØ¨slWš8vÇ²8vi‡<Ž£ñ_Žc]/ÇxŒsô«Çù†&Ç¥Â™s|\"‚sü·-ÇÕ$Šã–šÆqÿÙÇñB=çx¯Ñçxßq|,9¾>ß8¾éÎœ3çº8gÊ9~&f¿ÐŽ¿lçlö9N€ÞvNÐ	}NpÍnÎ9šçóçü\'äfçÒ!(\'Iç\\¾àÅ¹\\ØÍ¹üÊ‘sE3òå\\Õã\\MZÃ‰òláÜ—snf97=œ›/rnŽýåÄ€ª9ñÃ­œ„ïœÄŠÍœd×=œ”Þ;œÔ5DNªñ\'Õl\'õd\'ýëmNæ½,ÎÝ±Î=¿dÎ}|\'ûü]Nö`\'Gtˆ“_Å)ð_Ã)ˆâòb8EÂ½œ^}œEvœ†§ü¼§<ƒÈ©xyšóð&Ÿó0>ŒSë{™S½SgVÇ©Nç<Z.à<Y-áÔkžâ4Xœå4®ƒqž‘Ÿq^qš´‹9M\rœ—6IœW•78¯\rœ8-ö\'9mW\"9mmœvë`N»Ô“Óé¢Æùð_Üz¶}ãôXÁ9=/ƒ9½—Éœ~¿çœO÷Xœ×œ¡–œáèJÎpWgtl+gl#’3¶{ˆ3>;Ä™˜!p&xÎ7]\Zç›,ž3ãÂ™Ö~Î™néàL9Ä™ñLâÌ„œÙ¶`Îwè?Î8ÎO¿­œ_Å¦œßïùœ9‹ŸœßÎßuO9àíG8àw¯9­—8¶ „éÁAÀ¤]8-ã`^rpêºÜyÃouã\Zbƒ9‡l[Ë¡ô94}mp‡yá+‡9z†Ã\ZˆäpË8¼!Ž@û!GP‘Æ`œ9ÂšŽ8èG²W#þÈ‘ r92¶‚£Ø´Š£ÔûÀùwé\ZçFÄ]eBãªVrÕþÿÜ\rs×­½Ï]·oŠ»®Ó‡«¥ªÆÕÚºƒ«ur…»Ácœ«sg’»	£ÉÕsþÀÝZdÃÕ×¡põÍ’¸Ûš¸ÈJîÞ#6Ü½ãË\\C\r®!žÌ5\\Îå\ZýÓá\Z·sMÖŒsMX@®©ÊA®©™3×´î(×t¾‚k¦jÆ5SFrQ³¹Vië¹Vm‡¸V|×®Ïu0ºÂuÈºÏužçº†õp]ÿ˜qÝŠþqÝ#¹îÐîÉK&\\ë®o‡ëïú‹ëZ›ëÖ‹`PÏ\rBÛqƒkÜsy—¸çPÜ“Xî§dî¥#¥ÜÐšCÜÐFKn(6ŽÕæ†Çâ†ƒèÜ+gÏp¯4p¯M¹EÜ«)xn¤Á7nÔ«‡ÜhÍõÜèê+Üî¹7ß\'rc§”ÜXô,7áà6î-.—{ïÏM<+ä&Ê}¸É+×¹iã<nºŽ7ýÂ9n:Ç“›Î5àfl5àÞÅ\\äÞÇr³[Z¹Ù3µÜËnÎäin®J7ß›_éÎ-:VÌ-šrH0Üb±·Ä/”[~ò<·ü\\>·²IÁ­Éâ>:îÇ}ü…ûd#šûô1…ûTò™ÛPãÄmXªç6æä6Rm¸Ïý)ÜçMÁÜ¦C-ÜW‚+Üw•ÜVV4÷=m™ÛþŒÛþø,·ËËšÛ•ïÉíá%q$Rî`.;2šËÛü™ûY]‡ûùŸ!÷‹¶„;Q´–;ÆýzÅ†;	ëä~síâÎ˜jqgMqg	ÜÙ¥ƒÜï›§¹?\"¸?\"M¸?wáþ÷åþZ½–ûK²Èý³Î;_t“;ÏSpNü÷ÚÀ–s]>\\ òãÈUã‚‘H.Ä~’ßw‡§©páK_¸ã$.¢Ñ›‹TTr1àF.>:ŽKtûÎ%À¹dþ.ãÆ.‹¼Èeqƒ¸ì~.§w—§•Ìå\rjsù“Æ\\ñÎ%®ä›W\"sæJ7K¹²çÖ\\ùš^®ârWÁã®P¥ÜZOeé3oåOõÒUžÚ´	oõÁrÞêÄK¼5î<’³<\rÔ=ÞZ²!o½j?O+å.O‹ÝÈÓöåótãÒxºbosJ:OÿIoæoûŸLÞvƒ·ƒÃÛéð„gªÉÛóÖ—·Êàí];Ê3Ü¾g(ÙÍÛw\'Ž·?é\rÏ¨Mg²…É3i]Ã;˜)â¬ÚÄ;ø(w°í+Ïøgö.‚g¾\'ˆg¡oÅ³ø`Ï³ücÄ³‚eó¬”<ëõ‹<››—y¶«~ðìnzñìïòŽ¼Šå9Èæ9&iòŽ¦ðŽ–MòŽVèóŽâÍyNh Ïi)—ç¼Æs‰ràÿ2Ëó`mæyˆóx\'Ìýy\'75ñ<ëŽò¼*Ÿò|_©ó|¿¼çù¹›òü®Ÿâm%ð9ò.¨ð.Y#y¡—Ëya¿žóÂ˜m¼+‚yWi¿x×Ãúy×ÓKx1Û?óbd½¼ØÎ5¼X‘wâ/Áá\nï–U:ïö¥Þí«ûx·ûÁ¼Û+f¼ÄÖ^ò^0/uð/\r<ÍË yñ2³êxw^óîyžäÝÃáxYÏxYƒ»y9Iq¼¼Íº¼¼ür^b/¯põ^Ñí‡¼bË\Z^©é;^©Ë¯¯Í+ÛÆ+“ç•c\nx^Å»*^¥¾+¯Ò†Ë«ÖùÈ«&ŒðîoàÕþÓæÕIþòõ:ñê½îóž²æy\r\'ìx\rm;y\rÞ‹#RÞßK¼&õÞëì#¼éiÞ¢ïí·Q^›¡¯¿×t–×1$ãu^*á}ØgÎûp.÷¡´’×ƒ$ó>ð>1Myë\"x>_x%º¼AgÞàµFÞ`Œ&ox²˜7SÅŸäAá¼ññ{¼/‡®ò&öPxßBÍyÓÕwyÓÒ`ÞÌ\'9o¶çïûmÞ/íï¼ßÛø¼9|1ïOÌ\rÞBÄoá„÷W+‚÷w1›PAð\0±y€P„ççA<PøVøf\0ºË™E–ðàzHzç~zb+z¡”G«æ1Îlã1ªñØ·Êyœ=v<NÎ/cÍãîþÉã.±yüÍ‘<~HO°ÿOÐZÊŒ$ðDÌ\r<±AOªÊSh‹y\n1’§ü¹‡·xïoñeoQ,á­”yñUvYóU>“ø*b_þªºw|U-_…ã¯Ñ_ä¯9†ãkÌð5Íªùš‡Tùë6.ó×‡òµlNñ78MòµÃŠùÚFü»‚øÊø[7äo½BàïtßÃßeÎãïú4Ìß]¢ÃßƒÐçïýwŒo¸q„¿_^Ë? jÌ?ðÅ‹\0ð”`‘Ä7âùÆM|“¬\'|Sÿ|óý¯ù*m|Ëß¥|«<ßêƒ5ßúü2ßæÔv¾ÍãŸü£’l¾ó•«|gÒß%rˆïÞÅwKQá»Çfð=ŽZð=òø\'ÖÙòO2nòOJžòOåÚò½³øÞ‰Rþé²×ü³Úãü€\Z#~\0ÐØ1ÄÊ¾È?·ë1ÿüçþù™+ü‹¿ºù—ñ/mûÅ¿´OŸz ‰*¹É6â_Nïå_þ„áGlžåGÔnå_Ûûù ýú\0ÿzò~Lc-?v·€Û¼—;\"áÇ¢®óãQü„ŸÍüÄü1~bu5?é®‚Ÿ¤ôåç¿ççÃ;ùùK\"~áþ?ü¢mûùEY;øÖtñ”Ÿâ‹pü’MËü+<¿âî9~Í*\Z¿Öq#ÿQtÿIjÿ)FÁoˆÔæ7NJùÏÒ·ó›,¢ùÍ[Lù/¿Ýâ¿ÒZæ¿¾þ“ÿ\Z•Åc×ÄëÝÏd€ÿž½Ìo_âwìÒäwØzþ…ßñËïL«áwûØò{Õ—ù½¶h~ÿ¦&þÈ³ þhÇcþØ<˜?ÙÝÁŸŠÍãOý}ÁŸN¿ÉŸ~RÅŸMð¿ïÚÍÿ	¯âÿÊ*åÿNðç‚Ãøpþ‚Ò‹ rù £|Ð“>øñ5>tM	ZÃãCQïøpB\rúÅÇø¿çcž_æc­øXû§|lÿ]Ï\'ì1áEðI±×ø”¦ß|š<‹Ï ð™O¸|æ«e>ë³=Ÿ5ù€ÏÕãóC_ò¥ð«|å_#Ê @åÅej¨L VÐ.Xsy·`Í“ËÌÁÚ-kwiÖú>¬].hÖ\nš¨U‚u;=ë>k\nÖ[\nº\\•‚Í®o[îílÍ~/ØJÿ#Ð»!Ðg¥¶Ù¦\n¶×}ìÌ)ìj\"	v›½ì.Ç	vwiö®WìÝ\nš&\nsêÌ>Œÿ˜ìzÆ	LO„Lÿ»¦¦ŒZ™Û.yAºÀ\\‘$°xóK`¹ýµÀ²ö½Àª…)°^¿,°Þ(°¶ØXl9þYàÐvZà¨uNà˜j\'pÄØŽnu¸®—\\mÑ7û·{Â‡Gà8#ðèN]x-8ÕùZàÅ¢¼aýÏ›7‚Ó\rþÁkAÀK]A`]»àÜ±(Á¹˜àüzÏo)œ_\\„¨å\nB¯B``A–#¸Ø(Õ¿%ÿw@p¹´KpUÇYpõ€¡àzt‚ zµƒàÆÑAL¾¿ F’)ˆ½Ü~ ¤ð÷	R®R_CiN:‚´`;Aºc€ ýQ² ãø² S‡&¸SÑ*¸{ò”ànA„àþÑ<Aža“ @#BP~{¯ 2ã¨ Æ·JPóU*¨ù‰<œ<¶©Ô/H\rvY‚†÷PÁ3Uà™õˆàù1sAóvÁ+½ZÁ«}ñ‚WvF‚×Á	‚–m•‚–ŒjAë%A«G¬ ­$hoLt¬)t>§	ºcmnh>>\nzŽzŠ}=µF‚žÑ:A(DÐÇz(LhU¯û]_½*UÙ%³†\nÆÎ	Æ.´¾„1_²‚¯¥`rè¥`Rj\"ø¦Þ(˜Ù.ø±!Kðã,HðKÝI0ßwF\0Œ\nÀiWà;&(+€ç`OºpóaÜyI\0ú+@:ëÁ”U€’´;„+\'„\Z™€d´C@^Ó-  &Ô·ë4Cª€fW\'`¦—X÷ö	Ø!>vÛU¯´X )},fÈt,²ïÝ%¨F°¤G,9,kô	Vc„jçÏÕªVÕžÆ\nÕºÈB3k…šá—„šQÂ\r^p¡ö¯³B}Â.\'…z—œ„úz…ú§ý„;;„»¾…Î}Â=æõB#øo¡‘LCh²ÎQh\"Ø\"4\r+šêÍ“M„_3…Vž	B57¡\r°[hëQ&´_Ï:nù&<ŠsºÀl„Çíºi½º9Ô	ÝX¾Býd¡‡Ãq¡L$<q{Vx¢ <¥f.<¥œz‰…>zzBî3áé8žðtæfáéš9á™¸|aPÕˆðÜûaHA…ðb6Oxq.YxÉæž0Ìµ^n&¼<ç*ŒŒ^w^Gö£Ü\'…Q\07avLxC÷ŒðÆKgaÌ¾taÌ©ßÂX×,aì…}Â¤ïúÂä¶«Âdn™0™Ÿ#L¿R.Lï{+Ìxì,Ìüb\"¼{»JxO7_xßK(Ì†œæ”íæŽ¯æ¯¬DE	‹l$Â¢w>ÂâhkaéI¶°4ßBXÍ½/¬Ö¢Í…µ‚[Âº\r„u:@a~DX\'¹*|œÞ)|º¨6†c…Ï«¶_¯¾F\n›ÊU…M‹íÂ—“ÂWyÂVc¨ð}f¡°Íéº°mz°}[¹°=x“°Ã6\\Øñ‰\"ìü¡)ìõÑöÎW?ítl ì„#*XáÃR8ÂGGû„£ÌCÂñáø;áTô°pšÙ*œq»(üžñÍ„?ÖþÐiþ>Nþ¾k)œ£å\nÿ¸¿þ¹ÊþÝ!œ8&>&ŸZ‚£ÿ	Á……(AŸÍÜ$Äl&1	6ÿÑ#Ä:)„Øk§„Düy!©ê€|ÖZÈh|\"dméò…üÜ.!ÿéQ¡`Õk¡°ÌW(üŠÎ\'\nÅN“Bé]¡”é)”½ÊÊ~ÿÊ¿Ç\n+KBå›páâ¾gÂÅ\0á\"³N¸tjT¸„‡W¨,‘êže‘êu‘ªrE´º}Y´öF”h-â–h-eQ´>-Òòi[êŠtdS¢MÞlÑ–#ž¢-+q¢í‡‰ö¾{ 2¹¼Ut0¿GdÖ¶Ud±åÈâZthS¨ÈÚó³èð•8ÑáWÑá\'D‡9\"{Â-ÑôN‘ƒ×è¨-Lt”¢)rz*ržQˆŽ¹ÆŠ\\wùŠ\\ÝD®Í9\"WÆe‘[°¡È]õ«ÈC£Etjð·Èëò?‘÷G‘7ÆVäMã‹Nž(™Kùï¸(:›#:;ÄÔ<‹ö‹‚å?DçnùŠÎï°…¬)]H@‹.Š.ýçÇ%„PZë/ºÜ»FñqTAß$ŠN‹®Ž¼];T#ºvU!Š4Ü-Š2|!ŠîEgéˆ¢qÇD76†ˆn„‹n°EqtŽ(ñGŠ(q!J²z)JvÌ¥¼ÃŠ2ñ2Ñ=\\žèþ¨(;fT”ûh(·ÿš(¿,*tMÂDÅ‹D¥úñ¢Rë‹¢Rç¢Ò¶¢ÒŸ¾¢²h5QÙï¢r=²¨ò×œ¨Š=)ªú·OT}>_TÃÔ=L? ªM.ÕË=YZÕ©=uƒŠž×h‹^ly#zQŠµ<ó½Õ+½+9+z‡}\"j=^\"jm>&zmµÍšŠÚ3»E^Ë¢.ó\r¢.·¢n@™¨G¯]Ôç–-ê?ì!êw„Š>==\'úD9/\Z<É\rm<-\Z._\r¶ˆÆªtE_Œ‰¢É£<Ñd|è›±¹è‹ šväˆ¦=D³×A¢ìß¢ßø¢¹`¨hna\\4Ç;-úó,Gô××FŒo“LEÀ¹§\"pPœ~A.‚\'ˆ\rX:„%ÂÖa¢uD˜Þ¾±^D\\Ù\'\"}ÿ&\"?êÑ››DLK„ˆuÈIÄ¶9!â®Éñ6{ˆxânÿL‹HÀÈ	8a\"ÉŸt‘´i@$-RL×Š”¦šâU™™âUõSâUmŸÅ«~ï¯¢9ŠU5ÍÄªqbÕ\0±ú3\'ñê„÷â5;õÅ\ZÔzñZ›±–FµxCùw±n|§xcëQñæÃmâ­;Ä[§ÍÅú¥·Ä;âÄ»ìÄ»mOˆ\r¾ï_{VlŽ››+†ÅŽ…b‹´CbËSqb« ­b«òçbùz±­ãg±-¯BlÏ)ï;ÕŸ;¯Û+vù‹O†<Ÿ,¹#öSÅþ]šâ€Ð4q gƒ8¸ÈJ\\æ.–­ˆÏigˆCDcâ¯ˆ/?_J9!û±C|¹ì€øò[ñµÙyñõùAqÔ_ø†÷¢øæ2A·J&Ž·Ú\'ŽŸ‚‹oŽ‹o‹uÅIs¶â$Cœìí$NNM\'?8,Nþ»Zœ¢_œ\"-§%‰S—ÒÅi¨·â;ñ6â»eBq¶^‡8/tXœ÷ÝC\\xIMü \"I\\Œk—¤˜‰KhqÙ‡Nq#®88$®è; ®øtY\\9e+®rÅ‹k>l×½x-~\\¾^\\ÿ½U\\O~+~Š:)~º$7Ô”ˆH½â^µ¸Ñg¿¸ñl©øÅÁfñ‹ãâ¦…OâfÿqsL™øåqWñ+“¿â×Y8qË¶_â–+«ÅoŸŸ·jœ·½²·‘ŸŠ;JïŠ;ûÄÝ~“â}UqÙMq¯ç¸¿ý§xp6Y<ì.Wï[øˆÇ\'ÝÄ_4‹\'‚kÅ_×Oö\\OÎ\\O¿‹g÷GŠ¿³£Ä¿†<Ä¿WÎŠçmÅó+ñÂ¾1Ð¨Fœ‰Câ»ÄÐí·ÄHR®]¼JŒ¹~VŒ÷Šã\ZÅDÈ!1y{¹˜Ü³YÌò…‰Yw%bVIÌ>!f—Í‹E±è)–;ÀÅ‹Ý|ñâüIñ{R¼œU+^¦JT~LIVGI46ÄK4\rÍJdýp·DÛ÷ƒD÷ã¼dS€‡dóQ7É–ïA=A°Dÿc¶dû¦k’]öá-C‰AÚ>ÉÞ‚\n‰á¹’}Yc#Vbz@ ±èY+±LN—X-\\–.CJl\Z]$6¿L$¶×Hl“îKlË.IŽÀ7IéÓ’£õ›%Î|´ÄeqµÄu»ÄÝi½ÄýìS‰‡ÊsÉI[K‰gk¼Ä+k‹Äç˜£ä¬]—$À×@8–Õß‘}*	ž2•³Ø’ibÉòCÉÅL ä\"k­$ô\nQr-·Yé¿Qrf+‰º2-‰ªß$¹Ñà&¹Y±Yû-‰¬•Ü*aInµ–HnçhH’Î~—¤Ã$é£«%™Mó’;ö’;Ñ¯$÷þ…Hrn.Jr\'$yFþ’üì.IÁQSIáÙIáóIakž¤¸P.)nð—”ÈwHJ‡ã%oK*=I*r$U}a’êÕŽ’ê8I«DòD“ÔfÜ“Ô¥a$u¹Ú’º–Iç»äÑì²äÉ:„ä‰ž¾¤é8VÒÌÝ#y¹æ”¤¥<TÒÒà i]AIÚé’N¹Š¤{ø“¤GÔ)é-N“ôƒs%Ÿî$HÆVa%c“%’ñ¢d³K2±í³d2ÁE2µdºò³ä{À²dn9T·€wo’@ÞYJàð=8ÂJ‚jBH0\'%üž*	Ñ5VB:°EB\Z_æ³%”cÖJà˜„rëŽ„:£!¡’žHHX×¯J¸—¿JDå?$bõi‰äÝ¨D2a+‘7J´$‹·p’ÅºC’¥]Ö’¥Cw%ÿÀîÒU®MÒUå©ªU¦T5Ú@ªf\'Uƒ}–j@÷H×J×.èHµYKµ™^ÒÍ·~I·”©I·`Ì¥Û¦	RN§tOv¼Ô°\"UzÀœ/5ã¥&w–¤&ÄËRÓ§R©Ù†ŸR‹áéáÕ¾ÒÃËw¥¶X©½­Bz:/uüî&u\"˜JÆKýÐ‘ººKÝÙW¥\'”¤^Ò©Ï¸½ô´ó/©ßG©è#éÙu¥šþÒÀU…Ò ÑÒsQ!Òó}§¥!¿I/UKÃƒþH#Š“¤W}¤W¥õÒk¼·ÒÈuÿÁp’F_9*½é¨”ÞLÑ’Æ‰f¥ñ7B¤	MÒ„né-/é­&uémý`ém¿.éí¦ƒÒ$·Ò”˜\\iÊ‹jijb‡4mRWšë%MÏÛ-Í¼óNzÇ§Wz7ð‰ôžI˜4‹²YzÇVi^}Š4¯{›´è–•´xs­´Øï´˜¸_ZÚ°NZÞ‡‘V¬H+wOK+[J«,Ó¥Uñ)Òª7ÖÒêóZÒšžÏÒ‡™\rÒ:íFiO±´®©Yú¸xô11GúÄ%}ÂJëu+¥õ÷ŸHë\'¯HŒþIîôK_¬aK›W©H›?ÿ‘¾êr‘¾ö^‘¶œ,‘¶¤dH[xéþGéÛ$Kië­kÒVü:iGàgiÇ­`i\'®WÚåp_Ú}ÛRúáM¨´7¥@úñBú±¢]úé?GoHjZ¤ƒãÒ¡G:Ò¡A¶täp¶tD0-õ©’~‹ÿ.ýV,ýö,Cú“þ¸tPúk£»ô—Û¼ôWš£ô÷]º`=%]ÀHÿö¥J1RÈµ×R`I\n@HáðP)âE¼ÑþEŠ¬ð’¢jt¥Xó)6ew€,Å_¶”â×I	¥\")ñæ;)ù3XJM;\"¥Vž”R§:¤Œ§o¥!_Êê\0HÙàR¾FÊÍÓ’òûì¤\"ûoR‰	]*­Ke7\r¥Ê„5Ò¥G¤KPéŠö™ªþ)™ZóŒlõCÙš\r­²u«eë\"‚dëÕËÖÃ¦eë…Þ2­ò/²\rëûdÚùê2í—÷eÚãv2Ýå»2½@²lëõ£²­À;2}“q™>r³Ìàão™T!3L˜“&_‘N6Êö1æeûoÄÉö+ 2£u­2#‚ÌØ<Vvðn´Ì´Œ+3;Ð!3ß3\'³H0–Y¤¾’Úz]vh·³ÌJã„ì0AOf_Û/³_ËŽð\'eð2ÇW)2ç[Q2çÞ2WÐn™›÷™[9Wæý-ó˜•T7”Ü/•y® ;Å¯‘ù¸úÊ|ZOË|¤¥²3ÏÎÈüð52ÿÉ²@§bYð| ì\\X©ìüž—²óÍd—S¼e—³h²+çQ²+HGYk·ì*í¼ìª\"Rvmß^Ùµ’Ÿ²Èã·e‘±õ²È¦<Yäˆ,:ö·,:ù¥,˜(‹%¬•Ýš|,»\r~&KlË’Ô£d)Ãeñ²˜ºìÎÍ²;Ã,ÙÝ\rº²,ÝYÖ»]²œ©²ÜÂ!Y.2L–W—å#—e<dÅ³BY‰šHVòÞIV:Ñ%+»–)«ø\\(«¼{KV­Þ$«Ñ,—Õ\\ËjêKd÷¿‘=l”ÕnÊ¹reªNËÓÅ²§?©²§ØrYÃÚ;²g·ÝdÏz2d/=È^5–Ê^áe¯•»eoÒY²6k°¬ýÄFYû—eY;›)ëdÕËz’7Êz1²¾úÙÀeUÙ\0\"L6¼ºI6¾&ö’}ëÖ”}[Ì“MUÈ¦iWd³öu²YX‡l–Ã”ýø´EöÓk¿ì×n¾ì×D±ìÏé›²?µÃ²ûbÙ_\r ¨’·—É ÎÉd¨{e(?C¦¯M†ÍWÈp7;døÐ¾§NF¸+#>¨”‘U/ËÈëÂdäþpÍ¢FFÃ’dtÜzÃ8CÆZ›#c­Û+c1÷É8;d@ŽŒ›Q(pjd¢ƒçe\"k[™èUƒLú¨Q&›J“É/çÊ”\re‹jtÙÊmÙ¿|3Ù¿º;rÕA²|õG¾æ`–|…|MN‘|í¤‰\\óýnùº½òu‘ëåëw¨Éµ¢dr–A¹žƒ—\\ïž—\\ÿ½‡|›þqù4L¾cå»|÷`²|¿\\¾wPMnØ#‘ï›,ß¿n£ü\0î±ÜÈ<VnôG[n¼=Wnœ•/7ž˜–<Þ+7Ý~GnÖ-?äl\"·\\;+·üÑ,·2î‘[\'Êo÷”®·”Û?ü#?¢~[~Ä6MîPû\\î@çÈálùQ‡ƒò£ï?ËN4ÈßFÊÝ^ÉOŒjÉOHÿÈ=7ŽË=‡\nä§&få>µ<¹Ï‡PùéŸrßï&r_ÆgùY¶X\\È—‡ÜÝ+¿TxFæ Cž—‡ë•_ù)ø¼Iñ‘GjÛÈon“ß<a ±Ô“ÇTŠäqEÝòøÚÓòø:¢<ág‹ü¶Až¨±Jž$¨—\'ïÃÊS~?—§@ËÓòäÏSå÷ÀåÙÛ£äyIpyÞK¦<oÑD^Àü,/’÷GËKöøÊK+áòÒ¡!y…ô¼:ÍOþÈ³Yþ8ó¤ü±ò¾¼þIþÔk•¼!¼YþZPÞy_þæU¦üm\nYþÎX ×± oe™Éß¡äm.½òv×ƒò³fyÇÀ¨¼C)ïÌÂÊ;+;äÒÝò®n¶¼ÛÄYþA£ZþaÆIþé}|ø½µ|¤ÁS>*!ËÇ¢íåc?ñò/»ßÉ¿Ôí“OlŸ‘O˜Ë¿žÈ§RÊg÷GÈg“nÈ¿÷uÉ—ÉÞÊçÝ‘ò…ASùÂb›ü¯	\\þ×”*^¾ ‡´TÉ¡emrè¤³–Ò$‡Jåð­1r¸~¤žp^ŽzC“£_ÿ’cw1åXwå–Ð”ã‹å„l´œ˜R&\'Ñ³åä\0;9u&g¬N’3ÿl‘³<É9Z29/ë§œ÷aŸœ7Å“ûÊå\"­¹HT,‰ýåâÑ	¹˜5\'—Ž’Ký§å‹wÚä‹ÏË—ÎäËÖDùJ¸»|åv•B¥ÂC¡20ªXÕþY¡6‰U¨o> P?¨X»q»B«8D±a»ŸbÛD±ic‚bK-X¡¯ÿK¡Ÿ}H±-ô„b\"I±36S±Ë0M±{U†ÂÀ,]±çµ§ÂÐ}D±/obß§«ŠýË\nÅÿ…±N¿â ý’âàÔK…ÙH•ÂÜ{TaþÐHa‘Q«°=Ü§°=æ¢°ß´¢p¸R£pÎ)ŽÞÿ¤pR½¢p×5Vx˜7+<€9Š¯C^>Î\n/?m…ïpˆÂ¯ªCáï­¦ðŸ*Î^sT¬yª@<SînU};£âg)Î‹ró).ÝG*B+Sá†bExœ¦â2ÏVqÅcJqe(Xq½ýŽ\"ºnâFq\"vÈ@÷ ˆ7lRÜÚôYqër‹âv½\"±q@‘tô¬\"Ùü´\"EU¢H•>Td\0ªÿŽ)²òR÷¯~TäÌ„*r34¹ÜËŠ¢©âk®¢¬Ö]Q¾IWQnŸ¦()ÊãŸ*ÊGª•¢•^CŠJ¿\"Eef¾¢²u‡¢ê¨¨nü«¨þ™¡xüôª¢Þó®¢±^KÑøì±¢¹l½â¥Ž¡âUõMÅk3ÅëÛŠ×ç-$¼âÝåÅ{o[E[tŠ¢3?NÑÕ¬èš¹¡èÞ¨©øpÃWÑ#ÍSôùÔ*>–§+úÍß(jl½ŽŠñ)ÅñµbtŸ¯blú¥â«ê}ÅdØ²b¦¥˜y©˜ýÕ«øwVüÙ=¨øû¤\0¬õT\0\Z”\n ñ„\Zb­@žR O)PK¯xŸã\nü6aý\n\"ç¯‚**È)k|ƒ‚Ã~¦àFg*¸´ÏÙ]ÁkÉV±\níŠBÎ;¤PÞ¥P”œR(fš‹3jŠ¥—\0ÅŠý7ÅJ#M©RP­\\u%^©j—¡TëÂ+ÕwÌ+Õ]t•êü^¥º¤D¹ša¨\\czN¹æ3N¹ÇS®·œS®Ø£\\Ÿ5¬Ô¢?UêèWê5+uæÕ•º—ü•=+7×îQnn²PnéLVnJWîØv\\¹ãÕ¸r§TO¹Ëv¯ÒàÛ_åžôOJCñˆrŸÆKå>-¦rŸ³³rßµ*¥±¶£Ò8ã„òà¦ò \r¥<È‰VšžÉTšQšõ¼TšžS*;¦´tRZíŽVZí¦´ñ‡(mÎš+íN*íc•vüE¥}U†ò(#Nél-P:SÝ•.îT¥ËÊ¥k×/¥»Å\r¥»½\\é¸©ôrØ¦ôBžPúl\\­<$Vž~}Ry¦¹Mé\'½ <+¿©pWÔ…*°©Ê`§zå9Ótåù¦Ê‹\rÞÊ°˜÷ÊËAG•W[_(#ç×+£\no)£KÖ)ofÞSÆå—(o™T*“\r”Éõo•)KÊÔ+…Êô5šÊtç)åÝy®2ëê²2§1[™ÃmVæemRæwø*ß¤(‹ú•ìó•Z¿)KWù(KÙ}ÊšÛ\'”5,oåÃovÊÚ•|eí‡²NT>ªÝ©|’{Mù´è ²!¼WÙHR>·8¯|~­Gù\"gVùž¦|µ6Uùú¬Ÿ²åà€²åî²²µÇ_ùÞæ­ò}T£²­ÍOÙnÐ­l¯ëWv¡R”Ý‰iÊ¾È«ÊeBƒr Ÿ§?¬ôTŸUYQƒ\Z”#¦”#Øpå-_ù%ú™r\"õ›òk€ƒr2‚ªœD~UNãÓ”Óluåì†WÊk®)ôÎ)3µ”s”m»”€-.J\0õ‰¸ÚJ	¶ø«„œWBnø)aÌKJ8è®ñÐU‰Ü¥P\"[•(£JŒãq%¡ì•’$\nP’m¾*)&ë•Ô%ó°\\Éœ¸¡äëu*ù‰h¥À¶C)âá”OÎÃXrÙ!bqÕÿ\Z Ïx >€ãECƒ+‰r‰Ji©4.¥¬8\\CK\"B	—”ºÒNéII‘H„ÐÀ¥T$\r¡%‘PŠT$RtÒ¥ÿzîÕïí÷ó³ËÑ Pzºén‚ng@·(%è™³z…×Cïó§ ÏQeè»£”­ª@Ùë(¨«ƒêæhP-/æ¤Ë yôüÚgüšZ³“`È|Wò³´•ÌA;¤èö¬=]Ð›©zôû,ý~ñ _R\rú•`ñFª]„Q}rÁp`<¹=£Û¹`ôc$LÐ5€i%\'aú—50cš\'˜NÑÓyf`úæ1Xtë÷À:eXŸ÷\0­°±]¶Áöðy°ûmØ-=vÿ»á`ŸköÅå0¿e,P+Gõ‘°ø»,}4\n–íô…å®nàœu\\ÏåÃ*Ãeàn1Ü_<‚Õï¯çðRý^“`íö³°öÕtðY±|Þ€ßñdð;iþC€}¬ègÂF}?Ø=6–ªÂ&Ý°Ùq:lÞU›ÏDÂ6u‚ NmØ9ôì>é»ÂÞqýaot*x¸B D\'BÜo@Hãøßô*84JÂL…°œ÷pì‚Dýg?9eD;ÇAÌ_eS}bÿ,‚Ø½…ç \rqëVB¼ÓEˆwU‡çï8b$N2‡$µHÚRggŽ‚”P#87k=œŸ}.øêAz×\\H_<2Îl„Kw‡Ì2o¸¼~\\ù–\nWÕ•áêšçpÍ°nV™@ÞæTÈ;·úÂíÌp¸3´7ÜId¸Óþòc.À=}¸ç¿\nŽæBQX)<ðM†G\njP|ù<<q_¥¡Ìø=”yöƒ²TCx¶\'\Zž;~…çIï bÉp¨\\«\0UGWÁË_Á+\'x}ÑêFë@Q&¼ÓúïŠ´ á‰4jÄB£óh¼ù_‹@ó¬åð©p´ìÿ­Ÿ2¡M2|w¾ƒ:[ÃO•wðsµü|z 3èÑ*`vìâ²»ÖšaOY†JÁ\n¨tB\r{·.À>NÞ¨|É\ZU~tà/;Î¢êå8`¬\'üþÕ/ÌAÝ¨q!vùŽš›’Q{P#›7õ÷W£ÁŠ«hpëŽêöGeþ†ó£qô í8Æ¬ÇØtG£KGÐèJ>ŽkUÄ	/\"pb®\Z/î‡“VtÅ)½ÝÐ$ÌMš£I‰6Nµ±ÆiW4púh\rœñûQ4µ[†¦áƒÑ,`ÎQªÇ9CßàœšWh~äZ\\ú-²ÑÒÿ)Z^|‚–izh­2­íÑFû2Ú*œC;·l´/:Ž†ßpK9.ñû\r—„Uâ²!ûÐiÉ=tz:WæMD—wQè\Zú=\\Ž GÜïè‘8=ßCÏ/ÑKw5z­rB¯ÀV\\Ó7×L\nÃ5¢÷?{ÐgøôM«Cßœzô­ßƒ~çñÏI·1@µ?nL²Á@Å+¸9ún±x‚[½bq«_wò°ÁíËpÇ5{Üåo{öÄáÞm^¸ïí4¶4ÅýÁ_p?´ã3—ðÀ›Õx0ý\Zr…‡6õÄÐà%x8¦ìªÃ£ñ®Nv•‰Ñq›0æ[Æöš±ºŽw¢\nã}ÔðŒ²#žyñ&<ÖÆ$C˜”œÉšã0¥©?ž`„é=1cý[Ìøú/5áeW+Ì²ŠYSðzK=fç`NbÞè²oì†7ÿ{›÷ÝoM™Š·?Ç»5˜ï±ïeìÆ{×ý±Àe%j,ÁBÿXd\\‹÷íñþÑ\n|¡‚ÅŸšðI?G,Ý\\eÏ»ã³„h|ö¶	Ÿß\rÄ\n¿`¬Ü5+k¯cÕ¸]øÒ¿_VÁê”X]½\rk<W`­âI¬½‚o¾b]¦¾5ž‰?N½‹3µðãóØžŽÍßn`Ky~VÙŒŸÉ\r¿¼êÀ¯FIØ~d¶w~HÃóúàØù3\0á—t$«{È“£IÑ4œ?¿¦n.ÍÔ}Àrê‘\\E=í3Iiügê5Ë”z¿¿B}Ü:H9/TöÅP¿Ÿi@ŸÑ¤œMƒÒ qÇiÐõrÒ\\[BšÇ’æ­ú5ü\"i]J!íá“H{Yéœ‰§a]7Ð°­wIož	é=n&ƒ«dèÜL†!/È°v>\r¿LÆªÈøë%š4ã0M*J¢)š\'iÊ¢d¢^J&ÿ$ÒÔãhÚ{4­|+M7/ ™ž¦dº¦æºšÑÜ…dnéLH\r&d9Íæ¥“mÜEú}S9¨,%‡³6ôGÈš•Bó¿‡ÒüB§í¤E»ÈñF9–Ï¥Å%\Z´ts-M;LËœÃÉyw­ts U«¯’û\\Zí@ÕŽä¹eyÅ‡×eZgN>ášä›¹—|ïO%?¯0ú³¡ü5•Èß;”6XÓæPÚ–@»Æí¢}Ó‚hŸßÚ‡(¸ ?˜èKÖ|¢õïéàXc:¤¤M‡¼\'P¨5…–ÙÐá2:žÑH‘3/PTk\\	tjÅdŠ­+¢Ó7Ë(ná1JP$JPk¡„E”¨ó”’lÍ(éºí­Bg‡­§³>”ò¿J-¦Ô†:?£’Òbœ)íQ¥5éSÆ1oú{A]ŠJ Ëç<(kv\"]u¿@×^ÓõŒ Ê6LÙv~”“ãB9¹çèFÊGÊ|…r¿ÿ¤[]ÌéÖÏ2Êò‚ò74PþöÅTÔäDz™ÓÃ…:ôèÌ*þöJÞ]¦§£OR©g_*\r2§Òs*Ó\ZHeëÞP¹²-•ÿÞF•Çs¨ª‹=U;¢êü2ªuéIµGÒ»ÕôîL ½·ï¤÷?fPÃ”ú(-Ô¿‡šo†Rsó~úÔòµhí¦–KmôùÅKj_º‚Ú«¨£Ou¸UÐ÷Ôëôs@ý\\Ù‹ÄÊ†„Æp—ÍÌ];-X!²‘rSYq¢÷?–•Î¦r¯=VÎög•§UÜÏ.‰û½yÉª]G°êSVmVäuXm~\'«eÞäA}‡òà¦<¸Ñ™µæùòÐJÖYpƒu÷M`ÝÎ<ÌÚ„‡eO`½¹ÏÙ`ô56ÈëÍ#V­æa<âx	ø¤Á#\r×ñÈÆé<º[½lÏãÌ–ñxã¾<a–:Oÿ„\'ºÚ°±ïdž<Ã\'‡íä)Î3Ù¤L‡§ž^Ì3—&³i~ÏŽW`³ªM<Çí[&Ýb+å,žçp‹íÇ{²½ï^0¶œZGòâ;5¼ôt/_WÀËƒ?óŠ²\rìRmÅ®ó&ðª_ÙÍ«‰ÝN]e÷Óyu-ìqÙ=¯®c¯±±¼&Bx­e(¯½¶×Õ²·§&{\'ñº?ö™bÊ¾™£ÙO÷oPÿ‡f.â@-\\~€ƒŠ¬9¨]wm±äÝ£ðç¼¯Q•ƒ·˜qð8~µƒCŒ¢8tq9‡Þ©äÃO{pØštË¨æ°6|´s&»Ù•g#Gä_áˆ¯8Ò¹‘#ëð	c\r>¹Q£S?sLèO>Õx‹Oý[Ã±Š9V«†OoãÓâÌñ+ïpüÝ•œà“ÄIƒù¬ÞNÞèÍÉMyœü§(ás³¾óyýÁ|q®§¯häô}…œ¡®ÆÃ”ùï‰‡8«þ&_¨äœöf¾ñk-çªÕð­ò£|{ÈN¾Ñ“ï®Æw}þæ|ï|ïø..(ÚÌ…;êù¡\"òÃ¼(~Ø–ÎÛºó“ÝÕü\"ùépu.7Iáç¥E\\ñÐ+^çs¥ßa~i;ž«ûÀ¯nüà×#fòë†g\\ÓÅƒk5–s­åN~SØ…ßü;ënöáº;ƒùmã®ŸìÎõÛ>rýµHn¨|ÌCÇp“á}þ4@…?­«åÖ¿¶ò×Ü%üMÏŽ¿Y~ä§…ó±^Œg3÷béÚ¯QòPç‰Ò6]Q>Q\'ý]¾ˆêjQ«}!êeWdðèå¢5!Q†ä„‹v€¿hÇgŠö}O\Z8Wt\"~XOÑ)ÎÝŽ2ì¤±èï*ÃÇ4‹þ $Ñ?³Cú_ƒ¯ûÄ€úË(íE‡ÄÐÂHÆ<8(c*AÆ™dÊDj•IË£dJ¢ºLm6—ÛÞŠé5±ÈV«Q±buJSlUŠÅ6Ä¶¦‡ØÖ¾ÛwŠ]òT±ŸÚ)ó[ÌdAâHYxÚU‚£8Î*”%æÊ²ÔŒeiL”8¹«ŠÓ«4Y5t¤¬ÚT#«;‹WIŠ¬õñïáÉºæñ)	_+KY?{Œø÷W¿4Lä¯àÙº3M¶(JçzÙi¥(;ó‹%ØÓXö\'»Jˆz›LÒ’ƒÿv“Ð˜>rx‡„\rkˆx+‰´è.‘W‚ä„ÆZ9ñ£‹D5õ–˜Î?äTâP‰ÝX-	+NHâ‘‹’XV()k^KJ`„¤ìé\'©cý%uFœS“ói#$Ó­H²„I–ËsÉªØ\"Yµ%rõÓ¹6\'A²\"$\'*Rrí­%×©@òÞºÉœRÉ?T$ù¡îR01J\n\'Î“BUyV*u\näq“<þÞEŠwIqM ·¶HIÎgy:ÐJžÎ<$¥cÊ¤´­@ÊŽIù~y¾þ‹Tx{HÅ¶¹RY Uwäe[­¼ú­BjÞšKMÛZ©=~Bê‚×É;…ÙòNËEÞMÈ“ú9(\rý{KÃÛÒÐž%.½¥i¸‹|2Ú -“µäËÙfùR‘+­»Hë_i½>G¾fÍ“¯gåk{|í¨•öíÊ·ÁQÒ1Ý]:¶™HGü\"é¨nÎûKäç\ZSùù Mð•¦Ð§$a‹­ÂÍ©Ãflÿ?ÉwZjÈ‘\0','no'),('manualScanType','onceDaily','yes'),('max404Crawlers','DISABLED','yes'),('max404Crawlers_action','throttle','yes'),('max404Humans','DISABLED','yes'),('max404Humans_action','throttle','yes'),('maxExecutionTime','0','yes'),('maxGlobalRequests','DISABLED','yes'),('maxGlobalRequests_action','throttle','yes'),('maxMem','256','yes'),('maxRequestsCrawlers','DISABLED','yes'),('maxRequestsCrawlers_action','throttle','yes'),('maxRequestsHumans','DISABLED','yes'),('maxRequestsHumans_action','throttle','yes'),('migration636_email_summary_excluded_directories','1','no'),('needsNewTour_blocking','1','yes'),('needsNewTour_dashboard','1','yes'),('needsNewTour_firewall','1','yes'),('needsNewTour_livetraffic','1','yes'),('needsNewTour_loginsecurity','1','yes'),('needsNewTour_scan','1','yes'),('needsUpgradeTour_blocking','0','yes'),('needsUpgradeTour_dashboard','0','yes'),('needsUpgradeTour_firewall','0','yes'),('needsUpgradeTour_livetraffic','0','yes'),('needsUpgradeTour_loginsecurity','0','yes'),('needsUpgradeTour_scan','0','yes'),('neverBlockBG','neverBlockVerified','yes'),('noc1ScanSchedule','a:2:{i:0;i:1701407400;i:1;i:1701666600;}','yes'),('notification_blogHighlights','1','yes'),('notification_productUpdates','1','yes'),('notification_promotions','1','yes'),('notification_scanStatus','1','yes'),('notification_securityAlerts','1','yes'),('notification_updatesNeeded','1','yes'),('onboardingAttempt1','license','yes'),('onboardingAttempt2','','no'),('onboardingAttempt3','','no'),('onboardingAttempt3Initial','0','yes'),('originalScheduledScanStart','1701148200','yes'),('other_blockBadPOST','0','yes'),('other_bypassLitespeedNoabort','0','yes'),('other_hideWPVersion','0','yes'),('other_pwStrengthOnUpdate','1','yes'),('other_scanComments','1','yes'),('other_scanOutside','0','yes'),('other_WFNet','1','yes'),('previousWflogsFileList','[\"attack-data.php\",\"config.php\",\".htaccess\",\"config-livewaf.php\",\"config-synced.php\",\"rules.php\",\"ips.php\",\"GeoLite2-Country.mmdb\",\"template.php\",\"config-transient.php\"]','yes'),('scanFileProcessing','','yes'),('scansEnabled_checkGSB','1','yes'),('scansEnabled_checkHowGetIPs','1','yes'),('scansEnabled_checkReadableConfig','1','yes'),('scansEnabled_comments','1','yes'),('scansEnabled_core','1','yes'),('scansEnabled_coreUnknown','1','yes'),('scansEnabled_diskSpace','1','yes'),('scansEnabled_dns','1','yes'),('scansEnabled_fileContents','1','yes'),('scansEnabled_fileContentsGSB','1','yes'),('scansEnabled_geoipSupport','1','yes'),('scansEnabled_highSense','0','yes'),('scansEnabled_malware','1','yes'),('scansEnabled_oldVersions','1','yes'),('scansEnabled_options','1','yes'),('scansEnabled_passwds','1','yes'),('scansEnabled_plugins','0','yes'),('scansEnabled_posts','1','yes'),('scansEnabled_scanImages','0','yes'),('scansEnabled_suspectedFiles','1','yes'),('scansEnabled_suspiciousAdminUsers','1','yes'),('scansEnabled_suspiciousOptions','1','yes'),('scansEnabled_themes','0','yes'),('scansEnabled_wafStatus','1','yes'),('scansEnabled_wpscan_directoryListingEnabled','1','yes'),('scansEnabled_wpscan_fullPathDisclosure','1','yes'),('scanStageStatuses','a:11:{s:13:\"spamvertising\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:4:\"spam\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:9:\"blacklist\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:6:\"server\";a:4:{s:6:\"status\";s:16:\"complete-warning\";s:7:\"started\";i:5;s:8:\"finished\";i:5;s:8:\"expected\";i:5;}s:7:\"changes\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}s:6:\"public\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}s:7:\"malware\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}s:7:\"content\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:3;s:8:\"finished\";i:3;s:8:\"expected\";i:3;}s:8:\"password\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:1;s:8:\"finished\";i:1;s:8:\"expected\";i:1;}s:13:\"vulnerability\";a:4:{s:6:\"status\";s:16:\"complete-warning\";s:7:\"started\";i:1;s:8:\"finished\";i:1;s:8:\"expected\";i:1;}s:7:\"options\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}}','no'),('scanTime','1701275646.585','yes'),('scanType','standard','yes'),('scan_exclude','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ServiceUnavailableException.php\nwp-content/wflogs-old/config-transient.php\nwp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-multilingual.php\nwp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/typography/field_typography.php\nwp-content/plugins/fusion-core/fusion-core.php\nwp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/CacheableCredentials.php\nwp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobPagesResult.php\nwp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/EventDispatcher.php\nwp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/PaginatedIterator.php\nwp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/str_replace/validation_str_replace.php\nwp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/Zf1LogAdapter.php\nwp-content/plugins/fusion-builder/inc/lib/inc/templates/rollover.php\nwp-content/plugins/updraftplus/includes/Google/Service/YouTube.php\nwp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php\nwp-content/themes/Divi/includes/builder/module/field/MarginPadding.php\nwp-content/plugins/fusion-builder/shortcodes/fusion-image.php\nwp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/File/X509.php\nwp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_hr.js\nwp-content/plugins/fusion-core/templates/portfolio-archive-layout.php','yes'),('scan_include_extra','','yes'),('scan_maxDuration','','yes'),('scan_maxIssues','1000','yes'),('schedMode','auto','yes'),('schedStartHour','6','yes'),('scheduledScansEnabled','1','yes'),('serverDNS','1702487149;10800;72.167.206.246','yes'),('serverIP','1700630630;70.32.92.201','yes'),('showAdminBarMenu','1','yes'),('showWfCentralUI','1','yes'),('signatureUpdateTime','1700243113','yes'),('spamvertizeCheck','1','yes'),('ssl_verify','1','yes'),('startScansRemotely','0','yes'),('supportContent','{\"top\":[{\"title\":\"Blocking Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":0},{\"title\":\"Optimizing The Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":1},{\"title\":\"Wordfence Web Application Firewall (WAF)\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"order\":2},{\"title\":\"Scan Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3},{\"title\":\"Wordfence and LiteSpeed\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/litespeed\\/\",\"order\":4},{\"title\":\"Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5},{\"title\":\"Firewall Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":6},{\"title\":\"Scan Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":7},{\"title\":\"I am locked out of my site\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/#i-am-locked-out-of-my-site\",\"order\":8},{\"title\":\"PHP Fatal error: Failed opening required wordfence-waf.php\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/#php-fatal-error-failed-opening-required-wordfence-waf-php\",\"order\":9}],\"all\":[{\"title\":\"Wordfence Free\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-free\\/\",\"excerpt\":\"Wordfence Free is an all-in-one security solution for WordPress websites that includes an endpoint firewall, security scanner, login security, alerts, centralized management, and more.\",\"order\":0},{\"title\":\"Wordfence Premium\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-premium\\/\",\"excerpt\":\"Wordfence Premium comes with real-time firewall protection, real-time scan signatures, an IP address blocklist, country blocking, and Premium support.\",\"order\":1},{\"title\":\"Wordfence Care\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-care\\/\",\"excerpt\":\"Wordfence Care is for business owners who place a premium on their time. Our team installs, configures, optimizes, and maintains your WordPress site security.\",\"order\":2},{\"title\":\"Wordfence Response\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-response\\/\",\"excerpt\":\"Wordfence Response is for mission-critical WordPress websites that require 24\\/7\\/365 security monitoring with a 1-hour response time and 24-hour remediation.\",\"order\":3},{\"title\":\"Incident Response Services\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/incident-response-services\\/\",\"excerpt\":\"Let one of our Security Analysts help you clean your infected site or inspect it for vulnerabilities.\",\"order\":4},{\"title\":\"License Key\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/api-key\\/\",\"excerpt\":\"All Wordfence installations need a license key, also known as an API-key. The key can be a free key or a Premium key. \",\"order\":5},{\"title\":\"Account and Billing History\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/account\\/\",\"excerpt\":\"How to navigate and use your Wordfence account.\",\"order\":6},{\"title\":\"Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/\",\"excerpt\":\"Wordfence Central provides a powerful and efficient way to manage the security of many WordPress sites via a single interface.\",\"children\":[{\"title\":\"Connecting your sites to Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/connect\\/\",\"order\":0},{\"title\":\"Setting up two-factor authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/2fa\\/\",\"order\":1},{\"title\":\"Using the Dashboard page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/central\\/\",\"order\":2},{\"title\":\"Using the Configuration page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/configuration\\/\",\"order\":3},{\"title\":\"Using Wordfence plugin options Templates\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/templates\\/\",\"order\":4},{\"title\":\"Using the Settings page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/settings\\/\",\"order\":5},{\"title\":\"Viewing scan Findings\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/findings\\/\",\"order\":6},{\"title\":\"Using Wordfence Central Teams\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/teams\\/\",\"order\":7}],\"order\":7},{\"title\":\"Dashboard\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/\",\"excerpt\":\"The Wordfence Dashboard provides insight into the current state of your siteâ€™s security.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/options\\/\",\"order\":0},{\"title\":\"Alerts\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/alerts\\/\",\"order\":1}],\"order\":8},{\"title\":\"Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"excerpt\":\"The Wordfence Web Application Firewall is a PHP based, application level firewall that filters out malicious requests to your site. \",\"children\":[{\"title\":\"Optimizing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":0},{\"title\":\"Statistics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/statistics\\/\",\"order\":1},{\"title\":\"Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":2},{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/options\\/\",\"order\":3},{\"title\":\"MySQLi storage engine\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/mysqli-storage-engine\\/\",\"order\":4},{\"title\":\"Brute Force Protection\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/brute-force\\/\",\"order\":5},{\"title\":\"Rate Limiting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/rate-limiting\\/\",\"order\":6},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/troubleshooting\\/\",\"order\":7}],\"order\":9},{\"title\":\"Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/\",\"excerpt\":\"Aside from the firewall rules that protect against various attacks, Wordfence also has custom features for additional blocking. \",\"children\":[{\"title\":\"Country Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/country-blocking\\/\",\"order\":0},{\"title\":\"Blocking Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":1}],\"order\":10},{\"title\":\"Scan\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/\",\"excerpt\":\"A Wordfence scan examines all files on your WordPress website looking for malicious code, backdoors, and shells that hackers have installed. It also scans for known malicious URLs and known patterns of infections.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/options\\/\",\"order\":0},{\"title\":\"Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":1},{\"title\":\"Scheduling\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scheduling\\/\",\"order\":2},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3}],\"order\":11},{\"title\":\"Tools\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/\",\"excerpt\":\"Wordfence Tools include Live Traffic analysis, WHOIS Lookup, Import\\/Export Options, and Diagnostics.\",\"children\":[{\"title\":\"Live Traffic\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/live-traffic\\/\",\"order\":0},{\"title\":\"WHOIS Lookup\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/whois-lookup\\/\",\"order\":1},{\"title\":\"Import\\/Export\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/import-export\\/\",\"order\":2},{\"title\":\"Diagnostics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/diagnostics\\/\",\"order\":3},{\"title\":\"Legacy Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/legacy-two-factor-authentication\\/\",\"order\":4},{\"title\":\"Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5}],\"order\":12},{\"title\":\"Login Security\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security\\/\",\"excerpt\":\"The Login Security page currently contains settings for two-factor authentication (2FA) and reCAPTCHA. In a future Wordfence version, existing login-related features will also move to the same page.\",\"order\":13},{\"title\":\"Advanced\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/\",\"excerpt\":\"If you want to know more about the technical details of Wordfence, you will find the answers in this section.\",\"children\":[{\"title\":\"Compatibility\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/compatibility\\/\",\"order\":0},{\"title\":\"Technical Details\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/technical-details\\/\",\"order\":1},{\"title\":\"Changelog\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/changelog\\/\",\"order\":2},{\"title\":\"Constants\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/constants\\/\",\"order\":3},{\"title\":\"Remove or Reset\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/remove-or-reset\\/\",\"order\":4},{\"title\":\"System requirements\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/\",\"order\":5},{\"title\":\"Wordfence API\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/wordfence-api\\/\",\"order\":6},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/troubleshooting\\/\",\"order\":7},{\"title\":\"Plugin \\/ Theme Conflicts\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/plugin-theme-conflicts\\/\",\"order\":8}],\"order\":14},{\"title\":\"Wordfence and GDPR - General Data Protection Regulation\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/general-data-protection-regulation\\/\",\"excerpt\":\"Defiant, the company behind Wordfence, has updated its terms of use, privacy policies and software, as well as made available standard contractual clauses to meet GDPR compliance. Customers must review and agree to updated terms in order to continue using our products and services.\",\"children\":[{\"title\":\"Sub-Processors List\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/general-data-protection-regulation\\/sub-processors-list\\/\",\"order\":0}],\"order\":15},{\"title\":\"Login Security Plugin\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security-plugin\\/\",\"excerpt\":\"The Wordfence Login Security plugin contains a subset of the features found in the full Wordfence plugin: Two-factor Authentication, XML-RPC Protection and Login Page CAPTCHA. It is ideal for sites that need login security functionality but either canâ€™t or donâ€™t want to run the full Wordfence plugin.\",\"order\":16},{\"title\":\"Wordfence Intelligence Webhook Notifications\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/wordfence-intelligence-webhook-notifications\\/\",\"excerpt\":\"Stay on top of the latest WordPress vulnerabilities that are added, updated, and removed from the Wordfence Intelligence WordPress Vulnerability Database utilizing our webhook notifications. Use the Slack and Discord integration to be notified of the newest vulnerabilities in real-time as they are added to our database, or for more customization utilize the raw notifications that send you the complete vulnerability information in a JSON format.    \",\"order\":17}]}','yes'),('supportHash','0b99f47217ddacfad7f9c1ba1d97697cb94c8c4a19d28ae93a823483a2804611','yes'),('suspiciousAdminUsernames','a:2:{i:0;s:46:\"/^wp\\.service\\.controller(?:\\.[a-zA-Z0-9]+)$/i\";i:1;s:55:\"/^(?:wordpressssadmin|wordprestadmin|jaime.besser56)$/i\";}','yes'),('timeoffset_wf','0','yes'),('timeoffset_wf_updated','1701275642','yes'),('tldlist','|com|org|net|edu|aaa|abb|abc|aco|ads|aeg|afl|aig|anz|aol|app|art|aws|axa|bar|bbc|bbt|bcg|bcn|bet|bid|bio|biz|bms|bmw|bom|boo|bot|box|buy|bzh|cab|cal|cam|car|cat|cba|cbn|ceo|cfa|cfd|cpa|crs|dad|day|dds|dev|dhl|diy|dnp|dog|dot|dtv|dvr|eat|eco|esq|eus|fan|fit|fly|foo|fox|frl|ftr|fun|fyi|gal|gap|gay|gdn|gea|gle|gmo|gmx|goo|gop|got|gov|hbo|hiv|hkt|hot|how|ibm|ice|icu|ifm|inc|ing|ink|int|ist|itv|jcb|jio|jll|jmp|jnj|jot|joy|kfh|kia|kim|kpn|krd|lat|law|lds|llc|llp|lol|lpl|ltd|man|map|mba|med|men|mil|mit|mlb|mls|mma|moe|moi|mom|mov|msd|mtn|mtr|nab|nba|nec|new|nfl|ngo|nhk|now|nra|nrw|ntt|nyc|obi|one|ong|onl|ooo|ott|ovh|pay|pet|phd|pid|pin|pnc|pro|pru|pub|pwc|red|ren|ril|rio|rip|run|rwe|sap|sas|sbi|sbs|sca|scb|sew|sex|sfr|ski|sky|soy|spa|srl|stc|tab|tax|tci|tdk|tel|thd|tjx|top|trv|tui|tvs|ubs|uno|uol|ups|vet|vig|vin|vip|wed|win|wme|wow|wtc|wtf|xin|xxx|xyz|you|yun|zip|ac|ad|ae|af|ag|ai|al|am|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cu|cv|cw|cx|cy|cz|de|dj|dk|dm|do|dz|ec|ee|eg|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|ss|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|za|zm|zw|aarp|able|aero|aetna|akdn|ally|amex|arab|army|arte|asda|amfam|amica|apple|archi|arpa|asia|audi|audio|auto|autos|baby|beer|bike|black|blog|author|bing|auspost|blue|adult|bond|bingo|bofa|audible|citi|city|dclk|deal|dell|cloud|club|cyou|coach|data|date|desi|fire|fish|pink|prod|azure|baidu|church|circle|cisco|ping|citic|claims|safe|sale|boats|click|clinic|save|saxo|actor|star|avianca|sarl|codes|cool|coop|pics|seek|show|silk|sina|crown|site|cymru|dabur|dance|deals|delta|flir|faith|phone|pizza|skin|photo|salon|skype|pictet|scot|seat|shop|sakura|shaw|shia|sener|sharp|shell|ryukyu|safety|seven|athleta|associates|shoes|sling|coffee|photos|spot|schule|auction|smart|smile|sncf|attorney|sohu|sony|solar|song|physio|school|search|secure|select|space|sport|sanofi|stada|chrome|banamex|band|bank|bbva|best|book|buzz|cafe|call|camp|care|cars|cbre|cern|chat|camera|casa|cash|diet|canon|case|chase|college|dish|bosch|docs|bible|capital|cheap|bargains|beats|build|drive|farm|fast|post|cards|porn|reit|ruhr|dubai|erni|earth|prof|broker|fage|fail|bayern|beauty|berlin|bauhaus|cologne|basketball|rent|comcast|fans|qpon|bentley|brother|baseball|dvag|read|edeka|barefoot|email|film|pohl|final|play|prime|promo|quest|center|quebec|sexy|booking|channel|charity|fido|plus|radio|rocks|bharti|chintai|citadel|rodeo|rogers|room|rsvp|bananarepublic|rugby|racing|barcelona|chanel|epson|fedex|legal|poker|bostik|caravan|place|boston|clubmed|praxi|press|career|rehab|barclaycard|careers|rest|reise|realty|review|rich|reisen|ricoh|report|bestbuy|casino|barclays|repair|store|expert|abogado|airtel|teva|airbus|vana|abbott|abbvie|africa|agency|academy|tech|agakhan|team|tiaa|estate|taxi|visa|airforce|viva|vivo|energy|alibaba|emerck|today|toray|town|alipay|tools|toyota|toys|tokyo|company|events|allfinanz|tips|tmall|tube|tires|tirol|compare|exposed|express|accenture|accountant|accountants|finance|abudhabi|fishing|fitness|surf|talk|vote|weir|flickr|voto|wien|wiki|flights|wang|wine|tatar|work|ferrari|ferrero|tours|fashion|xbox|study|farmers|yoga|style|zara|zero|zone|sucks|family|swiss|total|trade|alsace|alstom|amazon|anquan|aramco|comsec|condos|coupon|credit|cruise|dating|datsun|dealer|degree|dental|design|direct|doctor|dunlop|dupont|durban|android|shouji|stream|country|soccer|corsica|social|studio|supply|suzuki|trust|swatch|tunes|tushu|ubank|sydney|taipei|vegas|taobao|target|tennis|travel|viajes|video|tattoo|tienda|tjmaxx|tkmaxx|unicom|viking|villas|xerox|virgin|vision|yahoo|cooking|apartments|aquarelle|vodka|volvo|voting|contact|analytics|voyage|amsterdam|coupons|dentist|digital|domains|allstate|americanexpress|americanfamily|wales|walter|watch|webcam|weber|weibo|yachts|yandex|zappos|cricket|cruises|works|xihuan|courses|world|blackfriday|florist|blockbuster|hdfc|gives|glass|clothing|here|computer|gift|globo|gmail|gmbh|help|delivery|gold|guru|grocery|community|deloitte|democrat|diamonds|guge|discount|golf|goog|directory|discover|download|ericsson|hair|haus|gifts|education|ggee|creditcard|food|ford|forex|forum|construction|equipment|free|consulting|contractors|creditunion|engineer|cuisinella|enterprises|fund|gallo|game|games|gbiz|gripe|engineering|gent|host|green|group|futbol|gratis|hotels|forsale|house|fidelity|gallup|garden|george|giving|global|hockey|financial|hiphop|frogans|hermes|fujitsu|health|genting|gucci|guide|gallery|google|guitars|feedback|hamburg|hangout|hitachi|fresenius|frontier|godaddy|firestone|firmdale|football|foundation|furniture|holiday|commbank|fairwinds|grainger|guardian|eurovision|exchange|goodyear|extraspace|goldpoint|graphics|hdfcbank|healthcare|helsinki|horse|hisamitsu|holdings|homedepot|homegoods|homes|hotmail|homesense|honda|hosting|hospital|hsbc|imdb|hyatt|icbc|christmas|ieee|ikano|imamat|cleaning|immo|hyundai|immobilien|infiniti|info|institute|insurance|insure|intuit|cipriani|industries|jobs|hughes|jprs|bloomberg|kddi|kids|joburg|land|juegos|jpmorgan|lego|juniper|kaufen|lgbt|lidl|life|kindle|kitchen|kpmg|bnpparibas|maif|broadway|komatsu|boutique|flowers|bradesco|kosher|brussels|koeln|bridgestone|kiwi|boehringer|builders|business|calvinklein|capetown|capitalone|catering|catholic|investments|itau|jewelry|international|java|jeep|love|ltda|irish|ismaili|luxe|ipiranga|istanbul|jaguar|meet|meme|jetzt|kuokgroup|kerryhotels|loan|kerrylogistics|kerryproperties|kred|like|limo|link|live|menu|lamer|lexus|news|next|lease|navy|kyoto|moto|name|open|lilly|lipsy|london|maison|mobi|luxury|madrid|makeup|marketing|moda|living|loans|lotte|lotto|locker|locus|mango|market|media|mint|lefrak|mattel|ollo|monash|mckinsey|miami|marshalls|mini|mobile|marriott|merckmsd|money|lawyer|nexus|markets|netflix|microsoft|nico|monster|mormon|neustar|mortgage|music|moscow|movie|network|nike|nikon|netbank|osaka|latino|museum|nokia|nagoya|ninja|nissan|nissay|norton|nowruz|observer|omega|natura|nowtv|office|pars|parts|lincoln|online|oracle|orange|lacaixa|lasalle|leclerc|organic|origins|partners|party|latrobe|lancaster|lanxess|landrover|paris|limited|pccw|melbourne|memorial|olayan|otsuka|page|pfizer|okinawa|oldnavy|philips|lifestyle|lighting|olayangroup|photography|pioneer|politie|rentals|reliance|schmidt|schwarz|shiksha|staples|whoswho|property|windows|winners|yamaxun|clinique|lundbeck|pharmacy|services|woodside|xn--node|xn--p1ai|xn--qxam|zuerich|xn--90ae|panasonic|plumbing|realtor|pictures|pramerica|playstation|recipes|redstone|reviews|rexroth|sandvik|science|saarland|samsung|richardli|samsclub|security|singles|shopping|softbank|software|statebank|xfinity|yokohama|shangrila|youtube|solutions|statefarm|surgery|theatre|tickets|toshiba|mitsubishi|lplfinancial|storage|support|systems|trading|tatamotors|theater|wedding|supplies|management|stcgroup|training|stockholm|travelers|xn--90ais|technology|temasek|xn--d1alf|xn--e1a4c|xn--czru2d|xn--fiq64b|lamborghini|xn--c1avg|xn--czrs0t|xn--d1acj3b|xn--fiqs8s|xn--fiqz9s|xn--flw351e|lifeinsurance|xn--fjq720a|xn--eckvdtc9d|xn--fhbei|xn--efvy88h|xn--fct429k|xn--fiq228c5hs|sandvikcoromant|xn--fpcrj9c3d|xn--fzc2c9e2c|xn--fzys8d69uvgm|travelersinsurance|walmart|wanggou|watches|weather|website|vanguard|ventures|verisign|vacations|xn--clchc0ea0b2g2a9gcd|xn--czr694b|xn--gckr3f0f|xn--io0a7i|xn--g2xx48c|xn--gecrj9c|xn--gk3at1e|xn--h2brj9c|xn--hxt814e|xn--imr513n|xn--h2brj9c8c|xn--h2breg3eve|xn--i1b6b1a6a2e|xn--j1aef|nextdirect|properties|protection|prudential|realestate|republican|restaurant|schaeffler|university|vlaanderen|xn--1ck2e1b|xn--45q11c|xn--11b4c3d|xn--3pxu8k|xn--1qqw23a|xn--2scrj9c|xn--nqv7f|xn--tckwe|xn--vhquv|xn--30rr7y|xn--qxa6a|xn--3bst00m|xn--p1acf|xn--3ds443g|xn--4gbrim|xn--55qx5d|yodobashi|xn--80aswg|productions|xn--5tzm5g|progressive|weatherchannel|williamhill|xn--90a3ac|wolterskluwer|xn--9dbq2a|xn--9et52u|redumbrella|scholarships|versicherung|xn--c2br7g|xn--cckwcxetd|xn--ngbrx|xn--cg4bki|xn--j1amh|xn--jvr189m|xn--kprw13d|xn--kpry57d|xn--kput3i|xn--l1acc|motorcycles|xn--j6w193g|xn--3e0b707e|xn--3hcrj9c|xn--42c2d9a|xn--45br5cyl|xn--45brj9c|xn--4dbrk0ce|xn--54b7fta0cc|xn--55qw42g|xn--6frz82g|xn--80asehdb|xn--cck2b3b|xn--80adxhks|xn--80ao21a|xn--9krt00a|xn--8y0a063a|xn--6qq986b3xl|xn--5su34j936bgsg|xn--80aqecdr1a|xn--b4w605ferd|xn--jlq480n2rg|xn--bck1b9a5dre4c|xn--kcrx77d1x4a|xn--mgba3a3ejt|xn--mgba3a4f16a|xn--mxtq1m|xn--mgbbh1a|xn--mgbpl2fh|xn--mgbca7dzdo|xn--mix891f|xn--mgbcpq6gpa1a|xn--mgbtx2b|xn--mgberp4a5d4ar|xn--mgbgu82a|xn--mgbi4ecexp|xn--nyqy26a|xn--mgbt3dhd|xn--mgbc0a9azcg|xn--o3cw4h|xn--ogbpf8fl|xn--mgbx4cd0ab|xn--mk1bu44c|xn--ngbe9e0a|xn--otu796d|xn--mgb9awbf|xn--mgbab2bd|xn--mgbaam7a8h|xn--mgbayh7gpa|xn--mgbbh1a71e|xn--mgba7c0bbn0a|xn--mgbah1a3hjkrd|xn--mgbai9azgqp6j|xn--pssy2u|xn--q7ce6a|xn--pgbs0dh|xn--q9jyb4c|xn--rhqv96g|xn--rovu88b|xn--ngbc5azd|xn--qcka1pmc|xn--rvc1e0am3e|xn--unup4y|xn--vuq861b|xn--nqv7fs00ema|xn--wgbh1c|xn--wgbl6a|xn--y9a3aq|xn--s9brj9c|xn--ses554g|xn--t60b56a|xn--w4rs40l|xn--xhq521b|xn--lgbbat1ad8j|xn--tiq49xqyj|xn--zfr164b|xn--vermgensberater-ctb|xn--vermgensberatung-pwb|xn--ygbi2ammx|xn--w4r85el8fhu5dnra|xn--xkc2al3hye2a|xn--yfro4i67o|xn--xkc2dl3a5ee0h|','yes'),('tldlistHash','b7d31aaaf8cecc46afc30a8ec6c2162ef440d453ec528fb6af8572b6c7c2b6e5','yes'),('total503s','110694','yes'),('totalAlertsSent','388','yes'),('totalIPsBlocked','109521','yes'),('totalIPsLocked','341','yes'),('totalLoginHits','260404','yes'),('totalLogins','888','yes'),('totalScansRun','1935','yes'),('touppBypassNextCheck','0','yes'),('touppPromptNeeded','1','yes'),('vulnerabilities_plugin','a:13:{i:0;a:5:{s:4:\"slug\";s:14:\"classic-editor\";s:9:\"toVersion\";s:5:\"1.6.3\";s:11:\"fromVersion\";s:5:\"1.6.2\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:1;a:5:{s:4:\"slug\";s:37:\"contact-form-7-dynamic-text-extension\";s:9:\"toVersion\";s:5:\"4.1.0\";s:11:\"fromVersion\";s:5:\"2.0.3\";s:10:\"vulnerable\";b:1;s:4:\"link\";s:108:\"https://www.wordfence.com/threat-intel/vulnerabilities/id/fa821005-9593-4a84-b4b4-af746da4d6b9?source=plugin\";}i:2;a:5:{s:4:\"slug\";s:23:\"contact-form-7-honeypot\";s:9:\"toVersion\";s:5:\"2.1.1\";s:11:\"fromVersion\";s:3:\"2.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:3;a:5:{s:4:\"slug\";s:17:\"really-simple-ssl\";s:9:\"toVersion\";s:5:\"7.2.0\";s:11:\"fromVersion\";s:5:\"5.2.2\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:4;a:5:{s:4:\"slug\";s:14:\"instagram-feed\";s:9:\"toVersion\";s:5:\"6.2.6\";s:11:\"fromVersion\";s:5:\"2.9.9\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:5;a:5:{s:4:\"slug\";s:9:\"wordfence\";s:9:\"toVersion\";s:6:\"7.11.0\";s:11:\"fromVersion\";s:5:\"7.5.7\";s:10:\"vulnerable\";b:1;s:4:\"link\";s:108:\"https://www.wordfence.com/threat-intel/vulnerabilities/id/833eb481-4fb4-432e-8e93-3f497ccbf1eb?source=plugin\";}i:6;a:5:{s:4:\"slug\";s:12:\"wp-mail-smtp\";s:9:\"toVersion\";s:6:\"3.10.0\";s:11:\"fromVersion\";s:5:\"3.2.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:7;a:4:{s:4:\"slug\";s:14:\"contact-form-7\";s:11:\"fromVersion\";s:5:\"5.5.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:8;a:4:{s:4:\"slug\";s:6:\"worker\";s:11:\"fromVersion\";s:6:\"4.9.17\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:9;a:4:{s:4:\"slug\";s:11:\"updraftplus\";s:11:\"fromVersion\";s:8:\"2.15.7.1\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:10;a:4:{s:4:\"slug\";s:14:\"duplicate-post\";s:11:\"fromVersion\";s:3:\"4.3\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:11;a:4:{s:4:\"slug\";s:14:\"fusion-builder\";s:11:\"fromVersion\";s:3:\"1.9\";s:10:\"vulnerable\";b:1;s:4:\"link\";s:108:\"https://www.wordfence.com/threat-intel/vulnerabilities/id/7c734aa9-ee9e-4605-a4b8-5075ce4b941f?source=plugin\";}i:12;a:4:{s:4:\"slug\";s:11:\"fusion-core\";s:11:\"fromVersion\";s:3:\"3.9\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}}','yes'),('vulnerabilities_theme','a:1:{i:0;a:4:{s:4:\"slug\";s:4:\"Divi\";s:9:\"toVersion\";s:6:\"4.23.1\";s:11:\"fromVersion\";s:6:\"4.23.0\";s:10:\"vulnerable\";b:0;}}','yes'),('wafAlertInterval','600','yes'),('wafAlertLastSendTime','1680180682','yes'),('wafAlertOnAttacks','1','yes'),('wafAlertThreshold','100','yes'),('wafAlertWhitelist','','yes'),('waf_status','enabled','yes'),('wfKillRequested','0','no'),('wfPeakMemory','12582912','no'),('wfScanStartVersion','5.8.8','yes'),('wfsd_engine','','no'),('wfStatusStartMsgs','a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}','yes'),('wf_dnsA','hpgmediatest.com points to 70.32.92.201','yes'),('wf_dnsCNAME','','yes'),('wf_dnsLogged','1','yes'),('wf_dnsMX','mail.hpgmediatest.com','yes'),('wf_scanLastStatusTime','0','yes'),('wf_scanRunning','','yes'),('wf_summaryItems','a:8:{s:12:\"scannedPosts\";i:0;s:15:\"scannedComments\";i:0;s:12:\"scannedFiles\";i:0;s:14:\"scannedPlugins\";i:0;s:13:\"scannedThemes\";i:0;s:12:\"scannedUsers\";i:0;s:11:\"scannedURLs\";i:0;s:10:\"lastUpdate\";i:1701275646;}','yes'),('whitelisted','','yes'),('whitelistedServices','[]','yes'),('whitelistHash','bf3d76dc05caf8623cb3fe01c1fc9e308e2f2ea37b826937d850fde361cdefd4','yes'),('whitelistPresets','{\"wordfence\":{\"n\":\"Wordfence\",\"h\":true,\"d\":true,\"f\":true,\"r\":[\"54.68.32.247\",\"69.46.36.0\\/27\",\"2605:2400:0104:0100::\\/56\"]},\"sucuri\":{\"n\":\"Sucuri\",\"d\":true,\"r\":[\"97.74.127.171\",\"69.164.203.172\",\"173.230.128.135\",\"66.228.34.49\",\"66.228.40.185\",\"50.116.36.92\",\"50.116.36.93\",\"50.116.3.171\",\"198.58.96.212\",\"50.116.63.221\",\"192.155.92.112\",\"192.81.128.31\",\"198.58.106.244\",\"192.155.95.139\",\"23.239.9.227\",\"198.58.112.103\",\"192.155.94.43\",\"162.216.16.33\",\"173.255.233.124\",\"173.255.233.124\",\"192.155.90.179\",\"50.116.41.217\",\"192.81.129.227\",\"198.58.111.80\",\"162.216.19.183\"]},\"facebook\":{\"n\":\"Facebook\",\"d\":true,\"r\":[\"69.63.176.0\\/20\",\"66.220.144.0\\/20\",\"66.220.144.0\\/21\",\"69.63.184.0\\/21\",\"69.63.176.0\\/21\",\"74.119.76.0\\/22\",\"69.171.255.0\\/24\",\"173.252.64.0\\/18\",\"69.171.224.0\\/19\",\"69.171.224.0\\/20\",\"103.4.96.0\\/22\",\"69.63.176.0\\/24\",\"173.252.64.0\\/19\",\"173.252.70.0\\/24\",\"31.13.64.0\\/18\",\"31.13.24.0\\/21\",\"66.220.152.0\\/21\",\"66.220.159.0\\/24\",\"69.171.239.0\\/24\",\"69.171.240.0\\/20\",\"31.13.64.0\\/19\",\"31.13.64.0\\/24\",\"31.13.65.0\\/24\",\"31.13.67.0\\/24\",\"31.13.68.0\\/24\",\"31.13.69.0\\/24\",\"31.13.70.0\\/24\",\"31.13.71.0\\/24\",\"31.13.72.0\\/24\",\"31.13.73.0\\/24\",\"31.13.74.0\\/24\",\"31.13.75.0\\/24\",\"31.13.76.0\\/24\",\"31.13.77.0\\/24\",\"31.13.96.0\\/19\",\"31.13.66.0\\/24\",\"173.252.96.0\\/19\",\"69.63.178.0\\/24\",\"31.13.78.0\\/24\",\"31.13.79.0\\/24\",\"31.13.80.0\\/24\",\"31.13.82.0\\/24\",\"31.13.83.0\\/24\",\"31.13.84.0\\/24\",\"31.13.85.0\\/24\",\"31.13.86.0\\/24\",\"31.13.87.0\\/24\",\"31.13.88.0\\/24\",\"31.13.89.0\\/24\",\"31.13.90.0\\/24\",\"31.13.91.0\\/24\",\"31.13.92.0\\/24\",\"31.13.93.0\\/24\",\"31.13.94.0\\/24\",\"31.13.95.0\\/24\",\"69.171.253.0\\/24\",\"69.63.186.0\\/24\",\"31.13.81.0\\/24\",\"179.60.192.0\\/22\",\"179.60.192.0\\/24\",\"179.60.193.0\\/24\",\"179.60.194.0\\/24\",\"179.60.195.0\\/24\",\"185.60.216.0\\/22\",\"45.64.40.0\\/22\",\"185.60.216.0\\/24\",\"185.60.217.0\\/24\",\"185.60.218.0\\/24\",\"185.60.219.0\\/24\",\"129.134.0.0\\/16\",\"157.240.0.0\\/16\",\"157.240.8.0\\/24\",\"157.240.0.0\\/24\",\"157.240.1.0\\/24\",\"157.240.2.0\\/24\",\"157.240.3.0\\/24\",\"157.240.4.0\\/24\",\"157.240.5.0\\/24\",\"157.240.6.0\\/24\",\"157.240.7.0\\/24\",\"157.240.9.0\\/24\",\"157.240.10.0\\/24\",\"157.240.16.0\\/24\",\"157.240.19.0\\/24\",\"157.240.11.0\\/24\",\"157.240.12.0\\/24\",\"157.240.13.0\\/24\",\"157.240.14.0\\/24\",\"157.240.15.0\\/24\",\"157.240.17.0\\/24\",\"157.240.18.0\\/24\",\"157.240.20.0\\/24\",\"157.240.21.0\\/24\",\"157.240.22.0\\/24\",\"157.240.23.0\\/24\",\"157.240.0.0\\/17\",\"69.171.250.0\\/24\",\"157.240.24.0\\/24\",\"157.240.25.0\\/24\",\"199.201.64.0\\/24\",\"199.201.65.0\\/24\",\"199.201.64.0\\/22\",\"204.15.20.0\\/22\",\"157.240.192.0\\/24\",\"129.134.0.0\\/17\",\"204.15.20.0\\/22\",\"69.63.176.0\\/20\",\"69.63.176.0\\/21\",\"69.63.184.0\\/21\",\"66.220.144.0\\/20\",\"69.63.176.0\\/20\",\"2620:0:1c00::\\/40\",\"2a03:2880::\\/32\",\"2a03:2880:fffe::\\/48\",\"2a03:2880:ffff::\\/48\",\"2620:0:1cff::\\/48\",\"2a03:2880:f000::\\/48\",\"2a03:2880:f001::\\/48\",\"2a03:2880:f002::\\/48\",\"2a03:2880:f003::\\/48\",\"2a03:2880:f004::\\/48\",\"2a03:2880:f005::\\/48\",\"2a03:2880:f006::\\/48\",\"2a03:2880:f007::\\/48\",\"2a03:2880:f008::\\/48\",\"2a03:2880:f009::\\/48\",\"2a03:2880:f00a::\\/48\",\"2a03:2880:f00b::\\/48\",\"2a03:2880:f00c::\\/48\",\"2a03:2880:f00d::\\/48\",\"2a03:2880:f00e::\\/48\",\"2a03:2880:f00f::\\/48\",\"2a03:2880:f010::\\/48\",\"2a03:2880:f011::\\/48\",\"2a03:2880:f012::\\/48\",\"2a03:2880:f013::\\/48\",\"2a03:2880:f014::\\/48\",\"2a03:2880:f015::\\/48\",\"2a03:2880:f016::\\/48\",\"2a03:2880:f017::\\/48\",\"2a03:2880:f018::\\/48\",\"2a03:2880:f019::\\/48\",\"2a03:2880:f01a::\\/48\",\"2a03:2880:f01b::\\/48\",\"2a03:2880:f01c::\\/48\",\"2a03:2880:f01d::\\/48\",\"2a03:2880:f01e::\\/48\",\"2a03:2880:f01f::\\/48\",\"2a03:2880:1000::\\/36\",\"2a03:2880:2000::\\/36\",\"2a03:2880:3000::\\/36\",\"2a03:2880:4000::\\/36\",\"2a03:2880:5000::\\/36\",\"2a03:2880:6000::\\/36\",\"2a03:2880:7000::\\/36\",\"2a03:2880:f020::\\/48\",\"2a03:2880:f021::\\/48\",\"2a03:2880:f022::\\/48\",\"2a03:2880:f023::\\/48\",\"2a03:2880:f024::\\/48\",\"2a03:2880:f025::\\/48\",\"2a03:2880:f026::\\/48\",\"2a03:2880:f027::\\/48\",\"2a03:2880:f028::\\/48\",\"2a03:2880:f029::\\/48\",\"2a03:2880:f02b::\\/48\",\"2a03:2880:f02c::\\/48\",\"2a03:2880:f02d::\\/48\",\"2a03:2880:f02e::\\/48\",\"2a03:2880:f02f::\\/48\",\"2a03:2880:f030::\\/48\",\"2a03:2880:f031::\\/48\",\"2a03:2880:f032::\\/48\",\"2a03:2880:f033::\\/48\",\"2a03:2880:f034::\\/48\",\"2a03:2880:f035::\\/48\",\"2a03:2880:f036::\\/48\",\"2a03:2880:f037::\\/48\",\"2a03:2880:f038::\\/48\",\"2a03:2880:f039::\\/48\",\"2a03:2880:f03a::\\/48\",\"2a03:2880:f03b::\\/48\",\"2a03:2880:f03c::\\/48\",\"2a03:2880:f03d::\\/48\",\"2a03:2880:f03e::\\/48\",\"2a03:2880:f03f::\\/48\",\"2401:db00::\\/32\",\"2a03:2880::\\/36\",\"2803:6080::\\/32\",\"2a03:2880:f100::\\/48\",\"2a03:2880:f200::\\/48\",\"2a03:2880:f101::\\/48\",\"2a03:2880:f201::\\/48\",\"2a03:2880:f102::\\/48\",\"2a03:2880:f202::\\/48\",\"2a03:2880:f103::\\/48\",\"2a03:2880:f203::\\/48\",\"2a03:2880:f104::\\/48\",\"2a03:2880:f204::\\/48\",\"2a03:2880:f107::\\/48\",\"2a03:2880:f207::\\/48\",\"2a03:2880:f108::\\/48\",\"2a03:2880:f208::\\/48\",\"2a03:2880:f109::\\/48\",\"2a03:2880:f209::\\/48\",\"2a03:2880:f10a::\\/48\",\"2a03:2880:f20a::\\/48\",\"2a03:2880:f10b::\\/48\",\"2a03:2880:f20b::\\/48\",\"2a03:2880:f10d::\\/48\",\"2a03:2880:f20d::\\/48\",\"2a03:2880:f10e::\\/48\",\"2a03:2880:f20e::\\/48\",\"2a03:2880:f10f::\\/48\",\"2a03:2880:f20f::\\/48\",\"2a03:2880:f110::\\/48\",\"2a03:2880:f210::\\/48\",\"2a03:2880:f111::\\/48\",\"2a03:2880:f211::\\/48\",\"2a03:2880:f112::\\/48\",\"2a03:2880:f212::\\/48\",\"2a03:2880:f114::\\/48\",\"2a03:2880:f214::\\/48\",\"2a03:2880:f115::\\/48\",\"2a03:2880:f215::\\/48\",\"2a03:2880:f116::\\/48\",\"2a03:2880:f216::\\/48\",\"2a03:2880:f117::\\/48\",\"2a03:2880:f217::\\/48\",\"2a03:2880:f118::\\/48\",\"2a03:2880:f218::\\/48\",\"2a03:2880:f119::\\/48\",\"2a03:2880:f219::\\/48\",\"2a03:2880:f11a::\\/48\",\"2a03:2880:f21a::\\/48\",\"2a03:2880:f11f::\\/48\",\"2a03:2880:f21f::\\/48\",\"2a03:2880:f121::\\/48\",\"2a03:2880:f221::\\/48\",\"2a03:2880:f122::\\/48\",\"2a03:2880:f222::\\/48\",\"2a03:2880:f123::\\/48\",\"2a03:2880:f223::\\/48\",\"2a03:2880:f10c::\\/48\",\"2a03:2880:f20c::\\/48\",\"2a03:2880:f126::\\/48\",\"2a03:2880:f226::\\/48\",\"2a03:2880:f105::\\/48\",\"2a03:2880:f205::\\/48\",\"2a03:2880:f125::\\/48\",\"2a03:2880:f225::\\/48\",\"2a03:2880:f106::\\/48\",\"2a03:2880:f206::\\/48\",\"2a03:2880:f11b::\\/48\",\"2a03:2880:f21b::\\/48\",\"2a03:2880:f113::\\/48\",\"2a03:2880:f213::\\/48\",\"2a03:2880:f11c::\\/48\",\"2a03:2880:f21c::\\/48\",\"2a03:2880:f128::\\/48\",\"2a03:2880:f228::\\/48\",\"2a03:2880:f02a::\\/48\",\"2a03:2880:f12a::\\/48\",\"2a03:2880:f22a::\\/48\",\"2a03:2880:f12f::\\/48\",\"2a03:2880:f22f::\\/48\",\"2a03:2880:f11d::\\/48\",\"2a03:2880:f11e::\\/48\",\"2a03:2880:f120::\\/48\",\"2a03:2880:f124::\\/48\",\"2a03:2880:f127::\\/48\",\"2a03:2880:f129::\\/48\",\"2a03:2880:f12b::\\/48\",\"2a03:2880:f12c::\\/48\",\"2a03:2880:f12d::\\/48\",\"2a03:2880:f12e::\\/48\",\"2a03:2880:f130::\\/48\",\"2a03:2880:f131::\\/48\",\"2a03:2880:f132::\\/48\",\"2a03:2880:f133::\\/48\",\"2a03:2880:f134::\\/48\",\"2a03:2880:f135::\\/48\",\"2a03:2880:f136::\\/48\",\"2a03:2880:f137::\\/48\",\"2a03:2880:f138::\\/48\",\"2a03:2880:f139::\\/48\",\"2a03:2880:f13a::\\/48\",\"2a03:2880:f13b::\\/48\",\"2a03:2880:f13c::\\/48\",\"2a03:2880:f13d::\\/48\",\"2a03:2880:f13e::\\/48\",\"2a03:2880:f13f::\\/48\",\"2a03:2880:f21d::\\/48\",\"2a03:2880:f21e::\\/48\",\"2a03:2880:f220::\\/48\",\"2a03:2880:f224::\\/48\",\"2a03:2880:f227::\\/48\",\"2a03:2880:f229::\\/48\",\"2a03:2880:f22b::\\/48\",\"2a03:2880:f22c::\\/48\",\"2a03:2880:f22d::\\/48\",\"2a03:2880:f22e::\\/48\",\"2a03:2880:f230::\\/48\",\"2a03:2880:f231::\\/48\",\"2a03:2880:f232::\\/48\",\"2a03:2880:f233::\\/48\",\"2a03:2880:f234::\\/48\",\"2a03:2880:f235::\\/48\",\"2a03:2880:f236::\\/48\",\"2a03:2880:f237::\\/48\",\"2a03:2880:f238::\\/48\",\"2a03:2880:f239::\\/48\",\"2a03:2880:f23a::\\/48\",\"2a03:2880:f23b::\\/48\",\"2a03:2880:f23c::\\/48\",\"2a03:2880:f23d::\\/48\",\"2a03:2880:f23e::\\/48\",\"2a03:2880:f23f::\\/48\",\"2a03:2880:f0ff::\\/48\",\"2a03:2880:f1ff::\\/48\",\"2a03:2880:f2ff::\\/48\",\"2c0f:ef78:0003::\\/48\"]},\"uptimerobot\":{\"n\":\"Uptime Robot\",\"d\":true,\"r\":[\"69.162.124.224\\/28\",\"63.143.42.240\\/28\"]},\"statuscake\":{\"n\":\"StatusCake\",\"d\":true,\"r\":[\"103.194.112.70\",\"104.131.247.151\",\"104.131.248.65\",\"104.131.248.78\",\"104.156.229.24\",\"104.156.255.184\",\"104.206.168.26\",\"104.238.164.105\",\"107.150.1.135\",\"107.155.104.182\",\"107.155.108.234\",\"107.155.125.29\",\"107.161.28.219\",\"107.170.197.248\",\"107.170.219.46\",\"107.170.227.23\",\"107.170.227.24\",\"107.170.240.141\",\"107.170.53.191\",\"107.191.47.131\",\"107.191.57.237\",\"108.61.119.153\",\"108.61.162.214\",\"108.61.205.201\",\"108.61.212.141\",\"108.61.215.179\",\"125.63.48.239\",\"128.199.222.65\",\"138.197.130.232\",\"138.197.130.235\",\"138.197.140.243\",\"138.204.171.136\",\"138.68.24.115\",\"138.68.24.136\",\"138.68.24.207\",\"138.68.24.60\",\"138.68.80.10\",\"138.68.80.173\",\"139.59.15.79\",\"139.59.155.26\",\"139.59.190.241\",\"139.59.22.109\",\"139.59.26.85\",\"139.59.29.167\",\"149.154.157.61\",\"149.255.59.100\",\"151.236.10.238\",\"151.236.18.80\",\"151.80.175.223\",\"151.80.175.226\",\"154.127.60.23\",\"154.127.60.59\",\"158.255.208.76\",\"159.203.182.22\",\"159.203.182.60\",\"159.203.186.225\",\"159.203.31.18\",\"162.243.247.163\",\"162.243.71.56\",\"162.248.97.72\",\"162.253.64.104\",\"162.253.64.87\",\"176.56.230.110\",\"178.62.101.57\",\"178.62.104.137\",\"178.62.106.84\",\"178.62.109.7\",\"178.62.40.233\",\"178.62.41.44\",\"178.62.41.49\",\"178.62.41.52\",\"178.62.65.162\",\"178.62.71.227\",\"178.62.78.199\",\"178.62.80.93\",\"178.62.86.69\",\"178.73.210.99\",\"181.41.201.117\",\"181.41.214.137\",\"185.112.157.185\",\"185.12.45.70\",\"185.47.129.168\",\"185.60.135.86\",\"188.166.158.224\",\"188.166.253.148\",\"188.226.139.158\",\"188.226.158.160\",\"188.226.169.228\",\"188.226.171.58\",\"188.226.184.152\",\"188.226.185.106\",\"188.226.186.199\",\"188.226.203.84\",\"188.226.247.184\",\"188.68.238.79\",\"192.241.221.11\",\"193.124.178.54\",\"193.124.178.61\",\"193.182.144.105\",\"193.182.144.147\",\"199.167.128.80\",\"209.222.30.242\",\"213.183.56.107\",\"217.148.43.188\",\"217.148.43.202\",\"31.220.7.237\",\"37.157.246.146\",\"37.235.48.42\",\"37.235.52.25\",\"37.235.53.240\",\"37.235.55.205\",\"37.97.188.103\",\"45.32.128.80\",\"45.32.145.79\",\"45.32.151.21\",\"45.32.160.172\",\"45.32.166.195\",\"45.32.171.24\",\"45.32.192.198\",\"45.32.195.186\",\"45.32.195.93\",\"45.32.212.56\",\"45.32.36.158\",\"45.32.7.22\",\"45.63.121.159\",\"45.63.26.78\",\"45.63.51.63\",\"45.63.61.213\",\"45.63.76.68\",\"45.63.78.84\",\"45.63.86.120\",\"45.63.88.213\",\"45.76.1.44\",\"45.76.192.50\",\"45.76.3.112\",\"46.101.0.24\",\"46.101.110.32\",\"46.101.110.43\",\"46.101.110.45\",\"46.101.20.96\",\"46.101.238.182\",\"46.101.238.189\",\"46.101.240.208\",\"46.101.27.186\",\"46.101.61.83\",\"46.101.74.251\",\"5.45.179.103\",\"50.2.139.16\",\"82.221.95.161\",\"91.236.116.163\"]},\"managewp\":{\"n\":\"ManageWP\",\"d\":false,\"r\":[\"34.211.180.66\",\"54.70.65.107\",\"34.210.224.7\",\"52.41.5.108\",\"52.35.72.129\",\"54.191.137.17\",\"35.162.254.253\",\"52.11.12.231\",\"52.11.29.70\",\"52.11.54.161\",\"52.24.142.159\",\"52.25.191.255\",\"52.27.181.126\",\"52.34.126.117\",\"52.34.254.47\",\"52.35.82.99\",\"52.36.28.80\",\"52.38.106.97\",\"52.39.177.152\",\"52.41.230.148\",\"52.41.237.12\",\"52.42.126.166\",\"52.43.13.71\",\"52.43.76.224\",\"52.88.96.110\",\"52.89.155.51\",\"54.148.73.118\",\"54.186.37.105\",\"54.187.92.57\",\"54.191.32.65\",\"54.191.67.23\",\"54.191.80.119\",\"54.191.135.209\",\"54.191.136.176\",\"54.191.148.85\",\"54.191.149.8\",\"52.26.122.21\",\"52.24.187.29\",\"52.89.85.107\",\"54.186.128.167\",\"54.191.40.136\",\"52.24.62.11\",\"52.88.119.122\",\"54.191.148.225\",\"54.191.151.18\",\"52.89.94.121\",\"52.25.116.116\",\"52.88.215.225\",\"54.186.143.184\",\"52.88.197.180\",\"52.27.171.126\"]},\"seznam\":{\"n\":\"Seznam Search Engine\",\"d\":true,\"r\":[\"77.75.74.0\\/24\",\"77.75.76.0\\/24\",\"77.75.77.0\\/24\",\"77.75.78.0\\/24\",\"77.75.79.0\\/24\",\"2a02:598:a::78:0\\/112\",\"2a02:598:a::79:0\\/112\",\"2a02:598:2::0\\/96\"]}}','yes'),('wordfenceI18n','1','yes'),('wordpressPluginVersions','a:13:{s:14:\"classic-editor\";s:5:\"1.6.2\";s:14:\"contact-form-7\";s:5:\"5.5.3\";s:37:\"contact-form-7-dynamic-text-extension\";s:5:\"2.0.3\";s:14:\"fusion-builder\";s:3:\"1.9\";s:11:\"fusion-core\";s:3:\"3.9\";s:23:\"contact-form-7-honeypot\";s:3:\"2.1\";s:6:\"worker\";s:6:\"4.9.17\";s:17:\"really-simple-ssl\";s:5:\"5.2.2\";s:14:\"instagram-feed\";s:5:\"2.9.9\";s:11:\"updraftplus\";s:8:\"2.15.7.1\";s:9:\"wordfence\";s:5:\"7.5.7\";s:12:\"wp-mail-smtp\";s:5:\"3.2.1\";s:14:\"duplicate-post\";s:3:\"4.3\";}','yes'),('wordpressThemeVersions','a:1:{s:4:\"Divi\";s:6:\"4.23.1\";}','yes'),('wordpressVersion','5.8.8','yes'),('wp_home_url','https://kingsvillelivestock.com','yes'),('wp_site_url','https://kingsvillelivestock.com','yes');
/*!40000 ALTER TABLE `b78GM7Ml_wfconfig` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_wfcrawlers`
--

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

--
-- Dumping data for table `b78GM7Ml_wfcrawlers`
--

LOCK TABLES `b78GM7Ml_wfcrawlers` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_wfcrawlers` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_wfcrawlers` VALUES ('\0\0\0\0\0\0\0\0\0\0ÿÿBùBÅ','‹üÀ•>b0«oQ1Œö','verified',1700914309,'crawl-66-249-66-197.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùBÌ','‹üÀ•>b0«oQ1Œö','verified',1700914308,'crawl-66-249-66-204.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùBÍ','‹üÀ•>b0«oQ1Œö','verified',1700914307,'crawl-66-249-66-205.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùI','‹üÀ•>b0«oQ1Œö','verified',1700843228,'crawl-66-249-73-5.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùI','‹üÀ•>b0«oQ1Œö','verified',1700896249,'crawl-66-249-73-6.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùI	','‹üÀ•>b0«oQ1Œö','verified',1701215260,'crawl-66-249-73-9.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùK$','‹üÀ•>b0«oQ1Œö','verified',1700765731,'crawl-66-249-75-36.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùK&','‹üÀ•>b0«oQ1Œö','verified',1700765729,'crawl-66-249-75-38.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùK*','‹üÀ•>b0«oQ1Œö','verified',1700776628,'crawl-66-249-75-42.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùK+','‹üÀ•>b0«oQ1Œö','verified',1700765730,'crawl-66-249-75-43.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùK,','‹üÀ•>b0«oQ1Œö','verified',1700765732,'crawl-66-249-75-44.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùOi','‹üÀ•>b0«oQ1Œö','verified',1701054360,'crawl-66-249-79-105.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùOj','‹üÀ•>b0«oQ1Œö','verified',1701054361,'crawl-66-249-79-106.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0ÿÿBùW‚','‹üÀ•>b0«oQ1Œö','verified',1700781098,'rate-limited-proxy-66-249-87-130.google.com');
/*!40000 ALTER TABLE `b78GM7Ml_wfcrawlers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_wffilechanges`
--

DROP TABLE IF EXISTS `b78GM7Ml_wffilechanges`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `b78GM7Ml_wffilechanges` (
  `filenameHash` char(64) NOT NULL,
  `file` varchar(1000) NOT NULL,
  `md5` char(32) NOT NULL,
  PRIMARY KEY (`filenameHash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `b78GM7Ml_wffilechanges`
--

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

--
-- Table structure for table `b78GM7Ml_wffilemods`
--

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

--
-- Dumping data for table `b78GM7Ml_wffilemods`
--

LOCK TABLES `b78GM7Ml_wffilemods` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_wffilemods` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_wffilemods` VALUES ('\0ðOiÂVi°â`ç´]ÇÙ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidIdTypeError.php',0,'‰ý/I;¾éF“ÖAr','‰ý/I;¾éF“ÖAr','Ê¡ã.÷JFoP0@\\Æ€œh…ïðì%z>?ÿë”Âp…','',0,'?'),('\0\nˆÐ·+ö_xedè ä±','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AuthenticationError.php',0,'ºW€{èê]m®	emÇÑH','ºW€{èê]m®	emÇÑH','óÈ‹h?eu-üý3ÆÝP\rÛ)+‘\rW}îòË=—ºC','',0,'?'),('\0ß@uœ¥œ2¶îXç¶','wp-content/plugins/contact-form-7/modules/date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@¶A¥ü¤7UDÞMilSî£','YÒ+¦ì÷ƒ.m ¼Yw{Ç”aÄ7önÇ‡ä)äõ}L','',0,'?'),('\0?Hê\0ÊE}ý¿¦³ç\"â','wp-includes/sodium_compat/lib/namespaced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','01ÕÎèø”vnGœ¬\r ',']/r~úÊºO‚›‡Cîc§xB…€j/ëoµ˜UÙI*Ù','',0,'?'),('\0¥þ*=ÀÈ/#þk#','wp-content/plugins/updraftplus/vendor/symfony/process/Exception/InvalidArgumentException.php',0,'³ÈYˆæ¬d=Úl¶òŸ³º','³ÈYˆæ¬d=Úl¶òŸ³º','äeÜø=î±ã. Ò ûonÿ„õ¼Ò´‡Ô¿‹šgÐ‘eu','',0,'?'),('\0&ñå·’ç7ŸQéPx˜','wp-content/plugins/wp-mail-smtp/assets/js/vendor/moment.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰™¸µÐ~œ`w¬ZÆ¼”)h','Š¼%}®-°)À~‡Mw¾T=­îçg¹¨½ûH!ç','',0,'?'),('\0\'rµøÅOÇÂ5ì‰,8ÏB','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/State.php',0,'f6…\'ÕZ múÈË¡I¨','f6…\'ÕZ múÈË¡I¨','‡âöhhº&9†EyÛG„;\n#‡ùOê³(šà~›ó','',0,'?'),('\0)4\nTYü¡d4G~¶','wp-includes/images/w-logo-blue-white-bg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0öIÌkò|ûÑ¼ÜÓÇ','OœÉ— oµ“ñÒC«ŽAÒ/xŠ‡ Í<ê•Ü%4=?','',0,'?'),('\00œµUL¢–‚Â+Ñ2q','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPayerException.php',0,'fŠóö/@>Mÿ\0¼ôÅGXm','fŠóö/@>Mÿ\0¼ôÅGXm','{º†9¥mcÏœ^õå“¢wýÌzV…>´Mš­Ì$Wâ','',0,'?'),('\00öñ#Š9ýœ¬Z4Îj$','wp-admin/network/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nÉd4VÚ‹S~tÉ±¬Åº','˜oëá•‘°\"tÎy¼S‚¶°¦M8!9/·?Y­XË','',0,'?'),('\01 žu’X¸ßtT˜','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferPart.php',0,'Kzýé˜sØßÉ>é¡ˆúß','Kzýé˜sØßÉ>é¡ˆúß','!]1¶!¯ÞÓ{D3^ëUŽ6Î™–ü*™nÉh…^','',0,'?'),('\05gÀËÏê«”c‹0‰\"D','wp-includes/css/media-views-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z:Œ·×Î;\\´©èèÞ','£kÒK§SF_D|ê\r“Vÿ†í\'bêÇç¹l–¡IŒ','',0,'?'),('\05×©*ô?ç\Z³^zK','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateWebhook.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°}-_‘¬ëÂú<A÷[Ù','Ú@VÜ0$sˆÑþ|Tòì¼\rgòÛ¹,Þ1¨½d','',0,'?'),('\0;ŠôøQ.R¯Ý²™ü','wp-content/plugins/really-simple-ssl/languages/really-simple-ssl.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾ÔT¬n8TÌÍ‡˜Ùîì','\\NõŸçþ‹¾’Y$´su66Œ^œÙžáðA','',0,'?'),('\0C_\nìÂjD¨é@k','wp-admin/network/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ï¦)õ˜&·cÔíÏ','1¾t/g7OÇ$›U~‡4n7¢Z\Z;uûÉ)¨dk¡¢n','',0,'?'),('\0G¸¥àM(çÒYlWzã!','wp-includes/sodium_compat/src/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pZú˜£ËÄ:!„Ù¼Ñ','3í³l¦@Ùä™ú—o£-É3ö–ýS¦ÌàÕ&Ê!Ð','',0,'?'),('\0\\sèÁTÃ«½Ö˜8áÃ','wp-includes/blocks/post-excerpt/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vÓ¶=dR\"<Ök“±÷U§','»¾%ä#\0eóîV³m†-·/®XÁ@ƒSWõzâ?ð','',0,'?'),('\0`Y±Ï­rG¦¦”„','wp-includes/SimplePie/Restriction.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[\"Óé~\'ÌÕòúŠ$|2*¾','ã>«3Ö	vj¯¦\r|\")\"÷5SR¹\0è{kßýËäã{6','',0,'?'),('\0ræ¹ì_jir_±	Šx\\','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/advanced/tools-menu.php',0,')ûKÒaOtÉKV™¬_zdc',')ûKÒaOtÉKV™¬_zdc','f†´¹¥›-ØS¨Þ6©¡ 94xÑ¡ÕÚu','',0,'?'),('\0t 9Åö²T¥»FùS','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Feed.php',0,'	Lq_a~@›¼fa9','	Lq_a~@›¼fa9','6Íî.0ÿHF]•E0ö<62þjlž3a3\"øÉ(<','',0,'?'),('\0w™=åÚªÞt¿ßsJ\ru‡','wp-content/updraft/themes-old/twentysixteen/template-parts/content-none.php',0,'À&<]G$?kýqVÛ•','À&<]G$?kýqVÛ•','}…1%np”ÓWšÑc%98é%\\ÖGjÃ÷Éõ×È·º','',0,'?'),('\0|,pd£–×]Íé+9æ','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/TableSharedKeyLiteAuthScheme.php',0,'4?%v0/ð¡’¤4ß','4?%v0/ð¡’¤4ß','µcM¬C˜etÌì.ÂÑÿêUÆ«Y“xä;»çV«','',0,'?'),('\0Œþæ;fóúQî=*Ç•Ã','wp-includes/js/wp-emoji.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*®—š‹Î×¶H;†q.½','º¦‹ë©æO´î)`5gòD?5F’!–ÈÈÎõ','',0,'?'),('\0”• ˆ€Œç!¼˜õ5ßÑ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/welcome/views/changelog.php',0,'G¼Ê¼ ¯£ò.ŒïÄ','G¼Ê¼ ¯£ò.ŒïÄ','}ñÂ\\ìÒ~fs†}ŒÝ´Ãˆ¤ðr.l†ž‰B•ó ','',0,'?'),('\0šŽ¢{†_Ý9.,=E','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Appsactivity.php',0,'Ž·p³˜¶zØ—)z‚ìy','Ž·p³˜¶zØ—)z‚ìy','€-ðnøË^n€1TÏô˜Ë…÷qîS®ìì™·¢B§ù6','',0,'?'),('\0›iÜÂäÅÐâ1ê¹ô³E','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/html5shiv.js',0,'¬ü£¬…á–¡†š°w','¬ü£¬…á–¡†š°w','ÀÉµ¡jÊ3ÑÌŸðÜzˆ‘À7ü³¯v™/Í¿Òß€','',0,'?'),('\0Î%Ô–|!@)ô<û¼0','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Account/AbstractLocation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'Ú:#û\0Tpn”á²`þÍ	','5I4)ËÐ\Z+å\\HmMî¶cJ(ÜCæp‘ÛE7éí ä','',0,'?'),('\0ž9ó¿k5&åÙ™ 7N','wp-includes/sodium_compat/src/Core32/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MÂkÝ¢A™ÛýD¬5zúyj','BQ©e!‹R±il˜ÐsÌnq¡ÒR41xë¤xê…Q!','',0,'?'),('\0žˆË+d6u›Ñq†Ù‘ó','wp-content/plugins/updraftplus/includes/Google/Service/Bigquery.php',0,'AgDÀ•¢\rÎy¼§è:dÿ','AgDÀ•¢\rÎy¼§è:dÿ','I¤çÅ˜rÆzá2Ñ*Bïv›õ°.|sT_?ëO','',0,'?'),('\0¿’\'m›‚ËFtÖøñ','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.cycle.js',0,'‡€á5?Óô>xÕB«þ”\r','‡€á5?Óô>xÕB«þ”\r','{Qãä¢£Õ,ÇgÔâ´<®”v\"ÞíÎÉÙ»¾','',0,'?'),('\0Ç|9è×u…eäñá–@ƒµ','wp-admin/includes/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Âæzñùbb})*9>','ªG’dª2•òP#	ÐHØ–x·óí°i²tÏˆê','',0,'?'),('\0ÐDø`ø8R¦ÇÉ²%†','wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—Ò}éà`i½æÂyô–È','ÜÄÜTÜ¯¶øœë19^Õ»½P\'„L d%òk|×PØž','',0,'?'),('\0ÞÝl™À“ÌÌ­ÁÇ¿Ó','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/ace_editor/field_ace_editor.php',0,'HF~BÍ‡½u\\ñaäó¥','HF~BÍ‡½u\\ñaäó¥','£ÇAÛòtâÍ×Ý?i[9ƒ Å¢	©#}\':nõ\r','',0,'?'),('\0à²¬èC$êUc˜ÁqD','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-admin-notice.js',0,'Ú*çS¥É\Zýãg[Õ#[','Ú*çS¥É\Zýãg[Õ#[','d×3öºWnaëÞJ¯ò[Lâ-)4ÇM¢¬~úv|g ”|Ý','',0,'?'),('\0älDdƒÓýu^âáY¬â¤','wp-admin/user/privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þd‚IºáòU{x1·A','Fªåu†X\0¾og«:~”ÈhÆé_”„5ÒËpítÒ$','',0,'?'),('\0êaÏñ<ˆUí×y1/I§','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/imagetools/plugin.min.js',0,'£ÄøÒáD\r%6>7÷Mÿéö','£ÄøÒáD\r%6>7÷Mÿéö','ñ–”þÕ’æ^V2$ÃÐ£w:/½5²¢é‚.k','',0,'?'),('\0ív¹ˆ®‹Ø¦£Þñ÷Ýž','wp-includes/blocks/post-template/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y\\GÔ-rPÒ+Ú\ZBŠ¼','¯75~úÎlIZ[\\ŒG1§Ñ\nÞ|u?fUóEK!','',0,'?'),('\0ó¨ÿuÙ~¸OÄ¼¿Y¿','wp-content/plugins/worker/src/PHPSecLib/File/ANSI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–èwžo$Iƒ)\"¿Çz1z','š<OÈ#MkZFvLëÅjjgú”j™™_ì]»e','',0,'?'),('\0ü $Ééð¦Ó™\0Ö«','wp-includes/block-patterns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y·»Ñ8[Ö«€â\'¯ªáí–','<Ûš—B^îÖc·±xU§NLŒxcÙ#\\òcŸæ','',0,'?'),('\rx+¦Uá÷áÚœÝ“¼','wp-includes/css/dist/list-reusable-blocks/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tçéò6JÒ¨NM!d¼ý$t','EµÕ|þ¡ÁK4úgì,½æ_›™^… ,‡½	Ev','',0,'?'),('@Ÿž)¢û…žêzŽÈØ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Client.php',0,'À-Ü%5v‘F¨º\0*','À-Ü%5v‘F¨º\0*','ÔïÐ£!Va¯å›tüÅ Í1¡j[ùx¸\\sB½w','',0,'?'),('é|MÛ[ù‰ô6¾Zið','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/Request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÄnÜ~Ha¾\"0ö<i¥h,','¤œãT8âbz\0d¡>9®3$erá\'ûSþró€¨ü','',0,'?'),('a#%º-®­ð2cØ“','wp-content/plugins/updraftplus/includes/tether-shepherd/shepherd.js',0,'š€œ\\&T…¾+ÛÿKæ','š€œ\\&T…¾+ÛÿKæ','j¯à\\3ø§Ñ3IUâóÞ¾8øƒeP\nJ-j\']lv','',0,'?'),('/>“çüß»(Èæ3Œ','wp-includes/blocks/verse/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y†Ëû¦ÜVqY˜\n‚','MbO<W\'8!»‡ˆéAø€Sô\ráG_n0‹ùùsì','',0,'?'),('!0‘;.\n6;¨8L0Ço','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression_DayOfMonthField.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iÖOüÔ‚b¼t4Ò\\','§åÚ’5fCSQ\0Q†ê·)=\Zkò$ ŸÆ\0I˜','',0,'?'),('2q2gH&õ%`u-\nt','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.fusion_maps.js',0,'¶Zú2@ßò¯àGøiÁ\0','¶Zú2@ßò¯àGøiÁ\0','“á6¹9—_Ï?Î¶ÌÏ[¹½N§:\"Ø•ÛYd5¬bß0/','',0,'?'),('JÒ—q•gè8²ÿ¦™','wp-content/plugins/fusion-builder/assets/js/wpeditor/wp-editor.js',0,'(ÿSbâ2¸„‘%ƒ¦fo','(ÿSbâ2¸„‘%ƒ¦fo','Â|ð˜æ—Ã~å¬¿”8kØ}ÎGîRÖ‚œ {?jWb8','',0,'?'),('J@å‹pÞ[+;–Ï´‹','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthDataStore.php',0,'ýù«À(úIîÔ×ðýÂÉY','ýù«À(úIîÔ×ðýÂÉY','Ú5½õâ£#\ZDÊ LÓM7´€×Påiá&ÿ(','',0,'?'),('NQž\"*hzªrÃw|\Zø','wp-admin/images/media-button-other.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥Q&T^‚]BB™g\'ùÃ','ý¡B\Zêr¶FÿÐ’Ã‰Pv-^fT¿,ÊÁ_ÂÉi','',0,'?'),('P Úfíz\'%]UG#Žâ±','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/IncorrectNumberOfFilesInPostRequestException.php',0,'šw”òŠ{¾Ë7ð*)l','šw”òŠ{¾Ë7ð*)l','²_G¶3¤ïIºk¶Î¼Åe¢ÝG²Túj¨IKï‡!','',0,'?'),('XòÖ|¿U¢NTzyá','wp-content/plugins/duplicate-post/common-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ØµÜÛñÝa–[$!<','°òJØ8]±#¿{ôkÁ\"7•ÓñY•Üó$ðvžíû¦Ý','',0,'?'),('XýÉ˜y_ñ7¥XN/','wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ç\\hÏè¤”\'\nä·º',' ”7ßÜRGë$/Á‡Íæ-i®ÝNm(ÎWØ;Ì…','',0,'?'),('[‘ð’ŽôÓBa~D¸#3‰','wp-content/plugins/wp-mail-smtp/assets/vue/img/thumbs-down.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ã!?‚ÛF\"ìñ1F÷™>c','hÿ.Q\'\rähŸ%‡1o{²ÚWöœ–+\'H!W','',0,'?'),(']³Öj‰ÇR¤þ‰X','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷´//R·„‚áÌjãéÉ.','ö¥3\'X\rËo‘`/×ÓDØù ½é/òº3\Z','',0,'?'),('_(>6;·êÙØ¥ö','wp-content/plugins/wp-mail-smtp/assets/images/flyout-menu/mascot.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÁÞ\Z|Ðw-®þâˆde2s','v—aå6	õ.§ù_æT:eÇ [^j‚jµ=ú†”úçŽ','',0,'?'),('icdk,¸ïqù‰7¸','wp-content/themes/Divi/includes/functions/tutorials.php',0,'\"I<^XžÕcÙ+GtXÕâ','\"I<^XžÕcÙ+GtXÕâ','v0ÉRå\"Ÿíæ°\nïCØ£÷@çh6L\nIÖïj','',0,'?'),('“ýR}<[ç÷(œ1!','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/AcpBuilder.php',0,'|®™=ÍÍ\"`(r‘','|®™=ÍÍ\"`(r‘','‹W»“ßÏ{¨Ës0\')d¤°gó‘y‚)~¶\rwˆ','',0,'?'),('™TêhËÔìzPŸùré','wp-admin/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R\Z5O™a46¬ê>fâZ','ëZ2¼é6Qºˆÿ˜àëŽ¬6Ž§0»w5ôÃJí£š{Ö','',0,'?'),('™Ï‹Ð”\'OtûÊ—M;','wp-includes/js/dist/deprecated.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[O¤ð’|÷eïéJÃ,^×','ÔíêKaJv	hät&”^#ÄŸeT÷<¨9þ@L?','',0,'?'),('¼QUÁWÜ•Á… šå‘³','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Util.php',0,'€Ât­ñ>ÍäX™ÐQ!V‹','€Ât­ñ>ÍäX™ÐQ!V‹','sXÀš_ÔÕ¬(cü\0†ýB’éï¢Ó„OëOU`R','',0,'?'),('ÉX|_ÕÈwcÓ:©j‚ÑÀ','wp-includes/blocks/search/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uó£-´€zÁ¥gÑÇ!k­â','/¿x-æi.Jä­æm‡c9f%“\\	wÃ9H{','',0,'?'),('Í¹Ûm`Ëœmô©³Q','wp-content/updraft/plugins-old/updraftplus/example-decrypt.php',0,'U8ë£Õd„#:#ë’ó','U8ë£Õd„#:#ë’ó','i‘Mìø,ê÷å;Ìø-­†4)»ÆyÍ¼ÝÔj5ßwî','',0,'?'),('äÍÄŠc èèS^Ý-‹','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Utils.php',0,'À*ÇCSÚŸ™eÕXÍ~','À*ÇCSÚŸ™eÕXÍ~','SxþÛ/Ì{¸ÙYÙœ.bfkKßU×˜aLËŒ¹¼','',0,'?'),('äèE?tB9b—vF`1','wp-content/plugins/wordfence/modules/login-security/img/loading_background.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬ô\'é2û”p\nK‹X´ì','ÍÎŽ%XïÅ–F¼ÿçÜò1sÏ;ÀÎLëzrç’»','',0,'?'),('÷aÅÜ!Ì©NÉ_LŽa','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/LineFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','í‰SÇD<r<Ùs','Xò™hë†GÃWUkVd5h.]Ã:þð½Ð3\'Õ','',0,'?'),('>AÞXêÉa¶s(~','wp-content/plugins/contact-form-7/admin/js/scripts.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡ ØG…0êv:åì«ÚøG','®ð4 oeÄ˜á€\0…aOf\r¯–%º(¹‡ê,~I','',0,'?'),('t]•ÙŸuÃÕuÛüåjû','wp-admin/images/menu-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q™€òLð,_¥;1/ïE¬','G²iH|ü×)¶E;³½\"_ã;Ô£4Ô»w”lyÁ','',0,'?'),('€ú×¦7;Çí¤I','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/select2.full.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º\nŸ\'–{$\Z÷3P„³»','\"ò©ðBTÅÁ³– òæ¶ÎëìÓCµGn•Â”}€','',0,'?'),('¨‘~¸w`²5;Fã®®','wp-includes/js/jquery/ui/effect-size.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿt(¢ð…æÝÉÀD','¨[´9Eß3%§ï4éFø9æóˆ:³uÃ˜ÿ~j9þ','',0,'?'),('ô=üðq¯\rljA+','wp-admin/user/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<D\0Õ\n#ªÃÙE—ð³ö','Xðx no÷{\0Á¯\\²Áäž¿Øòe[íýãjZN','',0,'?'),('&O*–vBùi¯fáüv','wp-content/updraft/themes-old/twentynineteen/template-parts/footer/footer-widgets.php',0,'e9¸½Ü	Î|Ë[¸¿õã>','e9¸½Ü	Î|Ë[¸¿õã>','çÁõç¬Pý+Ë;ÑÛ9åL/6Ì: æÑ­.ç^Z','',0,'?'),('*&5,qV×·0vµc','wp-includes/blocks/post-template/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒ:l$†ðØ^4¢x`ÁÕ','Šé%§êWÓ¸sK™´ù¶{¢:ªŽT5¨%6´]ÆD‹u','',0,'?'),('5wßÔaú/ÊÙ¶ÏÜš','wp-content/themes/Divi/includes/builder/feature/ai-button.php',0,'hÅÁ{©Ìóú¤n©Êå¸','hÅÁ{©Ìóú¤n©Êå¸','yjÐ¦óŸÊ5q.xÀª£=Ø_ø¥;I%—<','',0,'?'),('<)8T*.SuSÒÄºŸ','wp-includes/SimplePie/Cache/MySQL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬) ÷ÛfzìÉCÃ0¤','	åÍW¿ÇA¶ôû2LhÀ` ®âi²%ivä–2þÃëÞ´','',0,'?'),('<×38ž³æíÚ° Õ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°šyÅtPº>Ra­Sô@-','u{4ó¹·s…ñÁJ‰ˆ÷Ì3÷H¨×6owËr','',0,'?'),('E1;>?µÜkÚgv\Z','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ms.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€‰z½„÷Œ·0‘—7J','hàhÁ–ëkè¿G]ð²3çn&Ï ¨¸ûJÙ54‹2ê','',0,'?'),('HCƒìÜ!ó«ª\"(ˆ','wp-includes/js/tinymce/plugins/compat3x/css/dialog.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªwyBå´ï•oÃ|íØ','ŒÃošèJj$²þsc€ÿRíÇQ³écÌÍä¼Fîî…','',0,'?'),('Jó\rÓ·G>û‚„õ','wp-includes/class-walker-page-dropdown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³tB£B2Š[eJ·é5ßa','Y•Ds4¼I<ˆêðÛAòtìÈƒ±³©\Z‰–G†åÃ.','',0,'?'),('Q÷)M R&ÆFYÜw¯}','wp-content/updraft/plugins-old/updraftplus/includes/tether/tether.js',0,'@…öz<=0²WxCÊ ¦	','@…öz<=0²WxCÊ ¦	','øžýÃãu\rƒÓ…L6¸áþ‚\Z9ñqQW÷;nÐgO³','',0,'?'),('Yö’›tÇ\Zä¢6A','wp-content/plugins/updraftplus/includes/google-extensions.php',0,' C§±CzX©9 5›J”',' C§±CzX©9 5›J”','Â³õ™q^Å(±À‚þ½Ù‘1É ×yqÃQ”Á×','',0,'?'),('a<‹/ÞIäˆàMrU','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidIdTypeError.php',0,'‰ý/I;¾éF“ÖAr','‰ý/I;¾éF“ÖAr','Ê¡ã.÷JFoP0@\\Æ€œh…ïðì%z>?ÿë”Âp…','',0,'?'),('j‘LsÕ/J£ÌäVÐ?','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PackagerFilter.php',0,'+\'ùû?à=¤_\0<¸Ûy','+\'ùû?à=¤_\0<¸Ûy','zÎà	:Ô‹úþ/¢p2(Uá({sw&ã	Áj~f1T4','',0,'?'),('q!ÀÛ85ÇŸâ#á½','wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/magnific-popup.js',0,'·	–Ò&àÎ±q‡J','·	–Ò&àÎ±q‡J','$Y~²š%SÃõš¨Ûr±:ò{FÈ˜ì9½öA5³ïÞ','',0,'?'),('tÃ£¨ÂÕµ„òÚã$ô','wp-content/plugins/worker/publickeys/partner8.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_sùµƒ‹øÝ¢lŽÌ@6','ªžxñ„Ç„«pó‘ÛD þÜ2	JJúNï×Q¨Èj','',0,'?'),('uÞÇs¶›y6\'v,ªÞ=','wp-includes/js/tinymce/plugins/wordpress/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9µ…ôÑ\"@rXòåÝX','ŒÇm´jñÂ$]÷^±IœÏ\'¬ŽGßéû —[»¦è','',0,'?'),('zÉš5¶Šmþ&ëû¼0','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uçÿ—™OOí½D1gR?~,','Ý¬ïISôP\"õa•» 7JŒ6çQSv„“ô_³y’','',0,'?'),('ö\"ÅqUy„„£9ì%Q¦','wp-includes/class-wp-matchesmapregex.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°¥Q·„ÝdÌšw$<é¾¦q','9çlÌ~ø>S5]8óÙº–Éž£©ºFiJ•±‘¦ØZ','',0,'?'),('úó*.¥ßÕÜ¥²','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/PluginUpdateChecker.php',0,'œ«Kè$s[Íê^\rÎa8G','œ«Kè$s[Íê^\rÎa8G','0‚\nQ¸—#µ™Óïr¼Üa—v¾ö;§x*·ÂÒâð','',0,'?'),('§UfÂ¹‡°Ãëo\0~„™ü','wp-content/plugins/fusion-builder/inc/class-fusion-builder-options-panel.php',0,'4€vFŸ°L¬©ÉX`	I','4€vFŸ°L¬©ÉX`	I','\re9ã“›9˜™<Ž“ßdÊ.VZ¤ýtr4ùæ–ýC°Þ!','',0,'?'),('±,\"\\$-h?ÛÅy@\\Ë','wp-content/plugins/updraftplus/central/modules/updates.php',0,'àXu¹ñï\0lýÜ*Yž','àXu¹ñï\0lýÜ*Yž','ÏEOúò$„è\Zt‡•Ýdˆ.ßDIÄ!!ÏcÖ','',0,'?'),('ÆCB@FµFÆ.Myü','wp-content/updraft/themes-old/twentynineteen/archive.php',0,'à‚qÍ¹ýyg¨ï$©È\0%','à‚qÍ¹ýyg¨ï$©È\0%','!(ÇÐ¦}æ‚EC\r¤¸îd¼˜Þ§ï\nš•ö·®','',0,'?'),('Ì ˆûþÈK i–D“Át','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ØÊæÍÁZzš#Hèç²','n]¨ëx“Ë¶º«¤\Z_ÑªkÔB³-a½&½Ìƒ','',0,'?'),('Ø¦0Íj<¹õâ¤ÌŽ´','wp-content/updraft/plugins-old/updraftplus/includes/Google/Task/Exception.php',0,'b4œ8åö	‘BIßÑ$ZÕ','b4œ8åö	‘BIßÑ$ZÕ','Vn´þ@1[«ª)šÞ•{„G jCé¡´Ç:OËí','',0,'?'),('ÜÃ5ë«µOùî·dÃíh','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³YA’ÀG=bÑu¡”÷','zñ,Í¥²èàt	<{@Y{úiyƒ¬s˜ŠÝc¢(SýL','',0,'?'),('Þ”ä¥ê7™&‡òÈ€','wp-includes/js/tinymce/skins/lightgray/content.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•¢•\\PIýÉ¥ØØ<\\ˆ¹',')õY@Æu&åKg¯¨\0?«ŠÑ\\F\'ÈX0ÃÇˆŠ','',0,'?'),('ÞÎ*(³“*­+¯Wj”cp','wp-content/plugins/wordfence/crypto/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œ£3Ô¿:á“V«	˜ŠU\'','“»ö|<ÑÔþP*tg«3dYsÏß/‘€ûÐø‘','',0,'?'),('çÙ²óºh‰Òìøý‡','wp-content/themes/Divi/includes/builder/scripts/cache_notice.js',0,'oÔ/ËVÛƒ’<É¤÷','oÔ/ËVÛƒ’<É¤÷','Jþïä8L‹è˜»Š1ŒKzyFëƒg/™F³ä3bŸ}«','',0,'?'),('ë85\\R­¤qoò-©³Ù=','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/WebServiceException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h‚àÑâ$x /™Êó½é','Ï<b®ïob¸‡²—nAËàçE¶þí7_ÊïGK','',0,'?'),('÷­0rãˆH\"áYK]T·','wp-admin/css/site-icon-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øüúšLDR‚É*™','Yin>jœ#íKõN%8TP†³ÝíO_ƒàê,','',0,'?'),('èfNÉ•W~’EPÿ','wp-content/plugins/updraftplus/includes/class-commands.php',0,'Uµ#ª¹2Œå/(<¸øÐb','Uµ#ª¹2Œå/(<¸øÐb','ÏTz›È&˜\"²\r_nTÊ ‹Ð}´È¬Áb¸&Ì¿ãî','',0,'?'),('	\rJM/œ]Iæ}WÖñ(ò','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/Extension.php',0,'çvŽ‹hûí…Ðgpc','çvŽ‹hûí…Ðgpc','ðÇ5îo¡Œ D}kù9PivÆXÑtþ¦b±M¢i¦âœ','',0,'?'),('½NüR¶–ó·iú|CŠW','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncTimeoutError.php',0,'ÜðßECüMŠ‰¨I`û','ÜðßECüMŠ‰¨I`û','Ë8r\ZB‰xÉonÙËÂž)=Ù£còR—î','',0,'?'),(' *ã¤\nöƒH0è0‹','wp-content/plugins/fusion-builder/shortcodes/fusion-lightbox.php',0,'Ö_ i¯”ƒ…š³<A\0(','Ö_ i¯”ƒ…š³<A\0(','Û|Ø‰Öðú¨d‹_¡7Ño1C‡òGAZ˜U³–\0³uíõ','',0,'?'),('(€9l1¡ï5nq¬ä»','wp-includes/blocks/button/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c2R{DbYgØE­<[ ','4·8¡üe)oaøÚôO8…ëúfmyþ¬žÃEŸê÷É','',0,'?'),('(¿€—Ñ™—ÉÚ\0H<_','wp-admin/includes/nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä{è8|NK(ë‡:2j','\niõ¹{«Jó~dœÆàŠHñËÙ‘­è\nï”yo×gì','',0,'?'),('2NUn€E|%ù\0Ebâ','wp-content/plugins/wordfence/js/jquery.colorbox.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Oˆ0%6Œ9óe§3åj','{âLý#í\r˜]àý\ngL8P,µü¢@—êIr,{ Ä','',0,'?'),('2€?z)š^G!ÍN_H','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/FetchAuthTokenCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×;\rCXá\0Oq]¬”¤\"','Þ›žÝòþnËoãÀœ(\"]êv\0g¢ìÜ¶Ë½ÕŒ5¬Æ','',0,'?'),('3x2ŠÂ§®¢hê_','wp-includes/blocks/shortcode/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í»ô0EÌÊ<í¨ï#é','IDÒWó=Ú~7÷¦Áõ(²­¿3E»¼ôb$@x`Ñ','',0,'?'),('<.¦Ø4v·äc™\"`¦t','wp-includes/class-wp-simplepie-sanitize-kses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0s‚7Ì^õGUéöÆ_','íEJí\'{6i¢ºé|ì«~ñc¹Ê/òl','',0,'?'),('?ó_@RxxÔü¢rQéÈ‰','wp-content/plugins/really-simple-ssl/assets/js/scripts.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–c®—9g5”œö½EÄ',';pè$÷×åüÓ¸ØÜ6FYÁkeë[Sû^³ïÆÎ','',0,'?'),('CÕþ„.Iùµvµ€à‡®x','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yalû¾_!\riFÕ+%¬','ºy=ñåÙ`­ò*·`gjbº™ð7•ÉÛÃ3`åŒ¶','',0,'?'),('EˆÄÒÒ\n£¥¿bSâ-U','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-envato-api.php',0,'áÏt<—Ïü\'£FîV‘','áÏt<—Ïü\'£FîV‘','÷7yÈ‚Q)º½ÍAûPr&DZCC:ìtU§\"áf','',0,'?'),('JäärïáäåòÍÔâU','wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/LoggerAwareTrait.php',0,'\"G¬}=¤€\r,&Íû5','\"G¬}=¤€\r,&Íû5','`§ðÙ¿ïÒÊF`=f¥óy©Ü`¹ê4ÄnI\0ïN%','',0,'?'),('`û%±lÂòEb‚º.ø','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/gallery/field_gallery.php',0,'níæ¡œD¸ZÏ”	±ß','níæ¡œD¸ZÏ”	±ß','Ðm«Ž÷,i¦ãEÆ·à‚ÕqšoŒ?×!b&¥5yÌ¸','',0,'?'),('iô¢PÃ™û–ld\0ú‘','wp-includes/css/jquery-ui-dialog.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÌbšGþ-_fÅçkqT‡','v¦4ÿ8p»nf•òZ«H\"Õ¼\\³;j‘R&NÁ','',0,'?'),('j@PrFºØ×ÍŠé¦•','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Message/RequestSubscriber.php',0,'…×,ò—<B>_»C#­','…×,ò—<B>_»C#­','ÈsŠñjZæ\\N7`’ƒa[‡\0ÌMZI\\‡ßµ3\n@Óž-','',0,'?'),('kñž¯4cí°µáóÐ5<\"','wp-includes/js/dist/autop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CŽÚ­â#rzRï9ã','ñó2—ÖïH*Im]2—¤t%[¦×ñý^`?ôkh]Z','',0,'?'),('oF™¸f½«vd¹Gä','wp-content/plugins/wp-mail-smtp/assets/images/email/signature.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é€žv‘vRÔ1»ù\0\']','¾íVÕcû–^B×äA†V|†”ÿ±z\nÌ™#èiÏÝ¬m','',0,'?'),('}RR½^6n,xÅ-I','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/BadResponseException.php',0,'.5‹ï}Ö²&6j(†~','.5‹ï}Ö²&6j(†~','~^§Çjùlº‚¶ÇìñSï¸û2î<8nnIïuzó','',0,'?'),('…¯Äø}ÊâNû…;‚','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ko.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èv»ýpW+u»æ;yÂ°ÔM','çÿ†«5dÔ>4˜ÓßÂþ`á{˜!m$·sî0Ý','',0,'?'),('‘Ñ•xV8ãÃ“Žæenê','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/ApplicationDefaultCredentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜ÕøÛK|ö¬Ä§Q\0ÍÃ','ÏžÜcè²¤¬™_˜€®¦‡ê;d_¸ì f\0ãž„','',0,'?'),('”Òåpº´ìô\\ ‰šï','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/PageRange.php',0,'½SÉ\'P-ïÕeD}MStk','½SÉ\'P-ïÕeD}MStk','eIxö¢³Hn÷·É‹åZ!ï17í‡´Z\nWÚM)`','',0,'?'),('¥àZÒ)ídãïµ%Î','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/SeekException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^¯!ë\Züí¦Gß\'>˜','Iuùù›Þ¡MÒ¡]Gî”7´Ÿ¦žMO?Á!z€','',0,'?'),('­oi702ÃEF¹XgJB','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/password/field_password.php',0,'|XÇ3“¿Øp;»Ò’\\','|XÇ3“¿Øp;»Ò’\\','4ìßuŸx\'û=¯¨–îX¹ìDD¡i\"Àw•ÝöG7','',0,'?'),('®8Æ“×IzÙ]¥0óY/é','wp-content/plugins/duplicate-post/src/handlers/check-changes-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i‘±\\Ã6býË§û)b)','Š}¸ŠsBè~/ï_O|·]f©­çë¼³«úu}Ø','',0,'?'),('É†)N^àL~‚2/¡ö','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Event.php',0,'‚J‰„y°ƒ¥P¡µæ¸J','‚J‰„y°ƒ¥P¡µæ¸J','ƒêÃáQÑ1ãv÷V»¤x`Ñ™ã¢\rÆøì]=ÍôÌß\rÔ','',0,'?'),('äYÚC€Ðïï\rvÝà™','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/variables.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('ç­Ðo•¾Á£ó¡deZ','wp-content/plugins/updraftplus/includes/Google/Logger/Exception.php',0,'Ã¾—Â?ÀP«¢‘£||ë0r','Ã¾—Â?ÀP«¢‘£||ë0r','Q%ú•ñÖ±È£¤½6jê$S£ë%¬2¾cïõJ„¶','',0,'?'),('õp½*1E\'ÊJˆ-S','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkUrlError.php',0,'käËÒÃ±’$Ëb\0ýR','käËÒÃ±’$Ëb\0ýR','\\\nçˆÅd(Çíp¼b#Š\'&–½ÿ4‡¸È|£¼>C','',0,'?'),('õx#¥„*W`PšÁÀDž','wp-content/plugins/wordfence/modules/login-security/views/common/revoke-grace-period.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a&çÛ:^ïß!‚„yÌ','íéŠì“y¹Ó‘4UVÈ¡F>/êÈm®ç# <{ïžrÒ','',0,'?'),('÷gÙl,Ü¢<äyçD9ß','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ConsecutiveTransfer.php',0,'˜L°‘Ôêoƒ’_YÒ¼','˜L°‘Ôêoƒ’_YÒ¼','?UØš³7IåÔ9éÞ¶€\'TÁT¡áÅŽÞõ#Æš','',0,'?'),('ù>\r–êç¨£sÞfaç','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nÿ}W—¤oq¢-LúJ…Ð','n]¸š²ÿê·ƒ6eA\Z‡l³•«WƒŸyrôr·Ø5P','',0,'?'),('ý…”ÞCûU½\ZÕI','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/directories.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MF“L…<öÉTAÚ','æà1Mù\"¦¶„ø^HÉte²ŸÛ)p¢ôÆ>‘DÑ','',0,'?'),('á/sá}±‰õpŠý','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/PhpExecutableFinder.php',0,'‹Þ‚r¤ß¸EúÊµn[','‹Þ‚r¤ß¸EúÊµn[','×ÈújÂÓtÞ€†?ñ¯3~ˆ­øýÀ¦Aé ?`’ó','',0,'?'),(']Í1ºBÎÈ8¡¢gÑ','wp-content/updraft/plugins-old/updraftplus/includes/Google/Logger/Exception.php',0,'Ã¾—Â?ÀP«¢‘£||ë0r','Ã¾—Â?ÀP«¢‘£||ë0r','Q%ú•ñÖ±È£¤½6jê$S£ë%¬2¾cïõJ„¶','',0,'?'),('fx†Té[Vß‹55q°','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/UpgraderStatus.php',0,':~cjLd—‘*ëí9äo+',':~cjLd—‘*ëí9äo+','­Ù†ƒàµó‰§÷öù{è pˆ¹ñÊOÐÀm¢†UÓJ','',0,'?'),('!›”È@|˜4«°n­ô','wp-includes/class-http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fÞ5¿–¢Uîúc¦ƒ5´{Q','¶´v,ºÃ³iÄ“m`Á<Àß²~\n\"ã³ýÏ™\r','',0,'?'),('\'Úž\0;¾¿?Ã+VÒªÎ','wp-admin/network/edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’­÷Æ=¤Ý#L˜HÝÄÊ','qµ/*ß²3ñ ÜxþS¤¥¶~‹.\']wÊïk¯,W','',0,'?'),('5êÒÎ;DÚmwÊƒ	Ù','wp-content/updraft/themes-old/twentysixteen/header.php',0,'aA–-[‚µ^Ú°$.%ÝBË','aA–-[‚µ^Ú°$.%ÝBË','˜UnU{­kŒDMèæ½§ªÎ÷+	u¥weµ]&Î','',0,'?'),(';pR9²¶+óqpÕ®','wp-admin/includes/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':s…ÞÂB“\Z˜?„¡Öl','6l.v>‰·\\Œc•4Õ·=T¹û~lšFçÆn“','',0,'?'),('?ðË|êº¯÷×~x“ÐëÖ','wp-includes/blocks/query/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VY‰ûÙ8B´¡K—)½{','ûj\'Å™Û‰Ï>MOB¶éUZûëÂ–èh¿Øfy\r®','',0,'?'),('R`3„¸\0ð4Ê÷','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-title.js',0,':Ð$²´{#d¸ó9Å¯ôì',':Ð$²´{#d¸ó9Å¯ôì','ñº_/R¹ö(½d¬9Žöÿsì0^YéÕ^_K7YK','',0,'?'),('S¾ ïêÖ\\ZµT¯\"','wp-content/updraft/plugins-old/updraftplus/includes/updraftclone/temporary-clone-restore.php',0,'§‘SÉ‘AÝMñCñg7íóô','§‘SÉ‘AÝMñCñg7íóô','iXâ vk½9+M/&‡u§\rëœ‹ÚË×Ø±dóûµ','',0,'?'),('j\n9¢¼?KCgOÂ5ëÎ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataDeleteError.php',0,'à	hI0ø9¡*wâ‡ËøQ','à	hI0ø9¡*wâ‡ËøQ','§ÍÂí‰IŒX¥a[T©-í¾ÆJ<6)‘‰ýË\'QaÌ','',0,'?'),('xàó‘mü€¥\0Þ~¶Â','wp-includes/customize/class-wp-customize-nav-menus-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ò$êKÍž‡u	QÁ¶ äp²','É/\'V\ZVtb\"˜“ÙdððØés\"eö@áÉÓI<','',0,'?'),('ŒÜˆÒyâô7@©µ˜Ö\"','wp-includes/blocks/audio/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¢ÑL‰\n>o¿`¦Á¢¹æ‘','3\rùÝµgK|’P35­õÔïEõ§ä¦=ªk²','',0,'?'),('‡‚|YqÁDž.à¨£','wp-content/plugins/really-simple-ssl/grid/css/grid-rtl.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_–?®\"Ow5ŠˆThœô˜','xqßD¦,ó}Zôzc)$¿¨ 6JÍåóÿ','',0,'?'),(')¸ÿQT¥èwuKÁ![','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_nl.js',0,'/¾9še6¬]­t”a—;','/¾9še6¬]­t”a—;','æ+óÐZ–&°ø:×«7<ÚÊe¾L×A}ÙC™‚Ú','',0,'?'),(' úà\nî#T¨ê?×»ìË','wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2W«L°Ã;m‡06—¡','ÔÐ„ <¹EHm`^ÜwôÁIî‚úŸ«¢b¾¸ÀæðMæ','',0,'?'),('¥¬Œ˜\"@OˆwQ_Ü¨2M','wp-content/plugins/contact-form-7/includes/contact-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o&b’L\"N%æBbBè\\¼','\0ÜWn&Šó/(C[è²¼x·}v†–ê¢‰u','',0,'?'),('©yŠ©ÌýT¶‘±cwj','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php',0,'ÀªxÛrxöa¢k\r®G¶','ÀªxÛrxöa¢k\r®G¶','hé|y)òmÛtz**ÕP–“ž\'ÛvyFÆÎg‚cY‹ö','',0,'?'),('°Ãš2â±ûdÍ=','wp-includes/rest-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Öe ëØ¼mGN»úB·÷','3zG»\"¾ÎøWˆ9mûÎÄûjØYµ£#Å~/@¥pK]Ú','',0,'?'),('·P\0\'Ø0l§Ÿ¯vÈ#J<','wp-includes/js/jquery/ui/effect-fold.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨•&¯¶LíêÑRçÉÏ<','„éCÎ]*\'öWŽ\"¿Ð¾¹•ÈØVéŽJqŸô±°Î','',0,'?'),('¹róÍ\0¤³•’CúÓn','wp-content/plugins/wp-mail-smtp/assets/images/logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óÄVVèÁ[MÔNT','RÛ.§ZûM™JéÄêyÝ=¯Æò­E#øJk’','',0,'?'),('È„”ÎÓxy¨åõ‹Ö','wp-includes/js/tinymce/skins/wordpress/images/embedded.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õª pÝN¢Öy~Ãn\"','¿{ó¹uÕxÓ\'‹ÀÂ¡J¦Âº@i\"H;ò]6h','',0,'?'),('Ï´ 3P`#8^ÝÖZ','wp-admin/css/colors/coffee/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÉÀŠHPUÊ­å]gkZ­','%í¹\0YõTQÂ[ª%Æ	£TÊ\0óÆäßWŠ~ à2¶','',0,'?'),('ÒG¹#ô;\"LÉ%„úÅ','wp-includes/blocks/categories/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vtÆù)l«[:¬–à”ï','ñY¡’àïi$>8\nvM{½B‡Rìé!ÿäñ^','',0,'?'),('Òâ%O¬†›œ6O8²','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/Exception/ErrorResponseException.php',0,'ôÒ9”Š—CZ§ü¶g¹','ôÒ9”Š—CZ§ü¶g¹','YRWeÈu¼–ïíÙÁô“˜ÄÑÌÎpÅ{Â³ÞRÄ>Ô','',0,'?'),('ßa”˜€­<úœBš>','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ps.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùRmmR®½\ZIÁS‚õN¸','F[¿@K—ô¯•]Ç$<êÌœ0€N†¿42ö•Ål','',0,'?'),('ç?u”ÃÆYñ»Ý€õ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/RequiredExtensionNotLoadedException.php',0,')GëÏâèç†µ\Z¿¨§\"è™',')GëÏâèç†µ\Z¿¨§\"è™','óÞ¹1×ÍØõ­…UÅ•½FtAÛäå\r1*…œ¨x','',0,'?'),('ìgIÍ€]ƒ••GG[E','wp-content/plugins/worker/src/MMB/Comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q‡ìÉõ”>Ô‰N—ÑM','+¬ou$ù$³}µCô‡ÍÜ©\"³“º¡ÜT,4°^ÉG','',0,'?'),('î¶H=ÁK™p“kK¡','wp-content/themes/Divi/epanel/theme-options-library/app/lib/request.js',0,'Š1í–mˆ¹§óºÙ×','Š1í–mˆ¹§óºÙ×','¬jà0\râÑò›s[¹\'Ñä¼À/#¬H‘Þqâ¢üÕ3Ç','',0,'?'),('þx‰=B+ŒR‚äÄ','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/EventDispatcherTest.php',0,'Å:ƒéî»ÇÄzÔ5','Å:ƒéî»ÇÄzÔ5','Äx\0Ë/è[BËµìåz„{RÙ-×s®€ä×\\«','',0,'?'),('\0›,¾#µheLGº(}','wp-includes/blocks/query-pagination-numbers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vw\n>ŽFB¬{>²ÇlÛv','šˆZî°ï&‚ÏµËûÜŠ¬<,¼ZÏŠë¢Î[y¢','',0,'?'),('bk¦ÙU)n§uªý‹_','wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/checkout/review-order.php',0,'òœÖêpÞâ/àË=ÎÓÃ','òœÖêpÞâ/àË=ÎÓÃ','¤zÙ…UqŽþÈÑLq-Aü\ráW§›ë8´~8¸_‘¤','',0,'?'),('™=—2¨N/›&g§','wp-content/plugins/wp-mail-smtp/assets/vue/img/question-circle-solid.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D…ø†Zµ|YÌ-uUë‚T¢','ÃÆ4Yƒ³óÎ›rÀ…ŒütàY¸Dòy+â «Y·-I','',0,'?'),('òpÏL9¶’®è,ŽÀ','wp-content/plugins/wordfence/css/jquery-ui.theme.min.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b’K¿0ŽböºxÑ™]','4ÃõýùÇ\n–cµE2=V“{Æ+è\\goÐ…O‡¤','',0,'?'),('_ë(Âû}€ñèåR.™W','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kXøZb¸öØåª5Äê˜','[\0Nù†²’EÀgð—ì¤Ñgd¶q\rÒí¿Úè*\'IÂ','',0,'?'),('!L³Ö„¢5¥±Ø','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjectError.php',0,'ý/\"òÎƒÊYp&F†ê`¿','ý/\"òÎƒÊYp&F†ê`¿','n·÷,^GÊÆº~ø{	Sî+7ðÈ±|îêŒþè','',0,'?'),('\"’ŸNß¬jj)…Ÿ\0Œ•N','wp-admin/images/menu-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jGÿõþâù{¿>¯^;$‚Ó','–2]yâ×#h½âÄ2ö9ø> ^s€\rHå	\nÛÜgšÃ','',0,'?'),('3’„¿X´G%<!>','wp-includes/blocks/pullquote/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢O)r¹†‘B\\½™ÄOÖ','ïô©3B¸…>…t7~g ƒ8z¨vüøqä^g3ÃI>','',0,'?'),('3Æa©¯Vm´,Dh;','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/RestProxy.php',0,'«<ËÓäˆÀïJ”=k–µ“','«<ËÓäˆÀïJ”=k–µ“','¨\n uQ‹k¬ôZèçpJÊ*{‘l\0õž¥f,ÇžÚÄ','',0,'?'),('5•u$åùKÛNÙ$—','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/EventDispatcherInterface.php',0,'†à=c‘P)È‡Ž×Gäñ','†à=c‘P)È‡Ž×Gäñ','S\"º‰rçÂ1ò«J¼Å¸¦	6Ò*ð)†…-{œ','',0,'?'),('8Œ¿fb~“¸8tþB','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV4.php',0,'äÎ?\rÂL¾þ£Þ•´','äÎ?\rÂL¾þ£Þ•´','þMyzû_~jJ{#Ù-\ZöŽA½„q7õÅ3Y€U`','',0,'?'),('9*I§±œCc“ºŸô','wp-includes/blocks/post-excerpt/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vÓ¶=dR\"<Ök“±÷U§','»¾%ä#\0eóîV³m†-·/®XÁ@ƒSWõzâ?ð','',0,'?'),('=›„R¿\"\'wZïÎDX','wp-content/updraft/themes-old/twentynineteen/single.php',0,'âûoJÖ²–AÕ½×vÜ','âûoJÖ²–AÕ½×vÜ','Œ\rÖèîS\"2ïSm49úÜ¶7›!ÉþÒ+à|','',0,'?'),('?®oƒìoX\"Ú!\0~','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/DuplicateCertificateException.php',0,'\r/ìTÛ8¢y›+È%·!','\r/ìTÛ8¢y›+È%·!','ë+³Œv¿È¢óŸ¹.fö\\ýD /Ž»DÜ°w‹ÐNÎ2','',0,'?'),('Q’ðý*›#™¬_?1|¤*','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/xml.js',0,'z‹ÄZDÔ•rÎN8ar','z‹ÄZDÔ•rÎN8ar',' f1¤]\Z°é@5ì¢`;ñÜ0ŽæyZÍ^g\"´ª	³','',0,'?'),('X)±†ikx¸ÀmýgBR','wp-content/updraft/plugins-old/updraftplus/includes/Google/Utils.php',0,'Ê»c–‹+‚#ô %*ýa','Ê»c–‹+‚#ô %*ýa','(‡ƒ>J¦þ—Z½‚§3YdWðVî¶Ôu\"¿','',0,'?'),('ZÞ¦UU`R`z8þFÞ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateSenderModel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«Ûž@iïA–ë2Ðºƒ','qÅ@cL7»Yô¡ž\n\'4QzüÁ’\\ÜÀäR0¥š','',0,'?'),('_ÎóžKs2 »Ø7','wp-content/plugins/worker/publickeys/managewp_t.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pÖ¢°~€cfüfMŽL','˜u¶\0£ÿÎÈ¨%÷ÃÿøÝ†z#]`†6Têª\'ð','',0,'?'),('m×âªIÞáLÚ?hâà ','wp-content/themes/Divi/includes/builder/module/Signup.php',0,'ÏŒ¸ÉŸ}¦E)H{c÷^','ÏŒ¸ÉŸ}¦E)H{c÷^','ï_ügÞhÌûöC2UæÔV?Ö#ÌÅ`Oh+›=´£','',0,'?'),('q¨ˆã_\"ñ1ÉF','wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s`Í¿ŽpxMf{«÷\nÎ','ƒ*0üØ¤¯éì3BåjÇ	qß29Þ\0 (•~','',0,'?'),('tZQ¥Yz0…ú½ßè·«','wp-admin/images/wordpress-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ°ùy¹æoÃ8ôË8S¥`Š','bxÃLüPÍ°éâ=^’íå÷¹aõmÏÅñº»1i³ß','',0,'?'),('zš*®1p†g€¼ê&Õ|','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidIpTypeError.php',0,'W+^§ÿ?ÅšæÐ¦Åt\"†','W+^§ÿ?ÅšæÐ¦Åt\"†','+~=Laûdß“35ö0Ï±]M,»”7*Ï™ºGÍ‹®û','',0,'?'),('|Ÿ—ýŠ¢ƒ9õ\r©$Çü','wp-content/plugins/fusion-builder/shortcodes/fusion-one-page-link.php',0,'\"¯ÕÖé-àÃ\Z«ÿ«','\"¯ÕÖé-àÃ\Z«ÿ«','‘¯…›aw5Ùÿ,‘^W”]£¢=(ÑB\"q','',0,'?'),('5Å¡v[À-o0`Þ0','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-tabs-preview.php',0,'É;Å/ü8uw1ô6XZwgë','É;Å/ü8uw1ô6XZwgë','‚mk4hj‘åv%C\0Õ4[™ÅS‚”Ã®­DÂ\"º¬£˜','',0,'?'),('„¤Ów–QE¸\rDl›*Ù','wp-content/updraft/plugins-old/updraftplus/methods/addon-base-v2.php',0,'š3h.ðö|<&ìÆ ç','š3h.ðö|<&ìÆ ç','zÒˆïù;ŒÀd8çÝN‹pg­!×@¬—·hÍè…ßm','',0,'?'),('ˆÂó¯ÛK‡O¨-•G','wp-content/plugins/wp-mail-smtp/assets/images/font-awesome/check-circle-solid-green.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O‚ãQtâžY4=¡Púy','óÎfƒ„{œCþñ9»ãÖµÝ[n`˜öãÉ4!Fq','',0,'?'),('‰a¨¿ùù-4Êd|u‚','wp-content/themes/Divi/theme-header.php',0,'ªÖEEc|UÚ£­¥9}lkß','ªÖEEc|UÚ£­¥9}lkß','& ËðÑ$åoŠÀí¾^]†L±kn8´5\0	»Ù3é','',0,'?'),('‘¥D%MToÕRì‰Ì\r\Z','wp-content/themes/Divi/includes/builder/module/field/display-conditions/ProductStock.php',0,'¶\ZG0ˆm4É8Ø§¦w;','¶\ZG0ˆm4É8Ø§¦w;','2e7Vb=œ‘€TGRÄNI\"=Éžyw½œ>5Y×õp(','',0,'?'),('•\'¿\"pª~Ž¡§Zñk','wp-content/themes/Divi/js/theme-customizer.js',0,'ð=àU²ÆnÕ\n]§ÅHC™','ð=àU²ÆnÕ\n]§ÅHC™','Úÿ}/hòWšV¼ŠB?lJPúSŸ_[Çü','',0,'?'),('—ÕÌG’dav¿ùõ^vÿ','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/diagonal-stripes.php',0,'‚È—Êç’[¨ÄXÑJàé','‚È—Êç’[¨ÄXÑJàé','L«A|ÊÝ Ò¡Á–)±ÃÁ +­×Ahî‰œ{#ÖÊ','',0,'?'),('œý—k’5SHåÐçÐ«','wp-includes/SimplePie/Author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?ÿ˜hK\0ªkÛ1ôÊÂN\"','N©¿Ä\\üÏpt3‰ÚÆŠ+,lù\'ÐcOQ+Î÷ZŒ','',0,'?'),('¢ØÀeßbWüA0Ïd','wp-admin/images/comment-grey-bubble.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y*\'´‰°©tÀ¶²F','7	®y²ñ®Œ¬ÐèU{Ã®¦ˆÔŸã‚Å`¡§]m¢ó','',0,'?'),('¦2Ì¿>jÂ¬É½é¯yœ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/Link.php',0,'¶\\¢/€]dCHŒo-²','¶\\¢/€]dCHŒo-²','x[º`ûÜ§fGng.à²w³•åÝWå|°ÚëÊâ0','',0,'?'),('±<þgx-c‹ƒ©M¥tôY','wp-content/themes/Divi/core/item-library-local/ItemLibraryLocal.php',0,'·c*!@Œ1vî¯k>x','·c*!@Œ1vî¯k>x','ÿ9¯(eô\0—	FÐ¤Pä‘aÀaé4ºX\0o¸YÔxîs¼','',0,'?'),('³•[©ŒÂ4âò°?s','wp-includes/css/dist/block-library/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åVÿ[7ñeÝC‹ü®‘$á','\rNÞðší½ŸX_â­¸“hÉ—zŸ§‹Hë2Tj™','',0,'?'),('µóï„µ\nÂ¢#¼È®Uû¶','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MisMatchedChecksumError.php',0,'é7àJs?í»ïKº','é7àJs?í»ïKº','Þ…¾ÆïýAOçîùVs„9|…ž¼nÉâyOtõ·','',0,'?'),('Â³§x/x«Õ+‚{™!ç','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/RooleFilter.php',0,'/ÿ0Û¿f²\'a¯…å\n|É!','/ÿ0Û¿f²\'a¯…å\n|É!','(\Z	Ó6¾0\0“¼HëmnODL- ,vídío','',0,'?'),('Â+ÒóçšdÐÛÓ’Ê-','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/EntityTooLargeException.php',0,'£c·[a@ªYQmiX½„‡','£c·[a@ªYQmiX½„‡','YÚuMÊx-+0ÍA®0knÍÛ2ù†¦´à¹šÙsh','',0,'?'),('ÄIa»\nØŽš–êÐa','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í¢¾>\Zëð°\Z+•,','*y$˜MQ[qÓ:héš\"îÀù)£XTC\0ë\\k','',0,'?'),('	eõØ­VòÀMëìÀyž','wp-includes/blocks/rss/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')0©7|‡Ë¢ýH{q','þÀ{o/dóÑÛ˜DU__¾;z¯T²ÄÌoE°³','',0,'?'),('mÉqPoD0â*ÍØL','wp-content/plugins/wordfence/lib/wfRESTAPI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä\\8÷ÓÃHÁ …miü+','+›‡+ùÆŸ­íü0Ñû®Í‚b½=þÿ¸[ãœ”¸','',0,'?'),('-¢\0Ìï¶Jé	2','wp-content/themes/Divi/includes/builder/module/settings/migration/DividerHeight.php',0,' y\"ícˆ‘_´œðq',' y\"ícˆ‘_´œðq','Õühƒû¡[I°kè`~¨¹±¿KZm·)kà|Ëü ','',0,'?'),(' û,eO¢šËz‚Ã‘•','wp-includes/customize/class-wp-customize-site-icon-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9‚Löóë²BŽŒ+­?Œ','ýX·‡ ÊHˆXÑÖDWI´`úQ]Ç¨\"!ÉS¾','',0,'?'),('$¥\\sÔ0¬Gš>}†N','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderCollection.php',0,'ÊRÒG0Ån\n¯y\nh','ÊRÒG0Ån\n¯y\nh','ð1Fi §Ýäþ ­8bsÁHèÄ¾ÿ‚u1±t_×','',0,'?'),(',5ÍXpÌBFdc’j+”','wp-includes/js/dist/vendor/lodash.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›ìÄ±Ø]!ÐÊ8â÷•','œ†½Ý’kæ\"GÚ\0¼íô¥%éÛe$²ƒŒÃ»Œ„','',0,'?'),('.jNÄ¡k„¼ö÷ÜVæ‘','wp-content/updraft/themes-old/twentyseventeen/page.php',0,'àË9Æ$+ž¡‡Õþv','àË9Æ$+ž¡‡Õþv','„Ö(¦cöC93±Q?à‹¬ªA\0‚9e(rQÜZ','',0,'?'),('7Üc-¾”ÕkÐ„\"¶`k','wp-includes/blocks/html/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹t\0E8–£²P*jèÂ','°P4WW@›ÑW&&Àa$å<jˆŠêÕ‘½„QŒÉú','',0,'?'),(':o¸\0ôâ]e¹†Í£','wp-content/plugins/worker/src/PHPSecLib/Crypt/Random.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dºÌ‘ÝÀ»¾Ã^øû=®ï','c°å/båo—\Zé´Tˆä”¬mz>þv­ÿÅ—¼D{ç','',0,'?'),('?c±c±Wˆê–ÒßQ#o','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/smiles.php',0,';HÏ0)ÃXÚ`ëãSâ/]\"',';HÏ0)ÃXÚ`ëãSâ/]\"','‡«ÊFË÷Ü=ÔÅ¢„¨Ð^ŸM“û\'—nŒ4’Ö','',0,'?'),('K:vÎBdñŸ¼P“A','wp-content/plugins/fusion-builder/js/views/view-multi-element-child-settings.js',0,'Í`ÔáÀ^²%K.„\Z?ñî','Í`ÔáÀ^²%K.„\Z?ñî','h%`3 ´}1YL7ÆÖi¥,ÿÕöï©\\l>ân¶ØZë','',0,'?'),('OyiWÚæ¼A:8öVÐ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnTtlError.php',0,'uý¨¿U…\'­x~1ÃžŠK','uý¨¿U…\'­x~1ÃžŠK','^\\µN¬»ÒÛÙxN¿ÍË°gZÂ´xi®}p4•#¤','',0,'?'),('Q¡ ·Ô(;Ø |~R8¿b','wp-admin/includes/user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w|¢ßI‘“¤ñ‚!¸oK','ŒC™¾$4Øù(¥aÉ’»Díå9™ÀÝâ²K)Aþ&Ž','',0,'?'),('T³\"Ö½¶Ö`$lÀxâá','wp-content/plugins/worker/src/MWP/Debug/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('T´]\\gø¯ö4ÅºuP²;','wp-admin/css/admin-menu-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wÌg—mº9JudìgÈh','ðg~ù#A÷†G¼B |ºÕ¿÷¬/ÅzmÀ+Š|§','',0,'?'),('W@ñ¸&\n\"NŠ5¬?Šb','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/jquery.typewatch.js',0,'þ5\\º€¸ÌPÜ‚&·;·','þ5\\º€¸ÌPÜ‚&·;·','„QÅ™­Ñ™Iƒtÿ¶øÅ²óqö·fI6`Eˆó','',0,'?'),('^\'¢þ6îÙ’{DwÌBz','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php',0,'ì‚¥ÂÄÒÇkÊtüù','ì‚¥ÂÄÒÇkÊtüù','TÂð÷MF¤§½¥™jE »“øž¢´êS¥(½Só','',0,'?'),('bï§’p°A°+Ô-+Ê‰','wp-admin/js/widgets/text-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªØºÔ0ŒÓ{8IUú²à§£','+k	È/ç¹,Z]ù.›ð¼V€‹j‰|CÛ‡l»Å«','',0,'?'),('hTc\'Ö! •ÄÆiÀŸµ|','wp-content/themes/Divi/includes/builder/module/type/WithSpamProtection.php',0,'Â¤\0=Ò¹eTÝ;àGÞy','Â¤\0=Ò¹eTÝ;àGÞy','W¼4ìéÉv°•Cöûy¦?&‰eÃÜüÐ7O¼™]ü	d','',0,'?'),('m­ BW®ÆÅG\'Àq€','wp-content/plugins/instagram-feed/languages/instagram-feed-pt_PT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w9PM¯±µ°£,÷)´','¶7÷ñIÙö–}Ê•½×4\nbÎ^ÅVê@¯7Ù¨-','',0,'?'),('xYÖz>ÌÆñÈ² ˆ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/Base64DotSlashOrdered.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³é UtxN70×\'Š€','ë„Nq]Cæ7§‰ÃØe¹YËFý¨ÁëÉ$L=»ü','',0,'?'),('bÞç¤ÉÍ•€ñ+f3¡c','wp-includes/blocks/latest-posts/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^Ç¾a¦\0¹álpP;','w£Bä}BnÇ¾˜¦ç5ñÍ×Ãz®MW$FòZ·}J?¹?','',0,'?'),('‹WY©w¥{z=0ú4s','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/TransferException.php',0,'’®iv)îÿ4J¦Q{[Ä]@','’®iv)îÿ4J¦Q{[Ä]@','7ç«×Ž¼ÆÝì¼ÈZr-¢á1Ä´œ©>5X3%¨†','',0,'?'),('“—¬%bQñ£“bM<Öx','wp-includes/js/imgareaselect/border-anim-h.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZÃÄ,ÈntZ^6¶{Lp¡4','qsßc©ÌõhšÍàm-ú%êx¨\ZB™ìxß\'êã…E:','',0,'?'),('™-6”Yw@½i®ë£Á=','wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÏOhæÙÚÅ€O<FÒ¬Æ','PŽJç¾H·¯ñt™Ns¿ûnd*Fˆ\'WWÍaqýô]','',0,'?'),('ªü/6]Õÿ\nçÑzËÇ','wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/AuthenticateServiceRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w£Éu³HFÌ“D©AŸ€','Ã\0Q”©+_<Æúþ	kî@‹#qPPxÕ ¿¤`Ú','',0,'?'),('©¸¥0,Xè­Û','wp-includes/css/dist/edit-post/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çÖçÍéºËkù3\n~9›8&','…¤}¼N‘Úv¥ûêú[Ñaû°(``Ð­¨ \"¸Ô','',0,'?'),('¯DÔvëèV/Ÿ7kV','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£kn‰kØox.ß½ CÏ','®î‘ê9Cì–˜Z\r^ã.ewi-ç„IžSE¹?NÓ‚@m','',0,'?'),('²Â³Yí9¸\n\"JÛ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/repeater/repeater/field_repeater.php',0,'3‡úéÞŒRívá ZB','3‡úéÞŒRívá ZB','Ä©~)ÕèÓ¸®é¯ÅfÙ%‰ºŽDáo-ühm','',0,'?'),('¶´g?Ä?ºÚa\\–-ˆü','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/CompositeResourceIteratorFactory.php',0,'ýÿ½\rp½íþÝ=ÜÃ¾kÜ\n','ýÿ½\rp½íþÝ=ÜÃ¾kÜ\n',' ¯+ˆ°Y|vìsæsx´¤ïe\\¡ zŸKÐfI·&','',0,'?'),('¸Ì7R¹’Øê·iòÝ¯/','wp-content/plugins/really-simple-ssl/assets/js/scripts.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œJ4£÷j™–½cXúš','èªn–ËõÓ†‰[Ú|Ï=b‹Îî§nM\':áÝ¼!–©ò','',0,'?'),('½¹cÍZfóðº<#N°¨','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/CompositeWaiterFactory.php',0,'sòº°§ª)9ÜÑI5õ','sòº°§ª)9ÜÑI5õ','°&ÍÚ(×8BŽæÔ2ÆjÒOê¥lm\"+ø]­µ©','',0,'?'),('ÄÚ;öâg\"¾ºÕÈ¾Ìè','wp-content/plugins/fusion-builder/shortcodes/fusion-sharingbox.php',0,'£æ²>%~e%«Å£¨w…','£æ²>%~e%«Å£¨w…','ªß^tÐÆ¢ûÿ{F§aÍy _ö…66™ô5ƒºÔP#u','',0,'?'),('Å÷ÊÕë·Rò\'ÿz‘Yˆ','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.waypoints.js',0,'Îð_Þ\ZVn\r\'·¡ ™\"','Îð_Þ\ZVn\r\'·¡ ™\"','‡z§¢r\"¼^b`]Ub³1ð\nJùfq–iÇ¹’','',0,'?'),('î¡œ«œŽ®+”Õéœœä#','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/welcome/views/about.php',0,'êºá˜8xø¨ÿòÍá,|','êºá˜8xø¨ÿòÍá,|','žRO8_€ö Þ(¹qÓL‘>ØiƒÊ[ã<.vxysw','',0,'?'),('ö†eø÷ý·RWUÊ–hr','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerActionError.php',0,'pùR³);\Z£`ÅØ²y‚8','pùR³);\Z£`ÅØ²y‚8','=êË¨áŸª<´RE\'<,¡2Yƒç–>Qîl?¾o­†¿','',0,'?'),('úÑ\'W[ÉëÔ\Z2ü&äÏ','wp-content/plugins/instagram-feed/img/about/plugin-wpforms.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' }ªFI)úéÁ\\yþ','ýñÂŽ°± µa Uw~·y†	q1¦bÐ®NÈ™üu}µ','',0,'?'),('ü«i)33Ü¥ÑÇsÚ*','wp-admin/includes/class-wp-ms-users-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðý¢–†$BÉ€#É¯£@b','ç½ÖâOm‚´Ó”.xÓÁ-¨YÌ(†VOcÈpÔ®YÓÊ','',0,'?'),('²hæÈŽ^ƒãó”~','wp-content/updraft/plugins-old/updraftplus/includes/S3.php',0,'êõ¸ô15ÿ \rÁA©Öì','êõ¸ô15ÿ \rÁA©Öì',']8L_mk×JÙ\r¿ãûê;ë;`à]:Íä3Ÿð4bÀ','',0,'?'),('\rP÷)ž4_\"»™\'1','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­@ŸÜŒþÓÍ£~E||W×r','Jê4Ší5â¯·’XŸœ™I[„)ù*ä•3=TUÿgžK','',0,'?'),('í,å(bÚ3šh(eô|','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultRevalidation.php',0,'Ðâ©©€mÚþPy¬SÜ×á','Ðâ©©€mÚþPy¬SÜ×á','%b <Ö24!ÌcI£¾“g›cÎ(èˆ;cD9´ÓÈ','',0,'?'),('hgý9ÕUÌ¦aä,','wp-content/plugins/duplicate-post/src/duplicate-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñ)Ö’Þî³—°*BÕjË†','ÊŸùFY~sP^Qáe]|[È©M“C³B­@œ‹®p','',0,'?'),('7ÄÅ{vÙ€µyÖ\n±ö_ë','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadPart.php',0,'\\[¿±Fµ)÷3·ë¶Ñ','\\[¿±Fµ)÷3·ë¶Ñ',',º.ÚBFÜ»æ“¦FùCØÐ¹LRP×ðgv×„ ¼Ì','',0,'?'),('HÌ;•RŽ6)\Zä6q','wp-content/plugins/fusion-builder/inc/templates/element.php',0,'±“ ­ØÀf€`Æe»ÿ','±“ ­ØÀf€`Æe»ÿ','<Üt)9¾¥°Û×Âqiuº½*à©	œ{˜UŒˆÂ','',0,'?'),('Lû\"øyS\"¾úÕé’\nš','wp-content/plugins/duplicate-post/src/ui/block-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å_ÍZN+¥‹m¦œ','®DÄ\'|Ðó­ä4QøÐƒS H9^àÛÜÝ+þ)HÕ','',0,'?'),('SœÀLî9´²ú0\\','wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/jquery.mobile.js',0,'˜IwÜO€Yò¦y³$‰>L','˜IwÜO€Yò¦y³$‰>L','»jjaÂÃúž¹_Ÿ{µlÂJ\'OÜæƒKOÀôì›MÁ','',0,'?'),('cx½)ûxoÕ´ÃmcØü','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Tests/GenericEventTest.php',0,'#\nwåÑnÏ¹Ð³¶x','#\nwåÑnÏ¹Ð³¶x','–/ÇyŠ·¹”|“Z`<_ˆ»\"ÑÞŠÉ©S','',0,'?'),('e`¦¼\ríýÕ²“Åa','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultRequestSerializer.php',0,'p)¿”]zòìÒ‹ªjü‚','p)¿”]zòìÒ‹ªjü‚','”~ï9ëÿ¢´ŽÒÉ†è%GµßýWêBÐ','',0,'?'),('oæàñ	lÑÑ´Æcd','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ×ø\n°À¤@Lj‡wDê','\r¯8úd³ Ÿ‡²ð×8sÚ‡ªÎî6 èFúÈŒÏ','',0,'?'),('}q|LÍw¬eçêœ¢·Êž','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Tests/EventDispatcherTest.php',0,'Å:ƒéî»ÇÄzÔ5','Å:ƒéî»ÇÄzÔ5','Äx\0Ë/è[BËµìåz„{RÙ-×s®€ä×\\«','',0,'?'),('€ÜöM9°„j#W’qäB','wp-content/plugins/really-simple-ssl/grid/templates/grid-element.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÄŠJÛgäùP æ€…','ìé??’W®pbla)_JyìXø¬ˆæ†Ðâÿ\rì:','',0,'?'),('ƒ.˜|œÛÿ:³^‰È¨','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-scss.js',0,'_Þ1F.J§•/gW','_Þ1F.J§•/gW','Ñ\rZŒÂW\0+GÚÈI®	ây\ZmS\\(¨OùÌ[®Á','',0,'?'),('o%‚@g)„³`‡¹M','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UpdateError.php',0,'<8ÙlÁ€%W9ôßÐO¹ì','<8ÙlÁ€%W9ôßÐO¹ì','¯RoÏ:«mQ:Pº ¿“œà†S6Ð»wy[³','',0,'?'),(':¨œñ<õ\\Ø\"7','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4/Factory.php',0,'7š‡h\ZóÝLê±50ˆÜ','7š‡h\ZóÝLê±50ˆÜ','ô:~ÅI’\rhb•Dß‰\nBÉÑO(¦Py>Í®ã…','',0,'?'),('žxÃÂ|s¾ƒÄ×KŸaõ','wp-content/plugins/wordfence/views/common/page-help.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à!ïÈ÷YJ¡ðJk›Íô','› \Z=¡DB×£§	%%A?Ow›Ð*/Þ~u','',0,'?'),('¹c;ÝÂŠ)ˆ1®¬oi','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidTargetBucketForLoggingException.php',0,'ûŽtìÁ‰æ°Cn`ÜéÅ','ûŽtìÁ‰æ°Cn`ÜéÅ','ùK!ßÎ8GPp‘ÚùôrÚge[ÏŒužúÑÚ','',0,'?'),('¼½ùF,Ê“˜ŒÅˆo3','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/core/dashboard.php',0,'iå\'åp/ï8SDóÆ','iå\'åp/ï8SDóÆ','¶7¾…Žf/Džôš*+\\LHS¥<XøYŸÃÉ¾‡Õ)','',0,'?'),('½½“#­ùÛ	>û7','wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äIãÚmÅ…üLWyÝ“H','\rflôÕ¤/å;l\\äâ\\.6‚ŽrÇ#Pœ[ÓÁÙ','',0,'?'),('¿i;›Vÿ¼Ê~[L','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/ErrorHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÉÆÞ?£^ðØLâH¿','\0+à6.”3.|±&é&œh.£¼ÒÅIjmCŠ©','',0,'?'),('Å†L¥G¶ÀP(íÎ‰ÃÈ¯','wp-admin/js/widgets/media-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŽÞý\"§“×‹@¿/ëa®â','ÍW˜IâÌ`6¡3ÿXŠAbþ#;r²ív„µŠ{Mp6','',0,'?'),('È@ðïið5o-.;\"R\\-','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Exception/LogicException.php',0,'rï>þÐ\'[zqôé‡uM','rï>þÐ\'[zqôé‡uM','`ìÙ\'Ó­Æ€ËžO€ù02U &häïÌ^°ðiáÎ','',0,'?'),('É½A\"¦•»E—?ÉŽ´','wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request.php',0,'ÅÞIòW\"nOæÃ¤j•†','ÅÞIòW\"nOæÃ¤j•†','M›§Œ­»	°ä¡Rvå¹Žo\\²©Ç°zÃð…Í¨','',0,'?'),('Þ&Ñ	AÂHÚì)¥I&‚ô','wp-includes/js/dist/vendor/moment.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}JÍ3­¨¹pÏåöäSòf','†îvßÿð[cÔÂÿeÊv;Ý*WgOAGÃ@ëû‰£i&','',0,'?'),('ã@Ê˜“GïÀÏºz`','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/BasePhpFormulaLoader.php',0,'Óú5,^i›Âôë©ÒMã«E','Óú5,^i›Âôë©ÒMã«E','¨	3sõÅÁ2aT3ùO§\nÔÂ‹ÔhË&GBøÉÍäd/','',0,'?'),('äa&ö_°	œ\'/Ãûøä\n','wp-content/plugins/updraftplus/templates/wp-admin/settings/migrator-no-migrator.php',0,' Cå EÅ´†}²ú¬F3',' Cå EÅ´†}²ú¬F3','—þåÙnnr#%¥*©öçêè™€²\0@êgZy3f˜ç','',0,'?'),('ðg`u3Òéœš#ŸZ…','wp-content/plugins/fusion-builder/inc/lib/inc/functions.php',0,'ü]ÿH;¼ŸÞ2v®”{…','ü]ÿH;¼ŸÞ2v®”{…','4D:FO^ú¿=Úûé´h(ùIJó<¨b¬U_Ê','',0,'?'),('òcY„F¶êžß}åj`½¶','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3‚ñ‘ýë’b(æµÐš','n;ˆ<Ù±	Ç•°-WÕt“ù]ÎÁ<‘s°êÖu¡','',0,'?'),('ô%\rˆšE~,žñ4ü f,','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MaxPostPreDataLengthExceededErrorException.php',0,'ÀÐ</ÆÝ0ËSu?óçe3','ÀÐ</ÆÝ0ËSu?óçe3','ôŸ¹¼‡m\n¦ÔÞ»¤˜yÙW¿¾²¥Àœëó\0Ò','',0,'?'),('öW3¿å±8Í‡§›oÞ×','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListThreadsResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Õî›>aö¸žWì•ûj%A','ŒÁ›¥soÔÌQãYKàI÷ýžÈL¯_tÛ³*Z€É.','',0,'?'),('÷ÿ)#þ€Î•¨»âjn€ˆ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ResourceBucketException.php',0,'\'Jöñ‹ÓWf*ëµ¾','\'Jöñ‹ÓWf*ëµ¾','É³-ø6¢ÖÂTvüüù¼ºß+žœ¡3#kAšË© LU','',0,'?'),('ûfB×åB§X EÉï±','wp-content/updraft/plugins-old/updraftplus/includes/Dropbox2/OAuth/Storage/StorageInterface.php',0,'Wãb¾³¥ïÝ\\Ð¢ã9','Wãb¾³¥ïÝ\\Ð¢ã9','züQ¿ÞÎz=¸ù“Œ¹UZj†DôÿîŽ°å›9–','',0,'?'),('\r,ÑÔSówT¡^ý–÷Ã','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/TypeScriptFilter.php',0,'»ú×~áñÓ>ÕL/*<','»ú×~áñÓ>ÕL/*<','Ké“\rÖÐJËïH¾Ã3y¼€A¼Q&ö½\'ÛJU0À','',0,'?'),('&Ïñ—»2 ý¨äÅ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/composer-php52.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ylhÊwž%Re¯ç†','´›ä¸\njq½WíÛ	×v_æ#„ï fºàµ~ÍÒR‘>','',0,'?'),('ŽñÈðTR—æó×','wp-content/updraft/plugins-old/akismet/views/stats.php',0,'¡­ÍAŸF‰–šhâÐ`','¡­ÍAŸF‰–šhâÐ`','?O>uÉz·/AõÇš	n5E-ù‘I„ÆGUhß³','',0,'?'),('#æ7µírÉYÐ\0¼ái','wp-content/plugins/wordfence/views/common/status-tooltip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F‰òfZíØPIR&iæ§é','ùEQtY€=ÇÀj.#eWãˆ¤A3QcPýðüTÛ','',0,'?'),('&#ÙpªJ£¨há','wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üeTÝU¢„àt”)×d!','c	ÚèŽg:»dÆO¢z_fpØ5\0•óÉŒix','',0,'?'),('&k3NÁ…9<OIj!@\r','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/BadModeException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÅmÎ°¸\nš.ö´Ô»&Uç','ÁQ_ä@E}Ë—æ6Íå‰do„(|gP¾•ºƒöð','',0,'?'),(')Â»F&é©Ú®ò³hî','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpUnauthorizedError.php',0,'/ƒ‚±ì‘ûö{Ü‡ƒAK&','/ƒ‚±ì‘ûö{Ü‡ƒAK&','‡áÄ<tî0‡Ù¸‚S}!/£°â\njÊ˜¦kÇDPBò”','',0,'?'),(')ÿ28/Û¥Š\"Xä','wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/ListFiles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²ÏPiªàVM†1åÊßä','Dó˜ŠÀ´yHÂ„(ú‡._Å«“î5XGÐ\\lÉŸ','',0,'?'),(',!#Q–ƒP[;º•›Ä','wp-includes/sodium_compat/lib/sodium_compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æRÇPé‡yƒBB&F4','Êk¸ŠµÏÚÚøiÄ]JßõŽ	Ô‰Æ™Û°Tlþ¢x¸','',0,'?'),('/,\"_B’ÝB4”sszjÆ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NoNameError.php',0,']ž†\\¸÷B¸{¦0µGÃ',']ž†\\¸÷B¸{¦0µGÃ','Ô\'•)LYi–¬Á9>;B¬ÌÁq]\ró8¬ž','',0,'?'),('3!‰Ï‚øÍuÉv÷|','wp-content/updraft/themes-old/twentynineteen/classes/class-twentynineteen-walker-comment.php',0,'Ây¡éº©e¤ä.qØ.>¾','Ây¡éº©e¤ä.qØ.>¾','Êg‰‚Ë¹d@àòqí2 wa?Æìÿ†š‡1Zí#œ','',0,'?'),('4®ÚÛ¥‘;»0Š.*','wp-content/plugins/wordfence/views/blocking/country-modal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(G\"n¾rPiÄ)ß¬àj','\r‰FA†me a	r•-•w‡YËEÖuÊÎãôñu','',0,'?'),('5Ÿ®>‘ë×döš÷G¤','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Freebase.php',0,'•,°Â0ðÕ³R6œOÍãŒX','•,°Â0ðÕ³R6œOÍãŒX','s}\n³HÄm…¯kÄ^a¼b ®£GË¥!¯õÄ5D;X#','',0,'?'),(':ë­²cà‡×RPe(','wp-includes/rest-api/class-wp-rest-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’÷ð{¿(dtpV¤ýÖ’1','Ž„…·™m®lÛpPrïjó…nÄKWªìƒ¾¢ÎÛµÌ!','',0,'?'),(';÷ñ!nùŒ¬ßÀ…h?l','wp-content/updraft/plugins-old/updraftplus/includes/Google/autoload.php',0,'øËªOŸïC$Eü9AS!À','øËªOŸïC$Eü9AS!À','þÞTó~?|T;KF˜´¸º+±…PR\'··b\0xÀ','',0,'?'),('BÌj }$ç‚\'\r¿Ä','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/SiteVerification.php',0,'Ä;=¥‹®NPQ¢Eí‰x','Ä;=¥‹®NPQ¢Eí‰x','<ZÏCè¶ È]f‹”½ü¨­\0h¹QÏ>§œR','',0,'?'),('Hü€29‘Æ?8å1=é»','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/FileCookieJar.php',0,'À/‘ÆÑÖ>!¹¿¥LGÞà','À/‘ÆÑÖ>!¹¿¥LGÞà',' é–Ü_Ä\'îD6©ß œÐ¯PY{Ä01MÙG Ha\0[','',0,'?'),('KÐúxP0&¤€ñO:p','wp-includes/blocks/archives/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rv}»\')4~~ðŽ','Æ¸óC¾YMÀ€®ð¼a.L¢ÇÝ8ÝyQá°vŸq‚Iø','',0,'?'),('eØŸ÷v¤‹ãç¬ª‹Ej','wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í ¾UwYI‰äIÐ}â','½ø¿Ý \réñÚ—UòDôPTÁûÉV+6€Ñ^:2!ƒØÙ','',0,'?'),('k\0\ZÁšá{ Ý›6ñ','wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾~ké_35=9ë*õòý','èéRéñ‚)½Vjv,%´:`À»žX„‘O¯}Þ#','',0,'?'),('k˜‘²Ðb…ÉgSˆ','wp-includes/js/tinymce/plugins/wplink/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷¬€ß6¿l°UOaDöQ','Ÿ¹áÞjTÄqèT®¨I:KZâæa\n™6­U7e¬-','',0,'?'),('n•Í0†3\'xòöcj?','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/SiteAlias/GeneralInfo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ£Ž†ñÜQ-Ëâb¯','SÜ°ìÚö‚úÁíá§x“v›Á­èJ‹œ‘ÏT]','',0,'?'),('pØø	Á‰4ÿ€}È','wp-content/plugins/wordfence/js/jquery.colorbox-min.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y5±=ç÷Ìqîþ)–È','H¦Ö4\\¼óv÷â/XŒG›÷K†¿—:gkl','',0,'?'),('t8;BI[1à/]	1>','wp-content/plugins/fusion-builder/inc/lib/inc/redux/assets/themefusion_logo_white.svg',0,'É2AÙáà³”×äÿ\"ž','É2AÙáà³”×äÿ\"ž','ðùŸ91Šy0‘É>·ä‘‚¡žÌ‚¹§CnE¦¨XåŽ','',0,'?'),('wTð0îžÛÒŠFê¹ë','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateEmailCampaignRecipients.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í\rHÏ”[ˆ°Æ,ÔFþÊT','o¬Ÿ!ÕÎ¦œ¸§ÔfUeêž¸ç+ˆÎvÈÏ\\Ó','',0,'?'),('žª€ï57›—D×;TkC','wp-includes/blocks/social-links/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÌfHäp€Î‚žüöWô','ûXé×­±¤™`Çé27Í<Ã)·•9ÿ;òÒ²\n','',0,'?'),('ŸúƒLâÔ.\nÞw;[','wp-content/plugins/wordfence/lib/dashboard/widget_logins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E	4múY×>À`•ú','Ù#·_§[Ñ¸¾î@u¸HaÆ(+j>V\Z+ºq[V','',0,'?'),('¦±–ëg„~Òw\ZÐhh','wp-admin/css/themes-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~OšûŠW;ëiø<×°ø','õX^ß8ð7¬$‘p¶\\¥Û™4D¿mJ\rŠ5±@õ2N','',0,'?'),('ÂLK› š[î-¼9–¨‡','wp-content/themes/Divi/includes/builder/module/woocommerce/CheckoutAdditionalInfo.php',0,'Ê!ŒÁÂ˜·N.à…t\r','Ê!ŒÁÂ˜·N.à…t\r','¸Ò?e{=÷‰™ûXN–1Ôì2¹­ˆu÷Ÿ¤‡’°\n','',0,'?'),('Ë \\i®ÆÊõ¢xãâ(0Æ','wp-includes/blocks/text-columns/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾ìáu_·<ï8¨‰Ì†Al','!§¶ú×VÜ×ÊÛjd^w!è…l2Ú¶²ZRfb%+ïØ¤','',0,'?'),('Ð¿–¼ùÚc-Å&ÕW¬º ','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Base64/Common.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PÛÈefè§ÄõÊiª\'ÒjW','6þ°UmÐ–²%Ïì?MˆS°A^=®X ª|U–Ã','',0,'?'),('Ô-MV£Ñ”Ñ—aîÜæ','wp-content/updraft/plugins-old/updraftplus/includes/Google/IO/Abstract.php',0,'ð;ŠQžJ ‚?`?$2r 8','ð;ŠQžJ ‚?`?$2r 8','óC	ágG[|´6Up=B÷¹Q±¹X[tÆÐ$˜•','',0,'?'),('ãÍ¥`FJÍöS±u','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kz+UíÁäÅ¸(ê5\\','8:½‘o™Iô9,ê¿=zDk8;Ñ{A{†\Zij','',0,'?'),('å>¬7¶—_Éž+¿v','wp-content/plugins/worker/src/MWP/Event/Events.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™:Ûþ÷w‹S‡Ñ8dn','›l²™íþõ*ÜMÆD7Àˆëìxô† 8€óÎ4','',0,'?'),('æ1îƒ\\–ð(Î‹Ae','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Service.php',0,'Æ•¢-üp%¤\nª£çrˆk','Æ•¢-üp%¤\nª£çrˆk','\'Ýº¾þ0paòÔ3!(ù¿uþ–±}áL‡VÛ½','',0,'?'),('çâbm€%²‡ŠÛÚ­Ö«','wp-includes/Requests/Exception/HTTP/502.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L+îÞD‰ã/n¥cQr','ñ/’ˆ¿~UJO¤.Å€#µòEá‹ÿú5´*Š\'CÅq','',0,'?'),('ìú‚ÇQ¸B)JÒ=²¨','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php',0,';0ŒK=‡2òg@²ÍÀ­',';0ŒK=‡2òg@²ÍÀ­','‚ìéâR\\#ÀÓo; Ô*+Àzs°{¶JòV°-ÆF¿','',0,'?'),('î~Ø}óÌ(ŠÜ±/Ú\"','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/PKCS8.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8ÛÐ¥õÃixÐGûùØa²','ˆ?+.ÅÛ4¦)Ö–@z¸w„ºY9\'Þd|Éù™+˜','',0,'?'),('ïjxÕLOåÌ›_¶~ÿ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadBuilder.php',0,'>=˜@äÐXeþßeé','>=˜@äÐXeþßeé','zF#=Ø_‚Yé¤SDg9ÕÂÎyOy=\"ìýQ;Ê','',0,'?'),('	QW¯ïŒˆ~-Ê\0dÅ','wp-includes/class-phpass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ózÕ÷8¤‚¬»î–›Ø¾O','²5Ï{ýdp#½ŒdÔØ3Œx`ã´J4™j~p›‡ˆ','',0,'?'),('	?±Ïä†æÛ™q™uM','wp-includes/js/mediaelement/mediaelementplayer.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘	ÿÈ5ò)äÎök±y¦~','_Dtû3×’3p‡a’;9,Ô\n´ig¹ †C?3É','',0,'?'),('	ªx¥­þAì™ê‰®€)','wp-content/plugins/instagram-feed/img/grid.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U \0ZW?e”<–ÖÖò†','ÕÉã-Ž_Eˆ@Ì\'š‡()tñ\rŽ¡Ó@¯‚â(0','',0,'?'),('	#×Â%¤n¤Ã ÖüR','wp-content/updraft/themes-old/twentytwenty/classes/class-twentytwenty-walker-page.php',0,'¤«†Œ§åN!÷M	|Xû','¤«†Œ§åN!÷M	|Xû','DeUFæR7pO_7)åÈudôïž\nsæÉbh5','',0,'?'),('	%Å\\äö”­ñåÏâ Gª','wp-content/plugins/fusion-core/js/min/avada-portfolio.js',0,'­5¥¯u:©íoû+Óëi','­5¥¯u:©íoû+Óëi','Ú€mÍcùw÷úR—¹Ÿü›ÚV	T/í§©£','',0,'?'),('	,¹©/Õ•‹!ç›gyþd','wp-includes/js/media-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SqÝØa:Ü_::Î—F….','\0XšnÆ,ÏT£P§ ãQKh&ú¢™xFHô·Ãu;7','',0,'?'),('	-•nz ûhj¸MbÒw‘','wp-content/plugins/wp-mail-smtp/assets/images/providers/postmark.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éîv51Ås­Í%¶j','¡™ûÒŒÓ”=RÈx#íö(Œ(Q›ˆÊaç*®þ\'2','',0,'?'),('	0!ÄWY`€ËŠj/7E','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/field_ace_editor.js',0,'`9„@%µÇPI¤j‚„\Z','`9„@%µÇPI¤j‚„\Z','°CIºžÑ‘ÅæðÍ“R0çæÌFîÝ)‘zŽ4½j','',0,'?'),('	2ÎpÏ<(Xž\"êÝµ“','wp-includes/blocks/audio/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5¢óë‘3žybçA¬','­Ãù@,BW/æR-¤MäŒwÌÂ›þ¬ÿõî]Ù»','',0,'?'),('	7@ºÍÔ8KFPõæØ[ñ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheStorage.php',0,'¯Ðp~ä”\\”×\'ðacl’','¯Ðp~ä”\\”×\'ðacl’','Vý„ž¯èÝP%ªoa<D´ˆHÍù‰û+‰éýÆ¶','',0,'?'),('	7¬®ø¦×îãf	`','wp-content/plugins/wordfence/images/sort_both.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šd†m	»8Ïf¥|ÅY­ã','~Â%ïñÛ‰Ž%…‹>öõþˆBl²o‡u·I)È‰7g','',0,'?'),('	@üïÞÆ¹_h£*e´3','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Protocol.php',0,'Ù’2» Ó¿nÄYcfp','Ù’2» Ó¿nÄYcfp','ïº&\ZÔà^MKõå²ôÓ[º9R3vP\\r]œ’î','',0,'?'),('	J»…ƒîœ£×ó;uz','wp-includes/sitemaps/class-wp-sitemaps-provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯dwiã+™ÆÄMÃU','`ß¨=I\\ÄLìÑñ0Zº´Y¾“a„gÃ„Ä5','',0,'?'),('	P=N>Œ¨b\"j:~[Q{á','wp-includes/js/tinymce/plugins/wpdialogs/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åWeâŽ†?’üNãðt','n4ÜÂ<½ÞFz­‹û­Îÿ_Õ5”ðkigˆ','',0,'?'),('	Tˆ7T\nÇßVú äXk','wp-content/themes/Divi/includes/builder/module/field/template/border/Radius.php',0,'VÜ#97~µ+~= Ñ®ÕU','VÜ#97~µ+~= Ñ®ÕU','¬ÙÉ\Z“èš%óµ]rj¡È\'ÅQÒŽª\"Æ¯~r','',0,'?'),('	XÎt\\4vNI5‚ØjËÂ','wp-admin/async-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨\n€#9ou°o<—BÍÎÛ','½ˆ°`¬ü¯Vë\rëFAš ”ÖßY,(˜lBA¶ÂÏ!','',0,'?'),('	c;ñp:‚œëöD$Ó>A','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/vi.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u	˜44:Î<>\ZÁMSH‘','ÄåÝ9îpnä˜~œàjœHC2)Žž¼Îz(ÿëÐù','',0,'?'),('	g<¥7W¶}”	¤1ùX.','wp-content/plugins/really-simple-ssl/assets/css/wcag.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ó£…hIì-ô`C“9','·#RSÝâîa#±H®=á`¿ú…î/èTÝÏªî0','',0,'?'),('	n©IÉ½€ma)%+t¡','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/color_rgba/field_color_rgba.min.js',0,'Z©!ï½Íà¨`ó‡·èÿþ','Z©!ï½Íà¨`ó‡·èÿþ','¿ÆKq¾é«·S]|\"} W©¿Xö¹9$\\º‹«sJ','',0,'?'),('	t]¤9¹Ù\'«ñÿ‹Ñ','wp-includes/blocks/nextpage/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â	ÿi<‰ZÒµòf\r>T','í\r=²¹G¯¹?\Z šÅ6Ñ!!¼o‘Í\ZT¨I9ó\"U','',0,'?'),('	urrïWV’–G\02ý2','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1\n‚K\Zx°n™ÑX·°','.ŽÈÌÙÔ²˜ÆmD4¹þ$\"÷>/Ã´&«È\Z¡Ÿ7x‘Ä]','',0,'?'),('	|Ð4Ë˜|˜§l1\\Ñ¹~','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/GlobAsset.php',0,'ŽI4RJC0NBÔüÅÜ>ý','ŽI4RJC0NBÔüÅÜ>ý','UëÏC8ƒ1`ÔúÊd\n		ôYVGã¾<€»à.æpu','',0,'?'),('	„hîXk%´>ù†Æ{NûB','wp-includes/js/dist/viewport.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}»”K¿í­¤9A¶f¿ìªP','Êm˜¢žð†I=Ð}iìZoEÄ†’Ô¦£ËÛ2¿E.Ó','',0,'?'),('	‡zA»©D+h€ÍÓ»më','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/pt-BR.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýÎB\råiy{Š-–','¥ðÍØ‹£5X¶ðç¯Þ.¯ï\\6¥¯>¹Zâ\\ˆ','',0,'?'),('	-•>aÆõtÍÜ\'','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2Tests/Authorizer/HTTPTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½×õ«	;¹¥už0ðµËÔ','‹§¶”ñ„`Úš6~ñ€´•GLÛ<µ7š?ÒÎ,8Ê','',0,'?'),('	EÎƒ¬ßÇ—.<Zð','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/th.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·Ë\'»òs?Ü+O©ZHÎ4…','ÇIƒ8ø<57aëÖ5ÛŒÔä{òRVq\rÜ7t¸0*','',0,'?'),('	˜.¦Ù5uaÎWkJø˜','wp-includes/Requests/Exception/HTTP/413.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qí¾Í2É‘I½W’vëMZ','\r…Š}ÀäŸ¹-V±Ûß°Þ\'eCCÊ…ãe-2,0','',0,'?'),('	˜ÈÚ)¿ÔOarKËóu°','wp-content/themes/Divi/includes/builder/module/CountdownTimer.php',0,',š\"(úYÒ‘ $Jí',',š\"(úYÒ‘ $Jí','`––3ŽòôœŠ:¥°4¥Ždž$Ú*«lNB@aSÐ6','',0,'?'),('	Í91³a\'-Çý\"¿’=«','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildInfoCredits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A +ã§oà\'\'áô}R¼k','Ð€ˆ`QœFÐ½“çÙæìZô“’àj©Àls<ß2','',0,'?'),('	¢œP¼Ÿ3ij——þw','wp-content/themes/Divi/includes/builder/scripts/ext/lz-string.min.js',0,'ÜÌ§år¾‚úÊùÙ+·','ÜÌ§år¾‚úÊùÙ+·','P`Ýáâº£)\0Yôã3.Nó[a¿éÉkûñ·¿\nn¡','',0,'?'),('	¢žRáòHàQ¤®h~i¿˜','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/link_color/field_link_color.js',0,'‘\Z•T)ãz:é\\/Ç02','‘\Z•T)ãz:é\\/Ç02','\ZxÔ™ë‘¥\0’H@\0§›o?é\"ðäý”+ÃŸXä!ƒ!È','',0,'?'),('	Ó°ê…‘·¹ ±…·Ï€c','wp-includes/js/dist/escape-html.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	I\\wzzWŸ~†ÍHOà9','Ö`‰BE`srÎAýŸ„IëHoÞŽ3ý_Ê˜ %Ò	','',0,'?'),('	Ö9„ƒfÞˆUœfòþæœ','wp-includes/js/tinymce/tinymce.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xláà•Àø°Ì¡CŸÎþkn','ÜZk÷	å6|ãÌ{ø*\Z©{¢HãâË¢iÜk^','',0,'?'),('	Û­ÝÝ>è h4ˆû*Ç:','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´¶Dú5ÛÈ$Ã½\n	à\'q0','\\†‰\"ÈÔ¯-\r6ÞëeÔN´IDæºzBæ\r\0ü÷','',0,'?'),('	â2»ÁŸg¦·f4Gàqú','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/PeclUriTemplate.php',0,'‹ÅO »ßqYí÷Ysï½i™','‹ÅO »ßqYí÷Ysï½i™','cyÛ«œé8ù— O_ø×O>YÔõ¶ˆ¯Â§s{%','',0,'?'),('	ãU¤;ë`Ëd?m“óÇ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/DeleteConflictException.php',0,'H´å\"Êæÿ´òjûvo','H´å\"Êæÿ´òjûvo','½QF!\rÚ‹Áq—¿Ý1—=Ix:f	ä­s;i®õã§','',0,'?'),('	æ¶÷IhðBšpO','wp-includes/blocks/heading/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F•.é7H¿¾J0Bµ;','%¼u6KŠ¢þé…‘&¬]*á$th_¥G-\0t{~','',0,'?'),('	éñÏÛ09÷-b±…Í©W','wp-admin/network/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„ìF×Gcˆ‚¬o…_âK','ÖVó“ mÁ†šü­ïy©†ó‘xÕˆ{¬øÁÿ„Íõ','',0,'?'),('	ì/‘?Ñô^¸EÞÕ‘','wp-includes/sitemaps/class-wp-sitemaps.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5.RÌ\0I“u÷\'tVó','g­–e«Ù;Œ_~¨_f/Pvù’hmä“HòµúëgÔ','',0,'?'),('	îùeØ»Ž–2°?—','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/date/field_date.php',0,'t°-ÑP÷P0q¤5|£Âø','t°-ÑP÷P0q¤5|£Âø','û[·ÑŸ³+^‡ÿv¡:¡€&ªÛ\\€\";¤¸k7ë','',0,'?'),('	ïýµË¦„3“;´¥Ÿe\"','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataJsonError.php',0,' ¯\Z¼1©îŸM	g½ÕŽ\r',' ¯\Z¼1©îŸM	g½ÕŽ\r','<HšãpKÑ¤óF\rõ¨ÂÃV¯Ö:‘K\Zæà½ð®¦3','',0,'?'),('\nã‘r~m Hör¨“î','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListSendAsResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í‘Ñ£ÏÓÁ*.J(ù','°iNóÌ<9âºaÌÈ€Q \0	Þ)éó»êlˆSB','',0,'?'),('\ná½	6ìí4Rè9øª‹','wp-includes/blocks/social-links/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™v@€áÃ°ÛãuD¸ˆ˜K','}%h×º»kš8Pãœ–`wÍÉw¯FÞqV³á7ïJ','',0,'?'),('\n$›gcÚ¹£WÕð²£©','wp-content/plugins/worker/src/MWP/Updater/PluginUpdate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùgbÍÈ¡›ž*K¤WÌ?','ÈæœRIÊÍkÊJÓ9™ðÓaUâbðiŸ(r„Ëí1','',0,'?'),('\n8,¨†OH*yìˆ%Kõ(G','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Order.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íÅì8!\" Ä ¬fÿ','¶â	Rñ–øªÿ­\n×ÝUðÃj®Xðì|3PlQ£cº','',0,'?'),('\n<y Þn·mtœ¸½E=‘','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php',0,'„Êo»TqYi„<Kgu','„Êo»TqYi„<Kgu','\Z¡Ä@a¿Ê[\0V×7 Ýš›©ÌùºÑÊ‹\0´','',0,'?'),('\n?„0#©Šíê¨t^|`','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/ChunkHashInterface.php',0,'ÕãôéÍ|ÛÌ«&dDÔ¤kš','ÕãôéÍ|ÛÌ«&dDÔ¤kš','§Áÿ’ÄêôµÅFý:ñ>«¿àÈçp[‘´§º•¤','',0,'?'),('\nN\Zš|s\'4‚àÙ ç','wp-content/plugins/wp-mail-smtp/src/Compatibility/Plugin/PluginInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$3Š¥ÜÃÍ“Òµ2','Œ«VA%ó.»i^\\>îý‹i7(\Zr´^\n7ÜÄøn2ö','',0,'?'),('\nT•¦/\\9$Y¤U\nÛÊÍŒ','wp-includes/customize/class-wp-widget-form-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ÅD*@6á‡{Ï„}¦ç','Õ+Ö“zi­›À@€×ÆÉ^F%5ÊqZg<¾Õ','',0,'?'),('\nX8¹¡+àUÅºúrújûÙ','wp-content/plugins/fusion-builder/assets/js/chosen/chosen.jquery.min.js',0,'cþÁlÐç„ÛgBÕcrA','cþÁlÐç„ÛgBÕcrA','¡‘ØH*7C®Áø‘Ê¬$AeG¨¹\rŽ|²Ó`“^J\r-·','',0,'?'),('\ncŠ·kG‡^¾ýïD²Óãâ','wp-content/themes/Divi/includes/builder/feature/window.php',0,'¼O¥³,õ÷¤\Z`´BÜ','¼O¥³,õ÷¤\Z`´BÜ','¥m©Ù­)ªv¥­,ö5]0Ö0D¹TûØ [ÛüeÂ','',0,'?'),('\ncÄÆn$8:”ön#j.¨','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/NullCacheAdapter.php',0,'s‰ÆB¾.ÌQŠïoWkG_','s‰ÆB¾.ÌQŠïoWkG_','&æ®ª«©T>IËêÈe€cu?~:º%ã%:ÝÕh\Zë','',0,'?'),('\nf†‰Y¡·4&üLð¦','wp-admin/images/se.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÖÈ”BÃ`½Ú.}\'7:','Y­»›ä›è\"KùÑ{·U¼©×r™:2Š‹JL´”È','',0,'?'),('\nj‰,¶ÁIÀ(æ„þ|Mî','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Http/MediaFileUpload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž›­££Í¹†æ\\°Ð¬{?','\0æ9Wc>hˆ¦¦¯<èi|±åXC†U‡f”cÈEó','',0,'?'),('\nw¡c1¬™ªDÓ\"à”AN','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/phpunit-watcher.yml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RÈh†òÂiúÙš¢æ£','\'^®N¦‹íô½™­_#C7°=G!â!Ð7zÔ€e$ÝM}_','',0,'?'),('\nz‡Å­Ž}ô{Ç.¶u[¤','wp-includes/block-supports/generated-classname.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YÑT¨€ðæ“Ã$˜5`„','7{ü¹Õv„>òáßRÏû;Â‚Ù^î××Ý4Q‘eu','',0,'?'),('\n{X%N8ÂŸwÈ2?M4CÊ','wp-includes/css/dist/format-library/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€Î”YcÔsÊMi(´;é','e¨ÿ+1šu †–ú…Ëø!\0	)ÅuPä/î.’§!Í~‚','',0,'?'),('\n}Ã…$§3U>T’æ«Y','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/SetBlobPropertiesResult.php',0,'è±ÀéìCÛqÜºOÑ9','è±ÀéìCÛqÜºOÑ9','OÁ9;¡¸–`ZnÔs–Éæ)çë\"6_ð”1ÍÉ´žŠ','',0,'?'),('\n}†ñ\'Ù©B»3ü9­:¸','wp-includes/blocks/table/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*«ôdÎO+5j¶=','\ZDa½:•9Þ$©î¥ÇÌ×ÍÑê\ZL“lŒl','',0,'?'),('\n…4©3Ñ\Zz•÷åÇKˆ','wp-content/plugins/wp-mail-smtp/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<Ú‡·/7=§´:q5¸?”K','&W§ÿK¨©Lì	É£½ýÊE9«­lé{','',0,'?'),('\nŠÌófÉÓ…;{»tõ‡','wp-includes/class-wp-role.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ëyH½ˆôû,o™:¦™þ','\'}Ø‘9ÝöÍX8ušõ¬ß¨Ÿ[(oÏaœn\\±','',0,'?'),('\nŒž£!<æòeÑ°a2','wp-content/updraft/plugins-old/updraftplus/vendor/composer/autoload_real.php',0,'Íã2Ðôß+X~ƒZnÝ}','Íã2Ðôß+X~ƒZnÝ}',' Ø\ZlªÙ$ÒYùê<ÇmMæKÈ¸:Æƒ@¸É1öI¼','',0,'?'),('\nŒé6„R*Fg*¨xh¥y«','wp-content/plugins/wp-mail-smtp/src/Providers/Mailgun/Options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Òœ’h/ëæ¸éÍ¡Þe¿','Tò/Ï™š®\'G’ˆ¹§ÿÏq¯ÉÝÅ’Ì·s‘º•ñÎ','',0,'?'),('\nE|@ØçÜÒá\'¿4Þ˜','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service.php',0,'Æ£í¹yu\r™¸XOÇ÷N,','Æ£í¹yu\r™¸XOÇ÷N,','‚cŽ5©r¡íIe¬NZöå71A\"q`ß%”§»','',0,'?'),('\n‘Tž*Ã›À]·Zÿ>å¤h','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/EntityTooSmallException.php',0,'‚DÇÑ–üöÏèæ¾NNãÃ','‚DÇÑ–üöÏèæ¾NNãÃ','TØ4àÜx«œQë‘<ña¡ÉÁE=7<ÍÈôp}Û','',0,'?'),('\n“µ‘b-ÓVø:ˆƒ|mµÿ','wp-admin/edit-link-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤S¾ŠZeqöiË[ÕÃ\rv','[’äÏ£b]Ú9Ö\\ë|•ÓÖ²*V\rð“~ŽÜzÒ^','',0,'?'),('\n”©ìi©tuQfÍÑ¾Úª','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š ÊÙ9-Ž¨K›ðà9,å','²æ–­8ÕZ¶¡.8ÎøgåªKlÈ2®—&.M„‚OÁ','',0,'?'),('\nšéÑÁ—á#Ýñx|]','wp-includes/blocks/site-tagline/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',=Ÿ“SPE¨óŸÒ§£§','ÊˆÍ	™Ø¿ß¥ÿÁ~üŠE¹çk¯º,fŸŠ«Ëf†R','',0,'?'),('\n£¸”ËñÂƒú#NÁ\"¥r','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NotSuchBucketPolicyException.php',0,'qK+¨ÉpÚÂ•¬Ì´•','qK+¨ÉpÚÂ•¬Ì´•','+O¼ñ~‰\rÚó)EÏnè\0`âûœóYãµ','',0,'?'),('\n£ÜNNM¼ÔÛ‘4;úpÐ4','wp-includes/js/customize-models.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/ûoÏ±;ÞïŒRwc','.a÷Ê§x…°^„g[&³EËÎ¡JJ˜TôSÕ€á','',0,'?'),('\n«õ5âù=¼IK”&{ïP','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\;¦€Ì4Í›0…\\t¡R','KP­ËÑ¢ÿõÖ*e«£>@‘P*Ù3ŒºÂÿ‚û–OÁ','',0,'?'),('\n¹¥Ç8@@Qmï`X‰äDø','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf2CacheAdapter.php',0,'[&êE\rµRÿË37CÀg,','[&êE\rµRÿË37CÀg,','T\\®`\ZWÐnîšä/Lñß n:Zfñb$Ð$Nv¡[„','',0,'?'),('\n½´IzK¶ÌÏ8)¼¤u','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidAccessKeyIdException.php',0,'2ùoº3ÇvB½ßÿèÛ‹','2ùoº3ÇvB½ßÿèÛ‹','þv¢“k(Äà­hÀ\rÖýœÌÝqµŒ±W=¯˜ë÷™1ô#½','',0,'?'),('\nÄ%ABK¨KÕ1ã{Ô ƒ','wp-content/themes/Divi/comments.php',0,'™lpÜª—Äp$\0å±j\"','™lpÜª—Äp$\0å±j\"','s‡{+0´Ý_íf­ý@•Ç½<\\\"³P”ŒQÔ6[Ñ','',0,'?'),('\nÄÆÊ¿¤Tús<,Í‘^Åþ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/GetContainerPropertiesResult.php',0,'À?®Ž©ÃkÌ4å\nôÁ:','À?®Ž©ÃkÌ4å\nôÁ:','bçøº\rG’Ì¡Y¶–0[Gd×³EùaæYŽŠåã»ù','',0,'?'),('\nÌâhz~ìÈ-\rÅåÏÌ','wp-content/plugins/instagram-feed/inc/class-sb-instagram-cron-updater.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uÞJ@‰cz´“âÓÛ‘9_','\"?w_vÁ?ƒeàQ¦¢<¯¯1¨(¥‹&\\	¥ÈdÉÃ\0','',0,'?'),('\nØøy_&LÙÇãß*=B','wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthDataStore.php',0,'ýù«À(úIîÔ×ðýÂÉY','ýù«À(úIîÔ×ðýÂÉY','Ú5½õâ£#\ZDÊ LÓM7´€×Påiá&ÿ(','',0,'?'),('\nÙi¤B4®\'ÕŠ­^+ª','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/AliasFactory.php',0,'Š¥\rŸ¦õ“UQGjD5_;','Š¥\rŸ¦õ“UQGjD5_;','²š•Ìc/F;gG„ß}ˆ”*RFÙSQÉ¡Ø\\ßßÎV','',0,'?'),('\nÛP½Ë”5Â~Ö~','wp-content/plugins/worker/src/MWP/EventListener/ActionResponse/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('\nê4\rwÝ /JÖ‰4ÞÁ^','wp-content/plugins/contact-form-7-dynamic-text-extension/readme.txt',0,'î@Í‰Ä$Ü}§2ùHxóÎ','î@Í‰Ä$Ü}§2ùHxóÎ','S\ZiÁ8µÚY.«˜°1rg¸…ƒÍê\n)áBÿ+_˜','',0,'?'),('\ní@©g‘Ý+T;V¶–','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãÕf—­Â\r@)ø«ë»š','¼;—•¿Ì_IøÝmò1›Ž£øµ\nî9|!Þ¶å¯','',0,'?'),('\nïÎŒbméû0˜!1íÑ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCanCacheStrategy.php',0,'rÜœºG#ià—=Ã¶/¨<','rÜœºG#ià—=Ã¶/¨<','Ö<t½@/½äÁ—|Â£`‚»Ê»+‘IŽ•\"2ÇÖÉž','',0,'?'),('\nòÅcŸ›äg’q÷‘?','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Translate.php',0,'bÙ‚ÛÑw—Ü&B\Zï(\Z','bÙ‚ÛÑw—Ü&B\Zï(\Z','tûÝþ­-ñ~‹¡’YíÒyÄGýr—]Ø`ÚÎ»«zKT','',0,'?'),('\nô\r£Bƒä®pÌ­','wp-admin/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼ìñ!³/[à^0\'cÜQ','l¤1Ÿïm5÷cMcÙYÈÿ)¡UÉ“y1ÕíƒžßKúN','',0,'?'),('\núÙ:ÂX2ÞL•Žnc','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö‚cŠzûÛp‰öü(Š,','ü¿,»î™îÛ%u\ZàâRzþB \r#À¨~”+`È5yË','',0,'?'),('\nýGÆ™nåð\Z@1+U]£','wp-admin/css/revisions.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ³î«Í¿FY–‡ p*','~!Z¹é©÷7”Ë/°‚<¼£3¤Yá,…=Zk(','',0,'?'),('\ný|¹²Ë¬îÓœcj`{ ','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/WordPress.php',0,'qƒ,íSƒ”·ë³˜Ö€!ù','qƒ,íSƒ”·ë³˜Ö€!ù','*7ë^¦¾Šìb_Â(…Ã¥v#¯ôâf…{	ó¿&§ì','',0,'?'),('\0,Q¹lx ^æCQ©','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/UploadSyncBuilder.php',0,'þTÜ·Ã¨\")Ÿ!Áié','þTÜ·Ã¨\")Ÿ!Áié','6ÛÛ‚ÜrÌÑ˜	%)QUT‘»>!’èèm(Cù','',0,'?'),('¤]fÊ9®û³Ê·àç','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/MessagePartHeader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡ŒÓöQ:’Ú\Z]Í[Üt','5õIDôj¡à®ú_!ðáÅó‚œ.ù°§-ÌÃçÍvcÓ','',0,'?'),('Z‘1¾D¨6–¼7©‡','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/AcpListener.php',0,'0.!…á8GRBüwŒ÷','0.!…á8GRBüwŒ÷','IW£IkNæ\\ë	%®tc…q´¿59îÀbF¤“«´„','',0,'?'),('æþþFv\\ „ í™','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/Net/URL.php',0,'ï}ÁPØ»ÀÍùÌqKGL€ò','ï}ÁPØ»ÀÍùÌqKGL€ò','Ê¯MtæÞ\r4B\Z¯S	êÒ±•~\nO,X=©m¨¿Œ	C','',0,'?'),('\"w%â_ƒ„K\\ áuË','wp-admin/images/wpspin_light.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hkžuËRª\r@9k÷’ç','»³÷!ÚF×±‡äò¸(œ‰µ#õäˆ1†‰:ã','',0,'?'),('&cµYDØ#èP{+¢','wp-includes/js/jquery/ui/effect-blind.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žÈ·˜ñ‡ûÝ ²Ãm 7','QÞXŽ_mŸ\\>‹áhå!Æµ¤^Mé…üæ£!V^&','',0,'?'),('01·ã¢ïäƒŽ…ÞŸs','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ImageError.php',0,'ª È\rVj÷þÉÔˆ»ÍQa«','ª È\rVj÷þÉÔˆ»ÍQa«','žËpƒ£Ô(@‰ÖkÐ7,G—q?×`®W ÞßF„Â','',0,'?'),('1MG.š¾-¾ñ€ÉÖæW`','wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-rp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','72i²h…r©7µ¦,à&M','ŠôŸì	Kòòdé.â ®®ïii‚•XK…KŸúäA','',0,'?'),('4<‚¸Ÿ[\"BjR^vé','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/SecretStream/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zjoñ\0˜ºy,¨*•}c','2p\"Wjá„€—ìsâlf&S@Ç[Ç\\‹ª\"WÆ','',0,'?'),('4É–]{Êž\ný~9°ã','wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/DumpOptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®ñšpÜŸ×?a/Où','cß™‰|YuÄ\n—€b«¶/±»9ÍEFÞ+»lâšV¢—‘','',0,'?'),('9Î\"‚4ìb\rÖW\ni|','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListMessagesResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é!:°âB&Û7Ô‡Xõø','‘VzâRÕ«¶œì;fÜAV&0S¹ni¼zË÷','',0,'?'),('AFŒ¹¸éÝÀØ…+Ÿ6U','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplate.php',0,'¸Åš!^°¿«Û´+¹çEB','¸Åš!^°¿«Û´+¹çEB','‰a=¼òÔúX\n®<9&Ÿç[±õLúŒæÈÈõPûÃé','',0,'?'),('A`þk{¹n«Ž×/*ScN','wp-includes/js/dist/vendor/react-dom.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜõcûJeN¤æçuL¥Ò','·ì\"mOô=•¼¡¢EÂ¹jas­lIJ²¼ˆ•²‘þ','',0,'?'),('B\0Ày7=Øz4X1uY','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/CookieJar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þ:^õ§.Y­éQ{¥','CßxêKtîèrµ(¸:ˆ³¬&ëX©.FÍ®D³Ï…','',0,'?'),('H¬¶a2«‹ó‰s×´xÈ','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-dynamic-css-file.php',0,'qZîP¡¡a\nˆƒs0Çò','qZîP¡¡a\nˆƒs0Çò','?TäÇ^âúí7“sf…5¡<²—”\ZÐsÃFU_¬+','',0,'?'),('Pæh›ui8V§£\0kU±','wp-includes/blocks/post-date/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	B\r²LºÄF”J\\Ø','Ø¼ý¡õ—QÂÄ!L_+Äq{²{Ä¯º®6…l~aûÒ','',0,'?'),('Q÷\"7 ëè÷\'W2›-\"','wp-content/plugins/fusion-builder/shortcodes/fusion-text.php',0,'ò}Q]«LXƒoÞ,Âi','ò}Q]«LXƒoÞ,Âi','÷(ú#†Ý£D˜ÀSÍo‹*ªè¨\'6;`\Z','',0,'?'),('W‘Õnä3§O´ê\"¼î','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/UglifyJsFilter.php',0,'fvÈj=ømáJFp\ZcŒ','fvÈj=ømáJFp\ZcŒ','rmW™[û¨ Ìuÿ~.k®™4ž‹iâ?Ûîù®TI','',0,'?'),('oc³ƒÌÜºÕP4/]','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/File/ANSI.php',0,'gS?Í†IðPC÷Ù­òx_','gS?Í†IðPC÷Ù­òx_','ªì9\rTQçÓÊú\n»Ö¨A®«·(ÝÑš¾WZÚ','',0,'?'),('tŠœcãËŒz”ÍFø','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Feed.php',0,'	Lq_a~@›¼fa9','	Lq_a~@›¼fa9','6Íî.0ÿHF]•E0ö<62þjlž3a3\"øÉ(<','',0,'?'),('w±¬¯eèLä¦Ã©Ÿ›¸','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/Batch.php',0,'·€¶Êûþüã,¥1á@b9','·€¶Êûþüã,¥1á@b9','£$-GÇZËµðºyÇ€¨è\n_àBT¬ÀQ(','',0,'?'),('ýÃÞäYÆîðëqï„','wp-includes/customize/class-wp-customize-partial.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J@ÖN-p<Ì1]\ZýnÇ','ÆªÌã«¾’ƒ™¢Ÿðs“uu±„nÎ\0ÁïV<1—r','',0,'?'),('‚õ¥Çøen\r>¬Vq®','wp-content/plugins/worker/src/Monolog/Formatter/LegacyGelfMessageFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RJð˜Pá=JPš±û','}¼5³|Yó§ÞÆø„å^#/ó+¡í•ê‰+²½g<û ','',0,'?'),('Ž1Ü0ˆ‰Øˆ_­5¿','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/Test/TestLogger.php',0,'g¸ƒâX,uÅùQ%Ç½êÃ','g¸ƒâX,uÅùQ%Ç½êÃ',' ¹\'ê…-‘Óñô¬%$³tÄñÊTâLÆëB','',0,'?'),('‘RÇ¶÷ý¼$ÜÎCóº','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Task/Composer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å\r/¸|ù^_Y^»ºŠ-','6,cÆùù\\¾ I—+K*$o²÷\"†GSÐûÿ“','',0,'?'),('“RÓê@^3Ë-‚S%Á','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/DirectoryResource.php',0,'Ý9¦²®^\'Jáœ','Ý9¦²®^\'Jáœ','N×j]îsC•U\'+ÄšwÕ2ï[GôDþçwkà;Â','',0,'?'),('”ˆ¦,H(bæ_F”O','wp-admin/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì§+Â×™_xL9Ô~hÀæ\0','¦H*+w£“ÒÜCy·	m®v«1Rã2\ng‘\\¯','',0,'?'),('™4{OMÄ\\‘\nÛ­ÐwÅm','wp-content/updraft/plugins-old/updraftplus/includes/class-filesystem-functions.php',0,'Þ_7¥\"íd:GT&U{Oœ','Þ_7¥\"íd:GT&U{Oœ','e¨šPQË„ÍH„Ð>[à¥¡Û>’]eiâvìH›Â\\','',0,'?'),('œ«HVÕ¥½dà³pÕVp','wp-includes/images/media/spreadsheet.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñÀ 4äñÖ\0TüÞÌ‡?²','¶ýÌ¶v²¶)ï\nº6Zl«¶2¹õêÐ’1Ù!+	Ù','',0,'?'),('ŸVj}Lü×FhkN0¾!7','wp-content/themes/Divi/includes/builder/module/helpers/Width.php',0,'d-ž‡ÄºÀOþ™©ïž“˜','d-ž‡ÄºÀOþ™©ïž“˜','Z,Ñd¬lÔaUö\'¯þ··Bœ´AÝß¤QªDÚœå¸','',0,'?'),('«5öÃ…³ÆŒ…ãäþmˆ','wp-includes/block-patterns/query-standard-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷“`bà4äÅ¡ÙìuWæZ','Î»dîöv¡,õaíŠÅä:é6Ì_/MìÀ‰^Wr','',0,'?'),('«Ã\'‡$¶¿†xôP+í','wp-content/plugins/worker/publickeys/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('²F…[ßÌRslÝ˜Mz','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCollectionInterface.php',0,'kÐÑ>9æÇ¦–Œ:Ì­¹À','kÐÑ>9æÇ¦–Œ:Ì­¹À','âÊ¸ÀºTïûÞº%¼±KÊü–RÉÛÇ•Ñi>=b','',0,'?'),('ÏZßšûUš÷•*ý','wp-content/plugins/fusion-builder/inc/templates/nested-column-library.php',0,'¯;.,(-n±Ø´ àŒU','¯;.,(-n±Ø´ àŒU','\rÕúà{B³±Ë¢?2ª>ž¾uæ\Zm.ŸY,Q','',0,'?'),('Ô®ÍE^Ú‰41ú¼ÈÝ','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/SignalListener.php',0,'E!u£S…‘-QïôT@¦ï','E!u£S…‘-QïôT@¦ï','`9žªÌå5ãA.¿g:ïº‹È?^ª„Kƒ²«','',0,'?'),('Ùa„Õ™…­ý¿g©|','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/km.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lÒ=dij=N$¥ó+Ñ	=K','¨t,˜.§1)u®Ñ\03hyz»ã«ýó‡¸çïÈU-','',0,'?'),('Ü€¤/»ÞŒÆs*)Ûg','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateEmailCampaignSender.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`&•F&ÈÀÖ¤“¹©@','¦r/9to³•ßä€++ ¯–B«ƒë:,#]<','',0,'?'),('âÙ{zû†U®btBj','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Message.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','î3;›–”TÕÏ9T­š','EV«Š\Zõ3‡À_­xÃ¸>°’ÿûÉŽ\\Ïh\\„(','',0,'?'),('ãÑxÉÄüb\rr”ÙW”ç','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactoryInterface.php',0,'nŒ“ha¦ªòâ¢w*Æ‹','nŒ“ha¦ªòâ¢w*Æ‹','þ°ÊÉfk@Ï±ŽL½¹•1<å0Ñ•®QÎz3¯.%','',0,'?'),('é\nÄØUN~½½‰\0mÐÄ','wp-includes/js/codemirror/csslint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë¼ÉM_Ï±Iå¦³òÀl½',']¶ih4F„õÃ²ò\rìöU»ÖîßWEK(ÚP¸d','',0,'?'),('òc\"ml ÿÇž>o','wp-admin/images/wordpress-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óNö%“d÷ïÏgÍÝÉp','Î\"¦uð™¨j-QE\0‰Ó[æ¦gLÝZ5ÝMD½:','',0,'?'),('õ¨­ùÔ@¶ý³]Œq','wp-content/updraft/themes-old/twentysixteen/comments.php',0,'ÌàUa;ý[b©Üõ\\¸Æã','ÌàUa;ý[b©Üõ\\¸Æã','}n\0¢2(2Çåø)d‰>èªÆ¡“ê eÎK;nºCs','',0,'?'),('þÌLþÝY¿‰pF%‡>?þ','wp-content/themes/Divi/includes/builder/module/field/display-conditions/CategoryPage.php',0,'cpI\'UÓsƒÐÞÖ‘','cpI\'UÓsƒÐÞÖ‘','s¢Ñ4ü5_¿*Ïa—¬Øm]¯¾àÌtg„íˆà‰lL','',0,'?'),('\"-b(0ä ÃÜú‰³','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/file-backup-exclude.php',0,'2ñP½§€¼KT”‚¸9','2ñP½§€¼KT”‚¸9','lž‰^>ßšZ°ŸfLÅ6“3º¡`Ø­Ô\nøzÑšý','',0,'?'),('ÕO3$(aoZŠeÔÂô','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureInterface.php',0,'àW»Ý…ÿ’+Å-—','àW»Ý…ÿ’+Å-—','²);jûÖC´ÙS>Ë]2Òsò~Â91Èž·ñÛÍ','',0,'?'),('ÍY¦X /¬vK^å‰ÿ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/color_gradient/field_color_gradient.php',0,'9$d$ž³ŠÊ»<„P?ÆQ','9$d$ž³ŠÊ»<„P?ÆQ',']:ÿø¡óJK«õu¸`÷Dþ¿¸GÕ@øš;ÊØö‚þ‚Ø','',0,'?'),('!brûî•Ç‰oà0','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/EvalBarrett.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ržÀm¶6µ8<)x','4^¯±¨5=á zh¼\nl	GU`\nùü¶ù?äšÁ~','',0,'?'),('$%#€Æ_‚U»_dÍ','wp-content/plugins/wordfence/views/options/option-toggled-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Áê|C ¾w@ãˆÊm¢','5ªÃ£\0ÓŠVbA†Å‡åäüúŽ.Zû;Mzüq]¬¡','',0,'?'),('&½LV\ZêN[ßÜ™Í‹®Þ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/CDNContainer.php',0,'÷}ËÁ\ZÎybí7#œ','÷}ËÁ\ZÎybí7#œ','P„5ƒ¶t¢k4Œt·‚óI…5pmåN˜„ØÈ—o-©õË','',0,'?'),(')>\ZpÚÊØG\Z3}‡&°','wp-content/updraft/plugins-old/updraftplus/includes/Google/Http/MediaFileUpload.php',0,'7·gm€)0¬ìžïUî•','7·gm€)0¬ìžïUî•','òZ]ÅÂT±V‘{ºã!í?u’`íägD&L¤Àœ&','',0,'?'),(')d`Ì:/ôO€&»<ÑÊ[','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/color_gradient/field_color_gradient.js',0,'n‚cæÜ…HyŸ×Ð)j','n‚cæÜ…HyŸ×Ð)j','¥(¡*¯u¥æ,ž‰Ka4çÍII´û\\m§ÐäXŸ\n™j','',0,'?'),('*úOÄ‘Ìâê·åi','wp-includes/customize/class-wp-customize-media-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£U©Û=\r¥˜‡Jç„$€','”_&£3¬é$††Ã9Ÿ•Ô×béÚ–N±øé\Z*\n','',0,'?'),('B«ú²…áJâxÚ«)J‚','wp-content/themes/Divi/includes/builder/scripts/reset_memory_limit_increase_setting.js',0,'|ø‘#\":À:µ¾K\"K','|ø‘#\":À:µ¾K\"K','ì+¥Tí0+¤–`~a@×ÇmF’ýSÚÛ1ž^û”','',0,'?'),('Dƒ¬ š2û”K|&å','wp-admin/css/nav-menus-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íh©Á¾»{\"à¬‚kóR','¼»þ³Ã+þ%Dj“gÆ!Ú1³#»yØomÂÍ†ð[D','',0,'?'),('FúŸÀ}@ÿx“‰ i;','wp-content/plugins/contact-form-7-honeypot/includes/images/banner-coffee-dark.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñ§§[Ñµ6€Ç§™Š','tkdÈüÑ<kÑµßV@!Å]ÿ5ì³†{’>','',0,'?'),('IïBôãÐÇÍZ,0Ù/','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Storage.php',0,'ha®é;x.ÿÎ^~É}×à','ha®é;x.ÿÎ^~É}×à','[`]Í¡º]¦úÙÇœ´ÁÛÝª7mA\n’ég¾','',0,'?'),('Qï10ØòéýöGŽÿ,','wp-includes/sodium_compat/src/Core32/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x} ó’”ïpc° KàOÿ','(H>Éö0€}¾Í8:e…)ï¼´¬ð™NÁ/Îzì','',0,'?'),('XKëwC¼é\\ÁÍÞTrA','wp-content/updraft/plugins-old/updraftplus/includes/updraftplus-admin-common.min.js',0,'ØI1\r·5~h÷Ì\'–ÄN','ØI1\r·5~h÷Ì\'–ÄN','`¡4¦…µ8$¸ý>ür÷+ßËvXM^ššR)H','',0,'?'),('Xå4ÐˆXæé0™(ü{KX','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_TimezoneHelper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®VYÜ<ž‹”SÁ{l“ô1','GLd5uéP=HÃz}šGÝn#dÖŽ?Kä§ÐˆîEâ','',0,'?'),('_#¥e°³`ÚcÂŽG=','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Validate.php',0,'\\Z¾!µ\nŠßX­9ŒóÚ%','\\Z¾!µ\nŠßX­9ŒóÚ%','Õ´@%Y@Gaè§¸ÙÜ‰ÊS±©ÌPÐ¿¼±Ò‚u','',0,'?'),('fø!Ì2æºÜDs—Të^”','wp-content/themes/Divi/includes/builder/plugin-compat/wordpress-mu-domain-mapping.php',0,'vÃØã»Üëç©„2yò<;','vÃØã»Üëç©„2yò<;','%‚h…\\„õIh0O\\Æ¯ŒMEîïm\"ž‘','',0,'?'),('x†Pöj¯GVá³np\'','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/exclude-modal.php',0,'g¢¬Wÿ„·&•÷g›(. ó','g¢¬Wÿ„·&•÷g›(. ó','î2“g;\0	—,T~Ð`Ï<ÇÅŠf¬Àz…äyE+ª‰Û','',0,'?'),('{çMŒ“i»i2n•Ã6Ü','wp-includes/js/jquery/ui/effect-highlight.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nº‡Óxùàå:–écT¿','DØõIÐ4h\ng»SZ­þ…Ùo|Ÿ(Þ±s\r8³zþã´','',0,'?'),('|n©vð;W®;k`Ú','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Manager.php',0,'ªå|“<½„êÜÉ}M„æd¥','ªå|“<½„êÜÉ}M„æd¥','döT½Àµ	Íì˜áYv{Ìš+ÑÃu`úV‹ÏF³£î','',0,'?'),('€çx€ïï²…y3','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/StorageAuthScheme.php',0,'œsðÝNWÔpØ-`—¼','œsðÝNWÔpØ-`—¼','Bþ\\;©TØ… j)¡·ÛS$…,#ØÓÛíÝ<ïXÂ×','',0,'?'),('“¦Þ6BQÈ=yrÒmK%','wp-content/plugins/wp-mail-smtp/assets/images/providers/sendinblue.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€«5**‹•í¨o©ÒÌ3','­F\nè=¡ób~¨2ùûkGÞW”Q\nHþ>–H|\Z±&','',0,'?'),('”‘ûÒ¤ÒZä˜ÅÄ	¯ý','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/Classic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?Æ¦Ø/›wZ\n¿ê+¿[','Ékÿ>|Ègœk¸Ì(u-FQ²üá9ŽUíÞÍv#jÛ”å','',0,'?'),(' g\"Èˆ‘²•Æ_','wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/Exception/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('¢aåSn“Bm)Yž}»\r','wp-content/plugins/fusion-builder/inc/templates/element-settings.php',0,'qÐu|qy£oJRÅjß|¥á','qÐu|qy£oJRÅjß|¥á','˜am‰ý&<ÝäBøw~j~âúÁUrý‚÷k¹DÝv®Ó','',0,'?'),('­cš¼­5·ˆÇÐ˜ò7U','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListObjectsIterator.php',0,'è)iÑp¦JÎeû¼ºŠ-','è)iÑp¦JÎeû¼ºŠ-','Ú$PéO@’¦$j7mÌà.|É <©æv&I\"É4„$','',0,'?'),('ÃòA³ßFk','wp-admin/js/privacy-tools.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢.XÉcäû†\rµ™n','9=+*}ü³4-×o5ï÷–H„ßÉ[Læª°','',0,'?'),('Ãµ!-pw%Ÿ`·k§T','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionLoader.php',0,'á¡\"È1:oÉ8ê°ìñc','á¡\"È1:oÉ8ê°ìñc','VŽ÷Ê9Þ{°Ñ3HO™Ýéâ$w_wß\'¶ö:','',0,'?'),('ßŠV†,ÐÕµƒ›','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/StorageInterface.php',0,'Wãb¾³¥ïÝ\\Ð¢ã9','Wãb¾³¥ïÝ\\Ð¢ã9','züQ¿ÞÎz=¸ù“Œ¹UZj†DôÿîŽ°å›9–','',0,'?'),('àùÔ.Q}3ÒÙT‰','wp-includes/Requests/Hooker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³²ô¹…ÌPz©4É‡F*','t\r{Ökƒ?iÎkä•C\nLãðƒ‘bïÌ‡ÝWy','',0,'?'),('ã¹Ø‚fv–ƒZ\"œÒô¤','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Client.php',0,'À-Ü%5v‘F¨º\0*','À-Ü%5v‘F¨º\0*','ÔïÐ£!Va¯å›tüÅ Í1¡j[ùx¸\\sB½w','',0,'?'),('çZÒ÷uÑÊÉiigÔ„€Œ','wp-includes/js/dist/nux.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö×ç)L\Zù ¼¾ÓžÑ—¿å','Zñ…^Š,‰}e\nÎ£Éããd:I‚»´–áž”ã&','',0,'?'),('ðéÇ ÷×bÿeF]K','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/aws-config.php',0,'¨ÈÃö11õ€Ja\0\ZÃ','¨ÈÃö11õ€Ja\0\ZÃ','2“Ë6|OÈ»;&;þA|ÔQÿ@À™6_·Z6','',0,'?'),('\r\nŽ\\¿T²‰pÉ+NÕ;æe','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/Block.php',0,'r…=kù‚¡]ékûp','r…=kù‚¡]ékûp','úŸd|;õ(:\0|‚i¶{ÖdpB¿í€<Zy;7¢zM','',0,'?'),('\r»Mõ­d`_S‹g¤æú{','wp-content/plugins/wp-mail-smtp/src/Providers/Mail/Mailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z\0G²œ7»\0Ÿ+/æéÂ','éSßrýëG¶\\Ç·:’Ù[o?R,u—+„\ráÏ,Ù]','',0,'?'),('\rèï€±NÔÆ‘ì†Î','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Õ\nµ³„‹mS„(4ÕYO','\'ï1é\ZUú6¶òO^Ùâç­>¼¡ˆºhUz¡€fN','',0,'?'),('\r—²¾1©œcMv','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBody.php',0,'^}—§ÖN˜Y¹s}7¢×','^}—§ÖN˜Y¹s}7¢×','YŸ ¿°ùå‰\Z_\\”ó¼Ëí³a´ôÆ?ètbV','',0,'?'),('\r#9·’áÜp,à¨§X‚¯','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/BaseSassFilter.php',0,'Ö«:ç¦[m¼ö?!P?p','Ö«:ç¦[m¼ö?!P?p','‘\n#`–bnÒ	«‚¹HÑÞ=,kËë£Åä©±KÂä’ðç','',0,'?'),('\r5!G­ƒ/¡æSN\"/î+','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/contextmenu/plugin.min.js',0,'1L$ôA‹bëîDÑ*»','1L$ôA‹bëîDÑ*»','üU91R¾¢¼h£¹òÓÊäƒY­»3°¨^˜‹ñ­á','',0,'?'),('\r5{ê$ÑG6êoý¶›','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Authorization/Struct/Challenge.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n#+!t€QBÌ\0®e§','n…¦HwÕ0’ ºÓÊx\r8+æv~ÞïZøm8)Þ','',0,'?'),('\r6$©E1€V¸6	o£Ì','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ca.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾OÀµ\0F¿uôïÒ:Ûé','š`CzSŠC$œôC³ v+¦´þézü~í¢Å¯','',0,'?'),('\r:ù†G>dÑ&ÚpŽhV','wp-content/updraft/themes-old/twentyseventeen/assets/js/customize-preview.js',0,',¯3³šIÍp¦¬KÕ18',',¯3³šIÍp¦¬KÕ18','^+€5i„‰ÙÑúÌM‰Y0“úçÈš KFØd™kîIÆ4Æ','',0,'?'),('\r=`Êe=³{ùd®QŸO\Z','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidRequestException.php',0,'ÜDè¡ÁhQâ²ÉÐÜòk','ÜDè¡ÁhQâ²ÉÐÜòk','ÌlÔKŸ¿f(9ãÎ‹bHèQ¥Ž£\'¹”!Î¼Éâ+','',0,'?'),('\rUÀjÂzh—2/ð9œfM','wp-admin/js/application-passwords.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-:øØú28R@™ùI}','ÁS:þóM•Ÿœ;—–C\0“<·{Q–Ü¾5ù5¸C€‡','',0,'?'),('\roÍÅ(>R¥8Gt¹˜¡s','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBodyInterface.php',0,'Æ”/‹\\ïŸ£ûm[~qŠ)','Æ”/‹\\ïŸ£ûm[~qŠ)','€XÔ,ëì²7ÝÊþjô¤Ddôµv;×f¨tšæ“','',0,'?'),('\rvk½P-Èt¸Gš¥¦Hm','wp-content/plugins/contact-form-7/modules/checkbox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jï½ÛJß­¿ !‹^9â','špw:ìÆ ^ÖkÏE	Á™}G?·uBÈ)ðâY °','',0,'?'),('\rxÝ^´§¿\Z ƒ½<;','wp-admin/my-sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')êk€˜±PÆ‚Y~ŸP4ð','Œ][–Ë`mf~\Z¶¦ðdò+±ÒØb‹ZôêbÍ=q','',0,'?'),('\rzÇ¾±ŠDÖDëžÓ','wp-content/plugins/wordfence/views/options/option-toggled-sub.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à¿÷m“º­ÃÀô_á‚','¦»RÈ†F\nDî~HîŽ08),:llWøn®\rc²ß','',0,'?'),('\r~/ªt1jIeòéÕ*Æ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultRequestSerializer.php',0,'p)¿”]zòìÒ‹ªjü‚','p)¿”]zòìÒ‹ªjü‚','”~ï9ëÿ¢´ŽÒÉ†è%GµßýWêBÐ','',0,'?'),('\r€çþàËX°öÀ­+Ã-Ta','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ öMÏ¼³V_¡i¦	Âï','ëåUâsìÝÎÂDŽMÃ™ÆdÍÀ€(Ï\0ƒ±Ä¦~ÍÌÇ','',0,'?'),('\rƒvNõÌ[BáÓ&êØSL','wp-admin/css/common.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›yª¬òXÞ‹ò7èi*¢','p*÷öÓ)ºkjá\ZË\0m,œ6¹¤è ÉØ—Ù–S˜;°Ë','',0,'?'),('\r†58çO	DìLu6x’','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InlineDataTooLargeException.php',0,' \\Cî3•Q¤m³<¦`',' \\Cî3•Q¤m³<¦`','d³ˆ†Ôö•2ôÉnÙÈIMÜü·®V	\"}zNe±£','',0,'?'),('\rÊ<Ý:Ñ -{ÿ«Ì–H','wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Â°‚\ná„·þ\0Ýaƒê','`	\\XO¡U>8X.ç±f­?ú®mû{\nQ]¶8èÇ','',0,'?'),('\r˜Ò§xOzäâ†÷z‚¾h','wp-includes/class-wp-customize-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Åìo±Vj©\'WB{.©îu','¡f)%Ô|u”Û8JoŽAítD4ÝùLà+¥—úíŠ^','',0,'?'),('\rœ:‰:‰ìõHHù:d','wp-admin/css/edit.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J¸.5¡ÃeõÞ—Œ›ÖÔ`','©ojv–ÊI°\"ž|úßÛZõÕÎÆ0ã’\n¿´Ò%é {®','',0,'?'),('\rŸpRÃº–\0#û(¹Tü:>','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/select_image/field_select_image.php',0,'ý´vH•×U½Ôåf²','ý´vH•×U½Ôåf²','#ãÖ`ý`nrë.•r’:Ô“®Hgæs·¦µÍÖ=ç>s','',0,'?'),('\rŸÔ\rÓ2]Bæ¾¢æ‡C','wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','89\"ëîzzøÂVv*ÎØ]','«Û†%%lí:JÄf<ÈbqãÅP–ÂPtË¯}ß\"Õf','',0,'?'),('\r±¥\"œVûzUÿÇKT€','wp-content/plugins/wordfence/modules/login-security/css/ionicons.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*áÆ£Ù¿c;®Ûâz¾‹»','¬èNôJ¾s´@Ñ3	š:h)•7Kò›<”\\Nü+','',0,'?'),('\r¹çœmÎù\0^ÅÚ3²‹','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Random.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ«±NHE+ýô*ê1ÈLë','–;©ZIYD_÷”«©\rš´Ví²4cYÂxØ:K!§`¦','',0,'?'),('\r¼¥äY­_D<{¤:É','wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty.min.js',0,'¨!ïm•¹ÏÔH@4Ù¨¦','¨!ïm•¹ÏÔH@4Ù¨¦','ê¢lÏá3Ù ³=ŸÏ=Ý•›í–¢xeHLYî&ñ­#','',0,'?'),('\rÃ%ÛáãÏ%¼ySý`ð','wp-includes/js/crop/cropper.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—²–ÙH.sÅo¿ö¨â','»pyÖëÛÐ,B·ùòúÌÐGÏÔö-Étœé«ÜÖ=ás','',0,'?'),('\rÍ3é%jã%€‚)–Ia','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@¤:W¥½¥Å\Z@[“°0æÕ','„UVœ“f£@hUñjÞ‘£Ï@]úË>¡9DmBâÙ5€n','',0,'?'),('\rÑª1s1=¬¡`(˜y','wp-admin/options-head.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÝcV8A#h:e×­/ò¿^','cÒˆ„î^$kR2\r=½Ü«ðþØù@g¸Ê2çú','',0,'?'),('\rÒ—èr×¾ˆ Á¹Î\nœ\Z','wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$ë@‡æ­ÿüÞ¯]œ»&','7aP±ó\\Tâ å£é\"Såz·±ÞJÎ&bÕÙ¸Â®D','',0,'?'),('\rÛ¯jÃo\Zm?	`•š];','wp-content/plugins/updraftplus/updraftplus.php',0,'\n:0°‘2fèK)gÍÕO»?','\n:0°‘2fèK)gÍÕO»?','W˜*õ(Å»[åï\\rÎ-Ê =Ñõ¬å©”\"«1Fu','',0,'?'),('\rÝ?†k#G¥¢¤9¸Ù-','wp-content/themes/Divi/epanel/theme-options-library/theme-options.php',0,'ò™Ûã!ž`¿çÉ~ÌYu5S','ò™Ûã!ž`¿çÉ~ÌYu5S','(ƒö\nÝõºq%pvŸ\\£K?:u[\néAúz=,[ ˜','',0,'?'),('\râ¯Â¶2O“Þ2‡ú&¦@','wp-content/plugins/contact-form-7/uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÄÖàÚx2–ûñv0É\r','˜Ì]¶ú¸îŽC¯`£Ì\'àõùÔÅ¦Q5&˜fø','',0,'?'),('\rôQßí/¤Ap\"¦p+','wp-content/updraft/plugins-old/updraftplus/includes/Google/Cache/Apc.php',0,'JY^V¦Äë­*JÇ±^ó','JY^V¦Äë­*JÇ±^ó','áw;þQ÷…¾äQÇ3[õ£€¯oZWv›tiVI?','',0,'?'),('»ô`õ¿‰Ý’×ÕF$=W','wp-content/plugins/instagram-feed/img/about/steps.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+é­æ¢	Š2“cü‰c','j1ÒódÛ²dç’1ÜÄ<²jKø.fµˆšò¦?:i,å','',0,'?'),('¡ÀÀ³ºð‰0geÐ»','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r-äeÅúör^©!ƒ~','…î`”ƒRélÔ¥Lzã?iÂÄACHÓóž®£Pyén','',0,'?'),('öi4–}ýƒØn1þa','wp-content/themes/Divi/header.php',0,'ô³òÓõŸ®0¨;ÄÏL¸w','ô³òÓõŸ®0¨;ÄÏL¸w','Ó“}{snTZºãB¥ÆÙQßäT¿GáDDÚ	d!Ž','',0,'?'),('$­¯ø}O®\Z–Qw÷U','wp-content/plugins/fusion-builder/shortcodes/fusion-checklist.php',0,'ê s»î¼Yìà¯ÄÉ˜','ê s»î¼Yìà¯ÄÉ˜','îÞ|­1lbcÈ<ÔZ¢Õ¬äzÓ«CâüêwáÜÂ\\','',0,'?'),('(á¢lClóÁ8©jë‚','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/FnStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$vÔ¨ dSÊ¹\Z˜ˆÛ§','å@»O“¹\0ZÂ\ZÿœœA‹¤X¼Ô¾”‘O%«N³H?Ë]','',0,'?'),('AÑÞ‹uô´Ž¶òÒIxø','wp-content/updraft/plugins-old/updraftplus/includes/Google/Auth/Abstract.php',0,']¨r3“‰1¤Vp½=',']¨r3“‰1¤Vp½=','o®âÅÈ‰ÙÛ¾·Ïµ>šÕ\Zþ –¼óŽ&†!:ßüá','',0,'?'),('MHK~koé£%Ÿ\rj','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateChild.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!ÉìGœ±]n‰êÐn£Å','ýè~ÞXQüÓØmƒ«\'”×£ó¦SWoå`®iž','',0,'?'),('W7¤”{(„¦;:P¥š?','wp-admin/includes/class-bulk-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A2ç?ìÖ¬ššØ+Y”°','ói·ËÀ;öM3ŽUÈPñ<ëÀXZÓ¡zÚÄßâ','',0,'?'),('XÿæHå¥¥(»:ÈZí©','wp-admin/admin-ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mÊIys–†j…y¥ìÑ¨_','8=Ô»ý(¨ý¸Hè™&²uE\Zl}RZ±°>Olx','',0,'?'),('a5ÂÍ…Bˆ_ó­sÎ','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†EÓ¤ã­‡çÏMˆ¤gª´','QØø£*\'¶„þB©+Eüßž³û:•ómŒÎyuÖW','',0,'?'),('gJþºÓ¯§E’³Œ--+','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/ReadOnlyResource.php',0,'*„+ÿ°_@È{…4ÐGc','*„+ÿ°_@È{…4ÐGc','erO‡,Šv•*\r¨ºbzÍä7ÊÉ~»¼ô“šÄ}˜','',0,'?'),('go¬sœVã£;íÇÿ…\n$','wp-includes/js/tinymce/plugins/compat3x/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ÛnÁÃÙ1Ùì»ŸÏoVb','CÀ„ùT™(›çN+•,´TNèCÀ÷Ì`Þ©Š‚ì¿','',0,'?'),('t ê,$1ÁºýmÒßŸ','wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/Exception/ConnectionException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬rÒ¡ê*@¤æ­W—#Ë','ÁïÎ®ª¨Ûš=‰Av‡1n$19K¤:€¦sãä\\','',0,'?'),('ykÇ_ÎéUkâŸ,e=','wp-content/plugins/updraftplus/includes/Google/Auth/LoginTicket.php',0,'!·+ç\\òøáï)3aŽÓ\nc','!·+ç\\òøáï)3aŽÓ\nc','#½PêlÌÝ”|±ô-<$L¿ÕsQñP6î–‘DœU-','',0,'?'),('z}—Âü0\" ô†“%','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-equal-heights.js',0,'ÙXóù-ØvÖèœ·®','ÙXóù-ØvÖèœ·®','].(üšìÌyó.Á¼Õ·m\Zº³€ý„MÐÝ}+’ù+t','',0,'?'),('}é•…™´«ò¹åÇ½','wp-content/plugins/updraftplus/includes/jquery.blockUI.js',0,'\\˜ÀËúÎæÚ°x1Ë#=','\\˜ÀËúÎæÚ°x1Ë#=','š¨qÎ‚<±²«”AŠeóº·Š²Õ‘Õ~h¶PÈæÔ','',0,'?'),('~ÃÖ+U}úÑ‰ÃË›•','wp-content/plugins/fusion-builder/shortcodes/fusion-recent-posts.php',0,'|®‡ÖE”FöKQÇH½+Ò','|®‡ÖE”FöKQÇH½+Ò','DUs\"‘Ü3*(ÜT©<]CãîB:\\)“ý•„­¶m','',0,'?'),('ƒ®œŠ-£‹x™«[ìI','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNotFoundError.php',0,'ãúU ,žç2ã6Lö ®¶M','ãúU ,žç2ã6Lö ®¶M','\Z€ó—¶\0KTƒ¤¬a¶\r`¦ÆÇy–*¥â{¾Á','',0,'?'),('•h¯r\Z¨—ªº;%e˜-x','wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ØGÓJû‡u;QÔZ6ø½','ÿû…ß\\MUŒíKhQ¯wÀC©¶iÖV´î¢¹²ÎJ\'','',0,'?'),('•~ú`NÝø©û\'‹ŸfÀ','wp-content/themes/Divi/includes/builder/module/woocommerce/Upsells.php',0,'p%ó¦Ýf!±-í’ž','p%ó¦Ýf!±-í’ž','bf~~WßÌ`GF!¤q—pMD¹ñ”èã2–¸G','',0,'?'),('•©Þ{ÿ¬J»jw´ZÝ·','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-share-preview.php',0,'çchBUrŒÃ[ƒO{õ§è','çchBUrŒÃ[ƒO{õ§è','Ÿl\r¢ &©±2§7g%O‹â™T)3¦\r5R','',0,'?'),('›Ç³ÏKW)(Gj$Är0','wp-content/themes/Divi/common/i18n/library.php',0,'€qjï³[Æ¸˜Ž£]äµ','€qjï³[Æ¸˜Ž£]äµ','ÛŒž£Õñ9\0yhXç­<Hm“ÔI„^Æ\0m3~','',0,'?'),(' ¾­BãÈ‰¼“ç÷äÄ¬','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/libsodium.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':íÝ>9SU²žxJÊŸóÜ','\0œßé«S‡å~†#µA­9¢ØYƒ¢®jÊGŠï','',0,'?'),('£bG7?»nÇ‚1YBÐ9x','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/dimensions/field_dimensions.min.js',0,'æñ©ÞŸ)Hmù@','æñ©ÞŸ)Hmù@','6½<Äªíô1~Á=ÕöNm	Ê%ÄÄ¸ë§-I‰\r°pD','',0,'?'),('¹7é}‚ _žî²ÏTë—','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetContacts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãÄåØÿÇŸ“ÁQéJÂ¡E','fOÝÓÝÓËYÍš ‡~fk&qDF÷VäÃ›Ù¤Q','',0,'?'),('»£î±ßÔ¢Ô:\'KÜ˜','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/UglifyJsFilter.php',0,'fvÈj=ømáJFp\ZcŒ','fvÈj=ømáJFp\ZcŒ','rmW™[û¨ Ìuÿ~.k®™4ž‹iâ?Ûîù®TI','',0,'?'),('½ÿ\')%Ï—²óš{','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/SassFilter.php',0,'f:éUõc¥Œñ”lõ\n','f:éUõc¥Œñ”lõ\n',':\rk<0ž…µ³Õ‰d4Ð7=‚‚H¡4{Œ©Û\rö¥G','',0,'?'),('¿µü2¼ÑábÞæ>Ziá+','wp-content/plugins/contact-form-7-honeypot/includes/images/banners/semrush-2_300x250.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QNVuÈb~ð¹	N[M','¥‚”?³‡s6<×r-Ã7P,·)a‰ï„ˆY	','',0,'?'),('ËÖ¨ùq…YÑqfZ¥ÿv','wp-content/themes/Divi/includes/builder/feature/SplitLibrary.php',0,'î4m$‚}÷uÝ,×?å','î4m$‚}÷uÝ,×?å','š@Sš–³èsºÚµ£æD½#¢¦ƒè\0\'Ä	):\ry×u','',0,'?'),('Ì ‡ì¡CªY–Žñ','wp-includes/pomo/entry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0îw3aAr³ÈÏ6VH%þ2','%‹›Ø(\'ÜˆQç[‡çÕ”yÙB‘ì	ãO4AO7','',0,'?'),('Í>ÿMÒ8¸ Ùµ­Ñ|','wp-includes/images/crystal/archive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–SÊúðŽœÌI0Anë','LƒÖ%X°ó£ÐOè+ÄÞAa®!×SÁ\\Ü‰ô&—¨®','',0,'?'),('Í—–~Œ»q¯yL*>','wp-includes/blocks/block/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žeƒ*‹\'Ö]e\"PŒ ','™s&„sQ‡*%¸P+Ý»Õ\0Š4öÂ“ü²•[_ÞÝ','',0,'?'),('ßHdà”Öãèñ•oòCZ','wp-includes/sitemaps/class-wp-sitemaps-index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ù&a‚¯1Öæ›5b}1','¸kZòÇ`§è*5Yu£Â…”WB¦-4Y?Ð{Ì¯Ø','',0,'?'),('à-=5{ihÚ`ÁoÂÓ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistk233.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆaó ´¿ì÷¹.¢XòrO','dð$ì g™ÁA´~C8Ž»íÒÍÑÉa\0DxúçM','',0,'?'),('ëå\"\rJ\04°¹\'i´','wp-admin/js/password-strength-meter.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Êƒ¤Dú‡¸)‘a®n','`®ÓÁ)CŠELúd¥X\\¢&F-¿V7š+1ÀSA','',0,'?'),('âõÚ´Ç@YÞTALL','wp-content/plugins/worker/src/MWP/Debug/FatalErrorException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê1ÆeKç@ëë£½è\r','\\iÝ§+pºº8\\…ErüªÑdDbúm±IÂãn€','',0,'?'),('Õ‰ô¸‚ßà\"­—½«ù','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/diagonal-stripes-2.php',0,'UÙð”ÛRn¸ga','UÙð”ÛRn¸ga','ƒ­eF¤Š}E6Ð4Sdµ?Ÿ\\	|8‡‹‘u€','',0,'?'),(')<äRhþUë#¯e‰','wp-content/plugins/duplicate-post/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øƒá k$É±<î«Û¦','  #UÚä×Ô,,t#t	ŒPŸþc¢¢>Ž*Ô‰','',0,'?'),(',gðiÅ¾à(¸†Þ1­','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/AttributesApi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îÈ%EÌ]léúaÂó…{','”.Xub½Ÿ¹7»%µß{ÜÐŸ#ñ°ãàûÉ>Û‚÷R!','',0,'?'),('=¢Î§ &¯#cØÒü€','wp-content/plugins/fusion-builder/shortcodes/fusion-nextpage.php',0,'ƒC-†qO5V7\rY:6','ƒC-†qO5V7\rY:6','Ýi?FØ=r¡†…ÔÞÆ\0¾ôÞ+jÑ‡Z€¡)©ù','',0,'?'),('@ºd+¡–|¬Ž>q~[','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php',0,'«ì¿6mXB¼o}Rk','«ì¿6mXB¼o}Rk','C1Ó§½ƒŽé¡‘ÄôNémÜöjp³üô-|Ê¸MO½','',0,'?'),('BÒ]Û(PãœùË¶÷','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnrecognizedServiceError.php',0,'4«yEM3Åfú¸¯¤Û','4«yEM3Åfú¸¯¤Û','´u^MS‡ó¬ãwƒ(”–7\0H£XZ¥dU“¿','',0,'?'),('G„2ú®’õþßÛ+p:v^','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Collection.php',0,'½ö±$Hº·LjÛÛ 	[','½ö±$Hº·LjÛÛ 	[','êYÅ0þôþ¨¶£uªáÙ_ÍÊï[/„P…°Î­WQÓ:','',0,'?'),('JWQ&%Xn#!÷-µ2¥','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchWebsiteConfigurationException.php',0,'Ø«¹DÞÞ•“;L´Ä]','Ø«¹DÞÞ•“;L´Ä]','r,íTóvá•Ÿ}G[³›(ôIð=`ï»±wNç™¬H','',0,'?'),('SdûRIý*âŒˆGÎ9OÄ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CanCacheStrategyInterface.php',0,'s™Y±ñ(ÑãXwˆÖËK7','s™Y±ñ(ÑãXwˆÖËK7','ÈfyÚÁ!°ïOêy‚ÖlF5å¹vÈ DwÖi/ÄÅè','',0,'?'),('U|Jyò>Î‹âß„cc','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkUpdateError.php',0,'V¬¡É;ÇåÉúÈc{‰','V¬¡É;ÇåÉúÈc{‰','Þ³¦tgÀ%Îvb	—£xŒ@\Z€¼[GÒ[JM','',0,'?'),('\\Üàã”·ðAV*ç±¿','wp-includes/js/jquery/ui/slider.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JÁºç;‰ÚÉ:/}Vž@','|Â¸^“n&\\:+¬\']Ô/î9T¾ß6˜±æ(Š','',0,'?'),(']:6ãPF¯£RüÌÆuõ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_da.js',0,'<­~îcìØ³{–˜”J´','<­~îcìØ³{–˜”J´','F„à^ó¬§³q¢içør>#¯„^öRû_ô›üGé','',0,'?'),('gÀ¼:X¯÷E%•Ëq‡»Ã','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/HistoryLabelRemoved.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f°±jAB¹\\1b­]','d‘ïãÇå<6@ÂÙ5ª/9hHýŽƒÖ.²Cï¥ƒhž','',0,'?'),('i&ž:@é9¤±õ9å­','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ListPageBlobRangesOptions.php',0,'š©-	/Ö4•ù—A\'·\'¾','š©-	/Ö4•ù—A\'·\'¾','’ë2T†õãÏößÆ¾å\"Åqñô±©Á|º{þZ','',0,'?'),('~í)¼\nE>Ü·µ/Z8sU','wp-content/plugins/fusion-builder/js/models/model-element.js',0,'¾ósó,ìuðÒ[ÓQkÁ','¾ósó,ìuðÒ[ÓQkÁ','òòòžßô¹Ú]3Þ¬û×ME¤t0ê¶À–-( ûç','',0,'?'),('‡ÂZ ãã\rêTW…#','wp-content/themes/Divi/includes/builder/post/PostStack.php',0,'‚¾~¤ðFÌÛ •ôMÙÖ','‚¾~¤ðFÌÛ •ôMÙÖ','2>:FÅÉ/ÂDêè¨;­\Z>ÔÓ~É´Q§½b~ìX','',0,'?'),('ŠpÆdÌüTC>WÛ?','wp-content/plugins/worker/src/Symfony/Process/Pipes/WindowsPipes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dAœ¬:Ø	‡†ú	>','£§‘ËœwÞV½ÖiÝZÿ“x}¶h÷µ³®óÇÑ1ôÿ','',0,'?'),('•c­ÛnxÀÔº|È','wp-includes/class-walker-category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')­ñ2óGäE±âÚá;HŸ','GJ8™Öù¼¸¬¼Y<1Q{<Â5ÑC‰€Ñ[àV•ôz','',0,'?'),('•myO$c‡íß¦†S','wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-smash-balloon-youtube-feeds.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qE¶ÔÏ$M%Ôà9¶¬vï','KMž³\\:éÕ{AÊz°9)yy\'âÝï”\0ûrãX®é','',0,'?'),('­pÄ-JHÛ~ÏÓÊ','wp-content/plugins/fusion-builder/inc/admin-screens/settings.php',0,'…pxüžPx$‘fæ­…','…pxüžPx$‘fæ­…','¾þØh)à¾„¯ÞîmU”z§ÌÆžãËˆ+ÿüØüŠ','',0,'?'),('·ì”íCÉÔ)Æ´’ó','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/HttpHandler/HttpClientCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<}€í-¸ì³ÈA®Ÿ\\','™(KˆÈŒåGc4XFw•é-ÎàÚL°9”L5‰ôb\r','',0,'?'),('¸ËÆdª‰¶HÚëòU­˜','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/MapsEngine.php',0,'´“P¼n§w$P€4ï','´“P¼n§w$P€4ï','yM ä{1G¥LéÜcžˆ.™j-Lh&ÊŠîèK@','',0,'?'),('½‚àˆ«ªnŒ²Nd','wp-includes/js/hoverintent-js.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' pˆ¶.`–u76°Á?','Y!è:\nAŠþË	¿æÚ«ÒZgÏ,=œ|–òë','',0,'?'),('À~Þ^/%ž\n½Æ«b','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Service/Resource.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','í¥¾·Þ[âCÄEX3C·¥','À),Ð’æ­¹TOê­Ô‘ö\\[Ûñ \nw˜;Þ','',0,'?'),('Á]¯*Á.>`Eõ“f±','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kÓF£ Æh¢ç€1-¦','6!oŠmö¦ÝŽ^Ž.Á^@Ë¨ÑÒv7ñ	Iáœ}€Ÿ','',0,'?'),('ÆÒ	¿éZ·ÈV‹','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/Runner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+:¹&(ŸŽ½¸šFm‚Ú','Ï¶ŽgÙgv.ï£0\'X!ÚUãˆžÀ‰(x','',0,'?'),('ÇÝ¡=½½Nx¼‡KÔ`*','wp-content/plugins/wordfence/lib/wordfenceClass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»±¢Â–I‚µ4Omƒo0+ž','ââát—n´ GŠ;S î\n’ÐkË¸K”\\AQö\rÿâ','',0,'?'),('ÎO>âPwœ^ûYÀÊXì','wp-includes/blocks/post-template/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n×êÑVÞàŒ&žG¬˜TÌB','š«„Õ£J?ÒÇˆaŸ«]^Þ“Ç	˜RÓVí%e.','',0,'?'),('ØK‰mŒr.á¨DÅ§Õ\\}','wp-content/plugins/updraftplus/includes/Dropbox2/API.php',0,'š/k«ú=›¨+Ë1˜Yˆ','š/k«ú=›¨+Ë1˜Yˆ','ç­&€€; uÐ½Îæ¦ÂÄa9D(!—ÜÔm¦\0¸Gš…‡','',0,'?'),('êòd¸¾=áÃ@hs°:k}','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/AuthenticationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K#lJP¨‹e0uŸg¥Û”','UþWMš™êÛslLžÜæÕ9#Tb Wj?\\Ñu¥¿¹','',0,'?'),('íöÉRÛkÎAkµºÈzõ','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-post-slider-preview.php',0,'úOƒ0Áä§³Á…5<$í(V','úOƒ0Áä§³Á…5<$í(V','~\n-æ‘R_¼]°8(½\r~M\0¹k3…¼^s›¦®^üh','',0,'?'),('îˆrJÿ<p>§úÃÄZ–','wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘š2QÆ­Èl¯~ú¯ó!','†Âš¼t¶RS)íz®\\{Ó‘(äWdìûã9c¹K–F‘','',0,'?'),('õ&/¢db¤dÈq°2/','wp-admin/includes/class-wp-community-events.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åbñænuý_çhY&\'V[','B{Ô\r_¡Ø£ýØ´M\'ôî\n~6)Œ›Å+ÍÃá ˜','',0,'?'),('ö%w45øX‚ßæ³ž','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t¸°^I\'Ü]!¯²Ò³ñ','ð…Ç¦ÖbtË5¡‹f·úªÅøcÒ¿kdþ¼m','',0,'?'),('ý\Z2sXï;Ú×-çP','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/FunctionCallsFormulaLoader.php',0,'Ô†´á‡Ó]\r€N‡Êõúj','Ô†´á‡Ó]\r€N‡Êõúj','qéß¡ék¶­ÉàžkxŽL.=…õEÊ0UÛòx‚Áà','',0,'?'),('\0õª]Àaðv•”¾CY','wp-includes/class-wp-walker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1¿eØžw\\éã4\"R','mMï](E§˜=´÷­ô„tRû,`\".æÅ}ÏU','',0,'?'),('«?H“©ÿÄë—h¬D0	','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ï¬¨‘rzº ßdÚ','½h¥–Ã+å][e+ñ¼Žh¥Ó†½ô°FYà V','',0,'?'),('Rd¤]|N8ìé/»«}ç','wp-content/updraft/plugins-old/updraftplus/includes/Google/IO/Exception.php',0,'˜™7Ô°-Ž¼¡º•}ß6','˜™7Ô°-Ž¼¡º•}ß6','ÅšEü\'`ß¢€\rh·«%­Æo«ç¢×§Àë„êD¦1’','',0,'?'),('“¢þNVÔ±³æˆzÃZ','wp-includes/js/jquery/ui/effect-shake.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ôÌŽŸXé!µÝ-óU¹“','µ.Å«,e=~[ŠYípôxê\"¸oã?vý½#ÆÏ','',0,'?'),('z\0µÌ3hŠ—Úd›*','wp-includes/blocks/post-template/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÎIà{Éá CJ‹Dç1F','Zk€&—\0”Äá€#òÛñÊ-Bò”Çú…=ââén','',0,'?'),(')Ÿ_æö’J¯‡×™Ô','wp-includes/js/media-models.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0†CþQX}\nÅ®Q´@M÷','3Ð;ìiŠ,¾ÔzÃ¶#½5C5\nòµÂ4,’˜Xìa ','',0,'?'),('9ÚŠ4€–…nCß','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/AbstractClient.php',0,'Á\Zúô]¯<QË{ïäcõÖ','Á\Zúô]¯<QË{ïäcõÖ','f´óåô\n\0‚Ø@\0è5êUcMrò!€¥t0Å\"ƒkÉ','',0,'?'),('=”[:Šý„\r&ôFíÝE','wp-includes/blocks/video/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜÍw¡›g¯KŸ¥? ·Džñ','X™í‰c–¢¿ù ¾ï¬¢kvSnå7›W³5Ì‹a\'™','',0,'?'),('?¼ÆïÏ¶‹^7:y¸Ñ','wp-includes/blocks/paragraph/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Š¡Ÿ:ÌtàMe&©>','ÃÊŸ×Ï‰ÑÙPÏXwËä»P¥\0ÃÞ¤opƒ±‚l×ûÒ¶','',0,'?'),('@ìb$YÊÑD!˜AŽÐÇ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkCreateError.php',0,'ñó÷·|N\"‹g )RH','ñó÷·|N\"‹g )RH',' 1/*-c{Ô–&4­ŸMcý¸l¯3iµxó=þ·‰,¹å','',0,'?'),('G<7eƒtª/î’÷W¤','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[f0L”ÅŸ»Ò\r³{VWè','‹Ð\'&Ü”[m`ÄÏŠÐc2EºÇû%äW¿GWºä‰·','',0,'?'),('L}b&‰Ûµå€b','wp-includes/blocks/separator/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hàˆ›Rž—mÎyÍL:','DþkÖùL¾?@á¾»ÎØ\"¸±íî2†j62Aš','',0,'?'),('Ocá[\'É­}ÔG','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerError.php',0,'4È˜ìïÕz»Ç3 (¡','4È˜ìïÕz»Ç3 (¡','AÝ7 ;iÐ”pÊêyÿKMù—Šœe´ŸÐç)ºç\Z6-','',0,'?'),('`™&­¸é”¥~K3/d','wp-admin/css/login.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N9CÔ®Üw=A^Õ‘ïÛ','Êž<}ÿÉÁ »i¬S’zN‹f+sãÕ—çïö','',0,'?'),('f‡R9´¸°]‘V#rsÞ','wp-content/plugins/updraftplus/includes/Google/Service/Storage.php',0,'ha®é;x.ÿÎ^~É}×à','ha®é;x.ÿÎ^~É}×à','[`]Í¡º]¦úÙÇœ´ÁÛÝª7mA\n’ég¾','',0,'?'),('o\"s“,Ãî¤Å©¹<r','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/cs.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬öðû/Lv+¹²kˆ³8','Ó’÷°ÆOÛ!Í›\n•4‘ÔƒM©˜(+ŽàgKýÕÃ\'','',0,'?'),('t¿t«wÜ	¦uÈÚb','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerDeleteError.php',0,'tÔžB¸Þ“ªrÜ7€','tÔžB¸Þ“ªrÜ7€','ÜKÑÄ±\\:Þ.XSÊ EmŒnù\nž\0 Ák‚\\‰²#Z÷','',0,'?'),('‚ñ¦K°ìã$ÑÅB¬TnT','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/AndroidPublisher.php',0,'œ¬úg%F±Ÿã®„üLÀò','œ¬úg%F±Ÿã®„üLÀò','tÝsŒ´ó‘Kîs¬¥æŒ; êb}±.ú‡R[ÂíÓ','',0,'?'),('‡ØÐ8¿•Ñ½b¸v\r','wp-content/plugins/contact-form-7/includes/contact-form-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±_# pDd=¼%Šw£A','U÷‰ñèóOª\ZØnÂBY”s+µ8>8ã«','',0,'?'),('ˆ8e^ã°†ê§Ôâ|Fe‰','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/TwigResource.php',0,'Ö7¾ð…úÏ9/²W¾9œ|v','Ö7¾ð…úÏ9/²W¾9œ|v','ÄB»árda7Ó·8ÔÀª`K;Él÷9(ÉåŒËXÈ¸','',0,'?'),('¸œÒ‘-èÌôŠ\rŠ{,ï','wp-content/plugins/wordfence/lib/wfCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7 Æ¿žÄ”Äsîy‰ß','|íuIPõwh5ÚŽ.m\"*n_û¬ 9Ì˜­¼JðPÎ','',0,'?'),('“~˜âLÉÎ*Ä,Ä<:¥','wp-admin/includes/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÐYÍÁ½°ö½ÞÄ˜ µ','ÓOò ÚþnÑuO\nd7K[\"}èç7\'pÉÍÌ`ö`','',0,'?'),('­ÖB6(¥Îk•Q‚3Ðœ','wp-content/themes/Divi/includes/builder/feature/woocommerce-modules.php',0,'IÉALßüc]œÍ­çoj','IÉALßüc]œÍ­çoj','¹åìn7³\0Ñ:ÄÖÐ³ÑÃP,1¡ùq3q@R$ó~È','',0,'?'),('®SxÃß4®@oÁwïN','wp-admin/js/widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êv§[ª‚jB4L!ê×','0ÙRiºJŠÏÆ,P¦X§y		*Ri®µ‡ø!','',0,'?'),('Às¨H3óŒOa_Ù(q','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÂËSG°ÎËº““F¿„Ã','[Þ(˜®R¸ŒêäëìôŠ$¦£2oåãtûb÷ç','',0,'?'),('Å÷Ú¤& ´MµKQ×o?','wp-admin/images/freedom-2.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïî:DwÇõÀö8«¨îŽ','H±²ß_¤Y:\"8œ–³¥Ë0o‘_6\\&ÊZYY','',0,'?'),('ÈËØt­íµ O\r)Ÿ','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/EmberPrecompileFilter.php',0,'šê¹’˜c›«’U³Ž','šê¹’˜c›«’U³Ž','ùÍúyœe’\r£iS¸ŽrÑOsÃØûX$ß/áJô’Ÿ™','',0,'?'),('Éèë:m¡°[Ý¢¯:#','wp-includes/l10n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ûØ¯«Í‰Û\\C¯\\28:','°—á¢5;VcæËur§ùN,3K&\\ÇbK<+D¶²Í4\'','',0,'?'),('ÏI¢Ø\\j¶¬ÑxÌÍËg','wp-admin/images/date-button-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â‹?¾©¨a´0ý×9JQ\Z–','Ÿ­Ó*¬Q­ºèÚ_(G:*€ÊýÎ·dúëãîêà.','',0,'?'),('Ò“éÓvHBaz–XØÒü','wp-content/plugins/instagram-feed/inc/admin/class-sbi-tracking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=ÄNÚIWèð//…g¢´}','k2îøKÁq¬ö†tÆÈB‰®ì=³ºÄñ°¸Í÷1^','',0,'?'),('Þ]PªJQÆ€6oÖ¢÷•;','wp-includes/Requests/Exception/HTTP/428.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?µ´„µ¿<Ú^GØÂ\"0c!','CêO¸W%“®¤tßÞY×|ÂÕ&‹0VÂŒÐ\\Ì','',0,'?'),('à¡Ó;†¾iæ0·ÆJ~Û','wp-includes/blocks/columns/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')Äâí™,—bÛP‡L(|','š£òšce]„sð¹æÂìS¿a·\\ØY˜u:ïô','',0,'?'),('éáæj7r[¼,”ÌüZÖè','wp-admin/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”þšùM™HwX’f3¤ÑÒž','€Ä·TÇ,#R-Dìv#­­8t˜[\ZÏá?ëv_º','',0,'?'),('övcÁ&%q>ÎÀØæh','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp521.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×ä²ÛFµÜ×Îˆ@2',']Èžügi¥\0b=­úKb¸@ ÞxinØ>	³Å²«µ','',0,'?'),('ûû¥ŸïRå“,4·6{´','wp-content/updraft/themes-old/twentytwenty/inc/template-tags.php',0,'B\'ßó¢ÂÅ	âàôÂN\r·','B\'ßó¢ÂÅ	âàôÂN\r·',':¼eù\\+l¼…¶ò*½\rVü°âã]©¢HO\Zâˆìˆ','',0,'?'),('ü3Fj‡‹$óÙl‚»:]','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/UploadId.php',0,'	%¹’Ø„‘†â»!l™a','	%¹’Ø„‘†â»!l™a','½”8E¿äÛ”†ÏN=¿l(€ž¹#D<$Ë','',0,'?'),('þ¸IÅæ‰™½¦m|h¨','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/MemoizingInflector.php',0,'™å¾	z).ØN<åQWTì','™å¾	z).ØN<åQWTì','\\_ Õ¹bwÿ#|.#òäEêÁÅÜ³³¿¯,;7Y','',0,'?'),('4›ŽBÖ\07qoBÇo6í','wp-includes/blocks/rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü~/“¶¾ž4àévÛ6J','Ï—9ÅÃ}<ý„‘r‡¸¿ãù*Ÿ²•ÙÔ+TsZê±IJ','',0,'?'),('¯v¡…øýÔCH³IÎ','wp-content/updraft/themes-old/twentyseventeen/template-parts/post/content-excerpt.php',0,'9É¢ã²ã¡î¾<@ÏYÚ','9É¢ã²ã¡î¾<@ÏYÚ',' Ê––iªÓuÆ\06Ï03+$ÁmX_Î´8‰¨ôW	O~','',0,'?'),('\Z“êlm·ð‹”@øø','wp-includes/customize/class-wp-customize-date-time-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(†ôšchÔLˆ©Fü3b','Ö!V€§§#|®¨:›{Ç.a½Öç›Ù(º[y¨O%','',0,'?'),('Ä-²°\'g‹«P÷\\¬','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9žVÆ#Ò¹ëÛ4€','Gpšf¸øHvŽ†žŸ\Zæóx‹8ƒþª£1C°[Î4A','',0,'?'),('$Å*mæ`ªÚÉœmd=Î','wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/directadmin/httpsocket.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æg$dqòƒ=ÙÕøÒÇû8ò','rYrþ’ß€õRžb~:WE£ßŒ1þV¸PF¿‚Á§','',0,'?'),('/è¿ËÙ¾\n…³Á„Îœ','wp-content/updraft/themes-old/twentyseventeen/inc/customizer.php',0,'€ã§Ò|Ù°²P:‘','€ã§Ò|Ù°²P:‘','¿uðpÇOÌŠJ%¶õÇ™9]AÔøÿ_2hú2yQ¬;','',0,'?'),('@]²ñquš‘€r|7.5z','wp-content/plugins/updraftplus/vendor/composer/include_paths.php',0,'BUãE×&D›L¦ÏQ ú6!','BUãE×&D›L¦ÏQ ú6!','3åzl\Z#@•øå×àUé žÚïZl¡l¸Èªƒ›ô','',0,'?'),('CR!=¨‘‰F†÷zJ*j%','wp-content/themes/Divi/includes/builder/conditions.php',0,'CGfò‘?|h‘¶Î¿nõbF','CGfò‘?|h‘¶Î¿nõbF','Ÿ5†æAÆŸ*°IÆ+WÊ3U›Êˆ†l„‰ú¨Dˆ','',0,'?'),('D©8hFÞ›BViRî¨','wp-admin/css/colors/blue/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g£ÑÄzaŽ×}O)…pa’','ÆàYRU!Ö<±sx=ið‡Å¿\Z–	ÂXCIûêævY','',0,'?'),('L,\Z\"ÿ\0CûÊ¡8y©','wp-includes/js/dist/primitives.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i¸…ßˆpA´Nm™ØSTR','óÉ`i¹>´º^<†Æ7}\Z÷ææ!£™`!ts­ôœ','',0,'?'),('R¢@kn[ÿe€­0','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔÅ×jãÞúR]ª·±e]U','sA!JÚ’`ê¬	PB¤àX,~°Ô©×lÇøÓÑãÊz','',0,'?'),('S§@RŠ§5î? œÇ€¶','wp-content/plugins/worker/src/MWP/Worker/ActionResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','À0AØã±ù×®•üC}','dà°ØˆiåÐ¦”Rð³ïª¾llžø·ÿ	÷Ãrœ:','',0,'?'),('U€\ZÖ%gh—¼“vIÛa_','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/pl.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#ëTù”6&:ýT›Êð*Ð',' h…B9¼F(³Ðô¥áF;Ö£UØ¨‡éSþAÁ|ç','',0,'?'),('Wò	ŸBáX«±æ£ï¶','wp-content/updraft/plugins-old/updraftplus/includes/updraftplus-clone.php',0,'Î²Ø°’<tEÜåSÚrÁ9','Î²Ø°’<tEÜåSÚrÁ9','Áí@XÃºÓ]õ\\êÐK!¡?4n˜û±1\\1ÐÛ÷Š','',0,'?'),('j×»ý‚óq.»*;§á2','wp-admin/css/colors/sunrise/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z/-6¯ö£r9êš/ŠZF','#ý>óþÁÙw{ÆÚH CÐì‚À™c/XíÒ—¹õïª.','',0,'?'),('qpqËþÒ«A£ÿ‘ÑÏD','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DocumentError.php',0,'±…`ºìO‘vÜà°','±…`ºìO‘vÜà°','ÑÐI|zìl*\ZUMëo-³L„²}Ë,`OôÜ·Oí‡Z','',0,'?'),('w‘esÅÏi<µOØJ%Á','wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HÈ—k{#Šu¿Ö$cPo3','¹Ÿž—Î\'žjƒ¨L(‚¬jž–ÇQÊL]6l¹ÉÏÕ','',0,'?'),('€¥1°»z§:Ceí_ý€','wp-content/plugins/worker/src/MWP/WordPress/Query/Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4Vg~U€‰ßž¥øp(%','P¾¤ë£Ãu]èNi\ri³Äî\\ñí³š‹J N','',0,'?'),(')S¹Â\r¢x‰åùÍk6”','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Utilities.php',0,'70¹õÞäÁ›+LÇ}˜¤','70¹õÞäÁ›+LÇ}˜¤','7´“Š+\0\"N\Zµù4\"Vˆ¶–4¬ãOõŒ\"F','',0,'?'),('Šû“aÝlŸ^nb]¨6','wp-content/themes/Divi/core/admin/js/colorpicker.js',0,'^wºqë,6u%„|`†º','^wºqë,6u%„|`†º','ÀaéŽ s=Bö %èçG;µì(ió…ùÒÄ­T','',0,'?'),('Š•>ð`Pöµê@ŒÔß¹','wp-includes/theme-i18n.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±€†„;¸`ÈqÁpš\\\'h','–Âf8ÁŸÑÉ\'u›Ú+ùW+lì˜óæÄ~KÔ¸$.','',0,'?'),('Ž¸»C¿l6¿âàVmVuµ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP224t1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£¤DÙ:/Ä¬ôLYAä','\rz£ýåÙ%mkÂÿ”S1°\"3‡Àˆžñ\rhï','',0,'?'),('‘Ô¸€¢%\ZDéŽyó³Z','wp-content/plugins/wordfence/lib/GeoLite2-Country.mmdb',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯	…ÈÏEþò³WÕÿµÐ','Çt­‚Pº?Cutx`w`¾MOÙÙyQ¶Ë.J¤G¢°','',0,'?'),('š‰,éP_´“¢ŽLc¥]','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Signature/SSH2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"þšˆÓ/)ü–ekZ7ŠO','â•ÀO…æHõqÀƒäéî^’J3¹â&±5›zDF','',0,'?'),('œðfÊ¦Ñõ[(‹”Ü','wp-content/plugins/worker/src/MWP/EventListener/ActionResponse/ChainState.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NÂÜóN°J’TýÁ{™','IÕWÕÃxKéB‘Ÿú@lp¤HÏ/™àEE•	Û1É°R','',0,'?'),('Ÿ0ixâPSËžŽ;K','wp-content/updraft/plugins-old/akismet/_inc/form.js',0,'\'×4Îl*úÏ&‚çi','\'×4Îl*úÏ&‚çi','»MBÞ1ÐQwoX4bx±c)@DŽË¥°Îk','',0,'?'),('¤Zò÷ód*–èY¡öÚ˜¡','wp-content/plugins/wordfence/views/options/block-all-options-controls.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5bcjcÃTc–sq“Ì£]','W:.@ƒH9§K±B5\\â¼öa¢t	ì–—ÝÊªgÒ/','',0,'?'),('­YªOÙ%ß~î§$¿»','wp-content/themes/Divi/includes/builder/scripts/stores/sticky.js',0,'„‚£8î$lŸ„{\\ï1ˆ½þ','„‚£8î$lŸ„{\\ï1ˆ½þ','Ïbª»Û¯Ãç^E—Ó†ËQºä®tû£S­.êÁï','',0,'?'),('®½(e`.¹HôÏF·','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/select2.full.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s4[x_ÿ°ähº-“','QÐà‹¾\nVÙpÃ)ÜŽtñN\\K1½£8ñL´\r','',0,'?'),('±ÓŽA}ÒŽWZ5=*tž','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/RequestFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êb;v\'•gÂÑ~”ž®¯k','mè!ÄM€–J\"v>,ôäí0î\0ÕœÉ«² &jÙà','',0,'?'),('ÒrˆWê®3¨™ãá¥¾V','wp-admin/css/color-picker-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê~¸p¿ESØ°ÖcV','Â<’=\0º[Z\n2|ë‹¢¶’\0?6ú¯“‰¢º»‹–£','',0,'?'),('ÓÏ/óµ•—ý[NR´Is2','wp-content/plugins/fusion-builder/inc/lib/inc/redux/assets/fusion-redux.js',0,'ÎZÓ9	j%TzàÖê4­','ÎZÓ9	j%TzàÖê4­','Ûï×¨€Ù´é÷†ræNs¢ÔëJÅÙ†ù-ÏK','',0,'?'),('Õ\nz€(–Ú0È}€‰','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticFilterFunction.php',0,'×7â}¨©X®¶zÿ¾A•ø','×7â}¨©X®¶zÿ¾A•ø','$&jáz¿pF#‰á+æ…e­cÎ¢¸‘Á{†tDYÛ²','',0,'?'),('ÜCßè$pœ–Æ1uÿ9À','wp-content/themes/Divi/includes/builder/frontend-builder/i18n/generic.php',0,'>“ì,ÍpN>×CçÈÃ½','>“ì,ÍpN>×CçÈÃ½','ø`ø%4ê\'m”ªQñÿ!ø“D³û<W2ôÎöøA·','',0,'?'),('ÜMú/²ˆËÿÜ¸þ­','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Resources.php',0,'Þ*È§ˆoÓ\'é[ÅŒž\'üC','Þ*È§ˆoÓ\'é[ÅŒž\'üC','‚®¾ŠFt+¬Ñ”K:¸œp”Í‚”É\'QÉ×òd\Z³','',0,'?'),('öBÀò§6øÛ\"PfÛ“B','wp-content/themes/Divi/ai-app/ai-app.php',0,'Dß¶.NÎ™R`{lXÂ','Dß¶.NÎ™R`{lXÂ','+¹Òø½Å³wÅ>²ZkŸjŽZz_ÎS¨$27wÂk=','',0,'?'),('ÿ|^wÏa²\'P\Z14ab','wp-content/themes/Divi/includes/builder/plugin-compat/events-manager.php',0,'ÜÍHŒ^î\nÙe1½S»Aš','ÜÍHŒ^î\nÙe1½S»Aš','P“sÖ‘c8­)R{þ>¥R¥-¶âÌæO¯Â‰H]üË','',0,'?'),('\0ê(„2/ê½©6bÀö','wp-content/updraft/themes-old/twentyseventeen/inc/template-tags.php',0,'*¸YÜ6_ªîF|ßŠ²›','*¸YÜ6_ªîF|ßŠ²›','ÛÖ»<Öêg*—ü»g®Åxš¤€#:ºûhÓ0ß8^ë','',0,'?'),('\nã°a¦»Š$N<ÏmEd','wp-content/plugins/wordfence/css/wf-onboarding.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^Š3##\"¾˜´AèŠ~†','¿êøñêêÞr”p!;VLošùÀœ«ÿCìjß[]2º','',0,'?'),('YIEùâTt2LÕè]','wp-content/plugins/contact-form-7/modules/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çM=`­ÑoÔëV5ºãJàé','QóÑºÎ\\~ãž]–È>«‚È£§½žsT	? @““','',0,'?'),(',Š®ÅSóma¯Ïê+Ö','wp-content/plugins/updraftplus/js/tour.min.js',0,'üÍ6ÃFøCÍ#êQíìŸ','üÍ6ÃFøCÍ#êQíìŸ','‹Jeö•r÷j\nyû|83©Ââ¤˜Ò5‘UÞ¢','',0,'?'),('1ÝFTíZÛŒ€\'D,','wp-content/et-cache/en_US/helpers-page-16994221430334.js',0,'=Rb‚¯HððÜ‘‰X¿S','=Rb‚¯HððÜ‘‰X¿S','l˜&26âµÍÂÎÿz`¢Ð0g®¨:Ëxwì5¿%3I‘','',0,'?'),('6CòåøŸº†ôÈqH','wp-content/updraft/plugins-old/updraftplus/includes/class-job-scheduler.php',0,'IÙ¦(Ñå†ª§2ZO3','IÙ¦(Ñå†ª§2ZO3','GÇ‹žô°M*Ñ*¡ðg©5}“Z)Úâ‘¬ÎÜº','',0,'?'),('7–gùÌ€ÙÙbk‘Z','wp-content/updraft/themes-old/twentytwenty/template-parts/content-cover.php',0,'IÈS†°$¤Û}§ÁožŽ','IÈS†°$¤Û}§ÁožŽ','¤þLÏ°68Œä(‰±&Êðr—R½\réIÏÂKÆq<','',0,'?'),(':²Xæ2ìMÓþÖ~ûÈ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢¡÷2Ì4vLhNÕ!Æó2|','¯ÂË3iA(Ö­æpíç–GDŽÿÚ”îð´÷£ïÁ','',0,'?'),(';±YÒÎŸT“thãK','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•]_åŒ#Dö´\0óƒµâ','\Z ŸøÛ’ö%§4~NÙ~Gh!bØ­:w‚˜ÉŒ¿™\'','',0,'?'),('Cžy²Òõ8Ý\'a¼Êý','wp-content/plugins/wordfence/crypto/vendor/composer/InstalledVersions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÈøÍ0mj¾ÓþÃúÔž×W','Í›=¡àÛIŠhK¸g\0¨“%T.‡é]³\r†Í~','',0,'?'),('LÖÄüý8àï€õ\\¨Ý¼+','wp-admin/images/imgedit-icons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ãî\'ƒ£6U¦½ýÃÌát','“?àØŽ).l ôÐÏ%¸<²(_Ú 6ÿ`^c7','',0,'?'),('Nz|ÔØ=­Å;3Ì£½î','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-sharingbox-preview.php',0,'MÈ$	*Á·YÂ¼Ú¹OÌ','MÈ$	*Á·YÂ¼Ú¹OÌ','d´ÙöÝj!‹þùÅÚ)hÊCª$õ¬aOÖéHc','',0,'?'),('VÑ°UÃ9—+¾€5ep','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/IamClient.php',0,'ÚAÕ½L	´9FòÛòËµâ','ÚAÕ½L	´9FòÛòËµâ','ÄñáS|R…h^Ó›|q›²ZKC¤>6s%ºB^m;»','',0,'?'),('_Î)q!|€‡cHÝÊƒª','wp-content/plugins/updraftplus/central/classes/class-automatic-upgrader-skin.php',0,'’$©áà÷#¿Ü7ý','’$©áà÷#¿Ü7ý','e«]ÎÂQðÎ†,Lÿ œH¸SßURŠ|¨ÝÍ,×Ä9','',0,'?'),('j­@½/\"/R)ï\n’åÑ','wp-content/updraft/themes-old/twentysixteen/inc/template-tags.php',0,'–•’_ßb†ß¦¶ë´=8Îô','–•’_ßb†ß¦¶ë´=8Îô','–ñ²~È?Là_ŒñÃªöÔ\rÏ‹”Küoö?{Ï','',0,'?'),('mÔÃ±…~–öòR¥?','wp-content/plugins/wordfence/views/tools/options-group-2fa.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o¤êÇ\n2‘ƒè0·êôø\0','aGÏÖ´\nOkø&1•“ä`3ƒ*¿‰Ò¿fÓ™é_Wï','',0,'?'),('pÛžÔ2N<:Z¥7»r‚','wp-includes/js/tw-sack.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹‰¥½„öëËÁ9>Àæé‘','{¢n]Ö\0Öˆ˜Ýn»\rÏµôÉ<§wË·X)ƒàÚ:','',0,'?'),('rdþ|Ü¬\"œt`ew×','wp-content/themes/Divi/includes/builder/module/PostsNavigation.php',0,'Iöd	(>¹y—Øb¹ÎB','Iöd	(>¹y—Øb¹ÎB','^š3ˆ`²Þt:Ã\'¥Q\\ÜëÎD¯\"¾)µæOá‘—b','',0,'?'),('uŒ)8FG9¡C°(¶š','wp-includes/js/wp-ajax-response.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åÁ5’V-[ž„³+ër\0€','àlzS}•@™)ŠîöŸöŽºoø êÈV[¤Þ¸ØÈc”','',0,'?'),('wO§…Ÿœ+À–êÒoz','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/AmbiguousGrantByEmailAddressException.php',0,'·\\1~À<f½­ÓÍo/î','·\\1~À<f½­ÓÍo/î','ðf$2Dr“°­±KLWšF2çð	 Ñ‹÷‘“)','',0,'?'),('yÚIËÄµÍï@\\Æõ»žª','wp-content/plugins/wp-mail-smtp/assets/images/reports/email/icon-click.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓÙeD*\r¹ÎöÙdÊ','=§Ÿ®nNl·M¹JâPr@ž2û’ÁûZº','',0,'?'),('{½Ô3ê_ÄivŸ¶óž«','wp-content/plugins/fusion-builder/inc/templates/options/radio_button_set.php',0,'2ßä¿šõpQd®¡+{l¦','2ßä¿šõpQd®¡+{l¦','hùÃì<2÷j8®âçö±¯jKªÂîë','',0,'?'),('æ¤-qq£)Áà','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacBlockedContactsContacts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊA\Zú{ÕO®ò,p‰ÆÄw','\0!Iä†:ýeëKIE~°nŒã¤ŽŽ*G9;¥+”,Ï½äz','',0,'?'),('‘Ç>Í:¡Žá_)¢$Šf','wp-content/updraft/plugins-old/updraftplus/includes/class-backup-history.php',0,'p)ÐqyHuSfèÓxfë','p)ÐqyHuSfèÓxfë',':@¿ª¶ìGzch=vp9’ÃHÔvW‰}K6´®Ä·’','',0,'?'),('—ò(†9De˜]7XCoòe','wp-content/themes/Divi/includes/builder/plugin-compat/pilotpress.php',0,'Uêÿ¹ñ;åï úpÔWKU’','Uêÿ¹ñ;åï úpÔWKU’','cW°	åtÑô1aÊñbÎË0åAÏ7bí=)åÆ{îó','',0,'?'),('¡ÃcÔOš@«/ûlMð','wp-includes/blocks/separator/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nS°°¾Cg%á\nn±Á','„Šá‰½ò^wx%8Ðaô‘!\'ÁbÉm:¬n#\rîÚ','',0,'?'),('¤Ñ¨‚>Ððp¸µ±ƒØÃ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/ResourceWaiterInterface.php',0,'Ú‚|ìAë0ãg®~übå','Ú‚|ìAë0ãg®~übå','¤fïé=š{m=ðÙ\"Ë’FHËX·…xÇ†eóöbiâÿ','',0,'?'),('©¬³ô‘9Ä~\0{@ÙÛò','wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â®«…óuMº—¤¹×','¤JEz•¤»ˆÙ™6Àžÿ­¼Õ)P§û)÷Ã\0ŽÃ','',0,'?'),('¯Š1‚Û*,\"Rù3Xr','wp-content/plugins/wordfence/css/iptraf.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ðeºbf.„Â\nÝV[ÝxPh','JŠ‹-@ ]á-Ðò‡	ÔcqÛúåWQ$8«','',0,'?'),('¸·áClo¦¶±–¯éÒ','wp-admin/nav-menus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â^SÓ ¾šñÒ©¬†ê','‚Nnß\n\\p×wÎüŸŠL|ûØÚÒ‰\0×-æ\\˜Ú;','',0,'?'),('É‰î6+´g¶=P\n§1°','wp-content/plugins/worker/src/Symfony/EventDispatcher/Event.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?\Z™†í½‚Jz÷ì.ý','ò2×²e“ëoq$}®R>\">ÎD¹Ü£ÝX6Ï$\Z-','',0,'?'),('ÙçÊ[s&iµu)ùn','wp-includes/blocks/video/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äººî¢†øejqpu˜Kq','æ3îÓ6»=È³£ß[‡¶E3¨ŽÈÜM˜ê,®-','',0,'?'),('â&þ	YÙtz(¡\Zøæ€','wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j.\\Ä0*€„Ö	[²¼ÎÌ','fÜ€ìÿ8…“\'!‰RFë•®ÒLÂæÞË™^ÔwâÙ','',0,'?'),('ëqÅ¡’bû¿Îb53¢Â','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMulti.php',0,'%×áxqZ½lZî<?s','%×áxqZ½lZî<?s','éðð	™\n©›\0¼v«uÚ—w¶å˜>_i‹RÊÇav','',0,'?'),('ù)]Å-OýN{›*©B§','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/post/taxonomy/TBItemType.php',0,'Þ·‘ZbN‘º4¿7î','Þ·‘ZbN‘º4¿7î','©õ#mx\'v> ã­\0(7uÖgØÑVµ÷“`¹¨','',0,'?'),('þRþÒ\ZG%ç\"UþæS+','wp-content/plugins/worker/src/Monolog/Processor/IntrospectionProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚\Z¬‚ÔN8\r}ÇÖôà ŠÏ','h	]òøå¿¾ÝÄG§ÕÑz°>Â9œNQ¶TøÈÐ´	','',0,'?'),('þ¥I<½ÖÍUÂCMdZ¤','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m\nAôI¡g™ì+Þñ.','5€NåœpÙo\'ÃGYNsCÖIS¯¾>Ç‡¦','',0,'?'),('ÿ´-¹†i>bsŒ›1é','wp-includes/js/jquery/ui/resizable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c0•N^Ûlº†ñïÂL¼ï','â~Ïæi’{QœžŠÔ¯´µÖ•ÓëåµYdFØw\r,ÔÏ¹','',0,'?'),('_ÈØïq°fÑ5ÔŒ®4','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/CachedFormulaLoader.php',0,'\nYn}ÓÑà7‘~ \0\\','\nYn}ÓÑà7‘~ \0\\','tä£›Åéÿ&Ó`Zzà>²<|X½ÎÐ›™zgP','',0,'?'),('äÉ*A1ò^)þÍ¡','wp-content/plugins/updraftplus/options.php',0,'š.‘èÒcˆx[*e%','š.‘èÒcˆx[*e%','d(½–ü›…¬WÇöVõð†¥|!TÃŽ¹‡mŸh±$','',0,'?'),('ˆ‡ç:•²ãHÚòê?f\r','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-patcher-admin-menu-notices.js',0,'QÛºL`™Î`ÑÀPšKW','QÛºL`™Î`ÑÀPšKW','À,“L0ÁL^HÖ¡‹d“TÝq‡ƒ(k.£?ýgµv‡','',0,'?'),('Æo›®Ìâ1%™ü','wp-content/plugins/really-simple-ssl/assets/css/main-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ðëª¢xüé^î(Ö¾ôW','‹îñC–ZYfhE/Wç×/ëFÙCÏ( ßÈqïû…','',0,'?'),(' ³Ì®ä.øgú†ówå','wp-content/plugins/contact-form-7/includes/validation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÈÄ>”—„ïãÙà„ø½Îé','cŒÍ½9´8ân4ÞÌQdµÌDµTKÈóTS†)','',0,'?'),('!k!ä|™¶‘½ñ&´U','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildAccountCreationStatus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yyéEÁk>Ôó8zRå¨|','»¯–uA­¾c‚i¤}á† Ý[U…ÞKÈŸãêm„ L','',0,'?'),('$ìÞ\'èXRÏÑ¥Ê¶Û ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/HttpBackoffStrategy.php',0,'DC¯ö™iun5€±50g','DC¯ö™iun5€±50g','d.³úÒ¹Ü4þø?ë-Í¸e8ˆôÍQþÓ¤áŒ¦Ø\"','',0,'?'),('1_+K >Þï´÷Àç”-–','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Exception/FilterException.php',0,'®²~“ˆƒæ&óƒ{‡ý§øQ','®²~“ˆƒæ&óƒ{‡ý§øQ',' ˆ/†“ÄxÐÊ%RŸl‚‘ßŒ:œçH¡¾Ÿ4%ž','',0,'?'),('9Qð¾š@;>¹ÑŒìr','wp-content/themes/Divi/includes/builder/module/BarCounters.php',0,'ŠO\'7d¶*ñ£ùˆì­o','ŠO\'7d¶*ñ£ùˆì­o','—ú„YÆ\'ör®Ù;VŸì™€Âí–?‘û¥±bØÍ','',0,'?'),(':K£0| ¶O“¸ß‘1Ë','wp-content/plugins/instagram-feed/img/about/plugin-mi.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n‚”%u=Ë¹‚1ë}<','‡ëœ–)¯gš0p‘iv^Ðh÷‘ ä7õýšÇ','',0,'?'),('B9Ä33÷¾ü|@°','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Models/Logging.php',0,'	D¬‡ŠîÖ&Qr2š!','	D¬‡ŠîÖ&Qr2š!','dÒÓ\\ªØœ—ÇªÄLÚìsH\Z;•T}çH?HS','',0,'?'),('Oh32eò)Ú²{°úL4','wp-content/plugins/wp-mail-smtp/src/Providers/Outlook/Options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',¦@å‘rÏYý³õâð=ð½','›” „e³@Z‘+0¶hi±8ò>dÄ±&,F:ÅF¹Û','',0,'?'),('QëR™‡ \0®ð\'™ÚQ£','wp-content/plugins/worker/src/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('cŠÖ ÈµŽE9jz[‹','wp-includes/blocks/code/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R§ƒµ“›Ì•{C°ócÚÅ','”¢„á5ƒ$•%\n/ï¦ùÇãtÙæ\'W&üè’Ì','',0,'?'),('wÑ7þv+q1’\Z³ŠÑ','wp-includes/blocks/list/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð:{Á›LF7ÐB{\rt','‡ÍyÕÖÏ…HéîÞPMûƒ7€ƒÉæÎ1£ôFÝm!','',0,'?'),('y¿¾M£@¸WÔ\r­›¢','wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-seedprod.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=$úêÊBöNëîT„‚\"','¦*r3œðaç)0ì-hÔ!ÜìÿšÁÓ1$','',0,'?'),('€ãç>\0\ZêD´†m\'Çþ','wp-content/themes/Divi/includes/builder/module/helpers/Alignment.php',0,'zh]\naûÇåaÁ¶\\”Î/m','zh]\naûÇåaÁ¶\\”Î/m','qþ¥5™…`|2$âH¡7.¿Àh^€”«þq2âä©Î','',0,'?'),('ƒ¶4rèˆ%ÞãÓÉj¸ž—','wp-includes/SimplePie/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iŽ~HwbÖxÒÔxsÙ·:','0¬ÖÍsDêÃÓ;›ÐPâ=\'Ÿ“2ä	™ø\0Df²ý','',0,'?'),('ˆÞKS+¡e×ŽA†@“Š','wp-admin/css/colors/light/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',') ÐYÖHn	T± 5^Ÿ','ÞÎY³yÅ7BÛ©×èÊ/¦cäà²»ê”ý$r™þ&šÙ×Z','',0,'?'),('ŠÚZ9]Æ»»WN\\K…æ','wp-content/plugins/wp-mail-smtp/assets/vue/js/chunk-vendors.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ=¿nÓ!`u ‰‘©o®á','’Í¦Žõû*yjJÅýÂf¿¾Ô;ÆµYŽ…£>·\n·Y','',0,'?'),('›» ÆíFe±	57[é','wp-content/plugins/wordfence/lib/email_newIssues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èq­”3å²›¸uÜ`·At','m)ThÜ)\"=>Äü#a¯ÖÒZ;V<\0`×h	”5°w','',0,'?'),('¢ýñçUNEAÈgït','wp-includes/js/customize-selective-refresh.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾uPå²‰ë0x\Zü‘¶âã','ŸŸqË–jZC~›ˆÿ<sÄ§+RI!¯HÚó','',0,'?'),('¬a8jdßG$£#4LÈ/','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/cs.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']lÚï¹@ŒîÌ)NËK','Ìê×¼¢pôó’¤`J¢ö‘ù¾ZJ“€„lqü¢ì','',0,'?'),('­*v–˜ådÍ~¾ñ˜? ','wp-content/updraft/plugins-old/akismet/class.akismet-widget.php',0,'1O³2e1Ž®û¦rJàj','1O³2e1Ž®û¦rJàj','#TñŒc™ÁxðEµÇÂƒyîˆÅ©œâHœà÷î>Ìã','',0,'?'),('µ\\vDÇEÄ|,›xÍ±','wp-content/plugins/contact-form-7/modules/constant-contact/contact-form-properties.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yÀ\\KQñ·±-…(ì„œ','»/Ã¤f”ÍÈˆnküÛ—”-?‚A$\Z&Š‘5z -Á','',0,'?'),('Àòv—ÚöÇÁvº¡JÎ3','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFileVisitor.php',0,'—%ôk7Û»­ë+ÿ¤â','—%ôk7Û»­ë+ÿ¤â','íÌhË¨d¢0¯È*…U|›²\Zß7!sJËÌ‹….','',0,'?'),('Ã	ž à=$žšuZ+ù»','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/actions/ActionScheduler_CanceledAction.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S²SŠ !Fä|rHj.‹L','é6Œh«}?!ãEá)rZ\'ÿ~ PûRZ†$Ã-,','',0,'?'),('ÊY~ÿ|ˆ(?ÿ/aõ’¢','wp-content/plugins/wp-mail-smtp/assets/vue/img/wp-smtp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ùäue-ã¼’¹…û.ËB','_h}XÁsTæÝÛ\"U^C,ºªÂe£)óóO|Æó‚ä™ ','',0,'?'),('Êéµ\0–€*Çßó¥®>d','wp-content/updraft/plugins-old/updraftplus/methods/addon-not-yet-present.php',0,'0ž;ï£Øƒàxbº°M‡£','0ž;ï£Øƒàxbº°M‡£','ÊìÜÅQ6Ko4ö:7àÜ\n#ú5Ú‹÷¬¶þ<íÀ\r','',0,'?'),('ÌAÂoÚ!ÌVáêÅ³`v','wp-content/wflogs/ips.php',0,'lC¤dbï.§Ë´ëƒv','lC¤dbï.§Ë´ëƒv','Z][W‹Pš}Ã,ûþ¿–žƒ7*öqäá\nãæÆ‘¡á','',0,'?'),('ÒË_9²w[o±µÖÑ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnknownParameterError.php',0,'°7Ü`\"pˆqõ!€Y°ã\\','°7Ü`\"pˆqõ!€Y°ã\\','ð?³Ò¨ÜX%©oAöÕâÓ–Ïr%ŸtO.9lÞ¼','',0,'?'),('àÁ¬Hj.}\rò‡\\(bµ\Z','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']ÖmÇwè/æ\\Æy5Ú','»Ét‰d7–Hñ†}=·ù.t“âCw$–`cºÀ\'ü','',0,'?'),('ò[ºEx$,Ðíì¹','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-popover.js',0,'\'CYY¥nlå\'Ñ7‰ÉK','\'CYY¥nlå\'Ñ7‰ÉK','4ÝbàUÊe®ÒÑGUD6ÂPØ\"^*Á~`1ë•ž*','',0,'?'),('ôŸÀÜÁÑŽõ\0áAwkC','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/he.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z(\\Ní‹¬ÅÕ	3@n','ÂtAxÙ ©Ær¢h´‹xô!	g&NF‹l 5ÖëÈ¢','',0,'?'),('öÇv	Xb];9!Ôÿ=Ú‚','wp-content/plugins/worker/src/Monolog/Processor/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('ÿô\ZV×¬\\¬ÍËÿ¨|g–','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime192v1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çm `×ºûú)¦öbòµ','Yñ]/jc¸Ë{YÐeƒjê`CZ½”wgZ`bïKÑ','',0,'?'),('dÛ.ÝCC¾£¥Æÿkf','wp-content/themes/Divi/core/admin/fonts/builder.svg',0,'	JQo„ïÅ¿Í?Š¯&\0™','	JQo„ïÅ¿Í?Š¯&\0™','ABdMúø8¿Bí~À:y*µ~ÙÎgn|Oã¤=iÌ','',0,'?'),('­t’YSQ/[Š®RÍC','wp-includes/blocks/gallery/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þy_<n¾dcýFª‡‰','ä™8yÕ4€§Ö>\"Þ3bem3BÙ£	òÃˆŽ¨L} ','',0,'?'),('^´EO÷CØBrš','wp-content/wflogs-old/ips.php',0,'lC¤dbï.§Ë´ëƒv','lC¤dbï.§Ë´ëƒv','Z][W‹Pš}Ã,ûþ¿–žƒ7*öqäá\nãæÆ‘¡á','',0,'?'),(' o¬Æ•ŸÌt_¯º\0.Í','wp-content/plugins/wordfence/views/options/option-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žþž+’‹\'|ìª','ÓCÑZ› êhauðúÝ£»KèCif!…½—¡Ž\'~F­p','',0,'?'),('$üŒ¥sôx¤“e|Á','wp-content/plugins/duplicate-post/admin-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rÌÿòŠiïÌ{$%É›W9','FB“5Ö«7D\ré toCmØ{4ËÓ‡P\';Ëþ|Ÿš','',0,'?'),('%~WN82½žQ­O¿›þ','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Domain.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n4¤Fš¿0JCÆ n²¾k','»Cb,¨³\"×\">j»ä¦ò‰ÅŠÎØAlDœ','',0,'?'),(')#©0]F“‰çÛò—ô','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkUrlError.php',0,'käËÒÃ±’$Ëb\0ýR','käËÒÃ±’$Ëb\0ýR','\\\nçˆÅd(Çíp¼b#Š\'&–½ÿ4‡¸È|£¼>C','',0,'?'),('3‚°äý¿a•Yu‰ñ','wp-content/plugins/wp-mail-smtp/assets/images/about/icon-full.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ô0óè—CVúõ\0ö˜_','•f[eC<ZD-M#\"¹Ì;°êt$‹|¥f>™šCJ','',0,'?'),('7Q¹Û<Ñ2\nTPýQ','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/Panel.php',0,'8T¬	EÛ“Í¸\'ªý-Õ','8T¬	EÛ“Í¸\'ªý-Õ','ÎŸÉv¦fNF­k[ýÀo+oµ‹ÎT±\r¡Óæ+ßà','',0,'?'),('9ŒVòÉô¿\"Ó+øàôx','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/StylusFilter.php',0,'žÅVR\"iRç:ˆï|/','žÅVR\"iRç:ˆï|/','ÇU¿Lc5>À\\ÜâmdÝ°Yû(\nÀÓâÊá6}\"','',0,'?'),('DpÐR‚ŒÏÈvå¥@','wp-content/plugins/wp-mail-smtp/src/Providers/OptionsAbstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊP3Í‹ü,Ó#ØÿcÜ','«c}ˆ$Àðÿî¦Ìk4|rý|;5#rLPÆ|­%v','',0,'?'),('O½6D|\\>yÏ¬tp•<÷','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedContactDetailsStatisticsUnsubscriptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|îqEØˆDå+Þa	½Û²©','ÇÓ\"f¬#‘\'ÔJþ.°lÐ#‚lHmÚ“[•k','',0,'?'),('Rš‰«Š¢*þÅó\"‡™','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/field_ace_editor.php',0,'zfåiÅ®½±{¡ö¬è','zfåiÅ®½±{¡ö¬è','Ã1s´³kMO›§5Î¸¿(½%ýÚ/Š´°4÷ÔÈ©','',0,'?'),('\\Ÿ¤Ð\ZéŽe	Í)ŸÕUp','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','È‘Hä\Zb’>VïDö¢R2','rÑ›JÔ‘I/é\nO‹Y}œxš‚Å†ë”Þú‡ÆU ','',0,'?'),('u…§X¬Ü×>¯gM$‘','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/et.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íÿ1Ãàþø+(;Õ[Ô´É','9ƒÐ¼]ÌœZ$\rbÐÜï¡‘±\Z0ù*3<§€[','',0,'?'),('vÞ×Ö&*þÉ-Hé«.¤','wp-content/plugins/instagram-feed/inc/admin/addon-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕÈ[Iƒlý^†¡Rûñ~','Æù1Ö#+$ É¾.×ÇJ/lý_òJs²xÎ2ƒ*','',0,'?'),('w‰ÁÃú+\0ã˜òì2ÎR','wp-includes/sodium_compat/src/Core32/SecretStream/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zjoñ\0˜ºy,¨*•}c','2p\"Wjá„€—ìsâlf&S@Ç[Ç\\‹ª\"WÆ','',0,'?'),('…xÆhÁµÏV$lVÐ²','wp-content/plugins/wp-mail-smtp/src/Admin/DomainChecker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÃJ+¤54~Ñƒî$ÜH\"','5MRÃá<ø²>­þµ|…OçÝçVÌÐhÄCü&µTeLi','',0,'?'),('Tk„¸û>Z_ý\rnó','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/checkerboard.php',0,'ÓÐµ·Iÿ\\¿\Zòk‘†íší','ÓÐµ·Iÿ\\¿\Zòk‘†íší','²eBM\'XÁ/\0-oùŒ@®ƒ ?ršE KÑëþ','',0,'?'),('’	:\'\\Åƒ†[ Ù„x','wp-content/plugins/fusion-builder/inc/importer/importer.php',0,'JBz eHå#û(<\r','JBz eHå#û(<\r','–9Ž—.zæŽ…žáöÈñûô‚ÛáVÞéõ1¢=”','',0,'?'),('–™åÆÌŠe,có¸k','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidDigestException.php',0,'IŠÖî¢,#Ó0@áâûŠ','IŠÖî¢,#Ó0@áâûŠ','Ì$oOT½Ü”‡–Ã	 }| íÉÁCåˆ4ŸK\Zí#–³','',0,'?'),('™îf¹Ž-;ÞvsÂ.','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/FilterManager.php',0,'FLrÁÉ(§óúØŸKÐG','FLrÁÉ(§óúØŸKÐG','”Æ“«žN–ÒÛ;QÜ^\rÄà³O]WäY×ÍÄð«','',0,'?'),('›…Äf\0I²šïSó¾í#R','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/IdRequiredError.php',0,'„n,þ(‚øûýº¬O','„n,þ(‚øûýº¬O','%ÍŠ¢õüï:S’¼RàuI\0G\rÀþÿ,h:[´ºš','',0,'?'),('¥-ƒèBññ|tS^¼','wp-includes/customize/class-wp-customize-nav-menu-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÉüÔ¡¤Pý\n}õ$','ºvG~?t7\0‡ŽhëªR,û¡|Ù]9…ôp¾.Jäw','',0,'?'),('¯ECW¬î`©`ßß-ï','wp-content/plugins/wordfence/vendor/geoip2/geoip2/.php_cs',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹_@åeîèä3¥b”ÙB','ÙLà‹Ø¤@Jã†9OhG—@@›ïªûZ!†à\08#lÓ(','',0,'?'),('¯…†Cþ¨õ/Ð\ZW\Z','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/GuzzleException.php',0,'¥™tVLµˆm°m8b-{e','¥™tVLµˆm°m8b-{e','W|FUóá¾hy	Åô¹¬¯ŽüTêmÚý\rö¹ßÏ','',0,'?'),('¼æõ+VÈ„\r)ÈŸb','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ApcCache.php',0,'ðcs*Ç †¿•Ý¦,R','ðcs*Ç †¿•Ý¦,R','‚º\neg¯ÏÊj]CVsÝÊ€°ô†E¤5ôfDŸ÷q','',0,'?'),('À‚ÛÊ%¦4áHýdÓ','wp-content/themes/Divi/functions.php',0,'Œ£\ZH\\‚\\ûÖ-@Ž›Bâ)','Œ£\ZH\\‚\\ûÖ-@Ž›Bâ)','ÁäÛ“ºÐ£çË_^¨†ÇÑ1eÑcÂû9zÖhÆç\\O£v','',0,'?'),('À å5=HOð7W\r','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Enum/ReturnType.php',0,'D}Î¤wSÕoº!¤f”íp','D}Î¤wSÕoº!¤f”íp','ÅÌlç[7;Y¢ÇA“º*ž˜‘n«ªJo¼¹ìö','',0,'?'),('Î¢ƒSËªÄ\n´–BáV\"','wp-includes/fonts/dashicons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´ä_‘3$_Ân ÷5Ž×X',';Ê\'8ã4aOoY8-UŠ62»ý§KÛqqü$Bàùx','',0,'?'),('Ð/Î°†ñF¯Ùžâ?¹','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Hash.php',0,'ôÃ’Qõ.¢ÉË	¶4Òìdí','ôÃ’Qõ.¢ÉË	¶4Òìdí','…£61d	\"q$BÅ”˜SxñýÑË½ßVÿ\Zòº$)n','',0,'?'),('ÕÈË?ÁË“n«ÄQg','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidInputException.php',0,'Úên‘Íè°:KiÌ‰ 6‹','Úên‘Íè°:KiÌ‰ 6‹','~êK¿½â¬!.¤¿Cêš\ZËÝ»&ÑÌNò<š?î','',0,'?'),('Þâ\\§ê‹h\ZÂÈ)Ä ‰','wp-includes/blocks/paragraph/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½‹Á{3²&ˆ\n€±%tÐå','©w×Å…Àk]Ž	–y>ŸòÞ)q”8jÈA_SÊŒk×‚','',0,'?'),('éûÚïH¯þ\"ôÚ¨|íA!','wp-content/themes/Divi/includes/builder/module/field/Border.php',0,'ùHr‡Çj}ÚÈê«‘~Åí','ùHr‡Çj}ÚÈê«‘~Åí','úø®¾ä´PÓ6íó—4úø¶ÿ­>°@¶šú®ý™ðª','',0,'?'),('ìáÎ§Q¹Ý—´Êr[ýè','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/schedules/ActionScheduler_Schedule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ®vît;—ZããN×mÄ¼','\"-Ü¢ýumâ€s–‚w>vu«J•§ÍÔ¡X[å±6','',0,'?'),('îÐ¶Æ†\0ˆ£Ï—\ZaËÖ','wp-content/themes/Divi/includes/builder/module/FullwidthPostSlider.php',0,'!jòŠfÞôÃžˆÕæ,	','!jòŠfÞôÃžˆÕæ,	','ÜÑYžÝÿ”;K_ˆË«­ßt,‰.™®¶§s³;eÝŒ','',0,'?'),('ï*Q.	Ö-cÞ%ÎD','wp-content/plugins/wordfence/lib/flags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öiïËcÒç£­µ’cð-','8¶Y¸ÖCOå×ø™0÷j{¡\Zx¤¤DòÄ–¿’xªO§','',0,'?'),('ü%«4>Éù]ü›\Zw•','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserListError.php',0,'Å%»ÑñuHIµ‚”','Å%»ÑñuHIµ‚”','Nôp>ØÑç‘u”úÌÐjÊÛ‰J•ÐÙ2ªE‘	Å7','',0,'?'),('ýb’ù©mQkk¹+>†ÇÄ','wp-content/plugins/contact-form-7-honeypot/includes/images/banner-coffee.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É=É$˜ëG+f­ƒ£\ZŸ','³°•¼\r÷—Á@ùhÆž” ˆÙ0÷¦erhâX¨','',0,'?'),('\n	M«I†~öYEO—×]×','wp-includes/blocks/post-featured-image/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«¬jé‰ÕûôP)ñ3KÑ','ÄËÂè¦%ð,\'\\SÞGK,ËbCT¬¢ëSã','',0,'?'),('˜¯Ü¡9îu_\\\nÃ9Á\'','wp-admin/css/color-picker.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óÌ…xŽîTi6šúþ','Û£q€‘T¢òzuÅÕî©Oiîÿ\\Ë5Ð¯YôuÖè~=c','',0,'?'),('ÈKUõg0MU¿/šöÊ‡','wp-admin/admin-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùXo®¼_¦¨’Ô²)\nÍÑr','Ž(ØZ!.ÝeñØTU92;âÉ­æåÝt5oÒ^','',0,'?'),('~VœŠ:ÊÆ©?³+ñ>ï','wp-content/plugins/instagram-feed/img/sw-screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wê{ÖFLF[p‘¾š)¦','–0Ç¨gÒlž ©°ÇrrŠbˆ²¶z3åìa´þ','',0,'?'),('Ð•\\Dß„|ñ\\”¶4Þ','wp-content/updraft/themes-old/twentytwenty/functions.php',0,'6fòž°¬¡Ÿëôys¡,5','6fòž°¬¡Ÿëôys¡,5','º#Æbë@ZÜ1ÖMå/­¿y¯f®ò€Aé/è‰Ìb','',0,'?'),('C¾¾ïàíƒÄÕ3õ¤','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/accordion/accordion/field_accordion.min.js',0,'Z#kW¼ªo£úœRF\'¯Ó','Z#kW¼ªo£úœRF\'¯Ó','ºm~‰¢ÌŽà‡žåi<ñ\rpi¸Ü(ßd—¼$â','',0,'?'),('\Z[`£±0CI$Tˆ \'÷','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º)ÕH¾µ$I»3½^0','Dsmr?vÊjz¡…ÏíMo™3=b0À›¬KÎR#','',0,'?'),('#+Å§ãç¿ã\";ÍA)Ò','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RÙ*LÓTGâé4%P‰´¹','-–‹ÙÖ©nFJ­&TÓP•o\\Ï“\\Ž¹¿æ2–íß','',0,'?'),('4;VÏô\'Œ/¶òæ¨fº','wp-includes/js/jquery/ui/effect-scale.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•—KaJüd‚³ŒJ\'^','_²½q¸x#ó_°\0×â<ßJ®cÜß~äºÒ±Ç«','',0,'?'),('7™Ôÿ¦Ñ^ñÄwèZh;','wp-content/plugins/worker/publickeys/partner2.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†ÏõlÓ@Xós{Æ‚}gØB','S¶×lô8††ó”¡õQ}I¸W$>ùE¢j-\r','',0,'?'),('7Ñé±îOW\n@‹a','wp-admin/css/colors/modern/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ„Ðo­šø/}±Êjˆ¸º','7À(ô®3„\rÉ@¸¾…¬HŒ–lÍ‹Åà%>ÕM´³›ˆ','',0,'?'),(':¿fØ?bjƒ¿.‹Ÿ¹','wp-content/plugins/wordfence/views/blocking/block-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']#{×1Œ†Þíâõ&vµ','¨^Pöb.|³=>ÃS•õþô#\'\røl±]×^‘','',0,'?'),('<d¤†Ùïóóäé’','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/select_image/field_select_image.min.js',0,'iÙ±~	ekÍðb	|','iÙ±~	ekÍðb	|','œÊøÒ\\7œ¾LC©ýò¡ëh\\*dfZƒÀ½t¸','',0,'?'),('IrõK ü`Éi<*g/ ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataJsonError.php',0,' ¯\Z¼1©îŸM	g½ÕŽ\r',' ¯\Z¼1©îŸM	g½ÕŽ\r','<HšãpKÑ¤óF\rõ¨ÂÃV¯Ö:‘K\Zæà½ð®¦3','',0,'?'),('Pä•Åwä¿©X‡p´§','wp-content/plugins/wp-mail-smtp/assets/images/email-reports/thumbnail-02.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à„ÐJRRÓšø3Ú´ú4\"','ýzÑIùX{-®šª?bâ¾T¿ ¤8~èw™,À·¸ÀD','',0,'?'),('RVvÉV¸#Ð©—mp¦(','wp-content/themes/Divi/includes/builder/feature/background-masks/BackgroundMaskStyleFactory.php',0,'¬¯gðô+›°»„±\0Õ]ß','¬¯gðô+›°»„±\0Õ]ß','wûà@÷5 ñK=¬‹IIã?iF%ùŠwòm ;I','',0,'?'),('TšÄ˜5VH«¬üP{Öô','wp-includes/Requests/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÃFlkÙ®<vÕwSH²\\','-@Ž‚g %ˆü§†ŒuON\\}@là°Ì¥f\'»ãó¼','',0,'?'),('o7F1úTÂíAöÕÅ¬','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression_AbstractField.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WÆXæúvÓvlX­8…šÎ','qdwLÔ¹ºL“é90¨æ‡Äk¶“9dZÿ£+T€`','',0,'?'),('w¬lãkajcÏ„T“†R','wp-content/plugins/wp-mail-smtp/src/Admin/SetupWizard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w»§hebÄ\rÌÚNÞ/','¡KÇ¹å™á­ïÃ‹nøLùî¤t›‚Òª° rI§‹','',0,'?'),('Š5	Ÿ@2Ñ\"­W%Úé','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Abstract_QueueRunner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CÙm\næ‘‹‡#”³V—¹','PsÇãsÅÌŠÐã¬cK#f¾Î8¾ Šq6`;Ô','',0,'?'),('ÛÞC\nŽ—äU¾„ü','wp-admin/js/custom-header.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÝŽÈ\Z‹ Ð\ZÚ¸ÖôÂ','¡òv•N”°¾;dõVÂâ5dû¥Žt¡,î','',0,'?'),('˜á¹P¯úÈ¼„Ã°¥•','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Header.php',0,'Ç2§³¤öî§ƒuéàM×f','Ç2§³¤öî§ƒuéàM×f','UÙà8—T¯âÂ¹Ä×7ïË¢ÃL\"(€±êH¼ÚÂ±¦ÿ§','',0,'?'),('Ÿ9VÍ·i=%0Ô4Œƒ(','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/DateFormat.php',0,'‡A+î¼á)êÊíµ€üÔd','‡A+î¼á)êÊíµ€üÔd','éü[ OÂu÷ðæT\\Y|è¯—¬;‰´W¸Èš„|','',0,'?'),('¤“¨¬å¯Y»ˆŠÔ5g','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/Link.php',0,'¶\\¢/€]dCHŒo-²','¶\\¢/€]dCHŒo-²','x[º`ûÜ§fGng.à²w³•åÝWå|°ÚëÊâ0','',0,'?'),('¤Ê0l±ÝjÆ0+%ò','wp-includes/SimplePie/Source.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aŒ‰A:ã$]B-Çvwñ)','²\"êÑá9MÜa™ƒ´Uâ_¤hÍI€ø>¼,]ÿCÍ','',0,'?'),('§}ÛÓ†ç„fämWÆMõ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/welcome/views/extensions.php',0,'€)]79ô8Ê¾ôð­;Õ','€)]79ô8Ê¾ôð­;Õ',')Lï\Z½á\ZØ\no>‚D}Y‡¼û&ääÁî@KNGï\n','',0,'?'),('¬L¹6?N¢¡‹ZaˆV','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParser.php',0,',¸¹™òìO/ŸÝ·ÆÂ)',',¸¹™òìO/ŸÝ·ÆÂ)','ðŽ}U¤Ñbf|÷UUÙ¦ÓˆÊå)†ÎfG[€9þ’™â','',0,'?'),('¬xœa5]Ú&¾§K–R†ô','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/InternalClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹ç¥}7 €°ûŠ»\r','ˆ´qÚlÞbD¹qœ”@FÎñË¶]ÏÌžë#','',0,'?'),('Â}pŠ={N§uhõHÏ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/LimitExceededException.php',0,'.ÂxÖ5FãN£xB','.ÂxÖ5FãN£xB','M@»{òmÙgWláïýðÈÁ¤=³‚ônó‹SuL}','',0,'?'),('Ë¶Q}l˜‚\\Ø°ŸÞ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CallbackBackoffStrategy.php',0,'\n/åhþ‰ó®ÿ>ñæÖ','\n/åhþ‰ó®ÿ>ñæÖ','6 WD2Ò¶‚0z«dô—V:SRó0ä×ùÝhüÀ>è','',0,'?'),('Ö¶»Ÿ…ÅÞL\ZcR-ö','wp-content/updraft/themes-old/twentytwenty/assets/js/customize-preview.js',0,'ïJ&Û¯œÉ¢¸-“Äá','ïJ&Û¯œÉ¢¸-“Äá','Pt#¤WÔ!†ÛÈæbz€Ñ{˜&x€m‡Q /œ¥','',0,'?'),('Üà˜ª€+5˜ïN','wp-content/plugins/really-simple-ssl/testssl/loadbalancer/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¸ÜaÌ0ŸÁš¬ø&–-','ÓªƒGDfš¥è‰:ÃÚÈlkŠ#²L+J5B¨Ö','',0,'?'),('á/ßU¦RÄþ‡EÇ¬6ƒ§','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/CommaAggregator.php',0,'gÎîjGm*fYEª¨\\T','gÎîjGm*fYEª¨\\T','ô{‡¡Þž«“Œwƒô«Þn\0qÉ–…:wþ$\'WN+Q','',0,'?'),('æÚ¡ÈRˆ|ìö#\'‰M','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-sharing-box.js',0,'Œ“xÿv4T¯×¾\nj','Œ“xÿv4T¯×¾\nj','z™¸ËnC­p”Á@Òèº:V¤bm=¦–æŸÞ“€«™z','',0,'?'),('÷\'‰\0¢PÌÐ¥†B;=È','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/log/Psr/Log/LogLevel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A”VÆò€z›!¾Hà','¶«z‘wÌÐh‹_T(.7›£÷l¹˜{r`npR|ƒ®','',0,'?'),('û÷Þçª’·u£¡\rZJW+','wp-content/plugins/wordfence/images/help.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$NÇü;\'ý‡MÏÏùò Y','–ïé\Z²7\0Ùé¤rÂ€/i£Òz;ki,›=L›Z¿g™™','',0,'?'),('ü)§£™Št\rî,½JÚ¼','wp-admin/options-permalink.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”&v\"W¤YóIØûö7¯','\0¿¼Èç3<üVÐ)>€^08Ã$]„(ò4þN','',0,'?'),('öKœÍâ¶~h%r¼','wp-content/updraft/plugins-old/akismet/class.akismet-cli.php',0,'Z„« ëãèqE9g:I','Z„« ëãèqE9g:I','v26†}Ûžèâ‡\Zâ\no‹¯g$ä$¥@[¡C—\\V','',0,'?'),('^ûIÁ«â×Êõm|','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3Client.php',0,'iñF¤Ô%lnaGJuŸ[','iñF¤Ô%lnaGJuŸ[','Žm•½&ã=÷™ÀÌòGV˜ ‘×„—cR£Ã¹D–ú','',0,'?'),('Í÷xž…µ2c¤û','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ps.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÃwëCb×Äªér—@µeõ','dÏi‘þKj¡Š{•5Fº™Øì³\ZH|JÏTÆòˆÝ,','',0,'?'),('ö?Ç„£ù€ë:\nÞÖX','wp-includes/customize/class-wp-customize-theme-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ê	ìK—ÿŠWTÕ‚õc¾','Î&Û^ÎÈJýeFX*i-t¢ß;¼¸8€¨t±\0Oý¾','',0,'?'),('‹³ò7WÈ_%9Zš','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/Endpoint.php',0,'ÜÙtãõ™C§D|i','ÜÙtãõ™C§D|i','éŠ*‘¯TAY¿Âñ4C(™.u\\-ùž¥q	Y­»','',0,'?'),('\Z´ð) ”%iyƒÎ´','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}+#z,¯èeßrEJ-','sfºÜq@µÚ8¼!yW¥&Ú”AÈ+/ÅuY•†œ44œG','',0,'?'),('š²õ•ž]”-%V>âù','wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/LoggerTrait.php',0,'Ñ €±·¨/j0#¶?À','Ñ €±·¨/j0#¶?À','8rü½â=SÛ‡~Ñ…Îæ&é<óõyðÉ™ eÙÅ¨o×¸','',0,'?'),('#U†WXw¯ù”òzaã','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Order/RevokeCertificate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N¥èžŒî.$=‰nK¹ÓBÅ','ä_±í6Ž[Û3IIxxcy/5q\n¡’ê´z¶M','',0,'?'),(',(å¾¡à-0¥\"5$ôò','wp-content/themes/Divi/includes/builder/plugin-compat/sitepress-multilingual-cms.php',0,'Î=ÏÇ»îO²%_¢ç3ªÖk','Î=ÏÇ»îO²%_¢ç3ªÖk','~ÿÖÊÏuª–íìMhý²5ü\'×œP¼Ò²Z¥¡H','',0,'?'),('3•dý¤ƒâyjäéßÎóV','wp-content/plugins/wordfence/lib/menu_firewall_blocking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@O<Ô.<)‚$Ã÷Þ“Á´','\ZÞ›pŠÿ	†œä>¦áB*\'¼ã^ÀÒ–ŒTÕ','',0,'?'),(':¯\rŒK‡/s[@XD¿','wp-content/plugins/worker/src/MWP/Http/LegacyWorkerResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼Ò×ÖuÔ‰™Œª;²Æÿ»','mÂmö4Û^ºÎù+Š›ß`\Zò|š\'—î*Û’T„','',0,'?'),(':î¹>Eög^lAzÿî','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/ProjectIdProviderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eý¯ÃKüV¼ÝªHß !','¬Ç·Ï«ÈM««n1¦ã:3áÀ°R†S@ð¨\r|\'','',0,'?'),('=MñŠA™º7†W2V','wp-content/plugins/fusion-builder/shortcodes/fusion-syntax-highlighter.php',0,'3D\rwh_„ï€²BÂhp?','3D\rwh_„ï€²BÂhp?','-‹zü.ˆc|¯©Ã\'3B`q~f\\bïÇiðåÈ','',0,'?'),('LVr@sR³Žç®Cð} ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNotEmptyError.php',0,'Jc1z{Š²È\'/‰@EHl>','Jc1z{Š²È\'/‰@EHl>','(Ô\0íÎÿê-éÜâ ±!ß¨:•kÎ¢>¡I\nÃ.Wmaø','',0,'?'),('NnHAxÊj‡¹Ê¹Ëc\\','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/TempUrlMethodError.php',0,'2ÁEøˆ!EsïGe¤?_','2ÁEøˆ!EsïGe¤?_','P#Y¥¢fGÝGÃ“oõJ°d02•®JöEn>¦Š<','',0,'?'),('Rrèr¥(ÞÈŸÇÀãP³','wp-includes/blocks/media-text/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡§çv¡T-‘M©%g7Þ','ßöö\",?sM­|5H1¹ãç/•€&+®;cÞ¢îêÖF','',0,'?'),('R—¡â¿!†©ÁÌàL','wp-content/plugins/updraftplus/includes/Google/Service/Coordinate.php',0,'ÃiüJiý]BSF™e÷4³','ÃiüJiý]BSF™e÷4³','!¿&«4…}N„îŽ€ÁD5§Ç9=\\‚œ-g%ï','',0,'?'),('RóŠ5sG#µ¿=Zß=','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkError.php',0,'RÁ[ôh„\r}„$zñˆ','RÁ[ôh„\r}„$zñˆ','ØWð2¨I\\j^õX‹s1fäºùë©p°ÿÒ©4','',0,'?'),('Wl…Øy:Ï\0Vn`„d\0–','wp-includes/js/tinymce/plugins/wpview/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½&»‚¹\rbŸ´Ã!˜†ã',',’`i tòÔÝÚŽºTm›êläòkáú—s¤\r=','',0,'?'),('X#|\Z(èd™´{c¦','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-tabs.js',0,'léòQp˜˜y/öNTky4³','léòQp˜˜y/öNTky4³','C_;K÷òT`Òa•Ë¦\n­ßI¼ê•Fîš›æò~v','',0,'?'),(']\"Ø!29mD7æ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Collection.php',0,'½ö±$Hº·LjÛÛ 	[','½ö±$Hº·LjÛÛ 	[','êYÅ0þôþ¨¶£uªáÙ_ÍÊï[/„P…°Î­WQÓ:','',0,'?'),('aLs\Z,‹7ý—I¯‚†','wp-content/plugins/worker/src/Monolog/Handler/StreamHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pè[©Ñ(\ZÑf†_™Ý&','!&+EòÛâ¥f6W_¹J©›â\'·´QjRn‡(y4','',0,'?'),('h8šÊ¯n¥”-‚Ý	*','wp-includes/blocks/buttons/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öÓ9›X@4ª=ûkÆwjW','¬ZvrNM)•¾I6Å,ì™B%{µÍi—€®4ñ','',0,'?'),('l\n¹B­‡õXèúdR<­','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Parameters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','À¿+¡´–i{\0yB0p3','2U&h1Â(……S»0ªÜíE­ÑßÂ³g†ä¬\Zó«<E','',0,'?'),('nHÜ*|žw¯€ðg','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/OverflowException.php',0,'ZVVBûSy9-Õu,:Û­','ZVVBûSy9-Õu,:Û­','\0&Ð……¶8=òyê9	ðÜaXF·Ž³Ný4·°u','',0,'?'),('q\"¶µŸB¢Nhè£@','wp-content/plugins/worker/src/MMB/Core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²Àƒ[&–jZo[.ÑN;üN','T&òì’ž¨’ß§½\n¶…c§®ëÐ›—›‚o«~õ','',0,'?'),('r‰ßÿÇ_æÍv±ø€¢Z','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/el.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’NY³©ÉX˜ÝOìc4Ð','nrN-LbIp]Ñ…žLÚO¯§‡«Ê¼­\Z]Àó2','',0,'?'),('vC.£;B\r‚OíŠæUY','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á€\'žO\'2OÕ‰?%¬','c2sé·,R¡y8¶›Ëq6Ùôµ!rYÔï\'Þo)¸)','',0,'?'),('yìÖ°C¥X¡œ¢´†lÔ)','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/functions_include.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼ó,Ð×[Ð*y†üæ·à!Ë','X*}u¿I…+à\rÀpÿB2Sz9+NL,ZZè\\šX½É','',0,'?'),('}cîß‹B«§39ðl.ßF','wp-content/plugins/wp-mail-smtp/assets/images/about/icon-partial.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾Ä¨ë‹8Ã“dy§¦ÖúÁ5',',®z¸·°PkjÜ¬v­Á§\rðŒvzR\n¼5·#ô','',0,'?'),('ˆ9ËŽ>Ñ×Ú7','wp-includes/blocks/site-logo/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†;&kg³Œ\"»Ñï*ƒ§','½LuGŠ`ßô¹ÛTYLöÑÁí¯#Yï°¤tØ^úJ','',0,'?'),('Œ,4#¢…(ç#','wp-signup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àÄ¢“`,—¦E¢†@„<','éÜ½fíÂ?cšZæåm)|MtÉ¬t‡Ê\0ÝÔ','',0,'?'),('ŒšxdŸ°(r–¢¼ÂNïf','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/vi.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';Æv;;ïA\'ptDð†','¹h^‘g(Ú‘e-:DdÕµ<ôs…§x?ízâ','',0,'?'),('ãžRêÍíå\näž2l','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerUpdateError.php',0,'­i…˜Ú#Òƒ{®9Næºµ','­i…˜Ú#Òƒ{®9Næºµ','^ûç#bdóÞžÒWà@°‡âÙ‚v\0ažrû‡v}ÇÐ:','',0,'?'),('œ)ÍPeÕîDî£øˆÈ s','wp-includes/blocks/group/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l¦øÖ…Ã5Þƒž–|ìq™','Ûž\Z¹¿·}=eJ]¶0]¬ÄuCG.ß0NAª\Z','',0,'?'),('© dÌf¸ò\"·)=Ê6b','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/Curl.php',0,'6˜ÿ³Œ\"¸xÎFá©ã','6˜ÿ³Œ\"¸xÎFá©ã','ÓÑ¶ìçÿìáûÅð}%D³}‹r-^{¿1‹Þ.~øFï','',0,'?'),('·ˆ Aü–ÿ£\Z¡Hlc#¾','wp-content/plugins/wp-mail-smtp/src/Admin/PageAbstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ý.|³ë}NÌ^q	‡','cirˆQ„ú|Zô¾TÕ”éò_±¥gÍé<&å','',0,'?'),('¹¤:óC¼™¸ÈtD‚ÄÉ4','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/HostNameUtils.php',0,'­:sÁ¾ ³×¯nbã•','­:sÁ¾ ³×¯nbã•','Û¾™×=È£Åä\0ß0I“¯,xˆæC”&“þß)Ýà\Z','',0,'?'),('»ó$ªˆxÍ­ª¡²=÷¹','wp-content/plugins/wp-mail-smtp/assets/vue/img/loading.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g§Ì:›0æ|æø¯Yo9','„åîÕ…=Gk£Á`ðŽÇ–ãFÙÿ6Ý\0‹ …q¤ã','',0,'?'),('Ç–š‰dÃ!s<X§ä™Ð¯','wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì*•1{,Ë¾òþ–Ê‚œÎ','<•G²Æë$µU+ökÅL>\0h—ahB¦¬S©-Û','',0,'?'),('Ét`‡Ï?$½’¼UQ®ü','wp-content/plugins/worker/src/MWP/IncrementalBackup/FileReader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒN>·ëµGë×ˆjc^D','w@Räk¶å,~öã7|¼€Ê\rÑJ¹wÃ@D¶­ñ','',0,'?'),('Í°³VÜã¿iå¨iæ','wp-content/plugins/worker/src/MWP/Event/ActionException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Çj¥[#ÐPÁfåÁó','!³dÈåéêÎAÑ¤¯læÞ:€cš—J*èwœÿ','',0,'?'),('âðÚh\rÞ	íO2a ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/Session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[…µ4› þØóž|¹À×¥','íÚ/$(KŸü+W^Á–¯ KòOùØ’<Mxø=','',0,'?'),('ð÷*æ²«žQó‡ÿ¥N','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oVˆ7PR~×¬®ÈÒai','bà\Z§‡“¦Îs#:í*Ø\\û“Š\'i@€±³qa','',0,'?'),('ö×*š–7}oSÇŠW^','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/core/required.php',0,'¿1;dà¡ý‘w…?ÀÜ','¿1;dà¡ý‘w…?ÀÜ','þsÆŒ›ˆòŒ´ðcüÛÄ×Ó{ÚhOó|PSŒI','',0,'?'),('ù\nkˆËþFUuM¶å%','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/OAuthSignature.php',0,'?*øô5ßŽ¶Rš‰¿ Ä','?*øô5ßŽ¶Rš‰¿ Ä','ŽVÁ%E¬b £RÊÐz0ÈLJa:,Ñðµ.†yä=','',0,'?'),('ù¥,ïi\"xÝ‘/ø×¿Á','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP160t1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9.Å¡•Ãš¸B1†•Ÿ9','¦ë›åý.zoì®²ó¾ãfÞæð¬Îò{fì=’xQÚU','',0,'?'),('úkudôGÄ¥R¤‘D','wp-content/themes/Divi/includes/builder/module/AccordionItem.php',0,';t»bÝü›Tu¨çäìå',';t»bÝü›Tu¨çäìå','\nð`®‡\"F¥Ý¶k\\bÁwèÔÌ[{×½u÷|N”gµB','',0,'?'),('ü-Sß¼nõ\'ÇþîöˆÈ','wp-content/plugins/fusion-builder/inc/class-fusion-builder-library-table.php',0,'ò¡AüØ…Ùod1ªä>®','ò¡AüØ…Ùod1ªä>®','Ë%›¤JÝ4ÄZŠÔï¶ÙÌgŒa7ÝÙ3#Ô rÔ','',0,'?'),('y7¯ÐMAä@ š…','wp-includes/widgets/class-wp-widget-rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·Ø¨&cF:æ5Ñài^O','Aª_~è3yo\'iq)Ëü^DšE×É4‘,	 Ês','',0,'?'),('kÊ6Ïhß’PGP¦q…\Z','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/http-message/src/StreamInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àbF›i\"Çn•ãžNù,Ò','R¸AÎš{:¯ªÀm¦²ž®Ûßù_ß\ZFÁ9wƒ.','',0,'?'),('‹#¯dŒ;È¦>nêO','wp-content/plugins/worker/src/Symfony/Process/Process.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$wÐÀØ)õ!wç÷ð','îâ¥^d¯+eÆçvIŠüDrµ¿7Â,/t˜/MR¬Ò','',0,'?'),('š_)0d|‰6_„;n','wp-includes/js/dist/rich-text.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I§9vÅ©\n¶ô\"t´u“','¥G«‚Ìš¥Öe1‡\0!Œ²y?YDV…Y=ÛØ§Zæ$','',0,'?'),('hRÜ^©ªò´s§»','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/lib/php72compat_const.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XPì˜sHGï/nçú’w','Œ-Ü™…™’_¤P^ÞCÔêäí`Öµç.–‚‚F²If','',0,'?'),('ÂþÖ6ûô×oÖ?dbP','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ListBlobBlocksOptions.php',0,'»›˜ç ù\ró¢â»]bŒ','»›˜ç ù\ró¢â»]bŒ','¡šH¦Iø^ôe·bqÓ«¨ZA»Áœ¶Ï©Ër @','',0,'?'),('#­¬möaÆ3jFA3ã','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Random.php',0,'²O“gÑ}ÿ ¼•¥§-g','²O“gÑ}ÿ ¼•¥§-g','ÝRóAhHa½Z™¨¾bFc1«×dð|\'&ðpL;','',0,'?'),(',×2ÜBˆLÀh>¨Ìß3','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/TemporaryRedirectException.php',0,'Ôâ=î-YŽJ¸V-ùtI','Ôâ=î-YŽJ¸V-ùtI','/éJÖÿ.%ZŒ¢4Tg£º›‡úAN±¨Ï5·çø.³¬','',0,'?'),('7³¡’ÑÑíOi6€Û¬å','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/MalformedCertificateException.php',0,'+8ù™U©Æ3VÀíÚZ,=','+8ù™U©Æ3VÀíÚZ,=','áÄšµ®}Jr¢e…a6šÒ×ØñN£’„S²úÆÚ8Ú:','',0,'?'),('=ž	„®\\vV£«‰­Çx','wp-includes/blocks/rss/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢¡uízwj2½€ù;3Æ Š','ÒýZEØ]!%§ôAHïƒXX%{ˆGTãpö‘1U','',0,'?'),('PøbÝÿA°YÉ‚òÕâ','wp-content/plugins/updraftplus/includes/Google/Service/Replicapoolupdater.php',0,'=¶&\ZÌ˜ù‹™¥H','=¶&\ZÌ˜ù‹™¥H','„¿Þ¼Y¯J?¿ •Ä˜Ù#ô p9|úÿU¼´¹\0Hzg','',0,'?'),('UÕž>SÏ«;6[m6Æ','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/frontend-footer-template.php',0,'¥‡A¢·Œ¦AŸ-dDÉç','¥‡A¢·Œ¦AŸ-dDÉç','NeS~\0±}¸äØ©0zrn]½«þªÊ8þÔÖ','',0,'?'),('XÛúÈ;{lÂ1¬bCS','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/colorrgba/validation_colorrgba.php',0,'=ÙjG˜êÌ‡›¨…’¸@','=ÙjG˜êÌ‡›¨…’¸@','Õú2M[óF9ëààã@‹øjn!\'/ ÷û@¿W','',0,'?'),('_Ö©,Ì\'†e¤á~³)\'','wp-content/maintenance/assets/images/twitter.svg',0,'ÝOeåpu[cûÞËèQs','ÝOeåpu[cûÞËèQs','÷R›­™(Û#.Iëì‘ôËË}‰sßZK}Q!×i9Ô','',0,'?'),('i/œé<\\×šVÏÜÂ','wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/CommandListener.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦©Ëª]úð,eNÆ@Ë¶','ujBÝdH?ð>ý*€^¶ÿ}<+¦¹.;Ir{ädT1','',0,'?'),('q\nÜ¼%xÙp’qñŒ\r','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ûg’Š<;>	N7*SÿW','”«Ë“¸-wzhä÷¿x8ÃZX\"úò%‹õ¢qš¶1?','',0,'?'),('uŒ tHé/VWì_nL','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-alert.js',0,'bÄŸ@´ uq„x¬ÛÂ','bÄŸ@´ uq„x¬ÛÂ','ý•%»VíbÒ‹ŠÌñ·Ç*~£¡ØVzŸ™LïæUš‡[','',0,'?'),('€Ìbë/iwÌ\"&	¤„','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/PuTTY.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u}Í»>\rSèÄÐ€¾ä)¦','VNo¥wbCc¯”ùhseé©%ô!n£_z§wËÍ—W­','',0,'?'),('€¢<ùiÎÂåÈQ\0','wp-includes/js/dist/reusable-blocks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õ9MlŠ®)²vIáqäò','qhZÖø¾÷§ÆáýUËT\nr®cn‚Ý­®÷ÎÝ;ô','',0,'?'),('ˆ`&%eF•gÀœ”ó”d','wp-content/plugins/wordfence/models/block/wfBlock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ô=ôòîL@ÏÊAûÆ','\nÕS‹Y>îlð*Ï¸C@z&+ z­dAW‘¬£w¤\n\r','',0,'?'),('Š~Swóì¡Mº){','wp-content/updraft/themes-old/twentyseventeen/archive.php',0,'*qÉÛw(è4•YMêQ9+','*qÉÛw(è4•YMêQ9+','Dü¯ÌØ¥·ØÎ·	÷ÌÛŽ÷é}¸Lø	ö$½³:n8YÞ€','',0,'?'),('–Ìf=¯˜“¯Ûö×¼ã','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/NamespaceExceptionFactory.php',0,'_Î¤Ódæ]»‚§­¢¤.','_Î¤Ódæ]»‚§­¢¤.','”jÖÒíóe.àéØ¿æÕz˜\0ŠîÑIözš¸¯','',0,'?'),('›þn$ÆtƒÐÅ(l†¨â+','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Theme/UpdateChecker.php',0,'Y¨æsÐz=8¾ö†Ò\rï­','Y¨æsÐz=8¾ö†Ò\rï­','\\©™Õ§Æ=,Í\ZÃsèñiqy ›p²ëmûˆ0v','',0,'?'),('¨\"¦sybNl-¼×”','wp-includes/blocks/preformatted/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å¼)1n8.R‡œí¨*','vš[Ëâ7•/N@3)}ùo£xí©ý¸ìtØ7§Nk‚ ','',0,'?'),('©:8ÏIaö¹Ã¸lÕm','wp-admin/includes/class-ftp-pure.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T&¨}Ø\\3æœäJ¸‘ \0','¥\nSÄÀ{UÈãžCdz$¨ü”øyÂýïÉa|8ð½[','',0,'?'),('ªW;Ý´‚¼Þ‰T;ø½Þ','wp-content/plugins/wp-mail-smtp/assets/images/email-reports/screenshot-02.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·ÊÜD¼É\0î|è‡ÆF','\'õÉ2uV÷dç.<ÊùÑblåß=¹`®G’Bjr¡§Î','',0,'?'),('²þ£²KqMÃä{ƒ±»','wp-admin/css/dashboard.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸ìÊ§‰Ž>ú	4ƒÃ','ÁãkSTó_¿e£S-~ÕÃÒ-­jÓWµóèÎ+ª','',0,'?'),('´÷œë‡»Tol–Z×+H','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/LogAdapterInterface.php',0,'gêIÙzˆÏ.F÷V:¼%§','gêIÙzˆÏ.F÷V:¼%§','Äø­Ï!Gáå„±\0:™JŸAQnZeÎgÀopò|G','',0,'?'),('·ÆsÝœ“Ãž3‡ŒÏôþ×','wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹#æï·7Ih›!ÎÆ×_Ã','ãÁyÛ¹š¾ûð–À»¼Í«!è¬Hàòà­HGH','',0,'?'),('º{xZÆcù\"†hb‘?Ê','wp-includes/js/dist/dom.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓàgFž!Y¸‡(ý™E¾','øéëG¿5aÙ*î™G×ËõS$!X×O\0Êº','',0,'?'),('½âqeR7tkØÜ\\ü&','wp-content/updraft/themes-old/twentytwenty/inc/custom-css.php',0,'§›•Iuìt§\0¾d±9©d','§›•Iuìt§\0¾d±9©d','ÏRb›“|ëX+	Ifî»hDdåIoòŽ¡p{#$U!ô¶','',0,'?'),('ÀrZóë­ÿh)9ÄÓQ','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Utilities.php',0,'70¹õÞäÁ›+LÇ}˜¤','70¹õÞäÁ›+LÇ}˜¤','7´“Š+\0\"N\Zµù4\"Vˆ¶–4¬ãOõŒ\"F','',0,'?'),('ÂTB›¤O>ßv2íî}Ea','wp-includes/SimplePie/Locator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g¨3Þyð%14ÉÑ','<£àñms§4æ3p-I™/éú8\'Jƒ© }.','',0,'?'),('ÅÒÆ}YØ}¦ÞÒYy°','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadPart.php',0,'\\[¿±Fµ)÷3·ë¶Ñ','\\[¿±Fµ)÷3·ë¶Ñ',',º.ÚBFÜ»æ“¦FùCØÐ¹LRP×ðgv×„ ¼Ì','',0,'?'),('È’\"N=‘Lâ°.U','wp-includes/blocks/more/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÏU ¢’ŸwiAÝÓÂG','€‰k/qÖ§ûÇÁŸ]îyµŒA¦ÚÝ¾}Gµ¢è','',0,'?'),('É…ð`1qè¡dÃÇ','wp-content/updraft/themes-old/twentytwenty/template-parts/footer-menus-widgets.php',0,'eÔ’d&ÚÎÞ¡ìp›','eÔ’d&ÚÎÞ¡ìp›','Ì-ó}rËæÂ/ß«Û,{ž7Ÿš8+›nïÇW[&l¿','',0,'?'),('Ëâ6šŸ\"ƒíúé×’','wp-content/plugins/updraftplus/includes/Google/Exception.php',0,'1Šü©ðÓZKý­À/ò','1Šü©ðÓZKý­À/ò','Æ·-†æ)ÛµØ¥Ýô•z9®¼ÇûÈI p*õç#¶Iê	','',0,'?'),('Í/§¸®óÛ+gUŽY*','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPartOrderException.php',0,'(DJBÃ¿rPàV¡¯TÆ','(DJBÃ¿rPàV¡¯TÆ','ê¨¡¿9aÐZ$€©[á,„XÔJ—r«\nB','',0,'?'),('ÒÄÏéÓ6=™‚Ì•','wp-includes/blocks/post-excerpt/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0äá¤)\0Ð¬ñš/o','F·+hš•áªp³”aÜqÃ‰ÈFbÂAÜ3i÷<ÂÖ','',0,'?'),('àãWÐMF`3ÌÜ$÷æ','wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2¸ÂÀCECZ6³›¬e¸','\\W³÷.Â£Öäï;\\	®Kú±[ÉzHEIª8ù€A','',0,'?'),('öQ[è¦öH‹©á„3šÚ','wp-content/themes/Divi/cloud/images/layout.svg',0,'!MÒžOèÈA‹RQo','!MÒžOèÈA‹RQo','yrŠÁŠÖ£F¸ŽÏ<}ÿâXqèuµ1iU=Í¿°µ','',0,'?'),('öÞ*Ê7\rçæ?á¶ý','wp-includes/class-requests.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=nÖL°áõjdBS;S?','D;Uº\\íQ&¼G¡ñ±U¼‚ÎºÞ\r²üº¬p-','',0,'?'),('ø{Œ>ètñŠ³A©8¾O','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/deprecated/ActionScheduler_AdminView_Deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Òívæ¦ ¸¾?_Q','V•¦¦Ü¢18U±\rì&]_RPºf~¯9Od\0ÕL·Iwvô','',0,'?'),('ü7HôÒœOôY‹C4¿Œ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchCORSConfigurationException.php',0,'xªD3‘÷Ký402fÈ•›','xªD3‘÷Ký402fÈ•›','Ó¦}ÞÝdÄà3¿22†z·wË;®\"7Ñ\nOpJF','',0,'?'),('üê‚±«©¥°<§ùbÓÀZ','wp-content/themes/Divi/includes/builder/plugin-compat/divi_woo_layout_injector.php',0,'èM&£šƒå¦z3mÔ','èM&£šƒå¦z3mÔ','ÇñzWçUz|v î¢òÖO@h”	gå$)H','',0,'?'),('_ÎM_uðrÓ;l\rë–','wp-content/plugins/worker/src/MWP/Signer/OpenSslSigner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ%ò’k–OØ‡2¤•z;','ù¸²o&ê”õ{1\Z\Z-Ý‘-*\'ŸMË´MŸOÚëÈ','',0,'?'),('\rRÐúl›Áöˆ0+ë¿','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/TransferState.php',0,'EHLrhÆ£Fî_ðYb','EHLrhÆ£Fî_ðYb','b«à€ôÀÀNÈm^-m&1Gù°N1~2ÈŒ“¦í4à','',0,'?'),('\rÎeœ—É¾K¼g‡¹.q','wp-content/plugins/updraftplus/includes/Google/Task/Exception.php',0,'b4œ8åö	‘BIßÑ$ZÕ','b4œ8åö	‘BIßÑ$ZÕ','Vn´þ@1[«ª)šÞ•{„G jCé¡´Ç:OËí','',0,'?'),('òÛ¥5#³÷þQhŠ¶','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ìZ[p±-Õ™úúÔ\"Ànž','õ^¨ÏY†É h¼ü¾#ÝÓ²ZƒvÔÃfÆ–','',0,'?'),('Á®8\'½ÁòØ,¹æ}','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DH/PrivateKey.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ìæ—k¤{ •#Ãs&‘Ó{2','ÊÓÏz˜£T¬`I½nôÉ)BB•D¨	šößmJ‘ûW«','',0,'?'),('‡s’ÎyÝê%#ÁröŽ=','wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦g4 V™\'_$Ï','(òÞöÜ\nN[-’à$Ø,¸àAUk±q¯e»Aóý†38','',0,'?'),('´of?Þ3¨P¿1ò\"â','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g\"Ì¤/O”›ìY¢·\'','Ê8æeêT›et\r jœP÷/¥ÀJä†™<^¾rÓ¥z','',0,'?'),('\"¶cÊæËZQÐFÂP·µ','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-library-autoloader.php',0,'ÏÑŠ˜$•4z§$£‘‘/É','ÏÑŠ˜$•4z§$£‘‘/É','ÍèHö¹9XÈ$=îUGB–tf\ZæðÙEÈ£·æ4','',0,'?'),('+GIº]$n–¨o‘R°','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦£œG#ŸÍ»æáÕ¿ªzÚÃ','\\’ÆŽÄÇ¤È‹¢%~—6ë¡Ï(›¿çŽ>¿T5ê¯®‰','',0,'?'),('?óƒïPºp-†Qíåj','wp-content/themes/Divi/includes/functions/choices.php',0,'’\"Â®WÚºI›ûç–','’\"Â®WÚºI›ûç–','LŽU…œ0lÙ‡çîs ~\\36|¦dBåv¢o×#O¡\Z','',0,'?'),('F«ÒeÀûÖ}í(·å¿','wp-includes/js/jquery/ui/dialog.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']2×z–L!E—¯,C\Z','‡üÑ|\r¤Ce>ü/kËªõ\"Eô¼0ÞÝ€V×LÝÀ','',0,'?'),('d•šƒtt¸\'Ý=•þ','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCollectionInterface.php',0,'kÐÑ>9æÇ¦–Œ:Ì­¹À','kÐÑ>9æÇ¦–Œ:Ì­¹À','âÊ¸ÀºTïûÞº%¼±KÊü–RÉÛÇ•Ñi>=b','',0,'?'),('i1üžE~N¬IâAÍ”àÆ','wp-includes/Requests/Cookie/Jar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y6„¥¢˜äÜû—5ÕDÕú','ŽÑ5¶tÇÂéiÿkt„j3Ø\róàh—vacJ\rˆÁ','',0,'?'),('mÝ:YÑâž¬¡î§Ã\'','wp-content/plugins/fusion-builder/inc/templates/options/iconpicker.php',0,'úüÐü–Š¸†ÄM³Y2©','úüÐü–Š¸†ÄM³Y2©','7Š\0³ZÒ,¢øfˆ#ÊW™U*J‡ºŽŠUŒhÝT','',0,'?'),('p&`ø³ÕZ6zôšÞöÜØ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaFormatter.php',0,'ÎS¢¾5Â»¼ð9äö','ÎS¢¾5Â»¼ð9äö','ùZ@±ªè[•÷¯	8Æ‚§>•;Œ\'Š+N‹Ã“','',0,'?'),('s«JzÕß¼ 1þ!Èð','wp-content/themes/Divi/includes/builder/plugin-compat/amazon-s3-and-cloudfront-pro.php',0,'¡¸Ì@9RC«\\÷ò\\÷','¡¸Ì@9RC«\\÷ò\\÷','¡S—ŸV%¹	Æ”{Eç	,^X•Eˆ8q\'kü‡´%','',0,'?'),('sâ™¼{DRÌ[¥kÙ1ûI','wp-content/plugins/wordfence/images/logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶zF‰åÞ€WÕ\rlá~6','VÉ{“‰Q9ïV	±†æü°·J	X™qˆ†ÖÚ€c“','',0,'?'),('t#§à’õtÿ×\0ŽoŸ¸G','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Utilities/KeyGenerator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýjÁ,f‘å}	®%xƒ','aïÛ-uÜ°ÕØ#~lÓöÐm_ÄDÊï×ñ[f#','',0,'?'),('vLÃ£(¶©.Ùí\rûv','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/log/Psr/Log/LoggerAwareTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yd\r¬îÀä-°ˆ\"¸¶¯Ç','\ni³×–Ž¥ƒ¯\\õøE¿~Û¸ßË ç–ùxA&ÇA¿oÓ','',0,'?'),('3Y€äŽ„‰ÆúS¤±V','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/StreamWrapper.php',0,'Üç)5=S¹ÎV;¯ÿóç—ë','Üç)5=S¹ÎV;¯ÿóç—ë','~ÓÏ˜M&ež[êò¾úõ×UÈ°‡÷±òØT	','',0,'?'),('ŠÈàý×X/÷Û\0þƒ	','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø‘¸ÔiJ‚B!<\0','VºÇ4“^CÃD\Z‘îÜÃïü’óÍÎ;ÁùU‚z','',0,'?'),('ŒÈã¯}/ÍpSÛÃÇ','wp-includes/blocks/page-list/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Jn[\'Zp!·Y¦$´S','Âðpâ-CFâ©Múb£bä-HŽùï“¿—êÂl›','',0,'?'),('‘N3M²\n£ÃS¿ì0j','wp-includes/js/dist/block-library.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ÿ©›†,ÄBE[ƒ©®ÿ','ÐŸ»cS2 ÉÕt0\nõS.(‡Ó)Ê?ÂGMàá','',0,'?'),('”ÔÖNÂ0¨×ºñr|„ý','wp-content/plugins/fusion-builder/inc/lib/inc/importer/class-wxr-importer.php',0,'½iE{ç¹pKðÞnGéq','½iE{ç¹pKðÞnGéq','I+±rÿYU‹*8Ž(hpÎ\r¬1ZâÛÄ…êqº','',0,'?'),('¡vç«¸6ãÉÅþKÿÚŽ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterInterface.php',0,'j&y´Ãô\"@¡tQØ','j&y´Ãô\"@¡tQØ',';—0Bc#Æj¢uäkIirR\"‰ÙL93‘Ç(¹','',0,'?'),('À£L)ñáDï-?k¤','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/CompositeWaiterFactory.php',0,'sòº°§ª)9ÜÑI5õ','sòº°§ª)9ÜÑI5õ','°&ÍÚ(×8BŽæÔ2ÆjÒOê¥lm\"+ø]­µ©','',0,'?'),('Ñx(›Å¥Üº„.’õÆÕ‡','wp-includes/class-wp-session-tokens.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9]ÝK¹UJW¡*¸ïh†=','®ð¦ŽÐ4‚\ZQuA^Ø¡þÖjò¬ªŽ$Må¦â0ã\0','',0,'?'),('Ô’×ã¾AŸ•×Ùùr«Ž^','wp-includes/js/wp-custom-header.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹C@$Ò·ƒSEô†#ä','òï\"èšy÷ä“§Àí}õ¿^HÞzÈ%þ•Z ÊÑƒ©œ™','',0,'?'),('Õw¸g‰:ù|š`¡\\Ñ)','wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/AddConnectionKeyInfo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wu|\'2ŽHXçaò<','\rd{Ä æ¬ý,Äƒ6f¼ŸnÅ®ÆÇ\\·b™Ó','',0,'?'),('Õ£ýÛÅßI­®Ìº³ãŒ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/AppendStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ó¸e\0^‰ÃÛOõËº¶î\'','œæÓ¾6Â.áE©SkÛ¬¢\\_¤t=?ƒ!åWµJ¿ú','',0,'?'),('Úz›ßa>`<™£!üCþt','wp-includes/css/dist/block-library/reset.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3ßU_`É#×™RCÓ','”~o\nÿå© ibÐ—ÓªŒ¹È³SŒµ€;æ¯Ò®™Y','',0,'?'),('Úš€xnœ‰v`ÛÈQ','wp-content/updraft/themes-old/twentyseventeen/searchform.php',0,'\\tDö”÷É Éò«•Ô9','\\tDö”÷É Éò«•Ô9','rs¯«%Âþ>sÏŒ?BnùíÙBdMÅ<:•S{–äëü','',0,'?'),('Ü^0pðùŠòkúƒ¡M','wp-includes/css/dist/nux/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',êÒ¨ ró¾cÅV','mt²˜¸‡ Ò¡;¿ÉEæKÜU»8D½Ö8Ó-óöB','',0,'?'),('å…S	¯¶Æ¡g	N–d','wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á›Vg@’Ý•X43ÔÐ',',Dâ÷U³}×>ÁõÐqèÖ!Ù5rÓ)0Gý—äÁ“ë','',0,'?'),('æÓÄh]‡‚Cù€²A*','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'IâËžaFtz\\ÄÇ®','°•­Ò¬å\ZADs½’Ž5†¬íµ?½£‘DïA/<€:','',0,'?'),('ë0Üšî¹Z´I·ä¸±N','wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'™Uå·ƒüÖ qDÞFîÏH','ÒëÍÔ¦Ä!Ùð‚Ó¢tLÜk.¾\"1ÝäCm»Kg£','',0,'?'),('óy¹£Ÿëï<ÛpOù/ý','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/TableSharedKeyLiteAuthScheme.php',0,'4?%v0/ð¡’¤4ß','4?%v0/ð¡’¤4ß','µcM¬C˜etÌì.ÂÑÿêUÆ«Y“xä;»çV«','',0,'?'),('ø3Æ¹Ü•jçbišÎ¥î¶','wp-includes/customize/class-wp-customize-nav-menu-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ó@V{R#8º7nón\nš','»œa¸H¹ÊûªÌûMuyw?h:¡B¤Ê<=’ƒ,##¾','',0,'?'),('Ç•ÇËm\Z;¦p,Ëc','wp-content/plugins/fusion-builder/inc/lib/inc/redux/panel_templates/header_stickybar.tpl.php',0,'q~(²º®kžˆŒÿÀ','q~(²º®kžˆŒÿÀ',' Ô«FÄbîõ;s»<6_ÌéeEV½÷Å÷+SD','',0,'?'),('¯\\£!¤&Ìâ¿zÌû','wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles_exceptions.php',0,'v!e(ªiå›:h×Z§','v!e(ªiå›:h×Z§','i3îßFïˆóº\0i7ƒ\'¼Td¾L‰¢F\0M}M','',0,'?'),('(½~ö†	æXÛ[Ú','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/BaseProcessFilter.php',0,'Å&í:(]u#¥OÑaªçI&','Å&í:(]u#¥OÑaªçI&','ºñ«YQ<Cd˜TïÖ\n¾Î¶ë•þ.‚Z`RC/','',0,'?'),('á‚úÉ4puD¢›¿I','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/ArrayCollection.php',0,'ó¥ó~eº´oVµUØ-”','ó¥ó~eº´oVµUØ-”','+§(’TÆ¢EBn¢éÃ`UHK´€¼0¦÷v6v48A','',0,'?'),('—¬µ2¤V»ƒJôÜŒ','wp-content/plugins/contact-form-7/includes/special-mail-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#Uç.WYÌ©ø\\œ` i','¦7)uF\ZÄ?Í­ñr­Ò%TÛ*;i\"­ÎÌiP0Æ','',0,'?'),('\Z6B8û˜cžƒŸ±eg','wp-includes/blocks/shortcode/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ³ÑÓXœcy	F–JGs','Ë ÜLÒë×(±½5g\0™[[{dá­íNmìj¥Âá','',0,'?'),('2ä$Î$ÐK&šfw ÝªÎ','wp-content/plugins/updraftplus/includes/Google/Cache/Abstract.php',0,'™å§\0Â¾Œ]\'9ãw','™å§\0Â¾Œ]\'9ãw','¯;DKÀÖë[…–#3&°WÚà<·º­ÔzæAQ$x','',0,'?'),('Z/ )[\Zvuý3Y²É','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/class.fusionredux_instances.php',0,'ì:=ÀL—CÊË)«·üL¹','ì:=ÀL—CÊË)«·üL¹','¡.Á}3@çÚNd¢¯dù®4ù„—·Ò5¼Dx7G!Å','',0,'?'),('Z‹}ˆrhO¸ÐÿýÚfƒ','wp-content/plugins/wp-mail-smtp/src/WP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uùÌ.çfæ\Z!&Ï×ø',']cùóÅ9HhzN¹oùlTrÓ\'ìhÒCÍrvî@!J','',0,'?'),('`ÁyíVuOk,éÕk&õ','wp-content/updraft/plugins-old/updraftplus/includes/Google/Exception.php',0,'1Šü©ðÓZKý­À/ò','1Šü©ðÓZKý­À/ò','Æ·-†æ)ÛµØ¥Ýô•z9®¼ÇûÈI p*õç#¶Iê	','',0,'?'),('b‡†êE„Ÿ£»º4t=','wp-content/plugins/wordfence/views/dashboard/options-group-alert.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊÌ»o«ìwG>p','ÊI¶`I^{çP× h„QøÏe:sG^›¤8£sÄš','',0,'?'),('j³àrá²Jê__ui','wp-content/plugins/worker/src/Symfony/Process/Pipes/UnixPipes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£r›æZ †ßk»^ý\n','³(Rn’4O•³ úí¼@”Åzí:IäÔôVo—·ðÖ','',0,'?'),('p#þnàzWCI…P´:£Õ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Region.php',0,'××uþ±ëÏHWÀ_++','××uþ±ëÏHWÀ_++','è´XØ+¸xKäb^‚N\nœª§±iEj)wy{Ô•>>','',0,'?'),('‚ ‰\r¦r§$ó0[“­','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')6´¥):öÛÍð¸Žý®â','H0¢“L³Ñ—?¸ãž¹.1ÇMòIeÓÉÙ£’','',0,'?'),('è,Â‚=9ä×ØhÌ6KÛ','wp-includes/js/jquery/ui/draggable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢ü:2¯„g9ÐtL³D‰','šÊCu£o.tþ?ïxdÌx“CK‡6†Î—p_¨','',0,'?'),('‘çí¸ŽGÏU¤$’5Þ','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/MediaServicesSettings.php',0,'“5ºþ#$R‚{WªöeØ','“5ºþ#$R‚{WªöeØ','÷pYad&}dy\0Æ6«\n2û*‘ö§Ê¯éá©÷š','',0,'?'),('–¢hÆ<YwªOd,Ú','wp-content/updraft/themes-old/twentyseventeen/footer.php',0,'@dÁ¨Ãš^÷Îó¬5ov<Ù','@dÁ¨Ãš^÷Îó¬5ov<Ù','OùÓ­ÃL—åYaÌÄ:bO_UQôUË5ÚaM4²éŽÂ','',0,'?'),('ÀÇ9NÂ&¦¥ì»«¶¨3','wp-content/updraft/themes-old/twentyseventeen/assets/js/navigation.js',0,'¡¶p3Æ²ds.b°N=','¡¶p3Æ²ds.b°N=','¾ ´	Ä§€¾°ÄT±‡æàGÖÒóCgÒ«,R¨Â','',0,'?'),('Ì9ã\n2›KQD_,*:=','wp-content/themes/Divi/core/components/mu-plugins/SupportCenterSafeModeDisablePlugins.php',0,'þMÊJ]5à·çã~î1','þMÊJ]5à·çã~î1','¥Tòc”:AV–£Ð6oÖ9šµa‡˜Ü™¼€Ç.„Ï','',0,'?'),('ãDY3<yþÅåâä8Ê¦è','wp-content/plugins/wp-mail-smtp/src/Providers/Postmark/Options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8œ´%¸¤øÓUnàó,','&•h=óî4 (UÄÛ¥	BòWŠ7ªpŸå3?D=@','',0,'?'),('ä¸æX‘±f£(6n^U','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/AdExchangeSeller.php',0,'ÿ([	ÆigmÃŽ£~ï6','ÿ([	ÆigmÃŽ£~ï6','ýŽàtA³BlÀÒãO>t¯7ý ïˆ’âu‰P}Ø','',0,'?'),('ð_•è}J%õOäsžîk','wp-content/themes/Divi/includes/builder/scripts/ext/waypoints.min.js',0,'­ßiž2ÏÝ$•(W6L‡','­ßiž2ÏÝ$•(W6L‡','ä:+Õ€b©‡Ä÷üªO§kQ^«NqäqqÆ:ž','',0,'?'),('ø7\"z”ìZ³JNÝÏõs','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerAwareTrait.php',0,'\"G¬}=¤€\r,&Íû5','\"G¬}=¤€\r,&Íû5','`§ðÙ¿ïÒÊF`=f¥óy©Ü`¹ê4ÄnI\0ïN%','',0,'?'),('û³>Ù/á¡‡_ó³éÃÀ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Òl([q×ô°ÉD#ï™','\\sÙ¶Òhb¢2.;Øm`F£Ðr^&óH-w	—yVµ~','',0,'?'),('ü&UX\rèL4{šâÑÔ','wp-includes/js/utils.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t‰ˆ0Ì`ß£—þ÷MVi`','‹js›@Vnaäv‹t\'È€D¾ì,Ý†Ž„ä·T;','',0,'?'),('ü¢1ÌÑÂ*{|dÌú\rV','wp-content/plugins/fusion-builder/shortcodes/js/fusion-woo-shortcodes.js',0,'Ù ‡Æ¼À¡ÓQÉÙäº„','Ù ‡Æ¼À¡ÓQÉÙäº„','tôÆæŽÀ6É÷^iB@ÅjÐ¬Ž’“˜ny\"»]','',0,'?'),('\Z	‡³¬LÃƒÔÙ¤{Ð¿å','wp-content/plugins/fusion-builder/js/views/view-column-library.js',0,'þ:Î§\n¿Û\r=Û7Ð0tÈ','þ:Î§\n¿Û\r=Û7Ð0tÈ','Pø*~ÿƒ”¢©)9œÇ…w´V3#„÷ŒWu\Z¤¾bR','',0,'?'),('\Z»šøÞ÷sÜ)`','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/UnexpectedValueException.php',0,'!‚3,SŠÙ\'Ÿ³¿Œì','!‚3,SŠÙ\'Ÿ³¿Œì','¬Ñ%û:„¢º×¶sàFJpÈ*kbé_Fj×‚/ÖLÝÝ','',0,'?'),('\ZÖ§‰±\\\ZÝh•i','wp-includes/js/dist/blocks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7°;Z\"Îy³‚u÷uH','¿VqE\"	d0;¨Ü¬Î1¢ÝD s÷×(ÚÔ','',0,'?'),('\Z$lm×dó§åàÂó/','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreatedProcessId.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%ÓO>äÐìœa\ZŒŽþ','Ér4É…BysYúW»D®”›×D½\Z‚|«Î!›','',0,'?'),('\ZO¸3F5K«;œ@ â','wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Î@õq\\ƒ}±«§—[õ','þ[ËTÅnŸEjdÝ(²$:!ÁhÔÎ\0›sè><','',0,'?'),('\Z&ô½cRà< FiCä','wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ¤ÜÆW^œ[¥g¹','ÛdLÀ¾ú›“cK~=0jEƒ]³þá‰~\"Ü','',0,'?'),('\Z@±«ªqs²«g ¶J$t','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobPagesOptions.php',0,'?ÿëò«§P¾Xõ_¸?','?ÿëò«§P¾Xõ_¸?','.žè|…Ë”i_ÃÞÞúÆÜùAëÚêcëzõÚ%MY½ ','',0,'?'),('\ZOTËi ½¤A1Æî›','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingSecurityElementException.php',0,'Ôý¦<n\"\0DR×>ÑädØ','Ôý¦<n\"\0DR×>ÑädØ','IâôûLÅ\0_ÈBqjòˆ@ðò™€÷Ä¥?÷¹','',0,'?'),('\ZPÉª––j¾=Ž#¿ô‰é','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/BatchFetcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E“[~%4È °³çàâ','ô’QF‚Ïìµñj¢œd6Kël(xöNg¾žXl×tý','',0,'?'),('\ZTTD±Ñ]ù¶Öbqv','wp-content/plugins/fusion-builder/inc/layouts.php',0,'§ÃZù¡ãýÁ/¢ü<Q','§ÃZù¡ãýÁ/¢ü<Q','Û|Ì:6ônfG)×3ó­ÊÄÞ¾8ï-\"^Sj\'!s','',0,'?'),('\ZUcs‚Ú†‰¨HÁ{=ÖÝ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/ChunkedIterator.php',0,'ŒÝ~‚ šjm±d','ŒÝ~‚ šjm±d','89¡ÛÙõ8`± ËÕ£ö±À£5…²®ôi-I\Z‡j','',0,'?'),('\Z]þÍ‘A€ŸäœZø¸„rÏ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/EmailCampaignsApi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L_„Ÿ¨Ñ¦ÉÆGŠ¾','…X$Æf9»Žžöžµ×›<fxÑ–¤\"Ã%e¸\\\\d','',0,'?'),('\ZjÝZ¯à.o %]e’_-','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÉzõðËõÝÄ§7€	Ÿ7V\Z','°p•‘å#4®oÛpæp8Ü^ÙÛ°Ó^ÎFò+×£ )l','',0,'?'),('\Znù”•8#.µþm2Ü¾','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/numeric_not_empty/validation_numeric_not_empty.php',0,'OƒŒÙÇ{ÉžY}–+âß	ý','OƒŒÙÇ{ÉžY}–+âß	ý','X$Û{¶kïQOùŠ;‡Ÿàçƒ#rŽÝÉ×„','',0,'?'),('\Zqžik54ãù«èÁù','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP384t1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U²ñfß¤Êã¸Ë¬Œ¹\n',' 7·¤N†O18hHÐŒm?Ö;¸*\ro•«~?s¤7z','',0,'?'),('\ZsËÈÌx&ühaÌ\'Š','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractErrorCodeBackoffStrategy.php',0,'S´Ã¿£1±þì.ˆkñã','S´Ã¿£1±þì.ˆkñã','”¨YZ²L„\0 --Œa8™e\":ë\\c³þ0 ä¾','',0,'?'),('\Zv<©–òÇ8²Þ~\rµ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp224r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùF¤ü¢Íòa²uò~¥Ë','D¬Q:1ö!€ðQ‘>jôùølŽt“Š ÿö±','',0,'?'),('\Z{ß[.Pæ†Ee*àTõ','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/honeycomb.php',0,'­—^3Áý˜D¤ß—.%t@','­—^3Áý˜D¤ß—.%t@','cg‘ŒBÝVrÄ\rW?gx¢Œ¡Ž´¯Ja_æÛín','',0,'?'),('\Z‚”¡/}D5XP\\z	','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/NullCredentials.php',0,'§,8.`PHDÿÖ‡œN','§,8.`PHDÿÖ‡œN','T£}éöxd{÷qZ¦†ÜDWÀÑí+‘1|) ø¢c','',0,'?'),('\Zþ½–L6Nå1×;8œ','wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"Žìáw^\n ¨¡k6','Œ!Í5»@ãa¾6t„oš5(DÛs©ÐÑ\näÁµæK¿f','',0,'?'),('\Z“™(¤Q^Ê°,¥nwÐ©t','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/PasswordPolicyViolationException.php',0,'»îG\rMŒ.à>×çö ^h','»îG\rMŒ.à>×çö ^h','¢ôÔƒÇñdl9øˆ”Ãf%thV¶ÙOòÅ¼O','',0,'?'),('\Z—ìÊ‘GîB\"äghÈ0„','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Update.php',0,'ß,e …¬2Î|š€Ã,','ß,e …¬2Î|š€Ã,','bßÇvÌ]Ê|²¥_>r”Ûï£©¤»ŠÉ\03ósŠ@å','',0,'?'),('\Zš	¤“ÆßŸ>þ¹–Ÿï','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/media/media.js',0,'|aëÃµjÛu•ÆÁ–ªéñc','|aëÃµjÛu•ÆÁ–ªéñc','P:gÚ²ëLæçj^]Æ>®„ˆœMÜºö?øÅXÏÃ','',0,'?'),('\Z¦Ü£MèŸ’þ“¹¥=v©','wp-content/updraft/plugins-old/updraftplus/includes/Google/Http/Batch.php',0,'“ëŸ5kkL¼öý¼&ÛÞˆ','“ëŸ5kkL¼öý¼&ÛÞˆ','Ú¿§¯ÄÓUÑ•+°‘fzŠ°Á:*¥ÞøŒ§]bø','',0,'?'),('\Zµ;5õ(žOòOÖR«','wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áþµÇ›ˆ¡ÆýlmˆD!','Ö\'ß9‹\r9Š\0o|óë\ZØÀ§ŸÛñÞ|•·¿0K','',0,'?'),('\Z½ä>”{Nÿ\'%UÁÒHæ','wp-content/themes/Divi/epanel/theme-options-library/app/store/theme-options-library/sequences.js',0,',êÇ/h$YÂNŸöMdŠN',',êÇ/h$YÂNŸöMdŠN','×QòõfŒT¡Yñ-»ûþžÁÕ¨`âÞªºyý','',0,'?'),('\ZÀ°Bòƒ2Ü–Ýå¸\Zôô','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/VolumeError.php',0,'>Ç¯µå¥É‡\"Q·\Zˆ, ','>Ç¯µå¥É‡\"Q·\Zˆ, ','oLÚyÛ˜G£=^ä{÷o¾»m#ª¸j8\"ŒlL','',0,'?'),('\ZÅôåÙò¡„iêÿDú-','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/ServicesBuilder.php',0,'+¡lþ´¬«À•qZIç{~','+¡lþ´¬«À•qZIç{~','d:nyò<ï¹X0:‘i„yÖƒí¯ˆ<µF÷dŠÛ`„f','',0,'?'),('\ZÆä¼EØZšáŒ ”Re','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hsb.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•S‘_«‡\08\n\"	+4','ò€ø¡öC4X.eC˜®å¹Û.“F„þ¼îmëã','',0,'?'),('\ZÒ”C<&‰H+ÊCþ$_Á','wp-content/plugins/instagram-feed/inc/admin/main.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?šìl›P>úàéa¤M','·g!Çÿòƒ±\n³IEâ\\¢k÷SV[Ñ-··\' Òª/','',0,'?'),('\ZÚøéU¼³‹zŸ/éŸö³','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/facade-classes.php',0,'d}ÅCf¬€ý×=Fòc%','d}ÅCf¬€ý×=Fòc%','³ Øj*Šö—.[:cU·1ã\0”¡ƒâñ÷ºh¨','',0,'?'),('\Zä<¼¼¼Ö9Lq·>ú=','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/ServiceManagementSettings.php',0,'/™¸®–ËGÎéîÃ‘É','/™¸®–ËGÎéîÃ‘É','(–|cãð{Á\nØˆ=åíýf˜ð<_Ò\'Iˆzvz¹ö','',0,'?'),('\Zå£’àU#‰\rÅ<½‘','wp-content/plugins/wp-mail-smtp/src/Admin/DebugEvents/Migration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾‚ºl˜‡‘Ê£EÓºåUg','ßm¦¼$†›éö…ÅRY·gEþ!…${Ã]é=R›','',0,'?'),('\ZëãèÁ¡•)qtsCI9','wp-includes/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'‚{B{3Ð‡ÎlEÂPr','xm‘rF% ÜVNê 34„FÅ“ÎF˜ÿPucÛæµ)','',0,'?'),('\Zì´e\n/]\Z ïº1','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnTtlError.php',0,'uý¨¿U…\'­x~1ÃžŠK','uý¨¿U…\'­x~1ÃžŠK','^\\µN¬»ÒÛÙxN¿ÍË°gZÂ´xi®}p4•#¤','',0,'?'),('\Zïy‚„8R#O¬yÎÆ','wp-admin/css/nav-menus-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sœ¢ì«U¾v3Õ¹ôÈ','UöFóƒ?§Yéå÷dH8raý%µÉ°Ï4þ ‹wÍ','',0,'?'),('\ZñÍÂ}l®IÀr™—','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/advanced/wipe-settings.php',0,'×Úul%E=¦EÀ(µj','×Úul%E=¦EÀ(µj','ºÌ¿ùÝWœü™Â:qðÜÆ\rK/‘14_@Ò¬à','',0,'?'),('\ZòŒötbøŒ#Ó‡?ÀÖ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/MandrillHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±‡Núï2Þ\0l$¹<AX','¶‘t­­(|Þ*‘,ŒÃ•ºŒ8~bq5ä1å]u','',0,'?'),('\ZõÛLÃžgùüh\"ím','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/Api.php',0,'ìÄwüTr&~ŒÏ\nm_K','ìÄwüTr&~ŒÏ\nm_K','Õú³¤ÕÇ…\\6GV»[â9WØ 21—Xi:Îý\\eÊ÷†','',0,'?'),('\ZúÃ\Z:\\®RfùPÛ~3','wp-includes/class-wp-metadata-lazyloader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I^ÃPâÔ©;$Øü+\"È','^2ëéú)E>XµˆçŒ4‹:úçÀU&ßß³;±è!e','',0,'?'),('\Zü }%„ò¢;|£É3w','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3SignatureV4.php',0,'?! È|äk,ÿºïß[N\0ÿ','?! È|äk,ÿºïß[N\0ÿ','Ø°ržå7Z5Ì·Ñ‹ß©cìN+¯¾&fù(38Œ¯åœÆ ','',0,'?'),('\ZýUEäs(î±÷ž#Eöp','wp-includes/images/smilies/icon_mrgreen.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$_Æ½u²X|I%~$','!B´‡ºI1mVØ-¦‚¾|Ñ˜¶X5DÆ8Ž†hó','',0,'?'),('\Zÿ¹Â/¡ÍƒžíT%«g4','wp-includes/js/jquery/ui/effect-drop.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«Á¹é–´Šu)†B¬Ñ1÷','äÚv¶Ðhœdõ…ÚLÝV«yô…Š–È^n\"èÙ‘\0]pû','',0,'?'),('|XÝ½$/F4]Im','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_NullLogEntry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4bøBV®N•-`$–¡','c)N¬þ†k„…Y\r$o’B5!&*ÖdÒ	4ï','',0,'?'),('X}h¢»ÿÚNµ4¹M','wp-content/themes/Divi/epanel/theme-options-library/app/lib/theme-options-library.js',0,'ñ\ZÓì[GÞ?Þú.','ñ\ZÓì[GÞ?Þú.','9%ÐÔDEÃÝ T¦pÕÊ`3šeŸ‡Ž’¾I{KiÆ','',0,'?'),('$s4Lj]¨\Z³l–U\Z','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/JsonError.php',0,'K7hh‚.ƒŽ:kÃ¯','K7hh‚.ƒŽ:kÃ¯',')Ÿüïö±„—Çln¯#›Ž\'SËÉfBß©/ù Ä©','',0,'?'),('$îŠPÙ`‰‰\0gï¨X²','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yFÂ“\\œ»â…Û2šÏÿí','2k¡sÀÚ\\>ª…RI:nHðÈ¿Dmà!zzØ±À','',0,'?'),(')ÎŸè`çtÎôù)mè','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Account/Get.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±x«\rrq&ú §£äÁê','T]éå²œÜ~ÁWÒÒHÉo)¦_ÕeÎ€÷¶vµ','',0,'?'),('-úìc©<Èî@ÕVsZ‚','wp-includes/js/api-request.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9¢÷¼Âß¿G7p6{“g','œdÏ6Q\\ñ´±©fÿ:¶±‹‡ûG`é‹Ñj1Vã','',0,'?'),('.Ýl½v³{‡œSF­c','wp-content/plugins/fusion-builder/shortcodes/fusion-code-block.php',0,'b:ŽÈ\r~¤LZ‘úç¤','b:ŽÈ\r~¤LZ‘úç¤','Ò¡Ô\\>¸d0döDò“€ÁO |…QÞÏZ0ŽJµ','',0,'?'),(':ÃM¡¡¬þí\'D?-','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/slider/field_slider.js',0,'\' à%Ó\nYÙPF\r²M','\' à%Ó\nYÙPF\r²M','{´¿?-\\\\­Ò±käIQåëÁªhÄL]ú.®$Óòà','',0,'?'),('I¼Ý¨’íüä€Q±Ãæ,','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmailSender.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸ñ»C³»rX­‰CÆÆ','^Àü<•‡Â¼ža6#Ý´´v±»<³Q“ñbâs½V','',0,'?'),('MÿµÖ“¸_-?>Ó\n','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/AccessDeniedException.php',0,'ÁïÊÏš~3Dú@m°Ô”','ÁïÊÏš~3Dú@m°Ô”','\0ÁoñuåïÌŸ~ÂI©$6bÉ“¼S¦?C~Á','',0,'?'),('OßÄý‰4û´zb>.{VŒ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/EntityTooLargeException.php',0,'£c·[a@ªYQmiX½„‡','£c·[a@ªYQmiX½„‡','YÚuMÊx-+0ÍA®0knÍÛ2ù†¦´à¹šÙsh','',0,'?'),('VÞÊ§ÞïK,8 È1\nÉ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Label.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ç›¢oäàF­,;™HzÔa¹','lÛ¾åB\\ÆçÚ¤©\'×?FÕ­Íð‚8h\'†|š\Z£¤Ž','',0,'?'),('W¡129“q›5¦ë×ktÍ','wp-content/themes/Divi/includes/builder/module/Button.php',0,'vß®^¾¾Ö¤o±G%Û)','vß®^¾¾Ö¤o±G%Û)',',Âü&Î5Ëí@4CçYùE1ý†Ì¶þpwÕÀÏ%ˆË','',0,'?'),('_ŒÅzˆ­¤9·Ý€D:¦Õ','wp-includes/blocks/media-text/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/ï~¼°bÉ7›Â','×mÌç9®\ZÓKFƒ¯ráÁùR†‰\r‘Oº,yEì','',0,'?'),('aÛLv¯ÿl2ORXÑß0F','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5¡Ý-êÕ÷eP<BÚ®','Þ\nGoymþrÈhtE\npòÄÄªúÿ‚bsïÑ=\\','',0,'?'),('bÇN=¿°¨,ÀÆSíà','wp-content/plugins/contact-form-7/modules/text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zdIe¹`ÈôÁjÒO','–Ë-îAêàÈ	ÌˆË9vZ-ÖÝ	¤p†Çj4','',0,'?'),('iÚ\n®ÐÿÛu·•Wâž','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/JsonQueryExceptionParser.php',0,';ÕM×à¼„Ð›Ä2o',';ÕM×à¼„Ð›Ä2o','©zËìTÕ¿|ð?7Â±@ÜÄ?3»åÍ¥ì¿úò¨‹Ç7X','',0,'?'),('ot·põ¢Õ4ÿuš','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/AbstractBatchDecorator.php',0,'¹ñÎñôÕµˆk!›&Æ','¹ñÎñôÕµˆk!›&Æ','â±‰ŒëóûíÂ¤ß	ÖA‰—”gÏšRX-¾à\0','',0,'?'),('‡–9¦Hô‡ð›^Œ–ëåÚ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nØÕ[½¾Gj\"‚ÿ','%M¼}MöáÁ^m&Ø*Êî\r#.z\r³sˆÊzf9Öž	áe','',0,'?'),('ŽÏGÆ¦Ò<èÓ-','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/PaginatedIterator.php',0,'DÔKöUñIjw¦ªB£Ö','DÔKöUñIjw¦ªB£Ö','_js£I6Œ*Âº ÚÒLŒ—‹L”\'ö¾´OV@Jò†k','',0,'?'),('\'}ûM„5\nî®¥4Ì´','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateAttribute.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','È }&€ø?ža3…¬cE4','Ø°>íqx“]ÖTã]ïÀgúð¹P{ÕA„Ð‘b¿?Ü_¶','',0,'?'),('˜¢’í?B®3Œ¶ –Ç','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aòiêk²/Êå¿j\rnŽ3','1À\'§¶‡Õ».ìOÐà}5ºAfi¤~¢>î:}s','',0,'?'),('œZt\\\0!»>\néTIAt»','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequestInterface.php',0,'tœNÜÒöÛÀJSÅ8¨î','tœNÜÒöÛÀJSÅ8¨î','pÚizù1¢ŒèËqþa® ŽœÚªŠ&˜_;O¾§ó’','',0,'?'),('§Kv¥ò™Ìk\"	5¦','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/docker-compose.yml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Ì¥‹h•¡}Ôñ‘ÿÎ','*–b–+.Fÿ#i·Ë*øa8M¶‘­yKœg‚ªƒ','',0,'?'),('§y´ÝÚ!¡\0pZèˆ[A','wp-includes/js/mediaelement/mediaelement-and-player.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mãiz+*;)±ûE‹','š-5(âì¼:£oQ[Ìª»¬Ï\\ã\nm~¶CP','',0,'?'),('¶¸,~ö3€íTEFý_åS','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/EachPromise.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!SŸÆ•£Î±vhìot','aÐª>…yá¿%ûNÐ&×j²“Î££å~ë\n¿','',0,'?'),('ºE»È–qÈŠ?2…Hè','wp-includes/js/dist/api-fetch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öªÔäŠnÏmæh®à{ÚPã','½(òÔ„\"Ã@>ajw@wß74UC0ÏD½6/°Ë|‡','',0,'?'),('¼5pÞªïm—\Zµˆîˆ„','wp-includes/blocks/separator/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ò|îD°Ä÷JoAõ£ó','\"wÐ	þu®¡{[êH¤6WÖÎ¿Éü','',0,'?'),('Ö»E\n»<¥B„[ì,','wp-includes/class-wp-ajax-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o6Ú)·Qÿ\"SÏƒtÆ.HÖ','”¸[‚$ùœ–gÊnM!^\\¦Æß9tµtßÝ>ZÝ','',0,'?'),('Þ›“èdA¥òóü\rD2Ñ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/extensions/import_export/import_export/field_import_export.php',0,'‘Ëé[2¿éá}9Â–]›€','‘Ëé[2¿éá}9Â–]›€','Æè[j-J -/,Y˜¶ÔY³ãÖhÄýmµY»Z\"1m','',0,'?'),('ãð5ˆß—zK’ÏqŒ\'','wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/StreamableQuerySequenceDump.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=†UÖNev)ÄOÝt?X?','æˆ60å¾#|ñü}É¢gÞã0¼Î¸‚-;ô','',0,'?'),('Ièiu­ñ…¬”È7›Á','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/DeleteObjectsBatch.php',0,'ß$lÒÌ…!8˜Õðœ!±ä','ß$lÒÌ…!8˜Õðœ!±ä','‘ƒƒ„‡Q°pÝª4·D¿™šD/c$_¿(|¦Úå','',0,'?'),('”mÇn9ÆF±6·','wp-admin/css/admin-menu-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŸÜ8d(OýíøVYEÈÃ„','GÕÕœè.¶§t¯·œzYgì^Ž˜q¯°´¢,èèƒ','',0,'?'),('zÖ~Eé¹ªâ•Üêl–','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-pricing-table-preview.php',0,'Ûì\0G•»–±éû7\0€j','Ûì\0G•»–±éû7\0€j','o—ÐÖcZÇÕ­Çt\Zc¢vª]U·]Ó¾ÿ2ð¿J%Ù','',0,'?'),('&c®èÈ)£>Í\"|›EÓ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BucketAlreadyExistsException.php',0,'Ç ôj\'»:\rØcGx²A','Ç ôj\'»:\rØcGx²A','1k _†±YÜ‚çV5bn8ÇÐ@] þëHz	¥Í','',0,'?'),('\'¶\\}üÛõß÷Q»æ:U','wp-content/plugins/worker/src/MWP/IncrementalBackup/Model/ServerStatistics.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é7;2†(8î#õ\\:µ','>­ òŽ­KÖ|ý‰®…äÝÒ<g \0<hÉ	!Y©›Ž','',0,'?'),(')s		£,ÜƒJyÙ(Ç','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d“fý4\ZVø|ÅJÈ','ä¡NNîÜOÕèãbT¹®çyi(5·îc÷^¥ì­','',0,'?'),(')úMæÈ^ð¶Ã»ozð©','wp-admin/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@…×œ¯x>c—”­ºµÖÂ¢','ì<\0Ð…Ò©¦•Ù‡qU%˜âG†ò7ró\\œ*–¼2J','',0,'?'),('4%·IHÄO‘‹Ê°ÒL','wp-includes/css/media-views.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ3\\ÐÏlô\r‰!Ã5\0','\n˜Æñß}H8#4º¥¦0ª‹Û²\nCQñfÎ¢+ó9û«','',0,'?'),('=dZpeóhnr·ø$Í','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Parameter.php',0,'úBÄämêº×íuµ\ZU@ª','úBÄämêº×íuµ\ZU@ª','hG?ei—ë‚²Ý¿°Ù˜Œ Iûž°Ì/Õd3·úØ©¾','',0,'?'),('Cð/ù;)ŸªÙ‘î°o','wp-admin/js/comment.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­²	Î\'vÝ\\Št\'ÇÓµŠ','ku0‡ˆ\\áVéþ‘{0¶wZN%Y-»)µ­ÍòÎÉ^`','',0,'?'),('G»’®ø-—¬Üþ¼','wp-content/plugins/wp-mail-smtp/src/Providers/AuthAbstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Û\r©Ö%oØ?<Wüè¶=õ','+IÏîäÕdËt¥E	iåÛÙOàŒwaôñ´–óàZEï›C','',0,'?'),('H-¹F!|úJõ+)u','wp-includes/blocks/post-content/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+c;Nžñ‚/ÍÝ v€.','ª“\ZÏÿ$…Š#ãk\\=¯¯ü¬Z®ÙGóÀv³×ÜŒo','',0,'?'),('HëÊ~Ý\nãóx‚ ­»|','wp-includes/js/dist/token-list.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜…-ž\\Äö^ã†kL','ó•¼ZZcÐ°õà9)Ej&;|å°ÄÿÜ×&¼[Iù¥ÓÍ','',0,'?'),('R8Þõž±9‚nG\n\"\0Ê','wp-content/plugins/really-simple-ssl/testssl/serverhttpxforwardedsslon/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7V´Û H^¶Šû(¥J²£','\rOTØÃ¬]5@>•Šâ·GÏ`2h	ýÃ2©Ø\0','',0,'?'),('TËgslFí¢æÊžàõLy','wp-admin/js/set-post-thumbnail.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ÂPµN¼H‚9eò@I','e}#’êäÐn™qÅJ¯rJØæQ<d…ZÌKž4','',0,'?'),('a/Ã)veÜF<ê','wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/ListTables.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J±˜øvQ²væa0P²¹½','GÆ/›å{PÔ	\nÚð»Å9Ÿ})—ÊŸçœI','',0,'?'),('a”@—WrQw¶ÌZ\n.î','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­Ü‘zŒg<Nèô\n?o6f','ŽÁ“R °ôEgøX3•†JAc”ì!aú_ÊôS{','',0,'?'),('cèÒ¤|•.L©™òÔ~','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncError.php',0,'r2:£»Îç“&½t~m','r2:£»Îç“&½t~m','\'÷(ÿ;ÏUï=³J\rfÁ-ÒrèZÆÁÓy¤/6Þ¨m9','',0,'?'),('h“À#Ù•QÂYÆÒ-aiœ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ContainerException.php',0,'p.Í‹S¤4È;É­C+s','p.Í‹S¤4È;É­C+s','ZI¢|»ä¦Y¡êE›=”PöCZñ\Z@[o¹æ9&=¦é','',0,'?'),('l¥t#hÎK‹Âƒˆ†','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerIpsError.php',0,';ƒRcP©ÑÆ\Zÿ›ýMÊ',';ƒRcP©ÑÆ\Zÿ›ýMÊ','zŠEFîÞØEÅÔòÉØ–ûHÍmŠ¡‡Íˆï','',0,'?'),('mÚ½Ž/g9Îžô6ô','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/ConnectionStringParser.php',0,'´	ZiÝ9ók5.ê4ž®','´	ZiÝ9ók5.ê4ž®','©öÉ—edc~6nzÏ’é­nEFžtÄß\0­ú','',0,'?'),('z˜|*6žS\\5·ã¯3','wp-content/plugins/wordfence/lib/wordfenceScanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žXÂùØ¹w$’ð‹§','Sš=óu¦¾Â%TªMÊ\"Ã×7ðˆGì¥	è\"M(Ó','',0,'?'),('œ\n$zßX£`Î1Bw','wp-includes/js/tinymce/plugins/charmap/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›²á¨\\õÓ5^ÀÌùµ','[Bò\Z,;‹ïjfeÃMUáj|)òrv°‡>UóF','',0,'?'),('´=b¤6šÞhs€ªæt','wp-admin/ms-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©„:1R]	l IÈç!#_J','7äE›HÌÖŸPuŽŒêÀ‚ÇZâŽb³…G','',0,'?'),('Ÿ¸\'úFEŸA–vQMv','wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>\r°Ã5]xVIÖ\'Œiµ','ÕìG¬ºÝ…\'™!óÂY®E¬3¬ÜP5ad‹ºM¾ÿ','',0,'?'),('§ÝišU¡QÛêîH}','wp-content/plugins/worker/src/Symfony/Process/Exception/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–qÃŽCœ\nÒã|‹³¤','*Ô’1µü&ÒÖv$ïã ×ºÖá\nK·5Ú_J…ì@','',0,'?'),('¨‚I§ƒ°÷ªUzYWg!g','wp-includes/blocks/latest-comments/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é»²óØ¿öd6xÖT±','Èg^ é%ŠjeÐþwoƒäe¿UQuˆÖ¨€Ñ/×','',0,'?'),('´^Öu[Õp}`BøóW1','wp-includes/blocks/table/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uQœû[ÀF,³ZŽÝœ…','Å°´Zªé¶¤Ë\'.¾iTõœ*è\\âOBjYf^…k:å','',0,'?'),('¾;Ô(Óø; ÖOŒIôO¦','wp-content/themes/Divi/includes/builder/frontend-builder/i18n/portability.php',0,'•”9‚üv\r5ù¹	åÇãù','•”9‚üv\r5ù¹	åÇãù','“vS£ÝÂ&³D§÷©W±és).XÁŒž˜É]<éIæ^','',0,'?'),('Å˜¾i@´qW]73«þP]','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php',0,'3¸5ak¬x‚Þ5¢ÀäýÐ','3¸5ak¬x‚Þ5¢ÀäýÐ','¥”Tƒ¢-ânìýðˆÇ@L7¬#|öæ¼6ÕF³\"·P','',0,'?'),('ÆpÌ=Z\0¯S_ÿðÛ$','wp-includes/blocks/cover/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q×¶9O\Z;`¢BøÀ§','èhk}ÍK†¾<¤g8æD=~óâÎE»ÎKº0üâ','',0,'?'),('Í aÀóE¬ÅËŽð¨¤ã','wp-content/themes/Divi/includes/builder/module/field/attribute/composite/type/Tabbed.php',0,'†À]tAkê±ÿ$7ÝÄ´','†À]tAkê±ÿ$7ÝÄ´','\ZØ¥£x-\r[Ïl:néw££!|ÍÇ¤ÏãèØ\"9','',0,'?'),('ÍJût’ª/¤fwKÄ=_ ','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_InvalidActionException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼±û2Bè¼_Qu\ZŸä','KÎcqV¥Z`ÉlÖ¢¾ú±°¯úpÄªÎmWsûÜL','',0,'?'),('Ík0Bßâa÷î¬`Ë','wp-includes/customize/class-wp-customize-nav-menu-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™ö,¼#YÇbu3„­¬Èû³','ÅÓº÷fˆëíÕ\r²Õ×o!ÔcY	®oœÒø\rö¦ÑÐ','',0,'?'),('Ô| }£{ç_\\–Ý$ñ','wp-content/updraft/themes-old/twentytwenty/404.php',0,'jãkKÖ`xÉx\Zd,mAi','jãkKÖ`xÉx\Zd,mAi','™a>øbG_dòEh)pˆFq7õf3!R¨Ý(YpO','',0,'?'),('ÜŸºÒ¿Bâˆ¶òêòæ­','wp-includes/js/dist/media-utils.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5 †Àì»‹§°IžWcª',' ËþÒ~òw–(ðœ²=Iu*’Ú\\÷§O…\rÏøƒ·õ¨','',0,'?'),('ÞÇŠé±3?ê+µ^øÒ','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/CloudMonitoring.php',0,'ËPƒ?«8`.Ì°´MYê','ËPƒ?«8`.Ì°´MYê','©!Z<BYtñömxpøò6$Ãà!›®;ü6ÂÔ¼_','',0,'?'),('å¡\rˆÃÎCd³÷±_–¸','wp-content/plugins/updraftplus/includes/PEAR/HTTP/WebDAV/Tools/_parse_propfind_response.php',0,'šû‰Ñ){FcÝèþ(e','šû‰Ñ){FcÝèþ(e','_úî—ÁºøRhÚüÐ¥\\P€\'bDª5\náTn=U÷‰¼q','',0,'?'),('æjoÂaOËHŒ{÷Q','wp-content/themes/Divi/includes/builder/feature/DoNotCachePage.php',0,'¤\n±²Få‘¸¿\nV<ý…3','¤\n±²Få‘¸¿\nV<ý…3','Â~Ã¢Z\'f¾¦»–ã(]ÈyéÑsZ;ÜD>¤ÔNW8','',0,'?'),('æ¡Vüš©Ëßª8$,Z7˜','wp-content/plugins/updraftplus/includes/Google/Service/AdExchangeBuyer.php',0,'&u×\rñ uX]ÞÇ¢•íÓ','&u×\rñ uX]ÞÇ¢•íÓ','ÅÐËÈ4Ú¼IÒr­ÄÞ½Æ÷Õy‚ô­¨e^NÕ´D','',0,'?'),('çJÐÉIn;‰Äÿäq','wp-content/plugins/updraftplus/includes/class-job-scheduler.php',0,'IÙ¦(Ñå†ª§2ZO3','IÙ¦(Ñå†ª§2ZO3','GÇ‹žô°M*Ñ*¡ðg©5}“Z)Úâ‘¬ÎÜº','',0,'?'),('é8ÛÅ}/_ù}3N0ZBà','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions/EvalBarrett.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/dN2‰ó2™ó÷¼ª‡‚A','öäK%g+Äà–°ÔH×Ûìp*…ò*Æs,tÙ','',0,'?'),('ê-=Q°CwàtnLà¡#','wp-content/plugins/wordfence/lib/wfBrowscap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾¾\rÌe.ìÝïôñbóÂ','HzŸn´òõO×#¤/út„Éš\"¯ˆU ŽÒA¿iŒ','',0,'?'),('í+×t¼×ä…wB××C','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum.php',0,'`qšÂîÏµ=wf4ò²¥','`qšÂîÏµ=wf4ò²¥','ˆÖ>ŸEýÉ¤Où\rÝãÔðçÒô;ê«¶ô7Â0W@=\0','',0,'?'),('òk¿ñæ¬o)¯','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/RequestException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥¢²<¾“×PHµ=à','†E\'yÆlÃRÌ+º×µWo2¢•P¹îI&ËPŒ¢,ÑÔ','',0,'?'),('ò\Z„î¯Ž&¡BÊó£j»','wp-content/plugins/fusion-builder/inc/options/dynamic_css_js.php',0,'-Þ“Ä«ömÃ\"¢øÑ(','-Þ“Ä«ömÃ\"¢øÑ(','ôÂ½@Pýçœ	rj†³Â›¶=7thRØ6ÿ«ÖsÐR<','',0,'?'),('ô6‡ÕL0 ÔuÞ³WCA€','wp-content/plugins/duplicate-post/src/ui/user-interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©a¦Y€¯ÚEÉæ','cï,ò»^¾	ÞbYy³²8€kït¸n åMi','',0,'?'),('õžý†$,V‰€\n½«„','wp-content/plugins/really-simple-ssl/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<Õ6ÌØ[¯À{·XiY±’','ê£ÎðÜ\'9Ýž¶Š¡€yr5ïµ5=\rÔK>÷oäð','',0,'?'),('\nœßO‚_˜«;]/^™ç','wp-includes/images/down_arrow.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üø„V¾~ÆoöYnG~_u','ž€hŒ8É§øºô…ªp¿uóü{9–‘áÕ…›J‚‰¤','',0,'?'),('Î½Ê}ØVº+µtB³','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­žê¤€”xÃÙ ·%•cl','Nž8,ÿcÝÛíëaež¬ÓñÎŸi<5p$³¿ó','',0,'?'),('G_bc©.,]&Åè','wp-admin/js/image-edit.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ûôÖ\'‹L¦\nÊr¯)ìL','o9JÉBÖ{2[ÃJe\r¿‚“@qøïØ˜Ô´àlDˆ','',0,'?'),('Kvö$T‹MR˜ŠŠú=³','wp-includes/css/dist/edit-post/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™ªAË¨mÊŸòñßÎOJ(','hÖ˜­´øÛ°Öß•†™-@_Ìh¹ää\nùø¹ï]ûf‚','',0,'?'),('2‰mÓü4¦Œ¶ƒþ%)l','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce.svg',0,'Ð1ô¬ô3y¶ùû¬1‡ï','Ð1ô¬ô3y¶ùû¬1‡ï','	}¬ÅN¬	<Évã­·B±S%á˜s\\üþ÷S„','',0,'?'),('7Ø`ÉÛòõËÛe|Ay','wp-content/updraft/plugins-old/updraftplus/includes/Google/Client.php',0,'’¢?›mÊHÇoA’±öñ','’¢?›mÊHÇoA’±öñ','kÜ_²½˜»3Ô;ˆÞøÁL?.®M»1}SH`ì!','',0,'?'),(';2)«Ø*ìÈÛ=g¹','wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/EncoderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H«m[¼b•ºu¯yÊB©A','ËÍW)A6£òõn~ÁÚXÄ¡jÎkGHsŽu8÷','',0,'?'),('B(àé(·™Æ¹€ÝµÔ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/RequestMediator.php',0,'\râáõQlW$©•Ò','\râáõQlW$©•Ò','×k|ÿ±zÓL\rÙ–)PGÝ URžßKÐEÁ*ÑÓj','',0,'?'),('G‘©¹øÅªÔwï€{Úe','wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/checkout/form-login.php',0,'%5Šö\0vÐ¼“U»w\nÈ','%5Šö\0vÐ¼“U»w\nÈ','³`e…ó~ÌÉ>.šö§\"ì—Ãƒ¿›ºt‹.+ÇÇ','',0,'?'),('L½Öáé	0ß²ÖDÈÉ(','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/OpenSSL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊÉý¢îÙ‘*{ûcbr','3lùè‘Y–$”6\râQî¡\nÖ›f¦ *\Z8Óþò','',0,'?'),('\\.®0±%ð\r¡`]','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UploadImageToGallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á“;ædî³JÝdCþ\'','Kù±\ZÐåŸ’Ï»DÓjÅêÃïƒ¡(r‘jîE','',0,'?'),('^M#S¬fÍæGmpó÷²','wp-content/updraft/plugins-old/updraftplus/central/modules/comments.php',0,'æUSâ\ržŸ1¾ˆF–f','æUSâ\ržŸ1¾ˆF–f','µ‰‡èÇÑÃ:à¯Øâ+uî[iþ¨”£@$ÄÛ','',0,'?'),('fMx’íª¹®	é+9•U§','wp-admin/js/customize-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µwýêuúr¤ýÅSN,¤A','e‡ÁŸçíPKžrûVzá·…979µ¸…‚ûn\0¡½','',0,'?'),('që\n¯àw™Zêi«ž','wp-content/updraft/plugins-old/updraftplus/includes/class-wpadmin-commands.php',0,'(ÆÃjòàú4Ê3D¶qŒ¢','(ÆÃjòàú4Ê3D¶qŒ¢','ˆ¹¿Wþþ*1¤7¤0‡bq×ô[|Ö°‘¼‰•oµX','',0,'?'),('uÌÃºR9è«¹¦NºDÅ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/sorter/field_sorter.php',0,' 0˜KÍTî­´$àñ+×',' 0˜KÍTî­´$àñ+×','¾[Ÿ]qdÑì,zåUÏAð‡º^¯EÞ<ðvm§?>Ÿ”7','',0,'?'),('x#Þ £‚6ÐÆ6ýÑþcò','wp-content/plugins/worker/src/MWP/Debug/EvalErrorHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßtëII­c²¸Wö}ýé','A+»1¯ðÎ¶²kaú!³å,†xL¥[·ƒw{ÎþOU','',0,'?'),('y›òýFkSžø÷/d¤','wp-content/themes/Divi/core/components/api/email/_MailPoet2.php',0,'ÇN`,ª›Ëx£	•¯q','ÇN`,ª›Ëx£	•¯q','=Ú Û¢öØ¸8]ò”s&M±$éÍÌ½<]ÇP°O','',0,'?'),('}:î°š\\ù°.?BÕÎB','wp-includes/blocks/post-content/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0NpúE°À ;ÂJ{§Ü','ª²B¾@\\HõN8¾P¨áß£íD¸ó.øÁ´','',0,'?'),('}Ê*æÔëvX¶¸Y¢L·','wp-content/plugins/wp-mail-smtp/assets/js/smtp-notifications.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!2‘˜²„‘DwHÝ¤z}','×U™4‹DOgè]ù`ð|%Iü¯‡¸hßo³=:3‚','',0,'?'),('€Ö«½¡ÉšÛŒr97º*','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestTorrentOfBucketErrorException.php',0,'·Ïbù‚¹]Ñ`ôN¦U7$Ñ','·Ïbù‚¹]Ñ`ôN¦U7$Ñ','µ“Ê¼\',àTñµw<ì÷Õ­À	]•®‘²êÞ\nêÓ','',0,'?'),('‹%„ä\\ùÂMA‚íÒïÿ','wp-admin/images/wordpress-logo-white.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½ÙqPûCª†-SPDæ÷','e£4ÑEºÇ?ú&õDsA‡Ä×Ê¬ª;ü)@¾XÉ’','',0,'?'),('Žšƒ¬JÌ}F·ßE\0Þ9³','wp-content/themes/index.php',0,'gD,Vë§=\\ÆbP','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('@ïCÈ¯d¥W‹³’','wp-content/updraft/plugins-old/updraftplus/includes/updraftplus-notices.php',0,'=æÀNaTR‰%¹Ç9•PÿO','=æÀNaTR‰%¹Ç9•PÿO',':Æ¥L>9#Y©ÃØ¹K€uØ`!…ßÑâ×óû‡^dv','',0,'?'),('–éÁ!:g¶:O³j™º','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-patcher-admin-screen.php',0,'93¼ñD}íÎHE5\"','93¼ñD}íÎHE5\"','k”­I²Ã^±î[R£Ã´ªßòn3Ù”+ö«mzL‡Li','',0,'?'),('œûÅdý0”§È.k','wp-content/themes/Divi/epanel/i18n/library.php',0,'Rú*ÍC©.æm’6¯ú†','Rú*ÍC©.æm’6¯ú†','zñi:Œ¤éJfl\0óUTÀ®î®õö],­´4ÏàHÎ€','',0,'?'),('¶\0\'a¥žÊÈs5™','wp-content/themes/Divi/core/admin/js/portability.js',0,'¿¯HZr°fÍ§ÔÇÇñ','¿¯HZr°fÍ§ÔÇÇñ','Ý”€ñ–šyý¿Åä’>¯\'Ïr°À™“^	÷0ø™\n‚ù','',0,'?'),('Æ=Å}CðãîiðÜHT','wp-admin/network/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E÷3úòª¼õõ@%°c ','©\\Hè.7éÞë7QtUwÖÝ°AK,ù$A‹„!Ÿ·Lz','',0,'?'),('Èx%³™þ5ñÄwììEþù','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetAccountMarketingAutomation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','š?[-àÁŒ(…98`z%',')ó½ƒVna¤¦sõ‡Ä	ÀC½x\"\nþlÏÁv]%ÑLà','',0,'?'),('Ë7Ö^É\"gÆÞ,Ñ%•','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandTransferException.php',0,'žÜêW.ÒÜh.C^dÃ','žÜêW.ÒÜh.C^dÃ','dR5»¶§e—(¯`­cfyƒT×rèDï¨ÉÔæŸÙ“','',0,'?'),('ËÝg+Ž™¿²ç‘Ê,cìž','wp-includes/block-supports/colors.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<+SU1+‘ô‡f2e','F½Î½çŠðòé0lÞ„‘\r¯ý^,°éÕëiOkó8','',0,'?'),('Óg¹›I†!Ù­ÑÇÖ_Æ','wp-includes/ms-blogs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YYw_sç°ƒ@	DE¬m','™~ÛƒGáß,,?¨§0½ÄvúÐfƒØUÓ§N£ìiK','',0,'?'),('ÖÄŸC¶³Ì¢x<˜ªŒ','wp-content/themes/Divi/core/components/api/email/Aweber.php',0,'c\nÇxDÐƒÛ39Ã‘·¹X','c\nÇxDÐƒÛ39Ã‘·¹X','íœQ¯ÔÓéÎd`¢lzÍA[ÞIC&\ZåÀ½ïðör{u','',0,'?'),('Ö7f²…ohG*/','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-dynamic-js-file.php',0,'o)Õg‰úÄÍw)ñnêV—¨','o)Õg‰úÄÍw)ñnêV—¨','Õ´Œ¹œÔÀ$\0çyÆÁø0_ RS¥X)áèÜsJôP','',0,'?'),('ØÈYó°¹þd™y¾*¡¡!','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uwêh[eûµz¡x´Ñ','wp¯Bì3KÜr3_ž!î}ª¤bàœ„¼üµdív\r¾µ','',0,'?'),('ÙÜñt”DX¿m\0#Ê(‚','wp-includes/customize/class-wp-customize-nav-menu-locations-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŽD±Œ]Ïƒ²–2+fX','Ñ´gíh‚Ümsýê„‘Êë-vmQèIj³\Z]sQT9‡m','',0,'?'),('Û{­›ö6Ó¿þÈºPÞ','wp-content/plugins/wp-mail-smtp/src/Admin/Pages/AboutTab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|iCbolÐ>äÖÈ','M™ÕÈ^nM< ¿dêyÑ‹\Zi±ë`”ãœÂ¤Ç','',0,'?'),('Üå]/~ÿøÕq¡¥XÅŽE','wp-includes/js/jquery/ui/button.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…k{Ìqzÿuo×>Ÿ’©','8õv˜J.µOAÜz´±A)ëHJe¦f¶B¿,ñÚz','',0,'?'),('ßVà“Ì³„,}ÅW‰…q','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/waves.php',0,'€^ÁANÑQùR\'q	Lˆ¡5','€^ÁANÑQùR\'q	Lˆ¡5','ÕgÄ‘L?à~ŒŸï°{«³•Ô­A¯<oÅðS]Æá','',0,'?'),('á˜åts-×²ºÒ¼»','wp-content/plugins/fusion-builder/inc/options/responsive.php',0,'Weµxœ[&\r\\£×ËÖƒ','Weµxœ[&\r\\£×ËÖƒ','YB¤®¤‹Â{1W®ƒ\0tî‹)Á~h²‚>$F…è','',0,'?'),('åÔéðÊ¨¬v.ñp','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/CommandContentMd5Plugin.php',0,'üêö´ˆ³dIJš>Þê\\§','üêö´ˆ³dIJš>Þê\\§','cº&›ÁÃ??rðpi”ùpW¢ÀÌRp“E\0º¾Ã¨²','',0,'?'),('åÂÐÇF(ºË^°[Ÿ‹','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/ProtectedDirectory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Æ‡m—¬nü8qx.R','µ6RÔý¿ïéiÙÇøšÑ±Wf-/¾ÙQœn¿e::ìï','',0,'?'),('ËãòU,ºý‹‡Z×Žf‹','wp-content/plugins/worker/src/MWP/EventListener/ActionResponse/SetLegacyWebsiteConnectionData.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IœY´L†!SpsÖrü¿','‡Mg§²Û9¶ñgd’šM§~û®_)HPK\"Jpý¶Øð','',0,'?'),('\Z.ô£Á9à›Ó3#@&v”','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/MalformedCertificateException.php',0,'+8ù™U©Æ3VÀíÚZ,=','+8ù™U©Æ3VÀíÚZ,=','áÄšµ®}Jr¢e…a6šÒ×ØñN£’„S²úÆÚ8Ú:','',0,'?'),('%Í÷“Èj®{(ÐZ˜V','wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/HashFiles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŠEÐ9ÖmÇ¾‚¦—\0~','H)Ê²‡D‰ãÃú¨ú\0^«Ï!CÓóð\0C7uÐ#l','',0,'?'),('\'£AyˆˆJþýZteC','wp-content/themes/Divi/includes/builder/module/helpers/StickyOptions.php',0,'¹ƒ~n—?]bÿìH„+»','¹ƒ~n—?]bÿìH„+»','kkÀ^•ùÝjÔ¸h\",[€í¥\0¹î*§X:.rû$Ï','',0,'?'),('(…+/Ù(ÿ#u¶Oê','wp-content/themes/Divi/includes/builder/plugin-compat/relevanssi-premium.php',0,'ZãV»ë®Ç1„ñ*Óò$T','ZãV»ë®Ç1„ñ*Óò$T','÷MGqëP\0ˆ§9T*èŠåË[–Êä¼ø˜ZFý','',0,'?'),('+¼¼@—+Ký;|œr','wp-content/themes/Divi/includes/builder/plugin-compat/wp-responsive-table.php',0,'u#¼f×÷ó€°mÃ\'Â','u#¼f×÷ó€°mÃ\'Â','øn@Ib±Ÿ£Øéu7‚æ?àýÓâ±ÚSmWæj2Ã;','',0,'?'),('.odáçßFØñ¾%¤F','wp-content/plugins/instagram-feed/languages/instagram-feed-nl_NL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aåÙSvïÂ$ù\"øÞq:','ob\n÷ý;mÇ°Š(JJü•)ÒX°\"´‘rŠ!£Ò\0','',0,'?'),('4ÐîÀ7–_84Ú÷-=Ú','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-css.js',0,'æÚçJJœ‘%›âdï*0[','æÚçJJœ‘%›âdï*0[','ïÖožLEë¡µ 3~ø½cQPFï1Œÿ\\1ÞO3¿','',0,'?'),(':ODŠí¼t¶±-£\0ÒÚ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/AbstractEntityBodyDecorator.php',0,'6Ô¦‹ç#“hlÜž‘s­¿×','6Ô¦‹ç#“hlÜž‘s­¿×','YÃÉã(zÍêk\\ÀÓŽÌ‰1D~ÐæDr$ÖËŽew“Ø','',0,'?'),('?é‹/ïÿï¢%€îÈ—l','wp-content/themes/Divi/core/admin/js/functions-init.js',0,'Qëjº+ÛiŒ’Çcªf7','Qëjº+ÛiŒ’Çcªf7','>v¾o_#±\'Ö˜äZ¬ãžª‡8ŸÀ½_ä«Ê6 nÑ','',0,'?'),('@©ØHdµ3é&Ê©ö','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/History/HistoryPlugin.php',0,'©eHÊs\rÃÃOÕRi«“f','©eHÊs\rÃÃOÕRi«“f','iæˆâÊÕ´LÄ¢È¬7q\ZÊØÞp„Ê\r¥]™V ûÇ^','',0,'?'),('Bã@R*G™xF4N}','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£ž\'–_®?SÅŸ\Z]ÍyŒ','¤6‹Ð[-óŠ…,9YR¡rÚ\rY\"-ø€anó²‘6$Š','',0,'?'),('DB©°RÂó0ücZ£xz','wp-content/plugins/updraftplus/vendor/symfony/process/PhpProcess.php',0,'ü¶ÍV¹‹mõr=Îœò,¥','ü¶ÍV¹‹mõr=Îœò,¥','ï]¶õË‘®O³N¹ý¼1Ä\0	îÍœèzÿ_:„À:(','',0,'?'),('GÈÈ¥\rzKœêÌñ…­','wp-content/plugins/wp-mail-smtp/src/Tasks/Meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I×`gžýô®å=[33ñ!','ó´œK¯ÐØ?ö…<ÇEEZ:“Á;‡S²ã¨y”Äzd','',0,'?'),('IP+ƒh¯¹ŠÍ÷·¥','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JpegoptimFilter.php',0,'cÜ-¹»Ø\"gS› r`','cÜ-¹»Ø\"gS› r`','ÆÛÜ(ÀºœÜ§2€úRò/‰K|¶L´“;S“@IÍ','',0,'?'),('JžöBùô?ò!ÖÆ\'Ax','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/AbstractCredentialsDecorator.php',0,'¼æ£”5,á.ÕÕ¨©!é','¼æ£”5,á.ÕÕ¨©!é','š°ŽøÏô…ÆEy/aœÁµzyßiXÜ&owWú§1ð','',0,'?'),('Rñˆ\\µ&ˆ†T	À|`','wp-includes/class-wp-user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_¿èJ“b•€X²t@Cè','~í/ÖX‰ú£²`þ¥œá-µ?¥ÇÚ±a”X£|','',0,'?'),('Zº´ù7/ëyºŒÙ»n','wp-content/themes/Divi/js/custom.unified.js.LICENSE.txt',0,'Šðv³úQ$…¼gSÍa¿','Šðv³úQ$…¼gSÍa¿','£»âjp¾øU?Yº1M–R¥TËðbÏÒ.?¡æÏÑ','',0,'?'),('f°†ê”,|ý&ò€Ï´','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/ProcessBuilder.php',0,'•^˜í§ýÁ—®]T','•^˜í§ýÁ—®]T','S0þœeÄ¯ LÇÚÌ0ÖÃ}ÍÇôF%:Ï¤™Ðí','',0,'?'),('k;•ïØf5º©Œk¹','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/ClientInterface.php',0,'@l7ö	3Àë;5œøsŸÊS','@l7ö	3Àë;5œøsŸÊS','ñ–Æ’uÂãHnûÐáíî@£d]ÜûOý±£$ƒÒH4','',0,'?'),('ttÌ¸íTé.ï¡*Ã³U˜','wp-content/plugins/wordfence/modules/login-security/views/page/role.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â!|3Ôis:àÖÓyŽ',']F‚ÉÅ€ÅTÝåÝµô*Ðb`uÊó÷nîÈ9»¼\'(´','',0,'?'),('ynmÀ;˜/ÐUsK	»¿','wp-includes/css/wp-embed-template-ie.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7{WPÛLó{H—Ù©Iç','\\aWq1Šº+ÿéÐ¯Ùo•LöY\0ÏÂ„Kàî%<','',0,'?'),('zdq3aáGåI`’\n?ç','wp-content/updraft/plugins-old/updraftplus/methods/webdav.php',0,'©#§–‚ã‘+¸¼˜þ;Í','©#§–‚ã‘+¸¼˜þ;Í','!¬fÍÑ,FÈ æ¦îJ°Û°Üh1ÆM+Ê?æþ^ÇXÈ','',0,'?'),('|Ú&;Œr¢Ls5ùŠ','wp-admin/includes/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸jëUÏÎ2ñŽ†·¼¿øì','yÐÔª­Ùª>tPnßÎžX!\'ÜË•?ÔÂAèôE','',0,'?'),('µ¿6by5E¹Q¬E¹','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/NoSuchEntityException.php',0,'G€bé–MÛªÛ8n¾B46','G€bé–MÛªÛ8n¾B46','íjPˆ|HûD=OÊºQšÛñ†G^¨ÌÆ“sXÅ$¬9*œ','',0,'?'),('‚ë\"?¤ueÍœ7\\™Xæ','wp-content/plugins/instagram-feed/img/about/plugin-tw.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_”du	qCØXÁ0Œí¿','c–µ0F`Î»¬=#/ÏÍxÁ•†¢ºØùÈ˜iÞ\rÚÙ)','',0,'?'),('‚ìsý²t\Zšr’báÛ\"ã','wp-content/plugins/instagram-feed/css/admin-notifications.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú¢…|C³µ¿l®„','í½¬Öû0Ýç)ˆ.ší“ÔÎL0P!à˜‡û›','',0,'?'),('„2‰±â/B¢ÌEffªü','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/AuthHandler/AuthHandlerFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡ Œ\\rm5œ£â§Ë”æ','·Ÿ\Zö-lDyoÎw—Vô¸u°œ%²9¢Øq\0','',0,'?'),('„5šY9¿‚º„2*BHh','wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-1.11.4.custom.min.js',0,'½ÄôË(gÛ!~!ë¿ªÔ','½ÄôË(gÛ!~!ë¿ªÔ','à›ùNú®†På×\\mãJüÊµ±‰¸u¾6WTàùð>Í','',0,'?'),('‹öÂYe¸.ð0s–‚','wp-admin/includes/class-wp-comments-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ \"@NKØ9³3+iÍL','ZjB:¹o¯I·âw¦ §©9X>Ô~Ž+à¥¾È\n','',0,'?'),('ŽË,d$\\ZÞŸ^WuÕ','wp-includes/blocks/buttons/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äF®ô»„†jJZ	^öQ','7\'­$ñ„£Â6Ó\'žz“i#É–ZÎOú8','',0,'?'),('’Aç“o\r÷ZÔ”_št','wp-content/plugins/wordfence/views/waf/waf-uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñ˜…ŠÁý8³9a','ŸsvZ¹÷äÕkr\räø¢ÚÜˆD:auu»ÁÕéù','',0,'?'),('”ó+N‘;$&\Zäg ¶\Z','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ReasonPhraseBackoffStrategy.php',0,'EúJsÍ@q±N•B>0','EúJsÍ@q±N•B>0','=ßF³º•|I*5vh®àO¿×ÂëœvAçåh‰n°¨','',0,'?'),('¡Ð\'-ôpÚ-Ïûñf¢','wp-admin/css/l10n-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xmÇ|á“søÊÁ£A½',']‹Ó%FLè\nIÎL«ñl«ç£Åf426Gê¸ã\'“™','',0,'?'),('¦tšö·mqÁâòî»','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/RollbarHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è€ð*WvLøã—kp” ','UGËr¨WžC„~…¥NæÉ0æ–ê7Ø	ÖCÛS²¦Ë—<$','',0,'?'),('§Gw}âgBM;‚0”z','wp-content/themes/Divi/includes/builder/module/helpers/motion/Rotate.php',0,'¦klxkƒPÒjE˜U´Ú','¦klxkƒPÒjE˜U´Ú','K-ÐHJ{œï5ŽeçXîv1ë+XˆÉ­võs\ZÉ','',0,'?'),('¨-\0a[íçèQØ>ª','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerDeleteError.php',0,'•ªnqò Ïä\0M_0í‹K','•ªnqò Ïä\0M_0í‹K','˜g„tWŒ»ß}©Âä›ÒTVei–XŸœðö+ÔX‡','',0,'?'),('´ÁjðÖ¹J‚Üþ‘ö0Y','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p§0W\"F)”ÏŽ“8O£','©5¬œð)&ÚÙBoK]®¯¤Ø»Žó–rm`%®ÊhöO','',0,'?'),('¸œŒÐ”!FãYV¼û?È','wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/SetPluginInfo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ¦Øê((œÓ@&Ï	m‰','*&ðË@‰êy“äÎ\næ#Öž÷ñÂgkÓ¹$mTŠk','',0,'?'),('ÉºÂ³6†{	¹pæ¬','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/FilterInterface.php',0,'¤‰í€Ü~ü“:1HoÖ o','¤‰í€Ü~ü“:1HoÖ o','Pë<…qrMÐ‰bº(He=-zJåÑšK©þM{6','',0,'?'),('Ñâè4Zœê=Tì×;#Õº','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hß‹Õg`É¸:Ú•^','½•ŸF/Q°H\0ù¦æ^l 0¡BÎ“Õ«6S@Phë','',0,'?'),('Ý\"Ç<	i t÷ß&Ý','wp-admin/css/colors/modern/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š¨XÿÌ¯›ÅRÖjÙFòœ','24©Þƒêki<¿­u&¦*ž§7ñ‹Uîs´Ö=~ÍëFß','',0,'?'),('áº±¤©Ú†¶s}-•Lçz','wp-content/themes/Divi/includes/builder/plugin-compat/coursepress.php',0,'V6®LF_iŽÉ•¿’Ì¢£À','V6®LF_iŽÉ•¿’Ì¢£À','Aªê²Á—¨ófÒ	Ÿ©ÅkÓ•€ªnž4„VR','',0,'?'),('áÙŽ#<Ž£#ëÔž@õ','wp-content/plugins/worker/publickeys/partner5.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n©Ñ¢GŠÖ¢\'±”Êþ®é','%¬jíU¸EZì•Â‡kÿoÉKÕ±«#ZHAÓ÷','',0,'?'),('êHµ&¦×_ÌTI¼gÁ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/PrivateKey.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö[úSÐÇŽÝ¬I8¤NH¤','˜,?tÆ„|^Bq‘+Ž8ô&z! T>Ýñ9³tà','',0,'?'),('ë©~—\r@€Ÿ\0ÃRT','wp-content/plugins/fusion-builder/js/sticky-menu.js',0,'] jwMWß¢\\y±¥S','] jwMWß¢\\y±¥S',';°A¥ÕrÌžC…ÆYËôrŸ±Ööö|±\Zí›','',0,'?'),('ñÊä!›Ýúø9¦ÚÈDH','wp-content/updraft/themes-old/twentytwenty/index.php',0,'ÚeEÜgšT~$ú\"iŒú','ÚeEÜgšT~$ú\"iŒú','ÇaHÁ“gNoUµ®%¯œÜ›º8|º¥`†*Mø@‘º^‡','',0,'?'),('á¹¨\n-òMu/$‚Al','wp-content/plugins/updraftplus/central/listener.php',0,'ó\ZYþ_yâ$eo¯//zYæ','ó\ZYþ_yâ$eo¯//zYæ','Eå©37ý¢ê½¦×Q‰²ìü×°¸¶Ë[W²aY?','',0,'?'),('ª%„ÖÒMVµ','wp-content/plugins/instagram-feed/js/jquery.matchHeight-min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V}éËF˜Aóyµ¢¼`Ÿ','eˆÜ¡ >„\0w\\GsÍ_Xû§¶áTÜóô©º0ê°Â','',0,'?'),('ak[‚\\DkÓÔ*n5’Œ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmailCc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í‰Ï™ìu«)ù¼Ç\0rï','*†Æè,?©Rrãë3Àc Ù€@lØÿ¦óôô)','',0,'?'),('\rvNóÚÔ™¤­2p','wp-content/plugins/wp-mail-smtp/src/Providers/Gmail/Auth.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*<ŸØèQêQ§Úø¶y','Ip$M.‹oaü GT›©rÁqÒ2À?(›U7>*ÖS¼','',0,'?'),('\rV¶(«h8®€•†Sæ','wp-content/plugins/worker/src/Monolog/Processor/MemoryProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÍSÞvØ¾™#‡0Ò¿à¹)','FëhµÅÀr–:¢°á‹ƒt~€&Òc-…¿Õ','',0,'?'),('\rÒq´—¢ýêUÄë','wp-content/plugins/updraftplus/includes/class-remote-send.php',0,'FM¥eÙ;¼—í<ð#år$','FM¥eÙ;¼—í<ð#år$','Nbf±Œ|Õñ›åÕ&P»1Èµ,¾É\Z\"£w=¦õ','',0,'?'),('#ª:™I²“åü\r\r (','wp-content/updraft/plugins-old/updraftplus/includes/Google/Cache/Abstract.php',0,'™å§\0Â¾Œ]\'9ãw','™å§\0Â¾Œ]\'9ãw','¯;DKÀÖë[…–#3&°WÚà<·º­ÔzæAQ$x','',0,'?'),('1à8²U èä…[~n{sƒ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Metadata.php',0,'E×Rt°©H@›GëqVV\Zc','E×Rt°©H@›GëqVV\Zc',')ž¬}3	ÄÕ-îÕÒhS,™¢ÆÊ‡/×—\\NØÈ','',0,'?'),('5i’†©vbÌÃ@~)á“','wp-content/plugins/updraftplus/includes/updraftvault.php',0,'ò¡®\\xžm/{q5;V','ò¡®\\xžm/{q5;V','4*½OFè¨Wñ\ZU<FîÓ„Š@C]ÏéEõÇ¾÷0','',0,'?'),('@”ðGJu7âÄò‘\nI2','wp-content/themes/Divi/epanel/theme-options-library/app/store/theme-options-library/actions.js',0,'ÎS`‚£è§ÍÛ¿ømËý','ÎS`‚£è§ÍÛ¿ømËý','$ï÷ÍÀÌ´ÜîÚ%Ñ3Þ@¥°9¼žtŠÞ2—Àf','',0,'?'),('DPàë4Çó#4Ðzã«Ü','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JpegoptimFilter.php',0,'cÜ-¹»Ø\"gS› r`','cÜ-¹»Ø\"gS› r`','ÆÛÜ(ÀºœÜ§2€úRò/‰K|¶L´“;S“@IÍ','',0,'?'),('EÍoj]ÃVƒ’ô÷Ûœ\0','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Enum/AssignmentStatusType.php',0,'®AÅ;V‚Muë3>¨Z','®AÅ;V‚Muë3>¨Z','ò¢äŽÊ2)I3yYTãùÜ`šÿ4”4HºŽ>DL','',0,'?'),('GÅï°—cWè‹ð´‘¯','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetAttributes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ž#ÒQ“Šoû‰d—Æl5E','ô\níÃ·rdYíúÊìYhÞI`‚Sµi˜˜4ô(ö—Oj','',0,'?'),('LäåbPÞ-I×­1f€','wp-includes/theme-compat/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œsö¦<wü!µˆ1','qÊ2åÕµÂÐûÏ¢>rã‘7Njè¤	D—^ƒïA5\r','',0,'?'),('N¡d#R­‡+«Ár\0s[','wp-content/plugins/wordfence/views/reports/activity-report.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÒŽ?ueÓwD•:ž¬Eî','ê°ÃÎ¶ˆ\ZàÞ)v¢µÕvGïŸ,éhü/—Óˆ„','',0,'?'),('Xbðû\nÍkÞ˜ ~h','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Fitness.php',0,'ÓÞ/Óâú3Àç°','ÓÞ/Óâú3Àç°','ƒFrãÿPcBœ±#´ç:2}lÅexb3àº2ô}¹ßÎ','',0,'?'),('fx˜À¾=äÖÅêþ<Ì','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MetadataTooLargeException.php',0,'IÎôpZUŠ˜¤aÚtom','IÎôpZUŠ˜¤aÚtom','ÊôOâ$Fn$Ã}\\ºx°û+Ac½ôžcîÁY”s¡','',0,'?'),('t‰Ž®‘Äô!æ\Z‡%\n','wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5á,}vÄ¨3¼õGÀâ)©','E½r4@\0¸Ô¡$¦âzæú3ð¸$l²ê\ZÐ`iäexÃlÊ','',0,'?'),('xR´¿³Ç!¨bˆw™$','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/RavenHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›ßÇ‘²Rpíx…”×³	ª','ùÚäC¸ÛqÙL‹kèÆD†\0¥@¼IåŽEŽXþ!:ƒ','',0,'?'),('}z-ß5ÊR’ñ>É=,','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/schedules/ActionScheduler_SimpleSchedule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^y	15d“~UhFR','‚®Æ;]D5øþ©£Vo`—/‚ñ_–qg§¨yÏy.!','',0,'?'),('†7‡Ç<\rIÑ¦$‘ÕÅ','wp-content/plugins/fusion-builder/inc/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.svg',0,'Y¶:Fy#.‹:U6šÏÏ4','Y¶:Fy#.‹:U6šÏÏ4','„/«B9¬.UyÛÅÔæªdøtM‘`sôX½ÐÓB«v','',0,'?'),('Ž¦609¦öA)ùµ','wp-content/plugins/worker/src/MWP/Action/ConnectWebsite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n©ÜPv\0k©{ÂŒ¨9B½Ÿ','|Ž³È\'Ñ¼AvS¹®¶cÖÃ„Ù¼A”‡{õ«â9®‹','',0,'?'),('Yý7î(feå0žÌ&','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Filters/DateFilter.php',0,'A^ïàÚ×tdzÔz¿‹Þ9@','A^ïàÚ×tdzÔz¿‹Þ9@','^uï¯íâÌ¤4<‰÷]\"_B:ÕÞ#èéß','',0,'?'),('‘`ãï.-_jpÑ¸ò¢î','wp-content/plugins/updraftplus/includes/Google/Service/Deploymentmanager.php',0,'M2	¼Ô¾žŸŠ&`1Ù«','M2	¼Ô¾žŸŠ&`1Ù«','ÔØ¨bGÐõ3µáÈÛtË­Âi¤É\n<FÃŸá™','',0,'?'),('˜{…éYÂ\\ÀzéŒ¿°}c','wp-includes/images/smilies/rolleyes.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ¾¾ðO…2ßOfÝ£i','fKÉ)¾\nêdù¦!]\r)÷ï¶\\}æãâ×–lÎõ^’ã','',0,'?'),('Ÿ5Rž7\rÓ­Ë±ËŽþ2','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/php.js',0,'.í¸ôÉáGƒ°rrgÊ','.í¸ôÉáGƒ°rrgÊ','gzìßƒÈS/A:|ãq;rÓÇ8AÜ2†$ª	,wA','',0,'?'),('¤Ô;|O<uXz…Ë|Ü–','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/LogicException.php',0,'ÒSÖv‰‘B¾tO*«.m','ÒSÖv‰‘B¾tO*«.m','qÈ 0@æ–’—¸X1óœ¸$,wú„èý1²œlÕ§k','',0,'?'),('©ú.ý×B3‘?™sù8','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ìVÅ*ûÊFè°¯ñ<Ž¤l','åÂ®¢R”l–UñÙ ™wz×ank–ÇGÞtº3î','',0,'?'),('²Ž­\Z÷WÜS\\oì“Ì¼','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-animations.js',0,'•ºëØ ²@HØ|Íû~3','•ºëØ ²@HØ|Íû~3','Úå±Ï®4r~õÍµ×œšLQ÷Æî”¡ÛZ{°^|h','',0,'?'),('¼aðý÷““; L;Ê¯`','wp-content/plugins/instagram-feed/js/sb-instagram.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N–F7L\ZÊL«çæå¹	','ÅT‰ï´}2Ôn#Cî¯[c)SQ*XÏ”×3','',0,'?'),('ÕIÛ<’µ½)21','wp-content/updraft/plugins-old/updraftplus/vendor/composer/autoload_namespaces.php',0,'\ZÆÂRªIÄRPfãêGü','\ZÆÂRªIÄRPfãêGü','FV«þIJÚÓ’)¶Q	‘ÿ d’ÅäÖ	A\"Î˜t]À¢¡','',0,'?'),('Ø‚i„×>Ç®ŒíÑdô','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/PersistentResource.php',0,'·?ã½·çÆµ¥°ë¸†£','·?ã½·çÆµ¥°ë¸†£','Ï;Í)Ú\'‡\"îÀÎ¬[\"êbìÖ·X\Zj¤¬Öa','',0,'?'),('ç\\Wm7\'/}šBHÏl','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MaxPostPreDataLengthExceededErrorException.php',0,'ÀÐ</ÆÝ0ËSu?óçe3','ÀÐ</ÆÝ0ËSu?óçe3','ôŸ¹¼‡m\n¦ÔÞ»¤˜yÙW¿¾²¥Àœëó\0Ò','',0,'?'),('ð“?½\0ÒÕl º—Ê.þ','wp-includes/class-wp-application-passwords.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ã;ðQö‹ÜòcW²M7A','ýúx­ù¾Û ú?¨ÿL¾\Z’lCÌ\"›ÆÐÇ´¡','',0,'?'),('ô2p)´‹t¤­Iíî³','wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ŠïþÖ\0°\">y>=À®£Ç','xVQ/}€ç¾:(3&þÑå¹%¢U‘¤JoªÿC','',0,'?'),('ô–Qe|²VÛ;÷[½¬&ì','wp-content/themes/Divi/core/components/cache/File.php',0,'zè]B–/Èx5¬','zè]B–/Èx5¬','*d²\"%;Êº«ÂîFòæ*‘4Ÿ~C„\"‰p€<i÷','',0,'?'),('ú!{U»“QœG\rÔ[','wp-content/themes/Divi/includes/builder/module/TeamMember.php',0,'˜$B¨Ð”ô0#´‡œH”','˜$B¨Ð”ô0#´‡œH”','xCÊIC—°\0\'¢Ÿ¿OóºÙHþJyù%Y:œÑ','',0,'?'),('û«€ØéoŽRb­þ','wp-includes/js/dist/url.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Àó-Û•²ä½\räv','ûÒ$c´ùÀ‡jb¯)úß=yZ¿}Û»%•ùiðßWÁ','',0,'?'),(' \0ñr?BmiÎ«²0!$','wp-content/plugins/wp-mail-smtp/assets/images/reports/email/icon-arrow-up.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#ÙÕ¿9c¼p©!Ôž','Í^LsÏ÷\0ut]OÀ@	wc?¸òƒµëíóN&','',0,'?'),(' \0þ&Z@í¨b+EÅ™¸ƒ·','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-gallery-preview.php',0,'ÒÊ´;wç-Mü—t	»€Ž','ÒÊ´;wç-Mü—t	»€Ž','¤1,Š4šœéUë(Dhà±{f	-ê¯µ¿íj»Óæ7³','',0,'?'),(' °í×˜rM¿“›- ','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-fusionredux.php',0,'WÎ}qÖÚÌX>j,ô','WÎ}qÖÚÌX>j,ô','.í{Ÿ¶r2¹°\\…`Xˆ5´…<wªcØ”n»8¯¬g ','',0,'?'),(' ­es(N^Œ¡+q¢','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-phpunit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2µMEÆ±··(àˆ¢¿(','Eí”þ’aÆ\râf U×DLbV¨ÒªW#sËs¹†','',0,'?'),(' èáÉ‰:Ésž{1<¶','wp-includes/blocks/embed/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™ÕÄ è-œy7!†Ê¾”U','šðà2³ñ‰£ŠU\'‚¯éI_c1¼ÂBÉz”}ÍÂ','',0,'?'),(' !h¬F;¸Ÿ\\Iâ© ð½','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Signature/ASN1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñ{_2I­Kh„Í±B8V!','·ê÷+¥;-\r¦bMƒ…b¾»go}å+Âó–u®‹±—5','',0,'?'),(' \'ÓÒª_U;0˜/<Â','wp-admin/includes/class-bulk-theme-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uï:yãx1s)¬˜’‹','‰Ï¹ÅƒçÝ¶1SXCTÚ¼ƒ<áÚŠh`‰ÂòV','',0,'?'),(' *@ADÒ“ˆ=pu°˜ÓE','wp-admin/user-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÅýýçW2#	×3ý','8åº¹íöÍä³R0HÆîÍõðŽmüÑýÈ®¼Ð¯&m','',0,'?'),(' 5ÔñrD›g»ç±ƒ¾','wp-content/plugins/wordfence/views/dashboard/options-group-license.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯œùð»}jORIíplDþ','ÈõFÔm‚ÊÕ³(bˆêªx÷„Ÿ.W N2‡‚Ê','',0,'?'),(' <2¥[ë,Ð‡ç`ý*­','wp-content/plugins/worker/publickeys/partner9.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”0Ý?÷óÓÐ‡È·Òé','ä>É¸l[ÑLè°ÒÄ]Õ0>¶¨j”g^I—…‰rÑïŠ','',0,'?'),(' <@¾s”†î\rÃÅF¨Œ/','wp-includes/Requests/Exception/HTTP/305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xø÷\0Këæ/`¡,û«&','HÄÆŽù—ÝË+@µIë·Üb‡š^=¶QvM6_iL','',0,'?'),(' <ñ/X&I†*­j´@îEŸ','wp-content/plugins/fusion-builder/inc/templates/app.php',0,'½+ÚkñÇ‘í¡¹ÍåÁ','½+ÚkñÇ‘í¡¹ÍåÁ','Ñz“<câq(.N›S¤eë¸\Z^\'IÎsÄ¨.÷˜‚Â','',0,'?'),(' De4G0¤úïÙð@dÂ€','wp-content/themes/Divi/includes/widgets/widget-ads.php',0,'lB8š¾(ûšFÒŸa±9à','lB8š¾(ûšFÒŸa±9à','º½Ä!þß8e<+§­âDOÆIU¯±.;V]i','',0,'?'),(' Fiò„ë¦6ò¹9±	£ì','wp-content/plugins/really-simple-ssl/testssl/envhttps/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì=Jß+‡rZÛ5','¥ëó0ð¢™CJ™Ož«›\Z]¶\nó`Z4`ªVR„','',0,'?'),(' Y¥%ä	}Äþg-<bË','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_fa.js',0,'•,fá D¬šE!·','•,fá D¬šE!·','[\nÒ‚›Xó‡VWÎz_HwpÊRÃÀwµQì','',0,'?'),(' ^¯WRÖ]à:[‰Ù8µ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/Ed448.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“—RMçj¥æ«‹BK8','°Ö{IZiªÑÜ-y\"dfRñæG>`/î%ñ\nÁ´¢áw','',0,'?'),(' `çD+³’„G•;!ÀÎ˜','wp-content/themes/Divi/core/code-snippets/app/store/code-snippets-library/providers.js',0,'8Ý£Hn¹ÉÔÛ¾›ÞÍ','8Ý£Hn¹ÉÔÛ¾›ÞÍ','5”C¹+l0Ps;QîñÎh‡fb-ø|ßwAaä','',0,'?'),(' bØ^±¿¹	(Ðª\\”0@ ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/log/Psr/Log/LoggerTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NJm%Àü¥6Êf-Bî','™©.ïóù¬ÙrÇ?ÄªÍ <dÚÞüÿ˜·€M­ÚÀ','',0,'?'),(' d%HäÖÏön;ÓB:?','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p÷¦Æ®¹u¯„o7;~z','™¥¯ÚÈ %lòy½\'#[‰ö€_ò{E½]8%Ü','',0,'?'),(' FïÖq\r*7ï¼\ZÌ','wp-content/themes/Divi/includes/builder/feature/background-masks/Functions.php',0,'i”Ð*\rl£6·U–À#‹','i”Ð*\rl£6·U–À#‹','/irÏ\"u\'	˜éóÈ}ŠA*P]³ìtÀ\rá}','',0,'?'),(' ‰4W6¯]q*p‰dÇë','wp-content/plugins/wordfence/js/wfpopover.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ã&m­AÄhlMPZX','°ì_.Vè¢•ÊŽXÍã4Níi_Òük=ÔæC3','',0,'?'),(' •yÁ>4œl»°gRÓ','wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰¶gÄZá† 8¬Zœ','ËÐy¸ ¾qÞÑk»óÒj°¯»|æ¼gY{Š‘Ì','',0,'?'),(' ˜û0gå(—m2ÆUe>{','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_Versions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œ[&Ä©þŠý%,Ú¥àx','\n¹\\)‚gü‘IlÞÓ«¤§À_…,a*`-Ér+ØI','',0,'?'),(' ŸG¶Ê´©¨GtØ‘›¤','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­OÅ«3¤(	ia•Y³ÓÕ(','ñÕÅï”%®Þ\Z0b­Á[uáˆ#‘v.Ÿ_«â	O³=0','',0,'?'),(' Ÿa7}Õ„À–5†Æ»Tñ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/sorter/field_sorter.min.js',0,'®–)l/ˆìá-KÏ•s8','®–)l/ˆìá-KÏ•s8','.fä¿ÙÉÄµ­Ø\nYÈAø ùÍyrú‡Sð%s’','',0,'?'),(' ŸÖ\'j3ø/¼ô—®µTOÍ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateEmailCampaignSender.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½ uv–«\0¤žPk1u','š™É\nÙ6´«¡6ëpEªC(ÅñòŠÀÒÜ²','',0,'?'),(' ¬z¾z{úðòôL‚ŠH','wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ž\"3R0šÆ§»å¹','»•zƒm1¢ÊxJ gÝÐ¬ùxsÜsIÑ»Ë¸“2','',0,'?'),(' ½RR0úoKlSr»¬¬','wp-content/themes/Divi/includes/builder/module/SocialMediaFollow.php',0,'„Yø´ÿàüÊ^¨¾XÒÉ','„Yø´ÿàüÊ^¨¾XÒÉ','ÑìŒÿlå¥×dN’i†y·Î--ñÓ	‹ \\ÿý','',0,'?'),(' Áõ€ÚúA¼‘òþt','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchBucketPolicyException.php',0,'PwýÀ¶Í€C~ð}?5ýpû','PwýÀ¶Í€C~ð}?5ýpû','ÿ°dYdÉ/’\'ÆrÄfƒPz\rþqFr!dý4—×Èrº','',0,'?'),(' Á²yëÕ\nƒÌÈá×m','wp-content/plugins/fusion-core/js/min/avada-fusion-slider.js',0,'=þ\"ePWŸ¹­ÀºÅp','=þ\"ePWŸ¹­ÀºÅp','Ô6Íßî LÜcúµ…ùsˆ˜ÞÈñ·åÝÖXçvg1','',0,'?'),(' ÈñÖ]c*;íâ\0²…ãº','wp-content/plugins/contact-form-7-honeypot/includes/images/banners/art-of-invisibility-cover.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß–Ñ\"÷%Å2Ë£¡=±Œ­','™²(¼I¾§«—Ož5¨çËz|¶Øhf5V××Ï ¸ž','',0,'?'),(' Ì\r$	QŠ^C(ØÀíäõ','wp-includes/Requests/Exception/HTTP/505.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÑÞ)Y{¨Q¶úÇ[”õ','Ëâ­›Åû ië{ÈPAÄÍ†kÎûñúd©¤‡M\n©Œ','',0,'?'),(' ÜI·\"çèÍÌù±’p\Zùc','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/IOError.php',0,'{L‚¢´ŠÆ²†(¢ªˆ‡þ','{L‚¢´ŠÆ²†(¢ªˆ‡þ','çß”Pó€ŠãuµQ¬°;ÖÊç®„‹JüõG%U','',0,'?'),(' àôcÌ«)IŒ\np,Í‘«ƒ','wp-includes/css/jquery-ui-dialog-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xs!ë¯‘˜ðU,Uç àÉ','Y  4þ0ø¨Ç@©³>Wb³5!4Çü·','',0,'?'),(' ë)\no ˜Íü(¤aK]q³','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/tufted.php',0,'ÈªoŒÙrÕ×´GÌ®!o^','ÈªoŒÙrÕ×´GÌ®!o^','ŸÕ­eÊÙÌu‘YY| _mwŠ,Fž¡S]©….õŽ¹','',0,'?'),(' í{¾œOv5¸mõål','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceDeleteError.php',0,'q59‚ê,\rE[‘µä9+ß','q59‚ê,\rE[‘µä9+ß','-„ÇÅÕS\\Rk¼W“ÏÔ©¦ÆbcäàÛ ŽSÝæ‰©¬','',0,'?'),(' öÀ’Ž…t4${ÊSE','wp-includes/blocks/categories/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»õ#7Ö½r\rÐ³êôéó','#1À‹1*DÌ?–ÑJ<=ƒ¬|(\'.Ä‹b]E°ÄÁª3†Ì','',0,'?'),('!=”Ò2Ïð%nä°f×Ü','wp-content/themes/Divi/includes/builder/feature/gutenberg/utils/Conversion.php',0,'+)’Î\nºKñ‰âÚK','+)’Î\nºKñ‰âÚK','3R	Gf´¤OXŽtjeõ;P_2ùkáûžŠíôà','',0,'?'),('!o\r¿ÍAˆŽv7àÜe','wp-admin/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º•t&Þ¾ÄVÉÝ6Ö¸','mcT)äáÒœ”O>y‰n/@i\"+ˆ5dJÅÝ@´Üí','',0,'?'),('!y¦0ÄæhP0†j','wp-content/plugins/updraftplus/vendor/symfony/process/Tests/ProcessTest.php',0,'ÃÕæ,Ë(MSõ\'³¯,ìö','ÃÕæ,Ë(MSõ\'³¯,ìö','£óz|9“t­-ÝÂ©1z€öijà%1«´ñ‹áØ¢‹','',0,'?'),('!CaP±-%ÿv\"¾`¿','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/NovaResource.php',0,'~%Dµ¦Ïè ;C…ÓF','~%Dµ¦Ïè ;C…ÓF','°ùI=añoí¶4šr6ÑŒ­ëå»!TvÅÙêMwú','',0,'?'),('!1bÝ…9 ª*ãÀÿ\\áÆ','wp-admin/admin-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å\Z±ûÃCÓ\0§üOl$¦','sTˆlEeÖþÿBhšv:Žg%—kœÑ07k=ÉÐ&!','',0,'?'),('!2÷„»Þª`*€Á’Ó_ª','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/OptiPngFilter.php',0,'mÌì©Ôgà‚W­…ÎŠ“Eº','mÌì©Ôgà‚W­…ÎŠ“Eº','ój%\nCÝo“	¹ÚŽf¸\\-dâ™žé)m’ïQpx','',0,'?'),('!5È ·¨]m¿©·†@b','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯f\"ü»Œç#6${ JL\'\"','ËeÅ‡Ž6\Z(«qË&…Ú¶¬íÂ]œÌÆ\n÷Cli‡Þ©‡','',0,'?'),('!6SùÉÛ°„.uÉÏZ_','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/LoggingException.php',0,'Ôœà-’+ÊëG‚Jƒ¤åž¸','Ôœà-’+ÊëG‚Jƒ¤åž¸','	/úÇrº‡\"Dý©5Ë¨ó‘g>@.ãñDôŽ*â§ö','',0,'?'),('!:\"¾=¸,jœÂœ“RÆƒ','wp-content/plugins/worker/src/MWP/Security/Exception/NonceAlreadyUsed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ldAHÙªl›\0OíQåÏú','P•%¯»K–\"þ\nŠ8*Ñ\\-;G­œ«¸ŽO^mÐ8º','',0,'?'),('!I­d]5$Œ¥À[àÖ~¬','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oû¿LÑöÕ k\'k1Šþ','Žœ1ê \\¯Qt©*¼€îJïÑêŽý%…ØËsˆò&','',0,'?'),('!Plu6 “ðë¡¼ÒCZ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àò˜ˆÁPÅÏÙe–‰1','T¨ÿû*”Û+†ÐøÊz]Êœ;>¯\nà3ÊÊä]?x×','',0,'?'),('!W\"z\Zþnúœ/íf&c','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/SecretKey/Info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':=#&T°‹c¾ÆÊ',' üKôàëÚCâ8<¶>u6Éu©jåâ’…2€l]wŒ½','',0,'?'),('!_Ÿè¼µp3p™n×ÓL','wp-includes/images/smilies/icon_eek.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œ/I ¿±Šxñ)ñ(\"ô•á','Ú8ÙäÞ÷àåKÒ‡ª‹³4¸¯‘¹é„ü!Éè:Ê°','',0,'?'),('!z‰úr`Bz(\"Q2üËÏc','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/GitProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gíéÏE#E¯^Û¸´üH','Ty¬üênÁa3\0®ö«¢Q›àªu[IKô¢›<0\0','',0,'?'),('!|(ßyËW˜*1Oo2Cu','wp-includes/js/wp-api.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@»BYÝf¦„búb2¯lÐ·','áN“_ÖÂŠR\"T–™¨ÕçË%iÇc˜¨Å‘Š	2&¢H','',0,'?'),('!ŠÎxx¢+!­Áœ[Æ(','wp-includes/js/dist/list-reusable-blocks.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ý»ìµvîGâø°QÕ^83','ÍXôm!L÷®o¡|_2*ßA5BæÆž\0Y³¹','',0,'?'),('!ŒM¦En] KH€#«t«','wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-intl-idn/Idn.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<\nC|r(ôdr\n¥Í”','-ï¥.×”]Í²Q\rýisþþúUÍìèù±uø÷ŸÅ','',0,'?'),('!ãðÙ¦ýë	0w÷I§±','wp-content/plugins/worker/src/MWP/Worker/Brand.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºÌDD÷hþ=×ßªÞ†¦Á','ÜÅ-ü‡Ü–pËež£gP¬£Sd:ö§kóÌ{/s®‰','',0,'?'),('!“w<âÖÉA\nî@¡O','wp-includes/js/dist/hooks.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë*‚<³Ç9Wht_[','²¢=º0R¤vk–Lbf§¹>(9Ò4û+Nm¾M–™«','',0,'?'),('!—ÁòÑT‚ÒŒwúÙÐ‘ï','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/advanced/lock-admin.php',0,'³Ò‡SíPÙ9GrXZ Â{','³Ò‡SíPÙ9GrXZ Â{','î;3/¯(•\nÍc¢[5`Pª¾o·wEÂ­,Fq','',0,'?'),('!›nNöJUª‰Ag¯p¥|','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãiHÓvÀÌqîãþ-','¡©Õ‚»z|–hn¦š;S¬|›²ýÙß/è“7ÃxÆb','',0,'?'),('!¢yË\'UµÇbÖð#}','wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŽzYéèè¡†:€Lk','3`R<‘ƒ!þÈÅ0)BÐWÙøgHÖZöø','',0,'?'),('!¢¼>’NN¸÷‘þÙŒó','wp-includes/blocks/file/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@Ç)btu œì÷u´×k','f¢):1¾9I<ÀÏ\rü—U\n¬_˜!kv|QCÕ^','',0,'?'),('!§##sw:\rH*²$qô','wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n¡²¡ÿ-áªß 2göl‡','Ó€²ýŒOD™„I{`›b£ÜÄ±Ë=Ê¬sÀmõ‰q.','',0,'?'),('!±&	v‡4ŸÆµ;¿0','wp-content/themes/Divi/includes/builder/templates/block-layout-preview.php',0,'!\ngØï5¥B&®}Ÿwm¦','!\ngØï5¥B&®}Ÿwm¦','Xœõka‡µR(ø•|ñEõo½s&ÎéM¨³&¹™™','',0,'?'),('!Åë\')¦qM*¦Xc','wp-includes/blocks/embed/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&¤k)âLõæç™ÛBû','×óùv¤PXsP;rQ3ç“°¼Í|ä#ê&@ôÛ#','',0,'?'),('!ÕR•á›pûnLÑwâm7','wp-includes/js/tinymce/plugins/lists/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')Ÿr?µNªã¼I´¡q\'„','%¨=r”‚§ŽÊÄdªŒv\n†’iÞz½xÁuù¤)3p','',0,'?'),('!Õ˜¦-ßË#ÜÃéß','wp-content/et-cache/en_US/definitions-page-16994221432273.js',0,'ÆLè9à†KcjqjÙÓ','ÆLè9à†KcjqjÙÓ','¶’ø:\0’àëÄ\n¬tP~Ã‡W™V•‰øe\nÈ;“Ï','',0,'?'),('!ÛIÇµ`©ò¶8¯t','wp-includes/js/dist/keyboard-shortcuts.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m$Ìƒó‚¦Mzâk›˜Ø','ñzf÷¥_{I¼œ‘ë‹¤ÛHËbÛL#Ê$ïOÑ¬','',0,'?'),('!ÜuDœÐ;^ŒéÛQ(Ée','wp-content/themes/Divi/epanel/theme-options-library/post/type/ThemeOptions.php',0,'JØ(¿â}	µ‡Æ!‡Öá','JØ(¿â}	µ‡Æ!‡Öá','³zZªÖéÆ.©\nHÖ«!££UÜCå“Se/¿Á˜wÐu','',0,'?'),('!ßy´Þ4Ð¬¼¼\"K®‰','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Utils/UriTemplate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d¾|äÈÖ¿Yµ!hu>—\"z','´gl@>s±›?Ä!¤ÕÎÚ”ÿhvý\"opüéž‚\\ç0','',0,'?'),('!ëùTÛ¦œíÖî	lÂI˜\n','wp-content/plugins/wordfence/lib/menu_tools_importExport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É³Òïxm46c)åµÙ','en¿*ž­×~íÀa¶ÙŠc]ç¤ØZbiêžXCqˆœ','',0,'?'),('!ñ>Ð»ÓŠ^ÔÖ[‘ÒU}˜','wp-includes/js/dist/data-controls.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+*_AÂ­|UY­Ë»','¾ê&öÂê,p\0HÔAUÆ«º±LIæät¬³Ì[Ú','',0,'?'),('!ñOŠ4ÖbCRR›fO²','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B‡Z:3òhr–$~å‡','øFCøÊ5#ÄÍÁÕC˜<ÞºbGƒG÷!§¸Ì®œ@','',0,'?'),('!ôÿ·íY0-z1àdm>‡','wp-admin/js/plugin-install.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4ÿDoþè”£Flzù','^ˆï”E™éÖçXDÙoÊÙËvªorW–ÄxáÁYõœ\Z','',0,'?'),('!õBØ\Zl!ŒZ0–æ','wp-content/plugins/contact-form-7/modules/hidden.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÙÙA8|)6aúb×ØÝ\r','ˆa9æ–·’xâžƒ‹Œç ºÅåê—˜Ê¥ÿËß=m_','',0,'?'),('!þ\'\Zà^SUJõ»oõÜ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ForbiddenOperationException.php',0,'j¬i\Z±m·ÑÆ LZ	D','j¬i\Z±m·ÑÆ LZ	D','»2lX\'Â‘LKü‡sÁ5wÊ<‚+väÎNÒ1bD‡qG`','',0,'?'),('\"\nä’å×4jÝSÃ‹†','wp-includes/blocks/spacer/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sÞk“Ëék3zÄÓU)Ä','u2ÿTØÚz\"»„íÿÏ-g¾‰¶&]ÌVÛj²•$O>‹','',0,'?'),('\"¥PàQŒÏé³´µƒÞ','wp-content/themes/Divi/includes/builder/class-et-builder-module-features.php',0,'{íÄ¨ó›“­´¾Â®','{íÄ¨ó›“­´¾Â®','_²Ã\rWè{«:L#ÍÌ)¨î-µÏf¤3€ê]™*’Vm','',0,'?'),('\"E[î¬A¥màAV’k','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AttributeError.php',0,'ÑhvÚÅM?’¿£0qñ¾h','ÑhvÚÅM?’¿£0qñ¾h','‹¦‚8êTD{1ƒ‹)[Ý´µâ§1F¬pÚe','',0,'?'),('\"EtÉyˆsŸÃíÞ\Z|g','wp-includes/js/tinymce/plugins/wptextpattern/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E	¿’-N¨o“—','þLÞúIÂ‘¡Â™Y÷ow®)Ìû4!:Û;?íÖ','',0,'?'),('\"\râ†»–7l~ÄçËAÉ','wp-includes/blocks/text-columns/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½ëžÎ$6EÉ«8ì‚y','ç¡\\{ 1†E®¼H=F§\'Ö±ÙüÇLë=tñ„0§XÆ','',0,'?'),('\"+–s;ïJ´QyÔf]n','wp-content/updraft/plugins-old/updraftplus/includes/azure-extensions.php',0,'8âümSøûõNìgfArº','8âümSøûõNìgfArº','!~‰VRÄ½¥k4\\ÈƒHÀ	\\€íÉEÇf™…m?Ë¯','',0,'?'),('\"‹Ü,€)#à`õ©ýB','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/EnsureFilterWorker.php',0,'‹}z7#›­ås¢ƒFx#','‹}z7#›­ås¢ƒFx#','²<_~\n´€ÔÀE^lã~Š!,­wk7dZÓÁf“Ÿ+®','',0,'?'),('\"§¢ºL®@õÊ$õMéz‚','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NotSignedUpException.php',0,'+®jY˜\ZñÊÞrÃ|¨x†','+®jY˜\ZñÊÞrÃ|¨x†','›UBFÆÓË€X/ýÚp³úx^ƒCû½î8†','',0,'?'),('\"$ýÔqN®Ä²½eÞŽd°','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ExpiredCredentialsChecker.php',0,'úˆ•°ï¯•KŽáS+','úˆ•°ï¯•KŽáS+','PŽ)Åø:/ˆS@’çF\'`âö=)è”¶¦]Íõ ýî','',0,'?'),('\"(}GÅÅrç	0—ŽV(','wp-admin/ms-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~<Úbísƒ\'Ñ+ø\Z¹Q','q«JÀRÔ_+ûV†C%ê~díÌË35kØã”xåê','',0,'?'),('\"0ÂrN1M•áä#ž áÀ','wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†EÓ¤ã­‡çÏMˆ¤gª´','QØø£*\'¶„þB©+Eüßž³û:•ómŒÎyuÖW','',0,'?'),('\"8A\n=ò®á‡¼fp5','wp-includes/theme-compat/embed-404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7–[R+S›†A-\Za*e','…}ÛpNª\0ÉK”À6Ñ%),×oŸò`ô¾¼‘)“1\08','',0,'?'),('\"Dç ’4=eM\nfM\"—¨','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/CacheTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–Æ=­VBcþÚ¾”~½ÿ„w','š­ŽnN­ÞäÅ\\c*9¨[¬Àšh@<è˜#oçJG','',0,'?'),('\"D÷í6I„(wÁè-1Ý','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/woocommerce.php',0,'\rXöÁ+[åBã…0ž%ñ','\rXöÁ+[åBã…0ž%ñ','Zÿt¦£ÔÞø²Ëç\"ûçêC^†‘V>Sñæà)>}4Ë','',0,'?'),('\"E¼Çú+ÙÜ8›Ðd´Ñx','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect233r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	fpEôÝ¥ËmÒqi*Y','\0;`*ú,º.¡ÿÿü\\r~—c;7øáÂ‘²rP¦ò„','',0,'?'),('\"IFnº§­¸@÷aÂ}’9','wp-admin/includes/class-wp-themes-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o6§™”»n+66„˜n®÷î','\\AYæQåÛ‚½|é?¼X÷Á ©n\ZÄí¾P3„L','',0,'?'),('\"NMô¸ê¿Âk¨VO','wp-includes/js/dist/data.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"Ç0™ÁûÃƒˆp|Ì‰(','\\‰;Îë2ØžšÔÛ™TSõ­ÍÒ\no\'\ZØ!—š©*qå','',0,'?'),('\"RK{‚ŸËÒNÏjRý‚T','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/Users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²Ü¸M»ú¶À´ð¯¼)¿-','§:¹}ñ“L•“Š¾>v?3Žcæw’‹Ï\"§ÓÍb','',0,'?'),('\"[*ïvüOóšKx-6V','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PackerFilter.php',0,'m„ñ¤zãz=fÌøAH','m„ñ¤zãz=fÌøAH','ó,ç»ÅnôÇÍž‚‰ÎIžƒ£6Y+îõŒ¡·d·ƒ','',0,'?'),('\"]îìÜeC¼å?ÊÁ@½','wp-content/plugins/wp-mail-smtp/assets/libs/lity/lity.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Á4!ÀÓýßûvëð–_l­','pŠ¬.ü¶©ÃfBå|±9üHx}éÝÌÙ-½ê','',0,'?'),('\"jaŠ-aÁ_òÁ+ß(è','wp-content/updraft/themes-old/twentytwenty/template-parts/featured-image.php',0,'¼¹eâ¿&ñ9ÃGª1¹Á','¼¹eâ¿&ñ9ÃGª1¹Á','ðª†`Ùè\n]n»5Ú.-iw!ñýj‰5ÛÁ§¸æ<Ï','',0,'?'),('\"lUìhª‰‹[‹XÎü%–','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ModifyMessageRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ª½\'#´!ŸNÆ5h+úë','SZánÞ^ÈµI„ÙØ$áa33™~%¤iÐ¦‚Æ‘øÈ','',0,'?'),('\"q”«²¢	K6Aâ¹®Ù!','wp-includes/css/dist/reusable-blocks/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`J_ZðÀw»;ƒ–Ï','÷Rå=çWA)Ñˆ†§Å`S{.‰)þu‰MM‘F{ô','',0,'?'),('\"rØ¿¢*Ÿ*\nt«J²ñ%','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Signature/SSH2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KNq†¼BÕR„#½GŠ','^ú‰öb&f&ÂŽ@ÊÍæö\ZÍnÆÜû¦ßtÛ¥^Aê ','',0,'?'),('\"s¬oÆ¯a³–Çaæ™±','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorApplyBatched.php',0,'ÿ¾$H™7­·ÕREç~','ÿ¾$H™7­·ÕREç~','`ú\\£8¬j~ßâÖÔ\ZóTÙüR}³”ÇDu åö¤','',0,'?'),('\"€nU*¬?1+i·®~','wp-content/plugins/worker/src/MWP/WordPress/Query/Interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(š#ïxm0kz¨Õ#¾ÍÍ','·Ï9¨´ÁAWv.WCßD\Z.¦¡^RíšTÜG’Û–N“','',0,'?'),('\"‹ø“K—6^¥4Vý}™À','wp-includes/blocks/spacer/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eB×Ä’îÒiÝð£¨·','êÉ8y—Nnmðí˜\\ÚŒˆ4ê­b/Øèd°°*}H','',0,'?'),('\"”\rÏ“$O»N™¨Î¬1','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/templates/panel/footer.tpl.php',0,'Ð¾ø¬œ¸)¦Œ€„0Ø','Ð¾ø¬œ¸)¦Œ€„0Ø','®oË\ZÜû/œXîL\0àö{E**‹Í—÷DÜÄ¯|Î','',0,'?'),('\" Eê6ÅÕtP]n‡	Ô','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSharedTemplateUrl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q9+êíe—ûfp\rÌ|\ZÀ[','Š¿£Ä…Ë)mÃ­™ÛÜ¬ÑA»%„=XŒÑ;ZŽË®','',0,'?'),('\"¡žŽ¾b9®‹eÑ|®_Ë','wp-includes/feed-atom-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±‰\\çIø6bJ§i\"mò®ä','+.4–0«I…gá(ŽžbŸ}³üªyÑ‚KökbÑ5','',0,'?'),('\"¢ÎÜÍ¹*>\r.3qH¤å','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Protocol.php',0,'Ù’2» Ó¿nÄYcfp','Ù’2» Ó¿nÄYcfp','ïº&\ZÔà^MKõå²ôÓ[º9R3vP\\r]œ’î','',0,'?'),('\"«¿;¤“øÌyßÙ=eÏa','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssCacheBustingFilter.php',0,'\ZÛ)”³gpÖx3ú\'‚‰ã?','\ZÛ)”³gpÖx3ú\'‚‰ã?','“n°LØ©–ãõn”Øú«¡­m×x†&Ïï8Q1»\n','',0,'?'),('\"­¨\r8§¡…ºÄs8Þ˜–œ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/ConfigResourceWaiter.php',0,'hú÷ýåûvž4b´ØèpÚž','hú÷ýåûvž4b´ØèpÚž','Àà %žðŽÔ%;—‰¡6åOµVË\"€³˜Å«|²','',0,'?'),('\"¯ÐÍÓÛ¯ª¨6§·7?','wp-includes/blocks/site-title/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rgm/ò®Sç½&;w',']BkUïŸJ­(¨Ï…í|9«™Ô| CãÚpûÁÏñ¤™,','',0,'?'),('\"±×cðï CHÕ\rÉžo','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹Ñç•áØøâ%Äß\"þ','È¢ÍÆdaFæ™f½ƒ—Å`hò»Ÿãi.sƒÅ·¥ÇÍÛ','',0,'?'),('\"µòÉàÉu>1Ð7þŽŸ','wp-includes/class-pop3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ó~ð›Éåýk«Xþ_°Þ','*,\\dã›WÌ…½\ZŒŽ)`9øNÖQ•@J5h&G¬','',0,'?'),('\"¶g!’Ë\0ù®×âq=úo','wp-content/plugins/worker/src/Symfony/Process/ProcessUtils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß@\nî€è¸ÚŒoªàè[µ','rž·ªÀÐÐ¤ý&zú0î?ÅE!¸c­.ó´<ÎŒš','',0,'?'),('\"·¢blžíŠU­ÀžêÇsÀ','wp-content/themes/Divi/core/components/lib/SilentThemeUpgraderSkin.php',0,'ÙZÔ7cÏÉ@Öœ¹[‰','ÙZÔ7cÏÉ@Öœ¹[‰',':žÒ²ê\r4Œ,›þmîŠËéÀw‡ÁÇàØví2','',0,'?'),('\"¼äàÆE±ÂqJîÉD*Ð','wp-content/themes/Divi/includes/builder/tests/codeception/wpunit/Translations.php',0,'µºÆÎEÊ±ø^l¾ô.%Í','µºÆÎEÊ±ø^l¾ô.%Í','§ú©!Åý\'<©q}ºÎ$Ä3dœh‰\0¹Ü£î','',0,'?'),('\"ÍGG1ã¡êBÄÝÜö´e”','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Account/Update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L¥£1PþµñË&-Œ½ˆ','ýñ=oØ0˜ãu(Ð-LP¬©„VÕ(üºú\n”','',0,'?'),('\"ÓÄ6\r+K{×\Z!a','wp-admin/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚…žj,²f¢d¿­‰Ÿ','èÀ´¼c¼g,’úôð	TÉ§„3óõN«ó¡æŒY','',0,'?'),('\"×pBN®=ŸÐ¤ZëÆ¨','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/Exception/BatchTransferException.php',0,'?Ž´³Oçë$+dz\0¬Æ\0','?Ž´³Oçë$+dz\0¬Æ\0','Ÿ¸cî¤Û®jevFwöJß›êR4Gà¦\"Fo¯Ù','',0,'?'),('\"Øw²¾h²ˆ­Æ','wp-admin/includes/class-automatic-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±l?7Í\\™z’1eÀïþË&','\rƒíßJÇ/¦·tÉJ’hëbTˆ2ÄöjÕÔ%kMÒù','',0,'?'),('\"ÞÒ0Ø\0“Lµ\'Mü×','wp-includes/sodium_compat/src/Core32/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9˜5£ÀeÏf”‹#®Ï','èèi˜Ä\rCáý¢\"Ô³Á\r4†®8ÀcöÑSÝâ','',0,'?'),('\"ãd4=géº HÄˆPW','wp-content/themes/Divi/includes/builder/plugin-compat/kvcore-idx.php',0,'vooBZã©s¢Ùùÿ{‚','vooBZã©s¢Ùùÿ{‚','Ù\"½C\r™öÛ¼ŸËC•,´,ù=rÃMÎh™Ú:‘KŽé','',0,'?'),('\"îDã±Z~\0ò|3Öõß','wp-includes/blocks/query/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹±g¶Ÿ‚A[NÚÿ\"/’','µ@z@Ò´:otä`–+“?¢u}Ú3U*3ËM`>q}D','',0,'?'),('\"öŒ½çÍ¤~D9šl','wp-content/plugins/updraftplus/includes/Google/Service/Genomics.php',0,'ìèÌU®»Œ`Ô¡t¥ç9','ìèÌU®»Œ`Ô¡t¥ç9','¤˜õ\'*!²eå©fXFo*{Ðjèf¥¥»=M&','',0,'?'),('\"øJ¢°è2«\rß¤-H˜&','wp-includes/js/dist/date.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V•½Ö­yÆüTö#ö‰Ž','PXËÃ¼àÁàòŒPÏqTgóNö,ÞK§ÀÓ','',0,'?'),('#\nÁô/†ÛPZ~h„Îø','wp-content/plugins/wordfence/lib/email_genericAlert.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+I*kCûe;ÐP¸¡Œ¬S','Š _\'\\qÈËüF0´‹{ÆþÐ¢FÑ\rÒƒ.æ OK','',0,'?'),('#XÐ2£ß­Á‚š{Z','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_lt.js',0,'NÐ¤)2tõ²*Øgëêªzv','NÐ¤)2tõ²*Øgëêªzv','ÃÉ¥Þnnf²\ZÝ¤wàá#XµA~–m*ÏîAï','',0,'?'),('#YñB7ÎZ»Baúmf™','wp-content/plugins/instagram-feed/js/sb-instagram-2-2.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùÿ`ôZ™Þ’‰÷žp³Ò','E9·`ÖRŒÎó ½áY¼Æµ¤KÍ5âë\Ze9öH!ß','',0,'?'),('#Ìá„‡çN@@V3+','wp-content/plugins/instagram-feed/inc/admin/blocks/class-sbi-blocks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôÃc/øÒ¯°!¢Î¨‚íf','É÷´ç\'ŽúÂé)®üÜD„S(Uøóéwk|Iœx','',0,'?'),('##¬ƒSÈapå¦','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö\0ç¤Ù>ö¤@UeììU','®È›pñâ¡Ë„o<¸§O\n¼†Oo{Öw=—S','',0,'?'),('#*É*‚aærU·»p½','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Enum/StatusType.php',0,'©;Ö©†š›Z¤÷©@h\'M','©;Ö©†š›Z¤÷©@h\'M',';ÚhõÏu ×fMá&g]4Ì<MM0Æo™û ¤®ÏhÐ','',0,'?'),('#2`\'>ë¯ÚX6Â·ª¼u','wp-content/plugins/wp-mail-smtp/assets/vue/img/amazonses.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îh¹÷\'lÚöà±Oí=­','£)Æª\" â.8û|’[g‹0÷ $\0¨UÆ åÒ','',0,'?'),('#8“§2å˜¨\rá	Ðó`','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadBuilder.php',0,'>=˜@äÐXeþßeé','>=˜@äÐXeþßeé','zF#=Ø_‚Yé¤SDg9ÕÂÎyOy=\"ìýQ;Ê','',0,'?'),('#9ƒ”ˆÀÙa¥Ü@0ä','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescription.php',0,'{Â<‘ØÒB[224;ÍŽ=','{Â<‘ØÒB[224;ÍŽ=','b•rÞcs„é±£\nvU[/8Ç4E„Ôl!Ö‹ëœÑ','',0,'?'),('#?Çm¾Ç§Û–åAä§_ü','wp-content/plugins/instagram-feed/languages/instagram-feed-en.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ß±ÎÞ¿AŒ\nÒCð_Y4','‚ï\rùW·º®­G7„’šQ•ögN×‹€©Üº_','',0,'?'),('#D®Å„ƒý÷Ÿ5%»Ä','wp-includes/class-wp-hook.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z“jQb¨•cŒuVÞ¾','4¤°÷zÚœ\nÂAâ§‘Ë†B·¸/1—ì€—”ãa{)','',0,'?'),('#IÃyZÃ%‰ˆtl:\0F','wp-content/plugins/updraftplus/central/modules/theme.php',0,'ò>o\"\'‡3@šç}','ò>o\"\'‡3@šç}','/%H&±„íçz/5=€7¡÷FéÂ÷V©}-fªöÏò','',0,'?'),('#T›¼*|`í\ré `±)9','wp-content/plugins/worker/src/Symfony/Filesystem/Exception/FileNotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿*Ù›Ý¯äua9ñ§','³†…ÎK*ý‰\0¸=|ÎÏÅ}ïêrÈõíš=W{þ=','',0,'?'),('#VW&8ÅJ™µû¾Æ,Y¹','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildInfoApiKeys.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÀÜ‘\"çusî£àŒiƒZ.±','ªvÑþ©4\0šú}¹¿—6ª©_@oks}„œh{nO','',0,'?'),('#`¥dþÄWb©/9¿š/','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ª5O&?«Eº	»»%','^%%ŽhTŠý,‘æû¨³¾k2¬È®n=n%:Òï','',0,'?'),('#y÷Ÿñt(‘$NTüt¥','wp-includes/Requests/Proxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r’–ã|³P4&.|‡‡','ó%MuŒÔä#•¨g±¡]®zmÜ¦³ø‰8‰Öòu¸','',0,'?'),('#ƒÉ´¥ª.\nïI|+òÉ¼è','wp-content/plugins/contact-form-7/modules/really-simple-captcha.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–\0sO`‡ÍÂ\'nýQƒe˜','ö\'cá¢îÞìe\0YÔct\\•…w!Lí\0µ•¤7','',0,'?'),('#„h*l‚üÔë=zQ8¯','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/MinifyCssCompressorFilter.php',0,'Ið*­GKn>ñødÜ¶ô','Ið*­GKn>ñødÜ¶ô','£¯ºì—rŠšÁ‹! µF…štpv=’ÊÊ2†¹ÿ”÷','',0,'?'),('#Žƒ÷)º#gùÝÛW}þ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/DeleteMultipleObjectsException.php',0,'Ðú^»ÄEúÝ«Ê—Z—˜„','Ðú^»ÄEúÝ«Ê—Z—˜„','Dub”@øÉ9žr» go24+Í»Â,$°æ |w','',0,'?'),('#”\\M´Ã@­0¬ÚT´','wp-includes/blocks/post-excerpt/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕÚQjÞ)O=S©R˜ø','oCœl\'²6Ä²Àj‡Ý¢2ð\'\Zªl\'ö\nÎó}{','',0,'?'),('#™YÝŒ¦t›—=¿ÞE/¹¡','wp-content/plugins/worker/src/PHPSecLib/Net/SCP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßO.&ÉPÌ|Šï,ÕÚ','×ABº›™Gw¨ô€ÑP‘¡nA1qŸ;Íƒ­Å%Ó#Å','',0,'?'),('#n¶êÓŸ|øÁŽ|ÏÉÏ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp192r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?gÄqˆ!9´bf‰’‰€','SÃ¤;}ø†…ñPO»³îfS¹—š-»	{üÌD¾n','',0,'?'),('#ªýÿÓ÷Ys’N¹;»ä¾8','wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/MysqliStatement.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3^5Y•ç¶b\"Ú•\0¶','ÓbÙÜº\03žÆPâ(1W¤Ðb©ÊÉî=–*Å:[','',0,'?'),('#«-gå\\L%3ìSÝ‹B#\r','wp-content/plugins/wordfence/images/wf-horizontal.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E%Zˆlµ°o9Í’ŒžÞ','¤³0	ÿ·6‚Ó­ëIv›œàµhJì˜ì`äîÇÒ','',0,'?'),('#®;®¹b„¹M[sF,âJÙ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationResponseParser.php',0,'»î¯e¤”©sâ!õë\Z','»î¯e¤”©sâ!õë\Z','	ÅÓcæ²uÌZ[îY\0^ÜuO() \0&T¼ñÄL3á','',0,'?'),('#³Æ#î2Ôß­­#|','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Âýét·+¥™q°êòìa','4Ã¥_ùØª™kûêÌiß3?p‹³5õMáæO|\Z×6','',0,'?'),('#Å9±B`Æ/OKïiÒ·ø0','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Exception/InvalidResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡æ|îÁ>µ¸…\"4¸','¡-^Ù:þ¦v±ñ+²ZÓ:Öß¶õ6IÖ$É`','',0,'?'),('#ÆÙLÄD¤xÑ†2]> ','wp-content/plugins/duplicate-post/src/ui/column.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þàc=£N–ôšB97¶¯','©~‘gY·«+¡OojzWàöÏæ¹iZ\\ä¶v¹P…k','',0,'?'),('#Í J°´/Ý©ÿî›-','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/CommitBlobBlocksOptions.php',0,'ÀÖF•y–Ð„Õ²§Éa','ÀÖF•y–Ð„Õ²§Éa','ÓÇêV	e,BªÒ(\nÅ\"3(˜¥ž	»;DÂ×P:JÂÑ ','',0,'?'),('#Ï¿ÑDPECì‚ìþÏ%Ù','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RemoveCredits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','».ð€8¨—ÏË9_¸tñ¨','±fgúÛõ´rA\';ŒÕÿISÜMû7’£','',0,'?'),('#Þ¼üÝG˜cß¶mêÑp','wp-content/plugins/wp-mail-smtp/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù†…Ü¡>¿\rìvªÜŸËÕ-','Š€JjÔÌ³ï{}MºÈX#õ¥[H`‘p£½@0d ÿÓ\\','',0,'?'),('#à.ŸõøÿÉ·éÑL‡c¬','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/TruncatedBackoffStrategy.php',0,'†¯[Qfÿø{‰ÂBË9˜A','†¯[Qfÿø{‰ÂBË9˜A','P—U­nÙ[%=šâå ¥_”ðõï³‡#ïu_ÜÁ','',0,'?'),('#á©U¡|u)jJThî§','wp-content/updraft/themes-old/twentyseventeen/assets/js/html5.js',0,'^é{1P\'Ú`î®âàK','^é{1P\'Ú`î®âàK','‡R³y1N…hu¤Â¿ëžÏÖI}€Øžöòñ)i','',0,'?'),('#æà‹x&\"nÖìÓ®T±','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Tasks.php',0,'•%°ßóEš[Ys\0Ö¿','•%°ßóEš[Ys\0Ö¿','3€Ö,JvaÒá•„–P2VÜÎäÄ\04ÅN}W','',0,'?'),('#é”’-i‡•\0¼¸Î[','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/DeleteContainerOptions.php',0,'^ònŽaB?]î3~ÚÉô+','^ònŽaB?]î3~ÚÉô+','Ùâ­ñÀí2;¾\0Bñ]Š9†™Ú¬W\n<‡MþûûÑ','',0,'?'),('#éõÁ8÷Ê=%iÆýúL','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticFilterInvoker.php',0,'ï|:Ùòaû¡Ø}ü|x','ï|:Ùòaû¡Ø}ü|x','õ¸A¬Äµ…æ ÖVÁ’Ù‘íwCP‘|ßaQÔ¹ôH','',0,'?'),('#ë1³Í‹2/,ØÐø…Óƒ','wp-content/plugins/contact-form-7-honeypot/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|Gó&°”g56Ãâ’d^Ù','õÍp`wÉÐBÕ}mï(œ%£Ï÷o\"…ÏnNÞ‰','',0,'?'),('#ñïiUÓf›»ˆúÑzhJF','wp-includes/sodium_compat/autoload-php7.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ¯·±Òánýô­4œç','ð-ÑÐr*H–ñ^„üOÒ<a{©ƒ™þXë@åg ã¤+','',0,'?'),('$}þ*ìº±¸\\\"¶íão','wp-content/plugins/worker/src/Monolog/Formatter/FormatterInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZÏ„åÐQ¹µ=²m0.¢¢','–\rÉå±Xƒ(Wæ1tUöÀ„t‡*f§¼˜va~','',0,'?'),('$d‚—E¿‰Ù\nš€Ç]š','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterInterface.php',0,'j&y´Ãô\"@¡tQØ','j&y´Ãô\"@¡tQØ',';—0Bc#Æj¢uäkIirR\"‰ÙL93‘Ç(¹','',0,'?'),('$úiçã_ã©óU@ñÚ','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/BitBucketApi.php',0,'îÔ\0=‚¢›ƒí¥3','îÔ\0=‚¢›ƒí¥3','%îžZ²v=(Heú`€¤£¢ õ–$ÌÜ YÀñã','',0,'?'),('$÷g…N	×¤‡ÐwB9¦','wp-content/plugins/worker/src/Symfony/Filesystem/Exception/IOException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'ú€4o¾›Nœy£î','‹ÆÄÅóïë3*î žK‘¦‰]ŠbT@ÆŽÒè±l','',0,'?'),('$\'KMª™ÒIÛÞ¶j','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/Debug/TraceableEventDispatcherTest.php',0,'Â!ºÍ«NÏÒŽ…%ˆ¥','Â!ºÍ«NÏÒŽ…%ˆ¥','Û§þáBÄÎMnà \0C,‹±†}Ó&¥ö	gu5Ü','',0,'?'),('$)—ƒ…Jâ\r`?3…','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/MapFactory.php',0,'DEÒW\'ú…‚ããÈ˜&ó','DEÒW\'ú…‚ããÈ˜&ó','žÔ\"\'í/M-TÃ~§ž´ƒÊö’ˆJ«µoÔD¦îu','',0,'?'),('$*ÙQ1>aÑç‚Y´[’','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmailAttachment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(›ë’0aGœÓTÀYGF','ì²\'™l5ÆWÝ­|½#]1ª$\"Á²š<\\Á€','',0,'?'),('$4°¬AE§÷Áþ?÷Ù','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/url/validation_url.php',0,'_zž…Fþ%eÅˆ>\\ŽóÆµ','_zž…Fþ%eÅˆ>\\ŽóÆµ','Ó=¤,R­tÔ™?\ršrÓ¤}f;‰Ü`½«/','',0,'?'),('$7yûÈÇ]ÚØðNù','wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»ªáFªôæßY¬`½8æ‰','^±zøy°{bŽ.nš&o@Ä{ë<,ø$‹ð}Ô','',0,'?'),('$<Âòï!YBýÝ„ Y~ûÅ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce-small.svg',0,'ß¾\\H„]øð9‹Z©¦','ß¾\\H„]øð9‹Z©¦','•\r´z³mÿª€]ïH+¹¶y­‹ÿ»qG(Sá\ZUéáÆ/','',0,'?'),('$?´ä¯#sÈC	{§Ú\r','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-xml.js',0,'J!\rê%qâíU=w/{´‘','J!\rê%qâíU=w/{´‘','ØºxSý4âä{„’_ƒwY-Çâ\Z_Uf$´²‹úd','',0,'?'),('$I*ö¹n¦¡²gIÒ¢?·','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Size.php',0,'þ‹4<k‘5Mð\'Ü_–Dö','þ‹4<k‘5Mð\'Ü_–Dö','À0+fU‡ñSn|‡+M<‚0.+q«ÕHK†Th`FŠ','',0,'?'),('$l}|]d-«bmµR¬','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidSOAPRequestException.php',0,'ôÕY<a«ZZ¿¯Ô[K','ôÕY<a«ZZ¿¯Ô[K','nÛŠ¹ð	X¼\\Dï9þ]U…Ú¥\"PÀÉ0iŠ±E©','',0,'?'),('$làˆtyñËu;Rý3','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderLoader.php',0,'S©däÁ¢³uÿ\0Nkga','S©däÁ¢³uÿ\0Nkga','QŒD–?Åý«þ°\'>¢ø.×–±B„BÇ¶ç,âUkƒ','',0,'?'),('$mdñ¢ŸÓÐiX|ö×','wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/PdoStatement.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê}‚/A†\Z#–¤s!$H','§ð™È;•û¯Æ´y.(C}ˆ¥Æôö*×ïkW}æ›C','',0,'?'),('$n+F‚—¶²*ñc\ZÉ','wp-content/plugins/updraftplus/templates/wp-admin/advanced/wipe-settings.php',0,'×Úul%E=¦EÀ(µj','×Úul%E=¦EÀ(µj','ºÌ¿ùÝWœü™Â:qðÜÆ\rK/‘14_@Ò¬à','',0,'?'),('$|ì|AºR`ºT“Ô…\"u ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3.min.js',0,'äú„$äî¦N!Î·±rj','äú„$äî¦N!Î·±rj','ÊGè‡kQŠnMt:‘{šäì°>¡µ!7¿gr®nŒ#k','',0,'?'),('$’„õ³0S\r˜rþ®©','wp-includes/images/smilies/icon_redface.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿ÕþœUË×íEù ¨Ó','>ñ»×÷DÆC9MÝcJÀ\Z+U•œ§L1f+g‚¸ð','',0,'?'),('$•”T¤o±|üš¼/ó','wp-content/themes/Divi/core/admin/js/version-rollback.js',0,'ûåªÛÊt§óƒº&\rþ?','ûåªÛÊt§óƒº&\rþ?','„ÀKšèéN¦© „í7\\Å­B:Bq«pÚ\njøx0','',0,'?'),('$˜z†¬îãò£Q	ïy¯¿','wp-content/plugins/contact-form-7/modules/sendinblue/sendinblue.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§Ì~UoŸ¶js|,~˜','™¯ú›ré;>Urõâ³t¹Æ VÅìçÖ…–_Žá','',0,'?'),('$š:ÑŽUr)ˆû\Z×','wp-content/themes/Divi/includes/builder/frontend-builder/build/bundle.js',0,'B#¥ímÆî\"Y/<„','B#¥ímÆî\"Y/<„','^î‡4:³Ò}ï§=ô­Ýü•£¨¤nh‰©\0`j<§¨','',0,'?'),('$šèSÁCkèô‰dÎWû','wp-content/plugins/wordfence/views/scanner/issue-timelimit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø!í‰å\"¥»V%		|','öX>‡Úïœ[6_ã\\—æµa·3›÷ÉÐséV','',0,'?'),('$±ñ^\'­3ÛM[¾œ]ç“','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/SmimeInfo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[qÃïpÑ2HðDihË','_s€ˆÁs±±X[þaÚT„‹ª¾åŠZî³¤c)q','',0,'?'),('$¹Á¼CÁ®Àó/¼9¹¸','wp-includes/class-wp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z°I„Ö©‰Eu&S^:ò9','À¤tÈDÀMQ¦ÇÒŠW8šºŽñÞü&ô­Õ8','',0,'?'),('$ÁÑöž\'àgÆSþ~ïx','wp-content/plugins/instagram-feed/inc/admin/templates/locator-summary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`™ÂBˆ…ˆ•£t¥R™','äfv„¬h¯vkñw{#÷¶eË`>T…Â\'ÿÙÊÇú','',0,'?'),('$Ï8Úy`îÓá×âè—RG','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidArgumentError.php',0,'riÎ4Db-ê${\\óIÉ;','riÎ4Db-ê${\\óIÉ;','L­õè¡Í‚ßý²µ‰Ôn“îè€M¿¨ì\n2ÊºÁ','',0,'?'),('$ÑÌèañÄÉ~¥1G¸þ×ø','wp-content/themes/Divi/includes/builder/module/Icon.php',0,'$´aÊ…öûœêS÷kâ','$´aÊ…öûœêS÷kâ','§ƒ·a\n“¬É/|\';ŸQòµMJNuÏËÃpüd¼×','',0,'?'),('$Ô2â@n±è«Š»K¤˜Ø','wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\HÉÖ!#š¦>báW‹æ','–&ßxÁ†wÓÎ±hØÄ)šÅ“@5mßÒ.)9ßR','',0,'?'),('$Õq¹|#™\"	ÞÒ¹<É','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/php-opencloud.php',0,'ƒ¿Œ‰ÄµãÖœPú´üb','ƒ¿Œ‰ÄµãÖœPú´üb','ÞUªT XpÅš…ªÿºd8wy>ª8ÇˆŠT\r+x(’”','',0,'?'),('$Õw½ª(_»-s†Bƒ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticExtension.php',0,'w`Ì•~‘¾?P 3\Z¬','w`Ì•~‘¾?P 3\Z¬','q°Wú:Ä[³WÈM°5îJnDoRqdTê·Ë›¢J','',0,'?'),('$×¦ñG±¾k~•‰†Ê‚~\0','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime239v1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áî;ÏÌÒ£Æ¿c‹LÃ','˜er¬1u:Ço³Ò¶7k7ƒÄÃ¤î¬ÔvSÒösQ','',0,'?'),('$ÚÍ`E\r•ü{\'o‹[','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ServerException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z{Bœ6%\Z#8¥”\00n','‰á,_Ÿ.¦Â\"ˆ´Ë ®“ìêVŸ°ÚäÖ—½*‘','',0,'?'),('$ã+2(ù/o†°+','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/RequestOptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïR#MËê\"¢<ët}5','SäÓù‡’Veì\'âM\0÷xÊÜ£ž‹œò[ƒ×Ö','',0,'?'),('$äÎ-#q`Ðl$W„Û‰','wp-content/plugins/wordfence/lib/live_activity.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žþæik³ê™s','^&†Vðb™Ç,›•s×ÄB^í—R£4¾Ñ¸ƒ©ÅV','',0,'?'),('$èï”|©¨cØ¿ \\~Žõ','wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£\\Ë^>ƒ5±pa‘ÆW½î>','§ô‘ÌÒ“¤éÝDCÉìXG4WFP·#ÞN¹S\Z','',0,'?'),('$î§¾`.ó°Ob¾	†','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Event.php',0,'²“$¶Ÿ”1æƒe)òÜ','²“$¶Ÿ”1æƒe)òÜ','%\\ôfÝîª’‰m-”nC¡í5ÉA¥ˆèÄZ9ói\n','',0,'?'),('$îï^„âØ6bH^ê*âƒÚ','wp-admin/options-privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á)æògVÖnnÓß#','VwÙÑ»}+üÐ8mõÕAåµ¦ìÆ`Dì“\"\"»mÕb','',0,'?'),('$ò6¿ÓíÄ^!Ñ0ÅÃ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateCampaignStatus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜Ç\0-È8™\naU¬6‰x^²','¤Ãc³™Äy#ïñ¶wÌ_}OžÊ¦X|?sÑ «','',0,'?'),('$óÏ«/ñþ¥­!¯²Cæ','wp-includes/IXR/class-IXR-introspectionserver.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Ua¾wä<øIw‘p†O7-','ƒí\n¾àÃûCþýžPEQ%×D\rÑk*žXéÆÆo','',0,'?'),('$þìÛR¾ŽŸß[c÷5î','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_is.js',0,'$};t‹Å}>RÁ655‘','$};t‹Å}>RÁ655‘','T~»Oæ+Ms?!ok¬ù‡Ä ê@ šnÃøÅ','',0,'?'),('$ÿX÷ï¸ˆùþñ<_Ù ½','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandException.php',0,'ñ½¬Xì:4tq–nhßm','ñ½¬Xì:4tq–nhßm','àG{÷]ap…GR®j|)TA™Åd‚\ZµÆ§VÇÇ®[t','',0,'?'),('%.œ So’Ü„oÝ©t','wp-content/themes/Divi/includes/builder/scripts/utils/sticky.js',0,'‘Œ‹UÊë¿òe[á;á\"£]','‘Œ‹UÊë¿òe[á;á\"£]','?ÿÂFeù²¼1Ea…±ƒ6ä£lP¢\nI \nF iuA¶D','',0,'?'),('%í¬]MÛ3¨T¶1T¸ã/','wp-includes/blocks/preformatted/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZØ‘£\"7æ`¥\'xá±‰§','Žê3û^yÇÞr\"¼ï¶ªŒÁí}#\"5ÁpßvKÉ','',0,'?'),('%Éüÿeg™Áª([ÅR®','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/AbstractMessage.php',0,'¶±ªožS’´O¥Š','¶±ªožS’´O¥Š','™ë·•æE8óæÓš¢ŠÂõ%èŒ\0 %8\0_`m¹ët','',0,'?'),('%û¢Ã›7Òáå¨³Ì','wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÀyÁFH”Ã\'\'nÏÒÞŽ”','KD[Rà®žàƒ ží5±:grP7*X\Z','',0,'?'),('%=\ZD{O¥áº¼ÙÿÀN','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/AbstractResource.php',0,'Bi\rë:¬û´¸\r@P','Bi\rë:¬û´¸\r@P','1ñ\"¿¢€W…QïÂ$\"ÆI7g6ª­\'®XeÒ','',0,'?'),('%f‹Nvn9Â,\rÍW','wp-includes/blocks/post-template/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôa\Z	ÿ~9¯ôÛÀ«ž','C°×\\\nªKÓÔíƒ¯jã>b\0»Ä›ò43“:Ë','',0,'?'),('%$ÎïÝM¼qæT<Äýð','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C£¼UOžõ\Zß ¡xtH','ŒG\n\"‡_/Açg“h	U?âS‚sóHö×‘‘Y¤ô½Ù³','',0,'?'),('%)¤ZrŒm©uˆ\Z—þÖ','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/updraftcentral-connect.php',0,'Í°œË±_”¸_ÁŸ)ÁÍ','Í°œË±_”¸_ÁŸ)ÁÍ','‹÷÷\"P9>g²Ms/0*À\"’ü?¦ñ.²ñ¢kµPt','',0,'?'),('%.–.Ctí=áêÐê\\`','wp-includes/sodium_compat/src/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öcJ>|Eqv0|bv‡Ã ','ÜŸ÷jÆpeòM¨N«?”ìÎaÁÒXi+!S‰2','',0,'?'),('%0°ÃH™Œ2¤Çß·ë','wp-content/themes/Divi/et-pagebuilder/et-pagebuilder.php',0,'Úoª~>.‘_¯sma¬','Úoª~>.‘_¯sma¬','Ž<)ø‘ýX»)‘º:à™BÿAÓDÿý†ˆóoƒÊÜ^','',0,'?'),('%=~Ý|ù×ÀÆf/‚„½wF','wp-content/updraft/themes-old/twentytwenty/template-parts/pagination.php',0,'}3%å—aÅ\\‡‡l×ÿ[','}3%å—aÅ\\‡‡l×ÿ[','ýsº-8–#²cÁ<\0/ºn\\8ß”§—¬“®…\rPšm','',0,'?'),('%D?Åm1QZ\"ÅcAXQq‡','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Insights.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŒGÆŒß=£¾1\nVç0î','8}·>íÛk6`¼ÿuidâð‰eHíPÍ^é','',0,'?'),('%I\räg|¨Òá0uT!ô','wp-content/plugins/instagram-feed/img/about/plugin-seo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šP¬‡¬lLX¬ae0;OÞ','âqü[Ð(¡#Ø¡Š¨v Ñ³¾˜7RÍ\\G‰ÔÜIÍê','',0,'?'),('%S…$µxN-ªÇKYlW','wp-content/plugins/updraftplus/includes/class-onedrive-account.php',0,'´)QÓ;Õ¬Ð¯|y\r\Z','´)QÓ;Õ¬Ð¯|y\r\Z','çž5¸¢JARq«õvJ”¼æ3×ÍËªX(	«€Ûk','',0,'?'),('%U·ësûq©/èÉÛ±','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Autoloader.php',0,'p|ÎI¸%ûa=¾ºy','p|ÎI¸%ûa=¾ºy','‰Q%©lÿ<jRXÒ¯@ÀeGyV_þöƒ{“b ³Lƒ','',0,'?'),('%[‘?X„I›]¹ûeJØ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/EntityTooSmallException.php',0,'‚DÇÑ–üöÏèæ¾NNãÃ','‚DÇÑ–üöÏèæ¾NNãÃ','TØ4àÜx«œQë‘<ña¡ÉÁE=7<ÍÈôp}Û','',0,'?'),('%^‚¾æõŒ³»pªÿ”ç','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RecordTypeError.php',0,'K6-Sùó•h\"t0Ë¹w','K6-Sùó•h\"t0Ë¹w','3¿\nÝÂeÿ‡Â*9_	Pw¶/ÔhòY­è&','',0,'?'),('%cAzõµûÁY,Ú#¸','wp-content/updraft/plugins-old/updraftplus/includes/jquery.blockUI.js',0,'\\˜ÀËúÎæÚ°x1Ë#=','\\˜ÀËúÎæÚ°x1Ë#=','š¨qÎ‚<±²«”AŠeóº·Š²Õ‘Õ~h¶PÈæÔ','',0,'?'),('%e\n3JÄÿVKÃ¢@–q','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildDomains.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ê?ý¢‚¼•db†·Ë','ášE#/jÜú~èö;¥‰Ú0PVû79z·J¬¶yÀ','',0,'?'),('%hBAÉï½úA~)tò“¶','wp-content/plugins/updraftplus/admin.php',0,'ÍX4á^lqèlg¢Zë','ÍX4á^lqèlg¢Zë','$Ó©\\Êó,\0šXñ4†qïE½SŒÎá^ÔãÕŠ','',0,'?'),('%h‹Âb&˜ìBE°Fÿ×S„','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedClientAddress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=jõÕ™$©ÙÞæ.Š$ ','¹ÜM¬£üªoš\Z‚§\Z\nÞ¾ÆY¹P:*¨','',0,'?'),('%i¤:‚)¡J¿€,v©ú','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjFetchError.php',0,'läãˆªº{A¾‡(F','läãˆªº{A¾‡(F','èôÌ\0	|Ûùßðÿˆæ‰­˜+•uP?ÃzCÚ¹†’×','',0,'?'),('%iÙF\Z™ß\"6¸éÜÕ ','wp-content/plugins/updraftplus/templates/wp-admin/notices/report.php',0,',æfS®ï×L-I\'›v»å',',æfS®ï×L-I\'›v»å','ë«L«7ƒH)Ð¢ +L\n¸=<“*Õ1\rsÉ³','',0,'?'),('%iþÍÞågcaìWÎ!qÐ','wp-includes/blocks/cover/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?èUu¾ì´ŠŽúÝ','»n\nØë=³ô	êùÔH_iæ°rÕ7B Êeûmxödß','',0,'?'),('%q(’Ç{8’ð$kBv¥Ãm','wp-content/plugins/worker/src/Monolog/Formatter/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('%sÂ39#SèMÓý´ÿ','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rVÞN…ck0ã}/õÕƒå','nëK ÐkZÂÖ	À—ò± N$ Ÿ EÐš¹×eØ$','',0,'?'),('%v[†é˜8×ÝÜ+Žºæ¨','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Resources/s3-2006-03-01.php',0,'¤ëqI{‡\0(0TM\"¦&','¤ëqI{‡\0(0TM\"¦&','zu…mÉÌ\rERÙ¶·½Ú-!ôÒ=¤Q›¢ØN\ZÉÐ,','',0,'?'),('%„†z9IèpŽàÊDÇ','wp-content/themes/Divi/theme-after-footer.php',0,'_u»Ó•__c\0n,G)','_u»Ó•__c\0n,G)','5ž,“’Zó¶XeB©“´¤¼«ìhÌÓf)K³õA','',0,'?'),('%ˆµ47=Ì\rÙ•ñú­\"¼','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Exception/AuthorizationInvalid.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™U\\°š‰R6ÉŠªNYA','r*aø«æ~{vC:òëGµ®wí\\”ÂíÃu–lò3™','',0,'?'),('%çK[À¯Ñ¹ª6/d','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/th.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òÃ[kf«ë‰!²Ê’)','¥|Lô3ƒgÊßÈ2\0:äÞ¶äØºá¸zâMé9©','',0,'?'),('%‘ŽZmY¬I>~ÁKô‹\'','wp-content/updraft/plugins-old/updraftplus/includes/Google/Verifier/Pem.php',0,'õÿ#ÛUáµâÛ™Ô*€@þ','õÿ#ÛUáµâÛ™Ô*€@þ','l@¡ñ[óuuPjÈ%2AíØË‡p¬—ýäº(w&x÷_Ò','',0,'?'),('%\0‘ÿx[Ñd®\Z\"}¹','wp-content/plugins/wp-mail-smtp/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i«†1¨\'øf/í&œÖ‘','Zš=lRÖÚŒÛ+ÁMgy)Rº)Gùx+6“_¬','',0,'?'),('%¥Çà9íºñ\\Þ‹ª','wp-admin/includes/class-wp-site-health-auto-updates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—WMŽ°LˆS€Ÿ¼ªL\Z¼™','&ÑòoQ\r\\æ£—ÂŠÆâ<}\nÌEÖ•E\rèÁMþ8','',0,'?'),('%­DÄ–°•ì7jî¶Lî','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œÇµtëßäeímSz$Ì','aAõ±@óËn[ FÓá“†à\nó™Nõ VÖUÙHuM!','',0,'?'),('%ºÒàë8^œV<ÑtË','wp-admin/edit-tag-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<,~ÖË¥ž,.®%ÍèG','Óƒ„áüðÍT¾Óu§xf§Û†µ\rÓ£´@beV¿','',0,'?'),('%ÁfWñ‰…	ÖP0å}+','wp-content/plugins/wordfence/modules/login-security/img/menu.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pÜè±ÑÇ]êj-ã‘ø¦™','8šü»ÔÚ#Ì„(8øáÿˆOû\"Ç	+h\"Fb–ìƒ','',0,'?'),('%È¯š>Àyc— B[ÁÌø','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/Container.php',0,'=@¬’øå ’59Z4/ëZi','=@¬’øå ’59Z4/ëZi','ÞÞëÏ{vè/4èÞü”**¿SJo\"Hœù%j‡±','',0,'?'),('%ÊO˜è2SìÔ6Aˆ_h','wp-content/plugins/instagram-feed/inc/class-sb-instagram-display-elements.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b…ÚŒçÚcèîÆu0&{','%G‰	-#ú%.?¥Éî(4Eÿ®Úè¤«U:¶,,','',0,'?'),('%ÐPb.Îÿº8ºGdÎtÍ','wp-admin/css/media.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','39UÉìv­G&±3ˆ','~6^ˆó”¡\nmÆ^OÄ0sNó\"ÞäÂ€ïm³†','',0,'?'),('%Ñ¸‡¨vŒ0ŠF`\r','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤ÁH¢òmû…F¤ñŽýðHg','.EâkÛ&´1Tªé?8R\nü#2Où?Åu8´ýøá','',0,'?'),('%Ó‹‡ü1u-==bÏÏ','wp-content/themes/Divi/includes/module-customizer/migrations.php',0,'>G&B°ãªaZ›¶Ÿ§ñ°','>G&B°ãªaZ›¶Ÿ§ñ°','‰ög,’÷O\r1/¿)²6h€×ìsŒ`råî)§Ì46','',0,'?'),('%ÚŽ;w€;+´n	Co\\¦','wp-content/plugins/worker/src/MWP/Progress/Download.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!4E€9-ÂméPXŒ\rÙ','á¨Â¡ÿ)ú¦ókHrØÎsT<™	/lr=Qh˜‹ì»²´','',0,'?'),('%ÛÁØ3JV9­§sz¸\r‰³','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/AuthHandler/Guzzle6AuthHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º\"˜|±kÀ³\"ÉÅù÷[Ã','˜Ÿ™ÍPîÆš+\"«½9~Å/‹³<û‘.óÂøÊ','',0,'?'),('%éæãÜ?“KG°/+l\0','wp-content/updraft/themes-old/twentynineteen/inc/template-functions.php',0,'t\rl.´Iô×¦=B~ºˆ','t\rl.´Iô×¦=B~ºˆ','iÂ\\BÌiQ|°[›¡Ás€„ª3¹ÿ®€A‰/zir\r\rX','',0,'?'),('&\Z‘Û.ÒS\0gÛkÑ–¤','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/StorageServiceSettings.php',0,'(Àòz!äÏ SâÒù¿ê','(Àòz!äÏ SâÒù¿ê','Z¼÷ŒÒ&’~ÚœðÒ„!Á/Yd:W^s¸tÊZ|§F','',0,'?'),('&	è4Åú|ÒýîxñÙun','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/ToArrayInterface.php',0,'TfXO\'ã‡ÍØæ0›Žx','TfXO\'ã‡ÍØæ0›Žx','_alâ¾êæö_	Ï~9Ý`°ÒÀr³ªš\'pè','',0,'?'),('&¬í6$nj²»\"Ü\r	','wp-content/plugins/instagram-feed/img/thumb-placeholder.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜q^MPøŽŠ\0ev¹7i','H]P•G`%vKÐ¯½÷k¬ª´\Zff‹/ez—Ù-','',0,'?'),('&<†´D0ÙçØbAã','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/http-message/src/RequestInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£Ñ\nÃ	³˜ý|Ç³¥´\rÀ','o„«)ä&÷–Ú%JÐzQüÑ¸+LŸ }É5\nÓÅÂ¸Z£','',0,'?'),('&3˜Ì9Q&m·ÞOc…Q','wp-includes/blocks/post-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-)ï¶r…­¨þrk$‚Ž\Z','cüAxl…\"w\n6þñŒh‹+Å¹óDäy9†É»','',0,'?'),('&PDtÅ?5uø1Ym²Ø','wp-content/plugins/wordfence/crypto/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§ÁŠÎqÎjy*_iIÐ','¬z®~t’iõƒ‡‹ô÷D5\Z†9l9; Iã','',0,'?'),('&\ZœÕ-a…Ð¾Âˆü','wp-content/updraft/themes-old/twentysixteen/template-parts/content-single.php',0,'ã²éyÇl¹ç†¯_ª™Ø»Þ','ã²éyÇl¹ç†¯_ª™Ø»Þ','\"-‘<Œp‡ÂÃàaáˆ@™ éýÈ7¯Ù¦…À','',0,'?'),('&*ƒÊÄdÄ†Ö¸	ÖH5','wp-admin/images/align-center.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Ù\ZÝ¶µ4yæŒdY1ÙeŽ','Ðë†½N3‡X!ÅÍljÿh`ã®±ç´ÇhA]ô¸J‡','',0,'?'),('&=\Z½+tí’\"¢/k\'\n','wp-includes/js/jquery/jquery.form.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒt÷øÿ±jÜÌ˜£/¡o','2…tvŠ¢vûñ|oˆi=¦§…x|£üßÈ|…','',0,'?'),('&CßÎ|¢Ÿî÷\rUC8Ðíå','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidArgumentError.php',0,'riÎ4Db-ê${\\óIÉ;','riÎ4Db-ê${\\óIÉ;','L­õè¡Í‚ßý²µ‰Ôn“îè€M¿¨ì\n2ÊºÁ','',0,'?'),('&eeî\n3KèÔãvZ¦•','wp-admin/ms-delete-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?bÚ”‡çµ3Äò\r\n]m¯œ','Ùjn‰BúžžƒTNÉ&þe§•>hö³m£§ÎuIz<','',0,'?'),('&k\0v_fcb‘øv†œøù˜','wp-includes/js/dist/format-library.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?„é=Àê‰¶WŒ[!2','(2\nO²ð¿oç¼ü(m˜n\\&ÿq¦‘†}tZÕIyl','',0,'?'),('&oˆ-™¥Ì{EÆùŽ','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_ActionClaim.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·e<i”þ€Y^“ä0ªY&','_vˆ&âÖZŽYwDÚ€íÖg]•é^Ä9Û”™ufú¨d','',0,'?'),('&t!0^g‡ÛbJˆc,>3','wp-admin/upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þ(\n„¨fVÅÐðÍñX¹','Uíó+²n’§©´°ËÍÆ\rÐ{áŒÆ¹ÙXº8ð','',0,'?'),('&}h5ýižj¥e&©…{ñ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticNode.php',0,'Ñ‡Ë€Ka®\\‡ãcxTÝy','Ñ‡Ë€Ka®\\‡ãcxTÝy','-¢ádˆàzQ£)ë”c8ŸZ>ˆò @Î¤Sƒ?','',0,'?'),('&~ç*mÙE+nXû%;[Oç','wp-includes/css/dist/block-library/common-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MSÀzM€+¸ª*æÖ¯','¥ú¨Ë/ ºÖKÝ«T.¼Ù\"×žÚ¢Nô¡‰?ç','',0,'?'),('&Dç¥÷Q£RÈÐw£]','wp-includes/sodium_compat/src/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åÆ-r‡jiIÞØ£eŠb','”¥bëÆE·ÖèÚ&q¶þÿçª€*‚–‡…Èøîø±','',0,'?'),('&ˆThã•	l>\n‹Í ‰VT','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3Md5Listener.php',0,'a¢£!f¡ÊŸ—ÃD±','a¢£!f¡ÊŸ—ÃD±','14îÔ°K%`r$@ÖîÌà	–URîôB™©6…é[‹5','',0,'?'),('&‹ÓèÉš%ŸÓ)ïW&Ôi','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/RepresentedCountry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>XVDèû°¯m­|P6\n','éýl=ï³b:ÑŸÝñ	RäZÐÿ	­Áÿð	à6','',0,'?'),('&¤3ÛˆH¬ê¹Pç4f÷š','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheStorageInterface.php',0,'Ö^àF<¹§)äÒ¿Õœl','Ö^àF<¹§)äÒ¿Õœl','ë¿¦¸œ\'PT¿~;MCœ€Á+@–gýeÓtÊ','',0,'?'),('&¬‘•Rw?~„j­hJ¤D','wp-includes/Text/Diff/Renderer/inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ\nån5±P´²ÇéÙB\'è','XèU.kâ»ºæ@-(•¶5¡N½‹ãîñV','',0,'?'),('&»¡¼ùËkÝüÖOò','wp-content/themes/Divi/includes/builder/frontend-builder/i18n/quick-actions.php',0,' Õ‹Íë®\\¤`!„8ü5',' Õ‹Íë®\\¤`!„8ü5','¿ºÌŠ^«‰ëcVµéùâÈ’AôŸn‘y˜ÿƒW«(','',0,'?'),('&¼‹]0Wñì\n)ÿ=’¿','wp-includes/js/tinymce/plugins/directionality/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆErèHD­ÔD±Á3¦š@','<–®ý¬o”@»:Ùü¾Ÿ-ÃEgô¿áâ)6^Ñ¼\'¿´','',0,'?'),('&Äœ×õ$Óö÷˜y©ü‹‡','wp-content/plugins/fusion-builder/shortcodes/fusion-global.php',0,'Ø±m!ìD3Q\n9X‰o·','Ø±m!ìD3Q\n9X‰o·','§ÿFìã›°¨tÏª§˜ïIäÕˆ‹fýóÖÜ]yæÕø[','',0,'?'),('&É`×OËQ5‘QÕ43¿','wp-admin/theme-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G¤\"ÅÆ}<Ð¼¸éµ´','$ŸäSlÍöØõ¹ð“\ZŽª¿P5©z7ôîÓH‘','',0,'?'),('&Éßë	PðshcusS','wp-content/wflogs/attack-data.php',0,'#Ø­\n¾îÅyIb½\rÛ\r','#Ø­\n¾îÅyIb½\rÛ\r','l‡Ž4Eq®{¶®‘  ¶ï×Ÿ\'wg×31 c®w:³','',0,'?'),('&ÊítQ\\j`™qÿ”Yñ','wp-includes/blocks/categories/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´À=)…`K×®ó!2:7','™“´1¼ã×\'sì1I¨MøøZš¡š“ÔÕ´$iD','',0,'?'),('&ÎvA¹öQÍôc‰Úqw8,','wp-includes/theme-compat/header-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Omz8Ê™FÚ°Ï','°£õÄò})d!q	,@,×Ñj«ñv	ÝßéÄE”êí','',0,'?'),('&Ó×‰\"`÷š]Ê—ìëì°','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­ÙwSß`Û\rêC˜»\'','6(‹æ~÷¯ˆPá—úãëŠ£°Ûù Ø}¿<ØR>Ë','',0,'?'),('&Ø‚÷M­9O.8ÂIw–','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateReseller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú^2š×Bnz\rª  ò;–®','ÿßiù¦3‚•ªÂ»Ei­?,\\·ëêàùÓ0¯S¦','',0,'?'),('&é¥±†˜ñòW‘³Ø€Ó|¡','wp-includes/widgets/class-wp-widget-links.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æxÁ/kÃh\nÅêÖ½[Nv	','Îì‡‰¶Ã,xàë¢-Û©DOá,°¥7ÑˆÊQå','',0,'?'),('&îª³ÏB9JýÈ¨‚ï¯','wp-content/updraft/plugins-old/updraftplus/central/modules/updates.php',0,'àXu¹ñï\0lýÜ*Yž','àXu¹ñï\0lýÜ*Yž','ÏEOúò$„è\Zt‡•Ýdˆ.ßDIÄ!!ÏcÖ','',0,'?'),('&ñY¨«¯zÐqÍ[Fžf@–','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/WebService/Client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â¶¨º;*®ªÊ?‰Õz','¢¡±:O.Æ\'«~y¡Ó@€Y`FMNó:ÀnÒ.í;q@','',0,'?'),('&÷žÌˆW¿XÑö›»æ','wp-content/plugins/worker/src/MWP/Event/PublicRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!¡ì×\"œj¡¬´­','[- žÄFÕ»}	d^!eRd”på8z‡³Sf’;óÈ','',0,'?'),('\'\0êYI	.ôAI7áÈ3tð','wp-content/themes/Divi/epanel/theme-options-library/app/lib/config.js',0,'Ó£N ðÀ ÷¦øÝ“j','Ó£N ðÀ ÷¦øÝ“j','h.…¦Õ·Ðd|”\r¹[5ÏšJÈŠÊd-óó','',0,'?'),('\'xiÏHb§h²šÔx/Æf','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/AbstractRefreshableCredentials.php',0,'k#\\t–šLh×Ïò;É=÷','k#\\t–šLh×Ïò;É=÷','@+êÅ¦‡š^NXŒ˜€ùr¦&[:´ZÅjÃ','',0,'?'),('\'{L`–ÙXáI8h‚Ä','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Exception/AbstractException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@•\Zï<HpZýªË×','/º4é»ñ»\n+kÒ‹fÞ`%1ÈÖŠÈ¬öÅÔrxÃ¼W','',0,'?'),('\'\ZAúù,\r‰Ú)­Àaà-','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/DownloadSync.php',0,'Åõ+>ú«®ÜßZ‹Q®','Åõ+>ú«®ÜßZ‹Q®','rcýü(,W@PyZÌg;tàâs˜)ËÅñY¦XØ ','',0,'?'),('\'\"(ŸÊÌŸÀBÒ¬ZæÀ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Client.php',0,'hËû~Œ gxØ#°}ßuÉ','hËû~Œ gxØ#°}ßuÉ','l*\"ÿJ)m1‡ånÎˆ³›;ê$¿OŠXÂ•„¯¤1','',0,'?'),('\',ºAWÁì)»äÊ³•ìS','wp-content/plugins/updraftplus/includes/Google/Service/Compute.php',0,'G´\0[! ó)[v…ÑDõl','G´\0[! ó)[v…ÑDõl','+q<ëÜ½VýÄV!“´]ßŒ<ÖÅã^moä®øX','',0,'?'),('\'=!Za„ÍaâÛæjUÑQ','wp-admin/css/site-icon.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨ô}ŒE²¨Ôp0lu','i>ÂœÓº#ˆ&‹2Zí\'‚ŠK(*™«õÖâµ','',0,'?'),('\'Ac¸´å,	~—6ØøÜ¦ã','wp-content/plugins/wordfence/views/onboarding/tour-overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™:è¾½%› Ÿ);§\0','\ZÈó\'Ä¡ë§ªÓÊ¶.s\'Æè­sdÜ4§^´ÓI','',0,'?'),('\'A·\0¼U“ªÇZjt4','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/DefaultXmlExceptionParser.php',0,'åÚ@þY6ãŽšù´7','åÚ@þY6ãŽšù´7','ß¸.~o%3§À–u}ûW“w?]\0¯ÔQÌšK&ú','',0,'?'),('\'GB¦\në\'M‚Tiš¡µ','wp-content/plugins/really-simple-ssl/class-front-end.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓFÇ¦ü¸ÆX•c†çrÏ›','Å»±šD™p<4xHÙ™„\rò&L.!¥Q\0z','',0,'?'),('\'IA¿o…âl•APŒ9','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/dimensions/field_dimensions.php',0,'Ìp¦KÐ÷a[ÎXûòä¿','Ìp¦KÐ÷a[ÎXûòä¿','\nOˆ×sé•+]¥®R&Íêª¶‹›,¦ÆãÔå…#','',0,'?'),('\'Mþøwˆñ‘·ƒãÇ\rKj','wp-admin/includes/class-wp-site-icon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÖW~ûë0üdŠ‚Ìy','_9ðá%7æN×ŒŽ[\"²ñm–;Xi:RGäx^¢q]','',0,'?'),('\'P†çAww‰ßþà‹5bW','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/HashUtils.php',0,'[<a®ua_%§›§­P','[<a®ua_%§›§­P','ó¨Àý‚®Ø%|<a–“ž¬|F]i¸·GLˆœ`9','',0,'?'),('\'Q^{@hyš‚mÍ¨ ¶','wp-content/plugins/wordfence/css/fullLog.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eÉ.i‹`«ƒÎ¾Uç¹v','?õ>ü°?hôÎ¾[µÂ²ïPØu{Ûpuúa þ‰‹a','',0,'?'),('\'_#m4ÍíÿHèƒy¤h','wp-content/plugins/updraftplus/includes/PEAR/PEAR.php',0,'Î‡\r{àxÓx	ð','Î‡\r{àxÓx	ð','ë1Lnx³&äÃ£6\0õ¯n“*öw›\ZywÊ»Wçë=VÞ','',0,'?'),('\'aHJ¥9™Ù x¢†ÄäÅ','wp-content/updraft/themes-old/twentynineteen/template-parts/content/content.php',0,'à—œÛ¥­û9GYfìÄ','à—œÛ¥­û9GYfìÄ','÷ õñÈm”u1™”]E^°ÐZ_Ñ|élã\"“…ä	qî','',0,'?'),('\'qFC,Àf©ÿ½Žl™½','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/radio/field_radio.php',0,'¬WuÁPï%™ÂÂÍt?','¬WuÁPï%™ÂÂÍt?','ù]eÙ	 šêDå(»—y0	:Äí¬˜UÍ1ú','',0,'?'),('\'qî{–¼üÜZè÷Ÿ>­¶','wp-content/plugins/updraftplus/includes/Google/Service/Dns.php',0,'<¹ù¨<jÒ*î—«â','<¹ù¨<jÒ*î—«â','`¬â\\ƒ˜AB·Û[¶ýAá[yÜ/gxLð“rÏßï','',0,'?'),('\'x¦`Q5RËþ¶ý	ñÒ','wp-content/plugins/wordfence/css/wf-font-awesome.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸\'ÄÿMäçÙ‹øVµª¿:','997dIŠOuÖ-Æøùñ%enÔ» 1ºï„é¾ÓI','',0,'?'),('\'y)Ýñà?îù…Ú\'¾q-','wp-content/plugins/wp-mail-smtp/assets/vue/img/long-arrow-alt-left-regular.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±´xëè‰>ÀXª4·¬œó','?—©mƒ4­C©\\5ÍëpwòÞý¦:érxžÖ¢0\rþ','',0,'?'),('\'}8ÃÏ*ÉŒGÎ_o¹$Y','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/ChunkHashInterface.php',0,'ÕãôéÍ|ÛÌ«&dDÔ¤kš','ÕãôéÍ|ÛÌ«&dDÔ¤kš','§Áÿ’ÄêôµÅFý:ñ>«¿àÈçp[‘´§º•¤','',0,'?'),('\'‹ü»ž ˜oÈÍSŠ','wp-content/plugins/wordfence/images/icons/ajax3.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mwßß´tê“\'\n¤ñís','œdzÉê\nºyK£Æ®¨è’\'#]Òx	VJRø¨.=:','',0,'?'),('\'©ÀÂ½–»	¿)5','wp-content/plugins/wp-mail-smtp/src/Options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­¥ðÈÜý}{ÃÆÆQ‡','ÀWÑ^:5ñD«	‡%g‘¾•;ÇÃEz\ZÅÑ=R','',0,'?'),('\'©Óo2ñ(5S„}qì2','wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æê\Zÿä#“zº§¦Kæ®','òkû½!P‚BxQA.TåÐÛ„Òß«à¹ ¯ƒÃÛŽ‡ª','',0,'?'),('\'·_3\n¿óËÀï¿_t”ÕÆ','wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-1.10.4.custom.min.js',0,'#)Ã(·Äj•M´nC8X','#)Ã(·Äj•M´nC8X','Ù±ÂèùWªýP}ÈÝ€$ž#ðJÃÛ1Š¨ðÐ§o:','',0,'?'),('\'»g|Í¹\"¬”‚jÝ¹2Ç','wp-includes/js/jquery/ui/effect-transfer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OÔ©Nóiã÷þÕ1','Å\0p‡,á\\Ü!ON)ÊQ¾¿ˆXl ……k°sólë','',0,'?'),('\'ÚÀ¿_iYm1ÁR','wp-content/plugins/wordfence/views/scanner/scan-results.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qxM!’ò£\nB½Š+=LØ',';ªOÒ¥vìÏÌÌ‰þ¯™Ø	ÏÊþ¶æ\n„Ÿõ¶','',0,'?'),('\'æ3Doï^¤u\'ÎQ?','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/Api.php',0,'ìÄwüTr&~ŒÏ\nm_K','ìÄwüTr&~ŒÏ\nm_K','Õú³¤ÕÇ…\\6GV»[â9WØ 21—Xi:Îý\\eÊ÷†','',0,'?'),('\'æ\ršÉ>ëç–¹‹ÐNn0','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PhpCssEmbedFilter.php',0,'ƒ@’•-}ÌC3›,¦7õ','ƒ@’•-}ÌC3›,¦7õ','¾~>øðKžî‚@h~á\'\r7ÜÞDN•ÿÔÎy²Lr›','',0,'?'),('\'éÒ4N¼o+é‹°²P˜','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/corner-square.php',0,'\r–Èÿ©F«¹M[w$^>‹','\r–Èÿ©F«¹M[w$^>‹','éßvG?ï™»U3ˆ½â<0²\ZƒŒÞ–u©Ø{F¯','',0,'?'),('\'ýF0î»eêÜVöst…','wp-content/plugins/updraftplus/vendor/symfony/process/Tests/PhpProcessTest.php',0,'iÔíœûJHHhÕ¼Æú','iÔíœûJHHhÕ¼Æú','ÂÈ#ˆëHÍoŽ+|e C²„±ŠŒÌøâ»9¬1','',0,'?'),('(cªÑi\"Þ¼ùüó÷g1','wp-content/plugins/worker/src/PHPSecLib/Net/SFTP/Stream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶Õ\rÁ¿Hh!ºÜ¥ \0Ñ²','‰ÐìøÚé­19øoÆd§6ä-` à¡FŒPÐ^rÒÍ\r','',0,'?'),('(	æC9ƒ_«w	ÖÔZ','wp-content/plugins/worker/src/MWP/WordPress/Query/User.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r÷17$µ‰®VOŸæz3','q¯DÙï°NÉ‡ƒýªÔ=?Jmf¬Ò¾’T—ësÄÿkQ','',0,'?'),('(\rÙ«áî\\yV²ë11ü³j','wp-content/plugins/wp-mail-smtp/src/Core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’ÊAÚLùý€÷`ž5KÑ','ç©maröûi]&“ŠZ\\p_Nªå~NvâTç«Þ/–','',0,'?'),('(ˆÔg%\0ÏÃ4ÝÛl>œ','wp-includes/js/jquery/jquery.schedule.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&³—TªkÇfØž¤Ä½','¤Ü?ïÆvEÊ”ªwjÇ¦¡CåPÕ¯ì_µ£','',0,'?'),('(]¬ŒExé{<3','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/AbstractTransfer.php',0,'Å€Þ·š’öv,Z3„kûCD','Å€Þ·š’öv,Z3„kûCD','ÂžgOöï•D>Á+äMUÏÚó¾€Aýxí—','',0,'?'),('(Gá{þò ŸÜü…¾','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/XML.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡aéøqd…Ãðˆyd²Ój','¦³–„è!VÑÁgœ©DVîz°ñ-9{Ë®HõÛJé','',0,'?'),('(ƒ‚º‹üÙE©Ý|','wp-content/themes/Divi/includes/builder/feature/global-presets/Settings.php',0,'·óTTÇþ+>ˆéZ#Á','·óTTÇþ+>ˆéZ#Á','Ñù¥û­\0ö²]ÐFcO—Ò[&qéBÉt„èƒ6òA','',0,'?'),('(*3)?°×¥€diCõA¶Ä','wp-content/plugins/updraftplus/includes/onedrive/file.php',0,'àT Z æ$L.\\.\0å%8ž','àT Z æ$L.\\.\0å%8ž','–ù.s3æàg¼/Õ S08ã:€S˜ŸdáSÄ_TÌˆ‰','',0,'?'),('(0ó0k9Y¿˜¡ãA®®\Z','wp-includes/blocks/preformatted/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BÞ¶ØÇ%ôÔ Îù‘','šóPèó>ÊÑÏÌê•¾ôE}ŸÝaIºš–áÎ\Z—p','',0,'?'),('(?ËÜ×>¹ôS©Næšœ&','wp-includes/images/media/default.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-¶©æÍIÒB–hÎ@àÞçb',':ë¦oLóJDjòþ$->»iºé\'Ã6nÖ î›Ui','',0,'?'),('(S¿í1ƒ¯l˜2N–ztk','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataCreateError.php',0,'&ÙÎ\0tºÑÇ\0CngÌ','&ÙÎ\0tºÑÇ\0CngÌ','¹z‘Þ/÷Î…H•:`R=µiìXäÂˆWŒz±2&Š','',0,'?'),('(Uz®þØ|MtŽ—î~}\Zä','wp-content/plugins/wp-mail-smtp/assets/js/vendor/jquery.matchHeight.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Id;­LSäT¥ñŽµÕó¥','üÊsiCyŸ¶,e+¥ˆÒâÝó-˜Î²N=ÑWäË','',0,'?'),('(WQ=3ÑÈyîúÞb6','wp-includes/cache-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸?Iq_¹ê°P÷$Ó„','ÿÜä]4\'Ïê‹9Þá½…w´Eö“JõJ»\r¢nhë‘','',0,'?'),('([d‰˜ùº±¡×ïBQµ‹','wp-admin/js/updates.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³’Q†pk8¨Ëo\'&{Õ','2Cèsfô„I±f„ðq§¨Ö{W Á Z{Þä','',0,'?'),('(cÙ¡†þj``ZOUŸ¼©','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/palette/field_palette.php',0,'üØG|w]‡äËð<X¶','üØG|w]‡äËð<X¶','×©&×Dgv ¨àÆ-(Qk0“wÎ@ÜÄbÿD²','',0,'?'),('(gÝi¢¿µº.WÂ¡nJ','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/SetBlobMetadataOptions.php',0,'ÂÕ,Ôrs%#PÁ,¿¯#','ÂÕ,Ôrs%#PÁ,¿¯#','¯Ã‡½%½Å‰¿`n‘+‚…—»3Ö]Î¹ë¯Ê[k','',0,'?'),('(g²+òÙJH`ñ±Ö€¨N','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/BlobBlockType.php',0,'86µ=Ùþ™X™VBRM','86µ=Ùþ™X™VBRM','ø{daùH\r¬£îd‹5?-vµ —\róJ1	\r _ˆ','',0,'?'),('(jÅeß®²Ð\0¶RÞ57ò>','wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/plesk/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kÊyå§LGý(• «<\Z','žÏD¯*ñT¯²@5¢~TJ¼2eOiÄåö_ôÓ','',0,'?'),('(l«ÃÖ…+%ñm»‡ØGI@','wp-includes/blocks/rss/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýu-U²þ“ñÕ¤¬,3','%±*êX´GVDð:¼iÇf@e”LâzSYSp;	','',0,'?'),('(pYH24Áôdnïbò°®','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/editor/field_editor.php',0,'lMõ]¸)Ý\n¤}¡','lMõ]¸)Ý\n¤}¡','t5Í(KR›+u…KGUc2$æ( <,¸„\nczÐôwÞÉ','',0,'?'),('(x*J û…,…LÃ›nç<K','wp-content/plugins/wordfence/images/icons/arrow_refresh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k•w„`ö`ª|ô}$G€§','u¤/2/¼Œ»@‘Hž_Ilh•™ó¸/aU:«	','',0,'?'),('(~6vqVì0ô{†\"','wp-includes/ID3/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ý£öÿzÙeÑ§Ñ¥k58ã','lr¦¦·Áp4œëFBÜ¢7\"Z:üW“vøÌÈ','',0,'?'),('( ïv|Tâ€” Â¥Ô','wp-admin/includes/screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N6\'8;Ú‡ë¯£™¾V1Û','ÄoYH4	lY¨1°YGÚúHétmSžZ/)¼\"ÿŒ','',0,'?'),('(‚‡Q÷NEüêy:B€Ÿ','wp-admin/images/about-header-privacy.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’À.ç5éCD€Ë1>W\\','øA{)pCŒ1°©â:5è$¤S{²¥hza','',0,'?'),('(…Ú˜<è$@Hõ¥î	ž¨Ü','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/StreamDecoratorTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é¸L›Ù”¬+0nõ«Èß','ô70C2V%îÑþß½&½îê\Z€iO;ý–„P´=@','',0,'?'),('(•úó‰9\\–‹è÷','wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/global/quantity-input.php',0,'©Díµ6I•ÿNýîCX]ØK','©Díµ6I•ÿNýîCX]ØK','¼y§÷`°÷¶ŸÅÝ[[Äg\rù3G.]Jîå&æ','',0,'?'),('(–Yà\'úˆ^kz!q–ÿ¶‡','wp-includes/js/dist/block-directory.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€sÆè¾ÒÁü6À=Á9â','B}îkÔìAÏJà6Æ-XÔž¡ŒÍC»í;µ(Dm¶˜‰j','',0,'?'),('(¢žy!J\nœ…þ11+\'','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/GCECache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­±9˜ìña±´–Ìô,–ÅÖ','9,¤p±vß—#ÃÁlZ¾Ø3y÷ç—ÇdˆYH)	žêm','',0,'?'),('(¢<…—Ò\ra~Â8ûàÀ’','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Cache/DirectoryResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þº ìt–ØµÅ¢3ÉA—Ó','¯.ü’_¨¢4$>’Íž¡¯ã,¾\rX‘î‡€h{Û‰î¶','',0,'?'),('(¢£ã7é{¡_4Ñ:','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/fusionredux.select3.sortable.js',0,'žÉ:ÿ=Ñ”&…fžCÑ3O','žÉ:ÿ=Ñ”&…fžCÑ3O','ÖŸwƒû\'Ù±aÍCä<žB4ÁÍñMˆ­œKÙW','',0,'?'),('(¢åÎ™ÙÎÅzÓþútc','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/DeleteObjectsTransfer.php',0,'„BûÙEŒŒâp«â£ÛcÅ','„BûÙEŒŒâp«â£ÛcÅ','=mtf§\"56ï¾ »fôÑM„·¬ð=XÖcÄ','',0,'?'),('(¯d¤ñ\ZyhaÆh6,~ä','wp-content/themes/Divi/includes/builder/feature/content-retriever/ContentRetriever.php',0,'b”™¶Š)d0[ßêXb','b”™¶Š)d0[ßêXb','©›Q3Ý\")ý©$P¥’ªuôåËg\'C?”ÞÀEAza@','',0,'?'),('(³ÃÕ••)à˜(pwBl','wp-includes/js/dist/list-reusable-blocks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k¯´\0p°k4Ø€XøKî','[AÍ:ÉœÝœ`ò<¹©iýÑlè²Õâ6`àe˜E ä','',0,'?'),('(µ|ÿZ¢x´T‡þ‚[Áu','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Original.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Òz?®é(»…EîWup¹','¨+‹ëê‡Dï\0ej³\rgÆÎèÏ§¶„4ñ','',0,'?'),('(·¹Û>f0\Zg[|¼îå¨','wp-content/plugins/wordfence/lib/wfJWT.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»}{ jåN°ˆñcÒK¿','0mhN`x”x~HŸLjés¦þ°ë€OÇä”PÍÅ,','',0,'?'),('(¹8E{ÍÎxEœCö‚¼\Z','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Utilities/Certificate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚¿?YFÆVCž.]n’u','ÜŒÈµà\"úÝÿ¢À¤ä]ÈØJä™9y^õ','',0,'?'),('(Éû»I·éø…\Z~é×F','wp-content/themes/Divi/core/admin/fonts/fontawesome/fa-brands-400.svg',0,'/$#uíÖŽìûYÆré','/$#uíÖŽìûYÆré','}â5®<Áp÷y‹\'¿€œP©ZG­#‘8{Sˆ{Ù<ˆ”Ýð','',0,'?'),('(Ë0bƒž¶}¿¡õn_','wp-content/plugins/wordfence/css/jquery-ui.structure.min.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#õ/Ì±h<ÀžUÕõ¤','ŸnäèøÁàiÙë—…µNµvX¥7«Y]´…¼°D','',0,'?'),('(Í«8?ßt…#ÐØ3THõ¤','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Group.php',0,'–Òüßû–lŽAæ0á_È','–Òüßû–lŽAæ0á_È','\'FÏ-§µÃ2¸‰È «{Ï	4uŒ›WR› ˆ.Gi<','',0,'?'),('(Ð,\0[æ7ÝÌè¹34','wp-content/plugins/contact-form-7/modules/count.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S„ÜœIxJA@JàK','ÏÁ\'Ÿ»}P­Ú#lâ3	U´&\"1>Öµ‘~Dxú¶¾­','',0,'?'),('(Ö*õaÌ?â–HQ%aa,','wp-content/plugins/really-simple-ssl/grid/templates/settings-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÚV„Š‚”#‘ór¬Ø[0','×ÿâcÊÖê:-­—YÅ5È%0\'=Lšß–Ø{ç[','',0,'?'),('(Ø¦“HÐÓ@S^æ`—','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/TwigFormulaLoader.php',0,'Û|­ñÖâ7F03»jU§»','Û|­ñÖâ7F03»jU§»','ÒÙB*Gtêb(Mž I5¼ús	^F¨‡ðòªÙÒ,„A','',0,'?'),('(Û´XÙpŠz\'–','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-chart-preview.php',0,'Z\0Ja…™ç y­ãV<…s','Z\0Ja…™ç y­ãV<…s','ì7¬¡•øÒè‘þ9ãÓšOIí¸fcÞaH¿Ø','',0,'?'),('(Û¦$Ä:¬Ý^ÿ.y½ß>(','wp-content/plugins/wp-mail-smtp/src/Admin/Pages/Logs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™mò@4ô¶EÉ.ì!²šj','8ÎÙb°}Ìb’Ô^7¥)¹XÅ„üª#yµ/9hñ','',0,'?'),('(ÝÆLS[šöWl#“ð¦ó ','wp-includes/sodium_compat/src/Core32/Int64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%mÚS»,—»®\\¦','UåØÎ!œ6èç/•UácqáùÃn©Âæ¿@º+€','',0,'?'),('(ÞÊs»3TN¤o(©','wp-admin/images/freedom-1.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XOí¢Ýw^•È‚e/ü¾eš','’ÇåRz¬6Ö=²yüÈÓ_žØ6Rj£ÎlÆT¼·','',0,'?'),('(æ+”ý°,õñ£–VËvüP','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserCreateError.php',0,'èP…¹îÕ^oÕ±,›c¨','èP…¹îÕ^oÕ±,›c¨','Yõ¶;Ï9Mé~ÃjG–O+|R¯»$}—|k–','',0,'?'),('(èËˆ0¨†BÅ-áC³÷ýñ','wp-content/plugins/fusion-builder/inc/templates/options/colorpicker.php',0,'ØÖé\rÖPT¯ì©ô!k','ØÖé\rÖPT¯ì©ô!k','9Ç”`uZ³2â²¹W\rÕ<•šn2q-y—í9þî:}*','',0,'?'),('(ï^¦3N½š©“‘¢3','wp-includes/wp-diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ‘É-xñ•<Äz^¤Wet','üaÿÛ;˜Éº³ä*2Z¹œf1›ò\"§\n°Nt~Ÿ>‚…','',0,'?'),('(úZ~‘TiÍê¾è1+*Þ','wp-content/plugins/instagram-feed/inc/class-sb-instagram-connected-account.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\\Î\"£¯-)å¥Å¡\n','¾P.ÀÂlO¿)t²ÉØ‘vÊÄJØäOî8U.ˆc=(','',0,'?'),(')mh7}¦`¦Ì¢î6r','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateChildDomain.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SIŒ¬™5JçÆ¯\0µ','L7w•yyã+ßªð[;?j¶Õ*GZ˜“Ürÿ°˜¡ò','',0,'?'),(')ø”|ü{4æ+]ÂX(','wp-includes/Requests/Exception/HTTP/411.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à†#Ä×ŸÞÐ«˜ÄE*3ÕÅ','ö…èU‰^¾¬ª‹9pÝô&ÙîÍ`önM{¬ n¾L','',0,'?'),(')ŠcÁ*×Û®m\0:*6&','wp-content/themes/Divi/includes/builder/class-et-builder-plugin-compat-loader.php',0,'7XëISD³þrïß\'&ž','7XëISD³þrïß\'&ž','÷þB?5‘öïuô>‡9Ø%Ù;l®ì‘îZOho²','',0,'?'),(')>Œ2\ZÚ©ÁÓ§','wp-content/themes/Divi/includes/builder/scripts/ext/jquery.tablesorter.min.js',0,'®ûÀo×¦ÐåkˆÁ','®ûÀo×¦ÐåkˆÁ','š±Î3ÍF˜*!œAy\r\\šÒO$KŠ$-x½ë™\'	Š$','',0,'?'),(')\'hLíœž¿\rÐ€^‡¿¹','wp-includes/blocks/page-list/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','téï dùpÔ¯— Ur','4QNsý¼Ã’ðÔvývÕ×7D¡‘bí`0fáš0€gg','',0,'?'),(').eêPÀ0ó4Ì³¾<üÛE','wp-content/themes/Divi/includes/builder/module/PostContent.php',0,'0±þÉÞžK£\"5¥T£Øï','0±þÉÞžK£\"5¥T£Øï','žã6Îz¡J]—9y,8&áÂ5\\.(þ4k¢_€ÒÇ','',0,'?'),(').~Â9÷@ž/äU§!t˜b','wp-content/plugins/worker/publickeys/partner12.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Îa´\\ÖêÞG´%S$rŸ','C%RæuãX‹Ð“Åóe\\0*0gÅb4O¥]FÞsU','',0,'?'),(')3æ E\"Né°ì2T÷Þ§','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetEmailEventReportEvents.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜è³ØR)z¡•òÖ“ÃH','âé›C¥ûÀÝø¬>Ÿ‘Çë§ƒq>%üW‰A¥ý±€·','',0,'?'),(')C»H„N<‰ßG´ËßžŸ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/http-message/src/ResponseInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡j3($ö	÷zXÓ¼ó','˜\ZãPÚþÕt?„ãûÍ”ûYÑM°³LÓë^a+PE','',0,'?'),(')FTj›—­ó«CJcûG','wp-includes/blocks/image/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&ÏW¸§µ\nçr\0Á¦?—8­','p—‚~¹¡f¸#€”h_Å¦éÚKrwÌüÏZ1n0Ô‚','',0,'?'),(')]XJüïLüÂg=)¢','wp-content/plugins/wordfence/js/wfi18n.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i&XDEîÌò®p/Nï','GU	š‹*ŽèköP,¡:Ó?+}xHb·5ÿä°á¬#','',0,'?'),(')knÿ€VœðmG²eÂ•‹','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/AbstractResource.php',0,'Bi\rë:¬û´¸\r@P','Bi\rë:¬û´¸\r@P','1ñ\"¿¢€W…QïÂ$\"ÆI7g6ª­\'®XeÒ','',0,'?'),(')wA«Ó™­|U#i.V§','wp-content/updraft/plugins-old/updraftplus/includes/jquery.serializeJSON/jquery.serializejson.min.js',0,'-Ï£;Gi$rG–9¼‘c$è','-Ï£;Gi$rG–9¼‘c$è','Ï¯Ú|/‡ÕôûžôX\n2ÃôG:@{÷\rAL{¬	´','',0,'?'),('){ôjW-_€Q=?íGlÒ¢','wp-includes/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú4B#»ðfP@®»G','\0¯ß$QvÍì+ßúAZ¹¢dÑó\'5	èÔÂŠÑ£n','',0,'?'),(')~9/q¥¾…æÎ´ŸEðtú','wp-content/themes/Divi/includes/builder/module/settings/migration/Animation.php',0,'Hc¸Ðâ>ýž”»—ö±Û','Hc¸Ðâ>ýž”»—ö±Û','üªyzàêÛRÏÚ5áõ@—H\n<«¼í­,£Ibdªî\0','',0,'?'),(')…PXÞä(Ö)Ò=ª ','wp-content/themes/Divi/epanel/theme-options-library/theme-options-library-app.php',0,'8¡^mË:G¡‹¼ÐÔ¢òH','8¡^mË:G¡‹¼ÐÔ¢òH','wð\05¤_“%>Yð•Ö§=pÆ¨ÕE*U-¶ÏÔ','',0,'?'),(')‡3ž\ržÞr-Îòƒ£ty','wp-includes/blocks/media-text/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6`Éà\rt·Ð\"Í5îDé','Óp£-ô«ýBÝq»”‚ñªÉðBàö^g¬¯jMÍ','',0,'?'),(')){Q…ü\'S×%9)$','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSmsEventReportEvents.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰‰øà¸8sßôæ×rç','1ˆ¹GÑJ‘ÒåVROÅNQÿ^|/T—FlYQü\nµI','',0,'?'),(')ŽÉ¨éa6î’F„G¬=ú','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/HttpHandler/Guzzle6HttpHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üúìÅ¸…E¡;«aSHW','-BÇ-\nyÞõ¥f4HØu4Åw?«½ÅQá3Š:','',0,'?'),(')ŽÔd˜‘%Pµ¥rTI8','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/AbTestVersionClicksInner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=¬29Žu\nSå6?%•',';îÓèhã‚Ÿ,²Ž\nö•ŠkÿÉ|ÈÓô¡:¿4ÞP·','',0,'?'),(')˜dáíQ¹Ã•­7Ë.©','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r*Òun•rdu¾g¼íô','ÉÒ·<hùboô>óW‚Ã\Z±N˜Œš eÉù²ia°','',0,'?'),(')™‡OÚ÷ VTæÎØÿr£X','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/notices/bottom-notice.php',0,'/ÿÞ7Ò¤hðY©$o+','/ÿÞ7Ò¤hðY©$o+','å_4BWIC%óÎýÉçv|IÂ\nŽã¼ÍÔ8×€$9O:','',0,'?'),(')š+åèi&Šóz¥î¨Ùh','wp-content/plugins/instagram-feed/languages/instagram-feed-es_ES.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾©EfYä¿1(ZUš/','UÊ?or¨-‰ÞÈaáaS‡¾ÍTIÕ›Q++FDdú£Nê','',0,'?'),(')›oèÓú‰íAwŒ*¶','wp-content/plugins/really-simple-ssl/ssl-test-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9IHrC^jiA]}/&','E3	Ñî‰u†5wñTñ¸”åù#TB£ú9¹%±Å','',0,'?'),(')¥LÞò“6•Þ­é4.','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3SignatureInterface.php',0,'8³+¦ò<ñW¤Ùx/GÖñ','8³+¦ò<ñW¤Ùx/GÖñ','XpW¢þU‘Ò{â¶n— CuCX=ˆ¬êÓ­©£í5{ö','',0,'?'),(')¹ óO\\L&AÃFÑå–š’','wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/cart/cart.php',0,'>n™¼Eˆ)	ï2Ó5»îZ','>n™¼Eˆ)	ï2Ó5»îZ',',YYü\Z­zŠoP;©\n\næ¡ÿ9R×æ.2ü×úqê','',0,'?'),(')¼BÊ¤œî-ÜgÕ’ÕýòH','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/PromisorInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èz|t\\ûë»ù‡ˆ…mcÊ?','§ÒœúvTZ$¼dFöÂ\"öW %-ÅØû«5à','',0,'?'),(')¼ìz3¹HÏj¶v þ¦Áo','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/FilterIterator.php',0,'í~\rU×òFb{iIË¦','í~\rU×òFb{iIË¦','g›£†r&[÷‰m\nxHs°Âêx\')9Ê»\"A|‰ÅÓ','',0,'?'),(')¾Oz=œu©‡î£ÄË·','wp-includes/rewrite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\0B6\"ÉÂ–±7ÝX’','º\n„¨ñ×‘uËÓ’ÙÁœà5$E…i·4IÀd','',0,'?'),(')ÍÎ\\‰¯¢=5sPã]®','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/DeleteHardbounces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„÷(\0¥Ô\rþ\\5HUá{™ƒ','ÞÊŸ~{Ž2ìÀÉj³…¤vÊ™l¡ÖçÞyáàw¼5','',0,'?'),(')Ø6#¦_ÅúñÌŸSAF¦','wp-content/plugins/wordfence/views/scanner/issue-control-repair.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9œg¦ÿs¤ ž­å`Và','žõj(¼©ô”Ø \r	ç·ª›·ë”U+ÎòÉ.ó®d','',0,'?'),(')ØB®°»LÉ&Â× åå','wp-content/plugins/fusion-builder/inc/admin-screens/library.php',0,'pf=òGé‹\rK²øa,3','pf=òGé‹\rK²øa,3','àTõö·y+DaJ‘ümMÑ*QJ9…ø6Ãâ\'ÓÀTä','',0,'?'),(')Ø½Î£…¢N3ù»—(x','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/AbstractSync.php',0,'Ï“|g³~ƒ$°’ðàÔÜò²','Ï“|g³~ƒ$°’ðàÔÜò²','W¿¹ÐÉ\0÷lçñ‡®/$•oÜX\0sr*\'yd„¨','',0,'?'),(')ÝÛø]ïÝÕZ$ÙP%','wp-includes/embed-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ’UÐzŠA>zõ\'!f*','*xJ¤þñ\"št²ý\r^K$U˜09¦­ÊZãÐ¸C…ru','',0,'?'),(')ç“ýðú;€çÈ 	','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Filters/AuthenticationFilter.php',0,'âóU·þx–³99„„Ÿ','âóU·þx–³99„„Ÿ','‚?–KJ\"8Ý6\\J…Ëãrè§(;±–Æó‰[)\ZŸŸ','',0,'?'),(')è­¦ÎûQžóQ¯/Y´9','wp-includes/blocks/page-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.\0xÿ\rË¡Š8•¬¾P:Às','ÕÕvMåœè}ßô\'¼^~•ÒvNFÖß÷Ë|{…E','',0,'?'),(')ìI–\nÎ†V¬¸Ÿqîæ{','wp-admin/authorize-application.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ž‚ý&·ˆõÍ“ƒÿ','Ð=ðæÎ°Q5aÀ˜(j0hnP4%%f4+óô#ù‡Œ','',0,'?'),(')ñÉ™¦ì‰¾É—£¢“˜','wp-content/plugins/updraftplus/includes/class-updraft-dashboard-news.php',0,'<¥åü¶‰Å M|-E„ßû','<¥åü¶‰Å M|-E„ßû','…¶ZÍN{\\e­\\IÌ«OôÑˆcö!\ZúQÅãVëC¥','',0,'?'),(')ø ûóÑz¿ÿŠ ;:^ö','wp-content/plugins/really-simple-ssl/assets/css/variables.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),(')ýM#œàª7dó','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2Tests/TestHelper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/U°*\"ãR™\n\nìØö;Ô','£Þ+­YËnDI‚¾EÉr$îÒéÉæJ10|%Ø¹iW‹','',0,'?'),(')ÿ`”òf,µ uý4¡³','wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šX¹ D2%l#b/’W','Õ»¨RÒ\0¼ðÑ\0¶¿úìáiH//ŸÂìwÏ§\0ë','',0,'?'),('*\0³¥Úh›¥	Hß€','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-color.php',0,'úY5«-°O5Õ4t','úY5«-°O5Õ4t','/Ñèö’v0à/i`œ@‘	HþÓÿl`¢œ÷M³ë','',0,'?'),('*°pTR”®¹„UÁUsðÞ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/no_special_chars/validation_no_special_chars.php',0,'Ìq“ñ^Ì \\ÓÈ‹¹.p­Ñ','Ìq“ñ^Ì \\ÓÈ‹¹.p­Ñ','‹È%ß-¿G[‡p\0´år¬nŽ…íÏû8³Áþƒû^','',0,'?'),('*¶o€çaaÈå.«ã','wp-content/plugins/worker/src/Symfony/Filesystem/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('*bë.‚c¶Œ9á¶·g\Z','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php',0,'Ô/üOAIæÎ—ÕÇP','Ô/üOAIæÎ—ÕÇP','Á…·š(Ò,?LÎxkøµ3˜§IÀHh£]qÙW¥ù!¢','',0,'?'),('* aØF²Ìð4Ÿ°uÛvU','wp-admin/images/menu-vs-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J¨ZY<÷iÇY®„bø','\'œ¹Fà½÷Ñ”E\0†õæè7¡É¡Ÿ#ä>sePØ¶','',0,'?'),('*$vx]%£Üs66Ò‹–','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/textcolor/plugin.min.js',0,'ÄÜv™<hääèðÎîÿpü','ÄÜv™<hääèðÎîÿpü','!À/Ì[Iä+\r©ðGí²âà– DÕ­Ï7€=ŽŽ·®“\'','',0,'?'),('*1±µäø£0+Þ`e‹2I','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/OAuthScheme.php',0,'RË^XyœÌ¾t¿¤õ','RË^XyœÌ¾t¿¤õ','\'ëD8\'‰¸DzŽ&þJ¯ïš›^½V¹1yáÌºBÑý*','',0,'?'),('*BÃ3ss$7\Z§’)\r”[À','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/Acp.php',0,'™=u5FŽìJäø/+ÄÒD','™=u5FŽìJäø/+ÄÒD','¶÷{¢n\Z¾ðp8(™Ö3êò¨íØóºœ5sh“x\Z‘','',0,'?'),('*K)À]ã½–pÈ¡¢áÈ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/FactoryInterface.php',0,'Ì`âðrÈÛ?‚}\\½»','Ì`âðrÈÛ?‚}\\½»','×ù±÷îÔ5-tP€\"…xÓXòÒ0w\"¦2ÒqÙ','',0,'?'),('*O[œ’÷Ô%‡*VÞ¶Ã','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/File/X509.php',0,'¥<ÉC»¡£`Î—','¥<ÉC»¡£`Î—','* ‹ffqË9‡_D7Ï¾ôÖÿÙum“Þ-~[ý','',0,'?'),('*TÇšç—qG6÷¸RÚäH÷','wp-includes/blocks/site-logo/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'ŽzQ»^P§ú,«Ê¾+','[èƒ´²©‹t}ïö»£±t„³öQ‡›`ƒ4¯mÄR','',0,'?'),('*V.XZ—È_C[AÔ€—C3','wp-includes/js/dist/keycodes.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«‚QTÑ{Ì¬·ÿ7zEí','\"=-†C¢>M^•]û(œZ|;QÈðÝáÉó…','',0,'?'),('*YF	N7ëF‘­`»7	','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Log/LogPlugin.php',0,'íÐ{Þ(A¬,d¡ûà1þB','íÐ{Þ(A¬,d¡ûà1þB','#Ðà>igë[õ¬r1ã?U¡0ŸÒ«¢š€\0','',0,'?'),('*\\TÒ)%]óªyiD+','wp-includes/Requests/Exception/HTTP/402.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÍˆÏšW:lžÇïq~','¥g˜©NQ	µ ¯”Š‹ð/æØØ	·y5“¯‘¯êÎ¸c','',0,'?'),('*bÞ6<¥f©³-¶¨ò','wp-content/updraft/themes-old/twentyseventeen/template-parts/post/content-image.php',0,'7ø½1ý&:ŸÈq\ni	','7ø½1ý&:ŸÈq\ni	','xGÖ€3ÑÆ¦X†y%ÖðŒ\'3Ö 4\"9µI÷¼.','',0,'?'),('*kÌKÓ,{JúS/dá³/','wp-content/plugins/updraftplus/restorer.php',0,'Bw\n0[?Ä\"Èq×˜K','Bw\n0[?Ä\"Èq×˜K','–Eª8Mº‚¿QÀ›\"‡ýà˜¶)·é1ô»ëqG·K>¯É]','',0,'?'),('*q*6\r¯²6Ð¶z\\Î','wp-content/plugins/updraftplus/includes/Google/autoload.php',0,'øËªOŸïC$Eü9AS!À','øËªOŸïC$Eü9AS!À','þÞTó~?|T;KF˜´¸º+±…PR\'··b\0xÀ','',0,'?'),('*}‡8¨þï]ßä†%5ˆ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/slider/vendor/nouislider/fusionredux.jquery.nouislider.js',0,'€¿ä·‚½/¨7¯ý1K1ß','€¿ä·‚½/¨7¯ý1K1ß','9T+Ð‘5’YÖL\0-Ðže¢¿dt€F›Ñ¨>Ø©é_Œ','',0,'?'),('*‡Ô…GÔ³ô¡Gì]„c>','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime239v2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áûÿ×›à+Fcœ>ãÚØXæ','Öç‘¾ ÊÆÔöóç¶bª7w¼ë\"!QÃÌf·','',0,'?'),('*‹C©Ú.Ø\\´zxÞç1','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractErrorCodeBackoffStrategy.php',0,'S´Ã¿£1±þì.ˆkñã','S´Ã¿£1±þì.ˆkñã','”¨YZ²L„\0 --Œa8™e\":ë\\c³þ0 ä¾','',0,'?'),('*›qd‘qAûÕvöîÿ×™','wp-content/plugins/updraftplus/methods/backblaze.php',0,'‘~ UÅ\Zz©×]¦š˜','‘~ UÅ\Zz©×]¦š˜','B~:]_ˆOåƒLAN/!qÒæpf	ûN¸)š|rO','',0,'?'),('*¢µ*ŠW8«çµ5–¼2~','wp-includes/css/dist/reusable-blocks/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JRKÎN»` Ã1U%È','œ+—à÷,qò…KÎ*¸¥~ã£àB³Ã2‡‡Â\ní£Å«ô','',0,'?'),('*®ä-3öu¬EÂ[ÕO#','wp-includes/images/down_arrow-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷]ëç™êM…žÁû‡fÜ','¥¶w\0˜øÉÜÀqp¯qð5úÚûTˆ#\\º¹½¥','',0,'?'),('*²­Á~æÞôÐi¶KZ”œÛ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ClientBuilder.php',0,'Í›‡ÄÙð$§ðÒ×)?','Í›‡ÄÙð$§ðÒ×)?',')Í×QDÚ«|ã°Ññç(F³˜M¾iVâ^tOÃÚÁŠ','',0,'?'),('*Âx„ÝH¿ä&HŠñô©C','wp-content/plugins/wp-mail-smtp/assets/vue/img/thumbs-up-hover.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W¯´>Š²ÇZáJ]uw\"F','ðP\n—…FÖ‡òÐaï‰(Z¸wò˜¾5è?§Çß™','',0,'?'),('*ÇÈÆ²¦¼bÅŸ*ee¸','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ðx\\8zíMØ~—.‹','üvR¬\0‹S~[ü\r‚ªÒ®6ßáoÝú¾á’þ:Åšµ\r]','',0,'?'),('*ÇËª\ZŒD7cÜûGO‹','wp-content/themes/Divi/includes/builder/plugin-compat/modern-events-calendar-lite.php',0,'LæomrSpÿÕN\rF7','LæomrSpÿÕN\rF7','¦OSe÷Ä$¯ôE„¹=1¶~	x:I/¡btpû¾ûŒ²','',0,'?'),('*ÊÙ‚IÐ8ÞA”RõÌÑÛ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParserInterface.php',0,'´ØÄËŒ¡:ZÈóÛãä÷ô-','´ØÄËŒ¡:ZÈóÛãä÷ô-','b¥º¡al’ÿrzØiQTý§	ãSZÑ“f“Jk“±','',0,'?'),('*ÑþLím&&2ýÕ\nb','wp-includes/js/tinymce/utils/form_utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿ˆül¢U‚‚T“„ŸúLi','vLú¢âus<*r¹WÒªµ‰£Û.\0|õRgŸÊå´æ','',0,'?'),('*Ó`U¨z»]\"L%—1­ü','wp-includes/sodium_compat/src/Core32/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´Ñ/Dzxþ¶Ç‚Éâ­ü','ßÏî,ÇèÕßÊE¬ù¿{Žî0/m›aÓXˆi‰àÑ','',0,'?'),('*ÕÉÅD7¿aHCX¶Cm','wp-content/themes/Divi/theme-after-wrappers.php',0,'â¥c–Ä#¹oˆÐ®(¬M’e','â¥c–Ä#¹oˆÐ®(¬M’e','pÙ!0‘aBýÏ4Ùiþ¥™ù;\\%˜x¿Pá†6]','',0,'?'),('*×&C:[¾¥ñrÕ9‹Né','wp-includes/sodium_compat/src/Core/Base64/Common.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PÛÈefè§ÄõÊiª\'ÒjW','6þ°UmÐ–²%Ïì?MˆS°A^=®X ª|U–Ã','',0,'?'),('*ç\Z07Ñ¥1OÓÓÙŽ8','wp-includes/js/json2.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s¡×{N‚|EO«0©','q3Ÿ..Šj G\\RÓnÝ¼I/T¶‰-í','',0,'?'),('*èì¶`Øz”/‘/;—“','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BucketNotEmptyException.php',0,'ÄCç†ì\n”FšåŸ\\|','ÄCç†ì\n”FšåŸ\\|','3.éViqÌ>jyÔÃ).âèÓä%L{­Õ„»Uç¿V','',0,'?'),('*éçW¬chi•×¡EmŸ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FilterHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŽÔ½–~\\«ÆQË¹ðPŒ','nÑh’s¨ÔÈ½/ˆÜ&6÷tž4e“X´½¸\0Üý=','',0,'?'),('*ê	ì¯Ä…ÉÎüßã\\ã¹','wp-content/plugins/wordfence/views/options/option-toggled.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D“u¹\nL„»‡œðûÂE','L8MÐú0ƒ=ŽYïkbŸ³Õ|59Ôb+ä–z:4','',0,'?'),('*ë€ÊIÛäõiüƒ§9\n?','wp-content/plugins/updraftplus/vendor/symfony/process/Pipes/PipesInterface.php',0,'|×âèfÉ=µÖw¥&¤;','|×âèfÉ=µÖw¥&¤;','†ãx×½“²S+ÛÏ@Vœ¦vûÏáKÇH','',0,'?'),('+æ3N|øö!£¢ Çõ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistk409.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”¼-JiÐÅŠÁHq*²¾À','³_µ¯kBƒc^ÀÈOCÿÉI±:Ò@ï2%\"‡Hê‡Î','',0,'?'),('+\"ÚÿÚs‹¢‚“','wp-content/plugins/contact-form-7/admin/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IGsÆ‡XyÔ¦úósT‰','\"|`¶’’Ì /¡A@O^†­ö€ßöÃ\rÍÕ µ–¬','',0,'?'),('+;Yý ž¨°™z+Z^','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/ServerSideEncryption.php',0,'HÓ¤@„@jÿA¥Þþ“ ô','HÓ¤@„@jÿA¥Þþ“ ô',':i™èØšæ„ý4¿ïI›{YÀŸ1Nê÷¡uDx','',0,'?'),('+ô¦(-V&S_2X7f ','wp-includes/blocks/paragraph/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"—*ÅV‹Û*)ú}Ü4','Ù¯t]fÖå‰ÖÓ(Þˆê9§)—šÊ·µI]J#','',0,'?'),('+\Zi/a¨áü&ƒeù{Çš','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchUploadException.php',0,'Þ}rvè5~Y2Gšô±|','Þ}rvè5~Y2Gšô±|','jòû¤>s`¿uè}|”4’þŒìNÕ_€RaÏV õÀ','',0,'?'),('++­êu¼±ÛVÞ67Sc¯','wp-content/plugins/contact-form-7/admin/includes/tag-generator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þ´©ŒZx/!P €Ö¢a´÷','6Vyn¤)7î›:‰€n:ëÕ! Í¾Ä)KQ%Ç','',0,'?'),('+1Ê³$¨ç|­;!{Q‡N','wp-content/plugins/wp-mail-smtp/src/Providers/Sendgrid/Mailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MSiÓÖÏ·Ä*PCÎ·','H^îƒŠ¥$¸a½Ìfè›=ÌŽŸ^ú°Ù–Òêo','',0,'?'),('+9…£Œ[BUûE–e','wp-admin/js/updates.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢õÀä×Fy2ñþÆT€(','1Ï¸^ÊÝZH·ÔÊ¬àãºÃ}-GïD;UÏçW‘|','',0,'?'),('+<c¹¾§Tfx4Q','wp-content/themes/Divi/includes/builder/class-et-builder-module-use-detection.php',0,'2±0ÓªÈÞvdŒXNþÀcB','2±0ÓªÈÞvdŒXNþÀcB','ÜæJ±>eºV\"ÿ¡&›+\\üƒ?§SíÝFaˆ°xö','',0,'?'),('+<ŽÈð¡ÉOŒ_ÒÀ’','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetContactCampaignStatsOpened.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u#<™Shßå £Iìô:','w¹Qìþ W>é)˜ø¡óý•®TÊ€a\nhÂZN^Ô‘ù','',0,'?'),('+D~ÀÈ”q˜ÚÛwmWë','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ru.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•Ÿ‡;CÇEÿÀWLäDÌ','¯Ñ:)fl\\úŽß…Jâ(ËsLŽˆ¯ÀzÅ\r¨†º','',0,'?'),('+H¡Ìn\"»º˜]#‡ßˆî','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îuÇGMÿ^;\\Â`g¯','˜\nÅ¬æ‹GÓ–¹öˆq\">eÅÀÐUê`9','',0,'?'),('+JeaÂô:_·í×,','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchWebsiteConfigurationException.php',0,'Ø«¹DÞÞ•“;L´Ä]','Ø«¹DÞÞ•“;L´Ä]','r,íTóvá•Ÿ}G[³›(ôIð=`ï»±wNç™¬H','',0,'?'),('+MTYŒÒO0odúÜ«','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/ext-emmet.js',0,'ˆ	Q\n%§Q}X\rÕŒ¡','ˆ	Q\n%§Q}X\rÕŒ¡','£*ó\'ã\'—4ªÖ¬w)×„ Ìü(Ak¹8ú.-Á#´þì','',0,'?'),('+b\n’ËDf°X2À†‡Y™C','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/ConnectionType.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dåàS:¿-NÀ!QÝû0\"','§6Ë)?™ò‹^\"FÒ*©g|ÒÎ&ÅÛRÕÎ áÜ\0	','',0,'?'),('+eWÏ¦ý¿û†jÐ€A','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/raw/field_raw.php',0,'¥\ZÓêý-Q]‚x×ÎÝ…','¥\ZÓêý-Q]‚x×ÎÝ…','l\Zã³²Ã¨~‹ƒçWñmÝ&q z‚ûÃ»¤«Ûo«','',0,'?'),('+gÓózóšPòôéRÿà','wp-content/plugins/updraftplus/includes/Google/Service/Books.php',0,'¼_7VÌhv$5LÏ|ÍÃ','¼_7VÌhv$5LÏ|ÍÃ','2¯ËÏŽ(9Ò‰¼üy¨TŸZÚ#Ô0çÝ©p¨UÎa','',0,'?'),('+‰B–¦ iKo(\0¦2Ý¾','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/GuzzleException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†L°J·*hóiáë`á<y','~+¦Ü;YXë\ZÏ~ƒæé÷abLGõÉ«Ð‚›½´sW','',0,'?'),('+”çd¿°Kc–DÖ{†w¿¯','wp-content/themes/Divi/includes/builder/frontend-builder/build/delayed-update.worker.worker.js',0,'\\(žuŸ@^l‘¤u<°Ð','\\(žuŸ@^l‘¤u<°Ð','FŸ\rÜAÖÕn0ñ§*RaÛ»Ç[3ß&\\=³Ý','',0,'?'),('+›ŸS¢®ßD­ßafkøŸ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DeleteError.php',0,')ôz<a 0x\"¦ñÌ',')ôz<a 0x\"¦ñÌ','Px¦µ‡¸ÍeÃ•Vü4³…\0\"“\n¦ÿœ1Ã«)6\n','',0,'?'),('+f3ŒAã+g“³n-Ã£','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-patcher-apply-patch.php',0,'8‚&N\'>1ÁCX×°”ž›','8‚&N\'>1ÁCX×°”ž›','\\OÿÄ>Éæt9“Ÿ²ÈðÚ9[Ð Bý£ùŒ¤4óì','',0,'?'),('+¡ËßÈ¡hgžìÛ©W¬W','wp-content/plugins/duplicate-post/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³ˆtê÷nA²Z\0þÔ”Á¦','çbt	(ÛWèM¤Q|¬ç<\"úöGŒnŽ5.ì“×','',0,'?'),('+³§G*#ô±íô¦”ýf´','wp-admin/network/site-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï;·ZµºÀxÀËßd','Ù&9˜+ˆ¾\\\0ëÇú§	Ò„&1ÜªCj¦ÿÚ ÌZ','',0,'?'),('+´\ZD€–Ze}É','wp-content/plugins/wordfence/views/onboarding/plugin-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºÇ½ŒVÈ\r’Äs_2èÉ´','Z‚~\0éÓiÀçÇc2=ôÒR\"Øþ P­˜ò<·ÿ0z','',0,'?'),('+Äãøt¨%R?ÒÛõø Ì','wp-admin/network/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bµ+ð„€ëKVe†=­','WN°œh¾K2ZŠFëù°WÎí\r08ìÜÐJ5','',0,'?'),('+ÈbçÊ³ëI=qYßÚ','wp-includes/blocks/freeform/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷–^Æ[%0×ßå©Gö§ó','þ\r.ZEççhê ý„îÙ(:•0B‚²ˆ$uÊF','',0,'?'),('+ÉPa5|gqÆø jý','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/IncompleteMultipartUploadChecker.php',0,'á	š¸ÃWNa	ƒ/m^','á	š¸ÃWNa	ƒ/m^','€ ¦Em5+Õ·ÍñÄµ4X.Ìú£y—VÛ1ˆ‘¤¥','',0,'?'),('+ÒÆÜ’±žj*·}±\0	S','wp-content/updraft/plugins-old/updraftplus/admin.php',0,'ÍX4á^lqèlg¢Zë','ÍX4á^lqèlg¢Zë','$Ó©\\Êó,\0šXñ4†qïE½SŒÎá^ÔãÕŠ','',0,'?'),('+Ò×y¾P³[8Ñ;4M.','wp-content/plugins/fusion-builder/inc/templates/next-page.php',0,'ýëp’ ¨ÐÒŸõ6Á•ww','ýëp’ ¨ÐÒŸõ6Á•ww','ÄFHH¢Ó›V^õÓø8_ÉdCü#ì0SÀ79öñ','',0,'?'),('+Ü»2ÎYJïž°P”ž','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Order/Create.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŽJÿ£á•ª‚kb çn','$\\5¡©æ+M6@,}gßy¦ˆÃÓ©³šV“°¦','',0,'?'),('+ïÆº[w¤(ÒHë÷¡Yl','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildrenList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èTh÷`ÛþÓSh~™ü+X','è¶«÷^Ì[é%ˆT2Ê˜Eñ¹ƒ\Z³œA0«*uc','',0,'?'),('+ô~„VCïïFêåbd¬x','wp-content/plugins/wp-mail-smtp/assets/images/dash-widget/smtp/sent.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£ZÀ2ÐoË½ f«ÔPŒ','J7;D\\‘{§S¦«\\›Sµ*y™:ìÄbáÜ','',0,'?'),(',à\Z¼J\'ªAWh€Ì','wp-content/plugins/wordfence/views/options/option-label.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'`Ã¸ìéÙÛaØé åá','ø¸æñÝy–óDFR#\\\\F/­ýG%RY¡Òx!˜B6a','',0,'?'),(',^îW¥1Ñ±þNaLä-','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateUpdateFolder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£ÉªTÙpE(\'-À˜c','j{O–&„x°‰³8ÔÌ‘ƒØÝú¸p5ñÂÐÄ½µ„','',0,'?'),(',@òVÕ\Z~+¥G×Û\0','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacEmailContent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›ÍI‚Ö¡²ÛhpÏ3ÒnqÇ','°×U	g¥×O‚Ÿ—_Å½ÌZqgÔâ*Î, ¹Dï ','',0,'?'),(',	†Fõ&Y%èÛŒ& é','wp-content/plugins/wp-mail-smtp/assets/images/dash-widget/wp/delivered.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uzCtÀpˆYèXöý','_ôdÒ­¹K=–Â•ä§ÞFÁ	hŒkx4Îg)Ô','',0,'?'),(',ãº¢€æzŽ] !0Y','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/EventDispatcherInterface.php',0,'†à=c‘P)È‡Ž×Gäñ','†à=c‘P)È‡Ž×Gäñ','S\"º‰rçÂ1ò«J¼Å¸¦	6Ò*ð)†…-{œ','',0,'?'),(',<VUüÍáÊ%·÷IæÑü','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect163r2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5&uß×(Â¾ª%Ánçª\n','\"bmTO³Ó;‡;C˜ Á\"(†|Ú×Œ±(X›B\'„®M','',0,'?'),(',<“ª ß?C]á0AŒ','wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í¶¥š¾Uè£¦Öhà','ïehÓ§ƒ&Î­­ûAµ3‘+WThÁƒ\n\Z)È?ÿÿ','',0,'?'),(',>=ø‘ªUù6ÊtÌ¡Î','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-heading.php',0,'“±¥ªè4I•\nZHù‹u','“±¥ªè4I•\nZHù‹u',']^Ÿ‹Mæ»;Y~„\rýmä»@t‡EÐ]“9»JÅ','',0,'?'),(',Eî6	]ÔM8}dç÷','wp-content/plugins/really-simple-ssl/class-url.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_5’K@ã»Ï—xlÝ<¢','ðh“<ë#0Ð<ÒsQ¨c¾ˆMæ2âðl”1rÔ•Ð','',0,'?'),(',IpØØUíwäbä§A@#','wp-includes/blocks/spacer/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦ƒ	@-ÅÜßK$_Ó¯p£','ØD¯\Zìeî(¿kr£ Œ¢Ÿl0 uš[Iya/Î/¶H','',0,'?'),(',LŽ+‘AO¤8a=¤ä','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/Md5ValidatorPlugin.php',0,'Þ!‡+švmÙ·ÆÞ²|çã','Þ!‡+švmÙ·ÆÞ²|çã','[žê’ÒQª¤iƒv[*åîðG¹‘Ê_£á)¡C}','',0,'?'),(',M´n\Z=$è*ÞFJPgn9','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-soundcloud-preview.php',0,'©þ‹ÏÃÑŒ´Ì³QkÝ','©þ‹ÏÃÑŒ´Ì³QkÝ','Bt	ìª”ìWohàÉ¹2ÙË´²Ð®œ¸ˆÍPqmvÂôò','',0,'?'),(',X/;a,þ«v¡Áè–n','wp-content/plugins/worker/src/MWP/WordPress/Query/Post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ôt\"7\\+ÑÂy>“‚±®¼\"','z{Ãýj0èC3Ôf‰¥Ó€TDz–±šªß M','',0,'?'),(',]\'N¦%Ý‘UeT­‚)','wp-includes/js/dist/annotations.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sƒnÛØh¢»gÄ\"Ç|U','{™Í³âP‚ì-E¥Ý+½Úm±¯I‡yÂ\ZV„ÓæÜ','',0,'?'),(',giAùu3óÀ#î³äE¦','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-countdown.js',0,'”ò\r›ËÃ@‡‰UPòÝë·M','”ò\r›ËÃ@‡‰UPòÝë·M','/Dzhiâ»0ðeœòÏ\ZïŒÉÿî¤#/_{6bX¾\Zã£','',0,'?'),(',u=q“ƒÝtOµZFª‹','wp-content/themes/Divi/includes/builder/module/PricingTables.php',0,'ã·×\'×]Íþù¯Ânî@','ã·×\'×]Íþù¯Ânî@','ÔaÑ@Âèlž\r\"±ªO^&=z @J¨<|‚ç¥îwY2','',0,'?'),(',v=¶PqÛÖYy\Z‡','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamRequestFactoryInterface.php',0,'vÂ-™HX·®ÔÁH/0D‹','vÂ-™HX·®ÔÁH/0D‹','O°J£è¤¼Tk¿Q\r.±‰LzY¸%¬0DÌèU2','',0,'?'),(',yx?x‰”WÌÂ“¼²e','wp-content/updraft/themes-old/twentyseventeen/template-parts/post/content-gallery.php',0,'1VÅÀ½ÐÉ(‘;·ö','1VÅÀ½ÐÉ(‘;·ö','®ê!«[0¾J”\0ðÒõ°6ã\Zjö6\\Ä?\0.k','',0,'?'),(',zØe©àúY#uJ~[P\r','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' OpR{üÒµŒçGÝÛ','“Y’ü:B†åÅP5M€s_†¼±š¹.Ù†úÖŽ','',0,'?'),(',†áÔ@µšhjäqrÞ’ÿ','wp-includes/ID3/module.tag.id3v2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oÒödó4ªìyó«NÎú4','aÆ™‰4>$ûz©ö°%í5¿Àz	×áôá9„é_','',0,'?'),(',ŠhÉƒs?4B[Ë^Õ','wp-includes/SimplePie/Cache/DB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÑwÛä¶Méü\rÊ¦|DÚ','g#è•è‰ëÞâ]\"°h0Vqü)Â0œˆj´%ÓÍãI‘','',0,'?'),(',’Ê“‰C®n’+¢','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/FacadeInterface.php',0,'G›HÓ6ØmªËw‰†ø‚ü=','G›HÓ6ØmªËw‰†ø‚ü=','w\\7•l[W•1KÁ\'­GdËCI˜—Ur½w ÆF=”•','',0,'?'),(',›ã‘E¾åS„Aá¡‹:','wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Token.php',0,'†q¿wµÀ<\Z•-6€Ý0','†q¿wµÀ<\Z•-6€Ý0','E¦\'\'é˜Œ›¤¥2¶\"Õ½¸ñÐ¼¹ ‰¡|gœE','',0,'?'),(',ž¤Lt/«•ïÙ-b™Yö','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/PersistentObject.php',0,'¤N(ýÝÚ¢†µ¯ðP6Êš','¤N(ýÝÚ¢†µ¯ðP6Êš','ù³ÌnôÎ°·©ÍuXXywV¶—TÜ³Jé\rx†Š¤','',0,'?'),(',¯Ûë|è8C}ú²b†FÆW','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetFolder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|û ¶ô«ƒÀ\n‡ntÇ°ª','J=Å{h–¨EÇR.àÕ–@øê‘T\\-L}æ÷\rX.	†~','',0,'?'),(',Æ€\Z×ÔÚv:!¿0Õ¨\Z','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/BlobType.php',0,'ŠSsÒÀ•¹äÀ:`E4F¥ò','ŠSsÒÀ•¹äÀ:`E4F¥ò','ËÙIZG…¯¿Al:¶¿Ð},¡•µÚ¼7ËóöJ6','',0,'?'),(',Ë¸ÌX¢,² Mnï×˜G','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/BlobBlockType.php',0,'86µ=Ùþ™X™VBRM','86µ=Ùþ™X™VBRM','ø{daùH\r¬£îd‹5?-vµ —\róJ1	\r _ˆ','',0,'?'),(',Íˆ¢±2¯@L7êd½ ','wp-content/plugins/updraftplus/includes/PEAR/HTTP/WebDAV/Client/Stream.php',0,'­ûcØ·mÇ(üÚ¶?Ad¬','­ûcØ·mÇ(üÚ¶?Ad¬','ð×Ñ¯Ü(\ZÚÆ,`+ü‹°]ýÖRv[çéi+E÷«W','',0,'?'),(',Î+Q^“dÔ6û”÷òny','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Cloudsearch.php',0,'ÌëPÖ·‰Ò§XŠfo°','ÌëPÖ·‰Ò§XŠfo°','÷]bqî^ßGÆ\näÊÁNÌ±ìfÙ^êö¦º\Z1æû','',0,'?'),(',Î5!‚›¿‘Cw#]@	x','wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/random.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œn\r»Ðtó[Ã\\æµ5Ò','¢¤š¶ñŸæQôNºÄ!î©ÅØáßmat2hÓ¡5èÚ','',0,'?'),(',âAŒ‹Úìwé‹KG','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/admin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôürÅ\03ëøßfš','#!uÐnÜEpm3l(ùF¤|_éaÈŠHlö›','',0,'?'),(',îlq¿éêÄªG\nƒ/','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/slider/vendor/nouislider/fusionredux.jquery.nouislider.min.js',0,'hGCp=¸v\\2ËJ M³P','hGCp=¸v\\2ËJ M³P','ç3\0…î´¥sš9ã@H®­	\0QÍ Ðgó}=\'v','',0,'?'),(',õ’(X\'¬ƒ‹á%Z‹Æ|','wp-includes/blocks/group/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•‚ªÄ|ˆáVÆ³\\‡è»\'','\ZÍY÷™ãÓ—àÐ—¦ž­átÏMú¾¨ÈYë—·È|T','',0,'?'),(',øÔi	ºCz‰2)Ôn^','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Http/IUrl.php',0,'äÕË}éò9²^•‹]iÝJ´','äÕË}éò9²^•‹]iÝJ´','\nÉ<ð6íg[&—*€ø>fïœP&˜õV”¦','',0,'?'),('-ï‰;¶½Ø!2í³è','wp-content/plugins/duplicate-post/src/handlers/bulk-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Íc¿_Ü²d¤ïÛÎ‡áÐ','I2ˆSîÞâ)¾ñƒ~å÷ù¡¤?›È¿1ÌØ$VÔÈS4','',0,'?'),('-`wáÒ¦j9\rOú²¨¬','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/Adapter/Mock.php',0,'PÏy©c6íÝ½¸ ÖkK','PÏy©c6íÝ½¸ ÖkK','£ÛI£4Tv¦¿Ú¿®»ÃÈôà&ŽÓ¦Cí=ŒÖYw','',0,'?'),('--Ûë52°XvL¶PA','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/Extension.php',0,'çvŽ‹hûí…Ðgpc','çvŽ‹hûí…Ðgpc','ðÇ5îo¡Œ D}kù9PivÆXÑtþ¦b±M¢i¦âœ','',0,'?'),('-ìryt#435½ž{“','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-filesystem.php',0,'®×a¾Do\np*„µgYŠ','®×a¾Do\np*„µgYŠ','Ì\Z5 6XÙU†ð¤®Z]9µŽ¾l,­veV3c©€Ü','',0,'?'),('-!N!þ‹÷¥–¡’£ÓŒ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions/Barrett.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú\')~Pô¯béÎì…}W','iEú{íYö‡GÉgLkóRf­§Só½{Ýn\'²›','',0,'?'),('-!Ø€¸Ôö_|xôXÎk[','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Autoloader.php',0,'p|ÎI¸%ûa=¾ºy','p|ÎI¸%ûa=¾ºy','‰Q%©lÿ<jRXÒ¯@ÀeGyV_þöƒ{“b ³Lƒ','',0,'?'),('-#êôg‰LDuÂA7y','wp-content/themes/Divi/includes/builder/plugin-compat/paid-memberships-pro.php',0,'+6NŠzGËŸI™ÝßßT…','+6NŠzGËŸI™ÝßßT…','åé\"I5üv±­høk†Gá!úúûÍY_Ö¿\'m6Z(Þ','',0,'?'),('-%hˆcÕ`˜åâtwëž','wp-content/plugins/contact-form-7/assets/icon.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~9ÓËNüÊ¶_cß±_ì','yåŸªÉ/ž+/Á<&p4Æ‰oò­Ô ¼]o>+^t','',0,'?'),('--ÄÃ¼–$®);†ÄJ5','wp-includes/js/dist/rich-text.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…¤¡œ°Š¦×ã“ \\Š','áKa­Èôê2TQÙLsø\0ÞÚ Ñ¸&=:@\'','',0,'?'),('-<h¡Aiøt!‡¶‡]«','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/WP_Async_Request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àÓÍ4ü`‹|D$WEü','}±vå¹>ãûµy•dàÆ—Uù÷sÍù×ïÚ;þ­h','',0,'?'),('-=³³9ÁÕŒ–yÁ,J^üè','wp-content/plugins/duplicate-post/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M’´g-}4ÚÙíÂ[€-·£','6ñ§7%½©G9UG2¬0×\0\ZÎlÜà×+zºˆ‹','',0,'?'),('-A?MT0¶;žª9WBk','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilder.php',0,'ò\'œ\\/º¼	vîô½','ò\'œ\\/º¼	vîô½','¶5>@þ)nÁ*È]u¼ˆ–Ùµ£ˆbÌ©9v/™','',0,'?'),('-Vp{í—€VÇ÷¿˜íÚŽ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Exception/HTTPAuthorizationInvalid.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŽÁã}û~„R§-¸«ØJ$º','¢ëæ	¬ëÕMYmú%Æû­´<n¡w„âƒï©ÞÇ³õ»','',0,'?'),('-\\¬‹[×µ¹†èJ’×¥','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fá’1ª£Æ	ÝMœçáÈ]ú','¤ëA8ÞÞ{€!§òV™t<SŠqH©ohÞ4†¥y`By›','',0,'?'),('-jÞ§« š Íæ¦~hyb','wp-content/plugins/wordfence/lib/menu_support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',²“EÄx×‰x Ã«©','\"%üJÆáOø°û\\4PóÌ÷FöFƒi×ðJ$À ','',0,'?'),('-kdÏ¯‘ªXßw\\7ŸÀ¯','wp-includes/admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³—fäÛáËëjVº¾ÜJ\"','q` â°ê¨ÿæ]Ø;\\ê§Ýˆ1ÍuÅ‚›ä«”ì¢[','',0,'?'),('-oiB¦d\'Iá\\cG©Í–\n','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Account/AbstractLocation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Îe$ŽzQE+lº4%Ùlƒ¡','EŒ+’Xz;cssLa§Ÿ!³Aú¼ï`¤Ä©al£ç/','',0,'?'),('-²êÑáÇ¸†%w=õâ','wp-admin/css/colors/ocean/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„·ªøžì×Vô*,^b*$š','nh“á·˜vUè?D½Ÿ4“ÌwêZqàÔî·¥Îùw_','',0,'?'),('-‰w{0·c7mÂæ','wp-content/themes/Divi/includes/builder/module/settings/migration/BackgroundUI.php',0,'td´›ÅÌøæFè²Dýä`','td´›ÅÌøæFè²Dýä`','N V°\"6Lb+\Z÷KsÚ©…û°¹GŽæ9–—	‚÷½u','',0,'?'),('-×£\n”(;ûnÕb#Ã','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/RulesEndpointProvider.php',0,'\Z»÷ ˆ’Ìm=jiÏZOW','\Z»÷ ˆ’Ìm=jiÏZOW','¸âž¥6£† hŠ6ÏîaàòT>2ÿ=ÄoPÏéu°D','',0,'?'),('-†šŽ_µµæmq+«÷1”','wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hã ²íÄÈi´e •É¡','IHøMp\\‡æõÿN­h\n×ˆNš¼F=-»“ºZØ=hO','',0,'?'),('-‡º)7¦5y°8cÚâWvØ','wp-admin/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áöYâF¯í@°š¸ï{È','7CqÍùaCqïV/Ÿ\'»W‹ùþ¼‚Zª3—9ak°è–','',0,'?'),('-Š_º×+ÍÔYn¨ÙS','wp-includes/js/jquery/ui/tooltip.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aÌ\ræc5V‚¨üªh','+*5é~oÑ¼ˆ>Á\\Z‡‚¬â•‡c“Äàl ','',0,'?'),('-ŽfâÈ4]Û#\"u¸³l','wp-admin/css/colors/light/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“20‰º¬d#Ûkã$fÊDË','¹wàñ4UÞ‹‹K`V×Òi¿ÒÉ¸	 l²ÄÂÌ¡7','',0,'?'),('-œçŸè—‚ ‡Y{]nsƒ','wp-includes/css/wp-pointer.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1¯UÆY—DKæzüc','>Ä;•Ã]Û¼HŸÕ–&ìœÝŸ£ÿ£Šùå`;Ž','',0,'?'),('-Ÿ\"9´ë\"÷J%xªm.Â','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestTimeoutException.php',0,'3†.õ\'®Û2\Z@ÅUÐØP','3†.õ\'®Û2\Z@ÅUÐØP','áðª\0dóX3×¶²p\':•6¯u×dSQop4Ø6¥`','',0,'?'),('-®º#w®ÁqKòž7','wp-content/plugins/instagram-feed/img/about/plugin-yt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ª`È8°\")Ua€¶[','DE]ÃaÂ°Z¢áß*2¿µ|œe\'&õ9®.mt','',0,'?'),('-´7ƒÀuÄËÁeÁ|ðd°(','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/AwsClientInterface.php',0,'µTžR]Aˆ@»+4çœg','µTžR]Aˆ@»+4çœg','}ø,0ÝçH˜UÝŠE¢¯euÝñŸÏÈVÑ;wòGÍþª','',0,'?'),('-´s½¿&<øÇ£m…•','wp-content/themes/Divi/includes/builder/module/Login.php',0,'³8^ Hñ·¿YØj±ž¨B\\','³8^ Hñ·¿YØj±ž¨B\\','×µê*Ÿ\nz>»åùÏí¬žíå‘Éuûµï[‘ÊÌ.','',0,'?'),('-Òc£ŽqX¿ë®ÈìË(@I','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/AES.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨ìMdŽë)Ù¯Ó6','&‰çâÞóóO]g%ÂkàFl¦Å¯Â4­êÝ‡*','',0,'?'),('-ØÀ¨EXçúe™äFà»¡ª','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP384r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºŽõX@uQº=PÌ¬','…0°ø>å¢AŽÔzëþ?2‚¦;Ù<xN+Bc','',0,'?'),('-âHÂýrhêˆŸãjB›½‘','wp-content/themes/Divi/includes/builder/plugin-compat/easy-digital-downloads.php',0,'#IßñUÃo°­é?($\n~N','#IßñUÃo°­é?($\n~N','¯W•§ö?Cð\0^’\'ÎÁ}ÚtI`eÉZX\":~','',0,'?'),('-ÿ²¹hx”bLLÚLvU(‘','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/AwsQueryVisitor.php',0,'di“½ª£áTÜ˜ã','di“½ª£áTÜ˜ã','uxýdì&¡ƒÝ×òÐQ¸*B«pt–8ˆ(“V’‚g[','',0,'?'),('-ÿ¹ÌFÉ”¥l8¤ÞO','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateSmsCampaignRecipients.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãrðÖd²!ºÏ„ o','.»&Wá	²sv´FóÅ¬?–t mi¥JQå*É.à9','',0,'?'),('.qB¡O¹§­cUýF5í','wp-content/plugins/updraftplus/includes/Google/Service/IdentityToolkit.php',0,'.¢Ú‹=QžeeH»?ô©Ô','.¢Ú‹=QžeeH»?ô©Ô','#ŽK·eŠí¤1S;ˆ¨u‹ÇÏë‡O+°|ß¿*','',0,'?'),('.jË–OîÙÇ0«§','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/AbstractLogAdapter.php',0,'%Ìr(Z‘2Ùjvÿ‡Û¿','%Ìr(Z‘2Ùjvÿ‡Û¿','—Vúu×tÎVÝÿ_ÓT™|µ#ˆ=Ž¶YaÉoÏ_Ç\0´1&','',0,'?'),('.ªté“ø9ksöt7r','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidParameterError.php',0,'\Z×aJþ“y¼”øáÿN_…','\Z×aJþ“y¼”øáÿN_…','*ì®º\r<ZÎÅ‚î‰çóBø¹ò£î•ƒ±°w^','',0,'?'),('.z¶ï•!\\ù-Aa¼jÖ','wp-content/plugins/updraftplus/methods/cloudfiles-new.php',0,'×Œqj>ÎOÊ1?ƒÀkM','×Œqj>ÎOÊ1?ƒÀkM','C´õ§€×né5Ø†?÷sãIDà>Œåu¼ú!×ß¸SÑ','',0,'?'),('. n4çk{	 ÙH£‰r&','wp-content/themes/Divi/includes/builder/class-et-builder-settings.php',0,'rÀ|èÛ‚‘µÞÉcai','rÀ|èÛ‚‘µÞÉcai','ª ™BÄùÅbp2£Ô¦zIXå%à7ý:CU\"J¿§šL','',0,'?'),('. Ó\0_oEÿ]Aµ_Ô0PJ','wp-includes/js/tinymce/plugins/wpautoresize/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üKÌ.Aj_™m•r#i•','\'¡²C§¿b\"B‰ø\\¸Né¸N±ÊÆ*r&.X«âŸJ','',0,'?'),('.\"È}BÉyF•\'ƒÔ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/platform_check.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fã‚÷+-öÜõ’rc-','Y©ôYæ7¢‹þÛÎõ„…ïÉJP7Ì°ÓÏ3ð¿','',0,'?'),('..SŠoüF°¤Þ#:¬','wp-content/plugins/wordfence/js/wfdropdown.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€½ÑáØrpôî÷c\'\Z¾','âàŸSGƒ–s8;®Z¢!²×–Já„uÆ1·z?«¿„','',0,'?'),('.1@eï”Ý-Ã>ŠJµ','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-settings.php',0,'¬XÛ’VnÒå¨Â„Ä7@d','¬XÛ’VnÒå¨Â„Ä7@d','|Ô$OïþØGP3ìO}Ë\'çxÀo|é£ÁëŸEß','',0,'?'),('.6<•†ÊüÓ[;SÒÚÕo','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Size.php',0,'¹-©I@˜ø=”–—š<','¹-©I@˜ø=”–—š<','bÃxóÄÄ—n*R}9™°¹iæ<÷`J²‹TÓ-Æ¼DŠ','',0,'?'),('.IhUœŽâ3Ž¿+B\Z„¼','wp-includes/images/admin-bar-sprite-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ëQ¬ë›Æ8þôo€Ê','*E°ãÀTsüÙå£alä‰^Çp¸ÜX‰¯æ¡Z\0ù','',0,'?'),('.P €ñÚÛÍ:E6­¤§','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetCampaignStats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®cJt<\n›½Pº&®Ãc','âhÅÙË9›õÇ	7÷šS )‡­ÏEd-ióÉæ³J','',0,'?'),('.Sa©wæ­\nY:Àö’íž','wp-content/themes/Divi/core/code-snippets/app/lib/i18n.js',0,'›üDÖsì”éŠÑsÁý¶','›üDÖsì”éŠÑsÁý¶','_[Ìü/\"öáÂò×¼Ü‚’{\nñ1-CŒ','',0,'?'),('.VXíËê}ð«\";ˆ\\ˆ¸','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/ClosureCacheAdapter.php',0,'a|	XÅ¤D5Su[Õ~…','a|	XÅ¤D5Su[Õ~…','Í9òÅzwL¼Ö5¿{Û!ó?éºƒšY!	ïfË','',0,'?'),('.WÏ¥äüêŠcÊlÛ','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-sanitize.php',0,'‚y´V¦í…8Þ‘(B°','‚y´V¦í…8Þ‘(B°','ÞÓ¶”%\"³PdÅ¿ç4]á–£G¼\rBlŠÌ°Sï]gŠ','',0,'?'),('.\\_ãkÜfH»œäÁO','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header.php',0,'¡à®ƒLz*´†í¹ÅBÛg','¡à®ƒLz*´†í¹ÅBÛg','ë³CîŸÔ‘V,bçŒ<pó™ÀUl÷%ûgÿáä6å','',0,'?'),('.rC¡2Ñ^6ž{DQ&dY','wp-content/plugins/updraftplus/includes/onedrive/onedrive.php',0,'Ñ4a$ Tsâ\ræäÃó‹','Ñ4a$ Tsâ\ræäÃó‹','Ïr½¬ð¸aÉ[BþøªTß¶Ä“Ô‚¹•jblÍ¬áª\\','',0,'?'),('.x¾ŒÏ®ßú7…×üú_Î','wp-includes/js/mediaelement/mediaelement-and-player.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§›¤\"Š†Ý\n§-Û¤ Y','$9~ù=:¡¦”áZÖF†m}ùAÄ5ksú	V#€ á*','',0,'?'),('.y¼ïíuöho–NI\0I‚','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êý?¹ô—ŸFíM½Gª','sð¦¡Þx»VMj€·ÿåûøéé†m.HvX','',0,'?'),('.}`¥È•É6jS<‘8ž','wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthServer.php',0,'Óyp?mß}¥Çßý€ÐÉø','Óyp?mß}¥Çßý€ÐÉø','O3÷‡…Þ»zTé\Z*„k6\ršã—ýÆôÁ˜öì\ZÞ','',0,'?'),('.ˆéº‰D0‰u©L-c•','wp-content/plugins/wordfence/views/options/option-toggled-segmented.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›ÜÖBÊW#”è#ü®é','Õü^À<µ´4óÌe,ÀÔ\0úÛlî„’ëÖ\râ!d','',0,'?'),('.Œ=«ß$”¼.¤6¢Ô(','wp-includes/blocks/button/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0ôQhÕ]nFÇM>','³‚1=ž¥a4 ø±\\®Òzâmìh~ÊeÉ;)\n?>','',0,'?'),('.…m¹í7ÜN/M|G×','wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/Exception.php',0,'O\0UèPòVÝ¥ÓlÆ1¢H','O\0UèPòVÝ¥ÓlÆ1¢H','¹Bç3¾\\4»ÉÃ‹¾ÍULÉrâ@ýõÙº’‹®x&+r','',0,'?'),('.—Úûž­ü]+üµ&R¡j','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_sv.js',0,'âEþ˜íÝˆá{•ñH‚K','âEþ˜íÝˆá{•ñH‚K','¤ädŠÅtKÆäˆ*EhÆ5©(gÐB1ùÌ¨&','',0,'?'),('.žÿèƒ -\"¸:ÃÊe™±','wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-intl-idn/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­s^«t€=‡2o@à55','H\Z^dB0<$+,ì¼‚dMgÕc$¯F[•¨<ê','',0,'?'),('.¢ñ¨5Vk·g”oO	[Š','wp-content/plugins/really-simple-ssl/assets/css/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ƒè(½KSYUëvÐ','ä)Õ\ZÞ?–š{aö3{ó¸Wõ`áÅEX®-Ò','',0,'?'),('.£BÇ·&óÖ,µé¾F4','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/PrimeField/Integer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âPøEAãÝZ–$áqkHÌ','¾ý«$uRðp6j˜Øì¨<xÕôQ+Ç´^I','',0,'?'),('.¦EÇ[JõÏlžxßã','wp-content/plugins/wordfence/images/forward_disabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M_ÚÖZ?ÚN)ºÒŠê:Ü5','›®€/ß<>O&ßÈ•JRÝ‡eÄ}š(»›m','',0,'?'),('.±)BZv¨Ö°ø{Æë}~','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/BreakLeaseResult.php',0,'õÍÐ£|0±ÿ@\Z^äÃº','õÍÐ£|0±ÿ@\Z^äÃº','&>C˜yÍþM•±t·h \"sÏÌN\'rË$lÌ¡éEœ(','',0,'?'),('.³J9ùÏ‰P¿’P`k™W','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobPagesOptions.php',0,'?ÿëò«§P¾Xõ_¸?','?ÿëò«§P¾Xõ_¸?','.žè|…Ë”i_ÃÞÞúÆÜùAëÚêcëzõÚ%MY½ ','',0,'?'),('.´×7Ñfów9Pm@¥¦îÑ','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÏÏ0–Hç#ÿIHDñçó”','Ûv˜oÂVYx„?˜„ä\nÜÕ\n&3c-\r¬8îm¥¸','',0,'?'),('.·*{ÅË¸½2j¾#°Kt','wp-content/themes/Divi/includes/builder/scripts/bfb_admin_script.js',0,'Æüù„Ûƒ?f,Ãt¢L','Æüù„Ûƒ?f,Ãt¢L','¤J_:ìÜ VR¥‹î¦§m\\ÔH“¼€@\'øoWb›­','',0,'?'),('.»hõ&o¿\0—àÛaQw','wp-content/themes/Divi/common/constants/colors.js',0,'m= (­ÃA{[1ô÷ïÜ','m= (­ÃA{[1ô÷ïÜ','9Ñƒ=2L ¶K‹Úb#öuKgÞLkÔC½éÕ%bþ','',0,'?'),('.»’“ îz]¹z­$âHÙ','wp-content/themes/Divi/includes/builder/frontend-builder/i18n/display-conditions.php',0,'ºaqi·@÷¨)ùÌÏ','ºaqi·@÷¨)ùÌÏ','Gç>êŒWÒF’Á¥HiAi›ö§ùU¥ÀËs¥Ï°šæS','',0,'?'),('.Äã‹²«å¿Iö¢Æh','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/BreakLeaseResult.php',0,'õÍÐ£|0±ÿ@\Z^äÃº','õÍÐ£|0±ÿ@\Z^äÃº','&>C˜yÍþM•±t·h \"sÏÌN\'rË$lÌ¡éEœ(','',0,'?'),('.Õ÷‹ŒÁâT“P®ðÛ§','wp-content/plugins/fusion-builder/inc/lib/inc/redux/panel_templates/header.tpl.php',0,'ßx”ô¯Tz…å2mAX','ßx”ô¯Tz…å2mAX','æÍjEeÐ;Pqè@Wƒ¶ÝIäÐ\râ¶5jÞáÌCê','',0,'?'),('.ãÍw¦§Òu£rWoÏ÷','wp-content/themes/Divi/includes/builder/plugin-compat/photo-gallery.php',0,' @~Ðy—cBñCù°‘Ò',' @~Ðy—cBñCù°‘Ò','aUœ„ÂšKšDšÏš\\œ´qÇÿø>±”_|Ù','',0,'?'),('.æ¹ÌÉ–ñií„æ°ç^','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/WindowsAzure.php',0,'m^UrÍ×ÒÛZÜÛ(ÕXX','m^UrÍ×ÒÛZÜÛ(ÕXX','‘€ˆµâÐovÆåè²‚°Ú‰d\0ywS“o¹(\"’—','',0,'?'),('.èŽŒàa6vØÇ€ši—ð','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/polka-dots.php',0,'L±\'ö¼§‚?š¼Aqu÷','L±\'ö¼§‚?š¼Aqu÷','«hbE­e-ŠXtuˆî;êj.¸šQ:5*Uò†ÃÁÀ¸','',0,'?'),('.éYÊöe8Æ(Á²6ì','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ConnectException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·+[ÿâòòáC›d˜d','ÊÎ3ËœRJAb‰Ô*Ã\r8ÐœÙ€¢¿H…ë','',0,'?'),('.øÖÏ †a?é¦ºW…8Óµ','wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ(Áº);÷”\n]ò','ÔÛ|]V\\<è=ëÈgç:ØØ/²sö B!è¤e[','',0,'?'),('/„òÎš\Z\ZK£m(¦Êw','wp-content/updraft/themes-old/twentytwenty/classes/class-twentytwenty-script-loader.php',0,'†æò×Þü‡£Û€Z82','†æò×Þü‡£Û€Z82','Þ‰O>€TÔ,ž]~(\\lÑàÝ\0Éðf\r„Z’œ´','',0,'?'),('/¡^~`¸Y4qµ±EX?','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_pl.js',0,'…ûWÐ)ñÜ#(¿º','…ûWÐ)ñÜ#(¿º','k|žC]þÛÒ\'¿ð?êa«ôáüaû(Ðm¯¿œ','',0,'?'),('/£:M“ç`–2¢ý¬','wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/SetCurrentUser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[ë\0Í½L“óÍýK­à','Y5UÀiÛ+GLþø°˜5Ý£Üö¡¬svzU¤','',0,'?'),('/*:ºª»”o>©tšŽ«îª','wp-includes/js/dist/autop.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sÞHÂòñ÷Ø#Æ¨pBö]','•ƒ7\Z¬Å‘p:ž‹ÕHB[À3’ì™Ïß”?-©5(','',0,'?'),('/+}¸×ëÈ/¬‚ë´vjÊ','wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/PhpDumper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊÜy€9¿›V¾`‰I.','ØóÂE¬o\r·vëoD&ÍkñÙ,UüÄ¿	NŸ%±','',0,'?'),('/./ÁSùf[ÜCÕg·å+','wp-content/updraft/plugins-old/updraftplus/udaddons/updraftplus-addons.php',0,':æ®†W¾¡\0Ëof+O´',':æ®†W¾¡\0Ëof+O´','tß½…áù¥–/k‹UùúˆE‰C[–e¢G„Ÿšðñn','',0,'?'),('/8ÿL€€ÂM’÷p>\0æ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/select3.min.js',0,'äú„$äî¦N!Î·±rj','äú„$äî¦N!Î·±rj','ÊGè‡kQŠnMt:‘{šäì°>¡µ!7¿gr®nŒ#k','',0,'?'),('/9áÿÀõ—g­r[(Â~Ñk','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JpegtranFilter.php',0,'×_7\\ñé&­@äÆ\n','×_7\\ñé&­@äÆ\n','ÉÂ§ ]$½˜Í1ÊìTtƒZ\"efNñcçnÈ:]dd§','',0,'?'),('/<ÀœÎµ4Ù-†Êk¨P1','wp-content/plugins/instagram-feed/inc/email.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b$ú(KlNG7A:Ðƒ…','ç¾#ù©³]Ó¦ÁýÍÂ5²7\ZÊ­ºT…ØvÓ','',0,'?'),('/<Ø§^É¼f}–\"×øû$¸','wp-includes/images/media/document.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vå4™8öÎ‘y“6Þd£','¦íÃ¸`™Ùû³çá±íf	I$ _ZªX—\"0\r´ß,','',0,'?'),('/BŽ$SzÞiÑ9³Ñûµ','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—G8©J+œô³‹	¾ z','>8œ©¸\'XëiÔUbýGÐ½Ø,<T`6ä¹È4Ðð','',0,'?'),('/BöV­oã\nêÔ®#è','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect571r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥ªldyýa1õ3\\ôªÐ¶','Y<›Ôª_åBá\"Á¦Ö³Dv.ÿ•0f‰àÉr®«ˆ\\','',0,'?'),('/Fkï,ê|5	¬ÒÈµÈ','wp-content/plugins/instagram-feed/css/sb-instagram-2-2.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿúu@÷mðÎ¥N–{','/É°ž–¸òî\n½6Cx9ÝrnJeúIvŸE¨ ž','',0,'?'),('/hèae±<öCÉcÊ«Ì¢','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_it.js',0,'×Åc\Z – 8r“÷Rª','×Åc\Z – 8r“÷Rª','P¤>ÀS†ÒWù2uãrEþ£m%n\0±ÍS¦}·JÑ.‚','',0,'?'),('/pjã-4lõ÷ïV4\Z›ê','wp-content/themes/Divi/includes/builder/module/settings/migration/BackgroundGradientStops.php',0,'Ü	ï ý‚:ÑAÑ/¥‰f¸','Ü	ï ý‚:ÑAÑ/¥‰f¸','¶j*ê…ÇGó8\n^Õn\'4JÂTÆ×›¯H—fkd•ý}','',0,'?'),('/uÂ%Å@v§!\"ÜÞ”áØ','wp-content/themes/Divi/includes/builder/module/helpers/MultiValue.php',0,']œÀ‰®ËüŽï‡PÖî',']œÀ‰®ËüŽï‡PÖî','äÿ™ð×BX7îì>µ¾q¥‹‹ÉñAŠÖä\Za½÷…!','',0,'?'),('/‹DÚc¸‡lõÓÞÜ','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','í1HE~oIýË™‘ó','Cá#r•Uê07©µ¹ä>{37L¼§á1ñÐs˜','',0,'?'),('/›¿21˜µ¥ýŒ¥UÒs','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-image-carousel-preview.php',0,'W\'V+?Ôù{Í£#§£”¢','W\'V+?Ôù{Í£#§£”¢','ÑQº-‘í\"²»®T†Á¼J>Þ«Dh€ÓN\'ä­E	\0','',0,'?'),('/œü°[H3}Ô[ªFì¾(’','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaFormatter.php',0,'ÎS¢¾5Â»¼ð9äö','ÎS¢¾5Â»¼ð9äö','ùZ@±ªè[•÷¯	8Æ‚§>•;Œ\'Š+N‹Ã“','',0,'?'),('/±y:µLÑ9l\'˜ž6¦','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce-small.svg',0,'¢¡÷2Ì4vLhNÕ!Æó2|','¢¡÷2Ì4vLhNÕ!Æó2|','¯ÂË3iA(Ö­æpíç–GDŽÿÚ”îð´÷£ïÁ','',0,'?'),('/²þ}ã¦¿Lú;?Êw\\','wp-includes/Requests/Exception/HTTP/401.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.šÐoß‡XšNºžìR¿','YV$‰óÄÿ/ï¥Ÿ@=²÷…Ãî»V-½Ødc°','',0,'?'),('/»s»µC4Œ˜àÖÀ€ž','wp-admin/network/setup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	w­ç˜¨ºTÖA;ì}Ad','‘å¡éŸŒóœž÷\'¶MNò+ËÆºÀRÀÌ¿óg','',0,'?'),('/¾#ê»}ýÚ·jÑà½Ü ô','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/ConfigLoaderInterface.php',0,'+äŸ	qL±+®S˜m','+äŸ	qL±+®S˜m','h¸\0·wgøóA[‘Y öz?ôö««¹y!åÉ³¥—~s','',0,'?'),('/Ãs€—¢êNF¤>ð¸¢6Ú','wp-content/plugins/contact-form-7/includes/css/styles-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':àEÀ’ü1ÓX_çùuA-','_ëM\'÷:#iLHuwA‹{•…í‡ÇÉþÌ @çªÿG','',0,'?'),('/Ø®x}éªö¶X-`Ñ.¢','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/diagonal-bars-2.php',0,'ioÎÊÞd¤˜—‚‘„¡M','ioÎÊÞd¤˜—‚‘„¡M','~ƒá¿²ƒÜjq±ù*ÞïòÖËŽrÌÒðÑÑ','',0,'?'),('/Ú`e<+# A±×ÝU','wp-content/themes/Divi/includes/builder/module/field/MaxWidth.php',0,'™¬ˆ»\reöYqºù©','™¬ˆ»\reöYqºù©','Š‘ÔÖëaì­å4Qƒñ·áê&/ðž*dB\Z~','',0,'?'),('/à¶áúÐdQ}>«&«kµ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp224k1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Äba•cá¤Æ×ûõ£ZÝ','ßE=Ô7l4’âÙO	wrcªì²@õLæl5','',0,'?'),('/èQý(¯BÌ‹†½´­]¥','wp-content/themes/Divi/includes/builder/plugin-compat/amazon-s3-and-cloudfront.php',0,'»!áŸAžÞ£½.UÆÏ]*‚','»!áŸAžÞ£½.UÆÏ]*‚','F7\0W4\0ý\0#ñPnãÑ´FxSƒ€NÑzÜ2(w”ŸÈ&2','',0,'?'),('/é¹ ìÄïÎ°1Êiw‡§','wp-includes/images/uploader-icons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­Áç°&-€äO¢‡Ã•Ë~','”†¤rë\0‡·Îè\'_>…ñ6çÆQW¼Œ4Ú R®‰','',0,'?'),('/ðøèf¹‰P¬j>Xª¿','wp-includes/sitemaps/class-wp-sitemaps-renderer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V}dƒƒT³Ü§§C\"Âº',':öiÎëKšå,ðc}i1Äd•ä4lÌc©2Å’ê¶2','',0,'?'),('/÷¡õâé5SQUÛ¶v+Ô','wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\niÓÕÞRè7 \"—ÃjúO','DQÁI!c‚ÌšŸ d’”-&˜eó]BÃþš„7','',0,'?'),('/ÿm>ÄßÆI#v¼n®Åk','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/AbstractJsonExceptionParser.php',0,'üÿR@={¯}QîVË{&\r','üÿR@={¯}QîVË{&\r','Ù0Éîá·ûü5ågÀü=Oeâœæ’°Aê§AÄò$ÃÐ','',0,'?'),('0\0ÂµƒG\\®{ÍŒ¤Ú”\\','wp-content/themes/Divi/includes/builder/module/settings/migration/ShopOrderByDefault.php',0,'ˆ¹5ËP´ÿ&mÓ”>ahÂ','ˆ¹5ËP´ÿ&mÓ”>ahÂ','t!¨û©^ú•vƒi»@`¤)#&RÚHý','',0,'?'),('0|q²ÚîÝÿ‹Hha','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hy.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï\\ß<ÝajéiERÑ™','/íE‹Xn–©öŸÔ¡FžÃÍ‹×i¿·qS\"A9Ónð','',0,'?'),('0%v³Û+­ BÉŒ’á','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/FromConfigInterface.php',0,'¢>bY	PˆHV’Çó','¢>bY	PˆHV’Çó','cíÏÌâ†@ÀÃ$ 7×išhk©ÄŸ\ZVÔõuI','',0,'?'),('0%£…qX›åØY´\r&:','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_cs.js',0,'‘iW\rÈ¨~å†&Ég·•','‘iW\rÈ¨~å†&Ég·•','4’Ùì_\'ú3_P™gqü¾,-îˆÖ;8ô4án9aÝ','',0,'?'),('0&€Ý(ÒTµí¸°¯h¬ª¨','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/HttpBackoffStrategy.php',0,'DC¯ö™iun5€±50g','DC¯ö™iun5€±50g','d.³úÒ¹Ü4þø?ë-Í¸e8ˆôÍQþÓ¤áŒ¦Ø\"','',0,'?'),('0-I•Ó.´Ï¹*4öäVÊ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/log/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZtbrýyI7¾9J¶‰2~','ÚK‹–‘Ô¼Åi€E©½l¶1³9GR¾¬¥MóCÞ','',0,'?'),('043p£Ú2ïP>âÒ¤ñ>','wp-content/plugins/contact-form-7/includes/form-tag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘X±–´ÙT!p’ô\"R1›®','Zö7Î$Éy¾ûÀJ?áð+ßÇE¾Eû¯9€wgÁ','',0,'?'),('06<Ú1vzáSw½f-£y','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/admin_wrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼nêúBÑ´ä_4¥Z%vª—','R™C[”EÁ[‹ìxÆ:ê	Â îàùr0ýbõV','',0,'?'),('0<’ÎÅÈÿlÚ¿þöJ­â','wp-includes/js/wp-backbone.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ò…Kµ/¥Œþäâ´7ÏÅôb','¥Öæ9J7„AˆŒèGµþ’uq!@/nS]ù<o¸eÞ}Æ','',0,'?'),('0=öLÆ…~.WX¶Yëÿ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Filters/RetryPolicy.php',0,'ÍL|\\ ß|ÆTbôÍ','ÍL|\\ ß|ÆTbôÍ','ˆþŽ{ã-¶\Z 1k^Hî‡7¼?¸\Z5@%ø/EqÍ','',0,'?'),('0]qK\'ûf˜xÁ»Ïã¨','wp-includes/js/tinymce/plugins/compat3x/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L’{ì›Åpê¸×¶ÜÒ ','ŸÊmöæ¾‘È[ÒS3ÃÝ\'øJÓ*ÕåStsÄjÛÖç','',0,'?'),('0jïVÆ½Éf:Š5†ç`•\\','wp-includes/js/customize-selective-refresh.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E¨G«åŸ³6ã0âbÉ','G’”Ëi˜AáøŒw_“PgÙ9‘™ ãOÉ“ÌáM','',0,'?'),('0rØ@\r0`í<È‹ø&’','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<xzÚ¹$Éæ®N›ÞKÜÜÅ','-”Àf~.)MÞ–¹4û9´ý³Ø=¨:a¤“{K','',0,'?'),('0t÷¿È¾ÝŸŽÚõ‹\Z','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Http/Batch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i¥òRJÿ‡àšÛ´$^ô”','Mýc¤ýY•Ë=èn;v 38px/c-³ƒœ»Ó [','',0,'?'),('0xßhý×Í­K”ü3ù÷T','wp-includes/class-wp-fatal-error-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßtGM[Á’@Ì»ü”/f','Éå°5Û$èz@½RÇn›cdÊ™û¢§w€Û','',0,'?'),('0ƒ¹ÖóaÍOµZI|Ié','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðW—HY ñ®Â²·‰','zI]Š_ŒÇ²”¦!ì®bÑˆ×6üdìuYÙ3','',0,'?'),('0†wu\0Gö$Ê°x0–±','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Tests/ContainerAwareEventDispatcherTest.php',0,'ÞåOŸ(FØÙ3ÖÒ(\"Žp','ÞåOŸ(FØÙ3ÖÒ(\"Žp','Œ’)üžB]¯Î¨c¡ánxäŠÃdAõ¤ÐOzÂU’,ÇÙ','',0,'?'),('0“ŸÅk¿ ?ÞžÔÛî','wp-includes/js/jquery/ui/effect-scale.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Ê¡0’Ó\\K4\'˜Âtä','Ò°¼-yßŽf+¬)‘Rºëõq[t¨QJ¨ÿZ ?','',0,'?'),('0œ÷<Kã}ŸªŒ×‡','wp-includes/blocks/image/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Û4Ñü÷ÚÌó‘ðhÙa','`Æ›\"Gj¾s-Ñ]±5—løYYF³f§ëÀ§ùU|VÃ','',0,'?'),('0£ÇÕC7D5Íåg°‘ÄÂ','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/CompilerJarFilter.php',0,'.ïíù%Ý8R±­a˜YÍŒ','.ïíù%Ý8R±­a˜YÍŒ','•«dM\"Bæ]_\0zø2kà¶NÐ\rZ™2» s‰ÉÛyÑ','',0,'?'),('0¤ç€ÅE\00Œ‚XÏH','wp-includes/js/colorpicker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m{ª†>lÉZÂÕ¯šú','ËÝ\'ñÛšécè¦¯z+å*âèS8\"‚Ã [ðê·²;»','',0,'?'),('0®3ª„VAt¨üÖx–]','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ExponentialBackoffStrategy.php',0,'œbt­,pÄ7bTý´','œbt­,pÄ7bTý´',';4šœ’èàGI÷7Þð—CÈî-À–R}ãø29','',0,'?'),('0³\rP22c Ú®nÉ_','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/EmailExportRecipients.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m$\r±‹Q@Q\r\'×«¼\n','C«º¢l‚ÄÌFF ïëa¯\ræDsÁ%wZöŸ@','',0,'?'),('0³\rbDGüD|—G|¸ƒ','wp-content/plugins/wp-mail-smtp/src/Admin/Pages/LogsTab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îúªð5Áî“<€Oç¨èèn','Ô\nû“pHaüe\rÊ¿¥¥™ë\\!\'tAÞAÏcí','',0,'?'),('0Ä,ñ«™<R’Yl1„Î','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/advlist/plugin.min.js',0,'øq ŒNt±\"pÖ,ÒÕ','øq ŒNt±\"pÖ,ÒÕ',';PoœmÒbõo“»ófŸýñ=¤\rsŒ—@€ Ñë»ÓÉâ','',0,'?'),('0ÅÜÎÉ.¿/	G€ñAY`','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/noneditable/plugin.min.js',0,'37ÈÜïŸ•ÿ‰I1hâÿT','37ÈÜïŸ•ÿ‰I1hâÿT','ã°ÝrG…áÅG sÌæ×·M˜;!½Œ»ÂQˆµä','',0,'?'),('0ÐU~FvÁ*v˜…4/%sr','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/GetContainerACLResult.php',0,'_–Ó¬è,n\0•0>ÊñóÖ','_–Ó¬è,n\0•0>ÊñóÖ','q@Q¶ Ã“½+EÝ;gß»—Ã*‡é@—ÎÄß‹','',0,'?'),('0ÐdÛ¦ZPÉø2ñ¾oëˆ','wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øÕ$ŠÑä6¼\"ñ','·œ^h\'z”[—ájù—ÓŠ%\ZpÃ£ŽÊj.ÖS','',0,'?'),('0Ù½Éì¸M}rŒßv²†‚','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistb233.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žµµy3~ÿPj<c«<æ','4fÂ€—’(¥`Ó ¦\n-ÿžR¢ÊCZ#05iýä','',0,'?'),('0Û#Nn#äíS\"i\\5','wp-content/plugins/fusion-builder/inc/templates/modal.php',0,'½Æ›ä,s+ø-wlÍLa}ð','½Æ›ä,s+ø-wlÍLa}ð','ÚilýáI½–F¿½À±ž	…W˜þ.ÅL»²yTO','',0,'?'),('0Þ9·1®÷/Ãwc5b©v¯','wp-content/plugins/fusion-builder/inc/templates/options/checkbox_button_set.php',0,'¤;fx‚Oß¢RRÙ² I','¤;fx‚Oß¢RRÙ² I','ÿ¥Óµ4˜·grX½jµåw_$¨þC\nÝ$P¸r›è','',0,'?'),('0ìðø\0¾Ã´ÀùmB','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/PageWriteOption.php',0,'ñKÝcî4¡ŽÙ¬\nTõe÷','ñKÝcî4¡ŽÙ¬\nTõe÷','îrñ˜ûžIEÈæœ8a&¥2ì­ú‚EŠQ¸÷œ¢','',0,'?'),('0ñ½Ô‚ë‚o¨{$¸T4','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/es.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','),¸ÏEÓ5S‚ÇŸ','ÂOhzŽú—¨n\";ž\'÷÷	I™°8£O@`öCÞ1','',0,'?'),('0òÇ”@ç´es¤ä.Z','wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',0,'LóÕ%¾ÚR}?ŽE¥ú','LóÕ%¾ÚR}?ŽE¥ú','\0Ë:oa«9îÓ¹Øÿ<oU©Ô©f©œUí>.g¾3!','',0,'?'),('0ôGÀ+ïœSñÑŠpŽ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ðåjn/;õž#¨Á«\0×4','©¹ïÔ¸Uý,:Ûw¦ƒb}·Ä%jÙä÷í+­','',0,'?'),('0ûÁï&ƒžóMºõUe2j','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›Ÿé\0Vp@,¿‚ñp','møÑ¾OÙ\'sJµ\"Ê&…u7‘î‡”ã»þJÎ´ÆÏ','',0,'?'),('0þÈ$X8F¡nÅƒkýîÛ','wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Õ„Ü;vDù$:ä~ÆŒÆ—','îªà\rØá|+ÃÙÇmAÞÓIÀ¥îO<(Ä÷ÔN½\rÏg','',0,'?'),('1<U¡ý\\¨Àã‰³uÿ','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Mirror.php',0,'bƒ]åìýß¸A<Ý','bƒ]åìýß¸A<Ý','Hõ8I&„^6ŒnRð\"û“Š…;ž¡Ó½âÔÙmÛ.','',0,'?'),('1\n™‡ÀÃÈòcìúÖã±\'','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/admin.less',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒK´WtÛ ­©Â2\Z','Ì44)¾\\\"ì!ëµ&Íà<Bö¤ãÝ)1‡R´îW½†','',0,'?'),('1’_’\'Qs©’½Ÿ08@','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidLocationConstraintException.php',0,'d›¹ù)éL2*þifã½','d›¹ù)éL2*þifã½','&væ­èºIÓR>äå˜ÓµL¾¼H$µ/n)N>æ','',0,'?'),('1\'åÞ‰³ƒðô\"àÈ>ûÀ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/select/field_select.php',0,':üu\"™7Y$P–vø„\0',':üu\"™7Y$P–vø„\0','t¼b<Ø÷¸£8Øq—³]H‡jïÿt©C.Åy','',0,'?'),('1*»”–Þ™\\EDä_','wp-content/plugins/worker/src/MWP/Event/MasterRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùËÞB2ÝF5_IØº¥’','U«{dæþ€˜ýÖÂXCzsV˜<ìÞ  —Pcç','',0,'?'),('1-Àÿõîø×g97¹å×','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P°BÁ¢ß.î×}ÏF¬','‘¼cÞ(±Œ¢¿k1ž†íáúî•2‚Qw4ûÊ?0','',0,'?'),('131ÒíWŸììLÇª','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/UriTemplate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ø¢üÑ¦3_™š¿»K›','5ú(~k»’ÕÀgýþÙ&ó`«VG5¸“9\\ÍÃÖžÃ','',0,'?'),('1?oœxøç<È?éÍâ6','wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?v@½Y aØpv¹²Š','pªšæZÊ‡Oä¦FïMáß4ÆV92êQP¶þ\0ñë¢íØ','',0,'?'),('1DYJ¼ðôy?“zJ¯l','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YWAJ+ÒW’¡^…','SNüÃƒ)ÂOßt_j¯…ó?Õã\"3þÅ%°±‹E','',0,'?'),('1D¹\ZŠŒu¸#•O«','wp-content/plugins/updraftplus/includes/Google/Logger/Null.php',0,'ÇíigÈ+ 3ªû¹­ô','ÇíigÈ+ 3ªû¹­ô','˜ù\'¬ëhÈN,—€€õìÓ^12ƒ;¬#(ÿZ‘\'ï','',0,'?'),('1L7VaG³¾V#Ý£8_','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!ˆçpŸ¸ÞwÀ*Ù@ž','kõ¾hö5½…Yö›ž±~™\0\'~y#á¾UÞ','',0,'?'),('1Nø©ó|eÜ“ŸÃ¸2R4*','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchCORSConfigurationException.php',0,'xªD3‘÷Ký402fÈ•›','xªD3‘÷Ký402fÈ•›','Ó¦}ÞÝdÄà3¿22†z·wË;®\"7Ñ\nOpJF','',0,'?'),('1`GÞ÷I#íÊI)¨ Ýï¶','wp-content/plugins/worker/src/MWP/Stream/Append.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÏæIi8÷â;@\nûY7äk','âMi€Ö¾¨Ô™#—\\7hó£yÒó•åÉñìè\0ž/','',0,'?'),('1l`ûPqXMvhÄõ','wp-content/themes/Divi/includes/builder/module/NumberCounter.php',0,'_ñIWâ¸IÛ!éÇgT','_ñIWâ¸IÛ!éÇgT','˜$Çôžh3Wn®(]E‘Ë”Lã”È‘bJlÇx`Å','',0,'?'),('1s¸)6ªÓ¶™•¯C§…Î—','wp-admin/user/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èT^Ù1îêãàøAˆ|','Yàã%Õ´9‹àÝN ×?\\v\\ažMþ¦´~Ý‹','',0,'?'),('1yF{ê1½õLXxòÛÉ•µ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-php72/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eè\0q,Ð ¨Åžb~LD','û²{)ÿ)»x£zÖ–¾êdLvôP\"\ržüFç±*âWe','',0,'?'),('1Ž<áÒ)§©¨0æHãø','wp-content/plugins/instagram-feed/css/sb-instagram-admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£ßZÍ½\n²p˜®Ú5\\ÁÐ','nÖ¦Œyg¨ÈÎ¥¾´÷Íâ*Ý14j4A/ë4','',0,'?'),('1žÕÛ²\0×“Z¡z{±ð','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/CredentialsInterface.php',0,'“éëéÂ,8.¥6•—…ƒ','“éëéÂ,8.¥6•—…ƒ','GgÊîÙ^n|*0¯>Ñ—û×S„/*äHPrGÕòÔš','',0,'?'),('1¤,[ØŒØ»]K¼Ÿ»=','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/not_empty/validation_not_empty.php',0,'¯KZÖ“Ee>sÃ´','¯KZÖ“Ee>sÃ´','ÃØ.O@vT‹ªEMJ“½\Zá&G†‹˜(ÐþÙ','',0,'?'),('1°ˆÎ*àª–xáŸ»þÌÐ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendTestEmail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å™ùÆ’†êÈ8r›Ëÿù','”ËkÑÏ…n#ŠvBFÁÄß®ðÆ9ãYò–X«ù”CÉv†','',0,'?'),('1²ÅÌpaÒ`H0ß¢ìe','wp-includes/js/dist/url.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KÊôé•GÿßïZ','¬n¥bî\0%P9£Üˆ–Hu‡MÇÖë·>¦ 1±e','',0,'?'),('1ÀXºŸœ^ÝÞ®Þ»å½\'','wp-content/themes/Divi/core/code-snippets/app/store/code-snippets-library/factories.js',0,'šCýóî\ZÝ‹Vz›','šCýóî\ZÝ‹Vz›','ña~¤uXã[K>Að\"[ñœNV[SY¤†­ä(e>rÄ5','',0,'?'),('1Ð‘YéãÂ4I^pí','wp-includes/sodium_compat/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨`q8²2øG<A9\ZQñ',']æT=ò…76uN&=8W<á%ŸÄÀâö’ï','',0,'?'),('1ÜEfQ¤v#)ó\nÙ0EkQ','wp-admin/images/media-button-image.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øÌó¨¶øm¾	\'ŠèæA','iÄ·±ãz[º¨ÿÄ/\"Ì X“éÛ{Üoýî—:†³','',0,'?'),('1áEü¶ñì|†\"Â)ÉÆE','wp-content/themes/Divi/includes/builder/plugin-compat/wp-rocket.php',0,'Î<_í‰E²Â‰+ÅÍ','Î<_í‰E²Â‰+ÅÍ','¹/’Inž ì†ÅNèÖ2\"˜IÛÜ@æ4r@Åë¨Ìƒ9','',0,'?'),('1÷ðö\r\0^*Ë.ºn/9','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/LinearBackoffStrategy.php',0,'ù\Z3Šú¢ØÅ]^\0Îsžm','ù\Z3Šú¢ØÅ]^\0Îsžm','	«ƒj„_ö¨«°\nÖÊV;t£\\¶p‡â¹À8\nä','',0,'?'),('1øª\\Jvå}¹óBã‡pâ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/XmlResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Âžh#tÙé6úü³ÝñE','iy`çF.+¤¡ç=02O†•q‹U9\rG\0>œmV','',0,'?'),('1ùÎXŠ/²t60^Ò€!Ü7','wp-includes/js/comment-reply.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';YÃ³8y×F0‰ìP^','æoäî%cÜ«Ô•-íÑúztš¾à™‰Qs–Ô<{ ','',0,'?'),('1ý\\IŽ·èS/‘qÛV‰e','wp-content/plugins/really-simple-ssl/uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žx1æmÄN(ëø@~ß¢ù','­”^Ü\0\0•UÓ¶s3ÁàœÛÂ®~­¤ƒt‹)O÷Ði','',0,'?'),('2EèEˆ€ç_©þÜfAÆ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/FetchAuthTokenInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿¦ê¹k%ª«IQý8—','j»‹Œ\ZJ¯Ð!eolxÞó´DÌÊ2þ€\n+\r‡x','',0,'?'),('2JÙy*ªmí±ç½ø]W','wp-includes/js/dist/a11y.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D5*dQ&8W.ú·²I\0','ycèEŽ`ùŒw}Ý%ç£4sugÜMÄ¾~\r˜I—Ë‘ \Z','',0,'?'),('2¾G/¹ŒÒYÇÔOµ','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/scallops.php',0,'ptåûp†ôPœ×sÖ8','ptåûp†ôPœ×sÖ8','ª%ËŽ·ÏÉwCo“9 ‘i²‹{¤K\rYˆŸx¼Üq','',0,'?'),('2©ªWEb²øeYî‚Yi','wp-content/plugins/updraftplus/includes/Google/IO/Stream.php',0,'†n\\š‹¿<˜@Þï ','†n\\š‹¿<˜@Þï ','Ôg®¿•æehWÈ•Äœw}/S²ÿP¯äõÄºuy!','',0,'?'),('2b UŒ·\0ÎÔsõpd0ß','wp-includes/js/clipboard.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|äaöd]‡.;óÆW;','zD‡!XùçsçÖ)Ø‘€ƒ‡3ðl,ºšläQõCJrU','',0,'?'),('2-Û@­ßõ¼6LÌ^ø7’‚','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/EntityAlreadyExistsException.php',0,'}þFûe¹(ëÙû,÷S8Ì','}þFûe¹(ëÙû,÷S8Ì',']Ù?xK1§UÌq¤\0n¡Ã KM=­›¸yI?ãf','',0,'?'),('23³ˆQôÂ¹Û¿-4á','wp-content/plugins/updraftplus/includes/Google/Auth/AppIdentity.php',0,'e\n«	jÀwÕ¥MÒ0˜’¼','e\n«	jÀwÕ¥MÒ0˜’¼','<ÓÒLìÑ3ojãPÌ²Æ³û/Ê`P¯@uÏ$ïOC(¹–','',0,'?'),('25 3k‚®‹µÖËŽô	','wp-content/plugins/updraftplus/includes/updraftplus-clone.php',0,'Î²Ø°’<tEÜåSÚrÁ9','Î²Ø°’<tEÜåSÚrÁ9','Áí@XÃºÓ]õ\\êÐK!¡?4n˜û±1\\1ÐÛ÷Š','',0,'?'),('28\Zš|°D: K;Ú=¸å³','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Exception/RateLimitReached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ó»ÒÐ¹šECc0€n·B','ÈP¬’j{I«c”¾štúN,èý›Õ‰ªÃÖƒÜe¥¡','',0,'?'),('2:]\Zø<AtbÉ\0µŽ,','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseCreateError.php',0,'Àš	àt…ï2nôpÜýU^','Àš	àt…ï2nôpÜýU^','ÈRÃ¹;@0ÒZ`÷$\\X7±Ô­È…N{Í»Ã`·­	ßà','',0,'?'),('2@Üjåj\0¡kÓ²”¡Ó˜','wp-admin/includes/template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	·APZ¿áÐ²!¢þYxš½','áïï´Tâ8“œiÊ…ì¼Ì{`brÂÀ8£€äO\'óë','',0,'?'),('2D›Š%‚Jž£ß?­Ñ\Z','wp-includes/js/dist/wordcount.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ž{È¦Ar`Ê{§´FŠFº¾','o¸VFèp¢Û7èh`êèž\"Ç—ãj™´Eûª=ñ','',0,'?'),('2O&+wÆ•$Èäxs¯','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSsoToken.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™5„¿šeàû½S\\P','©‰Å´\"Öt(ÿ	]¥FwKAè›÷‰ì¶\nð\"ù®','',0,'?'),('2QÂ²òþ‹yôÅCVÁù','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Plus.php',0,'Ê{Ä„o¹“Æ^5Øôâ','Ê{Ä„o¹“Æ^5Øôâ','™È¨)¹¨Á·˜Ç5e\\]•Z€Zœ€qº}ÕkÖ‚WS','',0,'?'),('2R‹‘y‡È¨<\\þ•[#ß','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#wO„D„ñÿ\\‡:Æ…0Û','öB~ð‰ãõÐât„j”*ª|73P±@8/dˆ‚fÕ6','',0,'?'),('2Sg.îSd?]6UÛd§','wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/InvalidArgumentException.php',0,'}/ÑX5$×9ÿñ/Þe','}/ÑX5$×9ÿñ/Þe',';ªþ5b°½GìS£¦B:e}¢èìÑÖ!q|zÒ6ô¿','',0,'?'),('2Y‹ ì¾oq&®Zçù¬','wp-includes/class-wp-block.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øÝ•§èFÔ¯’8f‹6èÌ','ÐÎõ°äÃy{²»tl+RJÉó¥Nëâ\nj¢R','',0,'?'),('2gló¸bCåd¾M`Hšü','wp-includes/css/dist/block-library/reset.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í¤;óÜÀ¹a¹ˆÝ\n¥ŠeQ','\'¢–lýCPh2¡ßC :ñ\ríä}/½tpÂ8,™1','',0,'?'),('2jÿL,ÃÙÞW\rº®W$›é','wp-admin/css/colors/sunrise/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öå™Ir¹~ÏÙéõó|Ü','U:1\0½^…ËpÞ‰âËŒ“\r|FºËtæ‡³T„#µ','',0,'?'),('2r}ÜVáÄ¥$^¥‹‰n/','wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h…^n=(Š±&¡ñÝ‚¶N&','S²óDIBÿzÑ_-?(YÎãpE¥yûÆ¹A¡','',0,'?'),('2…Â¿¹¦„rñŒgÕ','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Tests/Debug/TraceableEventDispatcherTest.php',0,'Â!ºÍ«NÏÒŽ…%ˆ¥','Â!ºÍ«NÏÒŽ…%ˆ¥','Û§þáBÄÎMnà \0C,‹±†}Ó&¥ö	gu5Ü','',0,'?'),('2ˆ»Ð!C|è²R4µØ¶¶J','wp-includes/blocks/paragraph/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡á%±)vÂÇõµk \0»¬','H–÷ŒÐº_W¶\Z#­ ‘Kð“ß‚ãt]VL¾¤õIÊª','',0,'?'),('2§CÁfÔO\"yô«0|½µ','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php',0,'<.cs«\rä¾Ãà—QeeI','<.cs«\rä¾Ãà—QeeI','ÒqkÈÀoÂ¶}vØûn¬réšAŒ†RKû“','',0,'?'),('2¨¬ÏÅ=[uØä˜¼~','wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/ChecksumTables.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[‚äjÄ‚\\=1Äèý¹¡Ü+','CØkþ>Óÿ\\l0òäáši]%ô¥¥à­Ø>ËaGÖ','',0,'?'),('2ª|¸Î¢(á»§tŒðT©é','wp-admin/privacy-policy-guide.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•‡±¢±žK8Û¨¬¾)','.„%§­–ÕÌ]:/$zÔ¢Õ‹S˜_÷)kER’å“','',0,'?'),('2¯åãº¨a|F–l3]ö','wp-includes/customize/class-wp-customize-new-menu-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ	™sL2/€B¤Á–¥£','H\'Ûs¨Ó½…ŠåãIØ$ºèÓ¦ðÍ¤X!š','',0,'?'),('2²>¿ÃÂyÐˆàÝhgÿ ','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-non-responsive.js',0,'Ñ!Ê \Z#dAäq²k¿','Ñ!Ê \Z#dAäq²k¿','8¥r!#âÍö‡!Ç-özÔTrè÷Þó¥Ž•xÇV','',0,'?'),('2´v–­\'³Í9\rÃèz','wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p¢ÔbDî@pýG+×±','*DZÍ>ùBgñ&Y‰Yˆ›þ„Žâ¨4(<¨/','',0,'?'),('2Ä£­ˆ_½Dã”xˆ“¤','wp-content/plugins/wordfence/views/common/block-navigation-option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O³ÂøýÎª~˜}t.ïK','MªN„³ë¦›¥š‘F`\r9÷ö Ó«ërPô²,Q','',0,'?'),('2ÛÂZsƒŒ+z•ð','wp-includes/css/dist/block-directory/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#ðíÜ•OÐD~ær0M\0m}','Msáíìw	oÝd`ä±/²<ª•1ãõ@æÕ\'}²ÿ','',0,'?'),('2ä† =5äa~â—+,¶\'j','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/User.php',0,'#7î@>þ÷¬\"¢ßB* ','#7î@>þ÷¬\"¢ßB* ','[ýÝ6-ßÇ¶S.Ó8°:ØþÓ’}¸:—Í³¬,','',0,'?'),('2é½±ÖxŸè,Æ­ƒ®kR','wp-content/themes/Divi/includes/builder/plugin-compat/relevanssi.php',0,'ò!\rl1!Lú©††Lî','ò!\rl1!Lú©††Lî','™”û2Š×?‡’LPÊ<š‚©BÀhŠdœ&¼êúhá','',0,'?'),('2ê0mKš:rÂ²\\0\nBÙ','wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x—£±9/½¢Z“hò6¹\n','óþJ<<¢ö¾x?°#òþoü²†º‚Jn8²:jù„','',0,'?'),('2ðì^(ÁúÊ­à-^x½¯','wp-includes/SimplePie/Enclosure.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­ç(2ROf;VkjÑû','ö‰þ¾ÄøîÞ`à.Û¾H–,Ñx1õÀð8q?–Lå}]','',0,'?'),('2ösÕUe4MFã{+Ý','wp-content/plugins/wp-mail-smtp/src/Providers/AuthInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡W\Z„ÉÚXbŽVNuð','•Ùêé÷|Ëvü§ž0l$¤Ó6‡wÚ÷âÆ€Y&x’‡Eñ','',0,'?'),('2ø	Û\'ªÂHg¶ýÚ§+j','wp-content/plugins/fusion-core/shortcodes/previews/fusion-privacy-preview.php',0,'ß\Zsçê¬£é–,Õ2ÅeÔ','ß\Zsçê¬£é–,Õ2ÅeÔ','LyŒéƒLz¤g1\n8à<ý¤,û˜ú´°ÛÖW+P‚','',0,'?'),('3ÒíGS˜Q´šÇaê~*','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qä3Å3œ¦ÄŽ–Ã¯Â','ÚâÛò\0ŠŸ”¥²|XiÂ{~Ÿ§\'õ…é3´U','',0,'?'),('3€DÚ@XÖqñ®¼µa','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/AccountProblemException.php',0,'NjO™f=$º=&Æš','NjO™f=$º=&Æš','þHA¼TÔ¢ŸýÑO\0^<C brÞQuš+','',0,'?'),('3&UÁ¬_YPƒ÷ô\rCLï','wp-content/plugins/worker/src/PHPSecLib/File/ASN1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~ñDsÎøûÂÄI½¥–’Ùx','X$Ç@jÆ9¸…²»	\ní\0¥T‚ÈÛ~Á’Ò­xtÏ','',0,'?'),('3+zÀÿ.†±‚6Q~]y[','wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß#ÀR?¸\"ô»`Ü$`','!	ÅnžÂ‚óÅ›U7B©ê5grï…	1å*;RÐ','',0,'?'),('3E¬·UÀ¸£¿\"Lw\r™','wp-content/plugins/updraftplus/templates/wp-admin/notices/thanks-for-using-main-dash.php',0,'×ì‰‹6gÛÑ!D‡22h','×ì‰‹6gÛÑ!D‡22h','¨–úDS´­ï¶wíÉ=Gð\0Rñ–\01<Yá‹¶*Ö³','',0,'?'),('3G(F;ÜÝ°stíy†õæ','wp-content/plugins/updraftplus/templates/wp-admin/settings/updraftcentral-connect.php',0,'Í°œË±_”¸_ÁŸ)ÁÍ','Í°œË±_”¸_ÁŸ)ÁÍ','‹÷÷\"P9>g²Ms/0*À\"’ü?¦ñ.²ñ¢kµPt','',0,'?'),('3OW–†c‡»mXóB$1','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_ActionFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãQpÈ&¢¢ªÀB©Ð¢','MÅ–ô7¾ñ8Gf×•ïfDÉ9±Š)êë¶½fí','',0,'?'),('3QŽHÐi¾ù±žÂ‡Îé','wp-content/plugins/wp-mail-smtp/assets/vue/img/postmark.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÖçŽù®}Z	\nÛT™Xš','Iÿ”×œe\n˜ÈÈ÷©³Ó»Mz\nNm²ÉÏÊ¼Ñ–Ö;','',0,'?'),('3RùŠwÍ@‰V7Ø ','wp-content/updraft/themes-old/twentyseventeen/template-parts/post/content-audio.php',0,'Ò7LxG¾¹Ìt˜èˆîß[z','Ò7LxG¾¹Ìt˜èˆîß[z','ýávöPBSr±Jå¸-3àÇÏÂQ©[Ž¿}«X5}Ïc','',0,'?'),('3U0÷cõOIÖ¢éÖ‘šÅ_','wp-content/plugins/wordfence/css/wf-roboto-font.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸Á]ÕïðOŒuÝµœ','ôŠ+ÅhJ~¿Ê†´ª*éìa* ýâGb67§\r©:±','',0,'?'),('3UFktB‰æjð±MPß','wp-content/plugins/fusion-builder/inc/options/custom_css.php',0,'ÉÑ#jýì—±ÍG+aœo','ÉÑ#jýì—±ÍG+aœo','E\r,ï\"Ÿz<-µO9)Ñ[	·Ñs\nŠçðf‹ ‡í×\0','',0,'?'),('3]7ÊÕõ?AÉÖéB¤È','wp-content/themes/Divi/includes/builder/module/helpers/Overflow.php',0,'Øqìœ>¡psô{#Òq\"','Øqìœ>¡psô{#Òq\"','Öeˆ€:*”ÖC7|¤’®k¤Ý<`x83ˆ5ÿÑ','',0,'?'),('3c:Ò³Ak€L#QŠæi|','wp-content/themes/Divi/core/components/api/spam/Provider.php',0,'3ôÚäµú“š\'m{˜','3ôÚäµú“š\'m{˜','@YtfAXÍåL)AŒDIµG]è¬JüÎs\"~÷4Ý“','',0,'?'),('3hè¦Â\"I+[§E','wp-includes/js/clipboard.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G]»’n¥ma‰ÐsÄ«Ò','¾™o~ÃS«$ÃÀ	LØÆÞ®\'¦2¦¯ õlžr','',0,'?'),('3k­¨oW‘5	k[mq','wp-admin/includes/continents-cities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pg\Z*­§šëZ°\0H4|‰','¢‹Ír}\né‘w‹uÔZ–2õ}KXÁ“ä/”î±¾´','',0,'?'),('3pƒ½ã\\Â8ŽlD¦q','wp-includes/sodium_compat/namespaced/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ó*·kLwB£ædÝ=','ec[d”M?HÓ|ÞKYž\04‹°@˜ QAŒ›:FF ï','',0,'?'),('3y0K’„ b€½£xu„','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/FlushingBatch.php',0,'\nlÐÓÃÖÓÃíÓ)sîc','\nlÐÓÃÖÓÃíÓ)sîc','}DeÈ\'/ÆÌùÇ\"—XM/…xx%kZàÛ“€áX ‚‹','',0,'?'),('3z\'‚Oï“á§vþJ&ÿó ','wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6¹z# Œ ŒBtzÖùš','5wm×[EGj\"‘\Z\Z†‡@Â¨,%¤B¹iAnÅñ-þ','',0,'?'),('3›¢JÎ‘Tg›0ëµ\'e','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Common.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`4„ÂÚuB\nEÔ#@ºW',')róxUYJö;hpjH{\\½Ý¼š1\'#Éã s«','',0,'?'),('3œ‹\"„|“M#¹ž¿56À','wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/FetchFiles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mêH&/Š9»‡¶¿Âçˆ','Ÿ–ô`½KQWE\r/,Î\n:79F—˜x×Ÿ@•q	›','',0,'?'),('3 MËôÊµ¡nžðõÉ*','wp-content/plugins/fusion-builder/js/models/model-view-manager.js',0,'[Ð#‘Vo•qØEv','[Ð#‘Vo•qØEv','Ä\n‰ô>”4Ü ¿rý¼i¦ÃZüTÌÅ	f¤ÖK†F','',0,'?'),('3µzˆtá†í®7ºÐSí','wp-content/themes/Divi/includes/builder/module/helpers/Background.php',0,'\0Pu}rxÀcã]_Ó—3Qi','\0Pu}rxÀcã]_Ó—3Qi','Ëî,=“Œ/ÓgÕB\rìOFhºõ¹\rß€‰6zzñSYä','',0,'?'),('3·Ör¸ï3¬¹`ž&¦4','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/ResponseBodyVisitor.php',0,'ú\Z÷J‰@¸M™/­e¦_L','ú\Z÷J‰@¸M™/­e¦_L','¢[w‡ƒ-,‡â=LÄ´ô\0)æØ§{Î–„:ó²¿ôK›','',0,'?'),('3Ó­ëŽPÛ\'M¥v	F‘Ó','wp-content/themes/Divi/includes/builder/compat/early.php',0,'bJ)ûôÁ±™Dôç¾³ZÐ','bJ)ûôÁ±™Dôç¾³ZÐ','I­y¿Ú©p= kê~ºCK‰l–†©~w–Ä(','',0,'?'),('3Ú5SZ;ü×Ž„Ïx%@','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataError.php',0,'>ë”ò‚1}n»afZc´(','>ë”ò‚1}n»afZc´(','ªõÀy&Û<CÒýÖÖ†7bÇ§é½i	…7—*!b','',0,'?'),('3ÛÕé\'º°ÁRKšBfý','wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QO1ÿ/<™>%\"ÚXÜà','†6érŸ*¼IY\0C¬9<ó“©àÿJÚ– J*ÝxD','',0,'?'),('3ÜÕNÏ.“«OS­Ã%Ã','wp-content/plugins/wp-mail-smtp/assets/images/flyout-menu/life-ring.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï	õ?<=21Gò–ÚÔÍ','Pô;ñÜ§¸_u¦¬Ç¨þpÐÅ„BÛ\'×£žbo','',0,'?'),('3ÝZ‰¾Ú$fÎÍ-¥^÷','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Int64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%mÚS»,—»®\\¦','UåØÎ!œ6èç/•UácqáùÃn©Âæ¿@º+€','',0,'?'),('3âÉfQ3àhð5[À£W¹<','wp-includes/Text/Diff/Renderer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ü‡ ßC0µY7OÜ@ÙGS','EWjá+åãµ\\âÝ=Ñð’É}.÷Á1\r´ö|','',0,'?'),('3äj0Ò^Æëu¦rÝ\rÀ','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-blog.js',0,'ì ¾¬_4Œ\0cÅ®t»','ì ¾¬_4Œ\0cÅ®t»','GÓ:2ÕzWºøH€hL2ÂAy¬[jyZ,x>\\öW','',0,'?'),('3åä°Ôà¤”Oì5(ß','wp-includes/theme.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Û¨ÿ8k•ŒñurŒ¾hh','Å2ë¬À§ðÀ]!’4’²:ÏçQêy;8õ mFó£ŒŒò','',0,'?'),('3ï£ng\0¤¿\\\0	ñW','wp-includes/IXR/class-IXR-value.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’fû>¨5lÍøj\0fè','¾?hœåø¬²Í‡ X¯ØUPËO|H$‰1¿¸ž','',0,'?'),('4\0Ët¡W0;lå‰ÒÌàƒ','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/lazysizes.js',0,'BjIëné,/àc–}˜R','BjIëné,/àc–}˜R','0è¸e}É!ÕÎB>ô,;¦r½)bÞ\"CGsì','',0,'?'),('4	[ÙJ•aÛv1\'Á¶á','wp-content/plugins/worker/src/Symfony/Process/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('4\n‘”	m‡]Ä¿±ÐŠŠÌ','wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!ï«ó¼{\\Å däÂãÝ` ','ç•ë³Ç¿\'äÉœ¬LÒª¥B> Ýñ	&-¥{…','',0,'?'),('4œÊù­hÖ|ùv>|ä]','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-progress-preview.php',0,'-j¬\03R­\nzŸ´è‘”D¥','-j¬\03R­\nzŸ´è‘”D¥','C5. OLïJÃÇñc¯p×tz[±M¸¦ÃŒÜiû®ÉŸ','',0,'?'),('4Zó3jê\\µÊ<Ë','wp-content/themes/Divi/includes/builder/frontend-builder/i18n.php',0,'»’Â8â\'„ n™ø©‰^H','»’Â8â\'„ n™ø©‰^H','þÀßÉïI|Á\n&‚í@ÄÞ1D6y: *(QVâ>Ý','',0,'?'),('4×31@¿*rëØÓÃ÷²8','wp-includes/sodium_compat/namespaced/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òÅ›ñLå\\óPÚœÊU','c>Ñ5¨o“»Ž½Ðïð½ƒ°_°T9“L~;²e7Ü','',0,'?'),('4J\0UF½ÂÇÐi,lÙ','wp-content/plugins/fusion-builder/inc/options/lightbox.php',0,'¢.+¿Æ ¯JzX¢RÊ½Ï','¢.+¿Æ ¯JzX¢RÊ½Ï','œÃP4¹)è#ÍÒIéF÷ß£/:å-QO(s³ûÆ\r','',0,'?'),('4(¯[ÈûW’™wÊ6æä','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf1CacheAdapter.php',0,'øÏ*I\\ùVžµø:rdø','øÏ*I\\ùVžµø:rdø','ý!7«8>vžY³‚YÞ^9Nþem4Jß@¸üa—Ü½','',0,'?'),('4(ôGT4ý¡í×Cñ;','wp-content/plugins/contact-form-7-honeypot/readme.txt',0,'‡K„‚2$_‘m¼-g','‡K„‚2$_‘m¼-g',' 1dA½…ÌSÕ!ÕFy×ËªIAËS¶ä”Ý¢æx-','',0,'?'),('48²VtÔºš+^Xô','wp-includes/pomo/mo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!	/·\"ÛµÞ$=³iUŒ','\rhÖsãcÛ6Z$íâÚPÍ¡Ä\r!W%vD¨~ µjÖ','',0,'?'),('4;`ß¯zŽ?	Å{Çž@','wp-content/plugins/wordfence/images/2fa-whole.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üÑhÂ»ñßÞÄ$\ZPfX²','÷ÆªÉØÓåËU[Z~·Ï^Ød\'àXèÙ®ÖÊÛ','',0,'?'),('4AIŽn09ˆ†7c`','wp-includes/js/tinymce/utils/validate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CLÂ1?o+;„øû{Y†','k»HãÆ;Æ\0•kCÔs±	\'KØ#45+eE|žëÜ0','',0,'?'),('4F„Ý	‰ú¿”‹îÿ{€','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetReportsReports.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³HëçN×LVÏgJ\'ë™ù°','ÆoƒûÊˆÒ² [*¦›ë>)|¾!w«–_ÜXô¸','',0,'?'),('4H¢®ÜòšûÁý0O¿Ú','wp-content/updraft/themes-old/twentytwenty/template-parts/modal-search.php',0,'´·¦çÌJl•éé%1s¸','´·¦çÌJl•éé%1s¸','Ÿl?\r›D²(yâ\nâ+N°Í§Þ\nQ *>L|Y²Èl','',0,'?'),('4P\0z¤¾eŠ8›zëB§¤','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/AbstractMessage.php',0,'¶±ªožS’´O¥Š','¶±ªožS’´O¥Š','™ë·•æE8óæÓš¢ŠÂõ%èŒ\0 %8\0_`m¹ët','',0,'?'),('4To®â‚iEøåt‹','wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ös\r>J™»(¡œ€EÍ','ÓK°¦úõ(wœ²B$¦\r¤s«®ì¤‡!üà¨¿¨ËD','',0,'?'),('4aäþ[Iº}çØÜHÿm)','wp-admin/css/deprecated-media.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°M>ƒè_®^¯£’åÓ9F','.ú­*›AU×u0ø	\'§Q„2Ë»¦=ÿx4wáàg','',0,'?'),('4pÙºgv¡éçŒ”ï¹#Ž','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Request.php',0,'oä¡÷X>>LZ4‚ó¾\\ø','oä¡÷X>>LZ4‚ó¾\\ø','ßDkF\" 2hú|Tºieµ$‹þ~*’>×TZ','',0,'?'),('4xÒI£:uoQ.\'º','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/FileCookieJar.php',0,'À/‘ÆÑÖ>!¹¿¥LGÞà','À/‘ÆÑÖ>!¹¿¥LGÞà',' é–Ü_Ä\'îD6©ß œÐ¯PY{Ä01MÙG Ha\0[','',0,'?'),('4|‚ß_HGÁ½Ý|¸Œ£±','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/HandlerStack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eË¹Ì]gú.Såù','õBÒÈö…’öˆ,ªw\'³Œ~ÉåAý1üvw82]ý','',0,'?'),('4‚ OH÷põBCÂç','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchBucketPolicyException.php',0,'PwýÀ¶Í€C~ð}?5ýpû','PwýÀ¶Í€C~ð}?5ýpû','ÿ°dYdÉ/’\'ÆrÄfƒPz\rþqFr!dý4—×Èrº','',0,'?'),('4<@GŒþE œ™|òwâK','wp-content/plugins/really-simple-ssl/grid/css/grid.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þµñöO½ò}N=mÛ(\r0Þ','ûõ=Î*(t«“C·Õ R²ˆžÉQ¤œ\nVW1Í‹Õ-çä','',0,'?'),('4qEyVS/ôÌo}˜','wp-includes/blocks/tag-cloud/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iCuŽkæ0)º¿¢íÈá\"',' H¥Ž˜Ù>„W…ð!×¡žÈ» e»h¨­d\r¿-ÒÒ¬	','',0,'?'),('4¢^ØöÁº€è<¥™³Ql','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-toggles-preview.php',0,'²<óSßûêíœ†1D·~','²<óSßûêíœ†1D·~','€Fq`cíln© FB&e“DÚÑb-[Ï²eâË|5b','',0,'?'),('4£³ÀI<;(iÐ³3êÇ¶(','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/Config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îsr:X*¤³mØ~˜Éìj','>d-ÉqÀÅ1›-wYk¢ïu‚rN}a†¶£V²dB','',0,'?'),('4£ºÕ‘­jEÑ|+ÄÞž','wp-content/themes/Divi/core/code-snippets/post/taxonomy/CodeSnippetType.php',0,'«½×ŽÊa¶x¨öm!Ì','«½×ŽÊa¶x¨öm!Ì','Û,A]ßàþöñ\r.[Û¦\ZMðÛ_lTõíÐ’ÉVí','',0,'?'),('4°™6å>}¶Å4(t/òA','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php',0,'>=&ßn±Eñh`Û‰;\0[','>=&ßn±Eñh`Û‰;\0[','¡Ï£)Vý\'çó5Ô\r6®¯üSí[å,ŸÁÎ)ØÔ','',0,'?'),('4µ§ØX.-Ó²Ÿêµ\nAJ','wp-content/plugins/wordfence/languages/wordfence.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']\0;û)ëß%~','{ã;“x[>!}”‚Êv	–Û¿ˆTjÀg¥hžu˜','',0,'?'),('4·•T=\\_\'ö!6±åá','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/IServiceFilter.php',0,'Ÿ÷~¯ÂT;pŸ@¢lÄW…','Ÿ÷~¯ÂT;pŸ@¢lÄW…','€y^HRð;<´q®S9+š4Ij,L]îC\nG¢Ðy8H/','',0,'?'),('4À;2¼®‚9_pÄÖÔ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ImapSettings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷º$Íß‰¸æô¬íÍm','V¡k}5G/S]eÑ¿g³ù#e“u”¥VuÌ-#','',0,'?'),('4ÀØZo cF¨Êy 6','wp-content/plugins/worker/src/MWP/Security/Exception/NonceFormatInvalid.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V‰~sKù Û®å§\rc˜','EÛŸêžã‘lÃjëéªxiqëj»—=È1¤³ñ','',0,'?'),('4Ã3k¬o­3q1øW','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth/CurlAuthPlugin.php',0,'5Œjö>¡?~ÀÐ[-È{Ÿ','5Œjö>¡?~ÀÐ[-È{Ÿ','ºwÆNí¾ÂÑuÇƒñr¯o™ÈûÀ;ADfaõç','',0,'?'),('4ÆR	:|WTãÓ¶Bõ¡îb','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Response.php',0,'lÉ	”\'’C›•Ù½Òä','lÉ	”\'’C›•Ù½Òä','ñ¤­ÜbÎ4ÌçdÑ–1ù¤K­\rQfœ×¬lãL‚HÜ“','',0,'?'),('4ÒþN:êsú%¨{¬','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorClassFactory.php',0,'lN6Y)KöÓ/Rúÿ','lN6Y)KöÓ/Rúÿ','Gvd\"½è-Ï°>ŸÉ–h€tÖ#–ñª…¿E$[/L','',0,'?'),('4ÓÛÓ`	ÔÃáfcº%p','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Resources/iam-2010-05-08.php',0,'Î~SÞß{OÕ«úxg%œ¸>','Î~SÞß{OÕ«úxg%œ¸>',']C¦0¦EŸtË€&f¼eg!Œ|˜ñª1ž','',0,'?'),('4Ú‚œÙL$¼,K[œuÌâ„','xmlrpc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üAÜ8\nP*a|/Ù³K','XdBíc\0§‘Ü2­˜Ã­¨cä„çüg®ªÀ£šèÈ','',0,'?'),('4ãVÊ#Õ7J…ýNZ\"oõ¾','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ServiceResponseException.php',0,'><v¤è‰—Š$sHtí$ê','><v¤è‰—Š$sHtí$ê','W°yP¥ÓuÕGºcÂõûUì°á{BO+pÅÁ?','',0,'?'),('4æ+Æ”ËIò\'%cùË','wp-content/plugins/updraftplus/includes/PEAR/Archive/Tar.php',0,'.ðKW–‡Êr¯CÁ@›Bž','.ðKW–‡Êr¯CÁ@›Bž','ðÁ&ÌI:*ô]ªz^vIð;`óòÿN);­–€“e','',0,'?'),('4ø\'‘÷½g#œ4Ê¯±ÚÄ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/NullCredentials.php',0,'§,8.`PHDÿÖ‡œN','§,8.`PHDÿÖ‡œN','T£}éöxd{÷qZ¦†ÜDWÀÑí+‘1|) ø¢c','',0,'?'),('4ü%µ‡×®‹”ÚÙÈËÿó','wp-content/plugins/fusion-builder/shortcodes/fusion-popover.php',0,'–i­ÍÂ=\\Zùê&íÄi','–i­ÍÂ=\\Zùê&íÄi','ó¬Ì©?3ý ìÛ,VºÅŽÞ ÂrUø\nP†\'a•','',0,'?'),('4þ×ˆÏ¾Öð\\\\mÝž“6','wp-content/themes/Divi/includes/builder/module/helpers/Overlay.php',0,'›Ÿ–tÄ\ZêÄ Â_éÉ2Dñ','›Ÿ–tÄ\ZêÄ Â_éÉ2Dñ','\0Äîäc>Qù]	•ZÀ¿h£}i[8fí):h®8ã','',0,'?'),('5o¸(äáAš².†5|','wp-content/themes/Divi/ai-app/i18n/ai-code.php',0,'&ÂO-O1Ãß¬ªXQÍ','&ÂO-O1Ãß¬ªXQÍ','*(H¡0©;².¥ cQ‡>Û^I(‚K”;','',0,'?'),('54ÜÆÁZâ£Ê—ƒHJ','wp-includes/blocks/rss/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*ž£\"çsÃ~¶^Ðn','ßA+°ÝáD-ö f-oü³OÉú€¤´f“','',0,'?'),('5nÙ¹ŠAâØê:ôDuõ‘','wp-content/plugins/worker/src/Monolog/Formatter/LineFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V5±2úí?Êƒ\'wÉcs!','îâx_4N,E,’Û)tu‚\Z:ÉaF`/*ÑãJŸX','',0,'?'),('5\Zòâ;ŒpIšN°Mx','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q°á…ý-Ò&ÇžY¹5Ä','âžIA?=gGc9SO¬hwÓýž/{¤Ìß´Ý±¸Šäó','',0,'?'),('5ê?‰y˜Ä<Ù2Ì','wp-admin/css/dashboard-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—míÜ)¼´†ù.zÁ','\0\\¯ò3\nñ4‹A7ŒÝœÕ&j3R€–J?z›ƒoü','',0,'?'),('5Øoª®%8|ÀÖš›ºÈ','wp-content/plugins/updraftplus/methods/sftp.php',0,'\0Xƒt´öé«I°¶','\0Xƒt´öé«I°¶','÷1o?U=ÂÇã0šµ²ÐºçV0ÌFO%ªH†¨SÈ½f','',0,'?'),('5.=¹€d)<peu™s^','wp-includes/sodium_compat/src/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªñ}™¨][Wß)¾BŸÁyÕ','e3\nxÙù½&\\ÄkÝÒêÙ¦ç|˜„ªV®Œs›ö','',0,'?'),('50ö”6\\ˆöÆ=XRÓ`¬Ø','wp-content/themes/Divi/includes/builder/module/woocommerce/Rating.php',0,'pÍÉ…äÈèŠ]„è_»·Ýl','pÍÉ…äÈèŠ]„è_»·Ýl','xÆ0Dš÷œ¼†•ºš‰ÀTœ¬/yŠ®ß@ÕI','',0,'?'),('58çdá`S61K>Û®†v','wp-admin/css/colors/blue/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L\"¤¾ìö\"ç6Ø3@Ù','€Å4ëñ_ßwl?¢\\„	pÊQ(¸#¾õïy9ÍÍ¼ø','',0,'?'),('5:ŠãBÄKŸ•·a…Ëî?','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/Raw.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…áKDRmn³½.½=›P','&L+Ô%³ˆÛþ<”£º|·YÞU´›Õ¹ŠjbKO‹','',0,'?'),('5C‚)\nWu¾ê½/FÒcK','wp-includes/js/plupload/wp-plupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','biû^øÌ¹è$–x£9}z ','3}ÅÊžiöãå™þ8]`¬¦ÊQ‰Š÷à¬§%6','',0,'?'),('5S{ïTÆ–®Îe½/Ë','wp-includes/class-walker-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ø¦Ó:6[ç>r>™ÙS','Àµ¢ôŠÅ`÷ÏÚÁÞç\"}þ·Öjº\Z\ruÑ—','',0,'?'),('5Wš³•W…*ü/%t–','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/SingletonTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~u#ÇªÖiäÊ}0Ô','E7‹,°!²ãlÄÊ«”b‡rŸ”_\0ó°w%“b','',0,'?'),('5Y6(\Z@²­SB€„','wp-content/themes/Divi/includes/builder/module/type/PostBased.php',0,'\\e×Ò¿.©ÏÑË,“[~','\\e×Ò¿.©ÏÑË,“[~','>yð«€¬«„à½ø”µ±¹\ZÊZÈ­WZÝõp†Û.','',0,'?'),('5Z¬ÌäàSÎ¼ãvÙ`6—9','wp-includes/version.php',0,'ìé÷s8«Ô>®-0ær•6','ìé÷s8«Ô>®-0ær•6','\0çJÒîBˆUÙ_p\röI	6|·ÚÔ{VõöšÍ:œ=8','',0,'?'),('5\\h>óÎw	—‡NË','wp-includes/registration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òîÃSæËD† 31ê','Õ™“·ìvF´ˆÙ«šÎùåP«ÝB8.·ìáÛâ8Ä','',0,'?'),('5`à]\\Í­i\0¥ßí\ZJT','wp-includes/class-wp-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CCZb‡2âh¾:´d×Š','c«n×Vñ0E<\'¨xò/sJ·Ï˜ºƒ*0…\nš	Ì','',0,'?'),('5vìÆ±A²ì’¢jÅ¬îÑ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceBuilderException.php',0,',†(¶Ôö^çõN4í·',',†(¶Ôö^çõN4í·','Ü¤ÜR#»…li„iciÁ¬É:3ì‰QG©&h¹_Æ§','',0,'?'),('5zÞ3Ù95j½±{°^','wp-content/themes/Divi/includes/builder/module/field/display-conditions/UrlParameter.php',0,'înµÃ1þ,Î¨Õr·€','înµÃ1þ,Î¨Õr·€','\"E§KH[F±ŸÀ_°šSTõâ@a?Qš\\´z\nl£Q','',0,'?'),('5ƒÓú92Íƒ¨^À%<®Ç','wp-admin/edit-form-blocks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ã s‰š±EHƒ	>\ny','#ß˜ÚkfBQ&LÊúü?ƒŸþ0-|ñ8D\ZH°¶\r¶','',0,'?'),('5ˆcKªÔÖ6óºÃô','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/functions_include.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€û‹*/Í?6¨Ø\'}ßqZ','á¾dO\r¸ÝH,½úH™#§aûèÊ\"ûqæÅ›Igj','',0,'?'),('5‹^Uy#øx«\rIHtÒ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorClassFactory.php',0,'lN6Y)KöÓ/Rúÿ','lN6Y)KöÓ/Rúÿ','Gvd\"½è-Ï°>ŸÉ–h€tÖ#–ñª…¿E$[/L','',0,'?'),('5¡7ðN	C=†Û-ØœcÄ','wp-content/plugins/wordfence/images/sort_asc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“&­D®KëÞÝzSÂ§0','N—QÓ* ‘TZ%PºÚ%êÝjÜ‘tZn/Ÿ','',0,'?'),('5¡Kº8gTOÿÊ€uûÏ2','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/UidProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è_ÙëÁžfs»½\nA0Ž®g','NN°tq%µQþáö[œïö>vMFTð‚¨3n}!à¾#','',0,'?'),('5­ÑÈFß|é¤gõ9|','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/themes/modern/theme.min.js',0,'UŽÛöÈEÉÈ|Òh(Zf³','UŽÛöÈEÉÈ|Òh(Zf³','Ó£	}•Ê«ÌEŽ0ò).TXÂøäK×d~ÙHµÿNlK20','',0,'?'),('5±#tŠ5R½ÑˆK©óíõÔ','wp-content/wflogs/config-livewaf.php',0,'lÅ±fpdˆ¿ûÛïÿr','lÅ±fpdˆ¿ûÛïÿr','ô/lå¨ß¼A0î¦½îÖ6FZ›:Z\'lV´†H­„™','',0,'?'),('5³8gœ«Ä€ÒÝûÝH±‹','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Credentials/GCECredentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aVqø¸BgÐ\\t®>','L—Ÿ=øk¡Aª¹t4?=Ô->†Œ“VnEˆL½0£','',0,'?'),('5Ë\',UbRåcÄû½¨Cl','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/corner-lake.php',0,'+l>Ï|êËf›Mßûk!m','+l>Ï|êËf›Mßûk!m','ËŽ›²Â’\\p¸Ý|j•Ó_&¹ué‡+íš‡:ÖQ','',0,'?'),('5áârñF3ýR%Dso:','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','È0™øÇs0C{[ºª[t7','Zz`ü}õÍÛJ¢GN]¢œö¾lÆïQÆÈ8Ž±H','',0,'?'),('5ê›Î›ÑÉ\0Ÿeê×o','wp-content/plugins/updraftplus/templates/wp-admin/advanced/export-settings.php',0,'ƒJJ×K(	L„\ZXwŒ>!','ƒJJ×K(	L„\ZXwŒ>!','Ðc!Ý¶ó‚!\0C¼@J•,(eÁM¶Ãã<µSå]üZ','',0,'?'),('6\n‚üN3Ý/#È2Îá>²','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Service.php',0,'™N?dç‡L­¨Ât¹ÓØ','™N?dç‡L­¨Ât¹ÓØ','pÒ`¡†‚È¿|áb	ÃõœÐŒh¸.@²ós©¢—-','',0,'?'),('6é«®Òý¬çå<l‰ö','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ExceptionFactoryInterface.php',0,'í`å»¦­•*&a>O·<','í`å»¦­•*&a>O·<','ÆW¬ø\0™*¥0ÿ½‘µŸÔOëoÛÃ¸¥û+€zòSsÑ','',0,'?'),('6¿rcÂX¯#]gÛ–ë2š','wp-content/plugins/wp-mail-smtp/assets/vue/img/post-smtp-mailer.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾_Ê¹!“«ú\0]K$öš','J\ZmØµƒEòwµ¬0ÍÞ©É‡Ò_fÀ]ÍUYNïý','',0,'?'),('6p}®õ€És½õ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetInterface.php',0,'â}ž/m¡}†»èç¡‘','â}ž/m¡}†»èç¡‘','¦§±ÿ+8õ•ZkËþ`~¤¤ó)­‹v‹Š1ŽÙªè¥','',0,'?'),('6ÛÚß¨X/€¿HL','wp-includes/js/mediaelement/wp-playlist.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«„Ÿ‡–Xˆl\"¤oð€',' /=Ã BAo&ÑÃÙIù1¬]k~ÇN’¡Ç','',0,'?'),('6,uÖµyšë!y›Ý(Çg','wp-content/plugins/updraftplus/methods/backup-module.php',0,'ó˜âù)úB«“Õ«$K','ó˜âù)úB«“Õ«$K','ø¼9»VÇÜÊú¼í§l¸=“‰þ‰ê$äÎ2ÂÖ','',0,'?'),('6,‹ßS@¿(¸Ò!Ò6S','wp-content/plugins/wp-mail-smtp/src/Admin/AdminBarMenu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G‰n5ãÕuÌô¸‡bM\\','{Â‡Ðþiqsì\nóuƒúŸÚ„¹BbA„~u¢î’','',0,'?'),('61Š¨xZ8mg¾KÈž','wp-content/themes/Divi/includes/builder/plugin-compat/toolbar-publish-button.php',0,'þ¶É¸>z—œ.f56','þ¶É¸>z—œ.f56','…\'B#FŒÝ¡¬šù?å®r›RÅT’Ãaâÿdw‘h','',0,'?'),('6;I(ÖH²mÉ%¬Ãfº','wp-admin/css/farbtastic-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â7\nåžÀ°)š{‰î“û','Tœ=ÖY#ÒË[•ý¶vr„HÍia­þRþò†ñ','',0,'?'),('6@ÁËæ0ù¯^zcJq…¶-','wp-content/plugins/updraftplus/includes/Google/Service/Exception.php',0,'€¯cE-Q€æJó7–ÎŽú','€¯cE-Q€æJó7–ÎŽú','ÙÌ«²ýÉñŠ\".àº.TBÂÂ`º\"ÅLèÕ\"¡Õ¾>','',0,'?'),('6B®T	8õ¡ñÑá8Õ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceError.php',0,'²ºkŒthƒÓ*-xŠ8Îë…','²ºkŒthƒÓ*-xŠ8Îë…','®¶v•ÞáyžQ÷½§‰Mh¯™€þ‹b”éô©û ä','',0,'?'),('6O=Kú§½BeÒfî5«','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/AddContactToList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðð¤ä\\¶Pìñvú ·‚','âACØâÅV@.ÙÁ­Ï=ŸUº¤X¾S‚«‡”#%','',0,'?'),('6[fÀ9¸?†“ _Ç','wp-content/plugins/wordfence/images/icons/bullet_yellow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J&ûÞÓÉŒŠýìîÔ”Q<','1µú±Nß—÷¹’ú×?*€i×Ã­!FýMpè9^.','',0,'?'),('6cÀb†£kk·Öi3¹@úH','wp-content/plugins/wordfence/lib/menu_firewall_waf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Çëm}é#`:ªáPo/Ù','(ž›Ë•‹=9L”/¨Û*mž,{oÖ7ÜºhVTõÚ\\','',0,'?'),('6€¨»üýÂÚÈ$´> ¢v','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/SeparatorFilter.php',0,'ˆkäÉ½êFÑ[¨ÓÂ±×','ˆkäÉ½êFÑ[¨ÓÂ±×','Ö^ýðúû„M	©m69¬¯ŒŠ«Ë7J4cªÿuô­','',0,'?'),('6‚]jàvÙW¹k\r3-ç','wp-admin/load-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žÇÖft_ovøÐ²¦ûù','fó“£ká!RG4ð;˜ßjhnutÖ­¦·ìÊ­d\ZWŽn','',0,'?'),('6ƒ?¨ÞpÝ<!y[cvk','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractBackoffStrategy.php',0,'î&=_èr•èÕìõ2´æÅ','î&=_èr•èÕìõ2´æÅ','y¬å ÞK;.²T™ø\rrs!Æ[,•.ô³	îo,ñ™É','',0,'?'),('6„ÞÆŒ¡™ÄöC˜®õ+','wp-includes/sitemaps/providers/class-wp-sitemaps-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü‡ûÉX%ºEWy‰m\'øÌ','¢|¬\rLòÊœÑÍ|ÕRyäò6S^ø\\Âè¬','',0,'?'),('6…Ä7­MñLÂ‹àRâ;a','wp-content/plugins/wp-mail-smtp/src/Admin/Pages/Tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óu~¬E®ÇAAÜƒ',']ºg³”€äC&SCeÊ@òçÅ˜_j­]^½žAZ','',0,'?'),('6“\':B0çéAEÏ€-¡/','wp-content/updraft/plugins-old/updraftplus/includes/Google/Http/Request.php',0,'™wœc—Ã,Ð&Ò0Ì;Þd','™wœc—Ã,Ð&Ò0Ì;Þd','Çž]ÀU®G’ŒiÇ\\4\Z€„\'ùâX¯ÈÍi…‰2ÿd','',0,'?'),('6˜…©‰týl1ß2§Z','wp-content/plugins/worker/src/MWP/Monolog/Processor/TimeUsageProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡¡µˆð4JðØÖlÉ_','U7Íë1˜™µÒzóã„üq¦,3Q9ÒÍos0&í','',0,'?'),('6©Š DàØ¥ù¢îúl÷','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/AssetWriter.php',0,'BÃÚI€’b ^w÷¥ÝFã','BÃÚI€’b ^w÷¥ÝFã','z”Þë£Eky\néE;1Ôó]GžŸ¡´åøüåmþY|','',0,'?'),('6±ÙÝ{ò‹\"P|¢…N¹ú','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/MessageFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•°)á¢Áš-üÀDëæ','ªîŒM™œ¯ZO¢oÏÎ¦¦‚-zDDf¨jNä^Úõ«:','',0,'?'),('6È	ÿ#v-¨síÍ¸\'','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òäF–LK¯\ZÍ÷kðP¨','Ø;Ü4M\\^UŽÛÍŒù5i‘¦c\0öIœPµšifÈ','',0,'?'),('6Ìü3ìÉòÚg\rõuª`','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/fuse.js',0,'\"UAÔ]G®â1ïO<¾Ñ','\"UAÔ]G®â1ïO<¾Ñ','s$º“ÉKá´!Ñ7ØV‘\nÅînFÐyP±Q˜(´««±Ï','',0,'?'),('6Ì ,õø_‹ìqòêùu…','wp-admin/includes/class-wp-filesystem-ftpext.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úc- bn¥C>˜Äêî?','ú3Õm{eÖ÷ÀlÏlÁ¾öàŽ¼œÞv`þêYÿÇ','',0,'?'),('6Ïà©OF‡èµ$$;âñ3','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_WPCommentCleaner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'×ˆR—·t(ušwðAtU|','ðIw	\r;,°*[U{ûÏÇ²KN–N«u5\'g\r','',0,'?'),('6Ù¨	Îÿ:{”^Dá‰','wp-includes/js/jquery/ui/accordion.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºÎ³eÛo-‘¦žþÙq','ƒ×Ýlý:ÏÍ¦]ÇnžÀð9cFÕÙõì?µc','',0,'?'),('6Úgs!ï×WÖ~§m`6','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-button-preview.php',0,'‰—?âàÞp—o¡‘fÕ]R','‰—?âàÞp—o¡‘fÕ]R','NT80`{\0Cz©4°“ƒýUè¹Ý¯{TÝÅ5a/','',0,'?'),('6ÛþÉŸ	â\n7¤fÕ','wp-content/plugins/wp-mail-smtp/assets/vue/img/chevron-down-solid-grey.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´`2$ÆS3Îze\\èÖ¥Š','Ò²ñtæAý‘ÀàÉ<;?á(u¡-×ýiß7S‡Á','',0,'?'),('6èûôí7®î*8—³sÓa','wp-content/plugins/worker/src/MWP/FileManager/Model/Files.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uº-|;ßåæ]æÎfD²','~Iåwb³åÁ³;æËŠ³¼÷ò\r¿ãªèÎ	c“¡†','',0,'?'),('6ô×;ÑRmÜÑÞ°\"yv','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/bs.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŸØÈåîÄÇrøúÎko(Y9','·â_æ¼y\']»p€§‡?­Wï÷¬¨ùxPÄòu','',0,'?'),('6÷¼u„+1ùD6ùPr','wp-content/plugins/fusion-core/fusion-slider/class-fusion-slider.php',0,'I-ø@ÅÜ$NŠI\rô\0ü','I-ø@ÅÜ$NŠI\rô\0ü','ë‰ùÚQŸ7Œëv!–F±JßôOíËë¸/>','',0,'?'),('7‡b“0åGÐzûØ	¯','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Customsearch.php',0,'q’ægNbô•åK2','q’ægNbô•åK2','™-1p14§&ÿ]ÈÆzE\Zñ­Ì–fdð+šý80\n$','',0,'?'),('7¥3ó»[\rŒ	XÈüKRÖ','wp-content/plugins/wp-mail-smtp/src/Admin/Pages/VersusTab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…v–ôÃäH¨y4¦>cpU','ç†y ÊéÒïn@1îÖì¼Í_\Z‡ÃBô_Ó','',0,'?'),('7\nDr8¼?ªþp¼­V	','wp-content/plugins/wp-mail-smtp/assets/images/dash-widget/wp/unsent.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pü‹©Æ¿Ô¸ÛF£Êßª','¹›²²m\0¯Êºl[÷Õ:”FfÓ½dJ>™†\Zb{Ž','',0,'?'),('7 p„ÏºSª²O+Æ÷','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Drive.php',0,'A6âoÕð6’Q‡H°','A6âoÕð6’Q‡H°','û•h¿B“tVûÈ`¨ÞÚd¤”U!èjw»ÇŒ:eÎ`','',0,'?'),('7\"¿ó®å¦¿W–\rŠÄÑ½Í','wp-content/plugins/wordfence/lib/menu_wordfence_central.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è¤DÓñÇ“¨GJ…Ã','’2Ú±Þ¬÷ijB€ôð]Æ‘FêèBN3«yk°','',0,'?'),('7)OuPöv>ª—pŽû-Wð','wp-content/plugins/wp-mail-smtp/src/Tasks/Tasks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„ƒóÑ”™ªŽ¯´ùKG','ÿb‹P{\n;~´L8¬S¤g1ºEª.ˆÊ×Z‹•!ym','',0,'?'),('7)VQÓÏ¸‚rüÚúJ','wp-content/plugins/updraftplus/includes/Google/Service/Analytics.php',0,'&ÿÞUþç=×éû0wøb','&ÿÞUþç=×éû0wøb','Å{ƒ6¢:|Ñ\0âtª÷¼÷ÉMKø	\\$Å1_ýÒÓ','',0,'?'),('7,Q<™¬·ð\\_À?áè','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidStorageClassException.php',0,'ÞëW‡±0qxi«!™8','ÞëW‡±0qxi«!™8','²@±CÑ†7éø?&òs¿ö(?Ÿ/s{\'ƒØÖ\naÛ','',0,'?'),('7?–ß½ñ’í¯Æoi(?','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/KeyTooLongException.php',0,'®µL‚ßÉú‡IHâá\r–','®µL‚ßÉú‡IHâá\r–','kyÓtEUUT‰;´=qø¦°eÏÌ(£ÎÍ1+Í£ƒs','',0,'?'),('7F`¡¿Øß<9‡bd0¾¿','wp-content/updraft/themes-old/twentytwenty/singular.php',0,'[LÙË“ÛƒÞð¹²ý$','[LÙË“ÛƒÞð¹²ý$','4\0Þ©XñGnw\0#œÙŽ4Ü†SÂ]T¹rnUFÑÉ0\\','',0,'?'),('7NËÔÖ³®ãó\näT/T','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Plugin/Update.php',0,'\0ÄÜÔúl%ì	.Hïß','\0ÄÜÔúl%ì	.Hïß','Xf%ÅF·â®™{Ò³Õ),›êv†ÚŠm•É®Ãõ(','',0,'?'),('7TŽØ€ˆeÔ|ÿÁ=:×G','wp-content/themes/Divi/epanel/js/wp-color-picker-alpha.min.js',0,'E¦ÙÈ§Kq»6£áŠ[Ê-','E¦ÙÈ§Kq»6£áŠ[Ê-','aK9¤U–¾pÿÙæž/ârÌõóîšGã#—úÂo6Ú','',0,'?'),('7X² >æhí19ms','wp-content/themes/Divi/includes/builder/main-structure-elements.php',0,'Ì£L¹sCM•ZZ±=ä','Ì£L¹sCM•ZZ±=ä','òí_˜€,BínsXd9”°ú* Žì­Icu	ßÝ','',0,'?'),('7Z?ëÍé¢ãTi®tÙQ','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/TripleDES.php',0,'”àïiÚ¼­öM>’(','”àïiÚ¼­öM>’(','²7CUðX	nUÁ¬›UÂ¿ÈBi%¥ŒŒ›È€†çm','',0,'?'),('7\\#\'ÏAÍ¯X ºa\"','wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-mbstring/Resources/unidata/upperCase.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§×µ27vÙa§Ož#ž','†*ÓìŽ²ÅÁ¢á\ZTÉ{\'x\0à¬Ú…¿è¦Ù„Ä','',0,'?'),('7b‚\\nÀ[ÞÉÃx~S','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_de.js',0,'—Ò\ZQ{ƒ8<ÐæÕú…','—Ò\ZQ{ƒ8<ÐæÕú…','r©]HÒ{¢©e‚’\\¦+ñ«WrG:Ènirö)5','',0,'?'),('7oj@Ûè•J  CöÈ¿‘š','wp-includes/blocks/site-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðþøŸtxåLS«ßï…','8ª^Î¯ÿë-Œ\'è% J>¨K%DLÓý«»?Kš','',0,'?'),('7pE4Ñ8Æ˜aìš0Â\Z‘Œ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MalformedXMLException.php',0,'ï?ç>ÓÛ\r²ìg JÕ¡¥','ï?ç>ÓÛ\r²ìg JÕ¡¥','-÷&mV°òÊ2\'bC¹fÀE•Ws”åÃŠ—9','',0,'?'),('7r‘§uFñ˜±@J,','wp-content/plugins/wordfence/lib/wfDateLocalization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë4„K_Jú2CmcÍ­ÇtÝ','Dƒjyîº,ÄLwÞaä <U†ÞÚ üû²õS','',0,'?'),('7|oOU›’ùz\0Ef»œä','wp-admin/network/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ò´ì¬LŽ;G_bu\'\\','Êv,I/L^š€¥ww\ZX1˜2 yîº§TêÉ£I§“~','',0,'?'),('7‡‘A›`ü|\'Ë2`5ý=','wp-content/plugins/contact-form-7/includes/config-validator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼>‡Pº1Ù» öù‚«Q','ä•„Ó,òƒÝj’£ÙOüÓm6®M(Í¦B–ó¯O','',0,'?'),('7’8†Ä®(wù;\Z„óSªŸ','wp-content/updraft/plugins-old/updraftplus/methods/sftp.php',0,'\0Xƒt´öé«I°¶','\0Xƒt´öé«I°¶','÷1o?U=ÂÇã0šµ²ÐºçV0ÌFO%ªH†¨SÈ½f','',0,'?'),('7£p¯Fzˆßg´RœÆìÞ','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/actions/ActionScheduler_FinishedAction.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–‡ƒ! dçÔõÞtçëé„','ZÌ:õ¹Ð«¥ÏÅwiG€e&¢Øg×Ç;((f\'Ó‡','',0,'?'),('7«%Wy~×¹P?«xòç','wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥lzV6`wmZBsÏÖ','\r ¡8óþ¯&øJä¦34°Ð±¥ÚÇ½¿»Á½þ','',0,'?'),('7²‡o^lÊ:ÒËB','wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜Á	ŒæI¥Ý¶3‚‹S','!MÚ’Þ«Dw£•éÞwe(²!Îäö=ïéÞ¨dàÖ,GW','',0,'?'),('7¶¼Z;wŠTf¯.ÂQ­Ü','wp-content/themes/Divi/includes/builder/module/settings/migration/TeamMemberIconHover.php',0,'žˆ¸kŠÍh}aöjà^','žˆ¸kŠÍh}aöjà^','Cµnrý¤}n@È¥n^âªUŠÏuœÞMgö”“Ôk','',0,'?'),('7¸°˜ùÈ½@”r5®î','wp-includes/blocks/gallery/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éÁ`¡6?è´o\'rúß]¨','†snWMdÔàxó2f1ÉÊŒ™‰ãõôÑ9ã‰Êýî»','',0,'?'),('7ÀcîÂ¢)ÜæSóebµ','wp-includes/js/jquery/ui/menu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e”¼\"f_å‘2¨egž','ú{ÊBý¢x¶Ò\r;f	°2„4ˆ/øüœâ4E‚','',0,'?'),('7Àc÷.$P!×\"Œò¹š†','wp-content/plugins/wordfence/images/sort_desc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©<„®ÕjÿŒ_³ËŠR2','*†ïþ-õ9Ô.¹û¾HGO6/îLÂ):C×dÃzã','',0,'?'),('7Â†¢0µhçQ4Ž¡Ì','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-patcher-client.php',0,'ñéœ†áM¸x”ECÎg','ñéœ†áM¸x”ECÎg','¬8Sr$–RåõðŠ–7ãÜ£ü13w´æÚÇX','',0,'?'),('7ÄV¾Ýðè)|Øa}@®õ\'','wp-content/plugins/instagram-feed/css/sbi-styles.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ö,¿îGO;Q¥Ims´1‰','ï6ÝŒ4¼)Æ½²=ŸZàO.²p‚×št¸‹©œë7','',0,'?'),('7Èey<<¬ä3ç(9 .¸','wp-content/plugins/wp-mail-smtp/assets/js/smtp-notifications.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú»,v1h\\‚A¨eê¿?±','-l—…ðåÿ£ ÛÓßµ; ØÆÊM\ZÀì·È6ò‡5','',0,'?'),('7Î£ÊQDPÄS›lª<','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Command/S3Command.php',0,'=À^9tP¤·\Z˜#\'¢ÃŒ','=À^9tP¤·\Z˜#\'¢ÃŒ','œTiáñ Ï|\\w¢ÌÀQ-OÜeÇ‘\ZÅóc¡Ûp','',0,'?'),('7Öy~æõ×?ðlIþ¾|','wp-content/themes/Divi/includes/builder/module/field/template/border/Styles.php',0,'Ð–¨â«lâÏÿaQrŒZ','Ð–¨â«lâÏÿaQrŒZ','D¸£ªk \rcþ¹sÆ’…>ÍûI8k0gJ±!*A–','',0,'?'),('7ÞY|7”^\Z™£ËÏVq','wp-includes/blocks/site-logo/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N‡J.ÿ¼¬Âïƒ~¤®','R®\\.ËÁNŽ÷‚~Ôùi71ÃìQÎà\rtá4éI9','',0,'?'),('7çíÃw+¿?Ä«åV.©','wp-content/updraft/plugins-old/updraftplus/index.html',0,'Ý«0XX’¹(úw}Qvµª','Ý«0XX’¹(úw}Qvµª','«Î>[eñD¥QÅ8&äƒFMÃ·ãN±Nþ8…Øˆ\Z;f','',0,'?'),('7ìÐó¥k°Xøf´XmÿS…','wp-includes/js/dist/vendor/wp-polyfill-fetch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Elî*Ie€¢NZîaK©³','‹Kö+|ÙðÛÌ«M5Jé¦éòÍyÊ0It¥lol','',0,'?'),('7ù2ß_R´DžÇ;nª','wp-includes/blocks/block/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îê†´\nŒ³\'Ü«n:WrW','qFƒî©)²§\0¶9Bé¢ìÁYSš—5©æ=(Î','',0,'?'),('8·¾äô3¬D¨T,jž','wp-content/plugins/worker/src/MWP/System/Utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”‡=–»\\ÝtÆ0¨°}ôJ','ûˆM_Muû‘ôÎYA¬\nhæF¡ŒÛ›ñb}{å7ÊØ','',0,'?'),('8lxý¡Ãlë2y ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/wordcount/plugin.min.js',0,'Le)¸j£=N8:¼r6','Le)¸j£=N8:¼r6','¸á-Á|nukÃ›R·ÏÜê$­W}¦ÐÎ¥í|±u:4µ','',0,'?'),('8#1ÕÊüì-‚è–','wp-content/themes/Divi/core/components/api/email/CampaignMonitor.php',0,'yÑ9,ƒ3è›sÚ”E','yÑ9,ƒ3è›sÚ”E','ÑËOc4$yAqƒÆ*4*Ñj&ßäÑ‡RÄÈt','',0,'?'),('86=]S½@%³î(úG\\','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/TaskQueue.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']<ï™ MÇ‡ò”õÇž',']SAM‹Êû¯$1•zäs×ÿÅþ²’ÁïåÑ*;kkµ','',0,'?'),('8=ÀIå¯ôa÷%œƒkÒ~¯','wp-admin/js/editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹›ëy”Á£ÑeèÝ','é÷:¡ žØzî©=:&ˆ‚ì%@ÏïÐxÕ?	ScSÏ','',0,'?'),('8?6Bˆ\r¾Ý÷pl2ºRÜx','wp-content/wflogs/config-synced.php',0,'<¬ný­h)Û\"ôÐC”}','<¬ný­h)Û\"ôÐC”}','˜ –/Â™ÂšZ¶\"`<ËxmmšN©)íó…!¢jA‹','',0,'?'),('8Lü)s˜0Ó£ÁÂx{J','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ObjectNotInActiveTierErrorException.php',0,':À™¤vúŒÎ.\råÞQè',':À™¤vúŒÎ.\råÞQè','Yé¢‰J—1„ãÍçNÓè}g¬‹Àðï7³äÍe(à','',0,'?'),('8Nö©LfCÊúQtE.Ç','wp-content/themes/Divi/includes/builder/module/woocommerce/Images.php',0,'Œ‚™Ä^ê ñÐ:3W','Œ‚™Ä^ê ñÐ:3W','‹³µ%9þãhßoK\"·^ë»Š(q¾1øÚÁÎ!zÐ\"{','',0,'?'),('8PÖ§ê\Z¼HGE}8Ú','wp-includes/Requests/Exception/HTTP/306.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wsz¡uNPÛjÜÉòXu','4U¾§Q\r1#_fº­¼¢¢°H¦û’*IÑdl¿Ÿ','',0,'?'),('8Y­õÅv¿ëCÉ[,ž‰','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ý:\0ðÑ>²—íØÇ}LQ\0','ÀïÃ_U\0]q=Õ‰Š®f\\¿/ 	@d¡Ì\r¨+vÜ*(','',0,'?'),('8wK+›ª\"¢1—›\ng ','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_QueueCleaner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k„óŒŠtÌ#Tu#ENê','ç™ùmŒëÄŒ”ûãÔ]ãž`Ûíî¯,&ôš”“ª@\"','',0,'?'),('8…y¾ ÝAâ0±M.D','wp-content/themes/Divi/epanel/shortcodes/js/editor_plugin.js',0,'\\Çå$¡v»=>)\0\0EÎ','\\Çå$¡v»=>)\0\0EÎ','‘¥®Ô}Z-’‘³·{7^šüŽf“©•µ÷c:ÖßO','',0,'?'),('8‘º‚§D¡+“ì½š	ÿ¿','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/ThemeUpdateChecker.php',0,'[ÿ\n›Ø`J0î;[','[ÿ\n›Ø`J0î;[','ÅØþ±fÜ‚Ž¶[1›Qt#qÃo:%­óKÙÙ#\"\nÚ€','',0,'?'),('8žR6ÚDH°Šq£-{Ž:`','wp-admin/includes/translation-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!>DÜglMè¾<ƒmgÌ','\rø[½ì8*Û5nÝŠóPc÷ò‚ô®^8d%?f','',0,'?'),('8©@)ý±6yg[yåsQR','wp-admin/css/deprecated-media-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹öhÕû§\"z¤º×Pgw','Àá´ÒüIß\'ÛHkòÌå´,„„˜1®¸5!uû.¤ë2','',0,'?'),('8ª©ÔÅ¼eÍäé$','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequestInterface.php',0,'tœNÜÒöÛÀJSÅ8¨î','tœNÜÒöÛÀJSÅ8¨î','pÚizù1¢ŒèËqþa® ŽœÚªŠ&˜_;O¾§ó’','',0,'?'),('8´•&‚|ÑóäðšÎ','wp-content/updraft/plugins-old/updraftplus/central/commands.php',0,'eµ$˜ÚŽ9Û{ú©ƒ1i®','eµ$˜ÚŽ9Û{ú©ƒ1i®','ÃÕ zQNÚU½·1Î>\Z7§f<èñ÷‰µ$ƒ\'D','',0,'?'),('8ÁBp0d<Ð IáTÚ°;','wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/cart/cross-sells.php',0,'š:š¹%ù%‚Òü¾¹‰=¨','š:š¹%ù%‚Òü¾¹‰=¨','øénãVW×ÿ±µ«œÑ/±!üýÀÆ§”gz‹˜÷','',0,'?'),('8Ã›ZE‘Q$}UPöT£à','wp-content/plugins/wordfence/lib/wfCrawl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ1Ìé“‡®Ü™~Ò\rüm','%&¹ã9‹	/D÷XGûØžØß‡ƒâUä»ïâê€4','',0,'?'),('8Êx‚üYÆ~@¦·ôÝ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/palette/field_palette.min.js',0,'iuªù.ÿäS\n5|nÂ³b','iuªù.ÿäS\n5|nÂ³b','³’hŽÌ7YlÍ6HhÊ«q\\¿¨.ÙåÑX¨ß`®´‚…','',0,'?'),('8Ï~—#K9{u%Üy»RÄ','wp-includes/js/dist/widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èrfõG£9“ÿ\"[‰‡—R\\',' ½yØ™ªì 2+Ä¹ùÊ·øSw’²œ”åCÛ©Ù³~','',0,'?'),('8ÕM\ZÚ-R”ïÃr„','wp-content/plugins/duplicate-post/src/ui/link-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿBÉÄS)ÔCáð5³\"','¸Ýdã}Ñd‰}~«=<kk²Z\Z”ÿnÍ1','',0,'?'),('8ÜžtÆî»\Zw„Nxa°ä©','wp-includes/class-wp-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùZM†ÙŸ:½l\"pdÎ›¶','¼%q2Á²ÒÓùFÀéëJÈ‘R~Òƒi“ªß`;å>ú','',0,'?'),('8Ý/~æ\Z¦¶òIQ_*ª','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSmsCampaignStats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë­P.Zx±¾òY‘\nZh','W|¬Œ0á@ýY!èmrŒÀcšcçK¢ê€êMu_','',0,'?'),('8àeÄC/d•Ô3ûÓ','wp-content/themes/Divi/cloud/build/et-cloud-app.bundle.js.LICENSE',0,'ÿˆAÿð-å/H?¢½ÀT\0','ÿˆAÿð-å/H?¢½ÀT\0','WR²a‹þþ+‡\Z¹s~[…‡£F=‚5†ì4c™y#Ô¹CH','',0,'?'),('8åœ„BíÌ×ƒ­r›!‘','wp-content/plugins/updraftplus/includes/Google/Service/DoubleClickBidManager.php',0,'‡}àÿZT’›¯{]%','‡}àÿZT’›¯{]%','@Ù4™~zÖ1 ‹Á\Z}gãž‰|¡÷Ë°-¥f{\"','',0,'?'),('8åÏ\\pUÉ¹ÆðM“öu/','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/TraversableString.php',0,'Œ/.{#D=DæÊh¸pH','Œ/.{#D=DæÊh¸pH','è+<}e½‘jÙ\r:	WÄ™¿&‹cp6Â°}wä}0±õŠ','',0,'?'),('9\0ÓûSgæ\Z£MÞŠš','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Webfonts.php',0,'µìß¼~Ì\0~å‡WÆˆØü','µìß¼~Ì\0~å‡WÆˆØü','’¶•ªû•-éïôeÅâÕ“$M*­s,Ï¯ì«ªö','',0,'?'),('9º\r5\'XùýÆ>?’','wp-includes/js/customize-preview-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y‚}íÐëðîxŠÃcÃ&¶','‚›™åë(]P¢óÂUP\'L©‹2šÒn¿\Z½\n¨Âíÿ','',0,'?'),('9¶ÇNòªP^DÓ8Óo','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/SiteAlias/Info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð$4kIcÆÞinÉ±ìl¾,','`fétç6\"Û5øÅå|Æþo÷¯¾§@¡,ûÞ	…Àˆ','',0,'?'),('9Ïˆ[Ÿ1d{Äôî@','wp-includes/class.wp-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óûDT¶úù–Y|49#y','»pf÷Å\nYqÕ}Æãð;yÇ§ÞLÉØ(®þ÷)®ƒ','',0,'?'),('9+^ûØìhÚé!GUÖq‡','wp-content/plugins/wordfence/css/dt_table.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ågJbjœJÁŽ9¹k:Þ','o[PÂHyÐŠ}½åìiGc¬~”Ð<c¥DìR:Dí','',0,'?'),('9:ù—d¯o\n‘ðp`Ry¨¢','wp-includes/js/tinymce/langs/wp-langs-en.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®÷ýsàƒ/úqà³Ô','¶¡õñT‰Ìµ¾sÉÆÊ%ˆ°ïS½Z¤”ÙÈÁÖñ','',0,'?'),('9Y¶CYÏ~1?=í1','wp-content/themes/Divi/core/admin/js/frame-helpers.js',0,'\0ª>ë¦:+Œ”7f','\0ª>ë¦:+Œ”7f','ßï«Jêé.kZs¦ktq}Ì_½¢þ¶àGc_;Ö¥.','',0,'?'),('9\\4;À¼J;ºëÎuÏ~²','wp-admin/images/freedom-4.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôšr­[#¨ÂîjR]*Þñ','ê-4£âÒ÷ð&äoÙs‘·v/1æ^+UsRþM\n','',0,'?'),('9k¹sBÂÎ=}ÕíTÅƒc7','wp-includes/sodium_compat/src/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VœÈÏzÈ’¹ú`(ålEÒ','‘ºÚëÐéâ¯ ç›®ÙöÜÖãßÔµJ±\\Ä_øz[','',0,'?'),('9o=…‘D5òÝ+¶™u','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Rackspace.php',0,'€°ÆÂÿÍ’#\rÙc×N‘‡','€°ÆÂÿÍ’#\rÙc×N‘‡','&HUš6ö©õe†•d7ñ³v…\n–_ÐÓ’k´Òdâß','',0,'?'),('9o‚}(0í„‘¿Îâ<','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/AccessPolicy.php',0,'Z4Ž åùãÈí‡Ýò,ú','Z4Ž åùãÈí‡Ýò,ú','åŒŽ4n§‘HXýðùun©C~Å=mÛ>•æü€«','',0,'?'),('9t¹~°`M3õKéo‡r','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/SlowDownException.php',0,',«·jV|e¿Í»Òkf',',«·jV|e¿Í»Òkf','P\0!Þ¢õ—)Žz KÌÜ¦‘Êê#ýªNUëY8','',0,'?'),('9wv\r÷î‘Û^›«!C©','wp-includes/blocks/image/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ziÕÖ]‚TÕ½O˜Ø\rÝ;á','gs&÷Úâ|f”!\r¬BË“B®ñ.çsÚÆEe','',0,'?'),('9—} B^¿²?	ë\"ë','wp-includes/script-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬¿ôXâ=I1½ç%Z8Ä±','h­Hn÷¤¨ÆeÂG©÷ésØz\"zö‘ÿ{0¥‚ñ#/™','',0,'?'),('9œæ¯Ñy²SöÀ	pV6=','wp-includes/blocks/quote/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4YÑR\0éóÞ•­ÂÚ7o','q¬Ø6Èå‰ôØ«Ék¦!C¾/qãäs!_ëµyh{¹Ž','',0,'?'),('9£y+§_¼¸@‹Aµš~','wp-content/plugins/really-simple-ssl/class-site-health.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öÝss¸çSD8ÕAŸ™','â\"-”tL4!q»ýç20+æ#D¡²@»õ_‘ù','',0,'?'),('9­c³4šíÐ(Öúºî‡','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/MinifyCssCompressorFilter.php',0,'Ið*­GKn>ñødÜ¶ô','Ið*­GKn>ñødÜ¶ô','£¯ºì—rŠšÁ‹! µF…štpv=’ÊÊ2†¹ÿ”÷','',0,'?'),('9°ïnüÎX-3Ì”(“Iƒ','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/pl.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù:£@Û{áR@Œ;‚7ª¶','CÜ(W	Ôí7d,Ýjºc¦\\£šyk,ZËñîÿðkÆ¸{','',0,'?'),('9¶ þ{b\nJcÑF=lY','wp-includes/blocks/query-pagination.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñFõuñ³ò\ZÇC','é<„t”åê“Æ „Oä«Tsê_Ì;–vSF+du¦t','',0,'?'),('9ÃCe;Y#èv|z—¡','wp-includes/blocks/audio/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ï¥¸´–J\"V,&¥RüÕ','É²Zµéí=Ô ækX\n\rûá27©$ç‹Á´ú¯\Z÷','',0,'?'),('9ÄàÍáÁ: \ZtöE','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Models/GetServicePropertiesResult.php',0,'UÝˆôâí}‰UK¶ã?i–','UÝˆôâí}‰UK¶ã?i–','ëW?UŒ…ù ›®‹Ç”vá™S§é\rG´ Äß /?','',0,'?'),('9ÕÒ¢Õì9ñëd\rëŠY','wp-includes/ID3/license.commercial.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n;g–üJ€g­²ÆÙxAŽ','»t_2¿xÊ<±ì-Œ£íËœwqÝI¿g™Éó','',0,'?'),('9åþ—{]@&ÂZ:okË\Z','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/theme-chrome.js',0,'âËUÑ \0ÿg[êãµ—','âËUÑ \0ÿg[êãµ—','>ß+›†_qàk[€eŽõ¯Gg\\å^»Þ5<CÈrÚ ','',0,'?'),('9í‰æs´3ÙSZ,pé8g','wp-includes/images/media/text.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z¹‡sæä0÷ÈŸQ€K','g®Ê?[õŸD*ßp”8€qòžâ¸VÑ“æ‘>ŽõN','',0,'?'),(':Ä„Vh«Š!•AÇj/îè','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß@BgéÁ»EJøÆ½H¶','i§í¦|\\I¦—ÇñE‰‘ŒÉ_•¬Xç¶ˆj’Ù','',0,'?'),(':{Ãâì{7Ê9°‰Ÿð','wp-admin/link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n÷ggŸï&Ñ‘bŽ Áé','(C<Mîd*2È½Ââ*æN€tànˆØT~ÓÕ\ZW','',0,'?'),(':®|LûH6(Îßcµg‚Ö','wp-includes/ID3/module.audio.ogg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ¥_2¬©\n$9¤û`m85','…6%u?EƒMŸ˜lëÈ@5vrÆ[¸j\'tàH†ºf','',0,'?'),(':1ƒ(¬)p]V1©-È©œ','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Continent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™qDL‡ßÞaª[	?à¯$','GŸs\0ëå\rÃ/1÷v=ú„©Õ‹·pS-«yE.ÔÒU','',0,'?'),(':3ÖÌÆŠõ¢šõÈ0ä,8D','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/Montgomery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù»\Z•b¶àÊM¨Gw\r¬×','Ž[þì=H>À¢?ÄôY€í\0Z7S„¿7fª&°¨[\n','',0,'?'),(':6?ýBÆ¿[¿ÎÝ©L’@','wp-content/themes/Divi/includes/builder/plugin-compat/final-tiles-grid-gallery-lite.php',0,'¥EãCíôÙ}ÅõÓ|ü','¥EãCíôÙ}ÅõÓ|ü','Êypò?{Þ\\P×Ë4†¢\n]4ËÁŸ}¢»M(','',0,'?'),(':7§¡û¤]å™Y}âº','wp-content/updraft/plugins-old/updraftplus/includes/Dropbox2/Exception.php',0,'×Už$ùÉaf*ìo·nŸ—','×Už$ùÉaf*ìo·nŸ—','s%ÃÔ¾û¤èá¹;è-þJ–ï„ˆºÇ¼/p f','',0,'?'),(':9*ÄÄì$T	pÙÎ\\|j','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/FilenameConverterInterface.php',0,'á6}¹–´¿YNm‡á}','á6}¹–´¿YNm‡á}','Ó\rÍL\n	t)–ñÊZw¨D5™p\n·¡Ý$Ï¨ZMIå','',0,'?'),(':<·$ŽÍ0,w\"&e({','wp-includes/class-feed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾Ž†>ùyÀÜ«¯ÿ]ÈôT','­8ÚÉj2ÖyÜN!qÊ©p±ª†ñùÛt\0Aõ2\\Y','',0,'?'),(':@$—ãê`-Op5x¹ãD‚','wp-content/plugins/duplicate-post/css/duplicate-post.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lêâ–ß¥¢{ú•M{ØÉ','+’;°‹,æ~fçžÉ#‰¶\'ãÉwpñß‰€£$`á$','',0,'?'),(':DéJ$í¥h»†Ç…\rÙ','wp-admin/js/customize-nav-menus.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','î oÝEß­WuaIúo|k','©Rï/gO<åòµ$°Þœ‘ïò ]$õ.Ä[iã','',0,'?'),(':HG­l¯þóÿ±9ÊËú4æ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedCampaignStats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ö¬+@áˆˆaÝ@Ê\'8,',',;ÏìX:‹~‹KêøÆÀÓBðú*é=§ú¿%','',0,'?'),(':RìLË€?&…¼=†‡—”','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseDeleteError.php',0,';yC£h}V~¯>€âY°í',';yC£h}V~¯>€âY°í','t9©·©½cvê|ã¯±u4èNkjE}?’5ë$µr/','',0,'?'),(':_k7rÎ:‡ÒîØ½ù','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/WebhooksApi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Iv.úGúm¤\0;1P2r','ã@ƒOÛ\"»o&‰ã>0òdDS†èùœíù  #\'°','',0,'?'),(':eç7™Ñ¿ö¯Ðn86 Ä','wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-dash-notice.php',0,'ÜÃxÄ5v6æ3ô~¿g','ÜÃxÄ5v6æ3ô~¿g','äYdÂ‘…«|”²`´µÑÝ`\"Vì€øª¥‚ ý','',0,'?'),(':kGo»\Zº;ýd¿Ék¢B','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Generator.php',0,'üb¤Ä<ì§„bblR\'','üb¤Ä<ì§„bblR\'','z÷–‡,ó‚M=4Þ!´F¤­ù¾.K8ƒlLFQÂ\Zà','',0,'?'),(':rž‹àpg{Õ1ºÒJK','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/AbstractSignature.php',0,'f½pa©f›\"_l ´','f½pa©f›\"_l ´','&|Îß2—zº©@$H«4ˆnžý§Â£¯‚\nÂî\0Î+1','',0,'?'),(':tÞOÉ`\rHñ$,ÃMô:ù','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=¥žÍŠàƒ}azå+','TVÝv\\Lmõ‰~åäåSzN„€GÁ”Ú¨::\nEäç','',0,'?'),(':x_`GçhŽsX','wp-content/plugins/really-simple-ssl/assets/css/main.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SlÞôQTñ’Œ# !','·EŽ€˜TßüMƒ«¢JöË¡q_)x¨ÐýuHÏkR','',0,'?'),(':~W¿7×Þnh¬7\'i{¥[','wp-content/themes/Divi/ai-app/build/et-ai-app.bundle.js',0,'¾\0N6¾0Ýù#\Z5û+','¾\0N6¾0Ýù#\Z5û+','ß­1ÔZæf§]ÉÑül¡aòþ}°dL•½Œ¿ß','',0,'?'),(':„ƒ8 „ô2ŠšÑEB','wp-content/plugins/updraftplus/templates/wp-admin/advanced/total-size.php',0,'­QÙ0$|áŒÐøÞ»\"ž','­QÙ0$|áŒÐøÞ»\"ž','F=Üë±Rð™ç#üuë£*Cä~ýd8‰9KÁ…','',0,'?'),(':Š-|G?eÍLÁ‰Ì#È#','wp-content/plugins/wp-mail-smtp/assets/images/font-awesome/info-circle-blue.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A $ªª?ƒ®Ò°¼‡×…áD','O‹g¶­•r?Ésr(f„i†þžîf\'5ºyï','',0,'?'),(':ŒŠå%H`!¬ûá\rè€Z','wp-admin/js/media-gallery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','û—ðK;p»O…?F`h¦w','¤[»Ž7å2Ÿ¢s¢®¥d`¹Š·ìÎõüðñ«Mo','',0,'?'),(':‘=GÈÜòíª$y¤ê','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡tVˆÉt™9€~.È<&7','VÙ9‚ûßÿ¸¢DhH‡ELcžúJƒ@aØ…4ø','',0,'?'),(':‘¹Z1­¶F²tÕ¹ÜV6,','wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-php72/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð^sˆ~íÇ†\nö¥-Ñ`','ž2û¸AßprÕAä$” {Á¹sãîä_pÒ>“Íf','',0,'?'),(':–àÇÖÐ×gTÐ£è¥Ü','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/textpattern/plugin.min.js',0,'[…òªòïØ6·º°óu','[…òªòïØ6·º°óu','ÇŽt¤q¯Éb[f_ÞËv(¨ºg*-2ý?høc«jÀ','',0,'?'),(':¥W­ŒŠ¼‰$…ãŠ÷×œ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/ConfigResourceWaiter.php',0,'hú÷ýåûvž4b´ØèpÚž','hú÷ýåûvž4b´ØèpÚž','Àà %žðŽÔ%;—‰¡6åOµVË\"€³˜Å«|²','',0,'?'),(':¹=c\\ZÏ‘ëñ`¯KBC','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/ChangedFilesIterator.php',0,'®’`}œíÝVtPSa¨pw#','®’`}œíÝVtPSa¨pw#','=;@€5’WÃ\"d?¾’³\0À°˜·K1¾ñØ¤cô','',0,'?'),(':Áùs-(B§¢ðOÍ2ˆä)','wp-includes/blocks/cover/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1æl¢¬Ò‘`‹ÖÕK','÷}\"g˜ÌïDí9ZÄ\01·¤ƒVa÷ûl°«¬ê','',0,'?'),(':Ævû”Ð{ÿ­V~¶–,¢','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractBackoffStrategy.php',0,'î&=_èr•èÕìõ2´æÅ','î&=_èr•èÕìõ2´æÅ','y¬å ÞK;.²T™ø\rrs!Æ[,•.ô³	îo,ñ™É','',0,'?'),(':ÈÍæ´êƒ–ãR]R N™N','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/CacheControl.php',0,'õ_.È@‹aÃp²”','õ_.È@‹aÃp²”','0f«2Fÿž=Èd1RGÐÖð7¬à/EÖí½$ŒÇ¢','',0,'?'),(':Ëò/Ô”Çµ˜ˆ¬ÃŒË','wp-content/plugins/updraftplus/includes/azure-extensions.php',0,'8âümSøûõNìgfArº','8âümSøûõNìgfArº','!~‰VRÄ½¥k4\\ÈƒHÀ	\\€íÉEÇf™…m?Ë¯','',0,'?'),(':ÑYÚóX¶5Âû\rI#õu€','wp-content/plugins/wp-mail-smtp/src/Conflicts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ç¡óýà,w;ÃÞµÊI','íÌÆËh]éÄê$À\\?¬ËaÏ‘®Ÿ³\'/ØÍH–','',0,'?'),(':à?§S—TiçñòÛiQÙ(','wp-content/themes/Divi/includes/builder/feature/display-conditions/DisplayConditions.php',0,'Xa«Vò~Ë¦ §i´µ','Xa«Vò~Ë¦ §i´µ','/MƒJÂæ†þÔk)‚Í¡ß¼G}‘D¹J×©‹ôZ','',0,'?'),(':å1w.OqLæ[´','wp-content/themes/Divi/includes/builder/module/field/display-conditions/LoggedInStatus.php',0,',±:užPh¿žÞÇTŒ',',±:užPh¿žÞÇTŒ','&©ã¥¶aÎaÜ&T\"ÇëBÙìë677:Š7ãdSþx¶ÜÉ','',0,'?'),(':è†•÷Q‚¨â“Çåh|','wp-content/themes/Divi/includes/builder/module/woocommerce/AddToCart.php',0,'råñè[œøewo\0…9îFÏ','råñè[œøewo\0…9îFÏ','{r,Ñ-ã*éMûäüÏïr.F!½BËÑZ§}-ËDo3','',0,'?'),(':êIv¶oÈ÷_Sîxkß%','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidAddressingHeaderException.php',0,'è•ÌV§#g×1†À«','è•ÌV§#g×1†À«','+CÍ6–\ri×¯¬“å À1¼Šl¯`ïPÀ£í','',0,'?'),(':ïXqÝ¯J\\¦5Pò¶4','wp-includes/images/spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕLõ\nD½\nÊoÙ‹ÔjË²º','zÆ„à\Z\"ÿ²n\Zs²(ÎU¶/~÷7º€F«ø^Â…ã','',0,'?'),(':ó*Î¨}oÙš‘WˆÕÄã­','wp-content/plugins/wp-mail-smtp/src/Providers/MailerAbstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›®ËäñãébÑWà¼Ü€','ºD­Ã0ŽÛfŠa5¦‡Ö“bñ‰±4‰ìÖµcbÂ˜','',0,'?'),(':ùnÌ£RMëti#šõ=','wp-includes/images/media/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†taCAñ¾Åþ².·çZßÀ',' Lä>¢‘$¨Á\n²oixoj-\nLÏÓõÀá]G;q','',0,'?'),(':úruõRÏ/Ë¹ána','wp-content/themes/Divi/includes/navigation.php',0,'úºÈ¼†õùÖñ6õm2ƒ«','úºÈ¼†õùÖñ6õm2ƒ«','¡*â k­ùÞÑ\n`9»äÕoŒÅdòZ7˜Õ¤Yš }','',0,'?'),(':ÿÕ\'R}šØ¯›]º','wp-content/plugins/wp-mail-smtp/assets/vue/css/wizard.rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z}pî5G4þ‡›€3øPhÙ','Oÿ.zÐdƒT-{âM¨3y«ðîö K™¹ñµ&Aõ','',0,'?'),(';#¿	n©åÜ%\"õù','wp-includes/Requests/Exception/HTTP/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à® ê˜Õ{÷yÊ‰2£l','ÂÕ-!V°»>d¦*jPŒFÝ	È;QÆµ±šN1aGœ(','',0,'?'),(';Þb­fÈ–0ÿ–¦­x','wp-admin/css/colors/midnight/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ„*XôçAÀÁ¬I×m¿­\'','Ö¼å‰Qz\"î(ÉÂ>{\\-à¸à9Àÿ¯\"{nÝŸOZ','',0,'?'),(';\r2™6ùø×`„÷ÿ‡<j','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-title-preview.php',0,'€·ÓxÝcðxË|:å²','€·ÓxÝcðxË|:å²','éÌiÃBõÃÌ…¾5àJ…pQ®™Z\\Ä*ñÑŽFÏ\nŠ','',0,'?'),(';Ü’scFÂüõ!áœ©º','wp-includes/css/dist/components/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³ËôPÞIû[•§Á','™z>bîíµÛAÕ}¥ÀD`2N$­o\\=ªn','',0,'?'),(';;àü_çß[¹¢¨»','wp-content/plugins/worker/src/Monolog/Logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ÓÉ042•–3Ù9|Å','3\ZräŠù®¤ÀPíÿf¶b\nàâgâÖ™M=*','',0,'?'),(';­Ï%w·7Ü(¹äz*1','wp-content/plugins/wp-mail-smtp/src/Providers/Sendgrid/Options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„á‡OŽû`E¸#È;¾½êÂ','à\'Ó<DN¿K?KHQ!Ànª±¨9S\rÇ>ç¥Ÿïä0','',0,'?'),(';%9zCú¡$QÀ4ðó','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/isotope.js',0,'1o^÷vyi¦Ô¬v£íâ','1o^÷vyi¦Ô¬v£íâ','{$Q„ˆ²›tzc0ëåÐ\n«upR¦ÆÛýq¨','',0,'?'),(';-”šFw“§óæ³£­ö','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/GetNewNonce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C1ð©oLà)•â+','^Eœã‚ð` 7³ƒ¥¬o“.vëÇþñúhÜ9ìÈ','',0,'?'),(';1Ñ‹#ÁY_N„¥t÷','wp-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=?äðTåY£3fîåN','ÏÄNý$	¢V³ÊwN3Êãzí¢–Ê]Sô5ï*	Ãµ°','',0,'?'),(';3ivA ÉËõ«ŸÕF<','wp-content/plugins/fusion-builder/inc/templates.php',0,'?î\Z)õ!ÅŸHtjþÂþ','?î\Z)õ!ÅŸHtjþÂþ','à¤©üˆGÀ³dù¬\n7²àPÁ\n8`†£»†sy','',0,'?'),(';=ß²GæXÚ´éÇ','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Http/HttpCallContext.php',0,'±¯Öƒ^:¡å“œÁ¾¬È','±¯Öƒ^:¡å“œÁ¾¬È','ó…è~Àý§”_A65ÐH¸=ùÊÇ(=±¥ñ}¾¨','',0,'?'),(';B,	8Š4rYm,\ra','wp-content/plugins/instagram-feed/inc/admin/class-sbi-about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Ïr°ðjÛc÷¬ƒö','±œdð@9Xpdú$çO!\0	ðè/ÆÃ%KÓ¹b€Ì','',0,'?'),(';G\0¯&\\fË|÷¢j','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/SocketWrapper.php',0,'\n\'óW&UŠP¼=tÝ’Z','\n\'óW&UŠP¼=tÝ’Z','²™·èHRZìz‡Ñ]›ÎôôC9Û”I³9³¦','',0,'?'),(';RÞyh›ëŸÐRxK\r','wp-admin/js/farbtastic.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§:óT 2Aq]†˜þê4’','ÉbtéGp®\0BM0zÂXJvœZHAtâM¸%','',0,'?'),(';YRw1ÁÎhyˆeí[+','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ûp–Ñì‡ÿÍÂ\\$›Ï3a ','(|ÙåFßóÞšàoHS1ÓxY\'\'‘…76Ñ§‘MŒ','',0,'?'),(';bâƒAÎÄ9’fÎF»','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerActionError.php',0,'pùR³);\Z£`ÅØ²y‚8','pùR³);\Z£`ÅØ²y‚8','=êË¨áŸª<´RE\'<,¡2Yƒç–>Qîl?¾o­†¿','',0,'?'),(';nà›CgŽ«7$Ž;õï_','wp-includes/blocks/media-text/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A:dÓ\r†§íG­ÕK‰','1sšÁ×crGHRàV[‚s_Ãró»¾ï > ','',0,'?'),(';z›x\\„ƒÑ¼\r£&(n','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_vi.js',0,'Zµ¹¶“«_	U{£|Ø¸sI','Zµ¹¶“«_	U{£|Ø¸sI','XuC™‚Kms‹P¾4A[ŸêÇcÃ#Òšo ','',0,'?'),(';zïÞÏÎÁá˜Úí+','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/ManageIp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÁŽ?ö8Y¾l(tš²Úzc','UWÁÇ|Çÿ~~AA°cÀLµš\"—“ÓS`8.¹ ','',0,'?'),(';a1,Wl-yT€Y1˜Ï','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Http/HttpCallContext.php',0,'±¯Öƒ^:¡å“œÁ¾¬È','±¯Öƒ^:¡å“œÁ¾¬È','ó…è~Àý§”_A65ÐH¸=ùÊÇ(=±¥ñ}¾¨','',0,'?'),(';«V÷³üÈ¹áƒéÐç','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/ReadOnlyResource.php',0,'*„+ÿ°_@È{…4ÐGc','*„+ÿ°_@È{…4ÐGc','erO‡,Šv•*\r¨ºbzÍä7ÊÉ~»¼ô“šÄ}˜','',0,'?'),(';¯·#Q´Vš)[»U‹ì¿','wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-om.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹µñ/—”½®\0(Tpx}','µ(\ZðS5\\r×\05d¢:¾Jk&Ç{Í\\—ñ°<5²','',0,'?'),(';±aj;ò@ËVSî%2\0¦','wp-content/themes/Divi/theme-footer.php',0,'±C1{5Ï˜gk•š\r','±C1{5Ï˜gk•š\r','¹aMQ‘ÉÜEõ£U\0èx}ÖG`\0º…ù0ˆvK§òákj','',0,'?'),(';±ªd»ŠØ¼ä´ê|ñXZ','wp-content/updraft/plugins-old/updraftplus/includes/Google/Http/REST.php',0,'»õ¹îRUä\"ŠŸžfP–J}','»õ¹îRUä\"ŠŸžfP–J}','DX² À&.ÈH9ƒÈ–d¿Í­À#ð0Sä¯7Ú~ù','',0,'?'),(';´{Êš.Ðx¹ë\0Ê´È ','wp-content/themes/Divi/ai-app/i18n/authorization.php',0,'Ãù’ˆ¢Ù*ßˆÃ4¦q','Ãù’ˆ¢Ù*ßˆÃ4¦q','ÍüÎö<^D;ù¬“É\Z”Æh~Šj,ÍJîðÚyÛO','',0,'?'),(';¹UJl9bŸPÄß','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Exception/ExpiredAuthorization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´šóWµþÛ`æû%Ç_Ç','™J64þ–ÀÞ0oåG¨ÒoÑüi5ŠÚúþ³Œí','',0,'?'),(';ÏÜ×—,ü×u´ UÐ\"','wp-content/themes/Divi/core/components/api/init.php',0,'†CÃþsýN@Ìs¼›Ó','†CÃþsýN@Ìs¼›Ó','ód›ÜjLÖùÏt*¸\'0ç\rÉ¨Â¦rÅã\0é','',0,'?'),(';×vð0BK¬¤µÄ1Ð´','wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®+o~˜¤XüåÝ“\0Í','xX·Ñ¹Ú$6ÜUdZ$üÖæx—Á¤ßØ&3×','',0,'?'),(';Ýw‘O?0ÚšBº\Z}a²','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/PreconditionFailedException.php',0,'ò	b)ØäÉ9âøh]å','ò	b)ØäÉ9âøh]å','k~Ï	¯ðRJ\0Äõ…tãÇD<œÄQ®Ô[L„ic¿','',0,'?'),(';ç\n„¹JâdÕcèøZ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/cache/src/CacheException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';e¾ú‚°•¶ôëøÈ@6','ÌÊ6™Š5z÷–‚å,otº¬\r#gëå]‰,¨§','',0,'?'),(';ëd+;¤C­€?ÇÿÝ','wp-content/plugins/wordfence/modules/login-security/views/options/option-roles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å*2\nŽý¤gç­´{ŒÈé','{ºÇãÌuúíÇ˜‡g¾¨éàLÈn}è¯SûÃ!NÏ—','',0,'?'),(';í2ª÷yTÞWðKsª¼˜a','wp-includes/blocks/table/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S0¥®Ë/”0ò7ðêÜï','žT”H\'~!)ð8¨EÎ	©…Ù\nP%Zyå·È8¯Þ@—','',0,'?'),(';ñWctÔÓç*+÷¬BrÊ','wp-includes/images/smilies/icon_surprised.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uì‹Þ-îë#+þö¶µ0ç?','Ž•cuy—XŠØ“ßA¬èd‰5[=w>™*Sˆpwe÷._','',0,'?'),(';üíÙâ*1\Zn½Ã4Ó','wp-includes/js/wp-emoji-loader.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸BQÙÀ™khÄ#Ñ','±3™•E÷÷!÷çå|r„.y½¤	ŽuN<Ùi×ÿe','',0,'?'),(';üéjÖX°‰euÖý‰…','wp-content/themes/Divi/includes/builder/plugin-compat/eventon.php',0,'¡sáp¥£šÕãÖzäA6p)','¡sáp¥£šÕãÖzäA6p)','qŒº2yÙ¤f—.2%S’æÔÂ’Öi(/ëbOþ‡šg','',0,'?'),('<—YÞë{ä•¾]Ÿ$j','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/PersistentObject.php',0,'¤N(ýÝÚ¢†µ¯ðP6Êš','¤N(ýÝÚ¢†µ¯ðP6Êš','ù³ÌnôÎ°·©ÍuXXywV¶—TÜ³Jé\rx†Š¤','',0,'?'),('<&þgaWL£ŽØòƒÂ','wp-content/updraft/themes-old/twentyseventeen/inc/template-functions.php',0,'M1í@8 þxCÂñÏ»4V','M1í@8 þxCÂñÏ»4V','9ÏAd¨‹Æ¦â”N×.\0z¿°˜Êµ›s¢`%Kh\nÖƒ','',0,'?'),('<%6¨BzŠM±o´O¨åÂ','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/nl.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4±¢<°÷À±¢Çwp','=%?Ü£ûIfOÇiŒÌB-ƒ{øÜƒßn¥fÃ·™„ã\\','',0,'?'),('<)–Sã\Z@§H4½³½3','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/log/Psr/Log/LoggerAwareInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œd[Íû»qˆæ\"‡HïM','¼kœN,¯>aüdÞ¯˜Ö\Zgøü‘áÍ˜B=<','',0,'?'),('<-ƒ’þéŽb¡ÉÈ³~','wp-content/plugins/worker/src/Symfony/Process/Pipes/AbstractPipes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZÑ‘e\'„Œ‡d¿ë','Ê•o¥GäåÇXÕ˜qL^tˆ(FÒŒëoÍX„–','',0,'?'),('<FéëïPzÌ22£‡~','wp-includes/js/imgareaselect/imgareaselect.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}(ÊÙ()³Ö3 ‡µóµ•¯','žqó!Ý¿JÓ‡—öi\nÁEá­5så!\r—…%ƒ','',0,'?'),('<O¼‰Yma¶0¬ìåì','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u¢_ÞúƒÇ:&º×š™Û','õ¡h\0z«AT2X•Ztžq9‰ó×äBÁÒ¢^¡p<$¶','',0,'?'),('<Zež3ì`xýí0{îë&','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/VacationSettings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñºÉ¤¾‡jê¹=Ï„È¾','ó(BA\0¯ì¶:h»Z?,_•žAµbÃOG„_O7','',0,'?'),('<_ºÃc»+T>€†¼Óšº','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/markdown.js',0,'‰?£}}À“ÛyF¨t%Dæ','‰?£}}À“ÛyF¨t%Dæ','!©CÑ›)Ó•µÒ$9íÍvvqlS÷ŽûÝ¾fi[,—ù','',0,'?'),('<fwÝb)ˆ˜èÓ±—ßÒ˜','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Permission.php',0,'Ù ¯k,Ü\"’9°Gò=ƒŒÿ','Ù ¯k,Ü\"’9°Gò=ƒŒÿ','‹º],EÒ4\Z—éóDl€j\'rÉ\nCB#‘Ý¿çÛ','',0,'?'),('<j}õGžÍíû¢¬þBo-·','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/cache/src/CacheItemPoolInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%7—À÷lv@P5ƒ©E','ÏÄ¶ÛÜœOY›0@¬6´nîn»$ä<0•äÑ…¿­™','',0,'?'),('<mÁIjfÆö¾¬[¥Š›Ü','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/StorageClass.php',0,'66]N<%g‘->È­','66]N<%g‘->È­','Qyºy»ÂôjÛà^fhodë¿õ#Ý»o´[êèóºŽWXg','',0,'?'),('<n|†Þ«0«)Í;zåÖ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NameError.php',0,'|ÞGèßòˆ  ë-ÿAsß','|ÞGèßòˆ  ë-ÿAsß','kž™’›eªÂ v0îïQ‘7çÊ]<	™ô eŸ‚Ç¤ª','',0,'?'),('<|q„|xÜ²\\èízZ´{','wp-includes/blocks/page-list/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€¢¾|Õ¥ð\"g9äáŒt@','¹í}ç=˜0fæ¦ÚHI¦Ov¿à9?ïàßaÔaƒ','',0,'?'),('<‰9þuþj³®ÿ„!Á$','wp-admin/css/install.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jA‹éqž\0ó{ïi>y¿','²P5¥.ñDÅ™Š/67ô³!	d²€É™UV¦i','',0,'?'),('<”¦aªÖY+÷¿Ôå:¬','wp-content/updraft/themes-old/twentysixteen/search.php',0,'en÷Co¿Ä¤DMúÒ','en÷Co¿Ä¤DMúÒ','Yþ?Â\rˆÃÑÃ*åÉ*ó&ÑFjE©à‚Þuçµ¸ø?','',0,'?'),('<©¹eçùçèËïÁ5','wp-includes/blocks/block/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9û…åMôÒ |T\'§Kvyñ','UæÄÊ@&?b¶òK»ÍRŽ[,ø3‚µmÔ.\ZÑ®b','',0,'?'),('<²Z’×{áÕç˜xs·','wp-content/themes/Divi/includes/builder/plugin-compat/dk-pdf.php',0,'Ú³1aãºó&jÀ¨’v”•ð','Ú³1aãºó&jÀ¨’v”•ð','sóÖÚ8?^Þr:œ|m—Î•&*›Ëq+ˆØƒ—5Æ','',0,'?'),('<ÆGæ6ª´þzŒST¼}>Ó','wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/AddStatusPage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùÇ\'r/K.TÈõ²%','šq@øLmgÖn˜ÿKTïÑD<ŸóY°6ÐüöÕV¦.Þ','',0,'?'),('<ÑÖfq‰bOaœCØ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_bg.js',0,'æ\r±™´îÊä^÷ÿ_Z”','æ\r±™´îÊä^÷ÿ_Z”','†’²U£•º­+©Éñç0ÈÈQ5ÆÉD–í›ø×âó,{È','',0,'?'),('<ÔUÖ’-ë\Z¼¡›/k\Z?Z','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UrlError.php',0,'ã*€öÊ4ÇÝk×Á<ÈM','ã*€öÊ4ÇÝk×Á<ÈM','–W+OÖ¦€`Ö‰‰ƒþÓ»áoØg±V]ÙËâÇêce¹ë ','',0,'?'),('<ày¹þg¸ƒ@åÀ0í	h¶','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/PlusDomains.php',0,'©Ô²4,¾7¼øÄ¢¸Ñl','©Ô²4,¾7¼øÄ¢¸Ñl','™Ä|Ø ”‡½.hh(Á–%Ô%­Ï|!Ø™J{–FDâ„','',0,'?'),('<æhjØ	Ž4½»˜4aÐ2ö','wp-includes/js/utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž§2¤š¤![pNIé5','iII4ï*–á{FZanúÇ Ñ)J,TÐ&µg³à','',0,'?'),('<ía šj³Y–âÖò‰Ôwr','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkDeleteError.php',0,'&¹pËÀ	ÉàÍòN¾K¿','&¹pËÀ	ÉàÍòN¾K¿','îvu¡?>-§*/Ÿlˆ´²Ê&	–ðâü<s·Xúam','',0,'?'),('<ïÎuê¿–\ZÜœµÇYÔ^','wp-includes/js/tinymce/plugins/wpeditimage/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Öjø<æ—]Ø@‚™¿À	4ù','\r]\"ÍÎ!ž\'sg=–™ªúïzÄ·Q˜î2ÇNKë','',0,'?'),('<ô(ð°ãH—ëlpçI','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/schedules/ActionScheduler_NullSchedule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕwÎª!m‡_ÂñËA›','¨K26ÙÖþüèÐ•¯Ê¬\'QpÐQ^nþø\rý¦ºÐ$|±','',0,'?'),('<ûña­ÝzÍæ°ÓÆ7','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Mock/MockPlugin.php',0,'~¼üS5>¾,oV.Ï¡leÏ','~¼üS5>¾,oV.Ï¡leÏ','¡.Ñ©‘\"ér«›¥FÃ;¿ÿìªÍVšŸûÚžDÞ','',0,'?'),('=J¬¦Ç°jaŒ}LI‰Z','wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±ÀpFõñt1Æ+öÀ»','þ;‰}ÛüÇ\0[·ž¾\'\rqÎÄáÚÜÄ¥dÝ;#æ°.','',0,'?'),('=Ë:—1›q¡Ê¥dÇ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildInfoApiKeysV3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Øéö„të¾†Âø@S','ž2Æˆ‚çÙœ˜£â&_€eN&]µ‘³dƒê\0æ@','',0,'?'),('=¿²Üf;Vódl\"§À','wp-admin/css/code-editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z®¿‹.¿yÖì^J¾i»*','{ë †¹ ²ßéÁIåÐ^­`Ž«\0ÊøóÂ<<','',0,'?'),('=	]þéÿ’}úÜ*<.','wp-content/plugins/wordfence/views/waf/waf-install-manual.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pm ª¥…°QýynRPqØ™','l¿,\\â©d.¸»þ\"ÆbÖ´ðlzÔwÄ\\„E','',0,'?'),('=&·vhžÖË‡Aê¬`Q','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Credentials/IAMCredentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C»‹ªSÌœ6x¡F','ÒÓAÉÓõä˜\Zî>8…àj¯‚ö¹K»ã¯iƒ\0','',0,'?'),('=.\Z;Ü6žøÁð¼öÑÚ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/typography/field_typography.js',0,'j¡„-¨2Dªo£5¿','j¡„-¨2Dªo£5¿','õé\n‰ç~ùCÃèœN*âÿOÚš¼Ôi™ô	á(±','',0,'?'),('==x¥íD>*…y3','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchInterface.php',0,'½ù\0æÇŽ#íáî%Êú¼','½ù\0æÇŽ#íáî%Êú¼','–\\6QX°{®:”¹Ö½	aoZË\\Bïä\ZeJ¯A­3','',0,'?'),('=S–6Èa°ŸXo°,”2','wp-content/plugins/wordfence/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nŸV8·\\¡äËBs','7îúhÂÜ†Óü>8bºut^^§Rxª26É#i(ú','',0,'?'),('=V6[Îno±P{Óÿç8Œ','wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-trustpulse.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^)àÃýÿ	ò±¥\réN','+øó¶ÆçßÎæ)úü·¹[“PéáÙk9nõFè\r‹R','',0,'?'),('=Vü\0|11ö\"ÍÎXKf','wp-content/themes/Divi/includes/builder/module/settings/migration/BackgroundGradientOverlaysImage.php',0,'8B®¦Ö›ÁlÚùÓï\n\"ø','8B®¦Ö›ÁlÚùÓï\n\"ø','¿àþff9uWóc.QÀ%»AšžHÏKÚÛ·tú!B°b','',0,'?'),('=Zç¾@L\0,d\0«—J’Â½','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/color/validation_color.php',0,'xuHºebb—OtÒË$ç','xuHºebb—OtÒË$ç','óõhhˆÑÕ‚W•Œ!<àìEÄC à˜,Õ\0ya56','',0,'?'),('=féuñ¥A><Th–ÉÏ@','wp-includes/js/jquery/ui/progressbar.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z›sk¼ýý®Z¦j	Y','»†7»”ÌvÒÇ\r6¢ª1œÍN9@vŽ7ý$ša·ä','',0,'?'),('=g˜æŒy’[ìHKô<vŸ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/switch/field_switch.js',0,'~VOêªÔ˜al_Ÿ?','~VOêªÔ˜al_Ÿ?','!ÛO‰šºó­?Œ?<†Ûþù~¨Ìk¶êž`â¦ÇŸ6‘','',0,'?'),('=h‚œúº°\'•¿^QÎPì','wp-content/themes/Divi/includes/builder/module/helpers/motion/Opacity.php',0,'àÊaÀ¦½™ûb ¾{','àÊaÀ¦½™ûb ¾{','À4¢R3ÙÉ\nsîÀ¶–gÄV\\¨b.$xŠ9Ê¹%ã','',0,'?'),('=sA†æ¡Ž+oÖ/1¾','wp-content/plugins/worker/src/MWP/Stream/FileLimit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B§xÒ‹S§Ï¶Ç1k?.','YkIpÎ9C¦BLL8ï^žC}>#sL /R>PÅ<','',0,'?'),('=LS’ýoAÿó','wp-content/plugins/worker/src/MWP/WordPress/Context.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"\0H \\l^Ìk ÝËsœ','1=VÍ‚|·²b[Ä®3º?·“¨ªûá?Ñnt¤','',0,'?'),('=Ç{ÇNs¥ªŸ#I.}œM','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/class.vendor-url.php',0,'tÒÈ¯(Kµo<MÅ\nä','tÒÈ¯(Kµo<MÅ\nä','÷›1ÍÜ¥„ë••‡Ø¦Ò?”V0œ*Eu°Z®\"ˆ>Žê','',0,'?'),('=Ÿ«àKù\0]Âý|¤\'Šj','wp-content/plugins/wp-mail-smtp/src/Tasks/Reports/SummaryEmailTask.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-àäç\'yÍ72¡ZvŠ¬','‡P³\rèKŸîõlåè#\\«4±ú…½==Ë]:D*','',0,'?'),('=¦/ì¾wª&];]®','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž7&<\n®”F€ÖË³sœ','¼þ¥¡Ú]’	¤SR¼]Lµý~Z÷*.AlÉJ','',0,'?'),('=°Šk˜[4œ“¢ ¼=Î','wp-includes/comment-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜JßJ:G+þî¥cZƒÙTÐ','þA2vòø-¡¸@~9Whí¸ó=£»÷e~È\0l¹','',0,'?'),('=¸BsIuýš4e¬Ò ±,','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataPrefixError.php',0,'Ö`ä„ó™i”mqÕ\r{l\Z','Ö`ä„ó™i”mqÕ\r{l\Z','\Zõ‘[¨6qÏ½ÝÑHO\\³öägn®šþ‘BdGç6','',0,'?'),('=Æà§Ó¨¤ç¤\0E¨ÒÖ','wp-includes/blocks/verse/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñIV‚»—’ÎÅ]õš','FPyÿî8>óÕ}­yâõÉ‰ìð8²w­äÿì+»TÅª','',0,'?'),('=ÈÞÛ0›¨ÀT£‘Ì\\ôÅ…','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ClientBuilder.php',0,'Í›‡ÄÙð$§ðÒ×)?','Í›‡ÄÙð$§ðÒ×)?',')Í×QDÚ«|ã°Ññç(F³˜M¾iVâ^tOÃÚÁŠ','',0,'?'),('=Ó;¶{à³Æ÷°eÕ6º5»','wp-includes/js/jquery/ui/effect-pulsate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ª*\rÒIäÍ•;tŽ—W¿õ','æÅÄ×ÃBD8Í=~ä¾bœ•žwJ=þ› Ç§Eþý','',0,'?'),('=Ô7UU°v7£íÛ\0ý','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php',0,'‹Òvƒê\nK­á¯\'Zþ5”D','‹Òvƒê\nK­á¯\'Zþ5”D','wB ÚF¾œÍž}yäG°gœ(¨V:ÖÐãÈ	þ','',0,'?'),('=Ú_^1¬úšG–áë','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/IteratorResourceInterface.php',0,'!üÈŒÔ%L¨Búé{T\\','!üÈŒÔ%L¨Búé{T\\','£ÝøÑ)2‚®—!ÁÙòlÞnéÔÔÚ¡¼q›!™­','',0,'?'),('=Ý¯ª‰†ü8=Ï0^VŽ','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Filters/ExponentialRetryPolicy.php',0,'–ŸŸ¸+‡8Í}OÂl','–ŸŸ¸+‡8Í}OÂl','4ÔóÓ>y:æz!>É|K¶\Z„àAüWj)o‡a†','',0,'?'),('=Þ¢ØÛµjÃóy¡Î{Ý','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/IServiceFilter.php',0,'Ÿ÷~¯ÂT;pŸ@¢lÄW…','Ÿ÷~¯ÂT;pŸ@¢lÄW…','€y^HRð;<´q®S9+š4Ij,L]îC\nG¢Ðy8H/','',0,'?'),('=à¶Ô¢oáy‡\"™	Î	\"','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RemainingCreditModelChild.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦˜±¶¨e® ¤D6×æ','P×]Ë¿ÿâ9ã•á·„õ¨[2ÈŸcidiÒ8ÌÖÈ‹','',0,'?'),('=ãFÓí˜£·Ã†±ÂK&Š','wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0ÁK¤o8‹E2–ï’º','ž(Ü~¯S¹øS\Z½[5E€ÿ!nþB½jõ“ˆD ','',0,'?'),('=å™„\nA¬K(’’Òl','wp-includes/js/dist/keyboard-shortcuts.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')¸ƒYŒk—Sz$Ió7Q˜','\ZQ©2N+ZÑÍšÅL:ˆCxhnôš•bh¥*‡Rž__','',0,'?'),('=éìš/ŠEý‰3cõL ','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/BaseChecker.php',0,'Þfì&‚™Û»ni&au','Þfì&‚™Û»ni&au','’@\Z,šI¸ÑSE†ý¶I>šÖµ(SkŽ“1\0ëŽ','',0,'?'),('=ï–Ÿ£©¼‡úþx‘\0Â','wp-content/plugins/updraftplus/includes/Google/Service/Urlshortener.php',0,'ˆlS¾4êíN	¡Pí—æ7','ˆlS¾4êíN	¡Pí—æ7','Þ8½ƒ¦Jé~¾íÅõz:ãAâÅÿ©gŸÞÍ­¨¨','',0,'?'),('=øaÜŸ»÷µÐ0&','wp-includes/js/jquery/ui/effect-slide.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å²“a›dŒ‚{2×°Ø','T¡fÃÑbÀø—Áƒº>åŽs;X<`0Ìù<9ºý:õ','',0,'?'),('=ø\"gÅí˜%>ÄÇ¸`G','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/UriResolver.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„„Oo8ÉÌï¾Ä«k)õU','x\0]Z¸F,Õ¼w\r>·n&öà©Ô·áúb´“hê','',0,'?'),('=ÿó¨À)çv²¯¬:¶ü','wp-includes/blocks/query-title/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 0o×Ô®ö<„GTw8','³¬®ÏŸ?®ó˜Éj¤˜íA’>V\rÖ‹ouºØÐ','',0,'?'),('>	RWÝÃuIÅ4–œÈ˜','wp-content/plugins/fusion-builder/shortcodes/fusion-events.php',0,'‡@˜\\PƒtÙ²c¸àzÊÈ','‡@˜\\PƒtÙ²c¸àzÊÈ','Œý£æK, ¯\"µEÏ…Žl€ðë‚$é™Þ@„\nŽ¼„','',0,'?'),('>	”¸§ÈzgŠò+µôêHè','wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/cpanel/cpanel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jÄ\n®kúO°R\"Ö*{å','ìø‚&±–•Ê);t‰ØÁV,‰ŸFâÃ\'¿45Ôy','',0,'?'),('>\rÚ­ep†ÿõ!×g²<','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/UploadSyncBuilder.php',0,'þTÜ·Ã¨\")Ÿ!Áié','þTÜ·Ã¨\")Ÿ!Áié','6ÛÛ‚ÜrÌÑ˜	%)QUT‘»>!’èèm(Cù','',0,'?'),('>QÑo†ÌDf&.YÀI\0V','wp-content/plugins/wordfence/css/activity-report-widget.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J„^x;y‚­‚°Ôc¡ýÿ','ÐÓ¡®ÁfÅaMšWv+ò€¨WŸ%}Öêž`DöN£Å','',0,'?'),('>[— g«3d½¨“¤ ','wp-includes/blocks/spacer/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IÄ‹\r¿ëºˆ_jÐÏ|¾t\'','.Bãô8õåÑ2UçÆˆ×˜i«W€f\"o­\ZÜiøO','',0,'?'),('>\Zó!A¤\0E2”Œƒ\\8…','wp-content/plugins/updraftplus/templates/wp-admin/settings/exclude-modal.php',0,'g¢¬Wÿ„·&•÷g›(. ó','g¢¬Wÿ„·&•÷g›(. ó','î2“g;\0	—,T~Ð`Ï<ÇÅŠf¬Àz…äyE+ª‰Û','',0,'?'),('> õjÅêˆ¬ZR…Ã0','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php',0,'úÕ6ÎçqYmc>”Üu;r','úÕ6ÎçqYmc>”Üu;r','¿1Î‰:±_ƒdû­Õ@ˆÚg.kÚoE¤è=9K?ÔlôŽ','',0,'?'),('>2Ì°Øè+àBlnœþï:í','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/Site/GeneralInfo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â.käI‚¬5çÙô©á‹\"','°4.½ùcÁ¤bŒ`¹ž[3Ò^ .FvDjÅë','',0,'?'),('>5ÍË.y2Q[Ú£ã1ƒ','wp-includes/blocks/block.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=jÞQ³\rZ¥Ä&`b$\Z6','‡òèsd8r±õŽ÷$®Î<HIÝê)¨PÊeÿ','',0,'?'),('>GÇ­OäjPÕl¨îB','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+¥î…ø¬ï\'Î¡0Ïg2','Øšx\"ƒoŒ*Iç\nQ›Òj¸·ƒŠçT(óG\Z¬.¢\Z','',0,'?'),('>Hz~]¼]÷d¤Ë','wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4‚ÞÏkITŸ¥ßÀ=Ö€/','ñ¥ò|˜œÿ5/îiò¢÷’VV#VÊåí²AðÔÓÙ`','',0,'?'),('>JMIv©õäv‰÷©¶î»3','wp-content/plugins/fusion-builder/shortcodes/fusion-column-inner.php',0,'¾ÂÚq…/F‡¯êø&','¾ÂÚq…/F‡¯êø&',']\r;=?KŠý!ì·ÊÛOä\ríÏ]\0\r–ÓQ','',0,'?'),('>Nô^Æ©W-Ï1¡Ž¤%›5','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/spinner/field_spinner.js',0,'ŸÄyÅÇœ%`‡<Jôeè','ŸÄyÅÇœ%`‡<Jôeè','³Pvõ2^ KŠ6ÁZˆ&ªtsŒ}ú#‘PòÅã:','',0,'?'),('>_Ž‰Sp cvíÇÒˆî÷ð','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/css/vendor/elusive-icons/fonts/elusiveicons-webfont.svg',0,'¸0»Yã;ýneã‰BÚ','¸0»Yã;ýneã‰BÚ','¤ðæigDk\\²5!r½/À\'yÌqâÜÒ3¨°','',0,'?'),('>hÐ©ìXX*ÿv1•©¹','wp-includes/theme-compat/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­âÏªÜ-ÔYÚDÁŠs·‘','õý“A8}ÌÍíG(oÜµ¹˜¾SQöÙ:z°ñûb','',0,'?'),('>qlî+ªmÈ\05Ä¦\"†^','wp-includes/js/customize-preview.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÌtQ¤¶MËÊˆøŒ•ýû','Šåõ=êñyó¾0’¦RABíbì¹’)®?=“n€','',0,'?'),('>u¸ë™Ê¸…!4N2ÚÃ','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fBBc-AMP6lQ.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Û,Ê;LŠ\'³´dee´Ÿ','¶+GûT}äm)*ÝÌ[’µÓc5½ZÝN-v>´','',0,'?'),('>ŒlÂµ¡¼¾­ø`ñÙ<Ô','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidDigestException.php',0,'IŠÖî¢,#Ó0@áâûŠ','IŠÖî¢,#Ó0@áâûŠ','Ì$oOT½Ü”‡–Ã	 }| íÉÁCåˆ4ŸK\Zí#–³','',0,'?'),('>Ïí×P\rãjP@ïõ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/DeleteConflictException.php',0,'H´å\"Êæÿ´òjûvo','H´å\"Êæÿ´òjûvo','½QF!\rÚ‹Áq—¿Ý1—=Ix:f	ä­s;i®õã§','',0,'?'),('>œvÄ»vÉ9PNÝÚy','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-markdown.js',0,'‡¿3* »Áýÿ5=dàgÙ5','‡¿3* »Áýÿ5=dàgÙ5','\rL­|Éz”©	Q ½\nÚË×%ôBÛTëªÉb†ö|®','',0,'?'),('>¦o«ÚÃÄëú»ÊtÎÀ+','wp-includes/blocks/post-terms/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Öòð/Ïïh+‰~¾/‡‹C','¶M…`ú=ÔÂòlÑ‰^\rdU4ëÇ‰RoŠ«á','',0,'?'),('>¨a‹«12èÒžZ†æ','wp-content/themes/Divi/includes/builder/plugin-compat/megamenu.php',0,'U†ûEVóÌ…R¨qDÐk}','U†ûEVóÌ…R¨qDÐk}','e¾FµÄ Ÿ\02ÐÖÎámÄmÀêt—xA”jV÷ý›','',0,'?'),('>©ÆX¹\rýbõßÚŸ®$W','wp-includes/class-wp-image-editor-gd.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹iºó\Zj¢ßÖ˜áOÎÊ','´_¨ÀMwß\"…ÝòGžûýhïpmØŠžuÄÄ˜k','',0,'?'),('>°—xWÜê~”UŸ\0','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-html.js',0,'I¢ôcSÞ`]$×¸M ','I¢ôcSÞ`]$×¸M ','Ì69ÇOØÍ@B+‚eÀ¼N îíñ_Rý¼ÔÌ“—','',0,'?'),('>¹£Gfè@ÔTáž˜;ƒD‰','wp-includes/blocks/cover/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©ioòw~©DE/a{5',']}UZ\0hf²3}MÅ_ŽªgioÓnîKÜ8|V„	','',0,'?'),('>Ì\"ó^÷î^`6Ýô+','wp-content/plugins/really-simple-ssl/testssl/envhttps/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¸ÜaÌ0ŸÁš¬ø&–-','ÓªƒGDfš¥è‰:ÃÚÈlkŠ#²L+J5B¨Ö','',0,'?'),('>Òý²JN€‰[ÉRôã>ça','wp-content/plugins/instagram-feed/languages/instagram-feed-sv_SE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïà9uX•.?žî¿Á‹ˆ','õyIí?e\\,aÊ1¦’yIZ¨ÑT»G|qò­ì†Èõ','',0,'?'),('>ÔÄØRON$!¼¯\Zè¤˜','wp-content/plugins/fusion-builder/inc/options/elements.php',0,'©D%ö(Šåk@j&¹&','©D%ö(Šåk@j&¹&','ím%tNÑ0½SUwU#ÎEÎ´Ö’ÑêÆo>ëæ½','',0,'?'),('>ÚAµ1¥•@°îa? ,','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParserInterface.php',0,'˜ïFÊçqÍš|ø#·lf','˜ïFÊçqÍš|ø#·lf','äZ»Ÿïµ†ŸÐÉ{¸Â5[üÃ±ä®:ôþ!ÓåËª¸È','',0,'?'),('>Ü[Œ\Z™\Z4›`õ8R','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/log/Psr/Log/LoggerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ô¥Æœ-£F¶X,NºZ','}[¨¤”éu8ã`Í{ÐéØ“\\DÒÿ¬>›!Å¾—Îi ','',0,'?'),('>è·}·Ì^òÛ›°j˜ô','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplateInterface.php',0,' â€ˆº*Î½ójDûX¿',' â€ˆº*Î½ójDûX¿','6¡›	 ^—Q¿\\ßs!ëw$ÿNå9žìœà0$ÿ','',0,'?'),('>ï&Ù\"œé~ý¯¶µþyÇ','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssRewriteFilter.php',0,'P†°âúU€$ù²Þ³iR','P†°âúU€$ù²Þ³iR','JãY\"ë±…NÃ†à;k ˜Mòˆ@ÕÀ¡BÊ…Ç}Ø','',0,'?'),('>ò>=!¿ËZ kÈÏÃ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Model.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','búì¸’#¢Â,78ŠÍv','ïE§&”‚ÌD‘gñ†œSj-ÖøCÄ\'3¿š×®W','',0,'?'),('>ò•qŸÒ‡sÛ0Ç@Aþ¤P','wp-content/themes/Divi/single-et_pb_layout.php',0,'ÆâÑÔ§å«Êæàó:ù','ÆâÑÔ§å«Êæàó:ù','ß™¥­e¶ÆØÑ´ÆzRÌÕ$µ–œ?[¡v5TT]œ','',0,'?'),('?ØWZBDùN×1ž3Àå','wp-includes/blocks/audio/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K÷XÕžAü}µN¨D]','žbbÄ¾Ç£•$ž‘NtÔiÌýWöÙKòàS­‡','',0,'?'),('?GqK¨dt`¸Ü}9','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/imagesLoaded.js',0,'N9W÷‹E¼Á£0\\5‚É','N9W÷‹E¼Á£0\\5‚É','W;æAØY;xZ÷\0˜&Cu§Gñ¼E¿\r*_á?Îh–','',0,'?'),('?€7UWÝ=WŠ2Lã','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/Traits/Fingerprint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üßm†}9’¥Éß\n','è²Â£úƒ‡\\>™ÿnMUP3·ª]•Iu=BèáÒË´','',0,'?'),('?åÌ®p|RÂoð¥é','wp-includes/blocks/separator/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…°úï^Nª¢3¯›\n#','RðçE\'U^d¢®~=KA (K–Ï/WÐn\0ØIN¦','',0,'?'),('?\"íF*NSº$„Ðº¼m','wp-content/themes/Divi/includes/builder/module/helpers/motion/Translate.php',0,'ŸSîžï„j…ÒÏì','ŸSîžï„j…ÒÏì','Í.q:®U³ó˜!ðKà²Ú4\'…|ò±±Äö†Ÿÿ™','',0,'?'),('?,xm=þ¶]¨yX#î','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/DescriptionBuilderException.php',0,'ëÂ‡^”¼{‹øõýoq>','ëÂ‡^”¼{‹øõýoq>','M-ÔÎ²ñ†XÈ{Adoz×m(„èèg>±¯‹','',0,'?'),('?2$8ßMv\Zþj°¸Á','wp-content/themes/Divi/includes/builder/feature/gutenberg/EditorTypography.php',0,'R{\0þoL$*Õà¨œL»¬','R{\0þoL$*Õà¨œL»¬','¦ÆM2ÌK\0X·} «€6dI²Ñh[FÄiMH','',0,'?'),('?2yT!s|À¨t°æˆ÷u}','wp-includes/random_compat/random_bytes_dev_urandom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—®dÊýï¯èØí\ZHrÛ','\nDfdvPÿfŽOn:ž“˜ªa†åÐ³Â‘Š„»XÝ','',0,'?'),('?3(X Ïá‹¸TÜ	Þ=','wp-content/plugins/fusion-builder/inc/templates/options/textfield.php',0,'èìN&XÈR4Ž.\\èU„ž','èìN&XÈR4Ž.\\èU„ž','%˜Bš–P“—§ƒ}Ñ(ˆîîTGù÷ZTñ,âUg','',0,'?'),('?<žgô;–Oƒ/\r>ü','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/CompositeResourceIteratorFactory.php',0,'ýÿ½\rp½íþÝ=ÜÃ¾kÜ\n','ýÿ½\rp½íþÝ=ÜÃ¾kÜ\n',' ¯+ˆ°Y|vìsæsx´¤ïe\\¡ zŸKÐfI·&','',0,'?'),('??Q$¥P£¬À.:X6','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-fast.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â¨ŸÜ0@‰I¶SB','©1èÒ­·Ä‘ùÀã,ñhž-­öh„>fÚ¾ÍG]','',0,'?'),('?E)¡\n’6¾[î•5—$µ','wp-content/plugins/really-simple-ssl/assets/really-simple-ssl-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q’~!Oîó‰€tØLV','Ç	Ë‚§û]a1µaB6ÅÔ–jÖPf”4*\\´j','',0,'?'),('?U˜\\°þ’±|RÎ¢’','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/HeaderVisitor.php',0,'C2O?ˆºÔLJ.\"','C2O?ˆºÔLJ.\"','VBÚº]!í$[m3Hù;Ï?IglÑ—Ýƒ§³)&a','',0,'?'),('?Užµö½¼š\'_l.…p','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o>B÷˜	¿Ÿ½‘IN”-y','þåhlŽ[À»¶½†§ñ«(¿l~‘Q÷ußFM²	“','',0,'?'),('?YvŽq_ê—ÿ³Û®XO','wp-content/plugins/wordfence/images/sort_both.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Åá%ÙB¬QxÁSV.D','’¨„ù6ÆÂ\"@XÛg\'æW7ÿ°wôËgJ™ßq','',0,'?'),('?]ýPû.£˜1ÿ´ƒÌ2b','wp-includes/js/tinymce/plugins/textcolor/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü%i 3ÉáÖÉfäèûÚÞ','(Þ¾ELÙû Õ”b[™ŠKÚ!s¬ÓŠÔnÄ²£Â','',0,'?'),('?g·ûÒ€×C¦æe®ö™','wp-content/plugins/wp-mail-smtp/assets/vue/img/star-solid.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢¦ðì©±ðT2ýseI','e0UŠéQ²ÆO\0”äÛ´ÿÜ`aZÝEVycÇ—^‘*U','',0,'?'),('?l@Ûtm}gbý«arff','wp-content/plugins/wp-mail-smtp/src/Compatibility/Plugin/PluginAbstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´Â&8\\[-Ó ŠBÇÙ+','ð3j„¶3‚9R›@(Ã¸ÿØøÄîØÄe‹¸Är.×T','',0,'?'),('?lçÌ?Äõ¼\r85›â','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/PuTTY.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','í¼ã[øÜq´uZ\n\0ÖgÇ','™ç ÚãZÙOÒPt{ §5\"éÜn¯öñ®—E™gÔ','',0,'?'),('?z¿ó7—tf`W	òªlB˜','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Subscriber/AuthTokenSubscriber.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„_} õ£sy¼Ô¹ô1Û¤K','¦&RôÓ»Œ–.ì~b@ž\Z`Õ§ZoYFv\\\Zÿ-','',0,'?'),('?‡¾fÏI¸ë‚•o:D­o','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/bootstrap.modal.js',0,'/—òi¿Ieè}U\\','/—òi¿Ieè}U\\','Ê[v£œÄÕŠ\"ñ1b°^bœJ$%£D¡âI ©q¦=t','',0,'?'),('?/\ZKõca{vk»õÏ','wp-content/plugins/updraftplus/includes/Google/Service/Cloudsearch.php',0,'ÌëPÖ·‰Ò§XŠfo°','ÌëPÖ·‰Ò§XŠfo°','÷]bqî^ßGÆ\näÊÁNÌ±ìfÙ^êö¦º\Z1æû','',0,'?'),('?6åÛ§R_\0YR¦5Nß','wp-content/plugins/worker/src/PHPSecLib/Crypt/Hash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©%\rFîŽ×TßE*aB¥-','ÊÆÅÄOÂêš$ –þ{•Úƒ„Uv„ROÞÓÀbp\'íAÅ','',0,'?'),('?¨¼¦’Øï5Û(µ\"','wp-content/plugins/instagram-feed/inc/class-sb-instagram-education.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rbY»fq’‚ÔŸÆ|õƒ','mOçûz½€\r{BÔ÷Ñ¨¥Ô°ûBÖG9ž÷‡p3','',0,'?'),('?—_ØÙÐtô×ºÃPêý','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/StreamException.php',0,'Û‚th¦0H«äÌt{','Û‚th¦0H«äÌt{','¦ƒî/sGx8\'¾ªŽ1ŸŠ*XŠéÄƒá:\\gÓa','',0,'?'),('?¢zŒÒM>¯€+Î–','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/MessagePart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ï­„Ø*¹ÆŽ\0T×6÷','s¢OHP60é­C€äÒf,ž…µqHSˆœ¡L|k','',0,'?'),('?©½aÄUÅ?„çYöd','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Struct/CertificateBundle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£4fÚÜËÃ:ŽYŸdç[â@',',ú£‚Su\nda ZZüVØ¤CÌûø+q‹¦va¡ìÎh','',0,'?'),('?«ð=²@íMŽ$#ŽP7','wp-includes/js/dist/html-entities.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òëtÆ\ZìÖe\r<Û¶Vi*','ŸeX(ôŠ Èš1”_‡OÒ:[¬ÉÀà[di³t-¶	—','',0,'?'),('?³‡o\'K\\šOj\"Ü¨õä','wp-content/themes/Divi/includes/builder/plugin-compat/jucra-acf-google-maps-for-divi.php',0,'ö&˜Ò~…ÍIÉã ¥','ö&˜Ò~…ÍIÉã ¥',']47›kþÁ\"àÞÚAŒP,ïŠÊ|JR,=°¬›.JU','',0,'?'),('?»u2ïÖÉ@îÎhzÔ‚~','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W‰ù‰·®\'V ÈB4îE','y)¥1QW¿ºocýßxTwò¢Ï	¡©ú®$ÉÖ','',0,'?'),('?È®¼öÌ¯ÔF²™\0U!','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä)Ø0\Z«ãx77Œ‰)7¼ ','ù›°£B_¯µî®pÕ3¿¯rÜÃÖ­TÆAg÷','',0,'?'),('?ÉUË•20€š9—Pw’‡Ò','wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-user-notice.php',0,'Õ³*c¬²ËÆžžšä¨°','Õ³*c¬²ËÆžžšä¨°','LÞy8¹îž.0LtYî£\\ÿ3Í½Í¾ÒJE´Þi_—=','',0,'?'),('?Í„åš™øÅU5GçXõ)','wp-content/plugins/really-simple-ssl/testssl/serverport443/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¸ÜaÌ0ŸÁš¬ø&–-','ÓªƒGDfš¥è‰:ÃÚÈlkŠ#²L+J5B¨Ö','',0,'?'),('?ÐîõŽú3®•/j¹\0','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetProcesses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šDR›Ï4ê ÝåI÷','B}#eïSe8ô)­@Í]G¿oÎÌ»L£ßëá7A0¥5','',0,'?'),('?ÙLáÆÉ »	Ð©é.ò\nŒ','wp-content/plugins/updraftplus/templates/wp-admin/notices/bottom-notice.php',0,'/ÿÞ7Ò¤hðY©$o+','/ÿÞ7Ò¤hðY©$o+','å_4BWIC%óÎýÉçv|IÂ\nŽã¼ÍÔ8×€$9O:','',0,'?'),('?ïø¨Uñz<ïN¼Aà\"','wp-content/plugins/wp-mail-smtp/assets/images/email/wp-mail-smtp-whitelabel.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒ­«Ä»);ž²M^Ë6Ü','4ý*×¸à‡ŸHD¿õ0%¸PÛ¨»Àuµ§0	îÃy','',0,'?'),('?ýÁ~?øàhëíåA¦§9}','wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('@)T¾9êº+|ÑPIð4','wp-content/themes/Divi/core/components/api/email/ConstantContact.php',0,'	¿ým~§ôÀ ôlpðl','	¿ým~§ôÀ ôlpðl','fr/2÷#Ú[yE`Àï›ƒ²úÞ¡—Ý©{','',0,'?'),('@+0DnÐ*<™~_/p','wp-content/plugins/instagram-feed/languages/instagram-feed-ko_KR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÆÕb%ù½Ø/÷*‹GR>s','Ë?:ÓÙ&zU6`zžÓ1¸ÓRö ®^rß ‰4','',0,'?'),('@=Nš¼‰ýh[ñ»C|','wp-content/plugins/duplicate-post/css/duplicate-post-options.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')aì½‚þå³qY™ú}zöw','ìGLü^è‚“›ä><dµüÂU¼tÒ†\\ÆèR©qæ:O','',0,'?'),('@@Í´ügcŽÓ@ÕÏ˜s','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/Parser/S3ExceptionParser.php',0,'‹æÂàª¸²vÏ,Ù6üc','‹æÂàª¸²vÏ,Ù6üc','m)Ï,-óVç‚nzDuÅÌÿÎBã“=4¹žXÁ','',0,'?'),('@N£°ñ”¼jªØåË','wp-content/themes/Divi/includes/builder/images/stats-no-data.svg',0,'@wÿ=Åí«Õ4j-‘¦$+','@wÿ=Åí«Õ4j-‘¦$+','4µÕ¾‹ƒœŸÈªé\r˜¯Þ\"b‰òí½*u·LB','',0,'?'),('@UÕäBÁçºÝ\0@[Wq','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListBucketsIterator.php',0,'ùÆÜÇ)cÄFºä_%£Ñ','ùÆÜÇ)cÄFºä_%£Ñ','`œ!\ZbeXP÷ªAÂxHÉÉ÷ÄgUb¤ÈoýÙ‘Ù','',0,'?'),('@VÐúK$~`*•+c½0£','wp-includes/block-patterns/query-medium-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôŽ%˜=Ë?6CSƒRñ','ž•\"=I…PÚ)Åo—¾öEÀ¿\0²ý0r&ý¬µ,','',0,'?'),('@Vó$õKÆçò<Þ1*à¬À','wp-includes/css/jquery-ui-dialog.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äÑS`ôîÚ7Ñƒ¼-–','j¸&‰Ò°ÆM¤˜£”ÃÒu§@ÖÃ6L}Õ5«Óã¶Ë{','',0,'?'),('@WyH+þ‚‰©í-uuï','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/ServiceAccountSignerTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„BÂ®Ý÷ÆÇ¹Ùºxp-3','^÷‹ø\0{øÞ‰CÝ/NÞ\\\\çYÉ˜','',0,'?'),('@[sa–P÷ªEß¦þ®','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFileVisitor.php',0,'—%ôk7Û»­ë+ÿ¤â','—%ôk7Û»­ë+ÿ¤â','íÌhË¨d¢0¯È*…U|›²\Zß7!sJËÌ‹….','',0,'?'),('@]ÙÃ­\\á–¡0 Ù','wp-content/plugins/worker/src/PHPSecLib/Net/SFTP/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('@h;`P6qæn),#³a','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoLoggingStatusForKeyException.php',0,';†U…MXô§ƒè++=ÇÁé',';†U…MXô§ƒè++=ÇÁé','WYÀŒË£ÍWÑÊ¢±V—Wi½š‹èdZÓ“8Ÿ*T\nÝ','',0,'?'),('@hë³¹¢3÷×z2zl','wp-includes/css/dist/edit-post/classic.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õTê6Ú\\oÛÑuT‹.À4ô','Ïî}®æ÷þZÈR1÷Ã «Ð¿õ6×¤wow¯Ð$ÈP','',0,'?'),('@k/ Á¡ŒæI‰?T,','wp-includes/js/jquery/ui/datepicker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[\n$ö²çÜUeÔ­¼Š™','Ïmß ‘Åå–2®ýÛ0}E7^Îqåefmª‡ôTé','',0,'?'),('@t¬Q .}Õ­la+','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParser.php',0,',¸¹™òìO/ŸÝ·ÆÂ)',',¸¹™òìO/ŸÝ·ÆÂ)','ðŽ}U¤Ñbf|÷UUÙ¦ÓˆÊå)†ÎfG[€9þ’™â','',0,'?'),('@€žÌ˜9Š#¯LÃy(ÐÚ','wp-includes/images/arrow-pointer-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wŸübãÎ‡*L«²Ã[»ù','ÝÂÊåfbÏZD1.üºþVìæawÆ4l?ÎñpäµG^Ç{','',0,'?'),('@Ž€.Î86‡ÔL”°Þ','wp-content/plugins/worker/src/PHPSecLib/Net/SSH2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Px)ë\Zj°’)ìt\0X','†qPþ¦È„pÎšð?†½´Ü;&«hâQîK','',0,'?'),('@„t/A9°úüŠe÷I','wp-content/plugins/fusion-builder/inc/templates/options/raw_textarea.php',0,'•‡@ùÕf é²\0=»î•U ','•‡@ùÕf é²\0=»î•U ','!/b—úü©¡\"£mã#Çæá–=è ü5oT‹9J%b','',0,'?'),('@ŽÁ0Qe§t72„»','wp-content/themes/Divi/core/components/api/email/init.php',0,'ï9SçŠ/Z)Ÿ]Ô<¾','ï9SçŠ/Z)Ÿ]Ô<¾','Õ|êˆî4,k{3@nÜ`}\n I8Âß\\fâ©É«','',0,'?'),('@˜ð˜ªné”‹/3„','wp-content/updraft/themes-old/twentysixteen/inc/customizer.php',0,'µAûOüƒp\"m\\«t_O','µAûOüƒp\"m\\«t_O','å©Ò«<:´’(&3hxõ­U!Á,K¤®ø£','',0,'?'),('@›K°Çzb¡8­\'.Kk','wp-content/plugins/wordfence/css/wf-colorbox.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PX)p!ƒ¾N8¦j­Œ','o©t0³\r™P2¡è±N¹­óæéiÌ×ÂKæÛu¤àõ','',0,'?'),('@Ÿ@÷·M­ŒeTŸ,Y\r','wp-content/plugins/wordfence/modules/login-security/css/admin.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓS¾:ò”ÙWÓÝ±b','”`¿ÅÊ‚w†Ù\'·ÐJ^í8V–hÓo7„cú0','',0,'?'),('@ †Lýùð¥:“ª¶(¸¾ž','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/psalm-autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Øp†é\0Ô6¿&¥	ª','uj¿®vÀä—d_îàáù­=\nÞ2fY+ ‚V\\©É','',0,'?'),('@´†C¹¡E\'”OËÀªú','wp-includes/css/dist/widgets/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³§ÄÃ_R¹ùj°	°','›]Aîk­†ŠÌ´.’8	aS%þHKŒò1w','',0,'?'),('@¹à\Z!z‘žråÊÙWžÈp','wp-content/plugins/wordfence/views/waf/option-rules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É)\0€Qé¯N²É#$|ð','‚¬t¢Ï·\0\re(xÔTån¶Þ_C³Q–Ç=ŒðK2U“C','',0,'?'),('@ºXD\nÃ\nRN†tëÍÓ','wp-admin/images/menu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á\r9#‹dóY`	Œÿ','ÙlúÈIE/(¼p­–\0Òpnó‹–T-O¥z\"],=`ï','',0,'?'),('@»7o÷€;{ÿ˜ÖÎ ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/OperationAbortedException.php',0,'¥+M`c÷}êÛÎí','¥+M`c÷}êÛÎí','úƒ‡cÐ8á¿‘{øÎqrÔXw¬iØJõ%ÍÂ·»þ“X','',0,'?'),('@¿È¯îÎ&Oñoœ‡î','wp-content/plugins/wordfence/lib/noc1.key',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9e¤b\0æÆPOŠÁ¾…”','_Ëu‘öájëÇý‚ÆúPþþ-KOAƒÜ«œ¦ÛÖÓ','',0,'?'),('@ÁÝ¬|Ÿ•x7ø›:½À·m','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DenyRevalidation.php',0,'Ðßw5yØÑïw¢]bg','Ðßw5yØÑïw¢]bg','5«œ¸ˆº5Œª¦‡ŒÚÑd±Nae^Gªü¡•à','',0,'?'),('@ØL½Öß¯7»Ù­kÙ‚E','wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`3‹ñ0®h~¦Ý»ÙéÐh','àZR\'ÃÿéZüwµ$ßƒÕÉ_ÉxTê{-`¿Ç','',0,'?'),('@Þ;5‹XõñV¨”OÆZ','wp-admin/images/mask.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üö“g~¨\"æÒJ÷²ä©Ž™','êž×/<sÄÔ¡ã)Ý\'‘.®1ÀjknƒK9QîôÉ','',0,'?'),('@àhºÌ*ÃÿIWÚ¿‰w','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/jsonview.js',0,'Áª5©»ŒA\r[Í‚$','Áª5©»ŒA\r[Í‚$','êwFÐòŽæ”YŠ˜sP†\'F®Q(òÊRgÎ>yë','',0,'?'),('@èm¾·ëÅOÅÝW','wp-admin/admin-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²èÓæy×XâÕk¶*vº>','n ~m6œ¤¼áƒë¡q¿ª2Ø(vUqEæ','',0,'?'),('@êtÜR>GœHhÄí×¡','wp-admin/css/revisions-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß1–=ð”ÍÌa™-†II','7GóV¨õœÞÔ‰Í¦E<ìÖžÔx™Z)©Ä:š%','',0,'?'),('@êêsÚ@/fÃDSóÁ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php',0,'Ô/üOAIæÎ—ÕÇP','Ô/üOAIæÎ—ÕÇP','Á…·š(Ò,?LÎxkøµ3˜§IÀHh£]qÙW¥ù!¢','',0,'?'),('@ôCÿ€k5ºV82tF;BÆ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestTimeTooSkewedException.php',0,'‡ñ‚+ty\"£ÝWoM¦?Á','‡ñ‚+ty\"£ÝWoM¦?Á','ð‰‡;iÝ¯u].\"«õl²ñ›€—WFX’Áð Ž>','',0,'?'),('@õ_÷V²\n­¢äó^x²…','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/extension_vendorsupport.php',0,'o¾UE\ZE§rºshú$Ø','o¾UE\ZE§rºshú$Ø','žß£ÖEì-w«+gÎ³ÙÙóuOüø­ûù¾IQ9','',0,'?'),('@÷sZö”^™¥Óèqv','wp-admin/images/media-button-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#ÛWIå…\\¸Ð?ÈÉ','Ÿ<ó‡:»ðtn½kbíwiÝ&Œñ	¸È÷R¡µÕí\Z','',0,'?'),('@ø‘+âTÎ„\'··¥Ù¤','wp-includes/ID3/module.audio.flac.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îê¥-Ó×œà /fƒÜT‡@','ò_däÿsÖ`CíRo\Z-ÃóY/–X{¸§BÆ›Ã,Oæ','',0,'?'),('A­lA~i^˜‚›éuÓÃ˜','wp-admin/css/customize-nav-menus.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ò2Hr,O@ô¦Ö\Z.','4\'1z¹’Ä3²u{Ÿ\rf’\"æ ‰ê7’\rÉ”^^','',0,'?'),('AÃKr×ÕÖFpþ¨Ö\Z','wp-content/plugins/wp-mail-smtp/assets/vue/img/smtpcom.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+üiãíS»?Øf³Šì','Vº×Í{Ê‘KÚU:Ž¡2È„©Åi‰@¾TöZEÀ','',0,'?'),('A#Å>\\@ŠO¯âªâÊ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/mode-html.js',0,'h”[ÉŽ„›òªÆÔÒâª','h”[ÉŽ„›òªÆÔÒâª','øsóQG4»öZ×ù	U° ÌtË]6M æp”);Ò','',0,'?'),('AÑZo£‘~¢¹øò»','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âØ>TýB ¶°®­ßz”','šuZ‰!¿±Ñ“l”_e)È‡üêüˆ‚\08¬÷¥¤ü','',0,'?'),('AE¶ûô[€`Œ·•','wp-includes/js/thickbox/thickbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÒÚ|}Ê\Zc‰%Óî9j¤ç¨','œÓb?/a#›×¼Áhlƒ¿’‡€á†Ï\rkÇäŸð','',0,'?'),('A&˜»n“6~9o+ F«','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/UploadPart.php',0,'å)ƒÐ)›\rÝÏb¬?â§ïð','å)ƒÐ)›\rÝÏb¬?â§ïð','¡–m97†+Þñ›U¡ö†ŽmÞ‰g³ß•Pej0EdOñ','',0,'?'),('A(¡·Ý’_;Ù}ô]©ÁæB','wp-content/themes/Divi/includes/builder/plugin-compat/imagify.php',0,'\\±¢b%äì_>÷ÉJ•,','\\±¢b%äì_>÷ÉJ•,','—Áê³|[ÚWÉ„´—¦\0\"ÉkgÇSØÁz\'Fñ*R\'7¸«','',0,'?'),('A+~/JÄ™4€¸ó$Y*ØÓ','wp-includes/block-supports/spacing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï2…wM“ÓŽA`Û¿bkP',' …4&x´¾R‹Qã•Ä?³³‡ò4~\"v,Eöþ>N šT','',0,'?'),('A3U^7×\\õ,WÖtîÔ','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.hoverintent.js',0,'KIXÉ.}æ\0ä@¡ŒhÈ','KIXÉ.}æ\0ä@¡ŒhÈ','UËÅO¶4ÅYjIWÚÓëã ŠäŸ‚œšÕFhÇÃ™ë','',0,'?'),('A55‚ö\nE¾Û#U_ºÑœ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/codesample/plugin.min.js',0,'ã;´D;òªø&ÇDIÓI','ã;´D;òªø&ÇDIÓI','	nµÔVGT†_pé,_6ä‡”)Õi¡í9—Ò','',0,'?'),('A;Øª\Z¼¾–Ü¦ïz«','wp-includes/sodium_compat/lib/constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Á½¼ß{â»#…²lÅ>m','¬æÙ¹mc(ÍlÚåû\'ÑmtÛË£•[”Ìg¹èW','',0,'?'),('A?Oy¥›A¦Ô/Zãó¶<','wp-content/plugins/updraftplus/vendor/composer/autoload_psr4.php',0,'fî!¢bŠ}^p´¥Kk)','fî!¢bŠ}^p´¥Kk)','ì³mÇúHÞd¬ÕG•B\\$Ÿj0ýò]O;s&','',0,'?'),('AK<¬ËÒj§œgsrã','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4¬•Kb(å\\Þóp¸B-','ç•Õ³* Ê°	¶ä†[qŠ¦ËœPˆæ‚ôk','',0,'?'),('AT©öÔ{n­¤ÞN]Ö','wp-content/plugins/updraftplus/includes/Google/IO/Abstract.php',0,'ð;ŠQžJ ‚?`?$2r 8','ð;ŠQžJ ‚?`?$2r 8','óC	ágG[|´6Up=B÷¹Q±¹X[tÆÐ$˜•','',0,'?'),('A\\­ßÞ‰Î¤êÏ×o2','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯•o¨Žt+\"?\0Ï‘*œ8','1=üFÍ±x×guñf³f\n¸díçº¸ÂVÄÞ×ù','',0,'?'),('Aa÷@J§÷óñÂ×Å·','wp-includes/js/tinymce/plugins/colorpicker/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' C¸ÃÈ­?d„{×­V…','¹‘µB¤êR¬\0¨!—ä„š™ú§á•QšŒ®Äï­À\'5w','',0,'?'),('AféR@ÑVÅœJºjáâ°','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/vendor/Parsedown.php',0,'«Äo\r±ú<à	‡éÃ™A','«Äo\r±ú<à	‡éÃ™A','‘Gy €qYœy¯Kž0ÝIªßy_‡B©{#UŒPî','',0,'?'),('Agø#1‡ÃÔí„V]ù','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/Credentials.php',0,'Ü‹sÙÊ™U6¼èaZN','Ü‹sÙÊ™U6¼èaZN','-ÔÀ\\=Ù¸[¢üÃò9Oì~å%ØMÚ\nÃ‡ú3Û6:n','',0,'?'),('Aoÿö$n˜¸“KÙœ2òš','wp-content/plugins/wp-mail-smtp/src/Admin/Pages/MiscTab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åÞ*¾hÒX\ZÕÜB8“ü','Á@÷ëa~K*¢2œa¥Í‚HiçrØÐî¾Í F','',0,'?'),('Asºvü÷îù‚g“4UÃ','wp-includes/js/dist/nux.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´i9û‰œÛ_!¼ól-R','sÔŸÏlLÍ¸!ô#±¤y,ÌN)h¡©XLq0wbï¨','',0,'?'),('Aw©ÉŠBŽÇÌi¸Ñâ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/OpenSSL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú	°«üÙ\Z8}äøâ]¦','ÖcÌx‰A¯mÙÑ{¼:0¤;.¬Ú«GÛr ù','',0,'?'),('A{&Ï Š¢V>ì²Îs','wp-admin/css/login-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ra#Ë¦\n!ÐùØòæ[','E•9rÔ,hsqŽa`EÚ-Ê–£µÿ F;ÊÁ@(gŸ','',0,'?'),('AUÞ2jÄà+øëÿ','wp-content/plugins/worker/src/MWP/Event/AbstractRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÎCZá%€@­¤&”ÜÏÛ','tY„jï‰AqDÂýg;@ƒ²ùo;¯ýÐâ¤\"ËNm','',0,'?'),('A€u’PásÆaUs\"','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferBuilder.php',0,'_AS¯¸±xÜÛçñÚó€‰','_AS¯¸±xÜÛçñÚó€‰','‹ºõ¯6k¬Iê€±AÍŒšeºL˜{%3Çøµi€:¶','',0,'?'),('AƒãŠ±´2i\\¼¢','wp-content/plugins/fusion-builder/shortcodes/fusion-image-before-after.php',0,'–ÎzçMÐPE Á+^¯7?','–ÎzçMÐPE Á+^¯7?','&•M0Žl¼=¡²³?¾Êô•ú^Ò×®÷‡‡ÑÚ','',0,'?'),('A‰à{‚²qSFìøß‰','wp-content/plugins/wordfence/css/phpinfo.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ÅëQ÷Øæ!…0w/¨è“´','Çýýa@|­®I\r=\Z^ÎµÂd)ˆ[¶¹ø†ÎW²å','',0,'?'),('A¢É*èFM9HðjÕ\n','wp-content/plugins/instagram-feed/widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2–M‘!B\n‡€R×âjU','¯äŸrñu;nw<{J9½wjLì}ˆ»Ö†ŽDßŸJÓ','',0,'?'),('A¥ï8V, _OÁXä4…´ç','wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ>5R7ç±ÎLì\\','¤ßÁÅ_ÿÛãJÒ0D@`·Gû’¾Îx,‹3\r->','',0,'?'),('A¼HÄ\r¤ñŽÈ7ó\n^QÝ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Íþ7 ›{öÊžxÂèª','zÅ2:ä„A!¾ê¼êyè.F	ÜðÁ™ßPfzPˆ','',0,'?'),('AÃ™Â}â¬ ´¯–´”','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php',0,'ª	ÌZU\\úÔ#En(P°','ª	ÌZU\\úÔ#En(P°','s4ÝÌý¹©:Wúü}Ž…Çu¨˜q;q\'@zNFÄ¾`³¾','',0,'?'),('AÇcŽ¢fIÆÅí1Ÿ#','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetEmailCampaigns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cà´áÚ+Œ#¬5¥j6Ð‹f','¥\'»’ÙÇ“ý¾®Ê¬§%ïÇ#Áäé/ÁjºäœAL°','',0,'?'),('AØ»#¨²¹\"óàÅj­','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šºJ<1/%$ÇJþ=Î”§','ŽØv‰íæp	eKK²7Ýî9š†÷8¢¸úªö±Â­”Ñ','',0,'?'),('A÷·m2¸:á`cÎ™=2ˆ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/BlockList.php',0,'Ø{©úôžð·—ëÙ>ïÅU','Ø{©úôžð·—ëÙ>ïÅU','¬yd77~ {\0N&¬GW«Æ€†‡áMÐÛ\"BƒÚ','',0,'?'),('AøLhžš£\\>Ó#TaÅ','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Int32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»³3·¢NM[Ü/à\r~H','‹ñê‘ræWû†¿Q@x[1Û ìÅò*o¿9Ê$£','',0,'?'),('B\0””/ÖI6{Û&É\"¾å³','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§Ú\'¢÷hÕ/ª;¿\rÀÉ','¶ÜÜYÑU-ÝyE8ŽdUnH4®H3Š7Dn‘ó±%è','',0,'?'),('B^æÇt›p„k€Œòÿ!ú','wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RÙ*LÓTGâé4%P‰´¹','-–‹ÙÖ©nFJ­&TÓP•o\\Ï“\\Ž¹¿æ2–íß','',0,'?'),('B]mþ€¢»ZšKÏ_Çhn','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/QueryCommand.php',0,'GñÀHÞ}l	g¾õ¥¼','GñÀHÞ}l	g¾õ¥¼','•ûSG°üžWõXò“¸í“Z2‹HD³Læˆf4µ','',0,'?'),('BGF@ k+Ñ“ƒ<«sÞ+','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/VolumeTypeError.php',0,'óù>ŒÎ~ò¬@±·ãJb.','óù>ŒÎ~ò¬@±·ãJb.','» %èŒüC/þ’j.±E¿;.3‚[¥8Ñ¸ã>ê§','',0,'?'),('B\'¤LlÏ\nABÄK`‰?','wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty.js',0,'¯Âª/‹9¶ñT»¤9I','¯Âª/‹9¶ñT»¤9I','òš‰Ìµ–§7Ž\Z‹ìÄ†œº8lÿ8äN£-«×ò¸ˆ9','',0,'?'),('B/*a\'Û‚>4fæÀ u„','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/HashUtils.php',0,'[<a®ua_%§›§­P','[<a®ua_%§›§­P','ó¨Àý‚®Ø%|<a–“ž¬|F]i¸·GLˆœ`9','',0,'?'),('B5A1êíEAg3ñ€Ëík5','wp-content/plugins/updraftplus/includes/Google/Service/Datastore.php',0,'}†¾v¸ÆˆZXñ†ÑÏ_Å','}†¾v¸ÆˆZXñ†ÑÏ_Å','±m\"¯¿µOL˜(ªÃHyÀŒš@|ýwë0úê¹ƒ\ZIƒ','',0,'?'),('B?bÝÌ<”«†æmÕø','wp-content/plugins/fusion-builder/shortcodes/fusion-youtube.php',0,'âÓ1þ±‘+6–>$‰','âÓ1þ±‘+6–>$‰','  Aõá½Yãú^éÁM/ *8§Wì«îlÎg6ts','',0,'?'),('BG–—;Š$‰Ñ¥Sä(ª ','wp-content/plugins/instagram-feed/inc/admin/PluginSilentUpgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ‡é(€¥³\n_%\\«d¤','“ãhHØÏqÃø¯Ê¸Í°§´$è(wŽŽ¸Ô„€','',0,'?'),('BG·}ßÁP½–÷ìëÄˆ2t','wp-content/themes/Divi/includes/builder/module/woocommerce/CartProducts.php',0,'å‚N¤ qMyÉdÊƒ‰Øó','å‚N¤ qMyÉdÊƒ‰Øó','\rtY…½&ÀhIÇ½/ƒgêb!ò$ƒE$¤š±','',0,'?'),('BJ’„O¢žä¯ü†zD±','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÍÈ{ö1¬MRœKE_ßú/','|qŸUUÑ¿ÃŽ|z¹G>*“Ûœ\"‰éæI¢þÝ;ƒ','',0,'?'),('BTIb›¾ºNÊ¡a²3b','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadId.php',0,'˜ªÅƒÔo —s}Ä\0Rì','˜ªÅƒÔo —s}Ä\0Rì','ÿQ†\ZŸë\"Y¤ü³uk^QQY¶±¼kú‰™êŒy1C‘','',0,'?'),('BUj”v\\Ñ£â•ááè(«','wp-content/plugins/wordfence/views/common/license.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨è°:8õ´šÜÞ^¢r','ÏfòB-h‡Ÿ¾™í^È>Aãïð”nH0Ã\r&Ëó','',0,'?'),('BWlìLvñh~^ÔRH-W','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/tab-bar.php',0,'p*îß~N˜h±Aúa9','p*îß~N˜h±Aúa9','Jñô1ƒO¶™„\ndømO–³Æ²B\0cM5_QRò‹%z|ä','',0,'?'),('Be*ïÙ&lÓÚÅ*jªˆ','wp-content/themes/Divi/epanel/js/functions-init.js',0,'¨ÒóHMzˆ[Ùz0','¨ÒóHMzˆ[Ùz0','6‹eá:5. vt‘wÓ¶ZCm¦ä;šàÄäs§gí(^','',0,'?'),('Bl¾><l±ƒùûôâ?¥','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/extension_vendor_support.php',0,'d®Ž†ÜÜ©¬ì’·Æ','d®Ž†ÜÜ©¬ì’·Æ','ùiï·³V!Zý|Ê­q|\'\'g0ŠŒü6ÇFÖ™e‹','',0,'?'),('BsÌãŸå¡˜TÁåôßLí=','wp-includes/blocks/calendar/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Û©iw’hw„Z–1','5v—‘šÉ­<ÿ%ä¢UÛíB#Á Æ5zh]Ö ','',0,'?'),('By&\0ºŽˆ(­nFTàã','wp-content/updraft/themes-old/twentyseventeen/header.php',0,'p¡tºC¹€w4§ëŠ‹ÍWk','p¡tºC¹€w4§ëŠ‹ÍWk','¼üS7/nQG…®)¸5ä­i„zÊ©Ô‚¿îAx','',0,'?'),('BzÞ)œ¼¤W@ªrý<i\\','wp-includes/blocks/query-title/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 0o×Ô®ö<„GTw8','³¬®ÏŸ?®ó˜Éj¤˜íA’>V\rÖ‹ouºØÐ','',0,'?'),('B{\n9cÛ&Nô‹èk´¦','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üÎD\0ß­Ê‹Jä`œ¯²','jBî–>¸\"UŸºçm¡›Ç\0ÍÈØx./²½ƒyo:','',0,'?'),('BƒEÐâÍÜc~á£‰ì»','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/StringAsset.php',0,'ªj˜âTó¹WM¿IúMe','ªj˜âTó¹WM¿IúMe','ñ”?ì-ÛyeÍP£/…#Ãõ³à˜ºˆµ‘¢öÚõñ','',0,'?'),('B†¡j„)ßÐq¼DŠS','wp-admin/install-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€‘WêAoq‡+C2XdÄÒ','ãW>¤;šç%Ö6sÇ%T‘ë¹òvÎèª#o(Ê“ù','',0,'?'),('B‡TƒMe$ÓixåÚð¬','wp-content/updraft/plugins-old/updraftplus/includes/onedrive/file.php',0,'àT Z æ$L.\\.\0å%8ž','àT Z æ$L.\\.\0å%8ž','–ù.s3æàg¼/Õ S08ã:€S˜ŸdáSÄ_TÌˆ‰','',0,'?'),('Bˆ\'Fâ$$`ö®­‹D`','wp-content/plugins/worker/publickeys/partner6.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µàyùáÒÀ½¬','s4tÖ¢?=ãCô$£ÙÐCÑH¯È“šbÒÞ·R','',0,'?'),('B|Ém5^Ÿ“z+s\0','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedVersionError.php',0,'ÛQ\"HÚðÅþqyDMíB•','ÛQ\"HÚðÅþqyDMíB•','c‘MPÔïJð=­@…HšPZÒv*†Q[ú‚úðAõ¨','',0,'?'),('B¼èçn©ÈN—JGº','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/UploadPartInterface.php',0,'®>–­Æ×ßÞßÇø','®>–­Æ×ßÞßÇø','<mfõ²‰x<µ²~´ê_ªræìÀAÉhÉ\0yòò­Þ','',0,'?'),('B’Æðêý¸ñ>ò&Î:`','wp-content/plugins/worker/src/MWP/Configuration/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('B“ÔãR«éµ…9§Å','wp-content/updraft/themes-old/twentynineteen/inc/customizer.php',0,'O‹@ž÷†g:CçTÔæÉí','O‹@ž÷†g:CçTÔæÉí','z;nÂÂ›’¼™pÃ»–»a©š]OšN–½­	ŠB','',0,'?'),('BžûõQÁ¢ÓaUÿ%','wp-content/plugins/wordfence/views/scanner/issue-knownfile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','È’»SdË9Q!\ZÁpç3½','ñ.:ãû éÂù2î« KS1ƒvGüHV','',0,'?'),('B¡§ Æ1J$NÎÅ+DG','wp-content/themes/Divi/common/utils/color/color.js',0,'˜E»ÞkOÃÉÙ×Ò','˜E»ÞkOÃÉÙ×Ò','‰ŠjâjïËÇ³°ò;Æ)±ž(B(rþÄ¶Ÿ\\W','',0,'?'),('B¤¡š4ü T÷{âA£ª¼','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/RedisHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?* ³™¤¬ïbxF<ä','Ùá\'XJZ’S=žïä€Æî{V‹;d§òmŠ{‚','',0,'?'),('B¥ÉU¸Šíß*ç0 ƒû—¿','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/HashableInterface.php',0,'ZaÞ<Ã£_š¬W¡SX','ZaÞ<Ã£_š¬W¡SX','µÎ,^EvÇ+œ”èŸ¸¯–8M\nÿ“n¯ý\0A»–“ø','',0,'?'),('B´à‰&ÖäLDÏñÃ5×²j','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/sortable/field_sortable.min.js',0,'¬¤²\Z÷—\0öaÚŽ¤4%','¬¤²\Z÷—\0öaÚŽ¤4%','œ9¹áæ×ð¾3|…3^ÓJ»kA.‘±QCc€Çy','',0,'?'),('BÍzN/ß…“ö®Ã','wp-content/plugins/fusion-builder/shortcodes/fusion-woo-featured-products-slider.php',0,'ÍSØ«f¥qøœQ{ìá†÷','ÍSØ«f¥qøœQ{ìá†÷','’?eV­ä¢-ñ3ÃÄ>žP8âª˜GÔI±#û\"Œ†µ','',0,'?'),('BÏµ‰ÈóH@xª¯/','wp-content/plugins/wordfence/waf/pomo/po.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œvc+p*Û\"G–¤?õB','ŠMO(‚ÏÎ G\rkHÔ½²eqÏæ	ÃÇˆšFÏoë€OË-','',0,'?'),('BÏårîçA¬«6M–','wp-content/updraft/plugins-old/updraftplus/includes/jquery.blockUI.min.js',0,'›’§Ø-\"¾	“\Z=ÃL','›’§Ø-\"¾	“\Z=ÃL','i¹)M¥äç	¡Õ|JoC±Çf÷.P$úElg`­l(','',0,'?'),('BÚ¥Þã7¾­qõg¼ÿD','wp-content/plugins/wp-mail-smtp/assets/images/flyout-menu/lightbulb.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b½ò¤\rPˆþIj¥ÊäJÛ','YG_¶50Ì@/ÁÒÐUK™5GN°Ýý%oÇ±¬²Î','',0,'?'),('BÜrŒðIÜu)ìÆÇbØÀ','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/PlainText.php',0,'¸`|›Çá2¡Ój²?Î3','¸`|›Çá2¡Ój²?Î3','ú‰òòêßŒÿË\"ª%=¾åÑœ/ÈÁœ^6ZËú½Yg','',0,'?'),('Bß_d„,‚FÏS¹@¿P†','wp-content/themes/Divi/includes/builder/module/settings/migration/EmailOptinContent.php',0,'9ªZg…¤à°ó¶ç2<†ÁÃ','9ªZg…¤à°ó¶ç2<†ÁÃ','zÎ(=èäœ¯òuš†eC¼ŠOdJÉ£\\bØøò”','',0,'?'),('Bß»à\"çGm¹Í:wÕ1H','wp-content/updraft/themes-old/twentysixteen/sidebar.php',0,'¹cÐŽmO²WÈqoæ(','¹cÐŽmO²WÈqoæ(','CÌ÷¡©ãoCX RÐ¥ßîO`Æ»ØGÍ9ÿñÇ\n','',0,'?'),('BæºP‰X¡WÌã6éË','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' õQAäL›’Üóšœ†Už','™ÜÕG±¤\n<.\ZW‡r´Ø£ÊªÇãÃ˜¢)','',0,'?'),('BóþZ†*RG…N ¸º}¯','wp-content/plugins/contact-form-7-honeypot/includes/images/honeypot-icon-large.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§áí {å€ÓBÍö}3ýš','ºnB»ð‹ULl?>.Û§‚›±Ø\0­1ö‚\"ð	1','',0,'?'),('C\rv,àÂd}š yºÔ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/php-opencloud.php',0,'ƒ¿Œ‰ÄµãÖœPú´üb','ƒ¿Œ‰ÄµãÖœPú´üb','ÞUªT XpÅš…ªÿºd8wy>ª8ÇˆŠT\r+x(’”','',0,'?'),('CDïìEæ‰À‹Êõ‰…','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/DoctrineCacheAdapter.php',0,'}RÁDŠÅjÆ»­dž@ˆÐ','}RÁDŠÅjÆ»­dž@ˆÐ','Ž(t<M¨®ÁAË®©~?$ ÞÐšÛ˜\\™Ï2ËÂY›9','',0,'?'),('C\Z‘îO÷\"¼ÒÆvã!¸º[','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/NotifyingBatch.php',0,'·Ó‘qühj!$¹:…•EB¥','·Ó‘qühj!$¹:…•EB¥','})’!Hs6sú\'\nØ¬u?¯aXK)–1Š°à€–p“f','',0,'?'),('CÜ mŸÊ•íù	üW¥‹','wp-content/themes/Divi/includes/builder/feature/ClassicEditor.php',0,'êÌ)!CJe\0ì)M¦TuQ','êÌ)!CJe\0ì)M¦TuQ','\nÕ``$¸ƒ·9qçùÈ$7x<C|½,:#liŽçt','',0,'?'),('C›³•²	öëfj_ÀÝ‚','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/SQLAdmin.php',0,'^Ó¡–¼‡(=lÏ5ŠÎŽU—','^Ó¡–¼‡(=lÏ5ŠÎŽU—','î~Œ¬Á#Jž–s\nà,Û”8<n›jþº„et€®F','',0,'?'),('CC#»3¥¯¨ÂòÃíòÙøê','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp112r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gƒì1‚•g¯FaŠ[);â','\ZŸü=Çl„Öãw¢¥õE\\…ÈË%}©BÎiíìêošÀ\n','',0,'?'),('CKë©J¼Á6LAMÌkV','wp-includes/blocks/post-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EP¾Å^úá¥ÅÖv{','É«”Ê´Œù|Çñnsé‹ºä‘@KgÄ?ª]ß³ysQý','',0,'?'),('COmŒ–TÕ¶VŒaXò=»','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/qtip/jquery.qtip.min.js',0,'apú\n?°lû0êÊZ','apú\n?°lû0êÊZ','&ªƒh	÷Ó$\\üÍ	. &ê ÂiE:›ü×xKŒ','',0,'?'),('CR(LžNDd‘r!”j','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Gmail.php',0,'/|›h!ûÚŽ„ë\'ï‹Ô','/|›h!ûÚŽ„ë\'ï‹Ô','pþÂ‡£x›«a^ç½u‘ôC/UÎÇ/áòF¡ëú`','',0,'?'),('CRÂ\"l5uûŸØ<y†·{','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultResponseParser.php',0,'O¤Àþj°jb‰wX3','O¤Àþj°jb‰wX3','•°Õ@»\"óæUšsûXìW5‡&qVŽèH†Oýr®','',0,'?'),('Cb}ºãÉ	îˆ*“c','wp-content/themes/Divi/includes/builder/module/field/display-conditions/Categories.php',0,'ØÜ}‹cë%æ7»’±Ø0','ØÜ}‹cë%æ7»’±Ø0','†û0Q[2Â|-óÜkÒŠ‘eL†»(ø RkCWÕxIC','',0,'?'),('Cb¶€´n¯”û‰ñ!2','wp-content/updraft/themes-old/twentysixteen/js/html5.js',0,'^é{1P\'Ú`î®âàK','^é{1P\'Ú`î®âàK','‡R³y1N…hu¤Â¿ëžÏÖI}€Øžöòñ)i','',0,'?'),('CdÀQ…ß}œs÷_Zþ $','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseUpdateError.php',0,'=¶Óeôæ@ÕM=&ž;ÓÌ','=¶Óeôæ@ÕM=&ž;ÓÌ','«ª:½Úñ˜KÐ¢¼¢îçA¶?¨¶˜ßy?ˆMð|üL2','',0,'?'),('Ci‰ë=}€\r˜ÓÜj9V','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/ServiceBusSettings.php',0,'§œEI&D4ÿ„7s\"$','§œEI&D4ÿ„7s\"$','£§×4]ƒá­Ünõÿ7ËvXŽ²Ù#o=<ì-­','',0,'?'),('Co+Jã&‰?¸ïƒÇ—b','wp-content/themes/Divi/includes/builder/plugin-compat/siteorigin-panels.php',0,'HÀF$s5^FmBÛÌý','HÀF$s5^FmBÛÌý','$É âbGX.¸q\ZüÖn³U;éÓÚ:ã©µh‰ú %','',0,'?'),('CcèˆiF›×hè.n7”','wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŠRfÓ0«ž\nj\0i<·W¼Ž','NZØ‹)_à¾Ÿ)IƒñF`[<úK¬ø îgmÌ³','',0,'?'),('Cƒˆ€Ï ±Áâ,Bz/1¶','wp-content/plugins/updraftplus/includes/Google/Service/Spectrum.php',0,'ïÖøFå\niˆ•ýqõ¼','ïÖøFå\niˆ•ýqõ¼','ß#‹2Wò—{”îakùT˜ƒc\"#ªNÞÛÕ	t¹\0gŠ','',0,'?'),('C`åûÚ’z\Z§[®Ã','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/Barrett.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_²{E#ÚµŽ*„áoT','«e~+x*šÏZsoVÜŠã™¡6S†¾®ˆÀ/•+Œ»','',0,'?'),('C‘»ÔIþ»ÞS7ï<','wp-content/plugins/wordfence/modules/login-security/views/page/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð¨>\\g®ÉÇ¡á$«ÌcÆ','Ê÷„ii¶›G«CªÏÅéN€FLÎ)7%Ê™æ','',0,'?'),('CšÀ†Ô­w«òùRGÎ>','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/select2.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'¹q’m^§S„K÷p','c:—B¸.Ñ5¤ÿgå%aeéª[#M¶èÀR3','',0,'?'),('C©®$,íN ÌJûn&ž­‡','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Abstract_ListTable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·åàá¾‹5‹S¼…$±ìÞ','HRz«øs®~ÜðŽm	Ø	mLPFŒ€ŽØ`çx¬ ŽÖ','',0,'?'),('C­ms\nÃáXø]ÀÅK’T','wp-includes/blocks/search/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸ ³gÌA·ÛvžÑd‰4·¹','×iL%},D7T\ZéS×ú£\'šÜþæz Xwwfµ','',0,'?'),('C­î›/ˆ@²l«‡YÁý2}','wp-includes/css/dist/format-library/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶k(Oæ1m<0v¡vV','úƒ÷1¦qèXX|Î¯}Cw‹}…oÃ]5F\nÍ~¢Ù','',0,'?'),('C²ØšÖT¼Rª!vF{','wp-includes/customize/class-wp-customize-nav-menu-item-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*:UÈ›óœJ>˜Êhóz','=ùCóÕÔî\0\"È—ýgpÔ{´¢KÏ®DÜ\'ø','',0,'?'),('C¹Š@±¯ˆWÊ\\àí','wp-content/mu-plugins/0-worker.php',0,'Œ™D§¸HP¨ÂsÂAå','Œ™D§¸HP¨ÂsÂAå','OÁÑEcï5Õ¿ìá\nÃñøIË…Š	g0P+¸-„ñ','',0,'?'),('C¹ÂF¤0eÆƒóßè<½','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSendersListSenders.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡Ç˜Õ©Óz€‡p\0øòf','³Lø^öÌM%Ä88ìô›ƒ-0Ü–†Y`Î†~¹Õ†e','',0,'?'),('C»2eøõ!:ÑwxBŠà','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/Container.php',0,'k°ZÉúõºØoháÝaÒ','k°ZÉúõºØoháÝaÒ','4”ûƒÔ†ÃÊ‡ ƒP¯ò—Æùùû«Ð45|¢Á–»','',0,'?'),('C¾èáì¬À¸!yä6šã‹¼','wp-includes/blocks/buttons/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É™Äœ×”T¨ˆc ÏÀË—|',')C45alJøŠn)8ù’©iK‹© Í¿fLÒó‡æ','',0,'?'),('CÁÜ¦¬[3ùÀžcgQ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/table/plugin.min.js',0,'aþÅ)Ô’)\"…‹ß','aþÅ)Ô’)\"…‹ß','‹…3J\Zl;ál/z®b%²yr–ÿûa¼ tGq² ','',0,'?'),('Cá1na\Zœ´à¥/*È†žö','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-less.js',0,'eE~þ:.¨1­]‚3Ñ­','eE~þ:.¨1­]‚3Ñ­','â|dN¦ÔäF¹’­E¢éÅ›NÇ£ûæ|é…»<','',0,'?'),('CãNVÜC¥gëQ„Ñµåª','wp-content/themes/Divi/includes/builder/module/Cta.php',0,'?6ŸÀqÉAa	jÓ','?6ŸÀqÉAa	jÓ','˜Ì´ˆ¤Ì‡’›ñ	®ÂÙ·8eM^$†Oac}¤E','',0,'?'),('CúØs\\§\nò–àÚsŽÕ\'m','wp-content/plugins/wordfence/lib/menu_tools_whois.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Á åEF?xO\0ø˜','ðwwRÅŽëàÝIð|s¦„o-o¥¾ñ‰8£Õt‹ ','',0,'?'),('D\0¯pï¤‚y»,Þ#hv—','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-countdown-preview.php',0,'»:›Š¤ç`f“Øº','»:›Š¤ç`f“Øº','»_Îu*œM°¢3°ÀŸ¥Ñ´&ÓªP¿	Û¤°‡','',0,'?'),('D\'Ý%½äŠSí6ó>’{','wp-includes/js/dist/customize-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰°l-áâ€†Å‡ÆÀ','\r—…#Ç\\!L²—Cù…—‡ý¤ú‚Ì5¸>c:D×½\\','',0,'?'),('D‡øä¯é	8x¨ìóÃ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/background/field_background.php',0,'»\nw¡ªL¸jnA‹pÑ~','»\nw¡ªL¸jnA‹pÑ~','#¢Œn³ã2@uï(×»:¡fâ	cèÆÒ;»','',0,'?'),('D*9Ó(“JÓ\"2£€þ™','wp-content/plugins/fusion-builder/shortcodes/fusion-user-login.php',0,'æ}½G4U`6]€ÅÜ7ï?','æ}½G4U`6]€ÅÜ7ï?','ññ-ß¤‹×÷i7í;(\'\n¹ÜÕMKÔâ?\"+·(Œ','',0,'?'),('D	( ,|¹ŽÀµb?ïL','wp-includes/blocks/query-pagination-numbers/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e‰Ö*•˜ôlµ:ÀÕ\\w','£êw9±Cï1Õ\'Þ$å”IN+¹¡3Úºè¾$ƒs','',0,'?'),('Dm·\n»½z—H‚ÃS”ïï','wp-includes/images/crystal/document.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰\'^cšsÀùÄD‹ù3T\\','gætê»( ÅŽçˆk`5Í’¡ûJ·ÌM5®ÂÂ:jä','',0,'?'),('D#q{Å¥ˆªÔ‡bÂ‚›','wp-includes/css/dist/customize-widgets/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡W†MÆö¹j_æàMº','\':\'‡£z]9#\r€•cCáªC·_)¼Le#w4ccÇÈæ','',0,'?'),('D*6cÁ¦Ë–iÓûÄ;/Gk','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Cache/AccountResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M¥¾e­0µ7™U~S',',ô9t*­X¼_Â˜¯8ó€9Är\"ËCá\rrO\\srP','',0,'?'),('D,…Ã‚Ì‘öØË96Ú','wp-content/themes/Divi/js/scripts.min.js',0,'–‰n¼R“˜˜„öÍN·s','–‰n¼R“˜˜„öÍN·s','KÐè%‰Ä@ñL°5\n¹‰ ‚–-²\0=úÂ\n®ÿ‚','',0,'?'),('D.÷îˆö:•\0¾¥SÔR8','wp-includes/ID3/module.audio-video.asf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ÊÀOoºxª&]Í©\\L','Í†%F	Åî/\r¾ž:®ñ›ËãÍ0;>ï_M3íÙwâø','',0,'?'),('D6mËeŽr{pKèO’','wp-includes/locale.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡Æ²\04¦)oóybU^¦','Ã<Ò6n\'úJšÁ³åô_ÁÙ	ŠS%ÑáGVJ','',0,'?'),('D?=ÛŠ9›\\|Èé\r ü¬','wp-content/plugins/updraftplus/includes/Google/Service/Replicapool.php',0,'îBsxÝkr/ÂŽ©ªÛ|j','îBsxÝkr/ÂŽ©ªÛ|j','µ§‰6ê:û-éauQb™Œ¬oW0á{ØFÈµ1oÜ','',0,'?'),('DLYCò–š(¯á2`áT.','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Pipes/AbstractPipes.php',0,'!üxôP\"PV”v™¹Ä“&¹','!üxôP\"PV”v™¹Ä“&¹','Ïjq@*ã¡àåPÞj»*­Y·þ—ÃÙØùß\'4','',0,'?'),('DQ#‘u÷»nU\\ @¹<Æ','wp-includes/blocks/page-list/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AÆìiÀyàï\rSÕÑ&g°','«›ŒÒ`ÁµjÁ]‘qü\\Ñ˜’ï9ì~t?íEþ¬×','',0,'?'),('DU}øø<‚Þ´D5è Y','wp-includes/block-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','goÈlËo÷\',ö[”3LÃ','öè3$cÅ2„ï\"t:u¦bdî¸0(\rÜ‘:÷ßÅDÂ','',0,'?'),('DXQ8–‚˜ð=¿´‚8|m','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Doubleclicksearch.php',0,'™õÍqaË;š×T&','™õÍqaË;š×T&','‚F“rOv±eý7ÁL\\á¤šyÏ7O<oV@ï¨únû','',0,'?'),('Dh8nú\0óR›IêÛ','wp-content/plugins/really-simple-ssl/grid/templates/tips-tricks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îkñ&\\ÿò8_¹ìÄØñ@W','ÝTê¸¯¿bg}6ÀQÐ¥ãh±ýUÙchÚ¡F7ÑõNÖ','',0,'?'),('Dm¤¦uäÏ£“!ÂI—5H¤','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Isp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º”pÙ½­¸PªÛ]GÛ','Œ|¶Ÿ )Š©YûM÷ô,3÷¾¥0çÊ\Z*‡9íp','',0,'?'),('Dp¯Fðr®X•Œb¢','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-font-awesome-preview.php',0,'ºÞî-c°&<ø€B7ëo|','ºÞî-c°&<ø€B7ëo|','Þ£ŽÚnìÞ>Ô°nD-üy”ÑÜÝÙLQi¥ä”g±','',0,'?'),('D‚ˆg¦OdL%¯G2','wp-content/plugins/instagram-feed/js/admin-notifications.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[š„xÏÓ×8?[§s','_ó˜2Üëýù„bŠÅOÞ:1\Zr“Å•ü·l°vòW','',0,'?'),('D©z®^j¸)gÆ)sæ\"','wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('DÌöÉuš\rÅÂ‹ˆÉ²\Z','wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AÕ«û»–ÞÅ LqwÖ	ƒ','˜²rŸ_¶iQÖ	ŒaÀîR¿¦Œ‚ÔË+‚íí‘Ø','',0,'?'),('D‘üž»ž4áp57B%','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autosave/plugin.min.js',0,'ZhÙÀ²-†ÊËÔ¢›)P','ZhÙÀ²-†ÊËÔ¢›)P','æ]¶Ã][y†ôiööâÁN¨ÆkÚåû‰/¥2—\Z','',0,'?'),('D’Éñ¾Õ)baëkÚÅ{ËË','wp-admin/includes/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊÕ\'ß\npòZÓ,ýÀóv ','kþ_DRH{Åè\0§#ñ6Z»~ô’}ÉãÊÝuÆåV±','',0,'?'),('Dœ\n›ÿÆþkjŠ«','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}+#z,¯èeßrEJ-','sfºÜq@µÚ8¼!yW¥&Ú”AÈ+/ÅuY•†œ44œG','',0,'?'),('Dª÷,‹¼ÐByÑØÆÇÂ','wp-content/themes/Divi/includes/builder/plugin-compat/nex-forms-express-wp-form-builder.php',0,'cŠ4ˆÀäÄlñQ6úœ‘','cŠ4ˆÀäÄlñQ6úœ‘','‹}ö3¿z+‚Fgyí™¨d6mÇ6ò€–…U¶{ÙRa','',0,'?'),('D½|×Ôõºå#ÝÓ¦”}','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/UnsupportedAlgorithmException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áŒg$¥<*`—üc²è°','9²É-—ÇâÃ0•QH\ZB* Ü<4¦.Ó­m˜?lzÍƒ','',0,'?'),('DÈî\rÖ¤Ñ©îÒa3ï¤','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MaxMessageLengthExceededException.php',0,'ã˜² Á\rã©í3a&GÜë[','ã˜² Á\rã©í3a&GÜë[','=°>Õ/_Ëcj†kÆ;	sgMÿwBîÅPÆ¦NaÏ€ ','',0,'?'),('DÐª·8ÿƒ‡Ë•Ð0—¶','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchTransferInterface.php',0,'É.˜$E5s{Œƒm¤ÿ','É.˜$E5s{Œƒm¤ÿ','èØ½È²ýRkœö<[zò?BP<P’Aý8ü•¼d]L`|','',0,'?'),('DÑå»h%‹íìiöXÂÏ','wp-content/plugins/wp-mail-smtp/assets/images/providers/sparkpost.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Õj€UE}Žrð:&',']p{(®Ý¢°ÔNd›À\rB­Úùï¿úèŠ¼ùkÙo','',0,'?'),('DÕ¹ïÚø»åØ$Oaª£éô','wp-admin/css/colors/ectoplasm/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ç¡î`5œÁ®ÿ¬;¬Ï{þ','{*Fò€¹—+ë&,W£n\rF3Þv eaUP,Å=äG¢','',0,'?'),('Dê˜ÝÇÆì¿wOÒž[\ZL,','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/NamespaceExceptionFactory.php',0,'_Î¤Ódæ]»‚§­¢¤.','_Î¤Ódæ]»‚§­¢¤.','”jÖÒíóe.àéØ¿æÕz˜\0ŠîÑIözš¸¯','',0,'?'),('DîT[Ç-ÂáýUáöøð°','wp-content/plugins/wordfence/views/options/option-toggled-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ=ó—q(éåtž“Ý£Ë»','at¥Ã}(Ä›0†oÃŸ%ì3ØÇðpÈu~üÄ¥','',0,'?'),('Dï?öíá´m«ô¿¸','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/JsonCommand.php',0,'kïƒ^|KãSàLsg','kïƒ^|KãSàLsg','±=‚PØ LòJÖ½[1³§Õü‰ƒê”Ív_HŒ7)F','',0,'?'),('Dï²Ö5\n\'å\\¥Ã~W“‰','wp-includes/category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','È`åðk³3whÖÞk‡Í”','GË>ŒF|59¼Å~Àq|\n&\0Û£R	lð','',0,'?'),('Dú«HŽÙ•z›åÛ]S','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/search/extension_search.js',0,'³Vâ	VøJº¥‚€žZ','³Vâ	VøJº¥‚€žZ','û\0u„jó6˜×pÏ)òˆ?«20˜;OsÁ°\Z\0ªÆSÖ','',0,'?'),('DýŒ\"¬e§nC[ý`×','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ResponseVisitorInterface.php',0,'#)‰^s‘Pð‚$þÖ','#)‰^s‘Pð‚$þÖ','‡à« HùK51FÖW¸£t=Ä–¹åÇEÕ_ýLr~h','',0,'?'),('E²`‘Ö)Öt¤z,Ÿ','wp-content/themes/Divi/core/components/api/email/SendinBlue.php',0,'ü¬7sHÖ•ÏKxn|Xhy','ü¬7sHÖ•ÏKxn|Xhy','Jf9Mì¡™Ø×úOˆjJ®x_ÿhK;]NÇØ\ZŠg(Ðp','',0,'?'),('E\nö­g@Ü=ðRŠ¸³®','wp-content/plugins/duplicate-post/src/watchers/bulk-actions-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-8ò[ù l»$3åÝc™6','Š8¡sð}KÐð›SŒXö–“<~$ x\"—G5','',0,'?'),('Epã®¤ÖË²â·ïÊô(','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect239k1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9ºQVØqñëí tk','‰rZ*Óÿº‘—ÝHÑžÅ|;ÖmYªSoì‡A…Ò^Ö','',0,'?'),('E4ÐïD\'BI¦Ôçü_#s','wp-includes/blocks/tag-cloud/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TÍ(Ò9•Íe\njÍŸ','.RU­›px†Õ§W:ö¿ƒÌL¼cÇÏ?³\"k¬yìÅ','',0,'?'),('Ek3 \\Pÿ…µŸeá“','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.appear.js',0,'à‰Iýì$¡pÿe•æpú','à‰Iýì$¡pÿe•æpú','ùÖxÃ!´óêÈšÂÏ\reÕ™0÷÷|×\"U#Á,õ','',0,'?'),('E!rÒ:]çáDÉü4B','wp-content/themes/Divi/theme-after-header.php',0,'ž}{E™\\ÓW*âd3\n','ž}{E™\\ÓW*âd3\n','~x·tµ¨åEø 0WhxÒb—<X…6rM…	Yðrk','',0,'?'),('E#ÍÕç-v37Ù6ëÅ¤','wp-content/plugins/wordfence/wordfence.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S6êcÐÌëŠgÐêt….','ÉÛ†<D9ÎôÙç¢ÁœTõ)HCÄ³1BÂ;kÑ','',0,'?'),('E\'Ó³ñ#gûv×µ¸Ž','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Iam.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E®Ûèf2ü™MþvG¨','U”B@„\'«î9†¸xì)—}}Ä7ßºL€¡†Ã$','',0,'?'),('E3D.È›á£5áýq','wp-content/plugins/fusion-builder/inc/class-fusion-builder-element.php',0,'>Þvb~!Î[“E:+','>Þvb~!Î[“E:+','ØÔ4¾þìSˆÎ±Xý±¡f*ôS×÷†æe16¨','',0,'?'),('E4í×fu\r#R:k!jgh','wp-includes/js/wp-list-revisions.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŒÀÝ} \ZñÛ¦_ãÄ8K',']\r«Ïoë8ÚY 6—œ)ryW?ßYˆýÂâªbáz(','',0,'?'),('E4þ\ZÄŒa•‰©–ÈÆ—Ø','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-patcher-admin-notices.php',0,'Î5¼Ôñ]Mù3æ¸¹º€','Î5¼Ôñ]Mù3æ¸¹º€','›ðûÔË¯-JRùš·µ:“ŽZ@þ>_þƒ€\"\0ùïk','',0,'?'),('E5ü;ÕÖÜØtR‚“$LÙ','wp-includes/js/dist/element.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ó[$Ò£ˆvÍ“É×¨¬¤B','4ƒ¹t);FÕA	ÿsßA¶#øŒ×|ø—“Þï‚],','',0,'?'),('E<V6;´N¢K©_³lSk','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#¬©Á‚im¹oùî[ù`a','Í{™E¾r² §¹ü­…e½äù`”«Ñ™´PÐÖËŠ8ïY€','',0,'?'),('ENÊæ’#C‚ÿäÄ´.3','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/WordPress.php',0,'ðsëy—qôFWTæ\rÒ®§','ðsëy—qôFWTæ\rÒ®§','Ä’‡øöƒ¦Ü õ5ÑT.Õ:–û{¯\Zk[ÕZe~','',0,'?'),('E[#Æœ(Ó‡]qþ•Zš','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/RuntimeException.php',0,'P_:)qØ¨`{¸#','P_:)qØ¨`{¸#','†¢¨À°¼¦òêáiÿbN)Ö‘Q•)S#7ù‰‚¸.','',0,'?'),('Ehû¡°Ëýí¹ìÐ@aq»Œ','wp-includes/session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïNRM±‰<\\÷ ¼±>ôÀ','}éæ­¼k+8M†U=<;þÙt–¼³I*,ã4#½','',0,'?'),('EnÏ­Ì{“„Gæå3è\0é','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/PhpHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nD7×abÁFpŠv\"-L','8£æ­	nMDˆ«”¦4 \09>\réÚ»ýÿAY{½ ]','',0,'?'),('ExPzöÿ*°9G¤§Ë~','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/wizard.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W°¤þ\Z\\¾®z!ÀÛJ	æ','ý§€´ª#¬q\rÖ!Ks£ÙÈ@ÆÚÛ%\r\"Ç_±¶U','',0,'?'),('EyW®Âø×°ÄÙöåã','wp-content/updraft/themes-old/twentysixteen/template-parts/biography.php',0,'í®àp¯;{‹Ùa¬î¿\nÄ','í®àp¯;{‹Ùa¬î¿\nÄ','oÕxâ_ï4\"®¶ßõÿŒyhæ@Kü–ØEw,aÔ','',0,'?'),('E~úåjûzäiÄ!ž²éèL','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/editor/field_editor.min.js',0,'¶{·LæÍa6ž9†7;','¶{·LæÍa6ž9†7;','uOñi¯A?áy\0¬NÅ>uä°FÍøSk™F—b','',0,'?'),('E‚·î\09Æ=±uœ\'\0`','wp-content/updraft/plugins-old/updraftplus/includes/Google/Auth/ComputeEngine.php',0,'ËH¥ÑLíèÊ˜ŽXs)r¦','ËH¥ÑLíèÊ˜ŽXs)r¦','”äãAé|9×vqBNæ˜¶-Ç2Uç“xaœþµÀ','',0,'?'),('E„­Šmäëé¶½²™ˆ]','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/CloudConfigurationManager.php',0,'vÒP‰ŸÚïèqÇ²·±»à','vÒP‰ŸÚïèqÇ²·±»à','rfç_X77£pæƒ~DD§ÞÕ|çÌ\"Å»øb•*','',0,'?'),('E„»(ýzRA1;eNÇqD3','wp-content/plugins/wordfence/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ÁèeØÂÂª­ë\\ÆÁog','ƒ— ©Šo«ìé¹M¢J#‘A|˜ßŽõ(žÝ;6R\nð','',0,'?'),('E…Ù”!)†í™‚‘ÔÇ','wp-content/themes/Divi/includes/builder/module/field/display-conditions/Tags.php',0,'\'­À»†Ó•¯3¡§WÝ','\'­À»†Ó•¯3¡§WÝ','&ƒn»SØ\'–ömé¬ók«²h×ÕobrZ^ëï¾mC','',0,'?'),('E–éùû÷þÅcÓxD!¨B','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Mimetypes.php',0,')o<ªYŠbüÀ\\ÞfËä',')o<ªYŠbüÀ\\ÞfËä','¹ÃÎµ«?û4Jí‚cIXÌ‰{Ì©¸»AÈ”ºOyýð','',0,'?'),('E—ïÜeº<Üþ‡Wä‹éî','wp-content/themes/Divi/js/menu_fix.js',0,'GxéµÓŠÕÆ“Æüp] ','GxéµÓŠÕÆ“Æüp] ','Í~¸g/1A¾vY:ÅÞqiŽ|L©º\0H•NèH\\','',0,'?'),('Eœ}¾~î¥MÊÅ-Û]ˆa','wp-admin/css/widgets.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6õB´\r¤+áŽ]å}õÖ','‚ç¹+R7Ä¡U`ŸDÌk‡ÁšÉVBëÒª\rÀž´|•','',0,'?'),('EÝ½ìÀ£\'°`chå#C','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ExceptionListener.php',0,',¢«HƒiâyÚS§¹ýU~',',¢«HƒiâyÚS§¹ýU~','£3æ\"§¦æ’oÅÜdW¸/f®\\6â¨ZònÌÂ†Z','',0,'?'),('Eù¢s=¢]šŠ”º’=a','wp-includes/blocks/post-template/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…hëØ—Èm¢UK¹Úµž@K','-x/rÑ] Wp1CJDŠ?ë3¨0\ZôÚ•¨‰Qø‹\"E','',0,'?'),('E·d­•…œíZEÁZºw','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ö™r:øCnº\"¸…2ƒ½U','Ñ°ÅäÎ2£ñNfZ¨’z ìÂ•DÞ¯Ì‡5ræ&dJ','',0,'?'),('E¸Vàó÷,Õ%¦×,SM=','wp-admin/ms-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P3¹\n§ê7|L?MtAº³ß','aƒäÀ‰ÖÁcÄsc\Zƒ¹\"âVèÁL\\¼Ñšµ','',0,'?'),('E¹Nÿl“šJ$¶‡Üì>','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Exception/ProcessTimedOutException.php',0,'\0÷`¢s½~z^³ö','\0÷`¢s½~z^³ö','„SXÏ*>c½êB\\:4F+ïV•”q\\ÌÞ-þSáåy','',0,'?'),('EÁ<±X¬\"j%”çÒ¡','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect233k1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éÇè8Ì¼7Ó£Ÿ4m\0','pÜ† ÈH1Õô7ã£dB2Ž6–‘<å·]fE%DÕƒS©','',0,'?'),('EÏ•CY`¥bŠ‡á/¯¤Ü','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/themecheck/lang/index.php',0,'i–³=Ÿí\0¥Œ!\\Õßÿ','i–³=Ÿí\0¥Œ!\\Õßÿ','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('Eß“K]ìë\\÷›87Ÿ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect163r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	3N\r6\r™ÑfšÅn£<','áPñ•ž$Fkìö7X«Íz\ZoRÃ|fÄÞ·-éÔÂw','',0,'?'),('EßÐcÙ3$yaÐÕXzŽ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/ResourceInterface.php',0,'\rª²°fÖÓqÇtÙ ','\rª²°fÖÓqÇtÙ ','V\\]ÌÎ]*@>®|z}ˆ\'¥ÎÖ†\"\'¨©¯²M','',0,'?'),('Eå¸crMÑâä\0bß™ž','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/ParallelTransfer.php',0,'¹A‰f\\$ØÐep5Pû;','¹A‰f\\$ØÐep5Pû;','yÿ-mç=Ì³‰|Âè~w§Ñu÷vŠ‹Ë2åU¯T1,','',0,'?'),('EéB3AÇÉô-\rÜ&!ÕT','wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡’DÇoŠóyÓë²cK¶',':P‹Úccé‡zå€\"þ³¥Ž¾Q€aäÃQZ d','',0,'?'),('EêTÝ»ÌQÿê¿Õ´Îs','wp-content/updraft/plugins-old/updraftplus/methods/dreamobjects.php',0,'Ü}‚ú•øhƒ\\(^®AC','Ü}‚ú•øhƒ\\(^®AC','A,bú4,·åæ\ZÐ~T”©)zô¶9ÅÎ^³ŠJ\r','',0,'?'),('Eùzò>¢žd&®Ì¿Ó','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedFeatureExtension.php',0,'M8Ãã\\3<öô®nBeoÅ','M8Ãã\\3<öô®nBeoÅ','zHQßê ˜ –vÐæ£:ýLº–õYð+6kÖ1','',0,'?'),('Eù°cÅ‡ä\0†‡ÎNáòû¬','wp-content/plugins/worker/src/Symfony/Process/Callback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©jµOV´+ÉyA¼¯GV',' ‹&?L+†ðaR-ËˆRÍØ8ªûŠÕ&ûvñÙy','',0,'?'),('EÿV¢ÿ9¨ßnÚ·W','wp-content/plugins/wp-mail-smtp/assets/images/providers/mailgun.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LÜ²ùÁ¾îÇâqÏFç','½J¦O>”Ü€ÅaIH‚ÓÉ«VÌþ‹¢5  ±ãÜÊÊM','',0,'?'),('F–HÈlëe“É#Ý','wp-includes/js/tinymce/skins/wordpress/images/more-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l,×‰rÏ%¸^x¥%','þêÃY=Ñ_®b°»|Ê§&f,¬‰<¼Ã£¶¤¨','',0,'?'),('F\rºxÓw~Û\rÜ±´ç\n¦','wp-includes/widgets/class-wp-widget-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&duô¦;M¼Ìz¼w','L—aæqT?h$Õ6Üüá=ìJe ç$Q¿½RLt','',0,'?'),('F+e £‘ R®…€ô.Ùm','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-fa-font-downloader.php',0,'Ä\rsp>È5¿Ãó$¤','Ä\rsp>È5¿Ãó$¤','H?-3h%ÊƒØ^^tI¦ÜÄ\Z,XèÓf\"¢1¡Zá','',0,'?'),('F]wÒ‰‰¸dÞ|Pw\0½','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/AdSense.php',0,'\n\'ÛX^«W>µG','\n\'ÛX^«W>µG','{ç,ò2ËÐÒ¢%†æ3ë¸ÞšåŒ/ƒfÀ\'.’ Ý','',0,'?'),('F\"ÓbÒvkQ&>\r„˜->','wp-content/themes/Divi/includes/builder/scripts/utils/utils.js',0,'uÒIH?Á‡¥«Îc¹Tåi','uÒIH?Á‡¥«Îc¹Tåi','tçà\"ÁG÷™ØLº2E¡m1‡¨Ö?â#í<Õ%µ(aÌ','',0,'?'),('F%Ñ&9÷i›B„Ë§h','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/legacyoutput/plugin.min.js',0,'w¸´s&~gã„„?ö‘Fp','w¸´s&~gã„„?ö‘Fp','JDÓ·-¬êæäV=»ƒtª1A‰[›ú;¥nQû@‰aš','',0,'?'),('F)¡>Ý\"XhOGÐ³\Z@','wp-content/plugins/wordfence/js/jquery.dataTables.min.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<\\Âô ƒÍ•·h¨','væAo;üïŒ¤uDÌ3$›WB95ë£_\"´ô± ³','',0,'?'),('F1+\Z#÷+dÓ{‹wÎ{','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ.D6·pŸišr`¶fwÞ=','Ä2É±KJ73†ñx§2ÚM2°®&˜+·Œ•Lü‡L','',0,'?'),('F1«‹œ	ìÖÙ›œ)H›','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterFactory.php',0,'óCÚ¥K*ZÈùþ|4tž','óCÚ¥K*ZÈùþ|4tž','ÅƒbF_—aãŒsxq`É8­Dà¤´®¾!},•‹-','',0,'?'),('FBßG7‘ók/£©ü¶ÌD','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/is.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vß¹2x‰«â‚Y&ù£n½','Kpž!E8ß_-ªbnË¢Aãµ‹=òe«UÖº','',0,'?'),('FCW.ö3£±¦\Z±UÍ','wp-includes/js/jquery/ui/checkboxradio.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë‚œô_Ïæü>º²Klk','Äšë¥8Ò\nm¦·r+\"ÿ?ƒ~iLOVR~»C','',0,'?'),('FFvŒ‘V;vð8/ž\rµ','wp-includes/SimplePie/Misc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶¼IÃÉ\Z°Ü}[ X‚rb^','UÉl?lšNÖv6Ê0\'€,ûð(N¦ô¬‚\0É&ÖÊ','',0,'?'),('FHŒŽ¼30m:½¸s›¶','wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xRÞ	¬YµXžÔÛÝ¤äÞæ','m¦Á¿\Zc¼§—Ä­Íó¶½]ðïìŠ[ˆÔ^ÞP…·w','',0,'?'),('F`Mß¸cÿN§!¡·¯í','wp-includes/blocks/image/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R»BU­ä	i¥˜l¢Î0`','H‡/Û¤˜{·mÅ¥\0!«8°U8¯–9\rÞIl9Š™p5','',0,'?'),('Fc9¦HÅ	l·‚ô<O\r…','wp-content/themes/Divi/core/admin/fonts/epanel/code-snippet.svg',0,'²ëTùæ=o¨IBBD+™','²ëTùæ=o¨IBBD+™','ÚÐ¹ù½ÖÇÕ†tËýûÏ=¦^ot\'™Å!€Oug','',0,'?'),('Fjúoi˜i9å2L‘Þß)','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/HandlebarsFilter.php',0,'•ëæjÙ\\¥Èr\nô\"FªÉ','•ëæjÙ\\¥Èr\nô\"FªÉ','¸u«¿ß©ùë\nFìAô…\\³V¡WÒçÿ’ÄnH“M¸J','',0,'?'),('FuÙÐ¹ŒŒÉÒõ’sÅ`—!','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/MultiTransferException.php',0,'r–{Œº_dùà]Ø£¦	To','r–{Œº_dùà]Ø£¦	To','Ä\'£¨%›G2Gïæ0®ql†áOŒÛLmÍ`ý™äÃ0G5\'','',0,'?'),('F|÷œ§§wÜZQ,O—þ','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6ÚãÏ?Ñ\nå	:®Â›{Q%','„ß—ZªIK/IµøwÂ¥‘Ovy›EøBi\\$G‹&','',0,'?'),('FƒY#6oˆ©suiµ±','wp-content/updraft/themes-old/twentyseventeen/inc/icon-functions.php',0,'Ø;44O‘$œÝ4@;/à','Ø;44O‘$œÝ4@;/à','ŸQ–ã!Ý#`2Ì|nƒèâè‰NgˆôèV‰|Ä†Ã¿','',0,'?'),('F’Ù_=^«üäa‡E®¦}','wp-content/plugins/contact-form-7/admin/edit-contact-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nVšFU¶åñ5@ùTÌý','J¬nê÷G\roYD;à]X1ÅÌc[(÷lìÿ—²\0','',0,'?'),('FžÍ‹Ã\neÝº=Ý5!','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobSnapshotOptions.php',0,'8ÃðLfjÌéMŸ.Ùn','8ÃðLfjÌéMŸ.Ùn','Å2¹Í!5]ž˜5b‚³~ãš«\n€`Ç”¢@\"žV{×','',0,'?'),('F¤G\\æ$´¼[‚÷ö¹>','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/schedules/ActionScheduler_IntervalSchedule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿ÝdB7;úÃ6µçZU‘2','üÑµ8EN$J0G! I~å&;Ž(·tòÂ˜k\Z\":Y','',0,'?'),('F¬¼† ?1¿aF¿c\"6¥','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/ClientOptions.php',0,'O€T—¯x5‰O£g','O€T—¯x5‰O£g','‡vÊ’Ã¾éd%‹46ÂlòH­€¸¼âÝo–Åšœ#iª','',0,'?'),('F­\\ºC?ÌZÖúöÖý','wp-includes/css/customize-preview-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³ÃÞ‰ž®ÖôÚ«dŸ¡3','~ð\'¾§[zÐ{‡Ø:õÌ›ÑLÄ€N7A›ž	','',0,'?'),('F¯Á×a¸«-~Q6ž‡','wp-content/themes/Divi/js/smoothscroll.js.LICENSE.txt',0,'E”ªÞâï8oÇˆÚ„Ç','E”ªÞâï8oÇˆÚ„Ç','GêÅ×dáQ×Œ\'2æ˜v¶9­‚¯òEöø~k”«¬Õ‚','',0,'?'),('Fº°&—Ž“üÒ¯õ¡-Ì','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Filters/RetryPolicyFilter.php',0,'!±â÷Îà9\Z{¤þI9&','!±â÷Îà9\Z{¤þI9&','òï¤P^åóíÉ;‡wÅË¤õ=&kRÔSŽ‚Gþé¨Ñ','',0,'?'),('F¼…¹¿£™òð*Ûðž','wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/motion-effects.js',0,'w²šô£} ^š©¥›Ñ','w²šô£} ^š©¥›Ñ','ï¸òG	Xc$¤Ö<_õ\\*2\n.\"šð	~/[','',0,'?'),('FÀXÅ¥Û„’¾4âÃ¶A','wp-content/themes/Divi/epanel/shortcodes/shortcodes.php',0,'T4ºV¥ZtŽNFV…ŽŸ¯','T4ºV¥ZtŽNFV…ŽŸ¯','Æ[™£\Zv…¦D€Weÿ–ÆådØ‹ëä:ÄÇçò','',0,'?'),('FÁô¬Ãƒ\\ŸOç¡fgî','wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Êî1ìíõv•ŠR','N3GÑ\'²`Î÷+R>¢P]EëúÎ³g/ÿb?¬¨UX','',0,'?'),('FÐ\'£B¤/í4{JÍ{w','wp-admin/js/edit-comments.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°=\nàõk)Ô¶þ ÿˆW','2~¼•¨[5‡{\0šìŠ^ç|¼žv¤©TOî†íI','',0,'?'),('F×½T€ýrç×<ö…æ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Region.php',0,'××uþ±ëÏHWÀ_++','××uþ±ëÏHWÀ_++','è´XØ+¸xKäb^‚N\nœª§±iEj)wy{Ô•>>','',0,'?'),('FàˆjÕ8\n9«¬ê7TÈ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/AbstractCacheAdapter.php',0,'Ò™¿[e´…9\rT¦þ˜”è','Ò™¿[e´…9\rT¦þ˜”è','Â+*‰[J}³§û¸ô¨¯êSËh—oJ=[ñ<Ù”ôAL','',0,'?'),('FãÀY»ÆÊåÖƒnšòí','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterConfig.php',0,'©¹Ö\\ë¼30•P½','©¹Ö\\ë¼30•P½','º¤eKV‰Éx‚ð–âì5Øîz°z{ßmÍÊÖß\Z','',0,'?'),('Fæ; !~l­±·‰^mÞ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlHandle.php',0,'L€l÷8_6$-	HÄ÷…g','L€l÷8_6$-	HÄ÷…g','\Z2‹ˆ*•)ÈOQáÔk‚ƒ¬G•ˆ©Ì—*òµ¥¯¡àÎ','',0,'?'),('FêSBÍ¤Ë*muH>õT','wp-content/themes/Divi/includes/builder/compat/scripts.php',0,'¼§ž·uÍüûÎ¿ÿ\rÃ','¼§ž·uÍüûÎ¿ÿ\rÃ','•æ–V©Å\r€…¬ªæê¤\räJ¾‚Ý}b®‰u;´Î','',0,'?'),('FðW‹”	Š“Bv’zK3Ý','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/FilterAction.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z¢¦ÐÕÐ\\)mÉ¾','[ož{¯,\\.A.¢¼l©&ùvYðBxª8û‘$uÇÂn','',0,'?'),('FóÂï?æ‰C;$ŒéH\r\r','wp-admin/css/color-picker.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z=¶ÿÂèôEGæ> ¬1\Z<','t-ª]Lb8”n—dÅ\\pm^¤Å”°i[ cº\Z³ö','',0,'?'),('Fô8*\"Ú¹þpEm–&-æj','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ïœ(a.\0ónœ1-§hš³°','°n„\"¹Xª¬Í‚\\eð€fgn×@ÚÏÒñÖHrz›ô^','',0,'?'),('FõV—Èë÷Á¹Od%Ë|u‹','wp-content/plugins/wordfence/images/wordfence-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pÜè±ÑÇ]êj-ã‘ø¦™','8šü»ÔÚ#Ì„(8øáÿˆOû\"Ç	+h\"Fb–ìƒ','',0,'?'),('Fú.õît´¹¿/	\'ˆs	','wp-content/plugins/wp-mail-smtp/src/Admin/Pages/About.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t-Å-ßÆP¾²ÝÌ?5KW','è	+[òðö­Òâ¸˜íþ§›Å•sjP\Z9Ç\nUX¦Ó','',0,'?'),('Fûñô,’üÜÂ¢\'!T','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCache.php',0,'eg¥JëúœMÙ¢H\\Ú','eg¥JëúœMÙ¢H\\Ú','%h?æ\nƒ£Óº¼1á»E™oôš¤PÝø/®fýÝÁ/\ZæY','',0,'?'),('FýùüRu¾HÃøo•','wp-content/themes/Divi/epanel/shortcodes/js/et_shortcodes_frontend.js',0,'ÅÿÐö»$ža²~|ÈÚåí','ÅÿÐö»$ža²~|ÈÚåí','ß>þIUE·CÎ˜þ-3	D l±¹4Ÿ“ö’çR','',0,'?'),('Gi–ó=¸µï~¥¼Ä™\rD','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ArrayCache.php',0,'›e„ò2ùCdÙnÎì»ì','›e„ò2ùCdÙnÎì»ì','Ai×=þëÛ\'«É]&pèÊ#Ý‰1{È]ë¢\r','',0,'?'),('G Xeô·xïÅw0\\Éo8','wp-includes/Requests/Response/Headers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»dVND1ãCÕÙñá.','›?ì\\v¢¨­Ò§ªx«PÃEpÆçà…ýì§6ôí!IP','',0,'?'),('G%Ï}ÄUµyq©ÇÆ™','wp-content/plugins/fusion-builder/shortcodes/fusion-blank-page.php',0,'õúáO4ÚÒ´N¼S¨hû','õúáO4ÚÒ´N¼S¨hû','UßrÇG³ù”Èï™p%ýxõÁ¿©R‡Íñ—f{j”ö','',0,'?'),('G)¹ÁQ‰+‚…=C ¨]ãE','wp-content/plugins/contact-form-7-honeypot/includes/js/notice-update.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ímÿ¶&–ÌÒ\'4¦‹9','käÂzà¼W.ut`w(3!eÕøðe]W]O™¦Ö²','',0,'?'),('G*ŽwôbÓ°¾hÙéIš','wp-content/updraft/plugins-old/updraftplus/includes/Google/Signer/Abstract.php',0,'®‘6¶¿SÌîù“ôW“','®‘6¶¿SÌîù“ôW“',':——É\'™Lð¶ìÐr3ƒW¡®Ù™s¨×Ä‡³õ','',0,'?'),('G6Uæ2\01Rü¸“¢ÏJ','wp-admin/js/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(¤GZãÁŸ[¥¨ÄcÔ','\'Õ˜Šf\\V\ZÑÊŸ(µ‘Y®Þ¾uqDØg1S e2ñ\r','',0,'?'),('G:Z¹×]Y!tI¯¯¡Ü\"','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfBBc-AMP6lQ.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÚjI78Ÿ{’·rÉP­','Uk…úæ´†¿ôZM=OEw¨D²”Šw‡è |I¼;','',0,'?'),('G=n;Ì Ç!Ñ=:Ú_…ÿô','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CallablesFilter.php',0,'#¤ ¬×.ÞñõéVð×k¹','#¤ ¬×.ÞñõéVð×k¹','qý¿Èî¬ÙÈa±TbÍr¸½l\nô†ü8õ0kýž›Ùë','',0,'?'),('GJ Ð~Mµ•ø£}JZ‰O','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/BaseCompilerFilter.php',0,'ƒc¿¾Ñ8;×Ã§)ua','ƒc¿¾Ñ8;×Ã§)ua','Eä1tàÔ¨;¾ëVŸÌÐš¨mú\"zÌÝôŠTëQRÚi','',0,'?'),('GKŠƒä”Úäÿ¬Î\n -','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/Inflector.php',0,'¯	Ÿ©¦ñ•BÍPÜKžSÆ0','¯	Ÿ©¦ñ•BÍPÜKžSÆ0','8¶™»Šn¨h°Tš^À€ò}=Ê\'±EJP“9ÞË|˜','',0,'?'),('GKFXMÓß1È¦tÑG','wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-smash-balloon-instagram-feeds.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©˜1„=q»¾š]\ZñX‰','{uƒo{WXÁˆ}M&F¨ÉNÍ¢]”\\C\"iX¡×1','',0,'?'),('GNÐŸ>e-1“vk.de','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/LogAdapterInterface.php',0,'gêIÙzˆÏ.F÷V:¼%§','gêIÙzˆÏ.F÷V:¼%§','Äø­Ï!Gáå„±\0:™JŸAQnZeÎgÀopò|G','',0,'?'),('Gi$ü<–|“<çVé+Üñ','wp-content/themes/Divi/includes/builder/plugin-compat/ht-knowledge-base.php',0,'ÆPtE\0Sò4`„¡½v','ÆPtE\0Sò4`„¡½v','e?KV\n”}«¼}¸)ë¶\'Q\\é­^Ü\n.š5JÜ½5','',0,'?'),('Gm¹™:†MÄ¾VÀ‘LÐ‰','wp-includes/js/tinymce/utils/editable_selects.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡J“‰q2¤¢I\'ÆJ—9ÿE','¿và¡ÑGjsßÝf™Ÿ	eªdÉ&ä¥g·ÿ+¡öË','',0,'?'),('GsoÔSý?UˆwÖ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetStatsByDomain.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë¨ÔDÏí+Æ§Eÿ>wpŽ\\','°›Œw™™ùNS\n¨À…·o‡Â(eÖ¢Þì)‚…ð÷','',0,'?'),('GtL*Çç×6pçŽê™Yr','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹òŽ:\r¸Ž†Þkõæ','û! %åäM\"š½Áe&$£èâ;`Ã\"„YæÍ±¹','',0,'?'),('Gu¹¢ØèþÒÒÒÊ­ò','wp-includes/class-wp-meta-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o—lè·¿ƒÂo‚~y‚€ñ€','DÎãØF/J_ÙœZ`FN‚4¼»îÎ!§]}€L`Ì(','',0,'?'),('Gu5‰Ã•aÔ¯Þö§','wp-includes/rest-api/search/class-wp-rest-post-search-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}*„yYêìÕ¨ñ´Fý','1´‚SDéâŠvªjk3ù\0²Gæ<Ý\'|†‡!„€º','',0,'?'),('Guµ^¨/1ÆÔÕSñŽ7','wp-includes/atomlib.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à¢Â2*rMb3Ñ‹ËyÔã','¯ü:£Õ8ÈápxÃ î‰¿€‹Öçæ}Ü)õ!›','',0,'?'),('G€9qóñë=Ê¥[3?aè','wp-admin/images/bubble_bg-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï¬qšj™Œ\nŠXÂ<','n¬¼%4ëL¦©í6{/Ð¢[¬Ä¬?XW_A.r','',0,'?'),('G–7\Zžæ²I&:íx','wp-admin/edit-form-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<x<ô6ÖB=—L^©¶W ','ié2÷Õ’ 9µK69ÔÖ¦¬îýxÜÊ	PþU‘','',0,'?'),('G›çv™ïÅzåM	ôµ','wp-content/themes/Divi/includes/builder/scripts/block-layout-frontend-preview.js',0,'òn:Ãu¯9´ªVN´¯7\\','òn:Ãu¯9´ªVN´¯7\\','P¤¾«—ìŠøÐsZëª!ÒüFÚ™x\"¬¦(¦eY','',0,'?'),('G‘e¯¦z©˜DëJ3uO','wp-content/plugins/wp-mail-smtp/assets/images/dash-widget/smtp/unsent.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pü‹©Æ¿Ô¸ÛF£Êßª','¹›²²m\0¯Êºl[÷Õ:”FfÓ½dJ>™†\Zb{Ž','',0,'?'),('GŸÿksæê	üÛ^œ//î','wp-content/plugins/wp-mail-smtp/assets/images/recommended.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ò›ù\'l¾¾iK!Ê<6r','²”µ\n.5bþaßÒ´þÿêÕF£éÆ“®F—','',0,'?'),('G£QÍÎšÍ£`A›\'œ‹','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultRevalidation.php',0,'Ðâ©©€mÚþPy¬SÜ×á','Ðâ©©€mÚþPy¬SÜ×á','%b <Ö24!ÌcI£¾“g›cÎ(èˆ;cD9´ÓÈ','',0,'?'),('G£…(*#V@yîPyöyÕ','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/AndroidEnterprise.php',0,'\"WµWuŸbL£	£½í/','\"WµWuŸbL£	£½í/','\0nßf^„Àê¡·øøkÂkÂn²Á¿÷<w™ª×—Ž','',0,'?'),('G¤¼BS¯ÌªèƒøJ2W','wp-content/themes/Divi/epanel/theme-options-library/theme-options-library-local/ThemeOptionsLibraryLocal.php',0,',GìûªÆ&Ø@—+¨\nä',',GìûªÆ&Ø@—+¨\nä','Ÿfõ=çfúÛ‹¾—é!Ê(íž+ õ<2','',0,'?'),('G¦½‘9Ñ\0&Èò&«','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerUpdateError.php',0,'­i…˜Ú#Òƒ{®9Næºµ','­i…˜Ú#Òƒ{®9Næºµ','^ûç#bdóÞžÒWà@°‡âÙ‚v\0ažrû‡v}ÇÐ:','',0,'?'),('G´áWS®X‚Gí†zƒ»$ß','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Filters/RetryPolicy.php',0,'ÍL|\\ ß|ÆTbôÍ','ÍL|\\ ß|ÆTbôÍ','ˆþŽ{ã-¶\Z 1k^Hî‡7¼?¸\Z5@%ø/EqÍ','',0,'?'),('G½õi¯ìL7Ëi_›1Wn','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/color_rgba/field_color_rgba.js',0,'Ê¤Yˆâ\"Í@/~G','Ê¤Yˆâ\"Í@/~G','k¦³8clSmúÑà.HóAxÌaŒ¤ºžw-·èîŸ','',0,'?'),('Gâ\rü¾Øh=•ú^\Z','wp-content/plugins/contact-form-7/includes/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’öü	á›Õ`\nÔñÿÁ˜','åð¦öó‰;U^Ò%wÁ\"öcò\'xÝ\ZT}Ífu8V$j','',0,'?'),('Gï0Y¥ÀVørÞ¼*¼Ü','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataUpdateError.php',0,'Ü;&Î³’e!xh>‰î','Ü;&Î³’e!xh>‰î','\ri\Z]ì\"ô÷÷zeb•wà<ƒæÀ¶Œ<\Z¬ZA','',0,'?'),('Gò¾ÊBpƒ63ò‘Ñ’‡','wp-content/updraft/plugins-old/updraftplus/includes/Google/Auth/AppIdentity.php',0,'e\n«	jÀwÕ¥MÒ0˜’¼','e\n«	jÀwÕ¥MÒ0˜’¼','<ÓÒLìÑ3ojãPÌ²Æ³û/Ê`P¯@uÏ$ïOC(¹–','',0,'?'),('Gø%öŒ‚TU’¢¢\n ~§','wp-content/plugins/contact-form-7-honeypot/includes/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rï+ð½ãMVŠÃ±Z','·u€´%÷¼1šßóì¢‚zÖK¸Ž’¶m1¾¯ñX ','',0,'?'),('Hx8Ä©ÿÉþŽr\\','wp-content/plugins/updraftplus/includes/Google/Service/Webmasters.php',0,'¢å¶5ƒG®	8Ô!IXëC','¢å¶5ƒG®	8Ô!IXëC','RK‡ü©ûwÎƒº=]¬É˜6¾ü9¡’OeÉ²{Ô','',0,'?'),('HF]w?”£—yvçy','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ConsecutiveTransfer.php',0,'˜L°‘Ôêoƒ’_YÒ¼','˜L°‘Ôêoƒ’_YÒ¼','?UØš³7IåÔ9éÞ¶€\'TÁT¡áÅŽÞõ#Æš','',0,'?'),('H\nãëáèÄN Í_ To','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-syntax-highlighter.js',0,'o\0­©ý\ZÃ¹v›Tãp','o\0­©ý\ZÃ¹v›Tãp','2Ç|jÜ]6V\0®‰vÛ_#°Î¶4ÔÿàŠ×d1K5»¿','',0,'?'),('HàX`»gU@´T˜ºgp@','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/email/validation_email.php',0,'^•‚\Z0›lö!»+c,}àÝ','^•‚\Z0›lö!»+c,}àÝ','ýJÀ8†»£ÇÇ£¼‚v$!s×\n‘ž|ð’ƒn\nälŠ','',0,'?'),('HñýYfUHèu„pd','wp-includes/Requests/Exception/HTTP/400.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†òË^ÝoAÚìhÜ¦3ö\Z','³d«>Ä÷†¼º	¢iìH®º¬ßb$ª&žnèàê6—p\Z','',0,'?'),('H VÒj= ïh\rÇ\r·.n','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-plain_text.js',0,'0~ FEa}\Z@êhag\'ã','0~ FEa}\Z@êhag\'ã','¢™š¶4A ÷L#C³jÔœ]HÙú¥Ëhš«¬','',0,'?'),('H&1JO›\Z\n¥FsL»Ù¼','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Content.php',0,'ÜgzP´ž_£Õ/jŒ½','ÜgzP´ž_£Õ/jŒ½','ñÀ”(aUúÝ™è‡µý‘Ñ1Î©FšÌƒZ§Ÿ|½—ïç6','',0,'?'),('H*‹’$8¶v•Wö×®‚ð','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/BaseCompilerFilter.php',0,'ƒc¿¾Ñ8;×Ã§)ua','ƒc¿¾Ñ8;×Ã§)ua','Eä1tàÔ¨;¾ëVŸÌÐš¨mú\"zÌÝôŠTëQRÚi','',0,'?'),('H+€E~™}§1QÛð½®Ù','wp-includes/js/wp-util.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†76 ‰7$\'µ/¡\nCØœ','G7Ür<pS«C¿Â\\þøÈzÊ‹úI¹G¶','',0,'?'),('H/\Z¼%x!ä4W¿ûF:','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/AmbiguousGrantByEmailAddressException.php',0,'·\\1~À<f½­ÓÍo/î','·\\1~À<f½­ÓÍo/î','ðf$2Dr“°­±KLWšF2çð	 Ñ‹÷‘“)','',0,'?'),('H5¶Kj­ñl[ÐÇçˆ','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ£1î`£Ø¯0›¡£Ñç','à¤qÆ–•‚×â‰%/Ýy¤g’rwÃ›‹\rËLR>=Y','',0,'?'),('H>ös>s/ÌnRõˆð6ô','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LB®ÑßºÔWgT?õßã(ß','D=-“<Øso+Ìý)W¸ï=ä\Zððg àíÑ?Ø$Ë','',0,'?'),('HA„¸þf¾,Áõä$F-î','wp-admin/css/customize-nav-menus-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(äÉTûä„7[õh\rå','aí‘¥õ]‰y‚ÖÚÎ`|ä¨h‹ªŸr½U®­Ë','',0,'?'),('HGh\'ßÁxúR‡¼Ž~\n','wp-admin/js/customize-nav-menus.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ù· \n7MXrÜxT¾×\n3ÿ','érl †ÇÖb,ü‡îlù*áºœ\"[ý8 /Kˆ0:„*g‡','',0,'?'),('HG‹ŠZŒ¾,ø¶Ÿ§˜N','wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/AutomaticLogin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0©:Ô}‘lkŠyöCì|','Þ£¤.M4ÛP8xh7ù•ÛZÊª§hñŒä‚ã–','',0,'?'),('HI~8’2úC°t¡\"¡ß÷2','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2Tests/AccountTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éÌ²d\"•Ÿzg±—dô.nª','üåºÓ!Ç£&Á¼ÿŠÀ=;ò:”ÉÃZü˜œ!›Ã','',0,'?'),('HL§[Šk%Ì¸qp²œƒ‘','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/CachingEntityBody.php',0,'UÈ\nfvQ_x%›‡cÄü','UÈ\nfvQ_x%›‡cÄü','gd°V÷—W8H8-\0Eì’ô<#’{Î[?x\n¢”–','',0,'?'),('HPòŽz›¡²ruÔ³xüÁq','wp-content/plugins/updraftplus/templates/wp-admin/settings/upload-backups-modal.php',0,'¼c-/ƒ;ÆxÍæÁ‡&','¼c-/ƒ;ÆxÍæÁ‡&','¢Üýã,/rÉ+E¾RûrüEé’iæØ4 ‡ëŒÖ,°`\0','',0,'?'),('HSJ„ÿ–ŒZË.3ÅÆ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Signature/Raw.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3aüuÿ{½\0W@•k','EÙ¨‰èË«%Œú\\eåø¶úÜªÈÍ˜-%¹P·2™','',0,'?'),('HSÎrfX¿nÆ;’møã','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Plugin/Info.php',0,'nù`Ë{0ï3a¯sÃWH','nù`Ë{0ï3a¯sÃWH','—¹Û=à÷läGPHAákŠ†‚ÒÇ†°w¿æÉßò~©Ó´','',0,'?'),('H`°\\ñ æœr²§·YêC','wp-admin/includes/class-theme-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e­È£Ð\0¤Ó—O¾)l+','uäßS´…¡¯u¬¡ÞÆæiDˆp,\\«C¦M5é','',0,'?'),('Hl“i\ZTdÇ}ö˜k³»A\\','wp-content/plugins/wp-mail-smtp/src/Admin/Review.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','36(.¸tØ/]@Í¤À\"','µÜ,÷vŸjßÑ—Ë‘ƒ[ê-Ÿv;iôTçG','',0,'?'),('HwQ]œŒ*ôŸ–/F	Ž¯x','wp-content/updraft/plugins-old/updraftplus/restorer.php',0,'Bw\n0[?Ä\"Èq×˜K','Bw\n0[?Ä\"Èq×˜K','–Eª8Mº‚¿QÀ›\"‡ýà˜¶)·é1ô»ëqG·K>¯É]','',0,'?'),('H|ÙGy\nÄTP\\Ga÷wÈ','wp-content/themes/Divi/includes/builder/module/field/display-conditions/PostType.php',0,'5‘¾£^8/3ñ,”s{','5‘¾£^8/3ñ,”s{','?Â*°~áæ‰ê	‚ž¦‘\ZÚ•RË	8»z>ñÿÑÜ','',0,'?'),('H‡ÀÕ	ÉAùÌaô#<:©','wp-content/plugins/instagram-feed/img/about/plugin-om.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©Š4lüâY<&s‘>ír','ý-9ÿ²µžÄÍÂkáÂZ=ÈRªgŠ[C.¾…Áãë¸˜','',0,'?'),('H	ÚÁQþ—·$Ô?9åý','wp-content/plugins/contact-form-7/admin/includes/admin-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á¹^÷+ê¬‡›QvÕýÂ‘','\01~—S¹ú#M*F%l×X‡ƒËÚ’Âl>Tál«','',0,'?'),('H—r’>\'=â yŽÝó','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Url.php',0,'kNc*¬É&¥ÇbÿÔ9F','kNc*¬É&¥ÇbÿÔ9F','S#I‚†Ç\Zî1˜‹„¯¼›ìü†MX©úñ´_f·^','',0,'?'),('H¬Âò­ÞÒÔˆ¦ó	)÷','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/Container.php',0,'k°ZÉúõºØoháÝaÒ','k°ZÉúõºØoháÝaÒ','4”ûƒÔ†ÃÊ‡ ƒP¯ò—Æùùû«Ð45|¢Á–»','',0,'?'),('H¯HÆ¶/q¹Õ©ÒP4Ý\\¦','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/CssCompressorFilter.php',0,'øŠtƒõíA½ûdH÷','øŠtƒõíA½ûdH÷','TFðXøEsš£ŠŒŠ´yåylë\"‘¼HïÛI‡¡j','',0,'?'),('H·¨Y6oïãD{ˆLHê˜','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u.SÖõƒyîlã=\0C¥>','ñƒ?ƒ\\x`‡²Q™=üÉï©8:’v´sTºÕ','',0,'?'),('HÁŸÑ›Î,\n²4€É,_{','wp-content/plugins/really-simple-ssl/grid/templates/tips-tricks-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜ ŒÄÄµ‰«ù!ÇLmpµ/','ä¡r¯Jî¡XŒÚ*Vr¢7eãD„O&vŸù˜','',0,'?'),('HÃ½ÍñiíZ¾U,H»L','wp-admin/includes/meta-boxes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bZJ-Q!ùeLU[gõ','$Æ˜-‡¨š+Æ_ÉãIÉÚši”‚äŽê¸\rÞ2ôé','',0,'?'),('HÃøÜÍC©Tp(^ÞÙlí¼','wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':ó»o°¶Ú\nq]\\:\\cì‰','<¶\'@Ã¾êÖÇZhÞÃÓ€ÓÿÖÙoè@>˜ú·òºö','',0,'?'),('HÕ‚mß]Mfª.¬àÿÚû','wp-content/updraft/themes-old/twentysixteen/inc/back-compat.php',0,'˜FùÙyˆT´WCÙÝï','˜FùÙyˆT´WCÙÝï','ê@žL¦<Œ©Ð(Æ_9\'¶—¶c„ÛÃ¶]tl +m','',0,'?'),('HØKV[â¾äùÀI','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/background/field_background.min.js',0,'BÎ¢äOv#ÎyŒðì&k','BÎ¢äOv#ÎyŒðì&k','Â5íSÊŸðæn\'¶~\nþh2\n˜u\0œ^wGYüÇæX','',0,'?'),('Há##Õc{S<wPÚ','wp-content/plugins/fusion-builder/shortcodes/fusion-gallery.php',0,'æ¦­Þ~j˜^F™€€jv­','æ¦­Þ~j˜^F™€€jv­','=ZÑ´%eYnB!#x½ñô9`Ed´Œ¢¦@¬q±¡','',0,'?'),('Há®ô°¸à¾O™Ð»ö_','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Audit.php',0,'É36áÃ¥!LŸl°e„D','É36áÃ¥!LŸl°e„D','ÁXÐjà«·ÒXÏ®4PQØFæ.<\r)PÀ¢ì™bå@','',0,'?'),('Hæ`J»gž¾Â2ŸJ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidBucketStateException.php',0,'ÎççÓS=I\ngk|','ÎççÓS=I\ngk|','<ÁáDª…»7ÖOÂ‚‰Ö3ý½€¹þÿyQ1­š÷','',0,'?'),('Hùr~”‘ÍýW¸ž†‰;|Õ','wp-content/plugins/really-simple-ssl/lets-encrypt/cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íY#˜^û} 	Õ“`ñG','€¼ ‡—N•\Zyá‹õÎû³Ø\nP2wC5H‰\'^/í#¦','',0,'?'),('Hùô»oÉßŸaÛ`¯öH','wp-content/updraft/plugins-old/updraftplus/includes/updraftvault.php',0,'ò¡®\\xžm/{q5;V','ò¡®\\xžm/{q5;V','4*½OFè¨Wñ\ZU<FîÓ„Š@C]ÏéEõÇ¾÷0','',0,'?'),('I\r8p:Í	Þž}`‹\Zã','wp-includes/blocks/query-pagination/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÈTƒí•DÚ€B©Ç','±Ú\\¨ÈdIEdÐŠY¥ÝïDôH5m€·´Œ)é','',0,'?'),('IWï“9Ùa€ÖWœ±3(','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôÂ™†qÌW¿Ù\0ÓN(Ë','ý·´é÷zÿ4dÒ»À`ú¯	\0B5Š…Mç ˜„œ','',0,'?'),('I\'hÖ=p°ä¸þÝ[ê','wp-content/plugins/fusion-core/shortcodes/previews/fusion-fusion-slider-preview.php',0,'“£èlH§1Q3“\"Jä“','“£èlH§1Q3“\"Jä“','ï¤©Ýq!Ø\r\n­éÉMoURhô\n&µí¥²£YáÂ²Uá','',0,'?'),('I0Åó¹Sþ$2£TÐüB*','wp-includes/widgets/class-wp-widget-calendar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ûtÝ#kjX—b /é0œE','¹€u.ß)GFÐêˆ9?4š ñù*2Ì>G\'l','',0,'?'),('I6.:\n(ÍÀùi\0BøÏ','wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å)•™â¾ä¼ËZ)£*j£D','‘z7–„úcb{ê9\ZJí0Ó£Ê7÷}•\"Ï½Rû[\n[Ì','',0,'?'),('I6U‰\r7´ÓúŠÖ3pí¸','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž‚h<ªé¶|Û7bš©¸','ÕÙ_ú^F\"ýæ;+r&Z~Ó¦QÐêð¨Íø|ã±ø5¥','',0,'?'),('I=ûìÃ &ƒN¶ÿBI³„','wp-content/plugins/wp-mail-smtp/assets/images/providers/microsoft.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çüÿSQéO+ì(ã¯jôÉ','âªŸr1k-Öã*°4€ß[€ÉõQ~!ýéõ·…òsÔ','',0,'?'),('I>:„v62Ý·ÏøœÏÁš','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/PageRange.php',0,'½SÉ\'P-ïÕeD}MStk','½SÉ\'P-ïÕeD}MStk','eIxö¢³Hn÷·É‹åZ!ï17í‡´Z\nWÚM)`','',0,'?'),('IBË±°ñå+©ŠŸöBìb','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vr¹¾èÎ’;YÔÝço$Y','·«¢µÖ} YÈ1q$VY“8k\rt ƒoàÿnyì©wþ','',0,'?'),('IIÔ7èkIüB%\nv©·','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/EmptyResponseError.php',0,'~újóöþª\"ÖôW ','~újóöþª\"ÖôW ','ózY5Â’>:zÇuïW0ç€Ÿ ö¸ø@#ŒpV@','',0,'?'),('IS:\r«¦ynÞOÇÀ\'tg','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Common/Functions/Strings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è¢@Ä°£Òê©\0âNÀ¿','ÿµ¹¨eA¼Ý†VZ¤Ó„ñDJ7y7¿\\<ÝÑ9','',0,'?'),('I[\0Å}ºæÝiŸÞ	»Ïô','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/MetadataDirective.php',0,'\'N@†½š…ZtÇùTûa','\'N@†½š…ZtÇùTûa','àE˜¶ðN½F¸ÏíM1¤¨ÃYP“ó\n©äžI¿39*d','',0,'?'),('In×`¶ê?à@\näa­µ','wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/cpanel/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RŠ½Ë—ÚæƒÙŒÏ«','»Š}Þ;UÂå	©AYNU39Îài5DE×3³±','',0,'?'),('Iy?tò¥p­8~Þ£u','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜Á	ŒæI¥Ý¶3‚‹S','!MÚ’Þ«Dw£•éÞwe(²!Îäö=ïéÞ¨dàÖ,GW','',0,'?'),('I}›õ9÷LÍg‹¼Áô„','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Base.php',0,'-èPý±Vú¶à=—làAY­','-èPý±Vú¶à=—làAY­','ÿKAtYçð ˜KLRb]qº¶öâ3õiÛÐv¸îœ”','',0,'?'),('IŠÈ¾dFï•÷Zâ*c','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/image_select/field_image_select.php',0,'?J(_é9ß%ø;Åß:','?J(_é9ß%ø;Åß:','¢±!€_D®:£¨”ô-¾‹.Úª›‰G_²a‡\'óã','',0,'?'),('I§Õ79\"æ\"Ðåñ¥Äòö','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/arch.php',0,'áVnB}êßf>SjN ˜','áVnB}êßf>SjN ˜','a\ræ¾•»!®Ëq˜¡Þ¨¸x\Zx5Ø\\Yzµø?ìù','',0,'?'),('I•Ä:BsÞ#×çÿÞ@×','wp-blog-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_BZF1ƒñÆûy¨¼ÑÑ)',';\ZŽ/\\b„äÑtú‚«Iô¤Œ¿Í¯žËhÄÔwè','',0,'?'),('I–ŸÈÞàO÷—”÷A;¹L','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/PrivateKey.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ð¥tƒÏ¥Ú*poÙ ','*8=ªhÂž“-8¤J–ú¤doX‘ù]²Õñ‡Îì(','',0,'?'),('IÂƒ“&{ýž;Ð-HÖï‹','wp-includes/blocks/site-logo/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fÿ\'Ðû6Ð¹ssÊ(','ë0Ü\n-}õ#±~ª(7þ?\rƒŸ’åa\0’X','',0,'?'),('IÆÔ¬óló¬©ð²§v0O','wp-includes/js/dist/core-data.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6\nÊÈÎ.8ýdùn€¡à','#“E)¤0:µQm„ÂÁö¨æf“ˆ#ž‹1NQ','',0,'?'),('IÑ)è‘K@êøõŠ4I','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/BodyVisitor.php',0,'ñÏ ô÷ˆmƒâYQy','ñÏ ô÷ˆmƒâYQy','2Ç²\0€}Á‘? ÔCòâ‰\"Í‹ï­Â§˜Ÿ\r9C²','',0,'?'),('IÖPEÐXtœFHï%–','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®šó\0ÂõìLv¿[cÞÎ)?','¤CÚh!Ý€F$ì}¹wd¸7b(¦!äp÷IF.L','',0,'?'),('I×ñ8ß½ýTû\Zµª²™0£','wp-includes/blocks/list/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð:{Á›LF7ÐB{\rt','‡ÍyÕÖÏ…HéîÞPMûƒ7€ƒÉæÎ1£ôFÝm!','',0,'?'),('IÙ.Ú‡*4Ù*>1&HýV','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnNotAvailableError.php',0,'jÔ\0+6}F÷\ZÙ½v´3','jÔ\0+6}F÷\ZÙ½v´3','Œ–ñCì*}&D‚ƒí„ò‘ŸZð|nÅ([ï ¸Å<ø','',0,'?'),('Iä’çpÊm¢dW“éJÆ','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php',0,'ts¬6-Æ¯é°áûV','ts¬6-Æ¯é°áûV','*®›Ñ†Ö¦ƒ\'~wl	}g­\n%á \\®),\nÛAc\0øÎ','',0,'?'),('Iç°½¬å…VmF¿k‹¢ß8','wp-content/themes/Divi/single-project.php',0,'’£¤p_¥N_LñßöÍo“','’£¤p_¥N_LñßöÍo“',']~¨3^WBrÉò¿vIL¬6PÏ™cT,VÙ(ƒš','',0,'?'),('IñV/’ðµ6¤sãÃø','wp-admin/js/editor-expand.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â´R’[ ÿ6\\gTÔ„L_ø','ïövI\n6‘ä6¶”%VG°ö}ÁÅï“Â@ofÈe;','',0,'?'),('Iúþ-þ \\Ž7…kÊ=á','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_AsyncRequest_QueueRunner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ¦xQ\'XX ¤öè™…~e','óÛY*›<ù{ž~´eÖ…§ä]|½bóå5*z(Ó5`~','',0,'?'),('Iÿ<\Zê(ÛÛì+ðZâ','wp-content/plugins/fusion-core/templates/archive-avada_portfolio.php',0,'—åáüŸ§2¸¼ªâ_uÚ','—åáüŸ§2¸¼ªâ_uÚ','ZŠCKIÄû¨³Ã\"Ã×¦ÓX„•·ëAÝhM£øº9ö','',0,'?'),('J–Ð-W™TŒ\"­F©ù¤','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-image-before-after-preview.php',0,'t´ïTÝ8â±&&ð„-šÜ','t´ïTÝ8â±&&ð„-šÜ','›¢ü»ÓÍgø\0Zö¬‘¼hßøÇe&;?£êCJ,Z\Z','',0,'?'),('JÎ%.¬ó~œÂ—qál¼','wp-includes/class-wp-text-diff-renderer-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡-Æ€‡Žg0HFuIô','Ú_h+ÂU­ƒHiÇûÖ_¼Že£	wÈÆ‘6çÖ','',0,'?'),('J?#³ÍŒ$Mù7Óc„','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractPlaceRecord.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`ÄI.:›â`PRä','#zÔ¸R™\ZHUèÉî>BènP,Ÿœ’\'ƒeT¬tßº','',0,'?'),('Jf¸3?ö“‡_rÛC‘','wp-admin/images/w-logo-white.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n¦ÌîJvÛ¢~»y¬\\…','nÁDš°‹ _Ï;Ó!G«×cVƒ0M9ië‚=½','',0,'?'),('J\rnÍ;ÎÑï’ì?ÎÒ‚','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Logger.php',0,'‚œæÂ÷™\'´„Y5Í”ºÊ','‚œæÂ÷™\'´„Y5Í”ºÊ','d#–~BŠMë{ƒ\nÒÇÿZ¼F–I¿Ëå8!±µ-','',0,'?'),('JÐ<¹u`çõÕ¥á2','wp-content/plugins/wp-mail-smtp/assets/images/icons/check-solid.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ØÜxg¨4Ûó³ø\\áM','~mv¢õëÅ®é2[\r\\=´i”L3]Nº±\\Ä8âyë\'','',0,'?'),('Jþ‰E[¥7UÒÓ\Zï~','wp-includes/js/plupload/handlers.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßÌ¢*FL¦ÍÞ Î P','‚Ži>Û¦^çÜÿ%µ¥©HhS‡«\"ÏßXçoš\"','',0,'?'),('J?ÂÞ<”—•B™<kI','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/AbstractLogAdapter.php',0,'%Ìr(Z‘2Ùjvÿ‡Û¿','%Ìr(Z‘2Ùjvÿ‡Û¿','—Vúu×tÎVÝÿ_ÓT™|µ#ˆ=Ž¶YaÉoÏ_Ç\0´1&','',0,'?'),('JC°ÚL£.²´ñ3v','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect571k1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Læ\'i4Ì«Ch†GKá]³','à‡\rÓE{Uµi/÷L&ÅÌÀE*­Æù6‰Xõ4','',0,'?'),('J)>:m<t“¢°>PŠõ¡','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersSettingsSendAsSmimeInfo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sð¨ñª]·ü½…ˆ–','œ.Äžž·¢ª~õunG+°Z³èÕÚó\r‹aÝÝ2','',0,'?'),('J.‘s|<*PÆGeRR','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/extensions/options_object/options_object/field_options_object.js',0,'WýtBALG¾¦Õz¨¦–','WýtBALG¾¦Õz¨¦–','lâ\'ŸçV ’h@ýw+Rå	Q½Þp5p^«¯w[','',0,'?'),('J8þE˜žDh+¦ŸF','wp-admin/js/site-health.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FÔIdC¤“˜ëVPÞQ_','fz,,x‘—wZ\n\0\"è¸|´\"¥ZI´èÖ`¿ìxG©','',0,'?'),('J?ø«4­Y‹•h‰e!>O','wp-content/plugins/contact-form-7/modules/submit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰Ôuß®sÔFáW‘ûÌK','rÖÉ°´ìžKEƒŸ¹r¤mÐð<*=/n!\\}=•%™','',0,'?'),('JNFï“s$ïß¾rÝ?>','wp-content/plugins/worker/src/Monolog/Handler/NullHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{H\\Åë+)³aNCõys','Z’ƒæG¿Ú…ÕÃÉq`i“GUûjÁâ«¯ÁíÆ§”','',0,'?'),('JRóðÔ\ZŒ5êõÿß·Š','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/plugin-update-checker.php',0,'	¸ü7GÛè˜&bç¤öÆo','	¸ü7GÛè˜&bç¤öÆo','Ï{–êo×®ªe¶½2*YÌ\\mÆngv{ö/›K','',0,'?'),('JVKc_÷èÜ¸ô†ëK6ì','wp-content/plugins/wp-mail-smtp/assets/vue/css/wizard.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d0ËßÝi–;ød‹Ò','Q[äÚƒIÂÑø`ÕC¶ý`x0!gEªÏ¶…‚ê­é1','',0,'?'),('J[ä/Ï˜oß¢B¨Xü','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/IllegalVersioningConfigurationException.php',0,'u¯ü0ÀŽÇÞÂÊ›yb8a','u¯ü0ÀŽÇÞÂÊ›yb8a','p¹WX]\\ÌDE!­Ëh¨œ)ãø{go½ýØ@Òv{oS‚','',0,'?'),('J_âfÀ~¸?-Ã!ðÅV','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-tagline-preview.php',0,'Ôì<‘ŒýœòZh\Z1ÑŸ','Ôì<‘ŒýœòZh\Z1ÑŸ','Öï©²dn_\\ªSÅ@õ¾¶›ƒmOY&â«\'éé°)’!','',0,'?'),('JlšÆ¨1žÏã¥êç','wp-content/plugins/wordfence/models/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£E\"xKÊê{Ç8ödS³','C‡¾ö½\'r…9½ì@âK¡Þ†t¡ª™öâ§w#@kº','',0,'?'),('Jmº£ùãJT®é½i','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjectCopyError.php',0,'”ŒÞ8Ñÿ¥¢)wdü','”ŒÞ8Ñÿ¥¢)wdü','ë¸ª·\0½d‡\nØÍæT92Tå«¼VÄôIój0iÇµ0<','',0,'?'),('JxÕ@‹.¾­[æüŒ|H','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Atom/AtomLink.php',0,'Ö\'¥);|¶½ž«LÌF×','Ö\'¥);|¶½ž«LÌF×','¥UØ/fHÞa:&Å—^lü}¾”Qjevù\0WÀ§Ûj„','',0,'?'),('J{£Ö¹Zi^Ã¹x•I','wp-admin/media-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à-Ý$ššq„áõú…~{•','XÔMp¨Rmp râ¢<U™éÌ÷7ùø²8l~¶‰','',0,'?'),('J{ØcëŸoðsuP','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/HistoryMessageDeleted.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J·ÕŸq¡AT¯›{ËÑ','£8²H@NglÞ4‰JÆÂ`T)ŸµÒ©¼Q ¢','',0,'?'),('J~r‰v]©Ü6!>·ì','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/dimensions/field_dimensions.php',0,'Å(mÐ5ø*³\"Ð0Üá+','Å(mÐ5ø*³\"Ð0Üá+','Ÿ‘öxÿ$£|èŸŽMàïQîÉµ+œhP»·>îM;	','',0,'?'),('Jx4pÓËt°Ù=üoT','wp-content/plugins/wp-mail-smtp/src/Processor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹\Zå%&ÝO–4¶îÓ ','…—e\\ÌŠ1žþöÌþç\"˜4¬9\"®#_†¤hfô','',0,'?'),('Jâ§+œçi¦ˆJ%Ž®','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/AbstractClient.php',0,'Á\Zúô]¯<QË{ïäcõÖ','Á\Zúô]¯<QË{ïäcõÖ','f´óåô\n\0‚Ø@\0è5êUcMrò!€¥t0Å\"ƒkÉ','',0,'?'),('J†è	+M­““·òe','wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/AuthenticateRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ó\r·t<çŸåc\nIø,','÷ËžúÊ9,ÜuŒë«^cuzÌ?“BJS–D¦','',0,'?'),('J¢>×æï£Åø\"Íä/','wp-includes/Requests/Auth.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+…»éÓy-uPü5²M9Ð½','k¬‘ñæ¾wÏ6XN\rŸ»—£ç0ÚcçÒÙïÕ–ò','',0,'?'),('J£_Hí–á´ÈEQ4Bø','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_Compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s³Àu¡²vãùáv$1ü8','ýÜTdÞ¡iï±6`^!ÍÌ‹„µëˆnŒJÛäµ¥îX%)','',0,'?'),('J¥Šü’:Œ¡Ë2fµ®!','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','élˆ{ÃbOsé“_aºÞ>','mõn5ñËßÖžÎ²gJÙü\\µý«¾Ú3†òãõÈ','',0,'?'),('J²¦çé:?2RÁzäß','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce.min.js',0,'Xláà•Àø°Ì¡CŸÎþkn','Xláà•Àø°Ì¡CŸÎþkn','ÜZk÷	å6|ãÌ{ø*\Z©{¢HãâË¢iÜk^','',0,'?'),('J³¤µ;<ßÊC{ß«©®NŸ','wp-includes/blocks/spacer/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IÄ‹\r¿ëºˆ_jÐÏ|¾t\'','.Bãô8õåÑ2UçÆˆ×˜i«W€f\"o­\ZÜiøO','',0,'?'),('J½¸&(G%Â¤›©—‹ìZ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FLÐüê“Çe>S¬MÐ','ZQ\r†ÂÊM2V²×Ã¶ãS€%âDd7Þ–^\rÈ¿ü§[','',0,'?'),('JÎ::3àÀ;EûH\0','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/jquery.serializeForm.js',0,'¶&ÊŽºqB,\nÄ«¹ÌA','¶&ÊŽºqB,\nÄ«¹ÌA','!0é¦ËBëÉÛÁQ÷×YèÂ‹mMš]2¹¤{c(BÎ','',0,'?'),('JÕ¬4…ç\rànêÎç¦','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ëJ—\\c7’yþxÆÐ³l','³~ÀÍqVšÂ¯¾*\'Å1”¥¤š]3^‘öžÍÉm','',0,'?'),('Jâ½ÍøB_°Ùº—','wp-content/plugins/fusion-builder/inc/options/globals.php',0,'÷c‡€âñYŠ²Î.¹3bŽH','÷c‡€âñYŠ²Î.¹3bŽH','çíÕ„O[@­õ(t9>oBÏ\Zúë™ù´CL7±!Ú,','',0,'?'),('Jæu¤a¡mÎi\"dàì¢È','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/ResourceIterator.php',0,'×¥/%#·ÌìkvF©_(','×¥/%#·ÌìkvF©_(','ÇädéÇÑµB3nq´šDo£¿ñ}Ï¦u	?õ6±','',0,'?'),('Jò¾¬´ÊOhÓýÐsDØ¾','wp-includes/js/zxcvbn.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|	Ž¼¦#PV	/{•Mü_','vXI9Õþ³nõ1e†6ëÛCô\\Ó.p+Þ\"»ðKþ','',0,'?'),('KBãeJ O¬`IÄêXÛ','wp-content/plugins/wordfence/css/main.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|8/¶_NNú©†7û','pE(°û4,ðG i:¡±UML¬k5ïY£§','',0,'?'),('Kàlƒ’cül2®Å','wp-content/plugins/instagram-feed/inc/class-sb-instagram-parse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p.ÐÚÓ¸Õ	]lG¦^','yM{­»§fFaôÝ¶PþRdŠCj1[Þm{#ô_','',0,'?'),('KBµ„†±Þ°5©«7ë¹','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/CssUtils.php',0,'R¶o,ûWNœSŒŽâCªÃ','R¶o,ûWNœSŒŽâCªÃ','ö™•ývµÛ<bíAµ5h ž~G¹5©)qïbž¦n»','',0,'?'),('K¾ä÷ßºá†b¤','wp-content/plugins/wordfence/lib/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>îµãøÎzðx”ŠCŠ}','¾NÜ“»#dÒt¤B!\"MÕžÿ==Ë@o‚²','',0,'?'),('K\Zuî@1 \n¹ÌêÐ¾\r','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/UpdateChecker.php',0,'ßqÐT\nõM‰æ}K£N','ßqÐT\nõM‰æ}K£N','xÀŒ’q^¥¾æt‰@h¶«—[Ö‹ûÙ(_ÞQ=7.','',0,'?'),('KPï¿ÙJ¸ôÉ^ôá','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Òµtñ}ç4)n{Qn¸1','üüy•4Œ4Ai‡¬©Ci<ðÎœgÛ®þgŠímÂ__','',0,'?'),('K%w­`”Æé-„á4Ðœ','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/paint.php',0,'„¨ÕqrP·6ARº_,','„¨ÕqrP·6ARº_,','öú<;N™“w\'CŸÜöÿ÷6\ZÕƒ\0¢P¾µ<Öt*æy','',0,'?'),('K0µöò\rÅé–Ücnçû','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì29YÂ¿,E#ó/Œµ‹§','Ä ™ û·h<)sœÔ>-PŽ˜{óëîK‹¿ùIì\0žƒ','',0,'?'),('K67FXÙKðACç¿ÂÍáþ','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gÇ¤ØeR\r<ç&Mžß','¼Jž°ØõÈ5ÛðP½±nåZÅøæ­Ï¯<4ŽXÙp¡…4','',0,'?'),('K8ûyQçO2¸ÄË`^´','wp-content/plugins/updraftplus/includes/Backblaze/CurlClient.php',0,'³£òÓ~û¥@ÇŒyÈ.žÉ-','³£òÓ~û¥@ÇŒyÈ.žÉ-','÷;8Å(77Ì/Î|,Œf´sR‘<âm#9\\¾OÊ','',0,'?'),('K>ˆ^[¯P‘Fí1‹h:','wp-includes/blocks/social-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(G„Ñ»xÛzµƒT@\"ð','NÛ<Äš]ý\rØ$ë ›nÄßÑõ_OÛïd÷ª','',0,'?'),('KKOfºSd«iB0Ovóê','wp-content/plugins/wordfence/views/scanner/scanner-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','umÍØ&Þ(ˆ!Žž‘)','ŠÈÅI0-¼‹=†Q5›óSÅGÜLFxâ–×hÞ','',0,'?'),('KKó> ´/]FR·»ˆÕ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobBlockOptions.php',0,'SØaÖ;OÙæûú¼öÖ)','SØaÖ;OÙæûú¼öÖ)','d 1«­ö‹ûQ½lˆÄtRo	ª‰IN««èºÂ9ùb','',0,'?'),('KZ‰[fá:ÌRŠ€Òì','wp-content/plugins/updraftplus/vendor/symfony/process/Exception/LogicException.php',0,'rï>þÐ\'[zqôé‡uM','rï>þÐ\'[zqôé‡uM','`ìÙ\'Ó­Æ€ËžO€ù02U &häïÌ^°ðiáÎ','',0,'?'),('Kh VÙB/CIÚ¼Ò\"','wp-content/themes/Divi/includes/builder/frontend-builder/build/theme-builder.js.LICENSE.txt',0,'ó&|‰e?‹<.bl²<','ó&|‰e?‹<.bl²<','%,Š«~‘M-ÚÑ#jË©œ|RýAYœ<Ð„?ýQ¦','',0,'?'),('K€L†ÁÀê	R_4@ä•','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/EventLog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ç»2ÚƒØ|ª›t¿Ïš','Ë­É_•ìc–\Z³âËUEÓcmß>?fdà\'ŒzßëºS','',0,'?'),('KnÒ‹D&sRôWU(‹','wp-admin/css/farbtastic.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#Õ^µ:ˆG€(“‚±:k\n','4·°7V‡f›Ý ñ¾/ï‰¼å€êÃÃæDŒúW3p','',0,'?'),('Kƒ91ht§EäViô-ˆµó','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp160r2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆÌ†¨Nžß}±€{‡r¨®','VCáÎËÑhæ˜˜]zyÕhRä?ü^!ôÞmF','',0,'?'),('K†Ã5§J¼™0Àu','wp-content/plugins/really-simple-ssl/includes/simple-scrollbar.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Žq/ÀH‡—Úƒ6ý¦','{R…ý±\\jHMýeYd\"v–Øœ.^ê·©BKþÎ','',0,'?'),('K‡œÐ½‹ÆŠ|\rÞF','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/background/field_background.js',0,' 7S[áÒ!mé0„ðÍ',' 7S[áÒ!mé0„ðÍ','Hf©©\\å7(Ø.ýPuXñ•VÉ­Ë\Z}R;ì,ëŠ¯','',0,'?'),('KMï›®ÁMu[ù(	Ø+','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qy¾„£?¿;é8žV\nø','\0Ç-ØÞ]ë®³‡•XEt)˜`ÉÅ1ØCý}Mr2Ý/','',0,'?'),('K,Î¶¥T„’³b®×ýÛ','wp-content/plugins/worker/src/MWP/Stream/Base64EncodedStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ý\\Næ™T6æåÂAÏÄ°','H1´3Êº›üxr¡È“×ŠÁ@€“Ã\0×1öÍŽ','',0,'?'),('K‘ºžuàÚÔŠ‘ÕE²%Z','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/EncodingType.php',0,'§Íä…ÊzÅòðñ¨BØ¾j','§Íä…ÊzÅòðñ¨BØ¾j','œ=Q¤0UD°ìûm”ü$v0-ú<|V•,„Që¥Ç','',0,'?'),('K¢»ß¨ú­)ˆ@É\Z-£','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpForbiddenError.php',0,'\'Š”]{x§Ní}“ü','\'Š”]{x§Ní}“ü','äSºõ„h)í;âÑ©Dîüè«Jƒfƒvá¹—¢¢','',0,'?'),('K¥ ºƒ…µ›+ôòCT=\nq','wp-content/plugins/duplicate-post/src/admin/views/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Šã¬mô¢ê1ÏHTm–¾','B·g×¬õ¹]Éé¾Ã|‚<³ú’LHü|Xu¨Ã7s+y','',0,'?'),('K¬+:¬oX¬sKÆÒë','wp-content/updraft/themes-old/twentynineteen/functions.php',0,'Ðfµß@i\0O.D¯R','Ðfµß@i\0O.D¯R','èRÉªJ‘ô÷R¨ü˜â$Ö÷&w¥R\'*Tvj±¸','',0,'?'),('K­ô‘‡ËR	wAÅäÐe','wp-includes/blocks/latest-posts/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýo(;½3ú¯-@mÈ\\ßã','›•°üñè†U´…}\0Òß\\Gh¸yÍ1d…‚\ZEÛ','',0,'?'),('K¯cŽŠ#2s’/(…\"Ž','wp-includes/widgets/class-wp-widget-pages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ûÚ¦­_Ô„Rä\n','ÿ±Ø_ÝF#6üuÅRÇlæGë-–ïÀ[fø{ò¬\'','',0,'?'),('K¯ª<©H<7ÅEž,lçß','wp-content/plugins/wordfence/views/waf/options-group-brute-force.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ùpõk<ûÉ‚#Y','QxÌbÁ’nbWKÉéâÈE*¤lŽoäáÞ…ïÝÊ›Ÿõ','',0,'?'),('K³÷W	²¿.Ú¤Uù','wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/DumperInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5WéÞ¤múûBF¶Ï±·ð','J~*Õ}Á¸8©®Ì{åß$\\WiÑÚv‰Zb®µ³ÝÒ¶','',0,'?'),('K¹¿ã \r\\Uz÷õ\Z:\'','wp-includes/sodium_compat/namespaced/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ìVÅ*ûÊFè°¯ñ<Ž¤l','åÂ®¢R”l–UñÙ ™wz×ank–ÇGÞtº3î','',0,'?'),('Kº.6þ9üÝ*6Ñ×ö’','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/welcome/views/support.php',0,'^ªRPÆWõø\rÆœBßt8­','^ªRPÆWõø\rÆœBßt8­','|£\"J†Ùaïpv“lžK-vaàá‹U5	Õ¯ ­Ýƒ','',0,'?'),('K¿å]Cíî©l7:ÄD\0','wp-admin/js/widgets/media-audio-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P IMÝ;p8vn³Ç[ôS','›¡ˆ•9j€ñlxBØeH:¿y¥%}óc	TP§_×','',0,'?'),('KÆN#õŒ{Ì	Uä;Ì$À','wp-content/updraft/themes-old/twentyseventeen/inc/back-compat.php',0,'Ê§›}-(a¸°šH,','Ê§›}-(a¸°šH,','S¾PyîÀ1­€UE°éa-)Ýõüì„ûe¸','',0,'?'),('KÊ•g³0ùa‰‡;ø›','wp-content/plugins/worker/src/MWP/EventListener/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('KËLx<C Ž˜H”ôe\Z','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-·ENäÄ‚Û›(\nún','š÷Þ¡Ñ¬}^EFÐù›ÊÞ>ô’Ú‚BìÛ','',0,'?'),('KÙèH‡(sÖL8“+','wp-content/plugins/instagram-feed/js/sb-instagram-admin-2-2.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F—8.¼:.f’n¡Îg´Dz','ã˜[`Þ™xïªq	,CNd²ÆEÜ:õÍÔZ”[ïsÄ','',0,'?'),('KãŒ$é3Áâ~êCB£ë','wp-content/plugins/instagram-feed/languages/instagram-feed-fi_FI.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aÆ?Èé\\ZØ*í³G','Ö§Û@iƒ½ñû–\Z!ÞÊ¢¥™Ýû\n-Äˆ×ÎgHˆ','',0,'?'),('Kçlí£¹Ÿ»¨b\\º1“Yè','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/FilesystemCache.php',0,'#Öôçž»!ˆ\'%À8·','#Öôçž»!ˆ\'%À8·','óÌ¿’¾.Áoþ×]0!R¼IŠå‡@Þ™4â–Llˆâ','',0,'?'),('KðÍÎŽÇÚH3&¤Ð5','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/QPXExpress.php',0,'Xä‘Ã#\nß(À¿±ëpX','Xä‘Ã#\nß(À¿±ëpX','f³6lˆKÕ,&§„§òd Œ<èÝÞt4·¦Jøaó','',0,'?'),('Kò‹Þìp”—âÚ‹+­','wp-content/themes/Divi/includes/builder/module/type/PostContent.php',0,'ÐßÿA%¯-<S†­tdêc','ÐßÿA%¯-<S†­tdêc','Ž:è+9¶£%8˜=‹Áír —ë)þ¾‚É$ª¶”½R','',0,'?'),('Kù èžõ*‰;Ü¼Ænc','wp-includes/blocks/calendar/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(a$°jg}×S5NÅjì','œ\\\"Š>ç‘áv¸¹AÇ(§²€KŠmÑÃ².‘[L«£','',0,'?'),('KúÚWÿ&\0\0Kµ\06‚Gô','wp-admin/js/set-post-thumbnail.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':1N°(èxlXÝü¿\'','v9í‡\n{lKŠ†~qâ°#’>‰éß¦·½¡ J…`~','',0,'?'),('KýK+ì†À2¤	aeZ“e','wp-includes/class-walker-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']ÚìÔ\"ïÞÿ£Õ;e','¿—1²crk·‡-EÁÏþ·gÜ\'ÇNå¼!É¶','',0,'?'),('L3]?%çÒ±3ùƒ\rŽ²S','wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-php72/Php72.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÄÄ›úm\\#I—ó*Ë','þu3yƒ…É‹`ï²\Z}wgôŸÜá³µîbÝYù»síà¾','',0,'?'),('L`\rf»Q*Ø\Z¬ØÁj','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-images.php',0,';IK\0zÆ¨NFO~ 1',';IK\0zÆ¨NFO~ 1',';¢Š 2´PÒÄPuâ¤Úâ)ã¨T½\nú/Ê(','',0,'?'),('L<#³ó†\ZÒá¼ÓÜ}','wp-includes/js/tinymce/skins/lightgray/img/loader.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9K¯ÃÌMû:äŒTf•9','öñ;‘´ÀT‹¥O`(6ÌØ,Àsk†Z‹ûcØRÅ˜+','',0,'?'),('LÁÚ\"5Q»:çKU™','wp-content/updraft/themes-old/twentytwenty/classes/class-twentytwenty-walker-comment.php',0,'äžÿ7ßC\ZñÂQl¬Þ(','äžÿ7ßC\ZñÂQl¬Þ(','¶§¹Úý{ÊÇ|y5úÂÀ·…yýƒh°~[¤Çrc¿áº','',0,'?'),('L#Ö¬/Û°*Ìø3òÒì\r','wp-admin/includes/class-wp-terms-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-…×±üšü¯¥¡ÓÊ†','bÝ{œ¿E&Æ>#ø‡õb\r‰oôˆÅ6Î‰•(%f•','',0,'?'),('L$‹¯IóOn;\rZÇ ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/aws-config.php',0,'¨ÈÃö11õ€Ja\0\ZÃ','¨ÈÃö11õ€Ja\0\ZÃ','2“Ë6|OÈ»;&;þA|ÔQÿ@À™6_·Z6','',0,'?'),('L(Êý¢nø9[2ÀC6åš','wp-includes/js/zxcvbn-async.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÆðEÕçŸ\nO\\éÊYb','…Ò\'FPä\Z¨/G\n“àJ·¦ˆë§\\Bõž\Z®ˆIT’','',0,'?'),('L++0O¶›í…_êj','wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha.min.js',0,'ÿûÛVA–ºôÙbÌn','ÿûÛVA–ºôÙbÌn','äâ eX–+‹©6´£o%Á;^`¾¨2b!,@ŸôÁ8','',0,'?'),('L5ç^wJm¿ÝP¬ ¶æ','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/wizard.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v>x½âÎµU“:¼Ç<>','¼å$…pé||oÆ±ÊÏÆh:×o¶ÑÈè³¦#','',0,'?'),('L6L~\0H_’xÛ…öÞ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect193r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡Žïá³â˜„êP/¿Y|','{ºüêØ\râ.ÚEú­+ð‹kœ\0AQþîê ³XÎ½†r','',0,'?'),('L8,#z!-5ûÎñ]t1U','wp-content/plugins/fusion-builder/inc/templates/options/date_time_picker.php',0,'(4Œ*ð0ôÐYÍ=fªªc›','(4Œ*ð0ôÐYÍ=fªªc›','µÎ¯\"Ý>´d,Ìé“±¹ÅfÆm÷P &–=\0*`','',0,'?'),('LBbc­†Îô?Æ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ImageError.php',0,'ª È\rVj÷þÉÔˆ»ÍQa«','ª È\rVj÷þÉÔˆ»ÍQa«','žËpƒ£Ô(@‰ÖkÐ7,G—q?×`®W ÞßF„Â','',0,'?'),('LHÄO«Mó°Ä¹¿Wñ','wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/sticky-elements.js',0,'Å±L[	ð…÷b¶cÉ¶=.','Å±L[	ð…÷b¶cÉ¶=.','ÖL€úÆ˜5ÄŸV0ú¡A†\0q}ÀÌ‹d¶‹IŽi¬','',0,'?'),('LIþÙöÌ©èîk•MÚ¸','wp-content/updraft/themes-old/twentysixteen/sidebar-content-bottom.php',0,'+$ñVD—<ªž:tø*A2','+$ñVD—<ªž:tø*A2','ÏŸ¼Ï\n¸ŸãªÔI{¿cqŸZd³ñ™6¡XdÚ2','',0,'?'),('LR7Q¼äToG|Ä{','wp-content/plugins/wordfence/lib/viewFullActivityLog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#\\™œF\rêv›Cõ','óƒ’X¹74ñù¦u\rt{½œMl×„‰¥qT}Ôêð¼','',0,'?'),('L\\„#î	hF~‚\nïÏ¡s','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-dynamic-js.php',0,'LøLõKÒPî›uêô','LøLõKÒPî›uêô','\'_Ê¤ß]§Òüž‡2õwnàyšÑá~éjÆ!­_Wy','',0,'?'),('Lap•²8gôVã,¾ægÛ','wp-includes/js/dist/vendor/react-dom.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cà§ÐInV– 9¼îóß','LrJ½#µÕþ6hÝóÃÃ\r»È´D„R5»ìb:uM','',0,'?'),('Lf·\\e<GG¢ŠU:©“','wp-content/plugins/updraftplus/includes/tether/tether.js',0,'@…öz<=0²WxCÊ ¦	','@…öz<=0²WxCÊ ¦	','øžýÃãu\rƒÓ…L6¸áþ‚\Z9ñqQW÷;nÐgO³','',0,'?'),('LsÐ‡Å›\n²c}>ÿK—‡','wp-includes/css/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L&üÛþWÐiDJí@Á¥','ƒé<ªC:ØÇ‡?Œ¿ÌÕl®À}\rZLýlÉVYë','',0,'?'),('Lw™fx¿Á­ìÎ˜€ŽM´','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpUrlError.php',0,'“×©a¤Á_}ŽGÛâÖ¶l','“×©a¤Á_}ŽGÛâÖ¶l','H[àÎ¼åCQH*±E–ë…ËBRÃ\rrt.!á=T—x™','',0,'?'),('LzùÐïZÑüø#<','wp-includes/class-wp-locale-switcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ËÃ\"Æ?ÏF´w,èTÆò','!@BùÓ<6¿ê’ÂKuêßPm=®ƒ+¯/c_ë','',0,'?'),('L¢ÅI6®`½£çr Á','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildInfoStatistics.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H#|•¼õˆQŠ ý,Ù¤7','\n~!?G•åùWÚyW>Ž˜l¥÷Ö`MúØe¶ÚÍ/','',0,'?'),('L¦ù…V_| Ø0ëç*~','wp-content/plugins/classic-editor/js/block-editor-plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f÷ êÈ÷R\rÔr2êHÉ5','z¤šÞKŒÉ–04Õ q»`R	ç³HþÝNêÏ!à®>','',0,'?'),('L©ëG’ÙE$7¤«·4ªì','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php',0,'ô2ë,E÷4álùC©Aµº†','ô2ë,E÷4álùC©Aµº†',':8\'ˆ¨€þª§¡¨ºâIi¾`ç7­–¿Œs0Ép¢ßL','',0,'?'),('L¿?M(½þü1Zü³âb“ö','wp-content/plugins/really-simple-ssl/assets/css/wcag.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µW•a‘·êA L\nm(,|{','F™â3Î‚ÍT³ø#oüù#7¾%Ó \\KxÇpˆÉ/','',0,'?'),('LÂŠe¡t\"pc(	’eÇ','wp-includes/wp-db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñÞyAS9Øþie²¨P¡','ÉÆê‹â°I•&Éú®öe€*Ôæ7þK38„ðç±èÅ','',0,'?'),('LÂßï·E¦ïgÏýâÖF9','wp-includes/blocks/post-featured-image/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡sñŠ1°Œ¥¯µ»','WðÜ•øÃn…,^Ö(»i\'H£Šå—\n\Z=¥\'','',0,'?'),('LàÀ\ræ%ÂÂ{®·','wp-includes/blocks/social-link/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M58øp9ˆÑï_uCZ','DûÌý®–-{A”Ÿ>&u¢ôÞ%2 îhèŽ·L','',0,'?'),('LäÊ1#ÏY8ïŠ[0`tG','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/et.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nÅ_\\–:{\"ï¦+:\nÆ','à›K\rªuÑo‚“ë¯îX§7ˆevÒïït0åE','',0,'?'),('LìÏ–\0÷y\"PíÍ','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^“S;ùxW¨6œ-\'Fv3','þ³]]þ¥U¹ÓÅúÇ[Û0u³oTý\\Pýõº•nšŸ','',0,'?'),('Lï¬+q¹VÊ;—hÐËY•','wp-includes/fonts/dashicons.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M¶¬¡N:ÂÒ\'åÊ¤·ÛÈ¹','Jó˜!Š¯ÉËXLl`’eþÃO¯ì°sÐH¹‰¸ãƒ','',0,'?'),('Lñ>t™õšNÿˆ†‹Ý','wp-admin/css/colors/blue/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÙÐ5I×”„g,)Z­YM³','ø\\k›ˆSÛëš‘ßn wWýš	ÿ!Ó*Á~¦vÝ','',0,'?'),('L÷…)ÑÙa$­D-ïÓ®ªJ','wp-includes/js/tinymce/plugins/wplink/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m¾‘3Ñ÷ëÔÜ–3þóŸ¤M','zÇN\'A¥%ÄS“˜@4ùUÚÕÆBD™¨®qö’¤ ','',0,'?'),('MßztÎû/i]õ«ZÊ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/DartFilter.php',0,'ž¤MÐ~æ#‘]E˜k§æ','ž¤MÐ~æ#‘]E˜k§æ','Óf¬~=÷³žëåøqTV”/3ŸOKÃü¦>X¾æÓ','',0,'?'),('Mx1Ç‹Tm¾R_2o','wp-content/plugins/wordfence/views/dashboard/global-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë«\'½mÌ`£0>ð+#¢Î','úœœÞðçæ˜ÃÄpûøÁ³çPv?ZÇF²êQQcj','',0,'?'),('M1ÒÚ/ªn§íÌ–Q‡ ','wp-includes/css/dist/components/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IÚ¼ÍðØd––*¾','UÂ‡î÷Óÿ¿`„šåih~3‚Pãé¹wó_›ýÐ','',0,'?'),('M1Ô	àZ¢ügÿß&\'Ñ«','wp-content/plugins/updraftplus/includes/Google/Cache/Null.php',0,'¸ˆóÐTpF8ýÍ\'ŒÙ«Æ‹','¸ˆóÐTpF8ýÍ\'ŒÙ«Æ‹','å·§ú?|aÞpá4x`æâÈ·Ç,y“çP%\r3â','',0,'?'),('M67â†ÑIŽŒš}þMÿx','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/cubes.php',0,'ú‰._IAÓqHüVk	PÝ°','ú‰._IAÓqHüVk	PÝ°','±œ¶,üPçØáÉ­¼úÐ_yÂ:+¯<š','',0,'?'),('M7†%ð›MÂª;àäÙ','wp-content/plugins/wp-mail-smtp/src/Admin/Pages/SettingsTab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JÇ	ôö®EøÂ\Zvmê/5',' O1PiF*Ï˜%)¨Þ´$¦~2›ŽÞ4p³M!ð','',0,'?'),('M:-‡~™«dý\\Çw5m','wp-content/plugins/updraftplus/includes/Google/Service/Plus.php',0,'Ê{Ä„o¹“Æ^5Øôâ','Ê{Ä„o¹“Æ^5Øôâ','™È¨)¹¨Á·˜Ç5e\\]•Z€Zœ€qº}ÕkÖ‚WS','',0,'?'),('M=ïf@OçÂpºÜ4&X÷','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/multi_text/field_multi_text.js',0,'^Û’EK ”–ã÷pô\r2','^Û’EK ”–ã÷pô\r2','>aË³KÂÀ6ÞŒùˆ\Z×ÎK×g„âíx;ïÆ','',0,'?'),('M?,5Ø*îóÉúÜK*Åf','wp-admin/js/post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ü0ê^²7 <‰¹E‹5k/','\0[´Ýñ($EãRn‘3Ž±kÆ×1ŸÜÆâU†ÿê\r','',0,'?'),('MAxÍ~¸È2Pœ‹w','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorFactoryInterface.php',0,'g¸hGèi\0»*T†º\"\n}','g¸hGèi\0»*T†º\"\n}','›”GBhÃî	ä‹š›cýz¹ÿs¬îŠ\Zö¹›É,','',0,'?'),('ME|I@@L:#Ao<Z›','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/HttpHandler/HttpHandlerFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BdÕ¸›¶P£îÏWcUNZÖ','ãèá}+ßB¼/ä=ôXs$³›\r5StJl˜ñåÌ','',0,'?'),('MW€	å¦¾:Éä˜ÙŠ','wp-admin/images/align-none.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñ­eqd2 ¡Úu‘¥Âñ\r','¤g(¸1†Xã¤{† [].¡üT‚Ž¡“AÙÄõ','',0,'?'),('MYŒñGˆ°\\tXû„’/','wp-includes/customize/class-wp-customize-color-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·&µ»S?ã…ã³|ñôG','h	Â3|:Q9z€­ò4Y1[É{^¸	$;¤#šq¨Ð','',0,'?'),('M^.¯üŒ¤ÁÀòhÈ¾Ä','wp-content/plugins/contact-form-7/load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”ÚáY¶QEåúàçÖêª+','%ûÖOµ\Z€9\"uxwð)¢ÒaÅK±ÇßˆLû#£ïƒ‚','',0,'?'),('M`çÆ#ÜÄ¡V¼øÍÇ','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/gl.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5zùs®‹X‘Íþÿ¢˜à','ª= 4Ó-OtæšRsç ûòö7†ÉØ@Q£Bg/','',0,'?'),('Mtm@0™ˆI—“U*T','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/XmlVisitor.php',0,'UUx3JeéÁâ)™&','UUx3JeéÁâ)™&','xêŸƒ´œ›ˆ³EHÉUiO×X3©2©¯×Å','',0,'?'),('M†Ï©Å,ÒX¥GëK','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Constants/User.php',0,'ŸÚµÎ@¼ÐëÅq\'÷Ö=','ŸÚµÎ@¼ÐëÅq\'÷Ö=','‚™­²uñò“åý¼òKÝàÙ†¢WaK~~\"Ð*','',0,'?'),('MŽRaÎ«rÎw†gÄŒ¢','wp-content/themes/Divi/includes/builder/scripts/ext/jquery.visible.min.js',0,'·GAr´dYöç|Ýèy¹Ë“','·GAr´dYöç|Ýèy¹Ë“','qó]–T·½QwjWø·—tÅ×Óp¡¾7†·lò0','',0,'?'),('M4ÆÂT]èç=Í‹¸÷','wp-content/themes/Divi/includes/builder/module/helpers/MaxHeight.php',0,'!RîQz*dÝqë³>Ù†B','!RîQz*dÝqë³>Ù†B','Ø\\á0àãÚÈ¾ÉÄ™ûÃ näÑÈ7Ò»Þ‘ï{›ßÓÐ','',0,'?'),('M±3 ªÃ÷øW½^šw','wp-content/updraft/plugins-old/updraftplus/includes/S3compat.php',0,'‡†ù\\¹ƒ©\\p¨úîØ¬j','‡†ù\\¹ƒ©\\p¨úîØ¬j','sÆSÿzž—¥ÍÎ}Ý^æ¿+­édÚ¬üûöAàXq','',0,'?'),('M–\\š#Óô¾¬äºa»J','wp-content/plugins/wp-mail-smtp/assets/images/email-reports/thumbnail-03.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mþ[V\'E‡›1”kìËt)','2³#z‘jÿê!¯qô‘‘.tšƒjí­lq\ZS¶','',0,'?'),('M¡4ß2LF‘Âµò3D&Ã','wp-content/themes/Divi/core/code-snippets/app/lib/config.js',0,'¯…UËWÈ\0+¼:F˜±3¡','¯…UËWÈ\0+¼:F˜±3¡','qŽÍ7Rf”åT›wR†á†ÒÀŒ=*¬&á_ý­%','',0,'?'),('M£ž;¿h‡´ò\0’²^','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/variables.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('M¦š Íß1H¿´Î.gnL','wp-content/plugins/fusion-builder/inc/woocommerce/js/woocommerce.js',0,'\nÇÐ¡-@±ÆQ?²ç‰–','\nÇÐ¡-@±ÆQ?²ç‰–','èš­£Át1WÿÃP$’óE¢\"›FDÓ0\"£Ø¦zÓ‚','',0,'?'),('M©/¾!Sv¾å\\â.smA','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/class.fusionredux_helpers.php',0,'+¨ÒÜÝb¦\\‡ÝÂ~=}Iò','+¨ÒÜÝb¦\\‡ÝÂ~=}Iò','­.Êµ;Çn&(»[`ÒË,™i|ìkÅú¿ÆÐt¨\0äk','',0,'?'),('M°càØ¬€ÙØ®;¹	Ò','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidArgumentException.php',0,'&¦Ma¸\n¸|ÔÚ/	Y•Y','&¦Ma¸\n¸|ÔÚ/	Y•Y','¥ÒðsûOüª›—i2—Ù¨9wö±a÷â¤…Wˆ‡','',0,'?'),('MºwÆ^ÒrLÇÉ<+Dùd','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/TransferInterface.php',0,'”‚l`\rétâiîqZ','”‚l`\rétâiîqZ','Žîÿ&ˆöè/ç‚÷zå#ŒÑEþ7M>Ëf™º/Š','',0,'?'),('MÌ>Õá­¦WŽU~Íù','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/en.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢ƒãÝ\nà „š»O$S‡•','÷bÄ1ÒðŠËymž\0á:s]GÈ%•c¯8`ÿy\0Nm','',0,'?'),('MÐ \0šAŸª»9QÞ+ Í','wp-includes/js/admin-bar.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹áˆ‡ã™n°&­a1a\0','(L‚ø<…—ø£Kùi§-¼“U4ÝWÜ¸` ¯Žrl$º','',0,'?'),('M×Íû8þ¸}¦:Ä¼7d','wp-content/themes/Divi/core/components/api/email/ActiveCampaign.php',0,'O¢-þƒJ÷PÂïð','O¢-þƒJ÷PÂïð','àÃáaRÄ‡mø3B\'#æ[ù4§?ài„S ÚßIÚ0Õì','',0,'?'),('MØXM›ã}2aÉÉxI(','wp-content/plugins/updraftplus/includes/deprecated-actions.php',0,'öÅy§+îoÄX{P“Ç¡','öÅy§+îoÄX{P“Ç¡','e¹t(´)ËUÛäP0lçŒI\\™Û…¿ƒ’úÓe','',0,'?'),('MØý2·ˆ(¥Ž… )§‹‘','wp-content/plugins/worker/src/MWP/Event/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('Må;CåÌÏÕÕ8Yyï²','wp-includes/js/twemoji.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#á	!AÖ—ô//x4îß','gs‡!ûW¾-.?ÂwhÎåN©õKÿIt®{¦÷|','',0,'?'),('MêG\ZÈ»K|åZ˜±VÂ“','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-menu-anchor-preview.php',0,'‚Ï`PmÝPgÂW«¸µE>','‚Ï`PmÝPgÂW«¸µE>','á‰9Ç=x<Y»bÞ#‘&}ó‚êL9EÑ“÷SŽÎò','',0,'?'),('M÷ÒÌtyEmw\\T@ª¦','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorApplyBatched.php',0,'ÿ¾$H™7­·ÕREç~','ÿ¾$H™7­·ÕREç~','`ú\\£8¬j~ßâÖÔ\ZóTÙüR}³”ÇDu åö¤','',0,'?'),('Múî´>®³¨X÷Si~','wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-6Ô\"¯?$b[ÅDƒ_','X¾ä%B{¤0Üy2³|íkõTUÃgmë¸ÆÌ#ùY','',0,'?'),('Mû\0gT¦Ÿ`í‚ñÅÄÞJ','wp-content/plugins/fusion-builder/js/views/view-modal.js',0,'4šìz}q»–½\"†ÝÑb','4šìz}q»–½\"†ÝÑb','~,kcs€\"Àº™Ž²…táŠU|å*, “ÆYi¢hÊ','',0,'?'),('MüÁI‚MÔïüÀrDõ-','wp-includes/post-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°,Š°ˆÃX\'_d+-Ç','Îõf×mý¢ hËAú ¢àà ’éyWŽê…]Ð”ÓÄ','',0,'?'),('Nº–³õi³¹!\"‚¥t','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ResourceNotFoundException.php',0,'ÇÄ…K¬¿?ÞÆâ†–\\b–','ÇÄ…K¬¿?ÞÆâ†–\\b–','?­ñŽ8£ &úôŒ ºæ‡ÞQfVñnð³^\\Ñ<€§÷é','',0,'?'),('N#…f÷Mùú[Ÿçw¨','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[clër‹u©	ÃÐ¡u^','6pËÓ\'`À+*[AGà4Šüúü^6ÅŠ£è%ÔÁC','',0,'?'),('N\rúEà–él\"+Í‡3©','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CoffeeScriptFilter.php',0,'%Q-jå\rÑnõˆEå—','%Q-jå\rÑnõˆEå—','_ùÑ€\rQ™{O[nüàB=<o *6÷‰	$ã.5x»','',0,'?'),('N!¾°Ûc—‘<›$•,í','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_zh-CN.js',0,'JQˆÅóÁC?\0T2®Ÿ{ª','JQˆÅóÁC?\0T2®Ÿ{ª','±-½èuãúô„ý±r•RàÑßðßÆ”åŠþ)ªY®¶','',0,'?'),('N#‹6—¥yÅ\rÂ7¿‹õ','wp-content/themes/Divi/includes/builder/module/woocommerce/Price.php',0,'ÝLžoûØ%Ãä×FDI','ÝLžoûØ%Ãä×FDI','çùý’¤^ÃVèwMiìÞcÃÉ*Sè8¶·¿ÙjY8l','',0,'?'),('N5ü»fè²…í:°r=','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/UploadSync.php',0,'È\'rïÀz¤+2ä»¥G¬','È\'rïÀz¤+2ä»¥G¬','‚++B„èYgüf†U\'^ñˆ¶ö1¾ÙþÿŠÝ¡¤Ä†','',0,'?'),('N7—Aä´\0ÂnnV¾Ö‘í','wp-content/plugins/wordfence/images/checkbox.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"³ÈG\rû6|ôˆ˜€\'','ð‚y~`w(j×~Þ=ë¤¼&·ýÝ´ŠßìQ>`^Þx','',0,'?'),('N=®fÐ>$KŠäâH¼TÎ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÇÓë‘?G{òõ¸ñg','Ä€Ð <WŸ;-\Zñ€™¾—(C+¼,Mþ•ÌUâáW6','',0,'?'),('N@ó|Œ UKûš¤úwOí3','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/bbcode/plugin.min.js',0,'n’Ð3Žr(L‘\r¼ÃnA','n’Ð3Žr(L‘\r¼ÃnA','šãóÍƒžM+U«9“B\ZîÖv·­-}g\"JßÐ-','',0,'?'),('NHµ÷Ô$WJ+LÇïÏ•„k','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'½2Ø^?-g7ü†Í…ŒE','i–CpÖnˆ|»õÕ§[Uí´Œ„CLÛŽ\"…~Îo','',0,'?'),('NO}R)ö°sžÑŒú;âÈ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/CommandContentMd5Plugin.php',0,'üêö´ˆ³dIJš>Þê\\§','üêö´ˆ³dIJš>Þê\\§','cº&›ÁÃ??rðpi”ùpW¢ÀÌRp“E\0º¾Ã¨²','',0,'?'),('N\\-ßŸgÕï8±{È-','wp-content/plugins/fusion-builder/js/admin/fusion-builder-admin.js',0,'ÈBØUi¯2+©ƒ‡Ïä\r$','ÈBØUi¯2+©ƒ‡Ïä\r$','{¾©™˜›Õ\"ÿaý¶ÌL•s…°ò§à¯×ÛO©iy3VZ©','',0,'?'),('N^4ÂóçÁ_9ê','wp-content/themes/Divi/includes/builder/plugin-compat/divi-filterable-blog-module.php',0,'ƒo_tËÎ\nd%ºW%','ƒo_tËÎ\nd%ºW%','‹8éŒí¿o\'uôÍóeZÎ8ëÙþ®ÐŒÁžÇ\"û','',0,'?'),('NhgØÄi]5¾P½-|ý7','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ca.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îÑeG‰ë5u]¥ÛÀÙXhÓ','ZjEÌ®õ\0¦!Ö°¸¿åÜÄãY®ôå‡¸œå­í­','',0,'?'),('NiÅ~	Õ`øà®W°E','wp-content/plugins/wordfence/lib/wfAlerts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™Kù(A¬ž|ŠÏ¯y±ðL','ô \'_Œ;?á|US5d}K/+,I!|Åà®t','',0,'?'),('NsLÜb‚7/ÂW\r\'Ü','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobResult.php',0,'¶¿üBŸãÍÿ¸~kJÐ','¶¿üBŸãÍÿ¸~kJÐ','™ÂV¼2¼m’(B(ò¸þ\\\0î](I /€L¬ÂË»hÿ','',0,'?'),('Nw5¿Œeæµ³›ý\\UxuÕ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/AbstractRequestVisitor.php',0,'E!fDáä]r’ÑK »Ôš','E!fDáä]r’ÑK »Ôš','õì0ÎpX¤Û7¸A\ZâlÇš¦y2á\r–òÏÓf¤YÄ+','',0,'?'),('N|þÂ‡JÐ²ªzn×ösw','wp-includes/pluggable-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@†¥è\"•jÒô£2ß–','úÄUÛÑÃ=¦ˆÅÇcoâò=t1Î-\\î\r÷=','',0,'?'),('N3Ýj@pu5“«¶¿^›†','wp-includes/js/tinymce/skins/wordpress/images/more.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ü·¼Ô\n¼\nm\0;üË«æz','$³vçÚo^„²ØU› ¿A\0ëô:ò\\C¨u¿½','',0,'?'),('N”¤?d;•Ûo\nœý<Àù','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request.php',0,'ÅÞIòW\"nOæÃ¤j•†','ÅÞIòW\"nOæÃ¤j•†','M›§Œ­»	°ä¡Rvå¹Žo\\²©Ç°zÃð…Í¨','',0,'?'),('N˜=Œ$*åÓ;eí›3ý','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssImportFilter.php',0,'’vÄœL}¾ùÀ€»8o8','’vÄœL}¾ùÀ€»8o8','þ®8éŒ;×T‹ù,DÂáê2¡z*{€Ç0šü€C','',0,'?'),('N™ØÄâûD‡5Oñf‰','wp-content/plugins/wp-mail-smtp/assets/images/icons/dashicons/dashicons-pdf-grey.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T®Æq—;Ñgìt¨ð²Žƒ','ëÿôÉSÜyPYÖP©eB®†àpÜIå»zü\'q,®!l<F','',0,'?'),('N™ê¹KŸ©a¾]ÃÕQ/','wp-content/plugins/updraftplus/methods/openstack.php',0,'LÍÍíiØÀ’—8{výa¯','LÍÍíiØÀ’—8{výa¯','m×Ö¾yƒ<˜¢0wœ‚û®zzˆ˜Þ†ÙDrŠ#ó','',0,'?'),('N%ìÒ|©DyT¯b$@r','wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/Configuration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïèk‹2£®	z&­x','´y[¨Ñkdz7¶Û5¢p—MpZ›É±»Ïio“€','',0,'?'),('NžaÆ¤SiÉñ[â“6^','wp-content/themes/Divi/includes/builder/plugin-compat/sfwd-lms.php',0,'•çÀ¿¤©d°Ä´8ú','•çÀ¿¤©d°Ä´8ú','mÿ›¹é¬û…ý{XÔ…Œ+ž;ßkwÕÄãŒX-','',0,'?'),('N¬Jåk‚ÉÆgìbs¤','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/EntityAlreadyExistsException.php',0,'}þFûe¹(ëÙû,÷S8Ì','}þFûe¹(ëÙû,÷S8Ì',']Ù?xK1§UÌq¤\0n¡Ã KM=­›¸yI?ãf','',0,'?'),('NºéÈµÐï§V³ßr>l','wp-content/updraft/index.html',0,'vEòT®-1¥Él0h‘¾ ','vEòT®-1¥Él0h‘¾ ','È¹;k\Z¦¥!å‹‚Ác¶nuMØàY-èuo%ã¼','',0,'?'),('NÃ>WöþËÜšÉýå†c','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSendersList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜l$,¦C€*‚éÔÚM,','•w\n-‡…·þà:o¦brDÚÚŠko ‘\0s ÿ6])','',0,'?'),('NÔ3–ÒIÕ›—÷ö;$‰','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Debug/WrappedListener.php',0,'žÙ2KËìØ/•ËÇÌ‡Ù','žÙ2KËìØ/•ËÇÌ‡Ù','¸›ÊL+z“NáD¦EÛü\rvcgÛ0›¨ªqŽ\nMu±Œ','',0,'?'),('NÕ<š…\\€‘_ãÈ´Ty*','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CompassFilter.php',0,'¼n€öñ\\F–\'à“ŠƒÚ','¼n€öñ\\F–\'à“ŠƒÚ','Û:´½|…z¢¾Bã=Á9Rd^{“ŽjÁÈd±™×„dª<','',0,'?'),('NØ„Î—,$÷)ß!‰lˆ¼›','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/text.js',0,'Ám†lRXÞñw\rh|¹{2','Ám†lRXÞñw\rh|¹{2','“Á‘sA©Ñ‘«© 1cßx†ô”qÈW[+C“4|','',0,'?'),('Nà¥\0/G¦°øLåé:s™w','wp-content/plugins/really-simple-ssl/class-rsssl-wp-cli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Fµ:€ ±LËbïpÍŸb','\'ùTÝçÉ5øV)8„ýÊºûCÝDd!ùˆ@í™','',0,'?'),('Nè—›_„x¡“{ H÷Ä^','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/image_select/field_image_select.js',0,'\"ÒyE&)ºúÞNå€,æÂ','\"ÒyE&)ºúÞNå€,æÂ','7|$ŒÚu|HQp€Q%X§§È½u›6¾»¶Ž:yÆ/','',0,'?'),('Nëˆ\nŽ›¯ž“ˆ4*	[—','wp-content/themes/Divi/includes/builder/frontend-builder/build/preboot.js.LICENSE.txt',0,'âþå»î»‘‘kŠœ#Úß\"','âþå»î»‘‘kŠœ#Úß\"','¥¤—Æ5²H*–&<-õDÎ¯)ïÆ¦cïêÏÖ','',0,'?'),('NñãþHVû®Õõ}¶4G','wp-admin/css/customize-widgets-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J#{ïš0xpÕÄÃF»Ú','U;ý{‹÷îµY+sŽÒ‰ÒÅ‹e³|‡çî7îåírY','',0,'?'),('NôÀ»´UByša€Ø ÏÉ','wp-includes/blocks/columns/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ã§+áìåU§zÁÉ„A','¤6š¶ŽM½)v·Ý±óJì^IS›†“#“ú¦Vt!+4','',0,'?'),('N÷cíÝ¢•Ê,=Ô³5ºÍ¾','wp-content/themes/Divi/includes/builder/module/field/display-conditions/NumberOfViews.php',0,'Ä‡å«…/U=F“','Ä‡å«…/U=F“','–v\"™î< HÑ±NŸrJ%\nþÒÇ;“+»+PÈ’(q|c','',0,'?'),('Nþ’ƒHçÇaÜÄ„\Z','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Connector/Connector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l¦õ<ù}%É:´ªí,','\n¨w¤ƒ>îÒ°¾\"3f~˜\0¢E¡þNÕÐ±ó©ô','',0,'?'),('O	‡ÒS ý•Ç#ÅÿYiòv','wp-admin/includes/class-wp-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þ„I‚/ï°z?oÄÉÇ Å','hr‡ôApLA¦LÊ^\0ýŒ\r½ƒ÷ì<gT³ä¯5','',0,'?'),('OûÏðø#	r’ø\'','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingContentLengthException.php',0,'„½°£’uë!ë\Z/uÃ‘å','„½°£’uë!ë\Z/uÃ‘å','³QsÇ¥©Þ|‘Í€©jT¸2é£÷&˜Î}Ä»j¼','',0,'?'),('O„Ò½PTí^•4~ÅÅB','wp-includes/css/dist/editor/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àëzžtK¾Œ‡=þ¦¸k\Z','!âÀÚŽd±F5M“wÔ%ëY×Ä–’Ê2é¤’9û\nQ','',0,'?'),('O‹yÞ‹}G¹†V','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Exception/RuntimeException.php',0,'QsûPSRz÷¸0w[-g','QsûPSRz÷¸0w[-g','õÒäFIõÖ\\O¼„ÇË„Ðä¸Æ±[¾¾?4{Y¾C','',0,'?'),('O¾b<…\ZžçTÇ=','wp-content/plugins/wp-mail-smtp/assets/images/icons/warning.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜÓ6aò±·:Y~ö–átk','ŒÕ÷‚SºØÑNƒ¯èÍ:Rö‘L®øRD×l9/Ü€','',0,'?'),('O =(:ËÄ<á	Þ1F¿','wp-includes/class-wp-feed-cache-transient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†x¨Ý?^î»¡>ß³Oô',':˜Ì;hÓ!xEÔzû¯P+¦dV¤0—Žù¹Dµ','',0,'?'),('O+ý­Û[›IB÷ŽÉm‰m\'','wp-content/plugins/wordfence/images/wf-central-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qà(ÏÅVÑ¤ªê®','\0{\rªß˜²J/× ø^†+áõ,ÎìS™Ð½‹Ÿá','',0,'?'),('O-Ã§@ÄÕ_*ß;”','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/SocketHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á=¢[Æh¾ÂB˜˜_{5','Ñ¯ëSp•¶0æŒNðb\"q³(ÝÍAcWTlWœ<¹','',0,'?'),('O1Q!qði@\"“™°Äã','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/LessphpFilter.php',0,'yœ³ÅDyFÆ?½K>\n0','yœ³ÅDyFÆ?½K>\n0','à´Ð6qW{üzXbÒÛ$›Í’¸z\\HäŽÖ@ ','',0,'?'),('O3Ö¨£¡³É+~J:','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©ÀGÑt+^|®ÅÝ‹wÇB',']³`uÖ@<iSt+Í\"(M*?@Wý0&`ð¡N›;s','',0,'?'),('O4‹Ç³WQ™\0”ÒRøï','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Çˆ­»©\"Cåixœü¹','ðªËxçœª!™¢ŸÄ}ò—\Z¶…˜Ê‚Wª¯úËd','',0,'?'),('O5lÉeÞ3¢Q¯•Fb½','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/BlobPrefix.php',0,'äŽ»`ql\ruDó‰!j','äŽ»`ql\ruDó‰!j','r÷Æ‹’‘^\0EU½s w“`b&´ØY¹®oQ -','',0,'?'),('O=üÈh·\0}OíårL£b','wp-content/plugins/wordfence/vendor/composer/ca-bundle/src/CaBundle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZšU÷¯~¼L5Â@\ZVU','/§rÖìT„rm¬š¥ØG­Ñ \rª%˜e\rÓí|âú[','',0,'?'),('OEüA:)£(N.É¹˜','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/MessageFormatter.php',0,'ÉTM*c4¿×E-\'§a','ÉTM*c4¿×E-\'§a','^V”ù—Ä¿£L¯P¯p1YeÜà€Æ#ûCþ)’©','',0,'?'),('OPƒsñ„òÙ ƒ)\rg6','wp-content/plugins/wordfence/css/wf-global.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€ADmqcíèvÅ˜d9','’(OÀ÷Ó›Ë€ÔŸMAWÖDã0Þ³Œ\\åÛ5LG¹','',0,'?'),('OSïYÓWz!8õÊ£j±','wp-content/plugins/wordfence/views/gdpr/banner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öÿòS>j \n¢’]g','Œ\"–¼õ°^£8Tú!šŒ—,õ…<­1ÍÒK€‰\r‚','',0,'?'),('OTíõMM¨;8¥ùot','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/UnresolvableGrantByEmailAddressException.php',0,'Ý¬½Mç4º2+ç¬Ú²','Ý¬½Mç4º2+ç¬Ú²','ÀÆî=RÒ9CÅ5•wƒú6G¦¥MéA—‹‘','',0,'?'),('OW›Œ?­¬>s¸rLÃrY\"','wp-content/themes/Divi/includes/builder/module/settings/migration/RowCustomWidthToSizing.php',0,'®ç[\\”:XPšŽEé','®ç[\\”:XPšŽEé','rK|×ÅÁcï>²~ÿ§±n±¿v—¹.s\Z°\rÝ','',0,'?'),('O]q¢ŠJãÄC¹e«¢\'','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Message/RequestSubscriber.php',0,'…×,ò—<B>_»C#­','…×,ò—<B>_»C#­','ÈsŠñjZæ\\N7`’ƒa[‡\0ÌMZI\\‡ßµ3\n@Óž-','',0,'?'),('O]õ•€©Q¤_a¡¼¸','wp-content/themes/Divi/core/components/api/email/ConvertKit.php',0,'P¦>t&²w|¦Àúo¨	ä','P¦>t&²w|¦Àúo¨	ä',']Éõâ0¹5É¬á>¾Ÿ„møÎ±/¼Òk&÷.rvDï','',0,'?'),('Oj~™Óý§Ö¼k8«¦6','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/phar-stub.php',0,'øôWàD£KX‘àŸ¦ÿaì','øôWàD£KX‘àŸ¦ÿaì','Õvq$u®ðéÕBÜq2ð\Z/€ê|µPøT§ÍÒÛ','',0,'?'),('Ok]¥ˆ(zC-\\ý¾','wp-content/plugins/wp-mail-smtp/assets/images/providers/sendgrid.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éêiÅ¦Dye´åV_Ô','5HÝî#l&/ßb×”#-v_Ä-iüŸ€b–\"Ý','',0,'?'),('OlqCcÛŽÐïÖÊãÏÌÐÍ','wp-admin/css/forms-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿkç¥6ØéÊE‹š¯¶','àþ>Ü\rå¿ˆ‚‘¨Æ÷R[¿>³í•Yâû„ÊL	Q\07U','',0,'?'),('Ot“øº©N7«q§®f¿','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù¢7ÉËëQðél”>','”ß-lå¼Ö‡ŽFy‰²¾¡Xðè\Zšè~,Š?¾Ï#Ðå','',0,'?'),('Oy™}MaÍˆ_Öú“I','wp-includes/Requests/Exception/HTTP/504.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aµÿ¯ªæ wj»Ñ™—9Ô','ù<¯˜£“!B¬|$k¨®¼Ýˆ # Œe¬i%0','',0,'?'),('O|Ì(m^ôŒðu.åêÕÍ','wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/ConnectionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bçov#ªõ*SÑøÀ)\Z','•ØÏL’Ôí—ß/ÿ£Ó\ZµªÇõ 1>;ºåðµ¿Ù÷','',0,'?'),('O‚Ô$\Z¯Š	o‰OÄB','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/TagManager.php',0,'s-ÏhÃá¾Êº@ãúÃí|û','s-ÏhÃá¾Êº@ãúÃí|û','êÚ`²/H@²’€å%LïYšÁ?o}ì·H$','',0,'?'),('O‚æ½¼m$¸òž—Ý‹&_','wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÐÏ^ãFË\n÷D«ˆÒ­¯','2\"œÞ¡ß4e‚ÒÊKÓ—ƒp!w#½ëñ¥Ä1¬øä,','',0,'?'),('Oû\\©¢µP5ÑÓÿ{¾R®','wp-admin/plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àŒà³]½ˆqÆy°]¬','xQ{0Áº~Æû=‚ñi4ãRÔ˜ù+Š4Ã5¦‰B‚','',0,'?'),('O¦ø÷À%DâKÜ’ ¾¯','wp-content/plugins/instagram-feed/img/sbi-oembed.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')–~Ï ´f¸t®Bšœ','÷GÒ¨’»åÄ3J%!®¼LÊý¤ë6N‹4¦ÿ}| ','',0,'?'),('O§ƒµà&Ârè“•ê ','wp-admin/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µéÉžªäWHÂ‡v,j','„r¦ý—é™–éÿ§™¾B‹B`ïtpÞ´”¨¯ä€h~','',0,'?'),('O¬¬ú³R¯r¾©£èD•?—','wp-admin/js/postbox.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥Òbˆ‚áÀˆJ“â«z%p','†qG%`Ú3E÷:j~^\ZÒŒ¾õ;,ó','',0,'?'),('O»m©€u!¦Jrë®Uœ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestTimeoutException.php',0,'3†.õ\'®Û2\Z@ÅUÐØP','3†.õ\'®Û2\Z@ÅUÐØP','áðª\0dóX3×¶²p\':•6¯u×dSQop4Ø6¥`','',0,'?'),('O»˜@ZodeÜWùÕJ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/AbstractTransfer.php',0,')¿å2²¨7@n\nHGÜ;Ž',')¿å2²¨7@n\nHGÜ;Ž','C\\†°ØÏœÿ’f”9%Z‰@y§È\"@ÓâŠM€','',0,'?'),('OÔ:.Ã`ÑD.±ÔæŽKDm','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php',0,'úÕ6ÎçqYmc>”Üu;r','úÕ6ÎçqYmc>”Üu;r','¿1Î‰:±_ƒdû­Õ@ˆÚg.kÚoE¤è=9K?ÔlôŽ','',0,'?'),('OáûÆÕÞy ®ýk	b±','wp-admin/css/customize-nav-menus-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼HÑ3µ¥ÖbñQ’.¹îó','•Œ\"DYè¦áå·èÎÛ	t™üB5éaK±†1Ä','',0,'?'),('OåëÏÌåHI!K!0[Ú','wp-content/plugins/wordfence/lib/menu_scanner_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/€úÌáßDôXÒ;üI','£‰ÈCÞ&YB—p_d$€,+†—ý†•’ÅœÔÊÇJ€¾','',0,'?'),('OëKÄ““éÕ÷;Ê—0Ò','wp-content/themes/Divi/includes/builder/feature/gutenberg/blocks/PostExcerpt.php',0,'näÿ4(4¦fÀkj+','näÿ4(4¦fÀkj+','¼èÈˆÔÚ¿äöY7^#Ýpˆ¡`vkßÂd)m’','',0,'?'),('Oë”>«õóÕ¶Øø¤‹wwè','wp-content/plugins/worker/src/PHPSecLib/File/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('OëðDŽvÜó5´³¢£3Å','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*R4Ãã}Ÿš V¸žê','\".×zæaši?É%« @L Í¯ÛCPï	OI¬	','',0,'?'),('Oí5eÌîî;hz—w@’W','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šZ<º†æ‰Ç{~Gá¢f(','çó´,×‘[\Z¯£Öú@¿+êÖÂ?x³’ãPÓÝÐ§','',0,'?'),('Oñ»ßOàM_K7Âùnšá','wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*5ÊüÛð^gG°o<NN','5Õ\'4Ï£j3Ã’¡NjX’CU‡!º†ö¾÷]~','',0,'?'),('Oþhu²G¯ýá²&\0ïLÿ','wp-includes/Text/Diff/Engine/native.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯SöÕ„\r“ž$ÔT','SÏê\04â¡v@ÝÅ±`›DG VÏuÀeËRý’Bç«‡3Œ','',0,'?'),('P=%Dhw¡ÛáØâ¾‘4','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/AbstractResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&¡Ù|åý˜$¥Qé	Ë±','­f\rluôw+¶3Ï 4á3Ó˜ioáÂ­¦½©RQ\\`i³','',0,'?'),('PŽú®\"š„—mÊ_¶IN','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Resourceviews.php',0,'qVN+X–ÖÞ_ûî’†Å','qVN+X–ÖÞ_ûî’†Å','9á³M¤äÃ­©âbæ>Š’[s”¦W6‘ªô‚¥\\O','',0,'?'),('PðŸH­ßZ`â=¼²','wp-includes/blocks/pullquote/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g#-ÑÂÉ:#fï°•k8','fzÊ«§—èW3‰.OJ¥³›ÖJI‘çoƒJÙ¥¥','',0,'?'),('P¶bw¿=‚Ìõ”©ië–Ò','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\\ZÁÄIw5AlLÛ¢','úã´K{þ8¦Àfl…7s…RhÎúëžå—‹Ê‘I','',0,'?'),('P\nýx!‡À~é6Ò»ó³ ','wp-content/plugins/worker/src/Monolog/Psr/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('P‹ïæV£Qà°C¾','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';Š´KÙ9qÝõTãÓ','@®R¥*ÙÞ«QÇÔ}¼ i²ûh/žÜã•é~†T»7Ý','',0,'?'),('PÐ/:ïÕÌ®¸Ò‰¶ûÖH','wp-content/plugins/wordfence/waf/pomo/streams.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºÐ—:4†z™ÔMÃEô7å¢','à±!8ÓösºàwÎ#©)˜ï\rÞ<¶r|2y*LS^','',0,'?'),('PEÛ«½7r|oI±6ÿð>','wp-includes/js/backbone.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼¦`ft7\\Jà*‡÷4a','jî…Ë¯ú}jÒ$ãÖ@§ÄÁçÈ÷ n%Q|ëlé','',0,'?'),('P „ôÒNtD«ÝŒŸn\"±','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a¨Â!´,¯‘^Òq—','Xß‡p÷Õ”ÃZ’Ð‰ÒÖ±oÄ\r»=Ë¸<!„~²3æ','',0,'?'),('P&_#Ï\'ÜzTâ†Žs','wp-includes/Requests/Exception/HTTP/417.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oPØ%~Á75jN†§}aß','€˜€LáT˜²Ò˜$xDsš^ùh_!kC»\"1\'ü™_Ô','',0,'?'),('P&®¢¹¡ÜãÀû›{üÅC','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PhpCssEmbedFilter.php',0,'ƒ@’•-}ÌC3›,¦7õ','ƒ@’•-}ÌC3›,¦7õ','¾~>øðKžî‚@h~á\'\r7ÜÞDN•ÿÔÎy²Lr›','',0,'?'),('P\'ƒ(µôë?+‹z´“$¡','wp-admin/js/postbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"$;ó9HôS_÷·7œòÇ','éå`¬ØåRŸúæf!RdÞ<¢ÁÿÂþQˆ¸ ¦†GIJ','',0,'?'),('P+õÇŒNw´ÈÇ#eÁ,','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/AcpBuilder.php',0,'|®™=ÍÍ\"`(r‘','|®™=ÍÍ\"`(r‘','‹W»“ßÏ{¨Ës0\')d¤°gó‘y‚)~¶\rwˆ','',0,'?'),('P73oè©	§ë\0æ=áŠÒ','wp-admin/js/word-count.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë\rffB)†ç†øü…±–','µÇ6j¸,AèÞªÇ­såD½ÁeCÿz‡&‘ý\nü²à','',0,'?'),('PJ’~]øú; ž‹`y','wp-includes/widgets/class-wp-widget-media-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÄdCaäü*C^e~OriA¨','îLú/èT|ùà¸´wÔpEf1ÈLn­Ä!yµ‡Ê','',0,'?'),('PKˆ³2´Iªó«Á)¥‚','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3[«h÷k©da4îp','õ&û!Õø7^Ïú@Ñ9¢­ùNÌBTÇþíÚÇÖ*8×','',0,'?'),('PW0_ŒD¹;H<†ÍBY','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/ScssphpFilter.php',0,'çyt\néŠdfN¨­','çyt\néŠdfN¨­','×Áf¯Jñ6‰<ùˆ¡&b„ÚiGË#ïjG\r°e®û^öë','',0,'?'),('Pcß/o5žâ,Îìþ¶','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/SseCpkListener.php',0,'•w†DÄ FÓ‰Ç6Ô','•w†DÄ FÓ‰Ç6Ô','a|{îÔàa[\\±ßš“çŽoÝÜ?iü†!ö”^Òô$üt','',0,'?'),('PwÍï°‡øÜ#ê°T¥¬','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CleanCssFilter.php',0,'¿á±õ)*²7ráÒ·0','¿á±õ)*²7ráÒ·0','´ù£±Ã˜+ÌËô\\@)>\0ý1yW‡b©kX\'èz','',0,'?'),('Pƒ;_åékƒRÐ%kêÝ°n','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/System/SSH_Agent.php',0,'±Š’¿;ìb\r‚5E«ª–','±Š’¿;ìb\r‚5E«ª–','61¦ƒE³)\riôæú¨—¿žJ²®Kà®«/Ú@Ì‹e*','',0,'?'),('P…—ƒH#²¸³@ù\0<÷','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Account/AbstractAccount.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Èœß`®0P[€Ö±\ni','{pdv¢5òfpêITø`P·/a†ùZ…³','',0,'?'),('P†²[ˆDáXPõ€aÉ‰é','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Subdivision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›Øï;uÂ‰ýS¹‚ìµl','ºM>:\rù&áVýÌ`Î\Z:¶O0éSv;\0þÁVµw','',0,'?'),('PŠÅiz¡tîaé}Ôa','wp-admin/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S}®:T&€ÕBÜ½6,','Âó2–ðn,/M Vüä5ðÜ[~_´›= Õ¥Ú','',0,'?'),('Pˆv\"<è¹AGÈfÏO','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CreateUpdateError.php',0,' â®†þ<’Ÿ¶_jS<Jë',' â®†þ<’Ÿ¶_jS<Jë','#÷2kõš6ä»OØ€CÙJlx…N3¿Üm91B4','',0,'?'),('P£€høýãüŸ~é·â›PÎ','wp-includes/blocks/page-list/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','téï dùpÔ¯— Ur','4QNsý¼Ã’ðÔvývÕ×7D¡‘bí`0fáš0€gg','',0,'?'),('P¤¹@ÅW‹]|Ãžv.6','wp-content/updraft/themes-old/twentytwenty/classes/class-twentytwenty-svg-icons.php',0,'TÝÑ¡~»²Â°Fƒ5Žö','TÝÑ¡~»²Â°Fƒ5Žö','¨@«øLÇ}›*X¢¥H®“3Ši*tÒyk¹žð„€E|','',0,'?'),('P¥o—–·šôPJ‘\nxŸ','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/InvalidArgumentTypeException.php',0,'±‚Ú/QuÊz»ß…ØT8','±‚Ú/QuÊz»ß…ØT8','Pý|‰ŽF#ÀÑ{…umI\næÔý`RôD>ìÝ—£Î*','',0,'?'),('P¨ÁÅñ°Ž¥¼PÐ©','wp-content/updraft/plugins-old/updraftplus/methods/insufficient.php',0,'Ò.¿$c×ÖW‚?:=à^','Ò.¿$c×ÖW‚?:=à^','W®1Ynœw¤+Q˜FÙª\\,|ñ2Ûb…!','',0,'?'),('P«$qÐo$”Kž„Ø¤:H','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/InstanceProfileCredentialsException.php',0,'™!…í‚–(š\'±¶I0fC','™!…í‚–(š\'±¶I0fC','’3”•»–¶søÿûÇ¶Áã~õ¾ü§?\\M³ìÁ:Å8ô','',0,'?'),('P«©$uåŒ¨Ï((]oRd­','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/HasDispatcherInterface.php',0,'ïÛ¨0k~l¢<J4•é¼','ïÛ¨0k~l¢<J4•é¼','¬~_ªûv‹êP¼ÀÌGm,ðªÀ CïšT@ï*`QN','',0,'?'),('Pµá\nÿe¡äðuµ\"í','wp-includes/sodium_compat/lib/php72compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XùÊB­c“»f4ï[\\','\'ò¢{~¶ªVýA(üp½XÜû”¶ÈµÆE/éù','',0,'?'),('PÁ:Î\"==¸¶$í#>Ð','wp-content/themes/Divi/includes/builder/feature/dynamic-assets/dynamic-assets.php',0,'fÊ5õ±°2õº¾¶eunö','fÊ5õ±°2õº¾¶eunö','lÌrØ\")›&¹\r×^*é°,Ì­:õˆa=ñ„u','',0,'?'),('PÃYUÿï\'Dÿ#¿>SœK','wp-content/plugins/fusion-builder/js/fusion-plugin.js',0,'`rÀ[í¢aåµWwtBÃ','`rÀ[í¢aåµWwtBÃ','Š»bž”à²x¨JRaöá˜ú×#ƒ4]Îœ','',0,'?'),('PÃÿ@¡„É;b<\n¸cá','wp-includes/class-wp-oembed-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í•«âha°p… å^–âf','ŒüLzúA{Œ@g†\0‹Œë·Ñ{Î“Ø¼qxÒ†X','',0,'?'),('PÆMî\ZÖIÌ¸Ý­Y`r','wp-content/plugins/wordfence/lib/wfHelperString.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×EuÆ»\\S w?,Ý_™L`','£Îñ Ÿ¶iÂLÆ›wµÆÖ6É_§¾ç,n—2S£äZh)','',0,'?'),('PÈÏ8y’øEAñ~ÞOK','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ListBlobBlocksResult.php',0,'a­ºðf\rŒp^ž?Ø','a­ºðf\rŒp^ž?Ø','\'(Ìj2)ÑÔP—²¸\'’¹»gÊƒÏ)8­p3Ó','',0,'?'),('PÍ`D#|H!´-—u …•þ','wp-content/plugins/updraftplus/includes/ftp.class.php',0,'øx{XlÍê¿Vž\'Þ~]*','øx{XlÍê¿Vž\'Þ~]*','ÓÊýVósÓÇ2¶¢ …`„7CMà¬Z¾`¬¿oB','',0,'?'),('PÎgïÞy¢©¶®‡wõÑ','wp-content/plugins/fusion-builder/inc/lib/inc/templates/featured-image-first.php',0,'P)>ÙH•.›ÕÑ­\"Ùq','P)>ÙH•.›ÕÑ­\"Ùq','¯Òd×cå~{Ëq•¤²šaí¸A¼\Zß¯€Ô´¼Ê¿','',0,'?'),('PÛ\\Ëa&½šg£S€@©_','wp-content/plugins/really-simple-ssl/class-certificate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù¬b\rÒ¦¾2 ‘“v~1','ó84ÓÑ¢=€}tBôN8:%Š´æ£!ê9‚ò_','',0,'?'),('PÞ1$¶‰ó\\*åC','wp-admin/images/stars-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õêA”§œ#æS²Me.^','[®òè€¿ý_(\rhª×çYÁˆ´Tî¤¹ðßqZ±Õ','',0,'?'),('PâƒËrdáÉ‚FÔw¾','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ru.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kF8Vì´ËË]—ß-×','’\ZµwñH,“\rØcâá\Z÷ ó#eùÀs]¾¤õ±·p','',0,'?'),('Pã…ñ0¹a‹¼RÓz= ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Û3çgkeÍ¿Ý¾ŒÜá| h','ØHzjéž¨%Â‰¹²…p=ÚZÕà–iNA‡Zô','',0,'?'),('PçŸ¤o¤åÃx…,ƒp´à','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/ServiceSettings.php',0,'`Äë˜ÛZø8&>s¡ð€û','`Äë˜ÛZø8&>s¡ð€û',' ÌÎ¾ÕS—‹˜wJ­‘~\n3Áh	/‘›¼›_\"Bøª','',0,'?'),('Pô÷9øm4w_œ¼y¡0','wp-content/updraft/plugins-old/updraftplus/methods/email.php',0,'°<\\ò[=ÜpóZ¤Ö','°<\\ò[=ÜpóZ¤Ö','.\r…™³$ëf$Ð5Þ[øs2Å8vå´ª*Po)T','',0,'?'),('Põ…0ÿ£ÕêZ\nSgŠdî','wp-content/plugins/updraftplus/methods/s3generic.php',0,'|‘Ydt.Ø\'ÌìÑT¸•Ú','|‘Ydt.Ø\'ÌìÑT¸•Ú','!gÓøÈYutÆ3î$ˆrk¶q*ôTÔnešg‘ª','',0,'?'),('Q\n.u³ñjÅ›DÈúë','wp-content/plugins/fusion-builder/inc/admin-screens/faq.php',0,'@?+lU†ù¤\0~­fö&','@?+lU†ù¤\0~­fö&',';U\'*bH y;Óý¹SÐŽ!ˆs£¶LÞ1 ‡IV˜úÃ','',0,'?'),('Q&ÄÐWÓT%*m>^Eö','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Store.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬€›*\0y˜Ö±¹A\'Ã','¡‘@\0Ëxz<±\Z¡ò1ªœå½/h®|›ŽæQæË-','',0,'?'),('Q;Úòé(ü±¬Mp*ñ‹','wp-admin/js/widgets/media-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™$MŸ8]Jb¤=EK©î','ÕøùáËõç¼„Á:ÐUï{Fdž™÷F‘ZwÉZyG','',0,'?'),('Q??ÄFà«|æll9ƒ[','wp-content/plugins/wp-mail-smtp/assets/languages/wp-mail-smtp-vue.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…Þn^qH#ÝÚË¬íß€V-','+ŒŒ/ Àÿž—û.midË}&O;áT*LÛÃàÈG¥','',0,'?'),('Q@zQŒcy;ãð¶yêx«','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JSMinFilter.php',0,'5Ï#	fDììÂìý+GZ','5Ï#	fDììÂìý+GZ','e„pâ$czüô/¸R„µ}h\"ª8n½›8\n›¢$','',0,'?'),('QCýÈ§¤ÀŸ$9B)¼ŽM','wp-includes/blocks/tag-cloud/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YÆÌÏúiƒ\0åŠÕ¹~f','t•o•ÁSaVƒ4A–¹À)Þž[ÝÛILƒTŽ|Ó¬5','',0,'?'),('QGgÿ‰ÈXËÛkqí•;j','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheKeyProvider.php',0,'‰µ¤_eã™©Í®+Âò','‰µ¤_eã™©Í®+Âò','i|\r˜5+„j›Àšû/¿*s©ªíæ“íZvíD','',0,'?'),('QT«ñò*f×P„å¥.¿','wp-admin/includes/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹ç\\vyâÐS×tëAŸ','wÐr®QäsxÏÉØ„GŽÝ8R%ôýä¯¶1f™ùÑà×','',0,'?'),('QY—ê1ðTl’¹Vr<','wp-includes/js/customize-views.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"r›<`¢óÄÅùDÍâ…','b2¿M¨ÿ!o‡;±-ô’veqüË\\f´]l¤”À°:','',0,'?'),('Q[+åG‹fý‘d¸js','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/worker-javascript.js',0,'ÚÈô1È\"Ú@8æZì°{§:','ÚÈô1È\"Ú@8æZì°{§:','ü¹ÿóM_ÖÊá=HÂÃ;aÊ*3I8ô\Z‰Ä_dZ','',0,'?'),('Qg6ÇŽ‹Q^‚¦øˆô1)¡','wp-content/plugins/worker/src/Symfony/Filesystem/FilesystemIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0g|Áˆ1ae‚Œ_x3Ä@','9ŒÓÿPØÎYâL2¯W\ZŸs¯?—âÚ@³¤Ûmª6‰','',0,'?'),('Qknbgì§£\"@Æßöþ0','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sl.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$i¢ù·i=¯ØY»ÎÃ','nÝÇ¤-¦,—\nËaÍ†®´K {oùNÈ… øH+ƒ]','',0,'?'),('QmZ\'º:†výgäâ¥','wp-content/themes/Divi/core/components/VersionRollback.php',0,'åÄ’.h&})‡î:¿Ö¨','åÄ’.h&})‡î:¿Ö¨','3÷¦½Çm¡™=*¡æQGv\r,v²-Ü\\c‡îh³R','',0,'?'),('QuoPXØØ\0«¸SÚž','wp-admin/images/bubble_bg.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú~Ïg<Ä‡óI Á¬®0','\'+uÒWë`-A²¶èþÝS\'¤}S~SõÒb¤Ì—','',0,'?'),('Qx´Ð¨¡ á¬N»ëøg','wp-content/plugins/updraftplus/includes/Google/Service/Freebase.php',0,'•,°Â0ðÕ³R6œOÍãŒX','•,°Â0ðÕ³R6œOÍãŒX','s}\n³HÄm…¯kÄ^a¼b ®£GË¥!¯õÄ5D;X#','',0,'?'),('Q \n&QÏÉðcÁiEx','wp-content/plugins/really-simple-ssl/grid/css/grid.less',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Áþ¶B]˜Ï£ÂVh…ò ×','ÁäØõæ¤Ï£3ÄÑ<î¾\rœ[U¹?¼²î7·å*LÎ','',0,'?'),('Q€Â.èÍ¡Jé<^Ý','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/css/select2.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýŸä=‘c>!…ÁºÝ¨','b(ZöApˆ±ýocxHÊaôÎP®O£]†Dó=FÛ','',0,'?'),('QƒþcmÖuX\Z3ûB+‡žX','wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_>M»,Úx<M¦¿W{ªú','œPSHr\r¥…lý	á—sâ•w zÐúB³','',0,'?'),('Q„‡è@¢ßŽûÜ)<êP¾','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-image-frame-preview.php',0,'™Öå{€ 9ð¢Í››lÅàõ','™Öå{€ 9ð¢Í››lÅàõ','ˆúô—›¡”Ž¾vÊ!ÊÒÈ@	øVÉÈ_/«aÁy©','',0,'?'),('QŽÜÅPAý±ÕéšÌzÏ','wp-includes/blocks/columns/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s¨_PwxóšRC=2R','„÷v+)–l6¤‹F7‘FÚ$·â4\"í|n\0}','',0,'?'),('Q¡Êì=tÞ¿Sdzu‰','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ms.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®G.Å™»@_ÄØÅy~','/Öò!” \Z§–¼÷€2K¼ýx³Ænc‰·ÑnAÆ9)k','',0,'?'),('Q£ñŸ±÷.ÆizU¢/Q÷>','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpTimeoutError.php',0,'9#wû>üÊÃ²7~<?','9#wû>üÊÃ²7~<?','Bïø‹\r¿Sjã/Ê‘Ž¬†}~[7ž»P±@Ef\"ÄŸÑê','',0,'?'),('Q§Û÷6K4öÊ¨€ÒðH','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xAI6måNdSpVB×‡','Z?˜RA™²+û7#šCËý-ó”ú\\4g[o?J¶_£g','',0,'?'),('Q¯x˜¾Ì¿Py€ºá\'uE|','wp-includes/blocks/page-list/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}¯êÙ~6´[×ôs±ø¢','È/E|r^Î#}þj¬ã½¬]qvÙAå³	ªÎ³À©‘','',0,'?'),('Q°ö-ùC-]CÉÏÐø','wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ó%ˆƒ®\nG\n¥ÒR6','³ˆ­v$øÍ´Â×,«å†5Ê6Xö~XÊ§…éâ„ÔÛå','',0,'?'),('Q±(m®Ü”#Qÿ/3','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$¡dç¨,×ð†\r:f@\"Æ','?4å¤\nï&Ne¨YŒëÂé²¦ºÒ¦M”Ã	O','',0,'?'),('Q·`ºöä8þM¸8','wp-admin/press-this.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘\'xq ù>Š/¯ÐÏEQüL','>Œžkï(ÿ¦²B­‘®©ù‹h\\ŽÑ«Íœ:','',0,'?'),('QÇH(+nÃIs`Kß','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/class.fusionredux_functions.php',0,'y’$ˆÀÓ[ì\'¢LÞ©\\Õ','y’$ˆÀÓ[ì\'¢LÞ©\\Õ','êP¤`PJ,÷H‚g\0|Òå;Å¹)Ag„*Ó¯','',0,'?'),('QÊ\rf”‹_Ñ»ÄÂéê	=†','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/class.p.php',0,'ÞhÍ¤×3×I@Xmið|V','ÞhÍ¤×3×I@Xmið|V','–Þçœh.Q[!4“‘SfàÌ…}I–¹R*B»)Å\'^Ô','',0,'?'),('QÐ{	N†4†7œª8Ie','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchTagSetException.php',0,'‡¦h¢Ãg–ìtIÊ³*–','‡¦h¢Ãg–ìtIÊ³*–','®#ì•n-çuuÐ!E¦.ÛdPÁ0´eŠG‘&³[÷½','',0,'?'),('QågûƒC…§U#ìÁ±Z','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MÂkÝ¢A™ÛýD¬5zúyj','BQ©e!‹R±il˜ÐsÌnq¡ÒR41xë¤xê…Q!','',0,'?'),('QæBB—9òeÄM´=£¡?1','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/theme-builder.php',0,'XÇlPþÃ·¨,“Óï¯‹','XÇlPþÃ·¨,“Óï¯‹','cpO*÷-\\ÇŒH~4ÿÛ~L€ðbkÿ\Z/','',0,'?'),('Qù.Ã¬¼\\¦‚ëûXeOI','wp-content/plugins/wordfence/views/dashboard/options-group-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N»FþíY­ï\"ñ4\\ú','fN©„œÏ»`¼\nqè^ûZ\Z~á<’÷\'•I[¡!¬','',0,'?'),('QûºC&TÔRó½©P•À','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Exception.php',0,'€¯cE-Q€æJó7–ÎŽú','€¯cE-Q€æJó7–ÎŽú','ÙÌ«²ýÉñŠ\".àº.TBÂÂ`º\"ÅLèÕ\"¡Õ¾>','',0,'?'),('QýLcy¬§ô\nžÌO:Ó Î','wp-content/themes/Divi/includes/builder/module/settings/migration/DropShadowToBoxShadow.php',0,'îiÊdM·¹pÙØÐEÓœ','îiÊdM·¹pÙØÐEÓœ','z±Š\n~Ð÷@aµN{¼èšzaÑsúÂa¢Ía÷ñ','',0,'?'),('Qý©ƒÏÛÁlêg´-Äó','wp-admin/js/comment.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8ãtöù(-ÑÑp³y\rº','Þ³ÈŠ³ŸÊ;|´X†ú1¶Ij6ªûÁg[±“5ê','',0,'?'),('Qþï¬Ïµž‘	!er•ª5','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobOptions.php',0,'^æ|tdnðTl<Oèy','^æ|tdnðTl<Oèy','Ÿ×J§ÿßó)ævO?DMC¸þ®@õqynŠxqŒ','',0,'?'),('R“©G‚Ïc\0Ë®H%/ú','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sl.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å*}~*ÚÔ:ÅÕwzíF\'','~nžÉT½òÉséÕÜç<¡¾Š4&,±¤¾ÒKòÍ$pÃ1Â','',0,'?'),('Rºv5­–W6Ð`ÆÚ¾á¼','wp-includes/css/dist/nux/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z+ðn”…˜.UËÆhSz>','ÆItVÊ(Ì|ÒåæÑD(ø¡;¸ÑfÜ±hÑÚïÏøÎèH','',0,'?'),('RàP¹cZ•“à±ãbŒ','wp-content/plugins/updraftplus/templates/wp-admin/settings/footer.php',0,'zô¸ž”ŠJö§ôæßi','zô¸ž”ŠJö§ôæßi','“ä{þ¾Ý]¿{û†ê`“ÍÈÁájÑÓønØ§1*','',0,'?'),('R\rÆÝÁ€\rx§l]eÖå','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractTransfer.php',0,'ðƒ=ã¦iJwX§BË+Œ','ðƒ=ã¦iJwX§BË+Œ','y1 üÐÏJ-:‚¿IÚRÙ#”˜›ˆ\rT“ÛÙà™','',0,'?'),('RDÉS­YyòÉÄdNÍ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/NoSupportedAlgorithmsException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿõ‚)šÄ¿­‡ÿ>','`k‚NÎÝ];Š@ ù`ëiÂ½E…_N­\rÃV¦búlÄ','',0,'?'),('R!èUUÇ4ž”ZEÝ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/RedirectMiddleware.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ö….è®®e›KG¸Å9IÔ','=*Ç›©4¤u3‡¨* ^²ïÉ…núÅu‡Ò\' Í','',0,'?'),('R/íìÏ¶\\ÛÇBÎÓ£æn','wp-content/themes/Divi/core/components/api/email/GetResponse.php',0,'­‹5Å–™ùüSB‚îŠ','­‹5Å–™ùüSB‚îŠ','-j_€ÞÚN²â–®:Õy–0Chçp-˜6TÖ¦Ç','',0,'?'),('R3ð¸Usë3ÃÈ}TêœÛÁ','wp-includes/js/autosave.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÉòÇ‹ücJönûH¬\'','òþT%ÄÝ#€5rý„¢ôc5¿Åê˜©Œ·ÙÕöm7','',0,'?'),('RQ÷b7f§È |~Û“†(','wp-admin/js/widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4®>¸AÅP¿PÙu4Ä„Þ','‘°§ºÄvý5áªmÑ”\"-ò‘²*~`Ñ`Qg1FÀÑ/','',0,'?'),('RTjå%e2<¶è ¯o','wp-content/themes/Divi/includes/builder/images/menu.svg',0,'ŸO®ôò›t¾Pp‰ŠÉ‹','ŸO®ôò›t¾Pp‰ŠÉ‹','ò$Ug“G\0LŠ[,×ÜÙ·\"°»#¬±ëÁ ú3†','',0,'?'),('Rg—‘Õi€Ç¨ÛdÉˆ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/ext-searchbox.js',0,'Íž w	äËêúéÕ>8','Íž w	äËêúéÕ>8','¿ð5÷ËáDã\räÇÓ@òÚœÒ«|ˆd\0 3Œ','',0,'?'),('Rj¦qñ¡IÓ\Z®Y&ý','wp-includes/sodium_compat/src/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÆîÌ0\rJ`Xç½\"8¾by','oHi©¿YƒN3	>­Å÷ôÝ_”Õöœ¾JŒ,®·–S^','',0,'?'),('Rv˜;í{£ÛÛeÒÍ‰-','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Url.php',0,'kNc*¬É&¥ÇbÿÔ9F','kNc*¬É&¥ÇbÿÔ9F','S#I‚†Ç\Zî1˜‹„¯¼›ìü†MX©úñ´_f·^','',0,'?'),('RŽµú1?™ûˆYÓVDt»','wp-content/plugins/wordfence/lib/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£E\"xKÊê{Ç8ödS³','C‡¾ö½\'r…9½ì@âK¡Þ†t¡ª™öâ§w#@kº','',0,'?'),('RŽéÄ¢•AöYH¦ÓØ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/RuntimeException.php',0,'P_:)qØ¨`{¸#','P_:)qØ¨`{¸#','†¢¨À°¼¦òêáiÿbN)Ö‘Q•)S#7ù‰‚¸.','',0,'?'),('R¢Å\Z8ùl÷)ê«~\'','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_DataController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µneªn¸ëÛ\\ˆQŸº','ëo‰\\ù%è¯†+—\r»ÅÎ÷vKØ°_…g','',0,'?'),('R“b:Z³Kµç“ûLø','wp-admin/js/application-passwords.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AnÊÐf°.t¢7Ht†º','òE¥ˆ\0ƒÎD­.Â<®„\'ƒÝí¬iZAÆ¬4nâ÷¾','',0,'?'),('R“ò‡[eDÃ˜(,Ð','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Account/GetData.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹Eèsn\nß5}™Á/¢Ø','nêñÁWØ;¨¶®°\r´yTPÁÂJ×…IÄyË ','',0,'?'),('R–x®4Mp@°9u\nÖŠ p','wp-includes/images/wpspin.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hkžuËRª\r@9k÷’ç','»³÷!ÚF×±‡äò¸(œ‰µ#õäˆ1†‰:ã','',0,'?'),('R—§|Rx/ãbzn9\0*ÑJ','wp-admin/includes/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Y®``æõè¥_Ùõž¸','Šð¾Ú¨§ãc—›•:WvµYêÐ¼„mzº·éÜÐcQ­\r','',0,'?'),('Rœäîæ2ÞE&Éý\Zäý','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/SkipRevalidation.php',0,'³Ä³öM9aâ\'›ÉÌð','³Ä³öM9aâ\'›ÉÌð','€b<Åæ§Øwöí:$·þt/×¼ÑØ¸®é³ø»@\n_','',0,'?'),('R¡ÌP!Iòbq‰/£ÙÃ!','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/FileAsset.php',0,'Çq…Ùé§g«$$¬è5k','Çq…Ùé§g«$$¬è5k','\"´e±ÕÀ®oŸ8šoZ\\\"¹µxéz%5pÃaÕã\r','',0,'?'),('R¢ñÁ6¨Ù×¼ƒ)u8˜','wp-content/themes/Divi/includes/builder/module/helpers/MinHeight.php',0,'î`D×UÅÇ²}…½4E','î`D×UÅÇ²}…½4E','Ì\rÏt>(Z[;.1n¨S6z)29T3Òâa–tl?¾','',0,'?'),('R­‘Â2$tâ¸öEDóÍ6','wp-content/themes/Divi/includes/builder/framework.php',0,'DIŠe‡)î8+bpÏV¶\"','DIŠe‡)î8+bpÏV¶\"','êœ´\">¥I(BSÌ®4Úoh2Ó,d”/ý½ÞzVíJ','',0,'?'),('R¯\\SC¯|juÓ9µ¿A','wp-includes/js/media-grid.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÎÒ?Zý«eÁÔÊ ','˜”.R%/¨ÕöF–v`”ƒŽñRíj¡Œï>¶Ðž','',0,'?'),('RÂ¥ø²®ÍÊLeýq	ð&Ô','wp-admin/js/user-suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jlõ,µf.ÏVh…È','Œ—\ZÔ‚	8§Õœg\\°ö—“IS½€ªËôã‚°6¥‘Ö','',0,'?'),('RÊÈÜ°oLÉ8~\\ÊlCR','wp-includes/blocks/audio/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„T,G\\2*eA‰ÔÕ~åò','6SN\'åctÇ<\n,HWõ´01–ý®ŠK','',0,'?'),('RË-XPpÓ¯Nô_å','wp-content/updraft/plugins-old/updraftplus/includes/Dropbox2/OAuth/Consumer/WordPress.php',0,'ðsëy—qôFWTæ\rÒ®§','ðsëy—qôFWTæ\rÒ®§','Ä’‡øöƒ¦Ü õ5ÑT.Õ:–û{¯\Zk[ÕZe~','',0,'?'),('RÌl™Ø+ðT*\"«,k»Î','wp-content/plugins/worker/src/MWP/Debug/ErrorCatcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­Û@Ÿ§þ×bãûtÝ«î','”ž˜Áƒ5ì®1\'àÍ|W¨V­®Öø-‹$>B4˜','',0,'?'),('RÓ¡ÒÑy[ª q-¡','wp-content/plugins/worker/src/PHPSecLib/System/SSH/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('RãH\r0ü!„d‘?c&','wp-includes/widgets/class-wp-widget-categories.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nºç¦ñè…Ù\"ÑÏ0àS`È','nÓpÞ¯ï‘J°ïw¸Ê2¿îc†QdNˆp…o,¶Ÿ','',0,'?'),('Råo¥ZöMÚáœ\"£t','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k—\rÇ’ß¤b5‹¼.Öð','Í+y6¬0<Ê²4D®`(²i ÜJäU\'{¼ì','',0,'?'),('Ró×~©@r¹µÑÂe¬4','wp-content/plugins/wp-mail-smtp/assets/images/pattie.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É,\0§Ä4jø.¼»À','à·‹\\ù§¨æ[aÌt§,±[91ë\\ØØ>Ï5½','',0,'?'),('RõìXª¢nÑÐ9cvç','wp-content/plugins/worker/src/Monolog/Processor/UidProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\nè\nÒÙ‚U%IÀqò','—¥£\ZÆñ»²o(og$¡ï»ª“µŸ+fn-&o','',0,'?'),('Rø.÷\0;A¹Ð·Ã1ð','wp-content/plugins/wp-mail-smtp/assets/images/icons/dashicons/dashicons-yes-alt-green.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÒŸÓòŽJj\nsi2ê?','‚]rcÏN01éDþ¥2ã¿Îªë!U{s!×¡','',0,'?'),('RûK‚ºÁ1¼Zí&°Aý','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/StaticClient.php',0,'„0œ‡_ï–´çs7=IæÇš','„0œ‡_ï–´çs7=IæÇš',' y^$‘éJš²zç¥z1È!xƒ\Z¹ƒæðñ†','',0,'?'),('Rû‘5n)¸-ê½ÔñžÜâ?','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/icons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ô€[!¸»öÚ;¸Êf¬Ì','©~èn¡Ñl!b8òõ®LÆº$vî\\Åpd)6õß','',0,'?'),('S?¯dìxS“•àÙŽ@','wp-includes/blocks/query-pagination/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ž‡Í[ÇÂ?†¥m$„a','‰®O¦Gd6GäKv55É®•¸Þqc\06.µ(ùAWŒ;','',0,'?'),('SPß| \"õ\"qu·º','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/UglifyCssFilter.php',0,'+Gø’ BÇÜ0e¿5—§\r','+Gø’ BÇÜ0e¿5—§\r',']÷ÁÁ§Ú-ÜV±3ØØ¥¶î¨3R*]¦ƒj¢˜™1µ','',0,'?'),('SõIâE)v‡ëÃLì$','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ôe½Kz}ö.†Z®)½Á¶','îöeÉ/$:G:3ú«Ýàµé=¿ÙuÜ`¯ƒmÞ5ø','',0,'?'),('S>ÌÇF^‚È‘½Ð}ãÑ\'','wp-content/plugins/worker/src/MWP/Action/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('S%Mä‘±àj»7+PAKŒ','wp-content/plugins/updraftplus/includes/updraft-restorer-skin.php',0,'¿yË#›™ÙÐ‘ë÷;¸','¿yË#›™ÙÐ‘ë÷;¸','.àƒw<óÇøoà7²l¸\Z[¨Ö‡$	ÑXçPj.â','',0,'?'),('S\ríUkù~F¶¥‘b+sè','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LogLevel.php',0,'Ì\"aBý]9\r9ÆùxC','Ì\"aBý]9\r9ÆùxC','nª³YyÌ‘\"\0÷´ÿ\nd#.eg5ú6Äd\\¤Ë>^','',0,'?'),('S¡Å(–*¹ÖÁF­ähî','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/typography/field_typography.js',0,'ºxS¿f¸×ÞúÖ','ºxS¿f¸×ÞúÖ','å‰¨¹@@çI×(¹«yöYÁsƒëvLÚ','',0,'?'),('S!v°²½bô²Pp\rí','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/Utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸™3Î¥ ­	Z©¦.','ô—EŠh¦O†äß·r§\n>» èØNèvöby³`=?','',0,'?'),('S\"`V=çIþ^b¡ Dn','wp-content/plugins/really-simple-ssl/grid/css/grid-rtl.less',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çg”0·è¸i_HEÀ³¥','vÎ_jF}FåŽ-d{“Óêª’âb‘6¶ã–â¸f&W','',0,'?'),('S\'¯£›œçT•õ÷ª(F>á','wp-content/themes/Divi/includes/builder/frontend-builder/build/gutenberg.js',0,'Ý#Á«ˆÁFÅy\0˜$ý‚','Ý#Á«ˆÁFÅy\0˜$ý‚','¸\nPŽ’.9pÊ7©zWÕ®q(áÇàj±o_	¼#','',0,'?'),('S\'¸kë;‹[Î´›£','wp-content/themes/Divi/includes/builder/images/stats.svg',0,'ÆçN õä„£Üh«BŠ','ÆçN õä„£Üh«BŠ','¡ïòõ\rõ¹t2t<Ti°é½\0åVˆ0ŒGzy¹–','',0,'?'),('S.FÈ«A¾j®ÿä( :','wp-includes/js/hoverIntent.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ó\"„¿T¸ÊÒ¨ùb~','GÊØOEr~—\'ÇŸÇøÄ9»Õ\Z:)ágÉ-','',0,'?'),('S0ôÖ¾â×K/17uüŽì”','wp-includes/js/jquery/ui/selectmenu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p™éWj*m¯¦Es³','çú±l$1dT€£zÖ¬‹H\r®º¥*¾xQö¹,e4e','',0,'?'),('S1JìÙ-ápá\"èÕ','wp-content/plugins/updraftplus/includes/Google/Service/Games.php',0,'Ûó{½VsC7{¯lmH)&d','Ûó{½VsC7{¯lmH)&d','nñ*§WR?Ußü±G˜¶:Š¾ÈÛîƒï“a¾«','',0,'?'),('S5ÃAv9¿wDmR','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/TruncatedBackoffStrategy.php',0,'†¯[Qfÿø{‰ÂBË9˜A','†¯[Qfÿø{‰ÂBË9˜A','P—U­nÙ[%=šâå ¥_”ðõï³‡#ïu_ÜÁ','',0,'?'),('SAÌL&¦‡äLê±‚™=Õ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/directionality/plugin.min.js',0,'ˆErèHD­ÔD±Á3¦š@','ˆErèHD­ÔD±Á3¦š@','<–®ý¬o”@»:Ùü¾Ÿ-ÃEgô¿áâ)6^Ñ¼\'¿´','',0,'?'),('SNØáËæÄ¼°ª=FŽÕ','wp-content/updraft/plugins-old/updraftplus/includes/jquery.serializeJSON/jquery.serializejson.js',0,'ææ{¬³SAk(u„I5s','ææ{¬³SAk(u„I5s','I¹ýv‚Í+Š’µBÞ­èÕ‰»cªdì6ÁãÆ\"O\\','',0,'?'),('SPDhÖP\"üO&ÖI¯ªØP','wp-content/plugins/worker/src/MWP/Signer/Interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';µlØ…‹2IÅc¶d\\\"','‚#Cè±·@ZkÊdbŸ‚0nØé9Áÿ','',0,'?'),('SUÁ¡S5n*‡F)oˆ-','wp-content/plugins/worker/src/Symfony/Process/ExecutableFinder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆZ@3Xþ¡pçãŸ-`è\"x','“·\'Øö¬«8ŽUEJQè9¶‚†Â¦©íg%H^Ðz','',0,'?'),('SX+7Êû1?ÅõÏî-','wp-includes/js/jcrop/Jcrop.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z‹ý7e½¯¼òÍQ°%K','!ˆŸ@¤X—7JÅƒÀäþ¼p›3KÒ;S*!¸õ°L','',0,'?'),('S`Õ¸wã1$—owØ_oô','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/text/field_text.php',0,'ür¥ë6–ñ	à\rìí®±4','ür¥ë6–ñ	à\rìí®±4','f—ì(qÆž}Ëò*sí#Â~\\Çæ›\"Ú±P@CJge‘','',0,'?'),('Sh\0à‰œŸ˜sÂ_Û.Í¿þ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/PromiseInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±”lk‚º#ü™˜CfMÁ±','?;[‚ò’ùWü\Z°å\n]ƒØIä<ãÌ0ŽŠ$> “†','',0,'?'),('Sjá~6›{¨€œÁ‚X','wp-admin/css/colors/modern/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Íñw¶!Ñ<‹.{©=','ÕN_FT\ZàBÞ/þd,-ðÜÒØ¨É§39Éîd_ô§','',0,'?'),('SkTŽ†$i;”o‰¶†câï','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/LazyAssetManager.php',0,'Ê–…á	·¼¡’Dÿ˜ Y','Ê–…á	·¼¡’Dÿ˜ Y','ˆDªdCÂä:‘16Û0\rºwÌÊx¯’k›sì-xïé','',0,'?'),('SlÓï ½ëb¨Ñ‡S+¡Ä','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/api.php',0,'¦ZöžX¸7¢ÖÀm B&','¦ZöžX¸7¢ÖÀm B&','ì™\0›»fZÞL¶H¥¢§Ëõƒ)Òá=;ƒ¬á—à\'','',0,'?'),('SoÙ9>&›1UÑ®ß%[','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_id.js',0,'m3¡>	òÈÓ\r\Z]~>','m3¡>	òÈÓ\r\Z]~>','`–vØjÃÔ.±Tq]Vé×œy;Ãp=+âð¦(¶¢','',0,'?'),('StÃ¿Ú¶Ú~ÐbdA\nß','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression_MinutesField.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b˜ká«ç§Q½2Óö·','Ô„ä‹ä4ÞšnqÓ¸$òõ?\rMfP\nù‹¢üTI˜p','',0,'?'),('SzWîì¥NKUSÑæ','wp-includes/blocks/calendar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iÁûÀÙæcE8,\n','àO%õ7Ü§¼^VÜx¨Ën~ªŠý\r‹8Ó¯i.3-','',0,'?'),('S‚šŸfˆKÝ³£ºó;¤þ','wp-content/plugins/fusion-builder/inc/lib/inc/importer/class-logger.php',0,'œ65}ù:óœ»îžH<#','œ65}ù:óœ»îžH<#','MÊRÃËò«$\nPûß 2a‚‚/ï—KÆÆ2.','',0,'?'),('S‚ö8êQ~æEŠ·Ç©','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/PuTTY.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÐœÍër”Pö80‡3ÆÁb','ƒ§íWå/‹‡ûâÊŽ[sÝÿ4k·.mE¸BÍeí•Óƒ','',0,'?'),('S‡CÞ½i1Û­ jàù','wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ó%Ÿø|¼6ã€V!¸;O','æJ’DÆœ½ŽŒ¿À‡.¡[á—ÞÄà€€â‹)ž{Â','',0,'?'),('Sˆÿ÷ÜpØ>ÙÝWr½YE','wp-comments-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.KØûÚOQ ‘³ga ª','Ç‡áóŒhÆÿãý`*é–drú}Ú6-ŒßP§Qýà{Ñ','',0,'?'),('S‹‚? QŽNy?mþLI','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidUserTypeException.php',0,'v·f1¸û|2yÚë>','v·f1¸û|2yÚë>','ëE‰wóî/Î”wµ{O	Z%ËI\\†ò?*¹Xô&','',0,'?'),('S‘dlzÌsˆV7','wp-content/plugins/wordfence/vendor/maxmind-db/reader/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V«~ÐœIÔ÷XP/®©$','³sÄem‰’/¢;˜™Ö˜öÎìÌ aZ—H`Ÿg3','',0,'?'),('S—RU#9Æ©V\Zvèór','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateSmsCampaign.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«‚÷J4Ôå¼Dôð¯na¢','‘èÐ9Dÿ\0žJã€s¼¤QvW™¿	[5¾%2|ÞÔ‹Â²','',0,'?'),('Sžë£¶Þ£7l \"àaI{','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ClientErrorResponseException.php',0,'Ê°LÎ@j\nüþ¨n÷','Ê°LÎ@j\nüþ¨n÷','µÏb©êÜýÆ¦Ú¾uóN2À’G°uWt•WEçÐ','',0,'?'),('SŸ?Þ§­ÃLdäáêIÄ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/AbstractTransfer.php',0,'Å€Þ·š’öv,Z3„kûCD','Å€Þ·š’öv,Z3„kûCD','ÂžgOöï•D>Á+äMUÏÚó¾€Aýxí—','',0,'?'),('S¥´tç ðÆJè9©ý†G','wp-includes/css/dist/block-directory/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷Î÷ò(¢3Ö3ièÖ¸¢','û¿ß]9@‡TÊTxÛk„‚Þ>—ÞvÙÿ\0YiÂû~H,0','',0,'?'),('S­“ù\nápÞG%­','wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•]_åŒ#Dö´\0óƒµâ','\Z ŸøÛ’ö%§4~NÙ~Gh!bØ­:w‚˜ÉŒ¿™\'','',0,'?'),('S¸\\™Qéæ¥#\0nO’ÿ$','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/ServiceRestProxy.php',0,'<&²‰`55Ok„‘Ä¤','<&²‰`55Ok„‘Ä¤','6NþGv]{äØrlh›}vCØ7v€`óÿMf','',0,'?'),('SºÏZ?<Š¸€4Ü±','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListObjectVersionsIterator.php',0,'ð\\ó²§>ÿyí2]Á‘¨¹','ð\\ó²§>ÿyí2]Á‘¨¹','ÂÊ°¡É“ÅÒh°ªù‹Ôq	ÏÃ¡0s–7F ÏÍ$','',0,'?'),('S½Ù;C=r„\0Uó\\ßùÕ|','wp-content/plugins/contact-form-7/includes/block-editor/block-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñU½Ú‰ø¼e`™¬ã','ŽP)ÆÖšçébAÃr°–¼Å´\"Èr4T<£™ ','',0,'?'),('SÛÊ&ëaz8öJØ¶9§','wp-includes/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?¶y$Í9*y¨{38=','é¾žÓuu+€ØÛj¦íºªá¦~áìöŠÄQ‹¨Ö\'—Ô','',0,'?'),('SÛÝá’Á}®7zºšÁì','wp-content/plugins/wp-mail-smtp/assets/images/providers/google.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àË{ïüDõå³kÂ~‚','uÙï÷êZu†qCº×8”#cŠ|Z‡]!ày','',0,'?'),('Sà)îÑ+Û”‡2 [³\0!©','wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/byte_safe_strings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sÙ¹–ãx3³8CÚf˜5c','ƒ ¨L$àk…¶ßãˆ¼°¬çìO!F÷øh[õÅšÚŸ','',0,'?'),('Sæ Åý §ˆˆ<Î¼g]?','wp-content/themes/Divi/includes/builder/module/woocommerce/CheckoutShipping.php',0,'Ó\\ò~·[5-mkéËî™Ó³','Ó\\ò~·[5-mkéËî™Ó³','“9é|ñ¶ÖÓ-ÏÈë©¾òJ€ŸÛ$Â¬àÌ}ìÄ','',0,'?'),('Sç^ù7jK5I6Kæ2!','wp-includes/Requests/Cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t›V…ã‹×sUNÀ–ód­','\"†½+f5f(gdC“Î<iÕË³]uÆ¨2ÙõÄ¼','',0,'?'),('Sëˆî*ÌÖ¤ÿMÓ!±Ñ','wp-content/themes/Divi/core/code-snippets/code-snippets-library.php',0,'ÆÍÐºÝ·\'ìˆkBN','ÆÍÐºÝ·\'ìˆkBN','Òïiq„*äyŽÃ€/Õ™b²ÓY=	³¥·]8H­cK','',0,'?'),('Sñ~þkeqe£Ø‹íª_Ld','wp-content/plugins/worker/src/MWP/Action/DestroySessions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^7–\\ð—A¸•rYÜC.','YÛ¼Eõ|k`Â	˜Šî-:NÛœdñ@úxQ¨Åéã','',0,'?'),('T	¶rÚó¹OÑŸÙ0†nà','wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-mbstring/Resources/mb_convert_variables.php8',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úû\0­W²ÒõúÝ_i•õ','i(@›Ø¢x#²ÔKÏtç?—åž7×dþ´YêBÛ','',0,'?'),('T{ËÓ­eïlgk¬,','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmailReplyTo1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|Í(«¬V\ndÔqÂ\\X','û¤Õ?Ezò¹Ugºî²Mt¼‡ôÙ\0:”–™ª“ïéÅ','',0,'?'),('TÑrñÂå~ÏW]ï','wp-includes/class-wp-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J0n‚N.¡øyÆªbùÚ','Ê}¨u\0tE\nô»€&’÷Œyt2ýãçBàÑüç¡','',0,'?'),('T9Ï&¸õ—´‚vÍV2I','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/DependencyExtractorInterface.php',0,'ÆºŽº\\0?BÃôu°öc','ÆºŽº\\0?BÃôu°öc','¨­p»­/ÂƒdßííX+d £;bãN/Z›ó—ÖÚÁ','',0,'?'),('T´ˆ÷w\n6{‚Š¡','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/FilterManager.php',0,'FLrÁÉ(§óúØŸKÐG','FLrÁÉ(§óúØŸKÐG','”Æ“«žN–ÒÛ;QÜ^\rÄà³O]WäY×ÍÄð«','',0,'?'),('T\ZŸPO„øá}Z¨>š£F','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/triangles.php',0,'¿Þõ\nÁ#Æ:TE‘B›§','¿Þõ\nÁ#Æ:TE‘B›§','IjŸl—ÉLJtrxQDxno\Z‚?è™·:y\0À<$','',0,'?'),('T,Œ¢Å(®õÕ]\nO•','wp-content/plugins/instagram-feed/languages/instagram-feed.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?^—m8n>‰ûÃÌš','å¨»¨6$Lðf ©€se[¤AÝªZ/¡»cÕÚSW:','',0,'?'),('T4,òè¿êÎú{\\©[Û','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/CoalescingDirectoryResource.php',0,'RõôVçªœ¢í_¼Î','RõôVçªœ¢í_¼Î','±‡½ÜÈIÂÞ\rö‰k¼Ôô]Æ,ú¸T‚T	.6àX','',0,'?'),('T6K?†”´sÓ ‚7(ù','wp-includes/customize/class-wp-customize-sidebar-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vj¯½Báá¢ÛØ±ôÅÁ…q','›š{#Ôi«` ÷\0Ìÿ«âj£ÁÃ` pÇ+öfFñ','',0,'?'),('T?„?:q×®PÃóah\'««','wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µºˆANðX[`h\0ªç¡»','£\"xI¦B6šE?‡éÉÄìiŠ\'26Ì5y/™¦','',0,'?'),('TIØ¹¶¯SÊÛ=J“','wp-content/plugins/fusion-builder/inc/templates/column-library.php',0,'³7uí+È)¾0#\"LO&B','³7uí+È)¾0#\"LO&B','ŠÃïÇóFä¨Ÿö›crG£}½mië)jÝ3òÒ>]R','',0,'?'),('TIçüŽ–GÃxíT•“–šN','wp-content/themes/Divi/includes/builder/plugin-compat/divi_layout_injector.php',0,'ô½luÄ—m÷»²','ô½luÄ—m÷»²','{ñf¦z?‚Y¿•„ÕÊ­ÈïZ—|!ãÉ=­º ','',0,'?'),('TLW\nÝ£°1wÝŽoîŽ¼ò','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/frontend-body-template.php',0,'+»G?»=R)]Íd%òÂ','+»G?»=R)]Íd%òÂ','T Žƒh«-MÌÇÜy4ÙT krXJpZI°¿sÌF','',0,'?'),('TMò¢ÆüÊÝlòþÕôºß','wp-admin/includes/class-wp-screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„O\'<r,xöib€‰$','MqÞƒR3=Ež8Cò@^›ú@Ã²«~°qv´MÝöÊÑ','',0,'?'),('T\\í3ý„²œ»ÈèSñ¡','wp-content/plugins/updraftplus/includes/onedrive/client.php',0,'*	vl:dO+±)›~E','*	vl:dO+±)›~E','ù$’Éa4V×ÁJ¬.gÚEtB#ÔLcB¨õlBmÀ','',0,'?'),('T_õX.P;i9àìlu>XI','wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/integrations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F~m7*DâCÕue¢ì','›2€Ž\'c)jOÏìA?ÜS±éÖ!W¼Å¶µ÷â²','',0,'?'),('T`¢—ýè¿—\ZˆDn›â%','wp-content/plugins/wp-mail-smtp/assets/images/logs/archive-thumbnail.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HvT¿ŸBÃ:\08³¨','Ke£ïkgak¤ßÂiÓ\"SAön@QhÉÿ¶Ñ/J°ƒ8ÿ','',0,'?'),('Tv­©;Œâ/íP´( Ï','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidCertificateException.php',0,'’p@Ò’—ÿ ‡ä/ú¹','’p@Ò’—ÿ ‡ä/ú¹','¾«Cb ÊEfYî”Œ\"ÀÎÒ_ç¤ÈúŠw+õ¹‰E','',0,'?'),('Tw»ø=‰Á+¦6×øÐÆ×','wp-includes/js/tinymce/wp-tinymce.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©›ÂAÀf…ž\'2|0…å5','Áª§Pßs	$d}Ñ‘%žµÊû¿Hóƒ¤€ Ï8ä','',0,'?'),('Ty˜ÕA\'}ºíœÇÀy6','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp224.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚`îec:÷y)Ý¨ÿ','ó\rEè}|úˆ’b”qéÿ+þ&9ùA‚?9™•N†ì','',0,'?'),('T‡.o@Î¨2ÿwõvŽŸX¹','wp-includes/js/jcrop/jquery.Jcrop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/a«˜LruÇ4ÿ\ZÁ','»ú·Ï·Ûåydýix—{­p+ÁÖnÜeÚª©f¥','',0,'?'),('TŒŠ³vm?,³aÞéãT4ê','wp-includes/ID3/module.audio-video.quicktime.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßÕ¥û%ûóó3/´*','Z{ˆÙù[ÃWð£Ú¤°Ê‘\nM%9I5+‹$3´@^÷','',0,'?'),('Tƒc—=Û=‰ø‹g#IŠ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/JsonQueryExceptionParser.php',0,';ÕM×à¼„Ð›Ä2o',';ÕM×à¼„Ð›Ä2o','©zËìTÕ¿|ð?7Â±@ÜÄ?3»åÍ¥ì¿úò¨‹Ç7X','',0,'?'),('T \\žýô%ò°Kì+á6','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Collection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ’ÎózhÉÊðQƒºì','‘W…xþwd¥ülsá	E¼íÝtˆ4~Ñˆ%~','',0,'?'),('T¤-æeD˜Ð¹èN…Ê¼','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/JsCompressorFilter.php',0,'êañÏÑpÊ’%^•\"–Ý','êañÏÑpÊ’%^•\"–Ý','=íz=Oë8ÊkB×\'8úU›P°“nOj´:<¼ ','',0,'?'),('T¥ÕÉÉ))jÖGñ|I	Qq','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ClientErrorResponseException.php',0,'Ê°LÎ@j\nüþ¨n÷','Ê°LÎ@j\nüþ¨n÷','µÏb©êÜýÆ¦Ú¾uóN2À’G°uWt•WEçÐ','',0,'?'),('T¦Òñ\röfV„+Üø j›','wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gxX€£JTÑïŠbxÊú','f˜x¤/Òxè¨Àë°GÜ\n8‡5ú6‰	Zô+','',0,'?'),('T´9Af$‹)Sž<ùÈ~ÿ','wp-content/maintenance.php',0,'áéw²RÉ—îuÒÐ<[‡','áéw²RÉ—îuÒÐ<[‡','ñHƒŠ•ÚË—1‹°±ÞÀ7pªË‡ò,ÍúûÔù','',0,'?'),('TÅÙ`5™¹È2z/>àšw','wp-includes/blocks/query-pagination/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«Ì½»¬¼Ù@}ýlÌ‚¼','ˆó{ã;ãÑ‚Í6¼<ùsµ‘\r\'~ªyÌ2”é2LT-r','',0,'?'),('TÅù.¢ß)mÂ&öÍäëI','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/HttpException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”41l#}·pæÇÆzk1','¡Ôh†š	Ó_‚ÎÖšž÷–ª!E¡Ó4‰\Zv®îF˜³','',0,'?'),('TÒpßMÕ#.X´¥æjS„ê','wp-content/plugins/wp-mail-smtp/assets/images/loaders/loading-white.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºÚÃù5¿”ME/ÄMl„Ò','xœ¾PŸa#Í‘Õû#eëXól¯©9ù\"ÒƒUŠ4V','',0,'?'),('TÛ>Ø¹­Á=0º›‰§ÒU','wp-content/themes/Divi/common/i18n/ai.php',0,'–ùÛ0¸ƒùHŒˆ÷³Æ','–ùÛ0¸ƒùHŒˆ÷³Æ','qŒáBÀÜÈqÒLR@Ìþ7ö–^~W–‚ÌãX§Bº&','',0,'?'),('TÜŒŠ7`\0ôý®Öï(','wp-includes/js/mediaelement/renderers/vimeo.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡C9†¤¥YúO±×Ç','‹„Ç+÷Â®-FVpýÝ¨IhtØLßiP%K×Ýüiÿ6','',0,'?'),('TÝäÔ ƒe“‘tþiÉY','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/WebDAV/Tools/_parse_lock_response.php',0,'M]Ü\ZLbðÝÐ/','M]Ü\ZLbðÝÐ/','ƒÆíâì®¿8›ˆ¾>D:.çYÄ£Í3¨È\'','',0,'?'),('TîQØÅ¥©BÛ4“n;Q™','wp-content/updraft/plugins-old/akismet/views/config.php',0,'îºèõ¦æˆÜ¥&FÁe@`','îºèõ¦æˆÜ¥&FÁe@`','Û‘þ&\ZéŒ·ßÛ7ê°~è¿øÄ±†àrbá©ÿ','',0,'?'),('U«›Ã^$û¹lõD=‹Y','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/FlavorError.php',0,'Xoì»S\\,JØåÌÑ\'e','Xoì»S\\,JØåÌÑ\'e','Á3_}\"ñ„\'í\"Ùpµoö+PÌÁ’êYE%µ´¼ÝP','',0,'?'),('Uð\\p{Jþ˜OÃQË&','wp-includes/SimplePie/Cache/Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b­ÄžA˜Ê–þä¦´j½äÁ','›åoOw¢½~9K·ö™Ö4oY‚[KøeÄÍ\\RG','',0,'?'),('U*ïŽžèK—G®Éyøž','wp-content/plugins/really-simple-ssl/assets/css/variables.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('UÊ„Ru\\Fçž5øž$y','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Signature/ASN1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1mõ…Ý¬\rÜç$¬”Ø','¡8•êíÐÞWŽ_‘Ë•.²ë9ƒÚ]p+\'ýÝîÁ','',0,'?'),('U.¹g<°Øª 2¶±™Ü','wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FÕëo¬)·‡š‚dšã','‹ZªÙ9Ð@-ŒõBãxiã´UßèM?Âq!À 0µ','',0,'?'),('UI‚_•ÑËêYm«çÑ_','wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ¸o\\—Î%kß&½Ðµìá','WW®»?Ÿ“¾,#zNtª“Š” qC—Âûƒþ.gêF','',0,'?'),('UMOÅXu‡²L²ÿÂÂ¥ ','wp-content/plugins/wp-mail-smtp/assets/images/providers/smtp-com.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','À¹ÏSh‘\Z%!÷.C','\nú‚wK_¸ ¢ ©t\n‡¿€¹h(Ê¤h	ç“¸','',0,'?'),('UNñÆ•\rûÍ¯O–|GûS','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobSnapshotResult.php',0,'e®¬5È²âË°13$êj','e®¬5È²âË°13$êj','1èFoLßÜ†éÇƒ7™²/;¡\nX©}Æ9/ºö','',0,'?'),('UU‘-|ƒ<¶PJÂQiDë','wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/directadmin/directadmin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶ÔžöºáJn/¾:¢?-JÈ','“óO•1øvkX¿&Ï(Î´¹Ç„w§”þ¤¼CŸ S','',0,'?'),('UtÌ‹Õ¿c¡ ™\0…;eZ','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_DBLogger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áŠík…\'©îpékö','øEM+<Í\rÆsàFèŽÔX•Çªý‚Û\\q·™©àGð','',0,'?'),('U€.Õô½‘G\0ãÄh7K','wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š÷{ÎÈÇ²ÙÙê²ŠæòT','sÁ×·my(å[¦~„úMŸÀ™®ËßNÓÔ˜óøé;i','',0,'?'),('U† $A=©HeØ|îzÈ–(','wp-includes/Requests/SSL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓôSUa ío²ØÈ¦‡','¦&©K•¿psÖyäÿ\Z˜@?7GŸc®#EU›','',0,'?'),('U‚+CÌ#OKíï´Ø','wp-content/themes/Divi/sidebar.php',0,'Ý7ø/²±¨¬%³ˆN˜ž','Ý7ø/²±¨¬%³ˆN˜ž','©&œ¿ç÷ü9˜Ï—ãˆztS5F˜P0a{gg+³o-‡','',0,'?'),('U“^JSX¡¥‰HÕÌ^´„','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ã™µA4Ð¿Ü~8~Â(-','ÜÅ1«j·¤+É®X÷†·á»kû—ÐCEŽ©u„¸x','',0,'?'),('U“ aMì\ZÛhÒ&€K9','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/excanvas.js',0,'‡êãÿÓÇ1ã5H2Kvõ(—','‡êãÿÓÇ1ã5H2Kvõ(—','‚—+È¤?dq0X¬\Zî¶áÃüX!,ÞTg0F~\0`','',0,'?'),('U›T}^C¥	<+À','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/EmptyResponseError.php',0,'~újóöþª\"ÖôW ','~újóöþª\"ÖôW ','ózY5Â’>:zÇuïW0ç€Ÿ ö¸ø@#ŒpV@','',0,'?'),('U£ÀÎ+ƒ?žW¸ÌnðfR','wp-content/plugins/worker/src/MWP/Action/Registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ§‘õ›.¯ÈAÁ×sÚ','ÃIÊ\\RÍÉžÈK˜ ³åfep‡™ßPó° &n¢ë\Zý','',0,'?'),('U¥²º°ª5PU#!ÂAÒ†u','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®+o~˜¤XüåÝ“\0Í','xX·Ñ¹Ú$6ÜUdZ$üÖæx—Á¤ßØ&3×','',0,'?'),('U¥û84ÊvÃÝªÃI³HÜ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/Dns/Info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«+=_w¨É&N¸—h§','&CØÊ¿á\r)Î±c{m_~2ó¡2¥Ü£L~µü','',0,'?'),('U§Æâ‰£Ê¹ÀA¥ÛýÇ´R','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/core/newsflash.php',0,'åp\ZÅóþÑYÙ¨QðÕ\n¿','åp\ZÅóþÑYÙ¨QðÕ\n¿','Ï¦„#†RÖ¼¹—ÄõV³4yx*‹¹Šj¥ãCM\\','',0,'?'),('U««½rWTåä0¬²Ä','wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þì¢CõQ„k»Ä‡ð€Õ¶','´gqÀÜ‹“¿\'Çž;ÑkoE]¯ Bû	„b‚%è','',0,'?'),('U«ÃÿÃ¾ŸßH¿„ÑÈ(','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/ListsApi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HaçÑÂD.Q«A6óØ','ÃQš”åÎác¸ÑÀ¥°iy½þHÑïÏ …8s&','',0,'?'),('U¬nÉ“b4lZ,I','wp-admin/css/about-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VUKIêLã%[¹#–p','º€y»=óÏº“rŸwˆs»rÐí¡ý³¤×·¡b÷‹','',0,'?'),('U°ØÍ8p+èZ¥Y:åÁÉ','wp-content/plugins/worker/src/MWP/IncrementalBackup/HashComputer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$œH)‹®Å…¢QÀc7','é‹öQ\nHCA=Œc%1D§(Ëþ,l0;—uÎú','',0,'?'),('U²Ê.³ùïU‘÷ûocèý','wp-content/themes/Divi/core/components/post/Query.php',0,'PÍ¼ê¦Yi+ÙÇH¯ºÌ','PÍ¼ê¦Yi+ÙÇH¯ºÌ','€m#E*c]\n°ç»ðqªpŸ€6Éÿ‘[	‹','',0,'?'),('UÃåà$i\"uÂÊ&Ëô¸9','wp-includes/images/crystal/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”ÛýŽl¥‰Ú¤¸;õ=','ú™S\rI¾°U›Œ9_<â÷µf`…ì&HYwÂuˆ','',0,'?'),('Uû\0yïeÅtÜÃ“Š••0','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header.php',0,'¡à®ƒLz*´†í¹ÅBÛg','¡à®ƒLz*´†í¹ÅBÛg','ë³CîŸÔ‘V,bçŒ<pó™ÀUl÷%ûgÿáä6å','',0,'?'),('Uÿ/ëUFÒä54Ñ¼:','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cê]-Í@W²\\0Ê×Wv','ïõc`½C(ß›äVÝS6Ø¨œcÜsÆ÷u8Ü6‰ël','',0,'?'),('VAÁ)zœ\"o—ö3','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/LogMigrator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù»ýxd¯ìä¬–iãûñ;',' Úé££û¸ÀÎô†C´0è5wŽ\rÍXÁ“`¤Ä%\"QP','',0,'?'),('V\nÕÉU`½_š5ú˜­8','wp-includes/js/customize-base.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@aÆÕÀ‰<Þ„½’','eÆ­ÿÇƒÖâ‰=þã©Ü FB}ì:ärŠbbŽœl','',0,'?'),('V‘ô¹<é™7GºnÔÿ²—','wp-includes/blocks/separator/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»þ©À=2cRPm˜`mLô','²y.“Y&àN	÷\r¿MÞò£¶©¤\ZÈBéññ','',0,'?'),('Vöù øé‚ïEyÂ','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-progress.js',0,'{Š¶vûùU/ùšID„øÁs','{Š¶vûùU/ùšID„øÁs','…åë«}:qDUr¿&M×«)g”uˆ¯ŠÄA²šC','',0,'?'),('VÅ£™•${\\œÿÕqõ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateAttributeEnumeration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Žé_E\"½@ß¢1b0îÆ´?','6òÈzyxJŒ;ÜB8µ{ÜÜ7ñyßW±,* ¹S²','',0,'?'),('V¼\rê§3#ž“Jò÷{','wp-includes/sodium_compat/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“²Xé‘7¥{(G5ˆÁ','5<›±HàßéX0ý³Éøtœ>®-ÚØ­àÄýþ','',0,'?'),('V#7A”‚¨²þ@ë?÷øû)','wp-content/plugins/wordfence/views/unsupported-php/admin-message.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ò(`ª÷HMD¿¹A»7Ê9','yÂ×I~	@VŒY247Ÿ&ÈUüê˜uÞ‰«¹ â','',0,'?'),('V$îT_ßµw+”rœ<Š\n','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/post/type/TBItem.php',0,'G¢ÁQ”g{û²ŸQ‡aò','G¢ÁQ”g{û²ŸQ‡aò','¢IŠïÁ{ÞüÝk‰ê\'r(NVªÒ|`|qý š-','',0,'?'),('V)-ÐV¯§ý“™½d','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthException.php',0,'\"ØÈ€¢bÍèxw)Q','\"ØÈ€¢bÍèxw)Q','«h¸Ý- K<èAøx<#Ö7‡&PýIª.¼ #{Å','',0,'?'),('V,¹fçY®6MI_–J¥°','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/Traits/PasswordProtected.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Èœg‰÷ÉÄægï©>Çˆ','Òñ—}Ò‰Q±’7£ÍcÍ7(¿´¬³cWxnš','',0,'?'),('V2ÇLÖü\0Ûºó½','wp-includes/js/jquery/ui/controlgroup.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€##¢=òõF=Ôû\\€v','±ö>733hE}±öÝzË[)Ùe£Z0¨ß¨!œ$/Ó¾ø','',0,'?'),('V3}»\r+æT[<xíÏ¬†','wp-content/plugins/wordfence/css/diff.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü€g	­ú	™$’˜‹`róQ','ÀÜ$µÌhEJ^54<$žÓ­YcÃ×áÂ’Þ&','',0,'?'),('V:‹ä9¸9ÜÞû²ü¾˜0','wp-content/plugins/wp-mail-smtp/assets/images/icons/error.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ìiòoÑ×–Ú{£šÿí§Î','B[8N“ËBW‡À·3µA%øóÁÑï›Y0õúE','',0,'?'),('V><>7èšÔÎFlÖº','wp-content/themes/Divi/includes/builder/class-et-builder-value.php',0,'tñ%Ö-,Ú\nð9ž)±3o','tñ%Ö-,Ú\nð9ž)±3o','Ä\09ŠƒŸqü>>re9éªé¦–ƒÕÝ§\ZêãÅgÚ´','',0,'?'),('V?ºOŽN…ˆÍe‹ZF\\Œ','wp-includes/js/jquery/ui/accordion.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹¸šÑÔôøZ½êÝèa×Â','ò\"œÎö¤Ï!fØ~xXW‹ìÛœâŸò4çÈ–$:¼Ò2/','',0,'?'),('VB„íO5™®Í.Ae2™¯¸','wp-content/themes/Divi/core/init.php',0,'¸hrã½Ü÷Âá¢Ð,','¸hrã½Ü÷Âá¢Ð,','¿r5ÁŸ›…‚¢ÖtWpÑ8ã}\n¤ZY?áØ®D“´Þ','',0,'?'),('VEÞ8¼k–b÷g&:,','wp-includes/blocks/post-content/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+c;Nžñ‚/ÍÝ v€.','ª“\ZÏÿ$…Š#ãk\\=¯¯ü¬Z®ÙGóÀv³×ÜŒo','',0,'?'),('VL6Ý7G^l%D5z3Èè','wp-includes/default-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	äB z\\f\0ÉíÆóÇ','%ürN8*G#˜’C¹ÂUá´­Pàzôp_-ËÏà\nÖŒ','',0,'?'),('VTpbF:Rt!|\\hß-ù','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x} ó’”ïpc° KàOÿ','(H>Éö0€}¾Í8:e…)ï¼´¬ð™NÁ/Îzì','',0,'?'),('Vbý‚®1ÍŽ/µÊòËG<','wp-content/themes/Divi/includes/builder/frontend-builder/build/frame-helpers.js',0,'Qh8VZˆÃ/r{¦Êé…Ÿ','Qh8VZˆÃ/r{¦Êé…Ÿ','qN\\ ELôYžËÄò}f^ZMeåüAœz,—×]','',0,'?'),('Vi\'×ãRuËh:þÀ³uÕ','wp-includes/blocks/query-pagination-previous.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+°W­D©\"ß\'äbæ3','¼Ÿ»ƒB\rÛù©ysé]„‘D\\amÙÝºO´ÕBCªn','',0,'?'),('Vne!Êz0u1?¬¿','wp-includes/shortcodes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿/ãˆÚdÈo‚¨Ò','_fÔ[ž¯4„Ì#ÑÜ þñ­æŠäÓëMv~™½','',0,'?'),('Vrm‘KE§p¼j×ä6—','wp-admin/images/w-logo-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ý[N°W¢ð_pàw®0','Þ£^Qtä3ôHunUâ»Éà~²\'»T2','',0,'?'),('V~õRÝ¡Ý¤yx“ÀÓ @','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ConcreteClassFactory.php',0,'çn\nz!½àýw„><T','çn\nz!½àýw„><T','åÁŸÈ¸Gn¯qÔ6SÈ{×\nY×kO!Þ¿€C(t','',0,'?'),('V†J•LŒR(o!Sh¥+¶ì','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Aws.php',0,'¹­m$vl×7aì˜XCÒ','¹­m$vl×7aì˜XCÒ','Õ‡ù&J¢p¾’!œs™Lw˜@ÌëªGåÊß½-','',0,'?'),('V‹“²ÍóûN\\‘–ñ­','wp-content/themes/Divi/core/code-snippets/app/lib/request.js',0,'bÊMÒ¦Íf`gŠcˆ','bÊMÒ¦Íf`gŠcˆ','~®£šF×m1É™°<Î€–Dt¸^ýÊ²~%5QÏKŒ','',0,'?'),('Vž…ï‚™ëŒ$ØïŒŠx','wp-admin/js/post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ð¼?û.´rïÖªVÒÛU','ªú™Âày¾–l¾\0¤¥9óÁ/¾~pm–„\0ÒŠ«','',0,'?'),('V¬ŒíÞrzÍ(¾nol*','wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ê)¯S4C@ár\0\\Z','\0Çn°b„Ç»‘áØIê¾ŠNºÜ‚–—Ó åfRÄzä','',0,'?'),('V¼~Î¯nT\n¡/Ùˆqu','wp-content/plugins/fusion-builder/js/views/view-container.js',0,'Å ËÁ©Ý»•xåÖR}','Å ËÁ©Ý»•xåÖR}','ÜPjV`¿Ôô;éú0¦‘Â–ïV‡a^aµ0Š“7þ','',0,'?'),('V×€ãÄ\'hý—Äˆ+:ŸÀ','wp-admin/includes/network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';®xo¼$Î}f´\\ß]«Í','eÝM3V\"’d0•ÓÖÑ/0oòÈ½u£Tåk²Æ','',0,'?'),('VÝþWo/è\\H°¶ÁY á','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/IoEmittingEntityBody.php',0,'¯D@„àö÷¸<(ÛxHm','¯D@„àö÷¸<(ÛxHm','{o\nLˆO/>e±|r ¬«)Mq³ób\n»!¥ƒ{\ZB','',0,'?'),('Vß¢ÉU‹9Ü˜ W]VÔt','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ó*·kLwB£ædÝ=','ec[d”M?HÓ|ÞKYž\04‹°@˜ QAŒ›:FF ï','',0,'?'),('VõÜCkê\'ŽÙÚ~›','wp-content/plugins/worker/src/PHPSecLib/Net/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('VúàüùÞ}Nù\0aÞD1±','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/PluginPanel.php',0,'?°y0ÅOeí!Ð%#','?°y0ÅOeí!Ð%#','ƒÕv…¶Ê\ZÞG˜ÏL Ü$–£(˜?-Šõ®ãœ[ý','',0,'?'),('Ws™$8Õ~œ‚NÈ-œ@','wp-includes/js/mediaelement/mediaelementplayer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ1çÄªL¨ïö5úÑ!\n¡','o­ò^:v\\‚¢õm¦o×Ù¾ÆcTW[éßäŸk','',0,'?'),('W)YúG†–0A¢Ö‚?J\Z','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderInterface.php',0,'¼e U\nýåò~ä—ÝÉ¹Š','¼e U\nýåò~ä—ÝÉ¹Š','äwd\'ç{óÑ.ðw‡;Îž\Z@vH`E¿7üßÅ','',0,'?'),('Wkú„mÿ¯`¡^ScV×G','wp-content/plugins/contact-form-7/includes/capabilities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™™FþÎŒ6ñBMM¢ÛŸ±','mâãý)dVƒc¸ õU\'ÙÚB\Z°Ës)«Gk™»E','',0,'?'),('W&ËÖ´ ª)+ôÚ±¥öå','wp-admin/includes/class-plugin-installer-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŒYõ2cÙ‹„¤ë\"\'ž','Žhí)ââªäˆEÑŽw0@$ ,\0æ3§˜~ÍY\0ú¼]=','',0,'?'),('W8h°!É©k®Ä‰\'“','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r RU¬bâ*ÍÒ\0\'µ','xíîÑò<Ùs£’BZš2œj§RM\'0%$¹Üi{ V','',0,'?'),('W>þFJLf¾‰ÐÓ\0€=÷Í','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/DefaultEngine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[ÑUûÎ}! \nâO4æ¾','9“¼â¯þsi‚?˜Å¦OÌ´r°Ù°Þ?F–&ø©','',0,'?'),('WY5˜Í­]á¢æ.§“ôrÛ','wp-content/themes/Divi/core/components/api/Service.php',0,'œ.°ütDbç,¿õÐÉ#Ù`','œ.°ütDbç,¿õÐÉ#Ù`','üÆ—ƒåA˜±PP3OuÚr¤ŒÞgu,5Â–›d','',0,'?'),('Wf&ä[OØµž?S˜éÈ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RuntimeException.php',0,'.Æê›Ú/*MiÍ—™„ÎÙ','.Æê›Ú/*MiÍ—™„ÎÙ','sÿV¨\"P$}] ¾ÞüÑßuÄ‡y[rÜXƒ','',0,'?'),('WqÆLX«óè\0ä\\Ä:¢','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/UploadedFile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µõç¡ê¡ºX¯pã«â@','R£Êu\'üÙ¼¡ó’\nòxEìle¿¯\'o˜ñVØý','',0,'?'),('Wsåç{NÎhP—ršã¼±','wp-content/plugins/wordfence/lib/dashboard/widget_ips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áwàð·9Ê64\"òky','øXù“Œ•ÖóÍ\"vÑù’‹Ä-*¼ô£í­·ºøñ3','',0,'?'),('Wt[‘?÷Ä¦ˆ±HÆ£Ê','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/JsonVisitor.php',0,'êžÌt­¹>e=ç»Ò8','êžÌt­¹>e=ç»Ò8','£Æ¤eÜIýMÜ¾_5Lž~Réã¹†«Meß`ÌÑ¨','',0,'?'),('Wx\Z§TaëØ7{ïË','wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G×|€€s,€=K#ó‹Á','6¶·Öly„6É¦iúÕ3U¡ ë,’E[é²“9£‰','',0,'?'),('W{°g- Xòéû\'=n8','wp-admin/moderation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZØEVUÀ÷uúÛÚ‡¤ú','ºƒFqç6³£1»¶¢É<£©ªw„t&ßbßÂËÙ1¦¹','',0,'?'),('W})Ó–7£Œêeç}5æ9,','wp-admin/load-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@:Ž£‰æwhvÎÇûzP4','×ëEØnœ; W:ñ†ZçR|‰X˜¿(1úìU…bõ/','',0,'?'),('W€(Æö¼7f\nG9‡\\m','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Mime.php',0,'*cºîwm§¨ÄŽæ×fÁ','*cºîwm§¨ÄŽæ×fÁ','(²~TX˜èÞÓë“Š(Ýy>“¢*}ÈÜ¿ò§TÏSle','',0,'?'),('W…NÛ³ŒÑÎ*Œ¯:ð2,a','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ja.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' é‹éhüÕ>æ`”^-','qé\räqøO¨ÚGOUÿ‚m¢Þœµª1E]Ùépø','',0,'?'),('WŒ•_3ôªd)Àò¿-Ï','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-image-before-after.js',0,'/IÛú“qdðÁ›yy†','/IÛú“qdðÁ›yy†','l¡›!èÐ™Žµ‡ÞG-ƒzB3Ú>’ñAêlÄåv.Zn','',0,'?'),('WŽ(ãøw\\w¢¶²þè|Ž','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/Facade.php',0,'ø¢S\"N´¦ô«äRz7òêÄ','ø¢S\"N´¦ô«äRz7òêÄ','²eQ‚Ò3Ûd/Ûµ\0Þ)J`›¯—Ç@*+öq‘!gz','',0,'?'),('WÍLjN/¼@Ï¢ßÆ°‚','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T	˜Änrkœï•','å³;\\øÂXÚîê/0;¾œQòP†.“B4Ãò\ZÔ','',0,'?'),('W•\\[iê*abã,‡ƒ(’','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Fusiontables.php',0,'´ŒtŠCžêÄR¶s š','´ŒtŠCžêÄR¶s š','3}‰úe\Z‘¿oê…óõ#Ÿm&á\riÆåqË.µY‰é','',0,'?'),('WœYg÷y·väÐ†þð”Ù','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘o½|t.×ÖÁNwÇ7ýÍ','fhóû‘NÆ£ßà‹ÂARi!Œì‰fÿ•IÖqî¬æ','',0,'?'),('W³u%w±Ôõwh!¡o\n8','wp-content/plugins/updraftplus/includes/Google/Service/Webfonts.php',0,'µìß¼~Ì\0~å‡WÆˆØü','µìß¼~Ì\0~å‡WÆˆØü','’¶•ªû•-éïôeÅâÕ“$M*­s,Ï¯ì«ªö','',0,'?'),('W³ºtwq´k>Òiýû.','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ConstantBackoffStrategy.php',0,'8H]—.Ì‡n\"Ð’ßÞ9','8H]—.Ì‡n\"Ð’ßÞ9','„˜|Æ´Ï‹2r÷g°mÿR¨ÂØÂl’\"Û`)›L«¹','',0,'?'),('W´ cÈäž&VêjÜ‚ªÈî','wp-content/themes/Divi/core/_metadata.php',0,'ä}xûÑ·Ååö²†dFØ','ä}xûÑ·Ååö²†dFØ','2Gns]ÌÅœÀ¦NrâÈÍ2Î=û4|¢yƒÓéÄ','',0,'?'),('W¶6¦ú0ù\\ä`D','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Games.php',0,'Ûó{½VsC7{¯lmH)&d','Ûó{½VsC7{¯lmH)&d','nñ*§WR?Ußü±G˜¶:Š¾ÈÛîƒï“a¾«','',0,'?'),('W½ÄÓ”Í<ž/‡2çv<','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Serialization/ISerializer.php',0,'úïÏ ¨T¦0 Š\\ F','úïÏ ¨T¦0 Š\\ F','K\0Œ…PÃï½Á%–!ˆÏÀ¢r‹ó¤ljìbþ#r','',0,'?'),('WÁxœwlg¢„`]›¯þ','wp-content/themes/Divi/includes/builder/module/field/Transform.php',0,'í	‹;y§Š\râî\r|VX1i','í	‹;y§Š\râî\r|VX1i','-MFTý¡œÊsüQ/«/înÐù¥Õøú>B¸D[\rn','',0,'?'),('WÏGp!±ù¯ÿExY†‚B','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/RejectedPromise.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï\\w\\†öæº’õHTÓè','y\rs‹aÉo‡ÑLšEWdIÍ=ÆWyNÅ³z6Á™m)','',0,'?'),('WØû{ÄTá?@ñ+iæ;','wp-content/updraft/plugins-old/updraftplus/includes/ftp.class.php',0,'øx{XlÍê¿Vž\'Þ~]*','øx{XlÍê¿Vž\'Þ~]*','ÓÊýVósÓÇ2¶¢ …`„7CMà¬Z¾`¬¿oB','',0,'?'),('Wçî„bLUŽ^,Ð=Á@','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponseExceptionInterface.php',0,'åž©Îó&3f£=g-\n','åž©Îó&3f£=g-\n','QðNF¹÷0‡;Ö7çâ¸xQÏ!ê|£¹Ùh¬\\?V','',0,'?'),('Wï ZcÉƒtàm•ï §','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/GetDirectory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Q™ãØþ\ZC¾7à/\rs¹','÷§öJSjµÓîHOn·¾-â¼áÝò¿¥6ijãïEyÇµ{','',0,'?'),('WôösYž‚Ùø:Zˆ','wp-content/plugins/wp-mail-smtp/assets/vue/img/check-circle-solid.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d×3:V¡…‰2âAdbUÂ','ÇÑÛ\0²aYŒÕS®ª\"$õ”£¨\nÏQÒÆ8–Ç\\Eè>\'','',0,'?'),('X¹¯ð-i5ØÆ)OÓ ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/QueryAggregatorInterface.php',0,'­n\Zñl-cNXåË\'*7','­n\Zñl-cNXåË\'*7','õ	´\'¾e\'esãùö{°´‡@Ð^ª¹u˜\0‡¬','',0,'?'),('XÕâ¯\\shv]ÝiB§','wp-content/plugins/wordfence/waf/wfWAFGeoIP2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ý‡­(ž0,mæ‰G_Y3','^™)o¥B˜“¹¼½Ÿf¶gË*ÃV•P˜?…~Æìšu:','',0,'?'),('X)±ÍŽuÛuÓ´|n','wp-content/themes/Divi/includes/builder/module/field/Sticky.php',0,'É<q¼°ü1µÐ)ÌX','É<q¼°ü1µÐ)ÌX','Ç/ÜŸA_;\rØ1CªÅ`}\08Â;élµXçèq“|J','',0,'?'),('X+éùr¨K>ÀUáÿkt','wp-content/plugins/wp-mail-smtp/src/Admin/DebugEvents/DebugEvents.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lÄ»¥Ïm˜åŠüþNfUÎÌ','­²ð8B}VQÌy½ÏD²j˜AÂü¹÷¸4taâñ,‚¼','',0,'?'),('X,çEõCj$_ƒ¬8I§‚0','wp-includes/images/smilies/icon_cool.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n `—ì÷àÍivj.ß','âäº‹F„9;2_	…$Ê$~¾LOžaø6Óññ¿_','',0,'?'),('X/Ø¦×­¨í²ÏPÉ©','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Middleware.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß)¡Ž±îÉ÷V°7˜ôÕ','¦ÖÝ››‹Ð~\\ƒ1ìÃI>BÛæý¹ì]HÎŠ‰Ä\n','',0,'?'),('X1+–ü.Š…“>Æ@>‹L','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/PreComputedInflector.php',0,'Ÿ+‡~PþþòöÁ3','Ÿ+‡~PþþòöÁ3','Ã7´“a´?\'þlð}Æ­Á/Á²a$^ƒù^üèÞ','',0,'?'),('X6îˆ\Z~‹ŸT*¼Kš','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchUploadException.php',0,'Þ}rvè5~Y2Gšô±|','Þ}rvè5~Y2Gšô±|','jòû¤>s`¿uè}|”4’þŒìNÕ_€RaÏV õÀ','',0,'?'),('XN.F|iv©Þ$À¦ì','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetEmailEventReport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°!R¶4¦xVoÙ³–•','krµõUÃäñµíK„¼Daëlð‘öòÕµX‚ÂXÛÑà','',0,'?'),('XWhYè¡µ“rÕS:r+”','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-patcher-checker.php',0,'—¤	L`@±>³\rÒˆ¡K—›','—¤	L`@±>³\rÒˆ¡K—›','YçýŸ›¥½–éBT\'Ð`OÙýUyÁÞ¿yi?&Ë|]\n','',0,'?'),('X]ÁK&P†€aÿfž','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/http-message/src/UploadedFileInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ï¬õ7ä¬FU3\Z73Z„','×3ƒ7$‹g˜Kâ# rË¶t‹3ð\'±ö†ËêuÝ&™î','',0,'?'),('Xe±ÁÅ&„Â¬Žs¨:µ','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/YouTubeAnalytics.php',0,'ÄtÕ`v¦Ó©‚ÙðŸHÞ','ÄtÕ`v¦Ó©‚ÙðŸHÞ','Ï\\oÿ‚¨j™«™[BÀqö¨ËøBV%XXy\r)k½','',0,'?'),('Xg#»m\rfšjž7m®^','wp-includes/blocks/post-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L×FîÏPõ/\"4›¯–ñ','úU%Q‰¹]UÃü<@©Ý¾©>Ì’„í›qn¶i¸ma','',0,'?'),('XŽDjBY”X¨t¢¬Ð','wp-content/plugins/instagram-feed/img/carousel.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=†Ì‚¹mÃò&bÑòkH','„™n”Tgolc®¿*W`…ÉŽÿ{5fï2{$U*	','',0,'?'),('X–aØ •sù\n*žLl†Ag','wp-content/themes/Divi/includes/builder/comments_template.php',0,'<†~ñªmÁaÄ¼M8w','<†~ñªmÁaÄ¼M8w','Î‚<Ì³Dð¥y±8BâÖÕŒ)sÑŽÐ¶v0}€ü_W;ò','',0,'?'),('X–êM¾·šÃxÚ³üJð¹ö','wp-includes/Requests/Hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥ái6mHÜ{\\ÍÇòàŽË','ƒkþF×Kû¶ßë·Oî	Œt\nPkº î2úSÐÓ-ûð','',0,'?'),('X—:8+Ë“2>V]¬Ë8à','wp-admin/images/sort-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘´AÃ¬kì:¼bÑ‚vFj','\'ˆ—­aKÅ\0tGJ¯Bq…©XW*(J|1š£õz[(','',0,'?'),('Xš¤¾v–\ZÆ’¯Š\"ë$','wp-includes/Requests/Exception/HTTP/409.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|:Ôá™í7¿È²uO','‘÷Ç_MÔá8Uü¼«.pF«÷ùÂwŽ:E`ðMBâü§','',0,'?'),('XœÐJç•á˜’£8\"u','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/ClientInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rî¡øù:É¬’£Ü”¼¡','~–À#Ø\\äÂÀ	”\\h:w­EÇP0Ûüm\r€Ê5¿ž','',0,'?'),('XŸZÝŸnˆÑÿ`…$º','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetAccountPlan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\')#Ûq$Â–;ÀXÉ)','g”`Foõy¶3]0qÊôwþôMHG¼Êý]\\*a¶','',0,'?'),('X 8BÈŠð\\JùDËd','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/templates/panel/header_stickybar.tpl.php',0,'\"xàSË‘Š3ÚóÜào','\"xàSË‘Š3ÚóÜào','›ŽŠìÕ<W[s÷ÿIÝL¨¶aýqÓÌ>z¶hªó¿','',0,'?'),('X¥2›FGr‚ÐmâøóFÞ','wp-includes/blocks/button/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“Åß„zÒ2ø8#˜Õ’rq','à+\Z÷úêJãçS‚aÚr®<fm+½ a53ûã›!»','',0,'?'),('X°›,áuRX|Á1h^½@','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/class.fusionredux_cdn.php',0,'¤µ2ß;p	NÓ”Z³¾h','¤µ2ß;p	NÓ”Z³¾h','Œ’š¼½‰··br4Ãç†F7r%7Ã\0åàuE\Z.Õ¼','',0,'?'),('Xµs™ÊÿYqÚåžePL','wp-includes/blocks/code/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Çq‹«]½çi0£k¹vÇ','N¥)Ï 8Øè›ŠÐ‚€È#ÏÏ^;¿l¾x¥X¦0¸','',0,'?'),('X¸[â‹˜HÀnú×Ì–	$','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú®ÓÏˆçB¢Ó‚LŒUóÞ','²8WQ¾Faâ~h\Zq>ôL\rþéÐò™QìhžÜ§tñ','',0,'?'),('X¾š¨`ýOÿ?%\'9Õ§×','wp-content/plugins/really-simple-ssl/testssl/loadbalancer/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñ²B‘\Z†VÅ¹ÐÙÁM¥E','`m}G`\0”Ì‘VÂ¿\\o±S¿¶Ö°/Ö|^ð_é¶‘R\"','',0,'?'),('XÂ×ßG°¦“ö•åz„X','wp-admin/includes/class-wp-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'?hQ?ÊÒ¹`Ý¨Vã','ü+þ£>ÎÎTýÀ3ŒlÙˆƒœ5;\0Uð†9vÎ]å','',0,'?'),('XÆ~ÊVzl!_˜]/ž-3','wp-content/plugins/wordfence/models/firewall/wfFirewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’XüÏC’Á#B·sTøb','Ã—GHìÎæÏ5kÓ¹rÂÜ°RR£Ç_£xÂ-¨','',0,'?'),('XÆöC×%êY3ˆ3,ò¶q','wp-content/themes/Divi/epanel/i18n/epanel.php',0,'>Å9a]þãÅÃUq,ß®z','>Å9a]þãÅÃUq,ß®z',']—ÇXÞÁbÖH:7\'Ñ,fS™þà´K<|ÅÒÝ›\\','',0,'?'),('XÇiÁrÉ‚ƒf®÷Â’«','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-responsive-typography.js',0,'n”ºØõw˜‘HÕö“\0','n”ºØõw˜‘HÕö“\0','™Õº5l¼6FætÑÍX±`Â?ézÄ§&ÿ~å7áN','',0,'?'),('XÐk(DñÖqÈ›÷ýGö¨','wp-includes/js/jquery/ui/slider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õâ«}ÐÀUëïëÆ¤ý‡¯¢','Û³f,pÿ¸`–µqR­ÌÀ2¢\Z^v–6¶Û`ª‚sÒ$','',0,'?'),('XÔzqÿ	®÷‰!@tëÑØ[','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/AbTestCampaignResult.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŠËâe[ý<k€ö–ð¿\'','ôæG ¹¦¼ßÅ!ÍKkèü¥TŠ,†ãØèC§÷B','',0,'?'),('XØÜN¡½8„jøƒ³¢cù','wp-includes/blocks/post-excerpt/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MÆ6¯%Ü}à:&fMèÆ','õ+$EÅkÒ­w°Ö\rS:ê|K>•_c¥\0=I<q','',0,'?'),('Xä×_œ\"„gÒ\nÂWCP\0','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/DependencyExtractorInterface.php',0,'ÆºŽº\\0?BÃôu°öc','ÆºŽº\\0?BÃôu°öc','¨­p»­/ÂƒdßííX+d £;bãN/Z›ó—ÖÚÁ','',0,'?'),('Xê=Ó2h4÷/{ +','wp-includes/spl-autoload-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6õuõ{ît¤Õò‰›','çË,ÉZ\rM	>Ü…€àgïpò/é	Z\Z#`!û.','',0,'?'),('XêÝ%¦‡‹ª\\;:ˆÎ','wp-content/themes/Divi/includes/builder/module/Video.php',0,'$›Êä®›ËÈ>¶;¬ò','$›Êä®›ËÈ>¶;¬ò','CóáÁ=7Î¬B\0z‚JRP˜ppÉ&iiLÉ`Ý¨dÁ','',0,'?'),('XíÖ2Er ~ÐcJª¥væ','wp-content/plugins/wp-mail-smtp/assets/images/reports/email/icon-email.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*=|Ó_aâ\'ÅPþ)«R£','—ƒ\rSCåë–ìþù›ð˜mJÖ:Q¸@IS1.„©','',0,'?'),('Xîö»¶§zm«íº¦ÈyËµ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/TransferState.php',0,'EHLrhÆ£Fî_ðYb','EHLrhÆ£Fî_ðYb','b«à€ôÀÀNÈm^-m&1Gù°N1~2ÈŒ“¦í4à','',0,'?'),('Xð‡TCW_^¨·ogôê','wp-admin/includes/class-wp-debug-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0=¹´1ŠóHÑ\r·µˆ','\"Æô—OÝ‹¿¹É\Z‚†…Då7… ¡ëìµ×\\0f','',0,'?'),('XóOâf‰è½´ÆïWŸç','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/phpunit.xml.dist',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ýú¹™Ï•i‹¢Ìž “\"Ž','¯6Z\\‹+jë#Ü{ÑÕ˜“‘ÔÙ)ŸÅº,£rzlËÍÞ','',0,'?'),('Xýøâ\ZÜtô5 \r—u9¶','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Account/Get.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q.Üá\0ØÏAþj—?U','v\0ãþ¨°1u‰´,„ìU÷tEÇó{7Ÿ`ßI»ÉðU‰','',0,'?'),('XþAbÀ¸•Û}…~·¬,W','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Order/Finalize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_ÏÁ´Í#x\0çy¸ùHä','`7bßZåÕÂô¼jZï˜â82°µÚpšjª×&t/ä','',0,'?'),('YIÅ{ýè– —…Ûµðâ','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/nl.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹ê‚/0ùˆ’ã‰.Ny~D','~¢n>‹›h’nû\rç\rØ’5V1me‚‹žONôn','',0,'?'),('YÉñ[M±DjxÑ\nÉŽó','wp-content/plugins/updraftplus/includes/Google/Service/AndroidEnterprise.php',0,'\"WµWuŸbL£	£½í/','\"WµWuŸbL£	£½í/','\0nßf^„Àê¡·øøkÂkÂn²Á¿÷<w™ª×—Ž','',0,'?'),('Y›´¶ŠbÚ§,Åý÷J','wp-includes/Requests/Exception/HTTP/405.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r)qOelÛñÆãNèÊ~','jòbé±íš„Ìð^U¨sv8ÑÂ$b´„Má3y’','',0,'?'),('Y\0þÈªëŸ›¬¸äQã·','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Filters/HeadersFilter.php',0,'Ä_¨áèA…m3ƒññ½ËÛ','Ä_¨áèA…m3ƒññ½ËÛ','5}ÞÇÈÕ·bCEpn¤…tÕKÿW•Õˆ.6ÆÖ`','',0,'?'),('Y(ãKýªèg\0ûó_','wp-includes/js/dist/annotations.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'«û‹û»d^Éñ¾Ë®j','P6?&Fj9Ã¬%Ý?‰ô~)g”‰£¥ýQÜ','',0,'?'),('Y,Qpêgmu#—eŸ±¼~','wp-includes/widgets/class-wp-nav-menu-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß;dä³|h{îfw0.•','7a&5$€÷m‡ü\Zj?#ßl:Å°Æ\0FÐ¶fÇƒm)=','',0,'?'),('Y/ÝÞ‘ö	¡Îâ\Züñ“','wp-includes/js/dist/escape-html.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÅÎ/Ñ)çVõ\"3Üúj±','Pt\ZY6âx2JÔ8ãA«ÁÀd8a˜Ï&|\'¦ÌI','',0,'?'),('Y7O§ò‘In¿\\u\\¶ÉþŽ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Http/IHttpClient.php',0,'@JêýösÄsýa@º¥','@JêýösÄsýa@º¥','!¬Ûº3ôt íP­Qv5özLßš Íûçs¶AX’\0','',0,'?'),('Y8ØðÚË}+«n\"Îl®µR','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidArgumentException.php',0,'&¦Ma¸\n¸|ÔÚ/	Y•Y','&¦Ma¸\n¸|ÔÚ/	Y•Y','¥ÒðsûOüª›—i2—Ù¨9wö±a÷â¤…Wˆ‡','',0,'?'),('Y;BÄmË;gmö>èd','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/Is.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³R0€±Yäº G)\nX;','¥qÃ‚!:ˆ†ºAñ|{€Çf“Šñ1´d$98Î›tS','',0,'?'),('YBt\nª\ncåÝŸ.µývi','wp-content/plugins/wordfence/views/diagnostics/text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£îàŒnž”ÿWÆhg€¼qž','ê;þ<c¢½6Ï|_‡]¹)Ëÿm£ ÓÉ}pdþ­Ág	','',0,'?'),('YC\0Å@¤‚%§‹X	-¯','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/CookieJar.php',0,'þ±!>ÉñÑ(y_ÖXÊ¡','þ±!>ÉñÑ(y_ÖXÊ¡','\"Vý·ÿKâ\nu	±Wº•·ï|Ç¿S©Iºjªt','',0,'?'),('YGóÛl÷´–Ñ<í¸KÎ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/LessFilter.php',0,'iè&¯Üx±)OÚV@Võ\0','iè&¯Üx±)OÚV@Võ\0','\n…¬ÀjhÍ?zÔ×øˆ÷Q‡ð(¤{ÛÈÊ(º=„','',0,'?'),('YJ\'\Z®ÄÕ‡Obª¾¼að','wp-content/themes/Divi/includes/builder/module/field/DisplayConditions.php',0,'SýHó·;Û‘E:5ý\\','SýHó·;Û‘E:5ý\\','»WÉÿ9¹Ì}Áná*xñ’ºÚ(÷!™áò±ú™¿','',0,'?'),('YL¯‡ûKPvî\"®Þ1öO','wp-content/plugins/updraftplus/includes/Google/Service/AdExchangeSeller.php',0,'ÿ([	ÆigmÃŽ£~ï6','ÿ([	ÆigmÃŽ£~ï6','ýŽàtA³BlÀÒãO>t¯7ý ïˆ’âu‰P}Ø','',0,'?'),('YVô™2™•9}D8£','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á=on~Zƒ„ÒTOQ–Be','€<¸HÀ„¢\"ØôF¯@÷¬Œõ%®®Ú1`7<Òð	¢Í}','',0,'?'),('Y\\o>²\0áDÈ%!@','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/DuplicateCertificateException.php',0,'\r/ìTÛ8¢y›+È%·!','\r/ìTÛ8¢y›+È%·!','ë+³Œv¿È¢óŸ¹.fö\\ýD /Ž»DÜ°w‹ÐNÎ2','',0,'?'),('Yi®I&¸Geðî€\Zæ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/UploadId.php',0,'	%¹’Ø„‘†â»!l™a','	%¹’Ø„‘†â»!l™a','½”8E¿äÛ”†ÏN=¿l(€ž¹#D<$Ë','',0,'?'),('Y„Úü´GµùbÏ2ÿ‡5','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€5ê®Æ³µbÁ®ÑZÜ‹Š','jþ8ñen½Á_l\nJÍ÷±0¢p¼§cÖ	IPæú’','',0,'?'),('Y…LaØ€µhÐ(','wp-admin/edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hÑÌìkÿ¿üó±˜÷¸W','ŠäÌ\\Ðp+0Žä^°¬\Z˜Uã’è ^óªÓ^ü–þf','',0,'?'),('Yˆ,eêAõ¼wÀ`áÄ','wp-includes/images/media/archive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9Òîßòhû\0ÚÓÃ¬‘u','\0ýBb¼3˜»\'ÏÔ\'°„)JG –À](GÅ9Pr2 s','',0,'?'),('Y‘¸m85ßÞã¨Àõ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/pagebreak/plugin.min.js',0,'õWA!ÄÊ:»e:ÄRÂ•J','õWA!ÄÊ:»e:ÄRÂ•J','‹ó½Iþ`°$A4u:,uÄõ=8Ü	-¾NÖ¦K>V','',0,'?'),('Y›jÒ_úB™„êýI','wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/salvattore.js',0,'¿è«”^K,MVÚYGh','¿è«”^K,MVÚYGh','\'”ŠJ_\ZÁg´Sû½Z\0X™8ÑÅuÙ—CöàÝ ÏÀ','',0,'?'),('YŸBWy	+æB‘OmÇýz','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#ž:šáNÅ\'”DxƒÑN','¦[§õ_|ÐØ~E©¶©í+¯~ÅEì€(‘`í_ª¾','',0,'?'),('Y 68ÔH;%,¹_c\n€','wp-includes/css/wp-auth-check.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Új¼àbÖu¹Ö=á`c','¼\r[‰Bî{\'C½N5zZw’ pÈˆ’—IKñe ’Ý','',0,'?'),('Yµ²‘›,œ•Ä‹¯‰,ï','wp-content/plugins/fusion-builder/shortcodes/fusion-highlight.php',0,'¿\"…5ÏËˆn–Æ›dÕI¸','¿\"…5ÏËˆn–Æ›dÕI¸','EF~eF‡CÿŠë™Û}g{“ÞŠË¨›½x\0@SŒ','',0,'?'),('Y»ôÀÓ5º–L:rfT¤','wp-content/plugins/duplicate-post/src/utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€‰Õ93Š6äÔâŒ','Iñ·jÈ1þè·æƒøyÁ$1þöÀJCœZ*ÄQO¡','',0,'?'),('Y½ûa/ò¢ÒA','wp-content/plugins/instagram-feed/css/sb-instagram.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºË­&ð³Ñw-Lõ GÜ','çWêx£óæEø£ö^yöNì}¾Aõt*B¥§Oåg','',0,'?'),('Y¾J´Ð|Èí[D½ìy±Y','wp-content/plugins/wordfence/waf/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£E\"xKÊê{Ç8ödS³','C‡¾ö½\'r…9½ì@âK¡Þ†t¡ª™öâ§w#@kº','',0,'?'),('YÃŸË/Ðñ­	—fyúv','wp-content/themes/Divi/includes/builder/plugin-compat/divi-module-code-snippet.php',0,'ð—Csd¢6J¤°P1³«¤','ð—Csd¢6J¤°P1³«¤','ªöþ‡Iõ5d\\¹z§µ»r…‡ë§c›X£(µpëpƒ','',0,'?'),('YÔäÖí]¦®ÅžI†•¨','wp-includes/js/jquery/ui/effect-slide.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±;I^\Z+:C¹ß)H[','Yí¥‡ôµ †%¬í!‡§Ád!F­âr`úÝ€»Ä4','',0,'?'),('YÕ6ŒO9£Gîœ,6®[$','wp-content/updraft/plugins-old/updraftplus/methods/template.php',0,'”°uó‡µÎ=l¯Ô°Ãš','”°uó‡µÎ=l¯Ô°Ãš','¼ì\0˜½l³Ác/Á¢¶!C0“57ƒã’X®\0¿#A•*','',0,'?'),('YÖ»Uª€ÕÏ}Ãr/','wp-includes/SimplePie/Cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	û§~Ü¯{Ê¹›½¦+hÉ','ùmd…¼§•ánÎnun”pU0 l½à6­¤—ZišR','',0,'?'),('Yà®å$#xµ~ºwÀ=Ù','wp-content/updraft/themes-old/twentynineteen/template-parts/post/author-bio.php',0,'÷7.g&·ü\\iðäâkm','÷7.g&·ü\\iðäâkm','ÓæBZàÅJ±}¿°P®{¦òwîòðvW@¹‘','',0,'?'),('YçULŠ5J×Þ”Ýv[ž','wp-includes/rest-api/search/class-wp-rest-search-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ƒôx&Ô°†ð{\n²xœ\\','ÏsÞ¢š›™zjÔÎ»ñ\'Ò²ÊŸ÷wEÌ?õ†','',0,'?'),('Yëõ!L¼}>wA™8¹D„','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/Zf1LogAdapter.php',0,'ºô­‘ûÄ¼V_k\0yÄ´','ºô­‘ûÄ¼V_k\0yÄ´','Ääv÷,‡r4WpÐž4·Ã»*ÙL½}xÃFX/“','',0,'?'),('Yð(-mø}JX.ææS¶½;','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/AbstractService.php',0,'™§xì‘¡Òpþ6JXr0I','™§xì‘¡Òpþ6JXr0I','4ôÁHŒ¤\nUl‚Ss”Ë1¯‡NÇÞseÌ÷WÐ*\0³','',0,'?'),('Yø¤77ÕöÕ8&é‹','wp-content/plugins/wp-mail-smtp/assets/vue/img/times-solid-grey.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰s“ïöª™çVÎU3','«ßRÛ$HÐ¶žöõŽ+šÅìÖaj¥ÂG!-	½\'','',0,'?'),('YùcåøÈ`T‡g ôMèð','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BadDigestException.php',0,'|å£S‹Ó}-‰:ZFAÊ^‡','|å£S‹Ó}-‰:ZFAÊ^‡','î\\…ë¡Þ\ZTwr@®\Zc‰±¶å;´OÒ²Ê»2','',0,'?'),('Z=ÌËîîÇÓ“ÎËj` ','wp-content/plugins/updraftplus/includes/Google/Task/Retryable.php',0,'ý€òq‹eˆÌSèŠ4','ý€òq‹eˆÌSèŠ4','ö]šØR íî\r8]Ìÿ\'‚ÀöÕéCï½´ÓÄ½÷V','',0,'?'),('Z	F#Ó\Z¼°+I8´©>ôç','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3Client.php',0,'iñF¤Ô%lnaGJuŸ[','iñF¤Ô%lnaGJuŸ[','Žm•½&ã=÷™ÀÌòGV˜ ‘×„—cR£Ã¹D–ú','',0,'?'),('Z	¡ë?b”½â/±$¹5','wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-auto-login.php',0,'3¾Î ›/àf!Ÿ#Ñ','3¾Î ›/àf!Ÿ#Ñ','\nv¬VzìÃsÇÇ@£…ëœîtùÇ`p_Yñ‚Äzh','',0,'?'),('Z×DÏðøÄ‰<¥¼Dª','wp-content/plugins/wp-mail-smtp/src/SiteHealth.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WÜ&õ­ã‹úQmHý<j‡','(eª[±yÆ‘Ç}Ï‚ÏnÝ€[e áã¶H—‘ibÚ:ŽÅ','',0,'?'),('Z4<n?e˜ñ²','wp-content/plugins/wordfence/lib/wfConfig.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å€BÜù«“LSÑrž‹U¾À','ç,10Ý®…+ozc\Zo”Gú¥XwAD)¼FÔûaý','',0,'?'),('Z5JmÐp ðÊÌÛ#«-\0á','wp-content/plugins/fusion-builder/fusion-builder.php',0,'52ë—¸ZYþ\0±0²µa','52ë—¸ZYþ\0±0²µa','\0Ùåâš\"#óQf\\N1q`ˆ4õQUšÃ!>ù','',0,'?'),('Z7Kõ€ÈÛYí%¯QCÍ¾','wp-content/plugins/worker/src/MWP/Monolog/Processor/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('Z9“¶Ó}.ÒÂJ¤Âk=ª','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8I¢ã¶\Z\nÙÓ£‘','i>z’½R“@¯ÅòáÂãkôWà6uškÕyˆ','',0,'?'),('Z;ÉÊýï±sÆ~Xº ðˆ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Metadata.php',0,'E×Rt°©H@›GëqVV\Zc','E×Rt°©H@›GëqVV\Zc',')ž¬}3	ÄÕ-îÕÒhS,™¢ÆÊ‡/×—\\NØÈ','',0,'?'),('Z?~T%+r¤Ñ6Yž•‘›ë','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/welcome/welcome.php',0,'Q\0µdö“œ4<D­XÑeqß','Q\0µdö“œ4<D­XÑeqß','¤\ZàCÿ¼Ë<‘{43È\n)HMSf=E+}Ö','',0,'?'),('ZA£Pçð¾ºz›¤¯Ñ','wp-includes/blocks/pullquote/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<¾ò«ƒÊ>~P»ä¯A,(','OõãÂâÊ\"íýì|E½-HæˆÄ ?˜(`¦—…ˆ[ˆ','',0,'?'),('ZDá°:-hÐ${ãmaÏ','wp-content/plugins/wordfence/images/sort_desc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Äã?Õ¦‡)X²?¬N˜','bÆEÔšçBŠ#:Â(²#î=_(Å\Z€ŸÚ| ‹Uæ#Ä','',0,'?'),('ZGÖõ¯ï÷¸ÎigpÙ|\0','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/MessageTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']ô²RïmVñì×ºõŽ(','Þƒß3»ü·À‡”ï©­jæ+#˜VÄgl¹Œý˜Ñ','',0,'?'),('ZeµwJhÐUØvP¾WÙ‘','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Credentials/UserRefreshCredentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Åÿ bu¢áñ(ZPï','?n÷Q£écÆ\'x_vÎÀ\n§k8Œ­„ŽxèdSÌÄ=','',0,'?'),('ZfZS#ÔÞààŠ¤š—T','wp-content/plugins/updraftplus/includes/Google/Http/REST.php',0,'»õ¹îRUä\"ŠŸžfP–J}','»õ¹îRUä\"ŠŸžfP–J}','DX² À&.ÈH9ƒÈ–d¿Í­À#ð0Sä¯7Ú~ù','',0,'?'),('Zggˆ^A@ÈYí°/Þ','wp-content/plugins/updraftplus/includes/Google/Service/Cloudlatencytest.php',0,'ÂFÔæb\rà»´i›','ÂFÔæb\rà»´i›','uz§éB.~µoUä¶÷)‡YRX²JÉ¾Ä‰k®›`EkÕ','',0,'?'),('ZgpúÐ…3Vîçq9ÉX2','wp-content/plugins/duplicate-post/src/ui/bulk-actions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€\n}î¬u&2uÌ¶Õ¯p','4kfzz£bÎT€#G”ÍóqŒbs6[á]‡ùhÄ…','',0,'?'),('Zxˆÿ1¡2KÓZ¤,¸ì','wp-includes/customize/class-wp-customize-header-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xfô¿-<ËYGHª¦±',')£©NvæþäŽ4bxuj>I&ÿXÜ¸í›c!Kb','',0,'?'),('ZÒŒ£[¼ø\nvâËâ	F','wp-includes/SimplePie/gzdecode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','š„rF<”\ZiÇ¨u¼Ù','|–R\'gAE©ÛŽš†ÓqŠ±qT!ÜÞ:ÆÿO0Ê_','',0,'?'),('Z‚X¼yOû_ŽWŸÂ<','wp-content/plugins/fusion-builder/inc/lib/assets/fonts/fontawesome/js/icons-search-free.js',0,'IŽÚ3ä\\óêÍà‹Yè!','IŽÚ3ä\\óêÍà‹Yè!','À8!Š‘Msã±ï2øðÛ¨mß&\"ñìØ±\ZS\"ÂÍ›ÿ','',0,'?'),('Z†MËÃáÏ¼§ïZgÑ#¹','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/ContactsApi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NÖ´Ôsï™¢rA#‰ˆP','-scÁT©R!YfÂŠßZåB—Zˆ¥û§9m„È´ñ3','',0,'?'),('Z‰ðŽ˜0s{²\0GtÞ÷ÔZ','wp-includes/blocks/categories/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÎV¡­‡‡×mÔˆsø1','«vzTÓo]»à•h!=åÔ¬u°A \nÃtÍ:ÿ#&.','',0,'?'),('ZŽoŒAW¥/<þ½¥ØEg','wp-content/themes/Divi/core/components/Updates.php',0,'%|µ#Ê¿æeŸMš‘“ƒßA','%|µ#Ê¿æeŸMš‘“ƒßA','5èÖIð}¿u|ï7ÙæŠ›\nvu 6¯ÆBDm+Âc','',0,'?'),('Z”•²Ð±ñÄœ@#’„ùl','wp-content/themes/Divi/includes/builder/module/FullwidthSlider.php',0,'Í#»Ð¹ôÔßf%±³iÎœY','Í#»Ð¹ôÔßf%±³iÎœY','qJtêÃK‡xÛË«kjµ|ƒ’Zõ3<µúîŸ„¬Kš','',0,'?'),('Z˜_\"Œê~´JÏÀÉää','wp-includes/js/wp-custom-header.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€³ª¥n˜ÿ(FÑÌ½Î','e¿¸>ÅØÖWZÈ]î‰ßm×ö˜lÎ¢j‹Œ³ei','',0,'?'),('Z¢(ašK¢¯Å1\'Y£›Ì‡','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandTransferException.php',0,'žÜêW.ÒÜh.C^dÃ','žÜêW.ÒÜh.C^dÃ','dR5»¶§e—(¯`­cfyƒT×rèDï¨ÉÔæŸÙ“','',0,'?'),('Z£°Ñô„ûÝ’¯ºS¥','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ló¿Œ\Z^Z’HG³%©O£','‰m¤»Ÿc´;ò\nyã²ÈÅ0,Æ5ÿ‹ÙF|=ÈC','',0,'?'),('Z£ÆmÒäª3Ðx‰¯8','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Http/BatchResponse.php',0,'6¼–¼”h»;elùôc&','6¼–¼”h»;elùôc&','©…w7l‚w–Þ6Ä,{O&Ó5{¢%é\nÔ^)º','',0,'?'),('Z¥›ÙŽÿj§ïÖâ\\­“®¶','wp-content/themes/Divi/includes/builder/class-et-builder-module-shortcode-manager.php',0,'‚\\&ÂL³ð‘uÓ¬\ZJ','‚\\&ÂL³ð‘uÓ¬\ZJ','>ú;ã~D N(•Y„µc+•à²ò(¦ºØBò-pnâ','',0,'?'),('Z«±´NÜ>+l,m|²™l','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ContainerMigration.php',0,'!-0Ä\r#`1U=b$71','!-0Ä\r#`1U=b$71','l0˜\ZKnñ‹¤‰E>‰™¡ \"ÿµåõ\\ð=Ç','',0,'?'),('Z¬ÊèÄ %/»Z¿z9ýì','wp-admin/includes/taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÈÐ/aÝagóÖù¢äá','¡Ü	T+úÝŸ¹€‚v$LÙ3¬þÙG‚™!ÃjÔö½','',0,'?'),('Z±\0ƒœYˆ³’³ Ã¦fg','wp-includes/js/crop/marqueeVert.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®šÌñ\0¤¹“9­ÿRÔÜÇ','Kªcg$£eÁ²Š2\\pÈ$à1z¥Ž™œ`CkJÆ','',0,'?'),('Z¹ÉS†Û}`V\Z~cR','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CleanCssFilter.php',0,'¿á±õ)*²7ráÒ·0','¿á±õ)*²7ráÒ·0','´ù£±Ã˜+ÌËô\\@)>\0ý1yW‡b©kX\'èz','',0,'?'),('Z¼0ºë¦l¶² þ¥f{','wp-content/plugins/worker/publickeys/partner3.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üj>lzJ¡\n%c®÷é|','$NnÅI>An1¼®ßÕÞç„œ‘[êíÙá·mÍy\r','',0,'?'),('ZÀá\r­àF‘Ÿð\nÄY—s','wp-content/themes/Divi/includes/builder/scripts/cpt-modules-wrapper.js',0,'7Þ÷ jŒ•Þ¢ñ!E{Kó','7Þ÷ jŒ•Þ¢ñ!E{Kó','×={µJK†ªBqv©Ì­–ËU»}ÖI\"ÌJ¨…¥€','',0,'?'),('ZÇQ(zb‡çuô-¯ñ','wp-content/plugins/wp-mail-smtp/assets/images/font-awesome/exclamation-circle-regular-red.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™‰âs\0‚>YùBv„Ð¾','VïVîz&PÕêB2ÐÜêô\rŒ6Å T°@þDPþö','',0,'?'),('ZÉþwÑyâO¨[PHnxñ','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X†ñU iU0Æll9ýc','þ_Òv$í¸U7_‘*\r?¬+ó^÷Œâ‰¾¾Ä€','',0,'?'),('ZÊþ¿iŽŠüÀØb‘{8','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NotImplementedException.php',0,'¿Þ×m×s0€üã_ÉµÕp','¿Þ×m×s0€üã_ÉµÕp','G2äoB¡»¸3]á£…ìÎTy\\!zß‡·–q8]','',0,'?'),('ZË^ÉÇøÔ’|ž\"c%Œ','wp-content/plugins/worker/publickeys/partner16.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=GÚtf§Žò³\Z¦ô±·Ü','N¨…y}¯³ûêqHŒpàä+·­.l^`âH5™<V¹','',0,'?'),('ZÔ\"ëNŒCÐTó£RÌe\n','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPartOrderException.php',0,'(DJBÃ¿rPàV¡¯TÆ','(DJBÃ¿rPàV¡¯TÆ','ê¨¡¿9aÐZ$€©[á,„XÔJ—r«\nB','',0,'?'),('ZØ9ïöPîÍ§ò¤ÓmEú°','wp-content/updraft/themes-old/twentyseventeen/template-parts/post/content.php',0,'*7±eæLræôœÑËÃÚ','*7±eæLræôœÑËÃÚ','Ðh.5h0w½¢\"ä§Û–2Llø•X”\nCpãÃ =','',0,'?'),('Zç*Ô·ª!ö\"E\ZŸ@','wp-includes/blocks/pullquote/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢O)r¹†‘B\\½™ÄOÖ','ïô©3B¸…>…t7~g ƒ8z¨vüøqä^g3ÃI>','',0,'?'),('ZèR§ÒÌr(ð&b°£:¸-','wp-includes/css/dist/format-library/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']0ÎJ¢´bˆêƒC”©EV','7|IèÂâŽÍW­~úw¯MOïÑÒŠµdÖVåpdâ°ƒ','',0,'?'),('ZéÎ=Ó§Årc\"²”y®','wp-includes/IXR/class-IXR-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IîÊVdB+A·J?ƒù#','‡á{~Ÿ(#å¦\Z6užîð¡Ú,ŒêÕÇ?€jk2íñ`','',0,'?'),('Zëbj±ú{T†Ã§ÐP','wp-content/plugins/worker/src/MMB/Installer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Ë¤¸DVDG’‘˜ÏM;','æçûF9Ý¨¬È«&qWœ?³6u1¼÷©óºÒ6ö','',0,'?'),('Zë«lÛÚ7Vý«ˆHqi','wp-content/plugins/fusion-builder/shortcodes/fusion-progress.php',0,'¯ë$^8ßØµg°È0´“„','¯ë$^8ßØµg°È0´“„','Li\"½@×8Íê>Ad²”ƒ¡>“òåh…çg¹«','',0,'?'),('[	cC›`Ä†N76ÀµV','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/StorageClass.php',0,'66]N<%g‘->È­','66]N<%g‘->È­','Qyºy»ÂôjÛà^fhodë¿õ#Ý»o´[êèóºŽWXg','',0,'?'),('[ÇG»¤üeöa\'íiè­Ú','wp-includes/js/jquery/ui/datepicker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ò4P1,Ùˆ`x’¬µµ','ü]w\'¦€dý<séÌ6»>4SÚ­Ÿ•»søø/µ=û»','',0,'?'),('[DAÉu$¶»0]H@g*Ä','wp-content/plugins/fusion-builder/shortcodes/fusion-blog.php',0,'à•m¹Ón\rÒª@Q1\\Ü7','à•m¹Ón\rÒª@Q1\\Ü7','§õÞté°A ÔÝ/o=ö$åÎÎÓu5ÅG¢õí‡`','',0,'?'),('[2Î¬\rh†¸¦Æ—µGX','wp-content/updraft/themes-old/twentysixteen/js/skip-link-focus-fix.js',0,'ñ\"B!åîËH1­æ¶­/Ps','ñ\"B!åîËH1­æ¶­/Ps','ŸòQ¸Û+oBÞVô·à¿j„á„¸S‡FGZÒ¾”¼','',0,'?'),('[2Ü:ÞæS¡?/÷ñj','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CommandInterface.php',0,'‹OA\'º9 \'+;ùå§—ax','‹OA\'º9 \'+;ùå§—ax','!C,V-öªg$×F¯xœÓZãáÜ·ë—†lôæ','',0,'?'),('[5ùš×YÙNh¦«ŠKˆMè','wp-includes/customize/class-wp-widget-area-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Óè¢<wÜŒ*Ñt”’Î!’','44¡wåVv…Oa5G•Õ39ôÛI±Œ½ =÷5Èâi','',0,'?'),('[6	à¡`Ë{	¯ÈÚÄáz','wp-content/plugins/updraftplus/includes/tether-shepherd/shepherd.min.js',0,'„ÐÛùÕ\n+bA|™-õÓX','„ÐÛùÕ\n+bA|™-õÓX','g7>‰^¼r—¢Ö²”ƒ£ÄÀYgd7ç¾Šó¹÷`=','',0,'?'),('[:úwŸ§m”dHÚKyÇ¹','wp-content/themes/Divi/includes/builder/module/helpers/MultiViewOptions.php',0,'’±ìÿq®Ž¬YÛÓ­ýì','’±ìÿq®Ž¬YÛÓ­ýì','wâXW\0–=J,¬t¨sEJ›¾ÅRïÞ@IÕè_o\\@','',0,'?'),('[[Ûˆn·Ó_Z	9‰psÉ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/functions.php',0,'kÔÄgW£´-ZVÉ\0›','kÔÄgW£´-ZVÉ\0›','nòx!™´!Jä‘eb2ÁkAÛ¸|å©ÁÀšÙ1','',0,'?'),('[gÿnÙå_rpäxêÎ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/KeyConverter.php',0,'‚¬Ë¨\\.¶ÿZd	HÅ¡','‚¬Ë¨\\.¶ÿZd	HÅ¡','¹=p¸<JñFN„½Ëž¥€AníD¹-Pçð','',0,'?'),('[g0ŠAê\\qÔ¥S3f«Ûö','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/SocketTimeoutChecker.php',0,'Æ¯k\'fëõÜí\0¸	|Ha','Æ¯k\'fëõÜí\0¸	|Ha','ï¸mKÌ]&œÀhÚòâì“V@\"T‚äIôYPK9é','',0,'?'),('[l(˜ù¸,FZž#¨=8','wp-content/themes/Divi/includes/builder/theme-compat/divi-chef.php',0,'ÞŸíÑ5\0ÌF#“¡;','ÞŸíÑ5\0ÌF#“¡;','Ñþ\"]Üv\'ÅŠqê0ïr£v!D¥ÅPÁAf±„&Fä','',0,'?'),('[o•ÂœØTºNhòh$|','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/UserKeyMustBeSpecifiedException.php',0,'¶pA\"Ùð‹Ç£Ë|£ºç','¶pA\"Ùð‹Ç£Ë|£ºç','“K‰×¬\nôç×ƒkÝNa/”…õd¥ÏIÌËruUé\'-ãþ','',0,'?'),('[z‰uHÈâÈîëöîSpT','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterFactoryInterface.php',0,'4ú \\YB•ûÙÇ¶®#IÑo','4ú \\YB•ûÙÇ¶®#IÑo','šüë˜àOñ»–ÿ}BÅX“Ï:üÉ{ö~ÄÉ…¸R¼Ê','',0,'?'),('[ŒÃ#Ü§\Z>]¿<¦','wp-admin/css/colors/ectoplasm/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶@IÑFYÓŸè[}%','tWX:H¡?`?ÿéë§\0-©pV-ï85Ÿ•ìÅL]p	','',0,'?'),('[ŽdÒ4ÎÙ´ùû­Sb','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÈøeÌù³iZ‘žœ','z\r\Zu$ å2jº´÷X\níÜ·ßØPÌ¯3ì·[Põ','',0,'?'),('[’>•x‚;òwn/tH','wp-includes/js/wp-emoji.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+g³D>ówùf™Ù…*´D','M£aF±©$®*ëM©Ï_¤¹“‘án8¨í·Ävïûuã','',0,'?'),('[š—$ÌÃÖ·¿YN;d\"','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DomainError.php',0,'¯…Nmîuôê·lv:','¯…Nmîuôê·lv:','¬$ÈÒYæJK|›®¸ö­¥oq)ù]õoý','',0,'?'),('[¦`˜à¦¬&™ÌQ§ï¿p','wp-content/plugins/fusion-builder/inc/lib/assets/fonts/icomoon/icomoon.svg',0,'‚ºåŒº\\\0ôÿ²÷•¢!‡','‚ºåŒº\\\0ôÿ²÷•¢!‡','TfZfM{ìGOÕ‡ð£+S8%ñÐö­Ä7ÂËâým','',0,'?'),('[ª¡x%¡0ÜhåÃN,z','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryString.php',0,'¤t·éTnJïÍxÀêxåŸÙ','¤t·éTnJïÍxÀêxåŸÙ','¦Ù!ƒ¸YŠ—±ä4#@¿ZJDï~4¡ÁµÅÑè_Ì$','',0,'?'),('[®X$¼­UÔ6E›¸û4‰','wp-content/plugins/wp-mail-smtp/src/Tasks/Task.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€.+G£9nœ=BÈ','jk\"*Ö“{ûŠÈ^×\nd½ÂóÑ¯<_/-f\Zð„\"','',0,'?'),('[±|­–þäéŠxz=î`ë','wp-content/plugins/updraftplus/includes/Google/Service/Customsearch.php',0,'q’ægNbô•åK2','q’ægNbô•åK2','™-1p14§&ÿ]ÈÆzE\Zñ­Ì–fdð+šý80\n$','',0,'?'),('[±€à1¶YAdkö,','wp-includes/SimplePie/Sanitize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uŽlžŒ¦¤fpŽªxÕ—','ÜîÆO\nQpÿô Ø5ìA–~ó„¶Ùùž«­j‘æxtÉ','',0,'?'),('[·à“+»06›¾÷œ-','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/XmlVisitor.php',0,'ó/—\"ƒWû.r»`‚xD','ó/—\"ƒWû.r»`‚xD','|G7Wß‰ËÉ\r	)NŽÇJQ`J¸}Â›¸×g\"Q','',0,'?'),('[¹¹Z¿b>…/\r·|¾WV','wp-content/updraft/themes-old/twentynineteen/classes/class-twentynineteen-svg-icons.php',0,'öùã³Á›YiWWéÏ‡','öùã³Á›YiWWéÏ‡','¤›Tí+¸­iM©<®°_Ü8„ÕPt ;á*G¹n¤^-','',0,'?'),('[ÅYÁÐ44óOr¶•l0Í','wp-includes/Requests/Exception/HTTP/414.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CÃr¤Nf}½-°¤â½ª','¥HàÁ»ÔÌÆÚižàíc÷!§™I).ehˆµ‘¯·‰','',0,'?'),('[ÆZîh³%¥JçÝ \r9','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/ext-searchbox.js',0,'ÄI°2=fn\Z^ý9åL','ÄI°2=fn\Z^ý9åL','ŸL„ÍŒ™¯B´‡¢þø£(žó8ï¶v¨^»pí­','',0,'?'),('[È´\\n¤“û mTXEÁ1','wp-content/plugins/wp-mail-smtp/assets/images/reports/email/wp-mail-smtp-logo-dark-whitelabel.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­ÑŸÉX¿ÛæÞ5•+aôä','×Ô¨‚ï$3Da-:Rjyz†éü?¥îçt¤,©B','',0,'?'),('[ÊBX\n¤ÂQ¿Å±“cÔ','wp-includes/blocks/file/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ý|Um´–^õÄ¢eº¼H}Œ','zÚq±ÿ\ZÈ7\"%+ä/,@O\0±	-Ú\ZM«H3À','',0,'?'),('[è‘ÓÔK±›å ¯hB×','wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/Base32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰ˆekàðh¢Á:È2l&','ÊŠ‘‚TkÄ*Ø“”ÄRñ¤I‡ä2Ë¡?Á1~Òd|0','',0,'?'),('[ê æ|KòoÊÛŒb7ð','wp-admin/user/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îxCS6¿LCé2!Ýu','Á`K¶çÄä¿y2MþÐplÎ¾\"a\0ï¬°štÑÞ¡D','',0,'?'),('[îîP~$Q¾Âë²Hiòƒ*','wp-content/plugins/updraftplus/includes/Google/Service/AdSenseHost.php',0,'\ni\"…³ÑFó[¼¦-ü','\ni\"…³ÑFó[¼¦-ü','×EU£^ã+šöÌÝûØ´’sGèLg Øª„!§í³z','',0,'?'),('[ñ¤ë½ËÌ\r1†¤K–Ù8','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Token.php',0,'ù˜8€È*–Ø¢ŠszìÂ!','ù˜8€È*–Ø¢ŠszìÂ!','êö)à9¼<®bÓ¿@QëhÉ¢g;Ì€e>¨Äg~Q','',0,'?'),('[÷—]c¯iÁm]Z¶42','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/DuplicateAggregator.php',0,']/¿pËæ=}qd	;›',']/¿pËæ=}qd	;›','\0Ÿª@d·o3©*Dgè›ã½…¥6Ñ´aM´vsN','',0,'?'),('\\¿%à÷?Œ>ˆ™íÜe8','wp-includes/class-wp-block-pattern-categories-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WÞÿtª\'öÜÊðm@±’','%°k2\'-n[›§D¤\"°¦jWãÙ‹‡ßå.¯¤!¹','',0,'?'),('\\¢±X\r:l]@H7Ü','wp-content/plugins/updraftplus/includes/Google/Auth/Abstract.php',0,']¨r3“‰1¤Vp½=',']¨r3“‰1¤Vp½=','o®âÅÈ‰ÙÛ¾·Ïµ>šÕ\Zþ –¼óŽ&†!:ßüá','',0,'?'),('\\\n›³Í8ú §2U]ˆ','wp-content/plugins/fusion-builder/inc/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.svg',0,'ðÀ	û\ZAË*¯Ä\Z¹ÕÇ','ðÀ	û\ZAË*¯Ä\Z¹ÕÇ','Ü’0©‰is¿|\n|÷>D<­û¦–½ç•Kv\0Œ0!3d›Î','',0,'?'),('\\\nñ;:ÆIÑ\"ï@ïOhÉ','wp-content/plugins/contact-form-7/modules/response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aÙ¤@ï÷W+éX*Ï1©ô','½ø9žH\nÔ 6¼˜™m`…ñ£ÏMæävL®ÏÎ« œ¿','',0,'?'),('\\ªÃ§27*=./ßì','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/VarUtils.php',0,'±}—íˆØâ.&oÍ”«í–i','±}—íˆØâ.&oÍ”«í–i','žà}–b(‡¢$ÓCÇ»4‹^¦0àjY—ð±´tq','',0,'?'),('\\ÜÜ…•Œ9‡ƒ·ÈÌ÷','wp-admin/ms-upgrade-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qc”ó8®šÔE×%Œ«!','	ÍHê_cÞè•QÕüX€ùÌ¤„ÕLsºÚ­ÿ','',0,'?'),('\\<s¼¬¿Á%¶nãŸU','wp-content/plugins/really-simple-ssl/includes/simple-scrollbar.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mï©|#u·Ì@‘Î\0kìR','w8õÚ OÕùüx*¬[5´¯?O7°.[)V§‹Â','',0,'?'),('\\,w(¢ÔÀ`ð‰Å/Dû','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp192.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rQý¥%-¿Àö~4¨ž','@/‹œÔvá¥±ª¡iØu§Áo’õ“ºÄPÏ[îy','',0,'?'),('\\\'hB¿ç\0_UËÅ','wp-content/themes/Divi/includes/builder/module/field/display-conditions/Browser.php',0,'þ	¢ûñ(ï÷\0Éb€<o','þ	¢ûñ(ï÷\0Éb€<o',':I ½F½Ö…%ù\n¦‰vƒ¤\0FF8äv=ÈÖï','',0,'?'),('\\H¢û–:”¢u3à%‹Fw','wp-content/plugins/wordfence/views/waf/waf-install-success.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t¥2ØHÊÁ‚$á\nã','5¤(Ë/´¹PhJSÈZ\"&]}“ùÒr³Ip¥(ä-tÍÛ','',0,'?'),('\\IPìÐ0C­Î7\ZOœNÅp','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LO\0‡`ŠœËLb1 ÅàF','hÐÐÄ¯ ýÏ™Ý3ÑM8¦®â·â¸S×Ëp`','',0,'?'),('\\Q^z7—Kòb\nüåh ^','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Rackspace.php',0,'€°ÆÂÿÍ’#\rÙc×N‘‡','€°ÆÂÿÍ’#\rÙc×N‘‡','&HUš6ö©õe†•d7ñ³v…\n–_ÐÓ’k´Òdâß','',0,'?'),('\\V‘ñ¼}²§2õêjìK','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/EventLog/DetailedEvent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z»Î¯ ŸtVÖ·W‹Xl','böJN€ÒH–«¿O©%¸×a«‚ÂMu¶ªÚ9ƒÌ×','',0,'?'),('\\Zâ(\0wˆôX6cjÙhE”','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp160k1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K…ZèµØ–\'ƒLí÷','VCmF+g)‚` ÛV‘83§l–¸­¨ã\\Ôße7ç','',0,'?'),('\\[æíi%Í°<ú˜e“>©','wp-includes/css/wp-pointer-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b;¯Àèfð«ŸJ-ž',' \0»îDrÃ¡â)›\Z¡k²îƒyÒQ—h¼qÂø.\nCK','',0,'?'),('\\`—ÂU“ïØ£˜ÄA2w','wp-content/plugins/wp-mail-smtp/src/Providers/SMTPcom/Mailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sz…~íz4¾Z+‹Ç','å«œ¤\nIå=Qd\'É=œ¹t¬	˜5+¨§RÎú±¡','',0,'?'),('\\aíïÁ»äIŠò³ˆ±®1','wp-content/updraft/themes-old/twentytwenty/classes/class-twentytwenty-separator-control.php',0,'“Ö\"—#1¿a•ñƒ`ÅÑ','“Ö\"—#1¿a•ñƒ`ÅÑ','&O¯UçQ}à}l¤&æÌ¦¨lÁ€¦Â–•¯ÒŽŽz','',0,'?'),('\\lZEÇ×£ŸLm=ÝÝ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/cache/src/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒ’IICEõ“d,åfl²è','`2@í˜îé Q§1rÓ«LçîÃ×‹ÜD‰ÄDå\"f','',0,'?'),('\\pó«ôkõ\'¡J\n×5','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/es.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­Þç·ÇSö%an¯úµV*Ï',' ÝíU>UÜ¼}…øÖ …Íµ;*mÞ©aÀià„8','',0,'?'),('\\‹¨ðvñÆ?­\\z%','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/slides/field_slides.php',0,'ëIT“ó²ð:d>‡G#ËRû','ëIT“ó²ð:d>‡G#ËRû','îER«ÃWë²J4ù}ó®r	k¤ßvžXÛúÐ-ûÁ“','',0,'?'),('\\‹¬Mà¤»¹ÆcEeg','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-counters-circle.js',0,' \'\rX]oÛ/µð£H’†ø',' \'\rX]oÛ/µð£H’†ø','õ°)ùgÊÅÿÏLKcÕüÕ(zÙq¦K€@ã3Õ¥Ž','',0,'?'),('\\‹ÆòpãDCÊ»ÇñÇïÏ¡','wp-content/plugins/worker/src/Monolog/Processor/MemoryPeakUsageProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\0N¨˜ú°Dñ!wÛ»Še','{³)ÓCØä\"0Šî—\'\0¡¯÷ýieƒ¶[%','',0,'?'),('\\†’ÜÔù]j#À;VTG','wp-content/plugins/duplicate-post/src/admin/options-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„ªCõ{WX†V¶s]Ÿ','7œ¸‹2qX¿nFÜ­Y$AÓñn~èØxf£çæL‚í¯æ','',0,'?'),('\\ÏðG¿¤5xbÕ¶ñì<','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/help/plugin.min.js',0,'\n‚XË´D€øàR\n@¡X','\n‚XË´D€øàR\n@¡X','cj…põËfGÄwÇ©1!YO:ÅÞÿh¾=ŽüÛ','',0,'?'),('\\‘®íàÆ¤7öî²Q€o','wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|¦%;w©ý¯Q»8øÈ@','wi>Þ6·Æ¬à4Èå .NÊC¹äž\Zÿ4ªIOžÙ','',0,'?'),('\\“¥»2¤]‹kÝà¢õ¼µ^','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php',0,' 1»Î¯Œè\rûF÷þýA',' 1»Î¯Œè\rûF÷þýA','rã3›ÚÛ¾hi¤-\\kÁúBžqÓs²C\nÒu©ôËjG','',0,'?'),('\\™Ñå E–:G¶uo\0wnâ','wp-content/plugins/instagram-feed/js/sb-instagram-admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y_‡\"Œ(²G²Ð i','ÐÎ@ü¹ôK\Z(¶döÁ‘q¥sc8Óùí3-knŒ','',0,'?'),('\\šÑ‚’?$€Í„8À’¡æ','wp-admin/includes/dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡Ÿÿôšg·Â.)}Qh','œ]$) g13ƒr¶mÊ‘x DŒç¿Læ‘<;','',0,'?'),('\\³<ýMh»˜Å§ô÷','wp-content/plugins/worker/src/MWP/Monolog/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('\\³áï¼*cöˆ<lQ²z','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/select/field_select.js',0,'þhŠÐ”Jµ\n’ïô1j>','þhŠÐ”Jµ\n’ïô1j>','iNS`ín¬‡{ÑDyèlµ¦×Úy^«¶†D}þ|','',0,'?'),('\\¶0SphIrÊ‰Yœ#‰=','wp-content/themes/Divi/includes/builder/module/helpers/Slider.php',0,'ÌÃ\0ß7Ì•–È9ê','ÌÃ\0ß7Ì•–È9ê','’ŸÓ±X¤Šå\'PÒµ)ÕÝô´‘Ì©ßZv','',0,'?'),('\\º«Ðó¯#^DUË¨}î”¾','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ServiceResponseException.php',0,'><v¤è‰—Š$sHtí$ê','><v¤è‰—Š$sHtí$ê','W°yP¥ÓuÕGºcÂõûUì°á{BO+pÅÁ?','',0,'?'),('\\Ó\0õ£>¦+¢³ÁFbÐí','wp-admin/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'ôUïÂ:#²+a´”ìF','žCò™ÀØºf™`õ¹¸]ýñÜÚ|#wVÃ‰BH)\r','',0,'?'),('\\ØºžB½D££ÂÝÏ{dh','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/CssCompressorFilter.php',0,'øŠtƒõíA½ûdH÷','øŠtƒõíA½ûdH÷','TFðXøEsš£ŠŒŠ´yåylë\"‘¼HïÛI‡¡j','',0,'?'),('\\â‚³ñÕ‰VcýVŠ”','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/shippo.php',0,'†\nÙ*Œ1¢þýØ8´Æò','†\nÙ*Œ1¢þýØ8´Æò','|Ô¥a”R‚°»AïÝ7¼4a{.îKî*jR}çx','',0,'?'),('\\ãUü7ùCí¢Ø«põ','wp-content/updraft/plugins-old/updraftplus/vendor/composer/autoload_static.php',0,'½rkÎ{ÌÚÙÂùŸ3','½rkÎ{ÌÚÙÂùŸ3','¬j{c€åíO³èR\Z¤Ñ#•€Ïis¿µóe‘¿ˆ','',0,'?'),('\\ìgëøôø´fu÷=YI','wp-content/plugins/wordfence/css/wf-ionicons.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Al¡°sÜÊjÀâ¯ƒ','×’–ð“4ÌË®Àv¨ùãÁ‰MæŽ`—V÷ëýZô','',0,'?'),(']9ú6áövÔ^°bþ¢','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/advanced/total-size.php',0,'­QÙ0$|áŒÐøÞ»\"ž','­QÙ0$|áŒÐøÞ»\"ž','F=Üë±Rð™ç#üuë£*Cä~ýd8‰9KÁ…','',0,'?'),(']\'ÿQ\'íØÄeÏñ„:','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php',0,'ª	ÌZU\\úÔ#En(P°','ª	ÌZU\\úÔ#En(P°','s4ÝÌý¹©:Wúü}Ž…Çu¨˜q;q\'@zNFÄ¾`³¾','',0,'?'),(']¾çÇWH<¯â·gû','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/PostContactInfoContacts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':¸<ÒŒ)çÙ\"¨L‰¶','¦ˆ¡X¶ÏLŸµo\'Qaæ«:›P…ÑŠ…-','',0,'?'),(']Ê¶ò)ÄƒæbEì‰X`','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/modernizr.js',0,'ÜÚq\n3„XÑ‡îX0¸','ÜÚq\n3„XÑ‡îX0¸','t²¹ív-¦—Êê-áÌ¦Áø |/\\¸Ž·‘ÍM','',0,'?'),(']\Zk‡f—s÷Ç?ö3$/','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/FilterCollection.php',0,'@ÂaN©‚‡~Q®À¢[7','@ÂaN©‚‡~Q®À¢[7',')-ùÒŽËLFÇ~ò <`p½$ã+r.f† ´¢ôg','',0,'?'),('](	õ‹‰âý +BHí','wp-content/plugins/updraftplus/includes/Google/Service/Appsactivity.php',0,'Ž·p³˜¶zØ—)z‚ìy','Ž·p³˜¶zØ—)z‚ìy','€-ðnøË^n€1TÏô˜Ë…÷qîS®ìì™·¢B§ù6','',0,'?'),(']!wM$\\3Ï‹Â;r`','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacEmailsList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”eCüÀ‡[e¸*Ø197','RµSÜ67êUP1+ù·gÅÃ3°ö8VÞ4Xr É','',0,'?'),(']#|>~ÿ³éAú$é+~','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/ToArrayInterface.php',0,'TfXO\'ã‡ÍØæ0›Žx','TfXO\'ã‡ÍØæ0›Žx','_alâ¾êæö_	Ï~9Ý`°ÒÀr³ªš\'pè','',0,'?'),('](Rª&!âÆ1;™3˜ê','wp-includes/js/wp-ajax-response.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï—wfˆ¶$%…Â¬¹fq	','·›ô0Ú¬v§•+¾âJb_\'\0¿!#€på…­£²º','',0,'?'),('],êg·\nW\\Ìl~¥Ì','wp-content/plugins/worker/src/Symfony/Process/Exception/RuntimeException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ô?B´^E*i:ö¨¤à','ø‰•ç?ÊÝ-	Ê¹åpó{kI94„ñå(0î','',0,'?'),(']/[¥ÚÇ*î ™€®9','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/TransferStateInterface.php',0,'zR±¾û­V³6#ù.1¸','zR±¾û­V³6#ù.1¸','\n÷ø»*¾Ñ\r•Õâ®8‡<YÓe}rÿ™&Yî×','',0,'?'),(']8èèÜ´~‡u8?í?=i','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hy.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›âr\"SØVÀ]‰eÖF','àò·WVñÐµŠÚ¡s4UÆÐ§³\\\n0½XðÆ','',0,'?'),(']9¨B—»ë|†S·²5E','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/mysql.js',0,'*vGC@›©8®óºÛöÈ','*vGC@›©8®óºÛöÈ','mØ«T+Öuõ·{ˆ	ýE]VŽ/!7û¡b‚.8,›','',0,'?'),('];G9GÖ\'ŠÃ\nŠP‘','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MisMatchedChecksumError.php',0,'é7àJs?í»ïKº','é7àJs?í»ïKº','Þ…¾ÆïýAOçîùVs„9|…ž¼nÉâyOtõ·','',0,'?'),('];•ï\0 `Û\")Ó¶L­','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/facade-classes.php',0,'d}ÅCf¬€ý×=Fòc%','d}ÅCf¬€ý×=Fòc%','³ Øj*Šö—.[:cU·1ã\0”¡ƒâñ÷ºh¨','',0,'?'),(']B,ÖZv{é„','wp-content/updraft/plugins-old/updraftplus/methods/onedrive.php',0,'¬ÙÀPk¸tªþrRúÙ','¬ÙÀPk¸tªþrRúÙ','mž*á°=qBG\Z·ÁPho+9X\0^¡û<¸xrñ¤Ë´Ë	','',0,'?'),(']B#Í2èzÚìúbUœÉ/','wp-includes/Text/Diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rôÁŒ‘ \ZVéîÓ:÷¤','ŸN\'¥uýp¬úÛ=ZÝ\"-øKÙëý¼½ñ…r','',0,'?'),(']H—ß¹v;	TLcî²9','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ResponseClassException.php',0,'ù$iÔMçrIa¨‡»&¦ù#','ù$iÔMçrIa¨‡»&¦ù#','æ I_ƒñÚY8ö;‘Ç‹Ìyâ¸Ì÷?ëÝ','',0,'?'),(']KU”%€9-ýÜ7‘³)','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/InconsistentClientTransferException.php',0,'4\'Sh]8ÊBç÷?=÷','4\'Sh]8ÊBç÷?=÷','©JyÜý)âNÔ0Ç–»Ü AÄ§Ni–ˆ*\"Ýls	','',0,'?'),(']L0ºòìeE“\"uÀ ­‹','wp-includes/js/mediaelement/mediaelement-migrate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óOAZ¥nÙ\0îÏ?!*ÛWâ','q¡{2ÎfXž¹õÊáöJgXCŠ•ûäcæYØ3Òò','',0,'?'),(']P)èžó8ÎÌK3xëŒ ì','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/JsonVisitor.php',0,'Æ«Y\\Ó¤7é´iIÑ‡Uý','Æ«Y\\Ó¤7é´iIÑ‡Uý','ï€¶ \Zú}—WT¶Üû“0Í+AŒ¢ ‰Íff','',0,'?'),(']Q\0€ì¹$ÕUšuÕvm\nG','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidTemplateError.php',0,'\n Í£MÄ°97Öy ;','\n Í£MÄ°97Öy ;','–ßUý\"qÏ›gi¿aÛY£[ÓûÇ{\0ËßRhÅ','',0,'?'),(']c,¡œ›ð_»…0Þ}','wp-content/plugins/wordfence/css/wf-adminbar.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼æ0ÓÂÍÀÉ\"CÏ·åTbÜ','h»Sä˜·*g£5±¹)!û•}ô¿Bl—NþEà','',0,'?'),(']g=NK– *ÿ^\Z©íúC','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lYŸZöià¨† 3\02[','(’åA#ïÀ¼F—þø~+¦Ÿ Fgh¡ðSŸ.ûb','',0,'?'),(']€Ñètšºqîaãu1','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÎÜFtñ@Y­\Z›!X0C','À¸Èß\ZóKÍÞçlfkê@—®nÖ(¤73Ó±,','',0,'?'),(']ƒŠÔNÎ×JjÓŽe½£‚','wp-includes/widgets/class-wp-widget-media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Žã!‘•v²›2‹%©§“h$','9ëÒÚ	w§ôzœe›u#Z<ty\Zc #\Z3','',0,'?'),(']ŽÔr™:@´…I¦','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Enterprise.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„¡…6:”õö¾2kP3ú®¼','%uˆ¸MpñÚáÉ,.\0Ñ@²ZqŒër¿/ÃûµŸQ','',0,'?'),(']£¹²œ‰k2-ˆ4+ª„¥','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/public-endpoints.php',0,')@à8€Eü[Ì´_¢t',')@à8€Eü[Ì´_¢t',':Ð¢Lr—à ö`‰â„Nþ [dF°‚Å˜ž[K,å','',0,'?'),(']¥‚P·¿îTkvtŠº8A','wp-admin/network/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å»\ZÛ=>ˆ É±íl','y¯TQmU¶–zÏDŽ¯s gâ·…1^T\"ñig…I','',0,'?'),(']¥¤Ê*…¤…ÿJ–','wp-content/plugins/wordfence/images/icons/email_go.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºªjÌÙEü´H)«.½í','÷½& ôqC1QU´_.OØî3¿ÂËò1!&Ðç—Û´ªû','',0,'?'),(']§Ÿ‹âù\"}[’YÜRÚ','wp-admin/css/edit-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°5F	‚wYM.¤Ü\r!&¨-','n>ÄJìXˆÎÞãÑôÙÌ6\\CÅ°çßŽisß','',0,'?'),(']¨®²ù|iw}	oY\nm©','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerCreateError.php',0,'|JtvïnU»n%%‡Èk','|JtvïnU»n%%‡Èk','\" \0ƒèÅn)à^ïÉåÊ™TO‰¾—\ZÊ<Wßá<„dØ','',0,'?'),(']®ÔE¾4œjd)Š(\Zx+','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/LoggingException.php',0,'Ôœà-’+ÊëG‚Jƒ¤åž¸','Ôœà-’+ÊëG‚Jƒ¤åž¸','	/úÇrº‡\"Dý©5Ë¨ó‘g>@.ãñDôŽ*â§ö','',0,'?'),(']°­0»\'K0Üû\rÅÏR?…','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PackerFilter.php',0,'m„ñ¤zãz=fÌøAH','m„ñ¤zãz=fÌøAH','ó,ç»ÅnôÇÍž‚‰ÎIžƒ£6Y+îõŒ¡·d·ƒ','',0,'?'),(']³âPåŸpýÀòj“™Œ','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/nb.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-Mê¥üÑüp\0j4ùãŒ€B','L”8CºZ‘òÙ¿/B³$!¢‡ö[ÎQû=åë4çFÇ=','',0,'?'),(']¼ï¿%“´³l9ÇÕ´L','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFieldVisitor.php',0,'	:¢ÍÕÂgJÀßÄ©Ý','	:¢ÍÕÂgJÀßÄ©Ý','ß@k*â_¾þrðd…¤¹:Ûä¨»g$T¿”|&È;','',0,'?'),(']ÓõóÃª$Ó‰<þÁ¨','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òÅ›ñLå\\óPÚœÊU','c>Ñ5¨o“»Ž½Ðïð½ƒ°_°T9“L~;²e7Ü','',0,'?'),(']Øa]ê2²wÔ¢†«Úµ­','wp-content/plugins/updraftplus/includes/updraftcentral.php',0,'MJÃŸ&ÖóÖì›Èôožj','MJÃŸ&ÖóÖì›Èôožj','¹ÂÒÓÓ­vKÀb‘‹µJÛHˆÙ$yäµÎ©ŒÏ$ýè','',0,'?'),(']Øäk•ÝEr›UÁJ™Ô­','wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/directadmin/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åFrRáÕ‹ŒL?h6,i','´ö}ªáå•¢kÂšíÕE„ sJ¹d\nøêê†?nù6³ù','',0,'?'),(']è4dû9´ÀàCÄ<s“3','wp-includes/blocks/video/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž»ƒ»ìTvù®HšÆÏŒà«','Äg‡‚ÅC-ûüÇâ-’}ô¼Ðþ­	ð×ØAÿQ·','',0,'?'),(']îÉÝ#ãp¥5½œ±f0','wp-content/plugins/fusion-core/fusion-slider/templates/export-import-settings.php',0,'&Æi—LÍì!\0~ˆ¯åÉà','&Æi—LÍì!\0~ˆ¯åÉà','Hð ¬\Z¿†÷Í¹§ÒôY’×¸É?\rŽ|ýïm£V','',0,'?'),(']þ’mÌúáËî¯ä» bÅ','wp-content/plugins/updraftplus/includes/Google/Service/Resourceviews.php',0,'qVN+X–ÖÞ_ûî’†Å','qVN+X–ÖÞ_ûî’†Å','9á³M¤äÃ­©âbæ>Š’[s”¦W6‘ªô‚¥\\O','',0,'?'),('^\0Ð,8ã|kýIPM','wp-content/themes/Divi/includes/builder/module/Divider.php',0,'Îî$ï²Ù>0E‚ºI‚ÂWì','Îî$ï²Ù>0E‚ºI‚ÂWì','ÊaF°mcû\'IpÓÔç9›ˆ¢ÿX~\Zö\nÝUÙw3','',0,'?'),('^‘4îj¾|¤áIƒÐ','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ôúH*fÒä$°ðÊÓ','þòÐÆicßzÙPû1â\"Ý¢Ó›o¶TWry‹*F','',0,'?'),('^F7ìÓ£‘)²	„º×','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCache.php',0,'eg¥JëúœMÙ¢H\\Ú','eg¥JëúœMÙ¢H\\Ú','%h?æ\nƒ£Óº¼1á»E™oôš¤PÝø/®fýÝÁ/\ZæY','',0,'?'),('^½óÈe&·ÃyÔ´ê\'','wp-content/plugins/updraftplus/vendor/symfony/process/Process.php',0,'g-K“-9/™8³è’’‰','g-K“-9/™8³è’’‰','÷GQõ;ÃÊúÙH¨\Z§~«ŒÅ‡\n(¿ç=ÒÈá‡«e','',0,'?'),('^)kc6ê[÷˜£ÍêÇ~á','wp-content/plugins/worker/src/MWP/Action/ClearTransient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õ´<ÁXuÔ%šR’\rÁŠHS','uEX\\@{E8KˆÏkQ,µù7.·añ¨oÛk›Õ¬k?','',0,'?'),('^1}-ë‰«§:±¹%£~','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/PhpHandler/Info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'« ˆú+üî_¯m˜QÂÔÐ','\r°`›#§´Jƒðh+þ!©5w>ÌYåóËìIðk½','',0,'?'),('^8ÓÔêe`VÅkè÷Pkh','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/http-message/src/UriInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2-–\\Ab>y¸~ñp*£\Zs','\rl¿Ç\ZkÔ°ÌœK4G£›ðVÊ}ÒT5íOÍÖ','',0,'?'),('^9(-(Å²Åy ‰÷Ê0q*','wp-admin/user/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!šN ‚šÙ9â3nDl','r—¾¯R89ã<†;9i1l•Z²ŒQúìoC#ñY–´','',0,'?'),('^:™~®BdÈÃ}dL½)','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/PublicKey.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰Uüï\\‘°\'u®iL‚ì_','#«Ñ á>»O–óÆù”¯¨ÄBq\ruD&þ×vl=ñI','',0,'?'),('^@Õ²{\'«©_èâ›92','wp-admin/upgrade-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Õô–[aî@1.¥šQÌîZ','ätË¥¬ù£˜9{‰Ä/Âÿ„y´g1\'þuVþ¾l¤','',0,'?'),('^Aù®?^ù5\Z<çŒ¹','wp-content/themes/Divi/includes/builder/module/woocommerce/CheckoutOrderDetails.php',0,'´Ò<Ò¦K¬]*QqÎ™5','´Ò<Ò¦K¬]*QqÎ™5','Ä­µ}Ê‚1qš—6Pe«#}„ºKøotpîÛrQ=','',0,'?'),('^DžVåáÕ!o$+','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Û;‹Ð`Æòxýéá;”ã','6„4 ÛÐcÚÕ(°\'G¾òF¼ˆ€&íU]b@\"±ÛV0','',0,'?'),('^H\0õB|ÛØ4Û@zÁ÷','wp-includes/IXR/class-IXR-error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g6\"¬•íu\\\'3¼²­œbŠ','*?ÍÛ§U=Ž?¨,]¤Ú0=CÊø““ Z-†6Dq.˜G','',0,'?'),('^Uðœ.i¾ÖypGÂ¶™','wp-includes/js/mediaelement/mediaelementplayer-legacy.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äAÒVýtÐFÆ£¶‰–',' 2Èq{YÂ*lXø[qkd“–á}ÎJpê™äàÓ¶','',0,'?'),('^VRø¥®HóÊö÷)k','wp-content/updraft/themes-old/twentysixteen/js/functions.js',0,'^ÁxÎRfÁ?û´¸ö','^ÁxÎRfÁ?û´¸ö','êñ9}–¬âÊ!\' Øm´”…Ï…@€õŒ²{yš','',0,'?'),('^^‡\\òµ .Þ»Ûv\\ÅÆ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseListError.php',0,'*s½o¬T³P29\",]n','*s½o¬T³P29\",]n','æ½œn1:7?Ü·˜!þÐÕðáõÃ¢vÅÙ','',0,'?'),('^b§“]Ûÿaÿî„gx ñã','wp-content/themes/Divi/epanel/theme-options-library/app/boot.js',0,'z3CžÅ?ºÝR/ÌÏæ','z3CžÅ?ºÝR/ÌÏæ','þ[º#zéeÏ¡K¿cîzí®br;¬e†õþå„Ÿš','',0,'?'),('^d?e™ø.ošù¿Ê¨›L','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/psalm-below-3.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì[íCí=sy3ðLüÕÈ','·_ýÏo3Õt°Y¶’_o¢ò‰f2k#•‹0¾6Ps;','',0,'?'),('^dGýFƒ÷¡´—‚½´Ã%ž','wp-content/plugins/updraftplus/methods/remotesend.php',0,'·ìûqbXAµ¥-]ˆ\'','·ìûqbXAµ¥-]ˆ\'','Ï ‚(qÂ<´£‚fX,¨Z*ÑF_±5}G{ te','',0,'?'),('^gý‡2h1ï¢…$±à\"','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/ActionMigrator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w¨ÃT1í\"ÿn‘-Ð','ðd‡Ô(:™{@¯	ÍàW	j‡£¦Ž!©ô8}F+','',0,'?'),('^mIÎÿÍ‡µê½d\nG.¦','wp-content/themes/Divi/includes/builder/module/field/display-conditions/UserRole.php',0,'/0‡Þ;N/^ÙJ—;Xk','/0‡Þ;N/^ÙJ—;Xk','ª›\ZkýËT¶8B…¼Ë·Yá½Ç.WùXœ”Ry','',0,'?'),('^tKˆšæÇ>‘ƒT·xu','wp-content/plugins/updraftplus/includes/Google/Service/Directory.php',0,'ýØôY$]ÒÁj;{œN','ýØôY$]ÒÁj;{œN','¾\0<à]¶wuXÓq9þL£{-×ö\rëºŽ}“o|e#','',0,'?'),('^yG=ÚœFg;3‘Ã¡©','wp-content/plugins/wordfence/images/button-grad-grey.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•ÄRCì¿ÊTyÕý?Þ','DÞú€ÃÁÖHÙ~µ’´Ï¨¢Pº_á§{!Ê×','',0,'?'),('^|r7F\rI_®Óþžî ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/Certificate/Info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T…¼HÇ\'§ÏŒèêeð8\0','Fïã	!3Fà#Z›ÿðJÀxƒ¶æ™™™_wà!&U','',0,'?'),('^åƒÃ¯ðˆ¯+…y|Ð','wp-includes/images/crystal/spreadsheet.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5†9øÐ¢1€TËÇn¤ê','e\rC¬ˆi0ã×[¯êR¬8@æ÷ðÍG’¥ðaJNÍ','',0,'?'),('^€Í¥ÿDJÄ-¥P»Ô','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/ConnectionClosedException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rAY¿íŒBlª²Ç›êä','ªW×-_„FÇQ¨\"›Ñœú\"÷;ó˜›,º·ú10ûT','',0,'?'),('^Gs\ZÍkZù³Ì_@','wp-content/themes/Divi/includes/builder/feature/background-masks/BackgroundMaskStyleBase.php',0,'\nšåå‰ÛßÇ*2Ìž\'åU','\nšåå‰ÛßÇ*2Ìž\'åU','*È^„1Wå¦Æ?ƒŠbEy‹9@yzJr?0,‡bzø8þ','',0,'?'),('^˜—ø2¿Ÿçh¯¨g‹ï','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerError.php',0,'4È˜ìïÕz»Ç3 (¡','4È˜ìïÕz»Ç3 (¡','AÝ7 ;iÐ”pÊêyÿKMù—Šœe´ŸÐç)ºç\Z6-','',0,'?'),('^šœ‘êXÅùŸ[A¾Òí»','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°y$NXÒŸîl€±l','[ìŽ-©¹Âv5<ÛåM\ná¦Ë+B»u.,Ô5g','',0,'?'),('^šíJ~\r\\^*ò=¦‰oúA','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/MethodProxyIterator.php',0,'EêÔøW½—!±\"`h÷ë2','EêÔøW½—!±\"`h÷ë2','I±÷ÒÊ©¿dïªÏ¦/ÏaÀäÁŒ¯4P­u3ƒ\rÁn','',0,'?'),('^£Â|†Ý{„Ä]aù·\0e','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/LocalLibraryItem.php',0,'Û\ZùÔ¶Ï¶èÎý–ªù','Û\ZùÔ¶Ï¶èÎý–ªù','Nr—5áï´éØ.\\6A[Tÿ’#.ö–mw¿8','',0,'?'),('^¦ßÈœ¸Z8žãG/Qz','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/dsb.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Ì_ó’Õ¾ÓUä)¾jK','Ø	”ç7Ê£§P<.K¯ék¤Ì:i[@øè}•,','',0,'?'),('^°‡°IŽ\\RÜšï6‰','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/functions_include.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F^RÿÙ9.â>Ó­qÁN','ëý¡žw]Vlª3ö7\ZïÒüÓôb”ò¢%œa­€','',0,'?'),('^°¹ )è¦Wd³–S8¼MÄ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']åxºÕêõY˜ÍO»äÄz','xxà@pZxS¡\'æ»¹Cò°«V¸ª[öûÙöY0·','',0,'?'),('^³«°kW0Ø©‚«ñ','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.fitvids.js',0,'ÆQ3‰ejÁ<\n\'¬hÁ2b','ÆQ3‰ejÁ<\n\'¬hÁ2b','Ô%_ÖM?<<¶¶Úqu™H€A;ÒÿpNÓ#DÄ›','',0,'?'),('^´pµI|˜\0Ö_¯yfÑ¹','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/SkipRevalidation.php',0,'³Ä³öM9aâ\'›ÉÌð','³Ä³öM9aâ\'›ÉÌð','€b<Åæ§Øwöí:$·þt/×¼ÑØ¸®é³ø»@\n_','',0,'?'),('^Á±uëºuƒ¬W‘dœM=•','wp-content/plugins/wordfence/crypto/vendor/composer/platform_check.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÆzÖØ=E‘o0¯´[ò±','µm?\ZÃ\"Êgë=€0àN\"„öQ‡ˆ`¦u\'ì°ë~I','',0,'?'),('^Âr—oÈ•áù“3Â','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/nb.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^õv—@ÿÀ#<­æX!àc›','U”)bš×È;P|ý1œ©j(€–VuòQÏEHŠÌpT','',0,'?'),('^Ççñ¸äÅãÈâÇQ¯Pô','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/charmap/plugin.min.js',0,'=B¶ìŸ„‹¶P\rLöâ ','=B¶ìŸ„‹¶P\rLöâ ','Â•ˆx[žG“‹-ó90b.z‘GõÞazÚ>Êr','',0,'?'),('^Ïÿ…Â•,×7½m}?(Z§','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/NonStopableProcess.php',0,'‰žÚ‘ E\"`’	\r@Ù¶Õ¢','‰žÚ‘ E\"`’	\r@Ù¶Õ¢','…¶A^\">\n®Ñ73æB»‘À°ÛqdA\r£§!9º‰','',0,'?'),('^Ðö\\èèËpMÅ:†žf','wp-content/themes/Divi/includes/builder/module/helpers/Font.php',0,'ƒÚ\r+O¹‡5Éa™—DÊ','ƒÚ\r+O¹‡5Éa™—DÊ','+[]¾8šnµ\\c¤é|Ö~t]«#•Ð’¼þ¿¬	è','',0,'?'),('^åÌlŒÀr‰kHàñ','wp-content/themes/Divi/core/components/CompatibilityWarning.php',0,'ÚÇXé~f âbJw®=é','ÚÇXé~f âbJw®=é','-$š?ˆå²-‡×‹©LZ>(±`Ü,*D`Ò0î05½','',0,'?'),('^çö¼žÛ&e÷ )¹qÅ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/DefaultClient.php',0,'õÇEºªèôoãzO=K½š','õÇEºªèôoãzO=K½š',']´œM\ZJ…š´,ñqùÃÄ·©ñ-Õ‘îüÀ&ß8³©','',0,'?'),('^ïù^\\QóÃ=(w²î†','wp-includes/js/imagesloaded.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':Vu+sf5¿iË›ˆËý','–ÍáÕ4H‰û1˜Pcƒ¼ð)C6cýDÐaHum\Z#cV','',0,'?'),('^þøóÁ×éóþŸd“ên','wp-content/plugins/worker/src/MWP/WordPress/HookProxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ü<* ®Ð­’lCƒ\r','Á	q:‰Ç?DAäûÑ6à±3®ÍŠý›Pƒ7®f¢Ü','',0,'?'),('_°\0ßÅd •MP~ÛëD','wp-includes/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EÕBÝb{Ð\rŠ·8­','NLÛq™†ÕûLÌhöÎxâº¾K^ûAÑŠûDyÞW‘½š','',0,'?'),('_£k4é÷·!*}ˆ‚Ý„ ','wp-content/plugins/wordfence/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ‰×Ù|%þ‡*T*ú`','˜˜’ä¡289vu3’n	C2s¯¼va/Ÿ','',0,'?'),('_\nxK[Lé?¢\Z a£·','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterFactoryInterface.php',0,'4ú \\YB•ûÙÇ¶®#IÑo','4ú \\YB•ûÙÇ¶®#IÑo','šüë˜àOñ»–ÿ}BÅX“Ï:üÉ{ö~ÄÉ…¸R¼Ê','',0,'?'),('_5\rÉÍÎý8¼Í6}®”','wp-content/plugins/wp-mail-smtp/assets/images/font-awesome/exclamation-circle-solid-red.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÆÈÒ€’·¶ð= òJ\"','ÒP£žÓ„J<ŽXG#Qt‘îVi·SýŸ¯ÏõÑÛëkI','',0,'?'),('_Zu?oy“Èg}vX','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Metadata.php',0,'R ä=bÔüzn;Ú?‡$','R ä=bÔüzn;Ú?‡$','²Ù2A¢cËKð‹E’;šNLÁ	y\ny°Ò\"ti7¹','',0,'?'),('_ezè\'*(àœ#½^','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/Common.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<ÏW,±a×’QÕÍ§•×','Ò±Úz”¢ü6‡ªH qùš=‰x\Zt‘øÏ\n¸þ','',0,'?'),('_*Äâ½žLÿ0â>\r','wp-includes/feed-rss2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´­lN+î5	¨›O?','@!ë`CÊÏø*Meùêûz«j@	´@ ÞÒL°jw…','',0,'?'),('_Ì#è‹ñU1púGSò³','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z°ŠÅrt½ÂýwúÉ(˜e','¨Ò¿DÜI<õ^Èi2dW‚]Gâ_ä-+…A8óW','',0,'?'),('_\'€\0®Iþ2”´÷?•','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetReference.php',0,'…•Ó¯‡-/ÐÍÞÿÁ-','…•Ó¯‡-/ÐÍÞÿÁ-','jv6§ƒ¸›]©…;‚™²PæW–þfž.)è‹²!-Û*','',0,'?'),('_+­ƒùqˆ†é¥VŽ)Ï','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/unique_slug/validation_unique_slug.php',0,'qv;¬Æ_pÔã7‘ý] J','qv;¬Æ_pÔã7‘ý] J','…ðÓ]Ìë/)„,þˆÉ˜u`\ZÞ¹‘B€ô•ç\0a»%¡&','',0,'?'),('_,[OtT.G!¦6,¢?³','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/constants.php',0,'4ÌêÅ\ríã=&üGQˆ','4ÌêÅ\ríã=&üGQˆ','0j&t6×pWeJ¯¨wä£ÎËÛŒÃÚœ­í]¶Ù`','',0,'?'),('_7Q5/u^–¶dBèãHÿÞ','wp-content/plugins/worker/src/MWP/Monolog/Processor/ProcessProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ã|”³m—/\ZÀf”„ÔB','æ¾5ì§‰¨o’[Ôú?}Í=–Øœ~«°÷µ¾)b','',0,'?'),('_HW”sYN\"£?Èf‡ÅÐ','wp-content/plugins/wp-mail-smtp/assets/vue/js/wizard.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wƒ	qÜV2À´æŽæ','?%†L[xÞ–¯•Š®k‰/©¸¸i5‡]× ºbì&û£p','',0,'?'),('_OI)çâe7ßtc;å>ð','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Order/Get.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ù§šdTm—tHR Íª','/ž`øLhWÛÌºwÐ9)R&2Y½Û³q¦Æy¿','',0,'?'),('_WÊ·È*\'#oDV+<','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/palette/field_palette.js',0,'%„+îúel•µ¥óSSI','%„+îúel•µ¥óSSI','‰|ëkg˜9t·íåª‹;D‘Ú0Ðg\nØ+*|P	…Ö','',0,'?'),('_[wÎñ\Z9êµt÷mmBm','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/InvalidArgumentTypeException.php',0,'±‚Ú/QuÊz»ß…ØT8','±‚Ú/QuÊz»ß…ØT8','Pý|‰ŽF#ÀÑ{…umI\næÔý`RôD>ìÝ—£Î*','',0,'?'),('_\\Ò- õük\ZúA´tJ=','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/TwistedEdwards.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÖòÖ‘úÑ»‹œTY$!×','ù¦¥/Ð09„0yjW|u³\"i,»‹ÌÊòÞ’Bn','',0,'?'),('_ajú)ù2¸o/Æ©=Ô®','wp-content/updraft/themes-old/twentyseventeen/assets/images/svg-icons.svg',0,'ÕjbÌØ¢@)˜-°J Ø','ÕjbÌØ¢@)˜-°J Ø','ÆÂÌž·wºòáð\nüõP‘eÃ…R$×BþRnR#','',0,'?'),('_d1@Ì_9è¤,††p','wp-includes/blocks/tag-cloud/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':%B€¸R\n6‹ÿÌ\'J','L°Y5›æ{ÑLîIl#6MçXHïxP!\'þú+Îm\"æô','',0,'?'),('_jõð‡_±¨/ÔÌÖyÓ±','wp-includes/load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':G²—žâ€×F¸¦9³;3','ªŸÎT0ƒ\0æ:Ðj»ÕÜOv	ê8p.×Ö~±ñçms×Q','',0,'?'),('_kÈ¸ Ï Qb÷YÈ¤­á','wp-content/updraft/plugins-old/akismet/views/start.php',0,'Q°zÌ\"\'µ\0À\0Y7^kTj','Q°zÌ\"\'µ\0À\0Y7^kTj','=P¨šò=ÁyÎp°èy‚Pôÿæå*u]ÿõ«ž*','',0,'?'),('_nß%xû”5ÆÆ¡jƒnø','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/PrivateKey.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z.™1û4sÓ„ErS\'Áñ%','÷/Žnól„ÒÄx\\\'©ª£ÙŒn0¥ÞÄZ¨Ê=Fë','',0,'?'),('_ÍmÕ,³$B{F	Qå_','wp-content/plugins/fusion-builder/js/views/view-element-preview.js',0,'.›ºÈãEul<nœý–¾','.›ºÈãEul<nœý–¾','\ZSÿÛgæ<!5ª€‡	z,ÍöL4§óÔyÜ2˜5','',0,'?'),('_’´npßt]²¨iòáÌGp','wp-content/plugins/updraftplus/includes/class-manipulation-functions.php',0,'T×?‘ùªÛÿJ%è®²F','T×?‘ùªÛÿJ%è®²F','(ýØ¥ôÕa£ÕCSèg|D,¯¢2œ€žzxÓ˜þôK','',0,'?'),('_•/Œ°¢n §Mµ','wp-content/plugins/fusion-builder/inc/lib/inc/fusion-icon.php',0,'®\'‡ÓùTœ3#Y—h²ÝØÂ','®\'‡ÓùTœ3#Y—h²ÝØÂ','§8cV)®d.lÐ25æÄý¨‰»2Ñ1ÐÃLøõºÐ','',0,'?'),('_«ð fÕßÃèì_kŸ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListBucketsIterator.php',0,'ùÆÜÇ)cÄFºä_%£Ñ','ùÆÜÇ)cÄFºä_%£Ñ','`œ!\ZbeXP÷ªAÂxHÉÉ÷ÄgUb¤ÈoýÙ‘Ù','',0,'?'),('_­âB\nü~áW ûþŸr­','wp-content/plugins/fusion-core/fusion-slider/templates/edit-meta-fields.php',0,'X_an™Åq›×l$ÂKÈÇÊ','X_an™Åq›×l$ÂKÈÇÊ','%µ!íºŠ´ïŒwÍx@h6@,²µ÷»’5àúuv®','',0,'?'),('_­ñÿ­¤ô9«r/pÔ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncTimeoutError.php',0,'ÜðßECüMŠ‰¨I`û','ÜðßECüMŠ‰¨I`û','Ë8r\ZB‰xÉonÙËÂž)=Ù£còR—î','',0,'?'),('_¯ãaL1y*ëÉâ5\\5','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticNode.php',0,'Ñ‡Ë€Ka®\\‡ãcxTÝy','Ñ‡Ë€Ka®\\‡ãcxTÝy','-¢ádˆàzQ£)ë”c8ŸZ>ˆò @Î¤Sƒ?','',0,'?'),('_³ít9@² _)J=_Ä','wp-content/plugins/contact-form-7/includes/validation-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_Ï;ôŸŽý-™ˆoð/¦','àV¢)‰¡sAZ«nîã~‚sFà¤FMçdÛ)','',0,'?'),('_´]@Üç›8Û¼s÷M','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Authorizer/AbstractAuthorizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\¦že4lº/ÐÆN*','ô6m­u©µÅÝî×¨«¶mÑS%ñ¹ð@’PÜ&©µ','',0,'?'),('_µ»¡c¯ÓŽ˜­êÐáÓÂA','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkDeleteError.php',0,'&¹pËÀ	ÉàÍòN¾K¿','&¹pËÀ	ÉàÍòN¾K¿','îvu¡?>-§*/Ÿlˆ´²Ê&	–ðâü<s·Xúam','',0,'?'),('_¸ßhÎ±ø÷Å ™Ñ','wp-content/plugins/wp-mail-smtp/assets/css/admin-site-health.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïBP©›qv»Œ?þdÀ','p)…š¬L+’„Ú™¨­Ú·Æ;1œ‡ÃÞY•ZS›Ï9k','',0,'?'),('_º~ÂoÝÖ@`ƒÒƒ¬;Ô','wp-content/themes/Divi/includes/builder/module/helpers/OptionTemplate.php',0,'¶ý`ù¬¨\0?èÃÃœ›rÒ','¶ý`ù¬¨\0?èÃÃœ›rÒ','›u¤’«13ÀŠ‚äÏòF2‹+‚Ì¼HÓ¸Q}æÒ','',0,'?'),('_Ò¹fàœé³p¶í','wp-content/plugins/really-simple-ssl/rlrsssl-really-simple-ssl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ÃŠ:)^ÅReÖ¤–OÌ ','ÃÉÃªüU“Nº[\"á\ZÉß3…7²ÕZ©+÷Ý£','',0,'?'),('_Ö|œ¯T¢M^î½õÄJ','wp-includes/css/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','? ($c–êg2ËóPš¡','ÖE‚ j\ZÌ…Ë9×,{\0ÏÍ©½ãwEkñÕƒ¡ÚV˜','',0,'?'),('_Öà4ä3“ÍË=Ž“','wp-includes/images/uploader-icons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´“\\MÏÿÀùm–€','ÌpÈ×úËúü+/ÑÜÍíÇîi÷Þ!Z®Å£6úm†','',0,'?'),('_×4n\"Tgåé¨}9±‘','wp-content/plugins/wordfence/js/admin.ajaxWatcher.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NËãðç›Å¯)éôí†âÅ','Þ\'ƒv¯á¦¸ñøÁ =ª£Ç\'X¸këÏ<6YS”tÄ','',0,'?'),('_ØÇuöYèéÀôM­ŽÛ}\'','wp-content/themes/Divi/includes/builder/module/woocommerce/CheckoutPaymentInfo.php',0,'ÍŠg­;½ð+%¡¹`ì','ÍŠg­;½ð+%¡¹`ì','´~‰ÿ@4æwq©w˜…\'÷÷VÂ•–Y°æ \rñ`Ãù','',0,'?'),('_æØ3è‡t cðªT!üýX','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseParserInterface.php',0,'©x×NÎwy›[‚ÏÏ8','©x×NÎwy›[‚ÏÏ8','ÇYT rlì—QT‘\"™˜@u?«ãÕ3xŠ¬¤€´Ìÿ	?','',0,'?'),('_î‘(íC˜ŒÂM6˜9É','wp-admin/includes/class-wp-links-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F©6ÔZ3@][:…‰‡+','AŸ§D„ì±c?©®L¶ìøœÜI¡OBÁ‘OÃŸ—úL','',0,'?'),('_õ´ïýá8}Ìßœ?åŽ','wp-includes/css/media-views-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3™^øöh2Öm|FHÓ','“¦…Ëÿd!™ë\"K\Z,®˜hž¼Ñí!ò^£‰j\n©','',0,'?'),('_ûŽ2oø±ÀU¶§úE6','wp-includes/blocks/query-pagination-next.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aà‰aà„OÈëÑˆÈ»•','°˜ÿ÷•ßÊ¶Íu@ò)«²œmPÈÅç‹2àoÜ\r$','',0,'?'),('`V“Ì»Šýlµýfþ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssRewriteFilter.php',0,'P†°âúU€$ù²Þ³iR','P†°âúU€$ù²Þ³iR','JãY\"ë±…NÃ†à;k ˜Mòˆ@ÕÀ¡BÊ…Ç}Ø','',0,'?'),('`ì	\04Û#¨…ó\0ëN0\n','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php',0,'˜ÃM5^V}W¨m?Èˆ¡','˜ÃM5^V}W¨m?Èˆ¡','ßHQu»ªŠ¼‡Ÿ˜7\06­îkc–?1M²ñ’½©Rx','',0,'?'),('`Ì\n©\rb­˜äïþV0³','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Lock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€ßO	ROÖßA7¿›¡Kg','¸\\j*æ¯½úªÕêa“Y†™t[jMÎ7é£©•\Z','',0,'?'),('`ÎþÇS”`NI‹^Gï','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(€i@ÆGÏgëô®0åp','Gç½ù<š/÷14Å…ÕLëÒ5Ÿ»¸¹£œ¸!','',0,'?'),('`%­Ö½áj®±\'‡ÒPù´','wp-admin/js/edit-comments.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶LäÅõúe\nà‚t¥','¾Ç–$þúÂªrO$w\0Õý»šrÈ•Kdî¶71ßÖ','',0,'?'),('`0ØƒÊ¹¹á#Ý›)ý','wp-content/updraft/themes-old/twentytwenty/assets/js/customize.js',0,'&¾SÔaöNˆ£ýx0¦e\\','&¾SÔaöNˆ£ýx0¦e\\','\ZY_ØÂtzø)8žÊb#ª•ÑD}%]ÎëDmyÎYVœ','',0,'?'),('`Bd3ó¼ Cöj¤3šÝn','wp-includes/blocks/verse/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.¨×\ZìîÊJ¶.™c©«Öí','!ÐýwNÀ˜.v¿à­ù‘vé8[çDWŸ	$Ä_ûéW55','',0,'?'),('`\\šà)\rÛÈ	pzáö¥£â','wp-content/plugins/wp-mail-smtp/vendor/ralouphie/getallheaders/src/getallheaders.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þQxË‚¥æ~bÈÐ$Î:','\ZÁ¯Y™6„#OøSfÉRCÏÀ­\0ùªzÞä„$','',0,'?'),('`jT¨Æ;K£‚ùï','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/AbstractMessageParser.php',0,'ÒÚ²9c%4ô–k(A5«æœ','ÒÚ²9c%4ô–k(A5«æœ','Ë«ÔÄ])«L´¸ÞÐpž÷Õ²xQòx»%)ú','',0,'?'),('`nÀ­Ó ñ<¿:o‡R','wp-content/plugins/fusion-builder/inc/class-fusion-builder-dynamic-css.php',0,'SŸMÌ2³lôôãÍ¿','SŸMÌ2³lôôãÍ¿','¾O[Ù|HºOA]‹Ö—ò •‹úçì2¬š=ü7à','',0,'?'),('`ŠPõ³†ÑÎní7\0º² ','wp-content/plugins/updraftplus/methods/openstack-base.php',0,'±øçã›Ùz»	*\Z­âç','±øçã›Ùz»	*\Z­âç','%ää_Z·Ì=Ý0GÔéN^¯ßiÚ\Z¢ü†ñ','',0,'?'),('`‹ŸN2E‰ï¾®ÑÇpCè','wp-admin/images/privacy.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñ‹¦W(*/ÊE­;G{£›','°;n0|:£¿ÍèÄðý,¸2”«¶äX6V½B5yˆQ–','',0,'?'),('`ŒÇû\nƒýó†2¬ê¯‹','wp-admin/css/code-editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åë¿íö–V¡¯DBQVgF','wþÇ86=ÅÝ”—ý‡Â2é—\rD%VˆÿE5½Sø	ôT°','',0,'?'),('`‘ïeÁüxéy-‹Ð´„’u','wp-content/themes/Divi/includes/builder/module/PricingTablesItem.php',0,'Íjmo\r¦ˆÄÝÏ$u{|»Ô','Íjmo\r¦ˆÄÝÏ$u{|»Ô','0m97wOår_FmÌuûÕÝ&«ÝÙÿæ’\rK×¨ ','',0,'?'),('`’\\\\qG×€ÀÎ~Ó','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åÆ-r‡jiIÞØ£eŠb','”¥bëÆE·ÖèÚ&q¶þÿçª€*‚–‡…Èøîø±','',0,'?'),('`–HpÖˆnµ\'žð!Ð³','wp-content/plugins/updraftplus/central/commands.php',0,'eµ$˜ÚŽ9Û{ú©ƒ1i®','eµ$˜ÚŽ9Û{ú©ƒ1i®','ÃÕ zQNÚU½·1Î>\Z7§f<èñ÷‰µ$ƒ\'D','',0,'?'),('`›Â˜_x“Nÿ~~£}R','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Theme/Update.php',0,']rô`\\:° ªÖ„vSÊM',']rô`\\:° ªÖ„vSÊM','“:Ú²3J43Ø·Pâ©^/˜u—üŸÍmS—ýÎ[','',0,'?'),('`¤aŠ(Šg°ú\"„—','wp-includes/js/dist/html-entities.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úÕrŒí(ÿ%îkc[ˆNd','#(ºu0ØEmÇ&¹;óNjænÀOÝÕ)\ZÍb5ŒB“4','',0,'?'),('`¨÷fpˆ»Wö\ZxÕ\'8­Ü','wp-content/plugins/wp-mail-smtp/assets/vue/img/google-analytics-for-wordpress@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P:bÚrM±nÜOg[Ž¯','«Ýƒ­rZkÅ¿ä«=n\0£Ä·øïœZÏÂ;‹àñD¿','',0,'?'),('`«@1Fùb5–u%g°ð¿','wp-content/themes/Divi/includes/builder/module/woocommerce/Meta.php',0,'y.<í¡/!]­ã.¹âÁž','y.<í¡/!]­ã.¹âÁž','lä\\šRIÅ“lc“+Ïx§T¦)CQiy‰&úá2','',0,'?'),('`·2—Páù¡Ò2ôz‚','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/SseCpkListener.php',0,'•w†DÄ FÓ‰Ç6Ô','•w†DÄ FÓ‰Ç6Ô','a|{îÔàa[\\±ßš“çŽoÝÜ?iü†!ö”^Òô$üt','',0,'?'),('`»c0¯žÙ\\ùâë•3æ','wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	>ÂU6Æªgý³vÈf','Rë&sX$6#ÞŽ‰_£ÁÎ½í¾Jß|Äþb0Šo','',0,'?'),('`¼¨ÓÊ”WÌmó‰{‡ç','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceError.php',0,'²ºkŒthƒÓ*-xŠ8Îë…','²ºkŒthƒÓ*-xŠ8Îë…','®¶v•ÞáyžQ÷½§‰Mh¯™€þ‹b”éô©û ä','',0,'?'),('`¾¼ ÐÓPõDeîé\':]','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect113r2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2sT;=”n6+E$òM¿:','Å€©ñ0ú-ÓaD5Iù¹NÖð\'âß-j Ö“\rz÷å','',0,'?'),('`Â‘8›q`ÅÌ˜íF¹:¹','wp-content/plugins/updraftplus/includes/Google/Service/Pubsub.php',0,'±‘~šñëûÊÄèpc','±‘~šñëûÊÄèpc','ˆ&\0\'XŸÜ`?oe‡áŠ,<Ü2¥	æò¨²éYÑÉªÂ','',0,'?'),('`Â›(5Ñwö¼ðÅ!ÔO²','wp-content/plugins/updraftplus/central/modules/analytics.php',0,'óñ0»XÿŽ@Ó!Ñ–~','óñ0»XÿŽ@Ó!Ñ–~','Ï¢L¥–EM«*gõ‹XþÃ¸ýdÇ\nÁ‘@Evâ˜³','',0,'?'),('`Ä\Z#Ó«\0È*éÆn¢','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DH/Formats/Keys/PKCS1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñó¾@¨>zW‡ÃOl','gåÊ8â\0qg\r:¶n}Þêöšäª\Zí;‡\r²6¨xÜ(','',0,'?'),('`ÈgLI\n K\04Üðx\0','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserDeleteError.php',0,'µÎçËƒ’œª³ß$f','µÎçËƒ’œª³ß$f','1‹Òíÿ\r{l”5\Z(;o©øÝ,b†]hF¢*5¾Lì','',0,'?'),('`ï¯äÞî¬âädmÃÊ','wp-content/plugins/wp-mail-smtp/assets/images/email-reports/screenshot-03.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M<NN¬G5WQH¹€À(Z4','ÿÖõ\n­Å®Þ]q¢¸zZ5÷%i|³Ô\rni·áÖ','',0,'?'),('`ïÿPÅª¹)	+½ŠÙ^','wp-content/plugins/wp-mail-smtp/assets/css/smtp-admin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àT¼¤•ÜÀ&>ÎûaŒƒg','GÑ67—fË7Æ÷Y“^¶/%Ëm”¤Wú×Ä2š/Øš','',0,'?'),('`ö¦”; \"­-¹ÿÈ+~;','wp-includes/js/tinymce/plugins/media/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß#@,Ù4dGºÔM','XHx¿¤¶É0ƒÖX¹\Z³š„OG‹÷|é{—F2','',0,'?'),('`ý}+í6±L-q[©®$','wp-includes/sodium_compat/src/Core32/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ£1î`£Ø¯0›¡£Ñç','à¤qÆ–•‚×â‰%/Ýy¤g’rwÃ›‹\rËLR>=Y','',0,'?'),('`þU®2‘šmdW','wp-includes/class-wp-customize-nav-menus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gï@üVñ@ñÂ\0Ê*','ceçÈ‘OtÔšB[ßý/)¼ÿH@c^›7È8‘Ï±ž','',0,'?'),('aäü)6çï¢À‚ÑŽã','wp-includes/js/plupload/moxie.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰#C\r¡š5Ç±ïÇ’¶üš','¿èóÃIÒ9_/xÔt5šå¤à(¿.gâtT\Z}&¾°›','',0,'?'),('a¡õ´é\ZÔ£Nyrí™9','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/spacing/field_spacing.js',0,'AŸ4BÊäƒùàyŽC_','AŸ4BÊäƒùàyŽC_','^¯¬Ã\rà‡1÷×§¡œœùE¾Ett+	Iã&','',0,'?'),('a %†›&Ö5õúÔì«8¢','wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/random_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9¡É¯®»Œª^?\rê>´',')OyXÝK\'µAóÆûÏA}ažŠô’Ì£ÿ‹r-hÄ·','',0,'?'),('a½¨ÑŒ``F9b­Á','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/Locale.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ËqI<28¹.åhY{/',')7Å\'õ¯ÅYù¨§ÖúËÕ9­§\rEaÞQÖÃw_˜*j(','',0,'?'),('a)žTMWá¸Ooˆ¸Q”|Ü','wp-admin/images/media-button.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²¶Ãã6@pè’z^yeóÎ','_\ZêúˆýòSj×–Y ½óðè•V¿ZŸîGenç°_','',0,'?'),('a.IýŽcÈtRŒÛs.¢','wp-content/plugins/contact-form-7/includes/controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ÛÉd ³¯‘¡l\"Ò}','O}ÜÁñ¡mÓFç­Œ|Ãcóßåb8E[E*)Ëîƒ','',0,'?'),('a/þêG¾tTÄîÊC1l\Z','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ¢ÌGF˜e}*P%Ú¸˜z','Kp‡È_gçÄ¾	èZ¿zy\no¾È)½f‚©o','',0,'?'),('aA±á >\nj±ÀWË1x‘z','wp-content/updraft/themes-old/twentytwenty/inc/starter-content.php',0,'ñ\'ð6…é$gÒª2Ž¤Øá','ñ\'ð6…é$gÒª2Ž¤Øá','+!†¥×¸á²ÉÂ€4‰ˆýaÚµ(‰ÓN.Gãé0','',0,'?'),('aDZ]•Á¹õÃÝêF','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Scheduler.php',0,'T§ÂÞLFç\ZÕ·^ÜÝÚ½','T§ÂÞLFç\ZÕ·^ÜÝÚ½','—òP‚¬\0‘•áwkÔRtÌ›o(-ß¹‘Y¶	*ž˜íŸ','',0,'?'),('aR¶’€Á÷þ\\ÚR3','wp-content/plugins/wp-mail-smtp/src/Helpers/PluginImportDataRetriever.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©ïƒ_ª¥ÚÕ›}Ü¦³„','MR-![”\0<ûn}ZKû\\Ÿ¬¨ÌÎÂ\nøMn|¶²','',0,'?'),('aZ“cÆw\\ÑD´…-<','wp-content/updraft/plugins-old/updraftplus/includes/Google/Cache/Memcache.php',0,'–S‘ÊG5ôäöÞËï}r+','–S‘ÊG5ôäöÞËï}r+','ÚÙßÁüt¼!{y‹	ˆ ]îÏbF6\0È¯ÚdyÈ¤—y','',0,'?'),('a\\c,I\"5TÍ±#Ì‹þ','wp-admin/images/media-button-music.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4^&$oÃè uf&ô˜','èwWdÂ¼8PœF6êA½µî×Ü´´to-ÖÓX\\‡þa$','',0,'?'),('am8”ð!n(”ž·¡Æ¤å','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Event.php',0,'²“$¶Ÿ”1æƒe)òÜ','²“$¶Ÿ”1æƒe)òÜ','%\\ôfÝîª’‰m-”nC¡í5ÉA¥ˆèÄZ9ói\n','',0,'?'),('atV—ÙéºÈpþ~ËÒŽ‘','wp-content/plugins/worker/src/MWP/Updater/ThemeUpdate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒô‚‚‚Àí e¿ÐPr','1ª±Vÿc©‹ØÁÞl7\rEF\Zi–ƒÂhøW¥’F','',0,'?'),('a‚w™UÌð\ZTzºK„','wp-includes/blocks/post-excerpt/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0äá¤)\0Ð¬ñš/o','F·+hš•áªp³”aÜqÃ‰ÈFbÂAÜ3i÷<ÂÖ','',0,'?'),('a‚äÜ.~Nr$d÷\"JÚÛÖ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingContentLengthException.php',0,'„½°£’uë!ë\Z/uÃ‘å','„½°£’uë!ë\Z/uÃ‘å','³QsÇ¥©Þ|‘Í€©jT¸2é£÷&˜Î}Ä»j¼','',0,'?'),('aˆ\'Â[˜üÏ~ùpÀÍ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnError.php',0,'Õ‘Ö\\ë:ÙväñÃ¸¾','Õ‘Ö\\ë:ÙväñÃ¸¾',';ë¸YúŠ]]ñ0Y¡2hiI¥½ÝT§¤nH÷ÌRÚF','',0,'?'),('aˆÚaù÷QêöÛŠî® ','wp-content/updraft/plugins-old/updraftplus/central/listener.php',0,'ó\ZYþ_yâ$eo¯//zYæ','ó\ZYþ_yâ$eo¯//zYæ','Eå©37ý¢ê½¦×Q‰²ìü×°¸¶Ë[W²aY?','',0,'?'),('a™m~ZúÑÞ\'b»Ë\r','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/MontgomeryPublic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ3Q¯ÙZYt:Ô¥çÓ‹‡','AwŠ“	ÿ_¡Ü].N¶ïiTå˜û4u˜Æb','',0,'?'),('a§?£ª_×Ë¢¾Ð6j¨ìX','readme.html',0,'\\_²ü’“A3öv«AEyµ[','\\_²ü’“A3öv«AEyµ[','\'1\'“¼Q}	$ý°v^ß„[oyTGÁI7Hgñß','',0,'?'),('a¨	jbñš×¾JØ[¬á‡','wp-content/plugins/fusion-builder/inc/lib/fusion-library.php',0,'‰Töž$ÝÍ)B58ƒÒÍ','‰Töž$ÝÍ)B58ƒÒÍ','ÎãÄcQƒ2•·ÝrÞðÝé?´Ú¤	MuVo;m6BK','',0,'?'),('a­™¿tä½8ä|ïw(\Zä#','wp-content/plugins/fusion-builder/js/views/view-column-nested.js',0,'¢Žq“ö%O›\\ü’:KF','¢Žq“ö%O›\\ü’:KF','·K\"”ô£]U„æXdI²²æ¾Æ‚_t—Ý\ZfgÏ','',0,'?'),('a®‚¤‰³çºLD¦ýd','wp-content/updraft/plugins-old/updraftplus/includes/Google/Cache/Exception.php',0,'€UørË*v•ÃàOx«qf','€UørË*v•ÃàOx«qf','K›W“ñ4ƒ&]­‰˜ËâatpGÚÁhÎ\råœ«•','',0,'?'),('a¿J”’rÓäÝ&Æ-DÝ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U¦ªoç}S}Á–8.','î$®Ös¶ÓôˆƒìÈ?;f¢Ä =`\rÙ	ÞÄ&¹«!','',0,'?'),('aÆÅƒÉû(màEBýlÉ','wp-includes/media-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å0@$N¢ÍgXX:Û=8','qÉøž\0	×žïCÜ9lpy¦¥6¡u]ÅkûüuË9Â','',0,'?'),('aÉcµCH\r…‘=l@Ä¸','wp-admin/plugin-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$ÑDÁÁÕw°oíã©}±D','	eˆS‹\nyp|Yÿ™*hÎ.ø¨¸Ñ½â¿žðÊ†X','',0,'?'),('aË“Cõ¿Ügg²ÞCS','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/CatalogService.php',0,'_7:-UMkJÃªeŸ','_7:-UMkJÃªeŸ',':Acý\0ë„ºÜ>ù€Ô +Ú)º#8ÁóŽ9Ie','',0,'?'),('aÔ‘KÐ×œÄ§H¾-~¿ê','wp-content/plugins/worker/src/MWP/System/Environment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8óÏ••À™¼˜Až»;Ÿ','·Å÷sþ\'©º	2Qk“Ó€=¨ã5¥Óêù†J‚»Z','',0,'?'),('aÔçˆÑG¦¥—j™>Ç¼','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/AliasFactory.php',0,'Š¥\rŸ¦õ“UQGjD5_;','Š¥\rŸ¦õ“UQGjD5_;','²š•Ìc/F;gG„ß}ˆ”*RFÙSQÉ¡Ø\\ßßÎV','',0,'?'),('aÛ¥%1LÑ)à™Ácós','wp-content/plugins/classic-editor/readme.txt',0,'¹&£›&ÆÞ•Õtäp­À','¹&£›&ÆÞ•Õtäp­À','Éwx¯5î[H¾\\?g½cº´{~²â\Z‚w–lÞ','',0,'?'),('aæaiçGö¬ˆ}ïÞ\Z ¹','wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>­ž\ZÚ3V|QNy%#âx','Æ‘î¸Öúÿ™§«k½>öÿš6Wnaié\nß¶°É','',0,'?'),('aû4s¶ÓP078•!','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/EventSubscriberInterface.php',0,'ÔÁþïîd¸TÌšã›úd','ÔÁþïîd¸TÌšã›úd','%ÒÒUqè·zÏ4k·41ØŠbétD€ªF†yÒ','',0,'?'),('aÿÀhªLš\\lt¬\0}çHh','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/MediaServicesSettings.php',0,'“5ºþ#$R‚{WªöeØ','“5ºþ#$R‚{WªöeØ','÷pYad&}dy\0Æ6«\n2û*‘ö§Ê¯éá©÷š','',0,'?'),('bèåðæ´P[½€ÛÕå','wp-content/plugins/worker/src/Monolog/ErrorHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åß¬QG)Hï¿æœ%ñ6','§®D½•ètv¹\"Õ˜9-„™äAž”O	„Tš——ÿÐË','',0,'?'),('bDËQ9É2\0f¥õ®','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/AbstractHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|°/À+F„¬þ–¾›4¦','ueÏik†	-÷±½ ðÚ^ºÑR¶	¼c‹µ}ìÑ&8w','',0,'?'),('b\nÍÛ‘ÏŸA¹Ì`ÑVD›','wp-content/plugins/really-simple-ssl/assets/icon-128x128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\n™©\'gçÏ]Æø{;Ýâ\'','‚/˜‹Ì\Z9á›ãÚ=ú–ue#†ó€á8Ö*¤e˜‰Œ','',0,'?'),('b4ÁGaHëÉ\\:WƒE³','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Utilities/RequestSigner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°¼Jž\r	èLcÉî€õª¿}','/€ï×Ï(Ú¸J9Ë—¨5$Èçtñh÷4B-6R‡úŒ','',0,'?'),('bðlqÃ%ÖyµèÖüÏ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/class.fusionredux_admin_notices.php',0,'D–ö•ÂÉa¢”@n~²\n','D–ö•ÂÉa¢”@n~²\n','øagG]!‡]Ê‰å4Z-÷ h$Ó®	§;š-ìZïPk','',0,'?'),('b!sE˜žžÝ‡?¼=bå4','wp-content/plugins/wp-mail-smtp/src/Admin/Pages/EmailReports.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"&²keÉËD¨ ˜ë\0M','c1¡6µÉê¨U9D-ž	ö	Ênà&¿ÂF8','',0,'?'),('b!÷/µ?Eš=ãÑ#ó°ø','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<4ñþÌ•êÖÃ‡S§<',' y³/ä|!Ã”‹h©ß/`BäÞ¥ú¹wÿ£…íø0','',0,'?'),('b<S™˜›KÄzÛ;¦áK\n','wp-content/plugins/updraftplus/vendor/composer/autoload_classmap.php',0,'ß¶TZ,p¶½’j{ë','ß¶TZ,p¶½’j{ë','J¨ú¢-Ÿ»FÀ i%ž,5tƒ»zÌånÕo­æ÷¡Î~','',0,'?'),('bA…Ë*ÍC˜ü‘Ks','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/el.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tl¢d}el­ER¤2•ä€','kþ>¨YŽQÎ2©ÜF™ìƒ³/,¥J–ìœ~e','',0,'?'),('bD8\n*k&Z>ß]`Éˆ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/PrimeField.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âYÇµoV2«LÃÖÊ„','3àûs¡÷®áè—“0‹}þð„ˆX|¶Üœ›y6Y”Ê','',0,'?'),('bQIc¸‘Ž>n$!ZYI','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/HostNameUtils.php',0,'­:sÁ¾ ³×¯nbã•','­:sÁ¾ ³×¯nbã•','Û¾™×=È£Åä\0ß0I“¯,xˆæC”&“þß)Ýà\Z','',0,'?'),('bYÆ,¥°Ï¥YªrÛÑ;¾','wp-includes/js/crop/cropper.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ky5ôni*M(í™','ôÙ¸¸T†äÞO“³ÙwL¦y=}ÎgTlÀº±¤½÷','',0,'?'),('bZPhâ)õÐçZ,T','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/PEAR/Exception.php',0,'Zæ­ œ¯;w*/îy¢ä\\','Zæ­ œ¯;w*/îy¢ä\\','4Ö³¡|Æ©•½Ý\0½ÚŒKC’z¡<#•ã´0ÞiÊ','',0,'?'),('b\\58#7›¿U‰','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/switch/field_switch.php',0,';šcåF	1Ô*3j#',';šcåF	1Ô*3j#','€ôs‘*ñß<BÍ|Â’²	Õ½©å„ß“Ûð¼ÿ','',0,'?'),('b]$¿ïvnŽ\rýE','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffPlugin.php',0,'­RÊR…Í”%œ’¨©¶ü','­RÊR…Í”%œ’¨©¶ü','¨:rBm.eFF\nc´R”/”\":›v5­_Þ#ÁL£V','',0,'?'),('br_•ÆÇ?xb76oÒ]¼','wp-content/plugins/fusion-builder/shortcodes/fusion-social-links.php',0,'Óä+t“PmVù·¬âŠ','Óä+t“PmVù·¬âŠ','Ÿ’Ô×?\ZÉ®%&5R?Œü]‹\0_ÿØyŸ»L(#','',0,'?'),('bs=²„È‚C°7ÇŸéõr>','wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X\0«JIØ\0TSË>ì(ä','KH\"f:M4Æñ¼-Kïˆv¿aðÂ¾@Ð‡¦û!“è]','',0,'?'),('b{aÕ[¿Yc#:[µç}ò','wp-content/themes/Divi/core/components/api/email/MadMimi.php',0,'âæ-Ä0ö¶{=Ÿì8<z','âæ-Ä0ö¶{=Ÿì8<z','ª˜àX~q|CÔ)d(õŽî­‡ R¯PáºŒPr|','',0,'?'),('b|úK¼˜U‘ížÐ[Fm','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedContactDetailsStatisticsOpened.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m=sA$ú<˜xOê\"º','û¬¥–H·Fù²4\\¡¸\0¸Á¹¬ÒEÙ8(Þ\"ê#ç%›8','',0,'?'),('b‚FæÃ¿çDËÿ\n;+™','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/InflectorInterface.php',0,'¥uýè›õ3UGTè>¸-Ð','¥uýè›õ3UGTè>¸-Ð','Møíi\Z›ŸÍÑ3­§+ŸòÁŠðÏR}qø¢1IA','',0,'?'),('bˆ’\nýï.óAæz%Ø','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/FileNotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oWòÑaÝŒŒ(Ž8±','ccôLñÄ—HæÅÂÎ™žì`•×“wwÍÕë\\Ëk\ZÈb','',0,'?'),('b•Žp=Z\\ø²QÚ¿À‡','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/TransferStateInterface.php',0,'zR±¾û­V³6#ù.1¸','zR±¾û­V³6#ù.1¸','\n÷ø»*¾Ñ\r•Õâ®8‡<YÓe}rÿ™&Yî×','',0,'?'),('b–m™5›ƒ>B‘@åX€Zû','wp-content/updraft/plugins-old/updraftplus/includes/class-commands.php',0,'Uµ#ª¹2Œå/(<¸øÐb','Uµ#ª¹2Œå/(<¸øÐb','ÏTz›È&˜\"²\r_nTÊ ‹Ð}´È¬Áb¸&Ì¿ãî','',0,'?'),('b™=uØfF/íÆ!ºÍ¨ƒ','wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-status.php',0,'?Í´Ñ–¦I¦»ŒCãÊ','?Í´Ñ–¦I¦»ŒCãÊ','Vd6ÇÌ/4þ(S#ú`oÓû¦™â	ŠÔcsý','',0,'?'),('b›ßFëÖXñOé!,PCXÊ','wp-content/plugins/worker/src/PHPSecLib/Crypt/RSA.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']os›b£ŽR]a£.BílÔ','ýaVî•M®ârŒ€ŽPÕšô`Z«— K›ËçÒfÍ¶','',0,'?'),('b¢ß^/ábJ8…Õþ\r¡½','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/fi.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡É	Ð-µÿ%Jû>Vî','Æ,<ÊåŠF‘È˜Ûcw*Ý¤\0hfx}iÁØ8šŽ','',0,'?'),('b§;J¢/‘ŠâÈRPN¸ß','wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request/Listener.php',0,'#§}ÇÎØÉ–Ð0u','#§}ÇÎØÉ–Ð0u','>4µ˜ålþ”>-\\dÓŽfÓ·5ýï.1A´_*sLž¤','',0,'?'),('b¯/Ê/)èAö1ßõ¯²','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerIpsError.php',0,';ƒRcP©ÑÆ\Zÿ›ýMÊ',';ƒRcP©ÑÆ\Zÿ›ýMÊ','zŠEFîÞØEÅÔòÉØ–ûHÍmŠ¡‡Íˆï','',0,'?'),('b¯Mþb\nïE\röoMÂ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP160r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ðïo/z+¸ÃÅ\Z|«Éêw','Ñ@IÏrù8ÔR¾¿GûÓžÝÍxJëÓ½rÑŽƒk&Åó','',0,'?'),('b°M|æ¼ŠzO_Éšã3','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/HttpException.php',0,'÷‚Yê\0lñeÔ„Š1,‚}\r','÷‚Yê\0lñeÔ„Š1,‚}\r','dIÒæÞÁ± Þ—5”Kª•)Ðñâ7?ùOJ\"jU‹<K','',0,'?'),('b²é¥+eÖz?ÜÔMÅ=i','wp-content/plugins/wp-mail-smtp/src/Admin/PageInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“&¸«Ð\\:j\'Þ¸¾Ò8r','R]ý(È¨F±0fºÈæˆ¼lY 3èL9[Þˆ_†X&a','',0,'?'),('b´…´#ô¼ÅS^ˆiÉà','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidBucketStateException.php',0,'ÎççÓS=I\ngk|','ÎççÓS=I\ngk|','<ÁáDª…»7ÖOÂ‚‰Ö3ý½€¹þÿyQ1­š÷','',0,'?'),('b·‡¹òx%ð³rÍöqü…','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/HashableInterface.php',0,'ZaÞ<Ã£_š¬W¡SX','ZaÞ<Ã£_š¬W¡SX','µÎ,^EvÇ+œ”èŸ¸¯–8M\nÿ“n¯ý\0A»–“ø','',0,'?'),('bÃ™ÔÂ6Ðû€,º/=','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/SeparatorFilter.php',0,'ˆkäÉ½êFÑ[¨ÓÂ±×','ˆkäÉ½êFÑ[¨ÓÂ±×','Ö^ýðúû„M	©m69¬¯ŒŠ«Ë7J4cªÿuô­','',0,'?'),('bÊ¥ñHzfW˜ …­gw›','wp-content/plugins/wordfence/lib/wfSchema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oƒ@£öÝ©	ì|…ÆÙOš','g±v…ž­ÉK%·ÃoiS‚7Ÿ.ï]ñsiH±±2:p','',0,'?'),('bÎ cºä		»ºGæM','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Computeaccounts.php',0,'ðÜ;º¤M>ÖÆß	3þ','ðÜ;º¤M>ÖÆß	3þ','Q‚A%ør˜½tz}ê~ê‡¬p5ø…3MnÖÞò2_ë','',0,'?'),('bÖûéZ:ßL[‚öŽÎ7','wp-content/themes/Divi/includes/builder/module/woocommerce/Description.php',0,'M³8d=¦5HW,œ8Fø','M³8d=¦5HW,œ8Fø','}³×ßâ-ÿÜULÊÓúÌõ¯ÓJÀâ\r‹\\ûúl;','',0,'?'),('bà”û¿”ÒŒ &é?¬{','wp-includes/js/customize-loader.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³-û¡À·“#Ø5&*šo¢','Î<ÅŸ;\r#8²+=dKÞèÜFê¡»ÀS)8ž×†>]’','',0,'?'),('bâ÷+Æ´ÝŸó´3ï†','wp-includes/customize/class-wp-customize-nav-menu-location-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–”U!ÜÝös^–7ÆL',';ôlÏ“Žb^¸ÅäòÙ0ª(†@ï®L§#B£¡','',0,'?'),('bïá¨\rûd™A^Î','wp-content/updraft/plugins-old/updraftplus/includes/updraftcentral.php',0,'MJÃŸ&ÖóÖì›Èôožj','MJÃŸ&ÖóÖì›Èôožj','¹ÂÒÓÓ­vKÀb‘‹µJÛHˆÙ$yäµÎ©ŒÏ$ýè','',0,'?'),('bñª¥²KÄþ+x¹€ šwF','wp-admin/css/site-health.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è$fÓ*™ö£¨Á´@•Y','“ã°³\\0â|V†FQTß_J‡ƒKãk:GêÏ×VÇšˆ«¸','',0,'?'),('bôŸÉêÿªe`øjýÂ','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/GenericEventTest.php',0,'#\nwåÑnÏ¹Ð³¶x','#\nwåÑnÏ¹Ð³¶x','–/ÇyŠ·¹”|“Z`<_ˆ»\"ÑÞŠÉ©S','',0,'?'),('bü•_‹-Y›JÎÊ7Jk','wp-content/themes/Divi/core/components/api/email/Feedblitz.php',0,'`%ÛñçPÁÄN7Žû÷N','`%ÛñçPÁÄN7Žû÷N','ï?À-\\ÅÙ=×¬¹$óºˆö…Æ	¿	¶!Ü#ŽJãÿß','',0,'?'),('cé¤Ÿ¸´(Ok1‹!Í‚','wp-admin/privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±Ô9ÜõGqŒª€ý¿°','«j\Z%xöBŽ]{LÖ¼]*©¤ØÄ¼1IC;.Þ6õV','',0,'?'),('cÌ¼n8|\ZÓà$°ô±','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Response.php',0,'lÉ	”\'’C›•Ù½Òä','lÉ	”\'’C›•Ù½Òä','ñ¤­ÜbÎ4ÌçdÑ–1ù¤K­\rQfœ×¬lãL‚HÜ“','',0,'?'),('cpðP#»E\n\"Œ6tž','wp-content/plugins/worker/src/MWP/WordPress/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('c§4L]ôËž®·Mc','wp-admin/includes/class-wp-post-comments-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú@d©B½¸#­&&»¦','{¯Äbkö†\r»öÞ}ñ’	{=Öú×\\Û=6ã`l¾Ô	','',0,'?'),('cÂ‹¥¸ºp	øPU3/Í','wp-content/plugins/wordfence/modules/login-security/classes/model/request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Ü®Mª÷‹,~/âøér','F;ôôÌW]¬Ï&ñ¸åz~o\'ð/€qÌ+¸¨','',0,'?'),('czç<A ží­´6c‘¯','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParser.php',0,'~¼pÜ_€Ð\ZGr ›4]','~¼pÜ_€Ð\ZGr ›4]','K6ë#¹o;Í–Ò—Ù	Ëï\Z‰ë‹ç]®ˆ8NkJÜ‚','',0,'?'),('c Ï?Ï®~¡]àÒîÙµ','wp-content/themes/Divi/core/components/api/email/HubSpot.php',0,'úÙùl°®ÿkWrqa&','úÙùl°®ÿkWrqa&','¿Ž¼C-¾¢Gêd®þZ•ö2©sc]=s—#±bµ','',0,'?'),('c$á\nžÿz¢• Xõ9y','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/SMSCampaignsApi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ï.+Æ)W¯~Aã©Îƒ	i','*²º,^!§ÒÛ;jÍõ@÷I‡ÇÔ¸zw–C2¹','',0,'?'),('c%¼;8ÛQVWÆdÈ‡õ:','wp-includes/blocks/paragraph/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e|’LO4êòa$QDo€˜','ÁÔWß +ÁbÛËÏNÄÔÜ¶ÉÖ\\‚S†u(}’Ë','',0,'?'),('c,½…°[xÞ«ô3¥\nù@','wp-includes/js/jquery/jquery.masonry.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í³@`–ÿ€&n|}A‘†','ö\\Û™§¿áŠã	}M’gß ¿$ý0± [äÝåB','',0,'?'),('c42j›§ÎxåcìÄd','wp-includes/Requests/Session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wÓóÊaóãã¾ÉÖâk÷a^','Ô¡‚*IbW]3U…ýL“üÖ]Tè)”!îEÀAq','',0,'?'),('cIéMPˆë¶×\ZÌÈê0§','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP320r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','È–ö‹õ,1 Š‡´‡¡','FûÊ¦8 Š¤<ÐûË/oÚp«øì¹[ 19@\\\rÎ','',0,'?'),('cKû½KÓ{ÿ7â´”)‹Ó','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjFetchError.php',0,'läãˆªº{A¾‡(F','läãˆªº{A¾‡(F','èôÌ\0	|Ûùßðÿˆæ‰­˜+•uP?ÃzCÚ¹†’×','',0,'?'),('c]š¹#?×uÍ\Zîä­‚½','wp-content/plugins/fusion-builder/inc/importer/js/fusion-builder-importer.js',0,'1µ?ç„?=zÝö¹e<]µ','1µ?ç„?=zÝö¹e<]µ','9&«Ú7n4PE{<«ÿÁS*öL_IÕB‘úãë`…?æ','',0,'?'),('ca•Ùuô‚Bûz#','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/DownloadSyncBuilder.php',0,'D1È<¤—€¼H”À-¦Z','D1È<¤—€¼H”À-¦Z','Ø$ ·oKnèbñ½SŒº>wllñšÓ¨$3Í6\\','',0,'?'),('cc!…BþŒMöDd®§y','wp-content/plugins/updraftplus/includes/Google/Service/Calendar.php',0,'žùTŒmý¨2Ôóºf','žùTŒmý¨2Ôóºf','¨M¶„§=¯]ËŒ\Z„gÑ”÷TÂ‚ŒÂ©k‘p#ës','',0,'?'),('ckey7ñêÍ•Çs,‰©','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' \0.ÄFßK1H»Že2éî','ŠµááÜGªÙH€{\Z\'Ùf‰å2îy“.»Pãý','',0,'?'),('clËôhñ°J>8¯MäþË','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/AssetWriter.php',0,'BÃÚI€’b ^w÷¥ÝFã','BÃÚI€’b ^w÷¥ÝFã','z”Þë£Eky\néE;1Ôó]GžŸ¡´åøüåmþY|','',0,'?'),('ctÅ×©’XîÙ¾ÞuÛyv','wp-includes/blocks/image/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²½	]˜4:@­ËÛ<1}8','Åû#Êeb[Qôù¯|¡hdˆñ4=Ó!ö5FÑÞÊ—','',0,'?'),('cxåÛÝ8SØq¨¹÷','wp-content/plugins/updraftplus/vendor/symfony/process/ExecutableFinder.php',0,'ËIÇZ§T7¶ÖÚ@ïÇ','ËIÇZ§T7¶ÖÚ@ïÇ','…ôÆ\ZÄcõ„ÎÀ²	ï×jek~·à —ŠûvÓe','',0,'?'),('c€Ié%-š«ÐÍþˆô\nª','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/ServiceBusSettings.php',0,'§œEI&D4ÿ„7s\"$','§œEI&D4ÿ„7s\"$','£§×4]ƒá­Ünõÿ7ËvXŽ²Ù#o=<ì-­','',0,'?'),('c„d+¡gÁ×›öí˜I\Zs','wp-content/updraft/themes-old/twentynineteen/page.php',0,'»:û3zƒBä™£dð+','»:û3zƒBä™£dð+','?þ ¯¦Ýà¤«Ji°ð·mN‰ã\rÄý©”<º\Z','',0,'?'),('c“Ë¦*×ï\0Çš‡ä%m','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/DomainException.php',0,'6e–äûCß\\XU=Ö','6e–äûCß\\XU=Ö','¬»ùK‚<+R}Š±Ê1•#ëËÜ4¹°Îî‘·¬R†ù','',0,'?'),('c•Q€ÚiÓÜÉàæQv','wp-includes/css/dist/editor/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½Sòßß¡Â€_lRUr','¸z94³»œdßÂ¼ÐÄ[m‘Â€göA®VŽ5é•DÌ','',0,'?'),('c›­Hï¼ŠhÔËÅOh—dS','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Serialization/XmlSerializer.php',0,'êÅ´÷‚W1ëbi~’$D…','êÅ´÷‚W1ëbi~’$D…','«ºÄšP›C7C¬~ÓŽÔ/µX=:5ªùÞ[Cá´‰','',0,'?'),('c¨\'Ûª3H!S iÀ ùB','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/AutoForwarding.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eú˜ÝèÔÔ“ºÔbØíh','éoå0óuhóŒÈmÁýôWµ¥*¯¾^î¦Ð^ø:§™®','',0,'?'),('c¸\Zâ%¬¯œÂÖ–ÇüÒ','wp-content/plugins/updraftplus/includes/Google/Service.php',0,'Æ£í¹yu\r™¸XOÇ÷N,','Æ£í¹yu\r™¸XOÇ÷N,','‚cŽ5©r¡íIe¬NZöå71A\"q`ß%”§»','',0,'?'),('c¼pà¥¯FÎ;ÉØOšÄZØ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Generator.php',0,'üb¤Ä<ì§„bblR\'','üb¤Ä<ì§„bblR\'','z÷–‡,ó‚M=4Þ!´F¤­ù¾.K8ƒlLFQÂ\Zà','',0,'?'),('cËB®¢¸¾YUf6ý–T‹z','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacEmailContentEvents.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y™§;C³éy.Ÿœ\r›p','ïËÞ?V/Å$^`”â&çôÁ¹¦ÐB³qŒp]§“nÓ','',0,'?'),('c×m‘8ˆë˜0t}¦²äïB','wp-content/themes/Divi/includes/builder/module/field/display-conditions/SearchResults.php',0,'å`Í0Ï½¦Þ\\•¡6œ','å`Í0Ï½¦Þ\\•¡6œ','¶†·füÝÊÊÍ,j™ñhéÛ´P¢µÖ8Y:|','',0,'?'),('cáçS……Sá@\\Ñì„','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/CDNService.php',0,'Ùqƒ*À+\"Á2ƒt','Ùqƒ*À+\"Á2ƒt','<º+ãy´Ä‚É‡@ºn¼q@Bà=|J«•8C³&ãŽ«','',0,'?'),('câ–Úù#Fp…€B\rq','wp-content/plugins/duplicate-post/js/dist/duplicate-post-elementor-430.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„ÆiIQJæªoüzwgÈú¼','xyÓê×HGÕÖcú\r¢Ì‚Ï\ZJÝãŽFG‡áT-','',0,'?'),('cã£.mhZÂ“üªyŒÐäG','wp-content/plugins/fusion-builder/inc/lib/assets/fonts/fontawesome/js/icons-search-pro.js',0,'Dxˆ„RHº(±±Ô†\n','Dxˆ„RHº(±±Ô†\n','?ÀšŸåF÷²-«¹·Q[€éšÛúhJa}¨«Â§N','',0,'?'),('cê[kþƒW74ì@—ùñÐÖ','wp-content/updraft/plugins-old/updraftplus/includes/handlebars/handlebars.runtime.min.js',0,'âàÎ¿¢åÆè¢aº&Ð','âàÎ¿¢åÆè¢aº&Ð','(t#¨ ]6ê.íëëÉ,ZZÿâ,©Öhà´Ž½]','',0,'?'),('cñc©¶º«ªÀguÎäÌ','wp-content/plugins/wordfence/vendor/geoip2/geoip2/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ƒï–8e_ÈTÝÃÆ½W','Ý¬ïISôP\"õa•» 7JŒ6çQSv„“ô_³y’','',0,'?'),('cþ†[b]ËÀþÝ½‡JF','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§I]˜UÀæ	XÀgƒ¬‹¾','þTÂÏš-Ã1 [ëž@./ió’¶¦”iÈÅqÙë0˜o','',0,'?'),('dõå:w¤îÐOÍÐ†','wp-includes/ID3/getid3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘!N\0ž[³5·Õ«k@0','Bë#®úûúL¤fWáùº˜€š”˜>2ÒnTÆ„ïÕ','',0,'?'),('dãì­1íìµ“-…;O˜ö','wp-admin/js/custom-background.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”óPÍA3†Ã KÝ}Ã›ž$','4hN\n×Ó:QÛqXäz! ÞÅiq°^sYÄ„ä,i€','',0,'?'),('d|²í:gÂ]Ôl<','wp-content/updraft/plugins-old/akismet/akismet.php',0,'hf´?iŒ0›X?†Rz(','hf´?iŒ0›X?†Rz(','‰Â}š÷*B+¼ä®vÏ˜D-á@Atw‘›r³¤ôF‹N','',0,'?'),('d¡d!\n\'€¸0Ê+¸','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/XmlVisitor.php',0,'ó/—\"ƒWû.r»`‚xD','ó/—\"ƒWû.r»`‚xD','|G7Wß‰ËÉ\r	)NŽÇJQ`J¸}Â›¸×g\"Q','',0,'?'),('d!B“dàÖ\"2)±D‹','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/fusion-video-general.js',0,'2x=ØÚ™|üÔ7Õ4¨‰\n','2x=ØÚ™|üÔ7Õ4¨‰\n','Ç´\0ëcGA\'¸‡–\\öJPäëoUºXÝµJ®Ë','',0,'?'),('d/‹Îûxþþ+jÿ:Äd','wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/cast_to_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y)zŠ‘H/ø„>ü','Öœ_â[2(y+9}QªIï•*\0Aº¡\Zà»ÊfgÆ>÷','',0,'?'),('d4€JLoÉ-­Þ4áNOã','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ListBlobsOptions.php',0,'p;dI‘fÇ•UBø®J','p;dI‘fÇ•UBø®J','œ´¯ek\"z@‘ÐQ^ýè´ù?™“Ûè!\ræÇ`;Ï','',0,'?'),('d4SG$ñZ¼Á­É\'','wp-content/plugins/worker/src/Monolog/Formatter/HtmlFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fàQB)L©ÎÒWMg½š','A·ÌÕ5óÚ`{(\\yÞ“š’R¾3Âxí•7m£L-','',0,'?'),('d4i•VÃz×.Ê!à~','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/PostContactInfo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QàèaqT1vIìDºl','ÕµÜR¤ª“|¾cÎ¨?:L~ÂŸ},!¥^+','',0,'?'),('d?qÀvóp ²3i†½','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/mk.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Å…PUÌÁ±^É*¬È&ý','EçÌã8Œ˜ç‡b˜êùôGEù•K xyß­°ã®âjª','',0,'?'),('dCC—¯´gbš.­c‰‘D','wp-content/plugins/worker/src/MWP/EventListener/MasterResponse/LogResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\0‚kh?s!™Ù‹Öm','=/0+‘\nÌd‹2}Bs„-¿÷ê;ç8òÖÙSBü“f‹t·','',0,'?'),('dLÑü.Ð[Â¼=üÈõ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/InflectorInterface.php',0,'¥uýè›õ3UGTè>¸-Ð','¥uýè›õ3UGTè>¸-Ð','Møíi\Z›ŸÍÑ3­§+ŸòÁŠðÏR}qø¢1IA','',0,'?'),('dTFÌ/­Â¿Ôp½/Âl','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/SerialTransfer.php',0,'pí Ÿñ•N3\rù¸i','pí Ÿñ•N3\rù¸i','±Y¨PK6Ýh¬5úR_ŒÌ²M`U·ñ‘$êµ½þ¡/A','',0,'?'),('dY’æ·*ð·¢âœW1Ù‰','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RequestContactImportNewList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ø•±5HÖÓTÁ¸?Jñk‰/','PJ#@Š™±Šðá¼®¢“¯ÍîvTIÈƒ–òŒ','',0,'?'),('d[#’å\'âÝY\rÑIÍ·','wp-content/plugins/worker/src/MWP/System/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('d•kòû‘JQAw6im<B1','wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YÁŠg\"Ì”Ie>Mûe','2\0ì”š­	‚‘CAœx\'Eà¤ÒvŒÂ“Å2BŠYº','',0,'?'),('d˜£…AuhÅê 041á','wp-includes/blocks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ró¦u`Ô¶X(¶.Õ<N','£N•-ð×ðAÐ\0ü¾çö~y©³\'¥o7‹Ö$Ðó,','',0,'?'),('dš\n ç\nFm\"pW–hº','wp-content/plugins/duplicate-post/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æb¶JçŒÞ7úAUüHGr','% ùTÐÚSª›Á¡pš”v8ˆƒ;´!=G·Š*','',0,'?'),('d¤QÜ74Œîo5Þ÷ÃñÁo','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/UploadIdInterface.php',0,'\'ô$ü^sl€.2;Ü\n/','\'ô$ü^sl€.2;Ü\n/','t×\ry\0´ßäòU¥Õ±»ü:B\0±¨°W ap›‘','',0,'?'),('d¥µŽrø…åˆ«‘,7d','wp-content/plugins/instagram-feed/inc/class-sb-instagram-posts-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1áÚ8{×ºjœÐ²²','Õ*l°wŒp˜«š‰;iYI¾Üì¹7s4ñÔÒ’ø5','',0,'?'),('d½Á÷E}Fñ´üN7iR','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_ko.js',0,'‹n£k)8äE÷\\Ö','‹n£k)8äE÷\\Ö','ŸKà`qåÓœM=iùyÁsÈ?éßÐ¯ž^¦òã¦x','',0,'?'),('dÃ0ÀÙ·\ZÉÇèóðÔŒn','wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üÜù0<N5Ò–oèôãuM','pô\"\r‰³¯<Ò¡P13ùr£°zîÕÒ=××ÈâÆ“]','',0,'?'),('dÎ&xo£“ 7¥yVyŸK','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_Scheduler_command.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÆKnE½šûŒ~\Z±ût¶‚','s³™¥r4ôÕàsùœºË°SªVÍGŽn€ò6ì¬zÝc','',0,'?'),('dÑ\\oÜ•€Îº‹Z','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/IOError.php',0,'{L‚¢´ŠÆ²†(¢ªˆ‡þ','{L‚¢´ŠÆ²†(¢ªˆ‡þ','çß”Pó€ŠãuµQ¬°;ÖÊç®„‹JüõG%U','',0,'?'),('dÑãíW±L¡\nn:eÖ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Subscriber/ScopedAccessTokenSubscriber.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',‘ÖÑŸìX}þÝ-öy','ªj$Ë2„Å?3ÀÇuj®ÏÊLÅ=ã$âioNþzÉ','',0,'?'),('dÕ(ÄÈ%JéùÞ@õG†','wp-admin/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïAXª´‰ã¢Õéç\r­','Ó=3wQå=´Ün	.A7‚*Ý>VÕˆŠó—qÅ','',0,'?'),('dÖƒÿ¼ã4Ç×±ÅM/•','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/LinearBackoffStrategy.php',0,'ù\Z3Šú¢ØÅ]^\0Îsžm','ù\Z3Šú¢ØÅ]^\0Îsžm','	«ƒj„_ö¨«°\nÖÊV;t£\\¶p‡â¹À8\nä','',0,'?'),('dÖÜÔ§€ƒwøë°gª','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/BufferHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uÕ¿÷—†ÊZ›o7Gý|Ëz','Æg…Û¾eoË\n^C6¶*T=¼g¥|¥KÁ£','',0,'?'),('dÞÓ»R¿yN«_÷áT','wp-content/plugins/wp-mail-smtp/src/Providers/Sendinblue/Mailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·ˆhLn	ÒÀÚß˜ÏÈ÷ì','&6²@órðHC„öÑ[â:<|/ybÓÓ€\Z—k','',0,'?'),('dß¨»6 #ç™<Ë¯ª‘¡','wp-content/plugins/updraftplus/js/tour.js',0,'kÔ[ ›¹ÔÎž2æ	Ä¿D','kÔ[ ›¹ÔÎž2æ	Ä¿D','ý=¿CrÞJÂìH¡¤á)LÃ¹T-‘1ŠˆÚ-Jš','',0,'?'),('dá§à1TÊgˆbž¦€!','wp-includes/blocks/query-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q0<ß\0Î~÷™3«!Ï','Ÿ˜l¿â•¼ @å^Þ¾5ÑýYº)Xäø\04drGË<','',0,'?'),('dâºhÄ§{q4‡2÷K\"ß','wp-includes/SimplePie/Rating.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸jkB³-\r?Q3QwîU7','{nHÑ(>}Q(¹ï·Í©a‘ŒíÛ±b‹>“À\n’FY+','',0,'?'),('dè4jà2UÂVŽ·$öP','wp-admin/css/wp-admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–7#Qª&M?Â»‡ù|ó[','QÃD¦ Ì6¦¹›hPÖÂÌqqM9ÏFOÚÒ\\O–','',0,'?'),('dèˆ@!íÆd§J€Åû','wp-includes/js/mediaelement/mejs-controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡.Û·Z#e0¿< l–¿','›Xã*áî\Z»ŽXÛ(ÞZ!ë·È½¨ñD2aB','',0,'?'),('dë†G” N›¿MFñg}','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­QÅÇhyÇØ¯˜þ“O','þ1†_Kø\'SÓg€àÃo6ÁZË¨×Lx0îe»•','',0,'?'),('dï¤/2bÃé8Ãë(”Mº','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Reseller.php',0,'ÀšŸ{“\n\"A™–½#ó&','ÀšŸ{“\n\"A™–½#ó&','f\0òG(î˜$>ês:zÛl8©Xâ‹{¬…p]à½ÃÅ','',0,'?'),('e\0ÀÍýžhóL‰ú‰Ñ‰¸ç','wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YÁâØÑ±Æ”Uy¤þ{š','pa™þŠÂiŒñvöÂINa\'%ÖâfE?ŸMvøÐ','',0,'?'),('eú(…X«ÂÇØK‡àÀ?','wp-content/themes/Divi/includes/builder/feature/local-library.php',0,'N/ªÃÆ™§,ÿ•Ñ¯','N/ªÃÆ™§,ÿ•Ñ¯','§ˆG¯½K€õ¹mZ\'Öâ©Ñ`Ÿ¦`©<i8\0','',0,'?'),('e&ÂÃc×aÜy~»k!Ö','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/GenericEvent.php',0,'/b×eØí¡Xê%«÷t','/b×eØí¡Xê%«÷t','Î·MzE\r-\'QÊ>Z®¬Ýõ‘æ”«ôŠ	ÏRŒ<ÌÂØ§','',0,'?'),('e\r÷šZf‹‰ÅÞžÊÉ|ï','wp-includes/js/api-request.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹ìk#ñ(ÝÄ©ãÃèªÆ','\\„åßQõMƒ`ú$¼Ú£gªEã\0|·PneÌr]','',0,'?'),('eÇ‹Æ³õcÊÅ{ú‰*!K','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Enum/StatusType.php',0,'©;Ö©†š›Z¤÷©@h\'M','©;Ö©†š›Z¤÷©@h\'M',';ÚhõÏu ×fMá&g]4Ì<MM0Æo™û ¤®ÏhÐ','',0,'?'),('eÇìÌXÇŒ.\\ì(&ýd','wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æŽ¨c¥@gºÃó®…Ðh','É¿T¹†¸>ìEžfg÷¿«ÅK°ûî¯ rë¹õº)»','',0,'?'),('e!ÄT:éó¥DäT…žJ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection.php',0,'8­õ€.öÂþLLÃæp^','8­õ€.öÂþLLÃæp^','y²˜ÒõÿAb-ãƒó&ô·3C‘…OéµÙþ^ÕŸ','',0,'?'),('e\"eúcÌ.áÁ4‹¾€†–','wp-content/plugins/worker/src/Monolog/Formatter/NormalizerFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ÆªB°C^bK÷DÊƒ…/ê','‘’ø€r‚EG\"=W_§°È>Z¸Ee2ŽžšÏA','',0,'?'),('e.PÈ´NB‡Sx[Û&Á¼','wp-admin/includes/class-wp-plugin-install-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aÒTÜ+#}·Bªí¤^Z','ºÁý4I(q®›‹þÌ[¶S:BÚA8;åfókRV{Õ','',0,'?'),('e0Ó8ÌÎ/¢;t…','wp-includes/blocks/tag-cloud/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TûUS\n¸Ÿ‰H›\0 \Z“y','58…ÖCà4;«Uì½{<@47EB~µ¼Gý¨ELÞ','',0,'?'),('e7¬®ý·	yÚå¿ <^ñ','wp-content/plugins/worker/src/MWP/Monolog/Handler/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('e9ÃÝ‘Ußb†~§­U1','wp-content/themes/Divi/includes/builder/feature/gutenberg/BlockTemplates.php',0,'ÞÞÏÐ3BãÆKaÄÆaHNK','ÞÞÏÐ3BãÆKaÄÆaHNK','Æ(n¾¦ôÂ»YM¶snBØÁÖê&gïÖ<½Îo#Ò,','',0,'?'),('e@”xEj0qÅëh»(','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/link/plugin.min.js',0,'°öV\\\n]ÌáKûs\' ','°öV\\\n]ÌáKûs\' ','\Z>†‹IÖSÖÐµ´œêÆv´,¢Ïq¦U¡¬Þò^','',0,'?'),('eEiòg…½¹–¿\'úÿ—v','wp-content/updraft/plugins-old/updraftplus/includes/class-updraft-dashboard-news.php',0,'<¥åü¶‰Å M|-E„ßû','<¥åü¶‰Å M|-E„ßû','…¶ZÍN{\\e­\\IÌ«OôÑˆcö!\ZúQÅãVëC¥','',0,'?'),('eN#vÆð]2Ýz8ä£¢','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/Controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜÒiä>éPËÖÌïõ¢','b×lÿN5²¾;\"T•8ûêI¿îM”óÓ5ÇÜ|ç','',0,'?'),('eeOs4ÿw\'À~ !ÔŒ','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/DeleteBlobOptions.php',0,'˜Z†ÛÈ4èEfeûýª','˜Z†ÛÈ4èEfeûýª','ÐÓ4mJÁ²Í-q®šn=ÿËlí›””4„Ÿø‰Œ£','',0,'?'),('ei›‡yïøÌ,:¶êáTÙ)','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Country.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0¦Q#2Ð‘´óR€´•','~G)âR¡³ê7i-ë#âÞR 9H°þÇ«÷ b','',0,'?'),('emFFóÙ”L+oØ®Rye','wp-content/plugins/worker/src/MWP/Signer/Factory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê›ëÔq2:ßÁn)Š$ó','føÓ°‰°u9Ðú.]]H«g,„CèóŠ0Ä°¼','',0,'?'),('ep\r}Èu_4ý¿‘±ó–Ÿ','wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð©3®^7‡DPk¾@c_›l','e½ž½­ê× cã1°¾0FÇê^Êb¼ÕBÚQ@Buª¢','',0,'?'),('etL²¬ˆØòŸ„·ðî€','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/tracking.php',0,'×eû¬	q<eÏø4ÒÖà','×eû¬	q<eÏø4ÒÖà','è1>P[`‚am4xc%~äªOå’É8Šañ„µ','',0,'?'),('euoÎðì(¦ê8?5','wp-includes/js/jquery/ui/menu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©ûV7g¢Á®§q·Ê¤','O&ÜÎà‚Ìx¢1Â,mûQÇcÏôYEÈ#RG˜³ä','',0,'?'),('evpÝéÆé6RÀé½‹û…','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'™Uå·ƒüÖ qDÞFîÏH','ÒëÍÔ¦Ä!Ùð‚Ó¢tLÜk.¾\"1ÝäCm»Kg£','',0,'?'),('evzû\\UL#¿4û¯Y¨ó','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sk.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E/ÿyjfÖÔ‚£•Ã0','š*òm®£²úu§†3cOÅ“!:ÓÃs¹h.ýšƒÀÞ›','',0,'?'),('ev ‹l(=/HãZ‡‹”l','wp-content/themes/Divi/core/components/api/email/iContact.php',0,'ùÊzò|h”š±”ïOˆ','ùÊzò|h”š±”ïOˆ','Ù³”¯%™»rTöÛS™øªiP¢ðÛˆI{îEÑõ','',0,'?'),('eyA+æ~žóeÆOÆåâº\Z','wp-content/plugins/instagram-feed/languages/instagram-feed-de_DE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{¯–Irgx‡_¨lYÑ6','(³«¿,Ð˜ù­l·ÿ`‘cYx¨$:-ÞÔ©âÉ·sÂ','',0,'?'),('e}0wTnv_óg§~','wp-content/plugins/wordfence/views/scanner/options-group-basic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VEƒgOº`#jVÔ4§C|','Ðs«c‡ñ	;¦ƒ*r3$X¸‰÷öG8Í¬RKÇ','',0,'?'),('e†w;Rk³ê¬¿¶ i0Ïû','wp-content/plugins/duplicate-post/src/watchers/republished-post-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ý±4­´9ëfÊÞá\'»ïé','dç½YX<™ËßJÞ¶lU [-œ™hþÝÍ®:ä ','',0,'?'),('el¯0è/+(, Þ!R','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/he.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q0ã+ÈÓFã×q¹ÙH\"n','i§àÝ\"ÕÏpVy\"²áhzSñí•3pÛ[0ê¤','',0,'?'),('e‘¼Q^srÏ,ø<¹¿','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-dynamic-css.php',0,'ÌP;DpÎÍ¿­TL²','ÌP;DpÎÍ¿­TL²','ã\nÙ‡6§<¿êkÏØaSW‘ðÓ#´7c³Æ’ñÃŽ','',0,'?'),('e”¨µZ| Ë¸	ìv*ûê','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceNotFoundException.php',0,',&ÉeŒÓ5øëj„Æ›R ',',&ÉeŒÓ5øëj„Æ›R ','•êÉ¶þä+»È(Ï,½[O\0,_®ì:hJºb¼´','',0,'?'),('e›/{k„h½¡óY~ ¥ù','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-google-map-preview.php',0,'|rÝ„Õ>e9wnûÿ','|rÝ„Õ>e9wnûÿ','xJÙBRò:ÎXhµ&§K‘ÁŒ¢Õwf³|×åö.˜>','',0,'?'),('e .êVUW‹kŠTXtÍa','wp-content/plugins/worker/src/Symfony/EventDispatcher/EventSubscriberInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OÉN›÷Žðæw2qãÈ©','ju~¢M³ƒD#røS2üö[ÔØ‰$;èmV}*«','',0,'?'),('e¡¥ÿæ[u•Uí ½Ç;†','wp-content/themes/Divi/includes/builder/plugin-compat/wp-views.php',0,'ýÚâºî-T÷{upüüAÕ!','ýÚâºî-T÷{upüüAÕ!','&m¯u×¥ò_íóÜ\"7\nŠòßêðVTe,	ùX','',0,'?'),('e¨Y/	nc,TíüûŸÔ×û','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/AbstractTransfer.php',0,')¿å2²¨7@n\nHGÜ;Ž',')¿å2²¨7@n\nHGÜ;Ž','C\\†°ØÏœÿ’f”9%Z‰@y§È\"@ÓâŠM€','',0,'?'),('eª˜lsUO|°R}Ü“i','wp-includes/sodium_compat/src/Crypto32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\r}jŒÇŠQX]m“ÿ','É±ùÅä±ƒFn÷ž»2c.nßM±íÚ£² A¿µ¿','',0,'?'),('e«ÎG†˜òü\"ï ©J','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractTransferState.php',0,'ô9\"ÂtUB\rœ…ËÊGTá','ô9\"ÂtUB\rœ…ËÊGTá','½ÓðÚŠðª®¾ ŽÏøãbP²×_6VëÜ—','',0,'?'),('e®ä__ó%÷è®xˆÀÛ','wp-includes/class-snoopy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñ[üPQœÍI¨¹P4!šìš','…+÷	×ÌuzRŠW	QW¨|îÖ5‚¬Ç j[;U|¨','',0,'?'),('e³?ð†sHÚ8€þ±Š©Úñ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/Facade.php',0,'ø¢S\"N´¦ô«äRz7òêÄ','ø¢S\"N´¦ô«äRz7òêÄ','²eQ‚Ò3Ûd/Ûµ\0Þ)J`›¯—Ç@*+öq‘!gz','',0,'?'),('e·èîÏ±ˆuŠ»ßB¡)“','wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/DisableEditor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZÊØ-Ød–³ž!}´Üær','æ—«“@ZïÎÛFëuÂó»O7³ü0–ô\0µ-wù','',0,'?'),('e½^#|Û¢TÐ©’ˆz','wp-includes/Text/Diff/Engine/xdiff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ö¹ÈbŠt­X8šGX','ú[<¡0°Ä…—¿aD)tJûhí¿(C›[uH}sÒ˜i„','',0,'?'),('e½½ª¬î°˜YIÁš,ùÇ','wp-content/themes/Divi/includes/builder/module/Toggle.php',0,'Ð\\7¦ƒÐóSŠªŽ@(Š','Ð\\7¦ƒÐóSŠªŽ@(Š','¨¯¡¹ÃìÿFŒ‰3¦¯-5xÎg‰ŒÆhŒ–…{','',0,'?'),('e¾ÜÀ4XÆŽÁ\"òéŽÕ','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gé¥bñf>Ž•ë½=™²·','¬¾“šßº×`Ï\'¸‹ƒç›±“ÍÐ–x#i§ÔÅ#ª','',0,'?'),('eÊÁ¦Ò.¿IÔ‹Ù\n’','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/BlobServiceOptions.php',0,',ÿÜ®)Ž×ëû÷åLÝj',',ÿÜ®)Ž×ëû÷åLÝj','æéYÂNí\\à÷IÌ@ÆC\'!ÈZ ÓöUï§ï$¡','',0,'?'),('eÊð¹ÒÅ|%²OBË@Ê','wp-content/plugins/wp-mail-smtp/src/UsageTracking/UsageTracking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“PD¬éçs\"	´îò r<','(WÐx=-ÝG½Féç³[™­¾IY®Û‚Ðm','',0,'?'),('eÍ\'±ð÷7„\r€‚íÚÏØ','wp-includes/blocks/group/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÈÙPÛ§Œ1&©ñ\ZÑ­	’','Ï³­\n9€«ÓÊL/Q®QÈ¹Ú¢ÉVî·ñ^´¼Œžð','',0,'?'),('eÓÍVé^n@ôÒh¢°¥º','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/WP_CLI/ProgressBar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾lï@Ê\ržo›Àãa²®ˆ','Ìò#èÃ„z1c#«p²rt\"²÷qfHvå°õZyË','',0,'?'),('e×Ó6>\Z1ö»¶ÎL¶—','wp-content/themes/Divi/core/admin/fonts/fontawesome/fa-regular-400.svg',0,'6·è²Ëb°¾ùs‡WïŠ','6·è²Ëb°¾ùs‡WïŠ','Ï^‰\"w+Á2@Ó»>ëbtøðüÂ¨—-|tºù','',0,'?'),('eÛÍú®0Ÿ9¥²®$Ò\'','wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/Base64UrlSafe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L|>ûV$~VQ®dì{J','ïsþ×YjÝºûI»,(K©(bA4¨ŠwGý9ç','',0,'?'),('eÝÂƒE…‡zä¯…!É','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/phpunit.xml.dist',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S{ÕœñÏÞsPv;õ2jÐ','êß*\r^ÆêŠ­cq8š°(âQ\\J*Ø%ß(a2íÉ','',0,'?'),('eéà1‰ð‚ôEã_¿°','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/GetNewNonce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“$zŸ?E/¯ÌË3LÎi','“›ßV\'ÒÌÅyŒº\r›T·µÓ78rù’±\'¾¢|ªÜI','',0,'?'),('eûÀÀ§<qº$^éËµq/','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-flip-boxes.js',0,'ŒÆ»w›»}LÜÎÇ\"Ù¾\'','ŒÆ»w›»}LÜÎÇ\"Ù¾\'','ù¦Ç×öõØ¤)Ôd%(0{Cþ¹þ-7“å¸tçÂuy}','',0,'?'),('eûË±©<Lz´cU$Ü','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/CacheInterface.php',0,'½Îˆ  ÿC¶rŽ«\Z±Ø`','½Îˆ  ÿC¶rŽ«\Z±Ø`','Ãá|ÃM­LÎý2¥~‡‚Ÿ­Ü¥@&Šb’çôÒº†','',0,'?'),('fœ¨^=ëkdô#P‘ÜÒ','wp-content/plugins/instagram-feed/img/about/icon-none.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\L4æÈ›7ÿqMç4Å~Gn','Ì^¡¿cÅØi/¤}¼(ëQE2øÉ†w','',0,'?'),('fÜN>+{õ¶Ú¡lœ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Message/Formatter.php',0,'ªœ#,²›ZßE«™ê†','ªœ#,²›ZßE«™ê†','€‰ÇÎü.¿E™˜úÝ}lÃ_ØwT\nÉVŽ¥œ;Š	ÄP;','',0,'?'),('fSZÆ \'j¬¢W \"1','wp-content/updraft/plugins-old/updraftplus/central/modules/posts.php',0,'‰)<¬m©o«æx{~o','‰)<¬m©o«æx{~o','SlV“ï¸åˆK¦³V¯jŒoÚÎ@‡sT¤ˆäÙ2ý@','',0,'?'),('f*	$!ß}_è*ÔN`=','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/AbstractResourceWaiter.php',0,'û‡ý°w:gÐÄêGA£yt','û‡ý°w:gÐÄêGA£yt','“ß•üÑÊÕXõ¼ Hƒë¶Ë|˜”#‰ù7ÍÒ2','',0,'?'),('f94X%‹Q?¤[3š2Ôæ','wp-content/themes/Divi/css/tinymce-skin/fonts/tinymce-small.svg',0,'ß¾\\H„]øð9‹Z©¦','ß¾\\H„]øð9‹Z©¦','•\r´z³mÿª€]ïH+¹¶y­‹ÿ»qG(Sá\ZUéáÆ/','',0,'?'),('f>y%kÞš•á‰û†4c','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-column-bg-image.js',0,'úqøòà£AJH†*3','úqøòà£AJH†*3','ÒŸ‰†ÚD3ÃÅÈRìm+ÿï5vófˆÑL5K^I¯¥','',0,'?'),('f?•Æ¸¦åh+#]5´','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/RetryMiddleware.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£qð	µÁe5:¶\\®qÅ','ayð ‘\\‡+e×˜ŽTÓa{0~S¿5Æ—2T;òUE#','',0,'?'),('fPÀvJSïk‚bÊ œ','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/BaseAsset.php',0,'1Xw?Ñã·Îm\\‡‘Á·$','1Xw?Ñã·Îm\\‡‘Á·$','Ð“ pÄ©(cë3§oÙ8ø%B5Ih½só¶LÍU','',0,'?'),('fS0”U¥u÷—\\l\'xL','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RuntimeException.php',0,'.Æê›Ú/*MiÍ—™„ÎÙ','.Æê›Ú/*MiÍ—™„ÎÙ','sÿV¨\"P$}] ¾ÞüÑßuÄ‡y[rÜXƒ','',0,'?'),('fY˜Ã»mEÚ’gßxD','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/BaseResource.php',0,'’šlä¥3³T&qÃK.øíƒ','’šlä¥3³T&qÃK.øíƒ','/Â—õÀM|I,Iÿ³nñKðUk.4EýKpÚ%Ë','',0,'?'),('f[/i‘Oe€¼é}-j#','wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutPack.php',0,'ŸÜ–öËÈ*çZ5Š„ø','ŸÜ–öËÈ*çZ5Š„ø','vwUu\naOÄ÷@KHÓ•°œÐ_ƒÌèÚ£A@ÀßR­0­','',0,'?'),('f^ALæ€\'g\0—¸¨','wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/SocketWrapper.php',0,'\n\'óW&UŠP¼=tÝ’Z','\n\'óW&UŠP¼=tÝ’Z','²™·èHRZìz‡Ñ]›ÎôôC9Û”I³9³¦','',0,'?'),('f_R ìoÕ2—±4','wp-content/themes/Divi/core/admin/js/page-resource-fallback.min.js',0,'¿Ä9ýøÕ¨t•‹rp¡Û','¿Ä9ýøÕ¨t•‹rp¡Û','¸™Í•êLGI9öXÐw…a?¢ÂT<”¬’ÁÄ1i¸š','',0,'?'),('f`:Ç]ÍkšhšÎ¹zê','wp-content/plugins/updraftplus/includes/class-storage-methods-interface.php',0,'þê`ŠÓÙöàºôƒhÿë','þê`ŠÓÙöàºôƒhÿë','Å[\"<{hEL˜ac@ÉTNÜ-ˆc×PüÔ>7µïž','',0,'?'),('fcúÔ\nËpÔÍf]±p','wp-content/themes/Divi/includes/builder/module/Slider.php',0,'ÝÒ¸ª<¹HvƒkB2','ÝÒ¸ª<¹HvƒkB2','È&ƒ‘®Àò[jKÍ\0œµBF‘Óy½¾kv¼Õr6','',0,'?'),('fp=­2ó1sn8aŽv','wp-content/themes/Divi/includes/builder/plugin-compat/popup-maker.php',0,'ö;©Ð	7Ýôªè´%(F˜','ö;©Ð	7Ýôªè´%(F˜','ƒI¬ª9T¤Í†, .|=Ø¦êm©rš ø»˜ï¿Ñ','',0,'?'),('fp†ú“êçÈjóH›\'','wp-content/plugins/wordfence/views/blocking/blocking-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§šDç•ãaØòÓG]:','^Ä¶ÖU•Oë95E¡Ö¹È~Á»zåqMçqÈ3@','',0,'?'),('fqœ¼TðèmI‘1Ð´§3','wp-content/plugins/fusion-core/shortcodes/fusion-portfolio.php',0,'ê‚\n™c’ŸQ)´‡ô','ê‚\n™c’ŸQ)´‡ô','>\Z7ºY6–!WÒKÐb¡‹ÛbøÇ‡ŽôÊÏÝß!åÔ','',0,'?'),('fw@q2¡5þ±MèÛkÄ','wp-content/themes/Divi/core/admin/fonts/modules/base/modules.svg',0,'Ý¾l»Zè˜)q‚ñÏù\Zb','Ý¾l»Zè˜)q‚ñÏù\Zb','V@ý´„l£šRÔ{ÞQÕ…a¡^Þ¼r]#rF—','',0,'?'),('f‚—v\nXÐ\n\"’-›æ˜d2','wp-content/updraft/plugins-old/updraftplus/includes/google-extensions.php',0,' C§±CzX©9 5›J”',' C§±CzX©9 5›J”','Â³õ™q^Å(±À‚þ½Ù‘1É ×yqÃQ”Á×','',0,'?'),('f…u3\n¸M\\Á}6*0íž','wp-includes/class-wp-customize-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-j¾bß4k2õ`Ìs@','s\'‘=*¨o±[Ûåž™B•€ÿ±i1Þc9C®8P3.¡ê','',0,'?'),('f‰FâõAŽ£lû‘UpýðØ','wp-includes/blocks/post-featured-image/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—±ØM;þ	º†[À”ä›cŠ','Ç­Ä”qyE‰œ%lÄÿ¡\'W3÷/³|Ù—2ènÓÞÏ¡','',0,'?'),('f­Í»â¡ €ü­†PÕ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/insertdatetime/plugin.min.js',0,'œ½ÔÂÀ“€Ï˜¤ïn\0Â','œ½ÔÂÀ“€Ï˜¤ïn\0Â','ò˜\'2&·X’é“óûÈÉ•G«éW«¤íéeÑÇ\0©','',0,'?'),('f—n½~›•ppkMÔ{','wp-content/plugins/updraftplus/includes/Google/Service/AndroidPublisher.php',0,'œ¬úg%F±Ÿã®„üLÀò','œ¬úg%F±Ÿã®„üLÀò','tÝsŒ´ó‘Kîs¬¥æŒ; êb}±.ú‡R[ÂíÓ','',0,'?'),('f é0~:‡jüº!ã8£ø','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-dynamic-css-inline.php',0,' õ¡³ÓzÊšF\Z„G\Z',' õ¡³ÓzÊšF\Z„G\Z','27£¹4‘Å‹-1J§\0É¥UãzDüÅäÇÆ','',0,'?'),('f éœ°fØŸ|hû¹U’L','wp-admin/includes/ms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«ñ2…2ÅrÇç½õ€qh^','ªH€±\'tƒrá\\\\ovVÂß–ÄÎ‚€½RJVY·Úp','',0,'?'),('f¨Å­Ý8®ÿ;ÑslV','wp-admin/js/privacy-tools.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»³ôÄeš›öo`Q[ò.é','Œë_A6»Ø}•âK–\r9Ñ@\rroÿ¨ßN³\Zêÿ','',0,'?'),('f±2hCæürÁöLw¡\rH','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/fr.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@˜MyzÀKW|š¹I1','tŽOŸW‡³! `ßý ¹ÖF~Í¸vRØ»kÛª	¸q','',0,'?'),('f¶=S”Qyô8&lŸ,h','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ListPageBlobRangesResult.php',0,'äÒß]z~$\níXJå4','äÒß]z~$\níXJå4','c5¶¼ÌieÑVYÄÓˆÇDñ»:¢|ûFz·§Ö','',0,'?'),('f·æýBvòô\n¸¸þ¦!:T','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Base.php',0,'-èPý±Vú¶à=—làAY­','-èPý±Vú¶à=—làAY­','ÿKAtYçð ˜KLRb]qº¶öâ3õiÛÐv¸îœ”','',0,'?'),('f¿¸ÙÌBœDêFr\r\rž','wp-includes/Requests/Transport/fsockopen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ää±‹ØƒSèg\\\nGBÔ','·º„9ûç¸™;ƒO[x`—à*ã8HÉ*rý.Pì','',0,'?'),('fÎä ÙýÂe«ªR¹)Ú','wp-includes/SimplePie/Item.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ßŸ‰Š	›8„¥…ˆ1ÈV','ŠúQ`Âm{ÌÒ¸\nØÖ„=ÿˆR#ÏQöÍÔùÉ\0Kû','',0,'?'),('fÏ3×ý¸YÆú©ñT','wp-includes/js/jquery/ui/tabs.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+¯73Ÿl½¥cÉP¾°ÅR','°»{ÉfTØkœù3Ub¡Á	AxT­8?úÑ‡aÝ¯Œ','',0,'?'),('fÖˆó½ù¦¼VíÔ¹)ä9','wp-includes/theme-compat/embed-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷m\'ç‰‰±TeDâ]pCA','J¬Ï‘ß·Ð`ÞÅ¡+,™ jrá#eQÁä«– ™ââ ','',0,'?'),('fÝzû¦6‚šèpÐ','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JSqueezeFilter.php',0,'Špáê	UÐœËb«Ý¼¼,','Špáê	UÐœËb«Ý¼¼,','aëLYa¸k±à¶GØcT›]\'P|³*dÎ\Ztˆ','',0,'?'),('fèÁ[4ã±#ù„Yê_m','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssMinFilter.php',0,']ªîþ…±}¯iYTè˜?÷',']ªîþ…±}¯iYTè˜?÷','Âô–/èõtú×ÏœTãj¨”i7:¸U8Lv@Ð7JWõ','',0,'?'),('fôR¾ªáu\r\Zp|\ZT·b','wp-content/themes/Divi/includes/builder/module/helpers/motion/Scale.php',0,'g˜’ÏcÀ·ÜÁ?*ÂYd­e','g˜’ÏcÀ·ÜÁ?*ÂYd­e','¼1ÿl¾vÄØŽT¥S-¢/‘¸“&é>È’ç‰š N','',0,'?'),('fÿ¨ý6ŸBÂH´µ','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/AES.php',0,'šÛx¨œ‘Áˆ)0‰õ§ñR©','šÛx¨œ‘Áˆ)0‰õ§ñR©','œª	£[”ðš1þÊ¢Ëù‡Ã÷ê!’hhó€®âu','',0,'?'),('gjTdð(kHoßñÙé','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/FormulaLoaderInterface.php',0,'½¾íôîQŸoƒ@ø‚H#','½¾íôîQŸoƒ@ø‚H#','ßpÚ$)¡Ÿf2×m4¿ÐÍQ‹LûR”Îkò£á“','',0,'?'),('g\n‹†äVT+‰ë5','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationCommand.php',0,'èSO6-ª7#åhûþå\r','èSO6-ª7#åhûþå\r','’sï»Õáçš°N¾˜tÓìû¾ºñ¥þÔxwp²{','',0,'?'),('g!Éhòçæ€îþÑ®','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CouldNotRewindStreamException.php',0,'\\$žtØkWÒÎ','\\$žtØkWÒÎ','ÏÉ¥\r õk(Ì\0¢Á>îœö#\0Z:­Üt]uë%.ïþ','',0,'?'),('g­©QØ.ŽÛ~ÑdOQ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/ProcessApi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶oø…7)ãDU=3\\¢ô&A','ÕeŸÃõ\ZÐ;Å2¦ “§àj-Sí¸aÓœôr{¹&²Õ','',0,'?'),('g²Pèåï;2#eu)]','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_zh-TW.js',0,'{%É\\gü–ã7J4Ú4ŽËO','{%É\\gü–ã7J4Ú4ŽËO','ÛÒ§zî-5ª¾šœ¦f8Ë\\¬0qP;MX}rgÌ','',0,'?'),('g\ZŸˆ^Ð¤\\þúÛ9°\'','wp-content/plugins/worker/publickeys/partner11.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÚØ0ƒ9¯Ç8£µ¦8',' rÆÅ…/.¸©í¨:ÃŸ´greL¢>¸ŒÍ,Ø•','',0,'?'),('g!\'E¡RK§+cVsƒ³rû','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Storage.php',0,'fæë/ÂAÓt:ÀMï%','fæë/ÂAÓt:ÀMï%','îÀ\nkH~P“Ow^Lÿ“itçQçÉ™­+	_3–|#','',0,'?'),('g#é,vM‘ÿŽ‹—ß:õä','wp-includes/js/jquery/jquery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ã·m¨R&‰l’7NHÃK','¸îSØÕfÌÜò˜\0ˆ¹åÝÛHR“EËì0éiØ›sfÃ','',0,'?'),('g+yr‰äÐq„€ö€D©´/','wp-includes/vars.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ\Zm«´Íf1qÎàË´','ùnl\ZÅËàh¯1heÆù-ŒMÅÏ5Nl¹’bd¢Hpzè','',0,'?'),('g+±·çwJoGÿíï{b','wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þØØïhU4øSm`Ñ\Z‡S*','›WVðîú£ãRq³1Sxì–-o5x sn²¾\\²é','',0,'?'),('g/Veîþt°giefŠ','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Compute.php',0,'G´\0[! ó)[v…ÑDõl','G´\0[! ó)[v…ÑDõl','+q<ëÜ½VýÄV!“´]ßŒ<ÖÅã^moä®øX','',0,'?'),('g3ò¢âøÔæ´ƒ>àd!`Í','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/ArrayAccess.php',0,'³w|Z—…ÎT•s>YÕ è','³w|Z—…ÎT•s>YÕ è','´8¶à×¾9øÑÀÊMàj¨èq÷àjzZ)ÀyèH','',0,'?'),('g70èè‡VÉU¹æÿ`Iz','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/PsrLogAdapter.php',0,'U´¾±Ïã¦\Z+@D1ÿ','U´¾±Ïã¦\Z+@D1ÿ','ÔC<‡Åüg°:xU9´ò•ÕÆ3JÛ–1·íõ\"D','',0,'?'),('g?Œ¬Æ+­ìL©\'.¯‡ž','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/form-contents.php',0,'o)P´\nu÷)7æÔÿ','o)P´\nu÷)7æÔÿ','?Ž¾f\reûçXõð¯Jx…	)|ì‘s•ã‹(¿xÙ¡','',0,'?'),('gBRYì?fÚ±oPcÏ—Z','wp-content/plugins/updraftplus/includes/class-updraftplus-encryption.php',0,'6Lš¸ÝWKçí6Ûú€·E','6Lš¸ÝWKçí6Ûú€·E','qd=ë•)\\ìB-¸¯.„$³5–¤‚:z…,Š','',0,'?'),('gB³=ì¹Ø ù\nÅ’¥cÝ','wp-content/themes/Divi/includes/builder/feature/dynamic-content.php',0,'Ã|W•<UNÇ.¹w™W','Ã|W•<UNÇ.¹w™W','‚W³~--ašq—”??á½.tÈ6XfÎ±\\¸Ìk','',0,'?'),('gHÛ®Ð\ZQ^æ¾Øc4‘¶º','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[M/*ŽµEæ<säWÜRG','\nðÁ\\‚¯XÎ°Ö¨P’°AåÂ—\nXjð\'£;qý{¬‡aÖ','',0,'?'),('gOÙñÊtÇÈ°µÌ&îîñ/','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateDoiContact.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ-måno\nýè–©€€v','û‡ß´àÁTx:Ún+>ªOÚ6Ò.\Z¾äi Z','',0,'?'),('gOìA”òïhÛD°WÕ','wp-content/plugins/updraftplus/vendor/symfony/process/Tests/ProcessFailedExceptionTest.php',0,'Iþ:H–ôÏŽ•!\\`ìØ','Iþ:H–ôÏŽ•!\\`ìØ','“µñ[¤YßÿLL¼´<cêfTð’x@kÁ`HlW','',0,'?'),('gQirˆüë˜¿¦é™/!½Ÿ','wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«èû\\çíž:Ä}Ø\0ü¸','Ò7˜Ù—BÈœ…Ñ²GÈCçÕEnçÙuÏÚlÙÁ!c¦ð','',0,'?'),('g^gétíë\\A>¹Ä†','wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/Base32Hex.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mÖú¡ˆCÒýP\'s{\rõ','‰Kv—éqZ©âùã6YiRH²©À`®½j´b','',0,'?'),('gc˜‹Œ–¼_NGúó','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponseExceptionInterface.php',0,'åž©Îó&3f£=g-\n','åž©Îó&3f£=g-\n','QðNF¹÷0‡;Ö7çâ¸xQÏ!ê|£¹Ùh¬\\?V','',0,'?'),('gg\'ìB®šš€¿ô®4','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Models/GetServicePropertiesResult.php',0,'UÝˆôâí}‰UK¶ã?i–','UÝˆôâí}‰UK¶ã?i–','ëW?UŒ…ù ›®‹Ç”vá™S§é\rG´ Äß /?','',0,'?'),('gm ¬P‘Ñ	YŽÞžÁ\r','wp-content/plugins/updraftplus/central/modules/core.php',0,'4ÒÚ…IÓÄÃRÔixy•','4ÒÚ…IÓÄÃRÔixy•','ÕXæJ—&³RÈâðîÓÎÆüöÎZrõŒ¨C¹-<ù9%H','',0,'?'),('gvÔÙ\ZUOÿÝòñð­öÉ','wp-includes/blocks/html/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jf;BÅ‰HÆÐú•_Èd|','×Œ„_¬ô¢x€Fåƒ¿!!Í£Ý”d»^uI|ÝþtÞ','',0,'?'),('gy<þÈìÿ¥><Ì	','wp-content/plugins/fusion-core/fusion-slider/templates/clone-button-edit-form.php',0,'Å‘¬¯&.b|WîUr!À','Å‘¬¯&.b|WîUr!À','“wN8˜ò¹°¨Ò\nhëøÖl;ØçÊ×HyâàK¶ÿ','',0,'?'),('g|y_“o4\"‰©X†Nšù','wp-includes/images/smilies/mrgreen.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-5Áà^±”‘ÓJÝjÚ','ÁæÐMƒñg¨$·æ¥+;¿²\0Ç5ÑÉÊíH&\\E6%w','',0,'?'),('g€ÉÉõÑý.>KCùpŠ˜','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_ug-CN.js',0,'«z}rpùÓÅ£\"c–\"àU','«z}rpùÓÅ£\"c–\"àU','n•(Ð¹ÁrZGó4´áýfï«ˆ/¼up£IË¦ƒJ','',0,'?'),('g‚€dC‚×ZñóÊÉÔß','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/JsonRestExceptionParser.php',0,'”,ktð“’ûN0+ÉÐ¯Ž','”,ktð“’ûN0+ÉÐ¯Ž','m–Ôâ±º‹K<¹BõyC 8@£RûE€¡HGH	4','',0,'?'),('g„N\"ÀÊ‹A†-&µ,','wp-content/themes/Divi/includes/builder/images/library-layout.svg',0,'˜ë‘‰Ò’ÀMó$à´¨¦','˜ë‘‰Ò’ÀMó$à´¨¦',' HuÝ|ÐÜ–¯ÝFÐ»}Y%µ÷º0ºÿŸÿ=Q¯_Á','',0,'?'),('g”\Z˜ ÍÅžþí|qš(','wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹œàRÑ<‚nI<','e}]T¡©Y(½u&\r÷Ï90+Ÿ—aîDÏ®´#éï','',0,'?'),('g”$G\\¾ë±;©rÄÄÏ1X','wp-includes/images/wpicons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dSüøuq‘V_®Üãaô','¶¥ÞcZ_”Ä?n_ŸçK‹6ëîŽ1\\}r','',0,'?'),('g”K³„™ÒN>JªÀ4','wp-includes/blocks/freeform/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼ŽQíDîø€ð”úeÿ','-¥N×Å¡>Ü’Ù½„‘›jé¾n/Êh¨ägS1T','',0,'?'),('g”[‡uBGizsªûE”3G','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/ClientInterface.php',0,'ib»ôZ„KhdüLô\\','ib»ôZ„KhdüLô\\','$C‘Ä„0’5H¢~1;ÀpÆ1€ë%Zd>t²oŽÃ¡','',0,'?'),('gŸvŸ²Ý—ñŽ>&¨\ZaD)','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php',0,'|È°Ý¹ `³Þ-cqFÇ','|È°Ý¹ `³Þ-cqFÇ','JåÏ‹&âr…æçò²Éª¦ç;²ð9Ï]®þÖFå','',0,'?'),('g«BLïlnÊ+Á¨Anè2','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ar.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ò£EÕš•	Ê¯WŒÕ™X“','¤ÃAC¥x5t®®O¶¹‘ŸL\nŽ›ÏÞboB’Ø® ','',0,'?'),('g±fö1ûÛ¶òyä;´_','wp-includes/class-wp-http-proxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@U,×:÷î-<IŽeºÚ','UÈéê‹ç¼•¾HÂ.cÁSd~Øïˆ*è«Ã)ê¥','',0,'?'),('gµsôÎ)¡³mýç%','wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ìç“`rœll¡3@Þ !s','F+RZÏ‚®eQ$epë•G%EvÑ-ÞþxE','',0,'?'),('g¶]e…Ô!^…‹(PKðË','wp-content/plugins/wordfence/models/common/wfTab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2öTÔ}šHW\'<}\\','ZÂ¥|ÿséSÌ8e•Œ3è‹EØ—ª$‰ŒÖÆÜœ-hå','',0,'?'),('g¶d—ßß¨ÊHÁ\0äž!²','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/lt.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú/@#Š¨ª‚¹‰ÞCnbC\Z','ñïFe¥{\Zty‚Ñ8íî¸¨ù®iV\"4ˆ¶¼&Ã¿','',0,'?'),('gÐ¶~)²~¥sºÊž“ûI','wp-admin/includes/class-language-pack-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ6d³,Ÿ’–€û8Eæ','ÄG•y…€mTÉ8=ï?€5é Ã5Æïyå.‘','',0,'?'),('gÓÙ\"}øHßê,ë–dñ','wp-includes/blocks/social-links/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nžfÈˆHkfÿ=]T\n‰','”Ü°ƒ“`Ï¾Ú\"ôFÝóÁ×qÖ †â°Õ4®üT','',0,'?'),('g×Ý‡Dlíyà\\Fým£','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_wcSystemStatus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n u©ÏœÚ‚SzÛôå3ÿ','4­Œä[~8ûŠ²ŽÜJ¨ª%§õˆa*½ÔY‡õ?Ëk','',0,'?'),('gõä]bR%ˆ ZÛEº','wp-includes/js/shortcode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†Ad¬\'w#6?¾÷w±','óû¦µ‡¨³Q¾ 9IË¦oµÃT-ž79_!¶–ç‹`','',0,'?'),('gö£K=ú|ª‡òÐZÜIÒ','wp-content/themes/Divi/includes/builder/module/Audio.php',0,'VÐg!RSFUÖêê†ì','VÐg!RSFUÖêê†ì','*$¤?ôédú¶¹\"#§5¢L‘•<>*F-´ìÞ–ò”S','',0,'?'),('göß<Q8m&Ùï!¼úi','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/CrossLocationLoggingProhibitedException.php',0,'fÉüCÌ/Ë¿^ Â.Û`&','fÉüCÌ/Ë¿^ Â.Û`&','ý:ÑžQ©™mŒö m…–ïêIë*ÞžÆ¼•_¬œZ––','',0,'?'),('gþEdÉã1¢ÒD}ÂÂü‘Š','wp-includes/js/jquery/ui/autocomplete.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kàs(.=‹¾“·Íªê„','åaÂb®îuð7’®¤K\'2®“VÀÂšå=yÉê','',0,'?'),('hz[Cj8­±J†TþM½¼','wp-content/plugins/really-simple-ssl/testssl/serverhttpson/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m¹&˜¢ƒ\rsÞU·‡ü','¥3x¦£ðl¯z¼[¿µ’ÊÎ”¢›%8Ï)áçW•Åq®s','',0,'?'),('hZ[ý€=—ïw–rŒ','wp-includes/sodium_compat/src/Core32/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü\\™®”ñõà:R/â+','ÞÉ«¡ÿ‡¨ÐøçÌ:ª»¶jNêmm©ú†½R·ª¸[','',0,'?'),('h\ZOhløç_øÍLm/å·','wp-includes/class-wp-customize-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à~IÚ`,ÄJ)œ]ã&','(Ù„×?kô§²ì[z¿s!»utmò“Š¯VüÙfÅs-','',0,'?'),('h¯üyûÊÞ _’<¥%H@','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/post/taxonomy/TBItemTag.php',0,'æ¸±®\n®½—ŽÎÐÄ5‘î','æ¸±®\n®½—ŽÎÐÄ5‘î','=àa\nÙ¢jÌôÄ\\çÜüwÝšK9„!^Á›9ú','',0,'?'),('h dÑ’ê»…2öÃ_Àr','wp-includes/functions.wp-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“GQ\0üÁÝú[Œ¶™ û9','EáZëH¹èÊÖRuj›X{L­oy‘X`	Y‚ÿéˆ¨','',0,'?'),('h\"Ú\r0‹<é\" “–D#ü²','wp-content/themes/Divi/includes/builder/plugin-compat/ds-divi-rocket.php',0,' ÃEƒåB¹W³ìÜtbÂö',' ÃEƒåB¹W³ìÜtbÂö','TõÏ\rHWpí´óÆ{3YµŽ:àŒ3¢)á&fÖÆ','',0,'?'),('h-=€ò	ÿoÇ:¹','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidSecurityException.php',0,'Å2]z±ð—`µÏµßñE,õ','Å2]z±ð—`µÏµßñE,õ','SÀ\\’«×žŸÑAbùÑƒ,A1™P9– Ú‡CiX.','',0,'?'),('h0X-Èiÿ»Õá^ÌG`8','wp-includes/pluggable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ü¾²j`\n@J½Î¦ 1}','´B`n“„xþz¾Š\rÊ{¯oÖ¶#;±ÅN¢§t’ó','',0,'?'),('h4¬‹ò#3Ç`Ž-Ýˆ¨\"¢','wp-admin/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','î\0ðÖ,”ûÈøg;ê™´','ûC«™q¨ñýN,Ù`v¬S›±*îÒßZ[Ü`ÓÊô­mä','',0,'?'),('h5oC[Ö’Õ\\Ë˜^ÜVq7','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjectError.php',0,'ý/\"òÎƒÊYp&F†ê`¿','ý/\"òÎƒÊYp&F†ê`¿','n·÷,^GÊÆº~ø{	Sî+7ðÈ±|îêŒþè','',0,'?'),('h@ZÉ%Rë•Fß;ti\\m','wp-admin/css/login-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6]\'›lÑ*!4Ÿ¸Üö','mlÐ@å«¿­½s÷`gwd,X,Õ´fü/á¢©!êëÚ(','',0,'?'),('hTÔ•‰¤wä\0\'„FŒ¬','wp-content/plugins/updraftplus/methods/openstack2.php',0,'Äµ©ÖëÌG¼ Ðy*„á','Äµ©ÖëÌG¼ Ðy*„á','ÊáäIîd‰–êò5\\[Ó®72Øÿ{Ž.fáºª–y','',0,'?'),('hcÞÎøþ=õ £ðà¯0é','wp-includes/block-patterns/social-links-shared-background-color.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆŽâ}¢Û;`\ZÔ´ˆª','>ê**°¹?Ä-T*þíH¾%9Ä/ðE¬Vyìf','',0,'?'),('h|hEˆˆf:Æ±2š‚~','wp-admin/network/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å ·È¹èüµH^r€','ëfˆkL‡ìö\Z¥)h/F_ÜÁÆMŽ9¥jùªV¢','',0,'?'),('h}Mv1\ZQlO™ÿÉó','wp-content/plugins/updraftplus/class-updraftplus.php',0,'×nâA®uPã¬¼r®â3ž','×nâA®uPã¬¼r®â3ž','\r¼¡0 •ÖCòÈJ©HÆ”Ní\03/6H±iÄ	]\0','',0,'?'),('h‚Ð£GítÑŸKd‚AƒO','wp-content/plugins/fusion-builder/inc/helpers.php',0,'ï•VƒxÍpPÇþ¡\'¥E','ï•VƒxÍpPÇþ¡\'¥E','; ÐL»ß°/:óbùaÕÖ=-üzîS³7]È.ôÞÄ','',0,'?'),('h†ð§pÜŽ \nPœotIú','wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutCategory.php',0,'Øb\\{Ÿ¥š.ƒPÞr>\n÷4','Øb\\{Ÿ¥š.ƒPÞr>\n÷4','+»iµ“YéN&ÙÃhZ\0á“$o1¿~¥²õ','',0,'?'),('h™{‰Éeå°a`,_öo','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationCommand.php',0,'èSO6-ª7#åhûþå\r','èSO6-ª7#åhûþå\r','’sï»Õáçš°N¾˜tÓìû¾ºñ¥þÔxwp²{','',0,'?'),('hš3…Û@¥ßD<ÆzœÇv¨','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkUpdateError.php',0,'V¬¡É;ÇåÉúÈc{‰','V¬¡É;ÇåÉúÈc{‰','Þ³¦tgÀ%Îvb	—£xŒ@\Z€¼[GÒ[JM','',0,'?'),('h›OM->J‹-¬÷ŸŒQ:æ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserDeleteError.php',0,'µÎçËƒ’œª³ß$f','µÎçËƒ’œª³ß$f','1‹Òíÿ\r{l”5\Z(;o©øÝ,b†]hF¢*5¾Lì','',0,'?'),('h OT,$Ýâ(ú˜ççãËô','wp-includes/blocks/site-title/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_Œ›Ñ’}?IF7!§Xº','}9\"Ê“ãæüËF)ºœöÙ4»Uîw^Â¹1^:¬ÔÂ','',0,'?'),('h­¢†l\Z˜<‰2{§å™‹a','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DH/Parameters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì¤Þ;²G]=™«,bŸ¥Í¾','L+1S	ä9%1²®›KÍ¦îJêYxŸ6_¡ƒõÄÙ','',0,'?'),('h®Ë~cTOo¶y4|','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯f\"ü»Œç#6${ JL\'\"','ËeÅ‡Ž6\Z(«qË&…Ú¶¬íÂ]œÌÆ\n÷Cli‡Þ©‡','',0,'?'),('h¯í÷¦”Œ-@\'¾rÐð','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/extensions/options_object/options_object/field_options_object.min.js',0,'¦®Š9ÏW<É^ü›q²Kû','¦®Š9ÏW<É^ü›q²Kû','ÎÉ¿I\rZÙA:¾Ì1œ­øŽdD%4XæN¼÷Ç›Š7','',0,'?'),('hµ+]4kÚu›\"Ÿ˜>Ý','wp-content/plugins/worker/publickeys/partner17.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fkb$»†Jîâ­žk»Ö4','†{™:MãJqtGòÂÒ´#Ý6ûN-†à\rûšóx','',0,'?'),('hºM±VžmÉ •Ó›²','wp-includes/blocks/categories/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´À=)…`K×®ó!2:7','™“´1¼ã×\'sì1I¨MøøZš¡š“ÔÕ´$iD','',0,'?'),('h»<²]“”ìOpNCÆ´æ','wp-content/plugins/wordfence/lib/wordfenceURLHoover.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0¢{î£C-½ôï.¨»ùƒ','5%ž±ê’›¦âšÊdÒ*<nÔ—ÐÒœN¼Z²ózŠ','',0,'?'),('h½ÇIKrÃð­²ú(¼','wp-content/plugins/updraftplus/methods/template.php',0,'”°uó‡µÎ=l¯Ô°Ãš','”°uó‡µÎ=l¯Ô°Ãš','¼ì\0˜½l³Ác/Á¢¶!C0“57ƒã’X®\0¿#A•*','',0,'?'),('hÀðàP9œ€ox˜Yä%','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobResult.php',0,'¶¿üBŸãÍÿ¸~kJÐ','¶¿üBŸãÍÿ¸~kJÐ','™ÂV¼2¼m’(B(ò¸þ\\\0î](I /€L¬ÂË»hÿ','',0,'?'),('hÉÀ¾Ër®ÿ¾õªÄuã','wp-content/plugins/updraftplus/includes/class-semaphore.php',0,'}\"™|e;^ý¡>¯qêì','}\"™|e;^ý¡>¯qêì','5N\r¯y\rêAj.|DqèðÒrþŽ(Ébb«®!T 8','',0,'?'),('hËë@&,±¯˜R5@ï<','wp-content/plugins/fusion-builder/inc/fusion-builder-admin.php',0,'$Š~\'»LîFs‘]Õ','$Š~\'»LîFs‘]Õ','únr›2¶ÊÍG¥(tŠ¬«³®ù\\Þá¡7cF»×','',0,'?'),('hÏ©•zZ’™mÚ€5¡€','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/pt.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8™L:]:ñê5k©€','óÌéQ%\"ÍŽ’OÉQ€,X±Ô6ãÄåŸÎP','',0,'?'),('hÝmLT*“=ÜŒ†#rO\n	','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/SassUtils.php',0,'»b²ÈnõðR1M±Â','»b²ÈnõðR1M±Â','Ù¢Üõ\\êzG…V¨¤y«?2ƒõõ#†”‡DS*','',0,'?'),('hçˆPÊÿV®ƒß^^ƒ;æ','wp-content/themes/Divi/common/init.php',0,'5Á´ED4ž)F›€®8ò_','5Á´ED4ž)F›€®8ò_','¯vœZ¨àôŒŸ+²À‰Úb÷½ÙÎ®&ôMúhw|ß­ðà','',0,'?'),('hë(†“„­ÃpˆúLÿá¦','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php',0,'q!‹ÀSGJ9†o”[æCí','q!‹ÀSGJ9†o”[æCí','/Fžuó§~¢Í\rf\nÞ¡ý¯†/ÝTœ3Ï¸¿Qò˜','',0,'?'),('hòÎÇQKøV<r:Mg_Ïæ','wp-includes/js/dist/format-library.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…VøAÛ‘o”äá/=Ý ö','îÓY¾FL2\Z$¥¸éöç…mEKÆ/8Otéüoh','',0,'?'),('hózH(Qê.bWfÐì¡O','wp-content/plugins/duplicate-post/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5á,}vÄ¨3¼õGÀâ)©','E½r4@\0¸Ô¡$¦âzæú3ð¸$l²ê\ZÐ`iäexÃlÊ','',0,'?'),('hô‹„ ¬×,ì]—–e','wp-content/updraft/plugins-old/updraftplus/vendor/composer/autoload_psr4.php',0,'fî!¢bŠ}^p´¥Kk)','fî!¢bŠ}^p´¥Kk)','ì³mÇúHÞd¬ÕG•B\\$Ÿj0ýò]O;s&','',0,'?'),('hýò¾ûúuœ³Ìöd\'','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetIps.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HZàÎU•.éÕÔGOrE…‹','µ›oô“ÖŸ1ñ–\"²Òp™Å‚«Sˆ{z)£m±qj´','',0,'?'),('iŠíÇkmCxþÊ·Ëòù','wp-content/plugins/wordfence/lib/wfDashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e‰É.×q¿:óü—jßíR','u¨aÆvÜR°û +We\rÿT†J%˜\"Â\r7¤f»™Ï','',0,'?'),('i/làËÌÒ¡DZEµNT','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/sass.js',0,'%Æ¤ufÚ© äØ\0€Æä','%Æ¤ufÚ© äØ\0€Æä','&St«§¦Ý¼,çoàâ}¤ÂçóŽ¾¸ÅQ©µH-','',0,'?'),('io\'Gh`6BXfU4{Š','wp-content/themes/Divi/epanel/theme-options-library/app/lib/theme-options-utils.js',0,'šÃõ}|2³\"‹ñüÕ','šÃõ}|2³\"‹ñüÕ','šÏžd,‚PLÊbÍ†úÞ€¥7ï,y™Ž½ìprg*/ö›','',0,'?'),('iÜDóGÅH“3%þ×B','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-youtube-preview.php',0,'ùR` \',Þô\'MR!','ùR` \',Þô\'MR!','Fª$çÜ2\"¥F9 Ñ?‰&lPy‹î´ö²','',0,'?'),('ië½¼Ôi?ù»Ÿ=§','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/ConfigLoaderInterface.php',0,'+äŸ	qL±+®S˜m','+äŸ	qL±+®S˜m','h¸\0·wgøóA[‘Y öz?ôö««¹y!åÉ³¥—~s','',0,'?'),('i¢™;Ùõ&™¾oâ®?','wp-includes/IXR/class-IXR-base64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','î*6ÖÕ¯D¶Tæe™»','?F]Lª2}‡Ùë\rSþ@bÑ2÷O­oÇuU\'O„ª','',0,'?'),('i%eMÕd$ô\'ÊmŽVÆ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/KeyTooLongException.php',0,'®µL‚ßÉú‡IHâá\r–','®µL‚ßÉú‡IHâá\r–','kyÓtEUUT‰;´=qø¦°eÏÌ(£ÎÍ1+Í£ƒs','',0,'?'),('i%ç21Ú˜©ÕùVæCÈ','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-scroll-to-anchor.js',0,'Ü%1’ëÃœ˜‚ÿOˆY','Ü%1’ëÃœ˜‚ÿOˆY',' D2]a+¤»c Þ\'ü`ogÍöí²ÄThïž¿','',0,'?'),('i%ç9Ñ½:æ¶ˆ5î²œx','wp-content/updraft/themes-old/twentysixteen/genericons/Genericons.svg',0,')ld*ªZŒ”ôÒÚbÏ',')ld*ªZŒ”ôÒÚbÏ','(Ó5Ä\\&HFI7l24=}`›jÕVÇÒôùBj4)å','',0,'?'),('i)}âéÊ\"•L3ÔÕÒ1','wp-content/themes/Divi/core/components/lib/BluehostCache.php',0,'È§ƒ-1 MNÆùÅÚi','È§ƒ-1 MNÆùÅÚi','.ZúBð#&Ù\n¡#ÚXÞéQê¼ñÒ`i=íô)8','',0,'?'),('i*.•âYfÔ{YïK3{b','wp-content/plugins/wp-mail-smtp/assets/images/dash-widget/smtp/delivered.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4«wû·Yí;9Y¾-','÷ßˆx\rƒ¸2²Â©<!§à “¤´½Îˆ,d@¯Qû','',0,'?'),('i3,\"uÙâ…Ä‰Z4\"EÊÏ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ValidationException.php',0,'èkBíGé®Çbw>!Ä+','èkBíGé®Çbw>!Ä+','z çFß“÷oÕeŠU&ëªuwê3æ\ZøŽ„tâc&','',0,'?'),('i9¶ÉÈJ2®RæEvÔÿX','wp-content/themes/Divi/includes/builder/module/woocommerce/CheckoutBilling.php',0,'š‹·ûº.Èîs±l<Š—ƒE','š‹·ûº.Èîs±l<Š—ƒE','¨j§“=èá\rË=°U³iLgøÛ<¬i„pœxM2ð“','',0,'?'),('i?!¾ñ Ÿ,½éùÐj4úþ','wp-content/plugins/updraftplus/includes/Dropbox2/Exception.php',0,'×Už$ùÉaf*ìo·nŸ—','×Už$ùÉaf*ìo·nŸ—','s%ÃÔ¾û¤èá¹;è-þJ–ï„ˆºÇ¼/p f','',0,'?'),('iIOÁ”\ZÚ¢úô´ƒrÐÔx','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Groupssettings.php',0,'\n-¸Ó‹GÏxÑ ume','\n-¸Ó‹GÏxÑ ume','ÒÜf(%U;¶3ÕqºŽ‚ý_Laª}²v¥|hc','',0,'?'),('iaYG¥ÞHtÏ¤)ªË','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ListBlobBlocksResult.php',0,'a­ºðf\rŒp^ž?Ø','a­ºðf\rŒp^ž?Ø','\'(Ìj2)ÑÔP—²¸\'’¹»gÊƒÏ)8­p3Ó','',0,'?'),('ia{–-ÏÛ\Z÷Ø™o³’','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ž}©<ÌÄÜŽ‚s¾òœ9','þÝQÇþ\'Ør™† ¼t7¥â=s*a`<¾zÚoÔ_','',0,'?'),('idÜ¶Ç1¾\"—ôùÉ^ï','wp-includes/blocks/separator/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nS°°¾Cg%á\nn±Á','„Šá‰½ò^wx%8Ðaô‘!\'ÁbÉm:¬n#\rîÚ','',0,'?'),('ii·Â\"oýCÈ„³×`','wp-includes/sodium_compat/src/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Rz@ëMMQmr÷ƒ…','±qÀ‘òX9Oøþ¡a4ÁA¯ÞæÀÄÏ\'ôøòÝÌ¾e','',0,'?'),('it&lÜ%‹ôƒT¾E €¯@','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Atom/AtomLink.php',0,'Ö\'¥);|¶½ž«LÌF×','Ö\'¥);|¶½ž«LÌF×','¥UØ/fHÞa:&Å—^lü}¾”Qjevù\0WÀ§Ûj„','',0,'?'),('iv÷~L1ôÓþHnÖ&','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetContactCampaignStatsTransacAttributes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.(e+$rqÙ­µ¹ ô','ê%HÙ\'\r½_îd+Ó($¿uòÆ6FF%ëöÃc','',0,'?'),('iÜ*ÌÜ\nÞ1,)ÜÕÚ[£','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CanCacheStrategyInterface.php',0,'s™Y±ñ(ÑãXwˆÖËK7','s™Y±ñ(ÑãXwˆÖËK7','ÈfyÚÁ!°ïOêy‚ÖlF5å¹vÈ DwÖi/ÄÅè','',0,'?'),('i™…ºÛÝÛÈe@¥»äæR','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/EnsureFilterWorker.php',0,'‹}z7#›­ås¢ƒFx#','‹}z7#›­ås¢ƒFx#','²<_~\n´€ÔÀE^lã~Š!,­wk7dZÓÁf“Ÿ+®','',0,'?'),('i¤>|_âª*ãiøÒØì','wp-content/themes/Divi/includes/builder/_et_builder_version.php',0,'(ìê>InXóàèXr','(ìê>InXóàèXr','Ø+£y.«™Ö$„cA›5luVØì,±,~èÓG”^@¯','',0,'?'),('i¦•UX¦Æ¬½ñ@:}','wp-content/updraft/themes-old/twentytwenty/templates/template-cover.php',0,'$ð ,‘ÛRh³4±','$ð ,‘ÛRh³4±','CÚü¶Ó{3‡NÞÅò7ø°}Ìgwn½šSI¢´=5W/›','',0,'?'),('i²-ÿÐX±8V[~Eû','wp-admin/css/install-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Újí$u ³Ý óÉZX','ë¸Ìà6[{\"€´cG½ÌoÈåÁÏbCÒZ#Zª±·:','',0,'?'),('i¿Y\rAý1é08ý%bô_','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Thread.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(°DÍ¼M.°¤O¦›[¡È','yÂH—ïÈ*(ÁÔÝFqÇ­Þ}‚È|ÊaJ=1ÊaÁy','',0,'?'),('iÀ\\´¯›=Xïh$','wp-admin/js/language-chooser.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŸÓ¤Êku‘lLS©',' ãõr4Øé¹ùiÀ‹j¿\"Üˆ‰ËâË6¹ÌÏ&','',0,'?'),('iÇõÕKŽRì–E‰IKî_','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingRequestBodyErrorException.php',0,'@+§°FC!L´\n×ÐIï','@+§°FC!L´\n×ÐIï','‰(BDÏlGLoæ¹7¿S¾Úì?”Ñ0§oB\nýXEÁ','',0,'?'),('iÊÛHªý9Uit5ú¾p','wp-content/plugins/worker/src/MWP/EventListener/ActionResponse/FetchFiles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CdM|)ã\rKrÅ–q¾','©žÅ#¸	4­óV%EpïË>FÞ,í¤_QŽ\rðÞ','',0,'?'),('iÔ­çf¶F.¡Í2«#w-','wp-content/updraft/plugins-old/updraftplus/vendor/composer/autoload_files.php',0,'9÷Kü§?£ïpWMˆ \\','9÷Kü§?£ïpWMˆ \\','.7®B·TW«š‰®8#)Ð“mô3¬Äjõdç','',0,'?'),('iákìñ­½CñíT,ì','wp-content/plugins/wordfence/lib/wfIPWhitelist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2¥h‰Û2aEÒ™0','©Dê:ä]è¸z°ÙÐÂýw%[‹jÌo†ÐÝûŽX`×û','',0,'?'),('iäº›bÏ6¦¦Äe‚g','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidRequestError.php',0,'aMçZXé	Ûû‚K¨','aMçZXé	Ûû‚K¨','XBNyU½(Ò¯ ¹9@WÙþãÿ¯ó7éêlö;åïþñ','',0,'?'),('iõŽxôE@¹ƒV²ÎÀE\"','wp-content/plugins/updraftplus/includes/Google/Http/CacheParser.php',0,'wÅÃOTÓ| t±h$òx','wÅÃOTÓ| t±h$òx','›È¾ŽWÜÍp*Ãó;z‹«íåJW{€ãæ]ilc·','',0,'?'),('iöà®È¾=1g£Jê‡','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobPropertiesOptions.php',0,'Èeïõd¶‚˜ó8Thú','Èeïõd¶‚˜ó8Thú','Ò‹½\nt/D\\ˆ%RàºCñD2#ÝÂz—oàé§$w','',0,'?'),('j7“îh$¸íÙƒqî‰','wp-content/themes/Divi/includes/builder/class-et-builder-post-feature-base.php',0,'éMi«¥eŸ%ì«\nëÔÐm','éMi«¥eŸ%ì«\nëÔÐm','úƒŽlÓ8õÈ~ìKÅç}ò¸®?ò›˜ „{rê>','',0,'?'),('j%n°lÓƒ¡9vð¶','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/PhpProcessTest.php',0,'iÔíœûJHHhÕ¼Æú','iÔíœûJHHhÕ¼Æú','ÂÈ#ˆëHÍoŽ+|e C²„±ŠŒÌøâ»9¬1','',0,'?'),('j&ºV1™¬®6“4ª¯ëâ','wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾íér‰Á9 #Ó{…','ï¾±ÏÜn—Ñ¿¹0c~NüÿræñAuóg~Î”ÎàI','',0,'?'),('j479{¢û•-üCÜËM','wp-content/plugins/really-simple-ssl/assets/css/wcag.less',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÈÞô²©W~R½2®D×ŠÊ','ÜßmÎG´ „ìW^¿¡B»&ž\0¸„¯bL*a	x½8','',0,'?'),('j;¡Ç_§=Ø\Zü“˜','wp-includes/blocks/group/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šâ!Ž¤6SHp1h}G*\'','˜í‹ž¡0x£Ø{üÆâI¦<Õß¥«CÅB[xRÄdä¦','',0,'?'),('jQûõ—e÷Šø;âe','wp-includes/css/wp-pointer-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','û¦ükÈdÁ\\n´Ue¼S@','²äº¹¤Ï7åZ%\0L‡|•¤I—`žÛ?{hlG…\\','',0,'?'),('jWw	HƒÚ™_)*Õò¤.','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/Adapter/Curl.php',0,'?	5sA4ÿÊ×å¼õ÷P£','?	5sA4ÿÊ×å¼õ÷P£','Åt”:Âþ>¶UË…È¤	/›Ý4•]Ü%)?šè+™','',0,'?'),('jcµR*ÂYŸß‰÷ £óÃ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/QueryVisitor.php',0,'jJI¹`\rÇLòóüw–','jJI¹`\rÇLòóüw–','»I=Q˜  ‚ì(÷º9Î¹‡o¼p»ð/ÊHY¬','',0,'?'),('jcÃT‰ŽË\n-¤ŒÊmô','wp-content/plugins/wp-mail-smtp/src/Helpers/Helpers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?úÈHíG\Zò_Ÿµ¼ Ó','_ßBÖÎ+O‰iå#ÿ³Ÿ>ö8ÀåŠ\0ùØ-•˜õ','',0,'?'),('jh`£NCÄ6.HUN°þ,','wp-content/plugins/worker/src/PHPSecLib/Math/BigInteger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L¤9(\rá5¨·q+Ð­ñ',')™ÚYÔš-ûêss;¯Óß4XÏü6D‚ÊQz•9Z§','',0,'?'),('jmE¤ÑAXÝuw›>Ü†','wp-admin/css/colors/ectoplasm/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êŸ¬B1îR,:=ÝÈ­','¬0”#½Éâ¼„•¯/üˆt)”ÕQ~fê\0s.B²','',0,'?'),('jt¼ÙZáêÜ¿î,‡µ','wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xIIzQXKMny.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rš¼ÂøÁa©aåîi','{J®L ÙßÍ»&Õñ{©½{¢ÌT:š¥£Âã‡B','',0,'?'),('j|5Óüú:¹ÊÈ','wp-content/updraft/plugins-old/updraftplus/methods/s3generic.php',0,'|‘Ydt.Ø\'ÌìÑT¸•Ú','|‘Ydt.Ø\'ÌìÑT¸•Ú','!gÓøÈYutÆ3î$ˆrk¶q*ôTÔnešg‘ª','',0,'?'),('jä±‹¹¿áð%ˆÝÃ]€','wp-includes/class-wp-xmlrpc-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7Ü`\'SüðþÌ½','ÔI.õã‡B»Ad<3KEÜBB†­Ya¹ÉF®KR~','',0,'?'),('j…M\nârä(«[\rK?C¿','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Pipes/PipesInterface.php',0,'|×âèfÉ=µÖw¥&¤;','|×âèfÉ=µÖw¥&¤;','†ãx×½“²S+ÛÏ@Vœ¦vûÏáKÇH','',0,'?'),('jŠ´‰«pø\0ZÍò™','wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GÊZ¾xuµt´\nµµxô','ÚÂp!Å—$–­ˆ”å¼<á#|jÝßf#¡-zéˆ','',0,'?'),('jŠŠnûƒ˜ñÂÝ¤ùð¥','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/pills.php',0,'\0þ1žÄ‚\0äñbµ¨Ï•R','\0þ1žÄ‚\0äñbµ¨Ï•R','ÇÍ–tX>V/èÁ\Zö?Õ#Êwª¡Ð1ÿÑì*o','',0,'?'),('jPŽèMÈ»°ˆ¢l:‹~','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Http/Url.php',0,'×=øBËæß$˜%bîßÝÕ','×=øBËæß$˜%bîßÝÕ','Íf3øhÙŠ­ƒwOô‹”FFÒ;§°¯$‚Þ*ò]:','',0,'?'),('j¯Ò)nƒQ8Þ®á¬DŒ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"¯t0Þ,06ö¬‘<¹û','ÔQ#f²º£9ë‡;©8ŽÙ*B3ºWõao3Fcì','',0,'?'),('j&JØ‡Pëþ,^>¶','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/UploadPart.php',0,'å)ƒÐ)›\rÝÏb¬?â§ïð','å)ƒÐ)›\rÝÏb¬?â§ïð','¡–m97†+Þñ›U¡ö†ŽmÞ‰g³ß•Pej0EdOñ','',0,'?'),('j—£Éÿ5F+¸¯ío','wp-includes/images/crystal/interactive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯RÏm`òíº`™9§æ','$­Áöë©˜<x1²éÕ“»íIRï›V-VZ\\jg.‡þˆ','',0,'?'),('j–[SéG\"«6[|','wp-content/plugins/worker/publickeys/partner14.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤÷Ã²R³ó¤ƒŠ—‹Ô','Ï¢f!á ±d[VéÆr2ØÅN_¬|Â’7‘¸	hœ','',0,'?'),('jªxå±ÌÁÒÁ­Äl\\G','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/VisitorFlyweight.php',0,'72çºc¶ñ,ùYä«ôÏ','72çºc¶ñ,ùYä«ôÏ','p¼x¨eP¬›’Ì‹ù_°öX\\$8×MJZx|ò¡Ëæðñ','',0,'?'),('j²¦4-«O Õ„‚êrL\n','wp-content/plugins/wordfence/models/block/wfRateLimit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸À$1âD€\'w³¬m€½ƒ','E&&\n·¯aÊîñ~Ùb+\Z Äá)jÇþÞMÓpŸ†M‰','',0,'?'),('j´gsÍ66Î$€¤8*¨EÙ','wp-includes/class-wp-dependency.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','È§—NV}ÿäb.\'é5m','Æ[ë4Mž,Ü4¤Ü“Æx¢wBBÌ•=Bg•µ}Iìl¿','',0,'?'),('j·#LV\n[ñóí2~•)Š','wp-content/updraft/plugins-old/updraftplus/includes/jstree/jstree.js',0,'œ_×hl ^ðØI8§†<','œ_×hl ^ðØI8§†<','}µ­¶L	÷ñ»0`|øaQQêå­(;ƒ˜(’Õ³ñ@Õ','',0,'?'),('j»t×BÀ#«ì•T¸^m','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendEmailAttachment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>~–dp1|\"WŽ£»·','‰ÂìZŸ\r]s@ÒôS\'ä„\rKe\'C^ÜZL]‹øC','',0,'?'),('j½oš£½x<Ró}','wp-content/plugins/worker/src/MWP/Updater/UpdateManager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=—Ã•µªíß„Z¢J†ŠôÌ','ë?æÞ7[%4¯)}ÿÃZƒm$GÒZW’.Î%Æ\"@','',0,'?'),('jÅ£ŠÛ`Å°Ú€d¯yçQ','wp-content/plugins/fusion-builder/js/util.js',0,'™J;Wï‡ð€H’¢œ:','™J;Wï‡ð€H’¢œ:','’þ»#k¥ò\rÏN„²/ZØÖ¦–h5„Åo·%½','',0,'?'),('jÐ·®?f¡V\rÇ²ˆ¡æ5j','wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/checkout/payment-method.php',0,'ôOÌ\\Ý„úùNW›-òƒ','ôOÌ\\Ý„úùNW›-òƒ','%\'ý¬W¾_Ã¦H!/RvŒ ÷òÎŽâabmTVZR','',0,'?'),('jÓ!iOÚ¯ØóàAŸ^','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParserInterface.php',0,'?—SÑo\0\ZÌqò³ƒá9','?—SÑo\0\ZÌqò³ƒá9','€—âŸù˜Qþ¸Y¨zoy^r\\Y‘‘T8×¢‡Æ“•ØŒ','',0,'?'),('jå¥	¶vçM‹ô›ë@RJW','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/IamException.php',0,'6M$|6e]UÁ¯Å›ª\r*','6M$|6e]UÁ¯Å›ª\r*','icÊ:¤®Q[\rG!â¶¬ÏU¹ZçÿBQåôà<¼šs','',0,'?'),('jåÅ‹ñÚõ2Ø²IÐ8óD','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Atom/AtomBase.php',0,']gŽnŸ¥Ûj…’Wð7ýUÂ',']gŽnŸ¥Ûj…’Wð7ýUÂ','_c3%{ŸŒ¶ËÏnïÛÁ¹êSsMo…œ^ØÊ}Zó%/','',0,'?'),('jù	ˆQ˜ÇìŸi*¹/T','wp-content/themes/Divi/core/components/post/Object.php',0,'>Áõ#¥ÊÎ5[ÜÒVèÊR','>Áõ#¥ÊÎ5[ÜÒVèÊR','¸±l×_÷è§ì@áã/IxÁ­s#­üY¢òŽÖîã','',0,'?'),('jûdËCT[^êˆRž×ò','wp-includes/block-patterns/query-large-title-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ç>Ïâ‰[­M±ùÎ9í+º','}³ô™%\Z@qtš D4õ	‰Ïƒ ¦®àŽñK','',0,'?'),('jûæÂ@¨r:j5–{12ô','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_eu.js',0,'ZJûú.ýw-¤Jž÷Ç','ZJûú.ýw-¤Jž÷Ç',' Åå™¤ä\'›ÁëW¶ÚYLËF‰šK¹Ø%éô\0O¾','',0,'?'),('k	*x=$Æ™O\0\0Îó','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/FilterCollection.php',0,'@ÂaN©‚‡~Q®À¢[7','@ÂaN©‚‡~Q®À¢[7',')-ùÒŽËLFÇ~ò <`p½$ã+r.f† ´¢ôg','',0,'?'),('kî—ù;XPƒRø‡SPì','wp-content/plugins/wp-mail-smtp/assets/css/dashboard-widget.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~ï÷Ë“Þ@Óô5®5!a','­Ê_Ø‹,ï$ âlé°±\'¾]òˆöxJôï\nˆã¿<','',0,'?'),('kE®MêÛÀx$—Së30','wp-content/themes/Divi/includes/builder/module/field/Divider.php',0,'§d{,öÝÖáþ}cÑO}•','§d{,öÝÖáþ}cÑO}•','”ð¾x%íD”ýÌ–ö®ìl#¯–e|ùø¥M]®<','',0,'?'),('k	»§Ú<í™(GÚwôÛ‚','wp-content/plugins/contact-form-7/modules/number.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ0‰HU¢Uùžìx7ß','ô]¨‰në!Z5¾4îæ	‹mdY¦À ð Ö¹”\r','',0,'?'),('k‚ˆ¸$6O³Ò-N…x ','wp-includes/js/tinymce/plugins/charmap/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=B¶ìŸ„‹¶P\rLöâ ','Â•ˆx[žG“‹-ó90b.z‘GõÞazÚ>Êr','',0,'?'),('k†»Î½:+MØÚq&','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Coordinate.php',0,'ÃiüJiý]BSF™e÷4³','ÃiüJiý]BSF™e÷4³','!¿&«4…}N„îŽ€ÁD5§Ç9=\\‚œ-g%ï','',0,'?'),('k\ZÁm‘k&žÙuåß˜','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnHttpError.php',0,'döwU@¡71	€,5­','döwU@¡71	€,5­','}~ân*k(œç‡ÑèÚË{C˜MìÅ3•³\0$','',0,'?'),('k$n€¥þC5Ñ~yy–4ÆÈ','wp-content/updraft/themes-old/twentytwenty/classes/class-twentytwenty-non-latin-languages.php',0,'PÊ¾”ûóQ‘PØV\'ž','PÊ¾”ûóQ‘PØV\'ž',')`ýSˆc~ù´m†±1MšÉ`\r7äýÅíŒoã','',0,'?'),('k%÷\r0Ì¯·IN6äD\'¯y','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gÄ+øÚ©ÀdÞÝ¬@­óý','w bjY…Ì”SŠÀ¾Ãtc¸Šƒ š¢I¨óŒdQ','',0,'?'),('k&õAüDj#pÒ}gÃ','wp-content/plugins/updraftplus/vendor/symfony/process/ProcessUtils.php',0,'b[Ó«°p@š¨¸ÌT','b[Ó«°p@š¨¸ÌT','¾Á4ZEêrÉ²eØõæ7~ì,{y<ÌÍµn1,]Ã*–4','',0,'?'),('k6„þ *âÜßHœ	ŒuÙ¡','wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!¦,d\\	º•Ta;ð±õR','‰Ú7è#È}5VÙõ\0\\æÆ\ZO?v?âìÂôÀAÔ','',0,'?'),('k6×->˜„¾,R¨,m','wp-content/plugins/instagram-feed/img/loader.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹9)ØØZn¾º™QlN[','ÕÇ`Ùiv*Ùºàù²™¡5š[°»˜9%¥ù£D¸”-³X','',0,'?'),('k@¡÷´çXöJ	8ƒcDhí','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/CoalescingDirectoryResource.php',0,'RõôVçªœ¢í_¼Î','RõôVçªœ¢í_¼Î','±‡½ÜÈIÂÞ\rö‰k¼Ôô]Æ,ú¸T‚T	.6àX','',0,'?'),('kEìðn‚fÏ‹ßŸÈ\'qb','wp-includes/blocks/video/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/cO¡ÿAÜÛÿûqâña','ÉÞî xÑ­Á\Z¶VÇPûžsŽbªsÒ‚ÄÏ…”l(A','',0,'?'),('kFž¤“©ò1LÝ²h9Ý','wp-content/plugins/worker/src/MWP/Http/ResponseInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»¢S!íÁÅÞK‰NJ ê','áC¯‡ ‘vùq4 l5YhL+KC…ÍÿTÜ-?ò5ùM','',0,'?'),('kKÀTMïòeDèápO','wp-content/plugins/wp-mail-smtp/assets/vue/img/times-solid.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',UR¡:°¡ÉHO˜-','å°*ZWî~æä}wÕ\nû¼¥Cß1±o“=t9^Ú;¯¥','',0,'?'),('kMÏü–œ¦šîÌ™Ysp','wp-admin/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷NÊB·òß‘ú÷{W–1Ú','åÖª×T(Ý¥îýç¾Ð‚U×uüw	2Ô žõ]¼','',0,'?'),('kN˜ë(l«Zf„E\"LmÉ','wp-content/plugins/contact-form-7/wp-contact-form-7.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì\'i<Ö5‚‚1–F\0ÑSÁ','^R²eÛGØµ7ítàÀ™Ú¼SÛDWË¼0ù5°š±\'>¨','',0,'?'),('kP|nTE#©>3ñ™ì!','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedContactDetails.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PLÐËUõDrUD:Â¥ÂÕ','Ûr!4¨k1õ8*[,Oþ£zÎ Š$;J»¯×‡ƒø@','',0,'?'),('kZ‹ä¨ãƒÏP\Z\rõ•…!Þ','wp-content/updraft/themes-old/twentynineteen/template-parts/content/content-single.php',0,'Èï÷Gt• ‘‚‰ô-T½Ý','Èï÷Gt• ‘‚‰ô-T½Ý','`¨DÅr$\r:\"ÐÿD\Z!°ó@£2xîÐ{A€ðÚ+‰Û','',0,'?'),('km§|÷‡Kma0í\"*ˆk','wp-admin/js/tags-suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ç!›Í¨ÓpÝê­Õd•ùúØ','€r0 \"ÓËl\nòE„Ý´š*¦7‘ÚvLç÷{d','',0,'?'),('kq”{øÇ£Ô?‹’Ý_’\0','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ListContainersOptions.php',0,'ÃLüœp×¸ a‘OFw·#(','ÃLüœp×¸ a‘OFw·#(','x`Â½rÊ„´¹D»é‰YÝ•îß¾|¿yüÎ&','',0,'?'),('ks[vOc›+õš9×','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/PuTTY.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j´-æ›}-¸“íV­\nTˆñ','gÅD\"—‡ÏçÏámûÜua\r!Jrhóø\0-¯Ð´','',0,'?'),('k{kùƒù¦%$AèÂ§Ž','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/MultipartUploadException.php',0,'1a5,¤™ê7ƒˆŠ¨ð×»','1a5,¤™ê7ƒˆŠ¨ð×»',',µ+“&2‡¢ñSLo«]Gtgò8à–++tÎe5OV','',0,'?'),('k{‡ôêWêËüçOø','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobPagesResult.php',0,'i(»ïÁXRï®oñâwÕr','i(»ïÁXRï®oñâwÕr','ºVŸã¡næ¡”ÆcÒM¤¢òŸf\nÜ¡$¹Æ¯fŽ¿','',0,'?'),('k}:ÅýçØßVNàåîÈG','wp-content/plugins/wordfence/vendor/composer/ca-bundle/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x>P¨òHåe6â[GFÐ5¯','Œðq!Ÿí™çÊ%Þ€PÙ§§ H¹”r´.L‰…~','',0,'?'),('k€NÆ÷Çrcí•©ú','wp-content/plugins/wp-mail-smtp/assets/js/vendor/chart.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›\ZâLpHÖä¡²á®çû1','\ZWFÕâ´ßØxáÖ2Ð¨önæ…úQš„á±·\'f\ny','',0,'?'),('k‰’1¿ûƒ/—Í“Ý%=°','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/MaxMind.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥Dq“d6ž+\"¾U‡ð','ÁI¸³¯äýs;Ö®ž´Ÿ«i“¼“ÓkëßEŸ@ú)','',0,'?'),('kŒðl‘ÝÃS¸1µ£ý²X','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0³¦Cg]B0mãƒœ+ø','}È!äIè¯l€o™Kæ@÷VW;†\\„ä–\\7\"€ËýÜ','',0,'?'),('kÍŠR}ÃŒ:¯yÜ','wp-content/plugins/worker/src/MWP/ServiceContainer/Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊËVpë²Þ1—jK.°l¬†','ÏK×}„èéŒ»šGÜ¯s=òÝþ^Îèá\rsZÕÀ û','',0,'?'),('k®oÎÒï\rÓ ¥&`˜~»Þ','wp-content/updraft/themes-old/twentynineteen/js/touch-keyboard-navigation.js',0,'wýñª•@”û8‚+ª^1É','wýñª•@”û8‚+ª^1É','\n<ƒª~Jö&,\nkxrÍ·ßÇÀ7ò†8ÉœÙœr','',0,'?'),('k±-Íow±¬&<ì²î}}','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/JsonVisitor.php',0,'Æ«Y\\Ó¤7é´iIÑ‡Uý','Æ«Y\\Ó¤7é´iIÑ‡Uý','ï€¶ \Zú}—WT¶Üû“0Í+AŒ¢ ‰Íff','',0,'?'),('k½úBËžãb=y†Ú','wp-includes/user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥bÉAÇÞ²„¤oB—±ÁÎ','DÇõ7+¢KgÜva¯uŸÛÙ M)OZŒF¤	§‰„a','',0,'?'),('kÂ“»›U/‘^ÞîÞð ','wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z±ÂƒÖŸ0}_ÙÏ€','Oö+­WEüŽ(\Zvl‘%`”ÓôˆÂ¢§x¥6¶ÝnØ ','',0,'?'),('kËøRÁÆç3žð®”X«ò‰','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/header.php',0,'èÂBw\\®#èù%7þ(}','èÂBw\\®#èù%7þ(}','Éñpæ›ñ\0X¶Ÿ2¿ÈóSÜJÓaš†Æh“ã­«ª…','',0,'?'),('kÙ¦œÌ#C¨H¼geÌ—y','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ExpiredCredentialsChecker.php',0,'úˆ•°ï¯•KŽáS+','úˆ•°ï¯•KŽáS+','PŽ)Åø:/ˆS@’çF\'`âö=)è”¶¦]Íõ ýî','',0,'?'),('kâ\'\n+&=¸Än`ò3Ÿ','wp-includes/js/dist/dom-ready.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜˜ÅÊtÈ-¢‡tªK‚?','äÐÜJ†åþ‰v©áý—7ÂF)M\'¬Ñ³èïì·ŒphŠ]','',0,'?'),('kç(¨–™©ê=eHù¹Û','wp-content/plugins/instagram-feed/css/sb-instagram-2-1.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*I5ùÃNïKÇŠáo(ö¶','^eÏ´ÑÓ¨ù¢Ñ‰æ°D\näv9˜·z ÆBæ·â1L','',0,'?'),('kêZ†áQ~}å?±>','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP512t1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ!šEÜSîþÐaöŽB@','Jð	_$\'Uìo&R„Jí)t\0ã\'Ûª„§J•‹1À','',0,'?'),('kê^;Ëö‚@òCíÜh!%','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Prediction.php',0,'ì¦ÒªÈyO‡‹76\"Æ¾è','ì¦ÒªÈyO‡‹76\"Æ¾è','ïÄ¦hPly™d§y\n½’ÏYƒØDí-sàlµ@ÝD','',0,'?'),('kôŽvcÑƒ§}1ù','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/ClosureLogAdapter.php',0,'Õy„…F_\0WòÔŽ7Ïˆ','Õy„…F_\0WòÔŽ7Ïˆ','¾È\0Bþ§1z«4£±Þ¶;þµVé`V9‹ÐÒà&x¸','',0,'?'),('k÷VÁ–Sã)„[¯/ê','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_fr.js',0,'òŸ«žçö˜©Õe\r£Ä\r','òŸ«žçö˜©Õe\r£Ä\r','½êŸ^;‰åréD±( MòÒÕbÝ±\0È$džKñª”gå','',0,'?'),('l\n—úVg™‰ÄíÆª','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseNameError.php',0,'`ö­ºâ‰žKùuâäá—ë','`ö­ºâ‰žKùuâäá—ë','¥¥?§ÿpˆ¡´&kÆµ»w\Zª\"íGl×ôr‹','',0,'?'),('lc°ƒ+Ú.ä¤GW::}','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/zh-TW.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­öæàâQÚ‡©\"\rÚI;','1~ToaíÓ¤ð6ÐdNG2g¶!¸VÍïÓÄ	X!ž¡','',0,'?'),('l±ûß\0Þ±ë·—E6±','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/visualblocks/plugin.min.js',0,'aÍ]yŒ¤½%…±=Q+Fø˜','aÍ]yŒ¤½%…±=Q+Fø˜','tívßm_iü3r8\\ÖÓó§‡fo0','',0,'?'),('l/\nÑÔ€°WÁÍ±-cÏ','wp-includes/widgets/class-wp-widget-recent-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í42\Z¶¨!‘’p<øxÑ','Tbø¾¦›¿ˆFI»òÏj\'!ªá\'á¬}A;W','',0,'?'),('l8LB.3Þ”\n£¾÷%V¤','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSmsCampaign.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á2…èX¯—`•\Z·¥O','ÅJ9}€	1pF„b¿`ä\"~bj\r‚Ž,Ÿx;#Ò‡Ï­','',0,'?'),('l9é¹=¯ühÇ,>ÙÃç&','wp-content/plugins/wordfence/lib/wfDiagnostic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·òXäôs?ãÙÍÉúËŸñg','?`ªyþRýÕ¥×è`UÊ™´ÈZÇ†Þf³™sðábâsOœ','',0,'?'),('l?ûARžË–`ÖÜ1üƒlÙ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/KoblitzPrime.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­i•Ø÷zÈoºµËÖùÄ','R¦\\qD—Õ5	Ç	WX]”%¨tà}v§¥¼…]±ë','',0,'?'),('lSÖ/@Ô§?\nç+ÿ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/IamClient.php',0,'ÚAÕ½L	´9FòÛòËµâ','ÚAÕ½L	´9FòÛòËµâ','ÄñáS|R…h^Ó›|q›²ZKC¤>6s%ºB^m;»','',0,'?'),('lVÌø,’-ï¤iÏÎÉûô','wp-content/plugins/updraftplus/includes/Google/Service/GamesConfiguration.php',0,'Å±XK\"¯$7nÊJ','Å±XK\"¯$7nÊJ','F\r%¾g×ƒÔD”xQ75Ì^)p\"õ/¢3Ä^ñJ”','',0,'?'),('lZ¿q¡#eS%s˜õ7Yæ','wp-includes/js/dist/notices.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›é#í;›ÆËìR!GÖŸ','.ÐªnkKBI‰¼7ØkÒEd\ZjuÇô»ì\n†ëx•¸.','',0,'?'),('l_g%¿q\"O$ñ³°.©','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/border/field_border.min.js',0,'FÓxb¯ÐÚÁ_ª7Œ\'Ú','FÓxb¯ÐÚÁ_ª7Œ\'Ú','WÇ–èÖÌ¢––ÆØµm}O³÷JýqðìÆ&	5¼3','',0,'?'),('lbÚ\r[…HÉRBZJ¼','wp-content/updraft/themes-old/twentyseventeen/comments.php',0,'ã:ÁÆK¡i×L*²½A¯','ã:ÁÆK¡i×L*²½A¯','’|¢à‚ûw=§ðÏ¾\"Öh˜¨ÿ…n\0dôíù8ëï','',0,'?'),('lrn4í˜pRJõzœ¦€ü','wp-content/themes/Divi/includes/builder/module/Sidebar.php',0,'éêÛã <Ž²Ù.0#\'','éêÛã <Ž²Ù.0#\'','OAX‰µ.€!5K½Øœ~Ì¸“á»ß*|v|a“','',0,'?'),('lv‰Zœüƒê|²N^/Ô','wp-content/plugins/wp-mail-smtp/assets/images/logs/single-thumbnail.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯<)+¼Ž?­xæÏÈõV','®›~Ï,\"ÛíeÙv«(Ý7ø¥Ó¡ùlƒã¾‚:8H½','',0,'?'),('lvüWÁ‹3UñýõÊð´1','wp-content/plugins/worker/src/PHPSecLib/Crypt/RC2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹nHó¿ÇÞ@ºa|k²÷','D”OW-I±yÀh¼sæö§’WÀÕ«Q­ëë\Z&ï*M','',0,'?'),('lŠ@ÄŽ¢m+Ø]û¥ŒÝl;','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/SignatureDoesNotMatchException.php',0,' y<¾\"ÉPÏ®EãEÔ',' y<¾\"ÉPÏ®EãEÔ','Ó\'¬Þ­F0æ0ü›YôL±†_aÆÌz','',0,'?'),('l—ñLXžiUv8FË','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ContainerMigration.php',0,'!-0Ä\r#`1U=b$71','!-0Ä\r#`1U=b$71','l0˜\ZKnñ‹¤‰E>‰™¡ \"ÿµåõ\\ð=Ç','',0,'?'),('l™h-vc«‡cG“ª-Vø','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/BadMethodCallException.php',0,'˜Õ MòßŒuŽµ.<¢','˜Õ MòßŒuŽµ.<¢','Ý´ÏÍß‚¶0³áüb…ù}å?\n S£îHBu L…	\"','',0,'?'),('l¢ |ÃO÷Ës¶Ö¼aM','wp-content/updraft/plugins-old/updraftplus/includes/tether-shepherd/shepherd.min.js',0,'„ÐÛùÕ\n+bA|™-õÓX','„ÐÛùÕ\n+bA|™-õÓX','g7>‰^¼r—¢Ö²”ƒ£ÄÀYgd7ç¾Šó¹÷`=','',0,'?'),('l£–i ïÞËK•­ËÔì6','wp-content/themes/Divi/core/components/data/init.php',0,'ŽZ¼í”Ü:ˆY˜“¥Oø','ŽZ¼í”Ü:ˆY˜“¥Oø','ºïj(;1k²&‹P.‚²«Ý¸g«Á\\WÒ¹#ø\"','',0,'?'),('l­jùCvš.º©-½Nþžò','wp-content/themes/Divi/includes/builder/plugin-compat/scripts/sfwd-lms.js',0,'IÔÐ÷êO2MúC0(êÃEž','IÔÐ÷êO2MúC0(êÃEž','~K©ì»vÖ<ü5È·þ|ÐœY‘\"èuƒï1ˆ','',0,'?'),('l´RKSIÝÇRÈæ»³s','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetLists.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë¢õ&`è3ñú¼qêƒP','¶\0FQ\Z7î­[€[œ”ÊŒìåJïÑr‰þ,“ì4“','',0,'?'),('l¹Ìö<»ô#Ýqˆ,æ¡','wp-includes/blocks/archives/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lÛÌ-OïTT’Bàd|P','ÐÚq¡}¦üŸI}nª-‰›­’{]sÏN-oõ','',0,'?'),('l¿ÑiëA3òãDVWo¸','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/ServiceRestProxy.php',0,'<&²‰`55Ok„‘Ä¤','<&²‰`55Ok„‘Ä¤','6NþGv]{äØrlh›}vCØ7v€`óÿMf','',0,'?'),('lÅéŸbºƒ#J,ÚØ','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/ExecutableFinderTest.php',0,'%­õ¹Û\r3‹aš®/Õ','%­õ¹Û\r3‹aš®/Õ','iÏT®Ioqb1Lœ#l½ØTãdY¥º\\ên…6¹y—ß','',0,'?'),('lÎ5 \nf²á‘+gõt1™','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/advanced/export-settings.php',0,'ƒJJ×K(	L„\ZXwŒ>!','ƒJJ×K(	L„\ZXwŒ>!','Ðc!Ý¶ó‚!\0C¼@J•,(eÁM¶Ãã<µSå]üZ','',0,'?'),('l×¥\r„¿§€Á00j8¸m','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/MessageFormatter.php',0,'ÉTM*c4¿×E-\'§a','ÉTM*c4¿×E-\'§a','^V”ù—Ä¿£L¯P¯p1YeÜà€Æ#ûCþ)’©','',0,'?'),('lÛqY(óÈÆ(¢¿Š¨ÍÐÓ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Storage.php',0,'fæë/ÂAÓt:ÀMï%','fæë/ÂAÓt:ÀMï%','îÀ\nkH~P“Ow^Lÿ“itçQçÉ™­+	_3–|#','',0,'?'),('lÝ€14†¯&yíaûƒW','wp-includes/css/dist/customize-widgets/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%( Zrøç‚æÓfÌbPX','zÝép§ež{Fv|Vl_P5ö;Eh<*1ah','',0,'?'),('làF®È[öFÊ¬IsØ','wp-content/plugins/updraftplus/templates/wp-admin/settings/tab-addons.php',0,'ìC+•´‡é~7rŒ/S','ìC+•´‡é~7rŒ/S','6CUs_7,éÃn™£OéäÐ„.ÞÍ\n^b?\\“™š','',0,'?'),('låÍXMÔ÷\n9É¥;ÿ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/PKCS8.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aIrë6\nß=\r=_ò×¢®','©lrý†èwÆŸNØRáàer<oäÄc¦ðÇ¯Ìî¬','',0,'?'),('lð|„Äl<%1Ôâ\\2Ò','wp-content/themes/Divi/cloud/build/et-cloud-app.bundle.js',0,'¬ô¤“,>€ƒ¡Z[\ZO¾','¬ô¤“,>€ƒ¡Z[\ZO¾','•óG\"%cœª`†4î¹É–_\07jñuúõ1XÎPW','',0,'?'),('lûÊÈB£‹žjÀó2à','wp-content/themes/Divi/includes/builder/frontend-builder/view.php',0,'šFõZ¶}\0(/á~H&','šFõZ¶}\0(/á~H&','ó*X ú)s/þlŸmø Ç\"kÛŒƒ–·Ä','',0,'?'),('m)\r¼…äôaHš­E±','wp-includes/blocks/social-links/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bzn\n(ÿõÂ9.ZÌœ(','r‘Ì[OÿƒÊ¤£@ºH +…7Ç®\'ß@F–å·•','',0,'?'),('mùéñ©‹\n¨«x4@=ì','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/StylusFilter.php',0,'žÅVR\"iRç:ˆï|/','žÅVR\"iRç:ˆï|/','ÇU¿Lc5>À\\ÜâmdÝ°Yû(\nÀÓâÊá6}\"','',0,'?'),('mD’ÆTŽms‘·òA©}','wp-includes/certificates/ca-bundle.crt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UC%PÊ…êˆ$ÀËpöŸ¥','à·<eN¬¢§fÀFKþFƒ¸öoò-¿YöìÖÓSlUø','',0,'?'),('m)‡œRßÎ0²CðœƒªÐ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListDelegatesResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Õ0L¯PÔó³\"gžŒ','˜Ž€\\¥—þë,ÆËÄ,@™>h¡Ïœ^ù:1LŠK(‘','',0,'?'),('mÉ²{MÁ!A<î(OgÈ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/theme-chrome.js',0,'°»k5ëëóxè\nwbÔ“','°»k5ëëóxè\nwbÔ“','\r—ðæÀBÚ%*F\nÃ¸-H^ˆa ÉZ³N§‡õÉ@','',0,'?'),('m(;lô3(ðØ›Èfg6\0','wp-content/plugins/instagram-feed/gpl-2.0.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ¡@¹‹âÂ¼–õh\'í#','¼ÿ\0v1£êsÔNí>cIDÙ¦¾Ö„Ié­0ÿ-','',0,'?'),('m0#½v€–© b,âA¸Õ\'','wp-content/plugins/fusion-builder/inc/templates/options/radio_image_set.php',0,'ç›po,³”r\"Oû7‘#	‡','ç›po,³”r\"Oû7‘#	‡','ñÁ€Ž%ñFé`Í•™Ù1›Ýo››¡)Ž“µºåI²','',0,'?'),('m<%äý‰¥}W($ŒÛ','wp-content/plugins/updraftplus/methods/insufficient.php',0,'Ò.¿$c×ÖW‚?:=à^','Ò.¿$c×ÖW‚?:=à^','W®1Ynœw¤+Q˜FÙª\\,|ñ2Ûb…!','',0,'?'),('mAÂpä×	1—ÞGõU/','wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø×‹¿PoËv·”`­','ñZu®E-Á-ßˆ‰«‚ªþŒü¼SÿC‘Ëdi5$r','',0,'?'),('mAçðY·àÊÀ®Rb|ÞSŽ','wp-includes/ms-default-constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&‹%šMë‹AºbéäYè','_%†ñ¶¼Ùíê·Ø £ë+ÂþgÄÏ`‡ñ}<˜™ô','',0,'?'),('mBç:R\Z`[ægØ[¾v','wp-content/plugins/updraftplus/vendor/symfony/process/Exception/ProcessTimedOutException.php',0,'\0÷`¢s½~z^³ö','\0÷`¢s½~z^³ö','„SXÏ*>c½êB\\:4F+ïV•”q\\ÌÞ-þSáåy','',0,'?'),('mEš¯ñö¾º\\ç)ÞØoÔ','wp-includes/js/jquery/ui/spinner.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0ŒÀÉç´øäì“<8zÓ+','ñ5ÿÖúbWŠµšO³ÑhŸ_ã²_£©Ø I°‡','',0,'?'),('mH¤³>SÁüAŸ`ï®','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-waypoints.js',0,'ÿ=¦„ˆUG#…4i©×W','ÿ=¦„ˆUG#…4i©×W',') P›h¢­zÚÎ-P^LP\"£ž³\")¥tZ‡¼Ò','',0,'?'),('mMdíí¦‹Ì-¢6\'Këý”','wp-content/themes/Divi/includes/builder/module/FullwidthMenu.php',0,'{[ìH1œCÑ »lËéš','{[ìH1œCÑ »lËéš','°Z…ã+-ø.ûdL;õõh¾©ÆëzÄ.Œr´‹t','',0,'?'),('mO€õGÍ[cÙ`‰]¤Ëå','wp-content/themes/Divi/includes/builder/plugin-compat/yith-woocommerce-dynamic-pricing-and-discounts-premium.php',0,'tòs±™OÍQ¦CŽZ½ðK','tòs±™OÍQ¦CŽZ½ðK','†cÏŒAmQAÈÂYt×)™\n “Úœ·Dt9<C ë)Åè','',0,'?'),('mV@ýwl€îD\nhG°Û‹–','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Pool.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“ñ9Rö`Å•Ç¿¢* ','eÛãÝy8´Y´\\¥©JwÏmÔÊ€jãûA”5›U','',0,'?'),('mY·Á“š}É½ë…?','wp-includes/js/jquery/jquery.ui.touch-punch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LÈmÄQ4Öƒãˆ]±','k>jT@©—ŽzÌÃÈ¯êÕœ.OB×ÀjÉ0\'ôêt','',0,'?'),('mt“›8÷Ç\n.¤Œ ˆ”','wp-content/plugins/fusion-builder/js/views/view-multi-element-sortable-child.js',0,'6¦Ý\Z|‹>ñbõ6×lRa','6¦Ý\Z|‹>ñbõ6×lRa','ßô|êñê™’z|çGŒx“¨¶\n¬äVHñ*®1=?','',0,'?'),('mt´ƒšå&Œ|-(m}Gò8','wp-content/themes/Divi/includes/builder/plugin-compat/woo-paypalplus.php',0,'H»#–…¢¬*#»=¼ÖÂ','H»#–…¢¬*#»=¼ÖÂ','AAàîXP\"à^õ^4Te~x\0…\rŽHp¬¢€EùÖÖ','',0,'?'),('m…Kmž°_Ž:Ô»ÚÆ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidCertificateException.php',0,'’p@Ò’—ÿ ‡ä/ú¹','’p@Ò’—ÿ ‡ä/ú¹','¾«Cb ÊEfYî”Œ\"ÀÎÒ_ç¤ÈúŠw+õ¹‰E','',0,'?'),('m…ç]íx@@«ðäáOb¬','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetCampaignRecipients.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2¥˜:Ä<à:ÃzàÐœ','QZZ©gåÊúGÒå•V¢nKà+´ô–æhÙp†%','',0,'?'),('mˆº-\Zm1½¥Èû£wÇï','wp-includes/js/jquery/ui/sortable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OÍºî(žÁÇÑ+ ]6*','íÌÐ.6BlN8ˆK{MÕ`:Z:¿˜å\n…þb¸vfPhÑ?','',0,'?'),('mŠ|áÅ|\08|™Ýr>','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-blog-preview.php',0,'ÈGmhÇ‘²Ä\n«[«à','ÈGmhÇ‘²Ä\n«[«à','M!Øâ£Cœ;Ë:^Bð÷Ã//Ü­·¡•HÔÌ³Ÿ•åû','',0,'?'),('mœóÜ©¦;\'×Á{[q:nÊ','wp-content/plugins/wp-mail-smtp/src/Providers/Loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶¦w8’œ}3œUÛ3#“','CôúÃ™<~Ž3žKr‹ˆÊ„ãKw~~&êßI\'òWš™\"','',0,'?'),('m¤Žˆo–FåïÝâTò\Z™','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/CacheBustingWorker.php',0,'§‚»’F+Ù/*³Œ(ú','§‚»’F+Ù/*³Œ(ú','ñÞù†Îè;Ý|‚>æ}ž\\ïp$pÊ²‰ÓòžB›ZŸâ','',0,'?'),('m¦â}H9‚lëa\\þnÐÍÊ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/Gruntfile.js',0,'>’Nóæ)#mÆ2b÷\r','>’Nóæ)#mÆ2b÷\r',')‹8}}mº£\0ê¸›ŒN\Zí2}{]Ès¢ßyˆ','',0,'?'),('mÜÊX`ñí8­øÆôŸ–','wp-content/plugins/updraftplus/includes/PEAR/PEAR5.php',0,'\ZgÕ€	7*l¼ÝÖ8±(Ï','\ZgÕ€	7*l¼ÝÖ8±(Ï','k”g±î^òžë}\\0T1xJCÿGb:¿ÙK~3ã','',0,'?'),('mè|bÍ–Tm¢[Öp','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/PluginExtension.php',0,'\\áÒ[ÔZæ€…x\\?	','\\áÒ[ÔZæ€…x\\?	','áÓÌ97 ƒ^ÝÂ#Q3ïä¿¾1«•P9¡¢€','',0,'?'),('méB ÄþúIžŸSáN|','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Theme/Update.php',0,']rô`\\:° ªÖ„vSÊM',']rô`\\:° ªÖ„vSÊM','“:Ú²3J43Ø·Pâ©^/˜u—üŸÍmS—ýÎ[','',0,'?'),('mîß·FQo‰Ú…œö\n(fó','wp-content/themes/Divi/includes/builder/scripts/library_scripts.js',0,'5£‹NŒ#år9Å´U©Œ','5£‹NŒ#år9Å´U©Œ','C–¢Ú÷¯\n]RùÁUiFóãúúögDX:ú¹Î„njÁ','',0,'?'),('mðå&5’‘úƒ™ã!œ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateSmtpEmail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R´¶SW•\ZÞÇy›Á\r÷ï,','XÒº\\K(ÝrbÐZ¤ØK¯p¾Ït´é)¨6¬²öÉ=é','',0,'?'),('mñaU;óEnþHQ™Õ²”8','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/GamesConfiguration.php',0,'Å±XK\"¯$7nÊJ','Å±XK\"¯$7nÊJ','F\r%¾g×ƒÔD”xQ75Ì^)p\"õ/¢3Ä^ñJ”','',0,'?'),('múlõÊršH¸ˆ0œ8Ó]à','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/CookieJarInterface.php',0,'\'XwÇÅ<hJL˜Ú','\'XwÇÅ<hJL˜Ú','ð­Lr\0ºàõ¡¤˜†QûTT™d¸‰mïorÆƒë4Qj','',0,'?'),('nQ¸ÊÊ’\'”kÃÞ\"%ã','wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+\r×îÎ ;KÞÛ”ºb/Û','ß ‡P x²|íÎ˜Q=­	ëí„¤Tc²vL\n*È°','',0,'?'),('n~M‡é#ä k£|Š','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/CredentialsInterface.php',0,'“éëéÂ,8.¥6•—…ƒ','“éëéÂ,8.¥6•—…ƒ','GgÊîÙ^n|*0¯>Ñ—û×S„/*äHPrGÕòÔš','',0,'?'),('n]ûj7<3ISsQß','wp-admin/images/post-formats32-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·t.E¶­ê5G¥N\Zóþv','(Z¨,…œîªIm­Y,Î‡üÔ—ñÆtGŸ©£žú¯¸«a','',0,'?'),('n[	X”‡ƒ}É0‚','wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LL’#ÃÅ\0‡uD,ÑYþi]','®~^ôÏÍÙ´Õ	d·íi*ÐŽ˜ÌW„õ‹ß<6ô¯Æ','',0,'?'),('nÇÚ0_ÚƒÝõÐŸÅ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/AbstractMessageParser.php',0,'ÒÚ²9c%4ô–k(A5«æœ','ÒÚ²9c%4ô–k(A5«æœ','Ë«ÔÄ])«L´¸ÞÐpž÷Õ²xQòx»%)ú','',0,'?'),('n#©t=•\'…’ÁÞõb]{ñ','wp-includes/js/tinymce/themes/modern/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UŽÛöÈEÉÈ|Òh(Zf³','Ó£	}•Ê«ÌEŽ0ò).TXÂøäK×d~ÙHµÿNlK20','',0,'?'),('n+Àz¶oÞhs…W','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/InvalidArgumentException.php',0,'áv£¿¼F­ÏŒÅ:p­&`','áv£¿¼F­ÏŒÅ:p­&`','¿À1FÇ›ðcá‡%Ñ£ÂLòo÷Ÿ]f«ý+[zgyý','',0,'?'),('n3›QêX±ŠøJ^šçd','wp-content/plugins/fusion-builder/js/fusion-builder-front.js',0,'H$RâÊÂ`\Zkz<iz','H$RâÊÂ`\Zkz<iz','L`%oíeøh¾61¶*ßRêMgƒâéÖül°­áÈ%¹VY','',0,'?'),('n?Þå<}rm\'Üeq c','wp-includes/blocks/site-title/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rgm/ò®Sç½&;w',']BkUïŸJ­(¨Ï…í|9«™Ô| CãÚpûÁÏñ¤™,','',0,'?'),('nAj+´uªúVG7d','wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nR1íÕž‘Â\nþixBi','‹µìSóâƒ§í¯É=ÈŒbjK„½ÝðŸÝiý$ïýê”y«','',0,'?'),('nCºâM“c]b‡Óh>;','wp-content/themes/Divi/includes/builder/module/settings/migration/InnerShadowToBoxShadow.php',0,'‰#Î9G±y•…]Ý•v=Ö','‰#Î9G±y•…]Ý•v=Ö','îou„ð¥úÅ†:Cû&È]mÆ²™Û1Jjç‰I˜','',0,'?'),('nF\\1êðß»7D²üÉ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Cache/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GÁdÒ—Uÿ€DiDìo^´','Å1\\¤ ˆoyÞ.	SRF‚«OŒ®rd;ÂVO','',0,'?'),('nO->åsP§8’ì ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VŒ®£>…R¯-ð\\Â','ï‘ìw¤Ýö·øHÿ]H×uKÏïš¶:gaéþ7¿‚M','',0,'?'),('nZ/1T:{&^„/n¿ý†','wp-admin/js/media-gallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö”_8Ùß5oØ÷?éþ–','Æ¤$Ù30™·I”øXßÇC,b¼‘Ž\"0l»NæžF','',0,'?'),('nZ¨cB¶!±Q·€-PV{','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/AbTestCampaignResultStatistics.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'Äéú·ŽS†³PT\"À','Q‚Ð«Ê,Øµp5ÓÆ£ÌQ\0)qäuå´ÿ¿rmfØ˜','',0,'?'),('niÙ?RðÂÐë¹SºËL','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ListContainersResult.php',0,'Á~Çì¡íKïÝƒ²hÉY\r','Á~Çì¡íKïÝƒ²hÉY\r','\"\01ˆ½„m¥Ak¹õÓn*B­PÑB[yÙëº(Xƒ','',0,'?'),('npÛsµ|~k l9¹y.<Õ','wp-content/plugins/wp-mail-smtp/assets/css/admin-bar.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1‹Šg‡Žœ}l™¶àº','Ýw}ˆê¢Ô¬­édiId¨çO9×bI8â2/ð”œ_','',0,'?'),('n(ýs†Z\r“JR‘Š•R','wp-content/themes/Divi/core/code-snippets/app/store/edit/sequences.js',0,'ÇET\\’YKÜèÆ¿Ö=š…','ÇET\\’YKÜèÆ¿Ö=š…','¶¶\n!vÛÏgóÖ½ŠÄ¶ínˆ5në¬Öeîæ µ','',0,'?'),('n‚û‘cüò>ß÷åàŒ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseUpdateError.php',0,'=¶Óeôæ@ÕM=&ž;ÓÌ','=¶Óeôæ@ÕM=&ž;ÓÌ','«ª:½Úñ˜KÐ¢¼¢îçA¶?¨¶˜ßy?ˆMð|üL2','',0,'?'),('n„{ÍÒ„±:ÓP‹“ÄÄ','wp-admin/images/about-header-about.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±w`LKs{ê‡¶m%Æü','))§§náÃNpiMÒO°+ÌeP *5¦y¹Äj†XbÖÖ','',0,'?'),('n“ÆíÄ@’§AŽùF´','wp-admin/network/sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rñÉâ-osqÆ€Sè}\\î','øÀº}–!.Núäæî8–˜ÂÜ*4éIHWt^õ!©Òžz','',0,'?'),('n˜®$Ñæ­Å@¨BÌ§„','wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/CookieJar.php',0,'þ±!>ÉñÑ(y_ÖXÊ¡','þ±!>ÉñÑ(y_ÖXÊ¡','\"Vý·ÿKâ\nu	±Wº•·ï|Ç¿S©Iºjªt','',0,'?'),('n«î¡³ŸeF\rsÛ=','wp-content/plugins/worker/src/MWP/Http/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('n¶1|WŠ$ì„§`’Ï','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/Session/Info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ãÁ¸µiðYY)°)Ö','—¤Ó–ço¦ki=F¡6”è ^°»L6c	bŽ€Ã³','',0,'?'),('n»¤Û!&iþ$¨ðH;èÐ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FbÃ¦’÷ÙOèì¬ýÒ’Ê','ëj4&ãÃKˆÆRÔþôCÖ˜?ÚæSc‚Só\0…»','',0,'?'),('n¾BpÁÌÄ~à¥b–)ƒß','wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthException.php',0,'\"ØÈ€¢bÍèxw)Q','\"ØÈ€¢bÍèxw)Q','«h¸Ý- K<èAøx<#Ö7‡&PýIª.¼ #{Å','',0,'?'),('nÁu¬QÁÔŸéæ«`³·úM','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RemoveContactFromList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']òëÕñ0Z·¡Çu%','äQÔ²ºÅk%‘†qfæáe-ìb)k)Ãéïý7E','',0,'?'),('nÅ¢¨)á®cˆ›Þq^\"','wp-includes/Requests/Exception/HTTP/503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%§5ÆñÆy:	cx2','¾}¶¬=3xûA9¼ªñËl«p\0‚Æ°Ó9e.O','',0,'?'),('nÔÍæná¾Ç‹ÕSH€†›','wp-content/plugins/contact-form-7/admin/includes/config-validator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';mº˜s3BF\n®1”þNâï','I;b|HR\\O*ö’™\'¤ß«v\Zœ¡(À”Û‰´Q-µ{0','',0,'?'),('nØI.—r(Œ‘\\à®ÿ«','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/BaseNodeFilter.php',0,'¯_C˜…µ£v„LSNP','¯_C˜…µ£v„LSNP','9;Z•\0®€#û÷¯ëÄµ£×ÆÆ{ÿ7ÌéløÒ','',0,'?'),('nãÐº™Óvýnj=Í®','wp-admin/includes/class-bulk-plugin-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6/M…<Ï‹‘­vk5','Ës„q³<âú”$ùwtü¶ªÒª¾kÔ‡6´KLç','',0,'?'),('nï‡,ÑQûéð3b¹õO','wp-includes/js/dist/warning.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­Îâšq´yÎçÍTCgÑ','xl¸:¼¿ü-ãzŸ¥AD-j]Íæ2ÑòÑ;/`','',0,'?'),('nóÊó09j®v8õ\"','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å‡\0ùsÏ4§zž9€>Ö_†','	D+®Ä´Œ¿ÞÏ!¡³Í„QÐþõ“…¬ÎWŸªC','',0,'?'),('nô•Køô•ÆÏÐƒ}m','wp-content/plugins/wp-mail-smtp/assets/vue/img/lock-solid.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üƒÛh(Ÿ“ë\nJ¾','n“Xç‚0\"vTtñ/¸Û”Õ„£ãYÆŸáæîzŠy','',0,'?'),('nöH\nt(VŸùáÜëˆ','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/Exception.php',0,'O\0UèPòVÝ¥ÓlÆ1¢H','O\0UèPòVÝ¥ÓlÆ1¢H','¹Bç3¾\\4»ÉÃ‹¾ÍULÉrâ@ýõÙº’‹®x&+r','',0,'?'),('nú×BP-`Èá\"Þ6øŸ)','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MalformedPOSTRequestException.php',0,'j©›\râO.±©Þ}òq^8ó','j©›\râO.±©Þ}òq^8ó','»œÊSÀE™ø—UÅbÎaÆ	g’Éµ$\"«ìa•ò\0ê','',0,'?'),('nûâ2\0cóÍbólUV¢','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/preview/plugin.min.js',0,'g˜F_¶à«½L!Æ¼’³','g˜F_¶à«½L!Æ¼’³','ó˜pÊï¤šp<Õµ8½ü5Ñ•ï6©“aÌ¦XU%œ:','',0,'?'),('nüþÑV~R¯Á†/w¨','wp-content/plugins/wp-mail-smtp/assets/vue/img/loading-pattie.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/¡&þŽÅÒâÞô5á†&',',—XÙõ`á2GÛûà¼“àáN\rE)îGª²E:%´¶','',0,'?'),('nÿ®Û—ÔðvXH)é','wp-includes/sodium_compat/src/Core32/Curve25519/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y¢ªÏ›ÑvjŸ×\nÀ…Ï','ãSÓx–^öV>mÐ!-ªqì÷ÌñDÙeVÑßÎÈè','',0,'?'),('o§6*™@óXýÅ™p|','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/KeyPairMismatchException.php',0,'½\"q=Ëà¦IõJ:Ac','½\"q=Ëà¦IõJ:Ac','Jƒ.¢@œJ2BÙ‘Ÿ¥…C´Ïdq^¸}Fje†\0','',0,'?'),('o‘˜ê²å¬¶—èÛ	^','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/BaseCssFilter.php',0,'‘3z~iiÒ èGg‘6|','‘3z~iiÒ èGg‘6|','»	Gè’ÛT{û;š\n*KXBM3µ…ooN3@HÉ','',0,'?'),('o	,m7tØD^¯L€ñ','wp-content/wflogs-old/config.php',0,'€S—x¿ff7zÆÒ€‡iÇ','€S—x¿ff7zÆÒ€‡iÇ','¨ûè‰ÍØ¢Yý4C¥æÓP¦¼¹Á“ðÍŠ™_…ö+*x','',0,'?'),('o\r’þÇâÐ’–ÃY”HL','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/css.js',0,'0ll‡x£Ä\ZÓ:$j 8¨','0ll‡x£Ä\ZÓ:$j 8¨','ûß}ã)ÌEÅ°Œ|’äåÚ²@ª¡úmžÉÅr_¼á','',0,'?'),('o#ÚÔÊ«”Ð¶J‡Šé¼¯¿','wp-content/plugins/wp-mail-smtp/assets/js/smtp-dashboard-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤TŽE€®Êó¶`\0°‚3Ä','-ÚZðô¨o/Ÿõ½S<ÙÃ©6j¯–KVaèXÒT£[','',0,'?'),('o\'RD-”Ü\0¶±¡o‰É','wp-content/plugins/wordfence/images/support.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬Clâ$£‡r¼“£¼n<.','ŽÊ$ãMû¡Ô®¦&æâÃ(á©˜s¬µ^	Ï¢*NÀÞ','',0,'?'),('o+š6 ¡ˆg)Âæ;<¬','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/button_set/field_button_set.php',0,'¤¤Xfcr+/¬CMðX\'(¥','¤¤Xfcr+/¬CMðX\'(¥','w¹\\\nÊùé3¦ã!mÜ”sª¢%Vš&~¾QA©©e7','',0,'?'),('o1iðL5¸“Ïz®$·õ7','wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»u1òÈ\\ÈÁ8‹‚;#j-','Pµ²ê„|±l“_‹ƒïZ…È3z<NÉ§KýßÎ','',0,'?'),('o23dž;_ðY<T}9','wp-content/themes/Divi/includes/builder/ab-testing.php',0,'q-8±û˜V¤¥e=´\r›\r','q-8±û˜V¤¥e=´\r›\r','o½K2”Ç‚ÃMUhï;Õ#c+8ƒ6ÆûÊ{éÔ','',0,'?'),('o4~¦LPîUÁ©}à','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/PhpProcess.php',0,'ü¶ÍV¹‹mõr=Îœò,¥','ü¶ÍV¹‹mõr=Îœò,¥','ï]¶õË‘®O³N¹ý¼1Ä\0	îÍœèzÿ_:„À:(','',0,'?'),('oCÉ\"ÀÏ…Q¸ëàtƒÑy','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±Â+Áë’þõ%','Á4!ýˆHü:6>ËlEîæEc#œÐØùa{A´{','',0,'?'),('oEoå»È³ÉÎªÔŸ','wp-content/plugins/worker/src/Monolog/Registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SAë<Î.3NÔ-Ï','Œî¹)ø »êÈ‡ÏÔ\Zd~¼½ T5×—·V¦','',0,'?'),('oPðûc™‡ìo©.är','wp-includes/js/tinymce/skins/lightgray/img/object.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','órdP×E}u\n/M”AÇî ','† #;!äáI§ˆ.À>çuÊòSVŽÝm{|ñe-','',0,'?'),('oQÒUòÀõMÛ“årG','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/BlockCipher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ¦\rè\ZRJ *s˜A@\0','VyVGS–>+ï³Ì{+V™Wû|pÖÍÈ	iñ[8Ò','',0,'?'),('oS7>ê~m8l73$•Ã','wp-content/themes/Divi/includes/builder/feature/BlockEditorIntegration.php',0,'Ì$d×ˆò>öð>.È–/y','Ì$d×ˆò>öð>.È–/y','b$Pvi¢¸[®go>4ˆw¾•Õ9}Ž2ô±ñxÁz*','',0,'?'),('oS]ã~(äï7;à™ \rœ','wp-includes/js/dist/shortcode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜…ÄM¤ ú{±ðÝÈ','’[æ+G‰¬/Ä\Z°òãaš¶µH|Ht‡)Sþ‰ßŸ','',0,'?'),('oZ0†š÷ùÑØÔ<cÍ0','wp-includes/SimplePie/IRI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nÝñ9,¯zÓ„ycE¯','Yeõ«kÀÚíô\Zkžt~‰n4‹&—ÊËÛóp#îÓœ','',0,'?'),('o\\ÐÀ¹”5J§™ôò‹','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobMetadataOptions.php',0,'jŽ1H\'ŽV¨’GSt\\þ','jŽ1H\'ŽV¨’GSt\\þ','A¿°°ÑJó!Y2ŽÜöÛÝXÕ\n\nK9‚ØMçG\r´ÄÐ','',0,'?'),('ofëGkÌL†Á›ù`t@','wp-includes/blocks/cover/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\½kÀt2V4ñLŠfkè[','ã_g¸¨2IšˆJÕ©x„f`ptfO\"©_Y â½S','',0,'?'),('oqâ+NY~;øâÕ±Êˆ*','wp-content/themes/Divi/includes/builder/module/woocommerce/Shop.php',0,'‡³)¬2!ÎQ½	6fQq','‡³)¬2!ÎQ½	6fQq','çM†Q¥óþgÒ¹°J–d´6§³+”¡§Êæè£Æ³','',0,'?'),('orê1swÍ2ÑSä1','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RedirectException.php',0,'¼Æ%ì‚†U|È‚æ àD›','¼Æ%ì‚†U|È‚æ àD›','J5\0VUÑó®}$œÄø€3—ùŒÐ_ö%C}hø¿b6','',0,'?'),('o}ÛCÜŠ8ôEøïGð','wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E8ëñuÅChG<ÛoÜ…\"','þTQÇétûÝêÝ“±¢zØÏ‰T¹ú0ÆõA','',0,'?'),('oCÞÌÅÄÅ§6¸—bÁ','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/gl.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯X*2¯ü„6Ï‚Š„#&¹1','-eÍ&ç¤æa*)ƒgo\rJ:?y”LÏÌ¨˜+3 ','',0,'?'),('o”Ûg¿\nô™i 0Ò¨¿¾\Z','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_en.js.template',0,'Àâàu÷!ïè’À¡½·~ä','Àâàu÷!ïè’À¡½·~ä','m øsÝ\nÓÊÀÄ!t…¼×\0;#Ã™Äæ™9Ð0Ø','',0,'?'),('o Ú£¤0ÿÒ;@¸‹\"¢Ë','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hsb.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŒFpz¬ô\'sM·á','éÆ²¶‘LˆknÀ°ð|¿æ”øÍ]ÊÇ8@z*³ô','',0,'?'),('o¤…Ü—Â§T\ZóðQSÝD','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Exception/DNSAuthorizationInvalid.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ç×!ø[ãqà%gà£¹','`ÊÔˆ|%ö5Ç(ÜØ;éÙŽÿÕÌw³¢Ø¤®Ør“¨2','',0,'?'),('o¬	Ç»ÿ	&ãïc÷ÞÚ','wp-includes/blocks/paragraph/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C¬o5Ð@–Û|ppŽ³Ñ','$…Oì6¡Ópîç°™g<EBJ¬TÕ½~i,©žžž','',0,'?'),('o¿w*ö\nÎ›Î¢GÒœ]','wp-content/plugins/wordfence/modules/login-security/img/header.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pÜè±ÑÇ]êj-ã‘ø¦™','8šü»ÔÚ#Ì„(8øáÿˆOû\"Ç	+h\"Fb–ìƒ','',0,'?'),('oÌ£IˆðÕ•J¼iÍ9Œ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/PostSendSmsTestFailed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßÏ&R\'%XŠ{€g4ÐÖ','œG%fQÚ<º¤÷Ø÷X\'V9 ÿÙ‰¥W*¹Òë½­C!','',0,'?'),('oÎ|ÓÜ‚»R³‘âUÃo','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListDraftsResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä“|‹ýaV$c.Û|Ð','ÕÑ\nzã-–#Ée¸àîÄ¥ºö2ý<ë‹RÐ©H¸*o','',0,'?'),('oÜ³¯>b@ûÃ/?Í€½V','wp-content/plugins/fusion-builder/shortcodes/fusion-woo-product-slider.php',0,'DNÿô`ó‘[\\4Û2ªH','DNÿô`ó‘[\\4Û2ªH','©â´«oañûAñÛÏÂx8ÔQŒ‚]8¡¨åßW	åºØ`','',0,'?'),('oÝFW$Ÿ¾4NAèEÄÿ>','wp-content/themes/Divi/epanel/js/eye.js',0,'Éï#0ÞÉÃé·&\Zå™','Éï#0ÞÉÃé·&\Zå™','÷-—Úä/›Ðb¡qÎ¢»e%òA”¿ýÀdãBÙú§«ã','',0,'?'),('oã®š-×;?X:ûpÒ¡','wp-trackback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›Öæ3¯S®9uáÈÉË','X¸_šG+{ùÔ÷1YR–3¡7¸™¨žŽ¨g‹§\Z¿','',0,'?'),('oäÙÀßùYŠÆÚ…”ÌX¼','wp-content/plugins/wordfence/images/flags.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W7Ì ‚Œ(ÐË¿!­\Z7Ô','Bxö0%Lyµ6øú!—óX\\z/< n²6=\ZWÄ','',0,'?'),('oí5íçéËsþøœ¨?“Ä','wp-content/plugins/wp-mail-smtp/src/Providers/MailerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±]l’è!Wb½Š0´FÞ×','’yå¸g2¦Ã¶‰gfÎØðÞ¸È@Ý†)HgüŽÔš','',0,'?'),('oí“[¬Ðn3u‚ÈÊ¹ŸP5','wp-admin/options-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜»O+©Ù¢¨†ë%Ú¦S¶','Yõ*7:Ðß!È¡Ë¦éAk}øÚë€w·ß2ñäZ1','',0,'?'),('pôô7uÌLÍ_{2Ã›–','wp-includes/js/jquery/ui/draggable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜJ–¯²\\OçÒÐ‰/óHp%','ÔNºÈB\0¦!8\rˆ o? ä)EêC>ó‚°î','',0,'?'),('p¶‹ßÑi\0²«‘eNw','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/MontgomeryMult.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ew$˜4žJrÀÔW','£LÑŽÙÜÊ˜(ßwN\nT¤6„\"²„êÛ\'4Ü	\";','',0,'?'),('p{\r¶¨ â%>/üZÿë:','wp-content/plugins/wordfence/views/scanner/issue-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m|é¬&vfÆ²~Œ¶','æi\"î¬m¬$óÿPyMÂí¡Ûñd‘	ø««SéŸ','',0,'?'),('p ûÌ§Ô8=$D','wp-content/themes/Divi/core/admin/js/support-center.js',0,'Ë¨ÄEJJ	â¾Â€O\n','Ë¨ÄEJJ	â¾Â€O\n','3½:6¨…>îÙãJuþpXÌ{k!\0élÓý¶Žu','',0,'?'),('p:7®çj!=b#3M¼í','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MissingValueError.php',0,'œB}6¯äºK»êù~›àS','œB}6¯äºK»êù~›àS','‰E¬m:\Z+cgÉØ*ùi£‰ÖcžœÑ‚´NyïØLR','',0,'?'),('p:”,¯`OlL´(éA','wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k¥~ÂH°Àé7»<¿BáÞ','\0!¥FæE¦¶×KP³£7ß»”0Õæ\n;6”}Šæ$','',0,'?'),('p;¬ëKŸ[K,NwU9O±','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-options.php',0,'Êtz‹BÕvÄX¿R[‰©Î»','Êtz‹BÕvÄX¿R[‰©Î»','r_˜?HºN=‹÷%@œã\Z4‚w_Y<\'\"Ù×','',0,'?'),('p@«((Q”Q3ìqð‰å','wp-content/plugins/fusion-builder/inc/templates/options/colorpickeralpha.php',0,'ƒæðÐf1KÐ¿uNˆ','ƒæðÐf1KÐ¿uNˆ','££»þZ}‚5é^³z†|à7ÒËîyÞly\rÁ€','',0,'?'),('pB>Vš¯‘8õø´ÈPó','wp-content/updraft/plugins-old/updraftplus/central/modules/users.php',0,'w½v\'‰ÙHÇì:ŒjPð','w½v\'‰ÙHÇì:ŒjPð','šE•x˜$×àÿm$³{ØêÒu·&¶Ž$’;f','',0,'?'),('pIñ/ãÔ²{áQ Är©','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ModifyThreadRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','té­Å>ê(@(\Z;','÷#âó­º–aÉÏJ­\'W©Þ€aÜgMœÃ/àLØ','',0,'?'),('pIû‚:S€ºˆ•v†u','wp-content/plugins/contact-form-7/includes/formatting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÎKJ¦v’þ\'x	\ZPz~','ƒÀ:†l©ÉÀXD™ØÅ9•ë_ÈWg	ñ›Ã‹õm','',0,'?'),('pQlùïy\0Ø¶S	ûÐ*R','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿h%BÄ°#„5F‘ò',')cyÁN0…TÝñR{ÇJí0ê]Î5SÈA','',0,'?'),('pUyüa	êb¯àva„;¡8','wp-includes/js/comment-reply.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÇF‚´“D6®ÿìÈxÊ','!ì”x²ÍGÂÒÿô ¢—àGoáDfÅB8xXC¿','',0,'?'),('pdVÝè.¤m¡*N•£','wp-content/plugins/wordfence/css/wordfenceBox.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C¿ÚWYœ~äHœ#ì]','šrºŽµ¨{µÛ\ZI‰5™O1”‡¤QÜÝÓ‡¨£Ò÷Cßï','',0,'?'),('pk‡˜ÍÍ3Ö/Hº','wp-content/plugins/worker/src/Monolog/Psr/LoggerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ-Òñ§€Që\rØy0FR','NtïŽê>w\0[Q{¥k¤JÝS4DÄÉ±5”P !','',0,'?'),('po‘4\ZX“ñüÌõTˆ€','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Handler/Proxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`[ñjg¶ƒÞ…*Æ','Ü×Çëíš”>M¨JhNB‚]ãqH+{+/óÝáÿ:','',0,'?'),('prY©/»i†„?Ã?öÐ','wp-admin/images/about-header-credits.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZFVª2`$°ÚÌ\\¡¬_{','‹îþ‘4&Ú¥ýµï[Nmê4ÿöœÄŒx.\\\ZêõÏ','',0,'?'),('pwáÒQ„FécÙß b*','wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@$ÆqG¹2k5$¡†z”','Ö†F*`Ý\'ê«O tµriR:íj0áó’W\Z–=¨j€‹','',0,'?'),('p{UÊÐštecC4CDj','wp-content/plugins/updraftplus/includes/Google/Utils/URITemplate.php',0,'¿ý ÞÊß˜­	×zg»(ú˜','¿ý ÞÊß˜­	×zg»(ú˜','ÈN“ØÁG¯EÊ­<^@{oüZçGŒ»Èê×ë»Rÿ˜','',0,'?'),('p‘X€¶›±ƒLŽtOï','wp-content/plugins/really-simple-ssl/lets-encrypt/letsencrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%Ð‚O¡FöÛbà‰¶:ír','Ä}£¿x„¿æÀ”¤¸Jê7ö Äåî¿Õõú¸œÝ','',0,'?'),('p”ca£Ã²Ä~ì¾`#¹','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceUpdateError.php',0,'a‡‰\n3p*æ~÷\nÌe=\r¨','a‡‰\n3p*æ~÷\nÌe=\r¨','æp¯òfïªg˜²ô!UÏÛ_ì#x©½B°,³p½','',0,'?'),('p•ð´.Ð°”ó[ÃD¡','wp-includes/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶¨Ð¿RŽ(~lr¬4ª','góC/xº]©é3ãÈœ6	¤÷(FÀbõPJ€‡oÍº£d','',0,'?'),('p˜ˆFbÌÛ\ZÏÍV“œ|b4','wp-content/plugins/worker/src/MWP/Action/GetComponentsStats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	ñ†YÍŠÎ.£­ZÑG£','u¾ÍÌI×R³¥¨dAnîS‚\\mÜküƒd<½¤“9','',0,'?'),('p¡ò®ê~£3uÔw/í','wp-content/updraft/themes-old/twentytwenty/assets/js/color-calculations.js',0,'6+ÞÂ4¾ð‘bû¸ÑÊö','6+ÞÂ4¾ð‘bû¸ÑÊö','(O“¶ƒ²H1hIÀL­`ñ~ÕÕ¡¥UA‘«ð’—ÜµA','',0,'?'),('p±¯Ìg®‹±(iWÅƒ','wp-content/plugins/fusion-builder/shortcodes/fusion-vimeo.php',0,'VŠ9lÈÄ\rj1qy÷á\"','VŠ9lÈÄ\rj1qy÷á\"','5©ÅÝJ~#\'ñÅû;–ã—zåË\Z#^ìh¼¬?É','',0,'?'),('p»¼\\*eê¶\n\rÏˆóëú®','wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"ècdØxÊW{f¥íŽNb','O°ºj+hÅ¤\nâµƒ8QÜ®#w¾Ë_pÊýC±ËÜû','',0,'?'),('pÅ§–\né‚+Rà2ZÕç¾b','wp-includes/blocks/post-title/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S ×‘2÷	ëÅe|él','+\'™VíðæìŸ½¾:°„©pžÐD¸)=ÐöÀl²','',0,'?'),('pÆxê^¿¿µ„€ä°ws','wp-content/plugins/fusion-builder/inc/options/slideshows.php',0,'ÈÄùäÌ‚]«œjó•KíG','ÈÄùäÌ‚]«œjó•KíG','UÀ[=Lt†<mñÑða³CŸ§ŽŠA•­ý¹[ÞÔ¤','',0,'?'),('pÌ“0¤2@ãØPFÎtk','wp-content/plugins/wordfence/views/common/unsubscribe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y:h3ƒ>½½a Ý‘¶4~','Eèùqú¸´ËTg»çO>F-ëÅOú(ÍIÆšZ£¿z','',0,'?'),('pÑy ª®»ïwXÝ’ïK\'','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/DateFormat.php',0,'‡A+î¼á)êÊíµ€üÔd','‡A+î¼á)êÊíµ€üÔd','éü[ OÂu÷ðæT\\Y|è¯—¬;‰´W¸Èš„|','',0,'?'),('pÒÔ\r£ÐÀ.ð1D\n™…¥','wp-content/themes/Divi/includes/builder/scripts/ext/jquery.minicolors.js',0,'E“FðÔ—4(e‚D[Œ@2','E“FðÔ—4(e‚D[Œ@2','é+\0Œ7ñ{²õf^ãÃÙ§…¶¬Ëº‰~;ou¥Vä','',0,'?'),('pÕ+ôí\ZAŽÄn¼O&','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/ScssFilter.php',0,'¹&rÔ¶\\YìŠžÙEó2ÞN','¹&rÔ¶\\YìŠžÙEó2ÞN','}KMgÆ(‹5&ãm÷\Z»­m3x•F½%ùl·@õV','',0,'?'),('pëä¼\rññøš·lÜ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/WorkerInterface.php',0,'C«ÕµâŸÃÒ_¯|\nr×…°','C«ÕµâŸÃÒ_¯|\nr×…°','rö\r:¤NÃÏEñQÙÂa€=eÆíÔ!÷®¨:8F/½','',0,'?'),('pî}G÷‚JéÎ$âàx','wp-includes/block-supports/align.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä_yóOgJ%gãe”¢Õ','`´8çýJ‹ƒsÜgæUJ üŒ$töü²’%aþSA>M','',0,'?'),('pðšdòÿGsm¢˜œ•Ø0','wp-content/maintenance/assets/timer.js',0,'I›0‘84‰Ôµl\0Á³F','I›0‘84‰Ôµl\0Á³F','E.“ÂOKÊž¨\Zôºûú´Ÿåû”ü=JDãK®5½%','',0,'?'),('pø8qÒz•ŸÙ¯§¡ºïæ','wp-content/plugins/worker/src/PHPSecLib/Crypt/DES.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™œœí\'„Vâ½óUBÞ‚','Ò²®ZüKSOã’÷Ü)\0GÍta´]uÊmiÌ‘:oÕW:','',0,'?'),('pøá÷üsxÊžËtš§4p¶','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UrlError.php',0,'ã*€öÊ4ÇÝk×Á<ÈM','ã*€öÊ4ÇÝk×Á<ÈM','–W+OÖ¦€`Ö‰‰ƒþÓ»áoØg±V]ÙËâÇêce¹ë ','',0,'?'),('qqC¸¢$²žàý¨ƒ@','wp-content/plugins/wordfence/views/common/page-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5«ó*<ðX;øø','N5%žº=åœkUHVKÁAþlEI\"3è¸jÕÓþ','',0,'?'),('qs¾¢A­tªÎd™\\','wp-includes/js/dist/warning.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãÉ@\r\nxt•ŽðÑÈò¤¹','ñw`\0¥áŸ:û5¬Þ=ü°ðÑ`ðéº¯1R)T~”','',0,'?'),('q\"coëÞ£>«2Rhé]','wp-admin/includes/plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŽKî®îæ0u¬PËš^XÉ¬','‚aAÔ†\rá”½Â5­Š¼No¢¿‰x\nT9„b7Ž','',0,'?'),('q%âõØ)–““ud†ÊË	ô','wp-includes/blocks/buttons/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d•‡+¦ïÜ1ýn÷IÄ','Ú÷±±	£–ð\0ú¢ÍV~À}Gß€v…c­ÇŒì','',0,'?'),('q7]å·zq¶%²Á}','wp-content/themes/Divi/core/_et_core_version.php',0,',öC ôlÖ\0^“@zÍ”',',öC ôlÖ\0^“@zÍ”','-ú‘ë›?MrÂvÐµÍ<ÍRh‰KuŠûÅ^¦¡ã´0a','',0,'?'),('qL‹üåöI—Lcƒ','wp-includes/class-wp-recovery-mode-link-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ž¾ÕÀå}f/cÍnx5','Ñk‰µ„Ýå÷Ãæ©Þ™(Z…ŸtôM\0ì¨Ò;t\r','',0,'?'),('q]w‰ÿÎ¦ï¹\nQ_áËj','wp-content/themes/Divi/includes/builder/module/field/display-conditions/ProductPurchase.php',0,'«›ß#X\r…s®!\0®k','«›ß#X\r…s®!\0®k','l^>z…ð^$„2	z€Ë4J¦»WŸ‰ÓÓ©¿TéìJ','',0,'?'),('q^ÏvÆ´\"í1hºêŽvxH','wp-content/themes/Divi/includes/builder/scripts/library_category.js',0,'\r±4–j:%w¿','\r±4–j:%w¿','ï)<2¯{äšœÑ\rü(¢AÈIú‘×>Z(ÙUÞ‚','',0,'?'),('qhÿ665—y|ò=ï?S	','wp-includes/js/jquery/jquery.serialize-object.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*…DÐB\ruŸ6ªäÓò!','©À`ŽRÔ¶µ2É€¢`’µMxÎÏiÏG fzæC2¢','',0,'?'),('qpÇ|Ï<\0*\"=ál°','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/ExceptionCollection.php',0,' 7o-—Ê&œhÉËR=Ž',' 7o-—Ê&œhÉËR=Ž','»ÞXïY}ÀÃ¶ºãN¥ò­\">C¶´:ø%l*×IgY','',0,'?'),('qwõóâ¯“•·¾q€','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendReportEmail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q”ý¸›•øI¼´5o˜',' ‚´ðnÛÍ óK‹-y¬ ØÉ1f·šòY˜#ŒÑÈŒ','',0,'?'),('qfù¼÷EHø7Âdíõö','wp-includes/css/dist/editor/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ò.¨˜vúÐSŠfaÌ,k','¸¸G\"JôA=´>þ(ÿš™„s×7*“œ½÷hîì','',0,'?'),('q”8LÑ@6|}QÙ3\0Zì','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceNotFoundException.php',0,',&ÉeŒÓ5øëj„Æ›R ',',&ÉeŒÓ5øëj„Æ›R ','•êÉ¶þä+»È(Ï,½[O\0,_®ì:hJºb¼´','',0,'?'),('q”sß„´ÆžàÃ¹åÖ','wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«t…êA!¥;+ÉÏ|œM','`Ÿ)¬_ð¥>ûhQHq)®ší•—ïÃS3.´)Wi','',0,'?'),('q ØZý\0=sˆ\rßÍ\rÓ','wp-includes/blocks/text-columns/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´:Õ\ZÄÿå³V€¾eè´','˜³\rv)ö,Ñý;Ó‘¶Œ1i2Ï8X_¶{ëªbÙ„ã*','',0,'?'),('q¡ÞÒR+Òqù\ZŠ2û','wp-includes/js/dist/edit-post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qì3~ëƒsÆíÝ™U£Z','>ÉaJÜ\\Ú0p1@ËÏeWW‰¨½¸ÌJý—\"øÉ','',0,'?'),('q¥Â§:\\­*µ$áî±²\\','wp-content/plugins/fusion-builder/inc/templates/options/code.php',0,'\rZ¤·[ë§J)\0ÊÊIÏ+','\rZ¤·[ë§J)\0ÊÊIÏ+','ÃäË	i°\Z†n%öëŒÌ•ê][=î\"B\0ó™\\]É','',0,'?'),('q­[ßedÕ-‹ˆ]Ø','wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/RsaSha1.php',0,'s¸§û¸×	×µõFóa®>Ô','s¸§û¸×	×µõFóa®>Ô','q« .>ü»”»›–\0åÔÜ‚Ä·ã+·óq™ÒM4W“','',0,'?'),('q±dÊ$]þ·ïeC×…Z','wp-content/updraft/plugins-old/updraftplus/includes/Google/Auth/AssertionCredentials.php',0,'2|§Óva=ÑÏ§¢]‰Þ¼','2|§Óva=ÑÏ§¢]‰Þ¼','\\¿ãÈþ\0\Z—@Ú–Ïú÷Þ•q©­µÂÒ+©•PÇ®g','',0,'?'),('q·0ø“ÄœÁ¿±›ì5','wp-includes/sodium_compat/src/Core32/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ª5O&?«Eº	»»%','^%%ŽhTŠý,‘æû¨³¾k2¬È®n=n%:Òï','',0,'?'),('q·RÞbÔ@‡:ÔF vÓÕL','wp-content/plugins/fusion-builder/shortcodes/fusion-separator.php',0,'Ó!ÖÜt@Ç]ÕcÓÑ','Ó!ÖÜt@Ç]ÕcÓÑ','ßÔ963!,é·ÈrÑÅÑ9¢\n¤­TSh*Øì€±Ì','',0,'?'),('qº,<•©ßwLþG\"ýE¼','wp-content/plugins/updraftplus/example-decrypt.php',0,'U8ë£Õd„#:#ë’ó','U8ë£Õd„#:#ë’ó','i‘Mìø,ê÷å;Ìø-­†4)»ÆyÍ¼ÝÔj5ßwî','',0,'?'),('q¾†5@£*=õ&´æ\\Xá','wp-content/plugins/wordfence/lib/wfHelperBin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ï×!·ÈËÉ4QÕÞX#','’—Õ¹%-ø^ê…qƒâUÊqàMéÒeY“êð','',0,'?'),('qÅ$\'6‹eâú¶÷-W]','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nbóx	½‹BC§°?‚¼\Z','½÷e¯‘C8Á&\röæÞÙh\r»ò2wó(^Ð™ÔV\0','',0,'?'),('qÚC4ÅÇ´û5u\'Á/ydÍ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/RefreshableInstanceProfileCredentials.php',0,'Ñ U´nü!älÌL§1ÿç­','Ñ U´nü!älÌL§1ÿç­','– ÿ9\rVZiNÔï®§ÞYLçßl;¼\"¬D','',0,'?'),('qã!·âP¤ÄÉ¼bï‹:›µ','wp-content/themes/Divi/includes/builder/module/field/Base.php',0,'Äx¼ý@ž»ñÏQ_wC³','Äx¼ý@ž»ñÏQ_wC³','«·ô€èJû}üDšp¼kSXW“b¬¥»õÿb\\—Î¹','',0,'?'),('qéàé‚Ö¬ôT ƒs¶Q','wp-content/updraft/plugins-old/updraftplus/updraftplus.php',0,'\n:0°‘2fèK)gÍÕO»?','\n:0°‘2fèK)gÍÕO»?','W˜*õ(Å»[åï\\rÎ-Ê =Ñõ¬å©”\"«1Fu','',0,'?'),('qôø|\rn]ûþð>B†*Ÿy','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/AssetCollectionFilterIterator.php',0,'7Ò®æã<$ŠìÙ› Ó','7Ò®æã<$ŠìÙ› Ó','Ö%m.ã[6A2ÊÂ^ˆ aa#(R=\r#¾ç*','',0,'?'),('qý˜@ §ßC3¿Õ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Status.php',0,'‘”óÑowÊÂ\'k…Ž“','‘”óÑowÊÂ\'k…Ž“','b JxÌ˜Ôùx3J!äIàð£îI\'','',0,'?'),('rÊ>Egq–¶*øÕ\\r','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/TBItemLibrary.php',0,'ªÆ·»”ñë,Pö}Š@','ªÆ·»”ñë,Pö}Š@','B`K’\0é~¤5.ibéÝíÇß!ã¤YÊNö‡1èaÌ','',0,'?'),('r5ø‚‹`ðfÀºO','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp128r2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°ªm ì«}ük€û\no`B','¢ë©U4Súo\ZÍæ^•ûª÷8o^>?ÒO†Œ/ÜQ','',0,'?'),('r”®h’Åv†ÏLk/…ö','wp-admin/network/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„q#ö¿Ô‘­×\Z;fÅÆ','ìÄ3PJÝŽ÷í´Y¢¡bŽGqA›–8Âœo:?áâ>Þü','',0,'?'),('r™Í=}æÙ{B²¢¦F','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/checkbox/field_checkbox.php',0,'NP–,#Ùê»M+R%LÉ0','NP–,#Ùê»M+R%LÉ0',';­E\ZÒ»Bí\" 	W=IóúÕ4,éƒ·Øiž	lPnF®','',0,'?'),('r¼­“\"þ‚%1}/2Y¬','wp-includes/blocks/pullquote/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö”’§!Ð§Pìô1Øäƒ','?æŽ‹§|¨v`6#jbí1–U~ì	?GIÏ0	wÄ','',0,'?'),('rV¶^çÊ›¬ò.ê‚','wp-content/updraft/themes-old/twentytwenty/searchform.php',0,'Ù.ó{0fæo\'9K£áÉ:','Ù.ó{0fæo\'9K£áÉ:','×«X7>¶bºç*Vs«dû‰¦ÇŠuÆZúÌ','',0,'?'),('ræ^\rˆAñ.]5iyãÖ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/HttpAsset.php',0,'[G?Ýhmð0Žb_™ñù','[G?Ýhmð0Žb_™ñù','\rÙÊè]ZêhœQè6ø!Ä\'~.b­ê‚¨‰ÉÒd8I','',0,'?'),('rRô/è#+à7ùú<^ƒ','wp-content/plugins/updraftplus/includes/jstree/jstree.js',0,'œ_×hl ^ðØI8§†<','œ_×hl ^ðØI8§†<','}µ­¶L	÷ñ»0`|øaQQêå­(;ƒ˜(’Õ³ñ@Õ','',0,'?'),('r*Ú­,Ýºw§b+š¡','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime192v3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vc)¹,]B`1‚½','‹}x	7Ø®pZèÜ©¹¿r±×wÀÊ¼“qcà¸²Ë','',0,'?'),('r$ oï3îÄjJ°¦ù„','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/File/ANSI.php',0,'gS?Í†IðPC÷Ù­òx_','gS?Í†IðPC÷Ù­òx_','ªì9\rTQçÓÊú\n»Ö¨A®«·(ÝÑš¾WZÚ','',0,'?'),('r&OqÄN¸¢üàR†>1¦','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gØzUN¢8Ç¶ð¡×÷à','\0Š`OÊ¶¿ÏŠ #CWrè\'yÙÇNÉkg','',0,'?'),('r)šmŽŒŽ€ï\'Qt«ët','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidAddressingHeaderException.php',0,'è•ÌV§#g×1†À«','è•ÌV§#g×1†À«','+CÍ6–\ri×¯¬“å À1¼Šl¯`ïPÀ£í','',0,'?'),('r+zk;» 4¯æWI','wp-includes/js/tinymce/themes/modern/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïµ(3oÞUê2ÅUŠ2™','½2.¯ptú\"rÅ`)¸ë\r.CÜlÇ\\\ZžœBIX','',0,'?'),('r/;§Ùœ¢²ð6KÅ›O','wp-content/updraft/plugins-old/updraftplus/methods/openstack-base.php',0,'±øçã›Ùz»	*\Z­âç','±øçã›Ùz»	*\Z­âç','%ää_Z·Ì=Ý0GÔéN^¯ßiÚ\Z¢ü†ñ','',0,'?'),('r3\0ˆ—=åî\røjB¦Z','wp-includes/js/dist/widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v)î™’‹š‹jˆ™’«~','0%Ù†Cõý™—Q&j”Ialð¤„ºJ#¸Eçè È','',0,'?'),('r9»\"ÍþïAgknìlÙ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactory.php',0,';7¬:‡¯ÇY\nÇÍ,',';7¬:‡¯ÇY\nÇÍ,','-K½ŠTô?ò-‹šA¸Òoÿø-ïÐôõ÷Î0A\Z{','',0,'?'),('rI\0yg×E!€£û2\0C','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ï	nÚ{žñÉ\0è0U$Àñ','G\nØÉKsñµÝI\'«Ûmy9\ZV­ÑD\\:ÝÄ‡ë¨','',0,'?'),('rN+–Ä©´#3ÖÏWú”','wp-content/plugins/updraftplus/central/modules/comments.php',0,'æUSâ\ržŸ1¾ˆF–f','æUSâ\ržŸ1¾ˆF–f','µ‰‡èÇÑÃ:à¯Øâ+uî[iþ¨”£@$ÄÛ','',0,'?'),('rm0ažp*€WÂ$»Át','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/config/class-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N¶y/%™—BMÔš»þôF','\n0—7VÉ>¯ûdŽ“´%Ë$9Ëù9ãÇú\'ïêÈ\06','',0,'?'),('rrÒ @ãÖ\"ï0ÅqùYRÇ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/AcquireLeaseOptions.php',0,'<—(sÜGÀÃ?ãÕâ¦f²','<—(sÜGÀÃ?ãÕâ¦f²','[‰Ù‚ÙÁ»à-ÛFŠñÛ©ØvÎ±Ï—:M¥WÓoÀ','',0,'?'),('rsÃ·@7¨=À”ÛÌ¢×','wp-content/plugins/wordfence/js/knockout-3.5.1.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(«žaUHwË²I†ÂO','ã³Êë&$ÌùzÜè;o,ýàº4‡ca˜‘¦ÿ','',0,'?'),('rtŸIÂŒg[¼Ë; õì?','wp-includes/sodium_compat/namespaced/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rVÞN…ck0ã}/õÕƒå','nëK ÐkZÂÖ	À—ò± N$ Ÿ EÐš¹×eØ$','',0,'?'),('r~\0‡¹º+B© {Ï4<','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/RequestVisitorInterface.php',0,']D.öú,—X æeõ€ý',']D.öú,—X æeõ€ý','ê¬nx¦Ãi¬t¦S“ŠùìÝÏéŸ»¨þC¿—>ÈÐJZ','',0,'?'),('r€ÂÊ¸\r+óÞ‰£Ró','wp-content/plugins/duplicate-post/src/revisions-migrator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦ˆ€ÄÕ<„Š«Šü‘Tñ','_™‹§^bOŽkîåysÀ,¡°K?ã,Jÿ4Ìu¸F','',0,'?'),('r‚&ÝÛ™Íó·¢¨%ž\0:Œ','wp-content/themes/Divi/epanel/shortcodes/js/editor_plugin.min.js',0,'g¸ò¼ïÄf’ø','g¸ò¼ïÄf’ø','¼]ìòÜc%„˜	+×¼Ú]ºzès¤iÒ!‹£Iþ½U·','',0,'?'),('r‡ÊŒ4ÄM‚¬#§´t\"–','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/AbstractCredentialsDecorator.php',0,'¼æ£”5,á.ÕÕ¨©!é','¼æ£”5,á.ÕÕ¨©!é','š°ŽøÏô…ÆEy/aœÁµzyßiXÜ&owWú§1ð','',0,'?'),('r‰(nÕž¨ójç—ßb\"','wp-admin/js/media.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žL¨Hý\nè‰!¸!3ºæÜ¨','+ràóbÓÊõ½DÉV•TäØž|õ}ÿ’ŒPò†Ë','',0,'?'),('rŽœù0Ú>¸3Å¶KŽž','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/GroupHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mkà®lªã¬ßÉÓ¬ó”','p\'¼<	ør¡Îé¾†Ü‹!W²‚üÊ=\\º»àì)]','',0,'?'),('r–+Ó\\\nõï*;=Ý=ä’','wp-content/themes/Divi/includes/builder/plugin-compat/wpml-sticky-links.php',0,'›ˆY›ñ}zòâ03‰Ø<','›ˆY›ñ}zòâ03‰Ø<','DURQÜ¢ i•ËÇ?­ý;bé`†QÒÊ ð¢•_Ð','',0,'?'),('r°;q¯³]å2Óƒ”[‹','wp-content/plugins/fusion-builder/shortcodes/fusion-tagline.php',0,'ÙÍ;Ük6íÑW7LUêùw','ÙÍ;Ük6íÑW7LUêùw','ø®ÀÓÝÜUòòÏžLzó:^ôŠ²•Dä%0¬a°ÛÜh','',0,'?'),('r¶Ÿöá&EöÊeD£q','wp-includes/blocks/social-links/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2@ÿá	Êx]\n¬gG','! ÿ¡žÉD&Í°À4ÄêV¾£Ka,ÏR›ñ~ìÞ]Š','',0,'?'),('r½ÁßºVK[7æ31=','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/VarUtils.php',0,'±}—íˆØâ.&oÍ”«í–i','±}—íˆØâ.&oÍ”«í–i','žà}–b(‡¢$ÓCÇ»4‹^¦0àjY—ð±´tq','',0,'?'),('rÃX\"£à§—tõ¾Ž	,l','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/diagonal-pills.php',0,'éÉš-è¸*Æ#Šžû@…','éÉš-è¸*Æ#Šžû@…','ïò›Ïª®•Hûª\"¨ÛKâh—®9Ë~Y?i8ðU','',0,'?'),('rËß?E‰øk²¨LZØNÐŒ','wp-content/plugins/wordfence/modules/login-security/js/admin-global.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯Ãq!èÃù\0ð­€ \'¥û','ØW´4$a¼öÜ\'xôéà-¬ÔKÎ¼–#’Z¯ðü','',0,'?'),('rä!MÛw\nc|ëÑµœ','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“÷»é–vß\rs*“\\','øÍO²Z=Á<š3SñtÏQ‡®ò_—u;‘	m8','',0,'?'),('rè3Ûe\\öÌ,S„q','wp-includes/class-wp-block-supports.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}õªCþàieÍ4—‰¢','ç8rýÆ»ÎIz“RÑô¸1L³…u?-ø¨¾£','',0,'?'),('ré_è/™ÍHG=Í%—<º','wp-includes/images/arrow-pointer-blue-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%mârÞŒ]4¸9cÏ','Á°{&DOÀz›ÓA…fó/ÉÏgÃ¡­†íÏÄA]~À(ç','',0,'?'),('réör‡(J¯g÷(¨y­t','wp-includes/js/mce-view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2s°H«¡Ù‘;[¿©–	s','«È8`9Ú°né-.Ê	HÇDp¢«k+ÐÎ³—ùbI','',0,'?'),('róQ³û”oúˆÒZã>Ã','wp-content/plugins/updraftplus/includes/class-updraftcentral-updraftplus-commands.php',0,'º‡†Xfô54Pæöìò','º‡†Xfô54Pæöìò','s\rÁazA9O^«Z¢¯s2·yJÛ§N~MÙc½CØŽº','',0,'?'),('r÷)æ¡òéþÒeÚülü','wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Íbj÷¯u9)·\n6É5','gg(($CÂï–(rw˜H\nÒOª·§D!\rlûôaê','',0,'?'),('rùÎ\n—Ûb°•#ð©é','wp-admin/css/media-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸çnØ?2aÃ1M2Y\r','Ô¿{­ùÜŠ¼ª2\nÛ v¤¬§Â.JDÛ7…iî¥','',0,'?'),('rù7²È/y*¸aÚ›P] 0','wp-content/plugins/wordfence/views/blocking/blocking-create.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºú¼Ô9l\nXQƒ0h„Q*','„Å¹œò¤÷øYZ/‚÷æ+`â_{ØT¹þn¢ªH´','',0,'?'),('rû†‰±×Ø…ºª”','wp-content/plugins/really-simple-ssl/assets/css/main.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·Å¿t]Âï $gi\"VT','7ÀP–¥ýR\0„Äôæ„ŒÐÀ&Ç:„ª¢¿ Ì\0å!Ä','',0,'?'),('s\r§b;‘¬uRw;³n¤q','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/AssetManager.php',0,'Q`ÆA[\n\\a¿÷\0“ò–','Q`ÆA[\n\\a¿÷\0“ò–','BÄÈå[p?‡mÄpõm~¹#FE,yº\0×§¸ÌÅ','',0,'?'),('sò‹«As”Y¼ºø¸D]','wp-content/plugins/wordfence/views/scanner/options-group-advanced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äP¬ˆðÿÕCoºÙÏÀ>~›','#­~–½6ƒ…Ëž45–ÅûÐLWƒÃíVŸ©^°','',0,'?'),('s_=gžÁ\"äãV;„¿','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/CacheableCredentials.php',0,';l-aÛ¬êZ%ØèG|ñÒÇ',';l-aÛ¬êZ%ØèG|ñÒÇ','ãBÄ‚¨E–0ŠÉktž‡YuƒCÅxÎëGï)ãm','',0,'?'),('s\"öè±”šk,¼¬Ü','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/ProcessBuilderTest.php',0,'€»87+‡L>¿Fr>‘fþ','€»87+‡L>¿Fr>‘fþ',' BQ>É¯€M·ù>x­a\Z‘*3øçà,øÿ´','',0,'?'),('s(#­<²/œú4†å\0ÎÕ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceBuilderException.php',0,',†(¶Ôö^çõN4í·',',†(¶Ôö^çõN4í·','Ü¤ÜR#»…li„iciÁ¬É:3ì‰QG©&h¹_Æ§','',0,'?'),('s/ž]:Íf™§V‹ú”»Ý','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/textarea/field_textarea.php',0,'Œ/^OÚò”æ²·™Z7','Œ/^OÚò”æ²·™Z7','. $Ç à»‰ìÃ&à£ þWÕµ›mS¯9ò±ª½x+I$','',0,'?'),('s1ž€˜2ŸðýR oö¶…','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/AbstractResourceWaiter.php',0,'û‡ý°w:gÐÄêGA£yt','û‡ý°w:gÐÄêGA£yt','“ß•üÑÊÕXõ¼ Hƒë¶Ë|˜”#‰ù7ÍÒ2','',0,'?'),('s5a\ZGÏD,§#o~Êé{','wp-content/plugins/worker/src/MWP/EventListener/EncodeMasterResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=¾ÔÖf¨ÐÕh*GUó','«$#DÎê%E nCQWìõ38<¯§Ã”Ü¹¿¯¦Í,','',0,'?'),('s7°‡KºC\\©èf^','wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/SetHitCounter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤¤Kê7:¥„ªi”‘î©¶','&–v=o‡ôf˜Vßø²XNž”ô{ÐA\'š;Èrñ\'','',0,'?'),('s8hlÊ¨{€~4û	à\0ÄÙ','wp-content/themes/Divi/epanel/theme-options-library/app/lib/i18n.js',0,'KzJÓO)ˆú]áÈ:','KzJÓO)ˆú]áÈ:','Åzu$0Ç[ÌO÷âñ4}°\r³tÑ°·¿O‘³¢$Æb)','',0,'?'),('s=@˜*Ý°Ë§;]ƒ\n©','wp-content/plugins/really-simple-ssl/lets-encrypt/class-letsencrypt-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë…Î*ÿø4R:Ï.ìYw0','ì¨çy¼Š_¿n0)¨À\r@¤ÞEüUôJË§„œvc™','',0,'?'),('s@¼ÁC4Ø áÊ	ö¤9','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NotSignedUpException.php',0,'+®jY˜\ZñÊÞrÃ|¨x†','+®jY˜\ZñÊÞrÃ|¨x†','›UBFÆÓË€X/ýÚp³úx^ƒCû½î8†','',0,'?'),('sD‡‡‹ùËìI6Š„|Uö_','wp-includes/blocks/post-template/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†°ŠþÈæ´Iœ1*7\'Ž;å','+Çç<…\ZÀXàeñp ^1JÅH¯¾|F³]4','',0,'?'),('sHIF•³ù’JÕÁ×Ê','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp521r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"¶â„ã4E¨èÑn\'Pk','ÁS¥_Ô­ùH_Csn±ãÞ…@ùÂr„x!¾6„Ê','',0,'?'),('sL–YÅÎC›‘aò—','wp-includes/blocks/embed/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gký¶{\\Oz8ÛRX/,í','ûÃ wé=„›Z\"yl¡U =ØsRî†Ç~Î','',0,'?'),('sU5ýbâR„ƒ´~šáØJ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/wpview/plugin.min.js',0,'´k|¼z5HØ»(©®í','´k|¼z5HØ»(©®í','[g\Zû®ÞøSmÐ˜¬cšï2½ÚÐç?SøSþ\"ˆÓµæ´','',0,'?'),('s_}a¡r?TÜÚ¯Ó½','wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/hostgator/hostgator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<ß2}­~jš»Ð,e­ðOè','‘¿Ñ„$5J—Kš€dèX¼#D6†e7|²PÂÞ‚','',0,'?'),('saO¸Yˆ,~ràµ­kÃ','wp-includes/blocks/search/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”\0Qúâ¼_\0d&J·','^\",ÜÁŸ[Cµ¤òh–|™Ú˜\"úÄØ d[ºG¯´b','',0,'?'),('scú`Â®–}@ñ“ÇÊ','wp-content/updraft/themes-old/twentysixteen/searchform.php',0,'‚ÛÔ›h¥u%Ð>¼×\0#^','‚ÛÔ›h¥u%Ð>¼×\0#^','zÄVr°¾Þ;æúl?âq¸¡Þ#R–°Sñ®Þ6OA','',0,'?'),('sj“’J<ÎWÐB¤a+î','wp-content/themes/Divi/includes/builder/module/BarCountersItem.php',0,'’«$¾T\"ûOÛ9S','’«$¾T\"ûOÛ9S','Æ¯‹`Dú„±ýH÷Ë	¥­8o÷àùEÿ¥ñÿ@','',0,'?'),('snB—e\n;DbIpmŸF¢','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/class.fusionredux-plugin.php',0,'€öâ0šr„ô  þFÇŽ¼','€öâ0šr„ô  þFÇŽ¼','’\\Ëæ*xqâ/¨ÿð¬+=$=Ä—¸^iÈ+Éà','',0,'?'),('st´¿Ã.\Z­¬»Ü\\ºbP','wp-content/plugins/worker/src/MWP/EventListener/ActionResponse/SetLegacyPhpExecutionData.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']•#!rû*ú?‹+“Þ‚','øÉð¨$7\"Ÿ¥n»Jy^8[ßf*|WÆzÍ³ÎÿX','',0,'?'),('s‚Þ>“?€‰™ÕÎÇ¡‡','wp-content/plugins/fusion-builder/inc/woocommerce/woo-config.php',0,'AŽcáâAâüÆÙ´ÙíÀ\\','AŽcáâAâüÆÙ´ÙíÀ\\','­ƒLºSe¦Y—ï+¥]\rN¦Á±T€žSµSÃ’¥','',0,'?'),('sŽÿ[½­VöGJõ#ë7)','wp-content/updraft/plugins-old/updraftplus/includes/onedrive/folder.php',0,'\0\nŠ%K¶,ýÉ–^Ùéw','\0\nŠ%K¶,ýÉ–^Ùéw','nM¤ygˆbïÏšÛ:1dŽ§­wA(z ‰Ð¢û\\wXÃ','',0,'?'),('sŸ2\0e)™ÊÔïÿ£”Ü‹´','wp-content/plugins/updraftplus/methods/dropbox.php',0,'ƒX Ë‚Ç/ë§-æò²2¥ä','ƒX Ë‚Ç/ë§-æò²2¥ä','~SJÿ¶þ^ÙºiÇ0ª–î½çL&Î„§!)i!vkú','',0,'?'),('s¡Î2K\nš°lÆFžªu/G','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<*†\\ƒ*\"(\\UÆí™«²','U,ý[PU‹’lò¿oss¿Ú=³\\¢«ƒ$Ðe','',0,'?'),('s«Ì\rísú{‚Ùº¯ùÑ','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/af.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿÌÃ!šu7I°û •käT–','éûÓXÀ\"EOòß¼@2Ž(Jçøõ` ‚)Vlòî¢','',0,'?'),('s®òéØ—’p°7Ìá§Ù_I','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/uninstall.php',0,'ç9WÀ	p%Ð‡”tN°´','ç9WÀ	p%Ð‡”tN°´','¨‘’Ú_ñ2kÏM/rTf\"n”±Yã²ÞÚ“ø','',0,'?'),('s°—B³ù–µ\\}Ëˆ¦g','wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-smash-balloon-facebook-feeds.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”d¯8Ëý+l÷`)¢—½=þ','Ÿ½\\Ã€\0js›]ßŒÖÍt§†8¶\\°ÈÌ#ž{ Vº','',0,'?'),('s²E¸ÎžqÈp°BíÚÖ','wp-admin/css/widgets-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥0ÐM?o-ý8ªŒ|Ác','ÓŠÉß3Ò$ŽëP’Œ†Ïç—ÒGÆÕ‰•+ð/ˆ«á	±á','',0,'?'),('sÂä\ZK§cíXé¡·ÒR!Í','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/notices/report-plain.php',0,'†i¬­Ý×5¿ÝÖþ\\|','†i¬­Ý×5¿ÝÖþ\\|','aõF’½Úâzšo§T§ê*€gó©¿ž Ä¬ÖÚ5aÊ','',0,'?'),('sÊè×–þš:‡û×hØS','wp-content/plugins/contact-form-7/includes/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LG	HLÞ\r{åYm«dy','[S\"6u×¢êX¿Û§[ß$|a‹}’Ò!’‘àxþ‚','',0,'?'),('sÌŒ•_1]9ìŸ9)ç}','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheKeyProviderInterface.php',0,'³a^qÊ-5ÑEZC™ÍÉRA','³a^qÊ-5ÑEZC™ÍÉRA','ª›Þ=¸s—-oS£@œàéTœA_ñÊe<E{B\nÍ','',0,'?'),('sÒ€µ§p«aÙ·åtüH','wp-content/plugins/worker/src/PHPSecLib/Crypt/Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M|ÛÏµSz8P>ˆÜ}','~ë&0°ötC*ýþ(õj	MªSáa§Ù¹k#“','',0,'?'),('s×,vLÝÍpðÝr”áX','wp-content/themes/Divi/core/components/Logger.php',0,'Á§(ÃV°â K.ñ™','Á§(ÃV°â K.ñ™','àÎý;<•}üé ï{‰i)Á™½å[.º§hÙJ(¼','',0,'?'),('s×“bôíÄ¡Ö°“6B2','wp-content/plugins/duplicate-post/src/watchers/original-post-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zžá¿:,†ÍR¼Ë\'LäO','’»•ž\'*\"¹í‚\0ûÛ6;)˜)¶&Ãž£Š§Iz','',0,'?'),('sÞÅU\'÷ìÀe@¡d‹','wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ò’:ñ…Kà[ÏIw\\‰ªg˜','`e¾‹	“n²í®O¤¢ÙJM§%³NìhAï¯{ghÁf','',0,'?'),('sáí¸4Œ ¢‘R¿X>OŽ','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h…^n=(Š±&¡ñÝ‚¶N&','S²óDIBÿzÑ_-?(YÎãpE¥yûÆ¹A¡','',0,'?'),('sçÐ<¾B)µ{Kg•»¨ÄO','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/ArrayCookieJar.php',0,'«Œ™gò”;Ã5JDcË','«Œ™gò”;Ã5JDcË','<êÒð î\"R{¯ó¼1}6¥yœµ’»6oÍ','',0,'?'),('sìÃË±ŒY*u¿©áO„','wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú*q”¶BIt§ÓŸA<\"','6qQ¥†î`ð·ˆd!cf¶¶.ð‰øBxq','',0,'?'),('söP\"(å#’RÕgÿ¹5S','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/select/elusive-icons.php',0,'¨ýÛ…zÎÂÄl‘|&Î','¨ýÛ…zÎÂÄl‘|&Î','°…fÒf‰\"«6rÚ±ù¯ÏÍ‚+^ã›¸bL`é#¯n,','',0,'?'),('søïˆü*TV©1¯oE','wp-includes/js/jquery/ui/effect-blind.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«¼ôã{5¶æÅ%ko','­œ0ÊŸ\0`rz){ì¥µ3¼[ôª[q[“°Ùµ','',0,'?'),('sþî†fFRÙ\'6ÂºðH','wp-content/updraft/themes-old/twentytwenty/classes/class-twentytwenty-customize.php',0,'‚•<ü×Ôu+(éùh\0¼˜','‚•<ü×Ôu+(éùh\0¼˜','Vw‚DZ<ó‡JÍ:âÐ]ÒâÝg¬Ñòzq)—ê5','',0,'?'),('sÿC4M¾*µ¾*B«)µ','wp-includes/css/wp-pointer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HB¢«óv‰Û}¡d~ü','à72ì4Éœ¦¢.¿©Ò·CÅ§›Z¤²ê;7Frƒb','',0,'?'),('t	ôU” iÞ§ã\"•Ös¿','wp-includes/blocks/buttons/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6äo;üº&Šà›@\'B','4Ó˜böƒ;-ÒñÈWí<O	Ç»˜Ë,¦§€v)Â','',0,'?'),('t]nó\rå5ô^šËºÚÑ','wp-content/plugins/updraftplus/includes/Google/Service/Admin.php',0,'ÖvYWCpXÛÝ_¶•E','ÖvYWCpXÛÝ_¶•E','„9Âì Á“Òhd´I7óµÉ°\"w#	”n\'nÒTY¾º','',0,'?'),('t‚ž¾™\Z¯.¨±À)`Ò¹','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/dynamic-content.php',0,'ùG¬Yé6”³Ý\0k·¹Ù.C','ùG¬Yé6”³Ý\0k·¹Ù.C','â3då)PÜþ»e§þº¡¢äJó5|D‰v77.¬VÃlÚ','',0,'?'),('tN­žþ½0·kÊ%^ÌG','wp-content/plugins/updraftplus/includes/Google/Service/QPXExpress.php',0,'Xä‘Ã#\nß(À¿±ëpX','Xä‘Ã#\nß(À¿±ëpX','f³6lˆKÕ,&§„§òd Œ<èÝÞt4·¦Jøaó','',0,'?'),('t×óX›äˆ2«a?µ','wp-content/themes/Divi/core/components/api/spam/init.php',0,'®h‡%:AP=É0{‰ÝÒ','®h‡%:AP=É0{‰ÝÒ','ÏõÒ5Ù[8Ö<XÓ¶³84\"ÁÛŠ*šÝÂEq×p”Ýì','',0,'?'),('t/„Œæ¯‡Ji6WXÄýÞ','wp-includes/class-wp-recovery-mode-cookie-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qê-‚©‘¢›*xrfå˜','Û8…-ÙH0Fãy¿£ G¹°–÷¡¢ÚãýÇ‹Þ','',0,'?'),('t5^	kS(1ýézŸG^Æå','wp-includes/blocks/archives/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*R>\"18ìÄ34òÖ©€','fÎÔÝñÐÎÊ»CÊ@%ž•Ý.¢ì„öE`J//4','',0,'?'),('t5¼,r`æ‘dU\\Â','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œBðÓ	îYDO{El','‹hXË;Ë½¼\rsk[“PÑlj–Éa&”ÝßÆ7ý','',0,'?'),('t6·îžO¬\raŒÈ†ëf','wp-admin/js/plugin-install.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äÎchäPÚÌÆéP\rDW','”ð°)î ˆ $Kö8v3ÉñX&æ¢okv¼ïÎ','',0,'?'),('t8ŒÀÐïp¯Ì‹Õz{jDp','wp-includes/css/buttons-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i¡ºÔ]z~c6ŸÛÏg6','ìLÃXæ©•f†í\ZØtC5¯iãfSÊ(èR¥&ž=‚','',0,'?'),('t9S£}«G\nÿ$~N->?P','wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/Base64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³þ#PÉ^d’4\ZbŒJl','./´ÎØ§JÔvÐÔºÃ¥Îwæò~?g+f¼$KQ\\a','',0,'?'),('t;¤p%H.qU“³~m#c','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/UaString.php',0,'BS2»¯¿ÏLÛoŽ½','BS2»¯¿ÏLÛoŽ½','-:º˜.¿/7d8¾°ŽèþÒg`+Pzh½ûöÖ×ò\0','',0,'?'),('t<°Î ìa¤Bƒ—ˆåª','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/BatchDeleteMessagesRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.S´n4ƒŸ‰ÑaŸ2Ó','‚[Èf´¬0Q‚Tò§¾ÛÇVÞ«‹eKc¼þ­Xèª|','',0,'?'),('t?©=;qÙmÕ•Å»Ô]o','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Serialization/JsonSerializer.php',0,'òÒÅ?êÔ›ÉZá;P×M ','òÒÅ?êÔ›ÉZá;P×M ','jŠQ¸ÙHd’âéÝøÙ›Ô*Ã¬‚|‹åÍÌÃ\'#³','',0,'?'),('tDFb[jI°àë“A‘ü','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9˜5£ÀeÏf”‹#®Ï','èèi˜Ä\rCáý¢\"Ô³Á\r4†®8ÀcöÑSÝâ','',0,'?'),('tEGg:ZÀÅÎ/.j','wp-content/updraft/plugins-old/updraftplus/methods/azure.php',0,'k92™hÈÎünÅI ÂV','k92™hÈÎünÅI ÂV','¤\n •ËÒ`úv(?×èÑºUJ£Ðéµ=Ãð5ušI­]','',0,'?'),('tUÒ/Ds¤IÚ¤Üstã','wp-includes/js/wp-auth-check.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HÀ6Ó€ÓœbËX¾+M\'','n@›¬ó¥·toÒ:—Ð\\øe!65¶ê,KƒV\\=','',0,'?'),('tZ½@W‡‚ÕµEåÃñ¼~','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/AssetCollectionIterator.php',0,'î.ìÓd™¹ÚY‹)ØûéL','î.ìÓd™¹ÚY‹)ØûéL','§ sëhðƒß7¬¡º¾tç¿JüE¾_\"0Þ\Z','',0,'?'),('t[[ö=ª6u7;YºžT¥','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4s[•ÍçlAc4Áf¡¨ö','ÆºÌ>Êy×.~yK¾^¹)*f´°´‘6F·','',0,'?'),('t]×?Só>Wû#R¸,\'','wp-content/updraft/themes-old/twentyseventeen/template-parts/post/content-none.php',0,'¥›T¾¨GŒ…?ü.Óæ{³','¥›T¾¨GŒ…?ü.Óæ{³','*@X1iá°£À+ïkOOô»R8þ¹Ç\rk„ÊŒ¶­n','',0,'?'),('t^\nÕe¾œ½¸?^ƒiÕ','wp-content/plugins/wordfence/modules/login-security/js/login.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g‚™xŸ\"¢!ƒÙ‚\0§Åy','[ºJoàw¡¹ð¢Ð-¶Ú`™3¥ïªÃß-ýaQ','',0,'?'),('tm6Û—ÀqºÿŽ.£=j','wp-admin/css/colors/blue/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŒËní¿½\r‰—ò­:²Œ-à','‡·fTr1O@·((mùc)Ýù0ïÉÄ*Ð‰a&™p','',0,'?'),('tm¶\n£‘GO	\'ú\ZÞµ','wp-includes/js/jquery/ui/mouse.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÙÁ´ëäÄ²iêðÀ\r³Ûà','³PÓË<\nŸ§+Šqþ Â™ÏÌNJÉ+ëäsÚÂîb·ñí','',0,'?'),('tt®0dÑ.„ºê<\ZµoÖ','wp-content/plugins/worker/src/Symfony/Process/ProcessBuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*”cÐ`ÊÓgc:d•²iy','Acn~ú€ì/˜«Q{ïW£ÑSœŽV»nƒ','',0,'?'),('t¨€û‘.¨Ã••81½','wp-includes/random_compat/random_bytes_com_dotnet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nM@<ßÛA6Â@!Yàç','.#©$.Nñ.ÜÕ\\\"ÜÀCuj€%HŠ‰EJÖˆ^a','',0,'?'),('t‡}“}dŸ¯‘Æ/Ø/}e','wp-content/plugins/contact-form-7/modules/constant-contact/service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“ÚÍaàŽš˜vx,Èkýa','iL·0Ð¢²IË˜®\n…SÎîé\0//Út\ZU4,ÜSÛä','',0,'?'),('t“$œ0«	,ü]bþ&Ð','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Event.php',0,'‚J‰„y°ƒ¥P¡µæ¸J','‚J‰„y°ƒ¥P¡µæ¸J','ƒêÃáQÑ1ãv÷V»¤x`Ñ™ã¢\rÆøì]=ÍôÌß\rÔ','',0,'?'),('t–T‚«ï÷,}ZÕ','wp-content/plugins/instagram-feed/img/placeholder.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥D<[¹½@ñ±æe.íÎ™%','jxM<4ÿ!Ç§lÃïµ½diÝ˜\Z]lD0Ñ5ª','',0,'?'),('t™*Æ¨<ü„†•[–”®§','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Time.php',0,'«å¬Ä_nš‰v1¸´ÎÂ','«å¬Ä_nš‰v1¸´ÎÂ','sžC|˜˜Ë3”›\\+^˜ÃpÜœÓ NÝaýµ','',0,'?'),('tž»íRËÄOLZÌöÆÈå\'','wp-includes/blocks/query/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒëzDyù2>r`U¸œ','x)—­ƒQÄ ]ÞeÝðÍ+è}¸r#Â@éÛÅó','',0,'?'),('t¤Æ‡wW¢¯ýLå„D','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Exception/FilterException.php',0,'®²~“ˆƒæ&óƒ{‡ý§øQ','®²~“ˆƒæ&óƒ{‡ý§øQ',' ˆ/†“ÄxÐÊ%RŸl‚‘ßŒ:œçH¡¾Ÿ4%ž','',0,'?'),('tª7ËpÛGŽ:-G&Õ','wp-includes/blocks/tag-cloud/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÒÖòjl»‡’ƒkPS·','ÿâ\"øÇ¢ì@¬\nŸpy4&¾7‚:˜wO–h4jùy¨DØ','',0,'?'),('t¼fQø‡/¼KP‘âÛ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JSMinPlusFilter.php',0,'s8~`Öx©S´éT‚ÿ’Ü3','s8~`Öx©S´éT‚ÿ’Ü3','9Àsä®ºöovžâ\nŸ£o•5­_iX_“Ë@öØ','',0,'?'),('t¿7N0qÿÀ?PÖPxI','wp-content/themes/Divi/includes/builder/feature/gutenberg/utils/Editor.php',0,'¶›Ú/ÁÊ9¡qucÑ“_@','¶›Ú/ÁÊ9¡qucÑ“_@','8ÿÕÖdòû\'eÂ·Q\0Î6<uÀ—Áüf¤\'øëÆn','',0,'?'),('tÄ»PºÚ6í¿­¬×Ó/','wp-content/plugins/fusion-builder/shortcodes/fusion-table.php',0,'â0¸{ºã+Ëéø¸Ddû¬','â0¸{ºã+Ëéø¸Ddû¬','Û®/ÖÖ©{\"óOö±>7*Û`x=ÂYá04Þk','',0,'?'),('tÇ}B6—O[õÝ„ÎÚ3)%','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/AdExchangeBuyer.php',0,'&u×\rñ uX]ÞÇ¢•íÓ','&u×\rñ uX]ÞÇ¢•íÓ','ÅÐËÈ4Ú¼IÒr­ÄÞ½Æ÷Õy‚ô­¨e^NÕ´D','',0,'?'),('tØŠ\0a¶§\\ _\'WÞ','wp-includes/blocks/table/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íÛ°&R1W6zzÕXÑò','/•¼‚¯þõ‚ºÓjÊ†˜jA¾ã»<9?Þ‚)”w2hû','',0,'?'),('tÞ¨·«E¥ê~6j<!0a^','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ro.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ\r«˜xŠKÁ)\0s{^f«','Yº‹Ñxøøég¿þQa²›õŸ *2 V_7¿ ÝØðÆ','',0,'?'),('tèÌ@ó­vÜ‡X','wp-content/plugins/worker/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('tìì£)7Ð\"»„”ON-','wp-content/plugins/fusion-builder/inc/templates/options/multiple_upload.php',0,'3–‹.Q¿˜ÂRC„’V¶','3–‹.Q¿˜ÂRC„’V¶','NM/žTmÇ‡QsÞ:\Zªáv«Á„%lZq=','',0,'?'),('tòžÖ*äàh†¥_›$>r','wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/AuthenticateLegacyRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':Ds•mM‡öMÂá\\w5§a','¹—œ~î¤G\0¶}Jb¨t¿CÚGeÈ[¬™\\H','',0,'?'),('tùôN²Z3Ò¾ÍøÙÂ°','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedFeatureExtension.php',0,'M8Ãã\\3<öô®nBeoÅ','M8Ãã\\3<öô®nBeoÅ','zHQßê ˜ –vÐæ£:ýLº–õYð+6kÖ1','',0,'?'),('uê6êÈ4E~ñø:ðï','wp-content/plugins/wordfence/images/icons/working-indicator.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿«œéVF‘ ë{N	þ\'G','„fXºîRZ‚|:O…b Ç=fê[yßÛá5 ~	','',0,'?'),('uÍn«q	mC}?àüŒz','wp-content/plugins/worker/src/MMB/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('u~æFˆI\0¥ ¥Í)¶ò','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/wait-for-plesk.sh',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜Á\"ÙojÂjQ¾¤;Cž','#p›5CøÖ³G’]G1e~;;FKÏ¦€Å9®’ß','',0,'?'),('u\rÄwï	‡ÅC¢YéA²','wp-content/plugins/instagram-feed/inc/class-sb-instagram-oembed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÒÎŒ,¿[È¥3I|1','3BÍ`K‚>–:Æ“¼ÊG\n\rG\'R˜$±#¿`','',0,'?'),('uíbyœ3%uú•p_','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/EncodingType.php',0,'§Íä…ÊzÅòðñ¨BØ¾j','§Íä…ÊzÅòðñ¨BØ¾j','œ=Q¤0UD°ìûm”ü$v0-ú<|V•,„Që¥Ç','',0,'?'),('u!òò+èÏ\ZôŽúƒžŸ¾','wp-includes/SimplePie/Cache/Redis.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o.*hí`|,{¹ÝÝmg','ƒYj¸qµ’O®L’ùŠ§1˜€‰ÜvÄî¹|âb}|U','',0,'?'),('u!­úÐ,ƒM…w—1Y¬Õ¥','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/AccountProblemException.php',0,'NjO™f=$º=&Æš','NjO™f=$º=&Æš','þHA¼TÔ¢ŸýÑO\0^<C brÞQuš+','',0,'?'),('u)zïZí¥hLæPˆ|¬','wp-includes/blocks/spacer/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ\Z#Å®Ã{‘ïN½ßp','zîÝÒUÔ£YKu@W#÷ø+È0þ·NÌ`qX¨õ\"L	','',0,'?'),('u*á¡ÉfÚ±bƒ}ûÎc','wp-content/plugins/fusion-builder/inc/options/rollover.php',0,'TMÅÀ:Mù¿³€ü›ºÚ­','TMÅÀ:Mù¿³€ü›ºÚ­','ðô»AwµwÊ~Ô¼‰ÔÅ˜SÐf\"Boß¤ÜŠû\rb¿','',0,'?'),('u1>J§elá6ãÊä','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpOverLimitError.php',0,'p’m»/d^ô°\rJŠNØo','p’m»/d^ô°\rJŠNØo',']jˆqån;¶oz³ùÇâ\rùÇ	O(H0‚à£‰ö','',0,'?'),('u2èü=XtÔœÚgˆ…ƒÉ','wp-content/plugins/worker/src/MWP/IncrementalBackup/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('u<@G´—÷ò¶’#\rD','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/ConnectionStringSource.php',0,'†Ï+·þmiB€8”£õ','†Ï+·þmiB€8”£õ','CÌ¾9Ž\\ew ¼½\Z•Q:àuW½3DÜ\0Ò#H/','',0,'?'),('u>	˜\rW\"ðïÆ¯\"ÑÐ¹W','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»)/4;ß$Û”åÞ¬vi\\','ŸnäèøÁàiÙë—…µNµvX¥7«Y]´…¼°D','',0,'?'),('u>]\0aO<ïG:œ5ÅZ¿','wp-includes/blocks/latest-posts/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚‚7žvµÏ…‚<Ï¤ßè',':´6¹8ÓMr³\\‹f™€§\ZSLMQ_ätÙ‘Énz‰','',0,'?'),('uAò™–ª÷°ªµ@ \'¡','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/select2.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/šTÂP	)¢ªÞò»¢Ä','…]<˜\0S±î?-ÑÎº\'\0Ô„”‰¦îŽ-¶,6Ë','',0,'?'),('uBâÚœú—Ù aÉ}¸','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpResponseException.php',0,'!•à–×Ä…˜,\\›kTw','!•à–×Ä…˜,\\›kTw','…\0äç½¼Ìô%Ý|•_ï‹æÓ[šxõVh-','',0,'?'),('uFãAµˆ\'D´‘d','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/BaseSassFilter.php',0,'Ö«:ç¦[m¼ö?!P?p','Ö«:ç¦[m¼ö?!P?p','‘\n#`–bnÒ	«‚¹HÑÞ=,kËë£Åä©±KÂä’ðç','',0,'?'),('uY­±.­kíu/Ü>ÞŽ.','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Signature/Raw.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'þmr·šò$du»^ad','\r$ÃÇ[RÚà¼é±KË”¢–¡<Å|deYfµ\nd\\','',0,'?'),('u[Áî#³¯ºg—s)O¬j','wp-content/plugins/fusion-builder/inc/templates/multi-element-sortable-child.php',0,'Ø˜\ZªÃJ©g#þ„Fu×µ','Ø˜\ZªÃJ©g#þ„Fu×µ','÷	%BÀíq*özÑDpÐÖ‹5íÁ¹§=Ágo¼','',0,'?'),('u\\i†ðˆèÉÛtz+¨©°ª','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNotFoundError.php',0,'ãúU ,žç2ã6Lö ®¶M','ãúU ,žç2ã6Lö ®¶M','\Z€ó—¶\0KTƒ¤¬a¶\r`¦ÆÇy–*¥â{¾Á','',0,'?'),('ueö,\"\n	îh¸g.','wp-admin/css/colors/_mixins.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X`ÂÀ oiø`HxþƒºC','¾âãdËpeÜŠ&ÂäÎþ¥¿ÑáÊê—åú’ìÄÞs-ñ','',0,'?'),('uˆo¥¬vLÿbÛãKa+É','wp-content/plugins/instagram-feed/inc/class-sb-instagram-feed-locator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H¢X–Š1©.Ñòèã a','h™Î•øv°¹ÎÅK‡_ô”%K\\†ê—,SÓ0ØéX','',0,'?'),('uˆýúë[ý…†äêÚD','wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#gÅxüÌ@ìoàÁTM³','óáÛeeë›6s  Ê-Š-Iµ$ëüQöÂ¼@Ùy•Ä','',0,'?'),('u˜’²¼Ã—z²ÛbŸ/Ä','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/AbstractResponseVisitor.php',0,'KÃòíô¯È…„±{¢Gß­','KÃòíô¯È…„±{¢Gß­','q.9êƒŠ)»¶¨QKš!Wê‡tt[\nøeµþï','',0,'?'),('u¥5²£Ò?µ–6TÇ@','wp-content/plugins/worker/src/Monolog/Handler/AbstractHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q¡!>fØÌ9^M×FäÝú\n','NweaE½¨ç9ò§¬ÈKN}r÷\ZhÇùhž#G…ö','',0,'?'),('u²6Öí~xc ðO¢:N','wp-content/plugins/wp-mail-smtp/assets/vue/img/long-arrow-alt-right-regular.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d;ËíÎ˜áì¨ñ¼?Ùƒ','qÑJ³¢@Ä5ƒëCØT)ÜÀo‡¹V”cÈæhŸ·_þ','',0,'?'),('u³{>úñDÑl‹‘{','wp-content/plugins/fusion-core/shortcodes/previews/fusion-faq-preview.php',0,'Ä½£ìÌ×ù„7Ì)àÑå','Ä½£ìÌ×ù„7Ì)àÑå','\nÀ\nâ_C&­|]öûŒ%V}¼a¢VŸÓò\'û®ª','',0,'?'),('u¿Ü3!pA³f…)R¯MÛ','wp-includes/js/tinymce/plugins/wpgallery/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ç_ÑvQ8_Æ$Í?¤','<ÃèA0Ø6kJX\nvA/„í%OÜ-v_²¢Ý\'püA@Ø¦','',0,'?'),('uÇm-OÔÜ\'ßë]ƒ#','wp-includes/sodium_compat/src/SodiumException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«HDfé×ae¤ãÔz°R','ã¶œ\\‚©L>LöN-@G\'Ä×tmGºãi€‡kRß®g\0','',0,'?'),('uÌ–±$0kfb[Ó\\d','wp-content/plugins/instagram-feed/img/about/plugin-rp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vŸ°$eóËHGçHÇD˜à','.Ã^&O\'Ü{6\0ZÍÔtñKf‘5\Zl¸ÚjŽ¤æ?,','',0,'?'),('uÏË¼¹¬Uºó¡m,ª°','wp-content/plugins/wp-mail-smtp/assets/libs/lity/lity.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Å¡aÆÔm™{\'€kBò',',P§ÛŒ?º±›Dk²<$	¢ÂOÍ´¾Bé¾ó7é\\ÿÚ:','',0,'?'),('uÓ­‰ä˜Vp-7”Æ¢q','wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xG›?ïMxŠ–¯ºl|Ì','“BÇS\ZBeLÆ“3Ÿ#Ú¾ÝÄb‘j52=ÿ<PÊ3vð','',0,'?'),('u×Èk6¸O­>õ&ŸW','wp-includes/blocks/text-columns/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c^õ*›ÆwŒ¶Gã¾Q×','–+\\¦–÷1{*CãG+î¸è˜JõåæúLv','',0,'?'),('uáqg\Z\0‡8‰hÔ­û\0ð','wp-admin/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Øòyôô³·¶ì&›','óÎ˜ò4ñêCÚw@…XdoÖÂN=wéëŽ<~oÇ','',0,'?'),('uënÿŒ;\rOXV$(','wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/cart/cart-totals.php',0,'•è‡îæš‡Ô[$à×','•è‡îæš‡Ô[$à×','ØêýFbÆ	~ˆu°<Ô%„ÍØråsó‡\\½#äXæ Mª','',0,'?'),('uí:ìz§2©DQÉï4','wp-includes/blocks/tag-cloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í@{À\Z9Ú›ÍÃñS6žˆ1','¨1ðÊª†—ðûVÞIT/£Œªmøw/(\'•¶tÖ+½','',0,'?'),('uó/ú–4ÕÎ˜µ·Ÿð=','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_ar.js',0,'2RßîŠG#(%~\rbb”±','2RßîŠG#(%~\rbb”±','5—Jy­¿RžÅGª( â«5—Fôƒþÿƒi„º','',0,'?'),('uûº²\'MÆÂû…2Ã','wp-includes/blocks/embed/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gS2t±ÕŠ¢€ÙL¬g^þ',';@Ðs‚rmœì€Áwp–ð‹ey¶k%ÂZÔ‡(Žý','',0,'?'),('vqîØ½¨XâŽìH1´í','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_et.js',0,'•ZË)_†-uˆìrž,D“í','•ZË)_†-uˆìrž,D“í','€¸\"í\'Ñz3íªóŸØÕe÷a³ÊQë!ú©—4>3\n','',0,'?'),('vÚ´¡åÇÖV¹½ØKµúP','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“áÇPNÚ¡\'fÂÏÙ','\r]†~[²†¯¿›÷_Ë³¾P˜BÊTA`î©½Ç¯*,O','',0,'?'),('v(>1{Lô 6»„•','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataCreateError.php',0,'&ÙÎ\0tºÑÇ\0CngÌ','&ÙÎ\0tºÑÇ\0CngÌ','¹z‘Þ/÷Î…H•:`R=µiìXäÂˆWŒz±2&Š','',0,'?'),('v–)F¼Û~q„‡œ?b','wp-admin/includes/class-plugin-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZE)Ë-0ëMÆ;¯¯ïh','2ê¦¢—3l\'kÕÚøcÙ{û=ßºÀò$[½ð&Of”Š','',0,'?'),('v&5jrûjL #ÀÜ²“','wp-includes/blocks/categories/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«]UpÊ›VÒ‡ìµL\n','ï`op°Áé€Vå/2â‡ËÂ(NW\ZŽNº\'Kû5','',0,'?'),('vJ5â>VW“S‚ý;ãZp','wp-content/themes/Divi/includes/builder/feature/background-masks/MaskFields.php',0,'MzÖ9ýó\0Ñ‹˜ø—;ÕŽª','MzÖ9ýó\0Ñ‹˜ø—;ÕŽª','¡‡Åx/²ùp÷Ë±b„X{w\ZêJ¾JcØ.´ËÖ\nÞÊ>','',0,'?'),('vK;@ÑsºaU1;©	^©','wp-config.php',0,'¹4?ç–RJRRtM1','¹4?ç–RJRRtM1','¬Ù\n7J×zn \n_¢I¹‘ÿMí·’Y¨µÓ','',0,'?'),('vLM—.fÕìÔ%OMR','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›4¹V+=?kÅ\r²áÌ','_¶âÞ¾x:ënOsO¨:dÑ\'\0—N=–ŒÒkà','',0,'?'),('vM¸m*&Z¶`\'/bÑ+','wp-includes/js/jquery/ui/effect-puff.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªCHÌØwœdßÜÌÖž','sä LMÃ–®,sKº“\Z~Q#Æ.0WÎN×³_~','',0,'?'),('vP6Ù)úØÊÛU3ã±a¡h','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Tenant.php',0,'¸‘šÂýPxe™¶%È€8„ø','¸‘šÂýPxe™¶%È€8„ø','XÑÇfçÏÂ}4åÛ6ÖûNúcëµÆKKQÿ÷G\Z','',0,'?'),('ve×¶\\°l.—Ñ…{','wp-includes/js/dist/vendor/wp-polyfill-formdata.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')»¨Ä¬gI&LÉœ¦Nn65','Ã:q-ãö³ÿa,/Ï©ÆZSKJæ˜,Tßôˆa×5','',0,'?'),('vi™fuPâª0^ù>d¨Ô','wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÂËSG°ÎËº““F¿„Ã','[Þ(˜®R¸ŒêäëìôŠ$¦£2oåãtûb÷ç','',0,'?'),('vq5B@Pf]6Hh¢a£','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/BodyVisitor.php',0,'Ü×1œŽÍ©#3ø•¦¼','Ü×1œŽÍ©#3ø•¦¼','÷ÅÖ½ÐŸ=ølB“å£¥î£\0¢O¼<d\nÔÒ','',0,'?'),('vwÙÑ@ˆHÊÉz–F¦','wp-admin/ms-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…UjA£Ú¦Yq€uˆ­	','íÈ\"G\nÁÚ”±¢·MhÀQ§2¸à›l’\'°Üµø','',0,'?'),('v]¿z‹ðÔåšÃ3»tB','wp-admin/includes/class-wp-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê5V9½ûs°^zPñF','i„úx;B4®÷?d˜ÝÂù…Âesq•ýF¦>øÃ','',0,'?'),('v¡–Þ£ãûRï','wp-includes/js/jquery/jquery-migrate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É\0õ6¾¿?Ù³÷±tÑ\r','t—è&ähpµz‰³wÄð¦& ÏÅš9&”7ºŠºåv','',0,'?'),('v©l+XA¶\'\n…ƒÃ¡‚+’','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/wizard.less',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öÚ†È5ØH™o:Ö\Zk j','YA&J# øèåR!ûV(KhS€!/ýŒ	°ICi','',0,'?'),('v¯ÿÇ·¹õnàÿuœFU','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/State.php',0,'f6…\'ÕZ múÈË¡I¨','f6…\'ÕZ múÈË¡I¨','‡âöhhº&9†EyÛG„;\n#‡ùOê³(šà~›ó','',0,'?'),('v¯_I7:ÓëW$ÖˆÞ…ÊÈ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/UserAgentListener.php',0,'˜P5+ó0$ãÆ!|“','˜P5+ó0$ãÆ!|“','¹Šá{É=ó<\n,ã/7(et¿>•ç¤¶eK sõé','',0,'?'),('v³CSðƒlþÉN^ÿ¥a','wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Request.php',0,'oä¡÷X>>LZ4‚ó¾\\ø','oä¡÷X>>LZ4‚ó¾\\ø','ßDkF\" 2hú|Tºieµ$‹þ~*’>×TZ','',0,'?'),('v³bÕ½fp‹=°2QÍUÕ','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobOptions.php',0,'^æ|tdnðTl<Oèy','^æ|tdnðTl<Oèy','Ÿ×J§ÿßó)ævO?DMC¸þ®@õqynŠxqŒ','',0,'?'),('vµ¿žmÙømÕ=¸ËÏ=W','wp-content/themes/Divi/includes/builder/module/FullwidthPostContent.php',0,'—Ž¢h²Ë9­è\n]»Ù»','—Ž¢h²Ë9­è\n]»Ù»','Qü¢Veø\ZÓL+	9ÁC?êŽlåú«¹õ?uÓ0¾Á','',0,'?'),('vÃ¢,\\­+Q¹åÕÛñÖ§','wp-admin/css/l10n-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÁOSµGfKç½šŽ8ÜÛ]','­dòx‘¹ñk3rþÁÞ°VNÄª…eüt³-ü ƒÜß','',0,'?'),('vÄŒ£ÜH‚»Å! eo¿','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/http-message/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kÏyr¥ñ1áäaèK0','÷ŒÕa™3‰©´¦dóµø\'4u#åßÒƒvi%Jq]','',0,'?'),('vË.š#PÁ ¼‰äH2Óá','wp-includes/blocks/buttons/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÆD¦¹Ï*Ä8I«ðyMW','¡§0¸5dù|»Æ*·TH8ôÕèöí˜ xŠQö8ëRº','',0,'?'),('vÎ™ˆl‹çªHö$1<','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/UnexpectedContentException.php',0,'Zz÷ð†\Zìp—^\"8>ß','Zz÷ð†\Zìp—^\"8>ß','=ƒ¶_òæqp-NØæ©_0\"Ê¥%°„íº¿‰ßÇ','',0,'?'),('vÏ…ˆƒ;ÅÇúÀŠ²0ãÏ','wp-content/themes/Divi/includes/builder/frontend-builder/build/bundle.modals.6e47b623.js',0,'õaòŠóñÕkæ«´x7,','õaòŠóñÕkæ«´x7,','ÐaÍ·á¸øÃàiî}œ|CÌ’®ÊAb\ZÀYÛSü­©l','',0,'?'),('vÒ×q?\0Ú{í´Ê=®Å­e','wp-includes/blocks/site-logo/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dÿƒ±6;öê9ãÞ<Œï{','I\Zù5á¶ò¹—xºJ¨?¢–6ï’ÑÒàjO˜Khx[E%_','',0,'?'),('vÖŽ\'«NÕqFDÆ®”¢:','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ReasonPhraseVisitor.php',0,'\nAëÎjJm8W^IÀœ¼M','\nAëÎjJm8W^IÀœ¼M','E|6EJæ5ÅåXÕK}¤\"ñFÔáïóé>3àÝ<‹íf¦','',0,'?'),('vÙ‚ÈU¼ý;Q^OF€4j','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sr-Cyrl.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AÐw4¡Û’\\P_ez…n','£×\\&HKŸŸÑõÙ¶jü;—yzÍ[9É³§ ÍìÔ','',0,'?'),('vÙÐÃsÄè¶D¬ðÔ.Â³','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒäw.‹n”ˆ7ˆ¿I­¡¬','™¾œøW›.¢3$Èß^ÑOž:7zaƒÝ0AŽ','',0,'?'),('vÝZñò½®„Ž‹µ\n3','wp-content/themes/Divi/page-template-blank.php',0,'“?žÒU ¸Hn¾ì¡!','“?žÒU ¸Hn¾ì¡!','yÁ/º2{¥Áq!¯¶»‹ù02EÑÇgGSí,WÕt¿á','',0,'?'),('vßïŸz‘ÞZqr\\¼@ñ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/IdRequiredError.php',0,'„n,þ(‚øûýº¬O','„n,þ(‚øûýº¬O','%ÍŠ¢õüï:S’¼RàuI\0G\rÀþÿ,h:[´ºš','',0,'?'),('vâG‚.Âg·AõÆ#õré','wp-admin/images/align-right-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hƒl½>rº]£lWÆÀx','¤V:ðh¯ÁÆ#È†BTÖ5i\0¥?„ùcÀBcá„ôÝ','',0,'?'),('vå°ì´âOSHÃŽN','wp-content/plugins/worker/src/Monolog/Psr/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','küª€F„L~­G>','yÜ§…y@6W\\k>™öPÉeCÐv¶=\ZSÃ“D…','',0,'?'),('væüáâ4Ý|>í<´ÿÀ¨','wp-admin/js/xfn.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôwcWº£_~\r×1•>p','4‘[²¥Á”Å¸$[Î\\°ŽÆ«4¾-3—–­zü”x°','',0,'?'),('vð{#¿¹lš“b\0}ÓãB','wp-admin/css/colors/light/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Y?—þ³mE¹1˜ô?','QÛâÄï¹Ù^Ê•Sš°éS¼b;ü€µ?`wçó','',0,'?'),('vôãYnès Šuƒ~,|ã','wp-content/plugins/worker/src/MWP/IncrementalBackup/Model/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ìßz+hà/?ÖÐ!¹ˆ','Ä(œœ@½ÃÑ½7)\r¸bY–ñ;CV ¥HŸŽ','',0,'?'),('vúÒ¸);D°~J\"àq','wp-includes/js/jquery/jquery.form.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O¨–ö¯fÃ×ï–•ñN',':ïþ†UßíŠa8àÙ\ZPû™‹‹­I¤ë	›Ï¯jÐ','',0,'?'),('vûa\nñec`Š¥®€ìµò','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/wpml.php',0,'*¶ñÍê¬e³ûÂz]gÃ ','*¶ñÍê¬e³ûÂz]gÃ ','óz’Aqò&ÍŽôÜ¸2¤ˆ¨wî{A°%õKÚè‚è„Õ¤','',0,'?'),('w\nîvÁvÖÝ9hv[x„1','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php',0,'ì‚¥ÂÄÒÇkÊtüù','ì‚¥ÂÄÒÇkÊtüù','TÂð÷MF¤§½¥™jE »“øž¢´êS¥(½Só','',0,'?'),('wuèšl|åõp˜ÊQ','wp-includes/js/autosave.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ó‡äËDÑèU\r£¸ìkªž','eC²ROõ0.è™G‹k=\\²õ‘NšÕBb6¢O{Ä','',0,'?'),('wU¥jßÄ¦Me“Žcè','wp-content/updraft/themes-old/twentynineteen/inc/back-compat.php',0,'£½=›D±F/ôu+:‚ì@','£½=›D±F/ôu+:‚ì@','¨=7ÃÐÕa(P³w¬Æœ&ˆ»æ|ýûÚàßÉûä','',0,'?'),('w}ãÉò›Ö½Ô¤Oç','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MUº˜2v[S\ZKO%Òm','Ëòøh¸V¤ç4Ül&ÖT.„Ë<qÚ^QaíMwÄ¤','',0,'?'),('w!I^jËAEWaü˜O­','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/Panel.php',0,'8T¬	EÛ“Í¸\'ªý-Õ','8T¬	EÛ“Í¸\'ªý-Õ','ÎŸÉv¦fNF­k[ýÀo+oµ‹ÎT±\r¡Óæ+ßà','',0,'?'),('w.YsT]6]§õ]rî','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Event.php',0,'Ò9%ƒŽ	(Â²«Ÿ­','Ò9%ƒŽ	(Â²«Ÿ­','†©>jÊéðŒóîñêKfgÚ]ºŸÝ/f™M¾ÀUŒ‚','',0,'?'),('w/V55üeJ/Pšr›bË','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹œàRÑ<‚nI<','e}]T¡©Y(½u&\r÷Ï90+Ÿ—aîDÏ®´#éï','',0,'?'),('w0ú#¨zZX÷ãS!¢g','wp-content/plugins/worker/src/MWP/Crypter/Interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓÙåfù[÷Ê‡ñ‡å¨','9©t=êl`ó<vú(À<–ñg„\'ª¥~ÑËHþ›Ù','',0,'?'),('w<4)JåÕ\'#¨×¶IÆÑ','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾lÿ.´š(ëK‘pQÙð','³Ù$rb=pÏh¹xËK£ù5]8ÇQþ§˜R‰¯jn4','',0,'?'),('wDIš«-EòI×lå','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T¾š%öa;B3>|CXý®','B;,Èy_Ö: $²ÈÏÇäµìE5¨œB0„È\0','',0,'?'),('wZèè¸kFD9«œÄÎÙh','wp-includes/blocks/site-tagline/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´¦ßÝù×	úÍB›mqÓ®','üa;”çÒ$“Z‡²øu}+Z5ƒ¼·é@A–\r','',0,'?'),('wa†‡	x+)ÿôár','wp-content/plugins/fusion-builder/js/views/view-nested-column-library.js',0,'_8Iñ–[¨ø}{Qt','_8Iñ–[¨ø}{Qt','»i®BÕlÕ;Œ#TçÒIìM²‹‚=„ií˜õAT£F','',0,'?'),('weüÜjÿZôõq²IÃ','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/City.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(¯,ƒ ”¾¯EÚŽæ†;','5+úSïsY>%ór9–7ä–5[Ié=Ä`<2MçÇ','',0,'?'),('wˆ4ŒäÃ˜ä/©¶âMó','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/multi_text/field_multi_text.php',0,'¡èœMa“1Â¹ò7ËÑâP','¡èœMa“1Â¹ò7ËÑâP','òJ.E\n2ÿsÑ^iz\\Åó¯­æº…ÙJVSm«TfkÑ','',0,'?'),('wŽ[/.ÑRkÓŽ•äŠ','wp-content/updraft/plugins-old/updraftplus/js/tour.min.js',0,'üÍ6ÃFøCÍ#êQíìŸ','üÍ6ÃFøCÍ#êQíìŸ','‹Jeö•r÷j\nyû|83©Ââ¤˜Ò5‘UÞ¢','',0,'?'),('wö=>ðzÍÏ—S6˜Ô','wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Util.php',0,'€Ât­ñ>ÍäX™ÐQ!V‹','€Ât­ñ>ÍäX™ÐQ!V‹','sXÀš_ÔÕ¬(cü\0†ýB’éï¢Ó„OëOU`R','',0,'?'),('w£¤ïLýê£0œïð]r.','wp-includes/images/crystal/code.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`ï1²Ïúï°õ1®9',';ê©67˜¤ƒ”\rØ!ŠíÛçx\Z_@H×Ã&C”Ð-×ã','',0,'?'),('w§@ÏI©eÆÜR²fù7ÙÅ','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹›‚hŒR´€à¬','§üö=ömHüÕ/¨\neÛýëC¦3Øu58‚','',0,'?'),('w©Eªú€µn¯ºÎÅq','wp-content/themes/Divi/core/components/api/email/MailChimp.php',0,'{›àïU\\0÷R¾e‰ád','{›àïU\\0÷R¾e‰ád','Ønã X0\ZMyÅÕ¶\0 4ÔTäžÂ†CïûÍ<ï3Õ`','',0,'?'),('w¬Ìù¶#ÖögJQ¯¼S','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Validate.php',0,'\\Z¾!µ\nŠßX­9ŒóÚ%','\\Z¾!µ\nŠßX­9ŒóÚ%','Õ´@%Y@Gaè§¸ÙÜ‰ÊS±©ÌPÐ¿¼±Ò‚u','',0,'?'),('w®ô`MËá>Ç{Ôƒ´','wp-admin/includes/noop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XÓqj¤ö‚Ñ\Z!ñ\r:´','dËŽJ©™Á¡æÔ˜P[\n=¾ŠQc«‚®™PÞ','',0,'?'),('w²DÃs.}P£›4•Hèò','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/CachingConfigLoader.php',0,',ƒŸž—iSÖ\'•”d',',ƒŸž—iSÖ\'•”d','¥VKw0n¼Ô··~1[ZÀ½š]\0½0Otâ‹','',0,'?'),('w¿ÓèÜÜëá6™Ûè †®R','wp-content/plugins/fusion-builder/shortcodes/fusion-post-slider.php',0,'(ü«RÈeôÌ”üÂƒ¥ê','(ü«RÈeôÌ”üÂƒ¥ê','³@¸oïÄ-¿×%ßÕŽÍ{‘‡Èò­)Õ·Ì¸CÀ','',0,'?'),('wÃ‹ôíÊ9/,+1ý‚','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cï‹ ƒZ8åt\"','avxu«‹í¶j¦«=žI¢S¶ÑD{‘ùÞÁ’!','',0,'?'),('wÃ­£¯M“}áÅ[p1BRˆ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UpdateError.php',0,'<8ÙlÁ€%W9ôßÐO¹ì','<8ÙlÁ€%W9ôßÐO¹ì','¯RoÏ:«mQ:Pº ¿“œà†S6Ð»wy[³','',0,'?'),('wÑt¼²rÖ0½Î½\'z','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pZú˜£ËÄ:!„Ù¼Ñ','3í³l¦@Ùä™ú—o£-É3ö–ýS¦ÌàÕ&Ê!Ð','',0,'?'),('wØÖÅ4ÊbRq‚?¼','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/NoKeyLoadedException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pî$ÜÍ¶2ÃL\næd\Z','×Gð4î¼²šTŽ,:yDJO)•V¿÷G:·¼','',0,'?'),('wàEuñúc¦§¶þâÀ','wp-content/plugins/fusion-builder/shortcodes/js/fusion-pricing-table.js',0,'bãÜM¿»0·5ìd]9ç­¦','bãÜM¿»0·5ìd]9ç­¦',';ó0\r÷Œœo‰ W TîIØU†>&õ¤›fCï','',0,'?'),('wåàõ[@þ¿hSû±©–','wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha.js',0,' #éÊ,%¶ùÃÑ\0¡~&',' #éÊ,%¶ùÃÑ\0¡~&','Z mIÀ»,´¼\ZCï&LÀ²¾õÀ‰s™œ10','',0,'?'),('wøÀ½SÁñRÌ\nÈ†Ã\\','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedCampaignOverview.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºö*D’û6ÚCðH…+2','A}ôbªÕz¤Í¥~¶W=z@UFñ7œõäÒ–ÌŠV¥','',0,'?'),('wû³þóRjf¹`î”…Zæ{','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/StatusCodeVisitor.php',0,'õ>{Oà<Ü…ëñbï1Ó','õ>{Oà<Ü…ëñbï1Ó','o8”éä%d=¨D-o€jð¶äˆSYJK$£7¦ÉÉ','',0,'?'),('wýúÚòáÊ:}V¹¼P','wp-admin/js/common.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ç<5±F%‹±‹Ö.\r¦¢','\0:[§›4‚Ð\ZMæhoCíb×¸€ÆusÕŸSÂ','',0,'?'),('xó>ÓæE\\°•Q;š\\','wp-content/plugins/contact-form-7/modules/flamingo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒ¢¢¼¹Î»ŒËTå^Ž','½N$Ì•`ñõÞéS$\nIÕu²^ÁØ¯X}­Hôß0','',0,'?'),('x	G!Nä·$¥.šdŽTbï','wp-includes/ID3/module.audio-video.flv.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r”¿‰ˆwÞI‹@ŠÙ',';hg¦D¡)\rã¶:n¼ëýøe8c´ªºÀÜê\"–.Ô','',0,'?'),('xØ1:äÔŸÉH+2','wp-content/themes/Divi/ai-app/i18n/user-prompt.php',0,'•Û:ŒÈ6\nJp–4Þ6ÄŒ','•Û:ŒÈ6\nJp–4Þ6ÄŒ','‘¿÷\'j‰rÀd6–Ùhî\'BQ+µïsP§%èâ¨‹û','',0,'?'),('x…·øÚÊ™5ìe‡ø7¡','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/CredentialsLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\¿Y¸h0¾ó_å¾u:','{ãÜ\"ì!62æ÷7ruÍz‚^°Yù¸2‰','',0,'?'),('x(-¯MmWLËß×2…åÝ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserNameError.php',0,'Fˆ¨¬Q½¯:‘³í³X','Fˆ¨¬Q½¯:‘³í³X','\'±q…ÜºYÇ~Îð8~Îýÿ””º}	2:å&˜Mn','',0,'?'),('x0êj¾%‘ÖÓ=¥RKº','wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/PdoConnection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B«cvçéx‘	Ò]Ì‚K','“œÍ=Ò¶ ®ö†&JÂíJù´æù+4î\r…ô8','',0,'?'),('x9@^6œÅß‘¬óŸo·è','wp-includes/images/w-logo-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ý[N°W¢ð_pàw®0','Þ£^Qtä3ôHunUâ»Éà~²\'»T2','',0,'?'),('xIHÞ.”9”YÃàBO','wp-admin/css/colors/coffee/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!QDþhê4¥ç‘èó','È“»OÖçeVÂ‹T`N6bqIO7àµýM\nöŒœ^”8','',0,'?'),('xLKx ––2¸¯Isò!#Q','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Î\r—U¡ŠöÖýÚCB\"','ƒú)M£¦•ì©‚tUÊä¯Î´ÕÔªÛù¯ÌF.ü','',0,'?'),('xV‚Mšé>–nÙ{O–ÇŸ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åI,0`ç-=¸OxH§¼','â°m¼WkaËö—è2ƒSjÔ>¨Ë·…\"Çwù<','',0,'?'),('x[Tée‰ƒ€Ž3¨Š=8','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSmtpTemplates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«QâdáMôÞde‰²2¹','3‹ð× Br±ß²Q-Püuœ,Qàö7 ‘·hÞ>ðP	\"','',0,'?'),('xeùË…‘è¯¹<×Ê/eY','wp-includes/blocks/tag-cloud/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ao§U–u•g‚T¶;°4','™V®£ñs©þ|æÌÑÂbPo25é*ŒSÍæ¤ž6§','',0,'?'),('xsµ¸ŽÕg—§rŒSƒâ÷Ð','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureTransfer.php',0,'CVsµ˜ybo¸3`>j#Ò','CVsµ˜ybo¸3`>j#Ò','wA¨/e{zwýÔþW&œ	1ogìÔR¹Œ²‰…]DŒÏ','',0,'?'),('xy—!àøôqÁ)ö.Ë‰\"','wp-content/plugins/wordfence/images/sort_desc_disabled.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÎmŽ„†•ÍŸÊärÑÖ 9',';	Ñ_öYïà·ítŠ7KßÕs—•mCøÞ\råàÊîo','',0,'?'),('x‚œ8Ê‰x §6›-K’','wp-content/updraft/themes-old/twentyseventeen/search.php',0,'|Wž·C@¹*z„Ç·×','|Wž·C@¹*z„Ç·×','):ÉÂÏ(ßè	¡Œ®ÂØ.iMÛùaóëœgsã`½','',0,'?'),('xÁCìá	\'˜´Ø\Z^','wp-content/themes/Divi/common/scripts/es6-promise.auto.min.js',0,'þa8Í<d³ìv¯á7‘','þa8Í<d³ìv¯á7‘','V‰¢¨à=/G¬NCïôœ¤¯¡ò•Xdž$¹c‰','',0,'?'),('x–^mÝ]Ì²š/õÅL4vU','wp-admin/includes/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šÑ”:Á$\rà¦¨ö)ã','ÊvÆÓ€çÿˆØrìD:9á®3Ú9mU‡ü¬mh:¬lV','',0,'?'),('x«¼²QG™9n›J˜|ª','wp-content/plugins/updraftplus/vendor/composer/autoload_static.php',0,'½rkÎ{ÌÚÙÂùŸ3','½rkÎ{ÌÚÙÂùŸ3','¬j{c€åíO³èR\Z¤Ñ#•€Ïis¿µóe‘¿ˆ','',0,'?'),('xºB’|Ã¾¬¦­\r.ö[;q','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV2.php',0,'\"ÅË2‘0W‹R­œÑÇZ¨','\"ÅË2‘0W‹R­œÑÇZ¨','ñ¬\\ÕØŸƒZªc¬EfÓb5ý.’Xï’qNtÉô¢','',0,'?'),('x¿t{‰Ü¨>	ÇûJ¾ÆÅÔ','wp-content/plugins/updraftplus/includes/Google/Service/Licensing.php',0,'¼C/b™ÈròìAé','¼C/b™ÈròìAé','Žf	Ü.ÙZ%Qñ¿ê-”®0Ñï—zÖ‚c±ù…','',0,'?'),('xÒIÅñK\rý¦ìýTÃ{¾','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MaxMessageLengthExceededException.php',0,'ã˜² Á\rã©í3a&GÜë[','ã˜² Á\rã©í3a&GÜë[','=°>Õ/_Ëcj†kÆ;	sgMÿwBîÅPÆ¦NaÏ€ ','',0,'?'),('xÙ.½¦ŒXóëJ$§É®Ü¹','wp-includes/blocks/pullquote/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c ‹Þ\0Õß}Ì˜8§Úß*','Œ¢bÍé(¢îóÎ0ÕVôÏêÇæ\nÇÏkªlY’Éí','',0,'?'),('xÙ´¿ã}¥7esØ ~','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/AccessToken.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…7j®ulEE\0ìx;î','Ù(RÜ»›«ªÓ4=KÞ¶f_f”LŸÛQÅÎH÷ˆ','',0,'?'),('xàá€‡àÜ×6j…Õ\n[‚','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autoresize/plugin.min.js',0,'O›ÀcWŒÉµ;¥ó,CU','O›ÀcWŒÉµ;¥ó,CU','£r{M‡¦¸_	,ø`z¯áèë©Ò#$ÜS§´o°œE3¢','',0,'?'),('xç¥ý—õ½Æw&K3\"ÈTO','wp-content/wflogs-old/template.php',0,'lC¤dbï.§Ë´ëƒv','lC¤dbï.§Ë´ëƒv','Z][W‹Pš}Ã,ûþ¿–žƒ7*öqäá\nãæÆ‘¡á','',0,'?'),('xêáÈ¡DË‡2Y=°ZHK','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/spacing/field_spacing.php',0,'†\'ádªfÀ—õ3m*œ\\Û','†\'ádªfÀ—õ3m*œ\\Û','<s6°–ÿ}×\\¸ŸÁ\\Î4t›*M&V\r|Ô¨,','',0,'?'),('xë‚‚Ÿ@}YÇŒiË+','wp-includes/js/tinymce/plugins/tabfocus/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦™ÏŽÅ@ï/@MümóNÙ','žxM‘”\'È¤“ç´=ÎÚ·¦?$ŠS,Fy¸„¥Ö¥','',0,'?'),('xïz#è]”rŒu?0Ÿ®Où','wp-includes/sodium_compat/namespaced/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hß‹Õg`É¸:Ú•^','½•ŸF/Q°H\0ù¦æ^l 0¡BÎ“Õ«6S@Phë','',0,'?'),('xù¦”ªm÷fÏ>>¡%\n','wp-content/plugins/updraftplus/vendor/symfony/process/Pipes/UnixPipes.php',0,'˜×bCW±â_Ïa¾Ká^','˜×bCW±â_Ïa¾Ká^','ãØ\\GÆ•è*±«ÇEË¦.iôª®ÍÛzøãÇù:','',0,'?'),('xúÑ*„ÕÄ¢£¬Ñ‚ÐxI','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/GitLabApi.php',0,'Ø€´~6‡œ_šðÆ„Ý’','Ø€´~6‡œ_šðÆ„Ý’','-+%ô=Ÿ5QêeË½ÂÐäÒ#ÌÌ‰‰h8Òþ&1Î','',0,'?'),('yÅ%o÷¦Y¬3œI@Á±¼','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Middleware/ScopedAccessTokenMiddleware.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6”¬ üð\"ý–ñŽ„°*ø','®ä%Ù¨h 0\ZéÝ8\Z>™\n8CÂ\'Ç•Ñ','',0,'?'),('yŠ­1‰â-è†/fI× ','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Êã09\rÉ˜a—d·£øP','F*OàÐžq^Êl×Êgz·‚,I?ÔbÎRï]KÂÖ³E','',0,'?'),('y×§åÅÝŽÖÆX† *z','wp-content/themes/Divi/includes/builder/frontend-builder/build/bundle.js.LICENSE.txt',0,'£y†®ü6pƒqÙ$˜íui','£y†®ü6pƒqÙ$˜íui','ëÍÍØuÐ§D›o]þHåe“,sºïþl#g†šá1','',0,'?'),('y¯«µ&0»Aª©”\"','wp-content/plugins/wp-mail-smtp/src/Compatibility/Plugin/Admin2020.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»8eÅPžS¼¤yñŒ¾a','$÷ÓÙÞ,5qðI–Z|rH•Ýéô¸V`ý«DG','',0,'?'),('y&EÙzÝœ™Z½y×ºÚ²','wp-includes/class-wp-recovery-mode-key-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´9A…¨l†Ìé%<—C','îú¡’„{èŒTg¦}ÁEˆø^î[—Fe°.Ô','',0,'?'),('y) º¿wQ!\0ÚÜ3`M','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CollectionException.php',0,'bB!~÷ÿü-È†ýÙ­','bB!~÷ÿü-È†ýÙ­','ï>¯€T±kHÁï~;o‰ELwpý‚JÃ\Z','',0,'?'),('y52¤m£\0¥l™\"ùe','wp-includes/js/dist/priority-queue.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡ÞRª°\ZÜÉZøFœ›3\0','êÙXioÌÜû‹=”cù-‡š¥qLÝó€~¯rÔdØ0','',0,'?'),('yA©‡0»¦•Xz(€ž\'\\','wp-admin/js/widgets/media-gallery-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#D‰\"5.Ž(ÑÞÔ5µÐ','Pe±Z\nG=<ŒíÛ¹B3±Õ\n\rÙ˜ÊÀ<ÂÆ×…¹Š','',0,'?'),('yA?ZfMÅeK š]e4¶','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/PeclHttpMessageParser.php',0,'Ûä˜l“|©1aSÃ‰8','Ûä˜l“|©1aSÃ‰8','bO²»=ÚJ3EúýÁó’¾Æ‚ös~}e–2`kG@','',0,'?'),('yCüuÃŒ»iÖ­Oš‘~Þ','wp-content/plugins/fusion-builder/shortcodes/fusion-fontawesome.php',0,'+€óRØ7îP\'ÇÜ','+€óRØ7îP\'ÇÜ','MI¤èü=v×ÖuAéì°ÂšQÔK›dï°²¾\rCn™n','',0,'?'),('yF]	Öärç+‰ºÌÑ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-mysql.js',0,'†£o’QCŸ¯rÂ< ’&Äº','†£o’QCŸ¯rÂ< ’&Äº','î…g!9kÕ–³3Û½vŽÝO–Z˜y ÏUûŠ*	z™Ø','',0,'?'),('yOž\0yjùeB\nVpÈûð','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–Eí¯·äƒÆ€küvk¢¥\r','ð¾Š¥iiLM»P µ¬4ÚöÞ¨O_!üÍø“iN	»','',0,'?'),('ygßM^T|[bçó¤N\"','wp-content/themes/Divi/includes/builder/feature/background-masks/BackgroundPatternStyleBase.php',0,'Ÿ&èî?`Éö®QÆnÿo','Ÿ&èî?`Éö®QÆnÿo','è¾¯e©5BÓö‹PRü<SØ=•@Öxõà\"Ddò­ŽÅ','',0,'?'),('yq´“Ï&PJÒbñŒ,#{','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidSecurityException.php',0,'Å2]z±ð—`µÏµßñE,õ','Å2]z±ð—`µÏµßñE,õ','SÀ\\’«×žŸÑAbùÑƒ,A1™P9– Ú‡CiX.','',0,'?'),('yv?–\"lÎ¨Äf¶Õ8Q','wp-content/themes/Divi/core/code-snippets/api.php',0,'lóÆfØºM´O$kƒ(h²','lóÆfØºM´O$kƒ(h²','Ÿ9JÎæQDú®#\nØ„,áT40ªèç<>§^­','',0,'?'),('yw¸Bvdc¶ªH7Ýj7J','wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/easypiechart.js',0,'\04lí‹\\fK‚c½Í|H','\04lí‹\\fK‚c½Í|H','³ƒa=ï^š ¡\"U©I–ºÅ È™/`ƒžörkE½r¨z','',0,'?'),('yxGèq¸rg®qnbå','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/AppState.php',0,'oàqøwP§œS¿·KÓ÷‰','oàqøwP§œS¿·KÓ÷‰','„Ÿ}^óÏ¤§ä\Z9«Záš*ˆT]‹l(ùMŠÓ™«','',0,'?'),('y×\n–,\nCç|[i','wp-includes/customize/class-wp-customize-selective-refresh.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[éÜ`çü`bþ=EÐ\"','ä–ŒB‘%ñ\'ºM„9Fýâò4\n¯—4yÓ©Ý\n','',0,'?'),('y‰¤´ñõvµfs÷—ŒYb','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/Account.php',0,'<ñ^Pj¸¯%^Õå6€Å{á','<ñ^Pj¸¯%^Õå6€Å{á','-fØ]wž¦ûœÌUo”‡¾T®ÀÎ÷e‹({?èÇ€','',0,'?'),('y‹ƒ{ˆ\\bÒa\'èø\\','wp-includes/customize/class-wp-sidebar-block-editor-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é]m³¿L-DÑÕÓ+ZÙ•','’o,bLÞnBÄðQvñ-|qd½¢Û\'B=ŠX&','',0,'?'),('yƒË(ÊVœÝF¶','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ForbiddenOperationException.php',0,'j¬i\Z±m·ÑÆ LZ	D','j¬i\Z±m·ÑÆ LZ	D','»2lX\'Â‘LKü‡sÁ5wÊ<‚+väÎNÒ1bD‡qG`','',0,'?'),('y’ŠÆ-ŸÈõ·V±‰ª›œ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ServerErrorResponseException.php',0,'þ&!¦K‰…<UZ—ÎÿÊ›','þ&!¦K‰…<UZ—ÎÿÊ›','H?ôÙ—ÌKH´¢ºwªJ•¾5–ƒ>Ñˆa&y÷>£','',0,'?'),('y›Kì:x}0êJóFm¹','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/NullLogger.php',0,'ÖoQÁür›	åOØ‚}þF','ÖoQÁür›	åOØ‚}þF','ïÍ®ˆ‘`é)fçGd=d Œ³>à{UÐ‹Ä6vÌz','',0,'?'),('y®ß¿û‹óÕOÃÙ2øÀ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/MailHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<Íê±ýÞ\ZW>·¹Ï…Ë','àÇæü\nzÙètºGilêp®Ò¾Âÿ ‘ôðYS\Z','',0,'?'),('y´íÝEaÌó:[\0','wp-includes/class.wp-dependencies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú1œn«©}%„3t­','–ÜâB-²[i<ï›Õ6J£Zu*3¯’QÜqxL\0','',0,'?'),('y¶.r#ô”µ]vóñu','wp-content/plugins/worker/src/MWP/Extension/HitCounter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8Sü»»SòÏƒÈY¯!s','	=10þòÓP‡û0X½éß+éKR¶\'ZÉ¤b¯','',0,'?'),('yÅóÝýÑã&@7o«Ö[','wp-content/updraft/plugins-old/updraftplus/includes/select2/select2.min.js',0,'&«±Kr`êŒ‘#âÈï','&«±Kr`êŒ‘#âÈï','€Ò°xõt;4Î&€­6–Öø¹D\"”ôTÙÿ','',0,'?'),('yÑ§ùÃDe±×>\r©=°','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/templates/panel/content.tpl.php',0,'$ÖÌ¹¾Ÿ’¿FžÏƒ©]Ö','$ÖÌ¹¾Ÿ’¿FžÏƒ©]Ö','7_¢é®¹.÷ÓÍüÎÓ`ª¾o×“\r>ªì±½(','',0,'?'),('yÕêóÉ]™îÔ|ÆQ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/BadMethodCallException.php',0,'˜Õ MòßŒuŽµ.<¢','˜Õ MòßŒuŽµ.<¢','Ý´ÏÍß‚¶0³áüb…ù}å?\n S£îHBu L…	\"','',0,'?'),('yæ3¡Ýâ2/Ÿ¤[X#ùÂF','wp-includes/blocks/query-title/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýÁ¼zÓ«ÒóZ»ð$R¶','Ëå¶˜ý`M’_Å]ÍDÚbf{Â›áBhnþ ','',0,'?'),('yêŽäG•\\`˜áù¢MR”','wp-admin/network/site-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«”–~Z¤vë¦µîÓ\'ŸÅ','T¦1É*nNß\ZìŽ\rê‹?—ZUª±a:‚†Üºrý«ü','',0,'?'),('yì{ëô§üfÜPàèGÍ•','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/EndpointSignatureInterface.php',0,'IŠµV¦{´ûÙBÓØÛ.','IŠµV¦{´ûÙBÓØÛ.','\0k\'Únâí„ã­“„‹[è€|½@à–æQŸÿ','',0,'?'),('yñ «\0LzÀã¶µÙˆ','wp-includes/blocks/group/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l¦øÖ…Ã5Þƒž–|ìq™','Ûž\Z¹¿·}=eJ]¶0]¬ÄuCG.ß0NAª\Z','',0,'?'),('zÉµ›‚@ö/Î/@ ','wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jä58OšO}ôös','«ž¢„$9ªdS>;ð:‚¡€\nîïad_¨XÝ¦[F','',0,'?'),('zÜ(zàbû×øö¿Dº','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2Tests/AbstractTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾%É‘ý´{ù‰ê\\ÜÏ','Óîˆ\"€\r$ÂÊ\ZS÷§Öû\rð3ÛÊ¿f¦‰tô|?\\','',0,'?'),('z.[ÇýD8RÔ','wp-includes/js/codemirror/jsonlint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I)fyÞãkTŒ+Êí<ÕŸ','“$D;;¯€´ž0ÅÖÿFø~p’øGÒ“F¹Ë¦…','',0,'?'),('z6Ðp=–ZªÀk%Öš','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/theme-monokai.js',0,'•ð\"®[fƒÏÍeÎ—ÊJ','•ð\"®[fƒÏÍeÎ—ÊJ','pË×î}+˜Ù¤ý×ãë7F8dc¶é9±:±Ôíâ÷ê','',0,'?'),('z8ƒdu|Ñ¸êâ%Ò|„n€','wp-content/plugins/worker/src/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼A¿.„éìõžýœßÏj','UŽéóñË©Æ¯#\nÈÍòqÔŒð3÷[Ž’þ¼ÿ¨ï','',0,'?'),('z;j2WDº6²Œ[¡V','wp-admin/js/accordion.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' -)‰Æ@O(®é¦òb˜','ý„1åiLOU™m\r[XÅðð00Úÿ\\ˆE²BŠµÞ-','',0,'?'),('z;Ø®K)Èmð:t@\0¬','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Draft.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jdó°(Ž\\”J*“þÀŸ','¾Ôì‰Kš©}ø5þ¥@XŽ@ÿxm‰Uål]cIðß»qÓ','',0,'?'),('z=v™±U*ÝœÀ_<5ÐD','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Oauth/OauthPlugin.php',0,'_«›mA–B\r‘M‡%FùQä','_«›mA–B\r‘M‡%FùQä','§z²‘!˜.>ëÜ1ŒYHŒ™£Ýhù–ôµ€d²@—\Z','',0,'?'),('zNõ½8URlgŒˆŸ.¶³','wp-content/plugins/worker/src/MWP/Updater/TraceableUpdaterSkin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o?”²*ÎBAaà§ê9','jÚkØ‡ÕÎ³É‡ûíC€^!ÀUßùØh,Ï‰@ÈÙõê','',0,'?'),('zVIJÚK¶-NÛd]\"N','wp-content/updraft/plugins-old/updraftplus/includes/handlebars/handlebars.min.js',0,'ù¸^È¤Xv+nïr…Ëj™¨','ù¸^È¤Xv+nïr…Ëj™¨','LKö¨A_õZgM´áß‰³ú{ÐÜ¨Ú\rb¾÷Gi<Ý','',0,'?'),('z[ÓÏ·”·þV¸Jý™','wp-content/plugins/wp-mail-smtp/src/Geo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=™eÄŽÅz!8ÞDI','Ä‰i\"ö+P‡\râè+òªNjƒè”YŽl¬\'Ó£j°','',0,'?'),('zgrTïNOÖcƒ¶‡,m','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/MultipartBody.php',0,'¢#š™âÜre¬0¢ÄÀ','¢#š™âÜre¬0¢ÄÀ','+²0ìØµDÑ`Ù[­!<“5C{\r`ŸÁMÌYÀÏô','',0,'?'),('zj—÷›b}wÑàúpur','wp-content/updraft/themes-old/twentytwenty/inc/svg-icons.php',0,'5áÚ¯~»þ…ËU|ñEc','5áÚ¯~»þ…ËU|ñEc','ˆ@c%˜\ra§?£Ã‘	¶;È;Þ{,Ú¿âèšö_','',0,'?'),('zo¸†Ü²ˆ~¡áˆb','wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&ë’5”éuNiÍÎ!Åz','€ÔéÎ#…ËÈÉ›!wƒcwØƒ}6¢Ùó‚~A§’ó','',0,'?'),('zp>àå¿ NSÙÜ§é\Z','wp-content/plugins/fusion-builder/js/views/view-elements-library.js',0,'>N¬õ¥Tb°{h¹a·','>N¬õ¥Tb°{h¹a·','ÆTuÚ÷z©ëZp!=òz@‡óË¯•%—Ânªð¼','',0,'?'),('zx3ÛMûñâÀëLq)','wp-content/plugins/worker/src/PHPSecLib/openssl.cnf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´@˜#V,aq|ÐMgÈú','®œƒÖ0ù^Âª#vp†< ¦,xœåø¹ûI+,±\\','',0,'?'),('z|û­ª©îL©âFÄDßù','wp-includes/css/dist/edit-widgets/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„¤1GÞüOáø‚|iEÚB','æ\Z†Ed@ïZýì|ƒ.ç+¤uún˜eÅ‚æ','',0,'?'),('z}Èsnøzˆìzúu©Ÿé','wp-content/updraft/plugins-old/updraftplus/vendor/composer/autoload_classmap.php',0,'ß¶TZ,p¶½’j{ë','ß¶TZ,p¶½’j{ë','J¨ú¢-Ÿ»FÀ i%ž,5tƒ»zÌånÕo­æ÷¡Î~','',0,'?'),('zƒ½[R³Ó5Óvß3íx','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorFactoryInterface.php',0,'g¸hGèi\0»*T†º\"\n}','g¸hGèi\0»*T†º\"\n}','›”GBhÃî	ä‹š›cýz¹ÿs¬îŠ\Zö¹›É,','',0,'?'),('zˆm•SAý}I¼þ´)','wp-includes/sodium_compat/namespaced/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aòiêk²/Êå¿j\rnŽ3','1À\'§¶‡Õ».ìOÐà}5ºAfi¤~¢>î:}s','',0,'?'),('z‹\"î¼/|i\nç#&ˆ/','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateSenderIps.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ê]}ÀEê«zse,p£v','¥UlÀjÓñˆí‡!	Ë ™d\ZÅ‚G˜%^Ä?Åð','',0,'?'),('z2]w\'´á=\"Ó-£4','wp-includes/blocks/query-pagination-previous/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ý>*®Ä£”x° #†','\\Ÿý­èðŒ³ä¡ RÏÖœÔt÷Ïc5\r«^„²ùDaR','',0,'?'),('z~únÂÖ(ià›@ÆÜ','wp-content/plugins/updraftplus/includes/Google/Service/Blogger.php',0,'53DÏía1!Cpç±j:2','53DÏía1!Cpç±j:2','Î›T‹J	¡:\n,+•\n]ØÂsbn†‰ˆÅÉ[uÍŒC‘»','',0,'?'),('z˜F…´¦GáU·Ók&‡','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/FilterIterator.php',0,'í~\rU×òFb{iIË¦','í~\rU×òFb{iIË¦','g›£†r&[÷‰m\nxHs°Âêx\')9Ê»\"A|‰ÅÓ','',0,'?'),('zš÷Ô¤™³Ð¥E\'64','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/ClientInterface.php',0,'ib»ôZ„KhdüLô\\','ib»ôZ„KhdüLô\\','$C‘Ä„0’5H¢~1;ÀpÆ1€ë%Zd>t²oŽÃ¡','',0,'?'),('z¢5·*\ZADZCk¬áj®’','wp-content/plugins/wordfence/images/icons/magnifier.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨§uO®{:qcVãî\'','™ at¿¿vºdQÃë¨0(ìIj®Æ–O§¢$e(*','',0,'?'),('z¢šå‘L©£5	g5µÄŽ¬','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t×rèI¦±¯bw\'-7íš','³u©SÕ{•ü<ø“ôn\rß…+-#²;»á·ƒQÐ®','',0,'?'),('z¨‹ß8 Lò{ŸÓõq','wp-content/plugins/wordfence/lib/menu_scanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','î/ØµtbŸa¬‚ã0†\'2','J”­*e*ƒº0¯ØqCs\'GO.~rî1±OmSË4','',0,'?'),('z¨¯Q<’˜\'š€U~ÔR\\','wp-includes/css/wp-embed-template.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šªnŽ·t“{ËhK·','/ìO»åh\nÏƒšG˜¢ÓÏE]<<ñuð¿Çâbh2','',0,'?'),('z¬öÕïJXÔw{!\rF«Àº','wp-admin/includes/class-wp-upgrader-skins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\"úƒ¼ÈÒ‘á-Ñ‰','.¡™7j3?Ì¶ÊËÂ·?‹¡2U“EŽ.“GÌW','',0,'?'),('z²ƒ!È38TÏ_×Þ‰:¯','wp-content/plugins/updraftplus/includes/Google/Signer/P12.php',0,'…‘TRä+†6êÍ|‹8é','…‘TRä+†6êÍ|‹8é','¶4]ÇàØâ±©§¦@µq?u¨íáŠlEñv¥%µjP¦r','',0,'?'),('z¸–:¤.g>[Ñüˆ÷µx','wp-content/themes/Divi/includes/builder/module/Search.php',0,'\\ø|0G¥gK*¦Á\nÎZÌ','\\ø|0G¥gK*¦Á\nÎZÌ','£_Œ£¢ÿ?¸·Ü{š¤Óæ°:Ì‹i @^ÐIà4ßÄ¢h','',0,'?'),('zÎ‹Û—Ú`îç€ƒçô1\0','wp-includes/js/jquery/ui/effect.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾jÛBs*C¨ƒåµõx÷','|®Bh»îz£+Ö{nÖ.n¯sÃE\\I Ö\0½±ñ±','',0,'?'),('zß-é\'¶9-þB_elR','wp-content/updraft/plugins-old/updraftplus/includes/Google/IO/Curl.php',0,'²<­jÐf#€-”XÕÉ','²<­jÐf#€-”XÕÉ','ÍP‡²7aåVÂ%~½µzákÓÆ1Ícb','',0,'?'),('zßW¬sW5Êˆ÷ )úž','wp-includes/css/dist/customize-widgets/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ\rãø‹»Oy`33É¿_è','öæg,4hœuq˜âŸ †¢ÿZOš¶Ø°O­\ZØc','',0,'?'),('zâmz*¸*çŸz¢Îö3´','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserCreateError.php',0,'èP…¹îÕ^oÕ±,›c¨','èP…¹îÕ^oÕ±,›c¨','Yõ¶;Ï9Mé~ÃjG–O+|R¯»$}—|k–','',0,'?'),('zæ¹ÿ0z_*_&©Hbt','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php',0,' b&†_5ÊkíKåmÉ	~ž',' b&†_5ÊkíKåmÉ	~ž','iU1y½›\0ÓÿÆà#F™Mãâ\\]†¥üŸôò\Z','',0,'?'),('zö’õïÚôÖ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/MapIterator.php',0,'}(¤²/D.¶‡OUtk(à','}(¤²/D.¶‡OUtk(à','­è96EŸ ¢>ˆ«Sð®#0Ébf3ÑºY','',0,'?'),('{éwµQv{‰ÈŽš2Á','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Account/Deactivate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŽKM›ûÿ[¶‚°ð¡•tSD','\rõºßo=œnø´ˆ‰j 9`oqÍwîoë.ûhú¥¢','',0,'?'),('{\n„ÕåR o­æR=\'gÀ','wp-admin/js/widgets/custom-html-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö•§eF¹’ÖãEO÷^','ˆùŽ”¥ÝI«ù|Muµa6ûi\0¦¦J_ænºÜkñº{','',0,'?'),('{Û¶}ƒ«\0é\'|æ\nØF','wp-content/updraft/plugins-old/akismet/views/title.php',0,'÷X¤CN3|)-Î2Na©±²','÷X¤CN3|)-Î2Na©±²','¢‘štûCzô ž¤Ín`j\r­MÍðN\"Agó×æ','',0,'?'),('{N¤ˆÈ2íQ®uÔÞ=	œ','wp-admin/network/theme-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}àb~î­@®uÕËJ™Œ','µ˜\Zªådc\\fuü5ûŒ¡=q¿×EcêžâˆI€aêº','',0,'?'),('{\Z\nÕ›¬w\nìO–Ü\"á','wp-content/updraft/themes-old/twentyseventeen/template-parts/header/header-image.php',0,'žÿ!u:ÏÆL1ø£˜•','žÿ!u:ÏÆL1ø£˜•','KtZ.o/åZG¡py@¾1C­\";×Âa˜Í:¯','',0,'?'),('{!dD»n0¬ áÄ˜N×6','wp-content/plugins/duplicate-post/src/ui/classic-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤a¸IèA|é…1áŒÅ:','»Tçæ[[­½EŽó¤ëkxŽï•v5õ8´7','',0,'?'),('{$]ñLÙŒÇwž}ûö','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/AbstractResourceIteratorFactory.php',0,'çÉ÷ñoÞ÷Ëòw&k²±c','çÉ÷ñoÞ÷Ëòw&k²±c','èƒgè¹rˆËõžF§\n.¨oÞUP›d÷¼éÇ±dgWÝ','',0,'?'),('{\'S“$²ôßÜ[0ì¡$','wp-content/plugins/instagram-feed/languages/instagram-feed-it_IT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ï\\z…¨¡3ÏÀÂ','iâöd“\"e”Ž#+¡À,Æë… Nz3áýìW»Œ','',0,'?'),('{(Ðç×çúÍÚzšM','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/AbstractCommand.php',0,'^«ûðÞªù¿±z¹)~c','^«ûðÞªù¿±z¹)~c','^ßUËw1ãñxNàÛ­E!XÙNq^À…dÜ|þGí’Jq','',0,'?'),('{.æä8ìBÈbŸ~•ç','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmailTo1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ž÷…µ2…¾AÞ$h','ê[Ê\0nìîbšµ\\vìÇsŒóõœÓýÆ²³±Ó¦‚‰','',0,'?'),('{/êê–6Šø¹¥¡*]','wp-content/updraft/plugins-old/updraftplus/central/modules/theme.php',0,'ò>o\"\'‡3@šç}','ò>o\"\'‡3@šç}','/%H&±„íçz/5=€7¡÷FéÂ÷V©}-fªöÏò','',0,'?'),('{OOa¿k±Ô$,¨œ×a','wp-content/plugins/worker/src/MWP/Worker/Request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´­/®û¹4žölE','jí+àknMw‡},¤,KÅVTm Û 8º=ªåÃ±Š','',0,'?'),('{[ã/Á°³†Ú‘Îý„','wp-content/plugins/wordfence/views/dashboard/option-howgetips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜŽ¼húùµØè(v1”','ƒ\Zôle±knj\'=á‹|C´¬ò,\0ÜìMlDGáåÝô','',0,'?'),('{aâÀ{4Ó;òÓMoØ²','wp-includes/block-template-utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WÎ¬Ôd„¨Ù¬\rÌÄþ°','ˆn-j¦ã\\zzTïÝ89¯fKo.q9õXwÈ\0÷Zó','',0,'?'),('{h]cƒ–lÐn‹óÄK!','wp-content/plugins/fusion-builder/inc/templates/options/uploadfile.php',0,'ÂA	¾<± ØÖÆ+','ÂA	¾<± ØÖÆ+','jÃ`™\næþkXòòk¥¡f/ðkCù¦>ÄÐà/}à','',0,'?'),('{n${å9¦¬þ¾)ëü','wp-content/plugins/wordfence/js/jquery.tmpl.min.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€\\}Ã\"£†‹7Ú·’•DZ','ß.IôH\Z„g\0óH!7`‘£gÞ ZøzÈ„ƒÅ¾6|','',0,'?'),('{r8ˆõ;|*ñxµ[<Šd','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/User.php',0,'#7î@>þ÷¬\"¢ßB* ','#7î@>þ÷¬\"¢ßB* ','[ýÝ6-ßÇ¶S.Ó8°:ØþÓ’}¸:—Í³¬,','',0,'?'),('{tÈE~ªÌPÛA´1ø ','wp-admin/js/tags.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>.Sc~\r\r½«!sâî(#Š','Tºï*/°2Äi3™j¬´p%¨\0Ÿ³nÞx[5\'Öª','',0,'?'),('{y\"¶ÒµµÐÝ©¶{­','wp-admin/includes/class-walker-category-checklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ç¯ ÿÎf/,d%eUÖ','ûQº™;û•¥îŽ\Z4o_ü{€ŸÅè\nÏ Ãq\"Qƒr','',0,'?'),('{€&/YCƒ\'VÓLˆf´nž','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/bootstrap.tab.js',0,'RÖÏq\\i‚(Ùæ6©GC','RÖÏq\\i‚(Ùæ6©GC','¡¥­nýOÔp9ò/uå‹ôô\0*ª7{pcîðz:','',0,'?'),('{ƒèbúh$$ûÖ]>','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Constants/Header.php',0,'õ9ò¬#z­®#¼ŸX(°Ò','õ9ò¬#z­®#¼ŸX(°Ò','ÞÇê5EìÊê\0mŽMf¢_ÂØ$Âr½3Ï]È6#û','',0,'?'),('{jÄÉ|nä	^<øWHž','wp-includes/css/dist/nux/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢Û—‰0Ø€aÉÿ˜==Úˆ','â§ßû‡RÛ~òº?t†¡ÅOt(4¥Äœ›´¾¾	','',0,'?'),('{Ê¤FÍP´J+ç˜Yy?','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/class.fusionredux_filesystem.php',0,'S¥Róµm‹ehlý','S¥Róµm‹ehlý','š\\à¢@ª\"iúQm§¬(W5qÎ3qgšL> øç','',0,'?'),('{Ÿ)×4e4p:±fW‡','wp-includes/js/jquery/jquery.query.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ø\rÄ¡äáL´z;Ò¿™0ê','…Õ²´í¡Ñ<î†C=óñH:ÆLWÎ¦9bÝ\n','',0,'?'),('{¯]²„«Ï\\1˜Á’','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmailReplyTo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']µŒC m3xH?Át´ÛØ','õÆÒ¨cÍ#¬}i2m‚ÂžÝ\'“o¬Ã®\r”àž','',0,'?'),('{ËVüè~½¬pV‰¨g³/','wp-content/themes/Divi/includes/builder/module/field/display-conditions/DateTime.php',0,'ºF3­B>/òðtš‚É','ºF3­B>/òðtš‚É','uô»aÓáR¤¦Ãù-®’¸kÖ4Óû®YÅ¦hµvæ°À','',0,'?'),('{ÏÎbèÎ÷•¾¼|×G²$ó','wp-content/themes/Divi/core/components/api/email/Mailster.php',0,'OC2yópô¾‘½Ð:ª\"±Ç','OC2yópô¾‘½Ð:ª\"±Ç','D0I3˜Ï£Ó ”ó1ÙpKóø=†¼>íÎRØ—W´','',0,'?'),('{å@<†®Ç™”iž¦','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/AssetFactory.php',0,'VR€ï.ÅìØûêr­·','VR€ï.ÅìØûêr­·',']®³K¼U¯ü\"4KªX^ã\n¤÷.?eçÍ@ÎP2e','',0,'?'),('{å°Ç\nÍrI«Å','wp-admin/widgets-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w Cu²/ô÷å«ÔõÍE','ÖËŽ£ñ<!Ì‹	j¢Ø]]ñÀéëi	É6ß','',0,'?'),('{éyô§\r\rT®1Ê\n¸>','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/ClearBucket.php',0,'RýJóê¾½¼ª´r\0½','RýJóê¾½¼ª´r\0½','7€WIâààEŠÜ–ó:a,GèB .¦°E\Zh8F%l','',0,'?'),('{ïRC¼Ú\Z.*\"¢Q','wp-includes/feed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4Y˜Gû~\"7W\rËÑUz','*~(Y³n+s2¤¥ `ïxó‘2TÈ¾)@ëíL™˜Ö','',0,'?'),('{ñ\rÞ-äÜ} ^éÆ','wp-includes/images/smilies/frownie.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q›óÐ„°Äôƒí','rô~×DzoÑ÷hß±—ÒÓ¾þØ»\">E„+”Ke…','',0,'?'),('{ô°Þ²j^†äÀkœY;:á','wp-content/et-cache/en_US/definitions-post-16994675743229.js',0,' õ™Ñ!ÒŸÇlíw x',' õ™Ñ!ÒŸÇlíw x','Á§L—d_î×h\nš\\(%{SbZ´*¶•WtÓi¨\\D','',0,'?'),('{õ‡?ìÑÕü\r’Ú\n\'','wp-admin/images/imgedit-icons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KÕ\\2ŸÙØ}©G‰i;O','TÎNÂ~ˆå÷-Ã@°èNƒÐÌžVç\\¦”(u$Õé','',0,'?'),('{÷ÕÃZ> ÝØj•NÛ?Ê^','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/OperationAbortedException.php',0,'¥+M`c÷}êÛÎí','¥+M`c÷}êÛÎí','úƒ‡cÐ8á¿‘{øÎqrÔXw¬iØJõ%ÍÂ·»þ“X','',0,'?'),('{ú=•Ë 2d¡g›T\r6=','wp-content/plugins/worker/src/MWP/Crypter/PhpSecLibCrypter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F›½Å™öYñ€Øúà','Ë¨ÅÑ$aT äB¹õ«&õr$ÿüõ@€ ù¼«µ','',0,'?'),('|\0îJ.Q\"cìÆBWø¡K+','wp-content/wflogs-old/attack-data.php',0,'#Ø­\n¾îÅyIb½\rÛ\r','#Ø­\n¾îÅyIb½\rÛ\r','l‡Ž4Eq®{¶®‘  ¶ï×Ÿ\'wg×31 c®w:³','',0,'?'),('|jª•x7Ç(Q}Ž0À\'ð','wp-admin/css/list-tables.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2;óçø¿zœ)caøŒyH','>ú˜¼|²5HZ/Cþ~ª!Hõ(ß²¤©>˜','',0,'?'),('|j’’·×s­‡½¹„Êæ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescription.php',0,'{Â<‘ØÒB[224;ÍŽ=','{Â<‘ØÒB[224;ÍŽ=','b•rÞcs„é±£\nvU[/8Ç4E„Ôl!Ö‹ëœÑ','',0,'?'),('|Fï(ë†-}Ý§\"H®ê','wp-content/plugins/updraftplus/methods/s3.php',0,'\\‚iðz@Å¬s&b™ã','\\‚iðz@Å¬s&b™ã','¬“ˆð”Ñ˜G©û*+ÔñàvÓp˜Qlßyþ1&•åFl','',0,'?'),('|ƒêæ½LçïF8ƒ5<ZM','wp-includes/blocks/gallery/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“Ø¼²¥ßßºÿK1]X±','16¬%DÄFIÊ[&i„1îØ÷ÅfÖ¦F…Íi©³6ÛÄ','',0,'?'),('|%S|m@ÇréÃus','wp-content/plugins/instagram-feed/inc/class-sb-instagram-data-encryption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T+€†‡MËdâ9¹\n¢','üÒÆáì½í£Á»§¤æ›Ä¥w¬­I-3e0·¼F','',0,'?'),('|*\rá?Š(Ï=\'«~Üì_','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/lv.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Šv¥˜œ¦\"œÅu3¢H','¬:pîÜ9Ò‘ü5c÷3¦Ç$VËsüœÕÈÉ·I’†)','',0,'?'),('|+´®ü¢ÚòLúÆ','wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/AbstractTablesAction.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!\0ýJ|zr5­\"e','éï›ƒ×·!èêh?œ<YÚŽ« ˜/9ÿ$±m$A¶È†','',0,'?'),('|+7Œ>Ô!Ü¨©r?M','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/RequestException.php',0,'åø}’«êdî	¥¾‡þ”','åø}’«êdî	¥¾‡þ”','ÌÛ‡T&Â#JqãÄN¦&ß”\ZK»“ÖòÀ«GôÚ‚*›','',0,'?'),('|,²‡uÝ¹nì”2?£','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/tr.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊÇ\\9	Ê•œpå©®&£0','âÑEC‘“3m\r«ÿhËî (/×àY±´ž9nç#ßó','',0,'?'),('|-ÙýÓÊ“zþÇ-¿','wp-admin/export-personal-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xhâ­vþiyÕçý.Òê´ú','C~SôüÇ°å|Éì‹8RÚwK@£_šJÔÃûmË','',0,'?'),('|/Ú’ë\0[*4“ÿxüã','wp-includes/js/admin-bar.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥\rècóíÿó ø£åš@pÍ','t²˜›bIldö\nôLb³x+ÅÏ”¶jä¶ª,âJ\0\r$2','',0,'?'),('|>²¥ù\'ò£€BÍ^ð','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/ChunkHash.php',0,'1Ô“²ä\\Yd»oM¤èÌâ','1Ô“²ä\\Yd»oM¤èÌâ','U fŸsÓà7†©3‘ÚŽ»M*çÜm2ÅÝÆK¬(Žš','',0,'?'),('|D(_ëßUdŸ‡b¥(^','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/Dockerfile',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ§è“ö¹\"ù&Ùñ«¯ËT','í2$ŒpÞPS0H—F‡ŽP°\r¹‹(ô8Í¤®Ÿ','',0,'?'),('|K»o4K•häq\n_ úÀ','wp-content/themes/Divi/core/code-snippets/constants.php',0,'}§;™\r¶í®í\"\ZHtë@','}§;™\r¶í®í\"\ZHtë@','pžPÑÛuLÓg.’cg¡ÈÙX.Ót	I×¿~Ežu´','',0,'?'),('|N! ;xãN&®gÙïmù','wp-admin/js/widgets/media-image-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºG9ûFm£qQž','Jµ6ð%VµÚ\"Ó\rKÎyÉ³›hª¤‘8†NöàßÎéF','',0,'?'),('|hDÈ:”]Þ¨fšºÜû','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RemainingCreditModelReseller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xvS¾õÅ‹²ÐW!SíÜ','CpKŽu4»´—EO_ŽÁ”‡Ñ#í¤O½yã²àqû','',0,'?'),('|k˜×ªJþŸÑŒ!£Ð','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/History.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÐŠþVqpZ\r+3Ûã¤','‚mT¹ò’”³wæGcC/(ØtË¬j3cŒˆ=àåÄ1','',0,'?'),('|ló+Fûº#ÚŸ½¬ëÃð','wp-includes/class-wp-user-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wÙ?˜v·¹\\×Á¨“Ð$','zÙÃèì·.t(˜½CŒoêÄÑ	Œ¡ÆtVÛ','',0,'?'),('|mÁ1\0¿‘z˜^©mã{Ú','wp-includes/css/dist/customize-widgets/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','À7!hç^9š@(÷T×¡G','sl_†šcÚ˜®_O IóO8ª4;¶çø2GPýw±Øª','',0,'?'),('|¥ï[\rÁ-§Då','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/zig-zag.php',0,'°%2ã¼ãûkà5–æoÃ\\','°%2ã¼ãûkà5–æoÃ\\','îð¤|Û®ˆ2o¡	Dî^™1ì_Ýº~Õ+rÉ¹Ñs','',0,'?'),('|«÷ ¸4ãxå\\ÐÏM÷n','wp-admin/js/code-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','› D&fAÐ”¦E›·~','{þ¶ñh;[ê5±ë©0`	VzëÑKdªŒ‡—ú^,h’','',0,'?'),('|µ›v0ÑëoŠVDŽŸ±R','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/tab-backups.php',0,'#œáëV²¹ïIºÒâ-j,â','#œáëV²¹ïIºÒâ-j,â','(®…aÀ‘ê`<ö„ô\Z–›Rrg#¸hC','',0,'?'),('|·ø°°…iHôr‡¦','wp-content/plugins/updraftplus/includes/Google/Auth/AssertionCredentials.php',0,'2|§Óva=ÑÏ§¢]‰Þ¼','2|§Óva=ÑÏ§¢]‰Þ¼','\\¿ãÈþ\0\Z—@Ú–Ïú÷Þ•q©­µÂÒ+©•PÇ®g','',0,'?'),('|¿8\nbßMm›eNJ•¶—','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/BasePhpFormulaLoader.php',0,'Óú5,^i›Âôë©ÒMã«E','Óú5,^i›Âôë©ÒMã«E','¨	3sõÅÁ2aT3ùO§\nÔÂ‹ÔhË&GBøÉÍäd/','',0,'?'),('|ÇÏk4¡_úÎf}Þ,‘X','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactory.php',0,'Z£©®4ûÛ¡(Êg[¦ä','Z£©®4ûÛ¡(Êg[¦ä','ÓÞwÂkjë„.L¼T…¨Šñ?=EU¯ÀÝ›E¾£“øm','',0,'?'),('|Ï?Î÷ï	îéå0\"G…','wp-content/plugins/instagram-feed/js/sb-blocks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ò‚ó¡dòM>†é\n˜¶?','Ñ`¡ÔéÇPbÞ²•ÏÌÅqe¹iÙ,®›Qä”','',0,'?'),('|ÙH÷Uƒ´ÊØ:\nd','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/Stream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ–dDj>|±Ä‡Éh`Û','óÕšXesXz¡2\0äE˜càÛk\\{yíx4†…R,cœ','',0,'?'),('|Ý‚±°µ.žy™gØ]','wp-content/plugins/wordfence/css/jquery-ui.min.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','À}Oñ“^×0tGGäÌQ','³Ù$rb=pÏh¹xËK£ù5]8ÇQþ§˜R‰¯jn4','',0,'?'),('|ð¤»mÊ‡,h–_·9¶ë','wp-content/plugins/instagram-feed/inc/class-sb-instagram-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áòØñÑˆ	Æ­¥L{†Vn','äÁ…SŽNM¤è¦šš—j­Ö3ðc”×3ÃeýqíD!\Z','',0,'?'),('|÷¸T]º‡:Y$=\'hº','wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œþ‚{ÈÈ4í—o¹V‹\'','D?#}$¸eåÿw2×6#ÈÛ0MåÃ‹±îRS¸Lã‚','',0,'?'),('|ý²ÑÑýô\"/nšÍõˆß','wp-content/themes/Divi/includes/builder/module/helpers/Media.php',0,'þAëéâzôSz}Î¾ÊY','þAëéâzôSz}Î¾ÊY',':aÈáÆäV¸T§,@hfzQ˜«’uáN~GJèï','',0,'?'),('|þ»YŒ>à€Ð	ùÆ†Ä','wp-admin/link-add.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eò!\'ljPåÉ^kIêå','þ5:üìÑqµ”Ï†R_\\yÌæÅh¬\rLIlž¶¶','',0,'?'),('}™–’Èon›Nó÷-¥','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CopyBlobOptions.php',0,'ð¤\\R¨šÎ”®§bBùò','ð¤\\R¨šÎ”®§bBùò','|ÊD;‡¦Záóï×?OGó²b½X-Do\\ÍÏÞC@<','',0,'?'),('}Ä‰=•t©­ò‘»¤¹','wp-includes/images/toggle-arrow-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FÊáÊ\\øƒôÉCDrï','-ï¼×N‘¨°ÝÅê½7~@Ë}‚_É=ö¤‹V’_@AÕ','',0,'?'),('}ïaX–]¼ã…¨D*I','wp-includes/blocks/file/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹œ\'ádlÉ¶´Ã\0î˜| ','fåedùm4@Þ@äÓj©`çVMèfÆ†{ŠÃÙ','',0,'?'),('}0´´ÞdKçèOÑ','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Urlshortener.php',0,'ˆlS¾4êíN	¡Pí—æ7','ˆlS¾4êíN	¡Pí—æ7','Þ8½ƒ¦Jé~¾íÅõz:ãAâÅÿ©gŸÞÍ­¨¨','',0,'?'),('}tb:œ™zÌÿF\"@','wp-content/themes/Divi/epanel/js/colorpicker.js',0,'^wºqë,6u%„|`†º','^wºqë,6u%„|`†º','ÀaéŽ s=Bö %èçG;µì(ió…ùÒÄ­T','',0,'?'),('}3£pC_ñÓ-ªZ&64Ç','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/OperationInterface.php',0,'Yc¥ßÙ¬úD[®nD‹K','Yc¥ßÙ¬úD[®nD‹K','‚+™ƒ/\r-/-tg™!ûQhÛ¥¸¡ƒq·$','',0,'?'),('}>n\r4Øøìnðb¦4+','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/fullscreen/plugin.min.js',0,'Ò’:ñ…Kà[ÏIw\\‰ªg˜','Ò’:ñ…Kà[ÏIw\\‰ªg˜','`e¾‹	“n²í®O¤¢ÙJM§%³NìhAï¯{ghÁf','',0,'?'),('}O“¬›Ú<b¨á€²²ÿI','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildInfo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”¬Sá¤Nj\'ÒäjŠøÂc','bË\"#I{BXØ¨jWíeácÙ>êƒÄ,5ÔcÑÙ¼Ë','',0,'?'),('}OŸ !Ù¶]öOÍO[Œ','wp-includes/block-supports/typography.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','48¦²Ìê½ÿ]&ñf÷','zË7f¤ÕÂ!óUc‹½”‚AB$„ÙÓ¨&0ŠCE³','',0,'?'),('}\\¤5æ\r’ð$Ôl’Wª ÷','wp-admin/js/tags-suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«p–™Dö¬B–aB“*','$YôXxðÆ93%¨ftC0yñ‡¶,¡^æ®ÄÔ\n','',0,'?'),('}]Ñ©ó<±ÞlS;†L­','wp-content/themes/Divi/includes/block-editor-integration.php',0,'G‹ÏÇ™6,·ý2ã¯³','G‹ÏÇ™6,·ý2ã¯³','oW(*†g(É™äÙ›s]‚ÞLœ:‰Lä…Â0ÓRcÕ?','',0,'?'),('}]ëH/±€ºy´À}$','wp-content/plugins/worker/src/MWP/Action/GetState.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ§kŸò˜p*s7GRýîi','Á½*ÄtÅÝ³Y’‰Ì­nÍQÌàÒÛ¨%ŠŸ\\ŠA<à','',0,'?'),('}`ÆÒg\"PÉ2®ÂV½‡','wp-includes/images/spinner-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ý™æ2†^#æ8µô',' ï¯#–Ë’Ì=$c©§6ÀÞäÒß	B™46','',0,'?'),('}x¿zgš= –àÍgF','wp-content/themes/Divi/includes/builder/feature/background-masks/BackgroundPatternOptions.php',0,'	ž‡SØPoËRìÏéŸ','	ž‡SØPoËRìÏéŸ','/í²=~9²QÔrURÌÎ€ãqfž†fG©g_L®ìa}','',0,'?'),('}|¸î\0+…N±6]ª›R','wp-includes/blocks/audio/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K÷XÕžAü}µN¨D]','žbbÄ¾Ç£•$ž‘NtÔiÌýWöÙKòàS­‡','',0,'?'),('}}!¹)ž”©ÄrèÉlŠ“ñ','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Theme/UpdateChecker.php',0,'Y¨æsÐz=8¾ö†Ò\rï­','Y¨æsÐz=8¾ö†Ò\rï­','\\©™Õ§Æ=,Í\ZÃsèñiqy ›p²ëmûˆ0v','',0,'?'),('}~¶éÃ†!p×t,L¨Ë','wp-content/plugins/fusion-builder/shortcodes/fusion-toggle.php',0,'^ØS¸”rÅ±¥ÓzK','^ØS¸”rÅ±¥ÓzK','_Ò¼·VñíÐæn<-°?<oØ¥ÏÃn”ÿ\\[ÛŸ','',0,'?'),('}ƒ°Ð«m§F²Hh*XG','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect131r2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' <º^=ÓZ×ÅCþ|Å­Æ','n\"$÷n x@µ™4Ñ•çÎuÊùùW‘\"¥÷\nK^#O½','',0,'?'),('}‰@Í§¦Â›*8²$ð','wp-content/updraft/themes-old/twentynineteen/search.php',0,'5eè#(4CÞB÷»Vü_{º','5eè#(4CÞB÷»Vü_{º','XÏS0ÈævÏbßo¡ù¬‚@·}ã®\ZAEóè,ÜK','',0,'?'),('}“Oœb ã>¾Â?2y','wp-content/plugins/updraftplus/includes/Google/Collection.php',0,'„yºùõé6xÎ5Mó”Öq','„yºùõé6xÎ5Mó”Öq','Î5ØëÌ¶è2þ|TR´Î/nwÚ*¸Ò–','',0,'?'),('}–ÅA‘¤ìó<¨ÁûWõÙ','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/autoload-php7.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ¯·±Òánýô­4œç','ð-ÑÐr*H–ñ^„üOÒ<a{©ƒ™þXë@åg ã¤+','',0,'?'),('}ŸY9Ã˜£ÒÊîñU<¡á','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ExpiringCache.php',0,'Ù/V˜DS@,2~^Ô¡','Ù/V˜DS@,2~^Ô¡','ŠÏû²•rŽE\n¤ø(16È‡Û\\ƒá«:;£fg&I€s','',0,'?'),('}²“lÅ8å\\í;ÙÎÀæ~','wp-includes/blocks/social-links/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÚyÌud4à÷Å²Ê—Ä','ÿ§H{9$v6Yµ®Kf*Kj«{_¾µ(Íã`/','',0,'?'),('}´Î-¥$˜L¢H_R”š™','wp-includes/blocks/paragraph/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Îsâs#—Õ–Àd…ÖDô','m;•Ò–šV®ÂP]$¤b¸<Ž½¶˜u¤èPùäØôŒn','',0,'?'),('}¶VJO`M¸Î5¨/ç\r÷','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CreateResponseClassEvent.php',0,'ä3é›n.õónPh=²','ä3é›n.õónPh=²','ûs; 2Ãi/[ö?ëÁÎÚª;¯‘ï»°ÕÛÅ‘…Ã`Æ','',0,'?'),('}Á7 Þ˜æDHDÚPl','wp-includes/SimplePie/Registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø Ì\\—¾ÏS8£Xþ`Yt','5\nÖšÂ8ý×q¶WêäÁ@‰¶CËHÒ˜Šµí£Ÿ\\eg','',0,'?'),('}Ã~¢¬qÍåQ]EpÛ¬5','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-privacy.php',0,'¾#Y2·-ü2«E|{','¾#Y2·-ü2«E|{','\0…§0ƒp›ßæ“\n…â¯QBàôecÙi5!Ÿ=»NÞ','',0,'?'),('}É9ÒŒ\0ëË6šã7Ù','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n‡“5‰Užt²¢Ž¶J','ó\\ã1÷$Ò=)ä½¿²mñ¶6¨líŸšvwµÕ\Z\'','',0,'?'),('}ÓØÒ¥ÔFFÃÁGº¤õMr','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/GitLabApi.php',0,'Ø€´~6‡œ_šðÆ„Ý’','Ø€´~6‡œ_šðÆ„Ý’','-+%ô=Ÿ5QêeË½ÂÐäÒ#ÌÌ‰‰h8Òþ&1Î','',0,'?'),('}æãîÇD\"{»iK…wö1','wp-content/plugins/worker/src/PHPSecLib/Crypt/Blowfish.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä¶¬¶3Te\'3»rvé6<','¡ÒH¤sQhcë¼ö•Ô™.HY=,$ƒŸx³Ë¾â','',0,'?'),('}ïÈæŠ\\Lü¯`Š§äi)','wp-includes/ID3/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GØV%æP_ú¨Õ·¯','ŠI>Ï×a§*R8?ñ–)öp1‰UÍ”Ç?2Ã=o—ç','',0,'?'),('}ýÖË{RÒ¢Ôà¢\"','wp-includes/default-constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®öf\n“çG8…à¶','›ó/ØR¶5ÚC,éiKëªfé}õ¼¡\\4/\0¸÷','',0,'?'),('~€žY\\G(,ªz6vx:\\','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_ca.js',0,'¬Á“ò·5}±Ó<¼\'$ZMj','¬Á“ò·5}±Ó<¼\'$ZMj','¿®9KÝ\'ïúóVÈÿ¹V¢@|ÊNeæX=½Ä¢','',0,'?'),('~ÑíìHé-Rêâ†O=','wp-content/themes/Divi/includes/builder/module/field/display-conditions/OperatingSystem.php',0,']ûºz‘á¨6(&‚äÍµþ',']ûºz‘á¨6(&‚äÍµþ','Qëy·\Zä/ã ¹Æ\'%Èª`w8«iŽRŽ²&*ï','',0,'?'),('~r9ùÏÌwT{V1','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/BaseResource.php',0,'’šlä¥3³T&qÃK.øíƒ','’šlä¥3³T&qÃK.øíƒ','/Â—õÀM|I,Iÿ³nñKðUk.4EýKpÚ%Ë','',0,'?'),('~ˆ‰ä£€Þ®ºåSkêÜ`','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/TooManyBucketsException.php',0,'7„G`úE3o 5C³œ?','7„G`úE3o 5C³œ?','„Ð±Êa`9ÂISÅ;š5RÕv¢$:N½™ðE’Û†ÏÛ','',0,'?'),('~«v±á5Ïá%+aB<','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/RefreshableInstanceProfileCredentials.php',0,'Ñ U´nü!älÌL§1ÿç­','Ñ U´nü!älÌL§1ÿç­','– ÿ9\rVZiNÔï®§ÞYLçßl;¼\"¬D','',0,'?'),('~JÄËÃI¿^HÊƒK','wp-content/themes/Divi/includes/builder/frontend-builder/init.php',0,'ù\nq0¤y’ú)\\ãd©','ù\nq0¤y’ú)\\ãd©','¨u3c£én-–6EŽÓÃ´Â}•,QúèuC','',0,'?'),('~È¾/úmÚÖ€Í!üì','wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ØsÉûX]û[sC>QÔÛ','³>‹Ê_c\ZJ+ÉÞ¡¬¶aœø§…³–¨ÃUmv)œlg','',0,'?'),('~\Z<ÎM`GOâ{äNƒÇ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/BodyVisitor.php',0,'Ü×1œŽÍ©#3ø•¦¼','Ü×1œŽÍ©#3ø•¦¼','÷ÅÖ½ÐŸ=ølB“å£¥î£\0¢O¼<d\nÔÒ','',0,'?'),('~±ö\\ÉÇ_b„$É-¥ê!','wp-includes/js/jquery/ui/selectable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!9ÛqfçÒH7í{B,›zÕ','WÉùbõÈvô(”¦F4ñÊS×]˜“‚@Ä”½Ü¾ë','',0,'?'),('~Ôá¡\"iºš$Ç¼','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãçÖYé3	g=UýH¦Šs','È\\üˆ¨ÄÁ\r§6kÒ’cUåÙ–$CŠ®Avætr','',0,'?'),('~(À§Ê«Pc2Ž¤ãCRÓ','wp-content/themes/Divi/includes/builder/module/Heading.php',0,'ö}’\'f•sË_8(^÷','ö}’\'f•sË_8(^÷','efW!W‰U.Y…)po©Ì³Qöc¦³ª`l¿','',0,'?'),('~9µ2ú£Ç”Å„J.˜','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidURIException.php',0,'Ì9ê\\L¡fÄx“f,fG','Ì9ê\\L¡fÄx“f,fG',' é³ÃŽXñøà´ñQ?øïOÏž\n/0€=ASRÇà','',0,'?'),('~?¡J¼IÖb*×ºêeèC','wp-admin/images/resize.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ËÖlNíû‰«ÄÍ','©6ó€¸×óˆ&?Ã5úÑ?sýqGM`P;','',0,'?'),('~A‹H„gç™éþ¦KT€é','wp-includes/Requests/Utility/CaseInsensitiveDictionary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢gžjÀ½íhÐ^\0‚¢{ƒ','oñü˜\r1d._¶¹f/ç7qÔAŒE¼•¸’','',0,'?'),('~E·cË ¿õâÉÙj','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/SassFilter.php',0,'f:éUõc¥Œñ”lõ\n','f:éUõc¥Œñ”lõ\n',':\rk<0ž…µ³Õ‰d4Ð7=‚‚H¡4{Œ©Û\rö¥G','',0,'?'),('~F!Géá1€…·<.zw','wp-content/plugins/worker/src/Symfony/Process/Pipes/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('~F£Ìã«Ž>dyìÐj‹','wp-includes/css/jquery-ui-dialog-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u¨+x)éäá‡AÔv6@â@','â/àÚNÏçe$ÕäÖþðŽ2:.«}b#²K}','',0,'?'),('~V©ÜXa]‹7p“|R','wp-includes/class-wp-post-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1$·%ç:¥¨IÜ:ÝÖ','PëŒ­ÄßÏt\\VÿÜ›&ÚÿíTš»’\ZÝÖ^6ð','',0,'?'),('~bTÜ,Ýÿ…é´ÑÚ‚½J','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/FilesystemCache.php',0,'#Öôçž»!ˆ\'%À8·','#Öôçž»!ˆ\'%À8·','óÌ¿’¾.Áoþ×]0!R¼IŠå‡@Þ™4â–Llˆâ','',0,'?'),('~dkSÚ—USeë[¼ˆL','wp-content/plugins/instagram-feed/js/sbi-scripts.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒí—T2(^¡ŽÀs£–:','1ák—_Ñ‚+SD¨(&)\0š—õ™Ž;þv|«','',0,'?'),('~i°IÒ;Ý­]œA»ÈS','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','54ÓÕâ“¿î`žŽ–«ž','D¯©Oo;oO]+îŸ\0ÏðÉ5Ê]/\"ÊÞ¸&ëQ±','',0,'?'),('~qæIPžI™ºírñÄö','wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊeY§’¢ïÛ¬x2¢’ƒY','´‹˜gªHnµ™½‘~<Ö0^Ff88¶‘Ý.%x8','',0,'?'),('~}×ViÞŸW;bê›ÝÃ','wp-content/plugins/fusion-builder/assets/fonts/count-down/count-down-timer.svg',0,'¢ø.	½#\ZÉüæ×œ1ÇÌ','¢ø.	½#\ZÉüæ×œ1ÇÌ','lÄ¡VkÉ­\"åü!YY)X½ÒÊ´i‘=s|žÄž¹','',0,'?'),('~}â{ ÝÇ>Dí}¦<','wp-admin/css/code-editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0Â3“; 7ÐÎv:ˆPàÇÎ','JlA¦€Zñº‰Úq—à‰F¬vö<3à‘®I^†ÑkÔ','',0,'?'),('~ƒuPÁŸ—ÛPÏÇÆ{ò','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/system-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ûª3ûyŒËú×–«','·­g©ÑG<BU.Q[jI=<yî	O´¿àËc','',0,'?'),('~‘¡ReOX‡f2”ñ`€','wp-includes/class-wp-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ã;@Aâð[®ohˆÍFë','BmsÍòïùÉÔûÂAKE)(|-£c“ÿÆòÏ¡¤|×èd','',0,'?'),('~“Ç6æ‡µfD¼‡ÞÅ5','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/StreamHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…Dµ!ÛÕ6Ø(Ï8‚','NEìæ>rîoÜ³t€™ZÍU¯O\"FÔÒ·ÉÜºZðw4','',0,'?'),('~—¹Î[\"+“\ZµÆquÁ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Log/Logger.php',0,'ÉGÑÐÖÝ	&\"Ë¸Çô±','ÉGÑÐÖÝ	&\"Ë¸Çô±','DÃÀö“ÊñE8ÕÈøJ¿	ùjGøD G¨¸ÊÐ£r','',0,'?'),('~ŸC0¯Ü2´3*¸ ×ûJ','wp-includes/blocks/more/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äIí*Žb$¿¯Þ|©®[ï','ò¤s8Å1Å‹ÐÎKX+É<:Æ½>Z{Y„Q!ÓÞÕÝË','',0,'?'),('~«¹¥*Þ¿S’Ì™e—','wp-admin/images/freedom-3.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hT‚zC¤Ž‘w5õ6Ù `','®àãâ|Ë‡3¯Ìd¬ûÒËªÇ|µ`Ý¢7—\r8Õ5¥','',0,'?'),('~»Pf½¦Ô©~1¹LYwÝ','wp-includes/blocks/button/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0^ù9pDRš2|·n¼Ò½','ØPø%v‹Évš—äÿ§÷{Ò0¢ßƒ4¬àÇ/º@×\nü','',0,'?'),('~Å¥Ïs\0Ì1yì$‘L}h','wp-config-sample.php',0,'~}½œ!™„©ÀÜðy‰','~}½œ!™„©ÀÜðy‰','ê„±R@-çÛŽx‰}nm—O7*]ù±²%á¹R·¢ÃÛ‡','',0,'?'),('~ÅÓ¸bcöÝ\Z$@$©ò*','wp-content/plugins/wordfence/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+>r*“±š÷ômI','EÍò\0Û.®¢¬òÂ¿Â¯­1Fû(Df§uÊvÜê²Ë”','',0,'?'),('~Ðc5žçÌR¬\"á@2í','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NoContentTypeError.php',0,'’€Vi.(Ë)ø Évã4•','’€Vi.(Ë)ø Évã4•','Þ{c¤x\0x+,d7¦÷³rãè¨i=ó4›–ô¸xº','',0,'?'),('~Ù”ïØ.€™Ÿš¨]LQ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/repeater/extension_repeater.php',0,'þ5¸LwÏoÕ\rÌ‘9','þ5¸LwÏoÕ\rÌ‘9','\rÃ¯$Ÿî{·yÕRQ[ò½Ê*œA#‹‚m<Òe^á–Ñ','',0,'?'),('~ÚÂXÆ\"}ö?+`,Ùá','wp-content/plugins/really-simple-ssl/includes/simple-scrollbar.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ð’^(Â‡‘ -|ßš°p_','îMïOÑƒ]NãŒ\n´‘¹ð÷°DZ#¯œ*YÝ,','',0,'?'),('~Û› ÒÎ.ÍÄD³b','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/InvalidArgumentException.php',0,'d\0enje½R>7Ž×ÔÇ','d\0enje½R>7Ž×ÔÇ','x ÿHÌå™“#:ÉÝâ‰!SîÄ¸í¬—*g','',0,'?'),('~ê7ò}/ÌÖ[sÓa“Þ','wp-content/plugins/updraftplus/vendor/symfony/process/Exception/ProcessFailedException.php',0,'Á¨Éò“ÂóAÿú0¡J','Á¨Éò“ÂóAÿú0¡J','BÓÆ)R€­ó§Iep³«ãVLÑv%ß¬^€','',0,'?'),('~ë·#\r…Ï³ÿÕî¤¦1e','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/NovaService.php',0,'–ÂÙšFŠ870F­áû','–ÂÙšFŠ870F­áû','­|ÞkG¾ŸÓ„Ó,.ËM¶n/è¿•î¿\ZŽ«tøü½‚T','',0,'?'),('~õ¹°ßš¹@ÿ+nRZ²ý','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/ServiceInterface.php',0,'ªt½‰ *Ûß#5/\'ã‹','ªt½‰ *Ûß#5/\'ã‹','ñÿ¥úÇ#iÞ–ÝM@°ØB[ƒ/ ¦ ª±u9gžMÀðm','',0,'?'),('~ø,)Ñ1ºü5=$-','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/DoctrineCacheAdapter.php',0,'}RÁDŠÅjÆ»­dž@ˆÐ','}RÁDŠÅjÆ»­dž@ˆÐ','Ž(t<M¨®ÁAË®©~?$ ÞÐšÛ˜\\™Ï2ËÂY›9','',0,'?'),('âÞ\n(Ù“ÀhµŽ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/DataObject.php',0,'s¶F”ß³‹³Mð¸i„/˜','s¶F”ß³‹³Mð¸i„/˜','$-Üo¤ý¨ÊÌ(²õFh1Äéß|QqîÞ´¾Ï¸Eón','',0,'?'),('Âå¯z\ZÿÇo+ð‡ŽÜ','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°p2>¸ü9ÊÒ•Ÿ{¬+','}œlX¬|ò‰	”†LgÓ‚‘d[XËë¢','',0,'?'),('ÃldKñŒÐ¼ÉìÇà','wp-includes/js/dist/components.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/zü.W´ôý½q—Äì?ï','gÿˆÌªzBª\09À²ýËùUtÐ¬”\ZÂßÞÝ…±:','',0,'?'),('#?â/ýíð+¸ù]ß','wp-content/themes/Divi/core/components/Cache.php',0,'¸ÒÉÌBŽf+AvÜcÄ','¸ÒÉÌBŽf+AvÜcÄ','\n¡ÚpbµH,ìC£}3 £Jûi¹4vˆ¢','',0,'?'),('%sxÖ@wúºÝ—<Ö','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/corner-blob.php',0,'jáM]Â}x]É‡¾c','jáM]Â}x]É‡¾c','‚gÿu–ÇÐB2.êì’Ó€q¯~/ÁÚ³ƒLf­','',0,'?'),('6\0˜Oòª®kvzfTN','wp-includes/js/jquery/ui/effect-fold.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ËÄ}:hùBýÕ¯}zûxé','»®Áÿñ€¨¯nô\rÆSÏ/<„„¸b¡ÃÈÕ¥]Naø','',0,'?'),('9áçšJ\"I-qõÌVô«','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/DirectorySync.php',0,'¦Å[®Õ•ì#5ìMm:i','¦Å[®Õ•ì#5ìMm:i','[ºûd`z¥b^õúR/ÇvC«|dÛò–¾BÜšÔ˜','',0,'?'),('?#ä8DÁÄ@°<oˆ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Order/Create.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tàð\n,Äx=’„CGæ','€–Øàôz3G2Œº¡]»P/þcëåúŒ5ôõÉ5','',0,'?'),('@ô={&À²Û¤}É_','wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Æ ãåçHøšxß—©5ç','\\f)ÞfŠ&BxŠÄjÄE#]uÍ-e\"y6°Šï','',0,'?'),('LCSˆv¨µ€Øü¯¢Y','wp-content/plugins/fusion-builder/shortcodes/js/fusion-table.js',0,'º÷ÿ+­E j	R>','º÷ÿ+­E j	R>','fnŒ\n¾æ\róð¶.†+Š±{NCáS÷u¸ÃÙ[Ú[\\','',0,'?'),('OžÏ?pkn†;SÜu;','wp-content/plugins/really-simple-ssl/testssl/serverhttpxproto/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¸ÜaÌ0ŸÁš¬ø&–-','ÓªƒGDfš¥è‰:ÃÚÈlkŠ#²L+J5B¨Ö','',0,'?'),('Rssvš\"Í.œšƒ','wp-content/updraft/plugins-old/updraftplus/methods/googledrive.php',0,'Üü¦#¾CQÁ;²z¯4','Üü¦#¾CQÁ;²z¯4','vEÏ3à2GMƒØ¿% 3þôžÈ>ðhM]ý','',0,'?'),('S\'ÍÄ(‡ãä#5²','wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NÄùÀ2Jå¨³ýYBç˜±','\ZP­Lã¨’ÍžZiÉt‘Aü§ä®ëãØ7d«','',0,'?'),('Wâí\"è5ðƒ{Zh4','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CopyBlobResult.php',0,'¹a:üå)ÇÞ°>V7 `','¹a:üå)ÇÞ°>V7 `','•à·ZX–9qrsÚ±“‘£A‹€Ã{gÇðl:†ÕZ4','',0,'?'),('YFB†bÚáœ^ùmŽç','wp-content/plugins/fusion-builder/shortcodes/fusion-title.php',0,'X\\MCjóIrUwQS²','X\\MCjóIrUwQS²','\\-éÔJªåùîêÚÞ•\" ®ù%K,‘PÀÊª}','',0,'?'),('c¢ÒJîw¡ÍeIO¨Iq','wp-includes/blocks/cover/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ\0\nsÉ¼WR¶wˆ=›D','’oÿkŠ™g·Í·é3U\\-r%Œªžå2i½ýä¼','',0,'?'),('j&†Â^ûÌøŒb³ôŒ˜','wp-includes/ms-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Äˆ¬Lº@Ér#ù}S•š·','4n-™™µJ£ô­â2Ž ²®Túhß•Á!Ù_H/Z\"­','',0,'?'),('j^µ³SN­-Oó ý','wp-includes/css/dist/components/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h[]Üd,™»¼çSØ(4','@wš‹¤¹’.™Bq‰þ2é>hbTGûšú„Ø“‹','',0,'?'),('m°çtÍÅ¬Š?Ë,üeô','wp-content/themes/Divi/includes/builder/frontend-builder/assets/css/mediaelement-images/controls.svg',0,'@õoZsm¤ïþ·ÎÛŠRð','@õoZsm¤ïþ·ÎÛŠRð','sP¶‡Ô3ã4«	5©²>Û²#Ãv×ñÙGÔp”','',0,'?'),('rœe‚^ÐÌU)UãZ','wp-content/plugins/really-simple-ssl/multisite-cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','03}¡ï0¢S)a\rç<7','LU¡ïÓÜó\'à\n[o¼D•\"Ë0OÁ\'Ó^-°f>Ç]','',0,'?'),('tSþ\"ÙálZí‹cÊêQ','wp-admin/js/auth-app.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qi®¹‘Æ~[Ÿ|\r§S','A¶|f´çKõ\Z ­’F|éšü¢eÉ LáeŠÜ¬ú49','',0,'?'),('ueC¸ÑÁ_,Ã©—mÓ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffStrategyInterface.php',0,'Ó5ùÔ½1ø8ž/ò|o/','Ó5ùÔ½1ø8ž/ò|o/','…cí¢™®yÚzåÊ]ˆ¿ïÐ|’€–€a\"æ¨˜eñ','',0,'?'),('w´\'œPe¾úFÃ+õV\0','wp-includes/Requests/Proxy/HTTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘åÇ)Ï•\\å^û›$³ñÄ','7gy\Z¤ ]Oý®Y¤T€­óÁb®PÇšæ˜ˆú','',0,'?'),('‰AiƒeM›K!¤þ”','wp-content/themes/Divi/epanel/js/custom_uploader.js',0,'îÔ¶˜¤¹i¾0~\"5c0','îÔ¶˜¤¹i¾0~\"5c0','	nÑAîÞßéˆKåJ›¾û¿}ç‡	ìÌö:´ïÄ','',0,'?'),('jÔ õ7‚é§:¡[º','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Filters/WrapFilter.php',0,')~ì)Å_}Ëý<8Ï|V',')~ì)Å_}Ëý<8Ï|V','kÍ\n®£nY”S{b¹BîÙ;´˜\0kr\'ha\'^‰_lúi','',0,'?'),('¦t‚ƒjƒ×Örn1NEŠ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/FilenameConverterInterface.php',0,'á6}¹–´¿YNm‡á}','á6}¹–´¿YNm‡á}','Ó\rÍL\n	t)–ñÊZw¨D5™p\n·¡Ý$Ï¨ZMIå','',0,'?'),('«R¬8âw`”©×‰ãOŸó','wp-content/themes/Divi/includes/builder/feature/content-retriever/retrievers/PageContentRetriever.php',0,'âê.õ²J’øó(&ºÂ…','âê.õ²J’øó(&ºÂ…','	5DÔ‚MS†´ßî}‘†XI,Óé2œ»¬ý+‚\0§ì','',0,'?'),('°€Œž‚×0á~ïº·Kz','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/InvalidArgumentException.php',0,'áv£¿¼F­ÏŒÅ:p­&`','áv£¿¼F­ÏŒÅ:p­&`','¿À1FÇ›ðcá‡%Ñ£ÂLòo÷Ÿ]f«ý+[zgyý','',0,'?'),('»#FÇŸ@´uó’ÊcÎ#','wp-content/themes/Divi/includes/builder/plugin-compat/gravityforms.php',0,'…àÉ‘«pŠ›\Zë–/¿','…àÉ‘«pŠ›\Zë–/¿','[Ö	é‡\'ãõ-¶_0“Ö2™Ì¦4N„fdX‹0¦4`','',0,'?'),('ÁÚ%G]fÓ@Í%ÊZÜÍ','wp-content/plugins/wordfence/views/common/section-subtitle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n^\rÁñ#f–šst„‚W\Z',':ËtaQE´&Íœ˜³îßÄsÙ¡\nGb\\Z S1{°','',0,'?'),('Ç*§“Nˆ·Ý7Æ—\n!','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidStorageClassException.php',0,'ÞëW‡±0qxi«!™8','ÞëW‡±0qxi«!™8','²@±CÑ†7éø?&òs¿ö(?Ÿ/s{\'ƒØÖ\naÛ','',0,'?'),('ØÐ¡qDÖš?ÓižX','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì%*(¾Ï<rÍñâK†W;K','Eß¬ö!,yí3³¦1u%ÀT\0ßÓ¤hêî»ÛÄƒi{œ','',0,'?'),('ÛKûQð}U&;&˜ïØQ','wp-includes/meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±´•·Ú=à&è`B~Ë¹','È/Õœv-ÄîiFÄÆY$ìÉ+Š:¥zD”ÂÉžž','',0,'?'),('ÛT_Š§v\\ñÏð“ø','wp-content/themes/Divi/core/components/api/email/Infusionsoft.php',0,'¦ƒÄíÌ9øŸ6¨¶…°än','¦ƒÄíÌ9øŸ6¨¶…°än','Ž‡BëU&‘]<gXfŠ\\²ZO)Y\0–\\ßVÙŒC¦','',0,'?'),('ætr³ÎµF_î ÃÇ×','wp-includes/js/wp-emoji-loader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒÍ®kM×Ç}O&#Í6','¤ÜÌ¶\ZMå„`¤ÑŒ+\0,ƒß\Zº ÇÂX¥F:','',0,'?'),('õx¡È	ì—Ptúw\r¢','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/PeclHttpMessageParser.php',0,'Ûä˜l“|©1aSÃ‰8','Ûä˜l“|©1aSÃ‰8','bO²»=ÚJ3EúýÁó’¾Æ‚ös~}e–2`kG@','',0,'?'),('ÿv´]r­¸QÜf`´','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/hr/plugin.min.js',0,'	%>‚)šú…Â•;¶','	%>‚)šú…Â•;¶','ØƒFäíSå[kõËø&ýfý 6+ b°>¨','',0,'?'),('ÿÍÚÛŸ½Ïb…B','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|Ç±(¹˜rÀ×qÖ§#','¥)0ßüÖëÜÄë+ÔÌë^h•v.(ö•>¬™ß','',0,'?'),('€0ß.»ÿ8n4k_MÒ','wp-content/plugins/updraftplus/includes/Google/Logger/Abstract.php',0,'rc©©¿¢Ùþì9]Žˆàq)','rc©©¿¢Ùþì9]Žˆàq)','ìiÔ\"ËÓÚ²”MõÌ,ì\'ÚP²¡ÂÏëùC¿','',0,'?'),('€3-ðàêíÿû•fÐò¶\n','wp-includes/css/dist/list-reusable-blocks/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n=µÙâ›SûÍn€Ú',':Ácœ-yÊá¼O×wq\nÕ;ðu\nßEúS¯ž®	','',0,'?'),('€;ñÎ!1á>üYÄxQü','wp-includes/js/dist/block-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ü*Ù‰–•)Z3ÉÈ©','ìß‹6\nªB–zÕ–zí7}×­´…….QáÏº','',0,'?'),('€AŠëî˜¢8Uy©5ZÑn','wp-content/themes/Divi/includes/builder/plugin-compat/caldera-forms.php',0,'_vÃ 9…Ì ‚Qð)!','_vÃ 9…Ì ‚Qð)!','#ßi>‹-c…§l#$ÕÞ*ºŸgÔ•¤\\6ú}5içL-','',0,'?'),('€Djl/Vz¿ÌŠôç‚…','wp-content/plugins/updraftplus/vendor/symfony/process/Tests/PipeStdinInStdoutStdErrStreamSelect.php',0,'Bj7]™Äõm<ŠçÙ3|Ã','Bj7]™Äõm<ŠçÙ3|Ã','ßB ÎÄÛj3èœ.jKßœ¢þ‡}[ŠÂyd‹÷N','',0,'?'),('€aÄÈnFh #Ûˆõñ¼','wp-content/plugins/contact-form-7/modules/acceptance.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿DôšáŸ¡Jœâø+µ`','TVO“ÐP€\nv{Ðw\',z£ýv}»aK=J‚h','',0,'?'),('€pêCøC)°ªŽ<#”i','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/Reference.php',0,'.˜[…K\r—Áxï•','.˜[…K\r—Áxï•','‰Ÿ\ZíÆxáf©Ù‰&c¹G8*gŠÈ|šUÁ}ó“','',0,'?'),('€‘ah¤#Ôí8ícñœÂƒ','wp-includes/js/tinymce/themes/inlite/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4OàâDIc`á•EJ','p·vÓT5Z>j†jª\0\0œÈføÅxa/g=¶&µ','',0,'?'),('€™K²¿p^h$$nŸ©eâ¯','wp-content/plugins/wp-mail-smtp/assets/vue/img/sparkpost.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z>`\rû}:X^Ø®.*{X','ã&)ïYŒîA,É…)’NóÜ~¦“IÕÉÎ³UÌM_1','',0,'?'),('€›ØuÌ¥. ;)a”t','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/functions.php',0,'kÔÄgW£´-ZVÉ\0›','kÔÄgW£´-ZVÉ\0›','nòx!™´!Jä‘eb2ÁkAÛ¸|å©ÁÀšÙ1','',0,'?'),('€ª€ÂµPî +v¢^#ÆÝ','wp-content/plugins/wp-mail-smtp/assets/css/vendor/flatpickr.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ðT¸´\\ÍtGþ­§}•',')‚îtæ£ã–8<f#-TWiòRÁ™y’—\',‡òÛ','',0,'?'),('€¯ŠÁÁ^·û\0Ýjœ’','wp-content/plugins/really-simple-ssl/class-mixed-content-fixer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÅB¼žŽã¦z-pŒw','Ïý_)÷:¦ÀI}\Z„¢St)Ì™€U--í–Çyø¤É','',0,'?'),('€²è8Q‚)Ñv ¬³Kyi','wp-content/plugins/wp-mail-smtp/assets/images/logs/archive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M_ÉÏX¨Tó*ZÃ)®Ø','ô¢vçè(Ñº¼JiÊõ“\'Ôj®’³HÛmJT[›ñ€','',0,'?'),('€¶—r=ŠÄÚÏcÄÐËMz','wp-includes/js/dist/is-shallow-equal.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ÉÜ§ÃÉãZøý„ó´Ú','¢Oh¥úÒ¹—&ñjÈ^>Eú]\'²ÚÏT˜™C ú~j','',0,'?'),('€ÐdCJ\0ô-»w†Tjv','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/PKCS1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€©º#4;Âx¤V’zVc{','‹æc±;jwÖ÷½Áº¬3kiC4\ræåéÂÓ','',0,'?'),('€ÓÚºèu¶¿M—É÷[\r','wp-admin/images/wpspin_light-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mS¬û¬ýÐÛy\"C‰ÄÒ','°½66S¯X¨£±¹þ±6O}É4>ˆp¾\"Ã ”\'1','',0,'?'),('€Ö3jxS°£ß$Î …','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_wpCommentLogger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ëœ{Ù µµŒXí›õ¸‹','ê0„ÊTv…ú]ßÑÓ\"T›&žŠQíÕ°¥»Ã5Ž','',0,'?'),('€ÖNxïõÚ‰\Zã8yH\\','wp-admin/js/theme-plugin-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ™\nŠî§9Ÿß Ì%ø´','K¸Ý™ÐÃ€5:Yú>lÅœÔ‡‘Þ}¯àú€>','',0,'?'),('€ÖsSkÜi«<4\'cì-6','wp-includes/js/wp-embed.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I€§_›hù60æFŒéôÉÑ','rÁÁÃ¥Uð£áO(=VÐ³.‘´~tuHJ¿†‘îºÏ','',0,'?'),('€Ü’Þâ”÷ b‘ÌuÓ','wp-content/plugins/really-simple-ssl/class-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õŠW\0O\ZPwˆŒÇ•¢|','›¥~ÍìÚf¡Ýå¢Pð–Ù¼Ç@]Øÿ$¸¿M:‰©','',0,'?'),('€ðÜþb<×”È`‹ó½d)','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersSettings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*p¼ò\\‰©OŸß°°#','+ÿ9ç.çÑïsKü†×èÏDÿ´(¦ú_‡\rÑµ','',0,'?'),('€ôúYBÖë3÷¶$ó½Òõ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandException.php',0,'ñ½¬Xì:4tq–nhßm','ñ½¬Xì:4tq–nhßm','àG{÷]ap…GR®j|)TA™Åd‚\ZµÆ§VÇÇ®[t','',0,'?'),('€÷êÿeØæ97ãaJS','wp-includes/images/smilies/icon_smile.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãà3ó.)À2êÝpëÎð','Ë ëŠ\",ë¶RÊ¨¨Tr=¦oÂùrÑÐ—:µÁ°€','',0,'?'),('€ùƒðCêÎe|óŠÃÂªwg','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetDeviceBrowserStats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è—ûy›Å6uç÷ýZ«ù°','ÃS?ôHŸ‹{á?Uÿ_>Ë!“,À2`ÉuWN¿?§Ù','',0,'?'),('Nªo3J„‡ò¡vØ•Çà','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/spinner/field_spinner.min.js',0,'BF8¹Ý\"›@×t²™O)[','BF8¹Ý\"›@×t²™O)[','‡cûB ÛŸÿ=ö\"öÎV˜&”d²òþ<\r.¶að[þx','',0,'?'),('RÐ`‘àï¼\Z÷ÖK','wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-mbstring/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì.«\Zª\\ièÔœÆ}•a‰','ÞÉt=ÀýÂ{œfD]á™pAÍý~1dW×w2L\'Ï','',0,'?'),('„ˆ€ÂÓrH[„µ$¬æ.','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/Site/HostingInfo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ô5uÀ«ø9º¾Ûï¨óx6V','=tK¹X .‘°—<^À¶0øL¾iîÊH‹;ÃOmB$ü','',0,'?'),('|nÞÆW%ÞÁqø}','wp-content/updraft/themes-old/twentysixteen/footer.php',0,'ë$ÿ6$ôSøE©…;cn','ë$ÿ6$ôSøE©…;cn','VóÕ%ÃšEßË‚2ýa¹yxöm¤¦•\"’·%”¢ëµg','',0,'?'),('ùXQûád9r×Ú¼–Û','wp-includes/customize/class-wp-customize-themes-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘àT¥ívlŠþ3­Á','¡,V‡™¶3Rw¤ã’Ê.½ü¤\r×­+4Ý¦`=”`R','',0,'?'),('‘)–¸—¾Pk?_† >œ','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/lib/namespaced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','01ÕÎèø”vnGœ¬\r ',']/r~úÊºO‚›‡Cîc§xB…€j/ëoµ˜UÙI*Ù','',0,'?'),('&¨„ÁYÍ3BÍ¹¯6w8','wp-content/themes/Divi/core/admin/images/svg/staging.svg',0,'qkÛ~²*ó^N‘½,Uø¥ó','qkÛ~²*ó^N‘½,Uø¥ó','±{ÐpA}ÚÀ78yÚ\nF¾°8<’Émo8à´pÙè','',0,'?'),('**†X-ò,ú.t÷H)','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/deprecated/ActionScheduler_Abstract_QueueRunner_Deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"áÍé°‚g~.D÷b#À©','ù #\ZmÎ„-0@¦Ê–DGØ àñ‡˜ÑŒ','',0,'?'),('*w°e|zýß>w\nc]Ì','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/WatchRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"^ÀmÞKèKÄC¥þDm','yÝ\Z£#WM†éä.LìZj©À¦÷Å\0“:ôM|C3¹.³','',0,'?'),('/]OT7‚R,yJ;','wp-content/plugins/worker/src/PHPSecLib/System/SSH_Agent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k  í˜,$¢®·˜Ø','qm1|þ*\'ßâ­˜b²j6à¯&!<\\ß\\®ü','',0,'?'),('3\0<¤\'Ô\0ôÐµZñk','wp-content/themes/Divi/core/components/api/email/Provider.php',0,'Š	s8ìÄ&ÑJµ=AC¢«','Š	s8ìÄ&ÑJµ=AC¢«','ÈÛBöÝjÊß³•ûå_@4HÜÛ\\÷`’\Z^\0JýÏ','',0,'?'),('N¿ê;{\nât„l\\?kF','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmailTo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JF÷C	•†p·	jYÀpñ','¨µ/¢|LÜq\"!N§|O}Õ–~}–9{„ŒÂaç…ýb','',0,'?'),('Z£#d™ ØÃ£¼ÚØ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/Binary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýðvaÖãjÆïlåx\Z©[Ÿ','¸Ò?o `?²)üj—4õÎ%o¡¡ÿt…EeÚW€!','',0,'?'),('ZÊ§¤#c‡g/þÔ~ƒ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CreateError.php',0,'ýÝo–Ø¬Ñ¢3;]T\Z]','ýÝo–Ø¬Ñ¢3;]T\Z]','VI\")ûôB&QÑJÒŠÅ!Ž¯Ùž\"vÁ÷ûC™å','',0,'?'),('el÷5s˜˜EïÃºQâ','wp-admin/js/media-upload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9€5Ÿ.Á¡4óÔÁÎž','…‰ùèÚ¦\'¿D˜\ZºÈ v¡¬0¡ûE~ùÇbâ','',0,'?'),('‚Æ¦\ZOˆ¿2ÙfT·sV','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/ace_editor/field_ace_editor.js',0,'êßÿÀÁlò ’¼Þ¶T','êßÿÀÁlò ’¼Þ¶T',')êœ›ƒçZò7hßòËéüJgŠT\Z½Åç(¯\"w¶ý','',0,'?'),('…,CUUîèœú9i-','wp-includes/css/wp-auth-check.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â%øLõÅÔ¥|l\"ŽØ','¯]ÿž\"8yÉ×üýÿ;íµ=X\r¶€¤ƒYƒ$©ÅT;','',0,'?'),('‹ãlž©GÌ_ãJótÀÓ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerJsonError.php',0,'²eÝ`o>éôÀº±®HLRU','²eÝ`o>éôÀº±®HLRU','Èù~Ö—AôzÖóIù-‚Í]ø:È¾§ÚE_h6h>Ú','',0,'?'),('’ÌI_“Œ¥\0M.·u •b','wp-content/plugins/wp-mail-smtp/src/Providers/SMTP/Options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q!¾Ø=x\rês^Éì‡î…¨','¹\"³GóÙäýÅçYD†JŽäTž§%Y','',0,'?'),('£ä‡,UeZ®ìzÖ ','wp-content/updraft/plugins-old/updraftplus/includes/Google/Cache/File.php',0,'VÀ„ìQ…~l<£$ÓñT','VÀ„ìQ…~l<£$ÓñT','´½$ßÅšt±E•´É\0HBeC¯Ó«2ãåÝJêô:W','',0,'?'),('­ã\"[hnC3jXø³i','wp-content/plugins/fusion-builder/shortcodes/fusion-modal.php',0,'–F¨UøÆ—­ªÚt2sÄg[','–F¨UøÆ—­ªÚt2sÄg[','|C}J<4öÃ°P\rîzß~Ý¨ÕèNº\0½QÔ[@Ô','',0,'?'),('°iä \Z!à[«8$\"ø','wp-content/plugins/wordfence/vendor/maxmind-db/reader/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ƒï–8e_ÈTÝÃÆ½W','Ý¬ïISôP\"õa•» 7JŒ6çQSv„“ô_³y’','',0,'?'),('³âåñ¼ÐR‘Ð2|jn','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterConfig.php',0,'©¹Ö\\ë¼30•P½','©¹Ö\\ë¼30•P½','º¤eKV‰Éx‚ð–âì5Øîz°z{ßmÍÊÖß\Z','',0,'?'),('´Y_«®ª\Z\r¶í#÷ìa','wp-content/plugins/worker/src/Symfony/Filesystem/Exception/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('¶ÕÌ¹I©µö(â×Ç','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/BlobProperties.php',0,'e~¡Í*›ÿ¢ÓÌœJnƒ+È','e~¡Í*›ÿ¢ÓÌœJnƒ+È','â¸É›}p™,ây·–à·Óø©$T¨‚.öY\'rÓ','',0,'?'),('¿]Se-Ñ%óYÔžX½Mú','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/config/questions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x±Ewæ·ç3w¾Iû‡Xøt','©ÁbÛ=hs5nìÞƒ¸Ö^™ Þ@¤ó*k+ßí\"¶','',0,'?'),('À\0ø¯áp§ ¿§Â–@Ò','wp-content/plugins/updraftplus/includes/handlebars/handlebars.js',0,'¥•´Êª(9†Œ¢ n˜Ž','¥•´Êª(9†Œ¢ n˜Ž','¥h÷Êåì6IäR°ˆ®±‰m~sœ¢ þÃ›â§”','',0,'?'),('Â~«—E=·)êÜÝôŒ¾','wp-content/updraft/themes-old/twentyseventeen/template-parts/footer/site-info.php',0,'R¸ˆk¨´˜tü','R¸ˆk¨´˜tü','§ìÒ½b\rKsïuôÝTÜ{³ò­Ùêó×~e.Æ ','',0,'?'),('È‰V?	ÝÞ]Æ)A','wp-includes/js/media-views.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7„T¶Rw‹˜6¿UøÐ','ëm-?§ø/“°~½i/æëTE0wm½Mž‡Ù‹','',0,'?'),('Î`hÑNkO¡N8ž‚','wp-includes/blocks/file/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']èç ‚8 X—à@Q±4³','(Úå{ïôtC§ƒ×Uß¡–¸å0ÓËŸ>ò`!¸Ø','',0,'?'),('Î·´uª×¹§•\'L\\ð','wp-content/plugins/wp-mail-smtp/assets/images/logo-whitelabel.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÆN¨]¥Uòm¤ªÀ·Ê…','šYYl×À G+¨œržÌ«Q§k‘¸Bç­¦œÊÜ','',0,'?'),('ÎÂWÚè÷=¶Ô˜Hdûz','wp-includes/class-wp-site-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âÒf¸uôða†)½ÔX1','ù<¥¾çà¼wUÏÑLœd ‹{µ—òf—ÄSp=p','',0,'?'),('Ð~³\rrã´„}¬\\*¡§¼','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ConcurrentTransfer.php',0,'JbšíKÞ¡åÿ$Cä','JbšíKÞ¡åÿ$Cä','¤äyè+qø¬ÌjHÁ”–®qÞ[§H‘j¨ŽËÂ','',0,'?'),('ÕXùâÏà-Ÿ4¤Jü_ƒ3','wp-content/plugins/wordfence/lib/wordfenceHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J\"‚§š‡MJá7Y(\nAj','š+µ#>áû÷9Ë–¤¦9’?,ox˜ê²ÀQ–N:–£','',0,'?'),('Õs0µLBOàð0Œô&A','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkError.php',0,'RÁ[ôh„\r}„$zñˆ','RÁ[ôh„\r}„$zñˆ','ØWð2¨I\\j^õX‹s1fäºùë©p°ÿÒ©4','',0,'?'),('Õ˜áÕ®¸Ø·G€+W¹Æs','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/CopyBlobOptions.php',0,'ð¤\\R¨šÎ”®§bBùò','ð¤\\R¨šÎ”®§bBùò','|ÊD;‡¦Záóï×?OGó²b½X-Do\\ÍÏÞC@<','',0,'?'),('Öð„Ë\'>á[½žÎ‡÷','wp-admin/js/user-profile.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÙkæÕˆ_vh°É¸ö','áäÃŽIQŸÙ?†egè6ÖD.·9Íµ%/j?','',0,'?'),('ØdSú7xË%,±8ûe 0','wp-content/updraft/themes-old/twentyseventeen/functions.php',0,'Õ7[ÌèZRµ-¨îAt»~H','Õ7[ÌèZRµ-¨îAt»~H','o8³[N%§Ê:å	õ¶§äVéÌ*\n€Ù„#S•ÚA¶L','',0,'?'),('à3¿å‚¿QžÍÊ¾','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(ÊÝ|v}ô9S‰9S','\n,,YÉB˜€:¥EnŽŠ„–¡Ô4¤f\rˆ,¦äZbq','',0,'?'),('ãÝ7ÜbåðÑqõCy†•','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æÛ%­^&mnc{!_ˆk','•FUD.}xI7ÉHzÛŠOgç\r Ør€íX™ÞE&','',0,'?'),('ì¶Pdºµ“ý’íc3','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÒÅ.<$Eÿ\0—þg½:T±','ÆER%ùó–fÆ\\ŸÉ¾ä\rv”8Cÿ^Âh','',0,'?'),('ö>NÌ~UÇ“àø°zc','wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/LogLevel.php',0,'Ì\"aBý]9\r9ÆùxC','Ì\"aBý]9\r9ÆùxC','nª³YyÌ‘\"\0÷´ÿ\nd#.eg5ú6Äd\\¤Ë>^','',0,'?'),('ù öÜšÉ®á[?S J–','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r,ÿÌ‹Ô·K{çûgB³\r','“ÿö©Šð¢rf\\µ7Õî[ŸÛgãœêˆ}[=æ','',0,'?'),('‚OÍXëÁg]<f@˜','wp-admin/css/farbtastic-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕS@ãÎ[“\\,ð3|’¶!','£Sm¾\'ß;d`—ãe MØ0i=óŽ?>ÎÐ€ä¼?{','',0,'?'),('‚3¤–Æ‡eÇ(Ãº9ù','wp-includes/js/jquery/suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\\+A)œ”ãn.;«‰','I<¿{\04¯`œ<!j’±Z8ë²è»D”HWÿ•','',0,'?'),('‚—b¤”·»N8®hkå','wp-includes/rest-api/search/class-wp-rest-term-search-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èåcW—UîÚÔŸÏ`B	','wþ\r¨Ñjâ*‚m˜l]˜ ‰tëéPUŠ\r¥EûÜ','',0,'?'),('‚0ÃºbS?\0dIBOÊ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/AbstractKeyValuable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ^Kš·UÅHóÔÏ¿»à','.qâÂjq‡?¤w:×ÑIøWç„Û#]‡Å™^','',0,'?'),('‚Ñ˜ŸÒ]Q4jkY˜c','wp-content/plugins/worker/src/MWP/Signer/PhpSecLibSigner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Wvú´X[a†˜Š³`\'','\n`ìð›šYº·ÌûŠE›~,ð74:ZÅÉÓã1»','',0,'?'),('‚ý\\Ï(åÙwBêÄIã','wp-admin/network/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lÇû	Î’RU;âppÆb','­,º!ÿ½m4f¸ƒåÆØÖNRþ\nÊòâBÀˆ^','',0,'?'),('‚(tTlDÎ¬7&‡³MP.À','wp-includes/js/tinymce/tiny_mce_popup.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B7¯I1º0Žµ¹ƒdÇ','ûº¤\'Ð—¯³/!\ZÛa!Ž~³)µÁ1Dä¡','',0,'?'),('‚*ëÉœŸ;©œ¼5/PÀ32','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BucketAlreadyOwnedByYouException.php',0,'Ýóä\rÆ˜ã\Z áP','Ýóä\rÆ˜ã\Z áP','Kèî[:Û¹µ€ÇMö=À–éXÝè˜‘k”k«¥nš','',0,'?'),('‚/	ÁE:KòRå¯¥Àv','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—VÉÃ[×SPkCû','úûÚºÙ…±Å´‹¼}C:åÃ¸=€~è†ÞQÀ(8–Ð$Q','',0,'?'),('‚9Áha\nÍ¿Ó\"ëU‘','wp-content/plugins/instagram-feed/languages/instagram-feed-ja_JP.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ¤¼\nMa_˜¢üµ¡4ó','<:½ôdÎÚÏA¬;{‡HþUZ‡ûžs”PZ%·Wa','',0,'?'),('‚@ßF ÑÓ (©¤Åe*[','wp-admin/js/theme-plugin-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•-JÖ~¨ðÑÒöää','• |ÀDÕOÆ?{§ÌúÙ¿ •%¿Š×–²Y}û×Ðž','',0,'?'),('‚BÒóÙ‡Èv<Svç¨³','wp-includes/SimplePie/Parse/Date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\\ŽO2´ˆ‘‘¤C[\nÕ»','ü=­£<Ýáþei|ÎMûqZ]V[]&I-q9)g¹0','',0,'?'),('‚F‰ åGJÎÖBìˆs7µ','wp-includes/js/media-models.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Õæ¾Á´)ˆ áírBŠ','vK¼ƒUZ·3 7’ñY8z}À•‹NrŸ¢aèÑ¸åBï/','',0,'?'),('‚I²>Gð2™²@Zà','wp-content/themes/Divi/includes/builder/deprecations.php',0,'”@×Rë=CsñiP~Pœý','”@×Rë=CsñiP~Pœý','^.ØVðõÉ*ÈôÖ_–: Ã1{ƒ›Ä…bÅzYät€ ','',0,'?'),('‚MÈ®síÃáÓ%}›+=í','wp-includes/blocks/latest-posts/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úkä?ˆ„ã!Ö¤Ïã‚','”^xèÞ2\\f_ªôš(ËAþo­Ö¦çÊû&IÆÄb','',0,'?'),('‚W= \\\'x\"ˆWÌ}îîd','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§°÷Õ©èK½­ƒ^ã¥¾¹','ÏM‰8:ŸnaÆ‹GZÝqQdÃ½!® ¼Ú\'‡›&g1','',0,'?'),('‚Y‡Ø»úç”©éÑú*ñ','wp-includes/css/dist/edit-post/classic-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿP˜ó«˜t¥]ÓCY¸Y@','WµgTàžaWqï‘hCÛ14¹Û\'ïj#ø÷‘ƒÕ»£','',0,'?'),('‚c)?><Ò†dã©\Z+M¾','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/date/field_date.js',0,'»Œî´}k/Ót†ÇÅsûU','»Œî´}k/Ót†ÇÅsûU','<êŽÉºE!\n;àÁÀI@ScÍ\Z±ƒà[œWúï_¬','',0,'?'),('‚n)¨aø\\Ã,pY\Z·šù','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VœÈÏzÈ’¹ú`(ålEÒ','‘ºÚëÐéâ¯ ç›®ÙöÜÖãßÔµJ±\\Ä_øz[','',0,'?'),('‚w€·5»ÿïÁ¡)ºûž','wp-includes/css/wp-embed-template-ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','î·)6žó	ØžÐ¼q ªÊß',' o•±+8]ÅSuçüH.éCøgôÞR9ê&¶+ý¢“\\W›','',0,'?'),('‚}‘?QPs7öËŸg|E@','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/scss.js',0,'éEÀ\n¸’‘^³$Œ\Z>QŠ','éEÀ\n¸’‘^³$Œ\Z>QŠ','wŸYÝmá’’©v@šáÉÎ*9\0BÃƒy]ÓtÍ÷A,¼','',0,'?'),('‚Ž\0¸ó¼²+OW+','index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’mÐù]÷#ùí“N°Xˆ,È','³Dz²\nèþ}_«ö7x,Í9öt:æ\'³\r¹ó‚á','',0,'?'),('‚£æy¼ÂPÊ$½:BÃØŠl','wp-content/themes/Divi/includes/builder/module/SignupItem.php',0,'|ª¢bïîýÅ•”‘îU','|ª¢bïîýÅ•”‘îU','pÉ5â»ÄZ8Æè\rDÐ¾ùnk,õˆµFž°“Í@Q+','',0,'?'),('‚§¬ãíA¼ÎòŒ1\Z…;¤','wp-includes/rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å4|žÙòò¹£e«Ý(r',':™¤.,°0aHýAùà\05:®f„s\nfçµÑžŸî','',0,'?'),('‚³8ùkõîÇžîwOˆW?`','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/button_set/field_button_set.min.js',0,'ÆÎóUœÍu\Z§Cé|;&','ÆÎóUœÍu\Z§Cé|;&','ó»Ì$úGÅšÀÅ˜ôôéè/Çñ¶$¶~¡ß\\T½U\\Ý','',0,'?'),('‚¹Ñ_ƒ~¾Ü&–ž1\0]m','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_sk.js',0,'î˜AÁÉià	©4ÐÎÇƒ(','î˜AÁÉià	©4ÐÎÇƒ(','u½Õx³˜ÊŠšUq—vð˜íw‡~J|ü@•èƒz','',0,'?'),('‚½\0cêg;Ã‘°\néUQ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ListBlobsResult.php',0,'“™ýd	>?\ZÚTîÚ·â','“™ýd	>?\ZÚTîÚ·â','š¹4ú+çI2MpÖ\\«Âýõ”aØQQ‹uÀ\Z_ºç','',0,'?'),('‚¾˜Ý)(‘ŽÞfÓ÷Ã1','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseClassInterface.php',0,'pŒyud#“ùÎÁSå$5å','pŒyud#“ùÎÁSå$5å','RÉmÕ¥8/‡fxé:ÓÆto5~ÌÄ…Šµ[‘ÃVÌ','',0,'?'),('‚Èi‘Nœ0ê/â¼Í†â','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-scripts.php',0,'s{³ó•ê)þ…ç‰<E','s{³ó•ê)þ…ç‰<E','&©Ž–«:Ýå:ðøÊ5ï”Fž!([ßÆ©½£Cv#u','',0,'?'),('‚Ñ{Œõh§ŽæB-o:IhÅ','wp-includes/blocks/query-pagination-numbers/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³hû?,Q?½…B†±1=ê¿','¦lÏËöNº¼ ®· Ð–?SÇ·¾œÿð¶j, hßT','',0,'?'),('‚á,´A,;üzôÎòc°','wp-content/plugins/worker/src/Monolog/Handler/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('‚ä\0“63»ò¹M»}½Ö','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Cookie.php',0,'÷¦¨2aC?ÊÑ\rfqn','÷¦¨2aC?ÊÑ\rfqn','ÂËižÃ¡¿˜¬³Ñê§­xÄÐ\'“©AªWâyVpRª5','',0,'?'),('‚ìœý®v¿A\nGrÏ3C9`','wp-admin/includes/class-wp-internal-pointers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^I[8Täã—\\ë¹Þ=','Y^9’A\r+^-ìÂiLñW”àj„™Oºå¦÷»Fõþ','',0,'?'),('‚ñþ.ø9Gl¶ä;?ÌR','wp-content/plugins/wp-mail-smtp/src/Providers/Gmail/Mailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/ÒÃÕ*ÕÁŠq¬ìy¨qê','ÒPŒä36Þ\\Q1TGä‡—¹b³ì\0(ÓÄ©7Æu','',0,'?'),('‚ÿc»”u§À“ô)Þnß—t','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/SendAs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÄÂ\0Ç6Œp1lø<ô©=8','ŒS˜ì/˜á:±m>‘û0é«Ñ·µÌhb¸ÝJž°Ét','',0,'?'),('ƒ	vMKEgÁ	*<õç”','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/index.php',0,'¦¬ò°-ô‡c‡+,¢›','¦¬ò°-ô‡c‡+,¢›','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('ƒ\nS@ÈíJþFòá!Ÿé','wp-content/themes/Divi/includes/widgets/widget-adsense.php',0,'ì8\"´ÞF°·<Ã¿„QÇ­T','ì8\"´ÞF°·<Ã¿„QÇ­T','€§§\'XÓœÕÃDš\"´j¸„P„¢ÆŸ‚®Éh=D×à]R','',0,'?'),('ƒÜž!±þgîàô7‰ê¤','wp-content/themes/Divi/includes/builder/module/helpers/ResponsiveOptions.php',0,')™Ï¿tAŸ¡˜¹S¢mÃ',')™Ï¿tAŸ¡˜¹S¢mÃ','oÛJÄ±sÎóÉ Î÷Ñ«÷NÃØ!¥\"XDª¶b\Zl×','',0,'?'),('ƒ òqq’U•zŠA~\"','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/ResponseBodyVisitor.php',0,'ú\Z÷J‰@¸M™/­e¦_L','ú\Z÷J‰@¸M™/­e¦_L','¢[w‡ƒ-,‡â=LÄ´ô\0)æØ§{Î–„:ó²¿ôK›','',0,'?'),('ƒ>E\nŒßˆùtÎ(Yê','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-pü˜ÿ‚\0EÈcbœc¥','\"ÚÌ˜ŸLŽ×Ù!Ò{rDnPz^ôÚXòjôÄûLk','',0,'?'),('ƒ>VªØ\">¦Qñ:u&Ã›','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/themecheck/js/admin.js',0,'\0v¶oÚY¾^­_?Ó2U#','\0v¶oÚY¾^­_?Ó2U#','\\èó¹;Y¬ÕíŠX]Â|\"ãs>\Z7â	Y\rºŒào','',0,'?'),('ƒEbl8yÀöÃ}†¡—','wp-includes/js/tinymce/plugins/link/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø*NÈ’mQ¹€®Ì¹Ã','Ã`3ŸcYQøÁÙþ9WÞ­#l»öÖpËS+GíØ4','',0,'?'),('ƒM‘V82½¢n¡¸i«Hb','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression_FieldFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·Ë®†Yñª»›Òy\n‡n8ô','_·(†óéæ¸|0CÔ¢¬dp£½Þ([x*z&< µ^','',0,'?'),('ƒWÜnJÖ.\'/xû','wp-includes/blocks/embed/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö”ÁP÷#…³â}Ä5#','»f2í²Iëèê\\ÝVûsbÄZÔý³efA¶ÕÇ','',0,'?'),('ƒ]¿’&Ö8/ ÊEò‹J','wp-content/plugins/worker/src/Symfony/Process/Exception/ExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÉÔwèµ3\r“úŸ·$b','\r<\n›))hyq*W×Ö5%Ü8“Óš*Lé_7òÌ®','',0,'?'),('ƒarqœAƒÀà¦b@rØ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf1CacheAdapter.php',0,'øÏ*I\\ùVžµø:rdø','øÏ*I\\ùVžµø:rdø','ý!7«8>vžY³‚YÞ^9Nþem4Jß@¸üa—Ü½','',0,'?'),('ƒbí”Û\"é@ì¬Ëû7[','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetProcess.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³ž‚‚žã²žN¶cçóžà','ñQÈqïvä –T“ü\"è_Ùÿzëš‰ñ¸gn,','',0,'?'),('ƒm>ì»\0»°0X& ^™Q','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/CurlRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·çpKz’ä`ß)9_@ ','»›aÒ“YeÚqÙ7YTc³ÈŠi$˜W¿ØªÊ/Ä!‡,','',0,'?'),('ƒxå§$\n3yù7ˆ\Z¢','wp-content/plugins/updraftplus/includes/jquery.serializeJSON/jquery.serializejson.js',0,'ææ{¬³SAk(u„I5s','ææ{¬³SAk(u„I5s','I¹ýv‚Í+Š’µBÞ­èÕ‰»cªdì6ÁãÆ\"O\\','',0,'?'),('ƒ3«‹ŒÉ¥JÝÒÜe›','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.mousewheel.js',0,'\n©tYíš¸žæ¾$Ñ','\n©tYíš¸žæ¾$Ñ','èç¦g×w)òÐÁNE…f•Mù!nNŠ8U\\Îfþ®@ö','',0,'?'),('ƒ’Â^~\r8æRÇ™¼‹E','wp-content/plugins/fusion-builder/js/app.js',0,'T©zÛžhÅ\n‹Wú°;','T©zÛžhÅ\n‹Wú°;','¿ëÅ>µ0¨˜üÌ{<[Ý˜pc;¥AJ:7CòXM¬ä','',0,'?'),('ƒ¡âc(õçHkNÎÓSýø¡','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/divide/field_divide.php',0,'	HˆÁùëæ¦[N‰ˆ€Æ','	HˆÁùëæ¦[N‰ˆ€Æ','*ô¾ô ÿ¼ð¹ú‹—ðºÄÕ³ëÚ¹ìÇaN^]','',0,'?'),('ƒ¦68ç€ˆKÒ\\o	6','wp-content/plugins/updraftplus/includes/PEAR/PEAR/Exception.php',0,'Zæ­ œ¯;w*/îy¢ä\\','Zæ­ œ¯;w*/îy¢ä\\','4Ö³¡|Æ©•½Ý\0½ÚŒKC’z¡<#•ã´0ÞiÊ','',0,'?'),('ƒ¨?ç¬Úz6¤—ÛaDz','wp-content/plugins/wordfence/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:û„²·õmð™—£P½','j*äeŽó©õdoX¤~§7Âë&€²‚Nü9É|L•Ç','',0,'?'),('ƒ©W>Åi=˜‚”Œkõ¿+','wp-content/plugins/updraftplus/central/bootstrap.php',0,'ÈáŒy±’ªŠ=‘Ol|','ÈáŒy±’ªŠ=‘Ol|','C¨šéœ‡ÐöÜ&ˆ‚³„‚£p|À³ƒ/ôÆ(% ','',0,'?'),('ƒ´´\'S?º$“èY~™ï','wp-content/plugins/worker/src/MWP/Stream/Buffer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J¼ª‹Â¶&¤¼µ¸ù9j','ú©;È®sàx’‚ÜõìŸUßYŽRM¥•Ý­zõ ò‰','',0,'?'),('ƒ¸+‡@¾2è!ìùc5!','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/InstanceProfileCredentialsException.php',0,'™!…í‚–(š\'±¶I0fC','™!…í‚–(š\'±¶I0fC','’3”•»–¶søÿûÇ¶Áã~õ¾ü§?\\M³ìÁ:Å8ô','',0,'?'),('ƒ¹E¦Â“šç¾Ó	ºâþ×','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-amp.php',0,'¼>/œ)ÊxzÇY3F6\n','¼>/œ)ÊxzÇY3F6\n','¾ØO0uÈgžeCâòí„«Áwˆ4ÞÙ÷\\›ú','',0,'?'),('ƒÉÍýu[sK¥p+TcÓY','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/fusionredux.min.js',0,'ÁŽÆk×wNš*8Î\0','ÁŽÆk×wNš*8Î\0','+$\\jÒùÉ_Èìp÷ë>åJTÃi–]ÖnÙaVµj','',0,'?'),('ƒË´}¾æŸwJíBß!§ÌÇ','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/lib/sodium_compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âAÎ\'I5š†xNÎ$¥','±mý£ÛÆ<ûº	p—(t)P7øÄr‚~^úçé—¦ò“Ä','',0,'?'),('ƒÐ¸+:3èXnNˆtexöX','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fChc-AMP6lbBP.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥ÔõìØ{Wü7h>—­¯','„	2m˜èw‡ó3)zWg‘Þv{AfŠàHu`Co','',0,'?'),('ƒáº¦fzŒÉ‹ôü5þ¡	','wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ð±×Ô¹°´—Xp`me<','wP\0ØpÔzuYDSÞz(W ß¥‰ìP¾3$S‘öò‘','',0,'?'),('ƒâèÊ†×én¥Dã®–Ë(','wp-admin/css/install.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðB´/*ÓùßÙàêzM^','´÷Ï-9·4 <0üÎð]lsS«Ä·°<I¤´¡À','',0,'?'),('ƒãj¬ºÓÃ5²ÞfÅj¡','wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!´ØL|±y+5*êM\0Qk','’‡«©ÍOëqèåFriüìž”eÖ+³K¥	¶/;C','',0,'?'),('ƒï\'7I+–ÈWžç†¡Ñ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/UserKeyMustBeSpecifiedException.php',0,'¶pA\"Ùð‹Ç£Ë|£ºç','¶pA\"Ùð‹Ç£Ë|£ºç','“K‰×¬\nôç×ƒkÝNa/”…õd¥ÏIÌËruUé\'-ãþ','',0,'?'),('ƒýl0Ú{óÓMtc;´B','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceNotFound.php',0,'BÌZö—§ÝÓöI“^òƒ‚','BÌZö—§ÝÓöI“^òƒ‚','d¿zZb:^øÀ=\'S\ZÔž.ê*=Õ^Þwóã1','',0,'?'),('„\rèIÚ¡¡ÏXvÄmâî­ý','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/DefaultClient.php',0,'õÇEºªèôoãzO=K½š','õÇEºªèôoãzO=K½š',']´œM\ZJ…š´,ñqùÃÄ·©ñ-Õ‘îüÀ&ß8³©','',0,'?'),('„î–Õ\rsu¨ŽŒ>Gi','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Token.php',0,'ù˜8€È*–Ø¢ŠszìÂ!','ù˜8€È*–Ø¢ŠszìÂ!','êö)à9¼<®bÓ¿@QëhÉ¢g;Ì€e>¨Äg~Q','',0,'?'),('„þVÆ(<VÙÈ&ïÃ,\Z','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/AuthHandler/Guzzle7AuthHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ý¸§²ðØ2´Í„j(HaÌé','‡\ZðA¹°±äJµYýu\r)Æò&D…-\'‘%b\n]','',0,'?'),('„#S¼¼¶ K‚ÆG1 ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiInterface.php',0,'ºu¬×~—÷i8åž4YkC','ºu¬×~—÷i8åž4YkC','%3‡	iFªÌ¥K«\n\02$gós¾A^2‚,~ÄÀ','',0,'?'),('„)Å©¶ê…2[¤	Ó4¨_a','wp-includes/class-walker-category-dropdown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m­Üsányì†ld¶)£àš','ÝÕ ¤†¦P)_ªs©)v]ˆÕ‰\"Ûò»ž|”','',0,'?'),('„+0ª¤€æ™n}¤ÊC±','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÛêÖbq¾Áƒªá	-W•','q¿O$4AôumÖûßÁqÆ]þ%ÿCñsÌ±`¾SÆ','',0,'?'),('„+oõ2žá8³EŒ+K%;û','wp-includes/PHPMailer/PHPMailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…qÞ\nô½L)÷éš8«','¯GK#I:í4Ú„`šÏ\'×xùÕª\\•«ã_à®‡6á','',0,'?'),('„:+[õ¹g¾¦CZÝØó’','wp-includes/template-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þzÈ	Ò¿öèÜŒ~ÎèÊ','¿„\'4Äh ²ä±º˜¥[£‘ËÙE·ˆ%’¬J©Hú','',0,'?'),('„[8Ì<jÅ‰£˜×\Zky','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/Adapter.php',0,'›5Èâ6òpÎ¹¦28','›5Èâ6òpÎ¹¦28','è\'\\zç–f!HÕÆ«$4{š7¸Ç‰qf±¾·—û','',0,'?'),('„[àü&¼#ÔMêþ17','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/chevrons.php',0,'Í¹9U:4—Ù“‚q¼ww','Í¹9U:4—Ù“‚q¼ww','!7ú`³>Óï²Í§%oUhdT)Á¿„³}±‚–','',0,'?'),('„i2O’×µÚ+¨sÌX.µ','wp-includes/js/jquery/ui/core.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PC«ìõ\r²{çtk \"x',' êS°öŒè´ç3~nËF#™EHf›_‰¡7qY@IÔÉ','',0,'?'),('„mÌ/Å˜âå˜]ùÂf›e','wp-content/updraft/themes-old/twentytwenty/template-parts/modal-menu.php',0,'7…ì¬3…-™R¢`1í','7…ì¬3…-™R¢`1í','¡÷”b«±Éî¶CçÓ–`šÜb•Ê…ÚÐ_Ž0D³Ò','',0,'?'),('„}ÊÍË—-$ì$OöoÕ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àVv]ÌL ÂÑý&iPvæ','-h‰{¡Ñl•†ƒö—’Ž9à\0K€Cž=äµJôz÷±bÕ','',0,'?'),('„‚ˆRðg_§z1,—wø','wp-content/themes/Divi/includes/builder/module/helpers/WoocommerceModules.php',0,'Xu2ì³«q¶¶ßåM’¬å','Xu2ì³«q¶¶ßåM’¬å','Û­¯®üü\0ü/¡ISÍÃ^fÙ\'ÞAÙ˜ÙÕª¡^w}','',0,'?'),('„‰P˜øÆnŠ®äày„²Kª','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/VolumeError.php',0,'>Ç¯µå¥É‡\"Q·\Zˆ, ','>Ç¯µå¥É‡\"Q·\Zˆ, ','oLÚyÛ˜G£=^ä{÷o¾»m#ª¸j8\"ŒlL','',0,'?'),('„Ór¦wa[«›p†úƒ’','wp-content/plugins/wp-mail-smtp/src/Providers/Gmail/Options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J¦†¾ëIz®T~—r™É','EåyoÓ‹ºÙ»ví»ÆUÌ\\hK©ª–é­´%€û‚\r','',0,'?'),('„•QøÚ5jøª—4NN|ã’','wp-content/plugins/contact-form-7-honeypot/includes/images/banners/semrush-1_720x90.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½ï>4›M%¦SkP‡¤d','JÍôJ·qm\rô¡Ee.NíwŸYvÊñé¼û0ù7cAH','',0,'?'),('„œ‚P»¼ÝM…Ëˆ=U','wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê¿m€\\m10ø‘f*µ)','	möÉYÜ_áÝçË\\\'.º¥]¯»»WyW0÷‹0','',0,'?'),('„þºçÖF6Ñè4.ä','wp-content/plugins/wp-mail-smtp/src/Providers/Mailgun/Mailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','râ×ŽjÔtßd™Ü7','	®ºÈö¼ßòml÷vB®j(‰4ˆGçýñWÄ¸%','',0,'?'),('„£[¦S®lm!‹.‡ÿi','wp-content/updraft/plugins-old/updraftplus/methods/googlecloud.php',0,'çÔº\'®€hzñòx¢','çÔº\'®€hzñòx¢','œÅl£¤J5ELgn¿j®HŸ\'f.C˜ØÖþ*|ÔO','',0,'?'),('„°ŽeÙž-\n¶yV','wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©‰|®Wwšb>EÏòyJ','‚\'À²Ž¯­~À6È\nBŠºÂagÂzùÁëdÃëQ','',0,'?'),('„´‘-@®é#-¿†šC','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp384r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ËãÌÂè}CÃº²›f¸','ª>@|\n°r¡„j»í¬$\0j>gÔqÈ÷w¬ÍÛø@ŠÇ','',0,'?'),('„ÀÊÆÄÕPU¡…ac—Ó','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³YA’ÀG=bÑu¡”÷','zñ,Í¥²èàt	<{@Y{úiyƒ¬s˜ŠÝc¢(SýL','',0,'?'),('„ËùT,\'að;Oøýêá°','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/checkbox/field_checkbox.min.js',0,'½1\Z´0‘Öí–¢á}x¶†','½1\Z´0‘Öí–¢á}x¶†','h-;eaKgµ”±dÕ¨ˆk–µ9‚OÛ7™Î\r‰ñ4õ','',0,'?'),('„ÏïÑ,²èÈ¿‰FEÃ-','wp-content/plugins/wordfence/modules/login-security/css/colorbox.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“<„»w\ri™ì»ŽvL*xÉ','ÍNÍbµƒ\rÌŽŠ/?+\'åÄbi\'úWâ$@€i\0','',0,'?'),('„ÔÇàQw;»X‡-8n','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_fi.js',0,'Ë¥û!S”¥õ„š™H·„¾','Ë¥û!S”¥õ„š™H·„¾','6Ì\r\ríßŒ%â(œ~A0+¹ófcÒNÕ\"Ÿ‹Hg62','',0,'?'),('„Õà *÷Ð™³ôr.&dv','wp-content/plugins/wp-mail-smtp/assets/images/icons/success.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ò‘¦;NRÍÑaä2\0§&','Ÿ¯†V7ÉL\n’Ií‚Í¿X/NÉ>?‹¬§£e¬K:\\ÿ','',0,'?'),('„ÖnvûŸZùYVßûÉþ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šµx9S—ÙÇ\r°uß>',')6°Hû$ð/×õj2m§ŒÑOòŽo×<4Øv)ôgiAp','',0,'?'),('„à‚=ŽðÌàoƒ]N','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedContactDetailsStatisticsLinks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒ9KªfÚ¤omBdO÷“Ã','	c|Ÿ4ãŒÂÎò½-£Ý±>›ŠsZ<¡\\Œi;c;^','',0,'?'),('„ãËÊ˜GÊ¥é¹oÏ`D','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/Exception/BatchTransferException.php',0,'?Ž´³Oçë$+dz\0¬Æ\0','?Ž´³Oçë$+dz\0¬Æ\0','Ÿ¸cî¤Û®jevFwöJß›êR4Gà¦\"Fo¯Ù','',0,'?'),('„ä¡ö8»0á±æ*³Îúa','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/spacing/field_spacing.min.js',0,'S#?/éT!ªüóì<ŽìJ','S#?/éT!ªüóì<ŽìJ','}_ªØºq™zîê\r„xiz¾±±9M‰Ù‡•.ÈG','',0,'?'),('„óû—Íoðqÿ÷L”$úF','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/js/debug-bar.js',0,'®zUÃÝkÞT À9ŽôÃÆ','®zUÃÝkÞT À9ŽôÃÆ','oã«ë«Á3xE¶’¡ÆYH­%!Y¾àÚ‰áv*C›','',0,'?'),('„ú*¡ç?üø6¡_šD','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä¨vbPÄÅC¤Æ‡¬”/Ò','ùÁt{(JSQOÁ)í!žUHjºùëþâ‹ÎQF3›L','',0,'?'),('…\\ÐWªdÏž+Ëÿ\nnW','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFileInterface.php',0,' ­õ¯&éÊ¾\0’\"ûªdÏ',' ­õ¯&éÊ¾\0’\"ûªdÏ','iõ°8HL&<æy´º<\0´ “C\0{H6êÆnLˆ','',0,'?'),('…ZÄÛDŸ›l³=¸ì»«','wp-content/plugins/wordfence/views/waf/waf-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°]oFo«O°\"IþR­Õ','†LÛHµ?-Z(G	öIŸLù½L×DÎ½\ZŽ’¿£ïÛ²|','',0,'?'),('…\nY	P|‘€ˆÓ°ê','wp-content/plugins/worker/src/Monolog/Handler/AbstractProcessingHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y´‰-‡!=‹?C“ÿ¥\n','µá¸bµq]Ð¿fÝz#»$…¶ãñyÏÕùŒHÈ7ˆ','',0,'?'),('…Á¾GRàÿX‹mêCx–Ï','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/LocalLibraryItemEditor.php',0,'jùÃaÈ.ßÿPƒ@Þ¨Þ','jùÃaÈ.ßÿPƒ@Þ¨Þ','^¥ºß&4^Æã	Ç\Z6MM_LÊ&\ZßØ\\ë­ƒµ','',0,'?'),('…[Õ,qPy	ªî9Í‰^,','wp-content/plugins/wordfence/css/wfselect2.min.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤cŠ˜ÌÏ3,BñVÇÂæ','§€Ú‘ót4UÔ–\"ü;¹tû7äº\ZÀJyÙrb@','',0,'?'),('…j‘h¦Ã:	¸°§Cÿ','wp-content/plugins/worker/src/MWP/EventListener/ActionResponse/SetUpdaterLog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£•ï–t«z-ö.¡¥<~','Ê›šôdÝå÷âí\røðÁŠÆ·`ECÙÜ*6Ì5Æ3','',0,'?'),('…#Cà~{%×—cHç>}\nó','wp-content/plugins/worker/src/PHPSecLib/Math/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('…$2(j,âÑ¶Öã?h¡','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchDivisorInterface.php',0,'›`ò?2üKîä4÷­æt','›`ò?2üKîä4÷­æt','¡~êaõç?oH3`])#)7ìN«È+_¢cñÉ','',0,'?'),('…%‘x1­oÍ—½AEœ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9RÑš*Ó>Ô£´îÖ¬','„\ZëÆ± ;Wö¥i˜,_Ãæ^¦›°C/N¥¢6','',0,'?'),('…) h©¯2N¤ÌW-','wp-content/plugins/updraftplus/includes/WindowsAzure/WindowsAzure.php',0,'m^UrÍ×ÒÛZÜÛ(ÕXX','m^UrÍ×ÒÛZÜÛ(ÕXX','‘€ˆµâÐovÆåè²‚°Ú‰d\0ywS“o¹(\"’—','',0,'?'),('…<êò3qá;i­zº','wp-content/plugins/updraftplus/includes/handlebars/handlebars.min.js',0,'ù¸^È¤Xv+nïr…Ëj™¨','ù¸^È¤Xv+nïr…Ëj™¨','LKö¨A_õZgM´áß‰³ú{ÐÜ¨Ú\rb¾÷Gi<Ý','',0,'?'),('…B%v6ÍI\"Jb½Ç4Ó¡T','wp-admin/link-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B’0iNjíÈöÈºÒ','íLo( ÚmæØ¾Täã×k‰%<P!wí«/\n´','',0,'?'),('…N½ufýWT²~Zµ©ß5ë','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_es.js',0,'ÏŸÙfO´¡vQºòGs','ÏŸÙfO´¡vQºòGs','+žÈ®ŸX¦ìEÁ”Ç³ôu§s‰?.bäBI¦ •','',0,'?'),('…am¦iÃukí&[‘ÍR','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_hu.js',0,'ðvó‚[–?ˆ®Œeé˜¿¸c','ðvó‚[–?ˆ®Œeé˜¿¸c','Ã¸Ý¾LŒoUš÷…6Bhƒ¨³À&#Ó¥ßõ‡©—','',0,'?'),('…i;,¾àYv7õïˆÿý\r‡','wp-content/plugins/worker/src/PHPSecLib/File/X509.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬vÐRÐàˆ‘[µm‰D','²Š5VÚUëù¢&¼¡žä‰|ë‰-\ZüŒ¡5yJÍ›\0-QI','',0,'?'),('…tÒ€-­‹«r›¯XþÁª','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncHttpError.php',0,'JÐƒÁ÷Ëª&D}ö','JÐƒÁ÷Ëª&D}ö','FÔ’æ	›œ†VIãŒ·_fËn—Ç\0Ä™ÓÈë','',0,'?'),('…oM2÷Bá0!4èëSõ','wp-content/plugins/updraftplus/includes/Google/Model.php',0,'GÖý W€ù»©óÍÅ¹ŠxŸ','GÖý W€ù»©óÍÅ¹ŠxŸ','a-žÌ<M>©¥w O™›B%ŒÆ‡ÃÕKç‚S7','',0,'?'),('…”Û‰v…ôD¹åÃ{','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParser.php',0,'ef\rh­2+º\Z1ÂÂÔŒ(','ef\rh­2+º\Z1ÂÂÔŒ(','§Bbg“ý÷FéJ9Ö?øItè‰aAkÿ†Tl²Ô×_','',0,'?'),('…˜—Ð+„ÝgVœÙÕy£%','wp-content/themes/Divi/js/scripts.min.js.LICENSE.txt',0,'ùu×Ö™s§VžjOp¾„@à','ùu×Ö™s§VžjOp¾„@à','B`Ñ…~oLOó8ð¾ý0‡ƒolPø-!Ët$ÿ]G','',0,'?'),('… 5®FÍ9–ëö,÷–…','wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-wpf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼B™g’cKÏi*T¨¿Ç','qL$†ä3ïq5Üåi	Á›tp”È²ÆËBH','',0,'?'),('…¦›÷3wÑ\\GaƒêÆ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect163k1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0Ê\ZóÎ¹”C”=eMþž','Ø9B‡›sº1Ú´\"tä&ºÉoÃÈÛ•þ6™\n7BL','',0,'?'),('…¦í¼ýI6­«ÔFñ','wp-includes/blocks/rss/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DÕíú½™\0!!i¥ë¡','žuùƒ\rÎ>u`ü37(ÏF½^ø à)L}Èÿ(ã\"l','',0,'?'),('…®—j_>Q	*ü@$Õ±','wp-content/plugins/wp-mail-smtp/assets/images/email/illustration-success.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çŽáœÕË£eV¿™ïPd','4„EÚiÛñØÛ@:e?ç° „&›€X¯±Î5&ü\'','',0,'?'),('…µÀm3Iù”$×›o','wp-content/plugins/instagram-feed/img/insta-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b‚,‚ã&L0j†•hd','Íë>8e*laÜlºyv^Î~ÃŠ§,éSÉ›ÓT','',0,'?'),('…·QŽô½üyqíümªr','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureDivisor.php',0,'¾ŽT]Ì^P‰\0k™	n','¾ŽT]Ì^P‰\0k™	n','¼´]3néÔË¹•¯¹–¶0Õ¼Z¿bâ-pe·W	ª','',0,'?'),('…¹>ÁAäBÇ7åSz!ˆe','wp-admin/includes/export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žÞåH?³½•iúŽVJ«Å°','€^ÖšAGx˜öþˆ§™zÜ¿<œI¸“K=¥ËH','',0,'?'),('…¿»ãPu¡í|{/|äN¯','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mœgKuS9»Ä\r˜P5O','ue/}²ÁÃŸ•¾Êž» •)\Z×‘Š¸!œýÈ”ð','',0,'?'),('…Ç¹çÕa½i\Zþåhs','wp-content/plugins/fusion-builder/shortcodes/fusion-google-map.php',0,'ô“Cu\0–¾æ0}‘‹ög','ô“Cu\0–¾æ0}‘‹ög','B÷ƒÚG½öŽ0H¸`þf-\rý£sè[<|-4‹','',0,'?'),('…Ûk˜}Ê×K›ñµ\'ƒÑž','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/CommaAggregator.php',0,'gÎîjGm*fYEª¨\\T','gÎîjGm*fYEª¨\\T','ô{‡¡Þž«“Œwƒô«Þn\0qÉ–…:wþ$\'WN+Q','',0,'?'),('…áÚÉœ1\0DáÑB%Í^yì','wp-content/plugins/instagram-feed/inc/class-sb-instagram-data-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸[\"Ô‰P k5ØìçÑ','jOgsU~(‰ëÛÇ¾Ä€4	)/æ$$¡L—¨£WK','',0,'?'),('…ì|0¹¯ÒOì+˜]lUõ','wp-includes/js/dist/a11y.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'h·¤ùî“ØõŒÀ”©ÿ(','æÿ©Îÿ\"øY\n+­,úUÏá2Žš£˜[Ïù-Q·òß','',0,'?'),('…ý›T×ì–‘µ:t[¦ß','wp-includes/Requests/Exception/HTTP/410.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!ç$¶-4¶3RžÛ¢´Uâ','—¥9†f/3MM;#GÚªWO&’tSûO\Z±­ÀÆ˜ò','',0,'?'),('…ÿf\06D.\r4R«¦ ‚Ù','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Middleware/ProxyAuthTokenMiddleware.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rM/x7²Á‚ËD[jèK±','t©Ìôæê@à«Ú7?A­Nf  fy*Fé-UoÔ','',0,'?'),('†$\n.þJ©i–h.‘3','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListLabelsResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rùà‰¯“7)=MŽ›y','[ˆÿ±ß±FíÊUBr‘Fxº¶™°,t€ù¶õÅq¦Á','',0,'?'),('†¦[Ês.ÔkƒŸ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Serialization/ISerializer.php',0,'úïÏ ¨T¦0 Š\\ F','úïÏ ¨T¦0 Š\\ F','K\0Œ…PÃï½Á%–!ˆÏÀ¢r‹ó¤ljìbþ#r','',0,'?'),('†ßB-ò}ŒÌK	áø','wp-content/plugins/wp-mail-smtp/assets/images/reports/email/icon-check-gray.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ï]¡	ˆçö«Ï^õ3¼','hŸMM‹¦{Û¶ˆJ¢½2‰u°ï\'€>8s–¶T','',0,'?'),('† W_õG\\–Ö¨îxy…','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.hoverflow.js',0,'!wÊœ5º›GxÛDö','!wÊœ5º›GxÛDö','¿<-øáÅ$]Cûãl÷|mŒR3>d=%öTm©,b','',0,'?'),('†)ÀÒâYh¨.ò;¼èÅ¡','wp-includes/Requests/Exception/HTTP/412.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë©\ZcuÎ	LÑñÜtÖp','S÷A•4c\\DÒ56-ŠÍ#¼¾d*³ŸÒÒ½Ó¾Rýþ†','',0,'?'),('†/ušùúàÉ¸Ùi¹§	)','wp-content/themes/Divi/includes/builder/frontend-builder/helpers.php',0,':CªÓ7!òI*W`Åáù»',':CªÓ7!òI*W`Åáù»','\"1ÖÀ%\'JŠ-Þ¡ü…st²#l„_±_6NE T','',0,'?'),('†1äˆeUüMVý¸^š™','wp-admin/includes/misc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EÃÝéŠ»~Fˆa8U¯\'v','ÜÏj{yË”Üýó5N©1ËÙÞž³Ì2ì½²óöÙ','',0,'?'),('†6)xÖüT‚žz¶ÞŒ\0ã','wp-content/plugins/updraftplus/includes/Google/Service/Logging.php',0,'¾*Ìà¨A@r¾QˆGXy','¾*Ìà¨A@r¾QˆGXy','‹‹û°\\†k^íN³ˆT‡p±´Ym˜UÅ¼P\\…','',0,'?'),('†DëDV‘0¦\Z@Ï¨\'\"\Zb','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Update.php',0,'ß,e …¬2Î|š€Ã,','ß,e …¬2Î|š€Ã,','bßÇvÌ]Ê|²¥_>r”Ûï£©¤»ŠÉ\03ósŠ@å','',0,'?'),('†F_q¡ÃÈCŠF!o4p·—','wp-content/plugins/wordfence/views/scanner/scan-starter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1õìxø¦ýÀh3\\','¦ÑUØ~–žAVkrìº%R’x$p¨«Z1°\"ÒU¤','',0,'?'),('†NÄô°{´ZÌ)š\"~êÞ','wp-content/plugins/fusion-builder/inc/templates/custom/js/fusion-pricing-table-settings.js',0,'UT°öv+*4?ß#(äÝ','UT°öv+*4?ß#(äÝ','ŒÜÜV\\À\Z\"ùÞÂ0øŸI”O­1ˆRõhO=¶’ \n','',0,'?'),('†Q9\0µ~Âÿ\0}ˆ©¨6','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/DryRun_ActionMigrator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—!²TnÉu`\'3S×—„ˆ','~ÄLáX@»“›ÐŸ*7=ItÙ¶9fêù„ý*­ÿ','',0,'?'),('†UŠ²¡Öùh¤5µš(õ\Z','wp-content/plugins/contact-form-7/modules/stripe/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ê{ì˜8<Ï&±!xÿ#Ë\'','¢åÒ·;2ë=íkÓˆ=º?\0i8¾½1qEìØ¨z†9q€ü','',0,'?'),('†[g–PY’òÏ–¢Dôõ¾','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamRequestFactoryInterface.php',0,'vÂ-™HX·®ÔÁH/0D‹','vÂ-™HX·®ÔÁH/0D‹','O°J£è¤¼Tk¿Q\r.±‰LzY¸%¬0DÌèU2','',0,'?'),('†]²Õ)N–’¨tGØ1m','wp-content/plugins/wp-mail-smtp/assets/images/reports/email/wp-mail-smtp-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0µ›’/ÿÍwmA\r–~0I¥','³Õ=-$³F…Xã¯©§Žq2¤n¶ÈŒÊç7ŸÐp','',0,'?'),('†_ï³öîèy¡ Gb','wp-content/plugins/wp-mail-smtp/assets/images/dash-widget/yes-green.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èfßåêÏ&CªÉð²›','5DS-c;iMC^$ô¦â“ib¥\'ìccú5³üTÀ¸²k','',0,'?'),('†eâÓ¡DÖÚ\"ˆ\\ìâ','wp-content/plugins/updraftplus/includes/Google/Auth/ComputeEngine.php',0,'ËH¥ÑLíèÊ˜ŽXs)r¦','ËH¥ÑLíèÊ˜ŽXs)r¦','”äãAé|9×vqBNæ˜¶-Ç2Uç“xaœþµÀ','',0,'?'),('†lšØ\'yK‘’~ÖK –àÚ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Client.php',0,'Ö™½¬Œ\r¿CÓ³å]E—','Ö™½¬Œ\r¿CÓ³å]E—','¨øe–3t@—Mn§—S7(ÇÎ1\ne’ê¶ö–','',0,'?'),('†‚‚ëlÜ;=áqBÀ=k','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üõ>m“$Q­Ü¬^†','f=Á2«Ð—r%®a-¢‚ŽÑc$1…ƒ®ø’\"Ñ’f‹','',0,'?'),('†?è¡EsD×mœFíèÃ','wp-content/themes/Divi/includes/builder/module/FullwidthPortfolio.php',0,'‹¯ÛÅÖë§|²DÈ\nñþ^Ì','‹¯ÛÅÖë§|²DÈ\nñþ^Ì','ÍD_Möñ‰¶>¬\'‘ñ€«Z›â]IÜ¢~@Ã‚ËÐ','',0,'?'),('†’Né,mT?¤ÏÅ\\*V','wp-content/updraft/plugins-old/updraftplus/includes/class-udrpc.php',0,'6S®Õ~XCAYÚÉp','6S®Õ~XCAYÚÉp','-ÏT\0×ÄÅ×YG\\^m–~íL‰‰Ihð9Î¬>8½Å','',0,'?'),('†“æFÕ³ÝD~Ö«çCÊ½û','wp-includes/css/dist/edit-post/classic.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ö¶UúæŒØâMåmë','ÈÈ’nÄx(n/Å¿©„ÍX>—v)Òxí©Ï€¶‡J','',0,'?'),('†Ÿ\0¦>#ŠÑ›á­z(','wp-includes/bookmark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÚG›Z™cS-™ì¸³','DúÛ«6ÚEç3 ²Tö§Ï{¸ÿGÍ8ôgøêí.','',0,'?'),('†³õêÈm÷Ì{ÌªÞÂ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷Ì(\\al!:íW‰üã3','F-Šn¢…Æ/hšWQå›á´ÔÒ}3H‰Q³','',0,'?'),('†³¬ºÃê‚âë}•Í','wp-admin/media-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ôq¤WÝˆ\\w&ŒcŠP¿','‡°j®+™ö]-ÄHOû´žgÄ©>\"šÈOö,','',0,'?'),('†½‹\'îPy‘Ø™¯±Òe','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedListCampaignStats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÐD\0aLåÏ¤¨}—Pòa)','¯šu,¯^8Gqá°ú]«èç6EêpÝ¥>á$\"gŠœ+','',0,'?'),('†É6Å²¹±µx÷Á©U','wp-content/plugins/updraftplus/central/modules/users.php',0,'w½v\'‰ÙHÇì:ŒjPð','w½v\'‰ÙHÇì:ŒjPð','šE•x˜$×àÿm$³{ØêÒu·&¶Ž$’;f','',0,'?'),('†Í‡YsÑàï’¿Ÿý:','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-recent-posts.js',0,'@Ú€\"ÕÿµÄ¦=y!','@Ú€\"ÕÿµÄ¦=y!','¡²òuaþÙÖR_ìµ–ÒBxœ–+Ïu,À#²ø¼Xµ','',0,'?'),('†ÓËDt–˜¾”\r¤ë>','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/TemporaryRedirectException.php',0,'Ôâ=î-YŽJ¸V-ùtI','Ôâ=î-YŽJ¸V-ùtI','/éJÖÿ.%ZŒ¢4Tg£º›‡úAN±¨Ï5·çø.³¬','',0,'?'),('†ÙN°\'r’ß3Lþê\ZN','wp-content/updraft/plugins-old/akismet/class.akismet.php',0,'\0ÍYÝ¸7ŸLJ¬}ú','\0ÍYÝ¸7ŸLJ¬}ú','wHoôÕŒ7ëÿ9lí\n!˜{î´ŠO[OÿZøj','',0,'?'),('†Û†í hëPºÛBè}k','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/NoSeekStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_[ì¼Š\"*íÕÐc² x Ã','Ô\nFt/§\Zq°‹ÿ\rl!ÇE¥=€_¥ÌÓ+„_>C#','',0,'?'),('†ÛÈ¾Ž9íâ¤äd…Å³','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/fusionredux.js',0,'û×´Ú–õdîƒÂ>ž.Íz','û×´Ú–õdîƒÂ>ž.Íz','þ^¨Çéñ}uµRòršnX{•¯ëã7¹ž·²^Ä%','',0,'?'),('†æFÊ¡V\r‹‚ƒ{€WM™','wp-content/themes/Divi/includes/builder/frontend-builder/assets.php',0,'RR^®$›fqŽ:Ã¬ß„','RR^®$›fqŽ:Ã¬ß„','$VÊì°¸ªá[ö	ƒK8têTVå£ÿ‰j‘§æž3','',0,'?'),('†ìƒ@ø¤\'½y¦¸ÞqÖ','wp-includes/blocks/query-pagination/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åBô2¥;Šèá\0®aó*E','½ýò`ÅÙEê	ô!w¾w“·•†þ¾Ûq¬Y‰ósfÍ','',0,'?'),('†ñ‚kVþÞ7­“£2Ò+','wp-includes/blocks/heading/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9Fs)±#û1ÈÀØÝ 	','·|\Z£²6”º™Q_R¦|ÿ¦)EoðvS±w,%µ~˜','',0,'?'),('†÷ÓýÆVÍ^¹Vi[','wp-content/updraft/themes-old/twentysixteen/template-parts/content-search.php',0,'îZë£ñµ±Ø\0Ã¸Ý¢9','îZë£ñµ±Ø\0Ã¸Ý¢9','ÃTVH$L^Å}š²ˆ¬óÄèù`»áü5¦È\r¿X0g','',0,'?'),('‡%„1¨<qWf	&˜Ù¡','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheStorageInterface.php',0,'Ö^àF<¹§)äÒ¿Õœl','Ö^àF<¹§)äÒ¿Õœl','ë¿¦¸œ\'PT¿~;MCœ€Á+@–gýeÓtÊ','',0,'?'),('‡Î¹=ó‰¸õÂUy€','wp-content/plugins/worker/src/MWP/Monolog/Processor/RequestIdProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kž¶‹¢ŠÑfßÍ¥_ð‹','j×C5hÛ¤y¶©ˆÄš¦ùíiÔë‚;,x˜@‹ŠïÇ\\','',0,'?'),('‡çf&ýJò×Óö«VkŸ','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-events.js',0,'exy¡\ZJÛ\róÄ?õ','exy¡\ZJÛ\róÄ?õ','¨Hà„Ëvýßç6£)N#Ð;*¨@*wYÉ-«˜oCY','',0,'?'),('‡A|¾˜\nèUÅj•Rä/','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/XmlVisitor.php',0,'UUx3JeéÁâ)™&','UUx3JeéÁâ)™&','xêŸƒ´œ›ˆ³EHÉUiO×X3©2©¯×Å','',0,'?'),('‡ÍJ”H6½KF‰ìþp~³','wp-includes/blocks/social-link/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W¤íñM\"Èÿ:*·7â¿>','„þÊÇyR°öïU=FfA¾o­*àÁsÕG\\+ßp*ô¸','',0,'?'),('‡òP“wª©0âhÿ9','wp-includes/js/tinymce/plugins/fullscreen/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y›»®þÃ2Ä°\rm}%¡À','3Ëî].ÐBCBeýôÊ¢ÒSáˆ( ?ÀZ{ï“Éðºò','',0,'?'),('‡*–Ùq0¬uÞtGfÊÉ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/CallableWaiter.php',0,'«eTÈðöùM+Ó)y±7»³','«eTÈðöùM+Ó)y±7»³','n,±ó¹‡Ð÷gúKÎ6—TË·ÉÜ²ê†ô³É:Þhî','',0,'?'),('‡/¥üEÕúâ?¾Ëñ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/JsonVisitor.php',0,'êžÌt­¹>e=ç»Ò8','êžÌt­¹>e=ç»Ò8','£Æ¤eÜIýMÜ¾_5Lž~Réã¹†«Meß`ÌÑ¨','',0,'?'),('‡;jŒ§|ý:1/Çæ£','wp-admin/site-health-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹4üžNú.àý(êé9üJ:','#ç2]µ_(ÁÐiqiÜQ5Û)5WµJÖý¾fŠ3','',0,'?'),('‡>\rYÆZ2W-¯¥|U','wp-content/updraft/plugins-old/updraftplus/includes/updraft-notices.php',0,'ƒ’¸˜µò‡‰Å:Lá','ƒ’¸˜µò‡‰Å:Lá','–œÂÓ¥ÒŒµ=í€@úŸt\Z/Å–1¨ã¥ÿÿOòq–','',0,'?'),('‡B yÖw†+³àÖ|t«Ë','wp-includes/class-wp-http-requests-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÚO»TP^•ó—rbb!dÜ','€\ZÞÎÞ[Ð©Ç©©{S.Ws:ŒœÜe×®\"#z[N','',0,'?'),('‡J¼&_#¹ñ3SÔq ­','wp-admin/images/spinner-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ý™æ2†^#æ8µô',' ï¯#–Ë’Ì=$c©§6ÀÞäÒß	B™46','',0,'?'),('‡OO8›eaªV óÏ³ñ[','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Person.php',0,'{zG“/øÖ‹Ó°:¸öè','{zG“/øÖ‹Ó°:¸öè','“ ÈîN9ì?ˆ•çý@R¤kÖúâsvS…üp@à','',0,'?'),('‡Uü%3¾ÉØvéÊg‚I','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidAccessKeyIdException.php',0,'2ùoº3ÇvB½ßÿèÛ‹','2ùoº3ÇvB½ßÿèÛ‹','þv¢“k(Äà­hÀ\rÖýœÌÝqµŒ±W=¯˜ë÷™1ô#½','',0,'?'),('‡V+@ÿ0ñüp¸Éhi','wp-includes/rest-api/class-wp-rest-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®fÀ0ð•­¶ñ©òSy?ª','×fG]< *Ç:m/K<-CÄ~´5Ù%ŽSw','',0,'?'),('‡ZÙ)_„Úwä\'$¥Xù','wp-includes/class-wp-block-parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%ê}öC‹1gGr*Þ ç7','&tß]»Y`¤ì¿¨å9}ŠÄëÜ‡W¨•²-','',0,'?'),('‡[[)ÃÒŠºCÐÉ)ARf','wp-content/themes/Divi/includes/builder/plugin-compat/cartflows.php',0,'w˜]Ü¶MŸæ\"ÚD€­=','w˜]Ü¶MŸæ\"ÚD€­=','‰õ9ƒÂP}ÄüÙy¥–æÎoì\Z7îÉÏ‘)Æ§~n','',0,'?'),('‡^Sx_?u‹GÊD©äë','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”ÏHÙd9<CðË¤«šÑbl','KÏ.Bo¬°ßØà£¸ƒvüˆb˜%…˜àÕS~1ùKàÃ','',0,'?'),('‡b~5Ãaùš I@)*ñ','wp-includes/class-wp-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²šeoù±CËIô7#Ÿ\nŒ‹','-µh¤…ÿÊ ^ãFÃ0?—0\n•%sÏibV\\ôXº','',0,'?'),('‡fG<®@áŸNûçµ-','wp-admin/includes/class-wp-privacy-requests-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²”z|¡fˆ¡¾”?','z™\\Ü›?êÿ+i.™áýxì7šj›ÈÇ.i¿•‰¡','',0,'?'),('‡mM¹™ä^ðC4’í@½h','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/GetContainerPropertiesResult.php',0,'À?®Ž©ÃkÌ4å\nôÁ:','À?®Ž©ÃkÌ4å\nôÁ:','bçøº\rG’Ì¡Y¶–0[Gd×³EùaæYŽŠåã»ù','',0,'?'),('‡x9pã2¬Åðwã¸ÄB','wp-includes/ms-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷¿Žçxÿ¿¿ˆÁ3.æš','Ê¸]STÝßýÑySo$µVgvü\"-j!QGKÕ¾ù','',0,'?'),('‡{‘*BÜ`GpÏäÂ¢^—ž','wp-content/themes/Divi/core/wp_functions.php',0,'ºî‚™û«NÖŽ´FÔÿ~‚É','ºî‚™û«NÖŽ´FÔÿ~‚É','yKö¼}iÅ·–[Ä©,fD§@F\"r^YsÚ¶i€§','',0,'?'),('‡Ä¿½ö7mdî«[tØ<','wp-content/plugins/updraftplus/includes/Google/Service/GroupsMigration.php',0,'=ô}ç‘úÎš/<œ€y','=ô}ç‘úÎš/<œ€y','D2Ìeëå`ÀIIÓQá>°î”e¶#ëH,O&xFb','',0,'?'),('‡‰¨ÅS>ª\nÇW¾¹\"´˜','wp-content/plugins/updraftplus/addons/migrator.php',0,'ØžÔ\nÿûìäsä.S¥','ØžÔ\nÿûìäsä.S¥','S-òÝ¾–!Çlq›™\n\0)ÜD«þ½Ã¦+à”q`…˜ÿ','',0,'?'),('‡ŠÕf*Óxé~²XÒ·r','wp-content/plugins/wordfence/modules/login-security/css/login.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'½Ã\0|á\Z1—ïŽ¬Ó\r','£FÝŒ\rw,žKÞÒ_íŒmñ-”ýN–ªêº\"*”tšFÈ','',0,'?'),('‡Ž\\:âÃÚˆÕê)g,\\','wp-includes/images/smilies/icon_twisted.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L¾×v[?åé+*8ž×;É÷','VåHhK…·ÚÀ­°\nÞÇêp©ú÷†ß;.¢&/E…','',0,'?'),('‡\Z%O²H©%p¢¿','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/CacheControl.php',0,'õ_.È@‹aÃp²”','õ_.È@‹aÃp²”','0f«2Fÿž=Èd1RGÐÖð7¬à/EÖí½$ŒÇ¢','',0,'?'),('‡‘†ˆFõMŠ\0©j‘zÎ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/framework.php',0,'sÐïO@”P¬oÕ5¸ƒÁ','sÐïO@”P¬oÕ5¸ƒÁ','=œèµD8w€Ó¼eúÜÍjµÏ<{˜JøQð÷','',0,'?'),('‡ž!¿ÞEª©S7x–ƒÈæ','wp-content/wflogs/rules.php',0,'¸í…¤_Ó`)õPd˜þÁ–','¸í…¤_Ó`)õPd˜þÁ–','¿! iüLœ:ðý5!·Ñ™‘Gžk¢¹^7·—Zû','',0,'?'),('‡Ÿ‰û¦¯>2\\o†)¬·×','wp-includes/Requests/Exception/HTTP/Unknown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"Å…\'Ék?À:~¦ä·è','@¨ëþâ3Ù#\ZÐ¶/*t\rÎÛ6<Xïû\rˆIF','',0,'?'),('‡¢¨3v´U€\Z3˜PÅ^O ','wp-admin/css/widgets-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}¹f—qâŸ-kÓ™!íÞÈ','?,JªÞ\Z</ïÙ¯øWfÉÙ,:ª­ío„¸eAe\"','',0,'?'),('‡¤Å8~0J”¾uÁ?Ê2','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ConfigCache.php',0,'Áh-µ×ÃSaÙ¬î¶è','Áh-µ×ÃSaÙ¬î¶è','¼Ú¤‹rpŽu0å“—Î§*/ð”éIÍ\nŽU¾Š(','',0,'?'),('‡©&?ë0÷ð¼+\n~äØ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bŠ8’x\\0H°™|xÙú','1ýIŠ2>¨ËLdß^%·é¿fzJÈñßll6•\'zI','',0,'?'),('‡ªü:”ÎÀ$$ƒ1g\'','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/border/field_border.php',0,'ÄjêãÛ*ódÓš','ÄjêãÛ*ódÓš','ˆB.~{®å ÜKs6?þ\\‹6±q±P0s¤\"Nˆg','',0,'?'),('‡«L UÿÕÀ¹f¯àuâ<','wp-admin/images/icons32-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ÖP*çÓñ{>v¥±Uf','–°Úø?Uü˜z¾ÔP\\™Â@†`¢8g;\r®³Á–E','',0,'?'),('‡­s6–e¢=À&ìG','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-carousel.js',0,'–X1>6xñÇ4Ô¹&ˆ','–X1>6xñÇ4Ô¹&ˆ','~d9»mÖÊï¯7‡¥#L¾áiâA¡k¡ªÊwït†3à','',0,'?'),('‡±ÿI`ˆTk	è\nä#Ea','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\'=ä\"Ê½ ¯äuiïø','{[s>”o×µï²þÃøy:¿Ýlb¹¹.Ô»ç¾N&Æ','',0,'?'),('‡¹Ù²µ1Nc¬ëÞr?','wp-content/themes/Divi/includes/builder/plugin-compat/seo-by-rank-math.php',0,'~Õž)ù-ò¥Dì¡ôh}','~Õž)ù-ò¥Dì¡ôh}','¼—þ—™ßÇ$}\'\0€|#yßê\'Ø	Ñ¶ŽÃHîC3©','',0,'?'),('‡ÂÙoÔw¬ÛåÐŽ×696I','wp-includes/random_compat/cast_to_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ý!²>†ž§=I™‘‚O','p>2¶éÃûx«ö”tnè˜tqÇšïºßÆÞ©àb','',0,'?'),('‡ÅuÏ‚¨[F\"a€ºµ','wp-content/plugins/worker/src/MWP/WordPress/Query/Comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g;#x£Ö#Î-!jè¡FX','N”¯ÂÅPœâ’	MU ;îAê°fÃH40”Vín½®','',0,'?'),('‡Ê}Û.bãÌßˆAÔ\"oåt','wp-content/themes/Divi/includes/builder/frontend-builder/build/bundle.modals.6e47b623.js.LICENSE.txt',0,'N4òeúèó;²zâo','N4òeúèó;²zâo','•°%H(ìK%”?»ï‚ÈG€0[EÌ¥šƒµ','',0,'?'),('‡Ð™ „øú\\Ó‰„p\ra','wp-content/themes/Divi/includes/builder/feature/JQueryBody.php',0,'¡]«\0\"tHæåÊå•&','¡]«\0\"tHæåÊå•&','Šÿ‡ÌqÞfÖ\\)ÐŠ èw|ÛUL­&È·(vÆ<sa\\','',0,'?'),('‡ÒýˆCA£ÿm>ÍUþa','wp-content/plugins/worker/src/MWP/Http/MultipartResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡=§ùôoja\\ÁØË`2','iõV—¼ö;ä5–ø8&ÎUD»~îV’Q3\Z3ñ¡\ZCx!','',0,'?'),('‡Óü_ou§ÿ¥7®¾¯È','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Http/HttpClient.php',0,'4Ê,ì3ýž~ÿ)Âzw\\ÎÊ','4Ê,ì3ýž~ÿ)Âzw\\ÎÊ','¤½J\ZFËMÀ-¼°Q•`ÌÓT½YÛm0×(˜åŒ¼','',0,'?'),('‡×±™ÈuË DÕ`’‹','wp-content/plugins/wp-mail-smtp/src/Admin/PluginsInstallUpgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰­ŠÙ·ÅÝüÖ±AIL','Ó†\0®®V2Õ°qÄ³²NŠ	Š´¾”ôÓþ;3ZÑ#\Z','',0,'?'),('‡×ßÂ®N‘öÄ³ìqVQï½','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PngoutFilter.php',0,'<qôb(ÔC‘ùº÷ª','<qôb(ÔC‘ùº÷ª',',žå\r´Žñùæ$ÃKð¶jÝ¶ÙóßOÈv“v	_#\n','',0,'?'),('‡Û4BÛE4sÞ_‡¡ùX·','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/TripleDES.php',0,'”àïiÚ¼­öM>’(','”àïiÚ¼­öM>’(','²7CUðX	nUÁ¬›UÂ¿ÈBi%¥ŒŒ›È€†çm','',0,'?'),('‡ðÞ\"¨(#¥LubÔ','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/bg.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£é«Ú²ZõÐK&5Pöë','\"Ý%Çó¤‚JºÿÎÛJ«xCÿcl$_*C\Z—­S?','',0,'?'),('‡óŠ*ÍÀÉ¬~ƒ|Œ$×Ú','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionInterface.php',0,'pv‘RGUy\r	f®Æðüãþ','pv‘RGUy\r	f®Æðüãþ','¼$³þ¿…0ý†(Ùò®p—,_;˜%g=r™*pÝ%ëp','',0,'?'),('‡ô… w×:„œ	nÂ>ú›','wp-content/plugins/really-simple-ssl/grid/templates/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹ÏXï›:óûžjÜURÄ™','@ÃZ\07#D¹toêm«mŽS;èÉÅ4à.¹¹ö{UÍÑ','',0,'?'),('‡úØúãâ¦Á>µ¨O™','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/plain_text.js',0,'\rø{Ã‡FÖJy1	õ[„','\rø{Ã‡FÖJy1	õ[„','†ˆKïNomÚ\nöˆ|ç!âÝí÷7_T:`ð‘ðtS','',0,'?'),('‡üÑíø—‘›ZsóX¸Õ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤çÞî%…¦;­!üQI»','äOÍÑeÜbö:þ·¸Ä’mzN3‡4;X«£u+','',0,'?'),('ˆZÎÔQ+xÇÿr¶ß0½î','wp-includes/blocks/media-text/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡§çv¡T-‘M©%g7Þ','ßöö\",?sM­|5H1¹ãç/•€&+®;cÞ¢îêÖF','',0,'?'),('ˆ——j9×:L0ºif','wp-content/themes/Divi/includes/builder/module/settings/migration/SocialMediaFollowNetworkTwitterToX.php',0,'õ4–~H\\P÷ ÀÔð©E','õ4–~H\\P÷ ÀÔð©E','º;Žóƒf}•¥XS|4ÚÊ+’K¿E„‰BüÅåOì0','',0,'?'),('ˆ}Iœm•Iµrüse¯','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/PublicKey.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yâÁK+Î³¿èpÔ','­ú5\\~»naˆ\\‡;«b^Kš_H1RT…öIkÏr4\Z','',0,'?'),('ˆƒ9î|ˆ‰Þø·‹ÈFl','wp-content/plugins/fusion-builder/inc/templates/blank-page.php',0,'¨QðÎ9ó‘V$\0Æ]‹íS','¨QðÎ9ó‘V$\0Æ]‹íS','vnEÒùŒ˜‰ª)ÛÊÀ©µn} ýÒÞ2@p¼ùW','',0,'?'),('ˆ¯Iy-‚\n·Å„‘','wp-includes/Requests/Exception/Transport/cURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ež—FÈ9êø”ŒQ¦ ','Å]ÐýÇÂ0Ö™8ü‘Êp#ü~†õ\\o±Ó=1³Õ','',0,'?'),('ˆ\" 6Aéø7^äH­','wp-includes/blocks/cover/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RU#& æ\0à0Aj','F£ÐÍqÃ—½µOŠ`?ÉÞ|´yé«!5a/;ô3T','',0,'?'),('ˆ#‰µmÀ;NËF€;)ÀÍ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Filters/ExponentialRetryPolicy.php',0,'–ŸŸ¸+‡8Í}OÂl','–ŸŸ¸+‡8Í}OÂl','4ÔóÓ>y:æz!>É|K¶\Z„àAüWj)o‡a†','',0,'?'),('ˆ4Ë‹[=å¾Ž¥¢H£','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureTransfer.php',0,'CVsµ˜ybo¸3`>j#Ò','CVsµ˜ybo¸3`>j#Ò','wA¨/e{zwýÔþW&œ	1ogìÔR¹Œ²‰…]DŒÏ','',0,'?'),('ˆ6Òð;tÞ²àp‰à†yÔØ','wp-content/plugins/updraftplus/includes/Google/Service/SiteVerification.php',0,'Ä;=¥‹®NPQ¢Eí‰x','Ä;=¥‹®NPQ¢Eí‰x','<ZÏCè¶ È]f‹”½ü¨­\0h¹QÏ>§œR','',0,'?'),('ˆ:=%ÆÌâ¾ù MÔÛµ','wp-includes/template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÖË-^{”2ï`ÓD<oY','í»ª²ji#7ÏïæRc.8š»ç‹¿ƒnežÆ§9','',0,'?'),('ˆIÝ{‹?»†rô]¯ 7','wp-admin/images/resize-rtl.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nC%YØfœˆøvµF.z','@St-]ózº•\'+kŸ·2€å{ØjÜ,ÊQNš¯~)Û	>','',0,'?'),('ˆ`åŒ Æ¢«Xv ð{ä;Ù','wp-includes/js/dist/edit-post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ìq³=Xu’½eR…Êø4¼','×ó¯ù¾Õ)˜É¾¸’¦ÿä‡X¤´\".¹·L','',0,'?'),('ˆrçB.£—xºlë','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/JsonCommand.php',0,'kïƒ^|KãSàLsg','kïƒ^|KãSàLsg','±=‚PØ LòJÖ½[1³§Õü‰ƒê”Ív_HŒ7)F','',0,'?'),('ˆu&´®ñ	VS>æ7Õ','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ListPageBlobRangesOptions.php',0,'š©-	/Ö4•ù—A\'·\'¾','š©-	/Ö4•ù—A\'·\'¾','’ë2T†õãÏößÆ¾å\"Åqñô±©Á|º{þZ','',0,'?'),('ˆFaGôH\rÙY¦³ãž','wp-content/plugins/worker/src/MWP/Stream/Decorator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èX^O2á3pC/x/0é„','X,£mÝþÚK^½<ÒKx¦Ñt:;‘×£Œ¡”’NÍÈ\'¥','',0,'?'),('ˆ‰£‡ç-ih-¥è_ØÎ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Lang.php',0,'Ù\nãK„TºÇåèqÂ','Ù\nãK„TºÇåèqÂ','r?å›swañ\"]†v³e\ZÅ›elÍøˆÚˆB÷wÀy','',0,'?'),('ˆŠ™eM˜y*Òž·éÖæ','wp-includes/js/backbone.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"$2hj32Uý›¤Ôç','£cŸBÒCP\0ñœÿöFË!·û‡vy6ªKu„*<c¬f','',0,'?'),('ˆ‹\"SÁ}¡:ð?ŒÖ1ê','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/UploadPartInterface.php',0,'®>–­Æ×ßÞßÇø','®>–­Æ×ßÞßÇø','<mfõ²‰x<µ²~´ê_ªræìÀAÉhÉ\0yòò­Þ','',0,'?'),('ˆŽÓvîÿUýŸŽ®Œi2?ü','wp-content/plugins/worker/src/Symfony/EventDispatcher/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('ˆ‘@k&XÝItÇœ','wp-includes/class-wp-block-styles-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ö-Ú,q\njµ[¦ñdÞ†e','e÷—5Ú=qx¥5Uý›ì#lSó¨ŒK¢;‰€[ŠÊÖM','',0,'?'),('ˆœøþjž”úÛÆÞ@uÌË','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerDeleteError.php',0,'tÔžB¸Þ“ªrÜ7€','tÔžB¸Þ“ªrÜ7€','ÜKÑÄ±\\:Þ.XSÊ EmŒnù\nž\0 Ák‚\\‰²#Z÷','',0,'?'),('ˆ¡Kk©fõgÿçT¤#”V','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/UrlSafe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Šer›Éx‡‡|2c½Ó','š÷ËÒ.C¹¿@2ˆPÖcÖœ‚^n\n”\'-‡v[~','',0,'?'),('ˆ¡½óúßo¿ûŽ¼¥W¹','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D\n¨Ÿçà”6‡/#É¹','L£ôšÍõým,Œ´¤¾ýlXNnJþ§Yü4Iy³ãg','',0,'?'),('ˆ§ÇuV‘K\'&zØ=¯©lï','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/HandlebarsFilter.php',0,'•ëæjÙ\\¥Èr\nô\"FªÉ','•ëæjÙ\\¥Èr\nô\"FªÉ','¸u«¿ß©ùë\nFìAô…\\³V¡WÒçÿ’ÄnH“M¸J','',0,'?'),('ˆ©´÷nï\nõ\0Ü-i','wp-content/plugins/wordfence/images/blocking.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£\'-H•f—Œ˜<1','A5„Y9Ž®à\0¶óOÄtqäÐ–L\\º}Ëa½Ô&â´','',0,'?'),('ˆ»+,Å“I04o™ÈãÝ`','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/StorageAuthScheme.php',0,'œsðÝNWÔpØ-`—¼','œsðÝNWÔpØ-`—¼','Bþ\\;©TØ… j)¡·ÛS$…,#ØÓÛíÝ<ïXÂ×','',0,'?'),('ˆ»Çg“•Ý[zë´\0Î®›','wp-content/plugins/wordfence/modules/login-security/views/page/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÝÕ¯ÂÚä#ßz_\'÷Ò+','vTÍúðoCÅGö—NgèõÛí¢…3ƒ?ÑXm€åK','',0,'?'),('ˆÜÈt½VæÄ< ûCÞÄ','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Traits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';HoÄ´`šé×³mÅ%ö','å(†Úl]‚höÅÐ®a	yÈfhù±0v\'uµvm©','',0,'?'),('ˆí\\-\\£ªf‚tå´KDšs','wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŸQ\\f¿¼þ¸t«','¾¶‹áë#ô¥5–¿ÊËŸ¢Ú°Y\Z·³¨Ñ\\˜››:a½š','',0,'?'),('ˆïlKÇUË!”¬˜A ±','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MissingValueError.php',0,'œB}6¯äºK»êù~›àS','œB}6¯äºK»êù~›àS','‰E¬m:\Z+cgÉØ*ùi£‰ÖcžœÑ‚´NyïØLR','',0,'?'),('ˆðYDƒDkBøp­ÕÖÉ','wp-content/plugins/worker/src/MWP/Action/Definition.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â†¥é®tõŠ<fpRì	€','UçŸo_ct˜Ï…jÚ9À×Àç4t#J|‚L','',0,'?'),('ˆòÕ9×j®ÁÃrãuçñ','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-admin-notice.php',0,'îI×•7w\'ÁQ –”o','îI×•7w\'ÁQ –”o','E©Š¯,OSM tÊm¬=\"KõÅ¼óØHMl{!SÕÄ°','',0,'?'),('ˆøg`Pôsù‰¥‹Ü','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php',0,'Êö\Zl*|=iè¸|C¯\r','Êö\Zl*|=iè¸|C¯\r','öò•Uý}ŠíÐ*ÌÒÄK8)ØFxçÃ‹»äËÿT,','',0,'?'),('ˆù`‹£Zc	4	ØÚ-=','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/MapResourceIteratorFactory.php',0,'I&‰æ®€!›!ÏT.\"¢','I&‰æ®€!›!ÏT.\"¢','Œ‘Ûxâó¢¦’BfgQU/àer£UÚUk—Ýo8','',0,'?'),('‰oj@‹©c\0Ž‚½Ö‘','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Models/Logging.php',0,'	D¬‡ŠîÖ&Qr2š!','	D¬‡ŠîÖ&Qr2š!','dÒÓ\\ªØœ—ÇªÄLÚìsH\Z;•T}çH?HS','',0,'?'),('‰  êêg¶²×Ü%ç!ž','wp-includes/blocks/site-logo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a•h÷|åWÿÆ4d$¥','<ßèV¸i‘LãÊÒ3l†©TZ‹ØnWË9O€Î','',0,'?'),('‰$Zøs—‘Eˆ½Š:ã','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPolicyDocumentException.php',0,'$p‡#…\ZÎXÃ3ûÍ*aÀ','$p‡#…\ZÎXÃ3ûÍ*aÀ','0oS;¬&ˆvÉ9°ÀjRµZ»I‡LÄ¯0ö®rÉ','',0,'?'),('‰.¤”xÖöQ}ét\npó','wp-includes/rest-api/endpoints/class-wp-rest-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BX°N™Õsv ÖnâÙ~×','c†îY£…cÂVµüÃÍ9°7e•ïB;ÁQYa,å2','',0,'?'),('‰7*ûø\"{ìóƒ\nK<','wp-admin/includes/ms-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•žlŽ¿t{0oã¯Þ–','7<NoQF•‡É\0æ€$°j›aÏ¤ m€ñÃ\rµiûÈ','',0,'?'),('‰? 8”÷˜ÑÉZÏÐNÁ','wp-includes/ID3/module.tag.lyrics3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~wó\"[Þ×°ü§µA…>A','†V*’&)Îì~µï¸dÿ}Kæ,Âùº–Eð¹sÔ','',0,'?'),('‰FÂ§äƒ´¢ê`\nÂô','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ArrayCache.php',0,'›e„ò2ùCdÙnÎì»ì','›e„ò2ùCdÙnÎì»ì','Ai×=þëÛ\'«É]&pèÊ#Ý‰1{È]ë¢\r','',0,'?'),('‰TÏâ1\Zë-zVB°r','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.flexslider.js',0,'€[râDr(pì¯O‰','€[râDr(pì¯O‰','ØÝ>èÞ&‡ÛçÀs”é†åï\"šX«[0ŒlJçví”Þ','',0,'?'),('‰X*äãŽVL	ˆ_ãƒ','wp-includes/css/dist/block-library/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß#Ž\"HL19Ò£l½„QÞ®','ñm\\õb†œP’é|‹AÃ8†øoËÿ¨ªØ z2ž','',0,'?'),('‰_ž ¥ˆ6T˜‘þNG?','wp-includes/blocks/search/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$ æÆ¼\Z28˜{õk£','­ÌMÎI:(%÷\'U¹)YÑÈŠà \'†>·6','',0,'?'),('‰j®ÃIîÔÓ<êŸŸ³†iU','wp-includes/category-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K¶–§ãŒÂg©mÛ=5','S–à™ûòõè.´kœSgn8 ÷£Ž¬H\"‘','',0,'?'),('‰ŠŒ&ö†é}?â\Zs`¾','wp-includes/js/wp-sanitize.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i“f05ºó}$áô˜]®ºÃ','½Ea5/qJæXo+#xºã–[ÜX86)3ÍÙ†>ÌÿÐ','',0,'?'),('‰èQ¥°³®”Ì¥ØˆÜ\0','wp-content/plugins/duplicate-post/src/handlers/handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Áÿ4¸”k%®O0ëªY','×1×,ðš¾EËsôß`Ÿ Æ]aaÝùåÅìÔºZÎ2\r','',0,'?'),('‰ ˜Êæ´é´³åúQ¢','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/AssetManager.php',0,'Q`ÆA[\n\\a¿÷\0“ò–','Q`ÆA[\n\\a¿÷\0“ò–','BÄÈå[p?‡mÄpõm~¹#FE,yº\0×§¸ÌÅ','',0,'?'),('‰‘ÞQã£WsñA7d\n','wp-admin/css/site-icon-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å`_?Þ„=Û|ø‡§+”d¨','ìòÙMµ´ÈS»Ãõ–>j/‹‹¶\"K%qÞ£ýÖ~','',0,'?'),('‰˜»ƒõnJ-2 ªœ5WÂ','wp-includes/blocks/rss/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°z¦ï>×º\rÜh¡ù”i','emÌ±ÎÞÔØ»I\rl$uAx»•âÉ­ûèò¦«gŠ[','',0,'?'),('‰™\rSsš\'ÀíB\n®(¥','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Crypto32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\r}jŒÇŠQX]m“ÿ','É±ùÅä±ƒFn÷ž»2c.nßM±íÚ£² A¿µ¿','',0,'?'),('‰ªeÄ\\«Ô1átÆ‹Ü<	„','wp-content/plugins/wordfence/lib/wfUpdateCheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&?C]š\\ÌÙg~ÝJ;<:','3®*4ûÏúSxg“¦\rŠ\Z\n˜1?N#?‹a]êðp','',0,'?'),('‰®¿¼œ‘GˆGý “ìa\"','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼ü*M]YnM$^Ã¹\"·','…ÀáÏÌN×Ëo…KtQ«V ««\r3¨-ØóyÙ-','',0,'?'),('‰±¢öå~Çi T Ã‘J','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CreateContainerOptions.php',0,'„1§[6”‡#H¯Ú‰','„1§[6”‡#H¯Ú‰','ÿéÍ%V‚¸ºåwËëmÑ&ÔØ@^¬i‘ðÔÑD‡4','',0,'?'),('‰¸­ÐZ|òò0²75ÿoë','wp-includes/sodium_compat/src/Core32/Int32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»³3·¢NM[Ü/à\r~H','‹ñê‘ræWû†¿Q@x[1Û ìÅò*o¿9Ê$£','',0,'?'),('‰º¯;\0”w¸pŠ¿S³Úâ','wp-content/updraft/plugins-old/akismet/views/enter.php',0,'EG°T’°A>¸sJ','EG°T’°A>¸sJ','F©§ôÀR´<`¿=#iâ¶zAg³Dd)ÌÀ‹q','',0,'?'),('‰¼B]nÈ„¨8Ú7g˜ó','wp-includes/images/smilies/icon_rolleyes.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_5‡Ë6I½Ø˜Ä”E','b;ÎSGŒ`ƒJLÒ4¡;Í®1;\\šö¦Ç;xl©€','',0,'?'),('‰¼ümb9ÃzfEC3Ðl','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6áª–€;¤•¬ù¢äëxV','’Š””?d;„JÿæN,»o¦¿om\"k+¬Þƒ«€','',0,'?'),('‰½áW:?¼ŸßëSäò','wp-content/updraft/plugins-old/updraftplus/includes/class-zip.php',0,'Q*‹ècš2;=RÂQü','Q*‹ècš2;=RÂQü','#›žúh‰&2Ã‰Á¤f¦\'7—Åà:‹T8£×vg‚Ÿ','',0,'?'),('‰ÈmœB$aS³l3\Zð','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetEmailCampaign.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñ¥^ZË¥^:ƒÛPw¼','Žƒ&—›¼á¤/á|Wa¶;ëìÁîøp MëÝén','',0,'?'),('‰ÕfR/1äéÞ›< PCŠ','wp-includes/js/dist/shortcode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')›rŸHû!c²éMö¨¼§','è}@Ò³ŠÍ5Ó8õzh›A*Ñ¹žU3Kà¸¨i¾¹','',0,'?'),('‰ä\'ú\nþó‰˜Ì=Áÿ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ForwardingAddress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«N`s½ô]Gº$Ñö','ëÎ>;ÞD4®â(_8ê¤•½j5óF\'ù[‘µÎº','',0,'?'),('‰ñV‰Z¾8þ=ÉvàÄâc','wp-includes/blocks/freeform/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gú\n‡ÔðFûÍ›Ì','ð680Þ2f~Ë0§™\\!ÏÂh×nBQf\'Ú','',0,'?'),('‰ñÚ¸P¡ÊÔÖºb²','wp-includes/blocks/social-link/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä~\'+¶ÓþLˆ¯iÕ',']‰»‘š[\'vX´Ñó\0›íçÄNºhZ–U?’ª²ÿ','',0,'?'),('‰ò!ëÝ\0.ú3|yö™yÿ}','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCollection.php',0,'ÎBÓï§ågâÁÌ/»m','ÎBÓï§ågâÁÌ/»m','Šj]–(ÑåR\Z9çN¢_µ=àük¸¢¤$ÆÀ','',0,'?'),('Š­è›¢ë3«×Sëg¶°','wp-content/plugins/updraftplus/templates/wp-admin/notices/horizontal-notice.php',0,'h»„qöÒ[Üû{m÷o:Ê','h»„qöÒ[Üû{m÷o:Ê','ßùUO8y3ªN|è®nšØÌL^xÔB¬7m&2^Â§µý','',0,'?'),('Šè4O0q%N»™*ð','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/link_color/field_link_color.php',0,'g°vnÌ<ŒûÛÁø³1','g°vnÌ<ŒûÛÁø³1','Šö?ûz\0¨ƒL\"·Þlr¸×HbBï\nE„E^so','',0,'?'),('Š\r·b!E€çjÚµX','wp-content/plugins/contact-form-7/includes/css/styles.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æúèU\Zˆ ÌXYO','x]pÌ¨1Ã„Ñ™­d ‚i~¨ìÍ–%–]e:×','',0,'?'),('Š8\\òÍ¬r…þ=€Þ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/PKCS1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=<§F½ÌÌ\'L\0	~','«ˆþïÈZÆÇ¦µã4\"f±’¬[E®ÍÇ9L•§pÀÜ','',0,'?'),('ŠÔh†ˆEº¬×Ë’!,2','wp-content/plugins/fusion-core/shortcodes/previews/fusion-portfolio-preview.php',0,'QM\ZEûwC\0\nÔGjX—£','QM\ZEûwC\0\nÔGjX—£','(Áˆ{ÛBà×€ÔÁú¬X¥´u¢œëÇ-|nW‹9Ä','',0,'?'),('Š\Z°ì{ Í[\rÙbòÀ–','wp-content/plugins/fusion-builder/inc/templates/custom/fusion-pricing-table-settings.php',0,'Ü±k<~´1GbdÌg›ýË','Ü±k<~´1GbdÌg›ýË','ÅDß¡J–…š<3ÔI`”Ÿ¸l ¢ÚþßCr¬oÖþ‹','',0,'?'),('ŠW˜VÃ\r“ÌIŠ~¶ü','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchBuilder.php',0,'XØEm3‹+O^[Ñ(u¯','XØEm3‹+O^[Ñ(u¯','µÊ`5HÐ¼Ê„5dÀ—º7h!õCaó˜Î|\'”!','',0,'?'),('Š”¢Kì™È;$ÒÍz','wp-includes/js/dist/notices.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@‡Î£Ú•…FÆ«','Ïp„\rra’àÂ.ÄMÌŽ×†Í»‚£X×?¥OÎNcX«(','',0,'?'),('Š3díVmËÎ½œ“`º`U','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/OverflowException.php',0,'ZVVBûSy9-Õu,:Û­','ZVVBûSy9-Õu,:Û­','\0&Ð……¶8=òyê9	ðÜaXF·Ž³Ný4·°u','',0,'?'),('ŠIÛÌ˜«D¦z¦L','wp-content/themes/Divi/core/code-snippets/app/store/index.js',0,'PdeVsÂŽÛ#$²²hSº!','PdeVsÂŽÛ#$²²hSº!','„Í=SÙ×¡ARßta‚¡‰•	‘xÊ¨z-ê™','',0,'?'),('ŠMj÷AÕM™ñOÞ\"If','wp-includes/SimplePie/Net/IPv6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r ä×ÀFºE»ú,‰hé','pùtŸ‚Ñ[bm¶¥ýM§_IzŸ\"ûŠ[j/ò¨OÇ','',0,'?'),('ŠbYå5U°R¦àþ¢Â','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookiePlugin.php',0,'[t.Þ±›Æ³ëuÚu8º{','[t.Þ±›Æ³ëuÚu8º{','roö_·ÿFwÛÔõ\Z$w ?@q]Qb†ˆØfñ2oÌ','',0,'?'),('ŠkIKÁ˜„ÒV[„´	5©','wp-includes/sodium_compat/namespaced/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É¥v>ÎÅ#«‰!nÁ(','ÝDFUu|év©·/â]Ð2x_ERL2QlP93s	¶15©','',0,'?'),('Šnœtu÷ƒo:ãï²fèü','wp-content/plugins/worker/src/PHPSecLib/Net/SSH1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„ëæ}œÅçn¯Z!éÆÕ\"','èÖbÂC#°ÓÖÛáø#€F÷GZ½fèiíÖ\Zž:ÙÈ','',0,'?'),('Šwì\ZÞdÏ¢óü\ruD\"','wp-includes/IXR/class-IXR-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%p.<SÇ¡ê™Ôz1Ï¢','Qãµ*kË_}’á2ƒ¬é>Tûq<Ê_Sß:ïQh´','',0,'?'),('Š|ÒægÇ±zSw/…_‚Ó','wp-content/plugins/really-simple-ssl/grid/templates/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}•F€ÿ;Scÿ!…Âº‰ó','ùUJ·/‘3êÚhÀLØ_ZÐŸyÐùÏn s×','',0,'?'),('Š™Ù`6õµŸ0V{òx','wp-content/plugins/really-simple-ssl/grid/templates/our-plugins-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Îeôµ{¡ÜÎ™\Zëì×','“Q#ü¬\0…ksëÍ†›f{ayTÉø“–p\'ad_Ïo','',0,'?'),('Š‹…òv†r@¬{âc{','wp-includes/blocks/social-link/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×>“‚”7¡¼nÀâ	.ñì','XíÓúÃ–ïÚGTì<\0<x\0ob.û×ú§$Ÿu2hõ','',0,'?'),('Šš^äW|x˜@¶Z[&*','wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/LoggerAwareInterface.php',0,'Ï¬mMÃëòÇðäŸtÑ¼ÔJ','Ï¬mMÃëòÇðäŸtÑ¼ÔJ','fðþé‚.ý%õ*ÆšWnÝCãóòsìSiþ','',0,'?'),('Šž¾/ªÄ\Z²ø)yÐ\r','wp-includes/blocks/html/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ—VQ³%û$5Þ3ú¹à¬','ÏTŸ-mÏ#ü™^¼Î—Ï$f‡²G4&ÿìYs','',0,'?'),('ŠŸÖØqé˜FÙ„±&','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Http/REST.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–Ñ3®FŸûÝÃ†A?Yª','†:H¼¤XVñ½àót@QAÂLºSÌ®âí3«´~éDÛ?','',0,'?'),('Š¤é“lÍHe‰ÓÚ@Ï‘','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPayerException.php',0,'fŠóö/@>Mÿ\0¼ôÅGXm','fŠóö/@>Mÿ\0¼ôÅGXm','{º†9¥mcÏœ^õå“¢wýÌzV…>´Mš­Ì$Wâ','',0,'?'),('Š¬™å«©eD3wSÌÀ_','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/BulkOperationException.php',0,'ÒÒ’I…‡µ™\nï ÒÄR','ÒÒ’I…‡µ™\nï ÒÄR','¯:c¢ûƒ\ZÑ–\n	ÿàØ¬MÐ\r£\"ÅN`G{ÔŠ	ð','',0,'?'),('Š´Í§º`îðÜ=.\r€','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchInterface.php',0,'½ù\0æÇŽ#íáî%Êú¼','½ù\0æÇŽ#íáî%Êú¼','–\\6QX°{®:”¹Ö½	aoZË\\Bïä\ZeJ¯A­3','',0,'?'),('ŠÁ$¡ÖxM1>è²_8P\0','wp-includes/js/swfupload/swfupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì×#™˜‹ù9Üá>&YRg','Úò„Ý™ª¯åR€YY-ÃÒ•˜&qW1(…Kà¾ñª','',0,'?'),('ŠÕ$|FCª\Zßkóÿ1','wp-content/themes/Divi/includes/builder/plugin-compat/the-events-calendar-community-events.php',0,'hÄÞŒ^GL(ÛµYQ {×','hÄÞŒ^GL(ÛµYQ {×','J{®Uûò’)ÁšÛ0„!a7ÛkS¥jôÏòk¨j','',0,'?'),('ŠÕ»7ª\n±LZ¼ª×(8','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-chart.js',0,'åp6¶è¯-ÀvA_»šŸ?','åp6¶è¯-ÀvA_»šŸ?','•3‘ªwe5±·ƒÑûš¿¨Qþ{öý0ì.$Ðk','',0,'?'),('Šçœ+€>qFh[(t]qœˆ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/IncompleteBodyException.php',0,'8hW?KAi½fì~Õ^‚‚','8hW?KAi½fì~Õ^‚‚','-sM‰ÆïB©\n½¨¯­<-Lß_zÅD\'Nh','',0,'?'),('ŠøQs|âc·LØœVH³)','wp-admin/includes/class-walker-nav-menu-checklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º?L,k²Ü|n ','¼r£JÎ_9ÊòÉ~£Èuzä{ˆzÝîž£ÛéP','',0,'?'),('‹~Œºí*_–±cnfWJ','wp-content/plugins/updraftplus/vendor/symfony/process/Tests/PhpExecutableFinderTest.php',0,'LoW°d˜“(æJ”«,õü-','LoW°d˜“(æJ”«,õü-','EK¯v$žŽ<CÈÚ$Æ‡OCaÛkAÔWÆ\\Ù5¿ŽÍ€Ð','',0,'?'),('‹#—ªŸF‡ÄšþÀnÏ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchSizeDivisor.php',0,'(#hW_EvË[Ž29!ûÎ}','(#hW_EvË[Ž29!ûÎ}','ÞÏƒG/‘.d¶µ±ÀrUÈê©œŸ¹%8”,D','',0,'?'),('‹4±/|g)Äi£õU²†','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/InconsistentClientTransferException.php',0,'4\'Sh]8ÊBç÷?=÷','4\'Sh]8ÊBç÷?=÷','©JyÜý)âNÔ0Ç–»Ü AÄ§Ni–ˆ*\"Ýls	','',0,'?'),('‹¼/8&ôDãg|¦Ä#','wp-includes/js/dist/viewport.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯!&©ý„|Ö\\]','„Lº„<ñÑPŒ×ºùï¢òÄ¡éÌ¹I~¬I\"ãv','',0,'?'),('‹È ß’SÙÃÇ½9ZÍ?','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchKeyException.php',0,'yÚ›W¥ëãÊÈ×Ò°ô?ß«','yÚ›W¥ëãÊÈ×Ò°ô?ß«','LÂÐ>4‚® ºgõ‚RÌñ«Öí+õémØ<','',0,'?'),('‹\rîTw¹åéu5_ƒ','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/az.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€eÕµé•¨]rÖ©ßf','Üo¬‚œ_¥ù†MS×4ÐÚ~Ë“á\08óÙ	25š0‡','',0,'?'),('‹MêcŽuç«Õ±	’*¶â','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/SyslogHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ie5Ïüb WŒ4¶|/','ŒÓ‹›Ôª³¥½PŠw’?ïò°™œV¤7–c…F–','',0,'?'),('‹ cÈß‰î–|‚y.','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobSnapshotResult.php',0,'e®¬5È²âË°13$êj','e®¬5È²âË°13$êj','1èFoLßÜ†éÇƒ7™²/;¡\nX©}Æ9/ºö','',0,'?'),('‹0{Z,MŒºÚ¹ÔšäZÚ','wp-content/themes/Divi/includes/social_icons.php',0,'û/[2¤Z\'mEâ£C³IV','û/[2¤Z\'mEâ£C³IV','|Áþ\rØì¥r¤uv~‡r’ß-_ÇpÂh†ÔØû½9','',0,'?'),('‹9»¨°NŸ`áÕig¶0','wp-content/plugins/instagram-feed/inc/admin/class-sbi-sitehealth.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wy™’Oá^v@8Ÿ¦>%‰','%¦éÇÛ‚À£²ÉüÏÿ\rKç°ëArCL]Å¢IÕB+·','',0,'?'),('‹?îÇSë„øº|Õ…±E','wp-content/plugins/instagram-feed/templates/item.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àéüKu˜‡àk•Cœé','œ\'¿þ°P˜¥àDe0CbÄzL¡m`1ûõEÞ4ºä¿Ã','',0,'?'),('‹@âŒ5ê*žðCøÄ“E','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/ScssphpFilter.php',0,'çyt\néŠdfN¨­','çyt\néŠdfN¨­','×Áf¯Jñ6‰<ùˆ¡&b„ÚiGË#ïjG\r°e®û^öë','',0,'?'),('‹Bˆ\ZCW¤ÛE§¿Oà','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/Message.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£@—g\"K·\r\rC;œLòÉ','\'¸Ï ÏT:C¨g¼àCÜüg•r f<´\nMëDÅÃxW','',0,'?'),('‹Ox˜ñØ±•ÿc5(','wp-includes/css/dist/block-library/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é’&‰™ŸW*ö:–F}}·+','.¸A¶eÁV“_Ö\Z¯@h¦pCIïKS&Jª@ƒZ¨Y<','',0,'?'),('‹UÜÐzƒó®cžép¬©','wp-includes/blocks/separator/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ò|îD°Ä÷JoAõ£ó','\"wÐ	þu®¡{[êH¤6WÖÎ¿Éü','',0,'?'),('‹VÍ“D6.©„-¦=sú~','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnknownError.php',0,'‰KSø+¹2Hé„A¢NŸ','‰KSø+¹2Hé„A¢NŸ','Y0ZñÁl´Ùš…ûÈðò¶ò’÷ùÅN#h\nNÅ3)ú','',0,'?'),('‹X‡ÀTW@Ú¹ïZÓW','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/GamesManagement.php',0,':,»6£\\LeÔlî&Ïv¨',':,»6£\\LeÔlî&Ïv¨','‘vØšæþ;™’ ÿXm¨D.H^Ð÷ˆ™—o–L6jÏ£O','',0,'?'),('‹kµüIv]/ùª©jÐÓj','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/NovaResource.php',0,'~%Dµ¦Ïè ;C…ÓF','~%Dµ¦Ïè ;C…ÓF','°ùI=añoí¶4šr6ÑŒ­ëå»!TvÅÙêMwú','',0,'?'),('‹n97I.OúÒÞ¿ð°','wp-includes/js/heartbeat.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“Ž›»f(Þ5Ö\r;^¬\'','ûä\0—cÞœL+î8‹Bw•\"ëUšw./0±\nF@J','',0,'?'),('‹xŸ1‹@\Z¤yéÝF','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/corner-pill.php',0,'÷åêºá|Á[™mnÇ¶/','÷åêºá|Á[™mnÇ¶/','_HHæÏ†Ñbl–»çKÞSŒÑoƒ^9+Ž0o','',0,'?'),('‹|BlôŠIHÒ¼ÝOSÆ±','wp-includes/js/mediaelement/mediaelement-migrate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<¶C’_hzÓ3„í<7',',b#0 !a­OVc,úØ•SÔI˜Ð»%®Ûp)“ý','',0,'?'),('‹„ˆ$TC·yFÝA“>z','wp-content/updraft/plugins-old/updraftplus/includes/Google/Verifier/Abstract.php',0,'qºù…Úz×\'ŠŠNË','qºù…Úz×\'ŠŠNË','Îþ™ÚœáˆýXVUëc<–jÆ\"f¢.Ž¦{žîaÆ?','',0,'?'),('‹ŒÍØ¨&Gé¦)šk{ìè¨','wp-includes/sodium_compat/namespaced/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬‚háüýP«Ôì','KçØÎˆdù%±.RAOôF¾Þ×ââàÁ·joù-','',0,'?'),('‹ŽM¯Ó¼ÿñ7T”~«ÙÏ','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractRecord.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$àkAÎ`ÀlwÜÎì¸y„','7\r4	ì¶¥Q\ncíêü>c\n>ÑPf8í4øHk¤','',0,'?'),('‹”@:±ºzxëóŽs«','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/SendersApi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž‡f¦£‘ÿGËE™šG®š','ùMÿJÜ9eB G„†›úÄ>ïxy\Z¨#v°@©[Éy','',0,'?'),('‹–Ž©Å1W+œLÀò$Ò6','wp-content/themes/Divi/includes/builder/frontend-builder/build/frontend-builder-preview.js',0,'üntäâ]¹)úšê,è','üntäâ]¹)úšê,è','\'möþ©~ãˆi£fœGÖèõ?ïñ ³[/T¹','',0,'?'),('‹˜È/ñ5\\o\'“©1X','wp-content/updraft/plugins-old/updraftplus/methods/openstack2.php',0,'Äµ©ÖëÌG¼ Ðy*„á','Äµ©ÖëÌG¼ Ðy*„á','ÊáäIîd‰–êò5\\[Ó®72Øÿ{Ž.fáºª–y','',0,'?'),('‹œ\'¸ã,>!ÎBþy™â?','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Enum/AssignmentStatusType.php',0,'®AÅ;V‚Muë3>¨Z','®AÅ;V‚Muë3>¨Z','ò¢äŽÊ2)I3yYTãùÜ`šÿ4”4HºŽ>DL','',0,'?'),('‹¢ýI[æÊHmÿ/¾”ð»','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/BadMethodCallException.php',0,'u,¯ÊþÏÕ æÌþ!\nÇ','u,¯ÊþÏÕ æÌþ!\nÇ','ƒ•a?(ÉŠº	;ßqU£Ô,fãªqŠÔzX5m','',0,'?'),('‹¥{ÖOS€3=;ù(cÅ§','wp-content/themes/Divi/includes/functions/sidebars.php',0,'ê\rêÚÁÅ~ô@I’(%¡~','ê\rêÚÁÅ~ô@I’(%¡~','¾ÑŽ=ÙþlY}+|ráŒ2…1šÌc•Ø\0¾zàp;','',0,'?'),('‹¥‘Ã÷ØÐQîÕicAÍ','wp-content/plugins/updraftplus/includes/class-zip.php',0,'Q*‹ècš2;=RÂQü','Q*‹ècš2;=RÂQü','#›žúh‰&2Ã‰Á¤f¦\'7—Åà:‹T8£×vg‚Ÿ','',0,'?'),('‹¬[äˆ6»¨dcHa ','wp-includes/blocks/latest-posts/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?ž6Ó)ùØ_¨âÎX‰¼','›s@5ï‘ÖœJýQÍï\"Ó¸æñqãƒ¹U\'ƒÔašgE','',0,'?'),('‹º°Åh+¹«BÌÆòÐ','wp-includes/js/tw-sack.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú7èXˆÏwOœ…qa','k•\r<—I»-ÑöVsp—6gb4ebéñÝfsŽÒ¸§¥','',0,'?'),('‹ºFè\"÷èvhâ¡$LbŽ','wp-includes/js/imgareaselect/border-anim-v.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Éz!™<ñ7êÙý¾ËÄ*¨','‹á>úªÂödà•:Ûý¹j1í<î!4Û6“gæä','',0,'?'),('‹¿ <~ïc÷ê·ÉÕg+','wp-content/plugins/fusion-builder/inc/class-fusion-builder-options.php',0,'°›F`Ô±´Cú”Ÿ9l','°›F`Ô±´Cú”Ÿ9l','Ý.+à@4Xe™x€ ·YZ’s;|Ûí;|¶ð‘ÆÚ>q','',0,'?'),('‹ÉŸEg-ÊÃñÉää€','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/FilterableService.php',0,'!ãÐuªðîÐÉõv','!ãÐuªðîÐÉõv','>jr÷Ú_^\"TÌyüN¶§mpd]m¦å\\Î\ZQP','',0,'?'),('‹ÐS»ŠCšz§J¶Þ±„','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/PsrHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Çšcw®Ü»A®¿y`o¼×','ù¨\r²œ’3®9Íïì…E¬®t‘5îùêÌŽøóIÜÓ','',0,'?'),('‹Ñn¨ÕDœÑK¼?þ­š=_','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor.min.js',0,'uP‚PÃp¡OÑš“ÚÃÛ|','uP‚PÃp¡OÑš“ÚÃÛ|','¯ž PD 1ˆ§C7_»‚É*¢ƒŠuõ„S”fŸ¨','',0,'?'),('‹ÒË©6ýf/Ú6YjI\0îW','wp-content/plugins/wordfence/modules/login-security/views/settings/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºFó¡‚aÂRdßý…\\ÿT','3Àêµì×é±$×ÊŒe¨™š×}K¾+\"~yî``€','',0,'?'),('‹áDPGI¾!0oã9„','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Exception/ExceptionInterface.php',0,'r:F¹J!ÉyÉÏè]å\n','r:F¹J!ÉyÉÏè]å\n','…ög½•Ðó˜&mnœYç\'ô~Ãö:æ) 4.Ûk','',0,'?'),('‹æµˆ†AE‡>¤—PÚÂ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/XmlResponseLocationVisitor.php',0,'EzziÓW[ôZü\"| ý9H','EzziÓW[ôZü\"| ý9H','V;ò¯t¬4þµìÓêZåîÌCv’É3#G7Doˆ¸','',0,'?'),('‹ðiÃ}¡™ì˜âsÆC','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/ProcessUtils.php',0,'b[Ó«°p@š¨¸ÌT','b[Ó«°p@š¨¸ÌT','¾Á4ZEêrÉ²eØõæ7~ì,{y<ÌÍµn1,]Ã*–4','',0,'?'),('‹ðMAHöÌô\0êœ[d_×!','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5á,}vÄ¨3¼õGÀâ)©','E½r4@\0¸Ô¡$¦âzæú3ð¸$l²ê\ZÐ`iäexÃlÊ','',0,'?'),('‹óycâ0O°g)Ï­Mf¸','wp-admin/network/site-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í¢ÆŸ6þ£Ç°DÃÛ¦¼','6iÞbÒØ‹£Ëu-íâLª†´^¨	 vá4|fË%›Xg','',0,'?'),('‹ó„Už]R²šÛ)Y¥Ëm','wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nûj®À¹ô0ö£âûã›9','¼†\ZðÒ¨2Á#°…s:ÕÐ \n		vƒùÃ˜+l´','',0,'?'),('‹þlÃBI3üØ€]ež>q','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-lightbox.js',0,'í|w;ƒfÖô¡{‘ÁiØ','í|w;ƒfÖô¡{‘ÁiØ','8ðQ.xí…ÆFÓÅ‹ë2âj?¥ìVª”dB¯]!QøD’','',0,'?'),('Œ>9€æ.¥pº;qÎlî‘','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/RequestVisitorInterface.php',0,']D.öú,—X æeõ€ý',']D.öú,—X æeõ€ý','ê¬nx¦Ãi¬t¦S“ŠùìÝÏéŸ»¨þC¿—>ÈÐJZ','',0,'?'),('ŒtÇ±%˜û£‘µÚF','wp-content/plugins/wordfence/lib/wfNotification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Ç V2â(ÆÀþdhVD','SØaÖàY„íµ‡ýgj+|­ë‘ òáJ²ŒM8³ª','',0,'?'),('Œ	Èd„Kê2tÀp·ý','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/UpdateChecker.php',0,'ßqÐT\nõM‰æ}K£N','ßqÐT\nõM‰æ}K£N','xÀŒ’q^¥¾æt‰@h¶«—[Ö‹ûÙ(_ÞQ=7.','',0,'?'),('ŒòFj]pÛ ÒíÜAc\rp','wp-includes/Requests/Exception/HTTP/406.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.è€&Â‡‘ÛLÚÐ]˜',',aYÓà}PR6ƒêã`½)Kíüfžism ¸¹è','',0,'?'),('Œ’&iáoDTÿ8ŸI','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidRequestException.php',0,'ÜDè¡ÁhQâ²ÉÐÜòk','ÜDè¡ÁhQâ²ÉÐÜòk','ÌlÔKŸ¿f(9ãÎ‹bHèQ¥Ž£\'¹”!Î¼Éâ+','',0,'?'),('Œ(Ã]‚ýÜ;R\0>ÛíÞèG','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ro.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x]¤ÞS|Nþ.åà¬E\0Ñ','3]éP§ØQúë¡Çjæf­0€ƒë‡äúû¶\n!1','',0,'?'),('Œ1ÁêÏ£×é I¤','wp-content/plugins/wordfence/lib/wfImportExportController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ý´öû­««¶±ò+>±ÿ','½dlÑ‹Û¹`á°Ù…Ìç÷¦ ¸Jû÷–#|i{£','',0,'?'),('Œ<‘à|~E.ÑY^Ô!Ö]','wp-admin/js/widgets/media-audio-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&tó×K!ó“ ß1ÊåvDb','9¬üƒ:Üà%·BñÆ‰\\cÖ‚”WpXÔ	“QŸýå','',0,'?'),('Œ=·ßf«†¸««]ô','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/StateStore.php',0,'.¼ùÛß™go¿ŠÃ2','.¼ùÛß™go¿ŠÃ2','\r$‡åy:¶‘¹Ož7À/<(©—“mn6i¸anPj','',0,'?'),('Œ?š\n5ü´Hã?âàÁÀàè','wp-admin/css/customize-controls.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IM4ù6s=ËcRÑ]ßl','n.û\nœdE\ZÃTgÜ0C+\ZÔ¶¢¹S<úÚAr\n','',0,'?'),('ŒGt€ïUô‚b¸3HŽL','wp-content/plugins/worker/src/MWP/Updater/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('ŒNwähNôÛ€±T9*Ô','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/actions/ActionScheduler_Action.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' X-CAl%{÷\0÷†òä','ªîÔ:…ºý˜ôkÞm¹:-4´%è,EËçmB553','',0,'?'),('ŒP©°úf7®Ç\"ºàÒ|','wp-content/plugins/duplicate-post/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3=/@¨[ßä‹2þ|µ›','£mÉÐáº³óDAi‰¼úM{ûf9‘a£5w³Îö\r','',0,'?'),('ŒS–v\Zý9¨:ÉŠa','wp-content/maintenance/assets/images/facebook.svg',0,'Ü7á^âH^h>ðy9','Ü7á^âH^h>ðy9','ó.Eº…‰õó¬{ðrHú±-Nqž³ƒ™ÍÚ\nà37','',0,'?'),('ŒlQþ!å»ÓOùü–Œ¾','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/VolumeTypeError.php',0,'óù>ŒÎ~ò¬@±·ãJb.','óù>ŒÎ~ò¬@±·ãJb.','» %èŒüC/þ’j.±E¿;.3‚[¥8Ñ¸ã>ê§','',0,'?'),('Œy*9^1·ïö›Ð8Ä¥A','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.infinitescroll.js',0,'’l¥–Îù¥UZ\0’7k,','’l¥–Îù¥UZ\0’7k,','Ù…].Ô\\ÌBìqØ¥÷¾pÀ‹›X6âŒû ìdÁ³ ','',0,'?'),('Œ|¾Ê,Qw7L¬‡‹Ç','wp-content/updraft/themes-old/twentysixteen/404.php',0,'8È—G@=/6¼(É\rà','8È—G@=/6¼(É\rà','/ÃŒæÿ>=UÅm`ä!Ü98j²C3]a‰±ff]f','',0,'?'),('Œ€þ%é\nˆõ/¥©ÉäÆi','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/ServiceException.php',0,'ÀB6Kh[\rðªe<Wû«','ÀB6Kh[\rðªe<Wû«','—’ÁVÞdÓÅ\n\"dz—ù_O!Ô%Æ6êi}C|À','',0,'?'),('Œ—°‚ÉBBnrÚïÊki]','wp-content/themes/Divi/includes/builder/compat/woocommerce.php',0,'hpDñóÎ+ÂücV*ãk','hpDñóÎ+ÂücV*ãk','WäTÖìÑ¹Mý/‰\"£G\Z\'-„ÃfÛ0@­\Z˜î','',0,'?'),('Œ—Óô·.’ßÃ¹0uö','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListForwardingAddressesResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fAYh°Ø€km\ZCl\r\0ö','£×Ñx£#ÛZ¸Ö_½Þv±)ŽÈæÉJ4êÕ <†k','',0,'?'),('Œ½´†juGCtOÆþØâ','wp-admin/css/colors/coffee/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£fB ÁiôŽøÔ˜­-TÎ','JƒQƒ¥Þ1mž¾d€©âfôd3å¦_rg@\r','',0,'?'),('ŒªkîœÌÀ»àù­Ï²M(<','wp-content/updraft/themes-old/twentytwenty/assets/js/editor-script-block.js',0,'&KK:W†ówS–¶j@‹','&KK:W†ówS–¶j@‹','Ñž))Ý‘’ÂE&gÃWyÇ¯>Æ¦Î+Ç¶°ÆV*ÝñC','',0,'?'),('Œ­l«.H|S„³Ö{°†','wp-includes/js/jquery/ui/effect-transfer.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™&ÍHœ½¶ª™”*¼lÃ','%Ïñ({cIþ}³Æ,³Ñ¦ô)¼‰1`WÉ†','',0,'?'),('Œ¶V0ÁAa%Û†Fk¶ó','wp-content/plugins/wp-mail-smtp/assets/images/reports/email/icon-check.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õdÂ3®àW|ÞIP¦ÄŒ:','¾3n´\Zµ£½°¨ž›°Ôª¢¿‚¨Pæ€€¥P¦­Ó','',0,'?'),('Œ¸¦ISU`u€´úTòÀÊF','wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','élˆ{ÃbOsé“_aºÞ>','mõn5ñËßÖžÎ²gJÙü\\µý«¾Ú3†òãõÈ','',0,'?'),('Œ»dI\0À¾¯ÅÏg³Im','wp-content/plugins/updraftplus/vendor/composer/autoload_files.php',0,'9÷Kü§?£ïpWMˆ \\','9÷Kü§?£ïpWMˆ \\','.7®B·TW«š‰®8#)Ð“mô3¬Äjõdç','',0,'?'),('ŒÊš¼{€(ú‹Ð\\iŸ7.','wp-includes/Requests/Exception/HTTP/431.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e“-Úà.öÝ¼e±ŽÓ>','ëê…±¬/Y6_ ì ÑwÊpk²wöÁ´0ÿÿ§','',0,'?'),('ŒÍÙþ»&ÕB&eüýbö«','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoLoggingStatusForKeyException.php',0,';†U…MXô§ƒè++=ÇÁé',';†U…MXô§ƒè++=ÇÁé','WYÀŒË£ÍWÑÊ¢±V—Wi½š‹èdZÓ“8Ÿ*T\nÝ','',0,'?'),('ŒÑ3äs_a9¨=\'¸Ê©Ì','wp-content/plugins/instagram-feed/inc/class-sb-instagram-token-refresher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ñh79é`‹ýõ¾a#b','û\\I¶DB¾²|p×“8VJ¤	õ^ø•½ì\0øñc\"Ÿ','',0,'?'),('ŒÜS%ÜÑœ\"âÏrŽ!Ó','wp-includes/blocks/list/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(†ïè¤g¶š\\a¯7`&','O#¸™D$^²ÔÆm÷Ó•À–9äÞº¼Ñy€Hð™j','',0,'?'),('Œß}¥^72Â‚„ˆ·®','wp-includes/Requests/Exception/HTTP/415.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜jËzZá,í)˜ã+Š¸','v%Ê_Ä\0Ðb$m‘&`ëó–Å(û=™m<Ðb\Zo0p','',0,'?'),('ŒâF:jêìŠQ$¨¶®û!','wp-content/plugins/worker/init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ËAÄUæúßP7Œç¥ØŽ','Iã\"Åî´è,\\Ú¡¹Î™cÆ¸ç¤!ÈùÖ¹„|)','',0,'?'),('ŒædÏ³S÷ü ´_Ø~','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobPropertiesOptions.php',0,'Èeïõd¶‚˜ó8Thú','Èeïõd¶‚˜ó8Thú','Ò‹½\nt/D\\ˆ%RàºCñD2#ÝÂz—oàé§$w','',0,'?'),('ŒûJ„óRátˆ«‹àkÏ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/SerialTransfer.php',0,'pí Ÿñ•N3\rù¸i','pí Ÿñ•N3\rù¸i','±Y¨PK6Ýh¬5úR_ŒÌ²M`U·ñ‘$êµ½þ¡/A','',0,'?'),('ì%t¹Š©x¾S q','wp-content/plugins/wp-mail-smtp/src/Reports/Reports.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vðž@Ê d\\Þ¶.#','È?Ä·rÉ6ÊÉ_·¾¸ä¸¶…×Ó\0‘Q1ÀÄ¹ú','',0,'?'),('•ÒanµöV=Ty Xä','wp-includes/SimplePie/Copyright.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kÆá>¸¬ŸóÔªQ','æiâî¼%ŒÜ´ÛìEÎ^gûÏò2¶z,ã”@£QÁò³V','',0,'?'),(';ÉcTÎ´¥l®\"	ù','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RequestContactImport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êÙ‘®xùýU\ZóË”B\'','îøh\n-÷›1	}\\3<¦1è¾˜¨Ë··rQNïD','',0,'?'),('s»\Z9é4§±‡o‡x[','wp-content/updraft/themes-old/twentynineteen/404.php',0,'ªÔ´e ¿#.ò:Âóò','ªÔ´e ¿#.ò:Âóò','4ëÊ“pž\\¤ÞÔåz!ä®„‹®\Z²É#,\"¯ü…Ö','',0,'?'),('$·œb	¶ŠÂoÍ&ÿ¡8ó','wp-includes/blocks/button/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B~SŠ`¥þ+Êð…	¯','åXì•Œ\r“µa lî g>(4·ÒÁÍ(»*·','',0,'?'),(')Y` þ¦‰Ð¬x‚vz','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/ValueSupplierInterface.php',0,'ˆà`ß´ÁŸ\' nô>	`','ˆà`ß´ÁŸ\' nô>	`','\\$ü·°·ñW1U·ÓŠº–@g,ñNd@ýÊð¤8','',0,'?'),('9¸<È»NÐh ¦ä#š\\','wp-content/updraft/themes-old/twentytwenty/template-parts/entry-author-bio.php',0,'?ÂÛ»Œxè¶•î€Åèù;R','?ÂÛ»Œxè¶•î€Åèù;R','Ù÷ê€šÊþŸ6vw®•¬ÆÏfŒ+oËw3²KvP','',0,'?'),('=ùªb]ÁÄ«Å0ã#„','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Order/Get.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TŒ|—8C¨a`«^¿','¢uïpkÈðe!ô¶.}°7c7ŽÕdžû†2µ©gPB0','',0,'?'),('>-ýèøF? ÍÓÜÂö¿8','wp-content/themes/Divi/includes/builder/module/settings/migration/UIImprovements.php',0,'´—ƒƒº[ÔŒ','´—ƒƒº[ÔŒ','/yèjEï/‰Êvþ„L‚ŠJŒ+²înÛœ«Lßà·7','',0,'?'),('CV’ž%ÿü˜èœÓi','wp-includes/block-supports/border.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ý¨g*PØ(óÇ´Mk„Î','·vF`¢Ïnb\0Eã‚>Æ 3éµ~\0$-ÁçôÑv','',0,'?'),('gÛ‘‚¤C{Û/ð·ÿJá','wp-content/plugins/worker/src/MWP/Process/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('ix`çð#6Ä2¸r/ËÌ','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Entry.php',0,'Q–Á˜\rT\ruûÜ5,^W','Q–Á˜\rT\ruûÜ5,^W','é]W-VÜ€%ëZ}¤+h|––}½	P¦\'Ï=ž¼','',0,'?'),('|]>.Xh5ýün\"','wp-content/updraft/plugins-old/akismet/views/connect-jp.php',0,'Áás‡žQúX÷¿è’3¢þ','Áás‡žQúX÷¿è’3¢þ','©\0.l>Wv&ãÎçôÏñîúq©v§+‘ðüI­N~žW','',0,'?'),('|‚ª“!íšrº[$','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/ace.js',0,'ÊÙ9^`“*˜n+ïo<','ÊÙ9^`“*˜n+ïo<','êåž_¦¦XjÞšœÊrµM+B&ýCÂ{N9²ùÃÎœ','',0,'?'),('} yTŽìZÝH„cDJ','wp-admin/js/custom-background.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ùû|+TøçGTtúå…\0','Ër¶B~‹<W5¾9‹ÿ©[;]ÅÞ“5Sõà¹D¼ïà­','',0,'?'),('‚é0lÝ{C!òô†D¨Ãr','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/LazyAssetManager.php',0,'Ê–…á	·¼¡’Dÿ˜ Y','Ê–…á	·¼¡’Dÿ˜ Y','ˆDªdCÂä:‘16Û0\rºwÌÊx¯’k›sì-xïé','',0,'?'),('ª#A ë5F-ù5BËóƒ','wp-content/plugins/wp-mail-smtp/assets/vue/img/exclamation-circle-solid.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RÝj\r©T#+ÒÐ`Àðž«','ðW{Á}ÓBAK«!ˆSùº´=:÷ßXÚJ%Ž¬ìî','',0,'?'),('¬{ß0l(Æ²u9,wSØu','wp-includes/js/media-audiovideo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nƒ±+*÷+6”…ýÖG',' Ðÿ\'X³ü4SÀ÷Ž]éu.Ë¦—¶¬•çÌS*]Î','',0,'?'),('¸|ìM\'öx¤u**:','wp-content/plugins/wp-mail-smtp/assets/images/email/icon-check.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•ZdÂ¾úÜü*ó¾²Âæ','È÷>üéy[ƒØ6©¡[ù˜î=Ý¼B§’6Ã','',0,'?'),('Í$\0ÓSlaÅŸq|˜\'Ø','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataPrefixError.php',0,'Ö`ä„ó™i”mqÕ\r{l\Z','Ö`ä„ó™i”mqÕ\r{l\Z','\Zõ‘[¨6qÏ½ÝÑHO\\³öägn®šþ‘BdGç6','',0,'?'),('ä)!)Ã6‘å>}É74','wp-includes/css/dist/block-library/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹h¬öŒ¡Å”ŽŠc¼}mòŽ','·ÐËê¢êÒË—pZðC€«Eb­ç«”ú.ýuÞ','',0,'?'),('ø`Yœ§<õ>åXîìCµ‹','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/activate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š[Î£/Qp±ë•Ï›š÷ô','’PßMD“pü¯Hm¨bõ¾%÷\"aCT«&ÄT¯/4ê','',0,'?'),('øàb`§·sæX¹÷ Y','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/OutOfBoundsException.php',0,'Úº¸µmÊ¸îµá]','Úº¸µmÊ¸îµá]','M„âý¦J(Õ1yçÄôµ¢‚(F-&¶»^HVÒ®','',0,'?'),('ý©L…òVÿY’àÿ*','wp-includes/js/plupload/moxie.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥X—ûVê&Š«<Ò','\nÙ\rÃÉˆïÖ,Líê¹°€\Z™¸Vî¢zw9Cç†','',0,'?'),('Žk•¡´ó;Ìéa®9','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Internal/IBlob.php',0,'	/°\\©#{z‰ÙK²S_','	/°\\©#{z‰ÙK²S_','½”	“ÌzZáãQšð\rp%ÛìÒßBÕ†Ê=]Žo=³;','',0,'?'),('Ž éA$Û¤fCNö™37','wp-includes/query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ê‹³ËØ{4mø Â','¥~2ð;ýS d£Ìss9@:U=ÝÐtÞñÙ&$ˆn\0,¨','',0,'?'),('Ž(¢û×”ïWåh@=a','wp-includes/images/smilies/icon_mad.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vž!Ë@ýcû0âS¸','îÀ±½Šƒ§Æd[O:Ç‡óžóµË³jl}òqÚ','',0,'?'),('Ž)ä„ØþXö,m©jéçT','wp-includes/blocks/post-content/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0NpúE°À ;ÂJ{§Ü','ª²B¾@\\HõN8¾P¨áß£íD¸ó.øÁ´','',0,'?'),('Ž/Å\rZ©ó“Úq\'\rIÀi','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php',0,'ÀªxÛrxöa¢k\r®G¶','ÀªxÛrxöa¢k\r®G¶','hé|y)òmÛtz**ÕP–“ž\'ÛvyFÆÎg‚cY‹ö','',0,'?'),('Ž7ÿ0¥ìÁÁ,š		M','wp-includes/sodium_compat/namespaced/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qy¾„£?¿;é8žV\nø','\0Ç-ØÞ]ë®³‡•XEt)˜`ÉÅ1ØCý}Mr2Ý/','',0,'?'),('ŽC ,Ú¦ˆR1AÄ	XÚ','wp-includes/blocks/latest-posts/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/éDÚñ¸Îy^:È)s—uï','Œêè~7¹]ýB;s{kcÂì«zºúZrVæÏ|','',0,'?'),('ŽE‘H»¨ª!¨£Áh€<y','wp-includes/blocks/site-title/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â\"X¼\"OKÇ‰9\0š','}	®þÐ‡k_[3è?_ðFxâaé–™ü‡þ','',0,'?'),('ŽHÈ /\\ª#•Å\réï÷','wp-content/plugins/really-simple-ssl/lets-encrypt/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žÆ¢\\öRÓýI\0™D™{V','7[-\rd»M?:·YŸ“Hæ3e\'Œ@ìÐJYî×ÎT*','',0,'?'),('ŽX1».é„ãyÖ<ƒ$Vr','wp-content/wflogs-old/rules.php',0,'?‡jÁZrbó;\n™û³x*','?‡jÁZrbó;\n™û³x*','4‡Mìz[q9 `¸I‡ª÷÷iöÏké¤X-ªÑ·¹ÀÔ','',0,'?'),('ŽXäÒ†£(6{·dÏdDŽ','wp-content/plugins/fusion-builder/shortcodes/js/fusion-chart.js',0,'*î€®à‘$7OVÏá>','*î€®à‘$7OVÏá>','á€ãøÔ-FV©‰„£8õpBÌÆ\\co†/','',0,'?'),('Žg\Z»»\\Û\rž`=ƒm­','wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P\r¶L÷ÃÁûÇ{Ç€õ','üãôVZ+â&ƒ\rÉÐ©ÑU;ÿL)RÈ!ÓµÎ','',0,'?'),('ŽiŠ©µBÈjßÞöÖï]','wp-includes/sodium_compat/namespaced/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—G8©J+œô³‹	¾ z','>8œ©¸\'XëiÔUbýGÐ½Ø,<T`6ä¹È4Ðð','',0,'?'),('Žl•XŒ˜ ÓPci×y6','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidTagErrorException.php',0,'(·\"‰f]h„0\"Ñ¸\'ŠþN','(·\"‰f]h„0\"Ñ¸\'ŠþN','Ê#wƒ	)V 1\"‰gÀþDÜé¯Ï%wêÏó÷qœíô~?z','',0,'?'),('Ž„ƒùvü´ŠÏŒéŒY9Ó','wp-includes/ID3/getid3.lib.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CPb$M6ÌŸ‘¶Òÿ','\"\Z^É,8>Kø¸¢«@ïÐæ¹…™ºÕåläÊ|AF¸°','',0,'?'),('Ž†Ì\nÊT	nÁ9Ì& ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/InsufficientSetupException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾´nò¾õ²q-xóÈ˜oè','á\0>?ÐÂ‡¥\n/3l“¸Rl-üwF>EX€±Tmöœ','',0,'?'),('Ž‹ëÒ¼ßªUŽ×Ä^:ÏL','wp-content/plugins/worker/src/MWP/EventListener/ActionException/SetExceptionData.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&àð†³“–(à·½ùuY','^RÊCž·YÌ6JàGcwañ—ÞcbºlòOn–õûm‚ü','',0,'?'),('Ž“\n…õDÀ»ˆç„pqU','wp-content/themes/Divi/includes/builder/module/CircleCounter.php',0,'Kc†ä\ZþšA\"3z×AFÊ','Kc†ä\ZþšA\"3z×AFÊ','ô÷+xsÔW=s5:&ÔÙa½b)U4¡Özª*)ý¨Bk¿','',0,'?'),('Ž›:¢%to¼üpôštèæ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendTransacSms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q»gF­x1¼SK\',ÎWžä',':ˆ¤ŠºGÂ1Ž¹¨I]ê,)ÇôYm÷àµ8Ÿ','',0,'?'),('ŽŸ…X’‚˜HöovË','wp-admin/css/common-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~óð´šÆAìËd3w\\&','æ“\0\rÀó½Ædli3†m.èÝ~u¬É›í7=	Êó×l','',0,'?'),('ŽŸ!N¨´Dçw®`¦ð¾[Ê','wp-includes/js/jquery/ui/dialog.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Áå±¬ÏU”¢uÎÞzÌœ','H7Ì÷pn»\Z÷ö8¥•ßÁá__E<Ñ´\r¶Ž','',0,'?'),('Ž¢éXp¤ÜÓçŠ~0D','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÐW¯oe±~°oB2ž_;','5ŸqõªSrLß]OX½¥˜‹sqˆÍìð+l<‘ÈÉ’','',0,'?'),('Ž°Ö—]NR¼ïS{qv?…','wp-admin/css/wp-admin-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',*iµ“Ðò†[p]ª¥<','r5S­EÐ?29/õ)Êý_íPJvþVhüäú«ÉR½','',0,'?'),('Ž·sÇ€þl²¹@J	¦','wp-content/plugins/duplicate-post/vendor/composer/InstalledVersions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æäf·F©i*Œf><','ñ¦Mî× kiyØÌ¨\'ÛŽï³S³¼\nV×|TÄ´Àº','',0,'?'),('Ž¹­D‡}Ü;\rÏ2•/@4Š','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/template-setting-validations.php',0,'SÑi4djñJó\n_³Îé¶','SÑi4djñJó\n_³Îé¶','„ÁI€x5Óù€ì rµZ¹m‘_<lÀhqñ!\\\0Å','',0,'?'),('ŽÁ\Z,zóÕ§Ò”U’','wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';<q¦ÇÅ`ôÊ{r×š','¨¸lh‹C_œp¬´bX­¬n„•ì–-ÀÞ1;ÖD¾m','',0,'?'),('ŽÏ×¡\r§(“~ãSø9Š¸','wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/checkout/form-checkout.php',0,'··.Ûí\rl3*Ÿ9ø%*¼;','··.Ûí\rl3*Ÿ9ø%*¼;','¸<\\GíM=Á\"	¦»üÿÛs` cZ)ÕN‘÷c_)„¼$','',0,'?'),('ŽÓ@ÇÇa lÐQDm','wp-content/themes/Divi/includes/builder/template-preview.php',0,':ÀÙŸ.Îº5©L¿O‹N³',':ÀÙŸ.Îº5©L¿O‹N³','’ÒÉ`Â2§ÿÖÕR^a]þ°þn§’^”çq%wXéÒ','',0,'?'),('ŽÝ=Ã¶ú‹%h•wYþ™ó','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/ExceptionCollection.php',0,' 7o-—Ê&œhÉËR=Ž',' 7o-—Ê&œhÉËR=Ž','»ÞXïY}ÀÃ¶ºãN¥ò­\">C¶´:ø%l*×IgY','',0,'?'),('ŽîOÜŽ$8ª‡J¦e»‚','wp-content/plugins/wordfence/models/scanner/wfScanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ‡ÅXŸ)áf´Ú.×Té','3ƒ/x\"¯úW—µæh@™œ fP\0]ùˆ½ºÊË','',0,'?'),('ŽîÚŠ¡ÉË@ªÐIÍô0X','wp-content/plugins/fusion-builder/assets/js/colorpickeralpha/wp-color-picker-alpha.js',0,'CÒ¨õŠ 36v%ƒáÙ2Ž','CÒ¨õŠ 36v%ƒáÙ2Ž','ÞôöåTÅu°®@úlÁ~cm·Úg@\0¬w§×Üó','',0,'?'),('Žñ£eÂš…“÷¤Ì—Añ½','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-recent-posts-preview.php',0,'mÓø VBY\'`O—R_','mÓø VBY\'`O—R_','º?h€BS”!Ë\Z»æ‰nƒ« uùd³¥\Z²Æ2eó,E\"ó','',0,'?'),('Žò­JP¾\\—L^M>ÌÚ0','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/DartFilter.php',0,'ž¤MÐ~æ#‘]E˜k§æ','ž¤MÐ~æ#‘]E˜k§æ','Óf¬~=÷³žëåøqTV”/3ŸOKÃü¦>X¾æÓ','',0,'?'),('Žø’lÐ›¥™è¯6!ß¦-','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/ace.js',0,'³ô£<,=2=ÿU«â\Z.','³ô£<,=2=ÿU«â\Z.','I$âKk\'£TKÛ=|oˆ\0.¯ƒz\nµº2vû9	','',0,'?'),('Žù*vÑ<ýTCœU¿XJn','wp-includes/blocks/column/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í%YO¦<c–µèyî­z','˜ÔU\r3f0žÂ¦wœªàÐyÒv˜æPOWÅ{±!','',0,'?'),('EÉåAT‰ÄÚ³™ÂÐ','wp-content/updraft/plugins-old/updraftplus/includes/class-updraftcentral-updraftplus-commands.php',0,'º‡†Xfô54Pæöìò','º‡†Xfô54Pæöìò','s\rÁazA9O^«Z¢¯s2·yJÛ§N~MÙc½CØŽº','',0,'?'),('VñÜ‚0\0Uÿ`·5C>','wp-includes/css/dist/components/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-›‘êý‚w«wüñÆOk','åbqlâVpph†Ó)ÝS2\r–áùøý¤˜Y~†™Ú','',0,'?'),('\ZŸ ÜR³÷¹[Ö\'Ý>','wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ëJ—\\c7’yþxÆÐ³l','³~ÀÍqVšÂ¯¾*\'Å1”¥¤š]3^‘öžÍÉm','',0,'?'),('#§¹€‹BùxžÜÝ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/EndpointError.php',0,'+%D¼V=\r€¢¼~\r•L','+%D¼V=\r€¢¼~\r•L','Ã±^AbÉ	#«+Þì&ÇÛÓ¦õ›ê¿+UÎV?s','',0,'?'),('$»Àªj¶Xž])D:','wp-load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýZZ—ÆáoÕ¢ïT','×^Æ•¤/¡¼Ã&·€Õ){\'ªµ:&[[°B•Q5³N¾','',0,'?'),('*nã( ŽHz¤KMp¹ßÔ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/themecheck/checks/full_package.php',0,'©Jýu:Ú:|¾JÐ','©Jýu:Ú:|¾JÐ','ÎíT¶ßáì=7ŽÆš…¢³ÍsW§“SkÓ’ºŒ{','',0,'?'),('2ß\\é17Õ€Ôwi„{','wp-includes/js/dist/vendor/wp-polyfill.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8@\rœk§Ô9üÏªŸR5X','®³‡ÂJß¥fëwàm-±M¸.Š(û3ã°@Á!…¨','',0,'?'),('8;ÈR°Ì³™¸¨í}‰Z','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Exception/InvalidCookieException.php',0,'Ôì¸jz¢m€#I’r\nyÕ','Ôì¸jz¢m€#I’r\nyÕ','daôò\ng-Gò‰Øöåþ¯C7¹~¥FáÜ³+¥¨2ghá','',0,'?'),('<¿4#›KM{údó×‡','wp-content/plugins/wp-mail-smtp/assets/vue/img/loading-blue.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UJñm#ªú9ƒ¯š&ˆâ','óú˜dlÄÆgçg±,Ã%•ùêá|7Ã”Æ‘<(·','',0,'?'),('H¾)™ë†’×ÇjHÑj','wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ví\'BÇlËIfãóžÖ\"c','³¹O$ˆÓU?Ñ\nR¬”y–‘ìVà³=‡Tõ­ùZ','',0,'?'),('Mµ«9\\ÉèbAýˆó°’','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/SlackHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§yš\r(…^øOÑá%»î`','LfÀ×X‰Q¬MÛê(: ,kT‡ Ž«¸Gg‡Ëõfh','',0,'?'),('Nsfº#†@Q;§;¾{Ì»','wp-includes/blocks/query-pagination-numbers/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öªde†ÎÌ:È!$ÖÁÎ','y\"å‡Ïš—§¬‰z~IHÅ)€0çB»cÕC¹¦WÆöÇX','',0,'?'),('R—d‰SH¥vY—ÛG«A','wp-content/updraft/themes-old/twentytwenty/footer.php',0,'ôl{­ø¸\\ä)YÐºbø¨','ôl{­ø¸\\ä)YÐºbø¨','Þ\Zqvª7×¹Éòµ¤`nœÊ¤)#å2»&SÁZ\ra','',0,'?'),('S¬¼¾q6GWÏw‚µ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/gallery/field_gallery.js',0,'ê‘tù»—i–GË×6n[4','ê‘tù»—i–GË×6n[4','ƒÁÕd2róSÓg_@cco3¥¿^¬×\'žª€\"ìlÌ','',0,'?'),('aY7„OåüÎO.¡4pøp','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Serialization/XmlSerializer.php',0,'êÅ´÷‚W1ëbi~’$D…','êÅ´÷‚W1ëbi~’$D…','«ºÄšP›C7C¬~ÓŽÔ/µX=:5ªùÞ[Cá´‰','',0,'?'),('cÄáOè¤ë-äƒ+oe','wp-includes/blocks/block/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€,ŸZ¹qØ3)½ ·','0&#Ôêb”93LC\0‰Œúá§vX¬ª<cÉ˜½TX','',0,'?'),('d~R9?Æ+7Š\r‹¶¼ˆ','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/bs.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ô‰Md2¿#H((TÏq¦Ñ','ïpEkó%2¢u	‡y¥½¿:ñ,I:¸…xý‘æì)¤5','',0,'?'),('j%M»ÉòÑp)Z‰Ä','wp-admin/images/generic.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øŽ•ÿ\'Š[#98!Ð','§{uë£åÕK[gÍ†ExÜ{¥:ß¼‚úlÍ¨GÄ«','',0,'?'),('oÈô2ê~!°‡-#¾`¹','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetAggregatedReport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•t’ýu&qA“Oœ‡Ø\n','O£Í£!Æ”öK{÷Î]ZþÕ\\Àcð	;ËMˆæãUå','',0,'?'),('|†Eo¥i¸óÏR_^X#œ','wp-content/themes/Divi/css/tinymce-skin/fonts/tinymce.svg',0,'t­|ðzþººêq¡ƒÚ','t­|ðzþººêq¡ƒÚ','2¯sëª*÷t<ó\'ËŠ+ñx\r_õØXzâc „»','',0,'?'),('Œ ¾Žš•Xõø äOÑÃ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFile.php',0,'}û9ÖõžŒÙØömZÙ','}û9ÖõžŒÙØömZÙ','èçù†¶¶öˆ8ï ±ŸdÖs~K}A°§ïHX%','',0,'?'),('Žpr©–‘Åz‰ #A ','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-dynamic-js-compiler.php',0,'Ž†gOÍ›š˜ÿ”VD™¸','Ž†gOÍ›š˜ÿ”VD™¸','é…?5(óVJæ|%štY§Û˜ixö‹Ê\"\Zÿýd9oL','',0,'?'),('œmŽM:¶¡¬Çš7\\\r','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/ProcessUtilsTest.php',0,'Äq\'‰Æ&ƒ­T/=½)','Äq\'‰Æ&ƒ­T/=½)','W ør½¬œo¤PZ¾ãÒdè¦¬£Ø)ª¿ÜñÌ½&¿Èâ','',0,'?'),('¥\0¤>ß•3Hú\\ùàÆ—','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/dns-verification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†5mµ¤’sƒ§&†‘ú','*hm9Ë…°Ó{We\08,µzm¨¿mÞi6X§MB,','',0,'?'),('¿RKQë5v-¼ü	¹ò','wp-includes/css/dist/edit-post/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰ÂœX1^11jÃjÍ^','ÊS\ZX¼}Åß\nMöSï\Zñî¡d¸Ð5Hrødß–Ù','',0,'?'),('Â¤»è×b\'l¦çÓz\0','wp-content/plugins/updraftplus/includes/Google/Service/Mirror.php',0,'bƒ]åìýß¸A<Ý','bƒ]åìýß¸A<Ý','Hõ8I&„^6ŒnRð\"û“Š…;ž¡Ó½âÔÙmÛ.','',0,'?'),('Åÿ—øX6R—Á±\r/¿X','wp-content/plugins/updraftplus/includes/Google/Service/MapsEngine.php',0,'´“P¼n§w$P€4ï','´“P¼n§w$P€4ï','yM ä{1G¥LéÜcžˆ.™j-Lh&ÊŠîèK@','',0,'?'),('Çq—ôë»£D(„¶‚j‰­','wp-includes/blocks/list/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(†ïè¤g¶š\\a¯7`&','O#¸™D$^²ÔÆm÷Ó•À–9äÞº¼Ñy€Hð™j','',0,'?'),('Èi£™jy!³Ï6ÚßÀ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ThrottlingErrorChecker.php',0,'2˜1éòG$ÏÃ[¿','2˜1éòG$ÏÃ[¿','Îm,©Ýav¸J[É_žà7)†I\"Ðfão	¿uÛ¬ó','',0,'?'),('Ï\nðûïŽø)ÉûêŸ','wp-content/themes/Divi/includes/builder/module/field/template/Base.php',0,'=(2?¡ö_ãYŠOÐY(','=(2?¡ö_ãYŠOÐY(','hOçqÆO]Ý™)„Ôüå-ö8¿ŒÒ\ZN¡‚\\','',0,'?'),('Ñß¯é»ýÆxûVÇ^úù','wp-content/plugins/fusion-builder/shortcodes/fusion-testimonials.php',0,'Êþ«‰jÎá.t¡ÈÅ<','Êþ«‰jÎá.t¡ÈÅ<','Ìkt^ÃÂŸo¿µ÷#^•!(xj¥îËGèUõ;>Ç&ñ7','',0,'?'),('ØËxsÇ\"ƒ—èƒ©x!','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Category.php',0,'b¤9†P”Œ0V&X´&ÿŽ','b¤9†P”Œ0V&X´&ÿŽ','éI¹·Àµå/Ì¦RAVÂ\r,®p™ëšÎÇ€ÊñXúõ','',0,'?'),('Ü;(Xp`Ò™Öì‘pÝ·','wp-includes/js/plupload/handlers.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹åÂCN<+‘<tØ','1©u äe)ÆÎ²?“³L÷âÏU2Ü7A)ßíZë½','',0,'?'),('íünQ§È¤y:Csz~}','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/bootstrap.tooltip.js',0,'˜ª ›JG*¡–2%Ãc70g','˜ª ›JG*¡–2%Ãc70g','„‹1ù€¬ZŠJÀbmáÌúU”èØ0x\'“£×°<þÏ\Z','',0,'?'),('ô^ƒ¢^[(J@ý`5iö','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ServerErrorResponseException.php',0,'þ&!¦K‰…<UZ—ÎÿÊ›','þ&!¦K‰…<UZ—ÎÿÊ›','H?ôÙ—ÌKH´¢ºwªJ•¾5–ƒ>Ñˆa&y÷>£','',0,'?'),('ûhtïöq£@ÞYw','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssEmbedFilter.php',0,'EàW‘†•èEõ²X$pEË','EàW‘†•èEõ²X$pEË','‚§Ï«ë–î\'•W?	E¸ôÚå»T°à#äØâ[†I(ø«','',0,'?'),('ût÷0Ãgñ»a†/Åýž','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~ˆð-Êò÷Œ´Üx\'·	','Š™{Ú‹þÂNìoÜ×#XÁ+Xe\'¢£Œ†Ï_…ÞåÇ>\Z','',0,'?'),('\n™qoãqZVyXœ¿9','wp-admin/includes/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#&›Û9®¡hEÃpú¥6­','Çªàˆs»¨E\'ÁòÓ\\lÊD)i¸$ë´Ž«§q','',0,'?'),('\nÁ]‚^ôS\nlœÇÔ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildInfoApiKeysV2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~‚y™vp~ÁeœãBÛƒDW','Q%3!ØÙú)TeP£?öf6ª:¯¶¹¸`¶Ö1»¥À','',0,'?'),('—2žÙÞº”f	pA9g˜','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/SharedKeyAuthScheme.php',0,'_52è±udŸ]çÛú‚ |','_52è±udŸ]çÛú‚ |','X²€C\"üÑr§»p]&©é<æg¤¾ö ßíÙÕ','',0,'?'),('HbhÅ5Ÿ´¼19','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/DirectorySync.php',0,'¦Å[®Õ•ì#5ìMm:i','¦Å[®Õ•ì#5ìMm:i','[ºûd`z¥b^õúR/ÇvC«|dÛò–¾BÜšÔ˜','',0,'?'),('+ùQEp~BÊ¿S»¹ŒDŒ','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/BlobType.php',0,'ŠSsÒÀ•¹äÀ:`E4F¥ò','ŠSsÒÀ•¹äÀ:`E4F¥ò','ËÙIZG…¯¿Al:¶¿Ð},¡•µÚ¼7ËóöJ6','',0,'?'),('.°[¹=‚Ð\n¤c0»Ù','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderCollection.php',0,'ÊRÒG0Ån\n¯y\nh','ÊRÒG0Ån\n¯y\nh','ð1Fi §Ýäþ ­8bsÁHèÄ¾ÿ‚u1±t_×','',0,'?'),('5ªý8:”q3Eà\ZÜ‡','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/other-plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\n*e–fG\n{æäè,','Då $;,Û·ôù[ÂRÈTö]ø\Z+Ñ×àë#VÆRal','',0,'?'),('6º¤‘vFb‡Hñ?_ÙK','wp-content/plugins/wp-mail-smtp/assets/images/icons/zoom.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4jùøÝõêûóQ¸–','€K$3¢	ÇQ¦q½LKZ’Ý\\¾‡ßGÎÈAmo@¹\0','',0,'?'),('9€|Sý8¸A‘Ìù‹','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/LogglyHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊZ½ÞÖù:Ê.¶WÏ¤;Ò','j:Bl¯šna¤W«¢r˜jž„°“ˆ6ŸÅÕ{','',0,'?'),('YŒÆz˜\'ÊÎ¯°Ý˜','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/AdSenseHost.php',0,'\ni\"…³ÑFó[¼¦-ü','\ni\"…³ÑFó[¼¦-ü','×EU£^ã+šöÌÝûØ´’sGèLg Øª„!§í³z','',0,'?'),('\\°=jíÿØ5Tw.ÇÚg','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/wave.php',0,'F­+9šh:Fþ	ÁÂÞÖµ','F­+9šh:Fþ	ÁÂÞÖµ','“‰\n[»¨ˆ/òÑvYG[Ö¢vo‰Þ£\n.lÿþb','',0,'?'),('`Ø@‡¯ðü×ÚYEî!','wp-includes/Requests/Transport/cURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çòw%Z*ËõH †²','Ö~°™›â÷c¯yhG³K›®SŸîhuP¥¦¥úÊm¢(','',0,'?'),('jÑ{~Äòpá‡n`\Z¤+í','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacBlockedContacts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-7Yú’”²s&9\r–a ','(/ƒKBÁãL|óY]µ›ÈY†ÖvIx0>#¢ô´î','',0,'?'),('tk¥7øèô?„t0´®Ü¸','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/editor/field_editor.js',0,'1xnòÎ-%‰\r¯¹ú·Ý','1xnòÎ-%‰\r¯¹ú·Ý','ê9í4¶_„²²]›«=#ohMW{þlæÊ\ržûÝU','',0,'?'),('›™þ?z‹¯;Â_ÊŸý','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/Grantee.php',0,'kâ6õr;ÖHž—ÀpjÔª','kâ6õr;ÖHž—ÀpjÔª','vý´°aN¹Ä?›ÂØOß,£ -”Žù1ŒqV1õ:§>—','',0,'?'),('œP}À¼LžÄöþ3™ü','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchCommandTransfer.php',0,'q)¡XMÔ­’Õ`@FvÂ','q)¡XMÔ­’Õ`@FvÂ','Ôêú¹îï½ÅôV®%ð•9¨d÷’þ6¢M5±ÈIÙ','',0,'?'),('ž1xO5š\n.ôú&¯N','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacSmsReport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+PÔ‘ý“RïLÕfbÍ','Ø¢›á°¼¢àý”:›-Ï**9õo&&®-,1T#`','',0,'?'),('ŸÉÞr#‘}ØÓ’kºO¡','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth/CurlAuthPlugin.php',0,'5Œjö>¡?~ÀÐ[-È{Ÿ','5Œjö>¡?~ÀÐ[-È{Ÿ','ºwÆNí¾ÂÑuÇƒñr¯o™ÈûÀ;ADfaõç','',0,'?'),('§UÌ›	\'CÔ»ñºÏÚ«\Z','wp-includes/images/admin-bar-sprite.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SÏ¤—:€WÊÅÓþ^','®ôrN!ú`VO´c«ãK”ÄviÕ€{Fn\Z£Ále','',0,'?'),('§Ÿ	X=\'¤M=ª@ßj°','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticFilterInvoker.php',0,'ï|:Ùòaû¡Ø}ü|x','ï|:Ùòaû¡Ø}ü|x','õ¸A¬Äµ…æ ÖVÁ’Ù‘íwCP‘|ßaQÔ¹ôH','',0,'?'),('©4†ø#Õ°¨}ï‹„¯£','wp-content/plugins/wordfence/modules/login-security/views/manage/code.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/éÁj-ëþWš.á{‰”@','i%XðY`FmZž¬ëE^ab}rž_Eÿ Š¤3Ð','',0,'?'),('¯¥£W¿†o	\n4xw.Ù','wp-content/plugins/really-simple-ssl/testssl/serverhttpson/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¸ÜaÌ0ŸÁš¬ø&–-','ÓªƒGDfš¥è‰:ÃÚÈlkŠ#²L+J5B¨Ö','',0,'?'),('µÿUd¹(­½ŒËÆ\"©','wp-content/updraft/themes-old/twentyseventeen/inc/color-patterns.php',0,'ñ•[ìïAs¿a(MÙ ù','ñ•[ìïAs¿a(MÙ ù','•]„èHâW\Z_Ž ß—¸)tËWV+ínNJÊtÏ ü','',0,'?'),('½á°=«ÿòéä¦zï«t','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/themes/mobile/theme.min.js',0,'çù\r‡‹øLÖØ p*<Ê±}','çù\r‡‹øLÖØ p*<Ê±}','Ç6í5ÙÈ-ä¶‰`õÇ™ÓëøÉí¶6ÆWÀEå','',0,'?'),('Á\"êZ0\0Ø¿e…Ô¦pß','wp-admin/css/admin-menu.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èÿ¥_µÑàQ7’5m1®Ë','a§}¯Ã±S{Kú~à¨2¯à¡,‚ªPÓ={Ÿ–¼˜','',0,'?'),('Ëäï]ê3ˆ¨m>¿†ü·{','wp-content/themes/Divi/cloud/i18n/library/layouts-short.php',0,'Sww‰7Ë#^êˆG\')yl','Sww‰7Ë#^êˆG\')yl','ñÓløC¢AUáÇL¾Z@Û­µO*yqç!\"$ñ','',0,'?'),('Üþ¼¬\"8YŽŽ74·O<','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','di²BDõJòˆ¯D¥5ÃO','N«a‡º–iBÏñÍ\røÆAO]¶¬©@áPµå','',0,'?'),('Ýò®–x8[!>ñX','wp-admin/includes/class-wp-users-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"?DÐ¡¸ØH©îš¿','Ø{)¥y\\ÅÛëM¬Ô‡;õŽHwòÙôrãèŠÛ6','',0,'?');
INSERT INTO `b78GM7Ml_wffilemods` VALUES ('ßÑ˜>yz¹<,î\ZëZ','wp-content/updraft/themes-old/twentyseventeen/template-parts/header/site-branding.php',0,'ÄÜ\ró%F29Á&Ðù','ÄÜ\ró%F29Á&Ðù','»ÙÒ||ðÚÃ²+úWã®À’$UèVŸ{r¡','',0,'?'),('àÃÉÉ¦Òç¤@ï','wp-content/plugins/worker/src/MWP/EventListener/ActionException/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('êEX¿´6ák­èj0Å','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/TransactionalEmailsApi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñ º§(§ª\r0 £ïà','ÇrCW—v¼L×‚OŽMü]wñjÏ+\"?Ôx&Eèë¥ß','',0,'?'),('êþo(g¸^{ot,ü‡^3','wp-content/plugins/worker/src/MWP/Parser/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('ö€–ä$µ£%èjqn¤','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSmsCampaigns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"êãkt;?_‰êÜí/ï','¾J­X £ãÛœ/^AÒÞCtÃÊ\0%ÎÂ˜‹Ä¢A','',0,'?'),('‘\0Â¿a³èËN5Dé°ˆ','wp-content/plugins/wordfence/js/jquery.tools.min.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ:-·áEÕ x¡$à¸B',',¹4Ö~aT•lS fQO	fø×äTÓµ·Ö;ÂÝ)','',0,'?'),('‘ÂW[=¦Ž 8=øE»','wp-content/themes/Divi/cloud/fonts/CloudApp.svg',0,'õfTö~\\h>i‚®ü—”','õfTö~\\h>i‚®ü—”','#¤ŒÑ‚»8* [o~ËMªom±X1[û*µn #}+`','',0,'?'),('‘aéB™Ùr¸9d1ë','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffLogger.php',0,'.›âÚ…RëÉ`uDLH¹P¡','.›âÚ…RëÉ`uDLH¹P¡','XQˆþt<Üb¿mÞy©9#08e3+„h–µnð\Z«','',0,'?'),('‘¦J[éd‹Eþþ–b','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnNotAvailableError.php',0,'jÔ\0+6}F÷\ZÙ½v´3','jÔ\0+6}F÷\ZÙ½v´3','Œ–ñCì*}&D‚ƒí„ò‘ŸZð|nÅ([ï ¸Å<ø','',0,'?'),('‘ãue{X¡1ì‚ÑÒ','wp-includes/sodium_compat/src/Core32/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´¶Dú5ÛÈ$Ã½\n	à\'q0','\\†‰\"ÈÔ¯-\r6ÞëeÔN´IDæºzBæ\r\0ü÷','',0,'?'),('‘.\ru¥ðî_ˆ‘ô¤Z…','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/PowerOfTwo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ª‰N@“ûxš$Ñ`l','Qh`Ò2`<6#Ç¨…ƒŸow\"k´@	R\'','',0,'?'),('‘/«Ò0)­ºœ\Zæ«','wp-content/plugins/wordfence/views/scanner/issue-database.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š†S±Ð>”ˆ«ZààÅîGä','„’ñ\n«‡#Pw3IdÎÈ}Í‡%÷JÕÏì‡j™U¢Ó+','',0,'?'),('‘2ÂŸ/ñÖ·PPÓå','wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/AbstractFiles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<ÌÚŒZJÞœ|À)s°5UZ','\\MHÎ·T¢)Û¦äï5xâåHB5Æ#›\rê1}ØD','',0,'?'),('‘:L	Î®\n˜ñÍÖã Æ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp256r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NÎŽª¥ÕtÕH`äRˆ','(\\™ÔCœœÐü)­³–ùj3a%Ñë/iÙºR]g[“©H','',0,'?'),('‘?õà%l²lÇ›Aî¼÷ò','wp-content/plugins/really-simple-ssl/testssl/serverhttpxforwardedsslon/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¸ÜaÌ0ŸÁš¬ø&–-','ÓªƒGDfš¥è‰:ÃÚÈlkŠ#²L+J5B¨Ö','',0,'?'),('‘@‡q°ÏGÍ-$¢©—ê|è','wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±éËèÝgPÊ‹¾ÙiÕé[','¶DeJ°\ZÂfxbœ	x\'Pó«·:™“¬ôÀ‚¦U','',0,'?'),('‘S–Æ÷ŠKK2iÉˆ','wp-includes/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðÑhéApâÛe“ø³a','9ô]|VÝ±ž1¥I‡gŽR”°£z	‘Ü2YÐ*j”','',0,'?'),('‘cC;±µVð4c¼SWÖ','wp-content/plugins/duplicate-post/src/watchers/watchers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s¯rÓq×XŠ­;¸Á*¡','†Éi©×jë¦ÞŽðê€\'»<dK3¢@gb@Œjî]-\"','',0,'?'),('‘tòSfûÏéõo7uR[Æ','wp-content/themes/Divi/includes/builder/module/field/Scroll.php',0,'f$ç¹Ìßn€åÅtWÕ#TN','f$ç¹Ìßn€åÅtWÕ#TN',';-\07:°ˆOROºg\nÄDÿ±>\\#„éÏrk<?Ï','',0,'?'),('‘xÃ_,[˜Ô5‰‰†ª','wp-content/plugins/wordfence/images/sort_asc_disabled.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×ÜÇ#a]2…®¼Øë','Ÿ‹²û[8lÛYô¢ìåcklþÛ	™u#KVÙÆ‰n','',0,'?'),('‘yßg‹ízaU\"ƒ	XKG','wp-includes/js/hoverIntent.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0ÇõBU‹Ÿ4X$ 6®iµ','#…ÜÝ“ÿ0Ûõ4%˜6adîZ@!\",»í6\rëî','',0,'?'),('‘z|qSòÄbûtH¼-Ñ','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/Scheduler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬;u n»?êŸ3k-Hw','ªÅ\"äøbãaˆÏÓrþŠžáÖßEÆ@ðÄZ›¸Ó','',0,'?'),('‘’ˆöÇ}Ñ7à{ƒœ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Authorizer/HTTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';h¾sp(ó»¸£Âfž','(7#\0a-Ñð›~³ÉÃþ[YôÊqä\"ÓÒ<ÓJÿ','',0,'?'),('‘«ëÈ- ?ÊÌ°ùìÂ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheKeyProvider.php',0,'‰µ¤_eã™©Í®+Âò','‰µ¤_eã™©Í®+Âò','i|\r˜5+„j›Àšû/¿*s©ªíæ“íZvíD','',0,'?'),('‘°™Æó•ŒRèÐöÚÕ','wp-content/plugins/instagram-feed/css/sbi-styles.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EÐÙ~øxÜBÌçÒ7Òg','P$¥Doí£‹¸FÕo½“Øù¨\0œJ-Q…fë|£Ë‘}','',0,'?'),('‘µ=r×ÃY¥—/<Š¬','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_nb.js',0,'q[ÑEA§,äH>øÈêï','q[ÑEA§,äH>øÈêï','o+\nð;ŽËy= Ö½ºªj—Àøãq1ü1Ð#','',0,'?'),('‘¼ñft\\ãš[ÞÝÍÃÂ9','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIterator.php',0,'Bbö¯=ôxäË\ZSîç†','Bbö¯=ôxäË\ZSîç†','\ni¦V5¨Ki}½ô‹¤EAŸt7Ì‰…\rt)fŽ|à<P','',0,'?'),('‘ÇÊ|xØn&Jñn·9','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/Endpoint.php',0,'ÜÙtãõ™C§D|i','ÜÙtãõ™C§D|i','éŠ*‘¯TAY¿Âñ4C(™.u\\-ùž¥q	Y­»','',0,'?'),('‘É‰ÎìÈÞwå1°À','wp-content/plugins/fusion-builder/inc/templates/row.php',0,'†\ZEqK¤fA],\ns	\rH','†\ZEqK¤fA],\ns	\rH','µ·]:Æƒ{LN½kÅaf uœ?vË!·h„µ','',0,'?'),('‘ÜNTZt¿o\r–%²¯F','wp-content/plugins/wordfence/views/scanner/options-group-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tLëGa¸\0ÝoÒ bY','2 6‰þlìn\rðñ\"¨ c¿:ÓÆ…zè¤vôJ1Ü¶ßò','',0,'?'),('‘ã9 L…ûÜkÚ‹_','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Token.php',0,'†q¿wµÀ<\Z•-6€Ý0','†q¿wµÀ<\Z•-6€Ý0','E¦\'\'é˜Œ›¤¥2¶\"Õ½¸ñÐ¼¹ ‰¡|gœE','',0,'?'),('‘ç€öÃñz¬—ŸÙÒG£d','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/TwigFormulaLoader.php',0,'Û|­ñÖâ7F03»jU§»','Û|­ñÖâ7F03»jU§»','ÒÙB*Gtêb(Mž I5¼ús	^F¨‡ðòªÙÒ,„A','',0,'?'),('‘ôÀÈà5Fcæþ™?åÝ','wp-content/plugins/updraftplus/includes/class-partialfileservlet.php',0,'Ï_°4™¹/F(ƒ','Ï_°4™¹/F(ƒ','âÕBXù—¢ASr!Žôkb‡f¤q›`ŒB@*c','',0,'?'),('‘ö¤í°Ô×­÷wT','wp-includes/blocks/button/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áé¿¾>T9ëá*èLê—','ÊÁ/«=Ùœ¶ÌÍ}jß÷.9…ÆlgÚ','',0,'?'),('‘÷Ë\0Ì|3QOVëiöÖ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/AmqpHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F\ZÉß¶ôÆ«ýˆlØâ','7©ÐÄ¥ëDUX–2vN\"Y	b<@¢I›x8»Ñ¸3à6','',0,'?'),('’¼¦wuÓéÚR#ø‚4å','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/slider/field_slider.min.js',0,'vo¡ÇmÜHþ5ºïxbc','vo¡ÇmÜHþ5ºïxbc','é3ªïøLä¥¹Çqwç‘ñ‰–Q8•ZÙÌë]KYÓf','',0,'?'),('’ü7¶÷³¦þ“·å…[','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/ThemePanel.php',0,'{BP;»82ñ<	Kyi¯','{BP;»82ñ<	Kyi¯','¾ºÅÄÃ3ûDËxŽG]ôýG7°QcIúPÑùE','',0,'?'),('’©[p½aoÿkc¶À','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-layer-slider-preview.php',0,'c,õé9¢6\ZBu“†”Ò','c,õé9¢6\ZBu“†”Ò','FfÒ4Igáüuv4ë_Ê¥’î¨DWÜî^òuaß','',0,'?'),('’(i‘’\'ür>A¯³3µ','wp-content/plugins/updraftplus/includes/Google/Service/Drive.php',0,'A6âoÕð6’Q‡H°','A6âoÕð6’Q‡H°','û•h¿B“tVûÈ`¨ÞÚd¤”U!èjw»ÇŒ:eÎ`','',0,'?'),('’/»É˜ü]ô^¤W\\ƒq','wp-includes/css/wp-embed-template.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')I+úw2ùh÷ñàK\"È','èý¸6&›}²okŠ–AM\Z> ·|ÀF¤6,e®t\rPq','',0,'?'),('’1£¹ÒÊª‡BüÄ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/core/panel.php',0,'aÇ’I±Ä,Ö\"©|”*‡¿','aÇ’I±Ä,Ö\"©|”*‡¿','ÏÈÓîþEâMýòñ…),*C5”óë1šˆIH7Ëª','',0,'?'),('’jÎq©Ôƒé¿‘W»=ï','wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutWidth.php',0,'æÁçÎ<ñDŒi¬ËÃÄâ','æÁçÎ<ñDŒi¬ËÃÄâ','ñ¤-Ô³8\nâV‰lYtÌ}\\0Š°7ëŽÅ?2ã2×Aç','',0,'?'),('’v{LöJlÅ€YzÕ`°(','wp-includes/js/thickbox/thickbox.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7úëPïRÚnŒ,(žfÔ','MüßðŠV_—^¸¦ÿol\'\0šßqYLüÌ˜)›Ýê','',0,'?'),('’|D)áãÒýÂv¢8û—','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/UploadIdInterface.php',0,'\'ô$ü^sl€.2;Ü\n/','\'ô$ü^sl€.2;Ü\n/','t×\ry\0´ßäòU¥Õ±»ü:B\0±¨°W ap›‘','',0,'?'),('’Œ/ÊøÜa%¢ŸbÉP‡V','wp-content/plugins/duplicate-post/js/dist/duplicate-post-edit-430.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FxE¤šš2%§]M»éK©','ýÖö‹ä=ƒ}\\t²œU@«ÂŸ#¤Ât_åìî#«¤@','',0,'?'),('’¬í‚ÑX©12ïmÆ‡r','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/PhpAggregator.php',0,'•À†³&Ûáê&”4K','•À†³&Ûáê&”4K','e=26dAõ™u,§ÂÕ#Ü¥xp´ð˜·rˆ°i;','',0,'?'),('’°«LÛM.%ÎÕVYÝÀd','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CommandInterface.php',0,'‹OA\'º9 \'+;ùå§—ax','‹OA\'º9 \'+;ùå§—ax','!C,V-öªg$×F¯xœÓZãáÜ·ë—†lôæ','',0,'?'),('’±(³¼NL;	‚ÎÀ','wp-includes/js/dist/api-fetch.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\ì£|ÿËbMõhH¬}d','Ëí\Zö››r}ûÏZ8¯žíõ~n…¶zŠ5ýîœ–:½†','',0,'?'),('’³‡Å—ÿc“¼;Ûžœu{Ú','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RebuildError.php',0,'ÜÑ÷(M+Cmkž>B«Ùh','ÜÑ÷(M+Cmkž>B«Ùh','É7 ­Â	Äµx 1h’1$Éô].Ïæ-_Õâ\Z6','',0,'?'),('’¶€êÂµßºWŠdï“»ƒô','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7¾yAE^#í6†–ª','©ˆE†TqT!·Ÿ÷·»–‹šØI¥Žqt*}U','',0,'?'),('’Ågu§l70v§–‘¬','wp-content/themes/Divi/includes/builder/module/field/Height.php',0,'j¥hÓ~#Š|\'\0Œüy½','j¥hÓ~#Š|\'\0Œüy½','\nSü½x E.ÄÜyÀ1I‹1¥C”a”æ[å87–6#h$','',0,'?'),('’Ë!ÔÃ©Ü­Ï7-tª¶9','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/lte-ie7.js',0,'Îæ—›4Y÷‚X÷Noe','Îæ—›4Y÷‚X÷Noe','u\rÉSF?òTPF\r\\<\'su÷\n…/¸zlØ×_‚','',0,'?'),('’Ë•·…©5ÈeùWïi','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetFolders.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','804gøfæ#Å-ÅFt¯DÉ','¸Õ½oŸoÏðmlëö4îýÅ.ˆtÁ‹”`Å$0Ùa¥p','',0,'?'),('’Óc[ï‚È»Æ%/ú|ÿž','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateSender.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3<}Ÿ³KóFµ‘³óX+ã','dýŽ‚UBÑÁ3}¦¢hDNYÆÃ…¸%$¤¦h·Ü','',0,'?'),('’ÕÝÊ-ßÆ£cèŒXu)‘','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacSmsReportReports.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_ÔµÅ™0kLi…ýRJ“ê','Ú4\'ÃÜ¥uWÄ5ÑzYM²ÞÜÑ‚˜®“näzÈšYŒ+','',0,'?'),('’âÅí‡´ÁÁÜu†ý4ƒ6','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/HttpException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÈlËfk³ê<ý÷\r\nÀË','R!ÖO]p’I\náË\\…ÅVPÌ9‡=Áþ!ò?Ñð','',0,'?'),('’ñìbÞÐÇkw\'Š|[','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/UnsupportedFormatException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê´éoØjëC¡µÁü‚B','FÃQhÍ8îîEAdÖÝ‘\'âi{Ck“ö)³“‰4','',0,'?'),('’ó‹üÎ7‚\nØ²‘öW','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/ReactJsxFilter.php',0,'85óÜYbæì{Àf[®WÌ','85óÜYbæì{Àf[®WÌ',':7ñC†™Ö‚a­Ú@¾Ø´‡²Ù¥3XÙ&•è{rbp','',0,'?'),('’ó\r€m¹s\0@Î=[Æ','wp-includes/blocks/text-columns/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F¡«·Yá€e `gÉôÏûT',']ìaE´†\n0íX¶B’ÑTl}Xk\"OËŸ‚ÈÀ¶','',0,'?'),('’þÖ¬+I•7ÆŽ¬^ü¥','wp-includes/blocks/file/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c\Ziü•Õ:–×¼vsß÷±','ôÐÛQ\rpoNÇËƒWCnÎøL¤YG³›=òÚê*','',0,'?'),('“\0¡XÜnS#Ø5’ÔMÇJ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/AbstractResponseVisitor.php',0,'KÃòíô¯È…„±{¢Gß­','KÃòíô¯È…„±{¢Gß­','q.9êƒŠ)»¶¨QKš!Wê‡tt[\nøeµþï','',0,'?'),('“M²í\r×1rÂaáµéu','wp-content/updraft/themes-old/twentysixteen/js/keyboard-image-navigation.js',0,']çí\'\'Á“éó/W—¥ˆž',']çí\'\'Á“éó/W—¥ˆž','ž)4voøê™í$úE­(ëv…9DF¦ß\rîÐU','',0,'?'),('“PæÎA\r?«‹Ê^´ò>','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/FactoryInterface.php',0,'Ì`âðrÈÛ?‚}\\½»','Ì`âðrÈÛ?‚}\\½»','×ù±÷îÔ5-tP€\"…xÓXòÒ0w\"¦2ÒqÙ','',0,'?'),('“Ga>y#¬Œ=ˆèà','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Account/ChangeKeys.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fFA·9]-w{%&öYlC','ë›Âù4”Î>Rþ?wÓýf˜]q9/äZø´ÑlÇ8\'','',0,'?'),('“Ë¸csjn½ÞZ®^','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression_YearField.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß4DfóßpîT¶…xð³’','û¯“ÒN„@7)(’´6¡øö•æ0&^—ý’´š','',0,'?'),('“XèV×˜O|8}š€‚','wp-includes/theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕÏ\"ZßýÜy_xþ£','¿Ë‹ˆþE}\\2£’•jÙQP1õÃ‰Å\'1¼¿³C°G&','',0,'?'),('“\"1mevËÑAnÔ‹X[¤','wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/error_polyfill.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥†,9‚àîðŸšÙÁG¸','h–ø†€‚Í¼›˜ðÙÐÆ¾ek¿ Y€÷Ý\Zfð²m','',0,'?'),('“,”|ýùºó^„Ëþ[“§','wp-content/plugins/worker/src/PHPSecLib/Crypt/Rijndael.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©™1×#êÚ]²$ª&é;Çý','ÿÔ7.iÖv\r“î|ìXh¶›:–X7EkÕÿ£\\˜*Ugs“','',0,'?'),('“4F9´æ€¨ÇH‡š^_ñ','wp-content/updraft/themes-old/twentysixteen/index.php',0,'Tz½àRIÂ5=RkƒjA','Tz½àRIÂ5=RkƒjA','½•¤Ñ-l¸»§ÓëM2#ÃžP/ÉÕåÇ°ÃÕÿ	','',0,'?'),('“7Ïö•Œsé²÷@ê´à/','wp-content/updraft/themes-old/twentytwenty/assets/js/index.js',0,'UÇ,¡˜ªT8w6N$','UÇ,¡˜ªT8w6N$','Ì¡÷£ßá*:XAÊšT@R××\"˜W-øû\0^¹¨DæøæÊ','',0,'?'),('“8Ü\rkÔ\rí”Ãš','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ListBlobsResult.php',0,'“™ýd	>?\ZÚTîÚ·â','“™ýd	>?\ZÚTîÚ·â','š¹4ú+çI2MpÖ\\«Âýõ”aØQQ‹uÀ\Z_ºç','',0,'?'),('“=¸´lfÓG>Ïç\\·¬S','wp-content/themes/Divi/includes/builder/plugin-compat/wordpress-seo.php',0,'Î-sÂÚzM/Œ®Ž‰Â²','Î-sÂÚzM/Œ®Ž‰Â²','¬ø\"Äž]i5R–H™Æ½õÉ¨[Csì†eéÛš§','',0,'?'),('“?¦Y×fJ¿ lWRÆ_','wp-content/updraft/plugins-old/updraftplus/includes/updraftplus-admin-common.js',0,'”q@RØÑi>š{DH©','”q@RØÑi>š{DH©','™N‰Tr§,u	@±ØÎ%ÒÄ6§Z\rbÏ)÷šïÚ <ÿ ','',0,'?'),('“BÝH*mz—ÍN83üî','wp-admin/css/edit-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NænV*)oQ«$F‹¥Å‘','g°œ‡7ñÿ»®ODéÿµ{³9dÂvÌ“ë]¢Ø','',0,'?'),('“O€Žï²–ëjß©‡','wp-content/plugins/contact-form-7-dynamic-text-extension/screenshot-1.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wS[Ã”,Ý¿Þ„\nbñoÀ','Í,á%òPj\'ÿ\ZI2ˆb+b³­ZPIûsrÆéµ¤©','',0,'?'),('“Q–¹1‹þ‚€?Ö¢%$0¦','wp-content/themes/Divi/includes/builder/plugin-compat/scripts/sitepress-multilingual-cms.js',0,'›ZfõÊ…&:a\nÍO2O','›ZfõÊ…&:a\nÍO2O','™R‡ß\0T÷ë2˜ØaÜ‚åÐø:ê½Y÷ÝL+§˜‹','',0,'?'),('“Tž~nšaºhùdq•Ô0','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/ExecutableFinder.php',0,'ËIÇZ§T7¶ÖÚ@ïÇ','ËIÇZ§T7¶ÖÚ@ïÇ','…ôÆ\ZÄcõ„ÎÀ²	ï×jek~·à —ŠûvÓe','',0,'?'),('“V}»P”œ±m•/¯|I*Ù','wp-includes/js/customize-loader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú`¾6úï!ÝÑÒƒz‘È','«G?~ÈD›,(×F]áIÉbNEöÎÀpc¼v:±–Ëz','',0,'?'),('“Yå^é®2®H©%y9WŒ§','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticTokenParser.php',0,'QXžƒJu*’U\rfÑ]O*O','QXžƒJu*’U\rfÑ]O*O','<f»»Ñ}ÑçÍ{HOÚ¥E±ºŒ>ý‘®Ÿ¤FMæ','',0,'?'),('“Z%9è§t¤˜¹ëÿÂ=ºˆ','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/GroupsMigration.php',0,'=ô}ç‘úÎš/<œ€y','=ô}ç‘úÎš/<œ€y','D2Ìeëå`ÀIIÓQá>°î”e¶#ëH,O&xFb','',0,'?'),('“b†£«\"ƒÓ™´@ÄIO','wp-content/themes/Divi/includes/builder/feature/global-presets/History.php',0,'H—¹0ÜäÇ}ïãÁi¼\r\n','H—¹0ÜäÇ}ïãÁi¼\r\n','ì+ÆúÁðþÕÅß»áXWaªqÙ÷ üâXaÖ¼õ','',0,'?'),('“cIÙ(4-YHñq','wp-content/updraft/themes-old/twentynineteen/inc/color-patterns.php',0,'Îîyß\Z§Hü»±^®yO£','Îîyß\Z§Hü»±^®yO£','ÁÎxÓiFng×–Ï¤Ä:þ›×Êq4Þw¶\nr˜†#J;','',0,'?'),('“gy‚ý\0Ï3öÖ¯W_k&R','wp-content/plugins/fusion-builder/inc/lib/inc/importer/class-logger-html.php',0,'ÔXmˆ¾èFôÿŒ€l46›','ÔXmˆ¾èFôÿŒ€l46›','±–ÿÜWE_‰€!á\\ÿž®Å_¢ƒ”ùTk*Ï~','',0,'?'),('“lüt:{0+7à9Cý','wp-includes/sodium_compat/src/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñÓHx+Ú07¸™`®}ô','@qz´jØI¯™áæ \0D¼a¶W»¬6nÍ{Š£¶yß','',0,'?'),('“tao\Zú’½ºbæ?éÒ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/DeleteObjectsBatch.php',0,'ß$lÒÌ…!8˜Õðœ!±ä','ß$lÒÌ…!8˜Õðœ!±ä','‘ƒƒ„‡Q°pÝª4·D¿™šD/c$_¿(|¦Úå','',0,'?'),('“xê¢F÷?¿l]Ä°ä','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Analytics.php',0,'&ÿÞUþç=×éû0wøb','&ÿÞUþç=×éû0wøb','Å{ƒ6¢:|Ñ\0âtª÷¼÷ÉMKø	\\$Å1_ýÒÓ','',0,'?'),('“~+E—·UöŽô-5Mã[®','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/SOCKS5.php',0,'Ï2™=æ®ooÈö Ÿ','Ï2™=æ®ooÈö Ÿ','ó[¿žqdÆ#Ý#C÷†À2*€x—¹zDR÷2jÝšÂù','',0,'?'),('“†DO8æ•âeçTÆ‹òý','wp-content/updraft/themes-old/twentyseventeen/assets/js/customize-controls.js',0,'%óË¼+Ñ¼ž5¿3ÐLÎ','%óË¼+Ñ¼ž5¿3ÐLÎ','þš£‹âý\nW+\r39NÖÇÏ…ƒƒ»fé¶?˜F','',0,'?'),('“ˆ.™v8-rJÅ•íqQ','wp-includes/js/wp-auth-check.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘2©£èYTæxÚw€','EéID(10iý|óV:íé^Ós\ZXÇ‚\\¬9kéO®G','',0,'?'),('“‹D´M(¯öè‘è4Ò','wp-content/updraft/themes-old/twentyseventeen/template-parts/footer/footer-widgets.php',0,'³ÖÚÝ~V2™:5AY-´','³ÖÚÝ~V2™:5AY-´','¯¬ær1BM µýSü­DÐÜôyá·&º.3xR*g0','',0,'?'),('“Œ0µ_Öj}ë8IAšÁh','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Header.php',0,'Ç2§³¤öî§ƒuéàM×f','Ç2§³¤öî§ƒuéàM×f','UÙà8—T¯âÂ¹Ä×7ïË¢ÃL\"(€±êH¼ÚÂ±¦ÿ§','',0,'?'),('“•ò°½(Ë«Ïç³)w:','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/SetBlobMetadataOptions.php',0,'ÂÕ,Ôrs%#PÁ,¿¯#','ÂÕ,Ôrs%#PÁ,¿¯#','¯Ã‡½%½Å‰¿`n‘+‚…—»3Ö]Î¹ë¯Ê[k','',0,'?'),('“Ÿ6­ÐUÑÑ¦Üuï','wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3n9LPý¯íÕuØïd¼','ËácºC8\0Ñ‹#\"­…÷æ#ÀTËúÞ\rXas{Aç','',0,'?'),('“«7‹ÖE#¾wÅ§j¯²²','wp-admin/includes/image-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÉÛzÅa©uN•˜r”Eò','áá¿¦Ê$Â2ÉÐ×Ž’\'s„®Rá\\^}|ó#hi±7dõ','',0,'?'),('“«PéÌ¶=\'…rÜGrø','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/jquery.alphanum.js',0,'v\"ý\"ÞGâ¡¿âOZæõ','v\"ý\"ÞGâ¡¿âOZæõ','AÒÌã@g•üoÍó†Dú#A‘¦Ý&´ê{®øè™1Ëî','',0,'?'),('“º¼ÒÁbqÀ/¤ÙÛF¤k','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßðª­7‡õÂ¤\r¬FÄÝg','žn’V\'ŒV±û»¤Vî²)F|*á‘2ˆNà×z','',0,'?'),('“½­.Mþö„A\r‘4Ö1','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/AES.php',0,'šÛx¨œ‘Áˆ)0‰õ§ñR©','šÛx¨œ‘Áˆ)0‰õ§ñR©','œª	£[”ðš1þÊ¢Ëù‡Ã÷ê!’hhó€®âu','',0,'?'),('“ÆÛ¶nV7^zR2»&Ï)','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp128r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß3ßsøà5žºà¡Á†\Z*','0L’Yø ù×¡ï¤MçûUÞáð»¿V4yjwv8\'\rIT','',0,'?'),('“Ë¯´úbÄ*~¨´†èž','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/visualchars/plugin.min.js',0,'gE\"FßIK%­;ºº<¯','gE\"FßIK%­;ºº<¯','\\ÙT\\‰Ö§T«éõØ2¿ë×²š’B\0ÄÎ­*Ð©­L','',0,'?'),('“ÕVq(ž¼Â¨œa™Ú#','wp-content/plugins/updraftplus/templates/wp-admin/advanced/updraftcentral.php',0,'Ÿf)FÇ|„±•{8Ž\n&','Ÿf)FÇ|„±•{8Ž\n&','“=è`s$—›UÉüË¶#	j[ÿ~)¡k\\§êîmœ','',0,'?'),('“ð«vî­ùÃ|ß-ðÉ','wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â!óý<à…»]ê»Ñrˆ','É…p[¼ÈÐö¯ÙL7F…£|Ë–ZBœRŠ','',0,'?'),('”y€©ª\0\'?©áØGÊÛV','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/worker-json.js',0,'E/G5wÜ¡šBŠIÝÓëL','E/G5wÜ¡šBŠIÝÓëL','ª<THŽ†£†•NÆ\"{@d>[yŒ,Î¨û?ª“¾P','',0,'?'),('”­è#›6T½GÚÕùò','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/local-library.php',0,'þ 9I›3H û¤„ÿ','þ 9I›3H û¤„ÿ','k(‰Í2FÀec:m¯*Ïä5­â/ß›_ãù·ày','',0,'?'),('”bèè£chGm®ey¾|D','wp-content/plugins/updraftplus/templates/wp-admin/settings/header.php',0,'èÂBw\\®#èù%7þ(}','èÂBw\\®#èù%7þ(}','Éñpæ›ñ\0X¶Ÿ2¿ÈóSÜJÓaš†Æh“ã­«ª…','',0,'?'),('”\ZóaÈîœ£d8pË','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchRequestTransfer.php',0,'–qä“ÙÓ¨\'äâÃØÓ=]','–qä“ÙÓ¨\'äâÃØÓ=]','Óq#Àœý‚6WÛÉ\'Á	§¦VÂCocÜàª‹Ü¨m°','',0,'?'),('”!8(_Àñ)9ç','wp-content/plugins/worker/src/MWP/EventListener/ActionRequest/SetSettings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-Ý¡Æ5)Â%ý¯Èˆhá','‰ß\r”/Wyæžg)ÙËÍØl};bñÇºÈ\n¢½?','',0,'?'),('”!HUN&ï\"‹¨ÓŒz÷ô','wp-admin/css/widgets.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0Z?eq‚ãöÁüµDŽxü1','òl¬à¬Î^p0ÌX\'tGM[©Ð\Z\r›JQ¦\rh','',0,'?'),('”\'µ„ò¼~µ¾\n>é‹…%','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/CrossLocationLoggingProhibitedException.php',0,'fÉüCÌ/Ë¿^ Â.Û`&','fÉüCÌ/Ë¿^ Â.Û`&','ý:ÑžQ©™mŒö m…–ïêIë*ÞžÆ¼•_¬œZ––','',0,'?'),('”-?dô€Š¤‡l;Ò&>yp','wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Çˆ­»©\"Cåixœü¹','ðªËxçœª!™¢ŸÄ}ò—\Z¶…˜Ê‚Wª¯úËd','',0,'?'),('”-Êÿ0n•ñ¢Áï\"€.S','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/CubeHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KÀÏX—iÒ\ZŠÂ6R¸ˆ','ÓfŸ¸V•CG­”¿6ZyuÌâMî]ÞÎ@\n÷%ä','',0,'?'),('”4…ŽC™aÒ)	ãBàH','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestTorrentOfBucketErrorException.php',0,'·Ïbù‚¹]Ñ`ôN¦U7$Ñ','·Ïbù‚¹]Ñ`ôN¦U7$Ñ','µ“Ê¼\',àTñµw<ì÷Õ­À	]•®‘²êÞ\nêÓ','',0,'?'),('”C¹\'qc«`ÉdøÉ€Kù','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/TypeScriptFilter.php',0,'»ú×~áñÓ>ÕL/*<','»ú×~áñÓ>ÕL/*<','Ké“\rÖÐJËïH¾Ã3y¼€A¼Q&ö½\'ÛJU0À','',0,'?'),('”Fß‡¨‰È#÷©ataË','wp-includes/block-patterns/query-small-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vj*ÔR•F¹;QÙ<ë¨','‹Ñënã’ã/¼Ló^Äwn®—€CN‘©~Ú* â	','',0,'?'),('”LPÆ£¦[WþþI#Á3ë¨','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/bean.php',0,'m¿«bÖ­È\n‡qè”¢s5','m¿«bÖ­È\n‡qè”¢s5','¾.\"Úaô]iìàþË+^Ý¥xŠpãò\"ž}qãö','',0,'?'),('”LÍÐ~iS?Óv¶C>È@y','wp-includes/blocks/latest-comments/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™¹ØR}K˜VøÍ=Ñu ','±JaSG4îÑÈgL¶Ój.åµÎ«ÕL#DXÚ,s›','',0,'?'),('”S7ÀäzÇ«—WÌ~Ó2ÿ','wp-includes/blocks/site-tagline/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',=Ÿ“SPE¨óŸÒ§£§','ÊˆÍ	™Ø¿ß¥ÿÁ~üŠE¹çk¯º,fŸŠ«Ëf†R','',0,'?'),('”`U£K+ä\"(J¢wŸáe','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/ConnectionStringParser.php',0,'´	ZiÝ9ók5.ê4ž®','´	ZiÝ9ók5.ê4ž®','©öÉ—edc~6nzÏ’é­nEFžtÄß\0­ú','',0,'?'),('”a±tUÚq¶^!ä0Æ£l','wp-includes/post-formats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³h·%ÈJ|,%FÅ›@','ÜÕ6»x“Þqæ#…\n½ÿ[jêÄE²®9¹9eŠ^Q','',0,'?'),('”j†\nëñh;\"´)<C','wp-content/plugins/updraftplus/includes/onedrive/folder.php',0,'\0\nŠ%K¶,ýÉ–^Ùéw','\0\nŠ%K¶,ýÉ–^Ùéw','nM¤ygˆbïÏšÛ:1dŽ§­wA(z ‰Ð¢û\\wXÃ','',0,'?'),('”k‹¥—zß£óÔì×boÓR','wp-admin/post-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÌI\n(þ‚á¸‘¼Óñ{z','„T•Ñ¶‰¨ÁLcçôì4OêÏoFdìÚñd','',0,'?'),('”m]‚3éŠø¦lF_','wp-content/plugins/wp-mail-smtp/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷\"AÏL6N^äˆ)+p','ÝˆýF~l#Þ^öO<åäúé¤„‚*»—{4GeYzÂ','',0,'?'),('”nL@ÃÐõìˆH”¬9¿Ì`','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/EndpointError.php',0,'+%D¼V=\r€¢¼~\r•L','+%D¼V=\r€¢¼~\r•L','Ã±^AbÉ	#«+Þì&ÇÛÓ¦õ›ê¿+UÎV?s','',0,'?'),('”vO¯Ö#èJ¥NïÔ+ì','wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aa+JD$ø2Ÿ‚J”Ú','¬/#?Tï†iOLyv¦íuš˜TK”°©É¤½·\\Ø»õ','',0,'?'),('”x«¥Õõ$ù¬×ã×Ô}','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/AssetCollectionFilterIterator.php',0,'7Ò®æã<$ŠìÙ› Ó','7Ò®æã<$ŠìÙ› Ó','Ö%m.ã[6A2ÊÂ^ˆ aa#(R=\r#¾ç*','',0,'?'),('”|v»P•Ú0áfhîÁT²','wp-includes/js/dist/block-directory.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þýžð…çúZ±²ÓþNœ3^',')sp×Î&7cï/à­fw\r–þô9ð£Ü','',0,'?'),('”¿ˆøÀtg„(º®&•uj','wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutScope.php',0,'ÿ½¶ª þ½ØŸÆÒ×','ÿ½¶ª þ½ØŸÆÒ×','µWñ¡\"»1¤H‚³üHõ«øÞÕ$ÌN]](fNµpèˆ÷','',0,'?'),('”‘v‚D›æ©?@~·áö','wp-content/plugins/wp-mail-smtp/assets/images/reports/email/icon-arrow-down.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸¾=¨f7bn	^e«8Q','µ|;Ë5\\‚SIèà\\&)nŠ¼I]¢¸,Î/Šé','',0,'?'),('”˜@†»{÷J¤á«5ä·´X','wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U,û:)¬ Ø‹\"ÅQqY','\"äOoûÛˆ‰áÅ<ö€oES-MOÃ·å—YN€!‰¼','',0,'?'),('”š1äL”ÔgázB<','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Constants/Header.php',0,'õ9ò¬#z­®#¼ŸX(°Ò','õ9ò¬#z­®#¼ŸX(°Ò','ÞÇê5EìÊê\0mŽMf¢_ÂØ$Âr½3Ï]È6#û','',0,'?'),('” dÃ\r|0MÁöŒ~Ž@','wp-content/plugins/wp-mail-smtp/assets/images/pro-badge-small.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ç‚Ù…®=§TæLÎr€~‰','û^­:ò×9cÈª’‘‹«b´FÀN3Ç—0¹gœö','',0,'?'),('”«ÉÉ‚™ºädÌ-(L˜','wp-content/plugins/duplicate-post/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','43xUñU¯RhÀ',' aõÌ—‹œVWÊˆùíÊYÙœÃ(²z\"=ˆæµ–G¸­¹','',0,'?'),('”±¦®LØâ6	ØÀè×³','wp-includes/ID3/module.audio.ac3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú>Y¿¿Óæ\Zk0ãaM','¥b°´^#šýÂ¨(tñ^·rß˜z¸å9òFÓïí­','',0,'?'),('”±Ó’Žîq§8î÷Éç','wp-content/plugins/updraftplus/includes/Google/Auth/Simple.php',0,'àäPh¼x3«X\"±Ú6ü','àäPh¼x3«X\"±Ú6ü',' ¬UÃœ+Pb-\\¬@sc?Ö#ªØþq;»§ékrÈý','',0,'?'),('”¼A×FHòÔ¶;kgqk','wp-content/themes/Divi/includes/builder/scripts/stores/document.js',0,'Ð©åQ	‘Ò_Ñn\0ò','Ð©åQ	‘Ò_Ñn\0ò','Ž„ˆ´ ³ƒŸ©dGt?\"ˆ®Gëª„ffLßîâ4;	','',0,'?'),('”ÉT²¢V¨íôª“\\˜—','wp-admin/import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"ÑÖ’çÐy DÐ‘Æ#—','L‰‚)Ó‰\"¯.4l™·NäU¯7ü+#€÷R}ƒúÒ','',0,'?'),('”ÎçYàÏ:fù¸Ÿ7´¥ù','wp-content/updraft/plugins-old/updraftplus/methods/ftp.php',0,'\nND0Äô53ÉV Ü.¿','\nND0Äô53ÉV Ü.¿','0¿Ñµv«9ì‚„ÑÓ<í¨t¿ „†]F\0ˆ ¨C¡Ä¥!','',0,'?'),('”×èÿNt»Kô£Uò…ï','wp-includes/Requests/Exception/HTTP/407.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qx+©D.42\0ö­àÆ','>\ZÔ×Û]Æš–BÌXv’Ø°c¯šñ¹Ó.N2ÂNÒ¹Ð¯','',0,'?'),('”Üµ[Ò²m%‰6òS8:D','wp-includes/images/toggle-arrow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜßÎ‡—aýæ;ëdÎÏ*ò','[b\Z©ŽÅ;ë]¬fÉ0 ²æs|:¿¬†Ôó%','',0,'?'),('”ã@ó:î@=o`¿0+','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/TraversableString.php',0,'Œ/.{#D=DæÊh¸pH','Œ/.{#D=DæÊh¸pH','è+<}e½‘jÙ\r:	WÄ™¿&‹cp6Â°}wä}0±õŠ','',0,'?'),('”ãK«ü\0N;º—xÊ} )','wp-content/plugins/wordfence/js/wfdashboard.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©£Ô½¬PŸ¬°Í`ß{i¹','=P¯z×r”ŠŠ!à?w\Z´/d!·½LÓªÄê1!·','',0,'?'),('”ô¨–!Þ¬©Äß³ÂÁ«p','wp-includes/images/crystal/default.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aò>)*/¾Ü!ì®-ò›º','€ˆˆn$‹¨ƒ_­u	†$Q3Í–E»×r¡|Jm—','',0,'?'),('”öÏ¸×p½ôjÒ\Z,–Œ','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/WebDAV/Tools/_parse_propfind_response.php',0,'šû‰Ñ){FcÝèþ(e','šû‰Ñ){FcÝèþ(e','_úî—ÁºøRhÚüÐ¥\\P€\'bDª5\náTn=U÷‰¼q','',0,'?'),('•\0ë¹¤²ôÑÝÞ>Òß¡b÷','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchTransferInterface.php',0,'É.˜$E5s{Œƒm¤ÿ','É.˜$E5s{Œƒm¤ÿ','èØ½È²ýRkœö<[zò?BP<P’Aý8ü•¼d]L`|','',0,'?'),('•…¸I	2ŸRýNjYÿã','wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“÷»é–vß\rs*“\\','øÍO²Z=Á<š3SñtÏQ‡®ò_—u;‘	m8','',0,'?'),('•&ÚMûX—ÿWçÄO²','wp-includes/error-protection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?5ŸpŒÍ.9Ù;FüÜ§’','Ö¦ Ç7Sá\Zñ»\\‹“cdLb|oà1ÉÓYÜÃ£«’:','',0,'?'),('•	`š‹ÙÏ_f\0lÍ7Ù','wp-content/plugins/wordfence/js/jquery.qrcode.min.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ð±×Ô¹°´—Xp`me<','wP\0ØpÔzuYDSÞz(W ß¥‰ìP¾3$S‘öò‘','',0,'?'),('•rÍÖ¸×yâYw]¨Á','wp-content/updraft/themes-old/twentynineteen/js/skip-link-focus-fix.js',0,'æ=oG;Ñ k±\Z\"ä','æ=oG;Ñ k±\Z\"ä','ˆ“Õ™da‘œ1,6˜Øø•½9ã%ef;VÀ5+','',0,'?'),('•\"!²O\0[]™\04<ˆ°','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiInterface.php',0,'ºu¬×~—÷i8åž4YkC','ºu¬×~—÷i8åž4YkC','%3‡	iFªÌ¥K«\n\02$gós¾A^2‚,~ÄÀ','',0,'?'),('•(‚3ïÝ+RÀ„%­JêÌ','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š!Kå	5y¼¡S*','Îý¿ˆTy‡Oî%u;ÈUì“}ãgæü1Ÿï)˜ÝZÃ','',0,'?'),('•(èP­\00îÓˆ\'6ùW87','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/PermanentRedirectException.php',0,'aÂFN‘¡³1<ËÞn¢','aÂFN‘¡³1<ËÞn¢','Z¬ñÿÃhŽ+QàÂÛ‘æÏÅ£q<ÓÏRÎÈÝõ0¬','',0,'?'),('•3½k×N%_Þ«¾ITñ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncHttpError.php',0,'JÐƒÁ÷Ëª&D}ö','JÐƒÁ÷Ëª&D}ö','FÔ’æ	›œ†VIãŒ·_fËn—Ç\0Ä™ÓÈë','',0,'?'),('•;vÒ|5\rIm–*\"ë','wp-content/plugins/worker/src/MWP/EventListener/ActionResponse/DownloadFile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ±àzRÑ\\ÇW\\ê^»','}IámŸ­ÖÝÑ<Þ\"3…°³8Í]Dõ HG<±ª8Î','',0,'?'),('•ML\ZœŒ‘R.ówÆ','wp-content/updraft/themes-old/twentynineteen/template-parts/post/discussion-meta.php',0,'h‡a.±È.ýœØžË•\\','h‡a.±È.ýœØžË•\\','!n®¾X\nD!¹Ao%¾ÒÑj¢=m[<óö;»0±§','',0,'?'),('•Te-^F‘]Žn¦7ý6','wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/checkout/payment.php',0,'W‹®#¦§³:t{’*›','W‹®#¦§³:t{’*›','–aCšàÙ¢Æƒâº)J6°ƒÏø%ÝoLŸDžÜE','',0,'?'),('•\\Ð”ƒÞhÝƒc˜','wp-includes/blocks/page-list/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AÆìiÀyàï\rSÕÑ&g°','«›ŒÒ`ÁµjÁ]‘qü\\Ñ˜’ï9ì~t?íEþ¬×','',0,'?'),('•^ð]ˆGûóÆp®”=x','wp-content/themes/Divi/core/components/api/email/MailerLite.php',0,'løerkÐòŠ—îèò¤','løerkÐòŠ—îèò¤','Íå®Ž†µw:í³Ô&]ûr”ílœÊ¼ú¬Ë—þä»','',0,'?'),('•h—‰§‘FuQeñª î','wp-includes/images/wlw/wp-comments.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LÂ6]PÞÞÃì.s¨¡Ô','®zl\ZµÓC¹ÚDà¨Ã#‚aöNµç3\'XZ“','',0,'?'),('•rY¸xíã>¬²Hl','wp-content/plugins/worker/src/Symfony/EventDispatcher/EventDispatcherInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hZJBUœ1«¾­%iÿ•ï','÷¡ºdt“xÚ\0{¸ƒ6Ê=:ýª‡ò3jxÂ`øHË','',0,'?'),('•u1HM:E7/š{ú','wp-admin/includes/class-wp-site-health.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èÜ0ç>ùšÈ¯X)Ê','(ÉûžTÓ CßÏ²²ÛŽ–Ü¾ï¯–šØÔgÏ','',0,'?'),('•ˆZÔ¬=!Ri=æ7ùhµ','wp-includes/js/dist/vendor/wp-polyfill-object-fit.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ðw$²1)x5)L’Ü{p','êÀÇˆváã¡´y\"0éMpš@òíRšTà¶’ÉK¹','',0,'?'),('•”,*‰ÏÉ^±^Œ?ë','wp-content/plugins/worker/src/MWP/Worker/ResponseCallback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!Oqšnäüj„ÝIg¼—','˜­Xè§ç!ùÐÆêQØCÑ,äKÜ\'&ë=´°è¾B<<','',0,'?'),('•—:ÃÝä4ØÖ=Rh¶¥åŠ','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-dynamic-css-helpers.php',0,'øtyL\n¶«¯úR5¦o—','øtyL\n¶«¯úR5¦o—','ªLXm<“\\Ë€´EÈŸð¨ñÓ6„$LùÉøHµô','',0,'?'),('•¡¾øHj°Þ?Ö”»íª','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ContainerACL.php',0,'ñø®2«ô\"]P§!\Zyø','ñø®2«ô\"]P§!\Zyø','1x³…{xx\\Š2w`QwøÙSüvëµªaCÓ¥\0ˆ','',0,'?'),('•¥q’3yákŽÛfiå','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-sass.js',0,'í—®ì¹aã¼K#]HÉ(½M','í—®ì¹aã¼K#]HÉ(½M','ûH:.¼à{Xžú€$PªÑ`˜0¸KWÄš\'%Êù;','',0,'?'),('•ªéõÿÝÙ´Á†¹ªêg','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/AcquireLeaseResult.php',0,'›l¡#¥\ré‰Ì3«¡«°','›l¡#¥\ré‰Ì3«¡«°','‹¢0RÐ0ÅØEõ†K}Ì*£JŠ½2¹°U™;ÿˆÂÈ','',0,'?'),('•¾k|‰ÜIî.W3ÛNð;','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/slider/field_slider.php',0,'\\ë<_±Ð£Ë1öÁ<,½','\\ë<_±Ð£Ë1öÁ<,½','€V\r1vMÏ*3ÜšyÈä’¶¬2öy¿F r‹lVü','',0,'?'),('•¾Ot)à‚.5„Ü‡’á3','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/ClearBucket.php',0,'RýJóê¾½¼ª´r\0½','RýJóê¾½¼ª´r\0½','7€WIâààEŠÜ–ó:a,GèB .¦°E\Zh8F%l','',0,'?'),('•¾¨ñ\rò¯Ò/Ælâ9','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Utils.php',0,'À*ÇCSÚŸ™eÕXÍ~','À*ÇCSÚŸ™eÕXÍ~','SxþÛ/Ì{¸ÙYÙœ.bfkKßU×˜aLËŒ¹¼','',0,'?'),('•Ç€3å‹<¬²&³ªYÄ†','wp-includes/class-wp-roles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÖÅ?Tï¥v¿Ÿð|Uÿy','?}]‰†’°æb4\0¯œµéJ«” éÝ5ñ.¹ª1U','',0,'?'),('•Ìf0ÙËÍ­¡Ú~·)','wp-includes/fonts/dashicons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZÔ_rY+Ê‚;ì','§yU½]fôî8ÈÆðtâð§½’ÙÿÃlÕL.','',0,'?'),('•Ñ:cÐf}©å€$\n·','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/WorkerInterface.php',0,'C«ÕµâŸÃÒ_¯|\nr×…°','C«ÕµâŸÃÒ_¯|\nr×…°','rö\r:¤NÃÏEñQÙÂa€=eÆíÔ!÷®¨:8F/½','',0,'?'),('•Ò.ÉIOI¢P²³%)','wp-includes/Requests/Transport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡M¥‰¼¥ÂÚ/ÊÐãŽä','É¯O3e–ÍF»Ôã›†·Öv+¨ãÀð.r/Ü>Ÿ,','',0,'?'),('•æ«äûé‘•¬S›lˆçÜË','wp-content/plugins/updraftplus/includes/Google/Service/Reseller.php',0,'ÀšŸ{“\n\"A™–½#ó&','ÀšŸ{“\n\"A™–½#ó&','f\0òG(î˜$>ês:zÛl8©Xâ‹{¬…p]à½ÃÅ','',0,'?'),('•èMO,ÌãsæÒÔ\rçâ','wp-includes/class-wp-http-encoding.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Usg2eÞ«j9’EA‹»ÓÚ','t¸ˆ1¶™XZ„•C‰9ÖÅc¸x](D[9úÓOÅ','',0,'?'),('•ê&âI= (ÃXl]±ÓŸö','wp-content/plugins/worker/src/Monolog/Handler/HandlerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö”(Š¥Üæì×±e9Žµ\\','za!h’Š©Þ«å¸ëp‰i¡Mn\0£…[ûÐ¤H','',0,'?'),('•ñ²-BfÀ°uóB+©\\','wp-content/plugins/updraftplus/includes/Google/Service/Translate.php',0,'bÙ‚ÛÑw—Ü&B\Zï(\Z','bÙ‚ÛÑw—Ü&B\Zï(\Z','tûÝþ­-ñ~‹¡’YíÒyÄGýr—]Ø`ÚÎ»«zKT','',0,'?'),('–\0¿¦Z•Àt&OÄƒxÊ','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/wizard.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š|‹õ÷\0úAÖLéOñÑ','í“‡ÏkT!	”Ê×ìº{~´›hliïÍä_Ð','',0,'?'),('–ôz¸ÜJ/ÄB&C™%','wp-includes/blocks/post-featured-image/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eöfø|µ¥òŸçå’&','!/hjïëðYqOžÏk<w¿¯i^pÇ«å5\\ÈˆVJÁ(\n','',0,'?'),('–(µÏ„Þh±ð!ê2ê','wp-content/plugins/fusion-builder/inc/templates/options/uploadattachment.php',0,'e›ôzÒÊI\"3\0uiÎ¤','e›ôzÒÊI\"3\0uiÎ¤','N[,V6¨§ Y4Ëâß2ZrÎ\0f-ãC™áy‘','',0,'?'),('–#$”ÐÌ»ÕR•F2O','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bàvþ1^l©&)g½4¬','-»lµù¸é/6¤\\ çÂì•ÿjx†Rû\0Ð®×ó~‚','',0,'?'),('–#ynÛå½[hr\\ØU','wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ª´@ûù‘œ{®Ô¹6','÷Ø¯h\ZÙoÁ>°¶ñ:ì¦±©lü 5D_‰\'-Àw','',0,'?'),('–%¼…,R_´òÃÛ€F','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Cookie.php',0,'÷¦¨2aC?ÊÑ\rfqn','÷¦¨2aC?ÊÑ\rfqn','ÂËižÃ¡¿˜¬³Ñê§­xÄÐ\'“©AªWâyVpRª5','',0,'?'),('–*GzÄ<GÛˆ0®o_ísð','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetContactCampaignStatsClicked.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡>ý£:n&\'ò Euj','rB’YÜü¯Žº=ÎpjeyR¸k¥œÍÙå‹„D‡0','',0,'?'),('–0\'‰Û•²@ÐÃèÿ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/MonologLogAdapter.php',0,'³¡ûÍIÁpFêß·›o®','³¡ûÍIÁpFêß·›o®','4•.I0ìÅèéÄ!0yxèrí](žF‘WÿòJ¶¥V','',0,'?'),('–0Ã€\"\0\r\"sí@a¶Ï','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/deprecated/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B\'‹÷æ˜){b\\ÈÑt!\0','Ë‚~+b\\IeQâ9ø‚ê’À‚i®úl¾9{™­Â6œ9','',0,'?'),('–5ýÃ;Tÿõ]¸ß\0ÃÂ”','wp-includes/blocks/post-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õ¿ìÎçOQüÝRãì','sÇò«ý2ã¼¶•@…¥uáC\'ãÖ<zùÓ|âcˆV','',0,'?'),('–6¶|;¾;8ÅQ¹4™k…ö','wp-admin/install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o«^|1ÇÞ­õa°œ9 ','@˜³,›¶¿†o›G­ARÔŠe\nî´\ZÔÝ½1«=','',0,'?'),('–7ëXŒU±È\'Íð«ö','wp-content/plugins/duplicate-post/src/watchers/copied-post-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z>è\\¤T.†\\^‰DÙ','ýËÎZ9qŸ»±‚*,‡šÖÞÑDN6½â,`ÃB*EÕ','',0,'?'),('–9µeÝEø€bÝ¾l´3¢','wp-includes/js/wp-lists.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µpŒZ–\ZF·\\ä~Â¥','d¿‹vWVª‘<rÚN§3z*Þ¶ŒñõÉá½7ÍÐ','',0,'?'),('–>Ú/¶h¤CÎ¤ç§?¯','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpOverLimitError.php',0,'p’m»/d^ô°\rJŠNØo','p’m»/d^ô°\rJŠNØo',']jˆqån;¶oz³ùÇâ\rùÇ	O(H0‚à£‰ö','',0,'?'),('–\\\nÒm[†ÌÃ»êe:¶','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/themecheck/checks/index.php',0,'i–³=Ÿí\0¥Œ!\\Õßÿ','i–³=Ÿí\0¥Œ!\\Õßÿ','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('–coª\ZPnJô5ôóˆ','wp-content/updraft/plugins-old/updraftplus/includes/class-onedrive-account.php',0,'´)QÓ;Õ¬Ð¯|y\r\Z','´)QÓ;Õ¬Ð¯|y\r\Z','çž5¸¢JARq«õvJ”¼æ3×ÍËªX(	«€Ûk','',0,'?'),('–gSváÑ~†š{ê—b#Ø','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Resource.php',0,'Pñ!^(Ð(Nµi4¾ËþÊ','Pñ!^(Ð(Nµi4¾ËþÊ','ÕþSˆkUzù‚òÔP“âx¶ÓìÊ-‹5þ_\Z4žÐi','',0,'?'),('–h#å½ò0I=±X*±£¨','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-button.js',0,'´¾”šgà¼Ò.q´r','´¾”šgà¼Ò.q´r','`ÁRÞA®¯¶PÚ2-4ª»µõ«‰–:gÈŒbö4>','',0,'?'),('–pN=±¾°3¤åƒqÎ;¤','wp-content/themes/Divi/epanel/theme-options-library/api.php',0,'!¶Pô.æ±RHÇ)','!¶Pô.æ±RHÇ)','TáV€Ú/{ÿ¢ü±MÍ4Ù—‚Õ¡—¤tX]÷@ò[×ß','',0,'?'),('–r¹+þ¹ªêà<TD%™','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ó%¸{Û‘ø–ÿKÆØ1Cœ¦','ï	Õi|ïbÜ­)ñ—±nÈäie#né¦/cÁh–','',0,'?'),('–sÌ6Zø$Ó¾yáD(','wp-includes/blocks/group/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=>½åÄ* ¡f´±[µ³ž','Ï©‘—þz—„J&–O{|K^–Ö¤«0.Õ1t','',0,'?'),('–t1â´{ÐÀB~ö!h{W','wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/VerifyConnectionInfo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b·ßm%’’2‹$Jµêj','þ\"t1;¹?ûaá8‘~RôØï,„cèÇøEæ©šÕ','',0,'?'),('–tÎª÷xæTÕð£Ù\'Jz','wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/AbstractLogger.php',0,'&ë`~S€aS&½‰©¾','&ë`~S€aS&½‰©¾','ªÿ7°Z?Î™Aåu¦*/½ƒ\0ÐG#¨õúœ¬2Fåþ','',0,'?'),('–z9»	Å`üd3Ý\0ÈIay','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ç Á@ÛÊ^¢µ¬8J','¥çØ½ƒ@¤¼B-Kõ¹ÈmãáÃ-È»•ß\ZÂ2p','',0,'?'),('–Ž\Z5oÖÝ#R\'/¤¬l','wp-includes/fonts/dashicons.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓN\Z>wðË@é‘R-/Yö','B\nZ\Z¯®_pnÍ‚ÌµQ?/Å\r3sþ}½×)','',0,'?'),('––»–ÒìíºÝH¾°‰®','wp-content/plugins/fusion-builder/shortcodes/fusion-image-carousel.php',0,'XjÝÈl‡´À$—FÏ-È–','XjÝÈl‡´À$—FÏ-È–','¢x’Ô²n õã;|Ú¸“4R—j¬W”óØ¿=x«Ä','',0,'?'),('–˜hnÚø¦¼Òkc1PÈl\\','wp-content/plugins/wp-mail-smtp/src/Providers/SMTP/Mailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹Ó³Jà\"¸ÍØ<ÿ”và','ºPÍ;Srk}±§¹ÔÕÀöžÊó´G=Ðr´yx“','',0,'?'),('–›|á~€$g†šÛ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/image_select/field_image_select.min.js',0,'^ò#¡bç$G{PZÕW|','^ò#¡bç$G{PZÕW|','[ŠFYyGƒ^Ó°Â²Ë9?í,‘h³(ž070ÑÁX','',0,'?'),('–œˆVÛ2ý	ˆö?Ó™ÔÕ','wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-smash-balloon-twitter-feeds.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+¯5{5¿•úêáMÝ™qQ','Nô‚½”&¤ŸýGÔf£ÎóÓßu\Zÿræâºq.','',0,'?'),('–Ÿ÷`\ZŠÍòüWl.™Nu!','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/BatchModifyMessagesRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GÄÿÞÖì#uíL•·cØ*','¼žô¶® u°³ÅwdÑgb#]cS¸ª¹K¼!»KÕÙ','',0,'?'),('–¢´ÕÈø\0òaçß¹Ä}','wp-content/plugins/wp-mail-smtp/src/Admin/Pages/DebugEventsTab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bt¬Kh\'­˜Y\'røO­','DnhvâuÄ¶_Û:£¾uK5~öº4œ5 Êá]má','',0,'?'),('–ªåzn9’\Z\\ø›—Z,\n','wp-content/plugins/wp-mail-smtp/src/Debug.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø…˜ïð^ ˆŠ¿žô6','¯ÇqÊÿ,J÷;<Ï/\']Ãt5ÈƒkÔôj­¼','',0,'?'),('–­Yh¯- rˆñ ÐÝÝQÈ','wp-content/updraft/themes-old/twentynineteen/template-parts/content/content-page.php',0,'Mçöj±3×›;µx˜>','Mçöj±3×›;µx˜>','®³PðÇ£Ü—>$¡Ò>ŸW~7Šã73½è†ÞWqŠÅ°','',0,'?'),('–­oxÉõ“àÆ—ŒWŠÜ7ï','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/ServiceInterface.php',0,'ªt½‰ *Ûß#5/\'ã‹','ªt½‰ *Ûß#5/\'ã‹','ñÿ¥úÇ#iÞ–ÝM@°ØB[ƒ/ ¦ ª±u9gžMÀðm','',0,'?'),('–¿J¸c@\0RYÏÃ¯SXD¶','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Filters/DateFilter.php',0,'A^ïàÚ×tdzÔz¿‹Þ9@','A^ïàÚ×tdzÔz¿‹Þ9@','^uï¯íâÌ¤4<‰÷]\"_B:ÕÞ#èéß','',0,'?'),('–Á¼™E˜?ÆŒÐ®á¾ ','wp-includes/js/media-views.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õíÙ°kKˆë\\¡ãìR','ÚhXfúóÌ3tëÙRS<; £f&6]2ì’—ýœâ+·','',0,'?'),('–Â Ïv…‘Æšbu)','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔGÉrõ†¾åœ]Äé/»','yusÜçôÔ¿íÐÌÂæ:î\0)Þyä¯zs‹Ý¿SkHä','',0,'?'),('–ÅìJ\nÃîéËŒFPé','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/cache/src/CacheItemInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mºØ$1Ží,?”ÒÚ·W','ºúˆ<^!$w!cLë`u^jqzÜè9™)uH Þî','',0,'?'),('–ÎÄR:^æe+x2—Ùc','wp-includes/PHPMailer/SMTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßÓ‚\'Ì;RÃÐ¤”<?','\n:Põ(\ZAUÐÙµ„< ŒÛëpe\0–¢W‹Ûo/b»','',0,'?'),('–Òé Z·“ “¥•¸®Û','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListObjectsIterator.php',0,'è)iÑp¦JÎeû¼ºŠ-','è)iÑp¦JÎeû¼ºŠ-','Ú$PéO@’¦$j7mÌà.|É <©æv&I\"É4„$','',0,'?'),('–Úx¿ƒ*•—ìÞpÉÖµž','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/ChangedFilesIterator.php',0,'®’`}œíÝVtPSa¨pw#','®’`}œíÝVtPSa¨pw#','=;@€5’WÃ\"d?¾’³\0À°˜·K1¾ñØ¤cô','',0,'?'),('–ÛíÅFx¼}ƒUÑC`','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/pt.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«¦ý ‰O–ÆâZ[s¸','þî£oCRÃ”t¤²³ÅíëÅÒ£<BÓ Æ+€´D','',0,'?'),('–àÔ“4@#&†¨ýç(ÿn','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/section/field_section.php',0,'ÃøýSûïè­º„„Qîl<','ÃøýSûïè­º„„Qîl<','©N@Lf@\ZïSa†˜¨…iPÆ<a-µ÷èzýÌ¶0ã','',0,'?'),('–áJt:½Çµ]DŠãË}Èf','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php',0,' 1»Î¯Œè\rûF÷þýA',' 1»Î¯Œè\rûF÷þýA','rã3›ÚÛ¾hi¤-\\kÁúBžqÓs²C\nÒu©ôËjG','',0,'?'),('–âCg¿¸ñ‹}|ÇE÷ý','wp-admin/js/word-count.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I)ù\r­]ÐX0Áh5©\n¸','Ó\\DEàÿ¦¶ƒlV¡½ü¨ôHk›®\\N†A3“³”','',0,'?'),('–ë	Fºþ4†õ¨¸Lÿ{þ','wp-content/updraft/plugins-old/updraftplus/includes/updraftplus-login.php',0,'¥L8Åôökåã¶åÜ[ÓæV','¥L8Åôökåã¶åÜ[ÓæV','K:„\Zû˜’ÓóEwqË€=€yÖ/^ž%ó÷£y\rÝ¹C','',0,'?'),('–úlìN‘ÇÆö;Vðvdš','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/CompositeFactory.php',0,'Ý-\\¼AïbQ÷*wDD','Ý-\\¼AïbQ÷*wDD','ðÚ(ë]háµ?“\"à:X³¨Ó\r½ÄÂ.\Z×pßµ–Ìð','',0,'?'),('—ÿé—4æ(&ºQ\Z','wp-content/themes/Divi/js/custom.js',0,'PX—–4HVcú¶','PX—–4HVcú¶','Jtèþ½½\rTãW#ì¤Å¬Oøe+\'Nàa¾“3£wOë','',0,'?'),('—	v¾O.„|ß¤Òµ‚','wp-includes/js/tinymce/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o•‰àÈßx:Í`Òºÿú','Yáâ§#wOÞg^\'åbºì‘:…^ë	=è·¨|ô¼È','',0,'?'),('—\Z¹\nGŸœŠ/›kóÙÅÐ!','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InlineDataTooLargeException.php',0,' \\Cî3•Q¤m³<¦`',' \\Cî3•Q¤m³<¦`','d³ˆ†Ôö•2ôÉnÙÈIMÜü·®V	\"}zNe±£','',0,'?'),('—#ÁÂQ?‰E­•…Y¹X','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/SetBlobMetadataResult.php',0,'sÿÃ3Þ\\À©\nâüÉçÈ','sÿÃ3Þ\\À©\nâüÉçÈ','ÅîðÂŠ\ny“I†]‡ÀÝÅHÝõŒ=È‰Fg¼½','',0,'?'),('—\'|Þ}\\ï\rÞ«0äu¿','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Category.php',0,'b¤9†P”Œ0V&X´&ÿŽ','b¤9†P”Œ0V&X´&ÿŽ','éI¹·Àµå/Ì¦RAVÂ\r,®p™ëšÎÇ€ÊñXúõ','',0,'?'),('—(n3¨õ4?ˆ.]B³0K','wp-content/plugins/worker/src/Monolog/Processor/ProcessorInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òý¿LSËLÔäðìÌ','ÿUõÍ™vô!h±~}wD€hŽKOäéWXº¡Q','',0,'?'),('—-×Ùè¹*ACCøŽIkt','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferBuilder.php',0,'_AS¯¸±xÜÛçñÚó€‰','_AS¯¸±xÜÛçñÚó€‰','‹ºõ¯6k¬Iê€±AÍŒšeºL˜{%3Çøµi€:¶','',0,'?'),('—0Ü0{Xdy¾¨”Á','wp-content/plugins/updraftplus/vendor/symfony/process/Pipes/WindowsPipes.php',0,'‘åÄ\0iê«ËvV~Ð¡','‘åÄ\0iê«ËvV~Ð¡','s”‰¿a{êA-Ò\"x˜­öu	ôª£EC^\'Ñï¾°ü','',0,'?'),('—6Æ„µXßZ»“U','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Content.php',0,'ÜgzP´ž_£Õ/jŒ½','ÜgzP´ž_£Õ/jŒ½','ñÀ”(aUúÝ™è‡µý‘Ñ1Î©FšÌƒZ§Ÿ|½—ïç6','',0,'?'),('—<5·xèsut\\h¯þÓG','wp-content/updraft/plugins-old/updraftplus/includes/Google/Logger/File.php',0,'×ö8_²ñpÚÌÆ@ñ}','×ö8_²ñpÚÌÆ@ñ}','ímòÛûO»·útOŠ¦—žh;Ñì)œÙ‹ÝÂ,ú\'ûøJ','',0,'?'),('—Bš\\4%–³¨pÇá§Á#','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/Blob.php',0,'t‘,6ÙoÕìè@¸Gé¼™]','t‘,6ÙoÕìè@¸Gé¼™]','¸¾P5Kˆe—¼m‹¦ljüŽÒRï\Z3ÜM9‹Ö¡’g‰Åˆ','',0,'?'),('—CóQ%ŽŽ@	ÄJa ¹','wp-includes/blocks/archives/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬ÕœVHÁ³¢¬ZfãºÍ','4!\0ú}!Œ;9oãl„_¼lâ4¦ßf’ÊL¾ÙV¬l','',0,'?'),('—K`—-Ð?3*Lÿj—','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Plugin/UpdateChecker.php',0,'í½™}M¢çLr°LÜaH¦','í½™}M¢çLr°LÜaH¦','ÿÜð”zÆV;Vâ©f	8 ð½–7F˜ÌØ','',0,'?'),('—Lß¨õÏ¤Œ(º¹R­','wp-admin/css/code-editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ûÇgq•ÙÏi¤sí”‹-','¥~:\"”`Ôöhe&@øú*œÀìêûA¿¯îê€«','',0,'?'),('—UAŽ.Ú†ÀeìSûÊÙŒ','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/advanced/search-replace.php',0,'bŠ~K,€s(i’»Q&','bŠ~K,€s(i’»Q&','×\\õ]Làyœ?Y*#›%L\"Vb¤\\?¤ð£¢`\n²³','',0,'?'),('—_\Z5Õ0sòB$7.ð©ÖU','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/PluginExtension.php',0,'\\áÒ[ÔZæ€…x\\?	','\\áÒ[ÔZæ€…x\\?	','áÓÌ97 ƒ^ÝÂ#Q3ïä¿¾1«•P9¡¢€','',0,'?'),('—g‡2rSj\rŒ$`Fò','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/CancellationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M-)SÔå”V!µ´¿­','ë{]ð2úQðÂÄ;¿\'%“9!ìžGN²S*I5\\ö','',0,'?'),('—k³|DD£•*@4ë','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Database/Reader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦Å\nAgvú˜1PƒØµ','º¿½§0o*\r‘ÄvAöoÂ3²›ß:ÍÞøjõu½§y','',0,'?'),('—m5ùF¥F\'ê\\²ùÃF','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect193r2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€Z§Ã;‰ÃÚŽ¿@m ','&îã½Ö¶ÏMOµ}ávïó­ë\"ÛÀ£G§SÄ Øãõm','',0,'?'),('—}ô„Þ_ç…pHD³<¡¦','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/SnapshotError.php',0,'Ù\nÇàô8ù×&Êi\"ƒƒ','Ù\nÇàô8ù×&Êi\"ƒƒ','¨?ÍæNšÈŸ(U±•¤š5uQ?6y?“ÚÏP­ó†Ú²å\Z','',0,'?'),('—Tß”ÙÄêÑH]=Àþ\"','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplateInterface.php',0,' â€ˆº*Î½ójDûX¿',' â€ˆº*Î½ójDûX¿','6¡›	 ^—Q¿\\ßs!ëw$ÿNå9žìœà0$ÿ','',0,'?'),('—€|`QH•Z¥ØAwéö','wp-content/plugins/really-simple-ssl/grid/templates/progress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±nô•[EŽ­)Á½Cr§¤´','9Fáîd!®ÛúŠk~O\rÀwëÊµší÷ÆK¿»ï]¯','',0,'?'),('—™pŠ©KÖb™ø\0!—(¢õ','wp-includes/css/dist/block-directory/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ï¨¢€çƒØ cò±l ','ùÝR\rãìˆ<BÆàw<uÿ\r$$€þÅ¸a@cïT','',0,'?'),('—­(øì\niÚñ	—ì Ù0','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Version.php',0,'\0Ÿí5¥¥±;ZùW·¦•—','\0Ÿí5¥¥±;ZùW·¦•—','ñÍ!Ó\nè¥—¾uÈvê2§–äŒÞêœ¢½}øë¿','',0,'?'),('—½$ÃänÆM›ÓÛãuIY','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchBucketException.php',0,'gg‰qèŠÛ§òôcÌ•­ó','gg‰qèŠÛ§òôcÌ•­ó','üÄ¬	í¼F~ÁL¢¯¾¿f&C¼²8G„Ö`°)»£','',0,'?'),('—É’˜¸À}ÜÀtÖ¸qÝU¸','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/ServiceBuilder.php',0,'\rBž^}¼‡<ÜõCOü–\"','\rBž^}¼‡<ÜõCOü–\"','§5Â¸VAwÏ“\0—äZp£CžRr3œïHŒrX¸','',0,'?'),('—ÝÊòìwcñ¿ð1¶sŒI','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Models/ServiceProperties.php',0,'Fº£Ú]Œ7Ü‘ûV—å4»','Fº£Ú]Œ7Ü‘ûV—å4»','ûç‡´J¹	|ô ¿14jâkª“¨â-ÛÐlÉ ÏíÕ•','',0,'?'),('—å”åÇêÑ\rˆy²?„ ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/OpendirIterator.php',0,'\ZÃ¼ý¢@P#¼žÐÅ2','\ZÃ¼ý¢@P#¼žÐÅ2','pû–=\ZT®a’Ï-ºh8Bôô‘F‘ÀR.éŽ¿ãÎI','',0,'?'),('—çˆ«|uPr<ƒñœz','wp-content/plugins/really-simple-ssl/grid/templates/other-plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓÇåÿ-ûÆj½[\'\rJBX','xÚ³!ÿÞ~<²ÐušZ^uÆ}”íŸ´€‰V@ž®Á¨','',0,'?'),('—í&D­H ±m)í0%œel','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/StateStore.php',0,'.¼ùÛß™go¿ŠÃ2','.¼ùÛß™go¿ŠÃ2','\r$‡åy:¶‘¹Ož7À/<(©—“mn6i¸anPj','',0,'?'),('—í|œ~”‰÷Éð‡åô','wp-includes/sodium_compat/src/Core32/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')6´¥):öÛÍð¸Žý®â','H0¢“L³Ñ—?¸ãž¹.1ÇMòIeÓÉÙ£’','',0,'?'),('—ñb¦ü’Áÿ£º|e~ë','wp-admin/css/customize-widgets.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}¤¬¥Tãç{Ô:4%åÊ','kÙÂð¢V>Á‡,Ë@f\r,tÀ~¾	²£±Ž`^','',0,'?'),('—üÑf‡vµ oóº2@yª','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hr.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TèQÚ¡‘ Ñvv’ì«v7','Bb¡²Ïm¤Z(\nt {›\nH	¸lÞLƒõü‰.ô‘Z','',0,'?'),('—ÿµalòVš?Žfý\ZÑ‘Œ','wp-includes/IXR/class-IXR-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½Èdß¹à—Õ$c¨9í«','\0ä{MÎáU¡\rN.€)”-¤õƒÄ`wHòîÕ','',0,'?'),('˜\0hî”Kf•\0ðø','wp-content/plugins/wordfence/images/forward_enabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U\0/3e4e™Ï×ƒÞö','0¼´Q7018—Þª9-–z9Ø½qðÓSrÄ’ÓPõÓ','',0,'?'),('˜P®SèpÈÑÐR','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidURIException.php',0,'Ì9ê\\L¡fÄx“f,fG','Ì9ê\\L¡fÄx“f,fG',' é³ÃŽXñøà´ñQ?øïOÏž\n/0€=ASRÇà','',0,'?'),('˜›¯ÐÂŽÙêHË06²','wp-admin/images/browser.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Á²ùÂžµK\\„b•$þF','&$ñ†Ä‰9›¡àˆ×~_SHÒ_ÙÌ“ï%L¼¶þ\'&Á','',0,'?'),('˜8^Žr5¥ãx† ¦ÀÑ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uçÿ—™OOí½D1gR?~,','Ý¬ïISôP\"õa•» 7JŒ6çQSv„“ô_³y’','',0,'?'),('˜‹µï†8(\Z¹jèZ]}','wp-includes/js/jquery/ui/effect-pulsate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\0žq2ªl½©·æd','È©~¾ô0MâÉø³0\"–õÕ7	]1üsPÆ÷JòT','',0,'?'),('˜\"PIÊà9³ºýGwQM2','wp-content/themes/Divi/core/admin/js/wp-color-picker-alpha.min.js',0,'E¦ÙÈ§Kq»6£áŠ[Ê-','E¦ÙÈ§Kq»6£áŠ[Ê-','aK9¤U–¾pÿÙæž/ârÌõóîšGã#—úÂo6Ú','',0,'?'),('˜\'UŠ†¢å$eN‰} ™','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+õ ý‘~rzSÝÓ©_­&','g…*þÕƒÈnd)¡0Uæ<·ºá”7VÏ[\0„²©gû','',0,'?'),('˜2n#¤02¢˜ŒÊ«rn','wp-content/plugins/worker/src/MWP/EventListener/ActionRequest/LogRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒ(¹,‘Ú{â² €Û>Î_','¾­í\'$BÞ}a„ù­¹¸\'»žp\0(!z','',0,'?'),('˜4y(ÒwäA6f›€9-','wp-content/themes/Divi/core/code-snippets/app/boot.js',0,'±W\0§Ù|ûT*õññ8r','±W\0§Ù|ûT*õññ8r',')ÀïÚÏãC÷FK­wˆÅ`äÜ+1c—ðÀäÐb¤ŠöÖ','',0,'?'),('˜9H¨âMÕVÀN­õ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Aws.php',0,'¹­m$vl×7aì˜XCÒ','¹­m$vl×7aì˜XCÒ','Õ‡ù&J¢p¾’!œs™Lw˜@ÌëªGåÊß½-','',0,'?'),('˜:µÃÄîÊxëŸc6àí','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion.php',0,'fûà¬3ïûcº‰~Dä\'çç','fûà¬3ïûcº‰~Dä\'çç','ð!cŽ°èi5˜ÐÜLo#3øîïìÐö—Ïo2Öˆz','',0,'?'),('˜>ÅåÃÿÍ™x¾œèft\n','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/TempUrlMethodError.php',0,'2ÁEøˆ!EsïGe¤?_','2ÁEøˆ!EsïGe¤?_','P#Y¥¢fGÝGÃ“oõJ°d02•®JöEn>¦Š<','',0,'?'),('˜RcªNG€fèã;™—x','wp-content/themes/Divi/includes/builder/module/field/Overflow.php',0,'ÿ%ºbuo’÷àèÞË','ÿ%ºbuo’÷àèÞË','Z9o…Jˆ¶¼š“žýUÏÈ>f;IñLÄgV=\r“²','',0,'?'),('˜T{	=þÆÿdþ/–$Ú','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RecordTypeError.php',0,'K6-Sùó•h\"t0Ë¹w','K6-Sùó•h\"t0Ë¹w','3¿\nÝÂeÿ‡Â*9_	Pw¶/ÔhòY­è&','',0,'?'),('˜Tñak§\r‰÷80o,Â','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä2yE\0ú¡Ûç½uôÙ','8fêXµ¹Äl¬6Ä(ëA†\n-’©êO?8—–˜','',0,'?'),('˜UÄSˆ\rBç Ìc>\rÝ','wp-includes/blocks/latest-comments/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å¹öH‰òO7\\§ (ÝIéq','ÁoÝH88!ŒÜx²U‹«¶D!ÌØøW$~Ûk§I¸','',0,'?'),('˜XöRÿevø• O¶ôU','wp-includes/blocks/quote/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Øeiª61äð®t$LW','€êë@ÔuÖt\Z¶ùG@G»¬¬ùçêH3)°«»§g','',0,'?'),('˜X¸ÔÍìg5ûôŸ¼(=c','wp-includes/js/tinymce/skins/lightgray/img/trans.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿ž7I Þ1F¦Guôj^','œð ×Ã»§õ«Í¥J«ï“OmOš:Ï™éçÜl˜W–5','',0,'?'),('˜pt_ Y‡ÁŒÊ7LãKt','wp-admin/css/deprecated-media-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ûãâùuÖ°ãZlèú\"åŠ','¿õëÜé‘KŽßá¹¥ñ»=ý¸Ù$ñÏ»‰“]°C‡i','',0,'?'),('˜z×xEL| 4zÞÞÁ@Þ','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php',0,'<ÌîØ:\'‚ëÙk','<ÌîØ:\'‚ëÙk',');qf<J½t¸FÜÅêy`Î¢\\»ñ)B¤Õ`)¹Ê/i','',0,'?'),('˜áŸóÝøU$ÐbõÜQª','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersHistory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a”ôŠœ9¨%žù','Ká¥©¹\nÑ’E?-ëJŒ’Á1cÞeo›Vï','',0,'?'),('˜ó\Z:|H7HCÍ?\rÚÕð','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/Grant.php',0,'œPýkrË\\âÿ¸ª‘Üšã','œPýkrË\\âÿ¸ª‘Üšã','¾Æ2¹¸§!›+ôÂ€q9&ÍNùÜq&ƒÂ°È\ZµÎZ','',0,'?'),('˜‡FyÔh¦×Ç½N’ ªú','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Client.php',0,'hËû~Œ gxØ#°}ßuÉ','hËû~Œ gxØ#°}ßuÉ','l*\"ÿJ)m1‡ånÎˆ³›;ê$¿OŠXÂ•„¯¤1','',0,'?'),('˜£ýT¹D‰ÀFÒK1Ç','wp-admin/css/media.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï¢ú Á¤Ô­øù-pò[','«Bd7-Nd}»YÆäÔlÓb[6CŽ‘FäÀÓ\n\r4~>','',0,'?'),('˜›³Â÷Ôú\"¼%­â¡Ÿ—','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-content-boxes-preview.php',0,'ˆðÂ4_[ÝÁ/êAšrŽmÑ','ˆðÂ4_[ÝÁ/êAšrŽmÑ','›«^&ý˜¨¸”H»ïŒÖu¤iFC8Š=Ôý}—Åuž','',0,'?'),('˜›êØß†ý»î|hB1º‹','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/Reference.php',0,'.˜[…K\r—Áxï•','.˜[…K\r—Áxï•','‰Ÿ\ZíÆxáf©Ù‰&c¹G8*gŠÈ|šUÁ}ó“','',0,'?'),('˜žQ`;Î—-?˜ÉÛ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/CredentialsNotSupportedException.php',0,'(åßŠvšÄ°Á}£È!','(åßŠvšÄ°Á}£È!','H³Ìv¸Ïá¹5¥îÚ«9#*sw2Èª¦Šnk«cË','',0,'?'),('˜¤SÑ:6Ôé‰Ô¡\'á\Z','wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-mi.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'½Çõ~§+A)Ø¤&G','u‰À­$\' =“/¥T÷7}¢\nòµs\r»ý¼ø–3\0ß','',0,'?'),('˜´˜Û£ åRV(gŒ²à','wp-content/plugins/worker/src/MWP/Stream/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('˜¶Ðñ{N\rU‘Ób4(À0','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/css/validation_css.php',0,'T9{U´|µÂ÷gaº™PL¾','T9{U´|µÂ÷gaº™PL¾','X^È\r‘Yó\ZŠæHöWc:|Yí¶<›NÁ¾,cLš0','',0,'?'),('˜»T\n§ièyNÕŒsÚŒ','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GssFilter.php',0,'¿±\rÓœÇv† ég0‚•','¿±\rÓœÇv† ég0‚•','¿&¯©L¼µ+‰È\rm<BZk\0†\\«Oº{ä—ùzÝ%Ÿ','',0,'?'),('˜¿¢°¹±!åk@.«®@','wp-content/themes/Divi/includes/builder/feature/background-masks/PatternFields.php',0,'{˜“Ñ´“ïýë^DÒôÄ*§','{˜“Ñ´“ïýë^DÒôÄ*§','Œ]ãªÍyKäŸGì9Ø23PÑï†3B!Zos;}±','',0,'?'),('˜Ä/GÎžÓ¶[­ÇœîÙC','wp-admin/js/gallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C*½³ô?4–k³É&-s','ôv2ùUWènö4V’[an•*š?¾ò‚­ÿX»À','',0,'?'),('˜ÍÉ[²/9} `:wÙP','license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðZÞÏ{š\0SØg«‘D¡„ã','ÉÀÑ‹°®I<ÒmÇdbƒ}ÿÌ‘x‚ÅVº5/Á•œÝ','',0,'?'),('˜×š/ñíFs·&F…r“»','wp-content/updraft/plugins-old/updraftplus/udaddons/options.php',0,'¯‘»«XìJ§ŸÚS,Ôzû','¯‘»«XìJ§ŸÚS,Ôzû','[2¨eÿ–#¸ÖUxIq[d\\© ».¶­ÿ!O>»\rX¶','',0,'?'),('˜ÙÀv¨ŽÒK:àøZF','wp-includes/blocks/site-tagline/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë‚1cë÷Z¬>»R øEJm','ˆ„U)ø}¢$EMb0mCTAª0\\pN2’O^ïŸ˜','',0,'?'),('˜âï7·%ìÌ¬ŠÅè&','wp-includes/css/dist/block-library/common.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'B²Yà®äúÊÃ+','‡+ŸÙ“¢OœáÍwAÙcÀ9ô¦›¹8ýæÒñ','',0,'?'),('˜é8-ˆoú:õ·RpXÉ','wp-content/updraft/themes-old/twentysixteen/js/color-scheme-control.js',0,'Z•ÉpáíÍö2/ù>)~Oz','Z•ÉpáíÍö2/ù>)~Oz','L§F\"=ô‘¡§	*ôFç_Oy‘†{ìðöóJ*v	','',0,'?'),('˜÷·šƒ«.¥MžæÚ_†eT','wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/SignatureMethod.php',0,'xwõ¢+Á;ax¨÷jt|','xwõ¢+Á;ax¨÷jt|','|tÚs|œÇº­ŽðïEÄ*U¨öÆ”«*ÍûkäÝ¹Ó','',0,'?'),('˜ûB±=£Õÿ€¤*O´/>','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/TooManyBucketsException.php',0,'7„G`úE3o 5C³œ?','7„G`úE3o 5C³œ?','„Ð±Êa`9ÂISÅ;š5RÕv¢$:N½™ðE’Û†ÏÛ','',0,'?'),('™\0£ùµè Ò.}¥fwA','wp-includes/date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n[*(Ò¾“w.mÛy´zí','ù.£\0ÓqB_]£þšÏä«ä\0ëâ–aþ}­‹\0Œ','',0,'?'),('™ãVÐÂÈåê¶\nå$]ù','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PngoutFilter.php',0,'<qôb(ÔC‘ùº÷ª','<qôb(ÔC‘ùº÷ª',',žå\r´Žñùæ$ÃKð¶jÝ¶ÙóßOÈv“v	_#\n','',0,'?'),('™\\+Ð\ZH¼Û\"ãþ:Ø','wp-content/plugins/wp-mail-smtp/src/Providers/PepipostAPI/Options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*ä…(ÐöXÕó\n<\0)','E[ë&0oè¤QìÕ=Š·ÖÅÞÿ%·’,°åuËÏR','',0,'?'),('™xí2*¹Üt’\Z>Î','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpUnauthorizedError.php',0,'/ƒ‚±ì‘ûö{Ü‡ƒAK&','/ƒ‚±ì‘ûö{Ü‡ƒAK&','‡áÄ<tî0‡Ù¸‚S}!/£°â\njÊ˜¦kÇDPBò”','',0,'?'),('™}[ÄII´Ç¡ªÉ‰>','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseListError.php',0,'*s½o¬T³P29\",]n','*s½o¬T³P29\",]n','æ½œn1:7?Ü·˜!þÐÕðáõÃ¢vÅÙ','',0,'?'),('™Å*Øß’\Z=1Ù','wp-content/plugins/worker/publickeys/godaddy_g2_root.cer',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªö\r7cÎŠ£HŒ\"mßQë ','9„ñ ¨«~QB²Î›-fÍûäæ%<WŒ]îÉß´Hy','',0,'?'),('™.d=æ&”û<gògs|','wp-content/plugins/fusion-builder/shortcodes/fusion-convertplus.php',0,'Ã-¶Mp,ÕGwsY­Ö¡','Ã-¶Mp,ÕGwsY­Ö¡','ñœZÄä³@A¬õ.½ÀæÑ¶‡f®ó´C±¢ÆÓÖÈ	Ç','',0,'?'),('™7of3}ñ»	èN¸%„','wp-content/plugins/worker/publickeys/partner7.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZµÝ¢½2“Š}02éó','5ß}P4TßÖ\'—Õö`›É|à\"ã-z´µz¤»±','',0,'?'),('™=¢¯&”#z@<×:®','wp-content/plugins/duplicate-post/src/ui/admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')KÅ/\"$1\'Õës¬','êíM£o‚Üb½,×è£+6ýëi¡ŒÄìýà£µÙr|','',0,'?'),('™B–<Rã\'À#%×¸æ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/CompilerJarFilter.php',0,'.ïíù%Ý8R±­a˜YÍŒ','.ïíù%Ý8R±­a˜YÍŒ','•«dM\"Bæ]_\0zø2kà¶NÐ\rZ™2» s‰ÉÛyÑ','',0,'?'),('™MEí¸Ó4úDyTDó²1š','wp-content/plugins/updraftplus/includes/Google/Service/TagManager.php',0,'s-ÏhÃá¾Êº@ãúÃí|û','s-ÏhÃá¾Êº@ãúÃí|û','êÚ`²/H@²’€å%LïYšÁ?o}ì·H$','',0,'?'),('™Qß‡Y—„fƒ‘¦Ë[è','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-submit.php',0,'Ê\Z²óÞ+|úxŸúÿñ','Ê\Z²óÞ+|úxŸúÿñ','ºŒuý/DLŽ´…:ËE€\0¬~ïæÿeádöxüfQ‹','',0,'?'),('™S\0º¾“ß®Õþ;ps‚€','wp-content/plugins/worker/src/MWP/ServiceContainer/ContainerAwareInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤SUi}Ò4µ³.æºÅÜo','Ñ\'0š¬à§™þÊÈo¾ÿ·ÇJ£€í\")û9}ö,Î\0','',0,'?'),('™V‰ _;ÂŒÜ«é7Þ_','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateAttribute.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÖU¢Õd˜–1ýa2¾S6d','-±ø++•e|–	”ÜÙÕƒ#Jf€Qcô*q9ˆÙÓÔ¯','',0,'?'),('™[‚Ÿ®QH\"pS1Èªëc','wp-admin/images/arrows-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','— Qð†}Îñydb#6„','ø,cË¿\Z¯i(~æÖ×)•Œ©Î\'€Ä8[Aé/¨IÑåx','',0,'?'),('™_ÿ—çÄ>[ý®¾å•×·Ô','wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/GetTableSchema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7æ;•mŠD×ä¿‘}ÉL<','ä@7¿%1ï5‚÷a9ä49a0©{LèWª;\\_Ã¿S°','',0,'?'),('™`4­°8¡+^øöU','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/Grantee.php',0,'kâ6õr;ÖHž—ÀpjÔª','kâ6õr;ÖHž—ÀpjÔª','vý´°aN¹Ä?›ÂØOß,£ -”Žù1ŒqV1õ:§>—','',0,'?'),('™oŠûüý’}u¯—®','wp-content/plugins/duplicate-post/src/permissions-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â—ö‘\0²$õ*…öAMv','}ì¾ï3TÔömqgÙ{ÜRY•’â„·NâîRÀYÄ','',0,'?'),('™yç¶Þ	MŒ ²¿–å','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/zh-CN.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶ZEñÌ¡£Ê¢ÔY','³èóëV9……÷ËÆ%>·)¨˜vù½‹´îë–','',0,'?'),('™€ûú\\ËqTƒµ:j¥œ7','wp-content/themes/Divi/core/components/Portability.php',0,'\rg‹ìÃ‡¿kFâ\0 æ óq','\rg‹ìÃ‡¿kFâ\0 æ óq','”†kø\"KÙ´î‚ËŠ:\'÷cJç3SÔ(ÐÏ¢ì7','',0,'?'),('™‰}[gÿ‰Àå”…)ð','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/typography/googlefonts-array.php',0,'´­<ŸŠÑRz³Ã%dULw','´­<ŸŠÑRz³Ã%dULw',':ò²B0m%¢=¶•LXOŒ@Å;‰twèÊq0ÃË','',0,'?'),('™˜[ixTºqÔÃ~Wv¡e','wp-admin/network/plugin-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xó±JY•ðFqÅø^ÈÈNï','zúâ¿w‡iLþ_È*ã	!$cÂñL*ÈTàqDN_','',0,'?'),('™žF~…‘Ÿyµc7v-','wp-includes/js/customize-preview-nav-menus.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–â²À»Ž447\"-•n¼¡','v\\½y’¤pwâáwõ.©VDCië©Äœ“÷‹ž×¢','',0,'?'),('™Ìc”¸új+XU ','wp-content/updraft/plugins-old/updraftplus/js/tour.js',0,'kÔ[ ›¹ÔÎž2æ	Ä¿D','kÔ[ ›¹ÔÎž2æ	Ä¿D','ý=¿CrÞJÂìH¡¤á)LÃ¹T-‘1ŠˆÚ-Jš','',0,'?'),('™Ñ‡fOÇÎß ë%bi\Z¬','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Lang.php',0,'Ù\nãK„TºÇåèqÂ','Ù\nãK„TºÇåèqÂ','r?å›swañ\"]†v³e\ZÅ›elÍøˆÚˆB÷wÀy','',0,'?'),('™Õ#F¡»<Ðþ	û','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ObjectNotInActiveTierErrorException.php',0,':À™¤vúŒÎ.\råÞQè',':À™¤vúŒÎ.\råÞQè','Yé¢‰J—1„ãÍçNÓè}g¬‹Àðï7³äÍe(à','',0,'?'),('™á ­íêI€P \'Tg\\#','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/sortable/field_sortable.js',0,'±°ñàC(6 2i#VN‚','±°ñàC(6 2i#VN‚','CëOeIQmŠò\'z ?mB_Ù\r/i¼î@˜ŠJC‡KU','',0,'?'),('™ä‘–ëwƒ7:\'Âh*','wp-includes/js/dist/vendor/lodash.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»µˆÌC`ß]1~¿õõÁ¬œ','×³[£p:â­	Œzê±ÕÌKÛQWwŠt}H¤ÓI­(	€','',0,'?'),('™æiœ%›ùÃo‹)Ü#…»\\','wp-includes/blocks/image/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','û™Ë&_\"sµð‘ÚþÃÚx','?QF—Ï<%ÅNVg-Å£`L:…\n÷²õìê‘þô','',0,'?'),('™öqÚ6 	r)šf¹\"ÒÎ¼','wp-content/plugins/wp-mail-smtp/assets/images/wp-spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ½\"0>3šn\'{úëlü','Ž!/‘mTç >TÁ2*ùðöVÄ†mžPÇv…#Æ','',0,'?'),('™ÿÇ‚¹M¢¾}úGýßàA','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Role.php',0,'7•E®èSÅå¿ùe•£À<','7•E®èSÅå¿ùe•£À<','>f¨§šÆ^1Pf<9DøáJ’RDy¾MŒŒ«´Ê','',0,'?'),('šCŽ-4ÝÞ^#yN ÂT©','wp-content/plugins/updraftplus/includes/class-udrpc.php',0,'6S®Õ~XCAYÚÉp','6S®Õ~XCAYÚÉp','-ÏT\0×ÄÅ×YG\\^m–~íL‰‰Ihð9Î¬>8½Å','',0,'?'),('šµÂ2¼Ýôø:ý¬”¡·','wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…b4Ç\'¡—&ëŸð','Û¼ó›Š4P\'ô¢ÑáhNêaë>·¨ÛEþ5à°›','',0,'?'),('šMÌ}Àn¢\"4jdüR§ð','wp-includes/blocks/post-template/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªìNæ¿¥˜¾¢M˜}\\Œ','K™.Üc­~õ®áüÎà[&\'ÌÌ1íSñSÿÌÛ','',0,'?'),('š\Z-®”x7Ãù(AÄ4ù»ç','wp-includes/js/swfupload/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ëà[°`È^ˆ-Ào÷QWz','©Ñ:)²›6Ÿa\"3r…Ü\rP\rN™4‘yJ‹Ö·“Uéq','',0,'?'),('šiåD³¸F%TÄ×ÞÓ','wp-content/themes/Divi/includes/builder/module/Comments.php',0,'Ž	ÈÄqJ9¦\ZP”—ª','Ž	ÈÄqJ9¦\ZP”—ª','€-BP8 ›\\Î˜PË«éˆô,’®Ý:æ,¼º:T\Z€','',0,'?'),('š´ýÀu[Û¡6ã—Ìt®','wp-content/plugins/updraftplus/templates/wp-admin/settings/delete-and-restore-modals.php',0,'\0láÉê\\)ÐÏ`$mq”éü','\0láÉê\\)ÐÏ`$mq”éü','”x¯mêzm2¬ÝptÂ™ç•~²œŠ0T!n&CP_”','',0,'?'),('š*&¥V\\wâ#šãU´²','wp-content/plugins/worker/publickeys/partner4.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²(Ú5f½êí#ÒL™,','ÅtCõÎ`ü²6Á¼äJì·‡TZ]GAÞ`@äÙ¡±','',0,'?'),('š%!Áñº+Äúõ\"~ýÿ†ÿ','wp-content/themes/Divi/includes/theme-builder.php',0,'BÌV­~5Yjª¾>64°¶','BÌV­~5Yjª¾>64°¶','6ß_»™¿—\\8ššùóp6é2/Í×møIÔrç','',0,'?'),('š,:¿êô3ÀÕ¹üC@É~œ','wp-content/plugins/wordfence/modules/login-security/classes/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…¼ÕA¾a¸bvrñ¤','C‡¾ö½\'r…9½ì@âK¡Þ†t¡ª™öâ§w#@kº','',0,'?'),('š1W;cŸ¶š¸°NñÀ\"ïu','wp-includes/pomo/streams.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½®/o^Ñ³\":Í?~RóO','ý\noäá.†k–p+—•xËÄ¡¶Åg7 òÑA<Q7,ÞË','',0,'?'),('š4¯‚#¥t~Sð+¯]î\0','wp-content/themes/Divi/core/components/api/social/Network.php',0,'ZðA\ZË ç´hhÍ„d','ZðA\ZË ç´hhÍ„d','/bGtß”ÅN/Lðÿ.‡µp‚*œ<N‹ ½ßq¡\r¸','',0,'?'),('š5åqn`‹Òs~nø‰Ëþ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/AbstractConfigLoader.php',0,'úÝ¢yi1–î+Æè^','úÝ¢yi1–î+Æè^','ì%\né„|_,‹¨JJiX/1Ðá	•¨ð2ªo¯@ë','',0,'?'),('š<oæÄôhw±½ã¸¯','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/ResellerApi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MTËßºcÎ;6\'‹å,8\'','C—þZŸÜàÏÉ\ZÒ~ÚÕ”5¹}Û]w$»øU','',0,'?'),('šJ@}a—§Ãø#×Ü¯!I','wp-content/plugins/worker/src/MWP/Security/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('šJž‹B¾GT²;,l£ÀT','wp-includes/images/smilies/icon_exclaim.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\\­³>5\0rÆÎôsgØ','µL¸ÉµèH²ÏA(œxÊ“2‘EP%ð	‘×#½ü¯#Â5','',0,'?'),('šU¿Î©\0`F‘Îs\0YÌÃ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersMessagesAttachments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›ò[ôú€Ë\rP“‰K:§','GgÑjÿìÃê-×Ï+¡ž—Ã?çd|Ë}u“~ñ,”éª','',0,'?'),('šVŸ^æ‚3±çm6‡._P','wp-includes/customize/class-wp-customize-background-image-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')Ù@‡t”þj23´ãW','á4¦ƒØ0^+Üu*°:Þ“4q[#ÊÓO²m´&È','',0,'?'),('šq2t’rÛ—,]s*rº','wp-includes/blocks/audio/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5¢óë‘3žybçA¬','­Ãù@,BW/æR-¤MäŒwÌÂ›þ¬ÿõî]Ù»','',0,'?'),('šsgH9]#‹0sú›Aƒ]ò','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!ðiœÑL³V=X+²	v0~','4çÎ-<4®,\"V²È±XÊ˜Ã®ÊhR—	KþFëk¡','',0,'?'),('š|+½Q×…Ž7ÝìCb','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/ContainerMetadata.php',0,'\"÷ù‰ë±s×Cë>ÈùX','\"÷ù‰ë±s×Cë>ÈùX','A§”_&Û-(+h;Ñs®Ä•OcræhÍæ¶î9]ÉÍ','',0,'?'),('š–H”†! “Ùd{\0Ìí','wp-content/themes/Divi/includes/builder/functions.php',0,'‚Ó@V0`Çö7Qñf9²','‚Ó@V0`Çö7Qñf9²','[ÌõþÅÑó†y\nÄNoíSª!#³šMæNúe‘S”','',0,'?'),('š–I†ª®¸Qþ>˜FÊ','wp-content/updraft/themes-old/twentynineteen/inc/template-tags.php',0,'iºòŠÕ&qåÒøöÐ','iºòŠÕ&qåÒøöÐ','^Š;¬¸P3ÅG-FT/Üš•Æ¼™­%Ô!@&+nÒ','',0,'?'),('šž”óß[‰ôD?_…[Ÿ','wp-includes/random_compat/random_bytes_libsodium.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4‘îåí»ßÕ³ådß','ì§I×nÿ¹6Øä¢_å³‰”£ga8ÌØyÍÆ].Ýë','',0,'?'),('š ‚ÒŒ1{·Pb?TIO','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/Engine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jŸê€)gøUk=Qÿû','=°#¹®Xî+¾­†‘ ó@0”Z\'å:.ôw²Û&ž`=ù','',0,'?'),('š¡¡K‡†O‚BßÂø‰q','wp-content/plugins/wp-mail-smtp/src/Admin/Pages/AuthTab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qf˜Â(ñ{ÚMKÏ\"Ìb','ÿ+!Z^IöG.vW¦_*ƒD#³yÇ©Q…qúß¦íî×','',0,'?'),('š¥7¸M3Âšã$ËôŒ','wp-includes/images/smilies/icon_question.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³ß[-\0Ò\'¾‘W³¢F','Æ7b Ø|6#ÅÐöíýƒ©9/?x»†~»ã[³µ%t','',0,'?'),('šª™‘2@ïkä¬w>K”2','wp-includes/feed-atom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Y~góÈlØw”¥6rì:','!ð¥þIÆìúm\nY•Úf+Ì•¡P\0×«Ð13‹\\=û ','',0,'?'),('šªô¢ìH\0Û™À®h™CÁú','wp-admin/css/colors/ectoplasm/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+¿úi-BÓî‘ó¤Ã\n\\','‘Mª:ŽuÎù,ñ)œY&Kç\"˜W^òêF…Õ8©ÿbð','',0,'?'),('š°wtòH©ëá-s“\0Ân','wp-includes/js/wplink.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“ÿ!{ŒTîž¸W°Vú°ÿ³','èª@eº{F’ oø‰Á`+5pùQ\'+eCê‡î','',0,'?'),('š³ÙÚ_™h=…Ÿð8Øù°æ','wp-content/themes/Divi/core/code-snippets/app/store/edit/module.js',0,'ÔB	ŒPs×#-ÁÏ•°','ÔB	ŒPs×#-ÁÏ•°','OéXâQb`ðó#ÑÐhéêjc?$)\\³FðØ¬®','',0,'?'),('šÄþÚ=Ö¬H–@-i˜ï','wp-includes/css/admin-bar-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q$E{ XKKÇFqœÔšf>','ª<±ÏÚ¾WmPÁ|ÊÒü­ïŒÃþ¶KÒv„¥¸\rmz','',0,'?'),('šÍÓÓ]Ã”nJœ\rMØ7','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Container.php',0,'U\"ïLºÖž;s¨§ï©','U\"ïLºÖž;s¨§ï©',':\0ìÛORÊQZ\'vYv;ˆ`·ô´^¨J™û)r¥\r','',0,'?'),('šÖ”•Åßšy(qD«wÂ','wp-content/plugins/wordfence/models/common/wfGeoIP2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕYJs@jŒª¦r´jtm','É3Ã‘Ñ²sÆð\r&±z=”ðþ‹Ödsó¹ËpJxÉ3“w','',0,'?'),('šØú\0Im©eré*Scºy','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/GelfHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=á›ßÔ)æëïÑÙqh°¨','Y2ÝfÚV},4à„z\n‡mYÉû&p×„MajÝ)Çé}','',0,'?'),('šÜrÞÛÄjaÞî¢‘µ¢ïì','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µWø	˜å,¤â÷~r ','L>ø¡£e¡€¡€º‰hý\rF$ûC¿V¡·°¨“·7„','',0,'?'),('šÞ#Æb1åœœÏð','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/log/Psr/Log/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ÄØUgÞXßx{PªŸ','aKªÓlmÀ®o¶`0z˜EùK°¬OJ]Q9j’ÁM','',0,'?'),('šß(B«A!¬ªž×ÛÜÝöñ','wp-includes/theme-templates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' G·yš±XËw\nŽìDm','8\\Ò£êH¸x\\%ôïRÛl`‹ÖÆîŠg´.i„g','',0,'?'),('šê-\'f¨ß•?X:4\r!','wp-includes/blocks/table/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷Á\"9ÎTœÊ³ÕäH÷‡','ÜmXï4ãÈÑÁ3ÅÓˆ¾&¤;aìæ“˜Ü\"0çz','',0,'?'),('šêŠh‹L¼²JHÿX#0','wp-content/plugins/wordfence/lib/wfUnlockMsg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jõc)û¾ReàYßlä7üá','.Ö`ŸiõWþ	t1ä}ëstyôÉªÜã³!K','',0,'?'),('šì)K×W&\'E ¶F%”','wp-content/plugins/contact-form-7/includes/l10n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ï}YÃ*~±!F\0ÇæG','bº8N!;2¨Æ4œFSÃ1LáJ³éøãJFò·Z ','',0,'?'),('šúw¡¾¿E°Qœ‹X|','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpError.php',0,'P^ZFÓ{ž‚¬”t_ÆK‘¢','P^ZFÓ{ž‚¬”t_ÆK‘¢','Ê¨÷ùý¯ÔùØÇY=ÈI\rÏè\\S™‘\nÚo0Zˆz¶Œ','',0,'?'),('šÿ™^\'½qˆÂî0…ê','wp-links-opml.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Á×çln•Þj\\w¥X=7I','7ƒåÛ\"1júßL?9Y´\"©ô&ŸõºkÅŒVD©|åñ','',0,'?'),('›QW.îì}®fã3½ßN“','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidTokenException.php',0,'²¶öDYr¹Ã\r;µf¬âÞ','²¶öDYr¹Ã\r;µf¬âÞ','÷Ú¼³éà^‚)õ?fÚe†4z–„¸¹*\\ÉÒ©+Hý','',0,'?'),('›1£ÿ\Z°|ý°ÉT¦±\0]','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/vendor/readme-parser.php',0,'™yÈ¤ãV{uó9[»þ','™yÈ¤ãV{uó9[»þ','\\ë¼<÷,¿\nÜq\\ÔÒ‡T§›ÙÑZ«e¦…n8Qe›0Ü','',0,'?'),('›	é­P>(|Â6Ž7ÿd','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/SprocketsFilter.php',0,'ÿ EI”r0 ì²¯Þ9à','ÿ EI”r0 ì²¯Þ9à','½‡²éÙ°NüE4A¡¾Ãž½(\nB>à[ë`X@ê‚Ê','',0,'?'),('› þ)V`ÙFXNÁVŒ¹','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/CivicInfo.php',0,'¡ÛŸœd[=¬ÆLG19€¡W','¡ÛŸœd[=¬ÆLG19€¡W','¼¶¡•utf\'¢¸`ï\'7hE<bV«1²ŠÌ›ö¼','',0,'?'),('›%n©ÍTß’	^ÇgXÎ°','wp-admin/js/inline-edit-post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïê	›„¿Åàþ¡L','êëLuŸDÝþt\\ShMÄj-±€ÛXûv–·ê4#çQ','',0,'?'),('›3âôaD•w·P¶œŠÆq','wp-admin/includes/class-theme-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è–Úª&«ßí…¾¥êUÚ7y','ýŸ-RîÜRlG†ø†cR¸K·¦ª¨ƒ¥¾ía:Î*>','',0,'?'),('›=­Ýþ7)yÓˆdã´','wp-content/plugins/contact-form-7-honeypot/includes/honeypot4cf7.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.§†0¬AvLêY‡‡¯jÝ','ßzÙ\'–rÓ•—9.ã;ÚnÂê¾ ²F{½L¾¶\\>','',0,'?'),('›Tqé›Qâ;ý·iTIt	','wp-content/plugins/really-simple-ssl/class-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–Nâ[0•¡ÛÑ÷HÛ«','Vˆ·Ž5Ð\rš³eÚ†•Ð¡‹`¨«Ÿýþü„êá<c','',0,'?'),('›Ttá·‚ië~HZô9»','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/ellipse.php',0,'Øz×é\"Ù¼™ËwQ\\/','Øz×é\"Ù¼™ËwQ\\/','Ì¨‹˜œÄ<Ï	(Ù<=ñW¨íh(lá’	åìÃIL3(','',0,'?'),('›XºõgâqÀíÝ|NãÇÔ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	\'%Wï˜qÎ‰º\\A¹~','Gýì|@8º!1y®kg‚Uµ0£9æýh›28ÿ','',0,'?'),('›^JbºÑû]ÌryMÿ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParser.php',0,'~¼pÜ_€Ð\ZGr ›4]','~¼pÜ_€Ð\ZGr ›4]','K6ë#¹o;Í–Ò—Ù	Ëï\Z‰ë‹ç]®ˆ8NkJÜ‚','',0,'?'),('›_½[:šÊ6üûúõêd»','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.ilightbox.js',0,'7G°ïø1÷Ðy„VLM','7G°ïø1÷Ðy„VLM','ÛÔ„\0»Aò·äëúÛµ#öQ÷îG÷~&®ÜÍ¤ìs','',0,'?'),('›b¢	WÒMr*ô	W+Pv;','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-image-compare.js',0,'b˜#:£Î¯¾Àž3;“','b˜#:£Î¯¾Àž3;“','IàœÃþXß;BÙÎ9üŽõwÿŒŸpË€‹°ÒJø','',0,'?'),('›i]VºéÌ¤€	Ž1Rd&»','wp-content/plugins/worker/src/Monolog/Handler/TestHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öü_Zhê‚½œ†q\n','NXç9ëŒgx(=Â+¿ZÄWŠxöweí€_k&´½›GÙ','',0,'?'),('›m`«Ä5\n+Öã‘7Òñ','wp-includes/blocks/search/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6¼”\0ËX`ÐÓ<ßx\ra*7','OÜ¼~kÇ!¯Ã€]Ð*¹úÌ*cDD)W+ÿp%Fù','',0,'?'),('›mÂ´‚èoBÉ099mÙò','wp-content/plugins/worker/src/MWP/ServiceContainer/Production.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{¨Ã¶ÏœÊM<ål4','ã‘±÷BM\'æ@\0Å¼ÛÞGüÀ!;\0 ÜcNÈqÿ{n','',0,'?'),('›zBô–R¨q¯ìF\"[','wp-content/plugins/wordfence/js/admin.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Î¥ý<?ˆ<ÌèA&ïƒ','}Ù•€ ‡û‚\ZžH0BÍvWµÞYp:¾Äê4oüû3','',0,'?'),('›{¶‚ ¿yÇðiš»ö@¢','wp-content/plugins/worker/src/PHPSecLib/Crypt/TripleDES.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è‰…íh­ÅÏÐFí','­Ëð§	…}”ot\rˆ6«á‹)Á“Ú`wí*t`r—','',0,'?'),('›€©‰qŽ¿³ˆÄ›','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/StreamCipher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÍÏf1I^,°&£V):±©','û ¹fV;ˆaêykÛ®\n£_ð§öðB¤,k?Ê`°¨','',0,'?'),('›…Ë\"›uª2<ù%ÈÖóË§','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/NovaService.php',0,'–ÂÙšFŠ870F­áû','–ÂÙšFŠ870F­áû','­|ÞkG¾ŸÓ„Ó,.ËM¶n/è¿•î¿\ZŽ«tøü½‚T','',0,'?'),('›Šm<r}XLÿßÂ5Å¡','wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/AttachJsonMessageHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ç\rÈ—åefaj8”Ç«\'','ÇÂÏ»È\0$$FSèÌ¤Nj5ð†M±vQ=NöHP0ìî','',0,'?'),('›‘äiÑROúö&,µû³¹','wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('›˜›%ùrÌ°)7²‚ppÿ','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/vendor/readme-parser.php',0,'™yÈ¤ãV{uó9[»þ','™yÈ¤ãV{uó9[»þ','\\ë¼<÷,¿\nÜq\\ÔÒ‡T§›ÙÑZ«e¦…n8Qe›0Ü','',0,'?'),('›šn&¢âðn¼!å´¬î','wp-admin/css/site-icon.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l•ËxÚJ‘ÅTGˆ˜','ð+ÊÅÎWµÿöVÛð3¯(qFèíæÀr;·|^ö@¤Õ','',0,'?'),('›¾:öuä>ÿNoD¿¬%','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CreateError.php',0,'ýÝo–Ø¬Ñ¢3;]T\Z]','ýÝo–Ø¬Ñ¢3;]T\Z]','VI\")ûôB&QÑJÒŠÅ!Ž¯Ùž\"vÁ÷ûC™å','',0,'?'),('›¡I»çH­‡Éb=í‚jÇÝ','wp-content/plugins/updraftplus/templates/wp-admin/settings/take-backup.php',0,'k²!¾c°„À*kó)!D°','k²!¾c°„À*kó)!D°','>î•iŒäþTù¤3Îf÷QH¸÷%‚×Ê.OJ÷','',0,'?'),('›¯ñ{v@ÄÎ~uÛ*d#_','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/PluginUpdateChecker.php',0,'œ«Kè$s[Íê^\rÎa8G','œ«Kè$s[Íê^\rÎa8G','0‚\nQ¸—#µ™Óïr¼Üa—v¾ö;§x*·ÂÒâð','',0,'?'),('›¹+½òl[…\'míÖ¸¹&','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/ThemePanel.php',0,'{BP;»82ñ<	Kyi¯','{BP;»82ñ<	Kyi¯','¾ºÅÄÃ3ûDËxŽG]ôýG7°QcIúPÑùE','',0,'?'),('›¿ñù\'€ˆ.Ær„0—Aì','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/ErrorModel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í¬HHß‡n8W”f¬HB','(ffÕËè€QŸáì[/\\Ì³@ÄÙ\0 ¯J&qnPh[è','',0,'?'),('›Ã{ü›{8B%@\0ˆxÐ','wp-includes/blocks/post-featured-image/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8MJ´ ê®â.ð\'±Î,Á','#ð{F2®«y7l¥B–ÚÚþç\Z°ŠƒÉ¿ÊÜ9D','',0,'?'),('›Ä|8 §Tù~¾·ØD\n','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/LessUtils.php',0,'âJ.ýöÞ()%§t¦','âJ.ýöÞ()%§t¦','âìNÇV!»Ú5ƒ#é˜¥íªüŽ7—˜Z&´Û(lÕ¢','',0,'?'),('›Å‰óEXïïÕ|T§Ä','wp-includes/blocks/media-text/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†—©¯éÓDÜBjÄÚ>','–ÞØËFã°uõ~”^ë½_2\n¸TEÏÐG^1-Gae','',0,'?'),('›ØØÚ!n*µ]ßz,FÕ','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php',0,'3¸5ak¬x‚Þ5¢ÀäýÐ','3¸5ak¬x‚Þ5¢ÀäýÐ','¥”Tƒ¢-ânìýðˆÇ@L7¬#|öæ¼6ÕF³\"·P','',0,'?'),('›Ù—¨Èw\'N¼eXðòón','wp-content/plugins/worker/src/MWP/Progress/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('›Úv!LJ^Uª	G','wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-aioseo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G³	Xè&~ˆgìÐÆ÷QOÂ','s,ô³¥ÇßÊB…ˆåg•Btž,$K:ù`|s.ÃÉE','',0,'?'),('›ÜŽz-Éæ¥rŽAÙ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/aliases.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zôj[&àei ˆ(¼Œ\\Œ','»ðÖé¤¶r…t{s·bœ7âÌÙ`ã±ÉÆ&3m–','',0,'?'),('›Üºq{dK‰B¥w¯_…µ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/FunctionCallsFormulaLoader.php',0,'Ô†´á‡Ó]\r€N‡Êõúj','Ô†´á‡Ó]\r€N‡Êõúj','qéß¡ék¶­ÉàžkxŽL.=…õEÊ0UÛòx‚Áà','',0,'?'),('›âa8=b7Ø3•Æ¥[‘','wp-content/plugins/worker/src/MWP/Security/Exception/NonceExpired.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9LñíknZØ0äU²®O¡','q±:Zò€‡Çe¦Qæ\n“~ié˜#_çLrÊñ)','',0,'?'),('›ë}¯¾š$ÏIaóˆuL','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/Utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','À\ZŽ×®hÜ{Ÿ™öÅVH|','o^Â’ÌBv\rÈ¡B˜C`?ÝÎ)¶ÒkÕQfoºŽüÝüå','',0,'?'),('›íª]j¼l±\'²ô–»/x5','wp-includes/js/wp-sanitize.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾È:k™êóE‹t6QÐ™','yÎ¦V­å }É›qþŠ·‘K>ÛˆP6ÓÄ*÷ÞC\ns}','',0,'?'),('›ðÏ\r+ŸØøžêÏ6ß','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractTransfer.php',0,'ðƒ=ã¦iJwX§BË+Œ','ðƒ=ã¦iJwX§BË+Œ','y1 üÐÏJ-:‚¿IÚRÙ#”˜›ˆ\rT“ÛÙà™','',0,'?'),('›ðÔW´Õ{Ú\\,ƒYu','wp-includes/js/jquery/ui/effect-explode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘…0¶¤íi!1¯Ž	ò','sé“ëe=\'©²¿ÚœÝN£I³{¶Uª!¹MÞEŽs','',0,'?'),('›ó~}ÇY‡›ÚÌs2Ú«ÁÊ','wp-content/themes/Divi/includes/builder/module/field/TextShadow.php',0,'7t“\n{ü1åÓ‘åµ7‹e','7t“\n{ü1åÓ‘åµ7‹e','º§“xs².íú£6©ÊÞº• V³§Ø£Tyôü','',0,'?'),('›ó71Ð¬È}\nûÈ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1’2+;FÄîÅÐ½NMƒ’','¾w†Å\"³*”Á5¢U T@™åœnyÈ³Æ^a¥u½°\'','',0,'?'),('›ýá8ÔÁ¹ºâ+XêŠçì','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/UaString.php',0,'BS2»¯¿ÏLÛoŽ½','BS2»¯¿ÏLÛoŽ½','-:º˜.¿/7d8¾°ŽèþÒg`+Pzh½ûöÖ×ò\0','',0,'?'),('œ	×\ZUU3R©586¶b','wp-content/plugins/worker/src/Symfony/Process/Exception/ProcessFailedException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÞØ³”’“ç7¨i,ù](','PBô;×TÐëÜl$‘ŽÓ7Vµì·\\Ë[×^²å7I½','',0,'?'),('œ’spÅw¦¾.Hq%K­','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Filter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ìªN*Þô´Ö6)ÉÐa³b','÷AßŒÃfFp.¦¶÷?\Z‰*ˆ@“ð™Ö¼ ‡¼&%9mH','',0,'?'),('œ#ó>Cýjº¾é…Óˆb!','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AttributeError.php',0,'ÑhvÚÅM?’¿£0qñ¾h','ÑhvÚÅM?’¿£0qñ¾h','‹¦‚8êTD{1ƒ‹)[Ý´µâ§1F¬pÚe','',0,'?'),('œ)ïÄ,ûEuxÉ,¸(åŠ·','wp-content/plugins/worker/src/MWP/WordPress/SessionStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','awF£à±ÅÅÄ0B×¹ø','£ÚÁÔ:ë«ÉÂÆ2Í „<	µ)¸`’Žè^PvÐ«‰','',0,'?'),('œ2X69G3ß\ZÏ+}Aü6','wp-content/plugins/wordfence/views/waf/option-whitelist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©.²‡…’â #Év¾}','…i¨º©$‘¸h°}Äws¦óöçÖ©ºÁX¹¥2‡c','',0,'?'),('œ5ô‡¬ƒÜ\r¿ËkÔÄ','wp-admin/js/color-picker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_°™ŸŸ;\Zñ©£Ã½5Ñ','\n—œmöÜm^¸G&%Á\0ÆSKmŒÿY2p„Úåÿ¹ó#','',0,'?'),('œ8ƒ©Ž…¦¬ãP5aÄ¨	','wp-includes/images/smilies/icon_wink.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e?2®á‰i¡àã¥','š(¤šÔVÀ•{ñýVÕBkÉèÊ£o(`Z¼ªV	6','',0,'?'),('œ;Ëw>aa!Ì¸V¡\0}','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetCampaignOverview.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ê©nc4žèœ‚òt\r','£ý§Õ ¨ºÉ&ì„˜Ö7 Cƒe»Cpntá¦Y3ô»','',0,'?'),('œAr÷²˜–öŒ¿zˆÞ','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dENÛ€\\¼—6S{ÜÈ','FÏc´	Þù´VƒY^œ¬öˆ-ÑÏVÇÙ£ ž¼Îî®','',0,'?'),('œBÂ€¦û>×îáÙž®—','wp-content/updraft/plugins-old/updraftplus/includes/updraftplus-tour.php',0,'$ÖÔ’ö\0ŠÔV·|à¡ª','$ÖÔ’ö\0ŠÔV·|à¡ª','(+TY©·ø\rÃ¼z°QWÏ§rùofÝÏ‰r?0Z+OPÏ','',0,'?'),('œN³¾.=ìÙyÔÚÔ¬','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Log/Logger.php',0,'ÉGÑÐÖÝ	&\"Ë¸Çô±','ÉGÑÐÖÝ	&\"Ë¸Çô±','DÃÀö“ÊñE8ÕÈøJ¿	ùjGøD G¨¸ÊÐ£r','',0,'?'),('œRŸ0ü·›t¾‰ê]“Ø','wp-content/plugins/contact-form-7/includes/contact-form-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ@¸:#ù¶£ÙZ*&Šdó','=[‡ý×Ð7…ï}:,ÎT+$sw#«ƒSÅ3¶6d','',0,'?'),('œUpHs,Múì\r£à‰*a','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpRetryError.php',0,'ô3D0Éº\'1>í§üšÚM—','ô3D0Éº\'1>í§üšÚM—','\rŠõ_ðy?¯ÂÍÔùý&âoŠG›Ï¶ÛîÜö—Nán','',0,'?'),('œ\\QJ¼ž*Üß	×\"Ã¥è','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/CompilerApiFilter.php',0,'D7r\0tÖ§HSõÝK”|m','D7r\0tÖ§HSõÝK”|m','¦VÁHÆ´ºýf¾ì²„-X€ð Õ†Ì^o','',0,'?'),('œa£©Ã³hšíG^ýið','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Mime.php',0,'*cºîwm§¨ÄŽæ×fÁ','*cºîwm§¨ÄŽæ×fÁ','(²~TX˜èÞÓë“Š(Ýy>“¢*}ÈÜ¿ò§TÏSle','',0,'?'),('œbÈëWÒÇyz:™´\'•','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/UglifyJs2Filter.php',0,'\r1°‚_&§‰-Õ^','\r1°‚_&§‰-Õ^','ö;¦ðÉmŽÝ 8l[”o,gÂ~çûujy¾ˆ2','',0,'?'),('œcá>ëû*ÇÜ´=Ù','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/cookie.js',0,'ãÂõJ\'F¼¡f%ìg(¼3','ãÂõJ\'F¼¡f%ìg(¼3','ƒTGÖþfÕ8Áy‰¬Ëy5SdŠûÝvB³-Þ¬NøÖ','',0,'?'),('œhÊøHv|çeË8à4øP','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/WoocommerceProductVariablePlaceholder.php',0,'Ô‰g=\n­?$­Œã¬à*','Ô‰g=\n­?$­Œã¬à*','\'âÎJ?=*r®\\ÝÏÙï¯öÕï™Äø«ò\\iz˜','',0,'?'),('œ€‘ôgò­DË	¸S¿ÝÛ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerCreateError.php',0,'èn›Ci¡SÂ<:Ó¸','èn›Ci¡SÂ<:Ó¸','½\rÝ9ƒXç…µþ>‘òÒC!RxˆÌf\\[\'­MÇŒ','',0,'?'),('œ…]†ÆäáÿgðÁú(^','wp-content/plugins/updraftplus/templates/wp-admin/settings/tab-backups.php',0,'#œáëV²¹ïIºÒâ-j,â','#œáëV²¹ïIºÒâ-j,â','(®…aÀ‘ê`<ö„ô\Z–›Rrg#¸hC','',0,'?'),('œ…‰Šþy85õÜÃ¦bÖ','wp-admin/css/colors/sunrise/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dh†P2\rËÉ1AüïKW','fÇëø<mÝ¨þ=f˜3Ž>qD¨Ëýèã3@>À³²ÃÝ','',0,'?'),('œˆ0êÔÎ>Ì=3±','wp-content/plugins/updraftplus/includes/PEAR/Net/URL.php',0,'ï}ÁPØ»ÀÍùÌqKGL€ò','ï}ÁPØ»ÀÍùÌqKGL€ò','Ê¯MtæÞ\r4B\Z¯S	êÒ±•~\nO,X=©m¨¿Œ	C','',0,'?'),('œ‰ÌY“sÃ\\\n†­dÑïå','wp-content/plugins/updraftplus/includes/Google/Cache/Apc.php',0,'JY^V¦Äë­*JÇ±^ó','JY^V¦Äë­*JÇ±^ó','áw;þQ÷…¾äQÇ3[õ£€¯oZWv›tiVI?','',0,'?'),('œ,M†ï3ÖœzãœE/','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/ogees.php',0,'0,…Zg¹S,x›½ŒÝ _','0,…Zg¹S,x›½ŒÝ _','Úÿ›=OÛŽ¼wæò‹ñ|ðá eúô?™)„ÐT\\','',0,'?'),('œ\r\nÙ½lÉ\'wäŠêR7[','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/OperationInterface.php',0,'Yc¥ßÙ¬úD[®nD‹K','Yc¥ßÙ¬úD[®nD‹K','‚+™ƒ/\r-/-tg™!ûQhÛ¥¸¡ƒq·$','',0,'?'),('œŸlÛÀ3.	XN‚','wp-includes/Requests/Exception/HTTP/403.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','övÞÄèÚ®×V§3‘¢’','‡Iìö©léE†Kà°Ñ¦ø¦?Z£0JT¬Úò‡âáU™','',0,'?'),('œ®LKØò¯³K³Rípr','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/square-stripes.php',0,'ä3´6³\\[7ŸÜˆF?mA','ä3´6³\\[7ŸÜˆF?mA','Î8Qðí³kã_)Û4ü \n‹T‘–×ÂÙ½c9KZÃ','',0,'?'),('œ®Ñ¡ò–Ï‘ÿ@”v¹ê ','wp-content/themes/Divi/includes/builder/module/helpers/BackgroundLayout.php',0,'_25Ê¢\"ý\"Ë\rhö­2','_25Ê¢\"ý\"Ë\rhö­2','g\Zäj¾%H!\0IØì¬ëdsS‰[±sfÒ‘J†Í','',0,'?'),('œ»üsû8<bž¤¾Õ”T','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/RestProxy.php',0,'«<ËÓäˆÀïJ”=k–µ“','«<ËÓäˆÀïJ”=k–µ“','¨\n uQ‹k¬ôZèçpJÊ*{‘l\0õž¥f,ÇžÚÄ','',0,'?'),('œ½seè®5Ý-ÙaÜë{ž','wp-content/themes/Divi/includes/builder/module/woocommerce/Stock.php',0,'€Ã¢!¿á\n¼‚s8×ô','€Ã¢!¿á\n¼‚s8×ô','øgéÞþizagäÒæ[<cN¾èø9bYí–þ','',0,'?'),('œÃ.@‘–²Âyx[ø&²M','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPartException.php',0,'ÏyrENq£(*±K.','ÏyrENq£(*±K.','é%Œ\'ùDV¢#Å:tÝäœîNœPB`>1Q3','',0,'?'),('œÒ<ãÛ)»\" Í¢vY4','wp-includes/blocks/verse/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.¨×\ZìîÊJ¶.™c©«Öí','!ÐýwNÀ˜.v¿à­ù‘vé8[çDWŸ	$Ä_ûéW55','',0,'?'),('œÕ‹€PQ‹E|E}7+','wp-admin/includes/class-wp-filesystem-ftpsockets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŠÀøóaÂÞ:s»]2¯','u‘á Ü:×ê‰,&þF@G”„*ì»®&ƒ÷¸û¿Wêé','',0,'?'),('œåU‰±ó$ì\\*Ý1^œSý','wp-includes/js/jquery/ui/effect-clip.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žG¸ð=«ˆ ”þ:œ	s','¼×twœ:»Ðo,öu3Mxm¼‚ˆxßH å¨gC–Ó','',0,'?'),('œñûÄúžP‹Jætûú1z','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ†wU áæÛ6M†\\½8','<¿ø‹¦\0ß\rIB=\"„P8DÇ\"÷¶àôÀL~è€I[','',0,'?'),('œó¹Ü_çÈ ìŠ\0*ÁO','wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âuÑàuÔ÷tu¾+]Þa','Ù\nƒ1˜Ä²•ŠA›ƒP3õ’ÙôC\0{K7QO£ÕfÛ','',0,'?'),('œþ\rê Ä 8Í´Bé¸','wp-content/plugins/worker/src/Symfony/Process/Exception/ProcessTimedOutException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':ÉÐ-«ñÜbîÑù°8’','µô¯8FI \n±û€œà•ƒ|õÊkO@À\Z}­œÂ}Yâ','',0,'?'),('œþP\ZÅ/é¢¯l%¡','wp-includes/js/jquery/jquery.hotkeys.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jƒûhI„QLZA$UnöH¢','·ÿT¢§“„fßRMSÏ9Âº„MDRšóR¡ã’Né','',0,'?'),('\0É ‰Ÿk~‚£U5T','wp-includes/widgets/class-wp-widget-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ •q©?Jù¦—ŸfQ</Ë','©®ø]È§K«a6	ˆ±“ ¬W}tµèHlÅ²ü0T','',0,'?'),('±ý¬l±o/º\\I= ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Authorization/Get.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hîMSû·úqg¡?•’ø','…›k½þ¤VØ£ÛþÁˆs%Í\\R9kµ[m/@','',0,'?'),('\n%f[!aE«rÒtg€i','wp-includes/images/media/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àéñuêh›ÝÛq ÷','DBU‹†¥ÑMiOÊb‰,‹Ããe•ô=ËÒWÀ{¿ðæ','',0,'?'),('ôkGÚÂzd7A\\ãbA','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Source.php',0,'ö°í8Åã9rÊ)yÄ(Çªº','ö°í8Åã9rÊ)yÄ(Çªº','~?¸³m%/\'\r‚µ\Z&}ïUµôDè(\rƒ²Œ#%YÀ','',0,'?'),('ž-À’Ír}×“¹†ó','wp-content/plugins/really-simple-ssl/testssl/serverhttps1/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7Ó;šæ9Zm“ÇˆMÔÌæ','Q3×<0m›ÿ¦€dbÃnR¿:é_¯ÜºuA2i','',0,'?'),('$¶ÙBã¤]ýwQÙ','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Deploymentmanager.php',0,'M2	¼Ô¾žŸŠ&`1Ù«','M2	¼Ô¾žŸŠ&`1Ù«','ÔØ¨bGÐõ3µáÈÛtË­Âi¤É\n<FÃŸá™','',0,'?'),('$-jêIÿý¥öVXÁ¥·ÿ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/SetContainerMetadataOptions.php',0,'º*›¥8ðePÂk°fj)¢','º*›¥8ðePÂk°fj)¢','¢ø„\'r³õAYÊL5“svðÌÊ¸n½†–¨àÏ,Ù','',0,'?'),('&‡Sì§¿o¸$æ÷0øn','wp-includes/author-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';:,)5µõ²§`&\0å','UI¥ËÀLiáp§p\\·ÚTÒ[o±¿Ì/K#(®Š®Ò÷','',0,'?'),('4¾>X¦\'&ÂO‘^Ç9’','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/de.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#^ú„¡¢1QË…IqXô','K4ðe¯~Ye‚‘ìñó3MKèŠå¢Æj`Þßë™ÙJÎ','',0,'?'),('?8Rm¼Ð¢E7hÀ€<†','wp-includes/blocks/buttons/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P­.ò$B›\\&•§Üí','u›¾ˆ+Ekéß~‘n½î‚êxGzÖyòùfìgK','',0,'?'),('C”·KÍ2öºžÅ•M¥','wp-content/plugins/fusion-builder/inc/lib/inc/redux/panel_templates/container.tpl.php',0,'\"0ñÁ1îˆ#r	â¤øªÍ½','\"0ñÁ1îˆ#r	â¤øªÍ½','¥sfi;…O¹“g}÷vç\nNgßïƒøsÐÎ\Z¦·¨x—','',0,'?'),('G¨|$pÖ +(ª','wp-admin/js/tags-box.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šg4i’e–ÒÚ ‹Y,×ƒ','u,°tsn¬‹`žbÞ$âDÉrõFRS©ïrÕÒ‘¬^\"','',0,'?'),('MB°ÏßR2‚BÞ]','wp-content/plugins/fusion-builder/inc/lib/inc/wc-functions.php',0,'È&¡||Ó67O®¡,bZˆ','È&¡||Ó67O®¡,bZˆ','{Jè-@:õ@Õ\riÌeb÷±1»~Îp°ùD8[”Ø','',0,'?'),('NÙÄÏ/0±–r³ó^àˆ¼','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Datetime.php',0,'‘ž‚w¶\"çÈQ3¹C›î\\','‘ž‚w¶\"çÈQ3¹C›î\\','\"T©M¢á›oNF€GEÒ	¨—‚+Ý:Ø+ÝÚe±£','',0,'?'),('Q ²ÁÌÔï2Š7uí L','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð1ô¬ô3y¶ùû¬1‡ï','	}¬ÅN¬	<Évã­·B±S%á˜s\\üþ÷S„','',0,'?'),('RÒ‡ÈÍ¨¬åvä^½Ú','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerImageScheduleError.php',0,'c“G–<Óˆ¹Þ¼Ì/Ö','c“G–<Óˆ¹Þ¼Ì/Ö','É¼}æ6Ny­(ÏG”÷+ún\"û¾+á8Pç','',0,'?'),('RÛÙB¡pÀ•mØZª;','wp-includes/css/dist/block-editor/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{q10vÆ³×õ|2]sºY','F^¸ªÏS·,T&Á>‡ŸÇúó¼8­öÈÑýg','',0,'?'),('T‹1{Ï›wâ®Ï¸','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/SprocketsFilter.php',0,'ÿ EI”r0 ì²¯Þ9à','ÿ EI”r0 ì²¯Þ9à','½‡²éÙ°NüE4A¡¾Ãž½(\nB>à[ë`X@ê‚Ê','',0,'?'),('UAØQµ,U¬–q×ÞÄ','wp-includes/blocks/pullquote/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uõÿ\0ê¯Æ%È\\©šÒ','WÓ‚éúã,e”lÑA‡Ù52.úÀ,N¨„P¾€$Q','',0,'?'),('bíòBFFáû§­=Tï9þ','wp-content/updraft/plugins-old/updraftplus/includes/onedrive/object.php',0,'AŒ·øJ\0-‡¨ƒºøû','AŒ·øJ\0-‡¨ƒºøû','&nÛ’’7~eEƒÖàTC¤õ¼Ûñí(Áã|','',0,'?'),('e7ÞF\råíA=ÅÔ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÚúšëÐànz1\0AÑûîÀ','¼ùˆöŒ9®ÅIÓŽ™€üG;\0 	¦ÙæaQ´¯ŽØ','',0,'?'),('h¥œ–·…ÂÿI|\"€É','wp-content/plugins/updraftplus/vendor/symfony/process/Exception/RuntimeException.php',0,'QsûPSRz÷¸0w[-g','QsûPSRz÷¸0w[-g','õÒäFIõÖ\\O¼„ÇË„Ðä¸Æ±[¾¾?4{Y¾C','',0,'?'),('o÷jù‹É»yæ©V','wp-content/plugins/wordfence/lib/menu_tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ëÔ9“÷’ÃVÇ˜”>é1','ÞÜèë%½ÕÚ6”iŸ¡Ø;K2P±Ÿš¥>»}Ò','',0,'?'),('‚Ì=¾$±÷Iòyžë','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP224r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üyž‹a¤_=éQÝ?GÝí','\'2ü8g°Ï.9Iþ.I¦èÁÉl\"ñW\'ˆWgŠ','',0,'?'),('…W7j:ßÙPÆ­|ÏïÐ','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/SassphpFilter.php',0,' PÅž¨j6XßˆŽv',' PÅž¨j6XßˆŽv','…L.¡“_sòªöon&­A6õ¨ý‘wü±¦O8°\"k½','',0,'?'),('†CaÞsÁ]ž²n/åì','wp-includes/css/dist/block-library/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yå?ã•Muˆ˜½N','‹c-7EÉä)i+ž¹Œ$ê=´cæE+InÝ½¶-Üñeô','',0,'?'),('‰-¦ƒ \"íbÒa)=?0','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/ApiException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9pD*°òñ%D¿ç.ä»Û',']K*BH]ËnFj@±•Ú6ÔMÉ…ZBÃŠ¼N¾\n¿c“','',0,'?'),('‹ ÙŠô°}ø~Ÿ¸S','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/TreeHash.php',0,'èv©½À›µök:êM¢','èv©½À›µök:êM¢','\Z¬ƒY)­\"Rá¸?6ÞÿÇd	–O\'PˆCëy¦¿ÃåÏ','',0,'?'),('’ÑºŸ\"ÌP5ìÓ^U\Zi','wp-admin/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶¯ßJí	Ki\Zb+GZšáB','\r9¨cgfÄŠ¸TÓv‚S(Ò9IEý$úpHœ×','',0,'?'),('–_îd®Ô¢DxõÞÆJï','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/MessageInterface.php',0,'²€kÀ2¶–bQ¸-Ò?aý','²€kÀ2¶–bQ¸-Ò?aý','‡x©ÐÐÊÌr}š`Šë1\08‰ÖÐ>ÆáÉuó6oÀ:¶³','',0,'?'),('¡ßipë©]w°Îýz','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssCacheBustingFilter.php',0,'\ZÛ)”³gpÖx3ú\'‚‰ã?','\ZÛ)”³gpÖx3ú\'‚‰ã?','“n°LØ©–ãõn”Øú«¡­m×x†&Ïï8Q1»\n','',0,'?'),('¦ô5dqn8$Ò Ý8L','wp-content/plugins/really-simple-ssl/assets/css/main.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªˆèW&°‹srÔ”§Ï’Ç','Mçª™*é4O¬éØ’NüÒ¼Ùi`!:g;—Â_v}™«¨m','',0,'?'),('§mÌœýz4èLä¯úK','wp-admin/images/xit.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”ì«	3X—Ä«9+ï–6n~','üÖü s²¯¹”ÉÛÛ¨“ S,mdïŸ\\Yb’Æ‡ïÂo','',0,'?'),('§ü	D—\\Ž$òU','wp-content/plugins/worker/src/MWP/Security/HashNonce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>\0´„àèBuiIØƒ;ˆ1','î¾È~¾`qäØL­»ê_ñÂ\n¬²ï²iºšRï¸%ö','',0,'?'),('¨AÇŸª8;%¾£\0Egÿ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/Catalog.php',0,'(­˜\ZeÜ\nExqÈXÉ','(­˜\ZeÜ\nExqÈXÉ','Ö‡D‹ö7åõß½i®TðÙ0Bl!rmë0‚81','',0,'?'),('®½ß‚´P²ì-èà','wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/PlainText.php',0,'¸`|›Çá2¡Ój²?Î3','¸`|›Çá2¡Ój²?Î3','ú‰òòêßŒÿË\"ª%=¾åÑœ/ÈÁœ^6ZËú½Yg','',0,'?'),('°wF¤òÈ¶ŒÛì‡# š','wp-content/plugins/wordfence/modules/login-security/views/manage/grace-period.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿiéoœ}è$\ZÖX×','œŸEÊ•G¤é!¦Ü·éˆ[Ç~rŽë”Á:§Æ\'Oˆ','',0,'?'),('´ÇAóG,‡Ã<Œ¸¸','wp-includes/js/jquery/ui/effect-fade.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿÈÒ*Bzð²ºì€Lž¼','£jfDýGðä=cîFsã½ª£~þì‰¹X','',0,'?'),('½xFJ¸W7mÛGÙ›8¯','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/is.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TnD¢VµÒ­¨¼fÚæ†','‡é^Xž0¾”ÃðO9…çÙtõl‘cÒ3,†Àvæâè¯','',0,'?'),('Ã}7nMÍî ïªXrà','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/Container.php',0,'=@¬’øå ’59Z4/ëZi','=@¬’øå ’59Z4/ëZi','ÞÞëÏ{vè/4èÞü”**¿SJo\"Hœù%j‡±','',0,'?'),('Ä)B¤¿.ê½wÔö5¡ß>','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/id.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯\rßêú†¨Ë?TO©ó','i=¢Bï/–wªy[†ê¢êÊÚ©ÕyýêÖŸ·Æå','',0,'?'),('ÉÎGÉ=¬¢Cd´iÞ 8','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ar.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R·2Kætxò{?ýä','!ÉÂÐä‡Ñá/AøGvYô~° ±«è','',0,'?'),('Ït;/.h	êphn(]v','wp-content/plugins/instagram-feed/inc/class-sb-instagram-gdpr-integrations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(‚¶RƒRºÙG±¤YãðÖ','iqù*MˆµKÄ¥ìÑ³²-«[Ã%Å©[íóN,ÕmýÅÆ','',0,'?'),('Ñö\rE+U\"M›.oXÜ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/save/plugin.min.js',0,'ÿÎJ¹Î›Ðç¿{TPâ','ÿÎJ¹Î›Ðç¿{TPâ','¢ŒÁ4×[ˆÑ½÷f(_¯õRDxIe@$Œ?âŠ­ÓiK&','',0,'?'),('Ø3€œPöŠ ´\Zñ—¯˜…','wp-content/plugins/worker/src/MWP/Http/StreamingResponseInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sª3óˆŒ[•RÅç2¢F¨','^Áµˆ÷•XÅž¡’|˜Ž	¤F÷Ú„_£ÿ>ç¬d_','',0,'?'),('Þ	”è¯aiÖBÃèÑ','wp-content/plugins/duplicate-post/js/dist/duplicate-post-options-430.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çæ“b`ì;×6þØné','@|¿jªÙ×ÌÀ„­¶0õx,´ï½b½ÁÝVCI?«°','',0,'?'),('î\rÂœ-9ë‡I’K÷÷µ','wp-content/plugins/duplicate-post/gpl-2.0.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²4îMiõüäHj€ý¯JBc','¼ÿ\0v1£êsÔNí>cIDÙ¦¾Ö„Ié­0ÿ-','',0,'?'),('õB†—eÎÖøsA5·Œ3','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/UnexpectedValueException.php',0,'ƒ	ï-ÀCÖ_+éœ¹','ƒ	ï-ÀCÖ_+éœ¹','ø\0€!QÌèˆ¹;¾d±ux¦g³Ëˆ™U¥ÉÉZKX–A\"n','',0,'?'),('žˆ¤s@;Ù¸ÛÇeg','wp-content/updraft/plugins-old/updraftplus/methods/dropbox.php',0,'ƒX Ë‚Ç/ë§-æò²2¥ä','ƒX Ë‚Ç/ë§-æò²2¥ä','~SJÿ¶þ^ÙºiÇ0ª–î½çL&Î„§!)i!vkú','',0,'?'),('ž”$j?¶¬À²\rÕ¥‹','wp-content/themes/Divi/includes/builder/module/field/BoxShadow.php',0,'FOÜ¡^\Zq.ÛA;…¨%','FOÜ¡^\Zq.ÛA;…¨%','gc¢#<ÿÕ­xµ ˜ÙÕ·<dSw}å5¦«Êü\0,¯','',0,'?'),('žµ‚´„Õ°	Ì‹ÓÈ²ÃS','wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚Q*ZZÉsqÈÐ§A}p‘','?L\0e}æÃàz4ùt,ÍN)^öQ¾ËæíÃ€Û²','',0,'?'),('ž!•î×h¼PƒE)','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/diamonds.php',0,'ÅÉ…ÕŒþéVÏöu­Ü','ÅÉ…ÕŒþéVÏöu­Ü','¬ó»&ˆ¬|ÏZŒ<-71˜2i“‚FÃ4ßu°= 5¦Mþ','',0,'?'),('ž Án€$›‡qˆï^qf´§','wp-includes/images/smilies/icon_lol.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nÁ™õãÿ:Ñ·&ŠƒùÖ(¼','Þló1–Hqú.íµ2xÒ¨ó¢¾‰$ËY‚\Z8ó‚','',0,'?'),('ž\'^“Dý×IGÞ1…Ù!','wp-includes/ms-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âôÀ“Åm@ñ€)Ð•‘÷','ô¹JlÜ×’CÊþîËs¦_DnÆŠ\\\Z.§òÝXzÙ÷','',0,'?'),('ž(ŒóãÏ¹¦éØ²ó°óˆÔ','wp-includes/blocks/video/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ï,VÝÀ%á™Î¾´ã]','S*˜Îq$ç2xÆeõß¹Ù<³e…{Ž =#­4Ö','',0,'?'),('ž*Tñu\r¢íÓÖ ~ªm','wp-admin/css/colors/ocean/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†Ò03À¦£qgP\"J­#','t#O|z…®Ð««{oí@‚¾¶ÖYW©~ÛÚ[[Ìc›','',0,'?'),('ž/£ÄîÄ8E®[Ï‡çì7J','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/PostObject.php',0,'fÁs#£Gƒö8Áýæ¤^','fÁs#£Gƒö8Áýæ¤^','œë‰wb\"¿ËpiDû°Ïn-®ã¶ã=±mô‡ÏÏë','',0,'?'),('ž1\0`biœ5ôÙÐ ','wp-content/plugins/instagram-feed/inc/class-sb-instagram-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Ãå{2@©áh±x¿ò','ë÷uaÃOdÍj0@Ö’æùyÆÄÚS0ù•®˜Ê','',0,'?'),('ž1l<œ t~LŸUwó','wp-includes/class-wp-locale.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›SƒPä„<È#ëÆ\0Æ\':','D¤àn]‰º©…AW­EH­OÀH£@°hAD}','',0,'?'),('žE-jàÊ1jì£Ê\rÏE“','wp-includes/registration-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úQ<Û¾\Z7¦M¢v«ö','KdïÛˆ_ºMF¥ X¿òXþ.,\'T\\ÙÙ6ö÷ò6','',0,'?'),('žG³Ì?fà¨YWû‡F','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/diagonal-bars.php',0,'ù«çÞ‹¥ã(e*»ÀèÒ5','ù«çÞ‹¥ã(e*»ÀèÒ5','0t*­§èíLëêÚv*ËøôŠšëHóºMÏÖáç','',0,'?'),('žKÉz\0K\Z‹dù„“FÊ','wp-content/themes/Divi/core/admin/fonts/modules/all/modules.svg',0,'Iñn{Ð2õ¤:ý@þJÛ','Iñn{Ð2õ¤:ý@þJÛ','*ˆŒ\n”U¶;L»oveßE[Õ>Æ¨U§óš·','',0,'?'),('ž\\h;œ˜BUÒyY[ ','wp-content/plugins/worker/src/MWP/Updater/CoreUpdate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p	<o¾ùŒ¹ \'ßx×Î','ò~	fpiûDÎtçéiO‹©›I´*|LÑ6q«?¦`','',0,'?'),('ž]oMð¢seªªJ4È','wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿo†þh5ƒˆ\rxÜ–N','6y\ZuðÏ…;ç	­0¤~êrs1Jÿ9ŽÖX²‘òJžˆÅ','',0,'?'),('že¡”¹P&P}½´fæß','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/ServiceException.php',0,'ÀB6Kh[\rðªe<Wû«','ÀB6Kh[\rðªe<Wû«','—’ÁVÞdÓÅ\n\"dz—ù_O!Ô%Æ6êi}C|À','',0,'?'),('žf ¬§rÅpÎ(—‹p $©','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p¢ÔbDî@pýG+×±','*DZÍ>ùBgñ&Y‰Yˆ›þ„Žâ¨4(<¨/','',0,'?'),('žg”Kë;ûqF»VI}þQí','wp-includes/Requests/Exception/HTTP/416.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HLt&×œk$*A®i“Å·','Ú(àÝmybVõaIÅjWp™Œ¯(!AéðëÞ<(±X','',0,'?'),('žxØåþÕÕ³=,¯‹‡=','wp-content/plugins/updraftplus/vendor/composer/ClassLoader.php',0,' ‰×Ù|%þ‡*T*ú`',' ‰×Ù|%þ‡*T*ú`','˜˜’ä¡289vu3’n	C2s¯¼va/Ÿ','',0,'?'),('žyI¥¢&ÙaWùQ=)Ïí','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/downloading-and-restoring.php',0,'NCŠ®ÁXkÚZ¤C+J3','NCŠ®ÁXkÚZ¤C+J3','R”é7ìÿ>\nÞ<¹£¼:úEž¶¢8\"ÝÇ­‹†µ´','',0,'?'),('žyt¬r\'åº°µ?«K','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_th.js',0,'`w\"ñœ¤¯t©Ú-Žb','`w\"ñœ¤¯t©Ú-Žb','Våï\rÔX^guÜC™ƒüââRréù†+DšB»t','',0,'?'),('ž{³±î¯Êòügb$t¶I','wp-content/plugins/updraftplus/methods/azure.php',0,'k92™hÈÎünÅI ÂV','k92™hÈÎünÅI ÂV','¤\n •ËÒ`úv(?×èÑºUJ£Ðéµ=Ãð5ušI­]','',0,'?'),('ž€|[.†šÈÙ™´Ìk» ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/worker-javascript.js',0,'æ«ßÌ“Û\"¦Æ2(-\n™X','æ«ßÌ“Û\"¦Æ2(-\n™X','×É²îp#<’¤`Gq|A½±îA|]t¶|4eÞF.v','',0,'?'),('ž…¶»½î¢è†<ïxÍBŒ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›%€–†\r‰»Ü|½UZvª','ËÚZ^LäÈÈa¼§ÎÑ~zë0;3eÂ,Ë’œÓò-=','',0,'?'),('ž“×Ét:\0?E!¡êèR\n','wp-content/plugins/fusion-builder/inc/lib/assets/fonts/icomoon-admin/icomoon.svg',0,'ïDDxï¹“áÅ÷šÈ¿Ã>å','ïDDxï¹“áÅ÷šÈ¿Ã>å','Õ”1Ñˆ\Z²I ¾TK*¾»Zµ¼–â6¿I€>nt:','',0,'?'),('žœX&›¨0iŒ¨p‡w‹s','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/ServiceSettings.php',0,'`Äë˜ÛZø8&>s¡ð€û','`Äë˜ÛZø8&>s¡ð€û',' ÌÎ¾ÕS—‹˜wJ­‘~\n3Áh	/‘›¼›_\"Bøª','',0,'?'),('žžWeµ;C\'¸¢ùÃ,¬ ¡','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/installed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³V6îýÓügŸúÞTþ','§k;^=Íh\\\0ws0­±d\'öf#RÓÉ{‰Ýxðb°Y²¢','',0,'?'),('ž¢°Ø O0;å_NÅbuk','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/worker-html.js',0,'¼à°|©¨žœ‰$ÉS','¼à°|©¨žœ‰$ÉS','äPsÔ‚Þi´¹õ¹BMÙ/°âØ&ß`ÃÊ‡W¯1Ì§','',0,'?'),('ž£e-¨ÒRÈ‰”®ùL:Ñ','wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢\"ÖZÔóºöO„;mÌ#µ','×v»Í€ÁìOÝÕ=€ínðßu#ëš}»¿Õ¦`²4ÜWÊ','',0,'?'),('žª,xŒ¸Â¯M±Ú‚Ëýì','wp-content/plugins/wp-mail-smtp/assets/images/dash-widget/wp/sent.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£ZÀ2ÐoË½ f«ÔPŒ','J7;D\\‘{§S¦«\\›Sµ*y™:ìÄbáÜ','',0,'?'),('ž«eRèú8\Z<à‡ºÈ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryString.php',0,'¤t·éTnJïÍxÀêxåŸÙ','¤t·éTnJïÍxÀêxåŸÙ','¦Ù!ƒ¸YŠ—±ä4#@¿ZJDï~4¡ÁµÅÑè_Ì$','',0,'?'),('ž±=K3p*¬Õ=2lÃ¢','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/ReadLimitEntityBody.php',0,'s,s…qÔŸÔ\0ß­–åb?Â','s,s…qÔŸÔ\0ß­–åb?Â','ÉÌaV¾ˆlK­~–W9!!Aß\\å4§’èOg­Û','',0,'?'),('ž±s“hÉøzQÌÌ’	uœû','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchBuilder.php',0,'XØEm3‹+O^[Ñ(u¯','XØEm3‹+O^[Ñ(u¯','µÊ`5HÐ¼Ê„5dÀ—º7h!õCaó˜Î|\'”!','',0,'?'),('ž¶ð5TBf«}…2€/c','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Calendar.php',0,'žùTŒmý¨2Ôóºf','žùTŒmý¨2Ôóºf','¨M¶„§=¯]ËŒ\Z„gÑ”÷TÂ‚ŒÂ©k‘p#ës','',0,'?'),('žËõÂyÇ—mö~ÄT¼’','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BucketAlreadyOwnedByYouException.php',0,'Ýóä\rÆ˜ã\Z áP','Ýóä\rÆ˜ã\Z áP','Kèî[:Û¹µ€ÇMö=À–éXÝè˜‘k”k«¥nš','',0,'?'),('žåo8´\rÛÚ—T„‰5¸Lá','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/StorageServiceSettings.php',0,'(Àòz!äÏ SâÒù¿ê','(Àòz!äÏ SâÒù¿ê','Z¼÷ŒÒ&’~ÚœðÒ„!Á/Yd:W^s¸tÊZ|§F','',0,'?'),('žå²ÊÐ##Õ‘n\ndA\\­e','wp-includes/blocks/latest-comments/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0\'úúÅq4ŠPSñÈê','µÁ@ÜŽ¥iStñ\r´-ëö Œíöu,w¾“*©nÚ3','',0,'?'),('žîp?E^¢@·\'ŒãPEÅ','wp-admin/edit-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=[\'ÁˆNÀÔŒ0{’ç\'â','„jéç½š;¢”Ob69ûYã¸5\rVj¾|N3»','',0,'?'),('žîèxóŸP•ÎrMûÐŸ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV3Https.php',0,'.çþWàãçkæ3æ	N‰¹û','.çþWàãçkæ3æ	N‰¹û','E[kì;”\\D×ž\Zg×Ñ)ž™´b(&HÓ“Šƒ\"V','',0,'?'),('žõ´f¨@£c/ðFËˆÀ','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/ThemeBuilderRequest.php',0,'ãÚ˜K)sÆDÎG³š','ãÚ˜K)sÆDÎG³š','kHæG@xbÆ¶¡9Ó5”	ITË­¿ë«ÄK\"g;Ýïø','',0,'?'),('ž÷Šï©ÁÈUÑ\\™aE','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–w¸•Í±Àör0 êØ…=æ','?EÜ%÷ë+Ž›„±Èw\rä^ßÖ—.$â‘i‘$[W','',0,'?'),('ž÷ÎÔ‰S„Ö·3*\0hòŒa','wp-content/plugins/contact-form-7/modules/stripe/service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘‚£2†R©êêÑ{CYPË','~˜\'t\r‰2C\\A\n`ü?c‚XUª\"DÓÖ¦QeŽ','',0,'?'),('žø;sÜ’`À…\\†','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationResponseParser.php',0,'»î¯e¤”©sâ!õë\Z','»î¯e¤”©sâ!õë\Z','	ÅÓcæ²uÌZ[îY\0^ÜuO() \0&T¼ñÄL3á','',0,'?'),('Ÿ\0§H9{…ÜLXÁñãG¢','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticFilterFunction.php',0,'×7â}¨©X®¶zÿ¾A•ø','×7â}¨©X®¶zÿ¾A•ø','$&jáz¿pF#‰á+æ…e­cÎ¢¸‘Á{†tDYÛ²','',0,'?'),('Ÿ	w¦g\\hð]’ÜÐi\Z','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Directory.php',0,'ýØôY$]ÒÁj;{œN','ýØôY$]ÒÁj;{œN','¾\0<à]¶wuXÓq9þL£{-×ö\rëºŽ}“o|e#','',0,'?'),('ŸCv¥š¿ˆ¦Þ4¥Êá','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php',0,'îeÄáÚ;Lu©ˆz<vö','îeÄáÚ;Lu©ˆz<vö','§b!¦|³ÝäcÿÂg.)¨¿PC<ÈÑ´‰eWŽHÂ','',0,'?'),('Ÿÿ;Q<«`“ÏO³ÿ„','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/InstalledVersions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦È×®|Õ Å‹÷äÿŒ9\ZÛ','>-ßlR§À‰›ì+£H¼à’Y	K€4± <','',0,'?'),('ŸBâÔè™ô!³¹vÝ¡É¶','wp-content/plugins/wordfence/views/onboarding/banner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øzz©#uvå™\0›¿¬','ù±}Ü“À|IRÂ€£v¿J©%-î¸/\nîVç‚ú†Ü','',0,'?'),('Ÿ¦ü%\rˆ~\'›/‰1±–','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$?6/™%¤Èkû<j©Å@Â','Š´¨“\r†/ªt¾§:to£³7­Lª~­òÅQLl~S','',0,'?'),('Ÿ<„ (ÈêÀ‰*A]ŽOí ','wp-admin/css/colors/ocean/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê¥ñGzî1[³ñyÔ†ºö','^hKþ\'Ž[×ê÷ª?mÜ>V#þkDÏ\Z;ªVÌÇh¢','',0,'?'),('ŸD²¸d.PË´{-yoÓg','wp-content/plugins/wordfence/views/common/status-warning.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥µkR¹f,ïJªÁÞk«','¹¼f‘!§Ù\rWeŒ¥=?õÛK¤›jP&é*yÖ|','',0,'?'),('ŸGmL8†Ò÷/ñ®‘¨¤í','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/diagonal.php',0,'hzGŒä$*n	Ø\"-j<','hzGŒä$*n	Ø\"-j<','ÀìJ“óE¾“0®÷èÖH®ZK·ÐKðSg?ª0ì','',0,'?'),('ŸIB=æ‚¿ý9>êñ²YQl','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/BlobRestProxy.php',0,'ƒëG8Ç_5“øÚ8Èp7','ƒëG8Ç_5“øÚ8Èp7','˜‹ZºôÖeÌòØO„óÍA¨vi’TÅ]û¼³j]','',0,'?'),('ŸI|›K9Õ(Ô{sõX','wp-content/plugins/wordfence/lib/menu_scanner_credentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}ŸÌ—\0”º±\ZÌÌ¿Ô','|é¬?b~©ª ¼Ú¬•í(Ê¹×º;lÇG9°ú','',0,'?'),('ŸI©\'ñnÛ’ÄôI\'¨¦â','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/ParallelTransfer.php',0,'¹A‰f\\$ØÐep5Pû;','¹A‰f\\$ØÐep5Pû;','yÿ-mç=Ì³‰|Âè~w§Ñu÷vŠ‹Ë2åU¯T1,','',0,'?'),('ŸLe6ÄmuzYÂ ÿ','wp-content/themes/Divi/includes/builder/plugin-compat/insert-pages.php',0,'D¾¨\'!ÿ,^Ü‰†žØÃ','D¾¨\'!ÿ,^Ü‰†žØÃ','k\ZÜF¦ÿËUsArOq¢&òˆ@øy•ˆq(Ó','',0,'?'),('ŸO* ÑôH0¦²ÿí}Æ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Account/Update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä†“˜sH#ãŸ^p¾½¸ññ','ˆï$¨²ÿÉýJH—ÓB6¥	ã G6Ú¨¨½ýÓ\r²]','',0,'?'),('Ÿbv¾ÉE’ì´HÕÇãÎ„','wp-includes/js/wp-lists.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­M4¥¶ËKYs:Ÿ²È«×','ó©¶“£÷”áZ-3wìEÑ—\rqK]ÜÚ3–]æé.X','',0,'?'),('ŸfÅÒï£sIB=rÕ>Ùg','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/CachingConfigLoader.php',0,',ƒŸž—iSÖ\'•”d',',ƒŸž—iSÖ\'•”d','¥VKw0n¼Ô··~1[ZÀ½š]\0½0Otâ‹','',0,'?'),('ŸfÎv!(¦0DgkxÎ-1','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/ChunkHash.php',0,'1Ô“²ä\\Yd»oM¤èÌâ','1Ô“²ä\\Yd»oM¤èÌâ','U fŸsÓà7†©3‘ÚŽ»M*çÜm2ÅÝÆK¬(Žš','',0,'?'),('ŸhSÑÀ:°öÓ`','wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N²+C#+|ófZ¦™]å','kn\Zyé&æ†_©Ø[ƒ¯Iglƒ(ãg\'î^¹G','',0,'?'),('Ÿm[>ÍÕ×…ß™vr','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýòçãžuüÞL·Sv','U“¡ÏXá>gmÕ™h=[|r˜úŒb‘{•’B¢æb?','',0,'?'),('Ÿsì‚¸¬—Ë»v™\"*§½','wp-content/plugins/duplicate-post/src/handlers/link-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','líÈ\'‚Rê	hX[%F\"¿','\\àñéÅµ£}låú^ÙÖ8ûaÚ·{·ýwx(Ð','',0,'?'),('ŸŽ¤Eí{#	0]?3<È','wp-content/updraft/plugins-old/updraftplus/includes/jstree/jstree.min.js',0,'`è¸$GÉð”}ÎƒLº','`è¸$GÉð”}ÎƒLº','³¿sV™\'\\›	©–œú-ïûQI$ê¿¿\"+¹Îƒ','',0,'?'),('ŸœN‹5Ã¹_0²²íƒDI','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/spellchecker/plugin.min.js',0,'Õ }v‡Vï\06†F~Å)Û','Õ }v‡Vï\06†F~Å)Û','iŽuHoPZWV×…\rÒ…Ä3³MneV·3–™Fë','',0,'?'),('ŸŸªc]û/ÃUˆ`ˆ¥b','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/GlobAsset.php',0,'ŽI4RJC0NBÔüÅÜ>ý','ŽI4RJC0NBÔüÅÜ>ý','UëÏC8ƒ1`ÔúÊd\n		ôYVGã¾<€»à.æpu','',0,'?'),('Ÿ¨5¿KçÕAt…X^qPù','wp-content/plugins/wp-mail-smtp/assets/images/flyout-menu/facebook.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷aÇc%‰V|ëžƒ½%YÏ','äàUêD…o”8Ôé¸úˆò.Uâ&¢Ô1ÏúÄÿl','',0,'?'),('Ÿ²7ø‰Î¼Ç›4&µÙ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/BufferStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','í¬Š‚QL‰ƒ¯%ë‰4','RaƒF²Ï&ÀW½¤Î“yåTãHKÞ93ëˆsçç¬','',0,'?'),('ŸÅ—áËY2a·¨E©J»üî','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/SetBlobPropertiesOptions.php',0,'Øê¬\n±—·Lmpº.&','Øê¬\n±—·Lmpº.&','N¬åÔ5Hib_Ñ¹¿ë´¬¨Å8Ì³QoÇÂÍù–¥vL','',0,'?'),('ŸÎ–&¿¢NÂ,õ¥ïŒ6P','wp-admin/images/icons32-vs-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡*04ÿG4F—	&Zƒi}\"','ë.aú}…‹hwÓ6œWEÊ­–(3ïJÓ­µ9ÓEå','',0,'?'),('ŸÚv½á#q¸ò´ÈƒÙ','wp-includes/sodium_compat/src/Core32/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—EOxÙ•XÚ2ë–­Øƒ','x¨×aJNù!e±¬×\"\"Nqê}ç«AMCû1)®º{€j','',0,'?'),('ŸÜå^õ^:28’\0Ö­\"‚','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/InflateStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?·mgîÉìæ\"Ø¥õ%','×Æ0xìKž-nœV‡|EžËÒ¶0;.‚u\'%','',0,'?'),('ŸàW31¦©N«¸Äg×¤ÊÎ','wp-includes/js/dist/vendor/react.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íõjB¼¦µe¿}ü½ü\"\Z','¤g“¯+_u<!ï Š”\'Öä[’æN¨b¿rÉØcñ>;','',0,'?'),('ŸäñU%D‚Xà6˜´fu”','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Exception/Exception.php',0,'¨c>æ #lPEþÿÓë::','¨c>æ #lPEþÿÓë::','“²?¯¬‹dærù‹õ!HYÞëÙ\0@¿0¥u[›','',0,'?'),('Ÿç8³dŒÉ‰i%1†{s#','wp-content/updraft/plugins-old/updraftplus/methods/backblaze.php',0,'‘~ UÅ\Zz©×]¦š˜','‘~ UÅ\Zz©×]¦š˜','B~:]_ˆOåƒLAN/!qÒæpf	ûN¸)š|rO','',0,'?'),('ŸëÌêïÒQƒC§…ÆÎãø','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/S3Exception.php',0,'DÑ\\Õ‹T÷wkclšJ','DÑ\\Õ‹T÷wkclšJ','Aøž)$ña°È¦k_\runµæ^\rJ•¿UÃysÓ)hP','',0,'?'),('Ÿôx[Çe„ò¶¾>M','wp-admin/includes/edit-tag-messages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–Ôm-Içf3Êf\\Z’ý','u¶-hîyjLÿð!zîVÀºœ-1ßnyFY‡Ã‚&‘','',0,'?'),(' 3æ|pvY`N@&ë6','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Resources/iam-2010-05-08.php',0,'Î~SÞß{OÕ«úxg%œ¸>','Î~SÞß{OÕ«úxg%œ¸>',']C¦0¦EŸtË€&f¼eg!Œ|˜ñª1ž','',0,'?'),(' \'_—–žT†Z[»\rÁ','wp-content/themes/Divi/includes/builder/frontend-builder/build/bundle.devtools.e28cce0b.js',0,'$‘y…!8hýd¥„G‰ò','$‘y…!8hýd¥„G‰ò','[~²“Q=K†Ï[xè =GXÏçË#Cê\r~ƒY|½NH%€','',0,'?'),(' *Òo‰Hm÷|´ç4Ë½k','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkCreateError.php',0,'ñó÷·|N\"‹g )RH','ñó÷·|N\"‹g )RH',' 1/*-c{Ô–&4­ŸMcý¸l¯3iµxó=þ·‰,¹å','',0,'?'),(' -ž[âáÄè ’	D‡“','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-tooltip.js',0,'š*„ÓÏ\0rž­æ–@q¹%n','š*„ÓÏ\0rž­æ–@q¹%n','1` ŠÒpŸè;;AË»–\n-•0ºÎP.EŸ¡WN','',0,'?'),(' :by>‘$?¥XÔ_','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/FacadeInterface.php',0,'G›HÓ6ØmªËw‰†ø‚ü=','G›HÓ6ØmªËw‰†ø‚ü=','w\\7•l[W•1KÁ\'­GdËCI˜—Ur½w ÆF=”•','',0,'?'),(' ;Ãÿµò=k‡¡1êHà','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/ThemeBuilderApiErrors.php',0,'~âwÏ¿Mdt*1‡Æ','~âwÏ¿Mdt*1‡Æ','üa~“l vƒ÷ÓIQCÛ/aš«î/Ô1°ËÙ°À','',0,'?'),(' <îÚoLÅ·÷‹¯Ú ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidAuthenticationCodeException.php',0,'±` ŸR¿á„rí¨°¬t’','±` ŸR¿á„rí¨°¬t’',' Xêò|øV BY¹êßMrWò>r³²ƒ\nÇ|\r1ô;','',0,'?'),(' EÞ¶\r}”Cnvïfµ„','wp-content/plugins/instagram-feed/instagram-feed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' >¡Y\\H7m†Ýƒ½hÏ','Ï…}‡¢ë.¾&tæáS»‚ÅÖ#øX›dâ“éë‰ª','',0,'?'),(' VÔâÃa}ûÕs†‡]','wp-content/themes/Divi/footer.php',0,'§bîÁÖ¤›tà€‹Î¨=gU','§bîÁÖ¤›tà€‹Î¨=gU','s]Ð”¯,”Ç¡õ¦ô$¤	È [º¶v>ÜJè;O·','',0,'?'),(' eQ<‰@Û¯,tEJ‡','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ExceptionFactoryInterface.php',0,'í`å»¦­•*&a>O·<','í`å»¦­•*&a>O·<','ÆW¬ø\0™*¥0ÿ½‘µŸÔOëoÛÃ¸¥û+€zòSsÑ','',0,'?'),(' qò¬h¢ö¾Bcø92’î','wp-admin/network/site-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bh@ÑUjÕŸö›·GÒ\'{','9;#ÇÝÄl+Èâ»9òÊóõ\"¨ðšp­LÅ¢®ÛˆÀ|','',0,'?'),(' upÐ¿\08Œæ–÷íÜ¹','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/SetCookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Àuéô\nÙë&S…bN¨ž','HkÓ¢˜¾¸©O‚R­_%!…Þë£$ô ô­‚y/','',0,'?'),(' zvŸXó*\nw\nlÈ','wp-content/plugins/wp-mail-smtp/src/Admin/DebugEvents/Event.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OùÍ…W·8*//ˆ“\nö','÷ô­·‰[)Z§BZŒ%Üõ¶4!ˆwÀÌ…ñ‹ÿ','',0,'?'),(' z³U#;Ç»hfŸê1mÀ','wp-content/themes/Divi/includes/builder/scripts/ext/media-library.js',0,'°²bh+ÚûF6Çc¿¨','°²bh+ÚûF6Çc¿¨','BF6önõêR14‚’Vb˜E¤dvÝ9íÏÁ:ûÐº:','',0,'?'),(' ~4ùþÔ&¸Ãœ¾Õ>-','wp-content/plugins/updraftplus/vendor/symfony/process/Tests/ProcessBuilderTest.php',0,'€»87+‡L>¿Fr>‘fþ','€»87+‡L>¿Fr>‘fþ',' BQ>É¯€M·ù>x­a\Z‘*3øçà,øÿ´','',0,'?'),(' ~‹(àtz_,Éé´ÎÏÞ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/Hex.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡•µã[àÖ„öÜÞ[_Ó','£aû”Ð»ó«ÁŠšOÈüýŠÇ‡ÃŸQÏôhqZ`\00Ç','',0,'?'),(' ‚²>JÅhNFä«!Û<','wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/plesk/plesk.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K¯>r®Gù«âm’×8´)','\":Jµ¾`#®‡WO†Û%ÿ/Ê^\Z¨§<','',0,'?'),(' „=j¶ƒú³ñÌ7„\n0âð','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/Exception/ErrorResponseException.php',0,'ôÒ9”Š—CZ§ü¶g¹','ôÒ9”Š—CZ§ü¶g¹','YRWeÈu¼–ïíÙÁô“˜ÄÑÌÎpÅ{Â³ÞRÄ>Ô','',0,'?'),(' —äa¬·pmÈ+neŒ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/StreamWrapper.php',0,'Üç)5=S¹ÎV;¯ÿóç—ë','Üç)5=S¹ÎV;¯ÿóç—ë','~ÓÏ˜M&ež[êò¾úõ×UÈ°‡÷±òØT	','',0,'?'),(' ¨ª\Zˆ2v[ïa','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/PEAR5.php',0,'\ZgÕ€	7*l¼ÝÖ8±(Ï','\ZgÕ€	7*l¼ÝÖ8±(Ï','k”g±î^òžë}\\0T1xJCÿGb:¿ÙK~3ã','',0,'?'),(' ±n1.Ã“uétŸÈlX','wp-admin/css/colors/modern/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~i¦œ‰+We7éúWQ–','!åLÄÖ?§ö›O#¯WÎBpdAº³NmpcW>','',0,'?'),(' ³²–Ö“Ë•Æ}Ò?’£œ','wp-content/updraft/plugins-old/updraftplus/methods/cloudfiles-new.php',0,'×Œqj>ÎOÊ1?ƒÀkM','×Œqj>ÎOÊ1?ƒÀkM','C´õ§€×né5Ø†?÷sãIDà>Œåu¼ú!×ß¸SÑ','',0,'?'),(' ¸‹‡`%ú’{ÍüÒ+›ó','wp-content/plugins/wordfence/images/icons/error128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É:Þ%7÷!Á´.Ñ','{h\0,Ž]ózñk“Vî{Ò—¢6nG\nÀxš©s9ê','',0,'?'),(' ¾Žv†’\\Qœ¥À-¼Ê','wp-includes/js/tinymce/plugins/hr/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	%>‚)šú…Â•;¶','ØƒFäíSå[kõËø&ýfý 6+ b°>¨','',0,'?'),(' ¾¦¸¡Û±Þj‹NÔ{Ñ','wp-content/plugins/updraftplus/includes/Google/Service/Computeaccounts.php',0,'ðÜ;º¤M>ÖÆß	3þ','ðÜ;º¤M>ÖÆß	3þ','Q‚A%ør˜½tz}ê~ê‡¬p5ø…3MnÖÞò2_ë','',0,'?'),(' Ã·BèõŽ¼l³gØ^','wp-content/plugins/worker/src/MWP/Security/NonceManager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZÓÂ!Þ*õÉmÁ\0›j','ØØÐ]\Z¹ïUetñµcÈ&Ì|ýÒpîdÈš–ü','',0,'?'),(' Ät’Êh¼	,Gx¢\"M','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QäˆRëN\Zb8Mògž|','{ÿµ…Ê«R‡tH}¬ŠÜ§YQœà—{òùF\Z±HÝ','',0,'?'),(' ÉLˆTD¿æxÕ˜\'Í','wp-content/themes/Divi/includes/builder/module/field/display-conditions/Author.php',0,'I\nßK/È’Ðã±H;¾Ò','I\nßK/È’Ðã±H;¾Ò','>%­¸*ëƒ^¸°ÖzºCÍ˜f5”ÿ¬ØÁ§2¶l','',0,'?'),(' ÉïÀÂíšü\n$+è','wp-content/plugins/updraftplus/includes/PEAR/HTTP/WebDAV/Client.php',0,'ê°_óO[äÃDçæuÀê{ä','ê°_óO[äÃDçæuÀê{ä','OŠ=Ö–ÓËß¢-Öãìl	XÎ{Ð¶|ç’','',0,'?'),(' Ì“3ÓzÖòDqª(	','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/Each.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼Æ×!U\nØœŠðbmôô','\\pb×œÎžFüÉ‚Ÿ+Vjëå·ÇAKûæè“BaNpŽ','',0,'?'),(' ÛQ§yk´+á¦¹ñ]™T','wp-content/updraft/plugins-old/updraftplus/includes/updraft-restorer-skin.php',0,'¿yË#›™ÙÐ‘ë÷;¸','¿yË#›™ÙÐ‘ë÷;¸','.àƒw<óÇøoà7²l¸\Z[¨Ö‡$	ÑXçPj.â','',0,'?'),(' ÞÃ9˜X’¾¸¢U¨7¥z','wp-content/plugins/wordfence/models/page/wfPage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tŠbo i›%HºXwÏXv','Æ…1hì/jwÕ<UÀ”\\™kÀq%s|W¬6éæ','',0,'?'),(' àÑ–ÝqÝäSGKy(þ','wp-includes/kses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"åû…&ïþ¶ƒÿÜÎÚ¾®\Z','v£ˆ<þ¡Æÿ	þ0èÒt³\rðÞuõü¬©æ^LÀ','',0,'?'),(' è¶bö÷~®•Òno4¤','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffStrategyInterface.php',0,'Ó5ùÔ½1ø8ž/ò|o/','Ó5ùÔ½1ø8ž/ò|o/','…cí¢™®yÚzåÊ]ˆ¿ïÐ|’€–€a\"æ¨˜eñ','',0,'?'),(' ïrS<îÑµ/H\"¦’L','wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/Encoding.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä¹”Ð“\\Šw±àÑO¬`','°¿T®h€ðÅ´>#«œ†ÔÉ4þWMF?ó¼s\Z5¬Ú[','',0,'?'),(' õI?íŒ4ÊmÌ:ïAIa','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Utilities/Base64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' W¥—9ŽÓTÛuá‡›/','»–PèÕA‚KŒ¹°6.\\‹S³¢’ñÇ¶†c”Ó‚','',0,'?'),('¡¨Â…^ð¿¹Ù\0˜K','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/ClosureLogAdapter.php',0,'Õy„…F_\0WòÔŽ7Ïˆ','Õy„…F_\0WòÔŽ7Ïˆ','¾È\0Bþ§1z«4£±Þ¶;þµVé`V9‹ÐÒà&x¸','',0,'?'),('¡vzìòUu•ºyo\'K}','wp-content/themes/Divi/includes/builder/plugin-compat/the-events-calendar.php',0,'!íûCÝPR$Åï«’','!íûCÝPR$Åï«’','O\"æ~Ûfö­ÁÏ”›©_‚½S\0ØÕ–‚ÜQ2g','',0,'?'),('¡9ÔlÂ×Ÿ? ríèqÀ','wp-includes/class-wp-user-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TÄIyÊ°¯BzR¬´>ËO','¯gu,µ$Ébhæ/7É¡CÕ<¾l=ÄÏ0xàµ3Èx','',0,'?'),('¡\"7£Þ7R\'H\\±ÀT¸','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/ClientInterface.php',0,'@l7ö	3Àë;5œøsŸÊS','@l7ö	3Àë;5œøsŸÊS','ñ–Æ’uÂãHnûÐáíî@£d]ÜûOý±£$ƒÒH4','',0,'?'),('¡#3©«J:qÉ­ô_ñè','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpError.php',0,'P^ZFÓ{ž‚¬”t_ÆK‘¢','P^ZFÓ{ž‚¬”t_ÆK‘¢','Ê¨÷ùý¯ÔùØÇY=ÈI\rÏè\\S™‘\nÚo0Zˆz¶Œ','',0,'?'),('¡%¥°?’ê•õ¨)Ò','wp-content/plugins/wordfence/views/common/section-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è²ø!z˜à‘ÏÀ¶˜ðÌ¥','+£ÿä«AÍS—¯ÑŸbH´Âæ¿³Á$V¯+¿ÜNÎ‚Ã','',0,'?'),('¡,Ø¾³:Š¢jaRgÜŸŽU','wp-content/themes/Divi/core/admin/js/common.js',0,'×u²2rX±ÐPYgÊ','×u²2rX±ÐPYgÊ','9|¶k™«Âv&á¹AíÞß·u÷7Š4r`ò½i6À£','',0,'?'),('¡22:€D˜Éd‚Ë4¿›','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/GMP/DefaultEngine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êÈ»	\"ÅíQ.	b¹Â´”','±ä“.QÚºXbèO“`®0üÃ:HÄãkš‘Äž|0','',0,'?'),('¡DSæâá3.Ä¯y}ó;','wp-admin/images/browser-rtl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D\"‘ÙÓ Aä\Z®þ¿¿%Ì','+å•§îÛè0ÖçpÎÆœõ˜JMk ÿqçwœXØ¨£','',0,'?'),('¡FñžÞ°:ã_—€Æá{ð','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/ace_editor/field_ace_editor.min.js',0,'ÁˆM}+ŽÏKš¼æ3Ûã','ÁˆM}+ŽÏKš¼æ3Ûã','U}AUw\nÂoõ½,•˜\0ôy’èTïçPt˜„|‰B','',0,'?'),('¡IjóLëP5\'VAr‰I+','wp-content/themes/Divi/includes/builder/module/Portfolio.php',0,'VÅäÝ8,—?’™Ñ!Æh½','VÅäÝ8,—?’™Ñ!Æh½','O™¼š¹Jxp¢œÆKRÚžµÀ¸\"ðå ZØNw','',0,'?'),('¡Npeù)È›ÅvG=Þ®õ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchDivisorInterface.php',0,'›`ò?2üKîä4÷­æt','›`ò?2üKîä4÷­æt','¡~êaõç?oH3`])#)7ìN«È+_¢cñÉ','',0,'?'),('¡[R‚†O·«‡@ƒ#Ñúò','wp-content/plugins/duplicate-post/src/ui/post-states.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Êy\'zZ°õÌ£æÞ½ŒiŽ','ú)g\"L\ZÍîÕ›ËQ7jöx/“aû§Çc\"ï¼{hð','',0,'?'),('¡[öHn[PÖ.~½ðßFU|','wp-includes/nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IìØ~H¹‹¼;½ìƒ¤',':Xµ±×¥à«D¥W³G°ÒIVæx(ä³YÆ£œ¿','',0,'?'),('¡^ñsøž” .2Uò!ß','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Metadata.php',0,'R ä=bÔüzn;Ú?‡$','R ä=bÔüzn;Ú?‡$','²Ù2A¢cËKð‹E’;šNLÁ	y\ny°Ò\"ti7¹','',0,'?'),('¡a¼z&×fˆ`µÄa;J','wp-content/plugins/worker/publickeys/partner15.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?±øRUÕîø›»u\n‡ñ\'M','Å‘_>ü_+2\n‚Kè…\'lxOHal÷~ÙlÖRz','',0,'?'),('¡gòõ…ƒn\Z¦@¤â´Õ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseClassInterface.php',0,'pŒyud#“ùÎÁSå$5å','pŒyud#“ùÎÁSå$5å','RÉmÕ¥8/‡fxé:ÓÆto5~ÌÄ…Šµ[‘ÃVÌ','',0,'?'),('¡jðò—\\ïÉÄ¦<yãpƒ','wp-includes/widgets/class-wp-widget-custom-html.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Û¼ýŸñP‘L20¹ý&‹','l)•VÕ\'B\0¾:»£¶´èhÖµf¤;\0<ÅƒÂïÂ½','',0,'?'),('¡täÞ.!hît¸%h¬á','wp-includes/blocks/video/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äººî¢†øejqpu˜Kq','æ3îÓ6»=È³£ß[‡¶E3¨ŽÈÜM˜ê,®-','',0,'?'),('¡w÷Õ›?\'U¦ñäÐÓœ','wp-content/plugins/worker/src/MWP/Stream/Callable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³ÜÒ«4Š´pÇìa\n./P‚','\"%aòù72·éw;laóZòÃUÔüå¦çCC‚…','',0,'?'),('¡{Vr\0Z¹¥ÖØ*—Âî¹¯','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/IdentityToolkit.php',0,'.¢Ú‹=QžeeH»?ô©Ô','.¢Ú‹=QžeeH»?ô©Ô','#ŽK·eŠí¤1S;ˆ¨u‹ÇÏë‡O+°|ß¿*','',0,'?'),('¡»«Z€\Zxcy•dó\'','wp-admin/js/language-chooser.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÛÅU>½p4Jæl®“5À=','9ôÂÉ\rX¤LÙdC5@UÞÌ¯K&>ÍƒlÀ”#Ë','',0,'?'),('¡”ý®ÞÊ2TÅ´qe€ÅÈ','wp-content/plugins/worker/src/MWP/FileManager/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('¡œ@ï²Ò}œxÁfþd»Û','wp-content/plugins/really-simple-ssl/testssl/cloudfront/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¸ÜaÌ0ŸÁš¬ø&–-','ÓªƒGDfš¥è‰:ÃÚÈlkŠ#²L+J5B¨Ö','',0,'?'),('¡£2éúÄçsÚâœkÓå€','wp-includes/blocks/categories/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{´²¢\'yÈí´ª²Âª','+ÇÕvy^dUöÔÄ1vvÁt˜Ž«ë+$bÐ:‡','',0,'?'),('¡§OKSaMß\Z·†÷','wp-content/plugins/worker/src/PHPSecLib/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('¡ªH>ŽYwœç_$½ÜLH','wp-content/plugins/fusion-builder/assets/js/nouislider/nouislider.min.js',0,'|»Ø1\'~C”fŒ/™','|»Ø1\'~C”fŒ/™','›î[F¼¿MNS±¢èÛ3òÈŠ&¿×’&O÷n·Ø\'','',0,'?'),('¡ª¹¦!Buµ€“–)éÞ]','wp-content/plugins/fusion-builder/assets/js/datetimepicker/bootstrap-datetimepicker.min.js',0,'mî¢&³òì@æ¤®X','mî¢&³òì@æ¤®X','\\0ì»«‹Û´ßì¯Æ©éÑE£¤ ý¦Ÿw‰wœH&¨','',0,'?'),('¡¬‡%­­¨\\(w’½·ß&','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ý®I\0×ò$Kø¦  ó	','Væ˜p\Zž1ÍŒÑÏ\'=~ñ›‘Ù²ûF_u\\ÁÐPå','',0,'?'),('¡­„á‘l\0Œ‡9ÿs²F','wp-content/plugins/worker/src/Symfony/Process/PhpProcess.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦x´ý„\ZË‹\0‘','´,¬ªˆ=>E¯­7#RÅqL\nr=@7Û3œÅž7èNºÇ','',0,'?'),('¡±XUqnãà\ZÒ¸\'2ü@Ü','wp-content/plugins/updraftplus/includes/Google/Logger/File.php',0,'×ö8_²ñpÚÌÆ@ñ}','×ö8_²ñpÚÌÆ@ñ}','ímòÛûO»·útOŠ¦—žh;Ñì)œÙ‹ÝÂ,ú\'ûøJ','',0,'?'),('¡²¨æ€Ë:xÙý=á}ˆ','wp-includes/js/jquery/ui/mouse.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õþÅJä;ê tyÍÖÐî','ËG ¼¢‡ºü[&â·~Í¤òE3‡	ÞzÍŸ¶«Ó±ö','',0,'?'),('¡Àá›YY‚mŠ\\DTÎ4','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchVersionException.php',0,'…¸¡Q vÑ3ÖÉQ\\‹V','…¸¡Q vÑ3ÖÉQ\\‹V','­*´7‡Z8P´\rç¹J•hñu×µžO=!æzå','',0,'?'),('¡Ç(ÜBY]ô2\\~KŠy','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ResourceBucketException.php',0,'\'Jöñ‹ÓWf*ëµ¾','\'Jöñ‹ÓWf*ëµ¾','É³-ø6¢ÖÂTvüüù¼ºß+žœ¡3#kAšË© LU','',0,'?'),('¡ØHéaŒ+õ§­­Ì°I±','wp-content/plugins/wordfence/waf/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}\rñª‡Ø¦¯‡À8„W—Ð','ƒgÊŒñ©pqn üv<]ˆæó¨ÐòIˆAH€³¸Èˆ','',0,'?'),('¡ÞOíIáóYŸ\\ˆ{=«H','wp-includes/robots-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒ\\ä‡ªlÃ­Ü“Mü','^ñh¤ÖRß»uÈÉ†CZ11ìÓS‘ýå&ÌŠp0','',0,'?'),('¡êyî&a’A 7Â]Dm','wp-content/plugins/wordfence/images/icons/ajaxRed16.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´Ïà%º»©B\ng 2…‰;','D,…A£JÀíÀƒ»lOS‚p¢eØ‡£&ªÚÆ','',0,'?'),('¡ø•ó¬#YµO š´µæ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Handler/StreamHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§€ž\Zþô¸ÒhXÑn¸¦F','Á„ñéy,†œ Èpgê)ÔÒRAkÞ‘Yœ´~•Cô','',0,'?'),('¡úÜÉ²ËÜ;ŠÙ:','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/AggregateException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Á3Q+7öáj$?™r','µ‰èFgåh=\Zü\nuw¶þÌ²ü¤ŸÂ½nØ\ZêÇ¯î','',0,'?'),('¢Æž×…\ZXªX]ÁYÉF','wp-includes/js/codemirror/htmlhint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ2ì|ÑŸ¯GŒMtP5§ê','\0U[\0÷M\'mCÕ¼5þÐ5k`ùªñé5ñÑ‘','',0,'?'),('¢¸¢†/.(:ý,8Üþ“¿','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-helper.php',0,'N¸“(xbšº©ZMVv','N¸“(xbšº©ZMVv','o²z‚§…nˆrŠ®æöŒ`²\n\\Û›¤@lºOœ[`€','',0,'?'),('¢n¡8É<,2Íøàªþ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','î$i\nÉé0]Úu Õ[¿ì',' @\Z\Z¬‘¡¾ãZpaÙApÌÝ«”ì¢‹ÁÒ‚-Ñ\\\n','',0,'?'),('¢ a\"KwTÕbc1S','wp-admin/css/revisions.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ç°WÜª{×jÚ›/$¿Á','º×j	ELCo„!;uÌÃ:èè›œ|ò|/éîÕ3eom','',0,'?'),('¢\"´¼bØç…\ZÑ­ø—3','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserUpdateError.php',0,'#Á5·m7`Y,o ¼Â¾v','#Á5·m7`Y,o ¼Â¾v','¸Ç“lã¿\0Èì¡ErÉ¿S®)bJkx“­ð\"¨n','',0,'?'),('¢,ÿ$ä±\"ˆÕøWsÇ4','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/deprecated/ActionScheduler_Schedule_Deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	®Ä•[lCüþÃ Ó]','Ò_Q>”hðì.ÚXŒMmP4WÄ=¾+.¨¿','',0,'?'),('¢-‰[ipùœ\\^˜ØóÁ]','wp-includes/widgets/class-wp-widget-tag-cloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶,½q­’th²Ì·Lãý…¦','¼ÃsõF·fü<Ô5H¢ïuŠ1ŒÆã‰õü8ûçmU','',0,'?'),('¢0áÁ&¥Y©îÕ ÕÁ¡','wp-content/plugins/wordfence/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•]_åŒ#Dö´\0óƒµâ','\Z ŸøÛ’ö%§4~NÙ~Gh!bØ­:w‚˜ÉŒ¿™\'','',0,'?'),('¢4gŒeÊØé>©óÓß','wp-admin/images/list-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hÕ»ISÂ2ýÓi‚gš','ùîJüpáS_ò¯ÔXØØ#Ž‰UBÙ-zÔÔÄ,ç','',0,'?'),('¢4ž©¦ÑÚ%ü9ïý\0€','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/spinner/field_spinner.php',0,'\nyãÐ€ê’îÄg—Lv','\nyãÐ€ê’îÄg—Lv','èqvÓ{:>‚¸Uõ·Z6sp8yCw­Ü¬+ûG','',0,'?'),('¢;AÄ[Q½U˜ª$','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/PopSettings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹íZ¯åq”ÿ!³û7.','¶.‘Â¨ê|ÛI{kÓú‚­è]­œ[*nt÷Â•Lê','',0,'?'),('¢;¹f J1øúË˜·€+C','wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘n\níÚ+Õ®.jqAZ¨','„\0ýöIˆ›ùƒˆ’36˜ø³Ä›nüj7jk£:ãá','',0,'?'),('¢L?ìÌrÅw.*5××D','wp-content/themes/Divi/cloud/i18n/library/categories.php',0,'®Cåñ0ÇEc£bÑXd.\r','®Cåñ0ÇEc£bÑXd.\r','._0‚ˆbž#ãi.áúa¡Uô±‚U::÷óê	x','',0,'?'),('¢OOwTàM\rÒÁY˜!d','wp-includes/js/mediaelement/mediaelement.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-6Øÿ¨œÖÄÖm½öÌÖ','ÖÍœ%»]ÑcØ·ÍZœÿÊ7ë\nÀÔ‹°Š2À‚ì','',0,'?'),('¢Sd N»Ï,E^àìFtš','wp-content/plugins/instagram-feed/js/sbi-scripts.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùÿ`ôZ™Þ’‰÷žp³Ò','E9·`ÖRŒÎó ½áY¼Æµ¤KÍ5âë\Ze9öH!ß','',0,'?'),('¢X(M†Ãï˜Óó„º×','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/DeleteContainerOptions.php',0,'^ònŽaB?]î3~ÚÉô+','^ònŽaB?]î3~ÚÉô+','Ùâ­ñÀí2;¾\0Bñ]Š9†™Ú¬W\n<‡MþûûÑ','',0,'?'),('¢]Ç¿| ´áö¾¦ICô','wp-includes/js/dist/keycodes.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›v¡1/Î-lyŠ{ï2','!ObŸ¤pýmTÿ‚ßÞ¯nÑLÈ1Ë\ZÃìÍÁ_ÌWæ','',0,'?'),('¢fkj’ÂN‰Uei4=%Ã','wp-admin/js/tags.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×«âDÚXÝ²õ2UgÌõ','¤ÄÎ9€k7qJš3þ˜Bàl?W™àªÞÞØŽò×','',0,'?'),('¢isÝ6Èc&í*!oç2','wp-content/updraft/plugins-old/updraftplus/class-updraftplus.php',0,'×nâA®uPã¬¼r®â3ž','×nâA®uPã¬¼r®â3ž','\r¼¡0 •ÖCòÈJ©HÆ”Ní\03/6H±iÄ	]\0','',0,'?'),('¢y%…ËÆÇº~¹ne\"V','wp-admin/css/list-tables-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ï	u>0se#ïhy‰$Ïé','¦öPŒµà«g_Û\'*ÙZ0ÆXpæ2K70µ¬[§','',0,'?'),('¢zPûLpåù#º–I','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNameError.php',0,',´7ÚfS\'®GŸ\'C–',',´7ÚfS\'®GŸ\'C–','µ$)CÉ:Ê¤œÿ \r· õîF…4@N=Ä¨ñ','',0,'?'),('¢“Ý‹HØÞ¢ …†¨1Ù','wp-content/plugins/duplicate-post/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','î…&O¤´Ö¢*KbGãº_Å','Ð‘Jö„\ZìÔŽ7«|rUæ:ìÑ° Ñ—l;ÈÀ','',0,'?'),('¢¡…œ ˆfù8µ«y`','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/SymmetricKey.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çÛ™êAïu!° –\n','ä‹Ö\'Ç^0„¨0»]sV€1NRx÷ÃÓ€€y7zè','',0,'?'),('¢¤-!wó€ZúÌgk','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Logger.php',0,'‚œæÂ÷™\'´„Y5Í”ºÊ','‚œæÂ÷™\'´„Y5Í”ºÊ','d#–~BŠMë{ƒ\nÒÇÿZ¼F–I¿Ëå8!±µ-','',0,'?'),('¢©êŽ¤Lž/=\r‚öþ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/extensions/import_export/import_export/field_import_export.js',0,'Ûµ‹U|¾i*ºüf}	','Ûµ‹U|¾i*ºüf}	','üADwªû2†Öº¢¹Ä9æºj¡Â9Vû2¨','',0,'?'),('¢´,„\0HnƒU_\'~ÍÎ\r9','wp-content/plugins/worker/src/MWP/WordPress/Query/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('¢´¸/Ï-•TÇ»úT<—S','wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýNkyIk¥Âw×”©=i','LS=ˆ¡Ž­Wf&·d\\=]_fŸvesWÞ¾ñ‹','',0,'?'),('¢·­»ê\"ª÷+8bÏÝ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';çÁöIkÂ€\0ã]üÒ5DÍ','ñ¢p‹mÍØiïŸ¡ªø:\ròH|£r?†Öôñ\"Öð','',0,'?'),('¢»î>ÅÞ”ÝçŽti|>ñ\\','wp-content/plugins/wp-mail-smtp/vendor/composer/autoload_files.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-3q*O³¯O²3º:RZ','}€Èó¿K(ë¼J¤ÏtÍÑùv\nD(M@Á¡Éõ‰Ø¸XŽ','',0,'?'),('¢¼ ËWÆ8¬³æáˆ¸','wp-content/plugins/contact-form-7/includes/block-editor/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒefäª·çÁMÌçˆ=¨',']ŸaêIX\"feµÌ–_ñ©°¾1O?©Ý\\³1·Š','',0,'?'),('¢ã}çjZ.N¶Ž\"¿P:','wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/cloudways/cloudways.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÁæWOe¹àÊßª*;¨(9','(çô˜?8\\Ïj¾Ô´€áA3vG\nÿcé9<ðß\0','',0,'?'),('¢ã®Ò*1ß§®®‘’£”','wp-content/plugins/worker/src/MWP/Http/RedirectResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O…•îð\'<QnSHLaOXh','ßùÔj.‰<¡»ÅÀAä~Žp4|qf—µÔwÏ','',0,'?'),('¢êÕr£Ý¨N(€´Mí\\','wp-includes/blocks/post-title/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†˜4‚Ìˆ~á3ÊvtSQ\'','Ûg¯e«à–Tø½»Ô\'i\\š’i¤Õ=>;€QBH\'D¼…','',0,'?'),('¢ûp µöÒ>*oÈƒ†ú¡','wp-content/plugins/updraftplus/templates/wp-admin/advanced/lock-admin.php',0,'³Ò‡SíPÙ9GrXZ Â{','³Ò‡SíPÙ9GrXZ Â{','î;3/¯(•\nÍc¢[5`Pª¾o·wEÂ­,Fq','',0,'?'),('¢ÿL’þ8®{ÓIi˜«´)','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/ImmutableEventDispatcherTest.php',0,'†„@„pÃÀÈÕOZ‚®»€5','†„@„pÃÀÈÕOZ‚®»€5','åžPÉ”ovÊ¤Øð\\”†*0c9¸ÖeGô÷_RDÝ%V','',0,'?'),('£œ¹œ‚™îgyKSx^Ã','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticTokenParser.php',0,'QXžƒJu*’U\rfÑ]O*O','QXžƒJu*’U\rfÑ]O*O','<f»»Ñ}ÑçÍ{HOÚ¥E±ºŒ>ý‘®Ÿ¤FMæ','',0,'?'),('£\Z%gé®¥?Z‚,\rÂ¡','wp-content/plugins/fusion-builder/shortcodes/fusion-counters-circle.php',0,'1=¼<‡®?qâåÓÇ‰s','1=¼<‡®?qâåÓÇ‰s','­¶Ê¨=·¨FUMD@úÆÝL5û¼.0½à˜T˜ù‘é','',0,'?'),('£\Z‚bê@k¶.þ£i.p','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIterator.php',0,'Bbö¯=ôxäË\ZSîç†','Bbö¯=ôxäË\ZSîç†','\ni¦V5¨Ki}½ô‹¤EAŸt7Ì‰…\rt)fŽ|à<P','',0,'?'),('£1œ‰­\'¸ÄV\"èÇ57','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Status.php',0,'‘”óÑowÊÂ\'k…Ž“','‘”óÑowÊÂ\'k…Ž“','b JxÌ˜Ôùx3J!äIàð£îI\'','',0,'?'),('£1ào%¨ÀqÅAµ€','wp-admin/js/inline-edit-post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’¿ÑÔ1ò/V`Üön’BRˆ','ºNüXLµÝ1»YDr/šuXn¶¶o€µ‘gd›š','',0,'?'),('£?#ÏìÔ?Õ.Ø¯ê©”X±','wp-content/themes/Divi/includes/builder/scripts/page-settings-metabox.js',0,'‡¹sÒÀžÀa˜¿yT¬óH»','‡¹sÒÀžÀa˜¿yT¬óH»','´PÙ ˆ¸²¶¶Àsãw©iÔ3OE\\OiààÞŽ% ','',0,'?'),('£@; Š°ûæ,kxûÄån','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹ìFXi]Â{¹tê¼Šß','[MõÚ|vÙE—‹ÁBÏÅý“¢ÛFá FMïÔ©ø½Ò«','',0,'?'),('£@Ÿœ<ÌÊäg¡ZŸLRI','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetBlockedDomains.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›äêvoh3‹ØTd„','ß7+pÄ²R>rÇó¹Ž]ª¤mîË\nò‚úÉLKæ','',0,'?'),('£Cé\'ü;Mbø5Ðä\Z','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/TooManyRedirectsException.php',0,'œS¿‚Ôl€íé„ûÃå','œS¿‚Ôl€íé„ûÃå','òä1äŽ°TÚÝV@~pí±÷±VŒ×ÁWÎ§ßRš','',0,'?'),('£H‡‘ÿ)Hy•çPˆ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactoryInterface.php',0,'nŒ“ha¦ªòâ¢w*Æ‹','nŒ“ha¦ªòâ¢w*Æ‹','þ°ÊÉfk@Ï±ŽL½¹•1<å0Ñ•®QÎz3¯.%','',0,'?'),('£TL êßˆ,]½¬Õ¦†m','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8‘	¤¢½»:{€äWóêe','6{w÷»µ^Gk®Î«Ã25Ýúb“ó„\räÝñ“«„æˆ','',0,'?'),('£[ä<(@ Ý	G×Õ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/HttpHandler/Guzzle7HttpHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uê}è¦‰¢üKÄˆºcèÚ','kfp\\ë¦¢Yì­×yÖÙ&#†$šeÖ6_OxÀÄ\'','',0,'?'),('£^ÙP®ãsiy„/¯aÉ','wp-content/plugins/updraftplus/includes/S3compat.php',0,'‡†ù\\¹ƒ©\\p¨úîØ¬j','‡†ù\\¹ƒ©\\p¨úîØ¬j','sÆSÿzž—¥ÍÎ}Ý^æ¿+­édÚ¬üûöAàXq','',0,'?'),('£e£X0°Är_©ç•U€F','wp-content/plugins/wp-mail-smtp/src/Admin/Pages/TestTab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©ébÔÚ+™)[¹3¢Ð','R«9^\rÑ\'™—Ð¡R»—©¶3DÒ7ÇY6¸á>•wœIh','',0,'?'),('£hÕ Mµ|‰—”ÐøÀiÆ>','wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-intl-idn/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ð‚ÌwåÎvª~­Š¡ÐËë','Ÿ¡	D>«õìØMfI1í#t\rV m.¡}Zð»','',0,'?'),('£iî,>ÜætŠæ‹œ[è©t','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/color_gradient/field_color_gradient.min.js',0,'û¶Èh¢jëÉÿˆâ¸}','û¶Èh¢jëÉÿˆâ¸}','º0gý®Y†ûã0·—KR3?ÞŒzK{„ÙKì\"¿','',0,'?'),('£z²h9æÇêˆ¦ÄÊXpˆ+','wp-content/plugins/wordfence/views/scanner/no-issues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xt-|øFÞýŽ¨ÐÑé…eª','É×_?7ËñÜcõŒ¯:_˜Ò@¨‹ÃEÛJ‰Ÿs©°[','',0,'?'),('£{6ƒUùP\r$¯PäÉÜ','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerInterface.php',0,'\Zà–‚\"qYAj)©@ÓN','\Zà–‚\"qYAj)©@ÓN','[YØodùa#ÙÃPB$½( ˜×]˜œ×(ãÂBæ¦','',0,'?'),('£ž¤v½ˆ…V5ÇƒÞDÅu','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Asn.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œÚ„\nº1·hÍ¾!Ü','³MÏ¡ç	Þþ¥¨p«kòÄ)¯«âÇ!\rˆ½','',0,'?'),('£’½?(ñòlz+F¤Ÿ<!','wp-content/themes/Divi/epanel/theme-options-library/app/store/theme-options-library/module.js',0,'Ô#Ì\rLÕ07!¹MF’h`','Ô#Ì\rLÕ07!¹MF’h`','*zœ±_hZvJrÃ¸\\èLGb\\9ÌªÒkWÛ[Ù!','',0,'?'),('£šEöSÔc+ßñ#º)','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uÒNm…Sáí”ÔCÛÒ{ç','üØÔP~{pÕÔ}x{Ô82hXöxÅÁ»ˆ','',0,'?'),('£œn&’‚/‚Ùg€%„','wp-content/plugins/wp-mail-smtp/assets/vue/img/logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óÄVVèÁ[MÔNT','RÛ.§ZûM™JéÄêyÝ=¯Æò­E#øJk’','',0,'?'),('£¨Ö¼éëÐ£þ1OÇµæ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/Acp.php',0,'™=u5FŽìJäø/+ÄÒD','™=u5FŽìJäø/+ÄÒD','¶÷{¢n\Z¾ðp8(™Ö3êò¨íØóºœ5sh“x\Z‘','',0,'?'),('£Ä¼	èY|¾ptÄ4(Œ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/UploadException.php',0,'›RâõTä•þ¿É­Uâð','›RâõTä•þ¿É­Uâð','‚Î·Ý\ZÖz·àÑCh`H¯—a½ãµ;:n,n»3í','',0,'?'),('£Õ‹t½_øûJ\0·¨%','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBodyInterface.php',0,'Æ”/‹\\ïŸ£ûm[~qŠ)','Æ”/‹\\ïŸ£ûm[~qŠ)','€XÔ,ëì²7ÝÊþjô¤Ddôµv;×f¨tšæ“','',0,'?'),('£Ù^¹ß½vðÝVî¨ïõu','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Pipes/UnixPipes.php',0,'˜×bCW±â_Ïa¾Ká^','˜×bCW±â_Ïa¾Ká^','ãØ\\GÆ•è*±«ÇEË¦.iôª®ÍÛzøãÇù:','',0,'?'),('£Û[Õ‚*HàÓG#¤¦„5','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_he.js',0,'ç Sf‡£X\\Š3ˆ{d|','ç Sf‡£X\\Š3ˆ{d|','ÅFš@¦ç#(Ïvõw%¶^~¤—§¬~¡­£\ZÝYc','',0,'?'),('£ÜF¦²™˜{ì´ýA','wp-content/plugins/wordfence/lib/sysinfo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Îü{XŽ6÷92ÕíÌÂ','G,™½=ÙÉÛÑC\Z3¼úŒ~f(8‚ìÎ¨‹Ï@ˆ,Ñ—','',0,'?'),('£éyFÖÖÁ/Éw/IôÂ','wp-content/plugins/fusion-builder/inc/lib/assets/fonts/fontawesome/icons_free.php',0,'<×òñü_Ü«9(X6>Ó','<×òñü_Ü«9(X6>Ó','ß*t±é{	<$®DA¨\r\Z¨¤¿ø~ˆ@x`v-|zDÓ','',0,'?'),('£í‘Eââí•ÀQ?èÞ	(Ä','wp-includes/class-oembed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j,;³\Z3ùxÙôƒ¯Ã','ïˆà0«vë!¶vv7ïHÞlV‘d‡ÁÎi\'Kƒ†í¶­','',0,'?'),('£ú&°y6í\"f*bÙ˜bÇÌ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidBucketNameException.php',0,'8›©wLgRÚ9ZqL§\r','8›©wLgRÚ9ZqL§\r','“ß~Åq DòÏ-±$Ù8ŒnÔ«r¡ÝlÉÑT=','',0,'?'),('£ûøž‘®(ægÃwÉÁ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/IAuthScheme.php',0,'Ñ6)ì÷úo1Tž€ˆÜåv','Ñ6)ì÷úo1Tž€ˆÜåv','+òµÿùÛj¨Î£¼£É_§OŽÉ!/ßúêL|.«®€','',0,'?'),('¤5yÂiM2$ß2ÕØ2','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendEmail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­9N¾*tû¶¡H	É[\'Ç','²@Üã£z\\¸úX”Dû¸=Ñ^0GÉ©À','',0,'?'),('¤.ÝB¾ÀxK‘YŒ','wp-includes/ms-default-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l³µ¯¤ûnž¹éï','Wƒaºh\n¬\0Ò8ušv¹ŸÓyv,N¬‰®©!’wh','',0,'?'),('¤Ì6†èó~eª{Ð\".w','wp-includes/widgets/class-wp-widget-recent-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0‹d9@zÎ{´ž¦š­','˜¹îiïP‡_4µü— §‹àí,‹~]÷á£h{ôpC','',0,'?'),('¤@¥]áéØYO­ÃåRÖ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_mk.js',0,'=´~\' ·Q’KØÐËU¹Ò','=´~\' ·Q’KØÐËU¹Ò','„ßƒê\'‹¹>ØrÄ¤+¦Å¢OÎR4\'—Eð','',0,'?'),('¤*O-¡LÏ„ªÂâ\r[Ûu','wp-admin/css/about-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<+á­šK±Éðbù 5î','¨£±b°$,=~í§+¨„æ-Î\"ÿ6¨;‰u)µÜ|F:','',0,'?'),('¤-7ºáþÏ;v`!ª(­°','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV4.php',0,'äÎ?\rÂL¾þ£Þ•´','äÎ?\rÂL¾þ£Þ•´','þMyzû_~jJ{#Ù-\ZöŽA½„q7õÅ3Y€U`','',0,'?'),('¤=—°ê™õe1Ì§$U$','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/search/extension_search.php',0,'{Ýì¾n•öZwÝ¬)ñ£âõ','{Ýì¾n•öZwÝ¬)ñ£âõ','wCé\r¶â~ú5	w¦¹â‹ºnÜüâý$Ô÷K·Í','',0,'?'),('¤??n¿ëæåýå_2g·j','wp-includes/js/wp-util.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5¨Zl½¸.}Lƒ{!aN)$','à‚	kÄýÉd‰¦±Yn*®—IÓ’—_,À¥2\0ò³è','',0,'?'),('¤Ad{:®‘¦”Ò<Ä´','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DH/PublicKey.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZÙ¼Õ}rU/?a\0ëíc','‚ÎkI„—gDäˆ4	½è> ÕpÄƒ¥}Ü|¨\'Æ','',0,'?'),('¤Dý\\úh\Z»»x\'L\"¤','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression_FieldInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ûçGÔJ¯§ÀâÝY3p®Ë','-X§Œö†–ù¦.òIk\'£Ÿ¸qxsy»	U1/¢„','',0,'?'),('¤OïP·Q·}¯pa\Z¡™\'!','wp-content/themes/Divi/includes/builder/module/helpers/HoverOptions.php',0,'5TÁ˜ÍösfAD@…éCp','5TÁ˜ÍösfAD@…éCp','äÏápÎÖ%|o#þ\rÛÊÓSœ\rT»‰èx%ó…ÁÂ','',0,'?'),('¤V{–úÞÄ_S¿S8hÕ','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-downloader.php',0,'äÍ·‘æÛÙ\0ô#O¬$‡9','äÍ·‘æÛÙ\0ô#O¬$‡9','ø6Ò0~›Õæ(¡ú™ÖNô>Ð+´“<)&a§“Hïp8DÊ','',0,'?'),('¤Ygáù$zÉHá.Yéá','wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ïÖ(Ÿê`WŠ6ä$·','fDYr‰ÃttÒî}}}1ªq/u|±÷Ð;°B','',0,'?'),('¤\\Ù»þ­5KTîî7Ôë','wp-content/updraft/plugins-old/updraftplus/includes/class-partialfileservlet.php',0,'Ï_°4™¹/F(ƒ','Ï_°4™¹/F(ƒ','âÕBXù—¢ASr!Žôkb‡f¤q›`ŒB@*c','',0,'?'),('¤‡8ž¶€rþ¶w¡ŠÈw8','wp-content/plugins/worker/src/MWP/Migration/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('¤ŠV\\ý;ñÊ!NN”÷Áu˜','wp-content/themes/Divi/epanel/js/layout.js',0,'‘C©\"9GìW¦ˆ»ÜkjÇf','‘C©\"9GìW¦ˆ»ÜkjÇf','\r×ÀpíRÚR°\0§aZHÔ,;DôÉ)³ëÔžâ','',0,'?'),('¤•§…‡ÀXoí€í~ª_k','wp-content/plugins/contact-form-7/includes/mail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[›ðb|N.¤×ç“3QYŽª','ò“ñ…¸ªŽ‘\0({„‹tÁ©clY†wxÝ¯¢€nÜ¾	','',0,'?'),('¤¡ƒ6o8Š†¥NoL;','wp-content/plugins/contact-form-7/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1¾F\Zû.œlAà~•,¸','¡©~pè\\0ßÉn1ªÕñr®ÊÞbŠƒŸ<<R‘Ä@','',0,'?'),('¤¢[o‹E„))êsZaE¯','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/InstanceMetadata/InstanceMetadataClient.php',0,'½VYuÐÚÕg&9¦Ñ(','½VYuÐÚÕg&9¦Ñ(','\\°Èpº,\'ÑáçqS+ÏÜCME!30ãÚÍ¥ù+xÕ','',0,'?'),('¤£RM*Ñú_ì€¼ök¸§¿','wp-content/plugins/instagram-feed/img/balloon-120.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—FÚ‡qØõIíŽ”}x+','uõ½<þÀý¬¿ÜWÊÙÒŸ‚¨¡z›oºB\0U~aäH','',0,'?'),('¤«“ÃmëìÓŸaÖÄÔÍ','wp-includes/blocks/post-featured-image/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹WW{šâÂSRþÅ¾7ß',']cúèrs±—eDÇ$òŒº$#8¯ñâ©ù0ÙóÑ(â','',0,'?'),('¤²;y4ºáê¦Ó£‘W\r\n','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Models/RetentionPolicy.php',0,'ÀÔ¿tV‚ïêLµÇZhAÆ¹','ÀÔ¿tV‚ïêLµÇZhAÆ¹','C‰Fž@-dZÅ©®NÉ§5£AðAÃƒÏ[€	h','',0,'?'),('¤¼ñœ‰|S#¹œiY¨œ','wp-content/themes/Divi/includes/builder/plugin-compat/divi-testimonial-slider.php',0,'>aÍßç×è+¢[DS¡½…','>aÍßç×è+¢[DS¡½…','üN«1‹ÇU|Ô~à[ÝO84cK¥Š\\Å‹þÑs<R¢','',0,'?'),('¤Ë;òŒØObÏëï,n×\"','wp-content/themes/Divi/includes/builder/module/woocommerce/CartTotals.php',0,'grÙ\'˜TC©]OLä£','grÙ\'˜TC©]OLä£','0F^[è[¥¬›B‰”©˜œûòz.¼z\"µ*sÍPÉ¼','',0,'?'),('¤ËOH‚ÆBæÂÖ{(','wp-content/plugins/updraftplus/includes/Google/IO/Curl.php',0,'²<­jÐf#€-”XÕÉ','²<­jÐf#€-”XÕÉ','ÍP‡²7aåVÂ%~½µzákÓÆ1Ícb','',0,'?'),('¤Ùy›Ýô’¿¦èè²Â·+4','wp-content/updraft/plugins-old/updraftplus/vendor/composer/ClassLoader.php',0,' ‰×Ù|%þ‡*T*ú`',' ‰×Ù|%þ‡*T*ú`','˜˜’ä¡289vu3’n	C2s¯¼va/Ÿ','',0,'?'),('¤ç\nÿÁR²bð†Òxýú¡g','wp-includes/css/dist/block-library/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3úC/Ûˆ[ØC°pmÚ í','»¸€|ST±\ZÁõ´:9dœ:¿_sû|Ã=ÇAtlI','',0,'?'),('¤ò¹×ÐÎ+Ëågš‘Ü','wp-content/updraft/plugins-old/hello.php',0,'ÙE£Åt·5\0ÆÜÌPìÌw','ÙE£Åt·5\0ÆÜÌPìÌw','f¥¢s“»	uõcþˆ•µ~ýôÄ0bÄñó³íIõ&5)','',0,'?'),('¤ùnæ‡:³L\\µ£…ö(','wp-content/plugins/worker/src/MWP/EventListener/ActionRequest/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('¤ûa_9ò-mA‚)%','wp-content/plugins/really-simple-ssl/lets-encrypt/download.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zz…ü$§œþÀ€»','­híÉ8Ÿü*y\\Zml¹=3ï¡êRv™ºÕ','',0,'?'),('¤üY¤\0)\r/jñ©)ôAr','wp-includes/customize/class-wp-customize-filter-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MÝÚ`f¯ì\0ì©iuû','´\0<\nôj:§ÜY£F¼Â¿dÉûwÊ±	ÉýÀ¬','',0,'?'),('¤ý9ü´óÚŠ‚˜$F.{ê','wp-content/plugins/updraftplus/includes/Google/Service/Audit.php',0,'É36áÃ¥!LŸl°e„D','É36áÃ¥!LŸl°e„D','ÁXÐjà«·ÒXÏ®4PQØFæ.<\r)PÀ¢ì™bå@','',0,'?'),('¤ÿ4‡·h2Ÿ6VÙ¡­','wp-content/themes/Divi/includes/builder/plugin-compat/woocommerce.php',0,':8¢‰÷-Ì†‘±-è\r',':8¢‰÷-Ì†‘±-è\r','ô2DT–†šq7…¿B§Eúa`;œ15o!ÆDÖ=','',0,'?'),('¥Æ±¤1»/KõÉ`ðZ','wp-content/plugins/fusion-builder/shortcodes/fusion-row.php',0,'àÿ4\Z©O†Ö×#äÆÛ','àÿ4\Z©O†Ö×#äÆÛ','‘Ð¢ñŽùÉÅ^Xa2Ë@À9²E,jnŽ³ÎJ','',0,'?'),('¥P¶h`|/¸ªã:Wƒ\0','wp-includes/blocks/columns/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y+ZGl#¸lÔí@­','0q|AI¥¼iYþp‚þ!ò\r­ˆ.ß”‰2)Ü~aº†¡','',0,'?'),('¥$n1ä¡ÙU\\íx(ì–','wp-includes/blocks/missing/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óø½GN]Ü«x|Í7•','<ktŠ³†”b·ÎÏÄ¸WËõ©#ôÉX¹ùnÕñ–BL¯','',0,'?'),('¥$_îàÃX×ŠlaÒ','wp-includes/js/jquery/ui/sortable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŸkXÇññE›ELÚû&','F\0|\'—ÓLk8qp‚ Ë(¾ŸÍÞÆ vÔ}/5N![','',0,'?'),('¥6bjÌ½\n:x\\ÓM9AÎ','wp-content/themes/Divi/includes/builder/frontend-builder/bfb-template.php',0,'G‹j–°’>ÂYp-„þ','G‹j–°’>ÂYp-„þ','³÷!âôQ!ì7Ã\'àÙàÌš¿“˜rðŠ?òŒñó','',0,'?'),('¥?‰cKl}§ög5á´°Ì','wp-content/plugins/contact-form-7/includes/submission.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ç*‡Vñ¿ÐÞ@éöÌÒ¤','‚°¼m¤Ó]L³å&Â³ãºw’Myw:4PÓÐÓˆ³\n','',0,'?'),('¥Dåìyc\nÑùS>¹³‰¬ ','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/fusion-video-bg.js',0,'g1²ðÄ2á(9Ñßâþd','g1²ðÄ2á(9Ñßâþd','óà‚3ž¼ïûíc¬•l]òª\0‡þ¼Jˆ…ãéå-‹','',0,'?'),('¥R;lzOé8m<3”Nie','wp-admin/user/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`™¾øUºø }Îð­\náŒ','ÑÎ¿zB+q¼¹Â5VlÎK¤l¡°kòZ/³ô|','',0,'?'),('¥RE:â`*™T,Áý\'ú','wp-content/themes/Divi/sidebar-footer.php',0,'\Z—‘,KÛå–ä™äò[¤Ç','\Z—‘,KÛå–ä™äò[¤Ç','ÙÀiçéïM7\\ç–Ÿ¬N¦²¬Žó+m8g4Çñÿ','',0,'?'),('¥]FÊÄKˆpÊÐƒA?','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/cssua.js',0,'ÂpÇ+2*brŽ½iì¹E','ÂpÇ+2*brŽ½iì¹E','Î)öá\'y,qFÒAu1,”Ì°£è³{ AÍb|bšÍ7','',0,'?'),('¥]ápÂùìå²ºÌžH(','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡Dx¼ø¶Ñç ÁNçÆ£','›pär\'ˆú2‹\n1z/Ë²B…_1OÀÉœû\\|u,','',0,'?'),('¥`ÔÏÁT­]­dŸÏÛáÏ','wp-content/plugins/updraftplus/includes/Google/Service/AppState.php',0,'oàqøwP§œS¿·KÓ÷‰','oàqøwP§œS¿·KÓ÷‰','„Ÿ}^óÏ¤§ä\Z9«Záš*ˆT]‹l(ùMŠÓ™«','',0,'?'),('¥afh=F¯ÕÞTÒ:þ“6¶','wp-admin/includes/class-ftp-sockets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QÕ\"Pž¼¦“e<úù3i','.\ZðŒDƒÓ-ÝËì†òûÃ y!÷¼ÆÈÌ•l¼Ú','',0,'?'),('¥cu˜\0{eB>M&\0‘é','wp-content/themes/Divi/includes/builder/frontend-builder/assets/scripts/src/failure_notice.js',0,'ÑÌ¬µ5ƒž©.`ì|','ÑÌ¬µ5ƒž©.`ì|','Åôö;ÜÂ÷û‡#dôh6R„{ÇŒá¥¥¹;QiËS','',0,'?'),('¥d+¹#k¡žõÜAO•5Ç','wp-content/plugins/wp-mail-smtp/assets/images/providers/zoho.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u¤s9 29d_ßýHJgBü','óõ¸g!k÷dÄ³{p¿J¥p´òôìº}½é,Ð','',0,'?'),('¥f0Óž²;OëäÙ|Ç','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/ServerRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+‘ŽuòÚÖ,6•ˆj„äú','­Ïôo¶|hÎ2\ræÒæŸLxO9l©WBXAO¯I5ªVï','',0,'?'),('¥gjÄé6¨8VS´æäW/','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Role.php',0,'7•E®èSÅå¿ùe•£À<','7•E®èSÅå¿ùe•£À<','>f¨§šÆ^1Pf<9DøáJ’RDy¾MŒŒ«´Ê','',0,'?'),('¥ik[!gWú}žv¸Èµ','wp-includes/blocks/image/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0§§ý‰Š~µªÆòÞ\\BJÃ',';C‘Ÿßxeò0\Z\'éÎa¨S–9Ä_\Zë Wn²ý“','',0,'?'),('¥p/!½YŸ›V·˜¹\r1lL','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/BlockList.php',0,'Ø{©úôžð·—ëÙ>ïÅU','Ø{©úôžð·—ëÙ>ïÅU','¬yd77~ {\0N&¬GW«Æ€†‡áMÐÛ\"BƒÚ','',0,'?'),('¥s†Ì½Þ‡ÒP³]JW~','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp160r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(¦ç¬²ÔòO/”Uñƒ','XíêÜ8Ä`Ž1ê“\'ˆoû²äÐ®Âédiü»(','',0,'?'),('¥~y\0®d½x·![>&','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DeleteError.php',0,')ôz<a 0x\"¦ñÌ',')ôz<a 0x\"¦ñÌ','Px¦µ‡¸ÍeÃ•Vü4³…\0\"“\n¦ÿœ1Ã«)6\n','',0,'?'),('¥„Ö ˜Ílfh$ÃÙŸŠp','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_DateTime.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ÒFÇåÜ*æÑÉc­–œ','ÆËÀ]\"ÚD.Š×óÚ|e¢Aù¹>M‰|$è¥\nT­','',0,'?'),('¥Ùëñ§;~Ó·R·>ž£','wp-includes/class.wp-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','š²sÀzrU[\nK»äz¥ÙÁ','sâd‰ÖãÜÒ J†WL¯+<£I¹æÿøœS4y$)T@','',0,'?'),('¥Ž\r¦c§ú_OU?r2×–','wp-content/plugins/wp-mail-smtp/src/Admin/FlyoutMenu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õÇ›‚M>tMv‡:TâÃÀ','û„ÑÕ¡ÛüÚQý”£=,ílO8—±\0êÙ×','',0,'?'),('¥ünvp¬e„íÆÐîÊ}è','wp-admin/js/customize-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.²aý-ú¡’§ŠG4%Õ','\\¬>\\Öø=Ú,µ8i=V°¢1\0)J8\njh~!	ê¨¿©','',0,'?'),('¥—œ=·ó_°*$âC\"Â','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/crosses.php',0,'ý2Ñ§“OÀ¿äšš{ÆËº','ý2Ñ§“OÀ¿äšš{ÆËº','×$†\ršúkFh‚¦¼øêÜÈ¦}1sAè¹','',0,'?'),('¥›·Ù€¾¨K÷hÚ¤°2','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/take-backup.php',0,'k²!¾c°„À*kó)!D°','k²!¾c°„À*kó)!D°','>î•iŒäþTù¤3Îf÷QH¸÷%‚×Ê.OJ÷','',0,'?'),('¥¨H\nüÉ7¢´PÉBl~e','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Reports.php',0,'ê©úa¸„BUòœî-K','ê©úa¸„BUòœî-K','|G^÷É:QodËO4\"^\0B¾[Ok\r´¯&4w\r:,æ','',0,'?'),('¥±áD­TÇ¡“#\"Ú1?Ü','wp-includes/blocks/cover/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½Ø²xZõ™j­–Þ…™','ðÐµñgdwIÅÅ”\nS22:xŠùoA›¢?	eG','',0,'?'),('¥´P‘â”Z2™7ÇMn¯','wp-includes/blocks/rss/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{]Ó©ÜÝZ>Žï­’³ë','dóZß3ÂÜa€HÙ‘§2Ï\'t—Éï\0Lþ\\[¬¾i!Q','',0,'?'),('¥¹ò¦PSð \Zó;ˆpIÛ','wp-content/plugins/worker/src/Monolog/Processor/MemoryUsageProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{H¥	»„í¹Sw¢€','ëZ‘#¢ŒêýŠ|Ò@J9zthI™õÛ”ÕŽýÀŽ','',0,'?'),('¥ÀT¯&†¶†‚ƒ=\rŸn','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/js/wizard.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ëÎñÍ‡‘ú}IŠä4¢4¶ô','3Ë\rŒÖM•_fœ£Ý¼–ì+pD’ãËÜ½OW[ówI','',0,'?'),('¥Êä*«¥h^íÜÛ¯ïì','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat_const.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n<Tfw…çYÀ_I¨òà','eÁ¹\'#ù\\Š?ª»ÚšO-±UòL]5Ò6ˆð$','',0,'?'),('¥Ì ¦sÁm±PB±é8','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/FileAsset.php',0,'Çq…Ùé§g«$$¬è5k','Çq…Ùé§g«$$¬è5k','\"´e±ÕÀ®oŸ8šoZ\\\"¹µxéz%5pÃaÕã\r','',0,'?'),('¥Ô í\\¹ÞÂ…”Tn€‘]','wp-includes/Requests/IDNAEncoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÙyéGÃßÜ}n(¥YÏë','/À¿<±EÿŸ=CËûì$’xÿ“BHxšƒJÒ`Jw','',0,'?'),('¥Õ”ü{ƒÛª55Í¥\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ReasonPhraseBackoffStrategy.php',0,'EúJsÍ@q±N•B>0','EúJsÍ@q±N•B>0','=ßF³º•|I*5vh®àO¿×ÂëœvAçåh‰n°¨','',0,'?'),('¥ð~´Ù4:${¶Vž±«îò','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Pagespeedonline.php',0,'\0Ÿ¤ÁUtÒ6ÒúÓþ¬eF','\0Ÿ¤ÁUtÒ6ÒúÓþ¬eF','‡+C[˜qÁçï\0ZjžSÌ[ñÜã½âßtYÞãÅ','',0,'?'),('¥ò˜B\\u}ŽLô,‚…ÿ','wp-includes/css/dist/block-directory/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾Ñì X!ÿS’ÍÞ\\û¿h','!m­*Ò\r/ù.õŠtŒ\r¡ùn÷‹$*|G¡mnÄÈFr2','',0,'?'),('¥ù9‚zŒ«ðePÉ·²M','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP512r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªPŠÐ·ÜFÖít¥„¹Â','™˜@ïVèÀerkê/åÇÉôáBˆ¹oÖì¡p’','',0,'?'),('¦© ñ,‘yBwqfÌÃ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-json.js',0,'µ‘hJ‘ûídÜðH~æÍ','µ‘hJ‘ûídÜðH~æÍ','n~ª“Äœ„øî¼IŸ½Fì×*Â~q9=dù','',0,'?'),('¦Û\ZŒ3ÕHš{ïÇ²‚','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidInputException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rÜ ž´¥Ï¬Êþn+£n','^ÁqÜN¤×è×Ð¢Þƒ&yN¢~\'S//>}ò—p','',0,'?'),('¦ö=¡T1-HAµâ•/gl','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateContact.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú×à2rRÂÖŸS¿~zaÄÛ','‹ö[nj*g\"IÖÎÁöZž0kiÅ¹’ÔÃ—7î¨¨','',0,'?'),('¦pL8Çêz™éÝ8×T_','wp-content/plugins/instagram-feed/inc/admin/actions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðÆºïùÉ<BÕ4LèC¸-','ôëú‹‚\nËšÃŽ\r9XwîH;ZNQl3\Z%ô–Öé','',0,'?'),('¦#:ÁöÌSk«U¹‚â{À','wp-content/plugins/wordfence/modules/login-security/classes/model/view.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*Á:è?‘îl]¼¶ñçu','2PæÖíƒš§Ð=w=‰7Ar§\nýfQúÂ~,·¯B','',0,'?'),('¦(¼|nä•Á´sARFä+','wp-includes/js/crop/marqueeHoriz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŒÌ®œºý¸;æäÔLo\n','|ÞÛÍSâùe©“|.Ù‘/éQ¹YˆàWª}(','',0,'?'),('¦*åÚðàÖQrßh½s+','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/button_set/field_button_set.js',0,'.Œ¢£¨Â¤R©òŽºÂ»Þ','.Œ¢£¨Â¤R©òŽºÂ»Þ','Á>Na¬qF¡gü+Ó&°40˜üË`C?(ÙßäÊ‡\n-','',0,'?'),('¦6_•ÙÊÛiõæ¿.²Š«','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sr-Cyrl.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ?®‰	0lÅæë¡+; 0Ù','„)1F€³âd¶´®wôTýH·¶RU&…Œ×?ö%ÅÍ','',0,'?'),('¦=F¨ÈÈ›sþ¼\n9Ó','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendTemplateEmail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pNñ#‚ ~ª§±h›','–ÃZ·›\0®”(‚[M–>‹!-ä?n\\ãCŒ©#P','',0,'?'),('¦Käá§ \0V\n•âˆ‘°','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/post/taxonomy/TBItemCategory.php',0,'G•øÒ¼ëù:?Õö]Bbk','G•øÒ¼ëù:?Õö]Bbk','1Šº˜(ûFSÈéÃƒìÌ¢2irÝ¤ŒxŸ­ßU¤Ê(','',0,'?'),('¦[\'é/£Óþ¢; †”','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','š®yP58ÏÜÆ¢•µ–Û','¤Ñz3qS…ÕòT=åäžŒHL<Y5A¡ä€#H','',0,'?'),('¦]L–<|<î2‘V=Tðµ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf2CacheAdapter.php',0,'[&êE\rµRÿË37CÀg,','[&êE\rµRÿË37CÀg,','T\\®`\ZWÐnîšä/Lñß n:Zfñb$Ð$Nv¡[„','',0,'?'),('¦c:Qk2Ä	 óŒ6¼ç','wp-includes/blocks/columns/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊPÐŠkAüšEÃ°.·Ä','zÂã±µ@—öøº@ÜŽ%ËÕÖì¢²…QØÚSŽ','',0,'?'),('¦t²o(R!lOÅ¼dÀÓ“','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/typography/googlefonts.php',0,'±2€KðÇÑl\'­É˜ª','±2€KðÇÑl\'­É˜ª','õ­ˆ$ÈVÄò„µ\0žù$Ø?.b°…étÄ¸R­W$CSï','',0,'?'),('¦’¯üž:[&bú[®hY©¸','wp-includes/images/smilies/icon_razz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9[Þw³šD³AM­AÚ',';§§òPÜ1]fèUE»;`QÚ®þ\neôZ\0@4¿aAç','',0,'?'),('¦“ål—¨h2²Œ¬þ‚³','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/LeaseMode.php',0,'üÊ­~p­IÈ°R:“|Ä','üÊ­~p­IÈ°R:“|Ä','í»Q¹†.öUD¡ŠŠ>2-ÔHŽC8H¼…?È','',0,'?'),('¦•Ï)ùD/°Í7öÐŒÑýÂ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rž9ÇÜÃ‡_á“ÞIyí','æ„†Å+YUäë‹DSðæõ¸\rÆöÛi*vÅ4Ý.{','',0,'?'),('¦˜ÂsöMþ\Z{Ø}ŒÁ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCollection.php',0,'ÎBÓï§ågâÁÌ/»m','ÎBÓï§ågâÁÌ/»m','Šj]–(ÑåR\Z9çN¢_µ=àük¸¢¤$ÆÀ','',0,'?'),('¦¹ñˆx2ÿ_.ë~$â)','wp-includes/js/dist/core-data.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ\Z÷fñ0éYîWªÃ','o}ÏÈ](¦	Û+ƒ“É\Z¬Aœºµ3‘SÄ4hÍs','',0,'?'),('¦ÉWTŸS»’ê¤•r]m','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/Curl/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ,#G\"Äk(^ƒÂúÕ­','ø.\ZC±£„UûRtáP|[O)Ä\rÙ‚ Ñh¦ïeB@`Â','',0,'?'),('¦ÏþÃ#qÕ[ ËKÀÒ=','wp-content/themes/Divi/core/components/api/email/Ontraport.php',0,'´Þeª‘´¶\nƒMn‰1÷','´Þeª‘´¶\nƒMn‰1÷','>Á6^°ª‘@‚Ž\Z?¤„`Â%âŒò°¥pe—€QGáF','',0,'?'),('¦Õâ¾ëÜò2cnW:IcÙ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/MetadataDirective.php',0,'\'N@†½š…ZtÇùTûa','\'N@†½š…ZtÇùTûa','àE˜¶ðN½F¸ÏíM1¤¨ÃYP“ó\n©äžI¿39*d','',0,'?'),('¦ÜHƒBÍœ[!+®<ä»,¨','wp-content/plugins/updraftplus/includes/class-wpadmin-commands.php',0,'(ÆÃjòàú4Ê3D¶qŒ¢','(ÆÃjòàú4Ê3D¶qŒ¢','ˆ¹¿Wþþ*1¤7¤0‡bq×ô[|Ö°‘¼‰•oµX','',0,'?'),('¦à$ÅtÕ¦}—	ÂT','wp-includes/blocks/code/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Íéû”¢¯Ö(†ê¶²zhÉ¶',' ¬©Å6¸r3–ˆèô§C9aáÙ’Ð~È¾«:¯','',0,'?'),('¦á½ˆËÛŽØ5f?žhk','wp-includes/widgets/class-wp-widget-media-audio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OÐPŽŠ/:ç£Á†­#’A','ˆÎP’•ê†!ð´´¨jzôF#õŒß”ìdŒÄšMP','',0,'?'),('¦ë¤”ì&¯Óš2nÑ`³','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BucketAlreadyExistsException.php',0,'Ç ôj\'»:\rØcGx²A','Ç ôj\'»:\rØcGx²A','1k _†±YÜ‚çV5bn8ÇÐ@] þëHz	¥Í','',0,'?'),('¦öà‚txÌ˜„DÝ…Í>]','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/PSS.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sBµÆÙ?<V¿Œ¡÷ ¢','ˆúßhU{;‹]î°ðÚƒZòL¨ì>xB¿®+*”p','',0,'?'),('¦÷¥ÔÐèÑ _šØ3—','wp-content/updraft/plugins-old/updraftplus/includes/onedrive/client.php',0,'*	vl:dO+±)›~E','*	vl:dO+±)›~E','ù$’Éa4V×ÁJ¬.gÚEtB#ÔLcB¨õlBmÀ','',0,'?'),('¦üa±WXÖ½Ù£ø#È>#','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Log/LogPlugin.php',0,'íÐ{Þ(A¬,d¡ûà1þB','íÐ{Þ(A¬,d¡ûà1þB','#Ðà>igë[õ¬r1ã?U¡0ŸÒ«¢š€\0','',0,'?'),('¦ü­ó8`9ù×?Bb“Ð‘','wp-includes/js/jquery/ui/effect-puff.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^Àª5š±ëïüœtîµ','`}õˆ`¾J)Ê$;ˆé+Ð6K³C1Rž&]CÎöiŽË','',0,'?'),('§\n»n4‰i~öàÃûó.\rÂ','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Exception/ProcessFailedException.php',0,'Á¨Éò“ÂóAÿú0¡J','Á¨Éò“ÂóAÿú0¡J','BÓÆ)R€­ó§Iep³«ãVLÑv%ß¬^€','',0,'?'),('§\nÈà”à äé”/Y','wp-includes/js/dist/data-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡]¡Ï©V\0eõÕ¼ÖLô','T~ðÅºî”ã?ìâf!LJlOU™ö2²tˆWàë…õ','',0,'?'),('§¨>;×-Moõ©+vR','wp-content/themes/Divi/core/admin/js/core.js',0,'o¼†šk\Z\n+XÑŠ&','o¼†šk\Z\n+XÑŠ&','®Ñ›ºdJõ«ŒÄ^\nåç²$qÁ«pCR ñ^ÆÖLá ','',0,'?'),('§+F—4Þ\núõq¹±¤\"]','wp-includes/blocks/table/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ï|ã>÷áÂ¾7št¼U','UÓPS!½¥	\\êÖz\ZªÄLruwÃU‘‰ÿ¢µ á†','',0,'?'),('§60\0i¥Ñ¼£®©@Bè~7','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ã+3ðñôjÈ0±G“’–','¾Ã\r,ôè\rˆ–_ÝšUShµcFî`Ø0‡‡%ÕSÅ7','',0,'?'),('§AV{W°mDsB³ºQrx','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistk283.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"ü\\{7ñ$ç#¬¹€8[ür','‹o//´äL\0d§[\\4\\ÙL!ý2 Ã[†‡æõ‡','',0,'?'),('§BurêR— „õn•³ñ®0','wp-content/plugins/duplicate-post/js/dist/duplicate-post-quick-edit-430.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V¼®%¼D£IÆ¦Vg¢hò','	wT¯\\ñ÷÷©M—$ÅÌ^ßj›ˆUñ$HiÔÜHÛôŸò','',0,'?'),('§G•Z¡ˆž*}|Üÿœœ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/AwsExceptionInterface.php',0,'µäŒé\rßÒ³—þû«ÒÓÊ','µäŒé\rßÒ³—þû«ÒÓÊ','d~¦fWúTç}+°F_Ñ\"ŽZ°¨‡+ºÏØñf<)¼','',0,'?'),('§J¡oÕ|øäÐOeÎ(F','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/bootstrap.collapse.js',0,'b¤ÕËa½k|éÐÉ’Bà‡õ','b¤ÕËa½k|éÐÉ’Bà‡õ','šÀZé\0n±tXœÝA¢¥þÌ mÂb rDý¥^gîBš%','',0,'?'),('§R5\rD«Æ^+Gó¥1jv','wp-content/updraft/themes-old/twentyseventeen/template-parts/page/content-front-page.php',0,'5š´æ±©M\\-4ëYÉJÞï','5š´æ±©M\\-4ëYÉJÞï','	ÊhÅ°/±w\\\\2wc*½»;²/HƒÎ¸èÞ>l‚','',0,'?'),('§RT†B¼¡\Z>L\";62æº','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/javascript.js',0,'üZ¡…›:âà^vakØ^','üZ¡…›:âà^vakØ^','ÄÈôoÿ¿ú¼›Ÿ^ÉÉr	Ä»ÃgOJ–‡ü7>¹‡¸U','',0,'?'),('§aÓ.Üj@åî^«±','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/psalm-above-3.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|<QqÃÖ)@òMŸ‰Jé¹','/ôjoßzïyîÁóù@“Šz%9·&F%ñªýª[','',0,'?'),('§b:]ˆ{—H—4	þÞñ›','wp-content/updraft/themes-old/twentysixteen/page.php',0,'…7uñp/ô©\"×òÞ','…7uñp/ô©\"×òÞ','˜øÊ¾Õê°	\0‹ðpÊK¹Nò„í ÎÓrGí¥ý','',0,'?'),('§cã†ÌŽ´ˆ$\n\'@›\ròè','wp-admin/setup-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fÁéVÉl åÐÄ¿W·Ï1Ò','yì’{¥0Ž²,­NººÎÁoq+¿Å.I9IˆÙt','',0,'?'),('§mÖ™7š,Ð}¶ñov','wp-includes/css/dist/block-library/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SµíÔÑgX”5\Z§“XÆ','/u¬é›$‡”í€R£A\Zg`Y@œ¢à¡B72â9','',0,'?'),('§u°ÏÇ›ÓÛÄKJâGë³','wp-content/plugins/duplicate-post/src/post-duplicator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âz«²óoBÒûoö–¾À','4îÝjÝk@(œ5xÕX7VòÌùµœIw’|ÚV','',0,'?'),('§zMäy_éý°Ë¤C','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ObjectNotFoundException.php',0,'|±\0%q›ƒl‰ð•´','|±\0%q›ƒl‰ð•´','¼ƒL#—Z³ÿOº³<¿¦§ÙäùÄe´\rG$áð¶M','',0,'?'),('§{õêø„iÈ`ðï6','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Credentials/ServiceAccountJwtAccessCredentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’!3AßèÓ>|ýoeët','Uøú´DÀÉ;Y{\nT]§áfž„kþŒ=Ê†#‚Yi','',0,'?'),('§„knÚcw€²·È&','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/id.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö*Ñv\\~”º£”(êÓ\r','»¦ÛJ3Qb‰ì2#…bzeü.‰b³¡ë§ÔÁç}´','',0,'?'),('§ßV€³t¿Sù-Þº','wp-content/plugins/wordfence/views/scanner/issue-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KW?~´ æ\rcæëH','iº%>Ë\\6‘L¾ÂÿÃ{8—¤‡‰÷‡yÖZ¼AHÝ','',0,'?'),('§œŸJ1€«MßF°†<þ','wp-admin/js/tags-box.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JAíœª‹¤M®Yè~= âu','ø\"	0º‡¢\ntòMÐ\"ÖÛBµaíXü-J','',0,'?'),('§¨°Û÷ŽÆ„º²±NB×­','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-pedantic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ê@8Çµ¼s¿·Açå','bó#Œxìíh¥F4û_ öDeŽ¹ÝqeDåÉ','',0,'?'),('§·‚S=ŸAtæß(?×ôÚñ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/border/field_border.js',0,'®»?L£R„‰=åèÑ2PL','®»?L£R„‰=åèÑ2PL','e¾ˆ¨€—´‚9RÈèÍ²\ZË„„1Qå1§žj¨Å','',0,'?'),('§Ã0Î_þŠ®íÈé4p†à','wp-content/plugins/duplicate-post/src/ui/asset-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼³2ÒãìÖ+Ôßx2ôâ','µE!¿áGúZÉ9]mÜååÀQ±.5q13BÃ1‡Ý','',0,'?'),('§Ê\'67~i£ˆT«±4Rª','wp-content/themes/Divi/includes/builder/module/FullwidthPostTitle.php',0,'²Ü–ZƒHlÍ¨ƒjqH4','²Ü–ZƒHlÍ¨ƒjqH4','_é.ž›¶®M™JÁÒ•\n`Ï˜œŠ¡ŽÌw)¨u','',0,'?'),('§ÌQ{µÀ1BÉPˆ.í¶o	','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/az.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ÅGÅ‹_X\\HR:&¬º','çë_«˜\rÐ6¤‹1ˆcÄíä^¦á\\É^ð¤‹í\n–r','',0,'?'),('§Ó’?ÚŸ£E¿Î¶$PF','wp-includes/pomo/translations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´×Câìôœ°*\Zî\'õÌ',')¦“P©›Å ObxZ-dtWNø€Ç§«~xé^Y²ì','',0,'?'),('§ØdZ’iY03(Ž~M¾','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/CannedAcl.php',0,'ó´,ê|c\\±ÌyGGO¸','ó´,ê|c\\±ÌyGGO¸','¾LÒÁ¦j[~ 1eÚÌâY„ñ&7uÄ>jèk…Úb','',0,'?'),('§ä·½÷ z\0*’¨aSè','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/zh-TW.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ã.lÔƒç}fä\'ÇdÆl','î²¨}Óþ§‰0êB˜Ÿ°xCãk”…ì`–ôyþ','',0,'?'),('§èáú°6‘bg·>_ª','wp-includes/images/wlw/wp-watermark.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';š‡uMmÜ­D|‰wŽ“ÅD','½SýËnRÀ\'÷¢X§^¤ÿäkhûº·ÕÉ‘Ðiæ7´','',0,'?'),('§íð\' Ã-$®Ö©öYÈ§','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/PublicKey.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰°ðEx¤†,ÕÒ}Ë','›/Mø7ŽOïw&6÷\rk¨!&nøÔ²‚v¶ ß5yù,','',0,'?'),('§õ‹ƒþÁÑ’hêÄ','wp-content/plugins/wp-mail-smtp/src/Providers/Zoho/Options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë[>±-%3ç©Ð>÷$N','Q‡ð†Ebõ\\íçË&jsH~gBˆ†Â.FL9U:','',0,'?'),('§ü-Ÿª{Rƒ×ÎŽ/_6','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/tr.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤;8§ê!K/ãoN@ ','®1ob\"¸²Cï_Ü0óS%Gmåý‚ü/@Îù9','',0,'?'),('§ü­…ŽÎ8«j‡þc}‹','wp-includes/blocks/rss/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹XKº¾|®`‰-™©î2\Z?','B¢__š†ÈÛ-ÜÐYtNYü7:±@4q¦3èqƒ5›¾Î','',0,'?'),('¨Ð_Oˆ%ì^\0)Å—Ÿ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderInterface.php',0,'Wqš¼{ž:Œ|e¸&¦šMù','Wqš¼{ž:Œ|e¸&¦šMù','f*K}ñ¢-ò¯Ý²$¼€O»p*$\'ÄP°œüŸ³îV÷þ','',0,'?'),('¨h¹x×*(½&¾ëÃkO’','wp-content/plugins/wordfence/views/blocking/country-block-map.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡uœÁyGF¡,{–ŒXÁz','%Ôœ5–;º”û§öx“ˆ^)Ÿ‹¨G(…ào','',0,'?'),('¨°ÌœÀ\'K…zŽfŒå','wp-includes/customize/class-wp-customize-header-image-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y¸$+åìùq?å×Uºá','ã9@mrãÜµ†\"+Bœ©VˆK.žuB\"õëž™¸©','',0,'?'),('¨í5#Á\"8­%`}','wp-content/wflogs/template.php',0,'lC¤dbï.§Ë´ëƒv','lC¤dbï.§Ë´ëƒv','Z][W‹Pš}Ã,ûþ¿–žƒ7*öqäá\nãæÆ‘¡á','',0,'?'),('¨\0˜+–R|k8¸^¥Ë','wp-content/plugins/duplicate-post/src/admin/options-form-generator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýõÚwÇ\\h=ÒlâœYz','&vZèò`›Þýð…ÏR“)‹Né€„ˆrŸù¶íï','',0,'?'),('¨\r²f æhÏ8°!','wp-includes/Requests/Exception/HTTP/500.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I(vrMmÐû(Þc\0{  \n','FO—¡ÿV3\"øªõœïÔ¼£ª!kÐPò','',0,'?'),('¨ÜÁOÇ;pn¥™û3Ü','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/PrivateKey.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÆÅ\n9R–é	FˆS!Íøë3','©™ãéòˆý°©B­R`š¯°W%ÃV«^¼S~ð¡`,(Z','',0,'?'),('¨‘¢v9…bÔ$‘L','wp-includes/random_compat/error_polyfill.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X:,”t]7¯=ÁüQ¢áE','ç,ž»t\0_g’X%4.à¦tPš]È>ŽJT4','',0,'?'),('¨ÿ«dª@åQòÎÛ…¨-Y','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/ContainerAwareEventDispatcher.php',0,'ë&SÖÙÏqÙ@Ïâ¬ „c','ë&SÖÙÏqÙ@Ïâ¬ „c','ã£œhþ&GG¡ý5!”˜¬Ä!wb1ž·ó°‡-»’@','',0,'?'),('¨xir”8z¹b†Â÷ø#­','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/PostObject.php',0,'fÁs#£Gƒö8Áýæ¤^','fÁs#£Gƒö8Áýæ¤^','œë‰wb\"¿ËpiDû°Ïn-®ã¶ã=±mô‡ÏÏë','',0,'?'),('¨äa†8bìÎ	ÐoÈ','wp-content/themes/Divi/includes/builder/module/settings/migration/HoverOptions.php',0,'4ñõI€C²›;—š\Zt','4ñõI€C²›;—š\Zt','“oFYO>ÝÍ9,É¹Q—l\0Ë\'.Ó„l#ÛßÉé<ß','',0,'?'),('¨#¨³1lÍB—õDóE','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/welcome/views/status_report.php',0,'\"Í8‚à.òoC\\Üé°:À¥','\"Í8‚à.òoC\\Üé°:À¥','Û|6>%€÷auF¢Í˜âõ¡))¸Æ4+±À','',0,'?'),('¨#×?€™ïGc	Â¯l1e','wp-includes/class-wp-theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cSç”B-˜jC\0]²Gß‹','Ë‚4Õ6SÔ®ðÂ\\u¦˜P$škôÉ_æÝ\"ZúU+áð:','',0,'?'),('¨%žoA\Z)1ò[(yOµP','wp-content/updraft/themes-old/twentyseventeen/template-parts/page/content-front-page-panels.php',0,'O9ÊC«¤Z†\0Ìn,gZ','O9ÊC«¤Z†\0Ìn,gZ',';‹jÂ¨9À¸~–Çš¡pOÕQ°ùÃKU.x?`Î\'','',0,'?'),('¨5íX8¦ƒ£Ãyy\r}”','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/AbTestVersionClicks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒé’<«éD@§zEÁ~','Sª%›äBH°7ìÿû5§·@Ôæ7äkÊÄ´)èG0h','',0,'?'),('¨Bn)Íx¡ƒÀ6iëŽá','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/inverted-chevrons-2.php',0,'²iCÿ6—¬‡è-Æ\"xµWY','²iCÿ6—¬‡è-Æ\"xµWY','Èa“zJ·õ\0õF™\\i)²¿ŸÜnœ{LÇ‡Uô/Po','',0,'?'),('¨DèÈŽ=b[å*WgM','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/CssUtils.php',0,'R¶o,ûWNœSŒŽâCªÃ','R¶o,ûWNœSŒŽâCªÃ','ö™•ývµÛ<bíAµ5h ž~G¹5©)qïbž¦n»','',0,'?'),('¨HŠ£õÁœPwàð%8–À','wp-includes/images/smilies/icon_sad.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÞIxáoÔÓTMzæíD-','Ùb5Àyh¬9€äã} ©ëoÞôWíIƒò°n§n‘','',0,'?'),('¨Q49ãóLzÓJµ','wp-content/plugins/wordfence/lib/wfUtils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï_6ˆà,¿üýø)´´Á~',' Gd…¹[˜’e¶†`ëV(i=RdéAG;Ø\0@­','',0,'?'),('¨U†½t³>L¯ñ\"[°Ä','wp-content/updraft/plugins-old/updraftplus/includes/labelauty/jquery-labelauty.js',0,'¯Âª/‹9¶ñT»¤9I','¯Âª/‹9¶ñT»¤9I','òš‰Ìµ–§7Ž\Z‹ìÄ†œº8lÿ8äN£-«×ò¸ˆ9','',0,'?'),('¨WÒîÅe=¢ç[ðßõj','wp-content/plugins/instagram-feed/languages/instagram-feed-fr_FR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ô¯Lëë©¯i±3¥þà¥','èjÀ¶²Ä8¥yræz¿\'èni*c§\"A|çô°#|','',0,'?'),('¨XXïŽ“*Îá!2Ö~Å','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªeb:lx-Ô<¿Ýs99`','ÃÀ,¬Ã{ m˜™Z…‰BVë«TL±;*´îÎ<','',0,'?'),('¨[ÂnÅG{Ãù\'¾¢q:›','wp-includes/ms-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê‡‡•ÓßK«£MÃ½','™Ð{´\"€z®GW1É“DÄŸÈUàÍô[åáì·','',0,'?'),('¨\\Çýhû RŸXÕ<ºC®','wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›ëß…—w@L‹åOêÁR','àð«´EF‘j©„×r¸Ä;s³ìÎ€.f:ÖáÏ¤ F','',0,'?'),('¨c–®‹É6¶ñ~æ6Ì','wp-includes/blocks/button/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Õ$SéÇØay±I’Ê¡.$','’J_ký†âÄ¿Ï~	Ó\\£¿³5áà±í¿æÁ®','',0,'?'),('¨l¹iò©cçù`V’¥-,','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactory.php',0,';7¬:‡¯ÇY\nÇÍ,',';7¬:‡¯ÇY\nÇÍ,','-K½ŠTô?ò-‹šA¸Òoÿø-ïÐôõ÷Î0A\Z{','',0,'?'),('¨ƒÆÙ\Z7‚8ñ-\\×~–','wp-includes/css/dist/edit-post/classic-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùÑí2q¸s@*Æî±ö','ÁÆhþGnTÖfã»}ûu¿YácÏÆ¯óÃåƒvæw†','',0,'?'),('¨‰8‚\\p)Þ8Üy÷ñ™\"','wp-content/themes/Divi/includes/builder/module/helpers/Height.php',0,'ìndÆ•v/5òEô¶0žª','ìndÆ•v/5òEô¶0žª','˜ ¬Ø)¿Öèî³àÜBÊŸTƒKëò:ËJ8è{Åô5','',0,'?'),('¨Šã:€!FÄßnÃûPB&','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/DefaultXmlExceptionParser.php',0,'åÚ@þY6ãŽšù´7','åÚ@þY6ãŽšù´7','ß¸.~o%3§À–u}ûW“w?]\0¯ÔQÌšK&ú','',0,'?'),('¨—3_Á‹ß[#¤g`À','wp-includes/css/dist/block-library/reset-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ñ–Åñ<¼ŽU=½ã','×€Öûé6`+¶¶âªk\ZA¾Ò~WŠ9|ágRîËÏv','',0,'?'),('¨£JÒ×—¸_yzxÈ÷6O','wp-admin/network/privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0®È>¡H\rðæ5:ó6¨','*]X8®˜Í%ØKÒ›R	üåÖQøfž;\neÀ\rƒ6\\','',0,'?'),('¨£’¦¦‘„OÇ¿˜+¶\Z','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/Inflector.php',0,'¯	Ÿ©¦ñ•BÍPÜKžSÆ0','¯	Ÿ©¦ñ•BÍPÜKžSÆ0','8¶™»Šn¨h°Tš^À€ò}=Ê\'±EJP“9ÞË|˜','',0,'?'),('¨¬ÌÈ€ç~_qÚI¶ÄS¡','wp-admin/js/password-strength-meter.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²äZÂ×3Årî;]Õ<|À','®¡ÚÉ1ôäyå¥!‰}}Ç3É»}}Ñte\nt‚','',0,'?'),('¨®œ\"¢zyÞ¥qLÕ´p?“','wp-content/plugins/fusion-builder/inc/admin-screens/register.php',0,' Òw/™ôB—û&X(U¢A',' Òw/™ôB—û&X(U¢A','È•8	ïÚ×$„Ã!æð…·Ý¤^üš	àèýžËÍýU<2','',0,'?'),('¨¯ß\\àD ü>üF,µ‡ç','wp-admin/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N4\'8,ÜL¢J	§I4x','± ïb›Š}œgD4´ÜX\\·Ü°ïž,IMÂZìpÍ','',0,'?'),('¨±H;c)¹Ò[ÿ½Á“Â','wp-content/plugins/updraftplus/index.html',0,'Ý«0XX’¹(úw}Qvµª','Ý«0XX’¹(úw}Qvµª','«Î>[eñD¥QÅ8&äƒFMÃ·ãN±Nþ8…Øˆ\Z;f','',0,'?'),('¨¹N½ÀÂ×.‚·¤','wp-content/updraft/themes-old/index.php',0,'gD,Vë§=\\ÆbP','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('¨ÇT½g@¡p@ÔÔî\0œ¿Æ','wp-content/themes/Divi/includes/builder/scripts/builder.js',0,'‰m©MˆãñÀ%4¾Ã@šÒ','‰m©MˆãñÀ%4¾Ã@šÒ','4Ên[¨wa®7rD9Æe1ËhÈIêvõ\\`Å','',0,'?'),('¨Ç{/÷mü°å¸2fLb','wp-content/plugins/wp-mail-smtp/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p¾Oñ#çÄ³Ðß=f-í','3È\r¦þJËGpV’?ãÛìóòƒ%SRh™ù(Ë*Úñ','',0,'?'),('¨Û	Ì\")¥\"µè0I£o¨Ç','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­z„¿q\Zs˜¾q776ó','C®D­a–$ê¹=›f[Q§4ÂJWÑ7l)®.Þ=%¯ÿ','',0,'?'),('¨äzð®Î¿¬Ò«“`Ã–Ø','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/ModelInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·b­¹•ßRDå˜Ÿ¡Ëu','~×ãolÕ·HÚtN®.ýaÏ–¢œžAz>¯ÏUý\0','',0,'?'),('¨äáê”•Ts™\r%¨LJåM','wp-includes/blocks/spacer/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ\Z#Å®Ã{‘ïN½ßp','zîÝÒUÔ£YKu@W#÷ø+È0þ·NÌ`qX¨õ\"L	','',0,'?'),('¨åŸöŽ‚•—‰&Å»Ÿ(','wp-admin/js/widgets/custom-html-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»Ké	k»Îðc²Ú\'±','‰r=,k€M:ªDyêKªËFŠý~¡sSÿ|ÄŸÀZè','',0,'?'),('¨í{—³´ÌGŸ|øîB','wp-content/themes/Divi/includes/builder/module/helpers/StyleProcessor.php',0,'ßX^¿£àÿÀÛµ_Ýqkáÿ','ßX^¿£àÿÀÛµ_Ýqkáÿ','Õú½{)hQ®‡jæDŽ¾ŠðdQ$só{ªÒøÌ¾%','',0,'?'),('¨õéC¦twÉ¥BrjÏ','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/Block.php',0,'r…=kù‚¡]ékûp','r…=kù‚¡]ékûp','úŸd|;õ(:\0|‚i¶{ÖdpB¿í€<Zy;7¢zM','',0,'?'),('¨÷_Ênõ	á(´û}“','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/AuthHandler/Guzzle5AuthHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q\\í5ÆeÉÓ´Ä#8âê','§JŽ3Ò\n4F‡mæà\n¦…W’ÀØ&·ýÔüFžB','',0,'?'),('¨ý»fì2hh‹–Ÿ.b]<','wp-content/plugins/fusion-core/fusion-slider/templates/clone-button-after-title.php',0,'¨1W“Î§NtÕ$êqE‘õŠ','¨1W“Î§NtÕ$êqE‘õŠ','#@l­°ôs«¶&\"Æµ„NÑÎqK[EèVæLáF','',0,'?'),('©ò~äô,FÍÊý¢Ù','wp-content/themes/Divi/includes/widgets.php',0,':PÄX\\/ú>8©@ï',':PÄX\\/ú>8©@ï','âá›HR+><!)nÌ·œMqœóêáúNu¾\rÂ¯','',0,'?'),('©ïú~+ØqêX¾Û\"`','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÁoaQ¡¤ì|gâ4&ÏÙ','¶cÂU©X„ýÔñ+‰]WvdÞ=ø,ã½’„Z0)\\³','',0,'?'),('©u:œÈ)\nwf<½','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/fa.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼ôPóÌ»ã¯œK­4Å','>”í6j’WY¥ÆÓ_ƒP6ÓRqÀ…à¦¶`á¯àc','',0,'?'),('©%õ§fŽ}ð‹ROFÂ','wp-content/updraft/plugins-old/updraftplus/includes/Google/Utils/URITemplate.php',0,'¿ý ÞÊß˜­	×zg»(ú˜','¿ý ÞÊß˜­	×zg»(ú˜','ÈN“ØÁG¯EÊ­<^@{oüZçGŒ»Èê×ë»Rÿ˜','',0,'?'),('©+½‘–>¦An›–„ƒÍäý','wp-content/plugins/wp-mail-smtp/assets/vue/img/outlook.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ûû2ÁRžÂÂ‚—çÙâ6',':ÆÑ<¼Ævï§;¿h	F}ÿÄˆo9\\À£ŸÍ?×åiµ','',0,'?'),('©.Â—\nV™®8ãr‹n;¶','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/step.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ædEE×;,a•°ð(Ç','¯…: `ÏÀ~Ï…o<§ÀÑ;Î†ÊQ’cfW…‚&œ','',0,'?'),('©/®(o£4§XžÑ*\r.','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/confetti.php',0,'ua¬ßÂ|9¸ü”ì¼','ua¬ßÂ|9¸ü”ì¼','Ü¨ù|Ú;Ù¥Ù¼OÏ¤àêíû¯ _¬¯¸Ø','',0,'?'),('©0jYrôÚÖ\rø[´{\0','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ObjectNotFoundException.php',0,'|±\0%q›ƒl‰ð•´','|±\0%q›ƒl‰ð•´','¼ƒL#—Z³ÿOº³<¿¦§ÙäùÄe´\rG$áð¶M','',0,'?'),('©5Ês¤šÐ’,ýÔïI?£','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchVersionException.php',0,'…¸¡Q vÑ3ÖÉQ\\‹V','…¸¡Q vÑ3ÖÉQ\\‹V','­*´7‡Z8P´\rç¹J•hñu×µžO=!æzå','',0,'?'),('©?R0+TóUðvLQ\0¢','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php',0,'|È°Ý¹ `³Þ-cqFÇ','|È°Ý¹ `³Þ-cqFÇ','JåÏ‹&âr…æçò²Éª¦ç;²ð9Ï]®þÖFå','',0,'?'),('©KfüÂ¼N©ý²ÜNÎr','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/PumpStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©žNÏ¸8r9¼S³ü„&','ó•5‡Qmoo›ê4›©pÙŽ\r‚®?8{þïê{·ƒ','',0,'?'),('©QÙ³ã¹4°ïf|\n”’N','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Service.php',0,'™N?dç‡L­¨Ât¹ÓØ','™N?dç‡L­¨Ât¹ÓØ','pÒ`¡†‚È¿|áb	ÃõœÐŒh¸.@²ós©¢—-','',0,'?'),('©U!]îÉ²º^ÓùºþW.\\','wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles.php',0,'ÀöÃÏò˜‰±#qÕ~‹àO','ÀöÃÏò˜‰±#qÕ~‹àO','àkûÖàÌk‡[±Úw×‡år·no°ºþIáÖ','',0,'?'),('©W¯[îÆlF*Q‰M','wp-content/plugins/contact-form-7/admin/includes/welcome-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','18\Zps÷NÓòC5\"˜­','ãYðåf²3f¡KGÍ5uÈg>8R÷¼5¬·ŽæC\r','',0,'?'),('©Yê¡;Jœíwzåèã­$Ó','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/fullpage/plugin.min.js',0,'fÁ“£Æ„~f‡ejåH','fÁ“£Æ„~f‡ejåH','åÿªí8xSyË-ÓE|Ü1¯X\'e’jvQo?)Éõ','',0,'?'),('©`Ý‰ˆZrL¢¼é”è6','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/FileResource.php',0,'©±>Öp«äýv­ž‰ÄÊ','©±>Öp«äýv­ž‰ÄÊ','3SJ¹“*ÿ½‡oi°UË—-uý	ŠÂ!ßÔÖâê','',0,'?'),('©eÆcíêkØO*¾Ö]ú','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Enum/ReturnType.php',0,'D}Î¤wSÕoº!¤f”íp','D}Î¤wSÕoº!¤f”íp','ÅÌlç[7;Y¢ÇA“º*ž˜‘n«ªJo¼¹ìö','',0,'?'),('©qÙéòBÎÑ·C´§ ','wp-content/plugins/updraftplus/includes/Google/Service/PlusDomains.php',0,'©Ô²4,¾7¼øÄ¢¸Ñl','©Ô²4,¾7¼øÄ¢¸Ñl','™Ä|Ø ”‡½.hh(Á–%Ô%­Ï|!Ø™J{–FDâ„','',0,'?'),('©§)®q4/ÀËmII0 ','wp-content/themes/Divi/includes/builder/post/type/Layout.php',0,'ËAÕH9â¥ÝDŽiÃ\"™','ËAÕH9â¥ÝDŽiÃ\"™','© ÿÞ’ŸÅ52ßdåQÚè\rˆ·ò—eÄ›ÝÕŸ','',0,'?'),('©³šˆŽ-Î%TØT6]­','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CommitBlobBlocksOptions.php',0,'ÀÖF•y–Ð„Õ²§Éa','ÀÖF•y–Ð„Õ²§Éa','ÓÇêV	e,BªÒ(\nÅ\"3(˜¥ž	»;DÂ×P:JÂÑ ','',0,'?'),('©‰‰i^ù,¶¦kÝMù:$','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/themes/inlite/theme.min.js',0,'âZ=\ro<3¤¡EÐíÂ','âZ=\ro<3¤¡EÐíÂ','·\"Á;l¾¯\0s\'âlB´3qš6)Œ8’\n@D‡²¸ê','',0,'?'),('©‰‰u28CS›+¶´‰N','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/colorpicker/plugin.min.js',0,'Í¶¥š¾Uè£¦Öhà','Í¶¥š¾Uè£¦Öhà','ïehÓ§ƒ&Î­­ûAµ3‘+WThÁƒ\n\Z)È?ÿÿ','',0,'?'),('©‚x\\ƒ¯lÅ¬ñÉ¹Ð7','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/OpenSSH.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bç:)˜2\Z¶9C','ì­„ ®Ÿlb„:ê/ÛÅ¡·ñï™òO¬ž!oï¦Ú÷','',0,'?'),('©˜z°E‡¹;ú½ƒ|ÛÁ\0','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/JsCompressorFilter.php',0,'êañÏÑpÊ’%^•\"–Ý','êañÏÑpÊ’%^•\"–Ý','=íz=Oë8ÊkB×\'8úU›P°“nOj´:<¼ ','',0,'?'),('©œA&\\ªÆwêÑdê© Ãj','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/Common/FiniteField/Integer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4Ü’@TQ©ÔøQÝ$i1','sõl/›Ï«Êu7À­\ZY.[>x¬^R;¥™ÓÔ#','',0,'?'),('©¢=CÑ Ôæ*TXô¹´4','wp-admin/css/colors/_variables.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Õä]PãÌf˜éVkÿkÉ','ì3}³c9júmyðƒôÉÉê@sºâpþVRñþ©9Z','',0,'?'),('©¨Âß;ŸX!Šýû\0ôk.','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidTemplateError.php',0,'\n Í£MÄ°97Öy ;','\n Í£MÄ°97Öy ;','–ßUý\"qÏ›gi¿aÛY£[ÓûÇ{\0ËßRhÅ','',0,'?'),('©¨¥6*í7aT›]\nÓ]r','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Cloudlatencytest.php',0,'ÂFÔæb\rà»´i›','ÂFÔæb\rà»´i›','uz§éB.~µoUä¶÷)‡YRX²JÉ¾Ä‰k®›`EkÕ','',0,'?'),('©¨â(¾m‰\\xëêÀX;ˆ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/SignedIdentifier.php',0,'·hƒãmbP·YìJj}-m','·hƒãmbP·YìJj}-m','ÿ\rýFÄüËˆŒŽ™MYÏ#; S•™Ý±âÛ´›•¦','',0,'?'),('©ª:ã/Q} «ôZÊìTq‡','wp-content/updraft/plugins-old/updraftplus/includes/onedrive/onedrive.php',0,'Ñ4a$ Tsâ\ræäÃó‹','Ñ4a$ Tsâ\ræäÃó‹','Ïr½¬ð¸aÉ[BþøªTß¶Ä“Ô‚¹•jblÍ¬áª\\','',0,'?'),('©ªŠÛì‘RìEj.À«zc','wp-content/plugins/wordfence/modules/login-security/css/admin-global.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­Þ\nÌ!m]\'ÂxË_·','ÓW‡”þI¯Y¢ÞTÃÄ¯Q².0(?ƒËF£™Ïf#|ÆM','',0,'?'),('©¬$¯–´gÖ½»î²Qà','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Order/AbstractOrder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°h¤©uÓSi¤{”Øo*','ãâàûúî²:_ìÀuú•BO	Ö$ò0”žÔþ~<+Ì','',0,'?'),('©¯.mawó&] Þ]Há','wp-content/plugins/wp-mail-smtp/assets/images/about/icon-none.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L»Ë¢ž¶•ÁàöÓp[&','Q]ÑýL»’8*{MŒà`6ÜU¡äc¨,yK4dõ','',0,'?'),('©´\'Ð”zÇÈŒÅÙîà','wp-content/updraft/themes-old/twentyseventeen/template-parts/post/content-video.php',0,'ßº}¡!G\\0ä£»É]','ßº}¡!G\\0ä£»É]','VJJÍÈdÄü¦õžÕH»ÓþER_ëâ8å2ÕOú','',0,'?'),('©·}#Œ\ZÏÍÌgãßc','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MalformedACLErrorException.php',0,'ö71I¾LÌ·¶ó£bŠ×','ö71I¾LÌ·¶ó£bŠ×','î%Ý=‡kÝyæ¿uRt³IjèQ®¶º·†ÏÌ%','',0,'?'),('©º&½	Jkoø¾¼ò','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CreateResponseClassEvent.php',0,'ä3é›n.õónPh=²','ä3é›n.õónPh=²','ûs; 2Ãi/[ö?ëÁÎÚª;¯‘ï»°ÕÛÅ‘…Ã`Æ','',0,'?'),('©¼ãJ!“,‚1Dz$\\(','wp-content/plugins/instagram-feed/img/about/api-error.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“ÛyÀÛÔV;Þcã><*½ð','§›^Gk¾PrÝo¬Ê½âöù¥E½#Âù\'­±šNLå','',0,'?'),('©À!unñõoûÔm','wp-content/updraft/themes-old/twentysixteen/functions.php',0,'MÒºÝˆëÌ¹µëÍÁ\rG9Ò','MÒºÝˆëÌ¹µëÍÁ\rG9Ò','µøÿr;Ø‚ël~éð›ÕNp¸pcr(ƒ:€','',0,'?'),('©Â®Ý\'‰M>6\r6rÃ’î\n','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/ExceptionBufferingBatch.php',0,'.Í´²oŒüCc*íYq','.Í´²oŒüCc*íYq','jb(ÓÀ™ã^5ÔþÈ4kñõ°6\0EDl\rµ#\\2','',0,'?'),('©ÈÈäH$‘`\rDGõ|BYß','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Operation.php',0,'ò‚·ðEVËI¢¨Â%wFÕ','ò‚·ðEVËI¢¨Â%wFÕ','BTXÒTÞþh96ƒ\n¿rÎmÙ*>6JM_Lr·','',0,'?'),('©ÊÚ·tìg—Z·gEò','wp-includes/class-wp-http-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µÝ4¾ƒyÛKý„øß•','çÎ™	áåù[ó†{\0Ifâ\0„tâv\n9d¹•øxŠç','',0,'?'),('©ÌË§©V2o¾|\n -©™','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Iterator/AwsResourceIteratorFactory.php',0,'CMU;”¨dò«³…†·1œ','CMU;”¨dò«³…†·1œ','*}¼¥Yá(ið¼	¦Ï~Tãæ	›b¢ŒžNOÓN»è','',0,'?'),('©Î\'½v™.@´(¯‚f','wp-content/themes/Divi/includes/builder/feature/Library.php',0,'ÿÐõ#îí1Éúü¨ˆ¥','ÿÐõ#îí1Éúü¨ˆ¥','§™Qí?€·‰á¥ã…oðh-[öƒ	ô9×¥¸½uÝ{€ž','',0,'?'),('©Ò×EÔì™ŠkÍ¨aå\Z³d','wp-content/plugins/wp-mail-smtp/uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I†b{êòÖ.Ñ`ŽA\0#','GVõÓ˜:KßB8„ïåöØ°ƒKË3Ylî®tUš¸\"`','',0,'?'),('©Ø^ÅŽŽÉ©àBL_´¯Ïx','wp-content/plugins/fusion-builder/inc/lib/inc/importer/class-fusion-wxr-importer.php',0,'áÆ\"o!šÉœú[:™má0','áÆ\"o!šÉœú[:™má0','kÑÿœX2“Óµ§À\\`ÓÑ’£SÇ|`»(VìÍéßG','',0,'?'),('©Ù6è‰Yƒ«¨±¶C‘ì@','wp-content/plugins/worker/publickeys/partner13.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨Lè¬ý÷Å(ˆõ†\0ò–ç','½\\½Ïj^Î	c\nøÒQÐt\\“éo53(*¥½Ðô½J','',0,'?'),('©Ü ÍçIt13&','wp-admin/js/nav-menu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?†Ú±â–h×¹ys$º9×','ËÑ5$©¿);5þXì@–D8ÑïÚ÷°©zÿ´','',0,'?'),('©ó“CÙèÞðŽ¾éäd/¬','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/blades.php',0,'W‰Axv¦xx’L^z=:','W‰Axv¦xx’L^z=:',' KH¸¨œ·\"A¹‰=ÈI`ÝÍå»ÝwÔD„±','',0,'?'),('©üŸ*}øÒâ^ä½Ò“×','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/themecheck/class.fusionredux_themecheck.php',0,'¥ºh_…pq¾>ŒV¾fà','¥ºh_…pq¾>ŒV¾fà','Ö¢ÂÔôhnºcÇ\0}N~>w‡¨—8búº!‹','',0,'?'),('ª¹ÏG™löÜÊÝ _Ö','wp-includes/js/dist/date.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’ÆwþšR–³P¶“2§¹×','™ø\Zgõeãûã¯Ã:Iìz\nqïÐº>ÔÜ[§mž’hðï','',0,'?'),('ªJ-ç‹ºÔ\\\"ý×¥&ð','wp-includes/sodium_compat/src/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Äž¤‡û»ÌWS±Rh?¾I','ñ ë«\r§ç(þ_àq*h7w@ªL_CÑþ÷è¼s+','',0,'?'),('ª $jà¢[¸¢ïãLÆ­','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/theme-builder-library-local/ThemeBuilderLibraryLocal.php',0,';ÂTOV\ràaT–åqíÏ',';ÂTOV\ràaT–åqíÏ','Œ„Âu(ZµÏ„}Ò³A¥òz;v )u] ±(5|,¶\\¸r','',0,'?'),('ª#Ä²¯åÎ¬/ôš†„ß','wp-content/plugins/updraftplus/methods/addon-base-v2.php',0,'š3h.ðö|<&ìÆ ç','š3h.ðö|<&ìÆ ç','zÒˆïù;ŒÀd8çÝN‹pg­!×@¬—·hÍè…ßm','',0,'?'),('ª7w[ŸâñîW	ë2=Û','wp-content/plugins/wp-mail-smtp/src/Providers/SparkPost/Mailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p!PPB ƒv¢–ýÄ{	','ÀéøiÓB:OHéÎ9õ‘}T©Ã‰ïæÂµJIZíÙ','',0,'?'),('ª9æm¡õÖUdŒwö4ú\Z','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/SignalHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’%Ö\\é­ˆ¯È!Û&ä5','dÇå%IVï^Ö‹ZA½9…ì¬RØ`ª YwO@2','',0,'?'),('ª;?2èáˆSýã§\0ûšp','wp-admin/customize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÇÏ|ü`-,TÄå?|Bb','‹¾y„ï4œ%§Ãt,Í³=iNGNCUÆv—ic','',0,'?'),('ª<•6Ë¤h¢œlb…>R_˜','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/ClosureCacheAdapter.php',0,'a|	XÅ¤D5Su[Õ~…','a|	XÅ¤D5Su[Õ~…','Í9òÅzwL¼Ö5¿{Û!ó?éºƒšY!	ïfË','',0,'?'),('ªC oyæ_ŽªöÊ2ó`','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/WoocommerceProductVariationPlaceholder.php',0,'·ñÊ¨*Ð•ÒêUÈ½%ê|x','·ñÊ¨*Ð•ÒêUÈ½%ê|x','oŠ_’8Ú“L—à70=lÄ@\0]»òÌ(£vgWÄ','',0,'?'),('ªDûQ#ßïl.|Ëï“¶;','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/Rfc7230.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>nI„¸…\"‘:#Yó{BØ','«4¯\'k\ZB\ZJáe\\	§Ø–žOª§\Zé3¡ƒ\'','',0,'?'),('ªI!…Üì€ é@\0Ãu','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_HybridStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øH½b¯Ë>¿ªê¶½<','«œ$iVã±áªÈåÂ:|‹Òú%9\\ÍØÉI9ë','',0,'?'),('ªTbƒEþ7Ë~¾cR\n°','wp-content/themes/Divi/core/build/et-core-app.bundle.js',0,'Î“úñOW—=dÐ\0e?','Î“úñOW—=dÐ\0e?','	ûaix¸NK§~ÅÕÑ[îáfÈv6 îØ®½PA','',0,'?'),('ªUJJ0¬EG†¯†™ó}','wp-content/plugins/really-simple-ssl/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ƒè(½KSYUëvÐ','ä)Õ\ZÞ?–š{aö3{ó¸Wõ`áÅEX®-Ò','',0,'?'),('ªXàá@ÁÔ%½1C„Ái','wp-content/plugins/wordfence/images/lightbox-controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m]¼a’¬•\\$É','Ç—’h?àïïSéîÍ)¸:›ÁÖi@h. X×g”†','',0,'?'),('ª]Ú.Ç1\rPXL©','wp-admin/includes/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…ºÅjž’©~ý\\öË©¨³','…_weCÒ\\E4£ˆã“^mZ4µû†-g\'Asào6','',0,'?'),('ªd0¥¯re¡ˆ–&','wp-content/themes/Divi/js/smoothscroll.js',0,'¶¤Œ\"åÝQ@JÇªEq\n','¶¤Œ\"åÝQ@JÇªEq\n','‹`Aƒz,ø!X®ô/µìãÈm{ŒmºH-ø<y¡vf','',0,'?'),('ªf(¼9ìÒ6›yaN|2','wp-content/plugins/wordfence/waf/pomo/translations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z^:@¨´JKL‰¤©æS','¬\rHñÇ•šn`¥>©--\\Tr×ôð7,×Ž','',0,'?'),('ªfšâŸªá×®Ÿ¹H:Ý\"','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListHistoryResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O5‰éÐ‚>Z5£ôzô2À•','qKŸàýëhàw,ëâû„ÇÑš›©Ê¢ZÎ‚sC','',0,'?'),('ªm§ÏÚ¬±8Óq²BP','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/Common/FiniteField.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#ãˆÔï3KÌÑ_:œ‘','eY,=|p\"¿>²&r\'î8¦-,ƒrU§©ûèÈ','',0,'?'),('ªrYýÿ\0­S²—Ä(z|«','wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-Gb“yf€Ô|õ½S¼’','ÙoŒ¤G5}[ï`Æn†úxµ¤ÂÜ¡^‹@B#Ì×õžlb','',0,'?'),('ªs8æ\'íÆÉ€á\Z%Cx','wp-includes/blocks/archives/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­\rlðAÜH×˜ë€×„j',' +†h©%23¸^¶K»³#l]rÍaBc\r…ï4¬b','',0,'?'),('ªu$Š{ÂãÛÜ¨“§vå','wp-includes/blocks/latest-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñßj¾‹c\r9+@/K<í2','=Ã\n+rSÔD;žä|íY}™VÄ’P[õo =]LJ','',0,'?'),('ª~K•É·wwfÀCì','wp-admin/js/widgets/media-gallery-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{üc/ú‚©‰IÕÂõê<›','yÆ\\ÜR£TÞÜ öU‹tmYÇ(†ã»±Ì¿','',0,'?'),('ªˆ}z²šî¤#¸€™‚\Z','wp-includes/Requests/IRI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','° \0KK#h!6Ì¬ÉY','Ë¶bûÒÌaÂÕt›+ó¡f§lmò:óäÙßó²‡','',0,'?'),('ªŒ;øT_&œÌ«-ï˜ó','wp-content/plugins/worker/src/MWP/Migration/Migration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…´ëÎŸŸÏBóxS.øx=','Þ0—\"Íð”ÍPY\\&l5wóªžô*.	a¸	','',0,'?'),('ª~Ãó‘97e/ô\r;','wp-content/themes/Divi/includes/builder/module/field/display-conditions/TagPage.php',0,'W°5×‹‹ïß’}dDÈù','W°5×‹‹ïß’}dDÈù','>»YxÆÍ™,en%§Ö¦-Ñ­(×ŠÂn¬lòU','',0,'?'),('ª™\rŸžµ[¯ã\0êEuJ','wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿VêˆÌ¦¦øÙQKã#Î€','ÉQšä]+N¥‹[m^Ì‹BÙŽð1¹¬Ïíù}Ÿ','',0,'?'),('ªž4‘y‡3%k³ ‘³˜Ñ','wp-admin/js/widgets/media-image-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŽÈ;k“#?”çcQ7ß(e','òoÝŸ{Ì\rrŠh5ÜÅF°w¯wÏ	LeðFzÓ]è','',0,'?'),('ªž»ä±¦s€*µî†¿8ß','wp-content/plugins/worker/src/MWP/Action/Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=úy,©šWüzª»v	','ZLÉ	[¡ÅÞ\'hAØÝä\0Ý»h{bÆ\n³aŽÃ¿aM','',0,'?'),('ªŸˆå’ÅiéÍ¸ó	…p','wp-content/plugins/really-simple-ssl/testssl/serverhttpxproto/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l·ª;Ö•F:c¥ãE‘\\','dÍäU¨­EOÌÛÜQ“¤NÖeÆ&¢ªð«é±šþËµ','',0,'?'),('ªªwE7Šøï=ãK¹ÂŸ0','wp-content/updraft/plugins-old/updraftplus/includes/labelauty/jquery-labelauty.min.js',0,'¨!ïm•¹ÏÔH@4Ù¨¦','¨!ïm•¹ÏÔH@4Ù¨¦','ê¢lÏá3Ù ³=ŸÏ=Ý•›í–¢xeHLYî&ñ­#','',0,'?'),('ªªõÙ†˜|† ²½','wp-includes/js/masonry.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';?È&åÅTŽJeœxH','$¬!É|=#f…cêjcùÁÇ:¥ªT¹Q0bæ¸,Ê‰‘','',0,'?'),('ª®óVÞz¾¤ŒìESþ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersThreads.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','böQæDÃéç ˜‚{§ó','dv½¾ßõúžùTù9u­UÅ5¬æµ²-Ð±±EK','',0,'?'),('ª·¹ìð•i°eTˆ ÚCÓ¢','wp-content/plugins/updraftplus/includes/Google/Service/Dataflow.php',0,'Ž(ÙªÌ#½Åmãƒ‰È8','Ž(ÙªÌ#½Åmãƒ‰È8','9ÏÍ¦9Äã]”]E·›ˆX•ƒ õ»ËCl¾B0','',0,'?'),('ª»îpx™mÎ\r“Š:L}¿','wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ù¼Ž½Ÿ5:±ækÔÉ¡Ü*','S6ù@«:p¤\'Ñy¹`—˜³ôÔ.:Ü0ÈáÖHÕ','',0,'?'),('ª½ñ–©9î£÷ìÖwÜ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/AbstractRequestVisitor.php',0,'E!fDáä]r’ÑK »Ôš','E!fDáä]r’ÑK »Ôš','õì0ÎpX¤Û7¸A\ZâlÇš¦y2á\r–òÏÓf¤YÄ+','',0,'?'),('ª¿Î˜Ä•r(„ÅãÄ ','wp-admin/js/auth-app.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#ýÐÙLPÐÊâS[fô','F@H…ü8åÝ‡ýç7an¢ÿƒ#{â¡ÓÛŠ§jü','',0,'?'),('ªËÙv{C«ÀºÎÒ§€Ž4I','wp-content/plugins/wordfence/lib/wfViewResult.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z•¯¿ñ\"J3ZÍÕw','ÊmÔ¶eå=žH‰ŽoDº©¿OTÝ\0ìv±è¯í','',0,'?'),('ªÎ0ºnÜÀ¥1qýéy>','wp-content/updraft/plugins-old/updraftplus/includes/Backblaze/CurlClient.php',0,'³£òÓ~û¥@ÇŒyÈ.žÉ-','³£òÓ~û¥@ÇŒyÈ.žÉ-','÷;8Å(77Ì/Î|,Œf´sR‘<âm#9\\¾OÊ','',0,'?'),('ªÚpº$^†ôµdZ','wp-admin/network/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡%(F±²v\0ƒ~»ëF','Ú™s-s™åÇ~²uYeö¦’À’ÄT‹ÃûF¶4¿!á *','',0,'?'),('ªÞ.4E>°Ë”Í\"%]<	?','wp-content/plugins/really-simple-ssl/grid/templates/grid-container.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§1UMèd¾¤^ÿÅ·','z*¾_ÏW•½\\ã¢Û¡&è¶·»JR”¬·´','',0,'?'),('ªåñTSOöyh§\Z3d\"','wp-content/themes/Divi/core/code-snippets/app/store/code-snippets-library/actions.js',0,',›ør¢ÓìºZØ^ øDŽ',',›ør¢ÓìºZØ^ øDŽ','¿ð¿¶o 5¬#Õ¨ý4¯+‚<›¾5}–ì<²U‰“µ','',0,'?'),('ªæ[KºîæbŽÄÚ28·','wp-includes/pomo/po.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ{K_ÅòeGã@{	/','îG\nä{2Ù‘­Å@k²Ù—ùÌ9Ô²ä÷1G9ÑÈP£','',0,'?'),('ªí­²ÑñÖ$\Z.®Kö²ˆ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/Account.php',0,'<ñ^Pj¸¯%^Õå6€Å{á','<ñ^Pj¸¯%^Õå6€Å{á','-fØ]wž¦ûœÌUo”‡¾T®ÀÎ÷e‹({?èÇ€','',0,'?'),('ªö\Z)Ñöüg%a#Pù','wp-content/updraft/themes-old/twentyseventeen/assets/js/jquery.scrollTo.js',0,'ûdÝëöc©	Å@­y','ûdÝëöc©	Å@­y','pö¦0ÂíÙOßÛþ	‰”ØÊ9››@5˜E~“­U‹','',0,'?'),('ªÿ–…Ñ]Vø†ÔÁ¯ü‹¦','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/eu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨œæl*-òMRw€–v','¿Ø¿#Ž¼Þ[R]ƒh®…­ÈÁXÓÇì½ÁIÔ§?','',0,'?'),('«\0«;³9¶Š„vŽ”¦•^','wp-content/plugins/instagram-feed/img/small-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9ýOË(GL+o5÷Ë¬T¸','ˆgøÿç¨¨:¬Œ60û0ÿ‹ÇÓ,’Ï´¡îñ·ÆžG¯','',0,'?'),('«	­a÷E`L/‡)\"¶›k','wp-content/plugins/instagram-feed/js/sb-instagram-2-2.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒí—T2(^¡ŽÀs£–:','1ák—_Ñ‚+SD¨(&)\0š—õ™Ž;þv|«','',0,'?'),('«’ÚñæJH‡l\"G¤Lù','wp-includes/css/dist/block-library/reset-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µáuá°Xƒ¡¥L­\Z','œ í«•ç\rH{ˆf¤¹…G^æ?U<¼6Þ1','',0,'?'),('«\'Å‚Eg3#½ï¶æ\\','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/CompilerApiFilter.php',0,'D7r\0tÖ§HSõÝK”|m','D7r\0tÖ§HSõÝK”|m','¦VÁHÆ´ºýf¾ì²„-X€ð Õ†Ì^o','',0,'?'),('«ÔNP½²£<U’ˆ÷†Ø','wp-content/plugins/contact-form-7/admin/css/styles-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C÷Ä –-Õ¿D$;$OD´','¡3z-\nGéÒ¤Ô?~Oºšª\ZsxïS]ÞN‡Äÿ’v8Ö','',0,'?'),('«p™vŒY2pÊe_ÐÅ4','wp-content/plugins/instagram-feed/templates/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7®Ò9ííw\'=î–Ä	\\ã+','®ÙÝ«@Þ«QÜÒ!þú‘cëOpwäh©ðœ¥[ÊKÉÇ','',0,'?'),('«ÐèX’°ØJ üp','wp-content/plugins/wordfence/lib/wfBrowscapCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TÁëÏQ×x‡j‚','Ðƒ®žë1Y„„õTšŠÐˆÕqó¤W6Ý‹™Õh	','',0,'?'),('«9”[ŠE:Ñ¶q	²A','wp-includes/blocks/calendar/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Û©iw’hw„Z–1','5v—‘šÉ­<ÿ%ä¢UÛíB#Á Æ5zh]Ö ','',0,'?'),('«\'e¸˜cÚäˆ×²†@#Æ‹','wp-content/plugins/really-simple-ssl/testssl/serverhttpxforwardedssl1/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZÓétÑh´ú_â\Z€n”','Kÿ½e¬µgv*@,j÷Êu0V’\n=„³‚§Ç','',0,'?'),('«*Žz…8n±ÓÀ¾»ZÎS','wp-content/plugins/updraftplus/includes/Google/Service/Oauth2.php',0,'Iyb•y4­Mgc¤Îž','Iyb•y4­Mgc¤Îž','žó^!æ×$÷®÷ªy[X\\g Ö§gí¸N\'3(hm','',0,'?'),('«,‚n^¦$ó0Ðbâ','wp-content/plugins/wp-mail-smtp/assets/images/reports/email/wp-mail-smtp-logo-dark.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜfÀÜÌÇ#êéÛdçb9u',' Ø‹Ùy¯†\r[€%k$2Gë‚ e™EÔ<ìa\r','',0,'?'),('«--ö\"ç¯`úxÀf%)?','wp-content/themes/Divi/core/code-snippets/app/lib/code-snippets-library.js',0,'ÏôÀ|²|t‡Rì\r\0eƒÿL','ÏôÀ|²|t‡Rì\r\0eƒÿL','Ã9)»ö¯ý…Ú’ö¹-RßŸÐâ,M>\r»¯Ì:Ïw	\r','',0,'?'),('«0´Ùnxø€‰ÊLŽ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheKeyProviderInterface.php',0,'³a^qÊ-5ÑEZC™ÍÉRA','³a^qÊ-5ÑEZC™ÍÉRA','ª›Þ=¸s—-oS£@œàéTœA_ñÊe<E{B\nÍ','',0,'?'),('«@ŸºpÜÑ¦œþ)ûå‡','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒYÓæï V]~\"¥¹fä','ø5ï§wÒÎrØ#U§Ä*q™š”]•#¶ì×ž`Ö‘²','',0,'?'),('«@Á;^Y¤½ŽÎ«§ú','wp-content/themes/Divi/includes/builder/module/Text.php',0,'ü‘Jáèîƒf\'<x&Ÿ','ü‘Jáèîƒf\'<x&Ÿ','À§Ü%j×­D•Ç¢>Z!<SŒÊuðéñ9q“k+]í','',0,'?'),('«Q{ôt”¥$!7”ÁãêEX','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/BlobRestProxy.php',0,'ƒëG8Ç_5“øÚ8Èp7','ƒëG8Ç_5“øÚ8Èp7','˜‹ZºôÖeÌòØO„óÍA¨vi’TÅ]û¼³j]','',0,'?'),('«Q ŒÎ¶½©1*hQ2´','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/BaseException.php',0,'ÿ«$u­9$›hoy%÷£','ÿ«$u­9$›hoy%÷£','ÿˆ7×tô•ž:s{(ƒ,Ö5ÞU)Úfr7Ox÷Ÿ!','',0,'?'),('«SÄëú³qê`ŽƒMÜ','wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú¡q’1‚b»¿4ô	G*','{U%ÐHv³Ê3Û) |w ½-L¿½&ÿÖñ.äŒ©','',0,'?'),('«XÞ½ûÕÙApéSEL','wp-content/maintenance/template.phtml',0,'ô†ú\Z£ •Zbƒ-í¹f','ô†ú\Z£ •Zbƒ-í¹f','ù}Š·J®ù£+5ŸáTé‡ˆsƒªåc^ž','',0,'?'),('«nÖ¢¡ù\r’V5‘‹,Ù','wp-includes/widgets/class-wp-widget-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æþñO^…FÊciÊzJS','Sîž6{FÖ†›ŸZ0¾C×Êr­c°‹\0\\TÁª:','',0,'?'),('«o¢ù ´l>¼âx~I° Â','wp-admin/network/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~„€ž(™†ø4áGìõ£','öŠj/}Ó…¹”Á\0ESþúÌ¤\\Hgë#Z©¡._','',0,'?'),('«sB-xwŸó&u.‚ŒÍ\\','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/UriNormalizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a+GF¸ÁI”ÙÅýý¹?ÂN','÷:¾¼[i)¹fiXlx½j K´ BµC†…Hï%‰Ì','',0,'?'),('«uÓ¨×+Ì§xTÃd','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Service.php',0,'ˆ¼¡3ïÅi&j%9ÝœÍ2','ˆ¼¡3ïÅi&j%9ÝœÍ2','KAøÅSˆŒ\'Â}\rT8W\Z¶É_”L©8Ü!%Ó×@ÆÉ','',0,'?'),('«~†º{YÈi«Ø‡XU','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect283r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f?/ÃuXH^H@m¤”¬”','ì#ˆ*£<NOÛP\rb…Xiˆ¼iªïÞóÑZs÷Ü','',0,'?'),('«àÐýï¶ìE{yðÛO…','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/worker-html.js',0,'LÒÏ_¥ô¨vFÕº°','LÒÏ_¥ô¨vFÕº°','-v…8Š§#úÄ?´<îJ~#þaªÚ‡£\\xÝ”ï','',0,'?'),('«…;ûnå–7Ï·¿Åü2','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/AppendIterator.php',0,'Ñ~Ñ#ï°[hoDÂî×ÓÄþ','Ñ~Ñ#ï°[hoDÂî×ÓÄþ','¼¾À§çç]—W7C‘ià&îòÞ\'õT—};ù','',0,'?'),('«ˆ°0jˆlµSÓýKò','wp-includes/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Úãw3ÓßdBSøÈ…a;','œa§”Q0²i¯ÑzÛ‘>Þq“X»‰· í,B0ó','',0,'?'),('«˜¸÷Þ¸qãic¼=’','wp-includes/class-wp-simplepie-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªbÈk‚Ï–Ñ…ÝXÑ','‰ï/™\'C•¾?C\Zfbˆ%Û$ú=V6 ´\\Ÿ','',0,'?'),('«šSim¡Y˜©8È-‚v\\','wp-content/updraft/themes-old/twentyseventeen/template-parts/navigation/navigation-top.php',0,'Á@šíöƒˆo‚m‘d½d','Á@šíöƒˆo‚m‘d½d','ªX¯ÚGÐŸ‚Ž™}ß›Ù1Gõh½–ŽD‰+sæË<','',0,'?'),('«³sùÕŒQ±¶7oéÃô','wp-content/plugins/wordfence/views/common/status-detail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Ufxy9â9”ùg4Á½','¸åïEèFËjÕ—&\n¶ôE¶¢&JÕŸgWk.Ž‹ºT/','',0,'?'),('«³éG¸«£-,(Û „tJ1','wp-content/plugins/worker/publickeys/managewp_d.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&þ•­°‘#T@\"¿]Ê9o','Ò¢«ï,È°`¹r¥`®µª‘:ü…A ‹qîKÃ¯Çé','',0,'?'),('«Â«¬ä—-j=´u¶N\\q\'','wp-admin/css/farbtastic.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùã8)¸úí}{¾øCûh2U','|A¹åLäºÉMbÇx¦d8Xï‚jX.ÐûŒÖ^\n\ZŽ','',0,'?'),('«ß	²E¹ßà“{jJÌ','wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/Adapter/Curl.php',0,'?	5sA4ÿÊ×å¼õ÷P£','?	5sA4ÿÊ×å¼õ÷P£','Åt”:Âþ>¶UË…È¤	/›Ý4•]Ü%)?šè+™','',0,'?'),('«éuôgk²DÁ—E‡‰K','wp-includes/blocks/query-pagination-numbers/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','miÆˆÊnÑªÄ…@@b\\','8©òï&©‹“ûå]Y¦èïY›çâœ€fuËoMå@T£«','',0,'?'),('«éÈ_&\Z£\0_ºQÉ­+ò','wp-content/updraft/themes-old/twentynineteen/image.php',0,'—úW{näå£5¯@óFÇ','—úW{näå£5¯@óFÇ','¸N/=EnÝ9-ªP¹¡°µçàŒÂØÌMøÉ‰>o€Õ','',0,'?'),('«ô÷á—Ø3…-ƒ«4°','wp-admin/css/colors/midnight/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D¡ôËtÐPcÍíc<Dm','”‚{jÍ‘1±tïÓÍ»_|?F’ÿ	ÁÕŒÃy§Ú‰','',0,'?'),('«ù\ZC›®v’$f«þH/³','wp-content/themes/Divi/core/components/cache/Directory.php',0,'Ï±NkHRQµ/¿r','Ï±NkHRQµ/¿r','ã]±H^Ä˜Ê6Ö s6Q¬‚÷ÅOy\ZØ™=‰W¿¯','',0,'?'),('«ú-ñá3r—qD\r£ê4r','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/corner-paint.php',0,'u`5 ¨œ\ZN\\³ÁJ­œ','u`5 ¨œ\ZN\\³ÁJ­œ','QtxâràÊbkùš¯ân¶>è’ ¸Î‰¢“«uìÙ\'','',0,'?'),('«û‹ìµ3’³Dx>˜·¬','wp-content/plugins/wp-mail-smtp/assets/vue/img/working.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹²£¹DÑ\"e:´Õ3C6©','„E~V»\"ìaVßx«¢ë·¯|ÀXæbz¾¢Í‚“','',0,'?'),('«ýq«\0dZü¨–ö%?','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Configuration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦gÑÚ°“€|¯7ÊjYÂ','¦l\0wpÜqd@Ašÿb²&pÅÇ(m!\Zw Ò','',0,'?'),('«þÙÂ¥;}5¡Ã=¬m%','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/notices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|›–yF9CÃ3ÑM‹ôà í','¦BÁ…Zì¢^ô¶Õ¨S„°\\Uí«qãQå±H—\"S','',0,'?'),('¬\nu¶¡Ð¿ÙoŠ6Ÿ¾','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/slides/field_slides.min.js',0,'gvJoZƒIÕ4ÍûÒe…','gvJoZƒIÕ4ÍûÒe…','ÄRãIkâB4ŠÒrjB,\"]]â ¿ïdÜR$Gò|’s','',0,'?'),('¬tnû¶¢_‚y\r‡_±fK','wp-content/plugins/fusion-builder/inc/templates/custom/fusion-chart-settings.php',0,'7¹d¤ÿ\nÐ§ëVM$_Fº','7¹d¤ÿ\nÐ§ëVM$_Fº','d;Üæ;KPÈ~A- qPñ‡B`Õ§\\ì¸È ÀKg','',0,'?'),('¬\"Ú•K[@‰GÇûáá9‘','wp-admin/includes/class-wp-theme-install-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<d³|~\Z¹Žë$²éK','âÓ5·ÀéF(*ýï\0ê6tè<à²Œ2	ËA«3–¬Ö','',0,'?'),('¬#îäu0¬c¡Œ‚}²€‡','wp-includes/js/dist/i18n.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ûCQ»©û9A4nØ\nCa','\Z™.H~2\Z™ŸPª‰±Ã{ûË&„ãcÑ€H\0ÿ','',0,'?'),('¬$H¡á™âË-­wš<','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_uk.js',0,'ºùÀ’\rÎþÞ¢Üá','ºùÀ’\rÎþÞ¢Üá','ùåZÛð]/õí`$u›–¾L0Ô\"§M¤¶vF”©','',0,'?'),('¬$´Q²sP¸¬êR3}/','wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü@¤‰9o;&ãtö€Œ','CÛž„`Õ)æt­¶‰êfŸˆK|j–¡©“dÅ~','',0,'?'),('¬3!9ä=è6Ý¡','wp-admin/images/resize-rtl-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÏMÕï“ù¨MñHõ!þYA','£2ùìmÑoßæ{«|…ny‰üËƒŸ4(åøûÏ†î=ª','',0,'?'),('¬7Ó¢/IÑÑ¿â%\nM6','wp-content/plugins/wp-mail-smtp/assets/images/email-reports/thumbnail-01.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	›.ÛgH¹Ð-nMößl','=Æñ8×âóüî:Îì–êáŸýB†;˜O¨Ï\0u¹','',0,'?'),('¬CMx3ñB˜ƒÐè$ƒ','wp-content/plugins/wp-mail-smtp/assets/images/providers/php.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'Žø<<ñ‚ïá/éýì','X¾Ø÷ïÖCé¸¢2Å½ 6Ÿ5lšwL^ßKDGQéù','',0,'?'),('¬H8ªÃ±¾‹\"Ðn‡M','wp-content/plugins/wp-mail-smtp/src/Providers/Postmark/Mailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œzŽƒ\0ÿHÁÓJ«¶˜L','‹C»»Ž	9dy·†f¤}‹Üóá=HàÜÜ0Õa„','',0,'?'),('¬Ioo¨Ô†5nu¤Ñ­¶ˆH','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õxä»6Fƒ\0f‘á ù–','Nƒþ^qóïyqÜ¯\r]¹Süë\\ãð[ÎC{V§šyÐwè','',0,'?'),('¬M²MÁ<ÑöHó¼¿™U','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpTimeoutError.php',0,'9#wû>üÊÃ²7~<?','9#wû>üÊÃ²7~<?','Bïø‹\r¿Sjã/Ê‘Ž¬†}~[7ž»P±@Ef\"ÄŸÑê','',0,'?'),('¬Qs\'÷š{„^Ïî“X','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/DataObject.php',0,'s¶F”ß³‹³Mð¸i„/˜','s¶F”ß³‹³Mð¸i„/˜','$-Üo¤ý¨ÊÌ(²õFh1Äéß|QqîÞ´¾Ï¸Eón','',0,'?'),('¬S‡\n€ò>¶½y·ŸÆpÈ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/color/field_color.min.js',0,'®\\¥=\'/ÊìªÛ™Dãw','®\\¥=\'/ÊìªÛ™Dãw','Ð‡ÍÂà,‹Bþ5èŠ×TŽÑå™J|‡ÖÖ™¢GÐ','',0,'?'),('¬V.ÒÊQ5&³§~W^ó$','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-data.php',0,'aÚú9âMLÙ©ë^?','aÚú9âMLÙ©ë^?','Xÿ\'à&†J°BVkÏ—Ft<ÄA4‡LsN›|ÐÀ/~Ä','',0,'?'),('¬ZgÓUi1içÆ¾äxÈ=õ','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AuthenticationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦dïWè,‚úXEEæoñû','l?õ™à©)&&©¤ââæÓPÈÓP$@Ú\\¹/ ','',0,'?'),('¬^2^£Tš:ÈmJ‡ø:­','wp-content/plugins/wordfence/lib/IPTrafList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UIË&’” §ŸI','›a…k*a\r£‡ôÙtÒ·Ì ½ØÂ¾Ž^ÔJ³O','',0,'?'),('¬_ÃKEúºÌ$3¹!Ô','wp-content/plugins/wp-mail-smtp/src/Providers/Mail/Options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»‰ªôõLÚ3«^$¡¬ôg','\0ÐókÁð<â·ÁWPÑÆÑònÙq¼<Ý','',0,'?'),('¬bó0Ý€>jã¤\"«þG','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aa+JD$ø2Ÿ‚J”Ú','¬/#?Tï†iOLyv¦íuš˜TK”°©É¤½·\\Ø»õ','',0,'?'),('¬j4ºè€ŒÄ‚ãúÞ²-','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateWebhook.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V2Û²÷W0.ZYK´¨$','esÄßYì[£<Í?G|¡8Ìÿ/ùƒÂ.Iâ<\\³','',0,'?'),('¬jU£LT…¥®©h•y','wp-content/plugins/worker/src/MWP/Worker/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('¬nBN:yÂý–Ýç§…Ý','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/fusionredux.select3.sortable.min.js',0,'oÝ•<ÉE?âvuùv”Á¡','oÝ•<ÉE?âvuùv”Á¡','·ëóõO\r½ÞÃ0 a{õŽeƒf#-˜F1…—O”ŠÇRÂ','',0,'?'),('¬pÇàJ¤ÚAPÞÙ•žÏ³H','wp-content/updraft/themes-old/twentytwenty/template-parts/entry-header.php',0,'O`¦·!8-^Éïœ\Zn‡W','O`¦·!8-^Éïœ\Zn‡W','’·m]|\r,–žäçñ¢Êá¤Á:Ùk‘K9	¬\"¸;','',0,'?'),('¬}Df6¬]\n4¿ø÷ýYÇ¸','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingAttachmentException.php',0,'Ø™—¥ftn¿¯² ”o\'¥¦','Ø™—¥ftn¿¯² ”o\'¥¦','|0D†‡ÕaIDÛeÿ©ü:ï\"CÐîƒ‹ŒT¸…’','',0,'?'),('¬Ž?¡…Ò«!$ŠD','wp-content/themes/Divi/includes/builder/module/settings/migration/ContactFormUniqueID.php',0,'3\n\"©ïî¦HÜÄmQ²ž','3\n\"©ïî¦HÜÄmQ²ž','¼^òÎ\"ð„­­¦GdŠ&J\\FèmÐE&D\\','',0,'?'),('¬3‘e‰[1ÑV\\ .¾ä','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/color_rgba/validation_color_rgba.php',0,'ä®Í”@ÅÓ°ˆêŽ…Ð','ä®Í”@ÅÓ°ˆêŽ…Ð','ØÕ—gBs©<Wš×dŒ·7Ì=ðT;&›8qÛðª','',0,'?'),('¬£•Ð«±;ôçÍÊÔh','wp-content/plugins/fusion-builder/inc/class-fusion-builder-gutenberg.php',0,'ÙÛó5(¼8\\ÿ‘’œA','ÙÛó5(¼8\\ÿ‘’œA','¹À˜c‘L®äÿ/ökÖ—Kò/”óÒ	þ&ì¨7','',0,'?'),('¬©ë¸[´®—Ï“Ô1ßZ','wp-content/plugins/duplicate-post/compat/jetpack-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÒcÈŒxÒ¸½²Ñ‰','ªO+S‘M”‚ÞA0í–€B$ë†ÔnŒAØ6àÙ','',0,'?'),('¬ªÚ5˜Á¬;|HMèZXŸ','wp-content/plugins/duplicate-post/src/ui/row-actions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•‰Ï@I6«9¢û,r‰s(','±ôÜÇÉâùSyFMA×ÀŽ–¶Õ~\rTŸ÷ñ‹hÂ	‚','',0,'?'),('¬³~(ò?°V£€ÖÕJø','wp-content/plugins/wp-mail-smtp/assets/vue/img/arrow.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ8´v9+ê}-r±õ','fÜ‹¯\r÷\nnù‘ŠY¾Íž(Ø£r@/7 o','',0,'?'),('¬µjnVR”=ó4Ê”¥','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/UploadBodyListener.php',0,'Û¯?¾Àñ˜ÀÐi“]','Û¯?¾Àñ˜ÀÐi“]','¿I]àRpÑz¼öm\0Ñ¡MO6›‡~¾m“×¡8£é+','',0,'?'),('¬¹$YÎâ†T\0ãÐ=êM6N','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/frontend-header-template.php',0,'Ž 0h{cž›“ð¡ªã›ª','Ž 0h{cž›“ð¡ªã›ª','Ú{ä©FÏAôoŸwAÙÛ:Ò\ZQ¾(<7†¡„ïyµ','',0,'?'),('¬ÆEÅ“¥þMU?Î¡ãH','wp-content/plugins/contact-form-7-honeypot/includes/images/honeypot-icon-small.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I¨ËmO!Iå¶¦5kå','ô€ýQEz5D·ú>]¯¿=ŽŒ›’W³îiâ)V¥°','',0,'?'),('¬Í9\"ý@R¥Z‚4Ü','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/RequiredExtensionNotLoadedException.php',0,')GëÏâèç†µ\Z¿¨§\"è™',')GëÏâèç†µ\Z¿¨§\"è™','óÞ¹1×ÍØõ­…UÅ•½FtAÛäå\r1*…œ¨x','',0,'?'),('¬ÐiÄsM<àEšì-¥g(´','wp-content/themes/Divi/includes/builder/frontend-builder/assets/scripts/failure_notice.js',0,'uÜL€HÙí\rê½}\0ÆÁ','uÜL€HÙí\rê½}\0ÆÁ','Q]õÉòÌeLuÀÍƒw;É¬ì-QÜ÷Ê¹®Óy’','',0,'?'),('¬Ò4&@^ââ§*Êç®¦Ž>','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/Certificate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢›ê¿hè‚Ži°©ÛN','ú†ê]YxX–ŠÈ†×ˆ«•p:/f+cˆPÅºZÐÞÅ','',0,'?'),('¬ÔzÅÔù9°jŒú¿%PÐ','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/EventDispatcher.php',0,'J‡tí}¼ÊõVýëf‘\\q','J‡tí}¼ÊõVýëf‘\\q','ù—ˆ]á9@äøñ\Z+Ây’ëÌU©Š÷ÊVè üI','',0,'?'),('¬Ö_Ê6¼“X»êåÉ)','wp-content/updraft/plugins-old/updraftplus/includes/Dropbox2/OAuth/Storage/Encrypter.php',0,'Š(¥+)Ù(âS O™g\\','Š(¥+)Ù(âS O™g\\','j1Vç\n8#‹Ø\Z\0ÆEÉO¤ð‹¤µ°Vx|>Ós','',0,'?'),('¬ò“ÚÍcæÐžˆ®ÂM','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CredentialError.php',0,'FY?°¢ƒøÊŠ1s/ƒ×','FY?°¢ƒøÊŠ1s/ƒ×','<ÂåølI¥ë³!/Ãæ{ÚK¡S|Ÿ’iû´Ê$Ï6…™','',0,'?'),('¬ósC<‰:ƒ†æ<ÎAÐ','wp-includes/sodium_compat/src/Core/SecretStream/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éëõé:ÇZ{ãðë5²o','ÁúÇ<å€så6´÷\0,	Raô­uhXðåcðØ×','',0,'?'),('¬úÙ»43Ô’=¦','wp-content/updraft/themes-old/twentynineteen/js/customize-preview.js',0,'X«‡ÿï 0LÖ<ŸE|s','X«‡ÿï 0LÖ<ŸE|s','	w°íëÎ{œpãdß¶«Lu5·>I¹ \rZß','',0,'?'),('¬úMŠEáLükÄõ™','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/AbstractJsonExceptionParser.php',0,'üÿR@={¯}QîVË{&\r','üÿR@={¯}QîVË{&\r','Ù0Éîá·ûü5ågÀü=Oeâœæ’°Aê§AÄò$ÃÐ','',0,'?'),('­Û$ØÍû3˜×—QŸ','wp-content/plugins/fusion-builder/inc/admin-screens/whatsnew.php',0,'µ-Ã†µAuÝ/š`Qó','µ-Ã†µAuÝ/š`Qó','6àl!»SÆýíúÓ¼+{ÂMæ«goµÒ=_ÝR','',0,'?'),('­w@¢@FÙú %¸ä”Ò','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ListContainersOptions.php',0,'ÃLüœp×¸ a‘OFw·#(','ÃLüœp×¸ a‘OFw·#(','x`Â½rÊ„´¹D»é‰YÝ•îß¾|¿yüÎ&','',0,'?'),('­Þd_8¬áD.T¤›À|','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/themecheck/checks/embedded.php',0,'JÏ0‰ý]·ÁDKÏ}','JÏ0‰ý]·ÁDKÏ}','dT Q$þÈu¸,Â4fÆú†òß¤ý0¦ßp‹s5\\íñ','',0,'?'),('­)[\"J¹H”î|çjkŠû$','wp-admin/js/customize-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®±ÿ’0Ø›É;q¨É','‰°¤[\'0yÖýÛÝWÝ¿xûßÍp™*-t-Idû','',0,'?'),('­*n+ZÄ”–ŠeLÖNrç','wp-content/plugins/worker/src/MWP/Worker/RequestStack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zq¿ìœÝ¦RÈ–™ÚG','5þÒðÝp3»~vß©É4’éßÃYùÔØÇw‚	Qö','',0,'?'),('­1®Õb €¸‡Ó7$û¦','wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/StatementInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kukÄ(sïKS|O¢¼«','Áæô ¾Á ¦YÄÍÈp[{Ïˆ[Q5Yîîf]UÌ	','',0,'?'),('­?FÏ¸½ë¼¥A†€R1Ê','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™p‹˜Ô¦d0ÄàlN&7+','^s\nù@G,¤Ú–\n;|3P	nÔ”/\rzAÝ\"\nd','',0,'?'),('­AåÞ*(5¿Ç$\"®°','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/themecheck/index.php',0,'i–³=Ÿí\0¥Œ!\\Õßÿ','i–³=Ÿí\0¥Œ!\\Õßÿ','AuÌƒµœÄ`ü9‰7}bŽ>MHêÃíJHhåûÎ|Fj','',0,'?'),('­JTV0D·îoTAï¼»@¡','wp-admin/options-discussion.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ëú~œvg«Ô3Ü˜à','²lAt;Œû#Tt_Øy\\S=ŠšÃø#:XÙ¥j·','',0,'?'),('­O³’qoÎÉ%9t­³','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Payer.php',0,'âZõôÆã½8aÖž','âZõôÆã½8aÖž','ÏJÆ(ÌD`|þ¢Ç1 *©\r÷^vHJ“éŠ)¯í°','',0,'?'),('­QÒ§ýôáœ€§c^ÅM','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/S3Exception.php',0,'DÑ\\Õ‹T÷wkclšJ','DÑ\\Õ‹T÷wkclšJ','Aøž)$ña°È¦k_\runµæ^\rJ•¿UÃysÓ)hP','',0,'?'),('­UD‰—ýý¶{xÂ¸›å','wp-content/themes/Divi/cloud/i18n/library/packs.php',0,'Rùº”†ØY®é¶Ò†>ªà','Rùº”†ØY®é¶Ò†>ªà','ñ[ÉˆËi\"‡f­ŸkÈ¨{ƒ™-Õ$¾bhàÏP§Pí','',0,'?'),('­aó¼¥gý+mÝ•Ö¦÷','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime239v3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$_ò†ÕÝ˜¥³¢Sé]Ú','QÞ31AqWèIXðˆB¿‰ž„Â9v;0KÛeÂ','',0,'?'),('­b–l	»-vr $éL°†8','wp-content/plugins/updraftplus/includes/Google/Cache/Memcache.php',0,'–S‘ÊG5ôäöÞËï}r+','–S‘ÊG5ôäöÞËï}r+','ÚÙßÁüt¼!{y‹	ˆ ]îÏbF6\0È¯ÚdyÈ¤—y','',0,'?'),('­kž$78Ø7û*W†Ð-9','wp-content/plugins/wordfence/js/date.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŒôÕj½P¾ERÐ_¯cÀ','€B=ëè0ÕdÆ©\"B‰tUc¨¹^1€>–q&ø','',0,'?'),('­oY»„{‘\"ôñå˜ñ','wp-content/plugins/wp-mail-smtp/src/Admin/DashboardWidget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{flÛ/ã>Þ8‡&+¦Õ¼)','É*]jî¤«}zÒ?ðÔÍ¯[-ÊrýéaR•5ü\\qË˜','',0,'?'),('­ƒÇ”ÉüXù¶1½Ö.M','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/upload-backups-modal.php',0,'¼c-/ƒ;ÆxÍæÁ‡&','¼c-/ƒ;ÆxÍæÁ‡&','¢Üýã,/rÉ+E¾RûrüEé’iæØ4 ‡ëŒÖ,°`\0','',0,'?'),('­‡‹‚Sà8MßC‰¤>ëÇ','wp-includes/js/dist/block-serialization-default-parser.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ëñø£:Îå	½æ¬Á',')24¸Na²KÌ-°éóùdµEòÎýÊ‚	¢é€','',0,'?'),('­eQ‰±Mg1áb7I$','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/BucketStyleListener.php',0,'p\"Ã+›ˆüÌo6°xŸÊ	','p\"Ã+›ˆüÌo6°xŸÊ	','.Gt=yŒ¯›¦DŸ¶¹ŸèÌÿ\Z×öŸÀB<ä','',0,'?'),('­š•SÇhÞëáSÐ%Tzø','wp-includes/js/mediaelement/wp-mediaelement.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ô%/NqORågûÀ+\\í','F}\Z\nåõêv†nò²`¥çZ!¶T‡®WŒ°™Ïs','',0,'?'),('­´),ÈÿHè•Š1£ìD','wp-content/plugins/duplicate-post/js/dist/duplicate-post-strings-430.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nÔŸùû£QD“ÌÁeêÊ·€','ùþ5)~‹ÅÖ[P•@:Y§)j×Ào®õÆ1ÅN‘e5','',0,'?'),('­¶ÙìÄµíÊímQzIêW','wp-content/updraft/themes-old/twentyseventeen/single.php',0,'…Z{6c»ÎvÐƒ\\©ô,','…Z{6c»ÎvÐƒ\\©ô,','®>}Oóö_»¹§	¶×Ý+ÔÅ}?êtøsW€][ìÒ:î','',0,'?'),('­¶àf›ÇèGMc®ùå<','wp-content/plugins/wp-mail-smtp/assets/js/vendor/jquery.matchHeight.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤µ€åöYší<bÿ¡ÁFö;','‘ôßÿ¸ÐÏGr/ÝµW]#YgV¦\Zè\naLŽ‰“kÔ','',0,'?'),('­¸‡ÜWcRR[ÎzpoÆÅ¸','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/AcquireLeaseResult.php',0,'›l¡#¥\ré‰Ì3«¡«°','›l¡#¥\ré‰Ì3«¡«°','‹¢0RÐ0ÅØEõ†K}Ì*£JŠ½2¹°U™;ÿˆÂÈ','',0,'?'),('­ÄæH/¤%¢,/žà6¼','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiProxy.php',0,'æÚŠ¯I¼_–\rÊtWû0‰','æÚŠ¯I¼_–\rÊtWû0‰','ò3LCÅŠŸ&Q\0Ñ27ù,ÞƒÌê´»Ÿ¯\ZSÔ]','',0,'?'),('­Ë ÿ$^S] Ë¹ä(s}','wp-content/plugins/fusion-builder/js/views/view-generator-elements.js',0,'”Üº™Q9i	\ZqOü¦Óål','”Üº™Q9i	\ZqOü¦Óål','Q™*Q·Tèqtú§·îš‘hO“ÒîÖ¸x”+Ák1','',0,'?'),('­ÌÝ\"Ü’³÷ÓÃnzD','wp-includes/SimplePie/Caption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜŠ×Ñy’uŒD\rÂ£¬','\'ËW1Q½5[Û‹ë)¿Â\r´8Û5:òê?*)K','',0,'?'),('­ÖâÓ óÝQª±ŸVÕªô','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/PeclUriTemplate.php',0,'‹ÅO »ßqYí÷Ysï½i™','‹ÅO »ßqYí÷Ysï½i™','cyÛ«œé8ù— O_ø×O>YÔõ¶ˆ¯Â§s{%','',0,'?'),('­ÜË‹Ý_o!\'Úuœáør','wp-content/plugins/wordfence/views/common/page-tabbar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qèØÂVdÐŒX@q›È™ÍÄ','SþüÐØªAäéàÓ¤Ë@5°úÇò|ˆ~ú?KBK9U','',0,'?'),('­áRÂÛŒyfÂºÜbçjV','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/DownloadSyncBuilder.php',0,'D1È<¤—€¼H”À-¦Z','D1È<¤—€¼H”À-¦Z','Ø$ ·oKnèbñ½SŒº>wllñšÓ¨$3Í6\\','',0,'?'),('­âZ\nuÕoK° ¯¶T;e','wp-admin/images/list.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>–½*âÀÓ³ÑSñÃ','\\w«»T[…=°b­aCk©…ª;c£¶À','',0,'?'),('­íŠ;ËBL/Ã}|?X','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerJsonError.php',0,'²eÝ`o>éôÀº±®HLRU','²eÝ`o>éôÀº±®HLRU','Èù~Ö—AôzÖóIù-‚Í]ø:È¾§ÚE_h6h>Ú','',0,'?'),('­ùll¸„ƒxèL,7WÊNÛ','wp-content/plugins/wordfence/views/common/modal-prompt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0JÙ.H[|á—E3$d”','ˆ\ZÀz%ìªÃê;çå¯ú—o©nÐÞm&±ÕÊ÷µ¯Â','',0,'?'),('®4)tk‘l#†<ïÝUá','wp-includes/block-patterns/query-grid-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\æÀÉõ‡ãJÕBá<«˜','¹sAµ>ß{‡kÞ/PxYp*ù´„L×»è†ºÏ²½†','',0,'?'),('®éH‚\0‚›E·³È6„@','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RebuildError.php',0,'ÜÑ÷(M+Cmkž>B«Ùh','ÜÑ÷(M+Cmkž>B«Ùh','É7 ­Â	Äµx 1h’1$Éô].Ïæ-_Õâ\Z6','',0,'?'),('®˜9­Q¨–×lT¦q','wp-content/updraft/plugins-old/akismet/class.akismet-rest-api.php',0,'âº…º:KàŽÈ7&Z9Hc','âº…º:KàŽÈ7&Z9Hc','½*âFãÐ:®£Ã…=IH\'x“â\\\"ÃÐ\'‘³:','',0,'?'),('®ÌäUy/ÿ*%þåý;','wp-admin/includes/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nô&…$^ùÿ…‡ìrð7','•ö;ÁV]M+ÇO €ùÚV%FýG-”ÂþpùÁ¢\Z','',0,'?'),('®\rEöÈUÏœøÍ„ÞÙ','wp-includes/images/wpspin-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mS¬û¬ýÐÛy\"C‰ÄÒ','°½66S¯X¨£±¹þ±6O}É4>ˆp¾\"Ã ”\'1','',0,'?'),('®W«‡µPæ—ƒ^qðy€','wp-content/plugins/wordfence/lib/menu_firewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©œã5X¡ðP•úºK›¥','èSéÏPŠ…AŽ_ÇlñWý±2„•?#_\rQâx—','',0,'?'),('®‘[=Ú€ÂøÑžË`','wp-content/plugins/really-simple-ssl/assets/really-simple-plugins.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œqé\Z¢¢¹Òå²ÇV,ãj','ð‘!Tjy‹Ñ½7VËRQ®â›ì²§¿8ëD”´9”','',0,'?'),('®©Áö7?í„Ì/q–m.³','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/HistoryBatch.php',0,'bÊ¼æ:Ìû‹òåQ¶ös','bÊ¼æ:Ìû‹òåQ¶ös','²M#Ö%€–ûyß´º½ÊenY=ÕƒaË×çM','',0,'?'),('®*	¬R¦« »IŽÐUÂ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/RequestMediator.php',0,'\râáõQlW$©•Ò','\râáõQlW$©•Ò','×k|ÿ±zÓL\rÙ–)PGÝ URžßKÐEÁ*ÑÓj','',0,'?'),('®!\"°½ ¼Ø•Qå–¨ŽuÕ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobPropertiesResult.php',0,'±\rÕ©²Ø±ëÞgLon©²Ä','±\rÕ©²Ø±ëÞgLon©²Ä',')xÍévð·rÓ\râìç	\'÷/Z»5y\"°‡~Pòu','',0,'?'),('®(ºÛé|ç*Hš™SbQÀ','wp-content/plugins/instagram-feed/languages/instagram-feed-ru_RU.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºn÷ 1[a´×ÈÚa','Ô@`1œD*î¡~»-´îJÖÐÉO\nGWÕË','',0,'?'),('®1K/}\\ÛøÅ{±¬Á','wp-content/themes/Divi/epanel/theme-options-library/constants.php',0,'}B•¿\'Uß–Ó!ÕÍ®','}B•¿\'Uß–Ó!ÕÍ®','§¿ ¡Îj›Á}éöÞhY)Ø¾ámwA³x','',0,'?'),('®5YÀv]«†²0.¹','wp-content/plugins/updraftplus/methods/addon-not-yet-present.php',0,'0ž;ï£Øƒàxbº°M‡£','0ž;ï£Øƒàxbº°M‡£','ÊìÜÅQ6Ko4ö:7àÜ\n#ú5Ú‹÷¬¶þ<íÀ\r','',0,'?'),('®I‘Àiðè»¼›âí˜\Za','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Oauth/OauthPlugin.php',0,'_«›mA–B\r‘M‡%FùQä','_«›mA–B\r‘M‡%FùQä','§z²‘!˜.>ëÜ1ŒYHŒ™£Ýhù–ôµ€d²@—\Z','',0,'?'),('®NP†ý*z¥p¹ú—T^A','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/CacheInterface.php',0,'½Îˆ  ÿC¶rŽ«\Z±Ø`','½Îˆ  ÿC¶rŽ«\Z±Ø`','Ãá|ÃM­LÎý2¥~‡‚Ÿ­Ü¥@&Šb’çôÒº†','',0,'?'),('®P.›ŒSž\0§î‡}Kh','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/AbstractConfigLoader.php',0,'úÝ¢yi1–î+Æè^','úÝ¢yi1–î+Æè^','ì%\né„|_,‹¨JJiX/1Ðá	•¨ð2ªo¯@ë','',0,'?'),('®g¨Ú5j÷5ž¯T!ÚY','wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('®h/Í”žj—Cê¶\0æn','wp-admin/includes/class-plugin-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[”pTá0$ž˜¨±Þ.…','?ˆtßüD~#Í˜¢–/X˜#G/¡íæNf\\¥›ÍœgN','',0,'?'),('®iª¤óõž¾êƒv','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/FilterableService.php',0,'!ãÐuªðîÐÉõv','!ãÐuªðîÐÉõv','>jr÷Ú_^\"TÌyüN¶§mpd]m¦å\\Î\ZQP','',0,'?'),('®xˆWº‰2eöuvÔL','wp-includes/customize/class-wp-customize-background-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê{fÒ&›™E\\$òsXÔ','RÚv3úŸ¼¾~ÄÐ×ÞðÀÝ|.OôLŸtÐN`Ñ®Æ','',0,'?'),('®6« œ?á›^oï»#ý','wp-includes/sodium_compat/namespaced/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r-äeÅúör^©!ƒ~','…î`”ƒRélÔ¥Lzã?iÂÄACHÓóž®£Pyén','',0,'?'),('®€®\"Vv¸Îñÿ?K','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/AbstractHasDispatcher.php',0,'NgÚbÍ<¾‚±gñ…[ÿŽ','NgÚbÍ<¾‚±gñ…[ÿŽ','‘½\ZÎ#\'Ç“åøfÑ\nÔ	†i=£ˆ™¿”Š¸÷ºÀ','',0,'?'),('®ƒq}‹&¯1;ü3H\nDQ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/welcome/js/fusionredux-welcome-admin.js',0,'–¨µŸhR¼Bmóœ[“ìÆ©','–¨µŸhR¼Bmóœ[“ìÆ©','_˜\nE¦×±\Zr‚£K\n’\ZBøÄ\r®ñ5‚¦—ŽÈ„','',0,'?'),('®‹­˜#SÿVäºõÕº','wp-content/plugins/updraftplus/includes/Google/Http/MediaFileUpload.php',0,'7·gm€)0¬ìžïUî•','7·gm€)0¬ìžïUî•','òZ]ÅÂT±V‘{ºã!í?u’`íägD&L¤Àœ&','',0,'?'),('®NìcžaêëM`QîÖ³','wp-content/plugins/updraftplus/includes/updraftplus-admin-common.js',0,'”q@RØÑi>š{DH©','”q@RØÑi>š{DH©','™N‰Tr§,u	@±ØÎ%ÒÄ6§Z\rbÏ)÷šïÚ <ÿ ','',0,'?'),('®‚R	¿(¼,	!)ÎZ','wp-content/plugins/wordfence/waf/pomo/mo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D‰œ6ûæ~.’ÅçSì[','°Æ\\\'÷_Fî uæC)CR\"(C¹OÛYWÏ!žÈ)','',0,'?'),('®˜ÚÖ_ÜªË\nîÍà[','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Pubsub.php',0,'±‘~šñëûÊÄèpc','±‘~šñëûÊÄèpc','ˆ&\0\'XŸÜ`?oe‡áŠ,<Ü2¥	æò¨²éYÑÉªÂ','',0,'?'),('®žÓÑËÁº¬oÌ¼ÂîÇ','wp-content/updraft/plugins-old/updraftplus/central/bootstrap.php',0,'ÈáŒy±’ªŠ=‘Ol|','ÈáŒy±’ªŠ=‘Ol|','C¨šéœ‡ÐöÜ&ˆ‚³„‚£p|À³ƒ/ôÆ(% ','',0,'?'),('®Ÿ-”·HÄ¸Éoˆîú¾Î','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/last-step.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÁIíb’\\(Ïm?FÇmÏÛ','·ÓÐxQ[sy8ÝC;É+o©3¼óÇQ»\'ƒŸâz¼3','',0,'?'),('®§	¼[…Ò‘„d…NpC','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/BlobServiceOptions.php',0,',ÿÜ®)Ž×ëû÷åLÝj',',ÿÜ®)Ž×ëû÷åLÝj','æéYÂNí\\à÷IÌ@ÆC\'!ÈZ ÓöUï§ï$¡','',0,'?'),('®¨šƒÀôøóÝˆ3³+P\r','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Country.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','û”¸—,0Á§Z%É­æùš','íg^ô¹MµÉ©9=&*­M{°ÙXb»0*Óu“¹Ù','',0,'?'),('®­´øý&@pˆÓÎÆÉ—','wp-includes/js/dist/wordcount.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L6\'¸ê{Gíp(Ù\"(Ûís','‚Qì«Ì@æ¬GCŽ^#»‹^Š…o„¸PM,EÔ…^C\Z7','',0,'?'),('®µL<xÿª¯à^‘ƒ*Åç','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ResponseClassException.php',0,'ù$iÔMçrIa¨‡»&¦ù#','ù$iÔMçrIa¨‡»&¦ù#','æ I_ƒñÚY8ö;‘Ç‹Ìyâ¸Ì÷?ëÝ','',0,'?'),('®¶PâEGï˜ÔW[ëÂG	','wp-content/themes/Divi/includes/builder/images/library-global.svg',0,'ÆÝô:@Vo‚(6ìUÃ¨Â','ÆÝô:@Vo‚(6ìUÃ¨Â','uÞòknEîØ›†ÊñYôeµñ¶f4«jº6[ùWÝ','',0,'?'),('®»Î¦Hcñ^žâû°)','wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®†­ØÝâ\'á{=Íº','†–ïR¡¹³“÷Ç_fW{*3•Åê±ÅÝ”	±\"Ë/','',0,'?'),('®Äº‘­Ï¾;ðÍN½ãk','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/color/field_color.js',0,'ím©ã=¬ãÜO_6ð,','ím©ã=¬ãÜO_6ð,','Ùöy>RúÊ÷q™?±îµÉ¿«õB¤›˜…L\'ì\'&€','',0,'?'),('®ê!Q†¯ìº~°mÆÃ¡j','wp-content/plugins/updraftplus/includes/class-database-utility.php',0,'Ø’†oˆ þý^	èŸ•bñ','Ø’†oˆ þý^	èŸ•bñ','=ieöƒŒ6fœ<éBáÐysþÌ6~ìS¤$†D)ii','',0,'?'),('®ëþ§ªêâsp›Ðäeü','wp-admin/includes/class-wp-ms-sites-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù[IIÙ[ÞI#i”š','<ùC~š-.Œ\0ÅÈ9q¯\\—Ô}ê)ÄÏœ~÷[$','',0,'?'),('®öœ!¦ç½koÔR$pjø','wp-content/plugins/fusion-builder/js/fusion-builder.js',0,'qž½à[iº\"6Qô­ë©Š','qž½à[iº\"6Qô­ë©Š','š{pzâ¶u¯Ñ™§ÊuÀilÎ.&ª%tE¨·	ã)ü','',0,'?'),('®öº@PwÓyèÅÙ3‚Ks','wp-includes/blocks/site-tagline/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë‚1cë÷Z¬>»R øEJm','ˆ„U)ø}¢$EMb0mCTAª0\\pN2’O^ïŸ˜','',0,'?'),('®û	ýÓ­gÈ±!n‘P‡','wp-includes/IXR/class-IXR-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÇaœÈÃJ€}‘ž!ÅWÌÊ','Yw½à1æôv.£G3eñdå†¸Ã„¸­y`LR	]','',0,'?'),('®ü…Íü˜R£&M‚Æ9','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Http/HttpClient.php',0,'4Ê,ì3ýž~ÿ)Âzw\\ÎÊ','4Ê,ì3ýž~ÿ)Âzw\\ÎÊ','¤½J\ZFËMÀ-¼°Q•`ÌÓT½YÛm0×(˜åŒ¼','',0,'?'),('®ý+†CBö¢§0ÚØç >','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/honeycomb.php',0,'#¢ÏJ_«F,dÄ\rUK','#¢ÏJ_«F,dÄ\rUK','9œ¢Î±\0KÜ4žíÍÏHSÁî“‘úÂE}*@ú?D','',0,'?'),('®ý¬Êœ\\\"±âèz@*>Ô\Z','wp-includes/blocks/site-tagline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ2oH\"Ïµ8Œ¡ùî­zw ','‡†µÁühÂÚð¬9ßDï¾P\"ÚÝÏ‘ÂhfŸ¬f%¼','',0,'?'),('¯\0Û×G\0Ë¦±Lò—R','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistk163.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F56‘OZžÐ0„ëàe^','€&Âå<\"çñ¯PÊT\rÄé-CU¸Á²¸µ§o¿Ÿ-lË','',0,'?'),('¯\r,±ðg%gÍû½–ò‹','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect409k1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qf:R\0Üf]Xê{€äH','SŒpï;xèÉÚUÞûP•|L6\06=µí{òÎÉš×HÕy','',0,'?'),('¯>±±öÚîÞí\0}zs','wp-content/plugins/fusion-builder/inc/lib/assets/fonts/fontawesome/icons_pro.php',0,'?~‹äO@3HêFò¨.¤','?~‹äO@3HêFò¨.¤','„ô<Ç˜Ú¸ÜNbnn4ó“´Yú\ZÃŠðA0è/ð','',0,'?'),('¯\ni_¿a*„‰>½dnP','wp-includes/blocks/post-excerpt/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MÆ6¯%Ü}à:&fMèÆ','õ+$EÅkÒ­w°Ö\rS:ê|K>•_c¥\0=I<q','',0,'?'),('¯><ê€|©˜tEÐ»o','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Operation.php',0,'ò‚·ðEVËI¢¨Â%wFÕ','ò‚·ðEVËI¢¨Â%wFÕ','BTXÒTÞþh96ƒ\n¿rÎmÙ*>6JM_Lr·','',0,'?'),('¯-1ð8ü;§Tö/Xâ©]','wp-admin/ms-sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f3¹¥¿ˆ&S²©7F76çÁ','øˆÝ,ü$˜y¾n)R¶€Hg¥®„h{Ñ$×™UÐ','',0,'?'),('¯3—WxÕãniD‹ç’','wp-content/updraft/themes-old/twentynineteen/js/customize-controls.js',0,'°2ZÖP´s>öÄIôr','°2ZÖP´s>öÄIôr','EÙ0Rˆp4RRœ¶ÎÁb\\`’éŒþ‚¼a1&Ïg·´€¦«','',0,'?'),('¯4rðp$¨ù­íDËD0I]','wp-content/plugins/updraftplus/includes/handlebars/handlebars.runtime.min.js',0,'âàÎ¿¢åÆè¢aº&Ð','âàÎ¿¢åÆè¢aº&Ð','(t#¨ ]6ê.íëëÉ,ZZÿâ,©Öhà´Ž½]','',0,'?'),('¯=‹j\0Xmå€\ZŽ@ï','wp-content/updraft/themes-old/twentyseventeen/front-page.php',0,'‹(òÌ«ºã ç”5E‡âs„','‹(òÌ«ºã ç”5E‡âs„','ÅÒ3QÛÑ¡KÃÓ31‡0uùqh#”X4&alÛÂì','',0,'?'),('¯>h!t†¶[ˆRi“/','wp-content/plugins/updraftplus/includes/Google/Service/AdSense.php',0,'\n\'ÛX^«W>µG','\n\'ÛX^«W>µG','{ç,ò2ËÐÒ¢%†æ3ë¸ÞšåŒ/ƒfÀ\'.’ Ý','',0,'?'),('¯huÏOâ\n$xŸ:<„w,','wp-content/themes/Divi/includes/widgets/widget-about.php',0,'C¸$å<Õ\0ñb1Û\rj«','C¸$å<Õ\0ñb1Û\rj«','¯Ÿ$ôå\ròì§š%xr;âÖ¯*+u«ÍÊäwg','',0,'?'),('¯jÐ<M½Dd±—þî4m³','wp-admin/includes/ms-admin-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²Ãá;æÆ¼zÍg¶L’Ž¬','ŒÚtãMp²ØèQÝ8=Õâ~bwê¯áÄÇÁ/úø¥','',0,'?'),('¯n‰N¬¤µ¬%ÿ:]£,Ñ','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/lib/php72compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AGÒ\ZË¢;€¹Âù®­Œ‰l','ëD^èYÝöÚÍ\n­½¡´™%P+î0ö·[¤xË~Ì­','',0,'?'),('¯r×ùÈ tß>µX¯g„B','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~™’¢\rŠ/˜ìmîlÀ_','&¬ !-Žéo‚Ê×ÖýokÿøI*¿ãpŽœÓP$','',0,'?'),('¯|;®Ý×DªÿAs[“ÿê','wp-content/plugins/really-simple-ssl/grid/templates/progress-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±§<^0“Ô»™á5jˆ…','¬£¼™«iCÔnÿœo{lššrLïŽ|í\n(?U‰³ ','',0,'?'),('¯€tA-Þý»I\"á€&+œ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataDeleteError.php',0,'à	hI0ø9¡*wâ‡ËøQ','à	hI0ø9¡*wâ‡ËøQ','§ÍÂí‰IŒX¥a[T©-í¾ÆJ<6)‘‰ýË\'QaÌ','',0,'?'),('¯‚c\0ÒªÎ“8¥Io}Š','wp-content/themes/Divi/includes/builder/scripts/failure_notice.js',0,'_ê,Z-Mr„lW•]æN','_ê,Z-Mr„lW•]æN','—MöKb>Á†sÕ\ZÞ±,¼ÛM%6ú<r2„H','',0,'?'),('¯ŒË_1Ýè£ö8éà‹Í5','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNameError.php',0,',´7ÚfS\'®GŸ\'C–',',´7ÚfS\'®GŸ\'C–','µ$)CÉ:Ê¤œÿ \r· õîF…4@N=Ä¨ñ','',0,'?'),('¯Ó‡)<$\räª‘i:','wp-content/plugins/wp-mail-smtp/assets/images/providers/aws.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥çÕÇ¤×šÆÿKŽ‚¬}q','Yì\\‰c´+îŸ÷*9v“UßXƒk,”_4½Aròbü„','',0,'?'),('¯’ßK Ë(\\ì•¿Æ','wp-content/plugins/wp-mail-smtp/src/Admin/Pages/ControlTab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dá› ™R£–aÊ€\\ !\"—','¥ûªR™Ò‹‹S.? œ\n7ë8Q‚­ÂÙýrX^GŽ3','',0,'?'),('¯²G\'‘È¶ àSÖÁ[','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ExponentialBackoffStrategy.php',0,'œbt­,pÄ7bTý´','œbt­,pÄ7bTý´',';4šœ’èàGI÷7Þð—CÈî-À–R}ãø29','',0,'?'),('¯³—rÄ82¹I†{±í_:','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ExpiringCache.php',0,'Ù/V˜DS@,2~^Ô¡','Ù/V˜DS@,2~^Ô¡','ŠÏû²•rŽE\n¤ø(16È‡Û\\ƒá«:;£fg&I€s','',0,'?'),('¯¹±8ý†ªL·oÄömf~','wp-content/plugins/updraftplus/includes/Google/Service/Groupssettings.php',0,'\n-¸Ó‹GÏxÑ ume','\n-¸Ó‹GÏxÑ ume','ÒÜf(%U;¶3ÕqºŽ‚ý_Laª}²v¥|hc','',0,'?'),('¯ÇöqS´ÙŽöEçº','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ja.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`€\rŒJúÇ…Hì}¡äÒð','Ü‘¬ƒ—â˜W>\ZKZ\06æÂ\'9~ÑöìLºÁMc.','',0,'?'),('¯ÌWjÙgíùD„~4égà','wp-content/plugins/fusion-builder/inc/shortcodes.php',0,'ß=ŽüÂÇ´úÈ\\ç§','ß=ŽüÂÇ´úÈ\\ç§','eŽpF0<Tøs•Ÿý\r>D1à ×e»CPÐ','',0,'?'),('¯Î¡~×ß“þ:ýèàÂøeo','wp-content/plugins/wordfence/images/icons/tick128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åÄŸ‹øc·h4\"èÝ«','ÖÒû²çV“ø}X e~G[C©å³†¶ã5›²¥Š±ï','',0,'?'),('¯Ö‰J\'w¬Ó»Öâ¾\"','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.touchSwipe.js',0,'@C‚B¸Œ£ÞÌ8ð­Ð£','@C‚B¸Œ£ÞÌ8ð­Ð£','!tô\'ÞÀáë¡ºÚûþ¾Œë˜ñ¿ƒ,î†•×Î™Ç','',0,'?'),('¯Ùç&šÚ)oÁ>_zg½¹Z','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/Raw.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Ý”6¤\Zª†ï ø7S¦','T¤ åŸ¦d«ºÑ¢²GÄ9>@ÿÐú‚.È%ºÏ\Z­-Æ','',0,'?'),('¯ÜÏæå(è§¨:pRß/','wp-includes/class-walker-nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“¾‘ÿ>™d}Y¼zcld','óZ\"P`Âè\'hˆ`ö£LkìËã¿Ì¼²G±~M¼Jô','',0,'?'),('¯ïÎRcÿY¾h§;V¯Œ','wp-content/themes/Divi/includes/builder/module/settings/migration/IconManager.php',0,'÷\'{ïx%qô“.¶<×~','÷\'{ïx%qô“.¶<×~','ç{ïr:×mØ¸ rF{Ë3GØ¦ÊmÕñÍÕoe','',0,'?'),('¯ð‹(5ìaH­yo,Xþ','wp-includes/js/jquery/ui/tabs.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Áa`|¤ú^(=`ÆÛhv','LË.X_	²DJÀ£tkü—H©ë!|¿äÝ”JðÚx','',0,'?'),('°	$úBj+™z^Ø$íÄ¿¯','wp-content/plugins/wp-mail-smtp/assets/vue/img/sendinblue.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ€ï¦oçC/\'	gÌÌOD','lûÏ?ÚÒ|ËÍXbqVlF6iÓX@/ˆ0£­ñSä','',0,'?'),('°	%þØîª²R÷•{û	V','wp-content/plugins/wp-mail-smtp/assets/images/providers/smtp.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ã’ J¡ƒ	¸k÷è6','Ñj1†¹¹$¸ ·UÎD\n!çd1(«Ý}d»6','',0,'?'),('°/7›Ã±ãcxîÙpŸ–g','wp-content/plugins/wordfence/views/onboarding/fresh-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£ä¨n²,G·õ¬Ç*tïÌ','}êâ`‰Ú‰}à:2Îu€\rÀEÁEÜÃ\0æu/Ø…Þ²H¸','',0,'?'),('°/[x@J‹Ç-_ŒLÆ‰','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataUpdateError.php',0,'Ü;&Î³’e!xh>‰î','Ü;&Î³’e!xh>‰î','\ri\Z]ì\"ô÷÷zeb•wà<ƒæÀ¶Œ<\Z¬ZA','',0,'?'),('°¶Ú¥±^iç$âýå&','wp-content/plugins/wordfence/lib/wfCredentialsController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îZ Ë\0ˆ°”®Õ«w6Ž','7¯6¥ay¨5”?}%.]ÚÇûëÂØžuÏ«S¼','',0,'?'),('°!|ƒ\'ž%ôø¼ÎÍ\'%','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/AccessDeniedException.php',0,'ÁïÊÏš~3Dú@m°Ô”','ÁïÊÏš~3Dú@m°Ô”','\0ÁoñuåïÌŸ~ÂI©$6bÉ“¼S¦?C~Á','',0,'?'),('°$åÍ“™bHn®€,\0-','wp-includes/images/smilies/icon_confused.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/#	ÆÓ¢ww$xê¾“Y','U0Ö\\LóX¨ïfXÆ¦íG\0ÈTº÷$aÒ5UÌBÒ','',0,'?'),('°+œ8*//‘®I%Îø*?0','wp-content/updraft/themes-old/twentynineteen/postcss.config.js',0,'²xZªSYÎSÊm\"	‚Ša','²xZªSYÎSÊm\"	‚Ša','ÐUYX’}Žm‹\",Wê–9:Û¸Ö.áà·¦HoŠ\"ñ','',0,'?'),('°-¨ì·“ö·9ñExZ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xw÷¾•Tg¨ËA}Í\n','®k¡cQxúeôË³`=n6ÏX5y‚Þdz5u]WB\'','',0,'?'),('°7”®‰Ü¿ÜI‘™,,ì','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/UnsupportedOperationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')¹4\"êZ»³#iˆ\nó`','o•^c<º½~ý^/jlL?ktÅÔì	Ç6sÝC','',0,'?'),('°==“&+Dg±¢hì«','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/class-wizard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gþ…‚lìÈ¨\Z¡‹áJC>','c³§è€[¬‚ØÀ€Fß7u3qÂÞI¡güy„ ','',0,'?'),('°N‡ýZND”ÍN´>Y	','wp-includes/js/dist/components.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–°…£ý’ÙM®r1Q<V','Æ¸@.ú_ÒN¤õïì‡¤M‘¬ù©¸æ\\r2žÙÛ˜å','',0,'?'),('°\\, Žp4å»âÃT²‰','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultResponseParser.php',0,'O¤Àþj°jb‰wX3','O¤Àþj°jb‰wX3','•°Õ@»\"óæUšsûXìW5‡&qVŽèH†Oýr®','',0,'?'),('°\\˜B€EØšb-¥:','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/MSBLOB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñaw\Z;F~¨‘Î´sIUI','tŽVÖb706Šï£¬Lãgc%KÂÆh¿¼Êûã„ç','',0,'?'),('°nµ õ1u»ýlu2“','wp-content/plugins/worker/src/PHPSecLib/System/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('°v“áçðíÍH¡Ù²Vâðí','wp-content/plugins/worker/src/MWP/WordPress/Provider/Plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾¯]7æ	ârHIÓ˜>äph','¥Cù‹Šÿô—Ïtw9\Z¯™«µïäÔºKI0)a','',0,'?'),('°{4´.„´’”£µ#˜#','wp-content/plugins/wordfence/modules/login-security/classes/controller/support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' B<Á<ŠúLUç:uUn','“ZÐ†ƒó\\ñ@@“G›ýP¥è‰#=|‡\'k4®ö','',0,'?'),('°~ŒÅN\0¡×zïS3ÑÎ%','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/CachingEntityBody.php',0,'UÈ\nfvQ_x%›‡cÄü','UÈ\nfvQ_x%›‡cÄü','gd°V÷—W8H8-\0Eì’ô<#’{Î[?x\n¢”–','',0,'?'),('°Ü°ÁÛø¾ò_~·h	sc','wp-includes/blocks/spacer/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦ƒ	@-ÅÜßK$_Ó¯p£','ØD¯\Zìeî(¿kr£ Œ¢Ÿl0 uš[Iya/Î/¶H','',0,'?'),('°½[pq\Zƒð\r*ˆqŸä','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-modal-preview.php',0,'CÛ?ºR1\'‘“T Ur','CÛ?ºR1\'‘“T Ur','4u/Š¿„³2Içn‡.’Îé°¸ˆ$\Zß,ñ·6','',0,'?'),('°ƒ±¯ö™ÒŽçÊ‘_¾í','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticExtension.php',0,'w`Ì•~‘¾?P 3\Z¬','w`Ì•~‘¾?P 3\Z¬','q°Wú:Ä[³WÈM°5îJnDoRqdTê·Ë›¢J','',0,'?'),('°…; \nKLóe‚Ð\\ôù­ç','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/IamException.php',0,'6M$|6e]UÁ¯Å›ª\r*','6M$|6e]UÁ¯Å›ª\r*','icÊ:¤®Q[\rG!â¶¬ÏU¹ZçÿBQåôà<¼šs','',0,'?'),('°Œ_Ü¼‹ú‰iJçÿdå¤\"','wp-includes/blocks/heading/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÝÕëçyø¹<ß(ÕEÌ¨','\rU„ÐtJÖ`†g04	n²ÈÕžFíLZ³‘ö','',0,'?'),('°›RÐÚP¾È¯B\"2Ñ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/DroppingStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…×q9×Ïqcf	¤¬€','o}k•]u*¤°»»#=eöÎÜ¢\\Oô~È˜Á5¤H','',0,'?'),('°§EnÜ‘ÚŸƒWDÁ\'Äû','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataError.php',0,'>ë”ò‚1}n»afZc´(','>ë”ò‚1}n»afZc´(','ªõÀy&Û<CÒýÖÖ†7bÇ§é½i	…7—*!b','',0,'?'),('°«R`ˆ˜Çd$·#¬†\\','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetWebhook.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚»Äv4¢ñC˜+g÷R','{RÛê˜^»MÙ÷vïÑ¢æ37ßíXüùgQ®~Ù','',0,'?'),('°°}øBØ ãqÿ_ïûN^u','wp-content/plugins/updraftplus/vendor/symfony/process/Exception/ExceptionInterface.php',0,'r:F¹J!ÉyÉÏè]å\n','r:F¹J!ÉyÉÏè]å\n','…ög½•Ðó˜&mnœYç\'ô~Ãö:æ) 4.Ûk','',0,'?'),('°ÕdÛû·êSð\'DNYØñ','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-updater.php',0,'w§„ÒÆ`ãÙŒæ+_—','w§„ÒÆ`ãÙŒæ+_—','†öüÄ¦sRâm+¾ ô‘ÉÏæ˜EÓì“õ• ãa÷¢','',0,'?'),('°ØÄc:€¾@­Œ(V* ','wp-content/themes/Divi/core/admin/fonts/fontawesome/fa-solid-900.svg',0,'fMã“-Ö)KŠŒ\rÛËLa','fMã“-Ö)KŠŒ\rÛËLa','ž™í™ à9>inÊ(­ŒÝô?íÑqEÞŽhW³)Ã','',0,'?'),('°Ùv\'j@Ô-Ìÿ²*','wp-includes/widgets/class-wp-widget-media-gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7_^\\fSÉ‰ý]6n#\Z','>×@Î¡D§„æ&ÛüŽã{õ(ºýDÎ³Ïäðßi¬O#','',0,'?'),('°Ü-Î°_µñyÜ]A$á','wp-content/themes/Divi/core/code-snippets/app/store/code-snippets-library/computed.js',0,'(	£4çîÇÖ3,5 ÕÌ','(	£4çîÇÖ3,5 ÕÌ','²ÍˆÙ\"Î~n,€\rBO²ìÊmê8-›Ÿ3Œ•7p','',0,'?'),('°ë¹ñ‘XµøÆ-ŒOf','wp-includes/blocks/nextpage/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹5†¤­Ú‰dÎþ2,þ','8	‘:Ú	D+á‚\"d”Ëöš›sWô™\0\Z²½ƒÌžë','',0,'?'),('°ï&Ïõ NÜRºßüL','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/SamplingHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L>“kú’C¦öú;Pùg','€abh¿¼Tê·ýQœ%vz™ÃÁuŠ×µÏibü¨','',0,'?'),('°÷]ßòî9Q–oÆÇæ.\nO','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/CatalogService.php',0,'_7:-UMkJÃªeŸ','_7:-UMkJÃªeŸ',':Acý\0ë„ºÜ>ù€Ô +Ú)º#8ÁóŽ9Ie','',0,'?'),('°þO©öüÇk{¦UÞñ|ð','wp-content/plugins/fusion-builder/shortcodes/fusion-dropcap.php',0,'7˜œXÀL>ëOv¥K','7˜œXÀL>ëOv¥K','[ˆæ»Åa©I\róþVy*xy` ißØe:wîjùŸ©.mæ','',0,'?'),('±Íbµ´šaBˆÕ','wp-content/plugins/instagram-feed/inc/class-sb-instagram-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0ž]ˆ\n¥V§:c£K','j‰i»‘ŒåØ”°u>F—kNI,ËðS–ê07ìHÏ.‡ÿ','',0,'?'),('±\n]Egƒ·Ë7Oq¹bèä','wp-includes/sitemaps/class-wp-sitemaps-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯·„˜ÂGåäóoƒ\n³>','>Ž\0©Bî‡[ñçZ’´>ÇpØÞòa0~5kà[ÛGž','',0,'?'),('±ý÷ªn¬›jçøPú+…©','wp-admin/includes/class-custom-image-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒåÖÂ[Þµ*1%•†q¦','ÓHS¹- Ï\'¢Ã3àø6}Þ¬^ý©ÎWíy|¢‘','',0,'?'),('±öþ\n%ÎÜÌ½5ê¢Šóô','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/PermanentRedirectException.php',0,'aÂFN‘¡³1<ËÞn¢','aÂFN‘¡³1<ËÞn¢','Z¬ñÿÃhŽ+QàÂÛ‘æÏÅ£q<ÓÏRÎÈÝõ0¬','',0,'?'),('±iƒÌˆÈ`Ÿ”V‰À é','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/ServiceManagementSettings.php',0,'/™¸®–ËGÎéîÃ‘É','/™¸®–ËGÎéîÃ‘É','(–|cãð{Á\nØˆ=åíýf˜ð<_Ò\'Iˆzvz¹ö','',0,'?'),('±\ZÖè†˜ˆ¹Bi/6ø','wp-includes/js/jquery/ui/effect-clip.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']02[W0V1ÈQ','Ï|¿JR?ì]Ï­Ìº\\TŠv‹›î òÕ5t°šºŸ$','',0,'?'),('±!+’?à:×ã]cÛ~','wp-content/themes/Divi/includes/builder/scripts/roles_admin.js',0,'ìc§Fn	êhàŸ#ñˆ›,','ìc§Fn	êhàŸ#ñˆ›,','3ÕjÆw½‹ã¬ûT7\Z…jéûî:úÿ!þKaÃ£•','',0,'?'),('±&g••©EÞì€\" ?\'€@','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php',0,'ßqÓÅQ:ÖŠ3ëŸrôƒ','ßqÓÅQ:ÖŠ3ëŸrôƒ','qþÕÔµ™\n«v ZçgÑBz«œ?-ð)‚á5[Pz','',0,'?'),('±0›zŸ%*ÃÉ/±J¢6y½','wp-content/updraft/plugins-old/updraftplus/central/modules/plugin.php',0,'1 wsËÏyï¥Ì-–çªŠ','1 wsËÏyï¥Ì-–çªŠ','„D4Âõ¨×}¢ÃÍì¸ŠøðöÐÕwØ }îXIþwG','',0,'?'),('±8u7Éh@jxå\"€5','wp-includes/class-wp-block-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÒfWðŒÞ¬ªQ„G¹·<4','Ô¥? CZÃ¦™Ôò\Zº+J4|÷€üØdÐFß¾oü','',0,'?'),('±Fkl¢#ŠÁ³6¬\Zä','wp-content/themes/Divi/includes/functions/installation.php',0,'‘âzØ\'PW±[mßáÆ{ª','‘âzØ\'PW±[mßáÆ{ª','$?Zæôü‹ÏK3øþ—}Ê×J`¾ËªóP>¿šñ0¦','',0,'?'),('±LE¬‰$ÄMDMÙ8ŽŽL','wp-content/plugins/fusion-builder/shortcodes/fusion-chart.php',0,'/WœÂ6\\Ìæ	 Š_','/WœÂ6\\Ìæ	 Š_','b‹>!+\\Ú	‡\"¾m„hÒO˜k,.(ÊÆ[ÖöG›','',0,'?'),('±Lƒ’…yEõ{¦øf“','wp-includes/css/dashicons.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ökõ†áUºÐ¾Ø3ø','|¼38·9&ÎšGñ\"#Ì\0Ì ÆË;·ù¿e˜R©','',0,'?'),('±gÚbf\r\ZÿîÑŠæÿ','wp-includes/blocks/rss/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß3:&[¯­ó¿µºÍ=#™','AZagÛì‰‡ðŸK\"Ž]&“\0þ+²¾Í','',0,'?'),('±kÊULŸíÇ¡¹$Á˜ú','wp-admin/ms-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â³u~]*CÌu«\0ü','eës}kÒ_¾¾q}¹þ§~G•¸§[§5ßQŸuí!™','',0,'?'),('±rn™`	mª¡$\0‘ÏV','wp-includes/blocks/media-text/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A:dÓ\r†§íG­ÕK‰','1sšÁ×crGHRàV[‚s_Ãró»¾ï > ','',0,'?'),('±xi³‰ãàió%pMÎœ6@','wp-content/themes/Divi/index.php',0,'IÊ_Æ6SLÞb‘ÍøZ¾\nÍ','IÊ_Æ6SLÞb‘ÍøZ¾\nÍ','ä¢ú›ƒƒø×û<*—DØöÞ“Ù|ûÎ?ßX¿&','',0,'?'),('±ü‘æB‡œ6IÞ£ü¢X','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/advanced/site-info.php',0,'È}†¤íQÅÏ¬\ZÝ\r¿ü','È}†¤íQÅÏ¬\ZÝ\r¿ü','š‹P8ñ4óójÿq\"¥\"5Šr³u÷â[Ø¹»Yw','',0,'?'),('±‚î™an†ƒ^> ‹†RŽý','wp-content/updraft/themes-old/twentytwenty/template-parts/content.php',0,'OÆÏ¿]ìa0éÄ8ìqÌð','OÆÏ¿]ìa0éÄ8ìqÌð','µ‹‚°å«Òu™’o×‘]új’„Ý¯Çô|ˆ§¦lÞŸ†Wü','',0,'?'),('±†±¹SÓñO„ÄÂdÏý','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidRangeException.php',0,'˜ÏÕÍ5™Î †ÌúPDq2','˜ÏÕÍ5™Î †ÌúPDq2','ÖvUÄ|ÖÈd’åÁO­§@0P3·Þ[>ýÒäRó','',0,'?'),('±‡~-FAð&+€¦-¦Ø?','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/AwsClientInterface.php',0,'µTžR]Aˆ@»+4çœg','µTžR]Aˆ@»+4çœg','}ø,0ÝçH˜UÝŠE¢¯euÝñŸÏÈVÑ;wòGÍþª','',0,'?'),('±Š2~=¾¯¾‡Ëñ(-','wp-content/plugins/wp-mail-smtp/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’þy±GÖMú!ex9ÉÙ','Å!ZgbZå˜ô“¯FZ¢›Ñzƒšãï|±YEÍ	ŒªÀ','',0,'?'),('±‹=·-XÔn{]·pf','wp-includes/js/wp-embed-template.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´lq3UNÊ:ã9Î:^EàÊ','3RìXà«oâÿ¹È}Q ·PäÛb·ï›™ÎÑÍJ·»','',0,'?'),('±‹weÖöi!<º¡súy\n','wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øh8¥FK¥3EqŸsù å','Ñ0T›û—E÷Va~\'55h4‘ÁoÕžˆ{MÉ±Ëð\'','',0,'?'),('±‹Õq\Z1BG©9;¹;ï¡','wp-content/themes/Divi/core/components/post/Type.php',0,'ÖÎ©…oáæ¬vôöƒ.ëŸ','ÖÎ©…oáæ¬vôöƒ.ëŸ','¼¥ò«ôû·º‘í\rŽ óÖåUÖ\\nÖý0UÎLÕP','',0,'?'),('±–ÀEÐ¹ÄŸü|}s0á*','wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/MultipartBody.php',0,'¢#š™âÜre¬0¢ÄÀ','¢#š™âÜre¬0¢ÄÀ','+²0ìØµDÑ`Ù[­!<“5C{\r`ŸÁMÌYÀÏô','',0,'?'),('±—«Âû‚Ûw6Uu%¦À','wp-includes/js/dist/vendor/wp-polyfill-element-closest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<jÌð™ ¿<YtŒ#ô&','yNOBÓ»×]&6‚MÜ-½„J’ä.ŠŽ·ó¹:.µ{','',0,'?'),('±šÄfSu¹BìÍ¥?^yO','wp-admin/css/themes.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯«Œsÿ%=@+Ëà{)Ž|','ñ¬$%N».%MxªÁ‚”ÇûW}ÃX¶)2W ','',0,'?'),('±ž]ýp\"~LØJ«’','wp-content/themes/Divi/includes/builder/feature/gutenberg/blocks/Layout.php',0,'Pu#2b$¹æwú‚’M*','Pu#2b$¹æwú‚’M*','²oà6·a½ÊË—ÏÎíà5r\\…®«ýU³kŒ','',0,'?'),('±¤%p[øNìÚËòhÕÙ©[','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_az.js',0,' §‡¡á4:å€¤V®\"Ù',' §‡¡á4:å€¤V®\"Ù','ÓIQqT×ë-lú‹søaû¡ÙÂ²×ú¡Q#jÄŠæ','',0,'?'),('±§ƒØðÐ¾Â‡À.Œ…˜k','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/RsaSha1.php',0,'s¸§û¸×	×µõFóa®>Ô','s¸§û¸×	×µõFóa®>Ô','q« .>ü»”»›–\0åÔÜ‚Ä·ã+·óq™ÒM4W“','',0,'?'),('±§©Ù{^Ž†WÈíèóC±','wp-admin/css/colors/ocean/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õe2-â2ÿ0{`ÈXÖ','3¢!©VGÆÃ×““A3\\KûáËaý»”‹+','',0,'?'),('±§½(˜ùÑæòs…Ô7îæ','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/Blob.php',0,'t‘,6ÙoÕìè@¸Gé¼™]','t‘,6ÙoÕìè@¸Gé¼™]','¸¾P5Kˆe—¼m‹¦ljüŽÒRï\Z3ÜM9‹Ö¡’g‰Åˆ','',0,'?'),('±¼cëëóÓäö•íêàx¼','wp-content/themes/Divi/includes/builder/module/field/display-conditions/CartContents.php',0,'m£±›Ä8_ú^B% Ðx','m£±›Ä8_ú^B% Ðx',' È-¤ghHô$£úóžyvâD!¾=åÜ¦ût¼¨ßôª','',0,'?'),('±ÆÃ‡ú‰JV´W]I¢','wp-includes/blocks/table/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?þíChÜãÙê¼¬2h','ú „± ‰˜¡éô™éE¡\0?¥}!9ØºÆ\'eÃéýC}i','',0,'?'),('±È9ê¶M¾¥\'HN´','wp-content/plugins/worker/src/MWP/Progress/CurlCallbackInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SÁXoé>YÖ>R…R8ö','(OvõØ>¦Àà»¬áî-@\'œÀKøÁ…wWf~\\|‘','',0,'?'),('±ÏMœœOü^Ð¾ÌÑ¡á','wp-content/updraft/themes-old/twentysixteen/archive.php',0,'*gø•Ð!ïÓN·B§ú\n','*gø•Ð!ïÓN·B§ú\n','Ä\rVóoìg¤æ˜ßÀuƒÃì¡D!—¤rbR›ž','',0,'?'),('±ØD‡Ë¼É\'œiQI','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php',0,'ßqÓÅQ:ÖŠ3ëŸrôƒ','ßqÓÅQ:ÖŠ3ëŸrôƒ','qþÕÔµ™\n«v ZçgÑBz«œ?-ð)‚á5[Pz','',0,'?'),('±ð$[ßûÜtCÅ¤Iw','wp-includes/sodium_compat/src/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µWø	˜å,¤â÷~r ','L>ø¡£e¡€¡€º‰hý\rF$ûC¿V¡·°¨“·7„','',0,'?'),('±úvZV¹ÆkfIHŸfW','wp-content/themes/Divi/includes/builder/plugin-compat/wp-smush-pro.php',0,'™×‹=|‘lôÛdÜ¡','™×‹=|‘lôÛdÜ¡','¼»ë>qwA¤Wª³×Í~Eú-¸Í€²æ|¯+','',0,'?'),('²;6^ûüÖON^[','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/AbstractWaiter.php',0,'çÏý`ÆÃõ4ôˆÙC','çÏý`ÆÃõ4ôˆÙC','T‹ÔñT^Š.ÿÔ!#bäPãúòârÙ\\cÂŽ0áñÐ8','',0,'?'),('²’»Í76-Âü/xÓ)54','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ç1Ö\n÷*(~½F¼¼','*@$e5²WìJšÇ¸2KµàÙíðq§‚	Ñ<î~','',0,'?'),('²¤{¡‡\"`¸çî[(Œ³','wp-content/plugins/updraftplus/includes/Google/Service/Container.php',0,'U\"ïLºÖž;s¨§ï©','U\"ïLºÖž;s¨§ï©',':\0ìÛORÊQZ\'vYv;ˆ`·ô´^¨J™û)r¥\r','',0,'?'),('²m5¼âuÎÍ1}Ø','wp-includes/css/dist/block-library/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­àêäÎWdU \ZXSnÉp','Áz1!\"f“ô*-ST	N”.Þ÷(å\0Zÿ€º\rd¾É','',0,'?'),('²ænYs‘‹•é\0ï1.ô','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/HipChatHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í®Ó„á±¼º¼/mQÊ«','SdvK3$Á“<±lhÓQÒô|’‰óÑîÅ»G5¿f¨W÷','',0,'?'),('²ü&B°5VëAUU,“ì','wp-includes/class-wp-http-cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`=Y=·È3€ÖÉp*³’¸','ån×<o¹á%Ž/•U\"yƒ\"žÈé)ãÓ¿„èBê','',0,'?'),('² ªH÷¼ÒÜ³ªâ	½¼','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Account.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å•äè#.T“pŒŽ	','ÐLìnïÚ\'?’’NÐ”—	ÈØ#µtú»è%ÞBÉš|','',0,'?'),('²\"ÇJcIGPj\"T û¬','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/info/field_info.php',0,'–jDM³†sÂU','–jDM³†sÂU','4Z+Ÿ¸ðñ)Ôc.Ëx,÷Ï‚¿áœÚú\nlP\04Œáž','',0,'?'),('²*û\0ƒ¾RšÇÜ5','wp-content/plugins/wp-mail-smtp/assets/js/connect.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m7t‹&§n¼‰0d•Š*','W@õªeTò˜(Û;êAé\0å\\rä.û%—ßÔù','',0,'?'),('²1AëâbÈ±‰â8£”EN','wp-includes/blocks/group/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡UÅÝBß	‹±£?îw\"','Íú–Lî«‰ÆÖ¿“)šJä×ŸÍ¬LÏÑÑ´C [×','',0,'?'),('²1ï¶óæªèm2¬·U','wp-content/updraft/plugins-old/updraftplus/includes/Google/Auth/Exception.php',0,'(^…ïA+ ¡–óëCr¶¦','(^…ïA+ ¡–óëCr¶¦','of¯ú­‰ƒ·#+{0 ¢ª_06ð¬hY¾ßTZ5NÉ6','',0,'?'),('²=‚Ö5^Là§ð\n-[','wp-content/plugins/contact-form-7/includes/form-tags-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊØcÌM™XÞËµÏð:½òz','ÈsÀ\\‘ùß·Y^6\'\nSW	A’ó3“ôÐ6ó¸R','',0,'?'),('²F@›d……oQ/«[oÁ','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-testimonials-preview.php',0,'”\\¨íï){¥g+ÀrV3Z','”\\¨íï){¥g+ÀrV3Z','lk15î‰<„ª«9Ì.ÂÀ\0©`’ð¢[d—àçj','',0,'?'),('²KÐ®¯”Žð­pîÉ ','wp-content/plugins/really-simple-ssl/lets-encrypt/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ãç0¢à®±ÕTMÝ','vTË‰­×0\0è‹bg L%±Ì÷JY4dÀ´œ»','',0,'?'),('²QýgMK”ëÿ)\rµTmü','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/date/field_date.min.js',0,'´e…Kó÷­~LLâ^BØ','´e…Kó÷­~LLâ^BØ','²	@Ü¬0@µôrnünÅ×ÈTvcòÖ5ráÇ†A1‹øz\"','',0,'?'),('²TËY¨›m=šå¿\"','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Hash.php',0,'ôÃ’Qõ.¢ÉË	¶4Òìdí','ôÃ’Qõ.¢ÉË	¶4Òìdí','…£61d	\"q$BÅ”˜SxñýÑË½ßVÿ\Zòº$)n','',0,'?'),('²U¤?B0gÇPÌëT¼','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/email_not_empty/validation_email_not_empty.php',0,'Ujff×Â·ö­ô)U}¡™','Ujff×Â·ö­ô)U}¡™','µ?ø•ƒÝíXÎ]aÒxåüìX|ç¬c6\'áß8¸m','',0,'?'),('²^7Êû}$)‹t4BW©','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/Grant.php',0,'œPýkrË\\âÿ¸ª‘Üšã','œPýkrË\\âÿ¸ª‘Üšã','¾Æ2¹¸§!›+ôÂ€q9&ÍNùÜq&ƒÂ°È\ZµÎZ','',0,'?'),('²^Ææ•¦Yš²Óñ?/f','wp-content/plugins/worker/publickeys/partner10.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N{ãJ\\†ú‰QtMÐ','ïc­<KÔövæ©÷“Ð¬È­3˜&;e¸\r·í','',0,'?'),('²_fôç²;wÐaËÙÚ±','wp-includes/js/tinymce/skins/wordpress/images/gallery.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡_±ŸŒPwù´PUÛ4','<W~…îáØ¶¡Ç+ÑhNŒé„9ç×ú1Ì_°3Õw‹s','',0,'?'),('²`­8G5§\næPøøå•','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamInterface.php',0,'Ý2,øANÿøëS¼[','Ý2,øANÿøëS¼[','%¯gÚÕtóéš†lpXIÑ¥I@CÌ²™“¾ó¥r','',0,'?'),('²oC4K\"ì¤ŸÒ©*C\0†','wp-content/themes/Divi/includes/builder/module/helpers/motion/Sanitizer.php',0,'ÃÎ»Fþ{nÝz]ìaÆH','ÃÎ»Fþ{nÝz]ìaÆH','h¨fÐó»ZsZ¾ß³Ÿi‚\rmFŸÒhèí°†õ®Íq˜','',0,'?'),('²s6‰Dãy¥N äRn‘î','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-column.js',0,'ø†ß,l¥ë»<›¿þ¤­¢','ø†ß,l¥ë»<›¿þ¤­¢','{í°• ”ªÁWÐZ[é¨/Ê‹Œ‘]?ª4)åÅ©Ü','',0,'?'),('²tJ¤´ªøD—ú^¤üü','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-dynamic-js-separate.php',0,'>ÂJufQÂ«Ö;-Â7','>ÂJufQÂ«Ö;-Â7','\Zp%³”Ÿ=Ï÷°ë¾Ì¡íñÃéJ&}çœHÈˆ­³_','',0,'?'),('²uæØ<eçx›®@ÖˆÂˆ>','wp-includes/js/underscore.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=NÞØõ9êÎ¡Hèü.^ë©','{#ínÆÑXExË°ŠÀ¨&Ä|š\nk%ŸØ}xjM-ND','',0,'?'),('²‚íÒ@ÍÕŠH=[3[zû\'','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/FromConfigInterface.php',0,'¢>bY	PˆHV’Çó','¢>bY	PˆHV’Çó','cíÏÌâ†@ÀÃ$ 7×išhk©ÄŸ\ZVÔõuI','',0,'?'),('²‰¹])T“œ‚—ÀN25FÕ','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidRequestException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GRË—c…í¤?qtç','ÖRz5BÄ,³´nÉ²¿ þ·Œ\nHoÚ¨Ðò½|','',0,'?'),('²‹q?%Íõrpþø0÷7ïq','wp-admin/css/colors/coffee/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™Jø±©xð±\'Ã‚F2[&','E¿‹pp;/¨\ZO”ÈeGÙþìÖèŠql˜&oCý9','',0,'?'),('²ŽâôBˆ‰Eû/ÿÖ-Ôg','wp-content/updraft/plugins-old/updraftplus/includes/handlebars/handlebars.js',0,'¥•´Êª(9†Œ¢ n˜Ž','¥•´Êª(9†Œ¢ n˜Ž','¥h÷Êåì6IäR°ˆ®±‰m~sœ¢ þÃ›â§”','',0,'?'),('²•Ž²âCŸ	#a¿“SÎ[','wp-includes/sodium_compat/lib/stream-xchacha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©û™à\ZX»x¨3)Ù','mÐio¨jÌ6XPÝúJ÷þy•Ìvxã£ì‡Ü§','',0,'?'),('²¦Žï¾7Ó\0®\rDs_kÎ','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-counters-box.js',0,'ác¶qjSVU€š','ác¶qjSVU€š','D°ŸÛÒŒk¶öÆ5ÉEöR¯:æF3o`à\'Xb•¥/','',0,'?'),('²§{,EÐž}m@àbÕÑ‚“','wp-content/plugins/really-simple-ssl/force-deactivate.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.…ðjÊÆª-PkÀ†.‘Ç','r[Á\"Õ«·»<UV¡ü\\ÉÓÑ¿ÃEípñ²bžô{*0','',0,'?'),('²¸Bã3êŽ0èWÀßª','wp-content/plugins/fusion-builder/inc/templates/nested-row.php',0,'y?¬5‚_³ª)ë‚.ÏÎñ','y?¬5‚_³ª)ë‚.ÏÎñ','Ì)Z&U>ÜÑEº»ëašx¢<„Rò¡…x\0[¹”°#','',0,'?'),('²º-[õŽˆŒSÑ_Ø¹Qðø','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1:°Ø!•G~ qçic','^ëDCguPT!>»þ›ôW¸Å\Z»Ç¯kÝ~_5\n8','',0,'?'),('²½YE\"¥3±ã&†f$a','wp-content/plugins/fusion-builder/shortcodes/fusion-row-inner.php',0,'ÐÒ\0\"€Ì–Ç‡Û.¨ÈÏ','ÐÒ\0\"€Ì–Ç‡Û.¨ÈÏ','Œ¾xUÅ‚*|FQÊÉLö!¿V)T\"¾»™ÀÇ„šÖQ•ô','',0,'?'),('²ÀÜ÷Gw‰¦©%·¤ %','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_LogEntry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|@mêÌÞ|X9›p9Õ','œ#jŸÐîÁž/÷ü7OY0Kš+bªñò+¢','',0,'?'),('²ÁË}PŠÈþúoàá¡','wp-content/themes/Divi/includes/builder/module/PostSlider.php',0,'0’È’8”xyh0	ªÁý','0’È’8”xyh0	ªÁý','àÇêrjTÏó=óžÉ6õÚ3š–„asHè-¢NšL²','',0,'?'),('²Ã–²«×d’Lánm','wp-content/updraft/plugins-old/updraftplus/options.php',0,'š.‘èÒcˆx[*e%','š.‘èÒcˆx[*e%','d(½–ü›…¬WÇöVõð†¥|!TÃŽ¹‡mŸh±$','',0,'?'),('²É¦-sg=&¸Hófü€!-','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/AssetCollectionIterator.php',0,'î.ìÓd™¹ÚY‹)ØûéL','î.ìÓd™¹ÚY‹)ØûéL','§ sëhðƒß7¬¡º¾tç¿JüE¾_\"0Þ\Z','',0,'?'),('²ÑþüzŒ$ý³øk*\Z¡','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/AppendIterator.php',0,'Ñ~Ñ#ï°[hoDÂî×ÓÄþ','Ñ~Ñ#ï°[hoDÂî×ÓÄþ','¼¾À§çç]—W7C‘ià&îòÞ\'õT—};ù','',0,'?'),('²÷lþ\rö©ÙRbö^»P*','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetWebhooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ó¡ s¤yÏ×:Ãd¦\\êäá','óÚïsÖ-rTŠ™_»\0ùÀ`ÑtÃ^ðÆ –K_{íÞ','',0,'?'),('²ùzvo:ø·ÜB%šºðõ','wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IÃh…ƒ®%u-C\0Ä','\"YÂ¤&6HU¾^é·\'ý$±žå=_;>þ°§æ','',0,'?'),('²ü0Y¹9™>¶n´','wp-content/plugins/worker/src/MMB/Stats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DmÀ¼aµ.¹O‹nêÃÈˆ','ß°Ôœ±QgÅ+þØ5^‰\0ŒL¡ÙÆºAõ×—ÎªHlž','',0,'?'),('²ýdþëý&E%cN†ü²','wp-content/plugins/wp-mail-smtp/src/Providers/PepipostAPI/Mailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eoåUÔN%ãuÔ™Ù','JRþŽ§#BÑ¶qü\\\ré<ž$xœ¥ìi','',0,'?'),('²ÿÙCü„·Ê¢äk@‘–Ž','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„[”N)¶;­øö˜X¹ñ¢','7¯£óxÃsÈ	tnPYú8ÈÄs7</ãf’ÄŒÎÍ','',0,'?'),('²ÿþ­xÄÐ™Ò)DC‡Ì<','wp-includes/js/customize-models.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ô\'ôÿ·‹~G~öÔžœ','¼hð3XVxÚpÆìT¼èOSÂ‘SfbæÑ\r„EæµÛ','',0,'?'),('³\nåádö&’„*ÿe¯]J','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSmsCampaignOverview.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åžÆÿàú¼Â84l„úA',')éNmÀ_P?+½Ïô(¤Ç#à„)j…:á;\Zœúµù4','',0,'?'),('³~£š¹­U÷\"Ð&Ð','wp-includes/images/wpicons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ãçn×VÄo©$š”Of~7','Ý]Ú©A=µÑ’¿%Îq¢%aMÁÀ‰ùàB­Uæp','',0,'?'),('³Á@‹`I·w5)2ìÍ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderInterface.php',0,'Wqš¼{ž:Œ|e¸&¦šMù','Wqš¼{ž:Œ|e¸&¦šMù','f*K}ñ¢-ò¯Ý²$¼€O»p*$\'ÄP°œüŸ³îV÷þ','',0,'?'),('³0ùíÜ:xÝpsÒ\"*','wp-content/plugins/fusion-builder/inc/lib/inc/redux/class-fusion-redux-addons.php',0,'ÍðI*aïçëù¶Æô‚¼','ÍðI*aïçëù¶Æô‚¼','gâ´S·ƒ</ç\\	/)V©€Ë9Þª$×xS.~î§,','',0,'?'),('³õ­ÊÜE\"ê„Ý„QÍ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/BaseCssFilter.php',0,'‘3z~iiÒ èGg‘6|','‘3z~iiÒ èGg‘6|','»	Gè’ÛT{û;š\n*KXBM3µ…ooN3@HÉ','',0,'?'),('³tõ~¼µ½ÊÞÈ*ìÖ†','wp-includes/blocks/page-list/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ss îÁ*=ó\\ó(\ZÄÑ','ÚJ	¤™·& eoZÀËà $ºJÈgt*6ü=±0T','',0,'?'),('³ÌW2ÝØDñG‡7‡V','wp-admin/css/common-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡_Z»µò¸+¯žg¾m)','Ï˜úƒ•žœž8Ô.çé\n„ÌûrC2=@ïêv	U','',0,'?'),('³èMŸé~\nÏT|·','wp-includes/js/mediaelement/wp-mediaelement.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ê•‚v·ÞEKÓÂ‡?\rÄ~_','!?ÿ[öÜ_üÅçrô€á=&È\nö-%!y¸£\rÚ','',0,'?'),('³í“‡p\\@:¹w‚[','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/TooManyRedirectsException.php',0,'œS¿‚Ôl€íé„ûÃå','œS¿‚Ôl€íé„ûÃå','òä1äŽ°TÚÝV@~pí±÷±VŒ×ÁWÎ§ßRš','',0,'?'),('³ j×ÒäŽÆ&ŽøPÏDœ','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/PublicAccessType.php',0,'Ý‘qáÏöïv6Íeù`z','Ý‘qáÏöïv6Íeù`z','£ŒÇ­ü1Äé‰ª’wNºÆ=AèLÜÖ ŸÁÚó)]','',0,'?'),('³-#ß“\'èEDAæ','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php',0,'>=&ßn±Eñh`Û‰;\0[','>=&ßn±Eñh`Û‰;\0[','¡Ï£)Vý\'çó5Ô\r6®¯üSí[å,ŸÁÎ)ØÔ','',0,'?'),('³Vb(ktˆW\"í6(;Æ´ ','wp-admin/includes/class-wp-media-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŸöB:Ó#¡FxØØŠêÛ','s3aÍ5þãÑçÇñö´È)¹à¶§bÌæ$\0w­','',0,'?'),('³\\h¨~v´‚gd¥vµS','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ConstantBackoffStrategy.php',0,'8H]—.Ì‡n\"Ð’ßÞ9','8H]—.Ì‡n\"Ð’ßÞ9','„˜|Æ´Ï‹2r÷g°mÿR¨ÂØÂl’\"Û`)›L«¹','',0,'?'),('³fÖMÕ¤Ì­|©‰õi¼;','wp-content/plugins/updraftplus/includes/Google/Service/Fitness.php',0,'ÓÞ/Óâú3Àç°','ÓÞ/Óâú3Àç°','ƒFrãÿPcBœ±#´ç:2}lÅexb3àº2ô}¹ßÎ','',0,'?'),('³iÈœÌ1Šé\0¦ÎèÁ8','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-php7.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ó¶S;h8î^ÑÜgÔR','ãÐmëfÊ¬º ×S¢XTª¥ÅÃ8ÌàA¥-¾g','',0,'?'),('³t_­…pÊñŠ£çPè—£ ','wp-content/themes/Divi/includes/builder/class-et-builder-theme-compat-base.php',0,'NŠ4^†Z½q¬ëuÓK‚Ž','NŠ4^†Z½q¬ëuÓK‚Ž','DÆ¯áÿ¶×Ý(Þ0\Z‚#‘E+fŽ\"í(å\nº±âI+c','',0,'?'),('³tfF	Ör{™Ü‡ _I²x','wp-includes/SimplePie/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®+‰‹dGzC\0Üíu\rìµ','aŸ°·,©\"ÏÉÆ”_*{ûZž×mŒç‘ÁŽÉ›¡˜À','',0,'?'),('³tz–Õ^L(‰ºï»r+P','wp-content/updraft/plugins-old/updraftplus/methods/cloudfiles.php',0,'/žd²´k?°œ:µ>Xp','/žd²´k?°œ:µ>Xp','„g¯g!MÀqB£•$|Ä-þÍ}¹®W=@Zqƒ”1†','',0,'?'),('³|]§DÅó\Z.’Eî±®','wp-content/plugins/wordfence/views/scanner/scan-progress-element.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D¶ê«¯üyï•5æpc','0(ú¦5D²=UŸïÔ”~éØÚˆI\")á¥7h','',0,'?'),('³•6\\®W’¼XÂë(»9h$','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/ProcessTest.php',0,'ÃÕæ,Ë(MSõ\'³¯,ìö','ÃÕæ,Ë(MSõ\'³¯,ìö','£óz|9“t­-ÝÂ©1z€öijà%1«´ñ‹áØ¢‹','',0,'?'),('³—Ž\\F‡Ø!…ßgr','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression_HoursField.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ô/1\\Ð5UŸÖ–?‘³ÓÛ','˜>£ùbb$ÕxÝŒ	Ç’Hš›÷wÏK‰ý.~7uÉi','',0,'?'),('³£1—?õ0O¾¦‰6>Ó','wp-content/plugins/contact-form-7-honeypot/honeypot.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{p§» Í>Ñx†C+T÷Êl','h¶çe÷_ˆŒJ\'l‡÷\rï“z:]¸#úÄ‰ø·ËÕ¸','',0,'?'),('³¯™¢¶\r\"²‚1ŠÆþŒ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InternalErrorException.php',0,'¯vi5¹Pž“\r\ná˜(žJ','¯vi5¹Pž“\r\ná˜(žJ',' án\\.ùÍd‰¨ô_v¦þ!©]„1ô@lÿEê	¨h!','',0,'?'),('³¿°ÁÔøl™O¦ å™+Ø','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/SassphpFilter.php',0,' PÅž¨j6XßˆŽv',' PÅž¨j6XßˆŽv','…L.¡“_sòªöon&­A6õ¨ý‘wü±¦O8°\"k½','',0,'?'),('³Î¨I²ö’ÏG—Ñ.','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/MontgomeryPrivate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z³LÈ©eçnÀÍõ©4','Ô•uØ¾ Û\rDW™ÙÑª…¨F>×¹Ko.IÖÇÖ','',0,'?'),('³Ï}³a¼][£™Üª^ö','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnknownError.php',0,'‰KSø+¹2Hé„A¢NŸ','‰KSø+¹2Hé„A¢NŸ','Y0ZñÁl´Ùš…ûÈðò¶ò’÷ùÅN#h\nNÅ3)ú','',0,'?'),('³ÑõÅm]Ç*ÓE*è','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/EventTest.php',0,'*f¨ IòÄàÈE%xÄ','*f¨ IòÄàÈE%xÄ','ËýÐº)<È U´\0¹‰1ÉºÊÁÛ†å¯ªá0','',0,'?'),('´\08’Ì#ÜÈ? u¨r','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-checklist-preview.php',0,'ÿFüiüº.í›††v','ÿFüiüº.í›††v','ƒä\"¤”–ç(O\'«Þqš‰`°w¢’Ë¯ð`-hŠ§N','',0,'?'),('´\0mý¤`!“st\0ßP\0¹ ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferPart.php',0,'Kzýé˜sØßÉ>é¡ˆúß','Kzýé˜sØßÉ>é¡ˆúß','!]1¶!¯ÞÓ{D3^ëUŽ6Î™–ü*™nÉh…^','',0,'?'),('´\0v«Ñ»â-¶Ÿ¶a ô`ú','wp-content/plugins/instagram-feed/inc/admin/PluginSilentUpgraderSkin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Õ\ZWˆv?[Q¸C~¤Œ„','½w¬ž†6â©PºŸf‚Ðì¾jÄÓ‚q¾KLE','',0,'?'),('´L0¬·ó¹V¦dvëœZ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/IoEmittingEntityBody.php',0,'¯D@„àö÷¸<(ÛxHm','¯D@„àö÷¸<(ÛxHm','{o\nLˆO/>e±|r ¬«)Mq³ób\n»!¥ƒ{\ZB','',0,'?'),('´ã¸[‘Â¸Ñþªyû°','wp-content/plugins/updraftplus/includes/PEAR/Net/Socket.php',0,'`ùXpi+Kàh“4MAt‘D','`ùXpi+Kàh“4MAt‘D','w’kcÐîÐ$èy¥M±áÞn¹URÄ×Ûxz3Í‹Ö','',0,'?'),('´µß²;ø›0ÿ‚ÙË','wp-includes/feed-rss2-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L¸°6<ÕvzÇÁL','è3Û¸ÐkHÄýÐ? 1Bàg#~<XÁògbeâ¶','',0,'?'),('´[¤ ÿðæãQg','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php',0,'ô2ë,E÷4álùC©Aµº†','ô2ë,E÷4álùC©Aµº†',':8\'ˆ¨€þª§¡¨ºâIi¾`ç7­–¿Œs0Ép¢ßL','',0,'?'),('´` ¥Rì7c…™jÙ','wp-content/plugins/really-simple-ssl/assets/css/variables.less',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½m¾4µCh\ZN@ñ+¥¦','ýÈkèðä“Þ’²ù#Šq;FÕÁÄÀ-€^Ç\nVØâ§ˆÔ½','',0,'?'),('´!˜-LHvø)¬ïn¨#','wp-includes/https-detection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ô½÷‰KÜ‘…+Ìq_','ïL)µí5(-ÛEþ=PWßÕ­\0Ï\nõøƒ#þn9	','',0,'?'),('´\"=zÞ§ŠEiˆô>¯T','wp-content/plugins/worker/src/Gelf/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('´%o5«Ý0DS&Ÿ^¤','wp-content/plugins/duplicate-post/compat/wpml-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';âª9t¢®9óƒÂQŸó ','Ð<¡t¬ëù¶æ­8ãhs’O#üAß—«ÒÆ}Œ¨','',0,'?'),('´*¾Ë‰!¶	OÚðåE:]','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/SetBlobPropertiesOptions.php',0,'Øê¬\n±—·Lmpº.&','Øê¬\n±—·Lmpº.&','N¬åÔ5Hib_Ñ¹¿ë´¬¨Å8Ì³QoÇÂÍù–¥vL','',0,'?'),('´-ëAFé’Ï\0D„NçÈ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/ParserRegistry.php',0,'¥8±WY¬lÞâ™@\nî','¥8±WY¬lÞâ™@\nî','^SW«’àšuºÐñ;QO–Ü!ÐŒsPÇôY—®ÍŠþ[','',0,'?'),('´<Øì€gã=±C£×´qD','wp-includes/customize/class-wp-customize-themes-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îûuZ©””7Ñ³’œ‹¨U','aMká¼ÛM.éÝš„fJ>½ö”Ì{¥Vö’Á>v2U','',0,'?'),('´B#|5*ÂÞ»IÒ‡ñ/','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/UploadBuilder.php',0,'!i§}ö²šØ·]‡á®','!i§}ö²šØ·]‡á®','0O‘”O¿Eêo‡‹¿øÀÔfmfÕ{\0÷ñA†ŽºS','',0,'?'),('´I•=f÷l)5Kl6*†','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/UglifyJs2Filter.php',0,'\r1°‚_&§‰-Õ^','\r1°‚_&§‰-Õ^','ö;¦ðÉmŽÝ 8l[”o,gÂ~çûujy¾ˆ2','',0,'?'),('´PC<ÂÂ	ºÎÛvnàR8','wp-content/plugins/wordfence/images/tools.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡ò@cIÜÛËáÅ','ÜêY„æ=Üéá¾îîRB)	~òë×ï‚Ü–ÝŸr','',0,'?'),('´Zo&„‘¢TÁêÆÁÉþM','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Account/ChangeKeys.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬\nV¥€š×³šÄª­|','©ƒ±\ZeÓØ¯,»a¸\0WÜ–V?ØÅÔ—¾u{¾î|Ÿ','',0,'?'),('´avuÁ½\ZfÙU(`Q\'','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DH/Formats/Keys/PKCS8.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jñûBÊ†V²C‡7½»2','´<Å«¶~SßFòPe\\È!ÚxX¿8{®’','',0,'?'),('´c«—~fVX¤&bMi','wp-content/updraft/plugins-old/updraftplus/includes/Dropbox2/OAuth/Consumer/Curl.php',0,'6˜ÿ³Œ\"¸xÎFá©ã','6˜ÿ³Œ\"¸xÎFá©ã','ÓÑ¶ìçÿìáûÅð}%D³}‹r-^{¿1‹Þ.~øFï','',0,'?'),('´uGPŒý3*xO‰Óeº','wp-content/plugins/updraftplus/includes/Google/Http/Request.php',0,'™wœc—Ã,Ð&Ò0Ì;Þd','™wœc—Ã,Ð&Ò0Ì;Þd','Çž]ÀU®G’ŒiÇ\\4\Z€„\'ùâX¯ÈÍi…‰2ÿd','',0,'?'),('´v>ð8Šó\'¶ôT6¶ÍÕX','wp-includes/js/jquery/ui/progressbar.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N¤‰=iôD’é_zy\r3','©‡_níû…£®)S“‚èÅ6ú3+n†3·´ð','',0,'?'),('´|ÙOPz^z×7¤ŸHd','wp-content/themes/Divi/includes/builder/module/SliderItem.php',0,'”{B·ô Bí\rIg`Ä¯','”{B·ô Bí\rIg`Ä¯','š¹`1Œ$ñçpZ\'øB\nSpÈ!Ô¤¯¹TÆ`~û—o','',0,'?'),('´}íÂù¥¶³?6í9Ü','wp-content/plugins/instagram-feed/inc/admin/class-sbi-account-connector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0¶¸nƒ=òá’àÌ;{ Öd','ûzzïreD“Æ&j`™=T@ƒ<fAÒ6‹ \\TK','',0,'?'),('´Z À5Š´ÆzÀ*7Êˆ','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/it.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ\rgÃ!ái¹«\'làÈÔ4','.]=ÅƒyÅ•µìsûÕËJ«]ÛûMå¿ÐLÓÑQù','',0,'?'),('´‚,é×M†ø;vûû','wp-content/plugins/wordfence/views/dashboard/options-group-import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òÃ+:ÜC´š¯êäg˜Q','(«#•ªË><ûÄ­\"(\nÕþ\'K™ÕìƒßÖÎ','',0,'?'),('´ƒ3 T.^Æ™<Þ÷ø','wp-mail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_T¸î8pj\"5‘Kw×m8','îqâ*â#ß‘_•¬U_mƒåˆî2H$vI|Ù)i','',0,'?'),('´”‹Ôó Pàrm=xï7È ','wp-content/plugins/worker/src/Gelf/Publisher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\ZdÔ×Q4O‘\0','ÒÙ÷¹­Cmò\"ÃÞl…?ÏKs³xÛÉzyìŒ×½+','',0,'?'),('´•\'ˆ‹@S Ç÷Dá’š ','wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U±¤?ëq>ÿ@áª×p','\0{aqî(wÏ!Izó}+lÿx/I0¸9|1%¡øÀ¼','',0,'?'),('´—%ƒïeÙÝ‡Ïw|‰©','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/HeaderVisitor.php',0,'\"lÑ¼¥)¨&L{6ÞgÁàG','\"lÑ¼¥)¨&L{6ÞgÁàG','•ïôÅ;©™ÝöfÞÑ6)ÜT\"ÎØŒˆ÷','',0,'?'),('´›ôpêÛRjr?¡\Z´6’','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/LessFilter.php',0,'iè&¯Üx±)OÚV@Võ\0','iè&¯Üx±)OÚV@Võ\0','\n…¬ÀjhÍ?zÔ×øˆ÷Q‡ð(¤{ÛÈÊ(º=„','',0,'?'),('´ÓJa¿ÆšØT%8ˆ9','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersSettingsDelegates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+¥ùiWöooÎ.%Ï°ZƒW','ut) “ÒÒÁ¼r{ n_]ÎÕ¶yÁN–wÇ]Òy$','',0,'?'),('´¯¸R õ§-}¸»Çœd¿Ô','wp-content/updraft/plugins-old/updraftplus/includes/Google/Cache/Null.php',0,'¸ˆóÐTpF8ýÍ\'ŒÙ«Æ‹','¸ˆóÐTpF8ýÍ\'ŒÙ«Æ‹','å·§ú?|aÞpá4x`æâÈ·Ç,y“çP%\r3â','',0,'?'),('´·V‚Úß·›¼èë“úê','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/OAuthRestProxy.php',0,'ð:)—\rZœ:¸z9(','ð:)—\rZœ:¸z9(','´\\ÔtÜ)læJWPõ‹$0Ú?h¾óó½ƒ!ù','',0,'?'),('´¹µC‚l„‡p¤‰t¸þ.é','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/Model.php',0,'	òs«HòYôÚÓ¨*','	òs«HòYôÚÓ¨*','“\Zé1•%Eb²ñ‡}é³¢´·¼t•/DïL¨5ú','',0,'?'),('´ÇÍÍa)[+oÑ91a\Z)','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection.php',0,'8­õ€.öÂþLLÃæp^','8­õ€.öÂþLLÃæp^','y²˜ÒõÿAb-ãƒó&ô·3C‘…OéµÙþ^ÕŸ','',0,'?'),('´Ñª8oÑÜa¿P™|0s','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®¹£b5lJå#ûšõv','c=0ïŒ-#Ž-TäSÅX†&ž´4¡äï\0ÈK8\r','',0,'?'),('´ÒK´ççOÈ–9×3|<','wp-admin/maint/repair.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÐÞ™ùªª~Œ«Mâ™¸Ã','IoTÈ]ŠàjâJèß~ÐÄÑ7bn!M|Úç!Fäå­','',0,'?'),('´ÒÖ^À šÁ]”s(z','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/toc/plugin.min.js',0,'È9¯ùhŠÙ¬í?™À›^','È9¯ùhŠÙ¬í?™À›^','ÔPS†A¾Þ1µWV’&¦0Hlw-¶`;®Þ~ËˆE¾','',0,'?'),('´âŽM‚ª{x¸JÇH£”','wp-includes/blocks/pullquote/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hÜPRPp»ïiy+T£Øð','7`ÃÂQöygŠ7s›%\'_ýdLÚ¿Úü½PËÏ','',0,'?'),('´éOï\'¢ï¼[å{?q','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestIsNotMultiPartContentException.php',0,'š#9€xzæèùFìºôI3','š#9€xzæèùFìºôI3','™@3V‡®F­ŸbÙêdûÍ<,`±ÜÏdÓÉ\"¥‚','',0,'?'),('´ìø¢N\\s¾*‡\0¨]','wp-content/themes/Divi/epanel/theme-options-library/app/store/index.js',0,'LÇØ,æÕ^´=Õù­','LÇØ,æÕ^´=Õù­','O®±x6ÎAk_‡3& èYk¤ÆÒ_Ž=ž¶.DRK¯','',0,'?'),('´ï;œž&ØFî„\n¦','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/fusionredux-framework.php',0,'µ~ñ¹ÓÓœ «íü$y÷','µ~ñ¹ÓÓœ «íü$y÷','Î‰ÌÕ!•©Å®\Z3ÈŠ‘p=¶ƒKZUR0˜[Q','',0,'?'),('´ðIÇåØû.$U0]\'ˆS_','wp-admin/includes/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O;Iž¾U•äÞ³=ˆÆw','@Uœ=º:3æHGBkÕ‚ÃäÄD–q5©¡Ö×†â)¥','',0,'?'),('´ðZxh;	H˜cWgÓÔ','wp-content/plugins/fusion-builder/inc/templates/column.php',0,'aýë	¶A,×ÿtW…÷N','aýë	¶A,×ÿtW…÷N','Ò§ú„-ß¼F\'•»})3Qb|izÚøÍôŸ9lGn','',0,'?'),('´ön0s(Ãš\\]<¡fâ’','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ServiceDescriptionFactory.php',0,'™hPmžÀp¶C3æVˆ','™hPmžÀp¶C3æVˆ','ŒÖŽØMgÀéŒ·ƒçô„³3´ŒccÉ‚dw!ê‹Í§','',0,'?'),('´þê‘‰}úOaŸT‡TN.','wp-includes/blocks/search/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e‚ùœ• þN+~/…7z','Ñ,¸G* µ¯¥?aÚ~…qì<‘2E9ºfa—”=','',0,'?'),('µåµ+DžFÜ¿TZ[H7','wp-admin/images/post-formats-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦S¦l“ôH\\©¬¯¯üæ','e…t¯«w|W§{x¿y%K:¦»QE7¬‘åÃÓ','',0,'?'),('µ\Zå[èMµ˜[Ù\r','wp-includes/blocks/columns/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f~^­¹d…JÞê¨¡À·ý','·<@ÂÖK‡W²ºq%4b÷~š$—}!ÒbgÃñáy˜2','',0,'?'),('µåÅ?Èá:¨­@XAƒV','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BucketNotEmptyException.php',0,'ÄCç†ì\n”FšåŸ\\|','ÄCç†ì\n”FšåŸ\\|','3.éViqÌ>jyÔÃ).âèÓä%L{­Õ„»Uç¿V','',0,'?'),('µ(¸K•Œ¡{€&2ŒÖåå','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Ï\'›¤n<AÅçÙ','Ÿ1ë_é²ð©H|•–†ÆF‡[‰V}¼*žB`‰\06','',0,'?'),('µ6ëç*‘ã1â|wå+Å¥','wp-content/plugins/worker/src/Symfony/Filesystem/Exception/ExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³aõ[è-wß! í€™Úb','†PY«Ð+{^Œwýq<wÙpÄTô[µŠÆ5,8×šsèÛ','',0,'?'),('µ<Ÿ3ì†v¢&F','wp-content/plugins/wordfence/views/scanner/scan-failed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Åœ*ç7ÜÑP	rx§†','üÃ´¶pü`)³ƒ28‡$iw6ÕJêgÚjnD½j','',0,'?'),('µ=—fd¸\\Ó‚vºâˆúâ','wp-content/plugins/contact-form-7/modules/listo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Á…‡NÖÍ\0Âá‡)²ë{','Óˆª!tþ/)lpZ„|×ãý;nË„ÀbSƒî¢','',0,'?'),('µA?à™]\\8«PMTÉl','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿ÐCÅBÚ)cŽàaeƒ’Ç','ß[}“¾±DØÕÔ\0OV±:~-Ô\"~mBh\"<ÄùpWè','',0,'?'),('µG.Ã£\0±±¼ÜžÞ¦','wp-content/updraft/plugins-old/updraftplus/methods/stream-base.php',0,'ùqø¥\0IeýöÝÍÒÚo','ùqø¥\0IeýöÝÍÒÚo','…ø7i],X¶ï%ß\0Þ?înž‰ÿÓ(j­Ó(gpó(îé?','',0,'?'),('µGV\\z²…#°ÿƒ!;¢Ä','wp-includes/js/media-audiovideo.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','û¦Ãv çK\n˜?¨/\0X','µ\rö¨žøÎ&»\Z¹JD!ƒ‘5‘Ì;Ð¨(Õ½%4','',0,'?'),('µMŸésá;\',¼ÞÚ-E','wp-admin/css/dashboard-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eš_µ®·besâç?ù7‹','(tÄé{AG…X0urñ™Å¤†\0Ž»ÙGŠÏÂÿ¹²','',0,'?'),('µO—r#½ÔýTºG‡¿!','wp-includes/js/swfobject.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿýº,ÿI}p„e~2˜qõ','?”Lw‚žÏ.ç4MîÕ’F…JÒø>fI†é´†œ','',0,'?'),('µZàBìB_Î‘¬*š¡','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/accordion/extension_accordion.php',0,'“Ýû\'2;uDñ\ZÒµ¦ûù','“Ýû\'2;uDñ\ZÒµ¦ûù','ŠÈs‡¼‰h°ùWŠ¹R“y°š»ÞJtñí9ÿÙg','',0,'?'),('µa&âwìW» Hç´(…Ÿd','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/date/validation_date.php',0,'Ñ¹ØÅµxTD!z9Äø¾í','Ñ¹ØÅµxTD!z9Äø¾í','Ç;$_A“`ë\Zÿ ºŒóˆB\r¾1Qáh4M´ƒÖ»9','',0,'?'),('µgWþêÓ‚NüˆtG&£','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchSizeDivisor.php',0,'(#hW_EvË[Ž29!ûÎ}','(#hW_EvË[Ž29!ûÎ}','ÞÏƒG/‘.d¶µ±ÀrUÈê©œŸ¹%8”,D','',0,'?'),('µhœÅ+å‰ÊMúùsú','wp-content/updraft/plugins-old/updraftplus/methods/s3.php',0,'\\‚iðz@Å¬s&b™ã','\\‚iðz@Å¬s&b™ã','¬“ˆð”Ñ˜G©û*+ÔñàvÓp˜Qlßyþ1&•åFl','',0,'?'),('µk=h´±Mô ¸í® ','wp-content/updraft/plugins-old/akismet/views/get.php',0,'Ó´ÊÌq´´\'7«€\0ŠY>û','Ó´ÊÌq´´\'7«€\0ŠY>û','©ÀxÁÔØ[í¤»%¡º–í@œÜcÞèÎô©','',0,'?'),('µl&ö*‡©õñßõÈ&','wp-includes/SimplePie/Content/Type/Sniffer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JVP°t>%NÓâµðˆå\0','\nþ·S/³ÒÌ¼#@¦ë%ôÞÓ,îul°è½$t¡¸…T–³','',0,'?'),('µu_°K³]«Yá–Ì¦ƒ³','wp-content/plugins/worker/src/MWP/Security/Exception/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('µ{úânFºýN(ìÞl','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchCommandTransfer.php',0,'q)¡XMÔ­’Õ`@FvÂ','q)¡XMÔ­’Õ`@FvÂ','Ôêú¹îï½ÅôV®%ð•9¨d÷’þ6¢M5±ÈIÙ','',0,'?'),('µ}¬äCŒ’Ï¾0„RÎù','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/FilesystemUtils.php',0,'§Ö–E1˜5¯zHŠKKmgY','§Ö–E1˜5¯zHŠKKmgY','Ž¨g—@Š¸§•³n¼í‚\"ðº‘é[E½:Ç7nÞ','',0,'?'),('µ‚.Ó7¡¹”äÒÐf[¬','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/AbstractContainer.php',0,'xæªE)ž*oÕ^©d?¿','xæªE)ž*oÕ^©d?¿','/ú\"vo0¸6È†ì1{dÅ\0q—d‚\0úêòPo','',0,'?'),('µ†»$(­g‹(Á®ÔPÚç/','wp-admin/css/wp-admin-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GƒQ5\'EY­oâ0¶}Æ_Ç','0‡|TFîáÎÝO 	ê.—«‘å¨ã.¹¯>¹CEjûø','',0,'?'),('µœ5ŽAtß‚–m0iŽz®','wp-admin/css/themes-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S\Z¿Nwû2õ·%‹‚È|','‘FÁº\ZJ7\rÔÂsJ¥“„m“¬cE\"—¸p/ì&zµ¹N','',0,'?'),('µœf÷\\ ½i	£þ¬v ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/RulesEndpointProvider.php',0,'\Z»÷ ˆ’Ìm=jiÏZOW','\Z»÷ ˆ’Ìm=jiÏZOW','¸âž¥6£† hŠ6ÏîaàòT>2ÿ=ÄoPÏéu°D','',0,'?'),('µÒeË¦Æ´¤>ËF&Ìêª','wp-content/plugins/wp-mail-smtp/assets/images/loaders/loading-blue.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UJñm#ªú9ƒ¯š&ˆâ','óú˜dlÄÆgçg±,Ã%•ùêá|7Ã”Æ‘<(·','',0,'?'),('µ¥äªyx“èâÂx4*ý ','wp-content/plugins/wordfence/modules/login-security/views/user/grace-period-toggle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BP¡ÏöÅâ·rùç²“\0‰','[f­ŒývûðÙAlÔ»Ë„NÖûA:4QP‹­ÓäÊ	r','',0,'?'),('µ§H–Ð¡ð×ó¥YVhZ£','wp-includes/block-supports/duotone.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›éwÄÂ™|7Å:@fì¦•','«ÉãÎ¡¦:ß~ïKÇJ2hñB¡£†wÒjŽ€%ò','',0,'?'),('µ¨7-F‡Ì>“@}','wp-content/plugins/worker/src/Symfony/Process/Exception/LogicException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³âXg@w\nSRO1','p¹vð¸û)”Í&žI©ÛûÊnÑ]Êº×¤B˜²ð,Å$','',0,'?'),('µ©ñ&æ\0jºl÷Di[Æ','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/3d-diamonds.php',0,'ùGËhýûŠí‘â¯ØÝ‰µ','ùGËhýûŠí‘â¯ØÝ‰µ','\'>ððÀVs|Wäu¿®Óp^Ÿ¼W œ‰FSENp…È','',0,'?'),('µ¬ÞïÿøÁå#¾¥S2a0','wp-content/plugins/wp-mail-smtp/assets/libs/jquery-confirm.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä{üzªP@èeø5Åi­','¬“º¶ÿvX%8|Wâ—Òu‚ji^:\'1RêÛÜ','',0,'?'),('µ¯™*ŸÖ*ÖHÿÇ¸!‡','wp-content/plugins/wp-mail-smtp/src/UsageTracking/SendUsageTask.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tè°B¾BÌ}SM‹^C','ÀÞdàƒF—ÓôÏè:\Zäü\0²>ì£”>ûv¸Ü','',0,'?'),('µ±qX³oŒ¦Úµ9F+ä_','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestInterface.php',0,'æCÇ¡hFò­.ƒ¸¹I`','æCÇ¡hFò­.ƒ¸¹I`','Æ1»Aß\"kk%Ø×ñ!D¨œ¶ã\\I¿,Y¯·™J','',0,'?'),('µ±ã·q†KÑUÔjí¤','wp-includes/SimplePie/Category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ôô«Ø[°Á çZVG¢4&','¬<±úJÂHÑvÊiÎ	bàŒ4l~ãeÐFëÚmjÂ','',0,'?'),('µÁOÂ­\n	„UÉí —Rb','wp-includes/Requests/Exception/HTTP/304.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yë;”·P°#S\Zˆ0|]Úc','v¦ÓC‡	aÎ\'FÞ;€øò±zÚ»”(eJí±L','',0,'?'),('µÄÇÓ‹ÍßvšHÓ¡Eðé','wp-content/updraft/plugins-old/updraftplus/includes/updraftclone/temporary-clone-auto-login.php',0,'3¾Î ›/àf!Ÿ#Ñ','3¾Î ›/àf!Ÿ#Ñ','\nv¬VzìÃsÇÇ@£…ëœîtùÇ`p_Yñ‚Äzh','',0,'?'),('µØ<n%UuùPqÃê','wp-content/plugins/instagram-feed/img/about/plugin-smtp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕBt­V±éÀI¦.Ð²','Ðçaˆf\rÑÏg~t°6%\\ Æˆ`Sç{0\\Gf\r','',0,'?'),('µØn–ü¤àÆ&Ù3`ƒ','wp-content/plugins/wp-mail-smtp/assets/vue/img/pro-badge.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bt ´@Þ?ð#¡','>C|uFª	Y•¼. zø[HLOÙÏRNBäêÇ','',0,'?'),('µã-Z¼³€:E¾:','wp-admin/js/image-edit.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rÏM©¥l~%ï÷îÄÏÐõÖ','\\‚%k¬–ºÿž;à,×¾÷µ‡ay\\úsÅA\'','',0,'?'),('µêš%žsÔ\'«1Ë¦éÐ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/browser.php',0,'B4\Zóð·ÓÝª¢i]·¹×','B4\Zóð·ÓÝª¢i]·¹×','.ú8”#n«Ôb UcÐd×k ŽGÃ†¤ØuºÿÊ³kJ','',0,'?'),('µöÁÀ’ºåô¤¼¼ŠŽ©0','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ReasonPhraseVisitor.php',0,'\nAëÎjJm8W^IÀœ¼M','\nAëÎjJm8W^IÀœ¼M','E|6EJæ5ÅåXÕK}¤\"ñFÔáïóé>3àÝ<‹íf¦','',0,'?'),('¶\r¬öCžÀŽ\\ˆií','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/SocketTimeoutChecker.php',0,'Æ¯k\'fëõÜí\0¸	|Ha','Æ¯k\'fëõÜí\0¸	|Ha','ï¸mKÌ]&œÀhÚòâì“V@\"T‚äIôYPK9é','',0,'?'),('¶	]ž¬XÏ†çüÌç','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureListener.php',0,'êYÆTCgµ‹ÈÇeË¨','êYÆTCgµ‹ÈÇeË¨','T˜°ñÐ0N9‚á£åç\r‰®“ÞŠK¢S‘}€ˆ s5','',0,'?'),('¶º¤|jX–ù©ß|êfb','wp-admin/css/login.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì[?ÓðˆrÂaóazÅ¾§7','‘ôw€æz\Zàv?úåfG(qÇÓ—8\"w´]oV¡','',0,'?'),('¶,´Z¼FN€).-µè[\"','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetAccount.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ¿AóAÌ¾æIüs¾¤','—&«¡çv–À‰:•Øvò\'þÉB8àø@F¦¤Õq','',0,'?'),('¶=Çÿ+Ên6y!ÙÔù]1','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/AwsQueryVisitor.php',0,'di“½ª£áTÜ˜ã','di“½ª£áTÜ˜ã','uxýdì&¡ƒÝ×òÐQ¸*B«pt–8ˆ(“V’‚g[','',0,'?'),('¶I²ôË–Ü«\nÿ-ó','wp-content/plugins/really-simple-ssl/testssl/cloudfront/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šYÿ&OEÔ¶ÎØcäƒ','(PÑ—ñ;‹¾GÂèœt¬2—r§;þîu}›FÞ–/','',0,'?'),('¶KAV½±áçQ†Ê·›7ž','wp-content/plugins/instagram-feed/languages/instagram-feed-da_DK.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';m¨Y\\<¾÷÷¿Í…%^','9é1ôL‹â×Ž!¨@“X˜Q×æ á<½g˜…he','',0,'?'),('¶L8×ôfo<ôã^_Ìß','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Plugin/Info.php',0,'nù`Ë{0ï3a¯sÃWH','nù`Ë{0ï3a¯sÃWH','—¹Û=à÷läGPHAákŠ†‚ÒÇ†°w¿æÉßò~©Ó´','',0,'?'),('¶MR²ælÄBœF¥u','wp-includes/option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^¨¶QõGnÍåÉÏ‹ñ','XðyßpðÇ;@ØFÇúþ]=sn|ÔÉäƒvòˆ(õL','',0,'?'),('¶OèŒ\n¡‚S•\\9ì©Î','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-toggles.js',0,'{ôPW‚¾3„æ›µÑ)lJ','{ôPW‚¾3„æ›µÑ)lJ','?e ñÓ\"ÖI£ßO—³SßmÄ¼ÔŒ’8½ŠK8','',0,'?'),('¶he¨Ê-¬BJ–ñª_vñ','wp-includes/blocks/search/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\Zˆ‡V6}rÜê^íÀîì','|dV´XíP7:¨þÔL!{Nd.5AøTPšµ%$','',0,'?'),('¶r\\Ùj”´¨òáA$','wp-includes/js/customize-base.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nfªuî\Z\\AÐà0o®)','ÜèÙl’àusÄo	¡ÍnÿGÇÅíNU1¾`9.Þ','',0,'?'),('¶t‘¬ª…e\0‘Œ-)žÚ.','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/Net/URL2.php',0,'ˆ\"ÙŠ)NÜX‘6€~‚','ˆ\"ÙŠ)NÜX‘6€~‚','ÀœQ*%’«Æ_7ÞƒdNÊ|–ŠÏÆªQ/pí)îg\r d','',0,'?'),('¶z¬^cÖÜBçL$ x½','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Middleware/AuthTokenMiddleware.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G¨¢¹}s’YJ<æ¾æÂ','Z‡t—UÍ*	ã<õíèï\'òÛÿ%u¶ö9S+ºUQJ','',0,'?'),('¶}dÝ¨Š&-%Sú¾','wp-content/updraft/plugins-old/updraftplus/central/classes/class-automatic-upgrader-skin.php',0,'’$©áà÷#¿Ü7ý','’$©áà÷#¿Ü7ý','e«]ÎÂQðÎ†,Lÿ œH¸SßURŠ|¨ÝÍ,×Ä9','',0,'?'),('¶ƒ7ÒŽ¯Ÿ) 5?_\\¹','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/RequestSerializerInterface.php',0,'\'$Cd\"}¢×ð¡|k£@','\'$Cd\"}¢×ð¡|k£@','«X¹A5ù4Ôµ‚7¢ÁÏí,mÒ•JØ`€éÝ«\Z','',0,'?'),('¶çŠ`bIñ\"v4…Nñ','wp-includes/blocks/cover/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êz.QÄ9œSòPÎ{_{O','nñ¿ œHB—£<²‡Bní4ÿEPüR›9¼íÇ“+¼b','',0,'?'),('¶•çùû ÊP©Ñ”¢ÛPT','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterInterface.php',0,'Zj%áÄ,Yµ$ÌD#Ê9K','Zj%áÄ,Yµ$ÌD#Ê9K','1Ew/“Ñ¡‰ÉÏÁ`‚¬6’÷_¨/Ü«Â­Œl','',0,'?'),('¶˜ÀãŽÆ\"SÎ­`t@','wp-admin/network/plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–R\n½¨.o×ÄÆ±2bw','ÕAˆgpª‡ŒÒ/…mïø,&Rqÿf9eyþ÷$=æ','',0,'?'),('¶™K?Üþrµça#Qh','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ia»ãîýµÿRÉž%x¼¿','³°§Mþ¢ äb÷€¼é£dÂý]FÀi÷POZq’Ú','',0,'?'),('¶š4 xêõyäÉKtþ4','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/sdk1-config.php',0,'àµåß«’ÔèØ”^U=ìž','àµåß«’ÔèØ”^U=ìž','^£xX zm?õÙi“É¹Çpƒ†Ö\0„Rê¥*I‡©3Wá','',0,'?'),('¶¦â\\äÆ.1°Û-œ¾:','wp-admin/options-media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L3è–Ó«áëÔ{G‰p@','Ž¯ž¤Ýü„í31¥ý0Z­ÒñøíYXÄ~7ûz','',0,'?'),('¶ª‡½Pänm–7_!*','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/HandlerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*\\¶­ÒÃ@ûn@2ô','ËIøÿŒ®”R“Ê-±ŒOæóãâ®3$Þãé','',0,'?'),('¶°ÎHº*¶á*.ÚS','wp-admin/includes/bookmark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F`Wø3ãUçùÈH ','ß˜Éö¿c.5%i¥IA‡™4–Zz5©Iª‹ê˜Å}','',0,'?'),('¶¸ö0aÈÂßÚÂmWŒ','wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/SOCKS5.php',0,'Ï2™=æ®ooÈö Ÿ','Ï2™=æ®ooÈö Ÿ','ó[¿žqdÆ#Ý#C÷†À2*€x—¹zDR÷2jÝšÂù','',0,'?'),('¶ºü1üûÕóoFd\\j	\0','wp-content/updraft/themes-old/twentysixteen/js/customize-preview.js',0,'2A¨Àóp$Õ£±JTÐ','2A¨Àóp$Õ£±JTÐ','Ïhjµtÿ€××âí\näÎÛú:º“W6TöÎÈ°','',0,'?'),('¶Ádx¹ÍÖeBÀÝ™ÏŸ5','wp-includes/IXR/class-IXR-clientmulticall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åH›˜qºgÇ×l¡t','†žÒ“\'bOÒëèÚE¦&Æ§W0hÀ	o’\\`ÿÝY­Ó','',0,'?'),('¶Õ’]ç¸oôMëeÒb÷','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/accordion/accordion/field_accordion.php',0,'ÔmÍŒ…-këüâî6','ÔmÍŒ…-këüâî6','Ióˆ.Ë¼| {¹÷æ\0q•<À“üÖºÆ´Õ“-R7e-','',0,'?'),('¶×Õ9¦±gk4`°;Ôô','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/variables.less',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„âDZÈÃŒ¸öœ','5Ã‹¥8”™fÙœl‡§°ãìçŸÿ0R)·»	%Ž„ð','',0,'?'),('¶î¤Ul1ÀÈ•Dübmgñ¯','wp-includes/css/buttons-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F¡¼XøWDw€÷ýÇÚ­í','èoÂ ®Ÿ€¬¡ð!Pc›Šü\0ÈiÛF9aKûúêÌ','',0,'?'),('¶õƒÏßÅRCOh¥™Úß','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0¥Ø6ž¢.tzÁåŸxÇo','öà;Ýþ¯p^\0¬3¿Ô¹â(€ ‰ŽAþßÎa´ìÅw','',0,'?'),('¶øI£K:†¨X6Ä,(','wp-content/plugins/worker/src/MWP/Stream/Limit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ö}C€ÜúbÒÙÿG\ZüTè','yŒÓè´vd-eöq.|OÃ+Óu_B¢Î`’jFa¹£','',0,'?'),('·\nfv 8¦÷á1·“™-I','wp-includes/SimplePie/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é€—zÇqÅ”¡Ã/äÑ','_pe±NOï/»*¶mv×ÙÈ¿ïn6*ùçzoþänÔ','',0,'?'),('·!N]è)„N_cú','wp-content/plugins/fusion-builder/inc/templates/element-library.php',0,'™ò.ö‘¢\'²Þ¦Í]5w','™ò.ö‘¢\'²Þ¦Í]5w','ÎsÒ†«øOZ¸P}ôâ·‚…a½¨<u/@L™,¥','',0,'?'),('·¼´	{yöæ˜ª2ÏûQ','wp-content/plugins/instagram-feed/css/sb-instagram.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úuCô—;ÛTNú]yÎñ','F\\—Q/â¬	|†Zê/Ò³ñÅýÓµzšS¦ØIÛGt','',0,'?'),('·Ùøt»ý>gUˆÎËâ7','wp-content/plugins/fusion-builder/inc/templates/options/link_selector.php',0,'˜ÕÔ„ú›)Ö\\®gûüF','˜ÕÔ„ú›)Ö\\®gûüF','`3ÃÚm•mzU±ÑÙ{½Ô.^Š.@)úøu{¢f»','',0,'?'),('·k!aØ+ª*i\Z(C','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Handler/EasyHandle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆqŽðêNäûÞï¿\r-','g7¡CÒ~CRò&»ÂùdM©j2†q\ZÜÛÀð7>ÐP','',0,'?'),('·yÇjú,¯˜¥äÏW$ÆA','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/dimensions/field_dimensions.js',0,'Ë´_C‰hR\'9ÛMöœ!˜Ù','Ë´_C‰hR\'9ÛMöœ!˜Ù','HÚS;Í”‡áŠ9yìyê–ÍÂ\\HqÚÕû=8yD','',0,'?'),('·˜/ga)#KYÖõ@q','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSendersListIps.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lW¿:Í”:\nü0úäWˆ²','C‘¬Í•Q¶lì8rk“Â¨ ÄÞÊIÉEŽçI77–','',0,'?'),('·\'jrÛû·Þúížµ€§','wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/MysqliConnection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s¼…ÜóvÚe>”ÈU_§¢','\'þZTƒ’ÜÈE˜?Ÿ8†Öy>:3MdÎ<Uä_M/','',0,'?'),('·)éªe¹Ýë“„…%aTh','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ûÛ·Ó¾¢W,htÖ','Ý*cðRZ»Üdñ_P•Ó\0ñÃZQæŽ*/†°ˆEJ†','',0,'?'),('·7‹#i×ãý/74ZBŸ•‚','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/AbstractHasDispatcher.php',0,'NgÚbÍ<¾‚±gñ…[ÿŽ','NgÚbÍ<¾‚±gñ…[ÿŽ','‘½\ZÎ#\'Ç“åøfÑ\nÔ	†i=£ˆ™¿”Š¸÷ºÀ','',0,'?'),('·CÕ	ÀÝbN­ü/','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Replicapoolupdater.php',0,'=¶&\ZÌ˜ù‹™¥H','=¶&\ZÌ˜ù‹™¥H','„¿Þ¼Y¯J?¿ •Ä˜Ù#ô p9|úÿU¼´¹\0Hzg','',0,'?'),('·F…[¯Íãµ‹PÑ³‘@»','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Postal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MÂbP\"ÑŠxÙY@0ñà','÷\'ÈÂÖn©²*2nÔ‹äòéŠä)Øa(Œ_÷IqŒÉ˜{','',0,'?'),('·JˆŸ\'°ð€3U¾×õ','wp-content/plugins/updraftplus/vendor/symfony/process/Tests/NonStopableProcess.php',0,'‰žÚ‘ E\"`’	\r@Ù¶Õ¢','‰žÚ‘ E\"`’	\r@Ù¶Õ¢','…¶A^\">\n®Ñ73æB»‘À°ÛqdA\r£§!9º‰','',0,'?'),('·[¹¨øÿÄîžxb˜ÒŠ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingRequestBodyErrorException.php',0,'@+§°FC!L´\n×ÐIï','@+§°FC!L´\n×ÐIï','‰(BDÏlGLoæ¹7¿S¾Úì?”Ñ0§oB\nýXEÁ','',0,'?'),('·`{CîU‚Vz/Zí-','wp-content/plugins/updraftplus/templates/wp-admin/settings/form-contents.php',0,'o)P´\nu÷)7æÔÿ','o)P´\nu÷)7æÔÿ','?Ž¾f\reûçXõð¯Jx…	)|ì‘s•ã‹(¿xÙ¡','',0,'?'),('·`™`\'Îl`=èê¢X(','wp-content/plugins/wordfence/views/options/option-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J*EÕ%v	NÃa!‹¤Uw','Mü«#3‰a@xhÇÀ s\r5qBÒNÙ£©X#Àò’','',0,'?'),('·xXscÄ´y.£ÒªP«','wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/GetViewSchema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ã[³{qbÀvƒ¯Òf‚aL','9•~\0Ìî	Û·þï\0ëÞ‚ZÌ7¢ï”Ô—o.þ&','',0,'?'),('·y£¿Ñ‘ÿc«j!¿\\\'','wp-includes/class-wp-block-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒ.ž×´Š8¶†9¯²','À$-ªÎ¡RÌ’Û~ÒÛžÜNðjÕÎ]?=âí®&','',0,'?'),('·2±D[\"¹ñÿ„*\"(××','wp-includes/js/jquery/ui/effect-size.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a;l‰@ íµšr%¹Ý¢Z','ÝæûÛcQ>›WYe\Zw\"™°“`»MƒrÑ˜^','',0,'?'),('·Œ¡(“™#DÀ(4Ú›ö÷f','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/ExceptionBufferingBatch.php',0,'.Í´²oŒüCc*íYq','.Í´²oŒüCc*íYq','jb(ÓÀ™ã^5ÔþÈ4kñõ°6\0EDl\rµ#\\2','',0,'?'),('·“hJ–´DÒã°—G¥ ön','wp-content/plugins/wordfence/lib/wfCentralAPI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è€³úéB/ŠX§\n`œ2r','Œµ>C¥Û]§!¬„Õ¯VMÕœ4U¹‚UÅÌÉÍ\Z','',0,'?'),('·“Ë£  ý>Óõ¡ñ N','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/WebProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$%õ+2ç›Ïz£ÿ¿ÆÊ','ëðþ_gpªŠ”ŽuN,„½Çá‘ÕzhuÀ@}ø\0o','',0,'?'),('·˜\\¨éÎ0O¶\'w[l/^$','wp-includes/blocks/gallery/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.’‹7†êgÑYLÆuz','Š–¹Nð\ZUyn«;;úE(?Óbfs¬IofØ±1¦2','',0,'?'),('·›œZQ4ÇØ\\(‚Ü‡','wp-admin/network/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï®\rŒý&Z3’r“\"ò','Ö:á×%£;KiˆW@>áU;ŠÔÍôë½#À>','',0,'?'),('·œ“ïY\ZœÌYŽ5:\0qœð','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Credentials/ServiceAccountCredentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']~ÌYÇ\0~ŠÛ¨tF','ú	\'ójÕ’G`¤ç\\Yœa0G§E\Z“´èÈ!m=#$×–','',0,'?'),('·´ã~;s5¬®ƒWBmEV','wp-content/plugins/contact-form-7/modules/sendinblue/contact-form-properties.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9öVX¹‹æà—Û·DÃƒ‰µ','E¿ÑLØø%8Š[Ž‰mi èË£Òi¢–©¿cD.cV','',0,'?'),('·ÁL=ÎCáÿbå‘','wp-content/plugins/wp-mail-smtp/assets/vue/img/check-solid.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å—¬«ªhíTPœÝû\Z·A','Rñ3e”:F$*…Eów\'ª	‡c¥µ”ÙðÅ','',0,'?'),('·ÄÂéiòÎ°†xu¸oT','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Version.php',0,'WÃ¥H­ö‡xè§Á…øå','WÃ¥H­ö‡xè§Á…øå','ÐàR}Ð2Mi‚þcgæ sÒrw¡×»¬©Úwž','',0,'?'),('·Õ[0ñ^‹ŸªŒÐ¶','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AnonymousIp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eºmgëÝœ|ù<ë¼¸Dh','™+Á%ÝG¸<t³1]ëƒIò5m·\Zž}¯âEö>ð;','',0,'?'),('·ã-,è¯n³\n>>kgöÝ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderLoader.php',0,'S©däÁ¢³uÿ\0Nkga','S©däÁ¢³uÿ\0Nkga','QŒD–?Åý«þ°\'>¢ø.×–±B„BÇ¶ç,âUkƒ','',0,'?'),('·åîÉ®Üõë€@eù­ïÉ#','wp-content/wflogs-old/config-livewaf.php',0,'í©©.ò:]Ž:pó±^\\t','í©©.ò:]Ž:pó±^\\t','áÒ1´”?i\\è·³EÖí÷2	Ö]Î;—üÐi%Ç2','',0,'?'),('·î?Nà×dG¾ÉŸRBÆÒ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/html_custom/validation_html_custom.php',0,'ˆ£«‚ùÊ€K¼Ÿ}Õ7›\nÏ','ˆ£«‚ùÊ€K¼Ÿ}Õ7›\nÏ','Gæ„JËÊß+¶¡—F•+‡¿~S8Îl8,\nÎÓ°','',0,'?'),('·ï/ïöØŠ!¤N>ñ‚\nþ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú¢f<_2S^I¿ªZ','ý­iÝ¯™ÿ8{‘iü´Øq!d¾ ÌÕ¨åAzòõ©','',0,'?'),('·òl%áS‰ÁæÊ&y','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/templates/panel/container.tpl.php',0,'2Ö©7ç7õ?4‡¿I','2Ö©7ç7õ?4‡¿I','ëÏgµË¤_%Øå?ô2HgÒ˜!ÄŒ’à$mèÒ\\Ÿ!w’','',0,'?'),('·ú×aÆˆÁ V¿!ð%ñµ','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/System/SSH_Agent.php',0,'±Š’¿;ìb\r‚5E«ª–','±Š’¿;ìb\r‚5E«ª–','61¦ƒE³)\riôæú¨—¿žJ²®Kà®«/Ú@Ì‹e*','',0,'?'),('¸ç¯ŽnÜPäE¢š','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/FilterCriteria.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Ztà¯ß]ÑÜfàœz¨L','Ð±Ó¨ÄOßTÌgüã‚Æð„5®„_ÖVõóG°=(','',0,'?'),('¸€L«—$&S BÅ•5t®','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/ElasticSearchHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–DÜe¼/úƒ_šŒ@|ŽÖ','1u-Kî\ZÑ¥ùMw›Øž¤´Éî2ÁÉüÃ\\íîq','',0,'?'),('¸3ôÅ\'¦¸¶†èœ\\','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Service/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v$âTë¸´Ôn„V','VeJ’å_¤}‡\'®vªÿ€SbÝìI÷ëe˜äÑª','',0,'?'),('¸o]‚ìÃÏnM:b¿','wp-content/updraft/plugins-old/updraftplus/central/modules/core.php',0,'4ÒÚ…IÓÄÃRÔixy•','4ÒÚ…IÓÄÃRÔixy•','ÕXæJ—&³RÈâðîÓÎÆüöÎZrõŒ¨C¹-<ù9%H','',0,'?'),('¸\Zä¡¯lîÎÞù3ÈŠÂ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PÉUÕ’è¥JL´“m8`v','Ó›úvQ´–kâÄ\n¹ƒlØ]Û`Î•ºÛ·ô•+}ÒkO­','',0,'?'),('¸V¯*$pgRÙeEPÇ','wp-content/themes/Divi/core/components/lib/OAuth.php',0,'û`ÇQŸvþs-Ç¦ý²Å±','û`ÇQŸvþs-Ç¦ý²Å±','Æ:3æÀÁ…ëŸòƒ¹=ÊLWð0+“N§¥ØgŠÿ‰äõ','',0,'?'),('¸8Ê!Ð?Î—àèù`›t³','wp-content/plugins/updraftplus/includes/Google/Signer/Abstract.php',0,'®‘6¶¿SÌîù“ôW“','®‘6¶¿SÌîù“ôW“',':——É\'™Lð¶ìÐr3ƒW¡®Ù™s¨×Ä‡³õ','',0,'?'),('¸<h iÑ­3*µ	Fq','wp-includes/blocks/button/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ!íÀ×qÿæßî\0e—Ž]j','q•»kdË¤†p³¾ÿ^ëâ„™á±|:Ë·\0ê;YujF','',0,'?'),('¸D¤Ú×šzC+rï-Ñ','wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/LoggerInterface.php',0,'\Zà–‚\"qYAj)©@ÓN','\Zà–‚\"qYAj)©@ÓN','[YØodùa#ÙÃPB$½( ˜×]˜œ×(ãÂBæ¦','',0,'?'),('¸D8DPô47‰nš—\'µ¨E','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/ResourceIterator.php',0,'×¥/%#·ÌìkvF©_(','×¥/%#·ÌìkvF©_(','ÇädéÇÑµB3nq´šDo£¿ñ}Ï¦u	?õ6±','',0,'?'),('¸J|6}ËPß,\rÙ›','wp-admin/css/colors/_admin.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p\nûµ@!¸#¸D[À`’f','0ú¾¿GO½–¼Þ¼ Ü}¯’¨ŽTÛ™§¸^v1ãít','',0,'?'),('¸L•ÈOÿX½âU>mJ','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/AccessCondition.php',0,']žÔ5—ýnš< Ã•lþ',']žÔ5—ýnš< Ã•lþ','Í˜ÙaŸÞJçS“!ÄmM¹+Ca!JÒ­ÝRê(','',0,'?'),('¸[|—ÏÞN³tM*ym{f¯','wp-content/plugins/updraftplus/includes/Google/Service/Manager.php',0,'ªå|“<½„êÜÉ}M„æd¥','ªå|“<½„êÜÉ}M„æd¥','döT½Àµ	Íì˜áYv{Ìš+ÑÃu`úV‹ÏF³£î','',0,'?'),('¸aÝíÐs™ýj¬yÌÁaí','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServiceException.php',0,'‹£<}Î\rŒBÆ•70›q','‹£<}Î\rŒBÆ•70›q','Jð@£Âé¡J¤éÕëlòS4‹zÁC÷ÝkÉ85','',0,'?'),('¸bÞ²…¬¿Ÿ}°‰÷ˆ','wp-content/updraft/plugins-old/updraftplus/includes/cloudfiles/cloudfiles_exceptions.php',0,'v!e(ªiå›:h×Z§','v!e(ªiå›:h×Z§','i3îßFïˆóº\0i7ƒ\'¼Td¾L‰¢F\0M}M','',0,'?'),('¸cÂÚxÆß~9¢*Ru¹¡','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Consumer.php',0,'ÎúçÍ<¿¯MƒWüÐêêz','ÎúçÍ<¿¯MƒWüÐêêz','ÓÑEˆh1vÅ[5¦œKQo­îÑüsEÝeÔÃ¿EEk','',0,'?'),('¸d`#)?žÏ³šÏ0(w‡ù','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ÁoYƒ¢Û-ã)EHd','lÜ,8¿EñT—ŽC‘eylžaùSîÔ;)\'\"dÌ`zû™','',0,'?'),('¸dÇ\'·EÑ_\0Ýâbž%Gd','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sr.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ¢°‡SJ%ã7 PÊ ','S*\"¶›z®‰{z¼‡’LHî<ù7àù\Z7ÉAû.X1ª','',0,'?'),('¸Œ!âµ³êx•ÍÕ±Ð‘','wp-content/themes/Divi/includes/builder/module/settings/migration/FilterOptions.php',0,'8ª¨ÉMbú@Áa)í','8ª¨ÉMbú@Áa)í','×sï¾L<..º¨íEv™JGS6‡Š=‡ž÷ªÀö','',0,'?'),('¸Œx–`þf,5ef2ý“','wp-admin/js/site-health.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Î˜>IåVpÈFñGÓN}','iD@ÝV>kïÏ(¢t#	Å`âª9ž¬œH*\'¦ôcÄß','',0,'?'),('¸Ž”§œ[®:°—„…q','wp-admin/includes/class-wp-plugins-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e·âÊ½Ãz\r§Q<ñNÃG','±Ù?`:3bO©ŸÄYë.¹÷*ü³/²ËuœPb_á','',0,'?'),('¸’³c–q8/lÛøC¿·pm','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PackagerFilter.php',0,'+\'ùû?à=¤_\0<¸Ûy','+\'ùû?à=¤_\0<¸Ûy','zÎà	:Ô‹úþ/¢p2(Uá({sw&ã	Áj~f1T4','',0,'?'),('¸š…P¿Of;ö™Í/ó×','wp-includes/SimplePie/Decode/HTML/Entities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰™jÑ‹p&y€Å·ÖéìU','—ÿWP»Æ*P=NÏ»;\Z Ž¾iÿä8ÚÃ2_¬ü¸ ','',0,'?'),('¸ž¨ºÄØ=»Ûÿk‘‹pY','wp-content/themes/Divi/includes/builder/api/DiviExtension.php',0,'M{·‰Ì]Ø:ÓÍÀ)','M{·‰Ì]Ø:ÓÍÀ)','ç¶ó\Zúâ¦Æ8Ñ½Ì”¼zŽÓëêæÄŽ™…%¡','',0,'?'),('¸«u¥Ó‰`;º‚)Ã','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/extensions/import_export/import_export/field_import_export.min.js',0,'ÆšÒ’ÐÑõ¡ŽÊÝ)','ÆšÒ’ÐÑõ¡ŽÊÝ)','y¡=%÷aíÄxßùÙã%Fg|èˆ\níÖO»~j‹Ùr','',0,'?'),('¸±ØptzrÃ	Æl²ž','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/sdk1-config.php',0,'àµåß«’ÔèØ”^U=ìž','àµåß«’ÔèØ”^U=ìž','^£xX zm?õÙi“É¹Çpƒ†Ö\0„Rê¥*I‡©3Wá','',0,'?'),('¸À‡E.1|{?-_ƒxÐò9','wp-content/themes/Divi/core/components/api/email/_ProviderName.php',0,'8è@ö—0ç/F©­­ßÈ$','8è@ö—0ç/F©­­ßÈ$','-{û–:¦Õ%žë.ûŸµ=èYR®8Å•æ‹žW<£ª','',0,'?'),('¸ÃÏ\rî1 _¯¨€”{›<','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/tab-addons.php',0,'ìC+•´‡é~7rŒ/S','ìC+•´‡é~7rŒ/S','6CUs_7,éÃn™£OéäÐ„.ÞÍ\n^b?\\“™š','',0,'?'),('¸Ç¾„nKº½}ÅS…Ö','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/ExceptionParserInterface.php',0,'	§d<ºWß¬hJ¯îU©','	§d<ºWß¬hJ¯îU©','\r·3³.k\nÄôÚÅ¯ÿFaù­]l-ÒÑåVTÉJâ','',0,'?'),('¸Ðüs\rY0h[8¯÷ 4~§','wp-content/plugins/updraftplus/methods/googlecloud.php',0,'çÔº\'®€hzñòx¢','çÔº\'®€hzñòx¢','œÅl£¤J5ELgn¿j®HŸ\'f.C˜ØÖþ*|ÔO','',0,'?'),('¸Ö}µÐDx\"ä>. qq','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ConcreteClassFactory.php',0,'çn\nz!½àýw„><T','çn\nz!½àýw„><T','åÁŸÈ¸Gn¯qÔ6SÈ{×\nY×kO!Þ¿€C(t','',0,'?'),('¸ÛZŠÌ(“Å§|ŸÍZ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QUÿp~ocÃŠ4ÒNt›û','”LÎÞnµl2@Îö>hši,uJY²H¦‰\\ãLô,²B','',0,'?'),('¸è«\\ ¯”IÑ»Á»è,','wp-includes/class-simplepie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(‰Ø\\Á¤JÄ¡íÑ™ë','É8lŸn-ÎÁ	ýo™=½œ8,;hî\'LFR#ÑÊœB','',0,'?'),('¸îÚ™yì2D\na€ú93','wp-includes/block-supports/layout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÛABÉ³@jÆ‘!B6®Â‡‹','s7Mü?¼roqAÆöûõI¤¼P³ÀI¤ì`i…','',0,'?'),('¸ñ\r¬cð‰6„éXŒ55_','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp256.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Éç^­F¤ÛŸ±Ä‚¿öj-','œµe·×¾ñÒq§‰—‘®1nl:óE¸F \"Qâ\'<¿','',0,'?'),('¸ÿ<Ô5u*+ÙRÄí=_+','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/TokenRefreshRequiredException.php',0,'óÑ:½Å0Z·Þ†\Z…¹òî®','óÑ:½Å0Z·Þ†\Z…¹òî®','…ã‹Éd*™4íús$§5~`”:&nþ4a£ó','',0,'?'),('¹-.I„t>MBU6à~7','wp-content/plugins/really-simple-ssl/grid/templates/progress-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}¦7aŽè\n#Ñ[=V','¿Ò‚ºÙ/±àæ1´†´ªºläèÐ¾÷Ÿ¹R–ýø','',0,'?'),('¹í‡\\ž]^ÒT£ê¥ŠÑ','wp-includes/js/dist/vendor/wp-polyfill-url.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rt\0X²ãd×xR`•Ï','÷bªÕ”WŠ?ÀûgtRÄ‹\\}DµE»TÓ‡ÿº=','',0,'?'),('¹hÑ{ªÏŠ -Üí','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/comma_numeric/validation_comma_numeric.php',0,'ìb%\"”ë­Ï°7*¶à','ìb%\"”ë­Ï°7*¶à','è¤}ˆÙ·-ÌÖØ|s¼±ÐSa•¬´<\rÐôàX èác','',0,'?'),('¹\Z\rOhœ\n¯Ñ—¶`§2','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php',0,'`¹HïÔÎÞ6£tÈ\rY³`È','`¹HïÔÎÞ6£tÈ\rY³`È','^ë)?{à“¼Y¼ÍQJE¾xšÛ%3ý`x<o%´ì>N','',0,'?'),('¹/&¼ŽÖûá2®Ñ¡\rgDs','wp-includes/http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ø-òžXã‘©¿Î/…ø2','? *÷~HxJF÷zøãòÝhémpÄÇ–}”Ýã','',0,'?'),('¹5Ù‚aÜ¨Ï˜Ò	#‰åbu','wp-includes/js/dist/compose.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•t6õÒ9²*šÜòJ==È','-esT1zêã ÜWOCÃî™ÊS¥aõQŽFêp0','',0,'?'),('¹NŠYU^$xj!´¼è\Z','wp-content/plugins/fusion-builder/inc/templates/context-menu.php',0,'%@¢ƒˆ‘G «á¬ðñ','%@¢ƒˆ‘G «á¬ðñ','«9PúªÁºLû-CªDÜ9B‡ßÓß}NË³Øõ+½E','',0,'?'),('¹^`1/Ä&ãGÑ$—	]','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/UserAgentListener.php',0,'˜P5+ó0$ãÆ!|“','˜P5+ó0$ãÆ!|“','¹Šá{É=ó<\n,ã/7(et¿>•ç¤¶eK sõé','',0,'?'),('¹kŠY–¸7€&/„z]','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/UploadBuilder.php',0,'!i§}ö²šØ·]‡á®','!i§}ö²šØ·]‡á®','0O‘”O¿Eêo‡‹¿øÀÔfmfÕ{\0÷ñA†ŽºS','',0,'?'),('¹oÜM	4*Á§E“?ek','wp-content/plugins/fusion-builder/shortcodes/fusion-person.php',0,'fòB×îi[lggÍš','fòB×îi[lggÍš','B\nðòxÖ~Z›ƒYÈ¥ñ˜èsû@ù_ŽzÚ/œª3Š','',0,'?'),('¹x Ñû=Šì©}ß#¸á','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplate.php',0,'¸Åš!^°¿«Û´+¹çEB','¸Åš!^°¿«Û´+¹çEB','‰a=¼òÔúX\n®<9&Ÿç[±õLúŒæÈÈõPûÃé','',0,'?'),('¹y	«{¢ï95Øÿ¹a','wp-content/plugins/wp-mail-smtp/assets/js/smtp-about.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?.ü’aƒûHŸÀ³”Ç','þRx:,æˆ‚\"kÿóGXëwUû<’-Îø°yAVù]','',0,'?'),('¹‚¯¶=ÍåÑ¶Í8$ú','wp-includes/js/dist/vendor/wp-polyfill-node-contains.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/2•;°¸ñƒ(úëU‚µ ','i-»…®;R9éïs 	„bl¼ã:XJ$å¤ÿKô¹	Ë','',0,'?'),('¹‰<Ì&lÇaL(4V^™+','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/ContainerMetadata.php',0,'\"÷ù‰ë±s×Cë>ÈùX','\"÷ù‰ë±s×Cë>ÈùX','A§”_&Û-(+h;Ñs®Ä•OcræhÍæ¶î9]ÉÍ','',0,'?'),('¹Œ?ƒ0|Ãöà5uÆ¡ƒ¾','wp-admin/custom-background.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ã½«¾ö]0¹m7ìéöd','ZÁ5\"=®\0îT§Ïƒqr­/0žàQÐX^dn6','',0,'?'),('¹½[÷õ$4:<dä”ä(g','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseCreateError.php',0,'Àš	àt…ï2nôpÜýU^','Àš	àt…ï2nôpÜýU^','ÈRÃ¹;@0ÒZ`÷$\\X7±Ô­È…N{Í»Ã`·­	ßà','',0,'?'),('¹’i?žþ-UÓòÙ¤ÏgNv','wp-content/plugins/wp-mail-smtp/assets/images/reports/email/icon-open.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X/ò\\N©ÉGyró‘À','Àâ´J¤ðY,$¿;°°Ïö¢9Rõgc#˜tè«ÚS','',0,'?'),('¹ž<eJô½í5}™Ûj','wp-includes/blocks/site-logo/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N‡J.ÿ¼¬Âïƒ~¤®','R®\\.ËÁNŽ÷‚~Ôùi71ÃìQÎà\rtá4éI9','',0,'?'),('¹žPÆ2çôG_¹Úü‰ì','wp-content/plugins/updraftplus/includes/Google/Service/Taskqueue.php',0,'s™ó±=a…œ9—óœ–9™','s™ó±=a…œ9—óœ–9™','tö\"Œµ³Ã!²u€Sücb¤PD-8TF!èä','',0,'?'),('¹ C	f ã\"…ªlÊ','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/temporary-clone.php',0,'FÈX\\…Õ¾°MÆÐÜ5','FÈX\\…Õ¾°MÆÐÜ5','É;ÅN&öÒá@H{Ž3£QÍ¼u	ªØßc™e','',0,'?'),('¹®ƒqhÌn›Jýj¯','wp-admin/css/nav-menus.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=1WÐ¤½žäc	Þ2{L','þqAå®Àé¨KDúþ:\né\\v¤>Ýo«T^Î`®µ','',0,'?'),('¹®÷‹å\ruÀzWŽ~N','wp-content/themes/Divi/includes/builder/module/ContactFormItem.php',0,'²bØŽóêyBÂ~Ó…­Z¬','²bØŽóêyBÂ~Ó…­Z¬','ÿ,9äŸú¯ÄPf0\r´„Çr\\aï\\äQiVò¶Ž','',0,'?'),('¹²8ÕlÐ®u rº4Ÿ','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/CloudConfigurationManager.php',0,'vÒP‰ŸÚïèqÇ²·±»à','vÒP‰ŸÚïèqÇ²·±»à','rfç_X77£pæƒ~DD§ÞÕ|çÌ\"Å»øb•*','',0,'?'),('¹²?|ŠZTÔì•tô','wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/jquery.fitvids.js',0,'úñ\0C¸‘ÚÍ¸/&ý+B¼','úñ\0C¸‘ÚÍ¸/&ý+B¼','ñ,µËQš)ÄÃ“Šæ[\nÔ\nÏI£÷\n¡ên†ª‡8ªÛ','',0,'?'),('¹¹Î<ÿ	Ïf%ÕnŸO³','wp-admin/includes/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µÄœ-+\Z­\ry{-œ{\nJ','¡Å×ä‹€’…°RÅ‡¶ÈmšxqA².¹”Š8e²3	','',0,'?'),('¹ÃuLç,îŸ&Ç‘‹\r1','wp-admin/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶;Þ6½™óUÞ©3','‡D€K±„ô3ûÌuB!@oPÈãbšÎ#ý›Ù~','',0,'?'),('¹Ó€9[êÀM-g‰‚','wp-includes/js/dist/hooks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DÞ‚@éæ)1	Ìé.É1k','´Ó–­ôw\n„³êc^?qÝ7}Xb*ùð\'Ä*$æ','',0,'?'),('¹Ô%I…‰ç}ŒPözW­É','wp-includes/random_compat/random_bytes_mcrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·ŠTÿÔ¦Ê™`µP§¥L','åb=¯-.¹“´XÿÀî”ÎþTüÅòYnžÐÐPæí„','',0,'?'),('¹ÕJn¼;MS6O\ZF¡r','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadId.php',0,'˜ªÅƒÔo —s}Ä\0Rì','˜ªÅƒÔo —s}Ä\0Rì','ÿQ†\ZŸë\"Y¤ü³uk^QQY¶±¼kú‰™êŒy1C‘','',0,'?'),('¹ê[ç†¸5/ì§÷„¤¢ ','wp-content/plugins/fusion-builder/inc/templates/options/select.php',0,'D¨ÍûC½MäQ7Ü½“Ì','D¨ÍûC½MäQ7Ü½“Ì','m#8û@¹26ÅðÙO±ÝJiŸ€Þ}¯e¼Ê&·˜Ñ4,','',0,'?'),('¹î›h6WLj*Ösêð	','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/sortable/field_sortable.php',0,'\0<´Š\\)¾ÑE&¶PÜ+','\0<´Š\\)¾ÑE&¶PÜ+','À—È¬p8}÷ø‰ÂJÒ_1P²r¢AK®9¬à½ç’~àH','',0,'?'),('¹ôAVbÆ¥SŸÉãv1:†','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/Site/Info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±wzwùãï%»\\µñgZÞ','\'˜«Ôzê7ãï‚øIfé\'¯KÍ&RGo~©ÉH)À£i','',0,'?'),('¹þ®˜Ï¸c*ø\nTÇY+U','wp-content/themes/Divi/core/components/SupportCenterMUAutoloader.php',0,'i¨æ¾á:^0F2ßÆ8ÅÉ‹','i¨æ¾á:^0F2ßÆ8ÅÉ‹','§ä^x¢ÑCjÜgcTGsÛ²Ìý<Iåô¨„Ž„s¯','',0,'?'),('¹ÿ{ZÌñVäÇö­$“§','wp-includes/blocks/social-links/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fŽifMðX5p¥E3','Âö-òÙq=¨²áßUV½>èíDÿÆ¹žEí|HC[Øõ','',0,'?'),('ºn°§šñ°6fËú€à','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Version.php',0,'\0Ÿí5¥¥±;ZùW·¦•—','\0Ÿí5¥¥±;ZùW·¦•—','ñÍ!Ó\nè¥—¾uÈvê2§–äŒÞêœ¢½}øë¿','',0,'?'),('ºÚ+Mâ%üµ]›sD00Å','wp-includes/blocks/freeform/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù×Ï¯\rÊMÇ³äc÷|L','ÊxrÐ	”ß”©’Ú…^ÍÆ¨ä|ú& ™ìèßŠ5Ó¹ö','',0,'?'),('º¢k@¹lÕYò1ÐÃ˜ç','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmailBcc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›¢œlT§J½©2ÿ0L','ŒWÔ{¢Á\\&3–pe³\rÃ>YVŸSqÑIYºUkøz1,³','',0,'?'),('ºÍ)4Ÿ{ÀA/gmÞ«ŒI','wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/RemoveUsernameParam.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zLáÊÒ‚²–6Æ-õ¹ï9','\"lñZãGëÕ8WdÐ0¥|\0b»êŸ7„ŽõGXÆq','',0,'?'),('ºƒ	ëlï©Š\\;ÁÊ•','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/caret.php',0,'ƒb|Ù’Þ!²u\0Ò','ƒb|Ù’Þ!²u\0Ò','þ¼¨C‡( J¢¶‚\rÑ.¤ùÏ¶:åjËUG/TvÅX','',0,'?'),('º!>Õp\\Þå¾LÒ','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/nonbreaking/plugin.min.js',0,'\"xŒMíÐõuŸçÓl7Y','\"xŒMíÐõuŸçÓl7Y','}ÛDDr?Òa;f£šòs3K\"JæQ½aSxõÕÛJê}Ù','',0,'?'),('º#µ$™ÝPàTL zÁl…','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NotImplementedException.php',0,'¿Þ×m×s0€üã_ÉµÕp','¿Þ×m×s0€üã_ÉµÕp','G2äoB¡»¸3]á£…ìÎTy\\!zß‡·–q8]','',0,'?'),('º\'5SÙ™{1*	%D¬¸ß','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNotEmptyError.php',0,'Jc1z{Š²È\'/‰@EHl>','Jc1z{Š²È\'/‰@EHl>','(Ô\0íÎÿê-éÜâ ±!ß¨:•kÎ¢>¡I\nÃ.Wmaø','',0,'?'),('º(dwI\0:\rÎÀ×Xx1DC','wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•vÌòÁ[ý¥A.F3Dã','@– Ú“‹VÓCñ²+ùé´<!;@8ŠÀ§9Ð(ón=»G','',0,'?'),('º/¥eeWóÒd·T=H','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedContactDetailsStatisticsClicked.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦`d;²ˆHœwªãzŠ|‡','éa;’%`	ü>êêÝú¡Y¼¯;ÆÕçxa/ËŒK¢—','',0,'?'),('º3ž,’˜×cv‹k–’Ñø','wp-content/plugins/wordfence/views/onboarding/overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ðœ¨´þÙÁºñÞésÃ','ÔÀa:£Fž¹âV¢WÜ5W¡<nôo`úø','',0,'?'),('º7ÊìÀþ…aB»Kz','wp-includes/blocks/button/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(ùÊE³\ZØ: ”»Òü','{ûpÊCŠÙ¥F×Û7]h\Z~s42C¡˜šFC\râí<:','',0,'?'),('º=A¬&ajÿ„%‘5DeC','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-container.js',0,'”Ò ×°‰!Ð_å1;…‹','”Ò ×°‰!Ð_å1;…‹','˜e¢x	\0H¥cÿ—²—Z\n™±M±Þ>–p´ŠÍ‘…','',0,'?'),('º?Úôzo.8¥dŒf9W†;','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kE¡h2!„Òd¦ùìë','Æ“…ÊåCèÕŸ‡„º–Œt)uÔJK4ˆg4¤-–4KÎ','',0,'?'),('ºJˆ¡Èä¤`P	E°#','wp-content/updraft/plugins-old/updraftplus/includes/class-database-utility.php',0,'Ø’†oˆ þý^	èŸ•bñ','Ø’†oˆ þý^	èŸ•bñ','=ieöƒŒ6fœ<éBáÐysþÌ6~ìS¤$†D)ii','',0,'?'),('ºWMíŠË{h©øÚÀ(ž','wp-content/plugins/wordfence/lib/menu_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S–æÈÑÓõeñÚ‰Tÿa‡','\nS¬îxêB¾[ÆÍ)É©L’6Û–>–ÜòHÏ«Ü¥óÊ','',0,'?'),('ºYE¤NÏègÛéIèA£','wp-content/plugins/duplicate-post/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•]_åŒ#Dö´\0óƒµâ','\Z ŸøÛ’ö%§4~NÙ~Gh!bØ­:w‚˜ÉŒ¿™\'','',0,'?'),('º]K{ÌÙ¯¼æ`Ø{¿,','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfChc-AMP6lbBP.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+EÒYHÍí<YPK=°S','Û‹ü&ò:^Áý±G¿Í×&BˆŒ„2ÃPC‡¿~÷¯ò…','',0,'?'),('ºaÉ@o›ÿ\'¿Ékbíþù','wp-includes/js/jquery/jquery-migrate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y´•k~Äxì$K^-3¬}','åìöPØyöìïD\\\\ºcdä~öÌP¿ˆÕ`7  F/','',0,'?'),('ºcÓ­R¿’Xbîa1‰lT©','wp-content/themes/Divi/includes/builder/scripts/ext/widgets.js',0,'GÀEÇÀêÁa‘~3ªE–ý','GÀEÇÀêÁa‘~3ªE–ý','Š-ª]\n ÁOVÇ¤Érû?7ªþV/|”‡Rˆ\'n','',0,'?'),('ºiyíŸä9´Õ1a*s3','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/GuzzleException.php',0,'¥™tVLµˆm°m8b-{e','¥™tVLµˆm°m8b-{e','W|FUóá¾hy	Åô¹¬¯ŽüTêmÚý\rö¹ßÏ','',0,'?'),('ºjX;Ìn…ðd#Ìßôl','wp-content/plugins/fusion-builder/inc/templates/custom/js/fusion-chart-settings.js',0,'èéJú¤Š¬IÎ‹ªÂÃÐ ','èéJú¤Š¬IÎ‹ªÂÃÐ ','Õì¡¶då‚,ìÁ®¥†k	\'%åeKˆ3ÈÔjj6\r÷','',0,'?'),('ºnÏ\"€BÖ¼Û‹ŽühJ','wp-content/updraft/themes-old/twentytwenty/assets/js/skip-link-focus-fix.js',0,'¢öè3s{_Æ•]÷àpÊ','¢öè3s{_Æ•]÷àpÊ','ü¢Âo;~]×bæ¬ü^ôùRœ<õl$¡Ó™³½1ì6','',0,'?'),('ºx;_úqíˆ*`<','wp-includes/blocks/group/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=>½åÄ* ¡f´±[µ³ž','Ï©‘—þz—„J&–O{|K^–Ö¤«0.Õ1t','',0,'?'),('ºŠi/ŠpEtðµ\nÝ÷lø','wp-content/plugins/wordfence/lib/rest-api/wfRESTScanController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´ÿràÉš0mb74$','ï{hõ¹D¨ôXò^µw¯š®6D‡fcÄ@Q‘Õ\rüf','',0,'?'),('º’Ïë2ÿÊ?!àuØÜ†\"','wp-content/plugins/wordfence/modules/login-security/views/options/option-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„Ÿ[(AÉŠÎí„ÖÉû•hü','þ£‡ðÍ³ß˜“Q6Ì¨!*ôÇ×XäxÊõÃMM­u@','',0,'?'),('º”úƒÁõÃÊ¤wŒµ€g|K','wp-content/themes/Divi/includes/builder/plugin-compat/advanced-custom-fields.php',0,'y5˜8ˆÞ\\G\'‘®ë„)É','y5˜8ˆÞ\\G\'‘®ë„)É','žÜ¡sJŠ6de7{×‘êïªõ›wÚ›x£´K l¨Þ}\'','',0,'?'),('º©Âã^[X’æŽi³	í','wp-admin/themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·Z¾óáN‚+lÁå Ðî1','ÐjØÈS<¨%\\°C¼àcK2ë\\0°§\Zš_®¯R','',0,'?'),('º­:æÀX©¼@\0{*ÅÖ¯¦','wp-admin/includes/class-language-pack-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wüøH—© lO J\rN','¤m²º­%Ön\ráè¿Ø›­Šqi€ÈmŽÍŠV&W','',0,'?'),('º²Â½Â\n;ó¬€G}\rTl^','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/PKCS.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zz©¶ö•vñŒëñG¹5','ÃÚTïŽìWpÃö(š‘¹Ækµ6û LÙé¶)åIÅâ','',0,'?'),('º·¥gãàü®ÇÑ¤qFs','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Dfareporting.php',0,'knÜT2\Z4æ™´’Á','knÜT2\Z4æ™´’Á','%\rÎ8<¸#Çë¢M0\nŸ“-\raAé†ÔáÎ›b(¬\0ý','',0,'?'),('º¸.RáþF4	ójy°n','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/CookieJarInterface.php',0,'\'XwÇÅ<hJL˜Ú','\'XwÇÅ<hJL˜Ú','ð­Lr\0ºàõ¡¤˜†QûTT™d¸‰mïorÆƒë4Qj','',0,'?'),('º¼4T¸(â\\9\'Œä3±)','wp-admin/css/customize-widgets-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨Ë­Äf|ë‘oÚ^PDük','X+‹aXê¡\Z4µUL¶év5[’Y3rÁO{Œý¦Ÿ»','',0,'?'),('º¿‡\0n:T‹q}K ø@','wp-includes/Requests/Exception/HTTP/408.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×5ÄWƒ²pë]\'zAzî¸','éq¬™ò*ÖlmKÒ£kÄ\"ÐMÿQ?Êp§’aØ‚ç¦4','',0,'?'),('ºÆ\"ö*‚«û©=åÙõQt','wp-content/themes/Divi/includes/builder/plugin-compat/gravityformssignature.php',0,'ºÛ²Î71‹èË:öŸiì','ºÛ²Î71‹èË:öŸiì','qTÅyTô‡-Ûï\Zayæˆ*Šð9€³‹«£','',0,'?'),('ºÈÙK62›·yd£à¢u','wp-content/plugins/worker/src/PHPSecLib/Crypt/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('ºÍk{šä&òó»x\n¶ø','wp-includes/class-wp-error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„lß &Ø0?&‘c~ûÿ','G†bM[G&JrÄF˜EôÜ’™1Ãrôs„L,tæ(áW','',0,'?'),('ºÏCÊ?î-IÍ(<$³î','wp-content/plugins/updraftplus/templates/wp-admin/notices/report-plain.php',0,'†i¬­Ý×5¿ÝÖþ\\|','†i¬­Ý×5¿ÝÖþ\\|','aõF’½Úâzšo§T§ê*€gó©¿ž Ä¬ÖÚ5aÊ','',0,'?'),('º×™Œ|[ªŸýf','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerAwareInterface.php',0,'Ï¬mMÃëòÇðäŸtÑ¼ÔJ','Ï¬mMÃëòÇðäŸtÑ¼ÔJ','fðþé‚.ý%õ*ÆšWnÝCãóòsìSiþ','',0,'?'),('ºß!â‡Ø\"19úp-”‹','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Blogger.php',0,'53DÏía1!Cpç±j:2','53DÏía1!Cpç±j:2','Î›T‹J	¡:\n,+•\n]ØÂsbn†‰ˆÅÉ[uÍŒC‘»','',0,'?'),('ºß$á„o“¬1ÖT³2]l','wp-content/plugins/wordfence/lib/dashboard/widget_countries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›	›Âd*W·Ë‚ÿÃ1g›','Ç+qÒ~;f€E_Î#Ñ]I·V\\ðk?l¶•ËÃÏžé','',0,'?'),('ºä¹mR\0Bø`˜ÆÍÔ','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/rock-stack.php',0,'—Ý3€fÍpá&`½íº','—Ý3€fÍpá&`½íº','²hi\\Ìa·ôÙa Å\rê‘<WÀfÖÇ°ý1õ g','',0,'?'),('ºçC”Ær§yÑX{·\Z²Ù','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseDeleteError.php',0,';yC£h}V~¯>€âY°í',';yC£h}V~¯>€âY°í','t9©·©½cvê|ã¯±u4èNkjE}?’5ë$µr/','',0,'?'),('ºç¨.#ìþ—ŸåQlw','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/LimitStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~T”±WKVQÇ_üjBhe','g—\'­Þ’öŒy’È®{G’ÃH…xNÒµ¼	.ïJ|','',0,'?'),('ºè)SZ9Q¨ÿeR¯','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Cache/AbstractKeyValuableCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŸæÇwÍu*€ŽMê¶ó•','¸êI¼¤&@B·‰Ì+CÃ¿O©þÑ%„ÑBN!(á','',0,'?'),('ºíÌA0fŽýf`Â KÇ}','wp-content/plugins/wordfence/lib/wfDirectoryIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n+Z/_¬\Zxuæv','¢Èu‘úü;IV—•a[¯~ãµ­þTZ\\^àyJ¬j','',0,'?'),('ºïUšâçÐ(Ñïâ´¥ûJ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Time.php',0,'«å¬Ä_nš‰v1¸´ÎÂ','«å¬Ä_nš‰v1¸´ÎÂ','sžC|˜˜Ë3”›\\+^˜ÃpÜœÓ NÝaýµ','',0,'?'),('ºó¸´cH•2\Zåmu™Î','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/multi_text/field_multi_text.min.js',0,'wÍŸc9\nuÖäø×„Çô}ã','wÍŸc9\nuÖäø×„Çô}ã','â73bt5w´EÙsn]¹¼O£#@ª®>:[>Ï@&LÇé','',0,'?'),('»\0²×%3[$x\0èâ.°Ž(','wp-admin/images/marker.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Ü*O2/Ô3I2œýè','~T¼@\\Ž€vUI<çpKÈ×Ä×a`Tº@cãÞcaü','',0,'?'),('»‚Å\'*Æ¶º\nÂë%Î','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕÀ^3Ö½]éV¶¿\0}ó','•-Ö“WòŒJqŸÃÚÀµ÷¡âç(ÑW£ŸkÓA‚\0,2','',0,'?'),('»ÒÉ4þ™õ‰ù=Ž¸','wp-content/plugins/wordfence/images/icons/ajaxScan.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘Ê–´Ñ´­÷~fúúžiÁ','ß©0¼Ôò£ÕÑ¦®Æ»H\n‰•Ž‹ÀÂ¡;Â','',0,'?'),('»özýŒ¿Ÿñ´\0EtV','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/TransferException.php',0,'’®iv)îÿ4J¦Q{[Ä]@','’®iv)îÿ4J¦Q{[Ä]@','7ç«×Ž¼ÆÝì¼ÈZr-¢á1Ä´œ©>5X3%¨†','',0,'?'),('»	æããEm[¥¬³ÇØlÅ<','wp-includes/js/tinymce/plugins/image/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-”úZCélÂ­}ÄèŽê','yçéTíÔNz+¨ªã†­âƒ†õ\'Ãó«ü%YÊ','',0,'?'),('»)äoôTXð=Ž','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ValidatorInterface.php',0,'òpjmª‹É‘>gGøT','òpjmª‹É‘>gGøT','ïíÜÎñ¹î…–ëÎÛ{®‹ßG»®!³é×jç»ó\Zox','',0,'?'),('»¾˜ìíLðû\Z¼Å','wp-includes/blocks/query-pagination/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ˆ€cÖi?\\ô–×$3','5KŸ©ß’AÍ¼~‡í;#x(Ä¬EÅ-Ã-„}±Íç','',0,'?'),('»36D*\"ƒ¾=-ã8•qG','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—EOxÙ•XÚ2ë–­Øƒ','x¨×aJNù!e±¬×\"\"Nqê}ç«AMCû1)®º{€j','',0,'?'),('»?¼6r`Ê>J´\'‘wl~','wp-content/themes/Divi/includes/builder/feature/post-content.php',0,'0!z£x+Ñi¤¯N(õ','0!z£x+Ñi¤¯N(õ','ÀgnUµûÜcámGg8ÙH 6þ½§‚ÅÔ9Pzö7þ','',0,'?'),('»DÄÍØŸm/Ð`‘zŒD','wp-content/plugins/wp-mail-smtp/src/Admin/DebugEvents/EventsCollection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CŒ÷iÛ+ÙÝ(¢Wïxñó','I¾\0G\ZÉ²ýÉ¸ÚrÑy&B‡ZEùëÇ\'”²Q”Â¡’','',0,'?'),('»S“Rux)µle0¯~KK','wp-content/plugins/wp-mail-smtp/src/Migration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s@…åî~f˜@BÃdû†','\0¬¬ðò¥‰Rëp™#Œ²=±)bQmtÛO/Q¿:o','',0,'?'),('»[I\"Å«x‹‰Bð^F ','wp-content/plugins/updraftplus/methods/stream-base.php',0,'ùqø¥\0IeýöÝÍÒÚo','ùqø¥\0IeýöÝÍÒÚo','…ø7i],X¶ï%ß\0Þ?înž‰ÿÓ(j­Ó(gpó(îé?','',0,'?'),('»e<³Í(ç\rÁ9MÎ\n','wp-content/plugins/fusion-core/shortcodes/fusion-privacy.php',0,'\"ùœG4Ý¬\"©™pÀ','\"ùœG4Ý¬\"©™pÀ','ó~÷™iè¥’.õïñ”3½¦J„qˆ‰žz¿\"¥	i','',0,'?'),('»z|íÝ.ÿn3sä×Ië','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/DoubleClickBidManager.php',0,'‡}àÿZT’›¯{]%','‡}àÿZT’›¯{]%','@Ù4™~zÖ1 ‹Á\Z}gãž‰|¡÷Ë°-¥f{\"','',0,'?'),('»{ó¼mƒK ;/_ý¥…','wp-content/maintenance/assets/images/instagram.svg',0,'’‘¦*æSCGKþ=*“‡','’‘¦*æSCGKþ=*“‡',',ì?Ân‡ÝÞE3jã•é¹­ªÜƒÆÞYHxd\\ñ!\nï','',0,'?'),('»Hi&yJ¯Šµ«','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/http-message/src/ServerRequestInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F©5óìr±–lçÚ','A]õÇaUnÁ	ÑðUMÇ+<•“~ÄaÐ}ÊCø~¬â','',0,'?'),('»‚ªÙIY%‰Š1Ÿ?¢î','wp-content/updraft/themes-old/twentyseventeen/inc/custom-header.php',0,'ØâÕî•j—6­ª^öán','ØâÕî•j—6­ª^öán','À#Ú&pŠ\\î¬œD\r~…7·Îi·‹ïš/$7àëÁì','',0,'?'),('»”‹|NÏœ7´=;Ì~*È,','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/RooleFilter.php',0,'/ÿ0Û¿f²\'a¯…å\n|É!','/ÿ0Û¿f²\'a¯…å\n|É!','(\Z	Ó6¾0\0“¼HëmnODL- ,vídío','',0,'?'),('»¦—ÙÈ• j6²žüÅ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ContainerACL.php',0,'ñø®2«ô\"]P§!\Zyø','ñø®2«ô\"]P§!\Zyø','1x³…{xx\\Š2w`QwøÙSüvëµªaCÓ¥\0ˆ','',0,'?'),('»Èî‰ñgC8¤BBîîýY','wp-content/plugins/duplicate-post/duplicate_post_yoast_icon-125x125.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%“b`Ž³&Õ:;®¾†µ','×ÏÖDÊÔn$¤ùÏßÈl²ƒ	À|„‡\rDuêY]','',0,'?'),('»Ê{ü]\\Öµ­	ôèdó»Ú','wp-admin/css/forms-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bGè2”°4Éj¿Çj„7','ô3×~§\'ôËÏï›$û“ýéÜW´E¯¬\\ÕôY‹','',0,'?'),('»Õèì_}Õ¨¾Ûdqè•','wp-content/themes/Divi/includes/builder/feature/dynamic-assets/class-dynamic-assets.php',0,'âœy$‰¾È‘s]p\"úü','âœy$‰¾È‘s]p\"úü','od›“YÝöj1˜8¶2ËÖ¼ùî{£]Y:ª¦qV','',0,'?'),('»ý…$Å@yÑ¡Îøõá´','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/InstanceMetadata/Waiter/ServiceAvailable.php',0,'Áéï.D\Z™ûùf1?Ó¾¬','Áéï.D\Z™ûùf1?Ó¾¬','w›LRPgÔ\\Ò¥=;hRÈF®Ÿ²•®Í]êw/ßƒ§','',0,'?'),('»ÿà…ëHÇ§¤W§Oè\"','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Montgomery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xæ«jSÛ¸]þ)íh\n+','ë6Çù®ái‰lD•­š^kOæ-¢ÚÊrÐÃî7	','',0,'?'),('¼\ZôJœÍ™ÝÇ§ŸRÏjÃ','wp-content/plugins/updraftplus/includes/jquery.blockUI.min.js',0,'›’§Ø-\"¾	“\Z=ÃL','›’§Ø-\"¾	“\Z=ÃL','i¹)M¥äç	¡Õ|JoC±Çf÷.P$úElg`­l(','',0,'?'),('¼¬ðàÄÍï\"¦RÑÅœ','wp-includes/images/crystal/text.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì Ñ²ªü#¾dÿ%ã[µ','n1ôÂ0µé©<;ý\n”ÍIp¢ö~Üf™Åâ ¸ÏÇz','',0,'?'),('¼±Í8¸ãýªšs,y\\Ï','wp-content/plugins/fusion-builder/assets/js/codemirror/codemirror.js',0,'•­ä‘=Ò‹r,*·}IÈË','•­ä‘=Ò‹r,*·}IÈË','D‹âlÎåìÓ]ºÊÞt=6ç§£:À|vÕçK','',0,'?'),('¼(•OWC~š´·Z²‘','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp192k1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—3r/Ž¢lö —Á¶Ð','v¾à†ÞÈRË¯ê¬ø` uáäìKÐ\'ó°²¢2ëè','',0,'?'),('¼)^ÒÜÙÞ\"nYpp','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Connector/RawResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S!@[}æ¨<nh˜c`%','22R¯x\nàLNaTa9á§ÉOvoò-ý,ìöN@','',0,'?'),('¼,»dïŸw:3*1bJ','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-featured-image.php',0,'V@™=~ FôZ°(Ê°','V@™=~ FôZ°(Ê°','»Rcÿb•X)bœÄ¸óÖðÌž×m·õ”¢e¨A','',0,'?'),('¼=ê¢£²%œøÎïi¿·','wp-content/plugins/contact-form-7/modules/recaptcha/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì‡gw“Eo˜G?IÙé¹_','½EaÕû«WÐXBUXºPq¶à_ÔaSþòý','',0,'?'),('¼A aØÇoõƒFƒtÞF','wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutTag.php',0,'Û-\Z®õàcky#A\r=„','Û-\Z®õàcky#A\r=„','3‚Â‰®¤óà}†¼Ãƒ]gí‘0.ï- Æ­Íäk¿h','',0,'?'),('¼CÅvª¡Ìw¦¦Û,:','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetIpFromSender.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Èä…‹\'>ï„ ·B^','ÁXš\nÝ]øBLÏ}r\'ëêªUøo^;¯®®ûk','',0,'?'),('¼DFýŠfÑÛÂ™¬@	!N','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateSmtpTemplate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z\rPR\'ÆôÞãïŠï%{&','%Ëî±«³™·$\n98¤jrAµƒs3—N/.õB•.0×8','',0,'?'),('¼F¸«wë!²tŠ\\EÖ-,','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/sortable/field_sortable.js',0,'y·öž‡;qV–W‚\"Ù-','y·öž‡;qV–W‚\"Ù-','”E\rµ\0³ó¹ÿ¢½ü	w9½`÷¸Ñü·		‘ÂÒ','',0,'?'),('¼P)\Z÷sp9·Ûü^¦','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/WebDAV/Client/Stream.php',0,'­ûcØ·mÇ(üÚ¶?Ad¬','­ûcØ·mÇ(üÚ¶?Ad¬','ð×Ñ¯Ü(\ZÚÆ,`+ü‹°]ýÖRv[çéi+E÷«W','',0,'?'),('¼dˆ]¸=QäŠÍ—Š´Æcn','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchKeyException.php',0,'yÚ›W¥ëãÊÈ×Ò°ô?ß«','yÚ›W¥ëãÊÈ×Ò°ô?ß«','LÂÐ>4‚® ºgõ‚RÌñ«Öí+õémØ<','',0,'?'),('¼v%Ÿ”ŒS´[¿Ìª£Ñ¾','wp-includes/ms-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÀQ\næÖË„[Š|ŸJ/¶','½8f÷Ù£žÂ“¹³<}.Q×€¹í¤±•Ûëì','',0,'?'),('¼çDmIÂÌv¡Bâ[ô','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/MalformedPolicyDocumentException.php',0,'‰ÂÿSU˜å”\rÑŒ¦lz8\\','‰ÂÿSU˜å”\rÑŒ¦lz8\\','_W-NáêÒÆþ\Z’~kù–¤5àÛëv]BZ;¶Õ','',0,'?'),('¼‰ª¿_LÛ{\r‡º€K°8Ÿ','wp-content/themes/Divi/common/utils/html-utils.js',0,'ûý1¢^yŽqøV¿L}Ï¥Ù','ûý1¢^yŽqøV¿L}Ï¥Ù','ˆŸÝäRT\Zªü„5Y¢€¾\r®+åI]š3úð®fG,°','',0,'?'),('¼k’%cšê0µ\'ªÀ','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ContainerProperties.php',0,'#Š}Ô‰\'€=Nè©)','#Š}Ô‰\'€=Nè©)','ú•Šû. [”H«“’µôýåp|Éß¤óBäiUõ`½','',0,'?'),('¼š$ÊÂb>T¦r …×¹Ž','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceFlavorError.php',0,'­¸6+»5IÑç‡‹Vp[Í','­¸6+»5IÑç‡‹Vp[Í','¥ÐÆÅ(ØRYáo3ÉÑ\'Ú^D)¼¾ãP,û‚ä|t','',0,'?'),('¼Ÿ¦rsaêÐÛ9SUU¨ê','wp-includes/blocks/post-featured-image/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q¾½ëºþÅºŸÝu³éé)','…Íl«Næˆ}ÃTÐìa½¶	q˜ƒ¦)èÇæíLBŽ','',0,'?'),('¼£0vÆw)Õ› ¹Må','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë—oT$uç »“ô)cb	','6B,«­…jbxOî…:ÃÁN²ÅŸÅªzwJÄ','',0,'?'),('¼¤Õœ¦¼žôT-ÈØä','wp-content/wflogs-old/config-synced.php',0,'ƒûïË×çv÷ ÃÃ¿Ã\r','ƒûïË×çv÷ ÃÃ¿Ã\r','ÓãX-m~õÓIì+<´}üenÍ£6\rL.ÐÔ)½©','',0,'?'),('¼©‘ëØãvÍyLÔÂe¥í!','wp-includes/blocks/post-terms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð§OŠ<žã‘?O','R<Ë£hG÷f`9„U«ê=Â£ÊÃûª¤_™3HÔ°¬Kõ','',0,'?'),('¼³‚|X%jgu@èCJˆM','wp-includes/js/dist/vendor/react.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿ød:Kè£ÑD÷¨,$',';¾´–\ZƒÔûw7µù:¹©›[èÜ§/¦8—Ð_¯@]','',0,'?'),('¼¹Du÷„KŽBÔLk£—','wp-content/plugins/contact-form-7/includes/shortcodes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú¶Ý¥,«—RŸªWý’\r','ÜšØOcksC[Í\'ÃãÅá´ÂUhøßjš	4¤ë','',0,'?'),('¼Ê˜ØÖèùï¸HLg','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Webmasters.php',0,'¢å¶5ƒG®	8Ô!IXëC','¢å¶5ƒG®	8Ô!IXëC','RK‡ü©ûwÎƒº=]¬É˜6¾ü9¡’OeÉ²{Ô','',0,'?'),('¼Ö‚xRaÑÛùÇœ„@','wp-includes/css/dist/editor/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s˜LSš>X(Ù†{÷ô','sná‡Ç¸&ÐÜ½’ßT(¸¹©pÌäi¬ŸÎ‘°±‘É','',0,'?'),('¼ç•{·Ùr”ößuTqÎ','wp-content/themes/Divi/includes/builder/plugin-compat/landing-pages.php',0,'\\\"•¤dôÚ#]@?½Z','\\\"•¤dôÚ#]@?½Z','ƒÝp®®,=à¢V·u[iÁÉ;A_ùýŠá«ñ‘°9\r','',0,'?'),('¼ë¥7ãtú–7.ã\0æ&','wp-content/plugins/fusion-builder/inc/class-fusion-builder-redux.php',0,'?û?ÆÀ®Ã×¶ûù m¬q:','?û?ÆÀ®Ã×¶ûù m¬q:','³É.î¨pY,\"IûèŒZn¸ÚjIÂ¸ú>•£`¿·2','',0,'?'),('¼íkÙ.’ÌOW°îYš;','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/zh-CN.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žsÚk&Jêð«þØÉÜï<','‡†nå®íH†x*Ú^äŒëC;IñudÓ~\"ðH\Zîàß','',0,'?'),('¼ð›ÂX\"¯-{ãÊ$48sx','wp-admin/css/deprecated-media.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k+è¶HÖhº†¯¢3','õØ–)_¯ß6h§ýŒ¥1ÄÜA\\‹_lgKÀd©kUX£q','',0,'?'),('¼ðÅ\rÊÌZ³”O[Î…f”','wp-includes/blocks/columns/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1tCt¨/ã[º_Åºw\nk“','Ë‘÷©3êqg€Œn]÷_©@Éòv½„·ø¯7á!Æ','',0,'?'),('¼ûIÎqq)‚žE%pâl','wp-content/themes/Divi/core/functions.php',0,'‹ù!)… B“ÑqŽ¬Ù„','‹ù!)… B“ÑqŽ¬Ù„','y•é•£4\"W‚»¥-iÆÆÆãW|Ä^·ªvèµ','',0,'?'),('¼üUdŸ¥M…’ÙS$€l','wp-admin/includes/class-wp-list-table-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Û}‹>\r_D\"¦õCkñÔC','\\¥;Šý]\"§¤®(+/ÇÅ}žËšq5ÎôNS\'ª','',0,'?'),('½\0;G¿›l<s—Ù÷Fo','wp-content/themes/Divi/includes/builder/module/field/display-conditions/CustomField.php',0,'ÅâuÉÄÒ\nâ·^š\n›6–','ÅâuÉÄÒ\nâ·^š\n›6–','?‚ãµç¬±m$à^Mn^yó½^u\'?Eô±‡*o','',0,'?'),('½r²Š|½Œ×81=Õ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Iterator/AwsResourceIterator.php',0,'Ñ}†Ø™†+ùÿ“’oß¦ƒ&','Ñ}†Ø™†+ùÿ“’oß¦ƒ&','\\!êÀe·¤‰ZÂ”Éd¹Çê+2\"ju²`Mˆ\n','',0,'?'),('½}ã¤Ô@‡däpÁ÷çß‚','wp-content/themes/Divi/includes/builder/module/woocommerce/Reviews.php',0,'ªì0HÚ35š¤Þd“µ','ªì0HÚ35š¤Þd“µ','õ‘wfÀD|¼†áUñ·dÇƒ+-J(Ä.¨°“jü','',0,'?'),('½¦~f9\nR™','wp-content/plugins/wordfence/modules/login-security/js/admin.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g“‚ejÉñ›ˆ\'†Iø7','Uá¹%jÁGÄ§ØàÌ|]S¹Ð©n2òÜP¦T™+J','',0,'?'),('½+ÏsÊÐªzj€Ð·Âbš','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php',0,'<.cs«\rä¾Ãà—QeeI','<.cs«\rä¾Ãà—QeeI','ÒqkÈÀoÂ¶}vØûn¬réšAŒ†RKû“','',0,'?'),('½\rzé@³_ÃýmødM','wp-content/plugins/wordfence/modules/login-security/classes/model/ip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','96¿fºö®î;˜¡‡0','mgc%Ói\ZnƒA®€BŠ@ÀšwF±zÛ;çy`\rN','',0,'?'),('½+a¾À/+ñ€Ž³—ªÖ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnknownParameterError.php',0,'°7Ü`\"pˆqõ!€Y°ã\\','°7Ü`\"pˆqõ!€Y°ã\\','ð?³Ò¨ÜX%©oAöÕâÓ–Ïr%ŸtO.9lÞ¼','',0,'?'),('½8ñBfÌ™GÔ\r–ºˆæm','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Authorization/Start.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g¬ëgRCúPÊÆéÈ(ü','H‰VœÕÍ¤p+cÊ=ô…ÐóTÇ˜þ;¾{6\\m§ùo','',0,'?'),('½@G„îtÇeY\\\'>¯O','wp-content/plugins/wordfence/lib/wfVersionCheckController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ûÞiCŽ™¦^Ao*Æ','­´\'iUÙ\'FL©Ž[Ý	5ÇÊ\'*ëèa8MgGâ>','',0,'?'),('½@¾7Ç@Õ²¨¦PœÑ€Ò5','wp-content/plugins/instagram-feed/img/sbi-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥Q9tÎèqlð[*±A;L','´\nó!ÌÄ‡Þ¨¼ÓN¥Ä*ÝAl;´Øƒv•¦E“†','',0,'?'),('½E4F‚ `rKÞÁùž±','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Admin.php',0,'ÖvYWCpXÛÝ_¶•E','ÖvYWCpXÛÝ_¶•E','„9Âì Á“Òhd´I7óµÉ°\"w#	”n\'nÒTY¾º','',0,'?'),('½G¥AÉ¹ñ§Á‡$™c³','wp-content/plugins/really-simple-ssl/testssl/serverport443/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õ-ÛÐYóó¯Ðœ&Zš\Z','CWÏù·ù´Ý6zÿ®ÏfÖK’5Ñ«[1®,â','',0,'?'),('½ZžÀWtÇp¥NŒh','wp-admin/css/nav-menus.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éë&hl6…‚HÎ','Ö¢!‚¯BêíB0ô¯™”)ÎeÑ4_ß±ˆ7\r','',0,'?'),('½dÌ2Ñ[ì*^Mt²˜Îlc','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponsePlugin.php',0,'E¿Éz{ó8;j¤É\ZaÔ','E¿Éz{ó8;j¤É\ZaÔ','\\’¥ÎF#ˆî‚Ñäa²mÕ\rXº|¯tARWê¤™','',0,'?'),('½nžÚr@Å:}œ;~sÄw','wp-content/themes/Divi/core/components/api/email/Providers.php',0,'‡<×j‰œ•Üœh7¯qz','‡<×j‰œ•Üœh7¯qz','¹Ü\ZêbU®²+m<õ›É<±ž£®î,ðD°P2q/áÝ','',0,'?'),('½n¸7S¦Ú‹˜æÝÕ	‚ÎL','wp-content/plugins/updraftplus/includes/Google/Service/YouTubeAnalytics.php',0,'ÄtÕ`v¦Ó©‚ÙðŸHÞ','ÄtÕ`v¦Ó©‚ÙðŸHÞ','Ï\\oÿ‚¨j™«™[BÀqö¨ËøBV%XXy\r)k½','',0,'?'),('½q­LžÇqÃÕÅöõ\n','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_pt-BR.js',0,'ª²ªŽ€S:uêûCÙ…}','ª²ªŽ€S:uêûCÙ…}','’fVçzà(ø%\'ç¨YQ ÔÔ+ê¡íWu,ÅÞe','',0,'?'),('½„Ætrý/áj¦Õû','wp-content/plugins/wp-mail-smtp/assets/images/reports/email/wp-mail-smtp-logo-whitelabel.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï«ò·¬zSK¿šáƒ!','8”a­ÞAûš³ÉS:#Ñ\r¦_.ßô”©Š(?ªaJÿ','',0,'?'),('½„#;‡ìe½¶O\"õ¼#[','wp-includes/blocks/shortcode/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ³ÑÓXœcy	F–JGs','Ë ÜLÒë×(±½5g\0™[[{dá­íNmìj¥Âá','',0,'?'),('½Z øOg\nW‹W’2','wp-includes/js/wp-embed-template.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x)ÊtMò`WXx>ì5Þ\\æ','†b.ÊÄ»î@ß‘Ï§Eìòc\Z1âèÅ€XðZ\nÃ8/å','',0,'?'),('½—Öõ3Èäó*R!Äú+)Õ','wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1637598990.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')eíôfÕ#¡`Pž~7Än','-míÆzíÜnàNÊFûE\0Ñ­\\vqësL?—Z\Z²½','',0,'?'),('½§Ù>uÿõ@ÌŒCÁvq¬ ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureInterface.php',0,'àW»Ý…ÿ’+Å-—','àW»Ý…ÿ’+Å-—','²);jûÖC´ÙS>Ë]2Òsò~Â91Èž·ñÛÍ','',0,'?'),('½¨úô¤øBÃJ¨<«`õ¢','wp-includes/blocks/post-excerpt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ó€(²Rºu}dÎÓ€ÐÔÒ','`Í½§H9\ZÙÜÍ‰ƒ•Ë»WÊ’Sw$ÓFÿôu2L=','',0,'?'),('½«ýLDf®Ö\\žÞ¯‚¹Ñ9','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmailMessageVersions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð×2Ýë©&<)po„ú/g»','wÄDôþ{s\ny–µ¼H³†z¨ã\rˆ}¢$IÜÇ. |','',0,'?'),('½®¸½-$u›Ê™ãw÷—Ž','wp-content/themes/Divi/includes/builder/module/settings/migration/OptionsHarmony2.php',0,'Ñïx!èÕÌZ$³EQ)','Ñïx!èÕÌZ$³EQ)','HG3KèNB¾à¤\'àoŽu¥Ú¶fO%ë0¨ý„bÚ6Å','',0,'?'),('½¯!Üh>„iq…8tÕÂn','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö\0ç¤Ù>ö¤@UeììU','®È›pñâ¡Ë„o<¸§O\n¼†Oo{Öw=—S','',0,'?'),('½²¼\\†“9ºÑ•F wí','wp-admin/js/revisions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LÃÖOez²¿±nUR','ÈqæÓ:\\ÉÏHå-ˆ”Æ’’V‚Þi²ïÔŽ$','',0,'?'),('½¶)J÷l†=ÂKd{ò3ú','wp-content/themes/Divi/core/code-snippets/code-snippets-library-local/CodeSnippetsLibraryLocal.php',0,'[œ€p)•‹ÿc¶{RÍsØ','[œ€p)•‹ÿc¶{RÍsØ','ê;z¸!Ÿ‡ø ègXíŠÞ$üáÊHo­UÛYnòhú0','',0,'?'),('½Àn\'\'›l’Á9¬Y¾¾§','wp-content/plugins/wp-mail-smtp/assets/images/providers/pepipost.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÌÎ¸S-¸6ÚŽ4¼FZsí“','.„3_Py\'Ê/&ÑU×ŒM†#ÞâœN’·¾L“Ð','',0,'?'),('½Ù–‚ÅyÄXþßªþ™øÇ','wp-content/plugins/really-simple-ssl/includes/simple-scrollbar.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é´ChnË¤cÚËŸˆJÖ','Ÿ¦ü¯.ÒDh88)åVBà¿Î>Þ($öÖ2ˆLfŸU®ü','',0,'?'),('½ä<¶í$-óÔ‡›ýßÚ\0','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidAuthenticationCodeException.php',0,'±` ŸR¿á„rí¨°¬t’','±` ŸR¿á„rí¨°¬t’',' Xêò|øV BY¹êßMrWò>r³²ƒ\nÇ|\r1ô;','',0,'?'),('½én©2ªá]9ñvð%ÆÉ','wp-content/plugins/fusion-core/fusion-slider/templates/slider.php',0,'X|ÛuoºõžK„šº','X|ÛuoºõžK„šº','‡t2H\"*—WÐŒn}F4“¸‚Î\Z‡¢kž@§Â>','',0,'?'),('½õwêÏrØ‹„“Êuúié','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/FileResource.php',0,'©±>Öp«äýv­ž‰ÄÊ','©±>Öp«äýv­ž‰ÄÊ','3SJ¹“*ÿ½‡oi°UË—-uý	ŠÂ!ßÔÖâê','',0,'?'),('½õ¤i©9ü4Û+è™ä‹‚','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/AwsExceptionInterface.php',0,'µäŒé\rßÒ³—þû«ÒÓÊ','µäŒé\rßÒ³—þû«ÒÓÊ','d~¦fWúTç}+°F_Ñ\"ŽZ°¨‡+ºÏØñf<)¼','',0,'?'),('½õ³³4&GÓ”cQ>¡øfº','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/OpenSSH.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b\\Ã\\Ki>xæÒg¸.,Î','ÿ#±°;ÁM	}îr©FÈ×•£iOvþðZc™\ZÅ','',0,'?'),('½ùÈ¤Ö\"èÄ5‰™W_','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/ServicesBuilder.php',0,'+¡lþ´¬«À•qZIç{~','+¡lþ´¬«À•qZIç{~','d:nyò<ï¹X0:‘i„yÖƒí¯ˆ<µF÷dŠÛ`„f','',0,'?'),('½þ§-o¤ìêîmqâ¨\0X','wp-includes/class-wp-block-editor-context.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UÍö¼i¶ýŠ«‰•ñ3','ñÁ]žc¥ãü×­°ÑÌÑ&jÍ„ùò\0jìß¹ºÇ','',0,'?'),('¾\0L®ÛÓuwqutü£hÑ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/sorter/field_sorter.js',0,'xÙ´·\\/YÓœ„ÈŠœË','xÙ´·\\/YÓœ„ÈŠœË','‹òRP>G-ÑÁ0·ûövç(A´pxÔ}ü”öÀ','',0,'?'),('¾ˆ2h/žÙ¨	ž†¹u','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateModel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹`#HÒO¥yÞÚæB','5:ä€Õ~´†œhCà×\"¿ CM]GM','',0,'?'),('¾¦M3ÖvaBcdµ','wp-includes/blocks/search/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e‚ùœ• þN+~/…7z','Ñ,¸G* µ¯¥?aÚ~…qì<‘2E9ºfa—”=','',0,'?'),('¾:ù¢+ˆ˜hy^Wƒ','wp-includes/block-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è*püíb˜ÕšJÒ–i‡°','ù\" ¾\0ºŠ©q,ˆ=ŽLxA\";1¥¨j+qü„ŠíÑ','',0,'?'),('¾ø\n¼Gû¶>YO.)YQ','wp-content/themes/Divi/includes/builder/module/settings/migration/ShopModuleSlugs.php',0,'NŠ8’ž‰¤•CU9¦G)','NŠ8’ž‰¤•CU9¦G)','%^x?éá77Q€2ôV‡¥yŒ~-}ý•³‹?õ‹','',0,'?'),('¾!‘8ˆ†ãÃä%DÇ\'‰H','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CompassFilter.php',0,'¼n€öñ\\F–\'à“ŠƒÚ','¼n€öñ\\F–\'à“ŠƒÚ','Û:´½|…z¢¾Bã=Á9Rd^{“ŽjÁÈd±™×„dª<','',0,'?'),('¾%ße/âVw¤öÜ)¼A','wp-content/plugins/wordfence/js/admin.liveTraffic.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú—U–_|ò$>²¶’7','wRŽuåsXqñ€ìsÚa–OFvQ—yä‹Å#ÅÍÜ','',0,'?'),('¾(r«u7^¿m¬\'®l','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/worker-css.js',0,'F„Z“\\uf»ê‹•4{V”','F„Z“\\uf»ê‹•4{V”','`Ý­Ì’Âú#òYsív,	•l/(-N%í¢î‰ýI=','',0,'?'),('¾/=ï+HhEÑÞ14ÓÊ†¥','wp-content/plugins/wordfence/views/tours/login-security.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›PÉ–¬µØ3TØ±#…','>ãˆ³ecÃÂ¯f4sØ7©8ý·á#G‚`þxžµ0–‰','',0,'?'),('¾1:¿À9,×®n\"Ãø','wp-includes/class-wp-theme-json.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àÍói>®–òÍŽóÚÀK','oIÉ†0ÎÂï {B\Z…)XPÜÔËqr	ÞmZ¼ÆJ','',0,'?'),('¾7TéÁh¥õSm{\r†]','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ServiceDescriptionFactory.php',0,'™hPmžÀp¶C3æVˆ','™hPmžÀp¶C3æVˆ','ŒÖŽØMgÀéŒ·ƒçô„³3´ŒccÉ‚dw!ê‹Í§','',0,'?'),('¾;!Ó™AÔOã“þ«×Z—','wp-content/plugins/contact-form-7/admin/includes/class-contact-forms-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	èõcIÿ¤¬4÷€Í$%','‰¬|(Î¨HEâ×§ :´H.~ïVÚÞ©ë\"ä0Ø»','',0,'?'),('¾<4îíkàƒÆå7M\rî°3','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/templates/panel/menu_container.tpl.php',0,' ¶Zbgn‰”ùö@M>ƒ®',' ¶Zbgn‰”ùö@M>ƒ®','Eˆ\\˜n<X®Ð§_§&äžËk¿H“Yú\n¸‡pa','',0,'?'),('¾@)` Õä~OÝ}ï»acÌ','wp-includes/blocks/heading/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿˜+)Ô/åÌ\nŸ_,,Ð¿','~ŽÌ.¡bÖ¹ãÑNk÷ÄDÙÚ‰%3ìÞ ¼gü ','',0,'?'),('¾G¦W\\¯¼KS‘ð…ô;','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.carouFredSel.js',0,'+v˜ãÆ…æ|q‹$Qñ©','+v˜ãÆ…æ|q‹$Qñ©','HR¨n¹‚xO•mÇ™—mOñPû]ôì‘\"k+`!ÆÊ]*\\','',0,'?'),('¾Lûª?ûè0öN\\c4Í?','wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/BrandContactSupport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹gV¡@¿\ræBÖ\0›©','—õ¯ßya\"ÔˆMÜM£qû3ÖÀo€ˆ8xËÅäKi','',0,'?'),('¾T©ÙŸ^*ä8Œ¿Íúˆ7','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/MFADelete.php',0,'!axv^uÉK‹Æø8\nì','!axv^uÉK‹Æø8\nì','Í¦%o–Þ½åàÃ·hö÷~à”V\Z•!¯\"úžWu¿„','',0,'?'),('¾{ãÐßuXBŒe%9hL','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-flipboxes-preview.php',0,'kªòuÕ§ý¾¸õS,O','kªòuÕ§ý¾¸õS,O',')ˆÍsV¾‹ì9j‚\rŠ?¡–—5Ë2± t»¾“yP','',0,'?'),('¾Œ˜žÓæt³ê3\'“>','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zPÇ½”Øž“ÂÀ¡\Z~','Uô:ßi‚ œéÜ03¦v¶êÐ%ÝâÏ\"L\'Y¸pÍ!','',0,'?'),('¾ƒ—ñNéÄõþ@½(º3—','wp-includes/ID3/module.audio.mp3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŽO:Bà¦\0ÈzÌ6x`B','ð	]¢ÁÎØ	\0On°Å6B;ëùÌô\ZZ$°	2Ð¯Sh','',0,'?'),('¾‡S¸’Ð°†7È–(','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/RequestSerializerInterface.php',0,'\'$Cd\"}¢×ð¡|k£@','\'$Cd\"}¢×ð¡|k£@','«X¹A5ù4Ôµ‚7¢ÁÏí,mÒ•JØ`€éÝ«\Z','',0,'?'),('¾‰²¯jX_m¼Å.wq','wp-content/themes/Divi/includes/builder/module/VideoSlider.php',0,'KØPÊ$ÂaÁóÄœ7&Æ','KØPÊ$ÂaÁóÄœ7&Æ','‰;«}òÐ0åa\0S;\0÷Œ\0¶¤…«Ý«—Òš_ÕXÚÚ×','',0,'?'),('¾Šh¢Ýß)UG@Èx–Ìv	','wp-admin/edit-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Á`AºUÍÒ¼ÃÝš„ní’','\"ðkóNOïâþp7ìKêä(³Åž…\"±O—kB','',0,'?'),('¾•¾œL×è-ì†êûèu!&','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/ScssFilter.php',0,'¹&rÔ¶\\YìŠžÙEó2ÞN','¹&rÔ¶\\YìŠžÙEó2ÞN','}KMgÆ(‹5&ãm÷\Z»­m3x•F½%ùl·@õV','',0,'?'),('¾ŸXîìwÕ±E’ë','wp-includes/blocks/more/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÉD«d<˜¤¸\\ÚŠëÝ±','Ü§c%P<Ãà5Ã¤Š(îFzô}k?ù4•:íå{ ','',0,'?'),('¾·…d©úŠ\nU÷l\\8 \r','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/js/wizard.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gPÉ¥š’ù\nsé.5éÂ4\r','hS³ùðV4Lž@äïy^WolõÄþ4/1ÒdËÄã','',0,'?'),('¾Ç<«{Ö03\"_!¿ý','wp-content/plugins/worker/src/MMB/User.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®§˜Æpå\ZÐ<›1','\nóLJQÖÎv\0_€»959ÑRæùÓF2ëš†ÓNÅ','',0,'?'),('¾Ðm›¬=\0rQ‰R“\nÊµ','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Models/Metrics.php',0,'È?ÌÛß¶‘>¤Y¥¡”º','È?ÌÛß¶‘>¤Y¥¡”º','ôTàêŠ#\\´@òü<«Xm¿nÃÍSXÍW-Hk','',0,'?'),('¾ÒIy+VBï\"äJ20JÐ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/CredentialsNotSupportedException.php',0,'(åßŠvšÄ°Á}£È!','(åßŠvšÄ°Á}£È!','H³Ìv¸Ïá¹5¥îÚ«9#*sw2Èª¦Šnk«cË','',0,'?'),('¾ÖWðˆæžH±pG+','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/floating-squares.php',0,'ÝÆ<BvÄÀWMeðê','ÝÆ<BvÄÀWMeðê','4sî¿ïñúOD¾\ZãZ¶CtŽ1½ZÊßì†£a¶æå','',0,'?'),('¾×OžRµ\'§ófšÎRÈ','wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-timepicker-addon.js',0,'{œGo\0†é¬Ý3‚\r‘yö','{œGo\0†é¬Ý3‚\r‘yö','¼ïÙ¿½€ûOþu¢ËWr	UUe‡$á1ü\"²5','',0,'?'),('¾×¿o\Z™kL¼öW','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/lists/plugin.min.js',0,'2´8¾·:s–¥w¼9çJ£','2´8¾·:s–¥w¼9çJ£',')bò#4æ”e¬¾*Ø9(™°=ôQE£e0|1û¦à\ný','',0,'?'),('¾á2]hqu:ÞT6EÑU¶','wp-content/plugins/wordfence/lib/wfAPI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³Öû3y-LˆàÜ<ÁÜ/','\0ög‡›NiLQ\\˜QØN¸“½g!0æMJ|Lg÷*ˆö','',0,'?'),('¾ãdyUû”.V$Ê>üŒý','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/UpgraderStatus.php',0,':~cjLd—‘*ëí9äo+',':~cjLd—‘*ëí9äo+','­Ù†ƒàµó‰§÷öù{è pˆ¹ñÊOÐÀm¢†UÓJ','',0,'?'),('¾ë46cÈäZÂ¹ôÒÖ','wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/NullLogger.php',0,'ÖoQÁür›	åOØ‚}þF','ÖoQÁür›	åOØ‚}þF','ïÍ®ˆ‘`é)fçGd=d Œ³>à{UÐ‹Ä6vÌz','',0,'?'),('¾ü¤e(‡/ÒÑÔ›[«Ä™','wp-content/plugins/wp-mail-smtp/assets/js/vendor/flatpickr.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•m+®yŠ]\"`bî¹Âô','…XÙ&hÌŸ½ª!É¤ÃÐ-2´v>G\ZëÈ¼Mb/ëQ','',0,'?'),('¿9ÚÄr)îT\\ŽjÙ\"Á','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NameError.php',0,'|ÞGèßòˆ  ë-ÿAsß','|ÞGèßòˆ  ë-ÿAsß','kž™’›eªÂ v0îïQ‘7çÊ]<	™ô eŸ‚Ç¤ª','',0,'?'),('¿½,€§ZŒÆ\nÏK¸®(','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/EventSubscriberInterface.php',0,'ÔÁþïîd¸TÌšã›úd','ÔÁþïîd¸TÌšã›úd','%ÒÒUqè·zÏ4k·41ØŠbétD€ªF†yÒ','',0,'?'),('¿	IeÓÔ©[Gº¼³_Á6','wp-includes/js/dist/editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–‚Í+ôÞ¥–õ~v34x£','8`˜Œè+_¾¥ƒ…ØSÞcë¤>sÙ¶Ñ7GÖ¢','',0,'?'),('¿#²AuI.Fªù/ö Ç','wp-includes/js/wp-pointer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œ˜8\Zß@ \rÁ|ÿÉ›[d','¶O²È†m~À¼š‘gÆ·^96Ïè}>|Ì­/Å]êÚ','',0,'?'),('¿4*6k²\\,™ÚY—håv','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserUpdateError.php',0,'#Á5·m7`Y,o ¼Â¾v','#Á5·m7`Y,o ¼Â¾v','¸Ç“lã¿\0Èì¡ErÉ¿S®)bJkx“­ð\"¨n','',0,'?'),('¿@êÉ,Ðn\\–€+k·','wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9\'ôQ8bà/€çåaÈ','3t\\R>À_a²Ÿ>ö\0‘Ú|Õ‘VC–ä¦‡OB','',0,'?'),('¿Eî…ÿ<ùåÂ»¯R‘‚\"','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/lib.fusionredux_instances.php',0,'\0ÜóŠ5:ZÌ$ „#I','\0ÜóŠ5:ZÌ$ „#I','QÒÿªmð9%²U´‹ˆ½üñïó\"kûàœwø','',0,'?'),('¿J«	aÙ\rþð9ˆ\Zé','wp-content/plugins/fusion-builder/js/fusion-shortcode-generator.js',0,'Ì¿.@æÚ¨ëßs(G†','Ì¿.@æÚ¨ëßs(G†','àÄæÚÞ¨S¨¶•’öÕ±‚ðìÎzWlð’ªe','',0,'?'),('¿O/´Ã¬î`|g¨_\0','wp-includes/Requests/Exception/HTTP/429.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›ò&†ÙÍ9iÑ—²R7²','ô‹!óT“ºuwm¡t5Éo\nÌ2A\"k”ßšz­','',0,'?'),('¿S4¿>¬“€âIzÔÔ·','wp-content/plugins/fusion-builder/js/views/view-blank-page.js',0,'¤¬ÍœÓ}m‚Äg¯','¤¬ÍœÓ}m‚Äg¯','òŽ^Ü™¦ew=_Éë<†9&-áÛ%÷xW2h—Ÿ¯­','',0,'?'),('¿[©~žr½›Xä·B&','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Authorization/Get.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#L·ïcÉÿtÈÑðÇ„´¸í','ZSR_“§×q\nÛÇï!&Kÿ}Z¬:1\"Ô´“ì\\–','',0,'?'),('¿\\U‘öÍxR¤ÒSÍR','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InternalErrorException.php',0,'¯vi5¹Pž“\r\ná˜(žJ','¯vi5¹Pž“\r\ná˜(žJ',' án\\.ùÍd‰¨ô_v¦þ!©]„1ô@lÿEê	¨h!','',0,'?'),('¿mnÙ \nSsÖ•ù=o÷¨®','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/YouTube.php',0,'©¶à¤\n¡œ$`óŠg','©¶à¤\n¡œ$`óŠg','åÂ1TŠâw F¼©ý)Ê§Ëëš„mu~p½É‡×','',0,'?'),('¿n/Î¡~éZx°~ê6‹','wp-content/plugins/updraftplus/includes/Google/Client.php',0,'’¢?›mÊHÇoA’±öñ','’¢?›mÊHÇoA’±öñ','kÜ_²½˜»3Ô;ˆÞøÁL?.®M»1}SH`ì!','',0,'?'),('¿oÆX¯{;£\n ’ér','wp-content/updraft/plugins-old/updraftplus/includes/Google/Logger/Abstract.php',0,'rc©©¿¢Ùþì9]Žˆàq)','rc©©¿¢Ùþì9]Žˆàq)','ìiÔ\"ËÓÚ²”MõÌ,ì\'ÚP²¡ÂÏëùC¿','',0,'?'),('¿sÿx\'›&DËg¤]€¨Ø¡','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ­pe“¡qžÆv‘ú1G','<­0™CWxœ¥Ò×î*eƒ”Z#¨îJBÑ2€6[ËrõŒ','',0,'?'),('¿vé—FI—Ë2h´Ïø¤nÁ','wp-content/plugins/wordfence/readme.txt',0,'Œ6¿„íŠæŸ¨1ê{','Œ6¿„íŠæŸ¨1ê{','’ Oœˆj$häÎ™ÔŽÀtä®Rï­Ë»®|Ã$','',0,'?'),('¿{‰1ðú\"¸¦^ëÒÈ.','wp-includes/class-wp-widget-factory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','efp|rš¼)\neÉŸ\\','’r³&ÙØÝÞmãpKøº	(àE8£Å:N%zÝ€','',0,'?'),('¿}d‘MÇŠ…ö÷8Ñ\"','wp-content/plugins/updraftplus/includes/Google/Service/GamesManagement.php',0,':,»6£\\LeÔlî&Ïv¨',':,»6£\\LeÔlî&Ïv¨','‘vØšæþ;™’ ÿXm¨D.H^Ð÷ˆ™—o–L6jÏ£O','',0,'?'),('¿…Šÿw’êq»5X\"5Háë','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/CacheBustingWorker.php',0,'§‚»’F+Ù/*³Œ(ú','§‚»’F+Ù/*³Œ(ú','ñÞù†Îè;Ý|‚>æ}ž\\ïp$pÊ²‰ÓòžB›ZŸâ','',0,'?'),('¿”+›~â˜ÃEÞhai','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sr.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ø«K–ÞübNW$Ó	 ','ãnCo¸wZÿ]pÆd_NïÂü=\'¸·qom­¨\Z','',0,'?'),('¿˜¸s¢¢ôÜçïèÅv ','wp-includes/blocks/social-links/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZäjÜG$ˆ?nŒà/×Y','Ê.§î½ÿ<r»Ej&Î0öªªDV¾F5O©ïª› ‡£Ä','',0,'?'),('¿™s¼óƒIžqF›Š£µ','wp-admin/includes/class-theme-installer-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XµlJc\0‘2ðÔíŒ¬1T','Ä,0vÀogÏ×\0ÜL‹¢Ó9øü¤»@j\nªþãNkIÊ','',0,'?'),('¿™¸=V;¢‹ííÂN.K','wp-includes/js/wp-list-revisions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PbOPµxO¥rs7©µ2','#´ò;w´1£°.¥ËBÕÆð3•f_;ÏPf÷','',0,'?'),('¿¤%Üö}®³D/”XŠ|:ü','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidLocationConstraintException.php',0,'d›¹ù)éL2*þifã½','d›¹ù)éL2*þifã½','&væ­èºIÓR>äå˜ÓµL¾¼H$µ/n)N>æ','',0,'?'),('¿¥viEáQlXý-«PÎ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/CallableWaiter.php',0,'«eTÈðöùM+Ó)y±7»³','«eTÈðöùM+Ó)y±7»³','n,±ó¹‡Ð÷gúKÎ6—TË·ÉÜ²ê†ô³É:Þhî','',0,'?'),('¿¦p—\Z¥ŒVf·txY','wp-content/themes/Divi/includes/builder/module/Gallery.php',0,'ûšrÿ[iÅ°öŒÈDv','ûšrÿ[iÅ°öŒÈDv','?®Ð¿ùeDÆnÜÌf®÷(óðÍ+dÖâê	48ƒ—¤','',0,'?'),('¿§ÜrV\'*öU¬è‡Œ=U','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©‰|®Wwšb>EÏòyJ','‚\'À²Ž¯­~À6È\nBŠºÂagÂzùÁëdÃëQ','',0,'?'),('¿­¹ü”´.\"Â¹Wíã½ïP','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlHandle.php',0,'L€l÷8_6$-	HÄ÷…g','L€l÷8_6$-	HÄ÷…g','\Z2‹ˆ*•)ÈOQáÔk‚ƒ¬G•ˆ©Ì—*òµ¥¯¡àÎ','',0,'?'),('¿³`ó\nÑjžçª‡A^™','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/schedules/ActionScheduler_CronSchedule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âW\"2•ÆÞ(‚\'HÑKyv',';ìô¢[ó9#ñj(Ž¨d*Z¨7V]J2ôA™Yé','',0,'?'),('¿·\n…Ó›IQED	æüê‰','wp-includes/class-wp-comment-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d‹’ª!T0^Ä™’éˆ:µ','·QøàÏÕMÁ£•š¢b?SÁî_c%þÓC1`A\0','',0,'?'),('¿¸÷ò\\èM¼MøF/±I','wp-includes/Requests/Auth/Basic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I}\nºÑ´¤ŸM»ž\"_V','—ŠÖ8¼ñhŸñsß+dà°Æƒ¦œá°*&ã9É¯ß','',0,'?'),('¿¾¬H¯Ì”KÅ³YP3','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Resources/s3-2006-03-01.php',0,'¤ëqI{‡\0(0TM\"¦&','¤ëqI{‡\0(0TM\"¦&','zu…mÉÌ\rERÙ¶·½Ú-!ôÒ=¤Q›¢ØN\ZÉÐ,','',0,'?'),('¿Ä/?\r™hªëgù;E&Tù','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Mock/MockPlugin.php',0,'~¼üS5>¾,oV.Ï¡leÏ','~¼üS5>¾,oV.Ï¡leÏ','¡.Ñ©‘\"ér«›¥FÃ;¿ÿìªÍVšŸûÚžDÞ','',0,'?'),('¿ÑkÜ€eª>°»Kr','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateUpdateContactModel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ëÉ°Ç½¿\'ì\\rCThÉ|!','žZ ÌÐ/|ÊÖñ‰U;À1ç´5fÐ¼‚\">','',0,'?'),('¿Ø	2ÞÎ¤\n[5ÌÔ>?','wp-content/plugins/worker/src/MWP/ServiceContainer/Interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0KöÛ¸ÙocÚùª\n#Ü','~QõÚ·ùÖ3Ý$KÖïæ•pøŠÃúÝrÌ7Tã§\Z','',0,'?'),('¿àÎš,ÌQ˜a»gl·Ä\Z¯','wp-includes/class-smtp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.æ–šaˆqØÝ“Ï ©¾Ž','B)HJ¢¬«¥ÚòR¨psÐ Ýø˜¿©	+\'8k_','',0,'?'),('¿ìL\Zã—Å|¨=šc™‰','wp-content/plugins/wordfence/modules/login-security/classes/controller/whitelist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B0õ÷™šìou‘ÌŒÂ','Žœ‡ü7/QŒã¥åÆÕwÿg:Ä?¡À#{sþðÉŸú','',0,'?'),('¿ö¦2‹S\r©æ/bøxVPg','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t×rèI¦±¯bw\'-7íš','³u©SÕ{•ü<ø“ôn\rß…+-#²;»á·ƒQÐ®','',0,'?'),('¿ÿdA#…öÍ*ç‚Å¹o7','wp-admin/js/customize-controls.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9I\\„ƒŽþ‡ˆ*øWÂ¯ý^','¡ùˆU&q×°xüUcŠëáæPÉ®ÅÈ\'ùf_™Ï\0','',0,'?'),('ÀÎV\ZFÃÓ\0áÌŽ|€','wp-includes/sodium_compat/src/Core32/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß@BgéÁ»EJøÆ½H¶','i§í¦|\\I¦—ÇñE‰‘ŒÉ_•¬Xç¶ˆj’Ù','',0,'?'),('À«ÍxËOW\rƒ ¨ Ç','wp-includes/sodium_compat/src/PHP52/SplFixedArray.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©£Ø¦TáÐ¬©Ô„cì/¥ô','TJ¶)‚,8ãq²@©fÌ<DÚ›”Ö\rxÝÈåÄF‰','',0,'?'),('À5Úœ šÇ2Ïl2{„','wp-admin/js/widgets/media-video-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÌÚ:çÜ¥óÎd|QùSónÚ','…ÊR;T„›wh©æm^Êÿ²éòà½äœºüÙKñLÀA','',0,'?'),('ÀDˆÿ!VD+“óêë','wp-content/plugins/wordfence/views/scanner/scan-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N½V†³Â	¯9çJ·','ÖƒáÏhbfõ#æðÐ‚‡ÚOEéíRÝâþ¿ž9H\r','',0,'?'),('ÀM¹/<æPôßçf.¤ð','wp-includes/js/jquery/ui/effect-bounce.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â;B¢ åÖGYQûnòß´','ºõ§m/Ãg|Ú¶\\®àÁ¸e(«>6™£\n¦-G!Û\0','',0,'?'),('ÀO £ïozEß¿ü7v¤¤','wp-content/plugins/wp-mail-smtp/assets/images/font-awesome/exclamation-circle-solid-orange.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§©˜÷Ž/Z7›ÙrQÿ','ÇÒƒ0©Ø÷;nÑM–Pï5¶¿ü>øI§»0‡ü','',0,'?'),('ÀT(TùõvÁ´edÈ$f¹','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/Stream.php',0,'1„“‰\0•!Á†åÅ«','1„“‰\0•!Á†åÅ«','j¥£Ò	f½\'îÐgH\"EÜx•Ë2Éb~éFð\\e4','',0,'?'),('ÀVMÀVº4ŽÐ±í¸Cª','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RemainingCreditModel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯Òñœõ¨€1Cx*68#','+î«ÚÐH¡É~¶ç)êJ¢1ÏúrQztL','',0,'?'),('ÀVT®™2eãwÎgß‹u8','wp-includes/js/jquery/ui/button.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦	ôé.©ØÈ´üfh~O','Ã›º.Úk(5SŽ1öÔ!–ž¯­>®^I tõÈ­ÆÆà¶.','',0,'?'),('ÀhË•ÍÈŒøù\0?½0þ±','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/AbstractBatchDecorator.php',0,'¹ñÎñôÕµˆk!›&Æ','¹ñÎñôÕµˆk!›&Æ','â±‰ŒëóûíÂ¤ß	ÖA‰—”gÏšRX-¾à\0','',0,'?'),('Àpÿ×jí¿ä²19é†_¢','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autolink/plugin.min.js',0,'žÈ\nÞN\0fÙzAKYEŠ','žÈ\nÞN\0fÙzAKYEŠ','Ì…€z×úøÕ\\ñÉÿ—M/Ð,¹ŽRtTKÃi{ñØ','',0,'?'),('Àrå~ÔK/„sù®0¥ÈD','wp-content/themes/Divi/core/components/post/Taxonomy.php',0,'\"<î‘S×W61¡\"Ý6Â','\"<î‘S×W61¡\"Ý6Â','×Kh#\riiüR¼ö†§ý7û·gUœé»W\0=<','',0,'?'),('Ày†`‚4ï	\09•é˜û','wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/MysqlStatement.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œa}‹ ëÕ }vÌ6÷¹y','\rì~.Í³{(HÜ©˜>??Õ¤6Ú¬ëíC','',0,'?'),('Àz»6ÙÙ+ðÔÜPH\r¦tU','wp-includes/css/dist/block-library/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A<7pƒÀ\Z@!ToPîDf`','k£heÈÖ:Ÿ(8pów¹r]pU*ÞgÒ;\rµçtH‡','',0,'?'),('ÀË¥Ì°MVÐ—eªAú','wp-admin/js/widgets/media-video-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3SóºÝ-!@|¼©[M','ùësƒn¶úñáÔUÿ»ˆŒÃ¼Bo3Ÿ}Äï+¡+','',0,'?'),('À‚ÝsÇ;§õW8’Õ','wp-content/plugins/wp-mail-smtp/assets/js/smtp-dashboard-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cHs˜Œý¯µÚªÕ\'q=#','dbåð|ã#ô.²¦†”Œ%it³öºd‡Æõž½','',0,'?'),('ÀW=‘@ËGµ|bÂO','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/advanced/advanced-tools.php',0,'â)\0{ö©€Æ´š·õKË[ö','â)\0{ö©€Æ´š·õKË[ö','Zó<?>J2F÷~Ç’˜•Ÿœ24ì1†Z“é‚|íÔ ','',0,'?'),('À˜t¦å(‹iltY/','wp-includes/css/dist/list-reusable-blocks/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q9ËµëÉzÇ(O£±äž´','üÐðõïx&Cí£no\nDý´ð›/äÇ¦T¾EIš!Q','',0,'?'),('ÀŽÎ¤e;yÍ[ð¾9ë9','wp-includes/js/jquery/ui/checkboxradio.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ\"VSdF\n¿¤k †ƒ:','$Lq‰íí\'×îiÇ>WuY\\§¦ø{Ék °\rÇ{','',0,'?'),('À“±Ü\ré*}ô—FÄzxÃ','wp-content/plugins/wp-mail-smtp/src/Admin/Area.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€æ6+ÔÈ”M†ÿ5¸Pp','^‡æäÝ;ÒözŽdiýéðNRŠÞ¤5˜É·6`–','',0,'?'),('À”¤G:§¾)™›:`†Nå','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/RevalidationInterface.php',0,')ÿäùEéåTQFué·èÞÀ',')ÿäùEéåTQFué·èÞÀ','TT\'h.k{&F\'v\0Ôå®å/`\0pécifá5ü3Ýÿ','',0,'?'),('À.kßñž’¥›Í/Òh/','wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/Observer/Log.php',0,'¹ÀÑ¦~ÔV“-3Ã&gå','¹ÀÑ¦~ÔV“-3Ã&gå','T›²-’ìÇ¿¿‘[¦ÝýÐ™_dº—ÍàÑ‘yåÐÄŽé','',0,'?'),('ÀžUèŽ5À®á”uÆ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParserInterface.php',0,'´ØÄËŒ¡:ZÈóÛãä÷ô-','´ØÄËŒ¡:ZÈóÛãä÷ô-','b¥º¡al’ÿrzØiQTý§	ãSZÑ“f“Jk“±','',0,'?'),('À¥$ž};/êƒ²{1‚ù','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/StatusCodeVisitor.php',0,'õ>{Oà<Ü…ëñbï1Ó','õ>{Oà<Ü…ëñbï1Ó','o8”éä%d=¨D-o€jð¶äˆSYJK$£7¦ÉÉ','',0,'?'),('À°5>Ðf0ë‡YŠµ1˜','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Account/GetData.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š–ª­Qüé>j;Kø§,G','.<ŠIaF&®4X4)¨ÔÕ#˜<Sæz%\'JqVnRå','',0,'?'),('À±3\"ü(zÙa€4î8Œ','wp-includes/images/media/code.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-o–­UÊ“îÕU©U_','\'eM a[R#q2š×kz­+*<üÄü÷Ñ7\0ÞÊj','',0,'?'),('Àµì—5‚MFÄ¥/oüðÈË','wp-content/themes/Divi/includes/builder/module/FilterablePortfolio.php',0,'ÐÒÑB~Í<ìÉRþl','ÐÒÑB~Í<ìÉRþl','çèbiöµkõq²†¤èuF®ÃÿK\r<U_4¤É\0u','',0,'?'),('ÀÂ\Zó³\'y°…·Î','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.placeholder.js',0,'Eëu>\\`ªz2»ÌÔTi','Eëu>\\`ªz2»ÌÔTi','è›>º:l8\Z³ÌV? êà¦áº¨!¬1¤·\\7 ,\n','',0,'?'),('ÀÆÎûúmºÐ{·@¯mß','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fChc-AMP6lbBP.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oLFÊ’4å¼Õiî--','Á‡¦Cc#1_»œ|Ë·Z  ¿ˆ1€—É¾ÜÕÏYxí','',0,'?'),('ÀÊz÷O|¾ˆ„b©2+&S','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/LessphpFilter.php',0,'yœ³ÅDyFÆ?½K>\n0','yœ³ÅDyFÆ?½K>\n0','à´Ð6qW{üzXbÒÛ$›Í’¸z\\HäŽÖ@ ','',0,'?'),('ÀÌÜg}Ï~y\r3aèg”©','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchLifecycleConfigurationException.php',0,'\'ç!ºç,@®m!”¦W+¥','\'ç!ºç,@®m!”¦W+¥','OE\"pI`ˆô#æ…ðb}÷°A»-sÝaçsXpÒ','',0,'?'),('ÀÎ“Ï¦È7rR“1ÿ(6','wp-content/plugins/wp-mail-smtp/assets/vue/img/sendgrid.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾…&×¥ßšÔ¾i…ãþ­J','ëYÍ0ûÛÛ§{ÁÆDÌ›­0ö\r0F‡NºKim¢','',0,'?'),('ÀÔT„+‡]š?ÙtD¾','wp-content/themes/Divi/core/components/mu-plugins/SupportCenterSafeModeDisableChildThemes.php',0,'Zm\"\Zmˆ~›¥E0ßz','Zm\"\Zmˆ~›¥E0ßz','äjÜ:–}BuÍì0tÿä¤!Êv¦KúÕ=°\"&ÛÝ','',0,'?'),('ÀÖU“pQ vä	ãk>','wp-content/plugins/wp-mail-smtp/src/Upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O¨l§Fšð.ît]\0y2','µ>©\\^B9%ç÷;Ç¦;|û=eÅ/x;¯a°Ž=','',0,'?'),('Àäo¨®^e‰ÅrÌÏ?²€ƒ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/AccessToken/Revoke.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á3]ŠiëEÀ3¶±,€','<f{EõOpXÏ¡2êWPÜt­&oñÇ»>t*›ø','',0,'?'),('Àò$l!LSW«&¾X¯','wp-content/plugins/worker/src/MWP/EventListener/ActionException/MultipartException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•›¬ÃWY\\U)\'áØÏÀ','íb±xUí‚ŸŒmroI6ìÖIµ/P‹JŸ2ð\n','',0,'?'),('Á\0ø\'ãV&ŒMŠjÖ_Œæ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceCreateError.php',0,'z—tÞÞÂËûKi\Z·IAW','z—tÞÞÂËûKi\Z·IAW','“Å¯C(#\rïø(\0\'™Á‹[Î˜m·¯­;x£¬êÃ','',0,'?'),('Á{;ä¤BÃ<30¯©','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/vendor/Parsedown.php',0,'«Äo\r±ú<à	‡éÃ™A','«Äo\r±ú<à	‡éÃ™A','‘Gy €qYœy¯Kž0ÝIªßy_‡B©{#UŒPî','',0,'?'),('Á~Q”ÔÅ´FpìÛÍ','wp-includes/class-wp-taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kx÷om¢µ„uä„5t¸','å×8TI³|µ|C’!ûÅ`vg¡#ÕQ!É“{=“Ì','',0,'?'),('ÁL76Æme¿)+Ði','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/UnableToConnectException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þ»8”½¬‹héÔ×þ}','XáÕ`œ|2GÒL{Ü!ÏxM¼‰kHÌ—Ï‰87>','',0,'?'),('ÁÌëC¼PÕ©¶çK','wp-content/themes/Divi/includes/builder/module/Code.php',0,'@ï´óÖIþÐÖóh‘ƒ','@ï´óÖIþÐÖóh‘ƒ','Ï!£ôVQÖÝ?’ÏÌR<\0TBQÝGZÿèTàj²»Å','',0,'?'),('Á@óƒ„÷Šœëµ°On£','wp-includes/blocks/html/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vü3*‡Äû²”$','›c>žN_ã8™‘½]½¾¹æ“ìƒA\Zû6ì','',0,'?'),('ÁU«Ý	ŸžsSÏR+4¸','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterClassFactory.php',0,'—áùK#4k€·öì]‰ìì','—áùK#4k€·öì]‰ìì','ß7æ»Â¥ÚoKÚ”·s Fj^1u™ÈKÐ)öÆ‚o','',0,'?'),('Á\ZÑàœsxø2„#ì','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/da.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yq»tÌŸ_à–á]Àã','NB}ÄŒNJç§­’E,­M«nV`4+q]ôSÀ‘7î','',0,'?'),('Á ñ‹cRBÃ1Y­Û¸³','wp-content/themes/Divi/includes/functions/dynamic-assets.php',0,'4èD–ÿ5Ùôû²ZGžä','4èD–ÿ5Ùôû²ZGžä','´â+¦ÝtL8Ib„Ì–!MŒ?D¹¿~„ãÕF’ª','',0,'?'),('Á#^Xjú›^µ\0G[¨õq','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SCP.php',0,'Fjî‹ò×ÝÏó[]ü','Fjî‹ò×ÝÏó[]ü','	ÑZÛVTÒÖä„ÃÃU+¸öhóa‡àg‹-hHR¯ì','',0,'?'),('Á&¯Kðœ&ëÚ„€XgŒ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnHttpError.php',0,'döwU@¡71	€,5­','döwU@¡71	€,5­','}~ân*k(œç‡ÑèÚË{C˜MìÅ3•³\0$','',0,'?'),('Á)¤tÂ”ú*Ìb<[í','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Service.php',0,'Æ•¢-üp%¤\nª£çrˆk','Æ•¢-üp%¤\nª£çrˆk','\'Ýº¾þ0paòÔ3!(ù¿uþ–±}áL‡VÛ½','',0,'?'),('ÁkHmå1Óó`0Ñ¹¯–_','wp-content/plugins/wordfence/lib/wordfenceConstants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú2•ìÓÎsgÌ5¯äƒ¥l','î?*¯¯\0Z:WXÌ©ºk k\0IMð´ÿUT','',0,'?'),('ÁzÝ¿ä¯&Xâ™6¤˜Ìs','wp-admin/css/media-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uœ8Ê„qG†ÄÂ<!í“N','1áR\"¶­Ô\'er„™ŒÓ€[™â P+ùT,f!','',0,'?'),('Á…Ÿßh¿j“9\ZHðZqQ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Signature/Raw.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<+¾%Üš«c•2ÂEþÞh%','¾êh:¦3L:,j[ÄÞÔ*r-§—£‡T4vf_','',0,'?'),('Á¥syÎ\r5#œ°4','wp-content/themes/Divi/core/code-snippets/post/type/CodeSnippet.php',0,'–Lß|ÕÇìC3Y.cW','–Lß|ÕÇìC3Y.cW','Qïã4z¤h#!.êš\Zjð©Š æÈB\\¤íHïÊ­I','',0,'?'),('Á•Ü·ÌÁ°î}óÜÜ«Æ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/DefaultEngine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','à`\'¾%æ¨f¬õJ„ÚÖ','ù³™,~Ÿˆm1è9µ‹1ñð¼{FgfÁPÔ33õ±','',0,'?'),('Á—¿”ì\Z,Ú€ÓôF®','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/SassUtils.php',0,'»b²ÈnõðR1M±Â','»b²ÈnõðR1M±Â','Ù¢Üõ\\êzG…V¨¤y«?2ƒõõ#†”‡DS*','',0,'?'),('Áœ!çàyÏF¼¿]ÉÆÃ','wp-admin/includes/class-wp-ajax-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Lïg=³%cn†	}Ç£æ','(–`¢¹–ÄºÝEÎÏ™)#ß‰IÄjHß Œ&Ú{','',0,'?'),('Á þ¬\n ðææü„Î(z','wp-includes/PHPMailer/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öŠ‹‡ÊÂß¡‘M(…èñ','œ¸A+n7·51ìKŒåëiöÃ|Yœç½m','',0,'?'),('Á¯d<9prŠ¢5ZQÈ·','wp-content/updraft/themes-old/twentynineteen/inc/icon-functions.php',0,'oÄ™6\\4*­ÔõGÎšÉ','oÄ™6\\4*­ÔõGÎšÉ','*‡ñîXµ_\\:Ì„wMO^9×LTr)¶ÖUF´Ôèt','',0,'?'),('Á½º<ù[Ú¢iÝáßúŒ\r','wp-content/themes/Divi/includes/builder/module/field/display-conditions/PageVisit.php',0,'g3ß”RRxMõMQŸÉ}¤G','g3ß”RRxMõMQŸÉ}¤G','„nÅO&\"Ng\rÇérZÜ×Õd0¿TÏnì“Q','',0,'?'),('Á¾!äT¹«TC`”óÌd','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/SodiumException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«HDfé×ae¤ãÔz°R','ã¶œ\\‚©L>LöN-@G\'Ä×tmGºãi€‡kRß®g\0','',0,'?'),('ÁÆUÔÎæ}’¥š	šQÚä','wp-content/plugins/wp-mail-smtp/assets/images/reports/icon-note.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…ÈNÑO‹CþíZ#	\"ú','R	ébÜ¦P[cFap¼–Œ \'$*àÏîB\'','',0,'?'),('ÁË%ñ•b	Fy4','wp-content/plugins/updraftplus/vendor/symfony/process/InputStream.php',0,'Zæ&°ùÀ^IwÛŒÉ1á','Zæ&°ùÀ^IwÛŒÉ1á','µb=Ð*.èåé\ZV±“bžèSC¾ŽO]k®J÷>','',0,'?'),('ÁË½htÛhA¦eôÖØ©','wp-content/plugins/worker/src/MWP/EventListener/MasterResponse/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('ÁÏù|-\rÓæ7ƒ	„d@l','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/HeaderVisitor.php',0,'C2O?ˆºÔLJ.\"','C2O?ˆºÔLJ.\"','VBÚº]!í$[m3Hù;Ï?IglÑ—Ýƒ§³)&a','',0,'?'),('ÁÙµ\nh¶ÍJxµdvÏÔƒ]','wp-content/plugins/wordfence/lib/wf503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\-ÞopÏ`Os}B€','/ï§];ã%X_çkz#OûaÎ;Š×ôHëßŸ','',0,'?'),('ÁÛ7\\n5.¡ å¤Š/ë~ñ','wp-content/updraft/plugins-old/akismet/_inc/akismet.js',0,'ey+Êx+‚#÷<ö`UûÜ','ey+Êx+‚#÷<ö`UûÜ','ÁÀqºuÛëF¦@IetÊ°·K¦c5gr§µžk¯Ù¾ ','',0,'?'),('ÁÝ+ëMD¡ŠôP3€áy®','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobBlockOptions.php',0,'SØaÖ;OÙæûú¼öÖ)','SØaÖ;OÙæûú¼öÖ)','d 1«­ö‹ûQ½lˆÄtRo	ª‰IN««èºÂ9ùb','',0,'?'),('ÁÝ,â=ü,èºbªŒüngÁ','wp-content/updraft/plugins-old/akismet/views/setup.php',0,'MCpÇab(Ì_´Ÿ“','MCpÇab(Ì_´Ÿ“','m	†Ã3(TN€—ÚíÅí,ñ·Åî‚ÂøŒj¶','',0,'?'),('Áðý.…—±\0³hG]Ð','wp-content/themes/Divi/core/code-snippets/app/store/edit/actions.js',0,'¦•ÈŽ‡ý*ZCU!šE—S','¦•ÈŽ‡ý*ZCU!šE—S','¦E™×h…Ù\rxsSÈŒbLë¥ä{‡›uÄ(åd­ê','',0,'?'),('Áð $öT†Xü@#Ž„A¤ç','wp-admin/js/widgets/text-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒHêÎÒäÖ¬È–âã„—','hw±¦þÊ,ÓDzã&Ðt¨é=#]$3žŒµb–','',0,'?'),('Áñ¨*mKx%}½Öï','wp-content/plugins/worker/src/MWP/Extension/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('Á÷ëNâ“OÆÒTð)EH','wp-content/plugins/contact-form-7/languages/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YT&\Z˜o^GÔ¨£Èô}','MžäâºOá¯(ç\rOÕv[±ã/FB•AÃ>ütCw','',0,'?'),('ÁùÁ2zsñŽú4xÎEB','wp-includes/ID3/module.tag.id3v1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IUÜ.QØcÜgðÐôŽŠ','C„åBH¡9¡ÞDýyû;-ãK€:LAx ?8\\~Ü	öì','',0,'?'),('ÁùkáN E?)%~âScï','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/ClientOptions.php',0,'O€T—¯x5‰O£g','O€T—¯x5‰O£g','‡vÊ’Ã¾éd%‹46ÂlòH­€¸¼âÝo–Åšœ#iª','',0,'?'),('Áü9œŠü}ù(:–Y','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/bg.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rFG¹Ž®1ˆëáÝV¢','íŽÚ„Ö5\Zÿ·òy¥W ˜“óûíî\r°g,D','',0,'?'),('ÁÿÁ’þù‘+Œ>§h )','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Mimetypes.php',0,')o<ªYŠbüÀ\\ÞfËä',')o<ªYŠbüÀ\\ÞfËä','¹ÃÎµ«?û4Jí‚cIXÌ‰{Ì©¸»AÈ”ºOyýð','',0,'?'),('ÂObc®³\" ÎÇÛ|J(','wp-includes/images/smilies/icon_evil.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð^ôM>Êz“åø','¦çQ|x>¿Åé@VÐ›_¸/€\"ŽÎWô™ó¯%S','',0,'?'),('Â’¥µe­î7”FÓ%','wp-includes/blocks/post-title/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7µÜÍ	ûíÕ+=Ï×','\Z_ÓêE(Ê¯z«mc™­ñça‡Âœ1&-ö4)','',0,'?'),('Â´‡r4K¤5þK%ðeµ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/FoldersApi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ôùž5‡G©=„Ò.','*=Â\0&JpÏK\0?Z,xUòkÜ\rV6Àp4ˆë7\n','',0,'?'),('Â\Z¡òc8—@ÕFå|¦Û','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Xsalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…b4Ç\'¡—&ëŸð','Û¼ó›Š4P\'ô¢ÑáhNêaë>·¨ÛEþ5à°›','',0,'?'),('Â.Yü];NÁ)½D<¶','wp-content/plugins/really-simple-ssl/assets/cross.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0¡ÊFÄ¿%\'HÔžã‹q¡P',';3;»ë-¹ÜÖ›æ¢HŽ/Ó¬Í[ÊÙç.~(¡ü','',0,'?'),('Â1¨ŒWV(2Ÿ˜6²„³”','wp-admin/images/icons32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÑÛ¬[çm9…çJ¡4Ì\Zê','DÌkCd‰î—i|a|™¹àÝÙ+ò\ržx‡¯ÌŒ¼ñ«','',0,'?'),('Â6³¿MÍ“Æè)Ì»','wp-includes/blocks/text-columns/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\à¨Lä^…^íÑJW¸z\Z','â¢o[.7~Cm*ãÔ-ül‹Õ=çBPûø5-IL¯','',0,'?'),('Â:Pó—\r‘]è„,™å²¹','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/notices/horizontal-notice.php',0,'h»„qöÒ[Üû{m÷o:Ê','h»„qöÒ[Üû{m÷o:Ê','ßùUO8y3ªN|è®nšØÌL^xÔB¬7m&2^Â§µý','',0,'?'),('Â<ääÏèöÎjÔy#ªÓZ','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/tk.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B+š\"JÖl€¾­øbxú#p','VÄl¥HÇ­ùv¬M	<ªçRzSf§Æ5‹³ÐãS','',0,'?'),('Â=YÑƒ^@A&ý„Â¿','wp-content/plugins/wp-mail-smtp/assets/css/smtp-about.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<”¹)ßÆƒþ_ÇGS¯','i± ¿ëE™ì<FJJ`(‰ÂS}‹Ÿ îQ~‡$ÕEú','',0,'?'),('Â=©¼†}ÿLsQ\n`q&','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[M/*ŽµEæ<säWÜRG','\nðÁ\\‚¯XÎ°Ö¨P’°AåÂ—\nXjð\'£;qý{¬‡aÖ','',0,'?'),('Â?J’5À±0xÊâ..»Qe','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureListener.php',0,'êYÆTCgµ‹ÈÇeË¨','êYÆTCgµ‹ÈÇeË¨','T˜°ñÐ0N9‚á£åç\r‰®“ÞŠK¢S‘}€ˆ s5','',0,'?'),('ÂCêº1t;š˜ê¤†¬Ý®','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üíû7ÖŠi[L¯9ÆH	¥','ß¹{8(ü•Ãatûÿ\0CÔn3Qí„Ú¤\n‰l?¼$yñ','',0,'?'),('ÂLˆñ4s6†±qPvà¾€','wp-content/themes/Divi/includes/builder/feature/et-server-frame.php',0,'ê«È­nªL\0°Ž=Äð','ê«È­nªL\0°Ž=Äð','2Æ¿¾ÜjÏØ	¬@À#eSl¼HÃýÌÑeìí¨~›eY','',0,'?'),('ÂMPs½X!âÁþPÍÉ','wp-content/themes/Divi/includes/builder/plugin-compat/table-of-contents-plus.php',0,'0^4qU÷Ñ9-E³™a','0^4qU÷Ñ9-E³™a','öT´4MöBäæRÒI—£¸-\Z¼XH^|×øƒ¸ëÎ}','',0,'?'),('ÂM†_’U¶ã7O²Øìôq','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/Parser/S3ExceptionParser.php',0,'‹æÂàª¸²vÏ,Ù6üc','‹æÂàª¸²vÏ,Ù6üc','m)Ï,-óVç‚nzDuÅÌÿÎBã“=4¹žXÁ','',0,'?'),('ÂN-Eâ„\0Ë3Šum•¤','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Http/BatchRequest.php',0,'ãhöÒãK\0ò=Sú=’JÞñ','ãhöÒãK\0ò=Sú=’JÞñ','f­sà¹ƒ?ÂEîš­0?i5œÙjwGŸb¨m§i§;','',0,'?'),('ÂO“tg˜\02‘\\‘BÀ”','wp-includes/assets/script-loader-packages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J/¤¤&©¢þÍE‡\"Ã',')È‘Fç/´V!7“Œqk_A²ƒÈ+ömi§$@ˆ:À','',0,'?'),('ÂYm–Rôl«X\0ø†Ù:','wp-content/plugins/wordfence/views/options/option-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°Ž„æw\n£Mus•ô žµÌ','O¾Š¯=~jc#ý6Ž¿LçªœÝÊÑÄasòWÕOQ-','',0,'?'),('Â]ìˆŠYTÃïXm°+%','wp-includes/js/dist/vendor/moment.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F´ok#ñ/áêËe','ÔãíñÓl¡G&Ü–­°µ÷<öµU¶»[[åm','',0,'?'),('Âhgòy.ž8Ðç´0ûû','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Replicapool.php',0,'îBsxÝkr/ÂŽ©ªÛ|j','îBsxÝkr/ÂŽ©ªÛ|j','µ§‰6ê:û-éauQb™Œ¬oW0á{ØFÈµ1oÜ','',0,'?'),('ÂjÕçUÃUé‘X\ZÐè/J/','wp-admin/includes/class-core-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d˜eí¤“ÑòpsåJÙ','ðL?<ý#p®_Øã4i4˜Ã‰ö5òVŸÆÌò\'','',0,'?'),('Âm\"›£uÀŸÐÄÜÖ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/SetBlobPropertiesResult.php',0,'è±ÀéìCÛqÜºOÑ9','è±ÀéìCÛqÜºOÑ9','OÁ9;¡¸–`ZnÔs–Éæ)çë\"6_ð”1ÍÉ´žŠ','',0,'?'),('Ârb6ÌeTyræÒüCã','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/installation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a^×êºS¼‚ùR¿T„v','ƒKºbA.¿¹ú›.s.ˆ„ N;n0çþ2h+','',0,'?'),('ÂuóAÆ/õ·Ó}*Äb','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/Response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B<ebÙMOÏˆ@º','W[…cpU¯c¾L«íÔ[sÅ$¥ŠÁ&{£tÝsSRa','',0,'?'),('Âzì¬E¥Wc¯Â;CF','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/fr.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2èêÏÚ~­WQžrÒœ+','\\­x;&\n\"Sw€y¼†BÅt3»€XòÓÃ„P®','',0,'?'),('ÂrÞåXÞã=pç™','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/lt.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4Ç>Á\'Ø‚âÖâüà«','ÈÊ„I(¥9ßÈ—|Ÿ‚ñgâqr¨DºkíÛSë','',0,'?'),('ÂŠêgØ²h/á¸®™O²N','wp-includes/class-wp-block-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ew¬´+½v–%&hf‚6\Zr','£9²@¦SRÔºb5òqå®é&r{×¬‰¾ztÿ','',0,'?'),('Âþ÷ÀˆžÄ¡!±ú¦‘\Z','wp-includes/blocks/categories/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V>çm\0Or<í4Öˆk','öÇ:\0†¦à²Ü\r¯™¿o	GžB\0cÇê­| l;ˆ','',0,'?'),('ÂŽõC†s«,è*·‚øSä','wp-content/updraft/themes-old/twentyseventeen/index.php',0,'µ¹ÜV»ŸC1Å”¢Ýugz','µ¹ÜV»ŸC1Å”¢Ýugz','â­9°‰¬`›||émf†:FñÓ%-¬/Ä…ý¯ÌE»áH','',0,'?'),('Â‘{g\r½!ˆ%L\"¼NMý','wp-content/plugins/wp-mail-smtp/wp-mail-smtp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£éÇ¼Qq8°©yRfÓ&V','‡}³ÇiJ¬<®(•Qb«%1ÏjûÂ*A1¤Â›Z±Öú','',0,'?'),('Â¢(Ê|ªêíìiB<×','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MalformedPOSTRequestException.php',0,'j©›\râO.±©Þ}òq^8ó','j©›\râO.±©Þ}òq^8ó','»œÊSÀE™ø—UÅbÎaÆ	g’Éµ$\"«ìa•ò\0ê','',0,'?'),('Â§²Ô	•‘:ìrV ³¡‡','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nã[%õÔ¸Cë.Ø¾”«','øM~%›:ø`c–=ŸÑ—ö=BÓ‚½!—ânöa·','',0,'?'),('Â«ñ°?Ó³¶(›ÿ¡4b','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterClassFactory.php',0,'—áùK#4k€·öì]‰ìì','—áùK#4k€·öì]‰ìì','ß7æ»Â¥ÚoKÚ”·s Fj^1u™ÈKÐ)öÆ‚o','',0,'?'),('Â¯Ìqãzæ\ZŽ5p©','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/CreateContainerOptions.php',0,'„1§[6”‡#H¯Ú‰','„1§[6”‡#H¯Ú‰','ÿéÍ%V‚¸ºåwËëmÑ&ÔØ@^¬i‘ðÔÑD‡4','',0,'?'),('Â°äè»/??ò`4Lù‹t‘','wp-content/plugins/wp-mail-smtp/src/Providers/Sendinblue/Options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ý^õ³ˆ­w\ZcûFo?‚å','zà@[¶¤ÎjJŸìÊ{Ö¨õ\'lcÏÌÉÙ4ëyø£ ','',0,'?'),('ÂµDâ\0èîH¿À`¡yèl','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/select/field_select.min.js',0,'ì×¸m›)®*r¦\n¹|ž¡','ì×¸m›)®*r¦\n¹|ž¡','È&\\æ•´Bu\0\"Éíèª7’\"êDUiª×õêde$','',0,'?'),('ÂÀ1Œ’Á|¸}š”âdQ','wp-admin/export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘·ˆÎZÇ\"•\r\rî´€','xæº×= ˜|Ë‹{Êlbn–;ðÑEp²ô·Èr¦?','',0,'?'),('ÂÜâeŸÆ\0·ô©S¢!f','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/NullCacheAdapter.php',0,'s‰ÆB¾.ÌQŠïoWkG_','s‰ÆB¾.ÌQŠïoWkG_','&æ®ª«©T>IËêÈe€cu?~:º%ã%:ÝÕh\Zë','',0,'?'),('Âê¾Íwçé¾ê¸\"Õom¨','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/WatchResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/-‘¨stæ	Þuå3','Bé¸fƒ,ú¬<™“Õ¨ý›Î°«Iœ[Ç®ùð¿?6','',0,'?'),('Âí€=UÐQ€¾OÝ‹Ÿ','wp-content/updraft/plugins-old/index.php',0,'gD,Vë§=\\ÆbP','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('Âý	1ªõÐã€…S:(','wp-includes/js/thickbox/loadingAnimation.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Î\"h\rÒcÍôÿÂö&º','BÿFúåœ`¼F-›Ël®Ú›±RT6ÏéºåüþÕ…ýÛ','',0,'?'),('Âý$ø·ãcML³òAÌÅ|Ä','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php',0,'³¼ß]Ãˆ¨Êç{PB—','³¼ß]Ãˆ¨Êç{PB—','r»ûn2èG«öº\ZM„±ÕÕµnº’~…ZKû€€õ','',0,'?'),('Âý’×`uc³™áîÒÒ','wp-content/plugins/fusion-builder/shortcodes/fusion-tooltip.php',0,':cxI8aÿUo÷ÓÞ¡',':cxI8aÿUo÷ÓÞ¡','sŒã‚´25^rþäŠµË\n¸Ýçæ#ý`D@¹zéw','',0,'?'),('Ã\rµW$2lv9{Ü­:„Ù','wp-includes/blocks/post-title/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†˜4‚Ìˆ~á3ÊvtSQ\'','Ûg¯e«à–Tø½»Ô\'i\\š’i¤Õ=>;€QBH\'D¼…','',0,'?'),('Ãw:k@DižWQ¾','wp-content/plugins/wordfence/lib/wfModuleController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿·oIñÆ·k†ùb','7.Ý°Ì¿•ò™ÜU¶„ÔL>Ö\"ÍTM5±]¿Ú>†','',0,'?'),('Ã)g`‘ûíÛ…^§zx:¿','wp-content/plugins/worker/src/Symfony/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('Ã)ßÇ~ÆºÂÀ=3ÿŽ','wp-content/plugins/wp-mail-smtp/assets/images/pro-badge.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=e0ä³Òû\r^Õå}M','iïæÓÎÜ•G{¿µ	ÏÑëÔû—šÅ8°ˆx›¹û','',0,'?'),('Ã/ô@Š\0K·5V¯\nñqÊ','wp-content/plugins/contact-form-7/modules/constant-contact/constant-contact.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ÃZnL­÷1âŸ<','-ŸŠúß¬YÝ\'ø_\'Œã:l2{Ø4ùpwm','',0,'?'),('Ã2wœ‚¦?Uƒ•Ðß)Â—l','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Http/Url.php',0,'×=øBËæß$˜%bîßÝÕ','×=øBËæß$˜%bîßÝÕ','Íf3øhÙŠ­ƒwOô‹”FFÒ;§°¯$‚Þ*ò]:','',0,'?'),('Ã>TTì­™´«-Ø6›D','wp-content/plugins/wp-mail-smtp/assets/css/admin-notifications.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–jÄûk+Çòµ\0J˜³','ä#õ>÷,Ñ$ö*ÁÊÇ¿òD.Þ=ŸÕµ#ÑŽ','',0,'?'),('ÃE…Šeä\"^¸úzTî‰Ç','wp-content/plugins/contact-form-7/modules/quiz.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æów\0oVØiD¤tÞ]Ñaë','ß»r\"ý6<“ž¶kM¢þŽ˜P¼ÛAöë„áÂ(jw0Æ','',0,'?'),('ÃT¬µÇ!Ø©7l°É<','wp-includes/js/codemirror/htmlhint-kses.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îýò[®¶k[ó#cLf{','Nà©&ÜV\Z…A«Ó/ÅÙR#~Õ¢¸á×_J*â—Ð‡','',0,'?'),('Ã_´—§jSXà2ÎQQ=','wp-includes/ms-load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â),lþ\"µ¦?’VÔ?%','½™ž#~¿Øñ–¦&‹S@Ñö]…ED}L*÷#5+\rÀ','',0,'?'),('Ã`~|D%EH´wOº¤ƒè','wp-includes/sodium_compat/src/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œ‚æ¬ÛÏÇ¬þ°ú ÷â','¼7.{ü›=ƒ5›A³~Ù\r~.A(0Z§‚QÂ2¸','',0,'?'),('Ãaã%•WÂOÐA+\"Écù','wp-content/plugins/wp-mail-smtp/wp_mail_smtp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ÞÒð€TÃsGªnÉ','$àe*t®¦~ÉÿêXcñ6í`’¯Œ™¹š^`','',0,'?'),('Ãb¡¬‹íîG+#ã]ç¤','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSmtpTemplateOverview.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pþ%±û\'šcÿZ“nÎ','ü‡ÈDÝØÄÃ ü‚Ö¢mjOÅ¾)ÑÙ[ÞkõÓÑ6','',0,'?'),('Ãj™&	6G|,ô4N\\Í','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ëí™Y…†V±þÒú7\"ÉÕ','b5Ï“ÿŸ¾ÒßZgAˆËTgê-ö¼pc\0ËDt² h','',0,'?'),('Ã{qÈ¸è¢äz•†ŠO5¿Û','wp-content/plugins/worker/src/MWP/Event/MasterResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ûƒÉÔ‚M£4Ô	š‘c','_(s\"Î…Í÷mËì¼wôámÒEûb4¼>£Åk—¡+ú','',0,'?'),('Ã{ŸPATÃ[vÕº.Sù','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/BadResponseException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹)M²:lÜ`s8›T','ÐF“ãIÞÂ	]ÏÝ–‚Í§‹#D\0Òñ.·ÂÊ£å','',0,'?'),('Ã‚uJõMí/€ w·y','wp-includes/sodium_compat/lib/php72compat_const.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðp{áî¡[•´Ë”·	','À9çoóøšáêG’fÈpmeGó#`­:Qü{`¶','',0,'?'),('ÃtqÌÊ\0R^•ÿ Ig','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/Ù˜+3€#ž·$ä¢e\Z‘Ü','|Î³”MsEßG¥žAîÇP`™¶§Vâ6.u“ÈÕlµ’','',0,'?'),('Ã“äS± Ü-\0P˜nËy*','wp-content/updraft/plugins-old/updraftplus/includes/class-manipulation-functions.php',0,'T×?‘ùªÛÿJ%è®²F','T×?‘ùªÛÿJ%è®²F','(ýØ¥ôÕa£ÕCSèg|D,¯¢2œ€žzxÓ˜þôK','',0,'?'),('ÃŸÁB+\'YoÅVUÃ ø','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hr.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôÇQœ$\0\ZºîÅÛ%ª4æ','@ÓšÂÙ§7i\0ÿAª=µè, 8äñøGÆcoz@O','',0,'?'),('Ã£kÊoc¥m7„îƒÛ]','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/Credentials.php',0,'Ü‹sÙÊ™U6¼èaZN','Ü‹sÙÊ™U6¼èaZN','-ÔÀ\\=Ù¸[¢üÃò9Oì~å%ØMÚ\nÃ‡ú3Û6:n','',0,'?'),('Ã¤û€]0¦`ÐùÝAS:D','wp-includes/js/dist/blob.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ®€ÚJÀ‘º|M£†h','‘çƒƒ6&Ölåœ‚Kß\rº1ìê«\"ÑëxöÈ•f,','',0,'?'),('Ã§=É©$á	c÷X®uV','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/color/field_color.php',0,'š}ÁQh“^}Ô¬…è‚Þ]','š}ÁQh“^}Ô¬…è‚Þ]','ßA®„·/9ö+—Õjå)4 wNw­M¹,(xÒd','',0,'?'),('Ã°ýñÁJ:KqS²7I“v','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorInterface.php',0,'ìgeµ×_Òd¬áÙ¬\n','ìgeµ×_Òd¬áÙ¬\n','ZGgE¼™‹Û\"žÃùùô÷†‡Œ?3¬°“»ÂL/˜','',0,'?'),('Ã½£ÁP„²7&Ý£`ã)','wp-includes/sodium_compat/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Î¥\ZBab…_Æºã01Q','\n£¯”¼è­‚:|‚ËçDêgŒ¶²÷²DU×\rØ÷=','',0,'?'),('Ã¾ÂÇ1—Œ\rÊ6ç}ÏÌù³','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchLifecycleConfigurationException.php',0,'\'ç!ºç,@®m!”¦W+¥','\'ç!ºç,@®m!”¦W+¥','OE\"pI`ˆô#æ…ðb}÷°A»-sÝaçsXpÒ','',0,'?'),('ÃÆ/*%¹Å,šg¯c–§R','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/ReactJsxFilter.php',0,'85óÜYbæì{Àf[®WÌ','85óÜYbæì{Àf[®WÌ',':7ñC†™Ö‚a­Ú@¾Ø´‡²Ù¥3XÙ&•è{rbp','',0,'?'),('ÃÍtnRŸØ”Àá¯ÎÆ%^','wp-admin/images/align-right.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BØóâ‡Oe#Ól@:P+\"v','ò‘üÉ³üö‘Cºº?ò=ÿòè&¡°UyZ©31’¥!<c','',0,'?'),('ÃÕÅ5ÛV\"ó°$$î_ý','wp-admin/includes/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ð‰Á \\ªÖu\"‚‹¥àè]','¥´ý:CL—]´ÇYÁi?KÕgÌð«ËîÀ¼Çl9','',0,'?'),('ÃÙ4Ìl!„rÁêØ„ÃßÓ','wp-includes/class-wp-block-type-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷°0zÿþL™ÂõØlG]÷p','nµ´VÈ/ý”\\Õ²QQœ‚^T ‰Æ2hG	_ÇQ','',0,'?'),('ÃáiY–†…\0\nR)–„','wp-includes/post-thumbnail-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“îÌdžè•VŽcê˜„','G%*•J	€Úó$Á‡o=Ë@¯“k·§¹í±Jl‰','',0,'?'),('ÃåuÿXÛÝ¼#‚-ÆÂøª','wp-includes/class-wp-http-ixr-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š£¼ÿ¾2ðâÎø5K','˜BVrAC\n÷aª+†Œ(³;%ìFdCöíTDÃ#“À','',0,'?'),('ÃæjÛ|æCÑUÞïûâ6w','wp-content/updraft/themes-old/twentyseventeen/sidebar.php',0,'cðxà(Z—%è„p4>ÄÆ','cðxà(Z—%è„p4>ÄÆ','á®ˆX“ÜjÇtcIÊA1ölhRTÊ€ÿ]\"éXÂ','',0,'?'),('ÃèhØLI¶«îU²52\0','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Ýqë­¯j¹\"RqçÏV','O†á¾Ë0·Ü+#úë½\rîoŽrAª…c¹E@œ¯;ÿÍ','',0,'?'),('Ãùø¿_^°¶®ç“ŠPlE','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/DuplicateAggregator.php',0,']/¿pËæ=}qd	;›',']/¿pËæ=}qd	;›','\0Ÿª@d·o3©*Dgè›ã½…¥6Ñ´aM´vsN','',0,'?'),('Ä\0UÎÆÍËöaS­Ì','wp-includes/widgets/class-wp-widget-block.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@‘QâZÝpêQ×·2	','ï;¶²¡å“A­ì!¹Ôìâ‰uRWËÕé±ˆsù','',0,'?'),('Ä\n^ùPUìoØ\'ÉÝpGŒ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListSmimeInfoResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„,Z•QÑo<éE@!Y','bgcNÒmïìRHÛs&Ö€7¡p÷^Ólúe], ','',0,'?'),('Äæ5Ä¨)Ì0ÞÆX‡\'Ï','wp-admin/widgets-form-blocks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','thð#× K‘‰·j¥ªÜ','çT?H/P“’Ÿ‚·A_N­?cGÿ²L¯v± ','',0,'?'),('Ä $¸¹—Ï¤ü!Ñ','wp-content/plugins/worker/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s)ÞÚø.å®Ù‘	bh%ÌÜ','n‘¦\Zr.¿\"¥Uï`•´ïˆ-¤Ö£\"BÜ•?ØÅ','',0,'?'),('Ä uFPjkqÐ=këŸé¿','wp-content/plugins/updraftplus/includes/Google/Config.php',0,'l…ñ!W8¢îù°Õ¡œRM]','l…ñ!W8¢îù°Õ¡œRM]','m¦ô#Ï:ªhW‡òw‡¢ñ45¢Ô:C+*‚Nå:®','',0,'?'),('Ä>Eê~Í\0ƒ¢æ“¾W','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/CatalogItem.php',0,'#Š@Š~¨;#hZ&ÂQ©I','#Š@Š~¨;#hZ&ÂQ©I','¢4 ²<øÖ`8&³8p´al÷ˆj§‰Áëf$','',0,'?'),('ÄL9Ô”LêMUÂ)ªMÙ','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿$i™¼&eïnMt‡§','ôïpË™á1€tp…’çaXEðl×˜L—XÐ´¬Œ(Ø†ß','',0,'?'),('ÄNÚŽ9\ngÏÔŠ‹Ríõ','wp-content/plugins/really-simple-ssl/assets/css/main.less',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1â™Á[…hl+	ä¢²','îm‡`ú3\'ðû’Š,žLÑ‘Ö^_¹Ô2¹æ„v','',0,'?'),('Ä`ï,}£×DçØ@','wp-includes/class-wp-recovery-mode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ëoxÑ†ÒÓ<N¤»','·4>³ü \r”	jŸ¨ªºsdqm´H»lß7¼~äî','',0,'?'),('ÄföÛç±áàŠ\r\\','wp-content/themes/Divi/epanel/core_functions.php',0,'Ê\'9’&YóÄª7Ÿc¸A-\n','Ê\'9’&YóÄª7Ÿc¸A-\n','\\J\nù}tyOïœÔbÅóí3·ZDMŠùòMXkD','',0,'?'),('Äp´ýò[[f•9#£Ø','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Order/RevokeCertificate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R2¯º­&R™´œÑe','·öL	î	´l€(PÛG&^[OË)Í¤‹QbBàUl','',0,'?'),('ÄvûV/WÎÏ{}!^ÏN','wp-includes/blocks/html/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õÄîµí\"¥r`gœúþšµ','¢€“5Ÿ¶>üˆ/™ËÇüzÇhÖÎßØ!âdÁ}a','',0,'?'),('Äˆ^Aõš+l†®¬oød‰Ò','wp-includes/js/tinymce/skins/wordpress/images/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7~!æßà\0Ž÷ÆÔý\"w','çgÖÂzÂÙÏ.g‰Vû:«ƒ[‘¥ÌÓÐ™¡H)Èžì','',0,'?'),('Ä/¸ýû ÅC/êN­õRe','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/OpenSSL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nò/?Ší®è¨×Ñ®óXë\r','úuïãj(TÒí¨ãAjš%¯—rbtÒ´m³O?ô•','',0,'?'),('Ä”Ô¼üÝÕpPˆZ	H´','wp-includes/images/smilies/icon_cry.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+`Å®dW]ö¤ÕËð—h','[º<qÅwf¥)™rZû(ç¯Ó=#;ansÊÔÕw9','',0,'?'),('Ä›Åwú²+ë¶qAZ','wp-includes/blocks/group/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ácªîÎà~tÐºãº¼\'','ÛÒR<gÑ\")¨ßã©b­Ì£¯zâ:¦½OqSó˜š˜','',0,'?'),('Ä¤áÄyKO™56—HûÕ','wp-content/plugins/fusion-builder/js/wNumb.js',0,'“¦{F\"ZÛˆOÿÀY=|C','“¦{F\"ZÛˆOÿÀY=|C','/	°êUµ‹ÖÒ¾Ñé_\r$ê…ì]?®GÒ{ceè','',0,'?'),('Ä¨”­CóI˜wƒ&ÍOÔV”','wp-content/plugins/worker/src/MWP/Progress/Upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê[ã¦àd·×ª¸“ÄÚcy','±#\rµô¨Z\0H„O-ÜhÄ\rY¾Âà¿ýU r§˜ó','',0,'?'),('Ä³Jõ\n`|Æ5,HTõ»','wp-admin/includes/admin-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ¸JŸÒõôF0¹ú¤üØù','œ¸\r&Å+ï›µ;øU(“x³àwç}ÎJí-ïU›‰»','',0,'?'),('Ä´;)ÝO;ëIyÄ\n','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/schema/ActionScheduler_LoggerSchema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L{4O0ØBmø&š','×#gÓìt°’SõÀ9EÈ5}SÎƒ¹äSáâÈç¸Ó','',0,'?'),('Ä¶‡Æ––oŠçÃ¨f{U','wp-includes/js/jquery/ui/effect-highlight.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n+)Â§ï«ÍIL\r¶','qpG%S™‘VËÁöÆ9|øèëú²@S¢Xn','',0,'?'),('ÄÄ6ñuyÀÛÔ„Ì€}D','wp-content/plugins/wp-mail-smtp/assets/js/smtp-about.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õf³Kk¢Ã\"åesûRo','{ö%QU®HÐÙïOä6ë\"ÄqO)‰HƒV¢íèôä','',0,'?'),('ÄÉ\r§RÐ¨Û<×´U;\"','wp-content/plugins/contact-form-7/admin/css/styles.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bób«Tb\Z{­8—','ÑÃ¶Cç2]nyÝJuXþ4Ñû-Àà»dp6¬¨k','',0,'?'),('ÄË¼ÃªëP%Äƒ¬´„','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/select_image/field_select_image.js',0,'aÄ×œ÷·IJ>sQÍ2]','aÄ×œ÷·IJ>sQÍ2]','Mn£êùpX9¦–”&ÀÄ+Ôÿ¡:Î	L½Dœ»œ','',0,'?'),('ÄÍ™WÐé˜ìÝfEø“','wp-content/themes/Divi/core/updates_init.php',0,'EUùRBñ¬½E³¿œh›','EUùRBñ¬½E³¿œh›','ï§KÀ^c®xíO†x™ƒÙ2ô›ã_2t!Û¾7tŒ','',0,'?'),('ÄÏe‚ýN-ÏÝ@1\Z£Ë','wp-includes/blocks/legacy-widget/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úxév¼^EËøEÚA','þ}2—èk\0µ“¦hð«­dz!uª´5íÒÞ­gdŸcŸ','',0,'?'),('ÄÏÛ=6Ñ+(RÇŠ×R','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpForbiddenError.php',0,'\'Š”]{x§Ní}“ü','\'Š”]{x§Ní}“ü','äSºõ„h)í;âÑ©Dîüè«Jƒfƒvá¹—¢¢','',0,'?'),('ÄÑºÉ©•‚uyâÒïÛ}','wp-includes/sodium_compat/src/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®¹£b5lJå#ûšõv','c=0ïŒ-#Ž-TäSÅX†&ž´4¡äï\0ÈK8\r','',0,'?'),('ÄÙŸ;}ó`,™ô¤Ìì;ä€','wp-content/themes/Divi/theme-before-wrappers.php',0,'Ïâç>uý„í{6ñ\'Zô÷','Ïâç>uý„í{6ñ\'Zô÷','²’tŽUÏ†®¬ííí˜s&3£Bã%r›ÌrôpÉ','',0,'?'),('ÄàÊ™\0}ôßç” K›ö.ÿ','wp-includes/js/jquery/jquery.color.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rqÓ*X˜gqŸO£(Íˆ','©xš2³ý<àÍÊÿkéö•QÝ¯«äçïí{ÊÐ','',0,'?'),('Äæ`÷§éÁåNèÁ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListMultipartUploadsIterator.php',0,'­‹ÇÏË[¼îZÆ?\r\Z$Š','­‹ÇÏË[¼îZÆ?\r\Z$Š','—äÿ¯5ÊÕ0HÝ·¤ò—iÇ»eõŽe:v ÍæÑµ¦','',0,'?'),('Äè²ÄoÑ\Z(6á‡úU~uÃ','wp-content/plugins/contact-form-7-honeypot/languages/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«/‡´l\"¥˜\\¬|†AP','=hÎŒ’$ß¹sÒ•—Þ:Ê©\rÍ&góWä¬éöMû','',0,'?'),('Äüp^yb·g&èîñïg®','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCanCacheStrategy.php',0,'rÜœºG#ià—=Ã¶/¨<','rÜœºG#ià—=Ã¶/¨<','Ö<t½@/½äÁ—|Â£`‚»Ê»+‘IŽ•\"2ÇÖÉž','',0,'?'),('Å…Ù…ÓŒ#©¹¤Èñ«:ö','wp-content/plugins/fusion-builder/inc/templates/shortcodes/new-slideshow-blog-shortcode.php',0,'JÊ:ÒøRƒ”VÏ”','JÊ:ÒøRƒ”VÏ”','&&+Ó¯«7;3 Y: Ø·Ûê4štõœ\"Slk‰Ÿ','',0,'?'),('Åª{A¸êmmùß*K','wp-includes/nav-menu-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JI1E%gä…í?Æ&ƒ','AS%¦Â³Ð[„|ZJfŒRH3#BlöKÓÿÙzH','',0,'?'),('Å£y‡Ð Ù±€-©ŠûI','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Models/OAuthAccessToken.php',0,'hÊ ß^}úzÀ!<afÕ3L','hÊ ß^}úzÀ!<afÕ3L','ò\nRwÈP²v])·F¤þ\Z7	5¥Vºì8‹¡çG','',0,'?'),('Å\Zêgÿ+ÛoÇ9/bv','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/AbstractLogger.php',0,'&ë`~S€aS&½‰©¾','&ë`~S€aS&½‰©¾','ªÿ7°Z?Î™Aåu¦*/½ƒ\0ÐG#¨õúœ¬2Fåþ','',0,'?'),('Å!«6‹]\\ñžøI×µ','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/IteratorResourceInterface.php',0,'!üÈŒÔ%L¨Búé{T\\','!üÈŒÔ%L¨Búé{T\\','£ÝøÑ)2‚®—!ÁÙòlÞnéÔÔÚ¡¼q›!™­','',0,'?'),('Å,—¸å®Áäš-y‚š”','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureDivisor.php',0,'¾ŽT]Ì^P‰\0k™	n','¾ŽT]Ì^P‰\0k™	n','¼´]3néÔË¹•¯¹–¶0Õ¼Z¿bâ-pe·W	ª','',0,'?'),('Å>RxiÓI‘ÒMvKÅ-ï','wp-content/plugins/worker/src/MWP/Event/ActionResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0z.[ÄÙ¶xq»g	×à*','ß­ò-_)·\rHñÌÑ€–ËÐGy…4YŒÁ¸.]','',0,'?'),('ÅD€¬CèèÔÃF}±Ë','wp-includes/Requests/Exception/HTTP/418.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','83£9k\\8\'i³vìó','4 ¬6éŽ¬½ìM&ð$!2d<žª\\	|\\—?gü\n','',0,'?'),('ÅVwfXÏ“€ìÂ[™B	','wp-content/themes/Divi/includes/builder/module/field/display-conditions/Cookie.php',0,'¥RŒotSÞ‘¤É•Gb!','¥RŒotSÞ‘¤É•Gb!','Áë3pý©­í^4ÃžÛÌ~/}|˜ÐÌ’6ð','',0,'?'),('Å_Ìn€ü£³Ép·¼aV','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>*LÖ1ÊËµ©\"k%Fƒ+','Z±öiéMÛf¼UŒv±i-å})ôùfÑ\"†þMnd?X','',0,'?'),('Å`#ãØG–b¯CÐåÖŠÎ','wp-includes/js/swfupload/handlers.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j¼Ú™Ká~q	õˆüØc=','ÙTòŒ¿‘ôõdñT¯y~#ïïjI\"£++3ÁÉ‰','',0,'?'),('Åxejuùï¸Ù²Š','wp-includes/css/dist/edit-widgets/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü ?ÎÀ¬¢ÄÃjÖ,¿ÃA','¶-L~Gxc„‘qK}4ý×º-~à†Þ™\"æa8~','',0,'?'),('Å|Ä6Í\"«—î‰Õv','wp-content/themes/Divi/core/code-snippets/code-snippets.php',0,']`ë³Jj`Äâ>Y³¯T',']`ë³Jj`Äâ>Y³¯T','8{™¦2ÜÉYî)þ7ý]/§3D‰H=wj]ÙÂô','',0,'?'),('Å}µÅÀ×úæH;ÛªôaÔ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetReference.php',0,'…•Ó¯‡-/ÐÍÞÿÁ-','…•Ó¯‡-/ÐÍÞÿÁ-','jv6§ƒ¸›]©…;‚™²PæW–þfž.)è‹²!-Û*','',0,'?'),('Å‚j¨Dß‹¿.¥Ë–D¥‰','wp-admin/css/forms.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðHÓˆr¥:ü.Åã','oÕDðm¥p’[79§Õç{-·×iÚÎÏj•Lá','',0,'?'),('Å†€Ô¡yiÓDâ‚1›','wp-includes/blocks/embed/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™JÏŽ…Â_¬~ÎÉ™èQÏ','¥Éû	ê\rÍQ?*þÏ¶bíÖo°\\”ï¶6i?©”ƒ','',0,'?'),('ÅŠ³÷6ƒ÷½@àL(`öâ','wp-content/plugins/wordfence/views/scanner/site-cleaning.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_dÝ+W·Ý.°†·ŒÁ–','¼í¯y>È„9&šþ\0oxBÀ~ìj3#7ê±Šl¯Ñ>3','',0,'?'),('Å‹¢Á\Z:•(Xâbpù‹ï','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Authorization/Struct/Identifier.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0›ž#9FsBcá[¨Î','ÞCŒKlS_6¶‡^—·$Åé$jtNýÊ¦Ë','',0,'?'),('Å‘xm üåtôžish¦ç','wp-content/plugins/duplicate-post/duplicate-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ª	rð`[Õ¿ †ú\\','L)|k½ƒ³]æö\0ºþUµ3ìÃË·g6ð×&H','',0,'?'),('Åœƒ\0»>jô-Œ»§š¤ê','wp-includes/blocks/latest-comments/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çŒUæ~ÛP«¤(Òk','Vå3=%ûÂkOõ[3¹ÚNf3ßéS×0vÒÚ¦','',0,'?'),('Å¢æ%8½v·s©ù6ì…','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceCreateError.php',0,'z—tÞÞÂËûKi\Z·IAW','z—tÞÞÂËûKi\Z·IAW','“Å¯C(#\rïø(\0\'™Á‹[Î˜m·¯­;x£¬êÃ','',0,'?'),('Å¤p‡÷ÅÅZ¹„/¸3 ŽN','wp-content/plugins/fusion-core/shortcodes/fusion-faq.php',0,'wÅ¸ÍE‰!IQ\ré9êwá','wÅ¸ÍE‰!IQ\ré9êwá','\Z“4î©æ~±ñy¡bŒóe–ø\Z©žƒÒ=k=r¡éŽ','',0,'?'),('Å¥y4º@´ïXÁ‚ã£\"','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-patcher-filesystem.php',0,'\0+´ÉïÎ5_ç&€C˜','\0+´ÉïÎ5_ç&€C˜','€ÞÖb~ya)s`frRÜú˜•Ó®M˜rKP÷oF(h','',0,'?'),('Å¯[Ö?I&Ž*!¯Ê%Rz','wp-content/plugins/wp-mail-smtp/src/Admin/Pages/EmailReportsTab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#!yyíî7ÀžÔ¡Öh	Sv','+ŠóŠSÖ<çWáŠ˜¾<\Z.ûª%7nys„˜BÛjx','',0,'?'),('Å´¢Ê\Z3³Ó½¶•›~3','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Abstract_RecurringSchedule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nì•U\rêu/½ÎÑm(Rd','sy|)Øú²\'CBØ›efO8m¶IÇl\now¥a|­>‹','',0,'?'),('Å¸MÈ»Õ I…×š°','wp-content/plugins/updraftplus/includes/Google/Verifier/Abstract.php',0,'qºù…Úz×\'ŠŠNË','qºù…Úz×\'ŠŠNË','Îþ™ÚœáˆýXVUëc<–jÆ\"f¢.Ž¦{žîaÆ?','',0,'?'),('ÅÄ)‘×«io<r3NÐ=Ùè','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Rz@ëMMQmr÷ƒ…','±qÀ‘òX9Oøþ¡a4ÁA¯ÞæÀÄÏ\'ôøòÝÌ¾e','',0,'?'),('ÅÍ-†p“lEÆóØk†/ö','wp-includes/js/jquery/jquery.hotkeys.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãS!}EU«\\b³g¾h‰=','\ZJ·û]Ýx Õ®Tî¾ÄcÁ0n˜9  +Vékâ','',0,'?'),('ÅÖtuk#Ñ¹–-;™¿|','wp-content/plugins/really-simple-ssl/assets/css/wcag.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$@ž.DY3ûy·\'NÂÝI)','/»…_šØo[eŒß\ršà†ãàÒÉóŒ¶¸','',0,'?'),('ÅÞ[pÇ³Õ‡\r{‘t%>','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/vendor/ParsedownLegacy.php',0,'`Ð…¸Œå©“pƒ','`Ð…¸Œå©“pƒ','ºÄˆÙDïf¹®l£$£×\0ÀóüºÂ/¹®ûìo#','',0,'?'),('ÅáÊÉ;ä”SçH30—ô','wp-content/plugins/fusion-builder/shortcodes/fusion-content-boxes.php',0,'2\'Rh\'whïf‹¬’#Ÿ','2\'Rh\'whïf‹¬’#Ÿ','ÙS¯aò8&qúê¡ÌJ\nÌ‹ú6·)‰ÿœ r-2','',0,'?'),('ÅöZTDÀ\r[øåFcLLÓ','wp-includes/blocks/gallery/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾Q\\pŽ¶÷™ÖÌ7$ÂE','\Z·”(?\r™\0,”ÀJ¯n’]Å¦U@³\0Äås¢Gæ½','',0,'?'),('Æ	™·#A©\n#b#ü =','wp-includes/js/tinymce/themes/inlite/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âZ=\ro<3¤¡EÐíÂ','·\"Á;l¾¯\0s\'âlB´3qš6)Œ8’\n@D‡²¸ê','',0,'?'),('Æýp“1	°?ÂØJ@³','wp-content/plugins/wordfence/vendor/composer/ca-bundle/res/cacert.pem',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üËæÎÇ§n3Q­2ãG‡','ÿdíâ\"fÝŽ•¼6emˆ`öz™´ÊúâP<KOÒ','',0,'?'),('ÆjAù?uÝ¾L(3‚Y','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferState.php',0,'%æê>ß—H)R‚M','%æê>ß—H)R‚M','¡Ö\"_ô½N€ù­s«Éf ±N?R•ŠH€nÛØ','',0,'?'),('Æu]Û(À„}oUxœ^','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_el.js',0,'—D°Ò ±–êÑ—¯&úP','—D°Ò ±–êÑ—¯&úP','!þ¦K%š‹Ì	tÔÐRm»n%‹Œú=žz¬#','',0,'?'),('ÆXLÂ³ÁDRpÔ¹“','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/ThemeUpdateChecker.php',0,'[ÿ\n›Ø`J0î;[','[ÿ\n›Ø`J0î;[','ÅØþ±fÜ‚Ž¶[1›Qt#qÃo:%­óKÙÙ#\"\nÚ€','',0,'?'),('Æ*\ZJ¡à\ZX7¡n…‚','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/CompositeFactory.php',0,'Ý-\\¼AïbQ÷*wDD','Ý-\\¼AïbQ÷*wDD','ðÚ(ë]háµ?“\"à:X³¨Ó\r½ÄÂ.\Z×pßµ–Ìð','',0,'?'),('Æ+’ ÍgÔ¾Âq6¥^\0è','wp-admin/images/wheel.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E0½ q0m»Æ\ZY%V¹X ','(]´:=dÓqÛ…¼O{9ŒÂ€Ô€¥vš…È˜~Š²Úó','',0,'?'),('Æ+ùkZ@©bKŒõÒšŽÅ','wp-includes/blocks/block/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«ûÜFºqäðç6º”ˆVÅ','ó,ŸÇ¦°éhtDì)WMFÚ4€¯»~\r¥•','',0,'?'),('Æ0¢XÓàëÌ¨Rzœc´','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/DeleteMultipleObjectsException.php',0,'Ðú^»ÄEúÝ«Ê—Z—˜„','Ðú^»ÄEúÝ«Ê—Z—˜„','Dub”@øÉ9žr» go24+Í»Â,$°æ |w','',0,'?'),('Æ;^´Š<0÷sgÂJrã','wp-content/plugins/wp-mail-smtp/src/Providers/Sendinblue/Api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨½D‹Úö@÷Ú!EW+%qí','Nq»’9—eá×ø.YÀTÑ\"ƒ\ZéãËã›ÌL;/','',0,'?'),('Æ@³ð:<¢o|J-e´','wp-content/plugins/wordfence/images/wf-error-badge.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰EQtÄØs	¡Mz½y¦÷á','¿å¨æ®™F¦Î`Äa¤Ý€Þk¶ÝÈmEíQ´¥+~¤ç','',0,'?'),('ÆT·sE²môÚKÓÌÒ4','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-content-boxes.js',0,'ºt¼×®êçä*¸Òó','ºt¼×®êçä*¸Òó','‹e+Ê±||–•ícX+[B2Îò2ðfîáÐ-K','',0,'?'),('Ædtà€šS0›[\\Og:','wp-content/plugins/wordfence/modules/login-security/views/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…¼ÕA¾a¸bvrñ¤','C‡¾ö½\'r…9½ì@âK¡Þ†t¡ª™öâ§w#@kº','',0,'?'),('Æk4íHØQk¾Æ)','wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/SetErrorHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€×!š“›l4ø¬=êŠ','£[·âÒ‚l…)ðèÇH­ƒóVKh± Hîòîš.$>6','',0,'?'),('Æy	{‡t0)Ê#…´¿','wp-content/plugins/wp-mail-smtp/src/Admin/DebugEvents/Table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„üjÝ‘\'æ*dEÊ\Z¥','nƒ½\0\0`Ök÷.“Ýþ\Za9ù­núþk‚D\'”','',0,'?'),('Æ}½“Æá­\" ‡v¾÷?p','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/NotifyingBatch.php',0,'·Ó‘qühj!$¹:…•EB¥','·Ó‘qühj!$¹:…•EB¥','})’!Hs6sú\'\nØ¬u?¯aXK)–1Š°à€–p“f','',0,'?'),('Æ…Ž‹‡|_Ëi/y¡Ò	','wp-includes/js/tinymce/plugins/media/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Î\'1êZÞþ‘žÂf ','\né>ëáçEQÞi¶æ¼º˜äk}Ã®¨Ç²“—þ£ç','',0,'?'),('Æ‹p`/+]êÓP—äx¸ý','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/AbstractContainer.php',0,'xæªE)ž*oÕ^©d?¿','xæªE)ž*oÕ^©d?¿','/ú\"vo0¸6È†ì1{dÅ\0q—d‚\0úêòPo','',0,'?'),('Æt¯¿\Zâ»êo+ÝÕØ´','wp-includes/blocks/spacer/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sÞk“Ëék3zÄÓU)Ä','u2ÿTØÚz\"»„íÿÏ-g¾‰¶&]ÌVÛj²•$O>‹','',0,'?'),('Æ›‰=éâBqf¡=x','wp-content/plugins/updraftplus/templates/wp-admin/settings/existing-backups-table.php',0,'¦Ÿ–Ætµ,|cdB,R','¦Ÿ–Ætµ,|cdB,R','Ãô·¬È˜(0n›÷DÉòjqßô¼môv‡\"Üº–Ú','',0,'?'),('Æ·ŽmïxmàêY|¸œ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/AddCredits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2¬pø_,L½H—3Â!›³ý','†»dß=\0æ¥[”‘@(Ý<KJs}UÏùÒs¤ŽÉ™\Z','',0,'?'),('Æ£ßÊŸ™O½iÿGÖA?Â','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/Locale/Info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†ühS1âüµÛ3¿”±³','Gc \"M«¢6s-«¥]Ý8ÛŸ^^O`cZM žù','',0,'?'),('ÆªÔƒÓ¢+j´sQ€I‰´','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/TestHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' «9«ò±g·NZ±ûŸl','oÁ÷*‰¬w{ò§×*!ùÆÿÚv[N	ZƒCx–ÇH','',0,'?'),('Æ¬+\Z–¼ÊIód^i <\0','wp-includes/js/jquery/suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':$tV‘EÕÊ¿Äû‰‚','rç,KËpÅ—rq^b¢\\‘¸=rZÐ]ƒÉ6+','',0,'?'),('Æ¬ŒåSX‰ƒÝZ“ùâ3›','wp-includes/js/dist/plugins.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð\Z“–gxõ¦.Sé\0•','}<5ú­¦rìôï¨£¾ÞV÷™¾²–mŠH¹dt','',0,'?'),('ÆµI¹’Øˆ/¯éýpwë','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/config/steps.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›þâÝZ¿b¥»}nö','ìÎ´ƒ8;¦Z²êA [2˜¤Òf Þ\\P“5†+«g','',0,'?'),('Æ¼“Â®‡äp}tQ$NÎ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/PhpStreamRequestFactory.php',0,'W®V¨«ÑFQ¢#šÔ‚’B','W®V¨«ÑFQ¢#šÔ‚’B','À0fdøgIñ{{“]©3t¿äÀÕ;ˆRsá™d','',0,'?'),('ÆÁ	ž=lšlø’ïkkíK','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/vimeoPlayer.js',0,'qŠM&ÅqÉ_NptI','qŠM&ÅqÉ_NptI','+Üº8å:–M”Ä9A·Dîi~Òiðô§ŒœðgˆÁ','',0,'?'),('ÆÅªáÞVó¨p|S]éÉ','wp-content/plugins/fusion-builder/shortcodes/fusion-countdown.php',0,',ÐYeƒÝ§æ¶Ìx',',ÐYeƒÝ§æ¶Ìx','ðÿâ§ïîé\Z[Çy,íÔ¥šjñžÏé¾ßãc…','',0,'?'),('ÆÅîÔ;VÞ¯€¤nTy ','wp-includes/class-wp-theme-json-resolver.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_àþ+È\\sØW×œ\0ò´\Z','F÷ÑZêÞ¸‚i|ð“PúG4wíÜ‡àd–DŸôS&|','',0,'?'),('ÆÇøT ™à•G=u(¡Nƒ','wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/Adapter/Mock.php',0,'PÏy©c6íÝ½¸ ÖkK','PÏy©c6íÝ½¸ ÖkK','£ÛI£4Tv¦¿Ú¿®»ÃÈôà&ŽÓ¦Cí=ŒÖYw','',0,'?'),('ÆØÞ•LèHÍò“j´Oà	','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-video.js',0,'E¸É!RÞ[_þâ(IO.Ê','E¸É!RÞ[_þâ(IO.Ê','SøØt8’ëæÌ÷clëD³˜?(¬žï³[ú¦\\Ò +v','',0,'?'),('ÆÜ·âñJL¤Ó>ç#','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/Encrypter.php',0,'Š(¥+)Ù(âS O™g\\','Š(¥+)Ù(âS O™g\\','j1Vç\n8#‹Ø\Z\0ÆEÉO¤ð‹¤µ°Vx|>Ós','',0,'?'),('Æëª³@Ñ ›=¤Åy`','wp-content/plugins/wordfence/views/options/options-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢Û˜ä©ÖÉjçŽ“Ý†E','îûþ£Kxf›»´Ÿ„“ê+eÇ–Ù­®ÊŒõ‰ù¼m','',0,'?'),('ÆëûÚgŒÞw£×2','wp-content/themes/Divi/includes/builder/frontend-builder/assets/backports/hooks.js',0,'#5+lQp‚²\0¨·!O;','#5+lQp‚²\0¨·!O;','OëE’¡ˆT\ZÉ\n‡~Ê¦U¤=‘©&§H+X$)¶!Ã','',0,'?'),('Æí-k•âjHÏË)Ï;p\0','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/AssetFactory.php',0,'VR€ï.ÅìØûêr­·','VR€ï.ÅìØûêr­·',']®³K¼U¯ü\"4KªX^ã\n¤÷.?eçÍ@ÎP2e','',0,'?'),('Æïš¢5Á\'™¥Ú4D—(B','wp-content/updraft/plugins-old/akismet/index.php',0,'Ïh•¯ PëZçÀºÝ¢`Ef','Ïh•¯ PëZçÀºÝ¢`Ef','½Â}ÜÜÕ5á›eÿ3¹Ù3ÁŽmhyDæŒQ(','',0,'?'),('Æú+(|W¢ËÜ”Ô»%ð','wp-content/themes/Divi/includes/builder/templates/block-template-canvas.php',0,'“WwËO¼óõUed]}9.','“WwËO¼óõUed]}9.','éS¯”–­%[Cˆs3ÕÑ­¶J#ñuz&˜,\0','',0,'?'),('ÇÍŒ%+Ëe@uQ(Ï','wp-includes/js/dist/editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÞëDf)©×`VrÙØUm(','²W„ c?ÜbÆ53?JéÔ‰&á4\'ÇsR4b{éå','',0,'?'),('Ç\rù<óWn¿_»—Å7q‚I','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedExtensionError.php',0,'çf³^ŒÌ;.#´x¬!Ën','çf³^ŒÌ;.#´x¬!Ën','qÓ<À›6šC\"Í|“3[\ZÅ;^”L©¿»ÈÉ_Í©Æf','',0,'?'),('Ç!c‰É3z~r\Zžo\"†=','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/HistoryLabelAdded.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V5ûM–Ã„Î\"¢æÿÅÞ','ìFÓò-j}|Â[þ:KŽ^@GvŽž°ßó½-ö_','',0,'?'),('Ç\"IZØÂŽïUÐiü','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Datastore.php',0,'}†¾v¸ÆˆZXñ†ÑÏ_Å','}†¾v¸ÆˆZXñ†ÑÏ_Å','±m\"¯¿µOL˜(ªÃHyÀŒš@|ýwë0úê¹ƒ\ZIƒ','',0,'?'),('Ç(o¶à‚ûçÐImp>d','wp-content/plugins/worker/src/MWP/FileManager/Model/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('Ç>IšN×ˆ„1Ñ­¶%õ','wp-content/plugins/fusion-builder/images/icons/fb_logo.svg',0,'ÃNÇUóU¹áø×ã§¨SW','ÃNÇUóU¹áø×ã§¨SW','ó›T¦ô˜ý~9RÓ5ûüÄ¢¹¯ µpkNþ­þé','',0,'?'),('Ç>æs?Õi½}r%ÆäÖ7','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php',0,'˜ÃM5^V}W¨m?Èˆ¡','˜ÃM5^V}W¨m?Èˆ¡','ßHQu»ªŠ¼‡Ÿ˜7\06­îkc–?1M²ñ’½©Rx','',0,'?'),('ÇDèæî0pšB%Ä§ž¼','wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹E@	Ú-\'óW{²©d@.','	µ€Î¬QLPž°\"CÓúS–­8^¶ß;Np3ÛÈ','',0,'?'),('ÇS›2ñX>Bi¿.z\"','wp-content/plugins/wp-mail-smtp/assets/vue/img/mailgun.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É~C}\ZŠ­\Z /¿°œ','X{‡Èî[¼ö#\r?áÁøxÝè—Ç”¤µkª§Ë½`xú','',0,'?'),('ÇSà HA®}OÌÏ´V_','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sv.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yÓÍªâV(gžœgÈÌ³F','Š©aNIz\näˆi\'\'£Z–7ÎjàbB¨(ëÕ‘ÓÊ','',0,'?'),('ÇW}\rDÅ¬½w‹°*¾ñ','wp-includes/blocks/query-pagination-next/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â‹b}÷@Çß¹eª#','`Åx\"ëÂcwcë*\r„Ï2`wîŠf(wÛK\0','',0,'?'),('ÇYú1QptKaúrPgØ','wp-content/updraft/plugins-old/updraftplus/methods/openstack.php',0,'LÍÍíiØÀ’—8{výa¯','LÍÍíiØÀ’—8{výa¯','m×Ö¾yƒ<˜¢0wœ‚û®zzˆ˜Þ†ÙDrŠ#ó','',0,'?'),('Ç`íæhÝ‹àÈÅmUŒ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Authorization/Start.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸V%ðvåÐèSÇ˜Øt#ë','íÂUµ_<–S\"ŒtFéù@»YôËrbP6–0Ñ¾sÖã','',0,'?'),('ÇlÃË¿—ÝeGýA\Z•â','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ListBlobBlocksOptions.php',0,'»›˜ç ù\ró¢â»]bŒ','»›˜ç ù\ró¢â»]bŒ','¡šH¦Iø^ôe·bqÓ«¨ZA»Áœ¶Ï©Ër @','',0,'?'),('Ç!–Â‰=&Aì‚¨.ê','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/searchreplace/plugin.min.js',0,'œM ôÇ8.çt¯˜áR™','œM ôÇ8.çt¯˜áR™','ËM¥G¤h9\\J¥ÅÜo4OçwRvèS»2ùôñ','',0,'?'),('Ç‚-i)ö.ø\\Îèæz„^a','wp-includes/Text/Diff/Engine/shell.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸ÜS³´õß¢?üòz&','óö·=5Ê„:Pu\'pMÖN[µ9^£m>z@','',0,'?'),('Ç…ú9 Ù9: ÷¤\Zþ','wp-includes/cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z¯êV¢ŒO˜üyDvá !','{ëŽdÜë<>wb¹S£q©™ÙB¹Ê™Ú×ê€','',0,'?'),('Ç‡·\"È®vQªÕßnRKÐ7','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Exception/Exception.php',0,'¨c>æ #lPEþÿÓë::','¨c>æ #lPEþÿÓë::','“²?¯¬‹dærù‹õ!HYÞëÙ\0@¿0¥u[›','',0,'?'),('ÇŽ¿é¢ít•~ú\'Žôø','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/footer.php',0,'zô¸ž”ŠJö§ôæßi','zô¸ž”ŠJö§ôæßi','“ä{þ¾Ý]¿{û†ê`“ÍÈÁájÑÓønØ§1*','',0,'?'),('Ç‘ÿ“Ò®óow ÕQð=','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateChildAccountStatus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3G+-;Â¸PÀXŸªX9µ','Q(j”Ê¢Óbq¿‰Î6ÊúK8ÀJå†oñÐ[e¶.','',0,'?'),('Ç“Jßå³á¨!;Å¢yÏj','wp-content/plugins/duplicate-post/src/watchers/link-actions-watcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üÊÃÐ$õS$u‚§ð¿Ç¿*',')È¢ø¬¶FÉ‘BÆäÈ6XRSµia™tï0ž','',0,'?'),('ÇÂ^¿xð¤JB\ZÍ3-«6','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G–þ5]{\"•¼ã«VØ','¨CËJr~Wè„OY…*[ó:[j)«²ÂGýÐ„ÖeŠ','',0,'?'),('ÇŸ©½P¸õG@º†È','wp-content/themes/Divi/common/library.php',0,'CÉ«[­O$ù\0•Z›a2F','CÉ«[­O$ù\0•Z›a2F','Dˆÿ´†rY¤<¹XÛM½y¨B*ã­EÁÍV°.','',0,'?'),('Ç¤>z±Ô„Ÿ!J]>','wp-includes/css/wp-auth-check-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NÚþPñÚKNŒ¯zj ìK','V<eÙbÑÃ(·k¤¥IªÒ2Õ\ZÃœuÓ/#4É†mz','',0,'?'),('Ç©¥ºíäVßªéBÀŠ¸§þ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchTagSetErrorException.php',0,'kPV½?JLQ±e…ç2‹','kPV½?JLQ±e…ç2‹','*)æœÌÔ–º{ÞœT=*>\\}Ü€ãëv¼S:±Xþ','',0,'?'),('Ç«É=Åèm‘/àÁœ^','wp-admin/includes/schema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zrwjb¦­\\ÒÐiø','A•¯›³-{½4{ìäÌ1&”Mç+§é]@ôc—Í°˜','',0,'?'),('Ç±Î+/“PánP´[0š','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h°îJórØsg„=„–¹ã','™GZÎwÙpÙ\\+Â‰INÑQ@P:ØVçË´Ýu§dí½ì','',0,'?'),('Ç³\\ªÝ_L-Y€ÅŒ%$','wp-includes/ID3/module.audio.dts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºllAÓõ2õÔëÌ‹é¿','\Z†aHÈõŒýrµßÎ%Aµïñ6$`Hu¬Tî6yÞ4•','',0,'?'),('ÇÝ®>`Ã8î<k=m¤ÑšÔ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/GMP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±«!z	˜H*!Ë´¶','FB4\nëæSŠœÿJÖØˆêQ_UTÅªV3Ûçr(','',0,'?'),('Çâ~ÕÒ™°.÷w¢Vo¸˜É','wp-content/plugins/contact-form-7/includes/js/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†,‚Ø7>MiªZöÉ”8›Ú','IBÖ¹[ÅâXHSËüSæÃµª¨”!Û`òcN','',0,'?'),('ÇåwªÛy¾*®XÍO\nG›¥','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NéVl~ò†m[%Wt','P–q\0€ƒ´“”šV{|æ0m\0;ÔÜÖ2•f@UÊ','',0,'?'),('ÇçÄ[Pâ³$ÉVf`oÒ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/TransferStats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`*!‹B½zû#n¹Ÿ¼³à','?R)›_\'øØÃý*—øy!©–w4éêÊÃëZ2Ë¹¢','',0,'?'),('Çè=Šº5¦K7eÂ;!”','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Base64/UrlSafe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±ÀpFõñt1Æ+öÀ»','þ;‰}ÛüÇ\0[·ž¾\'\rqÎÄáÚÜÄ¥dÝ;#æ°.','',0,'?'),('ÇîE·ÃÚœWêýßpaQ','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-alert-preview.php',0,'¶ð4ƒ,zóð-žõ¿J','¶ð4ƒ,zóð-žõ¿J','l\Z$³oïÇð2uJ\'ŒçCOQë¶m›¼øÉ‡','',0,'?'),('Çî®=†Ü€ÕAjAÛcžñ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaValidator.php',0,'W9«¾PòóÚ &BóÚ','W9«¾PòóÚ &BóÚ','TB®>€4Ú…üJ´Žzš\'Pv–•U¯¢fnà','',0,'?'),('Çñ}ÛC“wX•TC€û','wp-content/plugins/wordfence/modules/login-security/img/lightbox-controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m]¼a’¬•\\$É','Ç—’h?àïïSéîÍ)¸:›ÁÖi@h. X×g”†','',0,'?'),('Çó\rïW\nß…ü{ý\"¾¨','wp-content/plugins/wp-mail-smtp/assets/vue/img/instagram-feed@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ9ákªãÁù xbºæAí','¥èn‘Fðwº`kŸû›µD7(t§éMt,f','',0,'?'),('Çü“jÿÐY}‹iêß‰’','wp-content/plugins/instagram-feed/inc/if-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D–Há¡ù#õóÃÆ¿ßl\\','‚ˆ¡²sÑ¥3!ÝOc°<ÀxœÊº2\'„\Zn—P;%6','',0,'?'),('Çý>…^vå<b:)b„E_','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Entry.php',0,'Q–Á˜\rT\ruûÜ5,^W','Q–Á˜\rT\ruûÜ5,^W','é]W-VÜ€%ëZ}¤+h|––}½	P¦\'Ï=ž¼','',0,'?'),('Èßœ×4WcD0œ:÷»õ','wp-content/themes/Divi/epanel/theme-options-library/app/store/theme-options-library/providers.js',0,'Êþ‘FÁœã^ø4Bìf','Êþ‘FÁœã^ø4Bìf','Ê´)øØ˜óuÔ\ZÇ½¼º8!róZ¨0@ì +u`','',0,'?'),('È¯DèT–Ý_¾cI_¸¨µ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/BlockDomain.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯™ìcYø2º³áÍ”(ÑM','ú_¬ÙhœQÈz¯]œagìíß5\n×]«ôö lq¼\'P','',0,'?'),('È\Z{gÝü?Ñ3gÚ¢\Z½','wp-admin/images/icons32-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ%¤*ùúüøÌgš´ú»','×#!$í¯Ø@ì0gé¿.Ö;i3%!ÍýcHPë•œ=','',0,'?'),('Èâüfp°ñ\0!¹tDK','wp-admin/js/code-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤òN¦\'ß½	‰%ùîñ','·æ-‡Bd/È`ò²\\Vôx6Y*Ýî-$ßþ³®ÄW','',0,'?'),('È8ªÞx©~Á½=ØôÇ@','wp-content/plugins/fusion-builder/assets/js/min/library/jquery.countTo.js',0,'Ý„}îÇ^PJd÷\Zédg','Ý„}îÇ^PJd÷\Zédg','ÇÓàHñŸnÚ~:G&A\'ü€9K¾0 UjããÆB','',0,'?'),('È\"u@ž³T¬…S›ñ5ò','wp-includes/images/smilies/icon_idea.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åìÔ<]×ÿW3tÞå','Å{ô2^4S’ ¶‰Tl¨ç·ç®I†JÑQøö\"','',0,'?'),('È-–nBåÆÐiÊJI\'™Ø','wp-content/themes/Divi/includes/builder/module/Testimonial.php',0,'~Ldü—otºˆPô‡Õa\Z','~Ldü—otºˆPô‡Õa\Z','7^AÏ\0|J©ðDLÂÖ¢j_uSf ò«,Þû.	','',0,'?'),('È/½‰!NAZ3¤{Gþhx›','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlVersion.php',0,'xWÝ }õ‡t—]-…èŸ','xWÝ }õ‡t—]-…èŸ','tš6îFÅƒŽ6a†„òõ#×T]§¯>ÍÕ&r{Ö8þþ','',0,'?'),('È0ŒÅÕZvTâQHÐ','wp-content/plugins/updraftplus/includes/jquery.serializeJSON/jquery.serializejson.min.js',0,'-Ï£;Gi$rG–9¼‘c$è','-Ï£;Gi$rG–9¼‘c$è','Ï¯Ú|/‡ÕôûžôX\n2ÃôG:@{÷\rAL{¬	´','',0,'?'),('È5”ÃÖå6ÆñI…¹æ\Zu,','wp-content/plugins/instagram-feed/templates/feed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓîFw½•$b’íùÉñ6º','CÐ×>`!µ6Å¡z¢©è¾ã\ržøJ¨ðP/Wî¤•!	','',0,'?'),('È6¿ì¡w¼¡Žr]Ïì*\\#','wp-content/plugins/wordfence/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»ÓãB7¯&Ú]ÀŠNDd','Û@HÎßÁååM;ïº¾‰5 iÐÝ\'™åoí¤5Vö','',0,'?'),('È7˜\0ŽùttŠ².','wp-content/plugins/wordfence/views/dashboard/status-renewing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hwBí®îïþe (›º','‰Ôì^K$¼ÓÜú1\0¤nÆ„&äiM{ç«$Œ^àŠh‰','',0,'?'),('È8â×ì¶ÃR6>G\"Š£ð','wp-includes/js/dist/element.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊZ,\rÉÉCˆ¨ÖEqÆ¡ì','GÙä=¡ÏlËtŸ&¾ÒYA•@Ó«ô³%þN½V—','',0,'?'),('È;±°”N¼Q>ã‰Äô¨','wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','î5>ó\ZÜ!ÃÌ„†›Äó¸','\"`\nÿ2ZgoÑj1á¥páhG)MÚO¶Yaž\rci@G','',0,'?'),('ÈCR=aŠ2#øÔù0ëS','wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/Response.php',0,'9‰-­›wÃ’x\rÌãÚv','9‰-­›wÃ’x\rÌãÚv','S˜\'ù-¾ˆõ\n:xªT‚]ïO¥ãl’Xïu­\'è6š','',0,'?'),('ÈQUJ›avèÍ¶·d…0n','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/GetDirectory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊZ	VßÈ !ÇI”3-T(,','nÓ¬:Z€ï·¿8ÛA­ðåäñ†‡õHî`O©Ñôi§','',0,'?'),('ÈQžq×Ø‚n¤¹ÁoP','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/MultipartUploadException.php',0,'1a5,¤™ê7ƒˆŠ¨ð×»','1a5,¤™ê7ƒˆŠ¨ð×»',',µ+“&2‡¢ñSLo«]Gtgò8à–++tÎe5OV','',0,'?'),('ÈY$\'«»¾šo‘ãì','wp-includes/css/wp-auth-check-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™ÖèjvÐsZ¬¦Ü»&hÍ','F¥V=&G\"Ùr¾¬\rFÝp–“\nJàÝ£Û=ÕŸ3Û','',0,'?'),('È\\Šþ4ßî^öã/59\'³Y','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/sortable/field_sortable.php',0,'j¾¬M-Rsäª,R×ó','j¾¬M-Rsäª,R×ó','¶óèrºÁ§Òä`ws©%²øw•qÓÓµÖ¢Ë*iïâÆ','',0,'?'),('Èl&®HdšÝGH¼³ vjJ','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Oauth2.php',0,'Iyb•y4­Mgc¤Îž','Iyb•y4­Mgc¤Îž','žó^!æ×$÷®÷ªy[X\\g Ö§gí¸N\'3(hm','',0,'?'),('ÈuåÙC~7\nèæôW³e×','wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HŽ£ˆæk-x…¼fâC/','‘qŽ~xYâ\ZköŒÅoîÀÏ«™(NSëBçø¦','',0,'?'),('È^ê\nž×ØëñÁñ–','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/PasswordPolicyViolationException.php',0,'»îG\rMŒ.à>×çö ^h','»îG\rMŒ.à>×çö ^h','¢ôÔƒÇñdl9øˆ”Ãf%thV¶ÙOòÅ¼O','',0,'?'),('È·ôÁ‚#/î–£\0œ·6','wp-content/plugins/wordfence/modules/login-security/classes/controller/time.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Aútz`àn%”ðYPÿ','Ÿµ·÷÷\\ƒ1ÉÓ[ùØZ†>EKöÆRkåØW\\‹vŽ','',0,'?'),('Èƒà\Z§üJ©ŒA©½”F','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/TransferException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êuÕS)§ØnÓ5ÉgùL>Þ','…?htF_Ùýu4””179çÉaëUáŽiÄÇ$','',0,'?'),('ÈPžÃ é3ÄïÑ€\n”Í','wp-includes/class-wp-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|wØ	ÈviÍ”ý¬ßcÆ°','ìbÀLÌç]´VÍmhH8êZ.cå¹Š8?ß\n','',0,'?'),('ÈÿhufDÃv±Ã©Ç3','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/AbstractWaiter.php',0,'çÏý`ÆÃõ4ôˆÙC','çÏý`ÆÃõ4ôˆÙC','T‹ÔñT^Š.ÿÔ!#bäPãúòârÙ\\cÂŽ0áñÐ8','',0,'?'),('È–õï~*Òu’Å2O¥éÙ','wp-content/plugins/wordfence/js/wfglobal.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jf\'‘?gÀm:›Ã¹','Xäc\Z]R@øä1Šqw÷)Òkl©Q¸ÌÜQÜ','',0,'?'),('È™E\rµ¸_ô±‰9¸†\"œ','wp-content/plugins/instagram-feed/img/about/icon-full.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§é»‚#Íy\ZÿIØá¨;§','ÍìÛÚxAÝµyO3C rÞGîd[Õ~À¼´ù‹”','',0,'?'),('È ÂÒèfÿ1èhò»‚f²','wp-content/plugins/updraftplus/templates/wp-admin/advanced/search-replace.php',0,'bŠ~K,€s(i’»Q&','bŠ~K,€s(i’»Q&','×\\õ]Làyœ?Y*#›%L\"Vb¤\\?¤ð£¢`\n²³','',0,'?'),('È±f+½h­]¡èÚ','wp-content/themes/Divi/core/admin/images/svg/security.svg',0,'M®Lp$jÑ9®t/ù','M®Lp$jÑ9®t/ù','šgÝa¯c5/ÅKZ!·µj\ZüX‰±6ÉÐ:®ï9','',0,'?'),('È·íR~H6²®}ºÀ`ÉŒ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MalformedACLErrorException.php',0,'ö71I¾LÌ·¶ó£bŠ×','ö71I¾LÌ·¶ó£bŠ×','î%Ý=‡kÝyæ¿uRt³IjèQ®¶º·†ÏÌ%','',0,'?'),('È»‡·¡P´ïVúS°5ê','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/IAuthScheme.php',0,'Ñ6)ì÷úo1Tž€ˆÜåv','Ñ6)ì÷úo1Tž€ˆÜåv','+òµÿùÛj¨Î£¼£É_§OŽÉ!/ßúêL|.«®€','',0,'?'),('È½hTZ#fÊ^ë¹Ö„ô','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/link_color/field_link_color.min.js',0,'´_£šµ€ò‡@…[Q¬-','´_£šµ€ò‡@…[Q¬-','4oP“²â—hžæHî_(QçU<÷Ô‰—îŒœq8kª/','',0,'?'),('È¿˜-èØ`°uúªÆoðò','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a m;Sœ·V#åÓmóI','žR9F¨ÌÝóøìÆ‡ë47i}€Ê§”ÙC^×%','',0,'?'),('ÈÔÄÉD.ÛÊY1¢G…wd','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetStatsByDevice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—ê?˜äˆ‘‚Ý¦6Òråu','M}ˆ;žZ®‚Ó›v*AÝ‰šKýùÚ«yrDNë^J','',0,'?'),('Èïç¼‚ç‰a©Ëó§cŸ™','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/HeaderVisitor.php',0,'\"lÑ¼¥)¨&L{6ÞgÁàG','\"lÑ¼¥)¨&L{6ÞgÁàG','•ïôÅ;©™ÝöfÞÑ6)ÜT\"ÎØŒˆ÷','',0,'?'),('ÈõMlý‹æNàŸ# x','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/MonologLogAdapter.php',0,'³¡ûÍIÁpFêß·›o®','³¡ûÍIÁpFêß·›o®','4•.I0ìÅèéÄ!0yxèrí](žF‘WÿòJ¶¥V','',0,'?'),('É\rV¤0Z#ê£}xvi+ß','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CallbackCanCacheStrategy.php',0,'&/{hù4†¯ûÌxèë…2','&/{hù4†¯ûÌxèë…2','MñNÿcc&?É)v+<(A\'\0Ø4Ëzá3ýœôv','',0,'?'),('ÉÛv¯¯rDÊ¨\\£','wp-content/plugins/fusion-builder/shortcodes/fusion-slider.php',0,'-Z‚3%ãð›EÈÓd','-Z‚3%ãð›EÈÓd','•âd¶ÀáC}U&•K¡QÕgšÿ« 0Ö]áy3Po','',0,'?'),('É¥ƒÛÐ~\r\ZK4(#ãÅ','wp-admin/user/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»¡(íŒ‹‰#ÑÓAƒäó;Ç','‚u«AêÃö“+I/˜ãŠ“\0»n‰NË1G8Ü\ZD-ú','',0,'?'),('É+¨‡ð¹^$àñ7Y«ÓÑ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/XmlResponseLocationVisitor.php',0,'EzziÓW[ôZü\"| ý9H','EzziÓW[ôZü\"| ý9H','V;ò¯t¬4þµìÓêZåîÌCv’É3#G7Doˆ¸','',0,'?'),('É1ˆ†›ÎžA²TId?É×','wp-content/themes/Divi/common/admin.php',0,'“k\'µµ·b;‰²äE\Z','“k\'µµ·b;‰²äE\Z','@ª–iW?U7ÅfR‹¢}FVàV¨1C žîwÚ–Ù','',0,'?'),('É5ªiD‰hI„6Ìþ;','wp-includes/SimplePie/Cache/Memcached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°ÚÖç\nÑ\'Xlabîì4`','?OÕd6¸Cè‰Îu—¸Ö>Jrúýh«t»×íôe…î','',0,'?'),('ÉA7¨\'áC#žwŠSûsŽ','wp-admin/css/about.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰¯ŽžŽÙ¬wéÅ$ÛSJ','%lÎÈv3 ÎßÍê,fºî¢è‹6Í.èZ³ÊDùhÎ','',0,'?'),('ÉFè.¼¦šJ©­ˆœ.áÓ','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/bootstrap.popover.js',0,'ÌøU‰Õ†ÖPlÎsi','ÌøU‰Õ†ÖPlÎsi','Ò#üå{ÝþRáN›j–Z­A+ †/d3$N·Rå§Ùù','',0,'?'),('ÉOï\ZX¨îŠÒÜfÍœ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ThrottlingErrorChecker.php',0,'2˜1éòG$ÏÃ[¿','2˜1éòG$ÏÃ[¿','Îm,©Ýav¸J[É_žà7)†I\"Ðfão	¿uÛ¬ó','',0,'?'),('ÉlX”wÁóBõ*X§Wñ','wp-content/plugins/wordfence/images/sort_asc_disabled.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OÉ§ÅþÍ*ÒXÿ²Û9e','¯v‰\Zþ|5.YX ©‚÷‰¤òZ–é¹Å¹','',0,'?'),('ÉoiÃ*M	€ƒÚ!‰UA','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/TaskQueueInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n³æÔ-õB_F¶Ô„Ôõ\\+','~*T©e_c1îÆc\"¾B\0zûåYhµ8åD¿Qªôê','',0,'?'),('É‚ü¿Îsô p2I£´)','wp-content/plugins/wp-mail-smtp/src/Providers/AmazonSES/Options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'#+J<\rµ´i……¯>†@','wÞ$=Äu×Š¤ìDNñ%+Ä\'\0[{’‰¶GÏØ»3%‘','',0,'?'),('É†8¨ÂÖÀpÅ»ÑµVý','wp-content/plugins/wordfence/lib/wfActivityReport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«…ôþ/}ÏéUìG+ïì','\'o–w”,X^Èxšµ¯(˜ˆ•*ÎÝåÃ/ƒT?Œaµ','',0,'?'),('É®&m©ÂŽ\"œé','wp-content/plugins/worker/src/MWP/Crypter/Factory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«2³:ØWd4–Z•!2/','É/–Ñ¾wÕ1Æ&äœ´ÎwYåNÜ‡¦ ôy’±C','',0,'?'),('É‘y}¶BP¬þ)	ô%\r','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/UnsupportedCurveException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»Á\"O*8\rp9«xâc|Ñ',';éÿ01ú~CM©tÔ\"ÔÏÃYbMà\nYbk’ž2Çô','',0,'?'),('É›øTÝt\rmOôøw„','wp-content/themes/Divi/cloud/i18n/library.php',0,'JØP_DñBÐ”3Ma½','JØP_DñBÐ”3Ma½','DzMüŠ°B÷	Þ#ÁÔWLéÒ­.V/\\¾ó','',0,'?'),('É¡îˆ‹Ê§~²¢Á¿.)k','wp-admin/includes/class-custom-background.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦â ûIZFÞ‡ÀË','Ág?ef™•òšþQñß/8\Z±¤Uì»³°úUP;¯','',0,'?'),('É§ÙO{Œ5¢\rŸT|Ÿª','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–w¸•Í±Àör0 êØ…=æ','?EÜ%÷ë+Ž›„±Èw\rä^ßÖ—.$â‘i‘$[W','',0,'?'),('É¶cû¾8¥¬1à÷’–Õ','wp-content/plugins/wp-mail-smtp/assets/css/emails/summary-report-email.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™kZæ>û/%drëÇ','\r9<ñáâ2åîr-me,«§Û¡¿Q6öó›ÖÆ•','',0,'?'),('ÉÇËÑƒ{eÝÇ$àÖ|','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/numeric/validation_numeric.php',0,'Zí\rq¬$#Ûè[&û(?','Zí\rq¬$#Ûè[&û(?','C«”nM-hÅ8Ë­ÝúÅýÎ Hðª$àÂ/Ý‚+)ðc','',0,'?'),('ÉÒ°†“2D´iÜe½','wp-admin/css/l10n.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µÄ¸øP)û|„ðqŸr²€­','wppS¦½Ü\"üDÀ.¼Åo”MOŒmÇO©\'bËaÇ‹0','',0,'?'),('ÉÔCCF‹ßñ±rÿˆP8','wp-content/plugins/updraftplus/includes/Google/Service/Prediction.php',0,'ì¦ÒªÈyO‡‹76\"Æ¾è','ì¦ÒªÈyO‡‹76\"Æ¾è','ïÄ¦hPly™d§y\n½’ÏYƒØDí-sàlµ@ÝD','',0,'?'),('ÉÛùÇP•Ê> Á=“0½\\','wp-content/plugins/duplicate-post/src/handlers/save-post-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ïe]KjÄ~Ö­œt??eL','½¬@\Zƒ9LŒŒzu\02a16Š×ò	˜	¡Å•1‰Üi','',0,'?'),('Éë¸a?Š.ÕdÉ~]\'h','wp-content/plugins/really-simple-ssl/grid/templates/ms-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œD¹°®¬!Ì·½tÁáÃéE','¿·jÆ9Êö™Š¥°Ð–l\Z£ËV7‰‹^O!ÓK','',0,'?'),('Éï—¾ß«h&£\'s','wp-includes/blocks/search/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\Zˆ‡V6}rÜê^íÀîì','|dV´XíP7:¨þÔL!{Nd.5AøTPšµ%$','',0,'?'),('ÊÐùPÅd„^ºd€]Næ ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JpegtranFilter.php',0,'×_7\\ñé&­@äÆ\n','×_7\\ñé&­@äÆ\n','ÉÂ§ ]$½˜Í1ÊìTtƒZ\"efNñcçnÈ:]dd§','',0,'?'),('Ê ü†µtdrlPj','wp-includes/css/dist/widgets/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/ö¶¤@_’ô©EØW”yK','¬NŒÂÆinæ/Ýh+Ñ-Rý-bÑ=T:…Ý\n$VS','',0,'?'),('Ê#K Û±	µÝQº‹B','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactoryInterface.php',0,'è(EÉ¿\'jš+.T’}ÖÉ','è(EÉ¿\'jš+.T’}ÖÉ','ìHž°Ù²úyã«GÛóy?Ä-n íg`Â’Ìî„ a','',0,'?'),('Ê%qÀ8}Ï¥æ','wp-content/plugins/duplicate-post/vendor/composer/platform_check.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áïÿˆ“;ãÝW@ãÉSx','úÎçþI7éÉ­\' ¼¡Ú±<x]šëtm-³Ü%ß','',0,'?'),('Ê\'WE]r„š°\n@áb','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/SnapshotError.php',0,'Ù\nÇàô8ù×&Êi\"ƒƒ','Ù\nÇàô8ù×&Êi\"ƒƒ','¨?ÍæNšÈŸ(U±•¤š5uQ?6y?“ÚÏP­ó†Ú²å\Z','',0,'?'),('Ê(†q‚4Pè}ý5Ozük','wp-admin/js/inline-edit-tax.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ž›_¡¢’hŒA?¹ø»D','±›LZV(jûä0ï~Þ\Z3u¿)›Ôztef\nËÞÇO','',0,'?'),('Ê(ï((i]Â§\n1¢2Ý•','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/FlavorError.php',0,'Xoì»S\\,JØåÌÑ\'e','Xoì»S\\,JØåÌÑ\'e','Á3_}\"ñ„\'í\"Ùpµoö+PÌÁ’êYE%µ´¼ÝP','',0,'?'),('Ê-„/+Áñ\nsm÷É*m','wp-content/updraft/themes-old/twentyseventeen/template-parts/page/content-page.php',0,'Â>|)}X9Z\n¦Ûy?£+','Â>|)}X9Z\n¦Ûy?£+','C8%(@i=¢û5&ð\Zcó³^[Co‚´[eeÛW0•Ç)','',0,'?'),('Ê.ðð\'Nñ.Gár•ô','wp-content/plugins/worker/src/MWP/EventListener/FixCompatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–¸EI6û\nxZàÿ~Í.','[ª0t@ Ø6¬UMabc^À\\Ÿ€xŠ!ÉLóº','',0,'?'),('ÊR±­ÙÑˆé°Þ¿¾0','wp-admin/css/themes.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#1å¿—$\0ÿ«®g+iVæ','ó\'yÿÍ,(Í,+›ùüÝN6J¸\nU<ÙpWk¤Ð','',0,'?'),('Êf¿fÃÄt]·0ó“Hv','wp-content/plugins/fusion-builder/js/views/view-multi-element-sortable-ui.js',0,'`û·ÉèGÅèX€©Ùª5','`û·ÉèGÅèX€©Ùª5','žhî¨>t*ZV$wæl]® u÷:Gˆ=Ç\\8,UÄ­','',0,'?'),('ÊhFM<@`%q-ãæ','wp-admin/includes/class-wp-filesystem-direct.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ,¦:Ca<µyøgä','©fü«!þ®¹–ôO.‚e}E”y3gå†óª„ÜH_','',0,'?'),('Êh»½æ}+÷ƒPxn¨\\5','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/TwigResource.php',0,'Ö7¾ð…úÏ9/²W¾9œ|v','Ö7¾ð…úÏ9/²W¾9œ|v','ÄB»árda7Ó·8ÔÀª`K;Él÷9(ÉåŒËXÈ¸','',0,'?'),('Êr¹ž{¤\Zk¡À\"¨¤k','wp-admin/css/site-health-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Îô0 õÚÕêÚ…Œ€†\nà´','…ë™¨²”ŽŸãx÷­ÞÝWpS^ƒ[„7—ÖV•q‘Ù','',0,'?'),('ÊxjPÕö¼¨Ù!cÈx','wp-admin/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n¦*¢Áõ#”¶_¥€Ò³Zƒ','¶þ›áÂf®³uG#©œ¡×\'ÿƒ_Ù‹ö:ËFúA','',0,'?'),('Ê~Ta2l¤ËÐ;¡6ëŠŒ','wp-content/plugins/contact-form-7/modules/constant-contact/contact-post-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(EÉÉêbŒd¤ÔlYÆ','ÉOãá\Z£IªcÌH¬=§ÇÖÆ<.\r˜ŽÒjÄY´VJµ©9','',0,'?'),('Êá;÷ˆ§ì>®þŠ:ø','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/PHP52/SplFixedArray.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©£Ø¦TáÐ¬©Ô„cì/¥ô','TJ¶)‚,8ãq²@©fÌ<DÚ›”Ö\rxÝÈåÄF‰','',0,'?'),('Ê€ö«Q$#…(±`\0´;ý²','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-gallery.js',0,'0ÃÈwB8XõL§¬Œ\Z/','0ÃÈwB8XõL§¬Œ\Z/','Î}6l\0ÞJS×õX\rá‘¼7YÈ<})ý5öÕèÒe','',0,'?'),('ÊŠš2¼%ð‰+a_ÒôLF','wp-includes/blocks/columns/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gý\rcÿpåÌå’$','$0¯ž*„½æÚºÝÎ‡à%ŠçZ8k!~X‰éÍ–Ö','',0,'?'),('Ê—¬X‘\r5¢ƒ2Ö°²ƒ','wp-content/plugins/fusion-builder/shortcodes/fusion-pricing-table.php',0,'„ÇQäh\nº\"ÃwöÈÉì','„ÇQäh\nº\"ÃwöÈÉì','†™žjÊxaØ&ì.àÏ3µo©èÊÌÅz÷í¥AoŽ7q','',0,'?'),('Êºýš=®©—¢Îc}„#S','wp-content/themes/Divi/includes/builder/module/woocommerce/Gallery.php',0,'ŽËð×|†Þ^s­‰r”œ','ŽËð×|†Þ^s­‰r”œ','Ãp\0åÀxbk*¡#`ëp>B\r¨gIåÿò»`','',0,'?'),('Ê½;,Æ-ÇGüc}ê—Ÿë','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SCP.php',0,'Fjî‹ò×ÝÏó[]ü','Fjî‹ò×ÝÏó[]ü','	ÑZÛVTÒÖä„ÃÃU+¸öhóa‡àg‹-hHR¯ì','',0,'?'),('ÊÄüƒWå>ÄÒŸ¢ÏïþÈ[','wp-includes/Requests/Exception/HTTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥ÉËÅ³ÙžhƒXªr~nÙf','oýEÂ²tQQbo\n®þºïrî¡QqÚá\"/±‚Ž…','',0,'?'),('ÊÜ†R(\'2Whpõ¤—G','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AbstractModel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ÒH‰ÿC¤5Ì¨[\0¥å','ÀXúÍf:µM‰tÞËƒ#û¥sDú4(øNG†Fèº','',0,'?'),('ÊÝ	b¢·–8Î[¿¶¥y','wp-includes/js/wp-emoji-release.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l†Åo°»cñ\\í¥Ü˜','Q¯dÁ:À®üÊ[U4&&;Jâ£Í½g–ûr„ïV¸','',0,'?'),('Êã±›™‹­ V9ø{â¶éb','wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~¹ñJnwÍæ8z2óswa','œu<üOñ8Be\'O¯b\0yŽPJÒx7˜çþÜÿIó','',0,'?'),('ÊîOå¿¯uRòûÒcÁ[j','wp-includes/sodium_compat/namespaced/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[clër‹u©	ÃÐ¡u^','6pËÓ\'`À+*[AGà4Šüúü^6ÅŠ£è%ÔÁC','',0,'?'),('Êð…eRßXö½48èËï','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/BitBucketApi.php',0,'îÔ\0=‚¢›ƒí¥3','îÔ\0=‚¢›ƒí¥3','%îžZ²v=(Heú`€¤£¢ õ–$ÌÜ YÀñã','',0,'?'),('Êô9ÀÝï„3p—ç^’1É','wp-content/plugins/contact-form-7/admin/includes/editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pFì\"Š÷:DÒ“ð\"','bÙ£oL^-Ê{‘$zFçH…ºrv‡÷vŽ/Pžƒ','',0,'?'),('Ë-Š.8Uù`u*Ã÷Ðø','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/AcpListener.php',0,'0.!…á8GRBüwŒ÷','0.!…á8GRBüwŒ÷','IW£IkNæ\\ë	%®tc…q´¿59îÀbF¤“«´„','',0,'?'),('ËÕ\n±,’Üïš~%Üõ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ListBlobsOptions.php',0,'p;dI‘fÇ•UBø®J','p;dI‘fÇ•UBø®J','œ´¯ek\"z@‘ÐQ^ýè´ù?™“Ûè!\ræÇ`;Ï','',0,'?'),('Ë!¢#ò°ÕI|‚ÛFé','wp-includes/js/tinymce/plugins/directionality/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Ö\"èX	& )ÆÏ=Ê€$','µ&‹[ì@àÊ5ˆ¹(Ó¬cv‘§LûYI6ðB;)-','',0,'?'),('Ë0¥ÂèD‚Ø,Nú­“','wp-content/themes/Divi/includes/builder/module/settings/migration/ColumnOptions.php',0,'Rf\'gè*}$\ZÎŸoü','Rf\'gè*}$\ZÎŸoü','é‡^¯w=\'*[G[Maý²…IÃSå²‘[H57','',0,'?'),('Ë2{õ¾o•ŸÖÈoY=!','wp-content/updraft/themes-old/twentysixteen/image.php',0,'+iJø×öêŠ8’GÞ2ñ','+iJø×öêŠ8’GÞ2ñ','ß+‹ŽaìE8ºó½IÔJ;§0ØÔ	:©¥@#gi','',0,'?'),('Ë3šRh´„Qe#\nt^','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_tr.js',0,'_w˜ì¬–ìgm˜\rõêj','_w˜ì¬–ìgm˜\rõêj','Œ«„…ä–({àƒ½]¨4½„‹RúÂWFS]:Ó','',0,'?'),('Ë5V›xÇ,$¾>7dýk»','wp-includes/sodium_compat/namespaced/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú¸búò¯9ô°‡±M','éF©/\'¡€M%”9ô }@¬ÎfW£>Œ–S*­m','',0,'?'),('Ë6 <¥ÊCêï®¿¹V:(r','wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çbe& Wà“åï“ÍÅ˜„','Iu{WÕm©bk_æÊç€ùýé.ªcx\rh+KŸ','',0,'?'),('Ë9÷ ÃŸòþÌ!ïmõ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataKeyError.php',0,'qGl“X°ŒÞñÙå\Z³pJ','qGl“X°ŒÞñÙå\Z³pJ','NñoqbwÐ8=³ñDn7wÓ\0t§ÁÝ#}\'Ñv','',0,'?'),('ËAWnqª:^¤ÂÊŒÙO€','wp-content/plugins/duplicate-post/src/ui/metabox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Šß)çŸÁ CL\\¯Ó','Ñ”:*FªL»ÞŠáòhFãýþ|\0¢—]ëø','',0,'?'),('ËBN’ÝÎÃCkðš-Oa','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/ResumableDownload.php',0,'ÂÀ¶„ŽWfãQü[ðÌ[£','ÂÀ¶„ŽWfãQü[ðÌ[£',')ÌÏ±‘#½V–JÌ™Ã»¯†…—¤/Ì‹Ã','',0,'?'),('ËC¹üö†tðàñÍ|7P','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterConfigFactory.php',0,'¬kÙ0ö\Zæ¶hžÜxV\'x³','¬kÙ0ö\Zæ¶hžÜxV\'x³','ôúqîµÌç•¥yP+µ»ý)htuÿ8 †¨…’ÞrI','',0,'?'),('ËJÞœ/ú$\"Ýe^Øº','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Constants/UrlType.php',0,'Â¿çz$«ã£à²+_','Â¿çz$«ã£à²+_','Ew;úJT_m4”iZx#ùœßàBn‚dÍ\Zdª	','',0,'?'),('ËU<Ý?Y,õÏ§Ø»(','wp-admin/js/svg-painter.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jæ¾Prëu6ª<jsF&„Ë','ÌWÐQîžüVµä\ZA¦6ïûInè_G§„É»Ü€ëÔ’þl','',0,'?'),('ËUÐÄ}ÚB£Í	Jsýª','wp-includes/class-wp-object-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÍnÌ©$¦³¸›–•¦/V','…¦ÏO‹\Zm7l‘‚×üWž´Ø2ö…m´_/2üì¸$ù','',0,'?'),('Ë]½;…<¾*YÆ­â!x','wp-content/updraft/plugins-old/updraftplus/includes/Dropbox2/API.php',0,'š/k«ú=›¨+Ë1˜Yˆ','š/k«ú=›¨+Ë1˜Yˆ','ç­&€€; uÐ½Îæ¦ÂÄa9D(!—ÜÔm¦\0¸Gš…‡','',0,'?'),('Ëd\ZYù¨\'ÁlaØÞ?B…2','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºX­D‹¿D»zÔY§x','RS8/ÍÿYå\'\0À§xÍ[ÄÒæÂ¯“¥£¬ÂÎ6','',0,'?'),('Ëqò›8à]C¤ÝËÖ”Õ','wp-content/plugins/wordfence/modules/login-security/views/common/reset-grace-period.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë²üá6ÞÏœÆ{¼/åy','ç€?a‡Îd&ò.íÉ–¹¦¤…ÐqîV$ËÂMd','',0,'?'),('Ës\0TwK…#UÆê<°','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/LessUtils.php',0,'âJ.ýöÞ()%§t¦','âJ.ýöÞ()%§t¦','âìNÇV!»Ú5ƒ#é˜¥íªüŽ7—˜Z&´Û(lÕ¢','',0,'?'),('ËyÐ6‘6lëšM¬C·','wp-content/plugins/wordfence/views/waf/firewall-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&\nÄU¸”±«õÎ®ú,','€SS,—|lï¸jó=ó F\'íŸ6mgDGsá','',0,'?'),('Ë|GµÒ$êÑî¥‚Åk™úä','wp-includes/js/dist/vendor/wp-polyfill-url.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñ˜>d KP\'IC¤ç3µ½8','žköõzê¯Ï:ó´—_sDpþxe%JØ	½‰õSTº_','',0,'?'),('Ë}Ua&glÃäi¸)ºëÂ!','wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ãµ©EðÝ±”¦iº','OŽXŒ¯b¸NpÑî¦Êç¯=)8Ùú,ÌO’Ê[K','',0,'?'),('Ë†]g–1{[	œpeŽ','wp-includes/blocks/video/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/cO¡ÿAÜÛÿûqâña','ÉÞî xÑ­Á\Z¶VÇPûžsŽbªsÒ‚ÄÏ…”l(A','',0,'?'),('Ë‡n(úï€\nQÁËm´','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/core/enqueue.php',0,'!´§ŸÕÕàu.Ìî_\0','!´§ŸÕÕàu.Ìî_\0','€ú˜âáºC™óVv¥Djâ³Ð¦áæ3Ü‡KöÍTÇLpP','',0,'?'),('Ëˆó~ò@óE¤Ð˜D„`','wp-content/themes/Divi/includes/builder/class-et-builder-dynamic-assets-feature.php',0,'ü×÷š–*[–aæ8‘ÅT­@','ü×÷š–*[–aæ8‘ÅT­@','„’ÔH»“¡Õß¿‚AA\n`·rÑ€1~ÒŠ^Ôž±N\r','',0,'?'),('Ë6}*|6‡åOg)œƒf','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/PEAR.php',0,'Î‡\r{àxÓx	ð','Î‡\r{àxÓx	ð','ë1Lnx³&äÃ£6\0õ¯n“*öw›\ZywÊ»Wçë=VÞ','',0,'?'),('ËåGä¯€oe·ÿïoœ','wp-includes/js/shortcode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@¨¿ñÐÅâÉP}óSÎŠ','yaeÃaKÔµRå\0%ÔÆxy¿Áuþyûâ†¢','',0,'?'),('Ë˜VdÝélÁƒc™-ÒhF','wp-content/plugins/instagram-feed/inc/admin/class-sbi-notifications.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3ÕUàÐí¢r‚I\"Q¡','£ÇmÇGMüXp‘ŠL‚Ç¼³ÕëÏ@O\Z¤SÀó','',0,'?'),('Ë¡ìKF­Ra”öwS\\','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/emoticons/plugin.min.js',0,'\"¹…±$G|¯\ráÜ‰né|','\"¹…±$G|¯\ráÜ‰né|','C‘#ô43ÛbXYdÇâü£û`Õ_\"$òÌÝ	“±®e','',0,'?'),('Ë¤Ô’{%kò¥Ž#¶fÛ','wp-includes/js/mediaelement/wp-playlist.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬â†ó3|G^âcKT\"Û','\'èe\"ÊŒ€_(nŒÉfúíwwà‰¨\ZŸNª2ï+ ','',0,'?'),('Ë¼ˆk-æÁ²k¤Î¥Ý','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/raw/parsedown.php',0,'	S³òá6¹î*URé! ','	S³òá6¹î*URé! ','&#Ì?j \'L\\Ï÷a\nÜÁí,±SÇÅÛsf”ñ±','',0,'?'),('Ë½ôA…­Vzd{Š9´`\nþ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NotSuchBucketPolicyException.php',0,'qK+¨ÉpÚÂ•¬Ì´•','qK+¨ÉpÚÂ•¬Ì´•','+O¼ñ~‰\rÚó)EÏnè\0`âûœóYãµ','',0,'?'),('ËÀãÆˆ‚àO´CYbçü¤','wp-content/themes/Divi/core/admin/images/svg/backups.svg',0,'ÅÎ£Aé8ƒÁVÕæZ\réq','ÅÎ£Aé8ƒÁVÕæZ\réq','éŒ±‘)^¶W\ry76­å¶ÔÔœOªTép‚Ó','',0,'?'),('ËÇ†ÜQ½_yœdö+£','wp-includes/sodium_compat/src/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X†ñU iU0Æll9ýc','þ_Òv$í¸U7_‘*\r?¬+ó^÷Œâ‰¾¾Ä€','',0,'?'),('ËÖÕ¯çèp®±þ°ÜQ›z\Z','wp-content/plugins/updraftplus/includes/Google/Service/Resource.php',0,'Pñ!^(Ð(Nµi4¾ËþÊ','Pñ!^(Ð(Nµi4¾ËþÊ','ÕþSˆkUzù‚òÔP“âx¶ÓìÊ-‹5þ_\Z4žÐi','',0,'?'),('ËÖæ»Nú½\0ÙÝÜ¹Ît','wp-includes/js/jquery/ui/spinner.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çü8–ÉTXiÛøMÁY„','’> qJØ·ù‚…0„ ¹\'…‹ÌR\'n¨7sòb3|','',0,'?'),('Ëæ±âÙŽ~´ÂIÊ:ïô§','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/LimitExceededException.php',0,'.ÂxÖ5FãN£xB','.ÂxÖ5FãN£xB','M@»{òmÙgWláïýðÈÁ¤=³‚ônó‹SuL}','',0,'?'),('Ëè¡Å âè˜î4´¤	Dkr','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/ValueSupplierInterface.php',0,'ˆà`ß´ÁŸ\' nô>	`','ˆà`ß´ÁŸ\' nô>	`','\\$ü·°·ñW1U·ÓŠº–@g,ñNd@ýÊð¤8','',0,'?'),('ËïvíE,¿-Oä{Ïº–','wp-includes/link-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l?,í¦·ÏwˆÐýDUÊ','&i×>J<•·£œ«ûGCˆ8Â>róh¶à³ã±A','',0,'?'),('Ëï+ø³ì­pSb-*pg]','wp-content/plugins/wp-mail-smtp/assets/images/dash-widget/wp/total.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±#ÐÄêÄ]ÍZ@nd','E9ÄÚ© \0©v9{ŽF‰ßwÑå†âËÓáËoà','',0,'?'),('Ëþ@8¼‘ørÿìà¢z¨ñ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Command/S3Command.php',0,'=À^9tP¤·\Z˜#\'¢ÃŒ','=À^9tP¤·\Z˜#\'¢ÃŒ','œTiáñ Ï|\\w¢ÌÀQ-OÜeÇ‘\ZÅóc¡Ûp','',0,'?'),('Ìn;c¼ÓŠsø{Œ|ö>','wp-content/plugins/wp-mail-smtp/src/Providers/SMTPcom/Options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<GÞp~™ô¨åü\nuX—$Î','¼Ê§À8¨uæ¼ævÓ>	;+Ä*ù•¬#­¦Æw½','',0,'?'),('ÌfŠøäTúu}ƒ;rü!','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/ServerSideEncryption.php',0,'HÓ¤@„@jÿA¥Þþ“ ô','HÓ¤@„@jÿA¥Þþ“ ô',':i™èØšæ„ý4¿ïI›{YÀŸ1Nê÷¡uDx','',0,'?'),('Ì\n+Øu]Èµ\Z\"z™ì`\"','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateChild.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[²òeL´´I¸5Vr8v','1ûrƒå5C¤?x©5*éŸ¹5²\\s×};ž/àþ','',0,'?'),('ÌÁ+ÉÌÑû-ÞÁ{År`','wp-content/plugins/worker/src/MWP/Event/ActionRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯Ó’åòÈå^Uwõûæ%','÷±__­…ç›ìÍ4ÓëíÑ!>Ä7Pþ¹h\n\r›%§Æ:Ð','',0,'?'),('Ì³´3+»oY	©µ','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php',0,'ßrùJºæ²ÛÆ·\\ãâL5h','ßrùJºæ²ÛÆ·\\ãâL5h','¯å=]\ríGl\"±>·¨’Ö…Ø!§Ø·.ye’6f*ë','',0,'?'),('ÌÁcÉˆzî°ýÞÑoQ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Cache/OrderResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w7¼Ÿòy\"uçÍ|qH|5','+Çuo XKžþ—ÞúG¶x¨åÁÐ0Ââëk¥Wm`Ù','',0,'?'),('Ì!éLTá3•ŸiÙêxÅ','wp-admin/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B~-í¨®ö<dñ4g','«Â·\"7u˜9N¬êkÅŽö±‡íÕ!9ÊÁ.À€','',0,'?'),('Ì/¦}‘¡Â¦•ÆkA¸Zj','wp-includes/blocks/query-pagination/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñûÖºÆºÿ™g¦¹Î?Õ','1BÚO=•—³Ú.—ƒ~ñÔH?l2âT¹­½ÍŒXTè¯','',0,'?'),('Ì=`Ê:‚°º®Ÿòx~”ë','wp-includes/blocks/site-logo/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Md±O×E1‚ÆÑàÝzÎC','ÔG4ú&ÖSÇy®(ÓFH¢œè‹²Ôß›Ý','',0,'?'),('Ì=z¸iÀ%ÿº†NüDpã','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/InstanceMetadata/Waiter/ServiceAvailable.php',0,'Áéï.D\Z™ûùf1?Ó¾¬','Áéï.D\Z™ûùf1?Ó¾¬','w›LRPgÔ\\Ò¥=;hRÈF®Ÿ²•®Í]êw/ßƒ§','',0,'?'),('ÌHU¦¯•éÈíê+¬]·','wp-content/plugins/wp-mail-smtp/assets/js/smtp-admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_‰YÚ˜Ù¸:é5²3kˆ','ÇànÝ¼-$w³±»fº‘áûhu‚„³S”+ïàÚêë','',0,'?'),('ÌMÏTq&[?ýù>ì¹Šå\n','wp-admin/css/colors/ectoplasm/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”qÑ9+Ø\"©Ñ+‘•','BÁ†mæN‘¾hÄë µ¬stN£ójAS4X\0$','',0,'?'),('ÌMèÖëàzßÅ­Yºü®','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_444444_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ØGÓJû‡u;QÔZ6ø½','ÿû…ß\\MUŒíKhQ¯wÀC©¶iÖV´î¢¹²ÎJ\'','',0,'?'),('ÌVÚ®™œÆêM¯éjÓ','wp-includes/js/plupload/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u&\n©TIŸzº«ªˆ+¾','¼ÿ\0v1£êsÔNí>cIDÙ¦¾Ö„Ié­0ÿ-','',0,'?'),('Ì\\ÖŽ ±i+=¾O¸k','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/BadDecryptionException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Úó¨1õ\"§­\'}3s)ë','«±i MoÆ*L‘|s’ò­¸ó‚ƒ(ŸwG6U79£ Þ','',0,'?'),('Ìx\nÔ‡ít,,¨:üÍnÆ','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/HmacSha1.php',0,'éòžeê®²I5Åð6{–4U','éòžeê®²I5Åð6{–4U',']Ú~‹¥§€G‹9öÈÙ««©ëq)™Îÿ],d­˜','',0,'?'),('Ìx$ÕE\r7œ…FX','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistt571.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',†u}ÁÍÚ’>ƒMÄ¥','g þT–“/j¢ò*žG¡&_Ÿáº–~äÒ¾¥¿:o','',0,'?'),('Ì{Gr»nvˆ•bçí¨;','wp-content/themes/Divi/core/admin/js/popper.min.js',0,'f+]F(~ZhHÚ’ü(“','f+]F(~ZhHÚ’ü(“','Qîž¥œ	³Œ\nÝ¥õºëªW	AÃÔO³“úßK` ù+nB','',0,'?'),('ÌÑû i›ïn°j/Är¼Õ','wp-includes/js/dist/i18n.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë­NÇ]…ß!eÔ=F','>+WÝ×xŽÂLß¤õHŸ<Õ¡‰)8Ìa¨$] ©Y­=','',0,'?'),('ÌÔ‘¦A¹Ha]ª\':©','wp-includes/blocks/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LŽ¹…€KË\"ÐŒ€/n','Ãj×bañ+œ‡È{ûjÈˆòuYYJb(D,ßp¢','',0,'?'),('Ì‹¸qÈB3aêYïç-ö','wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','û\0`\'}·(ƒ¥ƒb·†ŒA#','c,€Bp£2ý8 Õí¨0j‡7}hp-ùòå®†','',0,'?'),('Ì™~üÈŒÃ®+äíbyÈ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{¥ìˆŠzÀÁ;5!ËÐ','òDÐ\ZŠŽìL‰Þ Î”a¤°]nôœ\n»ìŒÕL&æ\n','',0,'?'),('Ì¢¨wáig^„>„ôìí','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnError.php',0,'Õ‘Ö\\ë:ÙväñÃ¸¾','Õ‘Ö\\ë:ÙväñÃ¸¾',';ë¸YúŠ]]ñ0Y¡2hiI¥½ÝT§¤nH÷ÌRÚF','',0,'?'),('Ì¤3‡Ïk¤M62ù½D]','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/AbstractEntityBodyDecorator.php',0,'6Ô¦‹ç#“hlÜž‘s­¿×','6Ô¦‹ç#“hlÜž‘s­¿×','YÃÉã(zÍêk\\ÀÓŽÌ‰1D~ÐæDr$ÖËŽew“Ø','',0,'?'),('Ì¦NÃU±¬wT¼v÷c®B','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôš¾ËlÀWeÔU{Ò9ü','ÜØéÌèäGû ßÙ8—=\0¨> ø3 wg3.¢4','',0,'?'),('Ì³´éB¸Tö(QöD$','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/Response.php',0,'9‰-­›wÃ’x\rÌãÚv','9‰-­›wÃ’x\rÌãÚv','S˜\'ù-¾ˆõ\n:xªT‚]ïO¥ãl’Xïu­\'è6š','',0,'?'),('Ì¸¿¬™-]\ZŸ—‰nü','wp-includes/sodium_compat/src/Core/Ristretto255.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k9÷wZÖê~˜¹ øô\'',' z¾`WN?]ýÓŸB,K„õÈJl´êŠW±¨>k¡','',0,'?'),('Ì¹y^ëlw×à\ZX¿','wp-content/plugins/wp-mail-smtp/assets/images/dash-widget/smtp/total.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oU<ì†˜üK—™bÐ','Þ\'l°J3ïÊ„½lÕ±Q Í	YóøºãAú´U?r','',0,'?'),('ÌÃŠ5ffÍ;,G!\'öó\'-','wp-admin/css/colors/ocean/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','š°<‹º:Û¶H\n«=|œ','HË/½‘‹Å¾žu7ó{ÎUX\nyCÝÅ)±µ„]','',0,'?'),('ÌÅÎêÕ\";+Â\rxu´äÊw','wp-includes/js/mediaelement/renderers/vimeo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','À?È~sÐâài6G¸/','­Ë{ƒö“Ûw˜Ø-\rþŒŠªzFáv_€û\\wfËâå','',0,'?'),('ÌÇŠ·EÁv–c,îØµyS^','wp-includes/images/crystal/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ð]µLcãiG›fQ“\rÏç','vèÚpm„Êcëø6ßY~\",!V¹ØEXlülã\"zÞ','',0,'?'),('ÌÇœ˜\'Jp‘èN——±t˜','wp-content/themes/Divi/includes/builder/module/woocommerce/CrossSells.php',0,'·fLòh™0™PøaKÔdO','·fLòh™0™PøaKÔdO','ÈèD¹Ö‚©·R`–¦:²)Šn·õ†‹¬’¥ûz§) r','',0,'?'),('Ìã ŠÅ\'éáéuûHoõœ','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-modal.js',0,'òÑ Ô´ùÜAi!¿™ž','òÑ Ô´ùÜAi!¿™ž','v}N°°Aîÿ»»,Æ}öo•3 ÐÍÄ“ŸPÔXN£','',0,'?'),('Ìëu/ä­ñuícñ£åÃ–','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Filters/AuthenticationFilter.php',0,'âóU·þx–³99„„Ÿ','âóU·þx–³99„„Ÿ','‚?–KJ\"8Ý6\\J…Ëãrè§(;±–Æó‰[)\ZŸŸ','',0,'?'),('ÌõÓ¹²ä·a¸)I¸¸','wp-content/plugins/duplicate-post/vendor/composer/installed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Î.J\'°âa™eó>ŽÅ ','ï×ÆË‘HÐ!—l†Ô3¼ãGö^b¸ûRoBÏi-','',0,'?'),('ÍO\"‹—jEÝL(©~§:~','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/OutOfBoundsException.php',0,'Úº¸µmÊ¸îµá]','Úº¸µmÊ¸îµá]','M„âý¦J(Õ1yçÄôµ¢‚(F-&¶»^HVÒ®','',0,'?'),('Í©ÿá‡p÷jÖ›`’Èw','wp-admin/css/customize-controls-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oø¨ôVfòDÿ\\1„„f','þ˜3ëÊÁƒ?ÉÑu)0üÅ°a‡8tâ¬gH®†ø','',0,'?'),('Í0SŒÈRÎ\0AŸó€Bü','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateSmsCampaign.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Äí™9Å	ó2ñåUœh','^ÌÊtFZCŸ¤«ž8US8šþè¦¥·ò¬$R0','',0,'?'),('ÍdÝêãlP‘Oê’ùI„','wp-admin/network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨DlRÀš—Ò=Èƒô@n','Ù”ÝfÄ°Ñô	ÁqRK/Øh•XÙ±VJH&k†HPB','',0,'?'),('Í$¼Ú‹ï8Šöeº(4Ûí','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ListPageBlobRangesResult.php',0,'äÒß]z~$\níXJå4','äÒß]z~$\níXJå4','c5¶¼ÌieÑVYÄÓˆÇDñ»:¢|ûFz·§Ö','',0,'?'),('Í&Qª:ócM”Ñ4–û\0','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/admin.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çøçâNàéýw)„I.Ù','ÿïwá·U|:êé#8‹R€´@Ú°K>ëT¬ì\naJ¶','',0,'?'),('Í)ÄÅäò\0Ÿe‡_Ô5=«','wp-content/plugins/wordfence/lib/diffResult.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gèQ ¼ª½ífú7ÅF','õÒŽ“ÎEÔõˆóØŠ>^!jº¡\0O’€ÆcaŠ´^°Ò','',0,'?'),('Í4´ÔŸ˜Ûar¿ôàœ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidTokenException.php',0,'²¶öDYr¹Ã\r;µf¬âÞ','²¶öDYr¹Ã\r;µf¬âÞ','÷Ú¼³éà^‚)õ?fÚe†4z–„¸¹*\\ÉÒ©+Hý','',0,'?'),('ÍId`ý­6Á’dÏRT¾0','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/InstanceMetadata/InstanceMetadataClient.php',0,'½VYuÐÚÕg&9¦Ñ(','½VYuÐÚÕg&9¦Ñ(','\\°Èpº,\'ÑáçqS+ÏÜCME!30ãÚÍ¥ù+xÕ','',0,'?'),('ÍK=­Xìa:Ä\'5¼','wp-includes/sodium_compat/src/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-pü˜ÿ‚\0EÈcbœc¥','\"ÚÌ˜ŸLŽ×Ù!Ò{rDnPz^ôÚXòjôÄûLk','',0,'?'),('ÍRÜaÃ4Z‚/ž\0\"‹2F','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffLogger.php',0,'.›âÚ…RëÉ`uDLH¹P¡','.›âÚ…RëÉ`uDLH¹P¡','XQˆþt<Üb¿mÞy©9#08e3+„h–µnð\Z«','',0,'?'),('ÍYÅ¥ =­:tZB™ë\rês','wp-content/plugins/really-simple-ssl/testssl/cloudflare/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¸ÜaÌ0ŸÁš¬ø&–-','ÓªƒGDfš¥è‰:ÃÚÈlkŠ#²L+J5B¨Ö','',0,'?'),('Í^&‘ó`Ráy’‹™ìJ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Áœ}në3;g)»áÀó»','\njìû^ú°¬†ÓCà˜(ÛËUUãi\'9ÞO','',0,'?'),('Í_·[wáÀ4|TS-Š','wp-content/plugins/instagram-feed/css/sb-instagram-2-1.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'H°ëÜ5ÌgDrÈQÈ^ÒC','×)o[x¤drÎì^r\ZoTŸ	YœoAj¶Õ‘ˆù>','',0,'?'),('Íb‰<6JÐcÒ)§Ù¹Ò','wp-content/themes/Divi/core/code-snippets/code-snippets-app.php',0,'9 ×¤™<îrEê>9f','9 ×¤™<îrEê>9f','\'_²6äÝzë}nŒÐÒÝ¦/Zc§‹(Á¬«_þ¸','',0,'?'),('Ím¥L0N\"ÈT~ìbÜ','wp-includes/theme-compat/footer-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„õZÜ«„ò.“+–j','ƒi§ÉDÿAJöÏˆ;v,gcÌ%‘çˆÑ	^#','',0,'?'),('ÍwËRÃ[‡zò®¯×ô/','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/JsonRestExceptionParser.php',0,'”,ktð“’ûN0+ÉÐ¯Ž','”,ktð“’ûN0+ÉÐ¯Ž','m–Ôâ±º‹K<¹BõyC 8@£RûE€¡HGH	4','',0,'?'),('Íwÿ9=Ÿ_\"h%’×v','wp-admin/css/install-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žÆM¡6®¸9õA:ETî','\"¡w(\r‹Ä§EãMÂÿG¤xšY[¾Í\"Œï=','',0,'?'),('Í}žLêç^©°ß|µˆ(','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/SlowDownException.php',0,',«·jV|e¿Í»Òkf',',«·jV|e¿Í»Òkf','P\0!Þ¢õ—)Žz KÌÜ¦‘Êê#ýªNUëY8','',0,'?'),('Í=¬hÀÈ„îÂkëÒƒ(','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Random.php',0,'²O“gÑ}ÿ ¼•¥§-g','²O“gÑ}ÿ ¼•¥§-g','ÝRóAhHa½Z™¨¾bFc1«×dð|\'&ðpL;','',0,'?'),('Í¥MTbvñ>­“L~','wp-content/plugins/contact-form-7/modules/sendinblue/service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'7c¯L÷F¹Ñª‰áw~t','.\0]kÌ¡‹ÁxÁÔÓÇX¢ö !jÑ€¸D”CˆH;J','',0,'?'),('ÍŽ3×¢àJynÎþÄ€Mà','wp-content/plugins/wordfence/fonts/fontawesome-webfont.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þænq*Šîõ€ZF‰)2­','áü&4\"\rQjXãmN\"ãÉ?P¾o”Í\\°Æõ?¹ùŒ','',0,'?'),('Í’5Ÿ&‡`‚¼¢ŸF¥š`','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/migrator-no-migrator.php',0,' Cå EÅ´†}²ú¬F3',' Cå EÅ´†}²ú¬F3','—þåÙnnr#%¥*©öçêè™€²\0@êgZy3f˜ç','',0,'?'),('Í“ßYá36¾élç€Y«°','wp-includes/js/tinymce/plugins/textcolor/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÄÜv™<hääèðÎîÿpü','!À/Ì[Iä+\r©ðGí²âà– DÕ­Ï7€=ŽŽ·®“\'','',0,'?'),('Í–6ØzÖ¸Ã¥€ØCñ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/color_rgba/field_color_rgba.php',0,'èbüDYWÈwYÍœ Z¸Oó','èbüDYWÈwYÍœ Z¸Oó','\0Ùž4;Pdtg^oÎþ’ž½ÏÙ°$yÞ‚tZ´»)¤Ü','',0,'?'),('Í¤éŸÇfJÏ¥ý7Ì','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParser.php',0,'ef\rh­2+º\Z1ÂÂÔŒ(','ef\rh­2+º\Z1ÂÂÔŒ(','§Bbg“ý÷FéJ9Ö?øItè‰aAkÿ†Tl²Ô×_','',0,'?'),('Í§àåG$1É#dm´ÖÒ«‡','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RedirectException.php',0,'¼Æ%ì‚†U|È‚æ àD›','¼Æ%ì‚†U|È‚æ àD›','J5\0VUÑó®}$œÄø€3—ùŒÐ_ö%C}hø¿b6','',0,'?'),('Í¨ž¢°Ü§Ø£ñZÅÅÈ','wp-content/plugins/wp-mail-smtp/assets/js/smtp-tools-debug-events.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','çÙíÈE¹¥Ãžv¤VÂL“','„YTˆü‹!ýA3·¤’˜ØŠéµä|zp^<\'}ù','',0,'?'),('Íªu¹owsFC¹G[cƒï«','wp-includes/rest-api/fields/class-wp-rest-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8^pÙŠÄY¿[,ðÂF.','$vx%ÿÕc©·§7I\\£ª%­ÒÆÅTHËžâ™	','',0,'?'),('Í®<’˜çÇ/a™l­','wp-content/plugins/updraftplus/vendor/symfony/process/Tests/ExecutableFinderTest.php',0,'%­õ¹Û\r3‹aš®/Õ','%­õ¹Û\r3‹aš®/Õ','iÏT®Ioqb1Lœ#l½ØTãdY¥º\\ên…6¹y—ß','',0,'?'),('Í°lH“|;ÍCÈxË÷`','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Abstract_Schema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KR:Ø^hS(ŒHÀ{¦\"W','$;UËtÆê\\±\\ÛÐE:¶Äx)–EÃtgH','',0,'?'),('Í¶”jÊƒà°±ýÿ·-¦','wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾:Ø¯_xÑðO0á8‡‰òX','ª[Î|ìrµ;˜ùâÕöž¹ÉÆ¸®ò’¥l³bÃÔÂ	Q','',0,'?'),('Í½3Âè=£¡OÁGÄ|~§','wp-includes/SimplePie/Credit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.‰6ÍK>.¡³LçÔ','rõÙ´ƒí@c²@°ù…{RÛCGþ³®¥d^ã>>E\Z','',0,'?'),('ÍÃãáKz[ïhO e—','wp-content/plugins/updraftplus/vendor/symfony/process/ProcessBuilder.php',0,'•^˜í§ýÁ—®]T','•^˜í§ýÁ—®]T','S0þœeÄ¯ LÇÚÌ0ÖÃ}ÍÇôF%:Ï¤™Ðí','',0,'?'),('ÍÅä—†	R+?Buµ#','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/deprecated/ActionScheduler_Store_Deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7Ò:Œ:XFÆ0\'¦P','–/ ¸nöf…<Ü%n)Å9àØàlf—ø×­ÎŽu’¾','',0,'?'),('ÍÅKå\ZrÌ	iÕ}ƒz','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/AccessToken/Verify.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pâ	ƒö•£c·}Zc´,Y','†Å}ñðÈ§ê¾Â9ž\' uö|”	(H…‰3©','',0,'?'),('ÍÌ\nf)Š4<u¶zM¶U&','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_AdminView.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ø\rÓP$ìõÞ;›„²þ‚','Õü‹žÄ39©®u2Õ½ñ«„ˆòˆáúÜï†<#û','',0,'?'),('ÍÕÅ\0˜àuÆš&þXÐ©-','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestInterface.php',0,'æCÇ¡hFò­.ƒ¸¹I`','æCÇ¡hFò­.ƒ¸¹I`','Æ1»Aß\"kk%Ø×ñ!D¨œ¶ã\\I¿,Y¯·™J','',0,'?'),('Íã@ÚçúX2HZg\Z›	÷','wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-mbstring/Mbstring.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Öv°ÂL(²vUâ?@Áï',',ÚA¾PŽ\r9\ZKs¦‚>#5¯ôöÖx\nr¿u ¾0$','',0,'?'),('Íç3ÀÍÍ‚äFô<¶¡8','wp-includes/js/underscore.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f¸¸PS½)Žª(”%óó','TŸ†´¼ƒW’dÑFÉ¼AØòÛ—Ÿ…ëæ-ÄgÀzµ» ','',0,'?'),('ÍíS»>s»U)€¹¤ÍH','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°y$NXÒŸîl€±l','[ìŽ-©¹Âv5<ÛåM\ná¦Ë+B»u.,Ô5g','',0,'?'),('Íð´Î·ÓWC<g-áPBk','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/GranteeType.php',0,'·‰}É¹_”ö±!Ýo^(¼','·‰}É¹_”ö±!Ýo^(¼','¶ép\Z}yÛÚ-KÈ›*c•øÖHWá¨ÚàeÙˆ¨Ø','',0,'?'),('Íø‰»j(gù€~jU#·Ö','wp-admin/includes/class-wp-filesystem-ssh2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','š”*;høÑTMóyI ','S§}%+mÌ<„ÁTY9@°‹ÙDŠ[ú¤ÍXãy²èf\\','',0,'?'),('Íþq“Á#š­G&õB·ãà','wp-content/plugins/fusion-builder/shortcodes/fusion-widget-area.php',0,'R·DÖ™è÷Šïw¾ñ','R·DÖ™è÷Šïw¾ñ','ÊÓÉy¦qÙS#M9– GÛ`R\Zz&r~Ý®¶ÌÚ#w','',0,'?'),('ÎôAV¥NG¥úÚâQí_Ø','wp-content/plugins/worker/src/MWP/Worker/Configuration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Äás—öî¯dóÚ]#(I','‰%Î	öW»…)ÃSK6•’\"?!FÍ¤Ì&)ž¢`ßû','',0,'?'),('Î	X˜û£Êú¤\\~âi','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â¹kÒá]Û8LÂäKÎù Ë','l˜àƒgU9S`±!V!îšy\'Ï“[ulýwÕé·Ï','',0,'?'),('Î\n‰/Þ\rãÉž\Zîu‚o','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/EventLog/Event.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þû>˜¬f|©büLÚÆ„u','YÍ7ÒrªT@àuú?@j¡Œk8¨W¨¼8Æ©<Å','',0,'?'),('Î]ÜØöOJàÀã»2-','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobOptions.php',0,'õ!úçž¨Zéû9Û÷x','õ!úçž¨Zéû9Û÷x','„É?\0ÐH@§±ä™Ÿ5¶«òÁîT–?š\Zý½r5','',0,'?'),('ÎõÅæxûV›å¥îV>Ûe','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G–þ5]{\"•¼ã«VØ','¨CËJr~Wè„OY…*[ó:[j)«²ÂGýÐ„ÖeŠ','',0,'?'),('Î çÈ1	úóî*Öðº','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/UploadException.php',0,'›RâõTä•þ¿É­Uâð','›RâõTä•þ¿É­Uâð','‚Î·Ý\ZÖz·àÑCh`H¯—a½ãµ;:n,n»3í','',0,'?'),('Î(tRñ¢Ûýf¢ÝÝÆÄ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ$z;»M©‘K[ 1¨$Ù','=ß×·j6ÒßQ»nØ=RI ®Á44è¨z÷C\\ê‰','',0,'?'),('Î-±Ã*Ù“øM5q^ ¶','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/AcquireLeaseOptions.php',0,'<—(sÜGÀÃ?ãÕâ¦f²','<—(sÜGÀÃ?ãÕâ¦f²','[‰Ù‚ÙÁ»à-ÛFŠñÛ©ØvÎ±Ï—:M¥WÓoÀ','',0,'?'),('Î/Bx‘¨Çf’Iªl‹6','wp-content/updraft/themes-old/twentynineteen/comments.php',0,'\"«;9ù`u\"˜®àpqV','\"«;9ù`u\"˜®àpqV','QTA‹SÆ8¬²Šª(:èv\nk°L¶[á³$ÍvÛ','',0,'?'),('Î/ó/XŽ(¡Ìü\0´§ð','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/WebDAV/Client.php',0,'ê°_óO[äÃDçæuÀê{ä','ê°_óO[äÃDçæuÀê{ä','OŠ=Ö–ÓËß¢-Öãìl	XÎ{Ð¶|ç’','',0,'?'),('Î00äåÉ4éÉ¥^u‰','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/MapResourceIteratorFactory.php',0,'I&‰æ®€!›!ÏT.\"¢','I&‰æ®€!›!ÏT.\"¢','Œ‘Ûxâó¢¦’BfgQU/àer£UÚUk—Ýo8','',0,'?'),('Î6­òzBþe<ÅMj g•','wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/global/form-login.php',0,'<5vÅ3›iÀ_@‡¾','<5vÅ3›iÀ_@‡¾','Èô Ôåï-Õ\\Ø±|<m	Ñùò°s¢Nwl—¦¾D','',0,'?'),('Î9ÔæC²zëÂíVŽb¼','wp-content/plugins/instagram-feed/css/sb-blocks.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Í—¢O=ÞB+T†0~q²','Ê·}»¤øÓq\"*ã®×›~,]”Xã›¤O‘LßàSb','',0,'?'),('Î:ÔeöùÅ\'G@ö–ôÚZ','wp-content/themes/Divi/includes/builder/module/helpers/MaxWidth.php',0,'c3_b­Š |µàã;I','c3_b­Š |µàã;I','P(•Ô+xõË*UVË°p8U\Zö‹EÎ1MAAw‚I','',0,'?'),('Î@6	7(µÖå\nw¬Ñ','wp-content/updraft/plugins-old/updraftplus/includes/Google/Auth/Simple.php',0,'àäPh¼x3«X\"±Ú6ü','àäPh¼x3«X\"±Ú6ü',' ¬UÃœ+Pb-\\¬@sc?Ö#ªØþq;»§ékrÈý','',0,'?'),('Î@6úðíj“vG‚‡t@º','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/dsb.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆÄ‹ŠÇÛùƒæÔ›¡È”w¸','”ê¡oPŒä +\n1½,-C5´=ÄFLoô¿ñ\0','',0,'?'),('ÎKy3@yç¼\nô¶§¤%','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/Adapter/Socket.php',0,'%´„ßbõÏ‚“ùVý','%´„ßbõÏ‚“ùVý','n¡Ü|?µE¾n[:Ù1Èuxo£ÝÖê¼?ãúŠD@+a','',0,'?'),('ÎXåƒWr´CñSD°¡›','wp-content/plugins/fusion-builder/inc/templates/options/dimension.php',0,'9Mú,/Á—NêÝ7þ#ÚÇ','9Mú,/Á—NêÝ7þ#ÚÇ','²±’>yz¹+D²xˆÇFDV†o¨Æí,®%d±§q','',0,'?'),('ÎYµf/÷pw™ÍŒ§','wp-includes/Requests/Response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Àlóz)Ue¢Øæ$tŒÇ\r','žý;-›fÍNù§Iã‘Y¨YÚ²»½íeŠÙ\r¤','',0,'?'),('Î_)-ª]íËŒkO	Ã÷Ã','wp-includes/ID3/module.tag.apetag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨\\)¦±ÇH°G©‹Ê>Æ','Ùš+Î\" Bt·â	\'S_÷öÌ„EËs²ƒ_óº›)^¾','',0,'?'),('Îl/<ÀÍUçëZA‹å','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øWÕSzúLÿHAWr´6~','0¯¨pUÝÖëg×•™G/„„%¯³\'„íëZdÔ\n\n','',0,'?'),('Î|W_iÉˆ”þß8Ií0‡','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Task/Runner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ˆmÙÝ|6Û*ßÔ­f™','ÁÒœ[¦0Xöý÷ÏkÁH	ËŠF=gæÂ<Mô\n‚','',0,'?'),('Î|žÏf÷€îèÉ,2­T	','wp-admin/term.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þiá3&±Ð•¸ë(6ã&¬','H¥4\0épð­™BÓÙaŠÑmÑfµß¿SU\nßéT','',0,'?'),('Î†¾)\'û5M€¤&&óÃ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/AutoprefixerFilter.php',0,'\0†â8Û:èR±˜ñ\')S','\0†â8Û:èR±˜ñ\')S','°ä²l¶áJåù›c¢mDŒe\ZLì‘±ÿ!(\nèS','',0,'?'),('Î†×ÊŸq\"Q#5ÿSæ34','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Size.php',0,'¹-©I@˜ø=”–—š<','¹-©I@˜ø=”–—š<','bÃxóÄÄ—n*R}9™°¹iæ<÷`J²‹TÓ-Æ¼DŠ','',0,'?'),('ÎP|ÙÚ’ü‡žó\\Ão','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ „w^ã®³]ç·£M','•«ò°Áñ÷§ZEüOë´7(­nY›îhîË¨ƒ‡','',0,'?'),('Î »Vv\"\Zµ%EaÏD','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Client.php',0,'Ö™½¬Œ\r¿CÓ³å]E—','Ö™½¬Œ\r¿CÓ³å]E—','¨øe–3t@—Mn§—S7(ÇÎ1\ne’ê¶ö–','',0,'?'),('Î¡fÿòßWµyL,YU','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DenyRevalidation.php',0,'Ðßw5yØÑïw¢]bg','Ðßw5yØÑïw¢]bg','5«œ¸ˆº5Œª¦‡ŒÚÑd±Nae^Gªü¡•à','',0,'?'),('Î©äó~’þ~•¬ô³¶Ø','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterFactory.php',0,'óCÚ¥K*ZÈùþ|4tž','óCÚ¥K*ZÈùþ|4tž','ÅƒbF_—aãŒsxq`É8­Dà¤´®¾!},•‹-','',0,'?'),('Î­ßüÙhî:Ë)Q\"—”*','wp-content/themes/Divi/includes/builder/module/VideoSliderItem.php',0,'§žB¶|`VºlÜ„','§žB¶|`VºlÜ„','Nù\\ÙçÜðÂï¼\0=²†ß¯$Í¦c$›é‰ëã','',0,'?'),('Î±¥Z	 ÚiÓIÈ­','wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ökÉßÆdý`„>ìCùó','œæa¹˜5™Ã”Cë¬msìkYvùëy4ÄV­ÝâÇ','',0,'?'),('Î·õ¨“HG–Ô\"7ñðÓ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/Curve448.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','î¡¶6s€oŒ9Ú¹ò{','\\Î7»Ó{XÈN¡£…ö ÐÑ ‹¥#ó\\¹MÎ˜','',0,'?'),('ÎÅAÒžÚÖ`l Ó','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hi.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ1í¼²8jtë#qû—„','Ë1ËP¨‚Ö°~Kæ-À¼“\"±D«·À+ª|Hlo\0e','',0,'?'),('ÎÅ“þúúÏ”ò=Ÿº#6','wp-admin/images/post-formats32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WY~O’ø{ð+_L‰kE;','k¾<8¤._D´ãK‹‚µßG[§5e-I(0w°áh','',0,'?'),('ÎÓ\"2AÉvšÎtŽÄ%˜^','wp-content/plugins/worker/src/MWP/Worker/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G!Tžñ‹ãÒ…SV¦j%…','?ì9S:ZÙ_È\0¦Ìl}ôç™Õ´VÇlê\'ÅN','',0,'?'),('ÎÜ)‚~Ä¡7/+šzÇ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateContact.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CÊå®9¥HÎn¸\r FW','>l¥4X8\'TÚmê(×ÌÞ53I/c\"\"óçlˆ®Éd(','',0,'?'),('Îßöä²>A…Áoåc+','wp-content/themes/Divi/cloud/cloud-app.php',0,' !AÍ€ÙdåìmþÄŠµ',' !AÍ€ÙdåìmþÄŠµ','R)•šüâ¡¨º¸Hžx¨y9þéž„y-¦ÚW2Ù«©A','',0,'?'),('Îä—ÏÿÉ®ª\nŒP','wp-includes/blocks/quote/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=9>V-@`é®qÝÌC',']w!ìßD )gžô\Z¦—­â¸“9éífÝÑÉ‘úÅÍ','',0,'?'),('Ïß,”Ÿ´@ÎÖóºQÌ','wp-content/plugins/wordfence/views/common/indeterminate-progress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I·æ\"Ýsg½4ˆ\\(±8','´@™îýZn\"Î¾~žQÕ”ºÃ8“sãPŠ¶ž\07å3','',0,'?'),('Ï\na0–‰Šˆí8ãä¯ý','wp-content/plugins/updraftplus/includes/Google/Cache/Exception.php',0,'€UørË*v•ÃàOx«qf','€UørË*v•ÃàOx«qf','K›W“ñ4ƒ&]­‰˜ËâatpGÚÁhÎ\råœ«•','',0,'?'),('Ï(\"j|}Û Ùü`„²Óà','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php',0,'³¼ß]Ãˆ¨Êç{PB—','³¼ß]Ãˆ¨Êç{PB—','r»ûn2èG«öº\ZM„±ÕÕµnº’~…ZKû€€õ','',0,'?'),('Ï-Ó+ŽeÆáÔmñu\"¶Ãx','wp-admin/css/colors/sunrise/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(ºØ+N¸}GrÜø¼q','î» )úYÌ¨HÆ÷\n\0i3_:):´¼®Q^˜','',0,'?'),('Ï26Ë6Ý#	S[h(\\²µ','wp-includes/css/dist/block-library/common.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"w1jym‰÷š`¿<‚',')Cž˜Óå–nŽÐ¯Šøüp}ÏŠ2›²­gºS†Úá7{','',0,'?'),('Ï3›GžKÁk[Ù;–	­=…','wp-content/plugins/worker/src/PHPSecLib/Net/SFTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„?ê¦*iÇÈV÷È}É»','ó‚Oâ¤ðoÐ	ÛjäÈVOÂ½±Óš³GUfÇOþ»','',0,'?'),('Ï=êÆºyŽæŸ«','wp-content/plugins/contact-form-7/modules/disallowed-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÁN¼ýõ¾\"4CâN…Ö\'','ƒÙW·Þ´Ë×ìDr‹ëAñ„ä>ï1zàïº¶æN¢2','',0,'?'),('ÏEV¬:ë|+tŠså$¶ƒ','wp-content/plugins/wp-mail-smtp/assets/images/loaders/loading.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g§Ì:›0æ|æø¯Yo9','„åîÕ…=Gk£Á`ðŽÇ–ãFÙÿ6Ý\0‹ …q¤ã','',0,'?'),('ÏQKýÖÄQ95ŽÆ”`','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/City.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì‹ä>ÙÊY!\\z›ÿJX','¾³B*yLË°ƒaØâu¨\"t \Z4àþÇZÛ³NkÂ¥','',0,'?'),('ÏTº¹½2õd¯¾ôg\"Éz','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/ReadLimitEntityBody.php',0,'s,s…qÔŸÔ\0ß­–åb?Â','s,s…qÔŸÔ\0ß­–åb?Â','ÉÌaV¾ˆlK­~–W9!!Aß\\å4§’èOg­Û','',0,'?'),('ÏUÅùþßpyýP(xÍ','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/PipeStdinInStdoutStdErrStreamSelect.php',0,'Bj7]™Äõm<ŠçÙ3|Ã','Bj7]™Äõm<ŠçÙ3|Ã','ßB ÎÄÛj3èœ.jKßœ¢þ‡}[ŠÂyd‹÷N','',0,'?'),('Ï_q ^¡Ç<à8ïÇ:è	','wp-admin/css/colors/modern/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3AÍÔä,ŠG_¡•ZµŠ¾','dH\r½eôOà±ÄDWÂ·Om€.´+GkC/•«¹¼–Ç','',0,'?'),('ÏaKÊvÉê¬©•FåF÷','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/AbstractService.php',0,'™§xì‘¡Òpþ6JXr0I','™§xì‘¡Òpþ6JXr0I','4ôÁHŒ¤\nUl‚Ss”Ë1¯‡NÇÞseÌ÷WÐ*\0³','',0,'?'),('ÏbÿõàN‘¼ì±¿»©×Az','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV2.php',0,'\"ÅË2‘0W‹R­œÑÇZ¨','\"ÅË2‘0W‹R­œÑÇZ¨','ñ¬\\ÕØŸƒZªc¬EfÓb5ý.’Xï’qNtÉô¢','',0,'?'),('Ïho4{F–ð]?Í¢s?_','wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/HmacSha1.php',0,'éòžeê®²I5Åð6{–4U','éòžeê®²I5Åð6{–4U',']Ú~‹¥§€G‹9öÈÙ««©ëq)™Îÿ],d­˜','',0,'?'),('ÏuFóâ‘^Gú¥E+ˆ¶c','wp-admin/network/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u¨6ë|º”tJ4¿1´','àƒâ Bë;µñ½øMÙ7©ßƒ€á[²9Ÿ</ ','',0,'?'),('Ï~F§£tÄŒgþ›rú®','wp-content/plugins/contact-form-7/includes/rest-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Üv‡»á7îüÏî+8—g','&S¯Ô×:EH†ï‰„	t—üÍÀ+Ùqü¿çœÍ¤û	','',0,'?'),('Ïígƒ‚’öRÂNÔ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CreateUpdateError.php',0,' â®†þ<’Ÿ¶_jS<Jë',' â®†þ<’Ÿ¶_jS<Jë','#÷2kõš6ä»OØ€CÙJlx…N3¿Üm91B4','',0,'?'),('Ï€tGÈ©ÈÀ‹¤D','wp-includes/js/tinymce/plugins/image/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŠB\n€4Ø\\ªµ0ð=','Q¸vö©“SI>;4¾Ž1û%»rfï$@ÏpÔØø\\j','',0,'?'),('Ï^‰éOÉñu<CÑùÆ?,','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSmsEventReport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·“ÜøSu³€?1²Ÿº”Ý','gÛ: ùÑô0B×í1n¸0]]Ø‹T\0hý¥­','',0,'?'),('ÏŠ=÷ÆX®¬÷bBz\' Œ','wp-includes/js/jquery/ui/effect-explode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñšÆ‘™µªlŒ™Ôµ','\"ŠQ°\0_jÕˆ\'5(Ê²2&-(©öj;ˆ|]','',0,'?'),('Ï\\¥ñ5û\\Ûqƒ6','wp-content/themes/Divi/includes/builder/module/settings/migration/DiscontinueHtmlEncoding.php',0,'J!–¢¾c! Þ—}½Í»€','J!–¢¾c! Þ—}½Í»€','Y\'\\î8êÍÊÇƒéR=P$z“rÝâá¢€ Ü\Z›Ç ','',0,'?'),('Ï”NV\"‰j<Ú#^FÆV¨','wp-content/plugins/wp-mail-smtp/src/Uploads.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þÿŠ–1õ*ê™=ÅÕ•ß','°½@/~[ŸrŽðhý³|(¿múfÀÀMÇ/*Nž','',0,'?'),('Ï˜™^×†ß»¹Ñ¯\Z:ô','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/Dns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ÒËÎ/gcî_Ü>í|','2I¨“ìƒå\Z\nP˜•øYï±¢\\:¹Ï:bÍ´½Ö¥¸','',0,'?'),('Ï˜©P“$d€\\GŽ“²ª','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/EmberPrecompileFilter.php',0,'šê¹’˜c›«’U³Ž','šê¹’˜c›«’U³Ž','ùÍúyœe’\r£iS¸ŽrÑOsÃØûX$ß/áJô’Ÿ™','',0,'?'),('Ï™”É³IULÑÍ›ìDŒº','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request/Listener.php',0,'#§}ÇÎØÉ–Ð0u','#§}ÇÎØÉ–Ð0u','>4µ˜ålþ”>-\\dÓŽfÓ·5ýï.1A´_*sLž¤','',0,'?'),('Ïš–\"ž²‰jðy±ÔÍÝ^','wp-includes/js/dist/blob.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FvbÌµ|ã\\VÃg','O«§Ù€%šß¿ññÝ\'Z3þp*•‚Ÿ-àØ','',0,'?'),('Ï­ù¯É!:¶c÷2štùp','wp-content/updraft/plugins-old/updraftplus/backup.php',0,'µ€…äI\0róÏöò{÷¦.','µ€…äI\0róÏöò{÷¦.','æYE±§©Þƒ¸×·—¥BÿS°ÆÊŸÛÇ]J‚\ZoëÔ','',0,'?'),('Ï°œz‰‚¬ÏxÁU¹-','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/schedules/ActionScheduler_CanceledSchedule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·šòÚÓ¨´©	zbAÌ¾ƒ','E²g¾¯uÛÞk\r¼	–­§þ“m\\QŽm6\\;W<7¡ææ','',0,'?'),('Ï´@õAH¨àLÂ®‹¡5M','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/EntityTemporarilyUnmodifiableException.php',0,'Ò€kÜhMãÿ8ÜÓ6','Ò€kÜhMãÿ8ÜÓ6','ßö¦á¡&¡ƒ˜µÂãZåkO {]#aÛ‚îÊž','',0,'?'),('ÏÂÈ­ÁHÔ¹òÜfëká','wp-includes/js/tinymce/wp-tinymce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1_H—0¬íâUSÃá@hó','ÁšÑÛëÏ_Ø•×ÞÉNÍží½–ì1‰*ãÖÇœýö','',0,'?'),('ÏÅ;M6¹g}cp“i’F','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/GetQuotaProjectInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë—ÀJ/°odª*¼“ì6Í¬','KãÜ‡xŒp1Õ–Æ‡ãªàÆ„d#MÐ[ŽÔ¥ª¾)É','',0,'?'),('ÏÇÄf/´,\\!Î\n‹\nÕ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/CDNService.php',0,'Ùqƒ*À+\"Á2ƒt','Ùqƒ*À+\"Á2ƒt','<º+ãy´Ä‚É‡@ºn¼q@Bà=|J«•8C³&ãŽ«','',0,'?'),('ÏÎê£, ïôw\'»<ðð','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.requestAnimationFrame.js',0,'NÆàÎêE:\'‚Út–ëÖÃ','NÆàÎêE:\'‚Út–ëÖÃ','ÆÖa¶øËÌÙlÊU»²-ð¨ù]9M‡£5/Ç™ }7','',0,'?'),('ÏÕW¼$5j\"óÇ{¢Ã_±7','wp-content/updraft/plugins-old/updraftplus/includes/Google/IO/Stream.php',0,'†n\\š‹¿<˜@Þï ','†n\\š‹¿<˜@Þï ','Ôg®¿•æehWÈ•Äœw}/S²ÿP¯äõÄºuy!','',0,'?'),('Ï×€yKvçÓ.ù\Z±','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/namespaced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>¹„_Ð3õÑNw°#÷','àÇ¥ãmZz*,=:\n½Ù-è3™™|£Äù!“ãß','',0,'?'),('ÏØÜ(–*(‚\rXýÛýÕ¼','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CallablesFilter.php',0,'#¤ ¬×.ÞñõéVð×k¹','#¤ ¬×.ÞñõéVð×k¹','qý¿Èî¬ÙÈa±TbÍr¸½l\nô†ü8õ0kýž›Ùë','',0,'?'),('ÏÝ™ªP(™ƒÉO\'E‘ùe','wp-includes/js/jquery/ui/effect.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×µ°¿ô…YA2M£/','Þ±hz`ƒ¿´X~ÿ>:XBn|4Ì,àÌ¸ý×äfÑ','',0,'?'),('Ïé‹­¡‚{^ªMU*ô_','wp-includes/js/twemoji.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iªïY¨…ñ´¯a¤Íy',';9Ï›%¢Ù›Û§‚p›ÉG¦‡är&Ze²;eO;†´j','',0,'?'),('ÏøcôqÐTÀHz_¡´','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_QueueRunner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áXM?ÆÏîÏJsÒ&','IaM§.7 SŠ“qÃ_ótÿ÷×¢	Ú‚ê	ˆ¥ÐÁÍòñ','',0,'?'),('Ïø©#Ã[ùÔÝþú:ŒJ','wp-content/plugins/instagram-feed/templates/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”úÇ*}‚mà!‘ëC±çG','Ÿì¿x“&}–Ï›š©ã8Ôl)”km&Þ=á]p','',0,'?'),('Ïüô\\TŸ¨@SOá|m','wp-includes/blocks/audio/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ç	ë,Ç¾	§—YQAçk','ñ‡7T¡˜Œ¡ÓÆ²üaYš§¡,õø¹Xõô8ì','',0,'?'),('Ïÿ@¶÷AO=	òyA¼','wp-includes/class-wp-paused-extensions-storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%ÍûÊ¤¦O¥­.ÁLX','UY¬‰ìÇÞ–\\\nj6h¶…Í–¡bYnÞÜ5õÝ','',0,'?'),('Ð\0i7#Á^G§%œƒ!~','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-font-awesome.php',0,'†SML0ßcnËMe¸ø','†SML0ßcnËMe¸ø','^r2êödñzØÚÍ˜‡´˜ø\0©ÀÒ zÚGlDe»','',0,'?'),('Ðœê;ÎÞAÎúÛæ','wp-content/plugins/updraftplus/includes/Google/Service/Tasks.php',0,'•%°ßóEš[Ys\0Ö¿','•%°ßóEš[Ys\0Ö¿','3€Ö,JvaÒá•„–P2VÜÎäÄ\04ÅN}W','',0,'?'),('Ð¬]mÙ²§	â–­ì','wp-content/plugins/wordfence/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>wÐÌ©	÷Ó&J¼œ¡…)','±ð™«M×ó,¹P:”k€\nNâ2…[s\nWze]oN','',0,'?'),('Ðº¶i.*`5]F‡’Ì','wp-content/updraft/plugins-old/updraftplus/includes/class-updraftplus-encryption.php',0,'6Lš¸ÝWKçí6Ûú€·E','6Lš¸ÝWKçí6Ûú€·E','qd=ë•)\\ìB-¸¯.„$³5–¤‚:z…,Š','',0,'?'),('Ðì¼ú¦‚gs˜†)Ý…','wp-includes/blocks/latest-posts/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';È\r6H³O\0HXv1¼\'ê','’ÇÍ¹•%”yO¶5í%¥µlÜÕèhbãÂžÉìHcÃ','',0,'?'),('Ðæ…œRpêý)MT','wp-content/plugins/worker/version',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®‚6Hžëâ\'äxàä>','‹rØã ,G¯n&LFô~a_™øÙ`!”…(ïVF÷','',0,'?'),('Ð\"œŸêìÖbçB=O©ù','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Books.php',0,'¼_7VÌhv$5LÏ|ÍÃ','¼_7VÌhv$5LÏ|ÍÃ','2¯ËÏŽ(9Ò‰¼üy¨TŸZÚ#Ô0çÝ©p¨UÎa','',0,'?'),('Ð#M¨ðQ~À{-ÿçß','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/zig-zag-2.php',0,'Q³\Z;7c@˜ó 0J$','Q³\Z;7c@˜ó 0J$','sPíPX­?é„—ÞíÈ=ðúŠýLäß\"å‡É°r','',0,'?'),('Ð%#óºétÁÏò4„x','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y¨Wû0{Xån§Zÿ0','Å\0AVðŒRXˆÊÈ•Ê~Üád§^í/)…@RòÆ','',0,'?'),('Ð&ÄEð–H”b¼šú)kì','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/MalformedPolicyDocumentException.php',0,'‰ÂÿSU˜å”\rÑŒ¦lz8\\','‰ÂÿSU˜å”\rÑŒ¦lz8\\','_W-NáêÒÆþ\Z’~kù–¤5àÛëv]BZ;¶Õ','',0,'?'),('Ð;w‘é ðyËºb+‰:','wp-content/plugins/worker/src/Monolog/Processor/PsrLogMessageProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îÊ’)[¬å¥Èl-D‘–¥','Á¡Íú‘JD¼XG2Pwu­›ÉºYŒâ»m_ÝoäÁ','',0,'?'),('Ð>6bY£¹•AUFð.','wp-includes/blocks/archives.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§{íÄ\nP?^Øç§úu:é	','TUìãr×-{»éO9ÊPÀP[ÊsÞè\0®P÷tñ9P','',0,'?'),('Ð>›sËl›WD7õM°','wp-includes/bookmark-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','îdZc7«Ù4ÖJXùŸ','—t†“lÈP?dƒå=)ëæ•@zi!ÀØ9a’','',0,'?'),('ÐEh€­O–©×kD	’w','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/PublicAccessType.php',0,'Ý‘qáÏöïv6Íeù`z','Ý‘qáÏöïv6Íeù`z','£ŒÇ­ü1Äé‰ª’wNºÆ=AèLÜÖ ŸÁÚó)]','',0,'?'),('ÐJ_þ¹ ŽÆoè…®','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/media/media.min.js',0,'F©[%0Éh­g(:“àfˆ³','F©[%0Éh­g(:“àfˆ³','i[,Ü€wû@>˜)È§{’Gjç-V­!²-','',0,'?'),('Ð_o9_qiÈÞa2Å>]Å','wp-content/plugins/worker/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬š ¢¢¢ñp×ˆµˆT','!Ì	gæyn;ìŸ<™AbE\ZÝæ{ßtÑ¢›ùë£','',0,'?'),('Ð`ö¦ëèÑ¿Þ·wwjõ	','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Account/Deactivate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êq1ÎÆêqW@¬›û+„³','sR-¥#óä((J¬Þ“ehw8\0u6e·þKµ|´ÚŽ','',0,'?'),('ÐmNàm4¾ N°ƒFÄjd','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetContactCampaignStats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h=S±ì8›PrúsFÈ^L','ÂÔYjˆ°›ÁP<‰’Ø-8±)v¼ìª¯Â‚Ù¡','',0,'?'),('Ðy‘táŠ¶ƒ®êVÓ\\#','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacEmailsListTransactionalEmails.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','67ÔFM£*ßñ˜e','ñž.$75Ë(.™&Tß‘úf·œ4,Á»Çýn','',0,'?'),('Ð€ßœ|aÏB0.”ÈÈV','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/PersistentResource.php',0,'·?ã½·çÆµ¥°ë¸†£','·?ã½·çÆµ¥°ë¸†£','Ï;Í)Ú\'‡\"îÀÎ¬[\"êbìÖ·X\Zj¤¬Öa','',0,'?'),('Ð‹VÄjLMzÉØ«ýîÑº','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/ServiceBuilder.php',0,'\rBž^}¼‡<ÜõCOü–\"','\rBž^}¼‡<ÜõCOü–\"','§5Â¸VAwÏ“\0—äZp£CžRr3œïHŒrX¸','',0,'?'),('Ð¢’íŽ¹‚|áŽÑäØ@','wp-includes/images/smilies/icon_arrow.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 	ÉÿJ<ÖgþÌo9:x','¥nc²îÖx0’Ä¥ãÂát‹”N…¡ØÞ¾Y2X\0!','',0,'?'),('Ð±§ß³Z®$å–57Dçàè','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/notices/report.php',0,',æfS®ï×L-I\'›v»å',',æfS®ï×L-I\'›v»å','ë«L«7ƒH)Ð¢ +L\n¸=<“*Õ1\rsÉ³','',0,'?'),('Ð²ú_Œ÷J™6I¤ñ0iÕ','wp-content/themes/Divi/core/admin/js/checkbox.js',0,'³ðO;g¸‡Æm`Ru7õŒ','³ðO;g¸‡Æm`Ru7õŒ','öBpo>uXÜy›AèwôDXüÃ\r½?}Zê\nbº','',0,'?'),('Ð³6ÌØáº§ÀµÒù²ísp','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Pipes/WindowsPipes.php',0,'‘åÄ\0iê«ËvV~Ð¡','‘åÄ\0iê«ËvV~Ð¡','s”‰¿a{êA-Ò\"x˜­öu	ôª£EC^\'Ñï¾°ü','',0,'?'),('Ðµ`¡H­þ-4\ZýúƒÑ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/repeater/repeater/field_repeater.min.js',0,'<Ž­f`ú¯v”¯$5€','<Ž­f`ú¯v”¯$5€','	âÝ\'_âlú•žóRŸ›¹\r=ŽwèÞÒf½h','',0,'?'),('Ð·U© EÒLZB­‚K','wp-content/plugins/classic-editor/classic-editor.php',0,'»ª@iŽî\"Vq\"éNš‘','»ª@iŽî\"Vq\"éNš‘','}KY)òÙž¢PZØ4?=6ÐÙ~ÆÁåòÌøÇ…l\r','',0,'?'),('Ð»3,\npâr–ƒŠçe','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Models/Metrics.php',0,'È?ÌÛß¶‘>¤Y¥¡”º','È?ÌÛß¶‘>¤Y¥¡”º','ôTàêŠ#\\´@òü<«Xm¿nÃÍSXÍW-Hk','',0,'?'),('ÐË„ô-´”\0›\ZnµS','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php',0,'‹Òvƒê\nK­á¯\'Zþ5”D','‹Òvƒê\nK­á¯\'Zþ5”D','wB ÚF¾œÍž}yäG°gœ(¨V:ÖÐãÈ	þ','',0,'?'),('ÐÍu|¾=:£1¾çÒvø','wp-includes/blocks/post-excerpt/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕÚQjÞ)O=S©R˜ø','oCœl\'²6Ä²Àj‡Ý¢2ð\'\Zªl\'ö\nÎó}{','',0,'?'),('ÐÖ/¨?Ÿà–ÚÛUñ‡ê','wp-includes/Requests/Utility/FilteredIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ#šæøò6BÈoü¬fúu','ÁAS\Z3H	ÂÕQ9Í³o³@h_¯Ú!1S/£èx','',0,'?'),('ÐÖ2[ñv\\)›I†ÝðQ','wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eo1Ç Ü‡4RAŒ•¼ò','ÿ{b3P4Øš¸Rè/Àç5y¸\\d²QóõbzEýx','',0,'?'),('ÐØ^º\\¶XèPvS¬\\÷{','wp-admin/js/media-upload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F‹ß»V?ÂßaÏn\rÈº','™E¥ŸÀÿä‘òa,Ÿ\Z‚á,yM /\\iQÙÓ \"Ò?28','',0,'?'),('ÐÚG ÜXÛš~z5ÒSï(','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/ActionScheduler_DBStoreMigrator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷Ë(NƒL@Ò¸±lÒ','„y®s”C7ÓMÂ¨Uþ(ÞsÆÅ**‹n4Q‘žý\\Z~','',0,'?'),('ÐÝr]¢sõ·1©­¶w¢','wp-content/plugins/wp-mail-smtp/assets/vue/img/copy-solid.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>&§ü]½°i«AV­„*','„i–î—\nçGÓ¾¦æÒ]˜\"•hÂ\rïŠBo=á¨9›§','',0,'?'),('ÐßR‰8…D^ãKµ¨ðf','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/SharedKeyAuthScheme.php',0,'_52è±udŸ]çÛú‚ |','_52è±udŸ]çÛú‚ |','X²€C\"üÑr§»p]&©é<æg¤¾ö ßíÙÕ','',0,'?'),('ÐçžŒµ÷<ÔÂGZ£\'','wp-content/themes/Divi/core/components/api/email/Emma.php',0,'ÒMØaë#ØGÉjlÉÙ0','ÒMØaë#ØGÉjlÉÙ0','Å”¡½G] ´ló	SBÁm\nóIU‹°ï^´´;','',0,'?'),('ÐôÒÏÍ,Ùáñfë×','wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y2eRÅÑÛÛ»ÀIè‹Õ','RwsÊú5Ç¨6þþÖæ¡Ð¢öKxôži,u|»Ü','',0,'?'),('Ðõ­½dòX­H\rÐ‰ÿù','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/LazyOpenStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É×¢(ÀæÜöÛGy¥n+',':x—Ï/ož€2­obôrÛ8{à KÍÚ9D5]\'o–','',0,'?'),('Ñ\0p«ïWG±\r}^\r¶Í„L','wp-content/plugins/contact-form-7/includes/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nœñ[2YQäÝ£–Ô·d','1¶§÷ÂñDœvQ²5C¯†³®#¼ª±ÝBØ#','',0,'?'),('ÑœEU»«ô-Ñ„ƒMÞê:','wp-includes/blocks/more/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âã‰rš<%g£gdÏ‘ã‰','[|¯‰.NË¡êÉëÑÀ?O×ß];´#õÁ5·Ù‡ƒT','',0,'?'),('ÑsŸƒVhR.ÿP`S\\Ý','wp-content/themes/Divi/core/code-snippets/CodeSnippetsLibrary.php',0,'ä¿:¼wË,ÌŸa','ä¿:¼wË,ÌŸa','øÄÉ3\']êÇ*à	!ZÁà}	OðBK	 1H—?iü','',0,'?'),('ÑBWÑGÄ 3§K‡û','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/schema/ActionScheduler_StoreSchema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬P\" â?uã\Z\'*÷','ê…ÛÅÜ¡î[,lr¸Ä´.Û´CÔZÉÒÁ…Pœ','',0,'?'),('Ñ7WºD:ÐÜ™‹·g„UÍ','wp-content/themes/Divi/includes/builder/module/MapItem.php',0,'S¥b<PÔC7ì—åqv”','S¥b<PÔC7ì—åqv”','#ÃýÜïnðòFzœó¢ÜD@}1Æ¶>ø¦fÙà>','',0,'?'),('Ñ:¹\nØÇy­ËŒ\"4«','wp-includes/blocks/text-columns/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñëïwòå`}ÞNû\nºþX','¬t!ïãþlŽ`¯|*µ^…«Ù0»	Ýl$C§»ò;‡í','',0,'?'),('ÑGË¶úMÅ\'ôú\\ >{','wp-content/plugins/fusion-builder/inc/templates/options/multiple_select.php',0,'bDH„$xÊâifD©\"a','bDH„$xÊâifD©\"a','ÍP·èÓI%¼òÐ{t/»,A|Þf^ÎÚqÚØ÷à{ƒ','',0,'?'),('ÑM9y;?#P6üƒÁY/D','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/RequestException.php',0,'åø}’«êdî	¥¾‡þ”','åø}’«êdî	¥¾‡þ”','ÌÛ‡T&Â#JqãÄN¦&ß”\ZK»“ÖòÀ«GôÚ‚*›','',0,'?'),('ÑV†}8\"—Ä@ Ç°Bå','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/js/validation_js.php',0,'„Nm˜qR:7Oü‚ šÐB','„Nm˜qR:7Oü‚ šÐB','äS&¶JðY´sÊøàq5$Ó.—µ¬¹ï¼óÔedÎŠ','',0,'?'),('Ñ^Ü‰bú\r+âžä¬‡\n»ò','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/UnexpectedValueException.php',0,'!‚3,SŠÙ\'Ÿ³¿Œì','!‚3,SŠÙ\'Ÿ³¿Œì','¬Ñ%û:„¢º×¶sàFJpÈ*kbé_Fj×‚/ÖLÝÝ','',0,'?'),('Ñ_\\c9mLŠvéè£1‰Ñü','wp-includes/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓâÎ cgåK¸™šcè|û','³•¡ÜÄ\Zsÿ©°ê7.8K3â\rŒVòÞ0ü€14','',0,'?'),('Ñe‘ÓrÎ}­šy>W//','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/PluginPanel.php',0,'?°y0ÅOeí!Ð%#','?°y0ÅOeí!Ð%#','ƒÕv…¶Ê\ZÞG˜ÏL Ü$–£(˜?-Šõ®ãœ[ý','',0,'?'),('ÑmaõvMvŸKó³¥\Z','wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n-Éž3Z¾¨2ˆ¬Ž>ò','z“µ\r¯iØ\'\\\r‚jLü¨ïã¤‘è§4!¿Uã‘Ö','',0,'?'),('Ñq¬¥óaÿƒÁÙŸ;˜³','wp-content/updraft/themes-old/twentytwenty/templates/template-full-width.php',0,'¾ƒåO-CUñ»¶','¾ƒåO-CUñ»¶',' _êÙÊ0öƒgš‚ çõWXç¢è\Z\0ˆÅÈßàSð ','',0,'?'),('Ñr¨Foz#-ñ#@Æa$ò','wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-pushengage.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cáÏã%®3àÃ\rü2»3','bÑÚ+\\M‘bBÄžŽw\'øSå…SL\nÒ½ú','',0,'?'),('ÑuRl£tÐÝÍÀ´\"“Ñ','wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üíû7ÖŠi[L¯9ÆH	¥','ß¹{8(ü•Ãatûÿ\0CÔn3Qí„Ú¤\n‰l?¼$yñ','',0,'?'),('Ñ|íÖµ¸ºõ_J»^¼“æP','wp-content/plugins/contact-form-7/assets/icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/æËÐ£!€È™ðáÝ/œ','inY…\"xgµ”e(Mü°Ç…ÃË•ïÚßØUí\n2%´','',0,'?'),('Ñ°Í«Hn6Òz¿K\"H','wp-content/plugins/duplicate-post/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊLiœ†û²§ºîËÊ`æ','ÓÀ¨úÀqí3úí%•:¡ºaéÿ–S®QŽUÓ™ï‡e','',0,'?'),('Ñ—ˆiçLœ½HÊ	@','wp-content/plugins/fusion-builder/shortcodes/fusion-menu-anchor.php',0,'CJ<Ä¨H{‡MýYYî_Ý','CJ<Ä¨H{‡MýYYî_Ý','ÊóùñÃæœŠÇ°Êt…È>Tì¯¼Þ@˜Møt›¢¯r4ì›','',0,'?'),('Ñ¤¹Ñ\0Ú½¡i]ž™ì\\§Î','wp-content/themes/Divi/includes/builder/plugin-compat/cdn-enabler.php',0,'´É|.{ñr0¾(ö¹','´É|.{ñr0¾(ö¹','„Aüëào€‚F?L»ÒÒ^;äUŠ‡¦öª¹Ñ%ú”Å´','',0,'?'),('Ñ¦û{=Û¢/V®ýKÜ','wp-content/themes/Divi/includes/builder/plugin-compat/autoptimize.php',0,'žÐ±é[¦T0¬Äç‰Õ','žÐ±é[¦T0¬Äç‰Õ','±™ku$î.F ¦ª¶çìïTÚ0éÉÛš¥OÌ‹7›ØhF','',0,'?'),('Ñ²ö)ÌyGó…²Þùó','wp-content/updraft/plugins-old/updraftplus/includes/updraftclone/temporary-clone-user-notice.php',0,'Õ³*c¬²ËÆžžšä¨°','Õ³*c¬²ËÆžžšä¨°','LÞy8¹îž.0LtYî£\\ÿ3Í½Í¾ÒJE´Þi_—=','',0,'?'),('Ñ¾hÑ‰àˆ00/vC8úÍ\n','wp-content/plugins/fusion-core/templates/single-avada_portfolio.php',0,'ðgm„¼Z9€\'»ž','ðgm„¼Z9€\'»ž','G§¡(÷G¿zæù»ˆ åÈyIfø±*ï¥e6\Z~¸','',0,'?'),('ÑÇê›Ù^|“ˆÕY}6\n','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OÝôõ€@Òî%Y(Ü','ï	’¢ÈÉÔ…ÃçxëHiíÔ54\Z^Ýksª§p/á>','',0,'?'),('ÑÒO›§!È“x.ÙÏ¿Þ2','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sk.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥e¨ÚîfüÈùÄnï','âÌc4gIñÏz\nì‘«`I›cœYýÕéïí','',0,'?'),('ÑãJÇý…Ï+^ŒÒ:','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFileInterface.php',0,' ­õ¯&éÊ¾\0’\"ûªdÏ',' ­õ¯&éÊ¾\0’\"ûªdÏ','iõ°8HL&<æy´º<\0´ “C\0{H6êÆnLˆ','',0,'?'),('ÑäGHK	ï\";#­fŽh…O','wp-content/plugins/updraftplus/templates/wp-admin/settings/tab-bar.php',0,'p*îß~N˜h±Aúa9','p*îß~N˜h±Aúa9','Jñô1ƒO¶™„\ndømO–³Æ²B\0cM5_QRò‹%z|ä','',0,'?'),('Ñæ’hh»¨—Í>ïg?I®','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ConcurrentTransfer.php',0,'JbšíKÞ¡åÿ$Cä','JbšíKÞ¡åÿ$Cä','¤äyè+qø¬ÌjHÁ”–®qÞ[§H‘j¨ŽËÂ','',0,'?'),('Ñò†¾Ô_§V#ðªþ­æBt','wp-content/wflogs/config-transient.php',0,'–²Ì½YÌI¦ÚÍ|H','–²Ì½YÌI¦ÚÍ|H','wE‰©Lø?qp›±\'`;eå èû ÚKk€\0®\"Äj','',0,'?'),('ÑüœjöimÞ¬JŽî•O','wp-content/themes/Divi/core/php_functions.php',0,'³SÞ¢ÊÎ*—/°—hÒŸ','³SÞ¢ÊÎ*—/°—hÒŸ','=qÛ‘EQ0þ/éŠ…‡ÿM*>2i¹!å²B¹>¢=Qq','',0,'?'),('Ò\n_/Òp597=¯K\"Q','wp-content/themes/Divi/includes/builder/module/settings/migration/ContactFormItemOptionsSerialization.php',0,'T½Ê8±Ñyáe¨\nw','T½Ê8±Ñyáe¨\nw','SX¹£5‚î>ê±«¦Ð†Ò4²‹žqƒÇ—ƒB®`\Z_óÀ','',0,'?'),('ÒJh|±”0çƒ`Zp˜E','wp-admin/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡§u¹ñÉËG¤9µGN¤X',';ž¢M/\n¿ƒÕ”_(í+¾`d†D¸ãý_tD¨ú','',0,'?'),('ÒàzsÅð~Üa«R->^ý','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersDrafts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(ãûá\ræ †üæ´¼','ƒãÈ»ÑÈÄ,\na*Wf#W¡æ‚«\0œãhÃC×þ8g\0ž','',0,'?'),('Ò>q^¡û¶¶8Ä/¾ÑQ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/RevalidationInterface.php',0,')ÿäùEéåTQFué·èÞÀ',')ÿäùEéåTQFué·èÞÀ','TT\'h.k{&F\'v\0Ôå®å/`\0pécifá5ü3Ýÿ','',0,'?'),('Ò\"=–Sô›ƒòÐG wy','wp-content/themes/Divi/includes/builder/api/rest/BlockLayout.php',0,'ApÔt\\ž°­©æ{Ù	è¯','ApÔt\\ž°­©æ{Ù	è¯','vS¢æëC3Sñ¾ûÌ\0{i¦ñ*våQÓÖS‚Éô:','',0,'?'),('Ò7µ[*w¢J\nnˆ¬º>','wp-includes/js/dist/redux-routine.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›É|WÅæ€/¸îš	¸','N€Ìy9_È–´y‚ªáýEAÁ3üëê\r”|«Ðþ','',0,'?'),('Ò8¯séŽ—‰šß¹OhÄ','wp-includes/js/dist/vendor/regenerator-runtime.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÁU‘¸£„Ï¨¤†Z¾Œ#-','©U¬ögO“£jZ¯¯~§Í£9Ÿaù¬¹þÕ%','',0,'?'),('Ò?Z©è‹5»ìðÔ_ëgTé','wp-content/plugins/worker/src/Monolog/Psr/LogLevel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÚÛ\n|ŠHi·ÑB¢ùW','—wÝ³ƒnbñœìW6§T/Ë‘:s>A[Ã’Ý7r','',0,'?'),('ÒFð„SNfZì\"uÙ×ãüè','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjectCopyError.php',0,'”ŒÞ8Ñÿ¥¢)wdü','”ŒÞ8Ñÿ¥¢)wdü','ë¸ª·\0½d‡\nØÍæT92Tå«¼VÄôIój0iÇµ0<','',0,'?'),('Òaáóp¤âq±Òr[&/','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sv.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡ŒC€Ú¯Ôjó²Qâ¸','\Z§.Ô|¿D¡SZ6ÿs‹¢ÚM4D8èd&s\r_1','',0,'?'),('Òcª”Ç;ÊÏ–	`lÚ¬	»','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-flexslider.js',0,'qV H\nÛdj¡æ,æn','qV H\nÛdj¡æ,æn','xôX¯ÈEœiyvý„Y‘W0X,ß[Ë>tÙšÎðÂK£Õ>','',0,'?'),('Òe™]\'S¿Œ{Âšn@Ô','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/Catalog.php',0,'(­˜\ZeÜ\nExqÈXÉ','(­˜\ZeÜ\nExqÈXÉ','Ö‡D‹ö7åõß½i®TðÙ0Bl!rmë0‚81','',0,'?'),('ÒjI0ªÔdcUà¤R…þÚž','wp-content/themes/Divi/core/components/api/email/MailPoet.php',0,'j ¸hvŽKoÅh&Ê?ŽÙ','j ¸hvŽKoÅh&Ê?ŽÙ','^œÀ\'þôa=-ö+ŽÚAQ…ã˜,ŸA:B“šø(Ä¿','',0,'?'),('Òj¸i±é õ\nTÛæ§¿\r','wp-includes/blocks/post-featured-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4¦OcÀ9ªÎ‡Ã¨ò$’','+†äÁ¦%Öý\0¥6ªwb–0ý–ZýýõøZãËQ&','',0,'?'),('Òo\'æž³³µÏ‚‚Á:—','wp-content/updraft/themes-old/twentynineteen/template-parts/content/content-none.php',0,'ãË÷èí—ß;I\0Þ:ÞYz','ãË÷èí—ß;I\0Þ:ÞYz','\\ÝØ¡‰eAŸ„0?Éðˆù\0ã}¬Ì¥ÅqJ÷Y\ZþFž','',0,'?'),('ÒƒZ†äíÜS…h‰kt','wp-content/plugins/fusion-builder/shortcodes/fusion-section-separator.php',0,'®8$w•bÔ¬Ú\'#1\\ù³','®8$w•bÔ¬Ú\'#1\\ù³','ÏUIÑÊM(ðjå¥U|ÁÆ~„£‰É.R:X¥ÄÉ','',0,'?'),('Ò–6ŠÐòMÖ¦¶®5wHÌ','wp-content/plugins/wordfence/views/options/option-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k»ú‘ßŸ*×‰k+;8','7ÆÃèM$<ì÷rO9ªGjÞÁç¿ÞEyžöQ*+÷3','',0,'?'),('Òœ÷Ýµj¿°+„à','wp-content/themes/Divi/includes/builder/plugin-compat/advanced-custom-fields-pro.php',0,'Õ\'?è#:Kí¤ËA÷“‚ü','Õ\'?è#:Kí¤ËA÷“‚ü','\ZµÅ”¾BÝ<>Ùz¢^BØÔ´Ç=DûÇöQ]\\','',0,'?'),('Òž¥Ý>ÀÕ*R#F~ú \n','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/media/plugin.min.js',0,'6Î\'1êZÞþ‘žÂf ','6Î\'1êZÞþ‘žÂf ','\né>ëáçEQÞi¶æ¼º˜äk}Ã®¨Ç²“—þ£ç','',0,'?'),('Òž³åúìÇŸö	KsÍ×Ð','wp-includes/images/icon-pointer-flag-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©åá¦2ñ³¹bäÄ&ÕZÌr','4ö”BÈ¥Äª\'x+cÒh¹Ò VnŸ5®IÚ>ƒjÞË','',0,'?'),('Ò¤\0]•]ÂPP¨L<','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Cache/MemoryCacheItemPool.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·ÒÜ/›üÙÜÙÂ[ ç','ÊVÞÌGÎjä¤r=\ro\"/¶úŽ6ìéÉS\'¹uC\Zfû','',0,'?'),('Ò¥ÒÉƒDøq_ªçÁ¶œü','wp-content/updraft/plugins-old/updraftplus/addons/migrator.php',0,'ØžÔ\nÿûìäsä.S¥','ØžÔ\nÿûìäsä.S¥','S-òÝ¾–!Çlq›™\n\0)ÜD«þ½Ã¦+à”q`…˜ÿ','',0,'?'),('Òª*ãÔHšª¨\n;t²û','wp-admin/includes/ajax-actions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ý–¼é—Œƒí#¯ûøŒÏ','øBw9Ä[òáé½ÐÑå¨\\7Yo\rü	ÂÃnìoy','',0,'?'),('ÒªªùËÖªŽ35Ÿ´uS—‘','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Dataflow.php',0,'Ž(ÙªÌ#½Åmãƒ‰È8','Ž(ÙªÌ#½Åmãƒ‰È8','9ÏÍ¦9Äã]”]E·›ˆX•ƒ õ»ËCl¾B0','',0,'?'),('Ò­ó_VlKøg°!p†1','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OÒ¡uÊ/BÝ&?€hðü§Ç','ÍDÙ½.†j7ItÜl”KDÆpCŸ–²OõôåÐ£h¸\n','',0,'?'),('Ò²E5|ÒÑµ‰C‚dé—¼','wp-admin/options-reading.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãçQí0:¥DR&¼qÍ±','m’ÁüÅÐ×Hƒ•zÊýÿ×Ãå9­ÒBÜl\0~Êm','',0,'?'),('Ò·ÄŠ*³é9€òvÅg-ö','wp-content/plugins/fusion-builder/js/collections/collection-element.js',0,'øL–ÐÁW’ûÑ§\Zé²Ù#','øL–ÐÁW’ûÑ§\Zé²Ù#','=ø:¥ï¥e•oÕ-–ú?x	¿ŒGÍû‰´†dUºº','',0,'?'),('ÒºíÿÀE²Žòœ™þ½Vˆ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidBucketNameException.php',0,'8›©wLgRÚ9ZqL§\r','8›©wLgRÚ9ZqL§\r','“ß~Åq DòÏ-±$Ù8ŒnÔ«r¡ÝlÉÑT=','',0,'?'),('Ò»Ë.@¥4­“ÜZ¥0J','wp-content/themes/Divi/epanel/build/et-theme-options-library-app.bundle.js',0,'³2Î:Ç³${\'Ãnéü','³2Î:Ç³${\'Ãnéü','u?ü¶ýd¬Ñtç4ß™Vò+ôÞÏéi¬Åƒ´cóbÏ,','',0,'?'),('Ò½\Z êTW³FvÔÓGQ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/InconsistentSetupException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?æ´ÊÛY\Za5Æ¤ÏQŽ¥','nDØ˜Kcs±ìýÇ.Á¹FÕS‡áw&/€Yú$$³o','',0,'?'),('ÒÇÉ-{½Vs5‚Õäº','wp-content/plugins/really-simple-ssl/class-help.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æI5oi¹¥­ã±Î†ƒí1','š±7x|VÊ@StmI\'u®0‚ˆ}¯Œ2.ÊOñ','',0,'?'),('ÒÈ±snˆ›~\r²¨vË\"ÕB','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/UnexpectedValueException.php',0,'ƒ	ï-ÀCÖ_+éœ¹','ƒ	ï-ÀCÖ_+éœ¹','ø\0€!QÌèˆ¹;¾d±ux¦g³Ëˆ™U¥ÉÉZKX–A\"n','',0,'?'),('ÒË-áÚÅ¹züªÍ^G¹é','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionInterface.php',0,'pv‘RGUy\r	f®Æðüãþ','pv‘RGUy\r	f®Æðüãþ','¼$³þ¿…0ý†(Ùò®p—,_;˜%g=r™*pÝ%ëp','',0,'?'),('ÒÕLt593–u^˜ëä)ÙÔ','wp-admin/images/comment-grey-bubble-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TYÓÅ2¶s,\rõmƒ¿','D‰ÅÀx­ŒT-¡¡æÜþw…ÃN„	 ¾PŒ{¦‚','',0,'?'),('ÒØ–K-Ñæ:1×‹O£f','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSmtpTemplateOverviewSender.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾LÜÚÑLÓ—©¹ÎS>g“',']ÿ½ö†z0/cÓCá lÒq_ì»²5û?ã­k<©¯','',0,'?'),('ÒÞ•”ú~“¤»¶Ù­\0','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/templates/panel/header.tpl.php',0,'Ãì’²e¾Àd£WÀ¦','Ãì’²e¾Àd£WÀ¦','Uõ4ÎBARæâ%6©°|õPB5s{•öC)nâ›VZ,','',0,'?'),('ÒáˆHfiˆ¹gYÄ ÀáÃÇ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/PKCS1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“U}q&}¤¼;þ™tÄ’E','Z$áB¦çH·BJì€©ú6\0½1iÕÛï®Wí]ï','',0,'?'),('Òñlü¤I\r,B8ð¦º','wp-includes/blocks/quote/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£ú!uÅÁ\0ØàÛ”s¼','Jè‘A\rhWé\r>ù=“hk2ˆ1L¬Ü¬Mså?m','',0,'?'),('Òó‰ç¢;ô|Oî—ü{aŠ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é—¹qÆÓÞhL£ÍsZ#','¨h¶6d6%k±™ZX7õ¡zéTû•ä¾ìôý‚4\Z','',0,'?'),('ÒúçºÄ›ðØåçf*î$','wp-content/themes/Divi/includes/builder/class-et-builder-global-feature-base.php',0,'[¨Š@?^}túB`½','[¨Š@?^}túB`½','RàpáŸ\rF55tUQKRbâ×3,%á<DƒÍ³Ôù4','',0,'?'),('ÓX‹‚™ˆ\'½¦>‘','wp-content/themes/Divi/includes/builder/feature/background-masks/BackgroundMaskOptions.php',0,'÷R™ÒÑ¸‘Ëë£X\\@¼z','÷R™ÒÑ¸‘Ëë£X\\@¼z','NdHÚ.l3€ÙiÔqÛÕœÚìôéÃf%@<h>ËÆ','',0,'?'),('Ówƒ]cIýw‚éÈ°ØH','wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷¾Ìè›»Ì0žÕ¥þJ9Â','VñjÝˆÁ‡o®ÙÈŸ{\'7¾ÃšØ¹•ÃÈÒ²','',0,'?'),('Ó\r¢ÂÖ;”ÅiÑ¨êÒE;','wp-content/plugins/wp-mail-smtp/assets/vue/img/smtp.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Eúf=8d(ØÝ»c@S','ZÑãrÃºÆGÃ…@ËBn£OÛ‹9Þ[(©Œ‚!ª¬Ám','',0,'?'),('ÓÓÍ?¥>hýk²îx/m','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthServer.php',0,'Óyp?mß}¥Çßý€ÐÉø','Óyp?mß}¥Çßý€ÐÉø','O3÷‡…Þ»zTé\Z*„k6\ršã—ýÆôÁ˜öì\ZÞ','',0,'?'),('Ó§ÆùZ ñ­¦:·¥','wp-content/themes/Divi/includes/builder/module/settings/migration/WooTextOG.php',0,'Müš+²cÙ ¬ÎõB ñHð','Müš+²cÙ ¬ÎõB ñHð','¼ÆZÁ‡yÇ\\ÎxH ‚è¾pç—÷…üDÑÑµâWò','',0,'?'),('Ó*À/øK!Ì­]WbÖª‰','wp-content/plugins/updraftplus/vendor/symfony/process/Tests/ProcessUtilsTest.php',0,'Äq\'‰Æ&ƒ­T/=½)','Äq\'‰Æ&ƒ­T/=½)','W ør½¬œo¤PZ¾ãÒdè¦¬£Ø)ª¿ÜñÌ½&¿Èâ','',0,'?'),('ÓE#lðÂLþæ_&Üª³Âï','wp-admin/images/arrows.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Úv’$ð>ˆÑßÙ>¿Y','’YW‰š(†ðN3–2U;ÕâÆÎÑ<.iDd!ÄÑ','',0,'?'),('ÓH Š%9ÝÞÕl¶Ô…”E','wp-content/plugins/wordfence/views/scanner/issue-skippedPaths.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷Á¨ˆZðÚ|JSÊóçœ','Á—¹¯i\\éJkFóÓt\\ó\0xßÉReñheÁ&j¼','',0,'?'),('ÓMÞp–\0¨¯Í`künP','wp-includes/template-canvas.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊsÄéµl§ÏœmN¡áQ','¹ %©\nUŽžd×L©«êJKÒÉ=ëŸòòˆËC‘','',0,'?'),('ÓQ›®yƒ„7FDü}x„»','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬‚háüýP«Ôì','KçØÎˆdù%±.RAOôF¾Þ×ââàÁ·joù-','',0,'?'),('ÓR×8:«-f%Ð‹Gk1ª','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/AccessPolicy.php',0,'Z4Ž åùãÈí‡Ýò,ú','Z4Ž åùãÈí‡Ýò,ú','åŒŽ4n§‘HXýðùun©C~Å=mÛ>•æü€«','',0,'?'),('ÓU÷€nÐ/|r@Úªò×Á','wp-content/wflogs/config.php',0,'€S—x¿ff7zÆÒ€‡iÇ','€S—x¿ff7zÆÒ€‡iÇ','¨ûè‰ÍØ¢Yý4C¥æÓP¦¼¹Á“ðÍŠ™_…ö+*x','',0,'?'),('ÓW%¿»HôÂ“âÙf‘iV4','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/DeleteBlobOptions.php',0,'˜Z†ÛÈ4èEfeûýª','˜Z†ÛÈ4èEfeûýª','ÐÓ4mJÁ²Í-q®šn=ÿËlí›””4„Ÿø‰Œ£','',0,'?'),('Ójs¤žw2ùìp®ýqS','wp-content/plugins/wordfence/lib/wfIssues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9=hw\Z¨{\"`Pl¥é¾','NUî2çí¸ö|ü¢2A§õ‰T×$äû‡\r#%Á:è','',0,'?'),('ÓsÁ¼·wIÅÓ¦3ò¤','wp-content/plugins/really-simple-ssl/grid/css/grid-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸²õB†\"«wý¢uDÐYb','XzL»%6}vÊ¿©Ö¾Í8ŽÅÞEtæ8kYÌuKÉ','',0,'?'),('Ós}ÔùÇ¶ê)ÓTÐV¯Ï','wp-includes/blocks/nextpage/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾ ³\rÍ³Áyzbg\'‹»G','7îôq½›ìø\\·°ÆrßÜ›)[%#èJSþ!J','',0,'?'),('Ó{Ú­d3TúXy½‘ñÐ7;','wp-includes/css/admin-bar-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r-÷;Æ0h)\nšýEÒ','Ÿ»$ÄìE\Z]x¦Y7ü}öaì83o#MPñP','',0,'?'),('Ó|ˆMûø¹‹¾§>yF˜Å','wp-content/updraft/plugins-old/updraftplus/includes/cloudfiles/cloudfiles_http.php',0,'&£«g±ë¿KdCþ¿.Äµ&','&£«g±ë¿KdCþ¿.Äµ&','?S>ÈƒH¢œ\'ŽµžM»-o»Ô­|c¡ŠÑ&ÿ','',0,'?'),('Ó}³ïªe¨éCÓË!Ž*','wp-includes/js/codemirror/codemirror.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òÒ	üf‚‚hˆ;f¯qì','¨uŽ*ÃQß6öÆ„ÛdªvdÈ‡_¹û“\0·Ôû¢´™','',0,'?'),('Ó2žO‹8“u“ÇKÑûÆ','wp-content/plugins/really-simple-ssl/languages/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ƒè(½KSYUëvÐ','ä)Õ\ZÞ?–š{aö3{ó¸Wõ`áÅEX®-Ò','',0,'?'),('Ó•Ëý–Â\n§®tÊ0','wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fBBc-AMP6lQ.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mpGÌÑ×aBþšNX>œó(','%Á-*Î¨6FžÈiº\rWÏ¹‰M×½¬WI±…†:výD','',0,'?'),('Ó•ÎZFÑD±«\nÔ&²=Ä','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-google-map.js',0,'S.Œ±3Æ©X|¾–œk–¦','S.Œ±3Æ©X|¾–œk–¦','Žžu¸wJî›¿ùA DÇ°4ùG¯7;EëÚè6ÿ\n','',0,'?'),('ÓŸîñÇmy¬+\nfé:','wp-includes/js/wp-api.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£(ÜÏ©x.é@½×¸‘ ','ˆeU\"OÑ8ðúW£¶¨|Ÿ‰ÌÇvý´ÝÏß\'©Œ±~)','',0,'?'),('Ó¤ƒŽ|<Ì†0Å7Úß»¢','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/fusion-parallax.js',0,'o‚Ÿ™\0ÑJ&—N¢<°Ú=','o‚Ÿ™\0ÑJ&—N¢<°Ú=','æ&õTÖ%{a­×ZîÕª± }øµ2¿èŸÏ','',0,'?'),('Ó¤¬·æÌûÇ•LÙFZQ','wp-includes/css/dist/block-library/common-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^®p³Q,…² 8„×*\Zú','×Žs{˜šÞá3\r3UÈ ƒnGî‰n]°‰²šì>ã','',0,'?'),('Ó¼ŒWÃ{ßiñ¤Mb£XÛ;','wp-content/plugins/worker/src/Symfony/Filesystem/Exception/IOExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c%Ú­4|J*æv¼-þ¡±','9\"Ü;ëk§óN³¦j¦u:%”¯ÃE“{jâv','',0,'?'),('ÓÑào(ýHŽttxû.','wp-includes/blocks/table/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íÛ°&R1W6zzÕXÑò','/•¼‚¯þõ‚ºÓjÊ†˜jA¾ã»<9?Þ‚)”w2hû','',0,'?'),('ÓÕŸDKH™(ÒZ•uI¦','wp-content/themes/Divi/core/components/api/ElegantThemes.php',0,'Û\Z]lòH}ÖN#åkÃg','Û\Z]lòH}ÖN#åkÃg','C(ßwí=­€õæ»ÄÁ=… ø^ýQiq“ß—G{ÛíŠ®','',0,'?'),('Ó×;ÏL•Œü\n_(}0­Ùô','wp-content/plugins/worker/src/MWP/Stream/LazyFile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0Ú7²·r\r))¡\n\r\ZØ|ï','0)W(F 6^óì[rUQ˜¢j°;°˜RÌ¼MSÁ%','',0,'?'),('Óã—5¬¨ì–Äºì%µË','wp-includes/blocks/buttons/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓÑ’È3óuÕXWdÒûa','ô±oØ-ÏÀ~.që’ïÇ¢×½¥•âL¤¼;1Å*‘','',0,'?'),('Óç ¤MÝO¾ŠxtI¥T™','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-javascript.js',0,'t¼¹Ö§9&¹žúg:G¦','t¼¹Ö§9&¹žúg:G¦','÷Âé!\niÎÂÙ”Ëyš½Ó/¬«öì˜¸+»•>ê­*','',0,'?'),('ÓðHÙÌAGÿ|³™¤\"­','wp-includes/blocks/nextpage/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì®¥÷@Ö¦í`fxÉWá','˜Ê\'š„Ø\Z[îþé	<A€Ž¦¿ýAtìØØM–','',0,'?'),('ÓóÁI7ß‡SÑ2‘&°Žˆ','wp-admin/erase-personal-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^g²v~Ñ9Qu“i²\rã‡','+‚¼ùÆ±ON6—§†,ªF¥¹¾]ùÚ·ëOÞÉ/','',0,'?'),('Óö CôîÖ4q®¤‚“¥fø','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerUrlError.php',0,'=5\n-~(bjgÏ]Z}(','=5\n-~(bjgÏ]Z}(','sO²3a}WÄðöU‚²ûpËî‹9&þ†ËßAõhW','',0,'?'),('Óùà9¬¦¬2…b6ñeµ','wp-content/plugins/worker/src/Monolog/Handler/LegacyGelfHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cOnf¾Å*ê¼¯¹h	','Ùg>j}¿ƒVì«â¨ïÏZ¶B†çîû¿Oîàvc¡Xs','',0,'?'),('Óü‚Ÿâñ•ÎýÏL–@±','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/delete-and-restore-modals.php',0,'\0láÉê\\)ÐÏ`$mq”éü','\0láÉê\\)ÐÏ`$mq”éü','”x¯mêzm2¬ÝptÂ™ç•~²œŠ0T!n&CP_”','',0,'?'),('Óþ?H4©Vªˆ‰­\nƒÎ','wp-includes/blocks/pullquote/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hÜPRPp»ïiy+T£Øð','7`ÃÂQöygŠ7s›%\'_ýdLÚ¿Úü½PËÏ','',0,'?'),('Ô»|+Ž:\rbézV‡1b','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/ConnectionStringSource.php',0,'†Ï+·þmiB€8”£õ','†Ï+·þmiB€8”£õ','CÌ¾9Ž\\ew ¼½\Z•Q:àuW½3DÜ\0Ò#H/','',0,'?'),('Ô¸ZŒ,±y™À²A','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/GranteeType.php',0,'·‰}É¹_”ö±!Ýo^(¼','·‰}É¹_”ö±!Ýo^(¼','¶ép\Z}yÛÚ-KÈ›*c•øÖHWá¨ÚàeÙˆ¨Ø','',0,'?'),('Ô	kJ’?û ¢@xª°’¤','wp-includes/blocks/categories/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÍLþ,¨Þ6Ø3ØöO.ÙÇ','Íši?ÜeØzÎ%î×=‹T´ân³N\\Æ„ƒØƒ','',0,'?'),('ÔèòÿåÍ0*îWÇÔ','wp-content/plugins/index.php',0,'gD,Vë§=\\ÆbP','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('ÔS¬>IÉÂ™Œ0”5i','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateEmailCampaign.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tî’»4ÙÏ[Òo :)üJò','ÇË8¼í?ýXiè‹ã‚¼†©ÁÕûë\rA(†òège¦ñ','',0,'?'),('Ôaîƒ¤GQÇ7šEÓ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/ArrayLogAdapter.php',0,'|Ö\\ØÍ¶jh/ß4´¨®','|Ö\\ØÍ¶jh/ß4´¨®','*&… ;~\"Œ§­0ôFÜ©ÊjÝ¬‰\Z¯C÷M¬µc ¡','',0,'?'),('Ô½•E;q8†ÿ3O\'Yå}','wp-content/plugins/really-simple-ssl/testssl/serverhttps1/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¸ÜaÌ0ŸÁš¬ø&–-','ÓªƒGDfš¥è‰:ÃÚÈlkŠ#²L+J5B¨Ö','',0,'?'),('Ô!(¸Ýï/1Ø/wå60','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GssFilter.php',0,'¿±\rÓœÇv† ég0‚•','¿±\rÓœÇv† ég0‚•','¿&¯©L¼µ+‰È\rm<BZk\0†\\«Oº{ä—ùzÝ%Ÿ','',0,'?'),('Ô\"Aú!Öÿ}x¹ù¨T2K','wp-content/plugins/worker/src/MWP/Configuration/Service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñŠ\ZzYh_öY)ÞtË','ÎäHGà\r¼}Ã¬)ý¡N2P/q_S˜\0)TˆlF','',0,'?'),('Ô\'e6u¼¥œ¡Áa #Ö™r','wp-content/plugins/fusion-builder/inc/templates/options/textarea.php',0,'ìàÙäž7€°­Ò;-:NG','ìàÙäž7€°­Ò;-:NG','TÝÝôPÐ\0ƒÓ±‡Ð®£îï\rO¸rsÏ[ãØ!','',0,'?'),('Ô1\n‘g4„”F.ŽKžÐeõ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Version.php',0,'WÃ¥H­ö‡xè§Á…øå','WÃ¥H­ö‡xè§Á…øå','ÐàR}Ð2Mi‚þcgæ sÒrw¡×»¬©Úwž','',0,'?'),('Ô1$ÊÂªú¬æ#ôžÚy','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ExpiredTokenException.php',0,'ŸÞ<ŒŒá=<Yº€ˆ„„','ŸÞ<ŒŒá=<Yº€ˆ„„','ƒŒ.W.—Ë[÷Äæïý¬0Þ£µ¢ISì·;+Îoõ¹ø','',0,'?'),('Ô:¨\rd·àÍ:|ÿ)åxº','wp-content/updraft/plugins-old/updraftplus/includes/Google/Auth/LoginTicket.php',0,'!·+ç\\òøáï)3aŽÓ\nc','!·+ç\\òøáï)3aŽÓ\nc','#½PêlÌÝ”|±ô-<$L¿ÕsQñP6î–‘DœU-','',0,'?'),('Ô;…å!dÀ)Õš•Ä¾	6v','wp-content/updraft/plugins-old/akismet/views/predefined.php',0,'Ò#>ajÏ¬a”¥½ÏØ4ï','Ò#>ajÏ¬a”¥½ÏØ4ï','ÿwðšs°ÐbN}¼qY…Çý7zo•Uæªuô\'¡¥Ö1','',0,'?'),('ÔBjÏ¥bEšo¶ ?Íê','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/ResourceInterface.php',0,'\rª²°fÖÓqÇtÙ ','\rª²°fÖÓqÇtÙ ','V\\]ÌÎ]*@>®|z}ˆ\'¥ÎÖ†\"\'¨©¯²M','',0,'?'),('ÔB°ï¸Å×gÕ²&úØ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/AsymmetricKey.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/6ø1þÚnÆ›‚wœH','À\0yß’Ä#t6fì†æW1ï¤„¡LÏYÔ¸¹XÃzŒ','',0,'?'),('Ô].õooðÈ¦M-n	‡','wp-admin/images/align-none-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øXC™)[×°›-º4½','³ß§&QQ½p\"~Û\Z8S×Šš‰ïÍöYÞåëÅS`','',0,'?'),('Ôiëâ;|ûÆìtúê','wp-content/plugins/wp-mail-smtp/src/Admin/ParentPageAbstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ\"Ó¤ìláû8¹`ÔxßP','¤«b_„£³t\n†¬?c†^Íÿö’e•x}+*—','',0,'?'),('ÔmÄ¥ÀQž+™NÐ¤J','wp-content/themes/Divi/includes/builder/class-et-builder-element.php',0,'\'©EÎ-?j™ØË0','\'©EÎ-?j™ØË0','	à3{~€†\r“Ž\0£&å óïˆ­¸õG}½q','',0,'?'),('Ô…ò8‘ºnê—8/Â…y','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseParserInterface.php',0,'©x×NÎwy›[‚ÏÏ8','©x×NÎwy›[‚ÏÏ8','ÇYT rlì—QT‘\"™˜@u?«ãÕ3xŠ¬¤€´Ìÿ	?','',0,'?'),('Ô—p‹¼;«Ml2rJ¹;3','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractTransferState.php',0,'ô9\"ÂtUB\rœ…ËÊGTá','ô9\"ÂtUB\rœ…ËÊGTá','½ÓðÚŠðª®¾ ŽÏøãbP²×_6VëÜ—','',0,'?'),('Ô›÷aùÚýšáÁtr­‡','wp-includes/blocks/video/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹É–!È}íñMvõïÄ^Ë',' ˜éêZ\Z¦Ç|=G´&;Ÿ’Ö\\ÔIÁþÏö¾í9-)l¼','',0,'?'),('Ôœd­&;0Ì;ð}h¼Ù','wp-includes/blocks/columns/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'¥ªt«ˆyT}#!>fÚ','\rî>çó³¬”J¡I±F2·¢A0”Ó¡IÆ¶´†<Ã','',0,'?'),('Ô£ºž ¯1¡vá­± ¨','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/squares.php',0,'ÌW]÷¥ÁýL÷±G¥}ôv','ÌW]÷¥ÁýL÷±G¥}ôv','U¡=ZÎÇ˜â£xNÓ¾ÑÞÓ³r\nû4£Œ5%zPäÅ','',0,'?'),('Ô¥Š\nµÅK¹ÀAÁÓÈ\"c','wp-content/plugins/fusion-builder/assets/js/min/library/jquery.countdown.js',0,'\02(ùºÓÛ2šêZ¡f','\02(ùºÓÛ2šêZ¡f','lÝ°yP\Z…“Ú\revŠB¾L\rÌ¯^Ué»Ú¸¥À','',0,'?'),('Ô­)=òÛ\Zx0–×µd©','wp-content/plugins/fusion-builder/assets/js/min/library/Chart.js',0,'T³²@\nF“	¶ÓHOûÓÁ','T³²@\nF“	¶ÓHOûÓÁ','¿ïf.îÿÍûaPÍÉm;âðá¨4Ú^H;øoäÕ)Í','',0,'?'),('Ô´¹Ë¯ˆun¥—ùÄ¡','wp-content/plugins/fusion-builder/inc/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.svg',0,'jêåB2TÞí—…)ä)Ã','jêåB2TÞí—…)ä)Ã','æŸ½h#ý¯ß¥V]ÝJ1.ünÛü¢>n¥\'1Ú!','',0,'?'),('Ô»q¾Eè{äÄð‘n¥¹Ž','wp-includes/blocks/verse/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y†Ëû¦ÜVqY˜\n‚','MbO<W\'8!»‡ˆéAø€Sô\ráG_n0‹ùùsì','',0,'?'),('ÔÆ#Ré‚yGUòÀ³,íéˆ','wp-content/plugins/updraftplus/vendor/autoload.php',0,'ˆ6ˆ¶žvN*B;P\'S›','ˆ6ˆ¶žvN*B;P\'S›','Ã%ÿØìöÊ3àjÀòk1ß² <úùêÚÐÒSQ|','',0,'?'),('ÔÈ†pŸþÑ]4ÌÐLñÄq¦','wp-includes/css/admin-bar.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Q!²î&)éÀ`úå•t','’†BùCªÒ»fT=¬…RùðçOþÁÍ\"7´üJÝ','',0,'?'),('ÔÊoœz5ê}Ò­Ó‰x>áf','wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutType.php',0,'H5¿Wîp2º—Ò{ÚâÏ','H5¿Wîp2º—Ò{ÚâÏ','WdCgÎ/l\Z^w÷Í{cól²/«3Ò4Uñõ—û','',0,'?'),('ÔÊpÿýS•š`ß]T]DÈ','wp-includes/css/dashicons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Jð»ß/¶ÄnçRä»~é','qÔ¡Ðú¸c«ÇqÓl5/Ý3$ËTœGWé','',0,'?'),('ÔÌ†lÒ˜Ü\\ç4â,C-“m','wp-includes/css/dist/block-library/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âÿÛÏ\"ì\0«ZÔ_ãï','Ï*fÁ9c,fØÀáµ\n?ÕÙ\naÖÛàônÍ\rËô~±Á','',0,'?'),('Ô×Î/47¯ðšP7f','wp-content/plugins/wp-mail-smtp/assets/images/logs/single.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âjåsù—G þHTFVr','[AÿEìŒf:4®:Úõ¯“\Z,@\"™-lGÅ%ƒo_','',0,'?'),('ÔÝN»Sw\'Ve±ÞyÑö','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/ParserRegistry.php',0,'¥8±WY¬lÞâ™@\nî','¥8±WY¬lÞâ™@\nî','^SW«’àšuºÐñ;QO–Ü!ÐŒsPÇôY—®ÍŠþ[','',0,'?'),('ÔÝcÒ—¿lÜ•‰µP-¡','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JSMinPlusFilter.php',0,'s8~`Öx©S´éT‚ÿ’Ü3','s8~`Öx©S´éT‚ÿ’Ü3','9Àsä®ºöovžâ\nŸ£o•5­_iX_“Ë@öØ','',0,'?'),('ÔÝ—UºZÉ•‰‹þ,N','wp-content/updraft/themes-old/twentynineteen/js/priority-menu.js',0,'†Öc®vŒ&/ç ½ÀÚ(','†Öc®vŒ&/ç ½ÀÚ(','r,ãq˜	ýé|ˆ¥†ÆÆ¹p&¼e¥7íÖøCª¨%','',0,'?'),('ÔæYrW[A_ÀËUø	D','wp-content/plugins/wp-mail-smtp/assets/js/connect.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','škók² è±Ôpëá','_¬–§Û•Goc¦yÍR|b³é}½È\ZÔTüõ','',0,'?'),('Ôç_Ê”Sˆ\\#w-ÿWžã','wp-content/plugins/updraftplus/udaddons/options.php',0,'¯‘»«XìJ§ŸÚS,Ôzû','¯‘»«XìJ§ŸÚS,Ôzû','[2¨eÿ–#¸ÖUxIq[d\\© ».¶­ÿ!O>»\rX¶','',0,'?'),('ÕëB	­*f6RW6%','wp-content/themes/Divi/includes/builder/module/SocialMediaFollowItem.php',0,'¿«RB·oêè&¶V3¢','¿«RB·oêè&¶V3¢','P³¾â¢›øA4•êÖºDØ7å/ÀuÂVÆ\Zð@Zºd','',0,'?'),('Õ÷¢/—q‡RRÊ|¹¡ê','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÊRõŒ!z@;ãVeöáÕ','ž#ëó²l“#ÃûÐº;”	KAH9QÆ@‡	«ÛËÇB~ø','',0,'?'),('ÕäØ†¿[ùBÊrÌ³®$W','wp-content/plugins/updraftplus/includes/S3.php',0,'êõ¸ô15ÿ \rÁA©Öì','êõ¸ô15ÿ \rÁA©Öì',']8L_mk×JÙ\r¿ãûê;ë;`à]:Íä3Ÿð4bÀ','',0,'?'),('ÕXéð¯—$„a²ÔBÈÒ^','wp-admin/js/user-suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6|3¤—ÃsŽJ:+IVÖ','ÇŒ0BúÈ |óqO­	F¡±¤æ>ƒg„€À¦Ó#','',0,'?'),('Õ33Kw®D$¸’ÇÜ5»','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>îFÀOôè‹\"2µz','h;]`~Ò¢¦&¼¸6—Yx^v÷m«2(¾','',0,'?'),('Õ8cÓDHƒzä¸‡q0Û','wp-content/plugins/updraftplus/vendor/composer/autoload_namespaces.php',0,'\ZÆÂRªIÄRPfãêGü','\ZÆÂRªIÄRPfãêGü','FV«þIJÚÓ’)¶Q	‘ÿ d’ÅäÖ	A\"Î˜t]À¢¡','',0,'?'),('Õ?9Nk÷@Ï+;†òá&H','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/log/Psr/Log/AbstractLogger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ûƒb?ÔT‰à˜ÇèÊ+ Çð','—\0”‘B«ÊDQ!»œØ©ã	\'+:øJg X','',0,'?'),('ÕBImSÀÔ96ß7’†ðX','wp-content/plugins/wordfence/crypto/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’þy±GÖMú!ex9ÉÙ','Å!ZgbZå˜ô“¯FZ¢›Ñzƒšãï|±YEÍ	ŒªÀ','',0,'?'),('ÕIZìéW…ºqˆ=Pè-ó','wp-content/plugins/duplicate-post/src/admin/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨â³•¹ç4O[1aQñ—','ËZ$\rFro|Ê¬ýèçµ”ü„E6øðF”fN°ˆoòé','',0,'?'),('ÕL|ÚrL¬|‰º	Jï5•','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/SecretStream/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éëõé:ÇZ{ãðë5²o','ÁúÇ<å€så6´÷\0,	Raô­uhXðåcðØ×','',0,'?'),('ÕMùàþ°a}ÁÃßä9EÌ','wp-content/themes/Divi/includes/builder/frontend-builder/i18n/theme-builder.php',0,'°ÑþÈj¾yOLöP“r}¥','°ÑþÈj¾yOLöP“r}¥','\"ëïZê‡ºãþØcÿüý¡´¨5ERŠoŸZVè','',0,'?'),('ÕTÚóÏ¾ÉË^Ï…º','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/SiteAlias.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Z}Uî\Z¢óÅö›v‚',']¶íôküÒ,§ ±uˆ<¡º•PŸ&µ‹\Z<xxçï¯R×','',0,'?'),('ÕX K˜]§¿Z§2!1{âà','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/css/select2.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ËfojìSÝŽI[ ¸0',')‹ž|Ãd¨DØ}Û,fµáÚ±øË¶N†…¾xºˆå','',0,'?'),('ÕgÖ¿þ€mœã‹£‹ÙI','wp-includes/js/dist/data.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Á¨’6×V .LÆe]ôg','²å!¯Œã“¦éâÎºŸAó\r&$qpÿN\nª ˆHŠ','',0,'?'),('Õjþ@-¸Þ3U4ÿY‘','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssMinFilter.php',0,']ªîþ…±}¯iYTè˜?÷',']ªîþ…±}¯iYTè˜?÷','Âô–/èõtú×ÏœTãj¨”i7:¸U8Lv@Ð7JWõ','',0,'?'),('ÕpïsZZ…#÷N7—óe','wp-includes/css/dist/block-editor/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜÁyTî’k~AU','/wÎ’<…ï¡Hü‡q-*\\õÖç‘Ü¬XVMZå±›Š','',0,'?'),('ÕuG#ü)¹|Ã^´¬¸6','wp-includes/Requests/Exception/HTTP/511.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´Ý§3ö*â=ÚA>®9ÍÙÂ','úóIø¨}7+Æ•¤A÷Üàlæ¬¿B÷õtÛ\'s÷ðt','',0,'?'),('Õyjù„ŽzÚ£t¥<7’J','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime256v1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒžD¯‹…ÔâsXçÒ5','›Q†èBeéôÕ¢v3¶GsÊÜÁßë›*–ð/1û”','',0,'?'),('Õyó~?„Pýd®÷òÏp','wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€\\}Ã\"£†‹7Ú·’•DZ','ß.IôH\Z„g\0óH!7`‘£gÞ ZøzÈ„ƒÅ¾6|','',0,'?'),('Õ`S¾OÙªU&*wûÐ','wp-content/plugins/contact-form-7/includes/js/html5-fallback.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë*»=ÖO·nÄ]§gózÑ','’¨:¶<QY·ìþòÑŠš†èï4$9¯/q›hD}','',0,'?'),('Õ€}EB»IßP·nËr³)ƒ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpUrlError.php',0,'“×©a¤Á_}ŽGÛâÖ¶l','“×©a¤Á_}ŽGÛâÖ¶l','H[àÎ¼åCQH*±E–ë…ËBRÃ\rrt.!á=T—x™','',0,'?'),('Õ‘GOÙº˜n(ÌÛ0MŽ','wp-content/themes/Divi/includes/builder/frontend-builder/build/frontend-builder-scripts.js.LICENSE.txt',0,'„%M‘´+5ù•“qN®½eÞ','„%M‘´+5ù•“qN®½eÞ','²gŸ‡æ¿ÝÃœ×5;[QÖ»ƒúq\n-•h×·ÁW','',0,'?'),('Õœ8 2*ãÈ^üJr(û›^','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.easyPieChart.js',0,'Sh¬ø„Z»®ë”ës„&','Sh¬ø„Z»®ë”ës„&','ôjŒ˜ŒŸ¹÷×ÐÛqyXnCŽ–«E,4™Æ‹ýî\'úS','',0,'?'),('Õ¢¯q‰íñ–:Ÿ*ksP±E','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»ÓãB7¯&Ú]ÀŠNDd','Û@HÎßÁååM;ïº¾‰5 iÐÝ\'™åoí¤5Vö','',0,'?'),('Õ¤i_“çŽÎšD\r±4','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlVersion.php',0,'xWÝ }õ‡t—]-…èŸ','xWÝ }õ‡t—]-…èŸ','tš6îFÅƒŽ6a†„òõ#×T]§¯>ÍÕ&r{Ö8þþ','',0,'?'),('Õ³B¹|<2Ÿo?RúQû‚X','wp-content/themes/Divi/includes/builder/frontend-builder/build/gutenberg.js.LICENSE.txt',0,'ÄN4ˆ7ÁE·é\ršŽª\"-','ÄN4ˆ7ÁE·é\ršŽª\"-','J\r‘³U`ý<¦À’0ïI!7$sèæ!Âû','',0,'?'),('Õ¿bv,B_B?üjXZ«','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/public-endpoints.php',0,')@à8€Eü[Ì´_¢t',')@à8€Eü[Ì´_¢t',':Ð¢Lr—à ö`‰â„Nþ [dF°‚Å˜ž[K,å','',0,'?'),('ÕÚìæfGBKH\"ÑWvÄ´','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php',0,'<ÌîØ:\'‚ëÙk','<ÌîØ:\'‚ëÙk',');qf<J½t¸FÜÅêy`Î¢\\»ñ)B¤Õ`)¹Ê/i','',0,'?'),('ÕÞW„bK>\"_³âçá','wp-content/updraft/plugins-old/updraftplus/includes/Google/Auth/OAuth2.php',0,';z*Nòô4Œëƒ—É„w@™',';z*Nòô4Œëƒ—É„w@™','ÆŸÇƒuÙm<5ÙHGI/ç;9ök¦óxO¤/Ù›µ‹','',0,'?'),('ÕæîÌ‰ÿ8P<ºSƒ\'','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Order/GetCertificate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3×X\'ÎR‹Éï†˜î\"Üg','“6:Ý7Äò§÷ë8äw¸\ZÖc´\r¾Ç‡>õ¹¯M”','',0,'?'),('ÕçxÞå°æñ©‡»\rRà','wp-content/plugins/fusion-builder/inc/lib/inc/redux/validation-functions.php',0,'½Dnu­M“åRì~ýt\0','½Dnu­M“åRì~ýt\0','Î­WÏ8¨išÓ¦âˆ,CµÏjýýå#+?v“ÛÎ','',0,'?'),('ÕëW”Ô¾Þ¥´™Œ9)Òî','wp-content/plugins/updraftplus/includes/Google/IO/Exception.php',0,'˜™7Ô°-Ž¼¡º•}ß6','˜™7Ô°-Ž¼¡º•}ß6','ÅšEü\'`ß¢€\rh·«%­Æo«ç¢×§Àë„êD¦1’','',0,'?'),('ÕõK2;æ<D¦®‡ƒkub','wp-content/plugins/wordfence/lib/wfStyle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s†»1_¸eþk2R’²žÉ','jÆé¢Ž·°È®_c×632¤3Ö…ã]Gs}.\n','',0,'?'),('Õö¼úÍ¤6é\0/ý“kúÀô','wp-includes/js/imgareaselect/jquery.imgareaselect.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ws¾»H¼ÈjÑÐÖË','¡ŽÆ&ñ°TK±‘;­$(»á¢¡OgÍpàöm]ˆï','',0,'?'),('Õù\0FÚÍœ.©«1žƒ{ð','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/InputStream.php',0,'Zæ&°ùÀ^IwÛŒÉ1á','Zæ&°ùÀ^IwÛŒÉ1á','µb=Ð*.èåé\ZV±“bžèSC¾ŽO]k®J÷>','',0,'?'),('Ö>äÂˆqµýf?=Í','wp-content/plugins/really-simple-ssl/class-multisite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²‘‹v¹•ÔC&þ}/Ÿ}Þ±','ø¤µ\Zc‹ë»Üs¥88ÙÙ|Ú$\'ŽÙ·ë÷í','',0,'?'),('Öš`¶…œK*”)ØÌ·“','wp-content/plugins/instagram-feed/img/about/plugin-fb.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú\ZG0Ë)9têþ÷Z×ïJ','•á¾,\"¨ejÛuì³V°SQ@sù»oV]`ÞÒ','',0,'?'),('Ö1€ZŒBâHxh;œï g','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListObjectVersionsIterator.php',0,'ð\\ó²§>ÿyí2]Á‘¨¹','ð\\ó²§>ÿyí2]Á‘¨¹','ÂÊ°¡É“ÅÒh°ªù‹Ôq	ÏÃ¡0s–7F ÏÍ$','',0,'?'),('Ö<ù8é;p® x¹TG','wp-includes/css/dist/edit-widgets/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?G^\Zgâî¦Æ@5 sC','(´Ðò\ndpJò¢r(nz†ck4]ßõi”&ÖÄ%ùm','',0,'?'),('ÖXÚ‰|î8ÑõÁì}ÂBÝ','wp-includes/js/tinymce/plugins/link/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°öV\\\n]ÌáKûs\' ','\Z>†‹IÖSÖÐµ´œêÆv´,¢Ïq¦U¡¬Þò^','',0,'?'),('ÖZ×ö	r!ÞfÕÑ¾	Þ','wp-includes/images/icon-pointer-flag.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°Ó,‡ò­‹ÂE^¿j`\'','oq·Ú9”Áa{)h}=#¾½üëçTû×§ÉÂ','',0,'?'),('Ö_y©H_yÂ¦E–7ýüˆt','wp-content/plugins/updraftplus/templates/wp-admin/settings/file-backup-exclude.php',0,'2ñP½§€¼KT”‚¸9','2ñP½§€¼KT”‚¸9','lž‰^>ßšZ°ŸfLÅ6“3º¡`Ø­Ô\nøzÑšý','',0,'?'),('Öd˜Ú.YÛ@PåïˆG¯','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP256r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`‡¯;p½oø†§Múï¸ª','í‰ªF†åá¯´Z8­,Ú^nž(®3\nuN®ÛS0´³Q','',0,'?'),('Öjõ‡‹#¾Ó²©·X%œI','wp-includes/block-supports/elements.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–ãâÜ2Ê(ÖxXJ5&Þ','©9ë*ª9?bzN²#>¶#Íu|¤P5\0Ð‰:½G£\0','',0,'?'),('ÖoÒ¨*Kîêo˜7{ƒ <','wp-includes/ID3/module.audio-video.matroska.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^w\'ZÏìõŠDo4d].‰','bA‡Oƒ¬šÛCÜåËr5Y\0³¤se¦AŸÊ0ú½‹','',0,'?'),('Öq8kš·ò^¿F·5ñŠf','wp-content/updraft/plugins-old/akismet/wrapper.php',0,'ˆ]x¦\"šY—‹ÚŠïKJ','ˆ]x¦\"šY—‹ÚŠïKJ','\Z“Iaú^à’°ñëiJ‹žHŠ:žjê:•ºÀbÂÂŠ«','',0,'?'),('ÖrYŸS¯xwDYËšJ™[','wp-includes/images/media/interactive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R×¬Ë‚®ñÂÃ´Å‰hÜH','{óô‡ [Kêà\0!ƒê¸½²/á\\¹lw.Á¨êÝ','',0,'?'),('Öyc™œª×¶œž\ZVÂlì—','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPartException.php',0,'ÏyrENq£(*±K.','ÏyrENq£(*±K.','é%Œ\'ùDV¢#Å:tÝäœîNœPB`>1Q3','',0,'?'),('Ö}äÜ\0OÁ‹‹`Þáf','wp-content/plugins/worker/src/Monolog/Processor/WebProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=½a^u9K‹Zd–¥Œ','m‚_2Eœ>Ã©_Äv¸\Zcfà°Âž=Ó”¨Œ,É-','',0,'?'),('Ö„)ùëpAûÎ†]5$ ¤','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMulti.php',0,'%×áxqZ½lZî<?s','%×áxqZ½lZî<?s','éðð	™\n©›\0¼v«uÚ—w¶å˜>_i‹RÊÇav','',0,'?'),('Ö„kÙ-p<ƒëŠøE\0bÝ{','wp-content/themes/Divi/core/admin/fonts/modules/social/modules.svg',0,'>#³ùX<tpm\rÈ','>#³ùX<tpm\rÈ','KëÚÕ+^²\r ôææ)ê5^k¹©ë;0`gÄéä\r','',0,'?'),('Ö‹Ë8“[½À¦‰˜0½ÊŠ','wp-content/plugins/wordfence/views/waf/debug.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ‰9Ÿ/YŠÒ¥ûÅÂ','[Î³»s	`™A÷¬Ã;áy_´Úñ<­ê¤Xœ\Zû%YØ','',0,'?'),('ÖŒ·ñqæÃ³ýX°[ÈÒÇ','wp-includes/class-wp-feed-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZÅèØ·?h\"ýÆ%c”´(\0','lhË>¸ý6Ù<Z,2òÐ1*!€cm;z~ ÎÜñ4½Ü','',0,'?'),('Ö”™ýi÷.ÛNz’&By','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/ShoppingContent.php',0,'RmŒåòÀè¤õ°÷›@\n','RmŒåòÀè¤õ°÷›@\n','ÏºNÕl(¶ÓBü0wÛ±FÐT¹v`jÅw·0zÉ›Ã','',0,'?'),('Ö”ÿUvÆ†ËE¾+tn«·','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/Prime.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘bLeožF\'o¦Ø#md\n','¯úÎá)Ãh/E…=Ø\'\"àžhs–.vÄ*xô9·Œ{','',0,'?'),('Ö•%Dfˆ(õê„€$1ú','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-text-preview.php',0,'ï ‡t©½S‰ ýõ','ï ‡t©½S‰ ýõ','û/§ñj@t­F„·[eÜ >%«ÑàZ\r×hCN','',0,'?'),('Ö #XX4Ç½ó\ZÚíô','wp-content/themes/Divi/single.php',0,'6šù<›r\\Æ¦ÿ{õ…4#ñ','6šù<›r\\Æ¦ÿ{õ…4#ñ','°—_H /¯Dô\r$šè’}‰Gqø$nn€h]lÈø','',0,'?'),('Ö£ïMA_5u Í©þ—j²c','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/BuiltIn.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šKÞÆc\"Ã‘@?…idi',',(ý`b~¬!ÂNÊ%ãTšçÂã¯T}ªNS±â—á*|›D','',0,'?'),('Ö®`ÖJTJ³FÆÐ¦','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Account/Create.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êÓ)ÿÆ£l0–}@©¦0T','ûSU¼ÀŸ\\´N¹ËšuÛ–½²l]\'tÿq!Sòx{Ð','',0,'?'),('Ö°¼9\"¯éw#Yå\'Ì','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/Montgomery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦ÛAëýõfSCjµ<¼I','Sµ2¸\"ò&Û1 Mž1\naŒ”p²ñæº´aæ','',0,'?'),('Ö¶Ëå9Øžføpo3t','wp-includes/class-wp-admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É~†;1Ìqh Nuâ–','g¶â)HH^»t®\\Â(ÆŸ9SœŽvI}Ã\n÷þ\rY¡ë','',0,'?'),('Ö»\r½ÓÑIY›:™âd','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RequestContactExportCustomContactFilter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚£–»- PiU¾%úG÷','´U GÒ¿iÈ2R•¼ôï];+ú¿±P˜Dä','',0,'?'),('ÖÁÍ‡Kº\ZäTí¤‚ÓÓR','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Order/Finalize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÀsD9“h9õÀŠºF·¬','§b/E“A«I±Û—žk5R…ß‹do³‘–DÐÞ>\ná','',0,'?'),('ÖÏJØûï!¬[W6Ý§éý','wp-content/plugins/wordfence/lib/IPTraf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','†«8ùwÞVX¯8¾›~$òö','¯ï ©%ïÊõÊmÂüùèò³š«-[«\0:ˆ& ý','',0,'?'),('ÖÕU2Ö|BBéãn¥¯Y@','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Credentials/AppIdentityCredentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹ŒðÏ‰RaúÅ‚ú‹','ÔRam…áÔa	\nÓ#åäÏ.6Ž˜[wÀ\Z÷9CV','',0,'?'),('ÖÜ0EHQp‚ðýgÒ?™œT','wp-content/plugins/instagram-feed/img/about/icon-partial.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5åú2Ÿ—ÃZÃ«¿)ê½','ÕÝPzäüDa±ì‘¯#‘¡NzêµìûÚŽ‚Ÿ^\nû','',0,'?'),('ÖÜÏBûØW‹éÊk\rZ{½¥','wp-includes/sodium_compat/lib/ristretto255.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æ5\\SäöÃzéø§“ã','¿\0h“—÷=‰`]U3Œg…÷æ®¼4%1µ¥9xä*×','',0,'?'),('ÖäÎe@îè	œÂ‹p›k¥','wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/RFC4648.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®¬!YŽ²ÉDŠ«{‰Ô','^ÐU¡À57;‘¨ˆ\"«\n%*Øn¤‡²µsØLÈkÖÉƒ','',0,'?'),('Öé´#¿È(HnÚ H61','wp-content/plugins/updraftplus/includes/onedrive/object.php',0,'AŒ·øJ\0-‡¨ƒºøû','AŒ·øJ\0-‡¨ƒºøû','&nÛ’’7~eEƒÖàTC¤õ¼Ûñí(Áã|','',0,'?'),('ÖòüJó­ù[a±$J„3','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/IncorrectNumberOfFilesInPostRequestException.php',0,'šw”òŠ{¾Ë7ð*)l','šw”òŠ{¾Ë7ð*)l','²_G¶3¤ïIºk¶Î¼Åe¢ÝG²Túj¨IKï‡!','',0,'?'),('×™Ò6Ñýê˜#•¨-³Ãy','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedExtensionError.php',0,'çf³^ŒÌ;.#´x¬!Ën','çf³^ŒÌ;.#´x¬!Ën','qÓ<À›6šC\"Í|“3[\ZÅ;^”L©¿»ÈÉ_Í©Æf','',0,'?'),('×ã/O\'ÒTo\\g2t','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Dns.php',0,'<¹ù¨<jÒ*î—«â','<¹ù¨<jÒ*î—«â','`¬â\\ƒ˜AB·Û[¶ýAá[yÜ/gxLð“rÏßï','',0,'?'),('×%ÏuÖcêpÖ–´Þ]Ñ','wp-includes/blocks/calendar/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z\n±‚Œõ³Uz¹PUÒá','ýâöŠé2aC•[[Ù­nØkŒ2!\ZR3LŸ.6läRü','',0,'?'),('×+@òÅà¤5ÝUc½ñÐ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaValidator.php',0,'W9«¾PòóÚ &BóÚ','W9«¾PòóÚ &BóÚ','TB®>€4Ú…üJ´Žzš\'Pv–•U¯¢fnà','',0,'?'),('×1¾2J$žTÎ£™Ÿ¹åaå','wp-content/themes/Divi/cloud/i18n/library/layouts-long.php',0,'£Ît­q™ïÍ}ü±Í„8','£Ît­q™ïÍ}ü±Í„8','òˆJ­³ûw`e5›”dîíõ²µL†å·u•®-','',0,'?'),('×8¾Æÿ{°¾.WQ›Ï','wp-content/themes/Divi/includes/no-results.php',0,'ØØrZt6]Û9—.é{,Š.','ØØrZt6]Û9—.é{,Š.','\\I*õ,:¹³Ñ² rÃÌ°@ù éüKa`”4‡›=-‘\\','',0,'?'),('×<†]ú	n]\"I;w[º@¤','wp-content/updraft/themes-old/twentysixteen/single.php',0,'%“lc}\Z¬Ò-V»ýî½','%“lc}\Z¬Ò-V»ýî½','Ý÷?x•vøÁ Þ&†W“ª=™²DçãÍíïX*\'\Zý','',0,'?'),('×GÈ©õï¿6”¤³È\0Y','wp-admin/includes/class-wp-posts-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„“lÔÈZZ\0dPei8','Þ¥%À™çzÆgá,!o‡>]¯©t³èjŠyYÌŽ‹R½','',0,'?'),('×Iã	JµŽa~RšZ¨','wp-admin/includes/class-wp-application-passwords-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å£Î{ŽèŽLlFæ»Ãÿ','¢Û–-<ùüÏÊC\"½(°˜£Q±÷›,Hn¨C»\\8°Â','',0,'?'),('×M\0÷ÂÚc°šíø¡¢_dØ','wp-admin/includes/class-file-upload-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wç®;>ÉxáZs×6','[\"o ^ï.q`O×¦ƒ‘vÿá<°õœQŒ+FMÐ4¹‚','',0,'?'),('×UÝ·›½Á¾VÌ³C\\‹','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/Stream.php',0,'1„“‰\0•!Á†åÅ«','1„“‰\0•!Á†åÅ«','j¥£Ò	f½\'îÐgH\"EÜx•Ë2Éb~éFð\\e4','',0,'?'),('×dDYŠ9†µ>åìXÅ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/AccountApi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aêYrœCwÐ]2‹ÚÞ','¦\'(g¾’˜±ÚÏŒ16gE«ïE”\'gBƒš“9$','',0,'?'),('×f¿k[x‹•œä \\Œ/Y','wp-includes/js/dist/redux-routine.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£kÖž™r½þ1øæÁ»','B›öy<“Ù¢S¯]º¬AnX¥{ºñ³äB¹#äIß','',0,'?'),('×wŒh] Ã¡Ë&“wM³Ä','wp-includes/class-wp-network-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G¢õR‘~|8žZ•¢1[ÏÁ','ÁÉZ[øJM®øDÎÒ¢\n°*Ò°´kö+ÅÆ:','',0,'?'),('×€…ÞéÙî¡sh‘P[z0','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime192v2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º_G{ß`É“Zsm¥ëz','^*,}0´_Y³¶$£ÚÚµ+:zE%0ªÈ‘zõ0juÎ','',0,'?'),('×Œ|ó¶ØRžÒ!Ý’ÁÓQY','wp-content/themes/Divi/includes/builder/plugin-compat/m-chart.php',0,'«òÇ¼‚B¶	Ý©Xá\"?','«òÇ¼‚B¶	Ý©Xá\"?','övß.ké)öÇ–Cˆ—Ì³.Õ@8WL8Xßf','',0,'?'),('×™;Ó0i‰¾^¹”«•¯ö£','wp-content/plugins/updraftplus/includes/Google/Service/ShoppingContent.php',0,'RmŒåòÀè¤õ°÷›@\n','RmŒåòÀè¤õ°÷›@\n','ÏºNÕl(¶ÓBü0wÛ±FÐT¹v`jÅw·0zÉ›Ã','',0,'?'),('×™‹ÃœD•\0‚<Š¸˜ð|','wp-content/plugins/worker/src/MWP/IncrementalBackup/Model/FetchFilesResult.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ø1ÃØ+¾jÔ\r%A¬³Ûò—','¦”ûÑ-Õ<Îžé1=Ìý¥‚k7Æƒ{@M¹Rýþ×9','',0,'?'),('×ž”y„7mE5ƒ…O_Á','wp-admin/js/media.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óë-:§(•ð%×O„\nú~','x¡(ƒ£ëžË»ðÍ³üÚÛY}hu^8?KîâÞZ','',0,'?'),('×±¨4ìð.7¼','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Person.php',0,'{zG“/øÖ‹Ó°:¸öè','{zG“/øÖ‹Ó°:¸öè','“ ÈîN9ì?ˆ•çý@R¤kÖúâsvS…üp@à','',0,'?'),('×³¢êH÷lu!»rAë','wp-content/plugins/worker/src/MWP/Action/DownloadFile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤,ú~|w1		‰ý@µ','Ø÷ŸÃµzãÈkCwEãÿ¼“^)s«ó\\¨ÈôŸêÐ','',0,'?'),('×ÃÊzeÊ#´ä@dÊzqä','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Cache/NewNonceResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xÉºÐéÊ˜-/zMò\\',':X(,sXE\Z‰	.†/!I·ÝÏ±§úÖó·XìI7','',0,'?'),('×Çj0–©ÞwþE}Â®RŸ','wp-admin/css/wp-admin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€eèUpÊ“ûHšWtP! H','Ê^´ÉÝE-ÊRŒø±¢\'#?‘leÀ®mL0¯kU@','',0,'?'),('×Í:]ûÎ¥EvM’qDå9','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerDeleteError.php',0,'•ªnqò Ïä\0M_0í‹K','•ªnqò Ïä\0M_0í‹K','˜g„tWŒ»ß}©Âä›ÒTVei–XŸœðö+ÔX‡','',0,'?'),('×Ò[aœð‚¸ #áÀ¹','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/AbstractCommand.php',0,'^«ûðÞªù¿±z¹)~c','^«ûðÞªù¿±z¹)~c','^ßUËw1ãñxNàÛ­E!XÙNq^À…dÜ|þGí’Jq','',0,'?'),('×ä^Ëu©­âË}G»Ô','wp-content/plugins/wordfence/lib/email_unlockRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ð¤Î~ÍŸñìþak±Ö','u\Z g$}o¨‚ûëbÄ„ñ+\r ã\n¸»±8²','',0,'?'),('×óJ{-m©ÑR\"','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/IncompleteMultipartUploadChecker.php',0,'á	š¸ÃWNa	ƒ/m^','á	š¸ÃWNa	ƒ/m^','€ ¦Em5+Õ·ÍñÄµ4X.Ìú£y—VÛ1ˆ‘¤¥','',0,'?'),('Ø\0µ½ÖSû:m=²ŠtÆ<','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-separator-preview.php',0,'Éa>ÌXëI§±(d´ë˜e','Éa>ÌXëI§±(d´ë˜e','F&˜?[ÚÐ‰ææßª]Nµä‡T0†Itu‰â‚SUwW','',0,'?'),('Ø\r\'9‚¶ƒyªt„M`Æ¥x','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/ProcessFailedExceptionTest.php',0,'Iþ:H–ôÏŽ•!\\`ìØ','Iþ:H–ôÏŽ•!\\`ìØ','“µñ[¤YßÿLL¼´<cêfTð’x@kÁ`HlW','',0,'?'),('ØQR2ú×Ô]bgiÎÏ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Constants/User.php',0,'ŸÚµÎ@¼ÐëÅq\'÷Ö=','ŸÚµÎ@¼ÐëÅq\'÷Ö=','‚™­²uñò“åý¼òKÝàÙ†¢WaK~~\"Ð*','',0,'?'),('ØÀ\ZvŒI:wmä²\'~K-','wp-includes/ID3/module.audio-video.riff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ª\"íú€:\'9êÍ×PÎ','¨€}\",.~Ã~òšÜsý…ƒ‘Uï°5Î~¦`x°èP¼','',0,'?'),('Ø¶C½Ãˆ#×Ò•\"‹„¿','wp-content/plugins/fusion-builder/js/views/view-element.js',0,'×!!AÅOæ­TÖâÀ','×!!AÅOæ­TÖâÀ','	”V_HÕÜ%?<8KWW H»Ñ‰;&Æ^î','',0,'?'),('Ø}Ä¡\"¯Zž„Ñ\'’¾·','wp-content/plugins/updraftplus/includes/Google/Http/Batch.php',0,'“ëŸ5kkL¼öý¼&ÛÞˆ','“ëŸ5kkL¼öý¼&ÛÞˆ','Ú¿§¯ÄÓUÑ•+°‘fzŠ°Á:*¥ÞøŒ§]bø','',0,'?'),('Ø&ãZhÍ$›Ã‰o‚','wp-includes/class-json.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kE\Zï¡[Z™ÀœÀä°±½','èD¦äýûÐtª¸5Êð^	©Ïƒ72Áð7×{','',0,'?'),('Ø,_äD\'–—(îí¶YþF,','wp-content/updraft/themes-old/twentynineteen/header.php',0,'€Ã—Ó{¿H¿	>~Q','€Ã—Ó{¿H¿	>~Q','–Â«›s±Œ«tS’uHÓZ1œÙÏVÈvTˆ¹V¹)v','',0,'?'),('Ø7«›GwiK^‡_-Ï½·','wp-content/themes/Divi/core/components/data/Utils.php',0,'Î[1ikJŒ(3O`ªà','Î[1ikJŒ(3O`ªà','„#¹Å};(CGQÂ‰VäV¬ã\'¿iŸ6¥QëU^V’','',0,'?'),('Ø8/B±$8ˆÏ`mœ','wp-includes/js/imgareaselect/jquery.imgareaselect.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-è?¾óES+Ï','ÎÎÉ,³®OT[9ê«pm¦«YÌ£ßÃ“,ù€ÍñÛ=fÛ','',0,'?'),('Ø;”ïÀ½eÆîÜC\r','wp-content/plugins/fusion-builder/inc/lib/inc/redux/panel_templates/menu_container.tpl.php',0,'‘[¤3ÈgiŒ—4é÷²¹','‘[¤3ÈgiŒ—4é÷²¹','=³î×”çaj€—DÖ4´ñ@wy%‚#QC¿aT¬û','',0,'?'),('Ø<žaf9ÈT¼ú£íe8»','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/variables.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('Ø<µÕ³lbÇÉ)– jñÑ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchTagSetException.php',0,'‡¦h¢Ãg–ìtIÊ³*–','‡¦h¢Ãg–ìtIÊ³*–','®#ì•n-çuuÐ!E¦.ÛdPÁ0´eŠG‘&³[÷½','',0,'?'),('ØA¯h)Iˆ\Z]GrÞöƒE','wp-admin/includes/import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Íæòž&Àm¹|Á<øâ(`ñ','6\r6\r‹@îu<Êz(á_üÑÐáì‚0‹vâÀ*®','',0,'?'),('ØJ=R\'ÿ¬ßt^ôŸ}ú\n','wp-content/plugins/wordfence/images/2fa2.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ä¾ÜîŠÔû\0¿”H','n¸põŒÊ…¹¨üGÊ¿0Õ6KqÁJ]Œî¾Ã¾Jû','',0,'?'),('ØM&3\rÜÁ3CMaQ{','wp-admin/images/yes.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä+ø¢7Ü‰—\rqZèQk',' =ÊQêâGÝëçˆ9%¹K†ææ,Ë\rû\ZFðyõ…ç','',0,'?'),('ØR\ZÇ›y“°Ëñ\'èê\r','wp-content/updraft/plugins-old/updraftplus/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php',0,'îeÄáÚ;Lu©ˆz<vö','îeÄáÚ;Lu©ˆz<vö','§b!¦|³ÝäcÿÂg.)¨¿PC<ÈÑ´‰eWŽHÂ','',0,'?'),('Ø[ÂÅ¦•lÆôðP­Xw`','wp-content/plugins/wp-mail-smtp/assets/images/providers/pepipost-smtp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýIX“ìIëN	X­6˜<','µ\ZF°×Ð¿£{¢‹É¥’€‚!*W„—å@·-õü','',0,'?'),('Øi:xA«ÎÈH=\r¿3£Nþ','wp-content/plugins/updraftplus/templates/wp-admin/advanced/advanced-tools.php',0,'â)\0{ö©€Æ´š·õKË[ö','â)\0{ö©€Æ´š·õKË[ö','Zó<?>J2F÷~Ç’˜•Ÿœ24ì1†Z“é‚|íÔ ','',0,'?'),('ØoÅÇ£ž	×£áŸf0¿Y','wp-includes/SimplePie/Core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ø²3aÝ©æ0)¬­_àS','õ“×760î—w8Ý([†žÎoãWÔèKïÔ4dŽÃó','',0,'?'),('ØvõýãÆ\rêû´&X‰','wp-includes/js/jquery/ui/selectable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÆZIr‘”]-ð4äò','Æ]ž©î+üRýãs©õãzälC”aÈÎõê(8—Ùö','',0,'?'),('Øx¼øÎ²Ð¦¬à¨A	Š<ê','wp-content/plugins/wordfence/lib/wfCrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CøR`¨œ¾éÄ9|‹e','U ÍŠŸs›ôdsÕ9;ä°ÀC¿Oô†ûòÈ¤‰@','',0,'?'),('Ø|…zìÙ7HWT_Ä¹','wp-content/plugins/wp-mail-smtp/assets/vue/img/loading-white.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºÚÃù5¿”ME/ÄMl„Ò','xœ¾PŸa#Í‘Õû#eëXól¯©9ù\"ÒƒUŠ4V','',0,'?'),('Ø…\rJèY¼~ß-MVS°','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/ArrayCookieJar.php',0,'«Œ™gò”;Ã5JDcË','«Œ™gò”;Ã5JDcË','<êÒð î\"R{¯ó¼1}6¥yœµ’»6oÍ','',0,'?'),('Øˆ\"4á2JyCœ’áÍs','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Http/IHttpClient.php',0,'@JêýösÄsýa@º¥','@JêýösÄsýa@º¥','!¬Ûº3ôt íP­Qv5özLßš Íûçs¶AX’\0','',0,'?'),('Ø‰ä/÷•,ûæ°Ñ8‘','wp-content/plugins/worker/src/Monolog/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('Ø™AÁJ&öAgi«€©±T','wp-content/themes/Divi/includes/builder/module/field/attribute/composite/Parser.php',0,'÷=9‰åƒ¤KƒDPê¤à¶ç','÷=9‰åƒ¤KƒDPê¤à¶ç','ê(¦âÚõBò5•()`ÿôRôÊæ³Ô#†%³m¨’','',0,'?'),('Ø¤¥ò¦0…\0IŸŽ–WÄ³à','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/ArrayCollection.php',0,'ó¥ó~eº´oVµUØ-”','ó¥ó~eº´oVµUØ-”','+§(’TÆ¢EBn¢éÃ`UHK´€¼0¦÷v6v48A','',0,'?'),('Ø¥èdLX¯ÄZƒO¼C€Ç','wp-content/plugins/worker/src/Symfony/Process/Pipes/PipesInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àuäK¥Ú%Ô)ÿÂŸÀht','•2ôÝOEz*‰Ëp%¬¥\rcSª%.	EÌ‰ÕŠ(','',0,'?'),('Ø°8µ¨(ý[˜ 9Í:Aâ','wp-content/plugins/worker/src/MWP/Stream/Stream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S+!ô¨<ôEh\n:ðI\n','·ÎŒ!Zÿ_›ç:’¯^Ï¸„0•\Z|»|½Þ•i¼YR','',0,'?'),('Ø±¥-¤_}Z‘hûì\n±\Z','wp-admin/includes/class-walker-nav-menu-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì;YÒ®|=Ãq\rïR.;\'','Ý@ë°‹íké`]‰gsyžj¶þƒ‚hµÉ2¡g[9','',0,'?'),('ØµÞdÛå‹ª¬æßÍÌ_%','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobOptions.php',0,'õ!úçž¨Zéû9Û÷x','õ!úçž¨Zéû9Û÷x','„É?\0ÐH@§±ä™Ÿ5¶«òÁîT–?š\Zý½r5','',0,'?'),('Ø½Ð)’üuÒ¶Ÿew‰¯l','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InsufficientFundsException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆmhOà´²Šfô².I','­o±OÛbÁ9_Áãb”-4Ãê-„x%ùT¿õ«5E9\'ž','',0,'?'),('ØÓ¡¶ìœF¶µ·?×','wp-content/plugins/worker/src/PHPSecLib/Crypt/Twofish.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-àÛB©¸•Çô7Ã¹Ó:|','—d/ÐÃU˜OöÁ©9Z\r]Rö ]düÉû½ä}mã','',0,'?'),('ØÝ\rïK:äÂ¸Þ9v¬%-','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/triangles.php',0,'Ç\n5Å\'	+Ó¬h#aŠ','Ç\n5Å\'	+Ó¬h#aŠ','\0ø.s’/ÞÔ\0r%ç¢(VUôÚÀÂF>CX*Ì†ŠH','',0,'?'),('ØÝ\\¼	nœ° ¡Òx\Z\'','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/Query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªö®Md÷øþ\'!º¬','/ó›[1½4mé\r=_ìØ·WH§†&­ÚáM','',0,'?'),('ØâÊEÆ¡Ó¤\r«ÔZHœ','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Tests/EventTest.php',0,'*f¨ IòÄàÈE%xÄ','*f¨ IòÄàÈE%xÄ','ËýÐº)<È U´\0¹‰1ÉºÊÁÛ†å¯ªá0','',0,'?'),('Øå|Ü?˜È‹*óL¼Ó ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/AbTestVersionStats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IêŒýƒåò˜}›ÂUi','§¯¸}wU°.Áu\0¡W®&ûÛ_wrr°×_Ï)kÈíW','',0,'?'),('ØéBÊñ”°T•Œ{d½SK','wp-content/mu-plugins-old/0-worker.php',0,'Œ™D§¸HP¨ÂsÂAå','Œ™D§¸HP¨ÂsÂAå','OÁÑEcï5Õ¿ìá\nÃñøIË…Š	g0P+¸-„ñ','',0,'?'),('Øí¨íG2ŒÒ£¤\'\r¢6','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RequestContactExport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@–Ž‰×5±=¶ËKÊ¶',')†]Ñr¡m(ft%YÍyÁ;Ïð7BSï+d‡¯M','',0,'?'),('ØîÒ¡ýŽªK%‚¯ˆû^²','wp-includes/js/dist/dom-ready.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éø›!‘±Nî´JœAž†v','TÖãII-ƒU{zö]m´RX¼û>Ã@[jtÍX','',0,'?'),('Øñ	ýLqêÕ†Àr	øÐ}','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/pinwheel.php',0,'þ\"ŠŠÞµ—D®›ç¹`','þ\"ŠŠÞµ—D®›ç¹`','Cí˜€|íZËÚ›çj~£`á:,*]ö$¿2R9','',0,'?'),('Øû4È«Û=60’ác»Kõ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/html/validation_html.php',0,'©å†&R%´ª”®f\n 8','©å†&R%´ª”®f\n 8','dOëNï„+Ö°¥…•D¿Z¾å§B0šò­¶‚\0¨','',0,'?'),('ØûqÆ\'ÿÐÂ|6A¿0PŸé','wp-content/plugins/fusion-builder/inc/admin-screens/addons.php',0,'grÉi_à´šwá<Ö]À\"','grÉi_à´šwá<Ö]À\"',',ËxÆ¸ñÜäôCcæåÔ®!ÙÛnƒE,\"Ã…@’sð','',0,'?'),('Øû•(SýóDg2+o','wp-content/themes/Divi/includes/builder/module/settings/migration/BorderOptions.php',0,'|	°}` Î³Ç’Q$IŠ','|	°}` Î³Ç’Q$IŠ','ì‚Ÿ{@.F­(2H‘Šú…((M\nœ›Û¬ép\'ãuHb','',0,'?'),('Ù-h\n\r`–éÃ½Û•C/s','wp-includes/class-wp-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-²ÐðUÛ³OÝþí–-þ','`8ŒöIòU zuTM\\Ëx_Õë½”gËÅ­ïŠygÎ','',0,'?'),('ÙïØÈž¬Wà¿ÂÃ¶HN','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/BadConfigurationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿÃ>$ÿ×XRÛ€j\nXN','\\G°¯êà¸æçøKôÏ=xâÕˆŽ‘j\r‘+@Ö&ð','',0,'?'),('Ù!¼Q¸K·ÔbY.&ø‹à','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/AbstractResourceIteratorFactory.php',0,'çÉ÷ñoÞ÷Ëòw&k²±c','çÉ÷ñoÞ÷Ëòw&k²±c','èƒgè¹rˆËõžF§\n.¨oÞUP›d÷¼éÇ±dgWÝ','',0,'?'),('Ù,(¡i7:^Ì^ç‰#','wp-includes/js/tinymce/plugins/paste/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dX®Û½Ÿ•¥ózÒ†Ö«','ƒf÷×\0W{?q½ÅÞÆþýÅæ‹×Ulà¾PóýÖ«c8','',0,'?'),('Ù/\0Æð_væÁ°ßê','wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/Adapter/Socket.php',0,'%´„ßbõÏ‚“ùVý','%´„ßbõÏ‚“ùVý','n¡Ü|?µE¾n[:Ù1Èuxo£ÝÖê¼?ãúŠD@+a','',0,'?'),('Ù1&¼J\'#2Š÷5oá¾0','wp-content/plugins/updraftplus/templates/wp-admin/settings/temporary-clone.php',0,'FÈX\\…Õ¾°MÆÐÜ5','FÈX\\…Õ¾°MÆÐÜ5','É;ÅN&öÒá@H{Ž3£QÍ¼u	ªØßc™e','',0,'?'),('Ù3Â>\"kçI1×ýF1	','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersSettingsForwardingAddresses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'ªV¤k¸’Ô(QÐšRjN','ghN˜öX*4	è‚½Òž\\|\"Š–&úN;3\nÒÿ§','',0,'?'),('Ù=å¢¨;ÁÍõL³-vÇ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobSnapshotOptions.php',0,'8ÃðLfjÌéMŸ.Ùn','8ÃðLfjÌéMŸ.Ùn','Å2¹Í!5]ž˜5b‚³~ãš«\n€`Ç”¢@\"žV{×','',0,'?'),('ÙFÑ2\'¤?zÜÐÒçª_ð','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BinaryField/Integer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~B‘ð:¿Ÿ…ÿKü_\ZøZ','`Î\nòö¨§íÁ %¦Øxv‚#äW–ÐC$üù\0Â¥‰G','',0,'?'),('ÙJàïš^\Z7ü•uG–k+','wp-content/plugins/wordfence/lib/wfDB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P­_<†‹¤-1é__I¬ˆu','á‡%d¯¬¥¾d¨Ý_…\01@TY‘$’ÐäÐA','',0,'?'),('ÙdÅÓ%3ßèZð4ý•_+','wp-includes/css/dist/edit-post/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®Ž›‰mÎ ÎyR‰ÝÊ–','ÛID©Ê<Æk´á²NëÓ˜Î\r”‰ÚºÕÞØ±ùÎr~','',0,'?'),('ÙkïÛ/yž³©ý›&‰ŸG','wp-includes/images/rss-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÇYa[ QÁæõ—ýrj','yS0üc`\n7ùäas®Ð#Ânìú¨YßüØ©','',0,'?'),('Ùl;aoò´˜â¹~ûGÖá','wp-includes/Requests/Exception/HTTP/501.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü\0ÌjQc:†1NiD','“k¥Gå¯²ä\nÎƒCD#¾6Èu\ZëÖ„EÚ£@K1','',0,'?'),('Ù…™;\n‰fDé½o¹c','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistb409.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5¦¥_Ô}‡ùöªGzIyJ','õgAˆÕ¿÷\Z\"ÓŠ¤E5Ã>è9ðL®ëÏ®¢','',0,'?'),('Ù‡ž(Ãªq.A­ƒ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/SignBlobInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äIH*îÎÛ«q&ªZR¼','LÒ°mž^*Ú_íXBh’í/=Ó7Eµ5;üK-p$ˆ','',0,'?'),('ÙˆéTÄ–hx~Dt>lŸ','wp-includes/js/dist/compose.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r\\†äÇu9°wùè‚‚Ý`9','²õ›‘:A‘|\\hx¤Ìkƒ}-ÈIf{ªãSÁ-Q÷vÙã','',0,'?'),('Ù‡¹ŽóË3‹V7Šàa®','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/KeyPairMismatchException.php',0,'½\"q=Ëà¦IõJ:Ac','½\"q=Ëà¦IõJ:Ac','Jƒ.¢@œJ2BÙ‘Ÿ¥…C´Ïdq^¸}Fje†\0','',0,'?'),('Ù˜Ý\"P´Üž÷Æ,ƒ©Ø','wp-content/plugins/wordfence/images/icons/ajax24.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:û„²·õmð™—£P½','j*äeŽó©õdoX¤~§7Âë&€²‚Nü9É|L•Ç','',0,'?'),('Ù™[‰Åy³›?m¦¶\"','wp-content/plugins/updraftplus/includes/Google/Verifier/Pem.php',0,'õÿ#ÛUáµâÛ™Ô*€@þ','õÿ#ÛUáµâÛ™Ô*€@þ','l@¡ñ[óuuPjÈ%2AíØË‡p¬—ýäº(w&x÷_Ò','',0,'?'),('Ù›ÑNñãjgWCl\n¿b,','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/NullHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…1hpgÑû>&!é^','ˆ\n^þÈ©Ñ<~Ä„þ©!U/?\0Ó|xoƒg6§','',0,'?'),('Ù¬®ý»OÇ³¾ðÆ¤ÍÐ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CouldNotRewindStreamException.php',0,'\\$žtØkWÒÎ','\\$žtØkWÒÎ','ÏÉ¥\r õk(Ì\0¢Á>îœö#\0Z:­Üt]uë%.ïþ','',0,'?'),('Ù±ºµMPrËÑh~Œžù','wp-includes/blocks/post-content/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dDÉJƒú2¨°=¬i‘','-Pü“]		6¢?ØÙrWüßºaVÒñ‹©Âí¹—','',0,'?'),('ÙÄ‹Ü}ê3«mä´J\n¢Æ<','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/Ip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­Ñ‹÷r.:Ö³q9i(·','ÒfUo‘Y¤zÌà!a3³Š5Â™Ò“‡\'R¯Ï¾+€','',0,'?'),('ÙÑÑI‰èjÜg%hÕq¡','wp-content/themes/Divi/includes/builder/module/FullwidthMap.php',0,'f_àI@1ÒÌ·C‡ÛN•','f_àI@1ÒÌ·C‡ÛN•',']›7¿Â\nìöÿ@¤|ùµkˆ@ŒÕµuÄM­{Å@ù@','',0,'?'),('ÙÖ3›ÏIê98\\ÙÖ›Ì[t','wp-includes/random_compat/random_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*¢RXé•Ç ¯Í¤BÐn6','8ò÷-%¨©òúsç`NªŠaøL	óLÃMóÊ«Ã)À','',0,'?'),('Ùã÷1C9väÙúÚÎY-!','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/CachedFormulaLoader.php',0,'\nYn}ÓÑà7‘~ \0\\','\nYn}ÓÑà7‘~ \0\\','tä£›Åéÿ&Ó`Zzà>²<|X½ÎÐ›™zgP','',0,'?'),('Ùë¼!}ñ=ö`*„gZ=','wp-admin/network/themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð¬‰Ô¥êdo|›©Üª','òçõ%ºv×«\0“œ¶\r±àÎ‹³Š:cÇ×GO ¾Ÿ','',0,'?'),('Ùðr[ñû¤¯C`º”÷«°','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Û“œÑôGÿc,«™=c^¥','ìÛä‹«Gêc‹Àïèt(5\n,9%Ù÷—£Êå)ïe','',0,'?'),('Ùó“È9ðìeP8{Š(Y','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*i@àóqo8kö…',' p§È:Ž6:*•ñ2;ºNó×š‹1vô2;èÜˆ\rX¹','',0,'?'),('ÙóËú›¥ûF¢Çýÿæuw','wp-content/plugins/wp-mail-smtp/assets/images/email-reports/screenshot-01.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä°ºþÖ…†ßÞÇÐ!ŒK','wìÙlD®þNÑ*DQý²JáF5jõ±','',0,'?'),('Ù÷VBÇ¡ñè\ZŸB\"\0²Ç','wp-includes/js/codemirror/esprima.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d_™ ÛS’ñg«¹Ù›´“',']ù;¸%JsàÕlxîƒ¯à’£ÎFqý‡BH\ZäU8î¢í','',0,'?'),('ÙýK°ú9AãÍW¼|87','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/FilterInterface.php',0,'¤‰í€Ü~ü“:1HoÖ o','¤‰í€Ü~ü“:1HoÖ o','Pë<…qrMÐ‰bº(He=-zJåÑšK©þM{6','',0,'?'),('Ùþ>Ï~ä!ðªgÅq‹˜','wp-includes/js/tinymce/skins/lightgray/skin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ…¿\\– B–œ¥&èpwÇ','7>xV&v|Â­«æUž& Ý·\"Ç¥z9jÛF%Ñ½KÞÞV','',0,'?'),('ÚâÇ~1°€<¤}Zr','wp-content/updraft/plugins-old/updraftplus/includes/tether/tether.min.js',0,'xØºŒTïe8\0mc€<#á','xØºŒTïe8\0mc€<#á','Mò¯8•Øcz/¿¹U½oòá²¥BDÂðW¦Æ$*®9','',0,'?'),('Ú¡æxÀ—˜à_¯\0„ë','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/TokenRefreshRequiredException.php',0,'óÑ:½Å0Z·Þ†\Z…¹òî®','óÑ:½Å0Z·Þ†\Z…¹òî®','…ã‹Éd*™4íús$§5~`”:&nþ4a£ó','',0,'?'),('Ú\rÁí±Beª×¯Eó7','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Location.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','áñY}ƒ‰Œ`8vèý…FJ','U¢’ß†(²[ÿråµ³€©g†ØíhÍàå¬µ!m9(\"²','',0,'?'),('Ú\\_ÔýöfsAÓ)Y','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/TagProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ]ü›Môù¢ýí@f™ìç','¥îƒXivhN÷åªUœ”Ú‚Ä{HcÁrG','',0,'?'),('Úªù\nH|Ë:ú¼ÆDc0','wp-content/themes/Divi/includes/builder/class-et-global-settings.php',0,'Ò†6Úã@ùÎ\'Ï³`ú­','Ò†6Úã@ùÎ\'Ï³`ú­','ÛÑÚyƒZ)?·õ‚*•¤&¥ñL–Èi7øM\\B6','',0,'?'),('Ú†wú=Å¢ÄOú&¹FÊ','wp-admin/css/colors/midnight/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&ÜªðÄ|DW¸¼!Eô†4','SêÌoÍGpžÛéôª{µý‘\"¨FuS¾&§Žõÿª','',0,'?'),('Ú\'£Ýø7ìbâä~ 6','wp-includes/sodium_compat/src/Core/Base64/Original.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ò£-ï‚ýèÞÑ‚ðº±','±9\0zotˆID:\0¹›ê·Égä I%á~Þ¦$o','',0,'?'),('Ú)uÆ+çò¬\n:˜X©ø','wp-content/themes/Divi/core/i18n/library.php',0,'Í¦(63©Ñ+¯š ùY1','Í¦(63©Ñ+¯š ùY1','./ÙÔå½&½€¹x`ÜÞº\'Ú[ž´­³šŽ•’ú','',0,'?'),('Ú,\ržÊ	ÕgÎHÅþ6','wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾ÛçHë±v³ƒÿöþù','t	NÉ¼!\'´W«÷ô` 1†Ê1†©1çöšáŠ¿!È','',0,'?'),('Ú2àŽ6,Ìž|ke‡L\ns','wp-content/plugins/wordfence/images/2fa1.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/)Ýh\\ h¨Gæ¯8ü','CÙ%ñ0…z)f ý¶±@Ît>õŠÉ¶{TˆÙ8·o‹','',0,'?'),('Ú5¤‚Æ‚v\"[kú!¾È¦','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-woo-shortcodes-preview.php',0,'Q»¡Z>ÎÊ°×ú%;åô','Q»¡Z>ÎÊ°×ú%;åô','ðé”C¯Ì~¾mRc…@hS³(‹1°çdg„òRŠi','',0,'?'),('Ú?\0]‡×);?å±’Äˆ','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Plugin/Update.php',0,'\0ÄÜÔúl%ì	.Hïß','\0ÄÜÔúl%ì	.Hïß','Xf%ÅF·â®™{Ò³Õ),›êv†ÚŠm•É®Ãõ(','',0,'?'),('ÚPªò´B)öÄ^÷.L*','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/PsrLogAdapter.php',0,'U´¾±Ïã¦\Z+@D1ÿ','U´¾±Ïã¦\Z+@D1ÿ','ÔC<‡Åüg°:xU9´ò•ÕÆ3JÛ–1·íõ\"D','',0,'?'),('ÚVŠÎÛCÐÀ“ôdvÛ¦±','wp-includes/blocks/file/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ž[Ï@/ýSû†2Dìš','~@m	.3à‰Q[ÖJºà4kƒ-‘Ö¦¢Ãø·­à£h','',0,'?'),('Új¼•ìû\\hèÕµ¦\Z¤','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/MethodProxyIterator.php',0,'EêÔøW½—!±\"`h÷ë2','EêÔøW½—!±\"`h÷ë2','I±÷ÒÊ©¿dïªÏ¦/ÏaÀäÁŒ¯4P­u3ƒ\rÁn','',0,'?'),('Úu78¾Â¸äKÔŠkhî','wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','étJÖ¶•DÜ’¾+ÿC','ë¬ô\"uužgˆI$E¯…®D=Ðð¿\nºž·Q³‚g-ìTZ','',0,'?'),('Ú|À#éÔ°#{•ÄþŸá','wp-admin/js/link.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n…“w¾hµ®£õ’s[','—y×ˆÍh8ÛHi*\r!‹Ù4*”<9g·V\"¶Ušø','',0,'?'),('Úˆ˜Aõ§nÕºÖEÏÂÎ','wp-content/plugins/updraftplus/includes/class-backup-history.php',0,'p)ÐqyHuSfèÓxfë','p)ÐqyHuSfèÓxfë',':@¿ª¶ìGzch=vp9’ÃHÔvW‰}K6´®Ä·’','',0,'?'),('Ú‰x`Ù9íLÅ¥M‘Ò,L','wp-includes/css/dist/block-editor/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zà†qeû:\"ÈIÐ k±','pALø.­âÇÒÓg¾ªì4…›}—bp˜mz\'hŽ`','',0,'?'),('ÚŠEš–ƒª5^d;Ëó','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/PreComputedInflector.php',0,'Ÿ+‡~PþþòöÁ3','Ÿ+‡~PþþòöÁ3','Ã7´“a´?\'þlð}Æ­Á/Á²a$^ƒù^üèÞ','',0,'?'),('Ú‹zôŒ¹›loÐÖµJ','wp-content/themes/Divi/includes/builder/module/field/Factory.php',0,'™\0\0l{ƒ\"}Í€S–M','™\0\0l{ƒ\"}Í€S–M','n‚¯®tQËó—»Ò’²<5^ÿT¨º¤Wß18gE¸`Û','',0,'?'),('Ú˜–Šª¢ÎÍaˆn„C»','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/BadResponseException.php',0,'.5‹ï}Ö²&6j(†~','.5‹ï}Ö²&6j(†~','~^§Çjùlº‚¶ÇìñSï¸û2î<8nnIïuzó','',0,'?'),('Úš§éÞ´¬¤˜ëÐu_Þ','wp-includes/blocks/post-template/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T^\Zá	´xiK^8¾Þ','@fLC\r	5?[Y~¤K¯§šýç^3aÒ­fü¢%´','',0,'?'),('Ú›ø!{‡E²“M$ð©š','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/JsonError.php',0,'K7hh‚.ƒŽ:kÃ¯','K7hh‚.ƒŽ:kÃ¯',')Ÿüïö±„—Çln¯#›Ž\'SËÉfBß©/ù Ä©','',0,'?'),('Ú {KC2t´šÑ««ù[','wp-content/themes/Divi/includes/builder/scripts/ext/chart.min.js',0,'\r0`\Z…Z= 5T•(§','\r0`\Z…Z= 5T•(§','Š\r˜ !ÃîÊ\"nNò!vDÔaÛã†2Ì¹èyî:','',0,'?'),('Ú£Ed˜Dódåñ M6DÍà','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Resources.php',0,'Þ*È§ˆoÓ\'é[ÅŒž\'üC','Þ*È§ˆoÓ\'é[ÅŒž\'üC','‚®¾ŠFt+¬Ñ”K:¸œp”Í‚”É\'QÉ×òd\Z³','',0,'?'),('Ú°fK»nMÝ\\8«Š„\Z','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/AbTestCampaignResultClickedLinks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»üo„VFHñ5ÁüyÏ\\YÙ','u¬å—Ñæ3ÊÊÓáÕb®S*›Û™ÆÚf²Ëô','',0,'?'),('Ú·§~ð‹.˜ê×ÊâYÁ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/qtip/jquery.qtip.js',0,'ìµrôs•Þý÷¸aúYÜÑ','ìµrôs•Þý÷¸aúYÜÑ','Dè:øœÈú«ä~¡ÙL3uí¨o—	\0cüÙ¯:ý','',0,'?'),('Ú¹ñ¸µŸPá²Ü›Œ>%','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php',0,'*<Ð´H,«ï\nÁ5 $ûÿ','*<Ð´H,«ï\nÁ5 $ûÿ','?bÛz‹4wþØ	\r¤‹¼#pPÕ©Ð õQgw‰÷','',0,'?'),('ÚÀèrñt~ö‘DÄB ','wp-content/themes/Divi/includes/builder/plugin-compat/sellsy.php',0,'‹ 0èÁ$Ç¡Ú\ZW6','‹ 0èÁ$Ç¡Ú\ZW6','±vu8WFD¿ƒn1#yßA<~™g+à³ë=r‰Î÷·','',0,'?'),('ÚÁ=ÄÝ––gÁ!Q†˜Ç','wp-content/plugins/updraftplus/templates/wp-admin/settings/downloading-and-restoring.php',0,'NCŠ®ÁXkÚZ¤C+J3','NCŠ®ÁXkÚZ¤C+J3','R”é7ìÿ>\nÞ<¹£¼:úEž¶¢8\"ÝÇ­‹†µ´','',0,'?'),('ÚÂŠ#6øK%#f\rÈ','wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰¤æH0Îc;`ñäªW&','2A]êÚ›\\e‰ŠWß¦kZösÿ Àc¯<Ê`÷d)æ','',0,'?'),('ÚÆ}á™M°KBbUþ+ø','wp-content/themes/Divi/post_thumbnails_divi.php',0,'£!+-I”˜?åº¡Ý©','£!+-I”˜?åº¡Ý©','€«OèãÎÄeóoS÷¬©`-§)\0#¶\'žBé¸æj','',0,'?'),('ÚÔý	Ð‘ºË³”RQÍõÓ{','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/TransactionalSMSApi.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©KpR=¡ãuœÇ+=z¢','¿k*<&¦sÂ¿@rM!`	}ö›Ø$r}RE5#O²8','',0,'?'),('ÚÙb3(œ•©¹wœü[9','wp-content/plugins/updraftplus/includes/Google/Service/Pagespeedonline.php',0,'\0Ÿ¤ÁUtÒ6ÒúÓþ¬eF','\0Ÿ¤ÁUtÒ6ÒúÓþ¬eF','‡+C[˜qÁçï\0ZjžSÌ[ñÜã½âßtYÞãÅ','',0,'?'),('ÚãÌ­\n5ïB…óî£ß+Õl','wp-includes/blocks/gallery/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~É®£gMwý|}[ëõ‰æ\r','¶û9ëðOÒD\"’¥É©Å‘\'j¯èàzkWæì[¦ˆ}æ','',0,'?'),('ÚëJ«B&9:VÃF[À','wp-includes/js/dist/media-utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡é€8íasê‹ªmÊ·Yç','q~Is^ø{ïžƒ÷[…ÚÝª`jù™¨TÐY³àÄì>','',0,'?'),('Úô“ðC .yj\0oì*úf¹','wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÁL\Z3`f§ŠÑ–{_z©q',' .IET°ÚØ£µ«J#ÕJðUkÃ7úhy›Ò\\û0ˆ','',0,'?'),('Úö}aqG%èÿI5Å¢Y ','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/km.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b+ëÌ|þáòÐßÇ©','ú`—ØŠö‚£§œ5Íìéd\'2\'Ãçôh¹E‰~\\','',0,'?'),('Úý!§(t”ò‰<Ô¹','wp-includes/js/heartbeat.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R»[¾f‚»à÷:òå','c»îVâèg-$6ê[\"ü3iò<›~Œw¼ÉÀ\"ìN','',0,'?'),('Û»üàÙ¯èÜ]+äWf','wp-content/plugins/updraftplus/includes/Google/Utils.php',0,'Ê»c–‹+‚#ô %*ýa','Ê»c–‹+‚#ô %*ýa','(‡ƒ>J¦þ—Z½‚§3YdWðVî¶Ôu\"¿','',0,'?'),('ÛãŽ_\r¬JLè#®@BÌÖ','wp-admin/css/colors/midnight/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±ó\"£;4çå3ª#ªL%','tP01)cÁ§‰3Á²õ,~˜hÜšªOxØ:–í©d','',0,'?'),('ÛSì?5¨LÇ!ç	*','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AuthenticationError.php',0,'ºW€{èê]m®	emÇÑH','ºW€{èê]m®	emÇÑH','óÈ‹h?eu-üý3ÆÝP\rÛ)+‘\rW}îòË=—ºC','',0,'?'),('Û×€ü>§° lr’','wp-content/plugins/fusion-builder/inc/lib/assets/fonts/fontawesome/js/fa-v4-shims.js',0,'»ÿÉbfï®$áeöû²5r','»ÿÉbfï®$áeöû²5r','±rJ„	mÜøcœú‚§Y4¦_3šdµ«ß	F­³·','',0,'?'),('Û\nK¶£„Åp\ZZ©v`±Œú','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/spacing/field_spacing.php',0,'6®•Qé1û|}Õ•¹°È3','6®•Qé1û|}Õ•¹°È3','ÁR5k®:Øy:+µçüN³Ó7\0÷g:£Ç	“•\0$mƒ','',0,'?'),('Û£ŽÕnØ_è	‡ÿÓdþ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/MessagePartBody.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' °ð¸!í±ßïå„£\"','I¡o‡â~šcÊò2¡rÆp¬à_©·º“z¾\'JG™±ê•ä','',0,'?'),('Ûr$AÞCæªßµkO','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/PublicKey.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÂÚNiÄ¥^uo¥2¬gl[h','`â©,d#ÌŸÕ0Šíªp†ÉH5.ip–R–í)','',0,'?'),('Û EÈç¯õaÅ=„áø','wp-content/plugins/updraftplus/vendor/symfony/process/Pipes/AbstractPipes.php',0,'!üxôP\"PV”v™¹Ä“&¹','!üxôP\"PV”v™¹Ä“&¹','Ïjq@*ã¡àåPÞj»*­Y·þ—ÃÙØùß\'4','',0,'?'),('Û æIÙ_X²Óš¼¨?','wp-admin/js/gallery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÆXJ7±Íjp÷Š8 n³T','+:âêUÀ.õé”õvfKBULàñÙ+sô×h[','',0,'?'),('Û(ö\Z‰h%e@«6E7d','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Filters/WrapFilter.php',0,')~ì)Å_}Ëý<8Ï|V',')~ì)Å_}Ëý<8Ï|V','kÍ\n®£nY”S{b¹BîÙ;´˜\0kr\'ha\'^‰_lúi','',0,'?'),('Û,R«éÈl˜(=\nqÀ‡','wp-content/themes/Divi/js/admin_post_settings.js',0,'–ÙÉø6†9±n˜L\Z\\fê','–ÙÉø6†9±n˜L\Z\\fê','¨àÉ2~²x†‹í	,UŒ‰©R”[5+ákêb','',0,'?'),('Û.è˜/CAÃÐï\0ËÀv','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/QueryVisitor.php',0,'jJI¹`\rÇLòóüw–','jJI¹`\rÇLòóüw–','»I=Q˜  ‚ì(÷º9Î¹‡o¼p»ð/ÊHY¬','',0,'?'),('Û2Do/rî´VðÒÛ²ÖF\n','wp-content/themes/Divi/includes/builder/module/woocommerce/RelatedProducts.php',0,'tBòx–·èðàÔÝT˜ ','tBòx–·èðàÔÝT˜ ','ÿÅ®ÎKÐ¶Hêß\0ž°â[ÆJ\0/›`R¶³Ë†Ñ­´Ý','',0,'?'),('Û4Vús#À,ïûQøî','wp-includes/blocks/query-pagination/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ˆ€cÖi?\\ô–×$3','5KŸ©ß’AÍ¼~‡í;#x(Ä¬EÅ-Ã-„}±Íç','',0,'?'),('Û46ï1ÂmÎÍùYR','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­nH\0÷u„}’ `¤èóÏ','—–ŒRÂ÷&»XöŽdÞ[—š4¸š9Ž“Vì·I','',0,'?'),('Û4Èð@DåŽj`uè','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php',0,'Êö\Zl*|=iè¸|C¯\r','Êö\Zl*|=iè¸|C¯\r','öò•Uý}ŠíÐ*ÌÒÄK8)ØFxçÃ‹»äËÿT,','',0,'?'),('Û6YISù}\'=×À›³“','wp-content/plugins/fusion-builder/inc/templates/container.php',0,'J·6V®F8Ä9¡<ø¸','J·6V®F8Ä9¡<ø¸','U¼Õ›<shðk$vÎP\'}»˜‚Øl‚ô¡€€Ø×','',0,'?'),('Û7ÏÑçDLÏeCqŽoN','wp-content/plugins/contact-form-7-honeypot/includes/css/styles.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œöœŸ&†Ö.ãæ­¼2','É³QÙì\r 2šªöONdJ åN¥þ&õÉ˜~Ü‰','',0,'?'),('ÛGW“HWÊfÏ¶¤¦ôs','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/RejectionException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êÑ/d? ^F:_t¶ó ','ÐF†Çî·äÈÞZ#mEn¨¿XÌÂ\n	†Ô_YøÒ','',0,'?'),('ÛLøZ¼tüÜÜ»l„9','wp-content/themes/Divi/includes/builder/class-et-builder-theme-compat-handler.php',0,'…ë	}Ì«y7³o¸ˆÉø','…ë	}Ì«y7³o¸ˆÉø','ü?\\\"“¢÷Æ1·RÕ<þeÞPÝ±Š ÏßUâ—','',0,'?'),('Ûv6^Aèó€A/],6\'y:','wp-admin/css/site-health.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÃWæ“*xá\"p¾ð!0+dì','\'ñrˆO[Fpi×‹_¿…=ÈëcE·uYNºf1™]','',0,'?'),('ÛzY#1‰„Aø«pVÀm³','wp-content/plugins/really-simple-ssl/class-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ø?Jq^êóZ›‡ÓÝ','~«mk2¡RZå¬i¸M¬³6ŸÐ4à!Þ‹X¶ü]','',0,'?'),('Û‹{S0\0\0=š1_Ø¦\rÀ5','wp-includes/js/dist/priority-queue.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þ®P±\\éÄräkŸ†£H','½\"›Æ?çÛG^éšŽt¸÷ˆù¥”\'º‘ÚÝm´CÍ','',0,'?'),('Û–JBw…C˜¡|Môv','wp-content/plugins/wordfence/lib/Diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥5VzY³]ª#yR•ÛJÝ®','YÁMÁ\"z)tÏ–©‚Ö*c‰wL\0¢‚ý‘´1w$dƒóû','',0,'?'),('Û˜Q¨™¥åÝU´Ïºp³','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/spectrum/fusionredux-spectrum.min.js',0,'¼\0¬Å#BµHÊãa’Õ¦','¼\0¬Å#BµHÊãa’Õ¦','YZ½Ž»O†0ò8q({¦<•³fÚ\0Ï•­','',0,'?'),('Ûšáù…~>èqQO3Ž\\‹','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚†Eé§mfoJ0{ð¯à','3oè÷Êúoü£ü8‡„á‘°l\0L°¹ÕˆÖ%¶æt','',0,'?'),('Ûž~ÞßRS*Š«Íž-¯­Ç','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_ListTable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bî„jÝxá¿Ðý™æ2Tþ','\Zøp·¤½áuÂÏk–ÕØ†£ýkç¿…\n‰paî…J','',0,'?'),('Û©^Þ*%©A›ÙNi™”A','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Datetime.php',0,'‘ž‚w¶\"çÈQ3¹C›î\\','‘ž‚w¶\"çÈQ3¹C›î\\','\"T©M¢á›oNF€GEÒ	¨—‚+Ý:Ø+ÝÚe±£','',0,'?'),('Ûªòê÷	.æÕ¸ß\\¾ò¯','wp-includes/js/tinymce/skins/wordpress/wp-content.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üƒÁƒ`‘ÆUn\0\rˆ´','>¥ ä‡@Æ:so«îåúXé=¹°Kd˜Îkuˆ{Š','',0,'?'),('Û¾x…»a{!tîQ.þ/Ó','wp-content/updraft/plugins-old/updraftplus/central/modules/analytics.php',0,'óñ0»XÿŽ@Ó!Ñ–~','óñ0»XÿŽ@Ó!Ñ–~','Ï¢L¥–EM«*gõ‹XþÃ¸ýdÇ\nÁ‘@Evâ˜³','',0,'?'),('Û¾ÏÆÄ·:¥„…ú`íÅ}\'','wp-content/plugins/wp-mail-smtp/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5á,}vÄ¨3¼õGÀâ)©','E½r4@\0¸Ô¡$¦âzæú3ð¸$l²ê\ZÐ`iäexÃlÊ','',0,'?'),('ÛÈrš¼ÁµØ=ÔÔ’é','wp-includes/images/rss.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥°[¿(ò”°.ý”*NZ¸','jþ(-9¿§_ÇïE-#êweÆ$Ø]oÿ01©Ïu','',0,'?'),('ÛÒLY5·Ù^ïÁ`\'+','wp-content/plugins/worker/src/MWP/Stream/Interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.ÑŠ2kf·TîQYã½HÌ','\0ÜµÀ*]ïÆc,Ó‡ÀÒŸ²¥QÿÄçŽ¼Såo±','',0,'?'),('Ûß\np¡ñÓGnu:¢¸Ó','wp-includes/js/colorpicker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðÊV gô„²¶ùŸ-¯','…V‘wäç%©%È: 3CQ#+gÖô›	•–e¹}×','',0,'?'),('ÛàQòYý\n!ÎíÀO&µ','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hi.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oiÝò+6Ë<|Ô*™Ì','KŽ‰ê\\2½ài7Qës¾9ÓvÔpÁ©Ñ‹~sÖ¡','',0,'?'),('Ûñ²ž¹Ò®«Ûñ\nny','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/MemoizingInflector.php',0,'™å¾	z).ØN<åQWTì','™å¾	z).ØN<åQWTì','\\_ Õ¹bwÿ#|.#òäEêÁÅÜ³³¿¯,;7Y','',0,'?'),('ÛñmtLN<¿q9Yšôjå','wp-content/themes/Divi/core/components/api/email/Fields.php',0,'ü`38IÇYÈfæ?ébö','ü`38IÇYÈfæ?ébö','óþiQÐUˆvPF=¤¢ >JOóÑˆ\"ÿ¡¼ifh','',0,'?'),('ÜþçÍËZÄÇ{’rZ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Permission.php',0,'Ù ¯k,Ü\"’9°Gò=ƒŒÿ','Ù ¯k,Ü\"’9°Gò=ƒŒÿ','‹º],EÒ4\Z—éóDl€j\'rÉ\nCB#‘Ý¿çÛ','',0,'?'),('ÜFèª†\ruŽD¼b7','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-segmented.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ËÜm—E»†î}8×Ÿb×,','dhî÷ínCøææ[º$êÉôP7xH\"8úi\Z*ã‚','',0,'?'),('ÜÈ¼‘ØŸÜ\'\r`ùôÊÎ','wp-includes/feed-rdf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xG³7ë%”ž \0bÐøìþÉ','p=m=GÜlò”h‚nhÒÁ¸VÓå]Ó-Óû+1Êa','',0,'?'),('Ü¾°=5ø¡‘Q„ïªì','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.fade.js',0,'ÊÚÉÄÚfºÜ­é¿,','ÊÚÉÄÚfºÜ­é¿,','ý?Ëø‹9ÕšÝH=ï÷œ#Q¹“–™g¶<•96>@ûU','',0,'?'),('Ü&oar.âws ÑKÑ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequest.php',0,'[êHØÞ¥Øä0ÚŒiËÓ5','[êHØÞ¥Øä0ÚŒiËÓ5','‚!WÒª”«N\0Ö«(Æãrêãì88A3F4˜èÁ•Î','',0,'?'),('Ü)#ƒæç«v×Mf xR\Z!','wp-content/plugins/worker/src/PHPSecLib/System/SSH/Agent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sÐü„ùKd¬*¼þd(','CôÞ£†xŠ;,©wzN²oá³)Þ|Õõö4›[@','',0,'?'),('Ü2Gý?¦_æü\\èÆú-B','wp-includes/canonical.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àÌGœŠo<´á—µÝý','€ž¸¯1\ríeÉ“†¯…»è·ËßYå®’^zÕ’=³FØ1','',0,'?'),('Ü4ÓpÄ\r]Ç`Nïð\"^','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/FilesystemUtils.php',0,'§Ö–E1˜5¯zHŠKKmgY','§Ö–E1˜5¯zHŠKKmgY','Ž¨g—@Š¸§•³n¼í‚\"ðº‘é[E½:Ç7nÞ','',0,'?'),('ÜW\'#£A[7äýð<9“','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Iterator/AwsResourceIteratorFactory.php',0,'CMU;”¨dò«³…†·1œ','CMU;”¨dò«³…†·1œ','*}¼¥Yá(ið¼	¦Ï~Tãæ	›b¢ŒžNOÓN»è','',0,'?'),('Üi{w^¬ÃGïÖŸ²H','wp-content/updraft/plugins-old/updraftplus/includes/class-remote-send.php',0,'FM¥eÙ;¼—í<ð#år$','FM¥eÙ;¼—í<ð#år$','Nbf±Œ|Õñ›åÕ&P»1Èµ,¾É\Z\"£w=¦õ','',0,'?'),('Üt¨éÍb¥‘ÄéÂy','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-revolution-slider-preview.php',0,'ÀÓ\'ÇcŒW‹ËÑ$nÝYí','ÀÓ\'ÇcŒW‹ËÑ$nÝYí','ÕCæMœÜêŒÉÄÃ*2ä­g3\n1?¼YÛF4·','',0,'?'),('ÜxÉçuXÁ˜L|¤\"','wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/inverted-chevrons.php',0,'·Y¯¶¾Þ‚¹­àè—ß','·Y¯¶¾Þ‚¹­àè—ß','Nßû®þ1Ðç†$‚ˆ¼´˜À^« ]Î& !é^J#','',0,'?'),('Ü{k)ehK\r\"Ó(OÛI;Ù','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/GitHubApi.php',0,'êˆÞï–«Åª)ó¬Qï§v','êˆÞï–«Åª)ó¬Qï§v','Ù4×®A¸-­‹\0šÖ‰§€X‰[¢¾_pÍ;øÑ','',0,'?'),('Ü‚&:²¡/\0\"_HF¼_','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/ArrayAccess.php',0,'³w|Z—…ÎT•s>YÕ è','³w|Z—…ÎT•s>YÕ è','´8¶à×¾9øÑÀÊMàj¨èq÷àjzZ)ÀyèH','',0,'?'),('ÜŠ‡fuù¢Oaÿºiñ&L–','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-product-registration.php',0,'!d#¹~UÐ¤’x·\rzµw','!d#¹~UÐ¤’x·\rzµw','\rtn2¨mo{õ“ é¢yá«ÒáVÍÛLT>ô','',0,'?'),('Üâ,*íž“™‘ÜJý9}','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/bootstrap.transition.js',0,'¼ÝÝõ²…o!mÄLp•£','¼ÝÝõ²…o!mÄLp•£','Ã7ÞàÏ	ù§Ï«–Ýc\r3íµŠš›EÂxÉR;|eQ','',0,'?'),('Ü‘KâÝ“à¥ÉÐ%eP¾^U','wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g³}Ùhšk9ñyb©(W','¥úÙ\ZD“üQà^‹ý\\¡–£ì9›£;Û7v¢çFË','',0,'?'),('ÜŸKâü»Ñ\"EŸ?p2','wp-content/themes/Divi/includes/builder/api/DiviExtensions.php',0,'\\hÑÎ®&DUPxb+•HI','\\hÑÎ®&DUPxb+•HI','èB±XÁð‚°ô£î«EÝ£”áW¢åy*{ð3.<','',0,'?'),('Ü§-ý†¢„ãŒK¦q','wp-content/themes/Divi/includes/builder/module/field/template/Tabbed.php',0,'A3e®bÊÜü{”`(7ªm','A3e®bÊÜü{”`(7ªm','É;ÁÚrE)ÑÎý~uCjƒ„ãq+è£ \nâÖ','',0,'?'),('Ü½Z¬îÿçâžÜø‚9','wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/Adapter.php',0,'›5Èâ6òpÎ¹¦28','›5Èâ6òpÎ¹¦28','è\'\\zç–f!HÕÆ«$4{š7¸Ç‰qf±¾·—û','',0,'?'),('ÜÌä.ÜUÛ	ý¯Yää=','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/byte_safe_strings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾h„Á³`‰·ÁœV“Af','<‰\\žGòÌ;1#½Àk©L´—Ã Ãƒ(Öƒ','',0,'?'),('ÜÎTÐ¾ÀR§Ÿ²\'ï´{','wp-content/plugins/wordfence/lib/wfPersistenceController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø%ëâkyŠžiÕMO*','ò¢ïÿ«ìÏX(¾30\r\nåï\nPEžÌ „› Ž9àöªÈ','',0,'?'),('ÜÐ…Ü8çÏøà:±\0Ì99','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Autoscaler.php',0,'UÓo¤;cUVõÊˆhï·*','UÓo¤;cUVõÊˆhï·*','ÊéQ”RÕnçtíð\rÌ`a\nHð®þy>5Âw_ Ï','',0,'?'),('ÜÓ9ÌÈ§7$¿±„','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/field_ace_editor.min.js',0,'cì»þÈÉÔ¹Ü8ØI}Hb','cì»þÈÉÔ¹Ü8ØI}Hb','Ç{Üqøª\'æaõ‰ÿv/ŸVß°£ÙSááG«„7ú','',0,'?'),('ÜÓ‚öYýÖ%KBÊF','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/tk.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XVù)§”f™·Óð¿','[ö—m}¼—F¯`ßø;Å>Vé`Þ$ºˆÎžî®pk','',0,'?'),('ÜÔDéäõl)ïûþ4-0†','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilder.php',0,'ò\'œ\\/º¼	vîô½','ò\'œ\\/º¼	vîô½','¶5>@þ)nÁ*È]u¼ˆ–Ùµ£ˆbÌ©9v/™','',0,'?'),('ÜÝ§scýgø’HygôÔ2','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/dimensions/field_dimensions.js',0,'îÅìo%¦b(¯Á(¿°\rñ','îÅìo%¦b(¯Á(¿°\rñ','\0¢À³Ô÷¸	¡ˆÏÎ,I+X\\\\Ú‰ t 8Š®:˜X','',0,'?'),('ÜéÕ»Zml•î4ôË®U','wp-includes/images/smilies/simple-smile.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éK²Ï{Â…Ž±f²w—h','ô´?Y©ag\\<yƒÃÁ³€0\01äƒÂ8½3‡¾H¤g','',0,'?'),('Üõd4ù^Ð­ôëË§½‡Åw','wp-content/themes/Divi/common/scripts/react-dom.production.min.js',0,'Å«ÈuAþk°ô?\"¯GZ‹ ','Å«ÈuAþk°ô?\"¯GZ‹ ','Ïÿwmë)Úén?Tz˜29®Âj:eçœ¹ŠeU¦é','',0,'?'),('ÜøbSw…‰Ì¥~´ûÌE \"','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-person-preview.php',0,'§Jˆç0ï}tÐóÿ\ZwÃ','§Jˆç0ï}tÐóÿ\ZwÃ','B‘º8;q§Á/PÅºÝÖ?tÂFHÔ‘eãwÐqg¯^>XÛ','',0,'?'),('ÜùÍP!.ìX»b%‰:PJ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/DownloadSync.php',0,'Åõ+>ú«®ÜßZ‹Q®','Åõ+>ú«®ÜßZ‹Q®','rcýü(,W@PyZÌg;tàâs˜)ËÅñY¦XØ ','',0,'?'),('ÝÛ0ƒàªï±\Z/1¢Ò~','wp-includes/blocks/query-pagination/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+¬‘‰N(êeIÝlw¾ð','s8Zf˜áVÔœ&dcâÙ½a)ÙÌlŸrÍß','',0,'?'),('Ýº\r\0FJÈä–BáÞeç','wp-login.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”×:¡pƒ¤Ä™o#ÍÈ',',ŒAÚmÍC[.MdD\r+ò£„ö»eJëkÄë','',0,'?'),('Ý×µ(õéœ‚KÛBíØ','wp-includes/js/codemirror/fakejshint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5Èv÷,ROlx]J\')K','Íí‘-6ó$$¨;²™Ž}ptO§4]2¶€Ð¢Rã5Ö¡','',0,'?'),('ÝoËŽ\rÌlÙ°¬dçn','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetStatsByBrowser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/[œ­i8\0óŸ©“N‰:','ÚðÍ8P>«!3„¥ÁëÀ‡Æö¤4È[a`•vL','',0,'?'),('Ý*m·ˆGö•¸ï¡‹‰Ô','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/HttpAsset.php',0,'[G?Ýhmð0Žb_™ñù','[G?Ýhmð0Žb_™ñù','\rÙÊè]ZêhœQè6ø!Ä\'~.b­ê‚¨‰ÉÒd8I','',0,'?'),('Ý;í^Ø¡1ž<²ýZ^Ö','wp-content/themes/Divi/includes/builder/plugin-compat/mappress-google-maps-for-wordpress.php',0,'l5å’òÃÓ%}u¸64¼','l5å’òÃÓ%}u¸64¼','\ZlfFÝõdAò@‘Ü8R·%âdvÎ¿ÕzÍ—žŽqr','',0,'?'),('ÝJ2½°äñ¹<\\ø8Z¾%','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerImageScheduleError.php',0,'c“G–<Óˆ¹Þ¼Ì/Ö','c“G–<Óˆ¹Þ¼Ì/Ö','É¼}æ6Ny­(ÏG”÷+ún\"û¾+á8Pç','',0,'?'),('ÝJ0Ïõ§Éj YgÚh£','wp-includes/js/tinymce/plugins/lists/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2´8¾·:s–¥w¼9çJ£',')bò#4æ”e¬¾*Ø9(™°=ôQE£e0|1û¦à\ný','',0,'?'),('Ý[6»5€„+È	án9ä','wp-admin/images/sort.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','û ²¬ í½*¢ ª’ÚÏ3','vP„„-~«x’µO\"	’ÇÐÙáþ;€é','',0,'?'),('Ý_JfE1D\n\ZT×t”','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/KeyConverter.php',0,'‚¬Ë¨\\.¶ÿZd	HÅ¡','‚¬Ë¨\\.¶ÿZd	HÅ¡','¹=p¸<JñFN„½Ëž¥€AníD¹-Pçð','',0,'?'),('Ý`ŒãL\\3-iš_3³S\r­','wp-includes/blocks/code/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Íéû”¢¯Ö(†ê¶²zhÉ¶',' ¬©Å6¸r3–ˆèô§C9aáÙ’Ð~È¾«:¯','',0,'?'),('Ýf…ãyŽü¬Ä§—*!','wp-admin/js/nav-menu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3_[˜Ð2W¨Þ²/4R¯²\Z','WUÀ!)=ËEÎ¿5å¬íõ•bndø}l,¼Ñ¥Æ','',0,'?'),('Ýj‡\nÅ»Q‘ôÎžÄQ¯Ù','wp-content/themes/Divi/core/components/api/email/FluentCRM.php',0,'X¤¡zÂ©«M\Zœ5ÏM','X¤¡zÂ©«M\Zœ5ÏM','÷y5Sè=ôù‘ºõ@f•à¯ê°oÐgI&€ÓgáÇ','',0,'?'),('Ýw´sûÁìºY¯e×s{©','wp-content/plugins/contact-form-7/admin/includes/help-tabs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','î¼Ãîò®N\0VÃ×	','fl3™XŸ)a*ÿ[g0‹º\ZÝ)àWölò$','',0,'?'),('Ý~4­MÔÃ´\r)÷O','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/pt-BR.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uºb¨X›10ÅûîR$Ú*','H&ªÒG¥û¬VÉ]ãÞów‘……+pŸQ×¤\\Éxßáí','',0,'?'),('Ý„y][º·ûó\'Ò±•Nj','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/Archive/Tar.php',0,'.ðKW–‡Êr¯CÁ@›Bž','.ðKW–‡Êr¯CÁ@›Bž','ðÁ&ÌI:*ô]ªz^vIð;`óòÿN);­–€“e','',0,'?'),('Ý‰Ùwyk’øò©E8ÊIµà','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/RuntimeException.php',0,'iB»§Ê·Aë.\\äÓ–¨ •','iB»§Ê·Aë.\\äÓ–¨ •','z–Ïƒ!ËL,ßN]vàYòàÂ…­ª=KoN—ÿËÉ','',0,'?'),('Ý‹¼rn}§z¹äw\'é','wp-content/plugins/contact-form-7/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>,àºM;gï@¡Ÿ','`ï\Zß)ød|ÝLJa§Xé>¢P¾Ÿ6ôdPÔZ\ruÇ','',0,'?'),('Ý”WhúÅilµ¹¿®ü’','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/log/Psr/Log/NullLogger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t+ÊñÎr‚v‡Üˆ¦š','eOŠZêæ¶3Tæ±ßîºaÓOÞ‰7F¾m•\"ô˜Kð©Ò','',0,'?'),('Ý–¼\'Ö\"|3â_™t|©ö','wp-includes/class-wp-term.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðùèQ5àæ¡×„XZÙÄ','»}Gj)p™ÃÚáïOÝ7±Ù fÝ’À¾ýáŽÄY¼p','',0,'?'),('Ý¨ìNVÐˆ†·´9tfLèl','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum.php',0,'`qšÂîÏµ=wf4ò²¥','`qšÂîÏµ=wf4ò²¥','ˆÖ>ŸEýÉ¤Où\rÝãÔðçÒô;ê«¶ô7Â0W@=\0','',0,'?'),('Ýº$;kÙÂJ•	a€l1£','wp-content/plugins/contact-form-7/modules/select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÝZQÆqïDçÊ3ÜÈ','ž”_omªÖ²{1Ø¹Um’[j,*Ã¤	1öïb_','',0,'?'),('ÝÅÔØ›]ã\rY#uÁã','wp-content/themes/Divi/includes/builder/module/Blurb.php',0,'Éæ8ŽÆFs{ÃlRx­L','Éæ8ŽÆFs{ÃlRx­L','&¡7Ü¡˜¤ðéV8Ì.Ô¾²(pÓi‹ú!#Ã <‚','',0,'?'),('ÝÅÿ«Ì°`©$ÝFcú','wp-content/plugins/wp-mail-smtp/src/Providers/Pepipost/Options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—ÀCt„2iw	r-^â','LäDëp[êºt_s^WÍ9lB…(@Û¨ãÑÍ:','',0,'?'),('ÝÑûÂ4Ò÷´—°òƒ','wp-includes/blocks/media-text/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jÄBÕÑ25U£Ð˜NÃBî','@Š”e!÷“EÏ‘p\ZX¯Û;½îŠ•TSb³ìç›,zò','',0,'?'),('ÝÔ¶F@h±ÕKP‰X7¼³','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Account/Create.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µÖyÔ˜´TbkuÓo','}ç¿‘ÑWÂ×…ž9ð{g²HèånºL{ôË#â','',0,'?'),('ÝÞ“ÑC³Mp6¹“Yz”º','wp-content/plugins/updraftplus/includes/handlebars/handlebars.runtime.js',0,'ÈöÄüD®bOñUìÈ\"µi','ÈöÄüD®bOñUìÈ\"µi','L‚\"kÉ=\\:­~°Ù\Z\\qHž•9h/}Zä–\\$¶','',0,'?'),('Ýæˆ\'˜Ä|?˜Â>ûí£','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒ¦÷LÕòaDJ„?ûƒZÿ”','ˆ»‹…=F=„=…<øø_%ˆ=§ÙM?áªÝÜÞçu/','',0,'?'),('Ýég2ûš‚4È','wp-content/plugins/fusion-builder/shortcodes/fusion-revolution-slider.php',0,'Ñ^]N´ª-éè>ÄõY\"','Ñ^]N´ª-éè>ÄõY\"','Â”rûïýÂ0$ga_1$wÁŸ®?>(Ö_Í+/ ','',0,'?'),('Ý÷Æ	›¹ikZ0‹„Lw–','wp-content/plugins/fusion-builder/js/fusion-history.js',0,'Äk¢mTòÑ,0ÙT¸','Äk¢mTòÑ,0ÙT¸','¦ïR<£ÆŒWu9•rs3¸–qÌ]ç‹êí•QBP?U','',0,'?'),('Ýù¹”ëK\Z_£öÏ\Z','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú¸búò¯9ô°‡±M','éF©/\'¡€M%”9ô }@¬ÎfW£>Œ–S*­m','',0,'?'),('Ýý6]Lª™7æde','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Authorization/AbstractAuthorization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dÍŸÏ\"¤ÞŽX§Ô]ÆT','Ù¨í(gûâqu8Ý=äÒsEž”tÞóñhÔ[Ë¬¶\'>','',0,'?'),('ÞQº.ØOb–šZÆ °¸º','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Struct/ChallengeAuthorizationKey.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤˜,GËm}¯Q\nw÷ÇFã','o`ÇCRðø#NƒÃÕ–ÈlZ:\'•|Ðž;xÀ¦é†¶y÷','',0,'?'),('ÞRƒï¯KtñjP¢ñ','wp-content/plugins/worker/src/MWP/Crypter/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('Þ\nÎ1pª?YG™á“N','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/MimeType.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´SsÜóÂ]×Ï‘«1yTV0','ö/8áBGFª½€ÍjÙ¤aÙ;/ö%e=ƒL','',0,'?'),('ÞHCý™¶âôÐ)ªCÍ','wp-content/plugins/wordfence/lib/rest-api/wfRESTBaseController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üêyëÚKÁæ\nÈuˆ@Ðx','AÝ¶ºÝ;_|sÏÈ¤4ÍÔ_×)zµaKÇQ¾Ee!©º','',0,'?'),('Þe:\"$ßý„7e=>kÌ','wp-content/updraft/themes-old/twentynineteen/template-parts/header/entry-header.php',0,'*í^ätß\Zp\Z-†A','*í^ätß\Zp\Z-†A','L†Þá<~µ[²]Ä¶“J¡\rlêâ×n¬[!ŽÍ¤','',0,'?'),('Þp«Õ­^ß@#àÔ’','wp-content/plugins/wordfence/views/scanner/scan-progress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b·1{ê	@õmŸ90','ïKªÊM$®ã)+SCQF 1qZéTv`í»r','',0,'?'),('ÞÁùº!p\"?UëÔS›!','wp-content/themes/Divi/includes/builder/plugin-compat/wp-job-manager.php',0,'B¥vß1öà?å-Øy ','B¥vß1öà?å-Øy ','“y©€\"‘°È \' >•u>|,˜,kšd®’YàÂŒC','',0,'?'),('Þ3^ëËPMŸY˜æíHˆDØ','wp-includes/js/tinymce/skins/wordpress/images/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÐÂ¶÷ B©=\rz»ƒ3jÁ','¡ˆÁi‚ÍÄI/=´M¾MXž:MæAÕpvÜ\rÅ','',0,'?'),('Þ5f„´ ¼éoÞ®ç','wp-admin/includes/class-wp-privacy-policy-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñšÃ£äŠä¸6­rRÓ†›¸',':œ·¬ÓÖŽà,J-1¿3¬ÒB\ZU.Ðãg','',0,'?'),('ÞBTõ}7ËñßÚVê¯šÅ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/MultipartStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fÛAµmÝâÂÖZëz','8VAó«š\'té€ÛŽ?xÔŒYä0¯Žk†öIÀ¯ò','',0,'?'),('ÞF|…½Ë.«õ$¢¬#','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/MFADelete.php',0,'!axv^uÉK‹Æø8\nì','!axv^uÉK‹Æø8\nì','Í¦%o–Þ½åàÃ·hö÷~à”V\Z•!¯\"úžWu¿„','',0,'?'),('ÞNÄ\\ü|ó`*·,)@4','wp-includes/images/xit-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œÓÆu:@4\r…âÅz<5È','¨S\rÎ}@½~Q÷:€Scµ±§ê*d+åZÎ_¾{¬R','',0,'?'),('ÞWªS~ƒöðIúJ^wc}','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/HistoryBatch.php',0,'bÊ¼æ:Ìû‹òåQ¶ös','bÊ¼æ:Ìû‹òåQ¶ös','²M#Ö%€–ûyß´º½ÊenY=ÕƒaË×çM','',0,'?'),('ÞZd¥µÄÆŒ’ˆ‘\nå‡','wp-content/plugins/wp-mail-smtp/src/MigrationAbstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äDD>)rv_{ ÿõ$ûÝ','¢;­‹sJåHDýÁ	OÖ©Œƒ9¼‹‰/ZÑ‚1ªÂ','',0,'?'),('Þ]=—\r6‰ýç€5þç','wp-content/plugins/updraftplus/vendor/composer/autoload_real.php',0,'Íã2Ðôß+X~ƒZnÝ}','Íã2Ðôß+X~ƒZnÝ}',' Ø\ZlªÙ$ÒYùê<ÇmMæKÈ¸:Æƒ@¸É1öI¼','',0,'?'),('ÞmÊsM´ðÉ{\\$(ë','wp-content/updraft/themes-old/twentynineteen/template-parts/content/content-excerpt.php',0,'ÒÂX<ñâ*èUm§4Fé','ÒÂX<ñâ*èUm§4Fé','`>KË˜ÊêêJßN\r@¯óÂ¥˜–ïY09êCÀ','',0,'?'),('Þw°©ëö¥Î¹”2´Õ','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ConfigCache.php',0,'Áh-µ×ÃSaÙ¬î¶è','Áh-µ×ÃSaÙ¬î¶è','¼Ú¤‹rpŽu0å“—Î§*/ð”éIÍ\nŽU¾Š(','',0,'?'),('Þ€[11ŽbBƒcÞ!–£è','wp-content/plugins/contact-form-7/modules/stripe/api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™Dàt­½1’·)F@','7tn3Rý©í\'Â|ñÇƒ\'ÀFjo¥ó{¶ü+©ì','',0,'?'),('Þ‚R‹ŒO‰^ÎD¨Ä8?q','wp-content/updraft/themes-old/twentysixteen/template-parts/content.php',0,'µW*jÚ	~Ïåów£T','µW*jÚ	~Ïåów£T','-ÅÅðÅáõiçE¢á‹@þë†•ç½·õ0\0\'\'w','',0,'?'),('Þ¬¥Ö\\HÛ7Ò¥Œ…w}','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/slides/field_slides.js',0,'U\'ý,H6²ÿL!’ó½Ù','U\'ý,H6²ÿL!’ó½Ù','Ôñ‘ãŒË\n¥Å\nG2†J8þH¯·¾ÉAÀ','',0,'?'),('Þ’¶?IñÎ©i%úýgÆyÁ','wp-content/plugins/wordfence/lib/menu_dashboard_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A§Û~³õÔ”ÍT²·vq','÷9Ûõ×FfWˆrO²;LÀjßeì‹2®ª_â½','',0,'?'),('Þ™Z&ý,šDƒ¦›\r2`‹Ö','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Scheduler.php',0,'T§ÂÞLFç\ZÕ·^ÜÝÚ½','T§ÂÞLFç\ZÕ·^ÜÝÚ½','—òP‚¬\0‘•áwkÔRtÌ›o(-ß¹‘Y¶	*ž˜íŸ','',0,'?'),('Þš4;<Æ3þgqÅ','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/ValueContainer.php',0,'Gî4Y@ïZm/ÜŒ–vÚ%','Gî4Y@ïZm/ÜŒ–vÚ%','Ó¼B²ßß¤Š«-kM˜dH¢þð0¹,$?¤,fM‹Ù<','',0,'?'),('Þšíê§­Þß…\"gÑ<Nr','wp-includes/blocks/text-columns/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñëïwòå`}ÞNû\nºþX','¬t!ïãþlŽ`¯|*µ^…«Ù0»	Ýl$C§»ò;‡í','',0,'?'),('Þ Æq«Ç¡ÈDÄ„äb,','wp-includes/blocks/paragraph/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C¬o5Ð@–Û|ppŽ³Ñ','$…Oì6¡Ópîç°™g<EBJ¬TÕ½~i,©žžž','',0,'?'),('Þ¤Iå\ZÀ(‡š‡ñ¹®Ö´','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/NoSuchEntityException.php',0,'G€bé–MÛªÛ8n¾B46','G€bé–MÛªÛ8n¾B46','íjPˆ|HûD=OÊºQšÛñ†G^¨ÌÆ“sXÅ$¬9*œ','',0,'?'),('Þ§Ua¢€óÙ¢rïæS}','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserListError.php',0,'Å%»ÑñuHIµ‚”','Å%»ÑñuHIµ‚”','Nôp>ØÑç‘u”úÌÐjÊÛ‰J•ÐÙ2ªE‘	Å7','',0,'?'),('ÞÉ˜eõ€.FhC¶‹','wp-content/plugins/worker/src/MWP/Monolog/Processor/ExceptionProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓbËøiMü)Ý–š?‚À—/','ÒI±ngÏƒ¥,˜¹<ƒµ’l QŒµæó3½­r²y‹','',0,'?'),('ÞØúI7ÿxÊi–q»','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/existing-backups-table.php',0,'¦Ÿ–Ætµ,|cdB,R','¦Ÿ–Ætµ,|cdB,R','Ãô·¬È˜(0n›÷DÉòjqßô¼môv‡\"Üº–Ú','',0,'?'),('ÞÞ‹³­”1FóøëÛa“','wp-content/plugins/wordfence/lib/wfArray.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ò\'FbaÛ†Äâ‚‘Á1Ê¤/','›œn2qµ«8D‡Ý-ƒARÙ>ºxqYq˜»¬$Á Ñˆ','',0,'?'),('Þé\'g!Ž:–H™î),¾','wp-includes/SimplePie/XML/Declaration/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùO,@ÜÀÛº¦aõ	Î”Ë','¾ëimÍQöq+’¿\r¨£:§Po§«üÐ\Z*þ®†Œå','',0,'?'),('Þô¦ZƒV·1õgšÉ{®Ÿ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendReport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ4•r¥u|`¬Àz]ðë7','ø½dËÂX\"í¯ð€fEÒìôÍtŽÅàªÙ”—uÉ|ß','',0,'?'),('ßCZ[}Ë\"\ríjú4Ô','wp-includes/js/dist/vendor/regenerator-runtime.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â€:ÉúwË\Z&ÃU-Î','¡Â½6bŒ¦^ë\0‚œø‘öfŽóÛ’\n?hì','',0,'?'),('ßàÒÁ\"‰»–¾Íc)jÛ\"','wp-includes/js/wplink.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŒÆ\rž¶X‰×ü|\0LF‹²','‘ñƒK½f ½\Z¦²ûAU‰i‘/½µ\n$ìH5*Ýíš','',0,'?'),('ß‡G³Sº¾ËõÈ\n†xK','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/StreamException.php',0,'Û‚th¦0H«äÌt{','Û‚th¦0H«äÌt{','¦ƒî/sGx8\'¾ªŽ1ŸŠ*XŠéÄƒá:\\gÓa','',0,'?'),('ßjýqXW¿:¿õXê','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Http/BatchResponse.php',0,'6¼–¼”h»;elùôc&','6¼–¼”h»;elùôc&','©…w7l‚w–Þ6Ä,{O&Ó5{¢%é\nÔ^)º','',0,'?'),('ßž\'ïç·*¨§yG;:','wp-content/themes/Divi/includes/builder/module/settings/migration/FullwidthHeader2.php',0,'9µM%ñÿŽô3 Ä+u¯','9µM%ñÿŽô3 Ä+u¯','rp%¿—”~ÿpUí´)÷qã×†Òórs®òû_+…','',0,'?'),('ß\"ûg‡>K\'Ø‡ºÍzr','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp256k1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹þ$¦ªj\n˜&Q@','9O=Y>Š6Îæ¿ñMÉ^ÐÊN§4Üö/ú¦]èAgËžñ','',0,'?'),('ß% kpM¬t@/ÊÔÁ_–','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/post/query/TBItems.php',0,'åŒ¨Y+fî/‘uÍ4','åŒ¨Y+fî/‘uÍ4','’eïU‘±÷7ŒÜ—‡/Éoo|1.åØHt7zY…\n','',0,'?'),('ß)I¥=Ã?B-R!²·—','wp-content/plugins/worker/src/MWP/IncrementalBackup/Model/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('ß2˜¿_µ°j\'ŽÅh«I','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Genomics.php',0,'ìèÌU®»Œ`Ô¡t¥ç9','ìèÌU®»Œ`Ô¡t¥ç9','¤˜õ\'*!²eå©fXFo*{Ðjèf¥¥»=M&','',0,'?'),('ß5ï\nBOÐL\nO5ÐI','wp-content/plugins/instagram-feed/inc/class-sb-instagram-api-connect.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸˜ö´ð\r¥€)ÝÃhØhp','Þrµ	ø&-‹Ú„Õ0A\n®\"ß‡µÄC)Ÿ5ÌFž','',0,'?'),('ß=@\\ðJpQóm\\†À6','wp-admin/includes/class-wp-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M$=¬8š:”úæâAzÈn','%L¤ˆüÃ°þ@CUb˜ãt¦Ž©¥ÆnŸˆc\ZŸd','',0,'?'),('ß=ÚÎð ›ì>\0šU<únÌ','wp-admin/images/about-header-freedoms.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÄÂtM9~Ÿß²f„™Í+','šöaù‚E«Vb¾ÈþUgó£Évò<ÂRvô,vwM–àÏ','',0,'?'),('ßC6åÃ÷º‚È«< º²^®','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateAttributeEnumeration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L´»Ûá}¼Ð9üˆ^/‡Sÿ','¸°éË¦Þ70xÍïT$Í¿íXžºK5?Î³e6dŽm','',0,'?'),('ßEô¤QvaÀú‰!Ñð=M','wp-content/plugins/fusion-builder/js/views/view-context-menu.js',0,'ûiÚûí{äPw)›r±','ûiÚûí{äPw)›r±','à¼ãp¤üÿé;&H[7®¢ã×“zÍcºŒ	\0–¾,','',0,'?'),('ßL#¦¹àâa³‰W ñ','wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”Íh8õ½\nŠ®e','X¤y(:Õ‰Ö¨Ó˜—§ö÷o±Zty¶Æœ¯_­¤\'','',0,'?'),('ßLÖ˜_S„Gt·Ëq{:','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Atom/AtomBase.php',0,']gŽnŸ¥Ûj…’Wð7ýUÂ',']gŽnŸ¥Ûj…’Wð7ýUÂ','_c3%{ŸŒ¶ËÏnïÛÁ¹êSsMo…œ^ØÊ}Zó%/','',0,'?'),('ßT@Å%phî¦÷Cr¼\'','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Exception/StatusInvalid.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ï–¸a<ã7j¾-IàLF','Øb\\ë ”7Ž¾<^\'³™ÈŒo\r×Ón-B0c‘»j','',0,'?'),('ß]ýF5š(ÛË“ÄÒ.;l','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_gl.js',0,'É´(CÆAdÛ[½]Ä+l','É´(CÆAdÛ[½]Ä+l','¶°’´NJDKŒïûü‚\\1½îP²ÏÕàmÿ\0]j ','',0,'?'),('ßbz“/›ƒTº7aHy','wp-includes/js/mediaelement/mejs-controls.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ð„š^yq+áS%ãí¸y','‹½®ÒÓÏhó…©¯A3Lš:¾î\'1÷ê Â\\è','',0,'?'),('ßc®Ç\ZÛqiS`<Î˜','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/PKCS1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bãª°pº#{?n—üs÷Ã','¿/è˜QÀøÑ*AóÖÖ¦ ©ÅÃ†Ð4¼¯&Õ¥','',0,'?'),('ßi ¼ˆÚ[4óÄãø>Ç','wp-content/themes/Divi/includes/builder/feature/icon-manager/ExtendedFontIcons.php',0,'B¼­ìmÊò$¦Â€”.8á','B¼­ìmÊò$¦Â€”.8á','F˜;Nþ	mîœÄ5E]P›ÏåñÄéõ¿þÑ¶ád','',0,'?'),('ßq‚ùœŠ%Å±“ m+','wp-admin/css/colors/light/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú²7Žê–3ãÌ-SÎ','9ˆZñ(¹\"†Na\'’SÌf{uKÔ#Wƒ¹¹ã','',0,'?'),('ßs)žO$Ùs%Ç<äÇŠ','wp-content/updraft/plugins-old/updraftplus/includes/handlebars/handlebars.runtime.js',0,'ÈöÄüD®bOñUìÈ\"µi','ÈöÄüD®bOñUìÈ\"µi','L‚\"kÉ=\\:­~°Ù\Z\\qHž•9h/}Zä–\\$¶','',0,'?'),('ß|ÔòÑ-IüÑí¡Ÿ¼«5','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticFilterNode.php',0,'=WÒ)}n+SÒ–s','=WÒ)}n+SÒ–s','.J3\0}Ç\"v\\:íîŠŠÞ­×§˜&Çš#?Ûi;','',0,'?'),('ßƒÁV3„Õ\'ùUr”','wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­êÌç[àÇ	èŠ°éŽWÀ','Bòê~heÄlÉk¨Í¸<r…d!Äj\"—Ãi:‚Ú','',0,'?'),('ßŒò‘(ƒ©©‰ÕÛ2áè','wp-includes/js/quicktags.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦éÉÁO»@{¤‰Î (Øn','À»&Kˆ ;ç¥hæR×Ç‰Á&Ê±8ov>X£','',0,'?'),('ß’f­ßOÂri}q7','wp-content/plugins/really-simple-ssl/grid/templates/support-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R¼¤	/#EÁÉO†¥ÑA','ÀQŽ/ÎrV5Â3HË§Ìçº}c´bCgžIMå','',0,'?'),('ß”¿ÏËŠ‹œH‰uÔ&á','wp-includes/js/plupload/plupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ý ª$pZRÑ>\'Œ|÷','à\"³Íº–8[J%ª.ºËš¤c¯V\r\rE½¾)\'','',0,'?'),('ß•Q½[¿ÿYåg7.Îæ.œ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/worker-css.js',0,'Ÿÿ]qÑ­›ÙqèªASzßœ','Ÿÿ]qÑ­›ÙqèªASzßœ','ï‚Šé¥D^˜psžŽ•\Z7cªË”¥’EºcP‹`Ó','',0,'?'),('ß—ÏQµ¦uâ!Ù¶x•[','wp-includes/js/wpdialog.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=nRó-âïKPãÍ=Œµ<','w§øÜÚ‡EÃž‰ª´ñ\0´vºÓ­¶æk^–M¹n','',0,'?'),('ß›Î±¢OËÇbYÎ=L','wp-content/themes/Divi/common/scripts/react.production.min.js',0,'u·†3Üšt3jS\Z&','u·†3Üšt3jS\Z&','^Ú¶‹”\ró§ãíé¡Úž¨ò§%ª_&µ¿åæ)*ÉäX','',0,'?'),('ß¥Ë]ò\\;Lc’9íR\Z','wp-content/plugins/updraftplus/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-submit.php',0,'Ê\Z²óÞ+|úxŸúÿñ','Ê\Z²óÞ+|úxŸúÿñ','ºŒuý/DLŽ´…:ËE€\0¬~ïæÿeádöxüfQ‹','',0,'?'),('ß¦aúf¦u3Psœe Ñq','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/BlobPrefix.php',0,'äŽ»`ql\ruDó‰!j','äŽ»`ql\ruDó‰!j','r÷Æ‹’‘^\0EU½s w“`b&´ØY¹®oQ -','',0,'?'),('ß°S‚³ˆ±h[üÛ³Ì','wp-includes/class-wp-http-streams.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oo—Öª$N„~€F0¬Û‚','”¿d§	*È©ÂX÷›–JÖz9<Œ±)ë>¿Ôƒtj','',0,'?'),('ß´âùS8ÖÑAÐ¢','wp-includes/js/jquery/ui/autocomplete.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':dLþ*ïÁE½&*!','¨¾`ï¤÷àOr\rÇ8;P[Qâ=ãƒ;ŸáÙÆÜ£j','',0,'?'),('ß´CÐÎ²ÅÔm0\"•','wp-content/plugins/instagram-feed/README.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ØC‰@(·Ngåìd†ÀÖk¾','³X~ü[Íþž„}-\'¿+	¸Û‹ræEÉ½ržÂ6DÑ€-','',0,'?'),('ß¹VÌ=¿£»\"à#n§	¹','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_à-…T³\0Ê2²L-Õ','¢È´¾÷£àg’Aã]Óz-Û£²ð¢ûüá·¸[Ï','',0,'?'),('ß½n6Æ§‹‰ðñw¢4*.;','wp-content/themes/Divi/includes/builder/feature/search-posts.php',0,'çþLB·yoMÛËñ¼@)Ø','çþLB·yoMÛËñ¼@)Ø','--ºk(iM{³ô?Œþ®* hk5	Uç¨Tò:>‚¤”Z','',0,'?'),('ßÄµ>“„#B§¾bóñÇ','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Û“œÑôGÿc,«™=c^¥','ìÛä‹«Gêc‹Àïèt(5\n,9%Ù÷—£Êå)ïe','',0,'?'),('ßÈ¦0á $¢7O>é¿à','wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æz,x‚^Âs!qÍþ„5‰','rõŽ²¯0‡ÝèuD6oIA¡ójÅ8f¢‘è“ËŸ¯','',0,'?'),('ßÑg¥¡ð›hp°ŸBJi4\n','wp-includes/blocks/heading/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÝÕëçyø¹<ß(ÕEÌ¨','\rU„ÐtJÖ`†g04	n²ÈÕžFíLZ³‘ö','',0,'?'),('ßÔ=ÍŽ?©ßØ)\"oÐ!rŸ','wp-content/plugins/wp-mail-smtp/src/Providers/Pepipost/Mailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì-Çÿæ¿¡¾c‡\\ÙE','>qáÃíØe<ª¤zÃ9à=îr§èŒ·ç‹¤Ã96˜þ','',0,'?'),('ßÔYv”zÏÖ—*–9ãïa','wp-includes/js/jquery/ui/tooltip.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì&Â<Qõ1}€œæ™ ž–','ÌM@±jM×mìî›\\µÀöì“`T@€.©óìRl.´õ','',0,'?'),('ßáäí§bIãÈÄãG9^”\0','wp-content/themes/Divi/includes/builder/module/FullwidthHeader.php',0,'!²•o;½OŸõÖÊ-ül','!²•o;½OŸõÖÊ-ül','Uv!)àgŸtc…Üé†H•‚rQl«ºP®.Å&Ø£','',0,'?'),('ßåL8Ú‰æ(…Öë–ÖÁ','wp-content/themes/Divi/includes/builder/frontend-builder/rtl.php',0,' iÓIw=¼³·n\"	ÎÐi',' iÓIw=¼³·n\"	ÎÐi','¥Ôsè§_?Ç5_üo]„MaR­1r½!±[ò@!ÞÀ','',0,'?'),('ßåÍbt—+ù¨¹Ç‡¬','wp-content/updraft/plugins-old/updraftplus/includes/tether-shepherd/shepherd.js',0,'š€œ\\&T…¾+ÛÿKæ','š€œ\\&T…¾+ÛÿKæ','j¯à\\3ø§Ñ3IUâóÞ¾8øƒeP\nJ-j\']lv','',0,'?'),('ßî-ÓwÁ˜=‹˜äšïS','wp-includes/css/dist/edit-widgets/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\"3B+©|ŒÃ^Ù<¥K','´B®Ç.¶î¢ŠCõÒA£{öµ‰öëC#fÈ-¨à','',0,'?'),('ßñJvOBåé ¬Rîi<Å','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferState.php',0,'%æê>ß—H)R‚M','%æê>ß—H)R‚M','¡Ö\"_ô½N€ù­s«Éf ±N?R•ŠH€nÛØ','',0,'?'),('ßû,m&FOKXtïhv','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidParameterError.php',0,'\Z×aJþ“y¼”øáÿN_…','\Z×aJþ“y¼”øáÿN_…','*ì®º\r<ZÎÅ‚î‰çóBø¹ò£î•ƒ±°w^','',0,'?'),('àP›¢´¸L6|¦S«ô','wp-content/plugins/wp-mail-smtp/src/Admin/Pages/ExportTab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÇèãîOF\rD/tZÅ','˜J÷\Z^;Œž?^$ v\rDÆ³…áU‡×e·šó=','',0,'?'),('à„XÄïØ8¹DèÊ¶','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/GetContainerACLResult.php',0,'_–Ó¬è,n\0•0>ÊñóÖ','_–Ó¬è,n\0•0>ÊñóÖ','q@Q¶ Ã“½+EÝ;gß»—Ã*‡é@—ÎÄß‹','',0,'?'),('à	V¼…q%ž¼ãýšl#³','wp-content/plugins/updraftplus/includes/jstree/jstree.min.js',0,'`è¸$GÉð”}ÎƒLº','`è¸$GÉð”}ÎƒLº','³¿sV™\'\\›	©–œú-ïûQI$ê¿¿\"+¹Îƒ','',0,'?'),('à¼Ä¸r\0;†>è0ÎjÏ}','wp-content/themes/Divi/includes/builder/frontend-builder/assets/css/mediaelement-images/bigplay.svg',0,'tl:÷¡E ’9£n^öþ ','tl:÷¡E ’9£n^öþ ','(•Î˜\\õ‰Þn Ülpu¹ê‘&]š°y˜i›J)','',0,'?'),('à3ñ%\r¼¡bêÀJòbË','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¢‘C›ìDDÈÏ¾ü®ÝGö','Ûc¾tª\0ŽK\n¬Ÿ[Å¹Ú–ƒ0Å˜Á!´šgâ÷Hß ','',0,'?'),('àCJ)l–,1£I\0ùg','wp-content/themes/Divi/includes/builder/module/woocommerce/Breadcrumb.php',0,'ÛAÈ m‰[]ñY“†\\„h','ÛAÈ m‰[]ñY“†\\„h','u®ÙV–É*3zß7q„=nÙ¾æy†LS\r\\úGEIXã','',0,'?'),('à!¶®\0á[§=ô¬‰Ù','wp-content/plugins/wp-mail-smtp/src/Admin/Notifications.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mÉtÀ¬“uÑ5ÎÛ…€¯ö','‰¾•˜Kàv;âðD`ät[«Ð™NŠÔ±K°\n“íh','',0,'?'),('à\"DåH¼\0©šÿåE¤ö','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Task/Retryable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³ED8IŸèxë‚:ÛD!','0êÊ‹EL¤ŒSÄB¢zç>†×W;\nÌ‹ÄÊÄGÃ¹¤','',0,'?'),('à%çf\\+,…æÍ\0\\Y','wp-admin/includes/class-wp-filesystem-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5™«ÓùÔAÆPgò³}H','tÜ™&>ÍŽX“uï…éã¯B­2RIeº@yJQ\Z&','',0,'?'),('à)‹sGSÃmÄ¨gZT\'†','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BinaryField.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü7»ßaAGY÷™û@Þ','bIgÓWt2.Y«I¥&¾Ðü\Z’~jFt¦Ú¥aø','',0,'?'),('à*¢™°¹\'Kj¨›Ì°!c','wp-content/plugins/wordfence/waf/pomo/plural-forms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P!7GñúýŸÇŠúq`.','.’¼\n)[.ßéc¬f£‘\r›\rFºäZkïœ£´','',0,'?'),('à/¨µŸ•Å.òåé‘…8H¢','wp-content/plugins/really-simple-ssl/system-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãÀàÅ¢þ†s…nj]öI','Ä›4ÔÒ¶ÄeÝ’ÔYÕb›^ŒlÝ+U<”øl\"Ð','',0,'?'),('à<ì¨ñºê\\g	¿ŸêF','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Message/Formatter.php',0,'ªœ#,²›ZßE«™ê†','ªœ#,²›ZßE«™ê†','€‰ÇÎü.¿E™˜úÝ}lÃ_ØwT\nÉVŽ¥œ;Š	ÄP;','',0,'?'),('à@/AèÝ+<í~G5É5','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ValidationException.php',0,'èkBíGé®Çbw>!Ä+','èkBíGé®Çbw>!Ä+','z çFß“÷oÕeŠU&ëªuwê3æ\ZøŽ„tâc&','',0,'?'),('àD=xX6½ñØªö‡ûÆ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookiePlugin.php',0,'[t.Þ±›Æ³ëuÚu8º{','[t.Þ±›Æ³ëuÚu8º{','roö_·ÿFwÛÔõ\Z$w ?@q]Qb†ˆØfñ2oÌ','',0,'?'),('àDÁ1R77¹ð0ºQœ','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õxä»6Fƒ\0f‘á ù–','Nƒþ^qóïyqÜ¯\r]¹Süë\\ãð[ÎC{V§šyÐwè','',0,'?'),('àPÇq³ÒãªŸôFþ…F','wp-content/plugins/fusion-builder/inc/options/pagination.php',0,'Úx±—Fñ{[|Î1³‚ää¢','Úx±—Fñ{[|Î1³‚ää¢','±7žq=ã®n4;÷iÿÈ|{­jN$’õÉ½Ä[2Å°','',0,'?'),('àSÅ=I´¤rú¼Ã¯HÉý','wp-content/plugins/worker/src/MWP/Signer/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('àSÙN{S8|HIÂ]GP|','wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/MysqlDumpDumper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','È/c¼§œíí9n;I¦vâ','ý¨	ÔŽi²àO)+´¤³V	Kú8©²hp¢®ŽC9','',0,'?'),('àXLˆt¿ž£ÎCc-¯—','wp-includes/blocks/query/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ =óéá{#ÙÞÌÅû«','?ˆÖ	¡?`0®ÿi1’pL<…hxˆ§®£ö¶—Ñ','',0,'?'),('à\\1Ýƒâ%áVE|<Nµ°','wp-content/plugins/wordfence/modules/login-security/img/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:û„²·õmð™—£P½','j*äeŽó©õdoX¤~§7Âë&€²‚Nü9É|L•Ç','',0,'?'),('àlqfóè\0C<ÕÛ“~\\‹h','wp-content/themes/Divi/includes/builder/module/settings/migration/FullwidthHeader.php',0,'Y£”BŠ~°¡±G²Úâ¡x§','Y£”BŠ~°¡±G²Úâ¡x§','·ö¦Ò$nŒ„_ýKÍ‡\nÏÀî^Ø/@ô˜GÅ‚²','',0,'?'),('àr_´¦ºÅ`¦õ¶(“','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerCreateError.php',0,'èn›Ci¡SÂ<:Ó¸','èn›Ci¡SÂ<:Ó¸','½\rÝ9ƒXç…µþ>‘òÒC!RxˆÌf\\[\'­MÇŒ','',0,'?'),('àukJ]{ÂV‚¬TÔ¥I','wp-content/plugins/updraftplus/methods/cloudfiles.php',0,'/žd²´k?°œ:µ>Xp','/žd²´k?°œ:µ>Xp','„g¯g!MÀqB£•$|Ä-þÍ}¹®W=@Zqƒ”1†','',0,'?'),('à},q}É&ð¢É,}5','wp-content/themes/Divi/includes/builder/feature/I18n.php',0,'kC.vmÙH½W<[™è','kC.vmÙH½W<[™è','h\rXŠV¬åãaÐ}/äT§çsÎ3øá¼ðú;=','',0,'?'),('à„i·÷ò4û»ZláÐƒ @','wp-includes/css/dist/block-editor/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%DÙ­Á€Ž&x‹l3Þ','hâo5ußŸÐ?Zgü˜žÊøæyŒ—*äã*`z','',0,'?'),('à–ÊrªÖMÓÜ´-\nSƒ„','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eRèÛrú#ˆUÿý½çŠ','èÐ”sÈGd‘“lãIB-?`7|rÚRÞÝ3µƒ¬V','',0,'?'),('à¢0\0¾’#ŽÚV¥Wx³´2','wp-content/plugins/wp-mail-smtp/assets/vue/img/info-circle-solid.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù¢MîÓÛM*Ü¯\nÃÙV','ØË›&1/añBWŒõ’Ê¶ø‹.9¬MãÊ\\×&x(','',0,'?'),('à£É|`\n\"v«°½k2±u','wp-content/plugins/wp-mail-smtp/assets/vue/img/thumbs-down-hover.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ô[¬{ž5néñuP¯%','B‘%Xéy¸ƒn§,Ð3a½víðôÉz\n6À˜É»qÃ','',0,'?'),('à¦+H©‹þÃ,Yn*ëÄÐ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateEmailCampaign.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V%pÐÜhè<;Ü”ŒG½…5','Jã.r´¶±ŽS¸R]\Z¿ˆ\\ç¿_ß£¦ðo4x¹Z','',0,'?'),('à«2“U8\Zoaëî\nB˜õó','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/UpdateMetadataInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','![šˆ\Z\\eVÛ\\;¬V','ÉúS\r y¸ní3Çnè=ÉÔ=?ÿâB7=Å6¹Ž','',0,'?'),('à°­à™È)¯@Rp“Ø','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ù%ôX¤ö°•Ð`Ð¹KZ','SµW ð,ªè´f¤Ã×K{®ÿ\\™ÐþÕØàŽò×^Y/¨','',0,'?'),('àµŒéžBRcÚBÄ‚ú¸ø','wp-content/plugins/classic-editor/LICENSE.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_º—oØÖÞØF®¹Ž',')ê¶Š¹añ¡qF’©	`û!zÃ JŠ¶I àw,ÂŠf','',0,'?'),('à¾©¨gðóÝ#TÇý—','wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/StreamTables.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mî…>u‹üÈ| j¤Ã','«¯CiòeÌ*ÓûâËSe3M‘ >kð€&Z FqK','',0,'?'),('àË~Z§ždéS3\rRÙ','wp-content/plugins/updraftplus/central/modules/plugin.php',0,'1 wsËÏyï¥Ì-–çªŠ','1 wsËÏyï¥Ì-–çªŠ','„D4Âõ¨×}¢ÃÍì¸ŠøðöÐÕwØ }îXIþwG','',0,'?'),('àÎN \\±²ºÒº.ÕÔïÃ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/LanguageSettings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_¶\Zºt]ïI1#€sAŽÏ',',¶…†2 WÒˆèò†DeäY]íÉÔ²4¡o;¸u','',0,'?'),('àÕî=Á†AX¬o˜æôÚ','wp-content/plugins/duplicate-post/src/admin/options-inputs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wthQqÚ‹ƒ“Êã÷ïW','ð–5Uc[ø¦ô¶;ªsX\0i\nÃ	‹@œ«A‹?˜ƒ','',0,'?'),('ààe•!ÚT¼2APþS','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Cache/SysVCacheItemPool.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®Ì5ÊÄñ¿¢„¯±=','/tí0ob*Î¥x³o Úz\r@³àW‡2nèg¸','',0,'?'),('àè*€>¬„ïT«½é€','wp-content/themes/Divi/includes/builder/frontend-builder/build/preboot.js',0,'œÎEüBðÃvã™ƒ—÷JÏí','œÎEüBðÃvã™ƒ—÷JÏí','M0;\'‘ðïž\0Ìãª@ö÷Ê·ð†%)ûíQÆÌæ','',0,'?'),('àëæo=B£Kå,4mÍx','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/LogicException.php',0,'ÒSÖv‰‘B¾tO*«.m','ÒSÖv‰‘B¾tO*«.m','qÈ 0@æ–’—¸X1óœ¸$,wú„èý1²œlÕ§k','',0,'?'),('àîÇFP3\'O\Z–¥G´Wm','wp-content/plugins/worker/src/MWP/Http/MultipartResponsePart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä¼2ê´6µ0]‘DI','a?ÈèW×`¨	‹;!‰?šÔvT·’ñ ¨JØ-ÙÎõ‰ç','',0,'?'),('àöZÄ|ÖŠŠN-”‘E©','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/HeaderSelector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ìzÞ;Ù(Ñ±³é]ñÊ#ó‹','}ë—”\\j^lÙÿ©zex<óºCÇëƒç·²¤žw2è','',0,'?'),('àý|i§ÈeÃ¬ìðKÿO','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4/Factory.php',0,'7š‡h\ZóÝLê±50ˆÜ','7š‡h\ZóÝLê±50ˆÜ','ô:~ÅI’\rhb•Dß‰\nBÉÑO(¦Py>Í®ã…','',0,'?'),('á±¥À`Eâ¬<´AIC','wp-content/themes/Divi/core/components/lib/WPHttp.php',0,'\0; aèÊ0\Zù¶‹o«‚','\0; aèÊ0\Zù¶‹o«‚','Ó+_O‚€ÒÆŠ7Ü¤¡c2­€3¬ê?8²3´ÓË|Õ','',0,'?'),('á©^ºûbR–åSIá!Ó?','wp-includes/class-wp-image-editor-imagick.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž×_xÀõa«Ètk2','»=v—3°üUñŽA«Àß IÐÈí	0dœ','',0,'?'),('á¤Pþ=àÁÁ•W,*˜)Š','wp-content/plugins/updraftplus/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-heading.php',0,'“±¥ªè4I•\nZHù‹u','“±¥ªè4I•\nZHù‹u',']^Ÿ‹Mæ»;Y~„\rýmä»@t‡EÐ]“9»JÅ','',0,'?'),('á´ôÚsk“6/§«Ð½º','wp-content/plugins/wordfence/lib/wfSupportController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!eZu\0z¸[ÄO¼›O½§<','ìQ:4s-Â¦Ì\nÇÓyÈÊð}Òxªz¨†³5ˆ','',0,'?'),('á0¾»å2:zt5–H','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/en.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŒþÜNèŠÞJäáÝ7—c÷¾','ç+p:tôb×	Ã72\ntÕÀÙçöƒõd=NÃ·%Å','',0,'?'),('á4`¨–BI*Œýô.ðˆF','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôã+®²ž?>Ê,\"ºŠ','±ºfú  õ ŠnQç\n²®“˜9š‰œýì¶€›Gßf´','',0,'?'),('á8fQ-^OE~ËÞ“	£È´','wp-content/plugins/worker/src/Symfony/Filesystem/Filesystem.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒ1»Œ,³mZ¼Š…÷O','5Ù¯ÂbuÃ´,&šFO\"$ç¹B)Òž^åLÙœ','',0,'?'),('á<‘—úw%ƒI[2Ÿ‰','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_pt-PT.js',0,'Ùm¤wÖo³EsXçÄ¾¡eP','Ùm¤wÖo³EsXçÄ¾¡eP','²úö•~äx°q\0i#Ewf~Ì;·\r58×ç\n\\','',0,'?'),('á@†‹M]\"° …iNJ','wp-includes/class-wp-http-requests-hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ç,Í£a4hçãDÀU¼+','Ã5ý¾“Õ¯zVÈÙRtãI/¥+Ë˜H0N¥½ì‰\'C','',0,'?'),('áQk\n·*zõ·l¸Â ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/welcome/js/jquery.easing.min.js',0,'~T&ÿ1°^¯òb9Ò€×','~T&ÿ1°^¯òb9Ò€×','cçijOlHÜï$P`°úüsÆ¼ãW†ÑN{·8š•Ö','',0,'?'),('áSÇv+Éd;Á†cþÖé','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Bigquery.php',0,'AgDÀ•¢\rÎy¼§è:dÿ','AgDÀ•¢\rÎy¼§è:dÿ','I¤çÅ˜rÆzá2Ñ*Bïv›õ°.|sT_?ëO','',0,'?'),('áTÂT²9Ü°ÊØ\njí~','wp-includes/blocks/query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~è9½.*¹?‚\råÉ','N\rCŸ+ï*`~\\{38ý«pnq÷Þ °\r7Ý™_Ž','',0,'?'),('áWFlcªÖZe‘:ù\nh','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/OpenSSH.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R+\ZŠbF8‚ð(˜¬oð','Þé-ãSfS›èÔ¨Uñ(tc÷>g˜zó»','',0,'?'),('áZ±Ž®(>(ª1bÞ«”Zê','wp-includes/js/tinymce/skins/lightgray/content.inline.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹lo7Ör79wA¬UÉE','ÌôêEýÿ¬P¥¡ã[Ó¼•xðv1i0ëh;†Œ¦ý^J','',0,'?'),('á\\øõ¶ø$ÛI¦HÉî¥','wp-includes/js/jquery/jquery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ý]­Ôu‘\"<Z´Ü\\Â','VKlýÕ-]«®ÐÂKCáâR:ðûŒ\"ž·ì¹¾G`jI£','',0,'?'),('á`~!ìî¸±\\Ê:DåÎ','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/Observer/Log.php',0,'¹ÀÑ¦~ÔV“-3Ã&gå','¹ÀÑ¦~ÔV“-3Ã&gå','T›²-’ìÇ¿¿‘[¦ÝýÐ™_dº—ÍàÑ‘yåÐÄŽé','',0,'?'),('áeí®¯ßÀ‘:Ö¬p6ä','wp-includes/js/dist/vendor/wp-polyfill.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'õÆFÞ6Wn¨þŸÂL','+~³5L×|ÍVfÆÈ»ÿÕùñD„ñç(%áî…z','',0,'?'),('ákN±PÒ–™„Gî ’ÚÀc','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/LICENSE.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zâ¾±cqA„µp©÷','$LžÙØ²ò»¶úwqˆZ[Vjø\\ŸÖ¢^Éód^\Z«{','',0,'?'),('álÒ’©ÿŸ.[$ 69R','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/plugin-update-checker.php',0,'	¸ü7GÛè˜&bç¤öÆo','	¸ü7GÛè˜&bç¤öÆo','Ï{–êo×®ªe¶½2*YÌ\\mÆngv{ö/›K','',0,'?'),('ám]Ó¼:Pèƒè^8','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetReports.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“RCÍZÿVõ¶tö','yçþäzâv6Ç¬†Ž¥Eb?>¶Ü~-I¡§¢Uò`','',0,'?'),('ámZ|%¼‹À¦òÔd','wp-content/plugins/updraftplus/includes/updraftplus-login.php',0,'¥L8Åôökåã¶åÜ[ÓæV','¥L8Åôökåã¶åÜ[ÓæV','K:„\Zû˜’ÓóEwqË€=€yÖ/^ž%ó÷£y\rÝ¹C','',0,'?'),('áq@/»¹ê¦‘Ùž-MË','wp-admin/network/site-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°¥Ì”Ÿj64ƒrÞEž','7éòãHÚÌB—ßÓo|‘$£Œ:õKZÌîiµÿ‡™¬Ë','',0,'?'),('áƒ„	¨.\r¨1ybÒÅèµ','wp-content/plugins/worker/src/MWP/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('á‰J„˜öÞ\0ÒTþ„c','wp-content/plugins/really-simple-ssl/grid/css/grid.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–×\r?sqÔ;Ì¦«¶­','Ú1ác%üµR_ÜvºÁâ€)±&x^‹upfW','',0,'?'),('á•µ7\\Fû|‹[Eª„çl','wp-includes/sodium_compat/src/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?ÆÉäDq¥\ZlÜ‹]Á','¥¬«%SC÷ƒ­xzg•Y3˜‘‡Æ$´‰££)\'ËÊ\"','',0,'?'),('á•óZ\0wÎü›è`Vw’º','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncError.php',0,'r2:£»Îç“&½t~m','r2:£»Îç“&½t~m','\'÷(ÿ;ÏUï=³J\rfÁ-ÒrèZÆÁÓy¤/6Þ¨m9','',0,'?'),('á–îa0P@Üa\\xŠþ-','wp-includes/blocks/social-link/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É2t´âL\\^ƒ\"ŒCV','pp&5kBo¾b‘NûM\nS,ºÙÔ±†^Cé°þÀÂô','',0,'?'),('á—©6MÍv9,»P`','wp-content/themes/Divi/includes/builder/autoload.php',0,'4ú%§€£ž^×Ízøsü','4ú%§€£ž^×Ízøsü','=¦Ä8¾b´	[Øõ½C.\nâ~ezÉêâ¢þV³','',0,'?'),('á™>Â“êÆÌ\nô5´ëäZ','wp-includes/customize/class-wp-customize-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jÿf¥ì³	Ë¥Ø^èÐš','¨\nu ¨8á\rYYµä:\nVkÁ¢ý.aGˆóGoM','',0,'?'),('áœ±pÉ ÷[èEa','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/BaseProcessFilter.php',0,'Å&í:(]u#¥OÑaªçI&','Å&í:(]u#¥OÑaªçI&','ºñ«YQ<Cd˜TïÖ\n¾Î¶ë•þ.‚Z`RC/','',0,'?'),('áœß:0î‚È£<á¢!\0','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/OpenStack.php',0,'J<þªØÓ§sËýv³L¨%','J<þªØÓ§sËýv³L¨%','¸üQr&§¥ÌO¾Y¤2â‘º^Ì²%ž(4u¡ý','',0,'?'),('áˆàÍXÄÃîDMQ¶PÐ','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Http/BatchRequest.php',0,'ãhöÒãK\0ò=Sú=’JÞñ','ãhöÒãK\0ò=Sú=’JÞñ','f­sà¹ƒ?ÂEîš­0?i5œÙjwGŸb¨m§i§;','',0,'?'),('á¡Ü„Ú‰Û(øªÅõ¶','wp-content/plugins/fusion-builder/js/views/view-element-settings.js',0,'ltë.Ndr)gx–aü','ltë.Ndr)gx–aü','\"Á3(8ªÈŽÆ2ÐÑó/åˆ¼Þf‰OðŽq','',0,'?'),('á¬;ÁDthòEÓGì>“H‰','wp-content/plugins/wordfence/modules/login-security/classes/model/view/title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÍÎ“õÿjN÷y¥Ã8','U™ÍAM¦V\nÉÃPWkŽxuû		¶Úûµ›Œ/ø=','',0,'?'),('áµÍ ÌÔI­×¨é‘d©Y','wp-content/plugins/wp-mail-smtp/src/Admin/PluginsInstallSkin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BôðyÂ¦~T¦öýK{4','˜Žê¾±Ç`ƒÂËjðº}›Ì+uFdI›ç.ÞÑ¬Ùò','',0,'?'),('á¸Í«ç]ä­ÕDÌi´','wp-includes/blocks/heading/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_žFâìÊ¨`´þ€ˆ\\#O','jC,æU”Ma£ã¦\\kdDßÎwî„i°Û­²','',0,'?'),('á¹N`@³èðjð<.ëž%','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BadDigestException.php',0,'|å£S‹Ó}-‰:ZFAÊ^‡','|å£S‹Ó}-‰:ZFAÊ^‡','î\\…ë¡Þ\ZTwr@®\Zc‰±¶å;´OÒ²Ê»2','',0,'?'),('áÁh€k`¦—æB#Íg‘KP','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/gallery/field_gallery.min.js',0,'Z¼ÿ›jHWÅK5Š7Ê¥Ñ','Z¼ÿ›jHWÅK5Š7Ê¥Ñ','y)¹\0\rªEH+TeÝ¼m5r{\\«!bæÙä…^0þ','',0,'?'),('áÂÙP™ÿãOýY×ÞðŠè','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ExpiredTokenException.php',0,'ŸÞ<ŒŒá=<Yº€ˆ„„','ŸÞ<ŒŒá=<Yº€ˆ„„','ƒŒ.W.—Ë[÷Äæïý¬0Þ£µ¢ISì·;+Îoõ¹ø','',0,'?'),('áÈû›m|ë™ybœÁ¶á','wp-includes/class-wp-recovery-mode-email-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ìê  ó­Guón‚ŽÉEt','YáÑ¾LP–­ÏÝ=NL‹•¶¤ì*Î ËT9îI­(','',0,'?'),('áÎaù»…’ŸtYÞÇõv','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostStatusRegistrar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãÔ§ -¹!§–„j#NàÖ','c23E)€ù@.§4!XpûÐ%¡+ª7Ï’ø0Ö”Î‚','',0,'?'),('áá\"ÐC*ÿª×šÝ.®±','wp-content/plugins/wordfence/vendor/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£E\"xKÊê{Ç8ödS³','C‡¾ö½\'r…9½ì@âK¡Þ†t¡ª™öâ§w#@kº','',0,'?'),('áí*ÿy4Æâ¼b=^_Š0£','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/SignatureMethod.php',0,'xwõ¢+Á;ax¨÷jt|','xwõ¢+Á;ax¨÷jt|','|tÚs|œÇº­ŽðïEÄ*U¨öÆ”«*ÍûkäÝ¹Ó','',0,'?'),('áñ\\9Ã£>œŸ„Iz4“c','wp-includes/js/tinymce/plugins/hr/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤Ék+%Á5l3æÁ!-¹³','Ù2`’”ÙRi€L³#eØ„ü4Ç6ògôªp†o~ø','',0,'?'),('áõD[E0ëC@Ùú·Kfa','wp-content/plugins/wp-mail-smtp/assets/vue/img/zoho.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸åÇ€WsãÐ*x¼û¶Ëg‡','Ê¶ªvyag\rqšk7Ó\"L\0ËÊNréCÕtõ­Ê—_Ú3','',0,'?'),('áúï>¤¢|ãÉ1í“«¢','wp-content/plugins/fusion-builder/inc/templates/options/tinymce.php',0,'T½É’¹·sXz³Zz','T½É’¹·sXz³Zz','«kâ–%c¦{¾+šÛÊ…ï±Ç„ÎYû¼»øVR÷','',0,'?'),('áüœB¯°<j>ÀHbD•','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Tests/ImmutableEventDispatcherTest.php',0,'†„@„pÃÀÈÕOZ‚®»€5','†„@„pÃÀÈÕOZ‚®»€5','åžPÉ”ovÊ¤Øð\\”†*0c9¸ÖeGô÷_RDÝ%V','',0,'?'),('áüš¯a™Ý|zŸ/ì+Ú','wp-content/themes/Divi/includes/builder/feature/CriticalCSS.php',0,'³šGØËâÑ~ò8ZÑìd(','³šGØËâÑ~ò8ZÑìd(','´+\'_¤OVó8‡M 1ŸnIÈ{ïâ¾³Q–—¬Y¶-','',0,'?'),('âÅCëùZK¸á½~šËx','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestTimeTooSkewedException.php',0,'‡ñ‚+ty\"£ÝWoM¦?Á','‡ñ‚+ty\"£ÝWoM¦?Á','ð‰‡;iÝ¯u].\"«õl²ñ›€—WFX’Áð Ž>','',0,'?'),('âº4QH²]\'Û¥H×õ²','wp-content/updraft/themes-old/twentytwenty/assets/js/customize-controls.js',0,'·#óZ^‰7ARCÚèV·','·#óZ^‰7ARCÚèV·','h°õ.»ƒ5ß[þò-ÊŒT\0.‰î&þÃÊuP[±%x','',0,'?'),('âBK†ÀõA—a<ä­l2','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÉXß“à¾Å’\"X3î6DQÝ','!l.º.¬êGIî´\n7oeÈÑ¿è\';Iÿ\n\n³ ì','',0,'?'),('â%h€¿i\r·\0IÃâV','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionLoader.php',0,'á¡\"È1:oÉ8ê°ìñc','á¡\"È1:oÉ8ê°ìñc','VŽ÷Ê9Þ{°Ñ3HO™Ýéâ$w_wß\'¶ö:','',0,'?'),('â>:¤à ê’Qyœ³¶','wp-content/plugins/fusion-builder/inc/templates/options/range.php',0,'fPÚŠ27@RÍ•–v>','fPÚŠ27@RÍ•–v>','œƒ­Î¿ÄnG7qŠ£éú\nïƒàÈÑzØÂúãGßÖ;³7','',0,'?'),('âL¶>ÙŸ‰#{6p}YãÎ','wp-admin/options-writing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ã¬¤,{J>M*\ZYöÙ3','§ŸÇý„Êáç„CÓI£TÑî‰÷H&3³½8áÌžn©','',0,'?'),('âU6Ï…sÄdÂ~x¡ýð','wp-includes/sodium_compat/src/Core32/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r*Òun•rdu¾g¼íô','ÉÒ·<hùboô>óW‚Ã\Z±N˜Œš eÉù²ia°','',0,'?'),('âUÖbxBU»AŒ[m`J','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerUrlError.php',0,'=5\n-~(bjgÏ]Z}(','=5\n-~(bjgÏ]Z}(','sO²3a}WÄðöU‚²ûpËî‹9&þ†ËßAõhW','',0,'?'),('â^}R	íV7{WI\rH','wp-includes/blocks/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þt€±fki³pÆÇ–k1¨','ªÅll%G¡œËdBAÔºâ¦Ô¦$Ë›ñîÒÔ55AA','',0,'?'),('â_–NRþïèÀö\Z_÷b„','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidTagErrorException.php',0,'(·\"‰f]h„0\"Ñ¸\'ŠþN','(·\"‰f]h„0\"Ñ¸\'ŠþN','Ê#wƒ	)V 1\"‰gÀþDÜé¯Ï%wêÏó÷qœíô~?z','',0,'?'),('âlÛÉƒa‰ndþv\"Î×Q','wp-content/plugins/contact-form-7/admin/js/tag-generator.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øtyY¢@Õx¨,ôR.À;','V]\'ðm°ãW›À3 T\"×\n…ä„¿Ã´zÛ~N=œ','',0,'?'),('ârûÓùM¦2E  ë?Ý','wp-content/themes/Divi/includes/builder/module/Image.php',0,'~ÄçnU\n£Oç=\n±','~ÄçnU\n£Oç=\n±','ô£áµ\Zë7#]úN¸AeSƒÃšß,óÝ6ºÒáªª','',0,'?'),('ây¨0H#;èe\n\"¢+','wp-includes/js/dist/server-side-render.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h2é	¡dëGn)_T`','¶vêú’<¹aRj4.Ý\"f{WL^Gxÿù3Ž³]\'‚','',0,'?'),('â}^(\r×)Éš-S¢$uZ~','wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/MysqlConnection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œÇŒp‚^ŸGž\0—µ5ð\0','æRYö<UÃq(ð:Šä{OUCÆ¹åñÁCkkŒF;','',0,'?'),('â‚ä8w]ÜQedú','wp-content/plugins/fusion-builder/shortcodes/fusion-layer-slider.php',0,'Ñ\ré+ƒ€»u{kì¿r“Õ','Ñ\ré+ƒ€»u{kì¿r“Õ','heapŽ®b²ŒÁ  r§yQ0¥­1ó\02ÙÅ>HÅL','',0,'?'),('â’_·K-,íÿÅü‡ÓïõŒ','wp-content/plugins/worker/src/MWP/WordPress/Provider/Interface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â„¶örwc|d4ÏôE','áv¤ë_4œŠO­xâí÷Ìú7‘¸ `Jk¡µŠÿEª¹','',0,'?'),('â”µÍ Ær32ÉQ«[žþ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Group.php',0,'–Òüßû–lŽAæ0á_È','–Òüßû–lŽAæ0á_È','\'FÏ-§µÃ2¸‰È «{Ï	4uŒ›WR› ˆ.Gi<','',0,'?'),('âŸKYüýÝì€ù¯`œ','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Internal/IBlob.php',0,'	/°\\©#{z‰ÙK²S_','	/°\\©#{z‰ÙK²S_','½”	“ÌzZáãQšð\rp%ÛìÒßBÕ†Ê=]Žo=³;','',0,'?'),('â a8ÏI<È¬_Á[','wp-content/plugins/worker/src/MWP/Http/StreamingResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ù¶JõÐöæ½Nu\"»¯Ä','¿\n¾—ÅÂ6ào½*Ìµh\\:i¾±P––SwÎÌ','',0,'?'),('â®‡‰W,’yEBšãÉ’v','wp-content/plugins/fusion-builder/js/views/view-next-page.js',0,'S»kÏŽ=A)ßñ|?','S»kÏŽ=A)ßñ|?','iqÏŒôI;N™uñmµ,ãC,®8æÀæìb8R','',0,'?'),('â¸Dé8Fó Rº5','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/theme-builder-library.php',0,'ÔË\"HÛ²¼[Œð}Ä?ÙÀ','ÔË\"HÛ²¼[Œð}Ä?ÙÀ','ÜBÞÞe™ôz>«{þÎ×=vg4®µ†óæw;','',0,'?'),('âº~ „]œµ$ °zÀÅ','wp-content/plugins/wp-mail-smtp/assets/images/flyout-menu/star.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eìXGö0Áçþ‚7%\ZE','ìÓ9ÿ8Ã<W¤‘R”^yJMŽVÓ\Z-®JÜõJ´ë}5','',0,'?'),('âÄZa9ŸUÀzü³Õ¶','wp-includes/class-wp-date-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éÈFâ)ñP )&‚@(','K¸nL»Ê3²çmñC—-±`·£INd|ûÄ‡™:è[','',0,'?'),('âäÄ¸:ß,p´1¿ÛHr','wp-admin/js/dashboard.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“4vùð[ž¯rå(×','2Ì‡!UJï;ÞD<s˜Ë•G–V¼ð-Ãx†û)Š','',0,'?'),('âì•·¦5Î6û5™&’','wp-content/plugins/fusion-builder/inc/admin-screens/support.php',0,'œŽI&ñ£:É„Áé—±J','œŽI&ñ£:É„Áé—±J','Nk@`Æ‡À_dÇœú]¿aã;’b2€2\n\nÕFÒ®','',0,'?'),('ã\0¼•×•oxi3%\r+]kg','wp-admin/images/post-formats.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜKÿáÑ\0“äÙ%3¨Öº','9Æºƒ&Ï]Ÿ¯nŸEu¡Àa]iFé÷Æó¿Æ³Â','',0,'?'),('ãàü_³·¸[ß™{âÊ','wp-content/plugins/updraftplus/includes/PEAR/HTTP/WebDAV/Tools/_parse_lock_response.php',0,'M]Ü\ZLbðÝÐ/','M]Ü\ZLbðÝÐ/','ƒÆíâì®¿8›ˆ¾>D:.çYÄ£Í3¨È\'','',0,'?'),('ã$=,†P¦ab÷‚\"ñž#ª','wp-content/themes/Divi/core/components/api/email/_MailPoet3.php',0,'h+pEØ”\0=Óù¯^Ž','h+pEØ”\0=Óù¯^Ž','\0ž.¸î?á(ëÅÕ\rë4yzËç]pë ¯ò3,Šà±','',0,'?'),('ã0—;ê-,ÓAÞEyæ','wp-includes/theme-compat/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(áSë“;‰·IœÙ(','Ûð“§UÆkxÄråîLb°\"îÌJAFž(u;	\0Ã&','',0,'?'),('ãB—‡\"^I\nšÒùhÆœ','wp-includes/js/dist/dom.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»®x¯Ò¿Ð_x1V','‰êÿž÷ÔA+–&\rírgDu\"i#TZ¸’,ß‘ÁÁœ','',0,'?'),('ã\\â‚±Ä‘ŠóA¦x¾xÕ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/Model.php',0,'	òs«HòYôÚÓ¨*','	òs«HòYôÚÓ¨*','“\Zé1•%Eb²ñ‡}é³¢´·¼t•/DïL¨5ú','',0,'?'),('ãaÝOj\'÷Å»D*ÖV4','wp-cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü&ï>F’m8ÉƒK`Ù','hiÐäg£üF±¡œ-èò	0&‰·â†õû€Íyl‰','',0,'?'),('ãm5^¹ÛÀÇuÈê°9>','wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ß(tî×„\r4ÔÇcR','¯^àVô£x‹þÍ_:Æák	¤Ü(£á?½BË!','',0,'?'),('ãYZ¹«í¬’qLGÜa:','wp-content/updraft/plugins-old/updraftplus/includes/Google/Task/Retryable.php',0,'ý€òq‹eˆÌSèŠ4','ý€òq‹eˆÌSèŠ4','ö]šØR íî\r8]Ìÿ\'‚ÀöÕéCï½´ÓÄ½÷V','',0,'?'),('ã„–Êùàk\Zè6æ\Z¶','wp-content/plugins/updraftplus/includes/Google/Service/CloudMonitoring.php',0,'ËPƒ?«8`.Ì°´MYê','ËPƒ?«8`.Ì°´MYê','©!Z<BYtñömxpøò6$Ãà!›®;ü6ÂÔ¼_','',0,'?'),('ã†#\' º~“ºÆç/z¶F','wp-content/plugins/wordfence/modules/login-security/views/manage/regenerate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','šýéàÞœát”jÌ¥<˜','—þÖçäãT¤ú¿¨	?Wˆ¦E>}½u‘¢ë®+¥»','',0,'?'),('ã3á’[§î¥¬‰MíæÁ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchTagSetErrorException.php',0,'kPV½?JLQ±e…ç2‹','kPV½?JLQ±e…ç2‹','*)æœÌÔ–º{ÞœT=*>\\}Ü€ãëv¼S:±Xþ','',0,'?'),('ã eÆ\\ÛkîcçßXf','wp-includes/customize/class-wp-customize-upload-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ø“‰B8¥?)ivr­`-‹',' ~t~¸ýX¹«% ˜ÌK/3-n6\0ÈRB—Ö¨G–','',0,'?'),('ã¡\"þÑ>ÐPßÜñðÁ','wp-content/plugins/wp-mail-smtp/src/MailCatcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$R›ƒ»‹ªî¥(åó›(','Æ-W\nÊ•ÞÏ7¿KÂ¥º*M½¢££ÙÌ\0âòšœÈ·','',0,'?'),('ã¢Rs{p~žÚägÐØ‘Õ','wp-includes/css/dist/reusable-blocks/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`J_ZðÀw»;ƒ–Ï','÷Rå=çWA)Ñˆ†§Å`S{.‰)þu‰MM‘F{ô','',0,'?'),('ã¯@:\Z\\@S7ó£¢ŸÜ','wp-content/themes/Divi/epanel/theme-options-library/app/lib/constants.js',0,'²¼Ó)85gæìŸëd¦Qz','²¼Ó)85gæìŸëd¦Qz','‚b+¿’qm|ÂHáÞFèœÈ—oñª9*','',0,'?'),('ã°7$ƒ.ñ¦ÊJÅ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserNameError.php',0,'Fˆ¨¬Q½¯:‘³í³X','Fˆ¨¬Q½¯:‘³í³X','\'±q…ÜºYÇ~Îð8~Îýÿ””º}	2:å&˜Mn','',0,'?'),('ã¾s’ûcœcïÐ¬µ;x}-','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/DryRun_LogMigrator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÆDžâÊõYöp\'ã9ß','ÕØ¼N:‘=ÝûûñÍáþ‡5%wŽ*ñl½]vHn–l','',0,'?'),('ãËç¶s0?BW´âŸÇ£!','wp-content/plugins/updraftplus/includes/updraftplus-tour.php',0,'$ÖÔ’ö\0ŠÔV·|à¡ª','$ÖÔ’ö\0ŠÔV·|à¡ª','(+TY©·ø\rÃ¼z°QWÏ§rùofÝÏ‰r?0Z+OPÏ','',0,'?'),('ãÎ®µñ³ð‚÷X3VÆ','wp-content/plugins/fusion-core/js/min/fusion-slider.js',0,'ÖÂ.$0ÅD’Å/(ÿé	','ÖÂ.$0ÅD’Å/(ÿé	','Ïü_žIq\nmÖuÑTvŠ<VÀð•|âÄÏ¸ÅòwÎW','',0,'?'),('ãÒ\0)5[ëW×îÜÓ½','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/importcss/plugin.min.js',0,'õLúC;F›¾¦·Ã‘gq','õLúC;F›¾¦·Ã‘gq','Üm$ŠÚ©÷€[¦·-Êƒ¦¼rÌ8ÖÅ>Á¤¾´','',0,'?'),('ãÓNyš¤/©êf§`7\0c','wp-content/updraft/plugins-old/updraftplus/includes/Google/Logger/Null.php',0,'ÇíigÈ+ 3ªû¹­ô','ÇíigÈ+ 3ªû¹­ô','˜ù\'¬ëhÈN,—€€õìÓ^12ƒ;¬#(ÿZ‘\'ï','',0,'?'),('ãÞÎ\0p\Z)Úý¤*Ù','wp-content/plugins/instagram-feed/img/masonry.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n’¡¦h]Ó½û/D‚•\r','¼)Õˆæâ|“¸UGPmìÖmF‚Çßä0ÁŽ‡ÂCÈ1','',0,'?'),('ãáqÕ82½úvÂ&#M','wp-includes/js/tinymce/plugins/wpview/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ýj5qŒ™S\rXŒÚîièê','Ej\Z…³\Z°IÓñÓ3JÄçG»jVÝ’¤¤6<Sç9P','',0,'?'),('ãâQù¿ç‡p‡†ù€€¿Á','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÇX£5ôPTûYCèéˆ¤}','Y°½1ní(´´¦ºËØgd‘ø…Kaû²‡ˆ¶ l“’','',0,'?'),('ãã¶H‘Š§„Ï%â÷Ú,ƒ¸','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_cc0000_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|¦%;w©ý¯Q»8øÈ@','wi>Þ6·Æ¬à4Èå .NÊC¹äž\Zÿ4ªIOžÙ','',0,'?'),('ãå½©ÓR\\–Zµs¥ºø','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateSmtpTemplate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','À4J®3£‡¯$g×îK»_','Wmþ-H¢þ1p?•„¥ö¿õ\'ð3Ä´XV ElQ','',0,'?'),('ãç´%ŒöÊ)2TFu=œ','wp-content/plugins/fusion-builder/shortcodes/fusion-woo-shortcodes.php',0,'(à ®¬GLç2³ÃŸ$†@æ','(à ®¬GLç2³ÃŸ$†@æ','&Ž \Z¼ ·.\0>{KNSûZÏP*·¾	¦¾öCÞ4©º2','',0,'?'),('ãìó<kUJv%ò1‚‡','wp-includes/fonts/dashicons.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7¨¡Â÷Þ|±¯Øû¡‡Z','ßDºÊD+ve‚h Þs>±˜¬Züfo‚÷vWˆ~,=','',0,'?'),('ãðžÈÁcãîÊ)»ù]^','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParserInterface.php',0,'?—SÑo\0\ZÌqò³ƒá9','?—SÑo\0\ZÌqò³ƒá9','€—âŸù˜Qþ¸Y¨zoy^r\\Y‘‘T8×¢‡Æ“•ØŒ','',0,'?'),('ãò%çýªoÀ\'¸e¿Ð²‘Õ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/FlushingBatch.php',0,'\nlÐÓÃÖÓÃíÓ)sîc','\nlÐÓÃÖÓÃíÓ)sîc','}DeÈ\'/ÆÌùÇ\"—XM/…xx%kZàÛ“€áX ‚‹','',0,'?'),('ãø0×¡œ”l–¤PÉ‘ßª','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Base64/Original.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ò£-ï‚ýèÞÑ‚ðº±','±9\0zotˆID:\0¹›ê·Égä I%á~Þ¦$o','',0,'?'),('ãùå@1¾šÅè­uMš{þ','wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles_http.php',0,'&£«g±ë¿KdCþ¿.Äµ&','&£«g±ë¿KdCþ¿.Äµ&','?S>ÈƒH¢œ\'ŽµžM»-o»Ô­|c¡ŠÑ&ÿ','',0,'?'),('äÔ`c´@3íÏÒvz´','wp-includes/blocks/legacy-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„ª|œ8É‘áœ¥É','¼]÷\nsÓ¯ª¬÷9–´m;¦»óÏ¨ôðm¤ !','',0,'?'),('äüí”î!°û_ñ˜™ê','wp-content/updraft/plugins-old/updraftplus/methods/updraftvault.php',0,'•U	TÇ5‰hÃH&Žä¢','•U	TÇ5‰hÃH&Žä¢','j^”Hpî¦3E¬×Òè³À\"kv™9fI+\Z4è3…)','',0,'?'),('äÑç#ÿiJå®H·?ö@¸','wp-includes/class-wp-http-curl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÎS¬`3FÆOƒ,;N#ÍÉí','ôó@µŽ šìÐßT®¶(¶\nDÄÚ ­ÅYÒà	®]¼2','',0,'?'),('äw¢ÍÓÖV¥Ðë¼!Ü','wp-admin/includes/class-wp-ms-themes-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ò¸:Â\n©GðÔ	Yb:×','‘¥®ý‹5»‚ÏŽ¡É`éßÊ®üzÅÒ&í}UÇÀ©©ª','',0,'?'),('ä$¬Â{ûõ-”ª=','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-counter-box-preview.php',0,'€]îFÃ_*U½·ÔlZÒ','€]îFÃ_*U½·ÔlZÒ','J¨êÎà æ1Þ‘qæEŠîZIJä-È;Úú','',0,'?'),('ä¡ÆÄLšŒh†=8Yb','wp-content/updraft/plugins-old/updraftplus/methods/backup-module.php',0,'ó˜âù)úB«“Õ«$K','ó˜âù)úB«“Õ«$K','ø¼9»VÇÜÊú¼í§l¸=“‰þ‰ê$äÎ2ÂÖ','',0,'?'),('ä\ZôKéõ^ª½û\nõ','wp-includes/blocks/image/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Øæÿþâ¹V%Î€M_®g','×=x‰Þ“è[ÆÅþýH÷ÔY“ÐDWët‹r<','',0,'?'),('ä(.W©b vÂ(âƒG¤#Q','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/InvalidArgumentException.php',0,'d\0enje½R>7Ž×ÔÇ','d\0enje½R>7Ž×ÔÇ','x ÿHÌå™“#:ÉÝâ‰!SîÄ¸í¬—*g','',0,'?'),('ä,°Ò*iV¨O1aß\n3ë','wp-includes/blocks/post-featured-image/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íŽ©øÂ¨gàÌA— ×´','æ±»\0@Rê±SËçÅg,¿_\n–£œB.ÏßüùøBñª','',0,'?'),('äDïø¸wlšƒälDTh£a','wp-content/themes/Divi/core/components/init.php',0,'ŽýÑŸýÕ1¿OÛþ2¾Ä','ŽýÑŸýÕ1¿OÛþ2¾Ä','¨&&mHLŸÑóMIÂ-gš âÎûêa½©(œ¡ \"r','',0,'?'),('äE‰Ý×¡aîEç/˜BOå','wp-content/plugins/wp-mail-smtp/src/MailCatcherV6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Ü>[ß£ì¼>ßm¬‘','í]ûAE«¸`ÚÓÆ_2örýç®~×ZÓw]Çz','',0,'?'),('äL°‹†{…¢hSÖéŒç','wp-content/plugins/instagram-feed/img/about/plugin-if.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','é£iÔ\'äìÆæˆ¬9nWC','¡b@p\nû%­WWÄ@o•ÛÆÇ0†•rÁžJ|í`','',0,'?'),('äZÒºc£cv!k\"þû','wp-content/plugins/worker/src/MWP/Updater/AutoUpdateManager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@¿áôÆÞ_Û\"·¬Æac','Tà’ë]C·EUZšO÷ÿÕËÔbzÙ(d3Ú¢˜ä','',0,'?'),('ä\\/è„WÞnÎ-•\n 9','wp-includes/blocks/image/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>4½~_^IR=„*>âÌ‚6','ÔÿÎ¸\n*¬\nŽH˜©˜¿@;Í»MhõZÛ/‘È','',0,'?'),('ä_ð+{ÜèðùloŒ¹¼','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/mode-javascript.js',0,'tõÍmYpl\"7L‡rþr','tõÍmYpl\"7L‡rþr','b¸O¾CAe„”º–ÅWÉš.]‰÷#¸ÈÛ™“—Û¦nÿ','',0,'?'),('äz^}ù„Â¤hh3\ržˆw','wp-content/plugins/wordfence/images/options.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¥VÉðÑ´®Çó»Aï¥','D:ÂbwÃ#^›€Ï4¬BÀKIP‰?	zÀn‰VÌ_','',0,'?'),('ä{ö‹B.POXž?cq;','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MethodNotAllowedException.php',0,'Ê8ÏüÆë^µ$_Z‰\0s','Ê8ÏüÆë^µ$_Z‰\0s','kÒý_‰»³\rz‰]©PjWèaáâ[–H€E!4(xÛæ','',0,'?'),('ä†®G*×~–5HÒÜI','wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aŸx¼“<Èƒ|òÏ+QW','û™L×c¢c±É9Ô00p“¢’Ë$ÂŽÓ¥†Œ²ü','',0,'?'),('ä‹µÌ´=8«Ï-!ÄÀ‚S','wp-content/plugins/updraftplus/includes/Google/Service/Fusiontables.php',0,'´ŒtŠCžêÄR¶s š','´ŒtŠCžêÄR¶s š','3}‰úe\Z‘¿oê…óõ#Ÿm&á\riÆåqË.µY‰é','',0,'?'),('ä‹Šø†ÎV!ý2d¨-\n','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactoryInterface.php',0,'è(EÉ¿\'jš+.T’}ÖÉ','è(EÉ¿\'jš+.T’}ÖÉ','ìHž°Ù²úyã«GÛóy?Ä-n íg`Â’Ìî„ a','',0,'?'),('äqUÙå†µb[£Hâ”X','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ùœ‹™8Tà¡ßMF­È×…\\','5ØÝà(w¸Ucþ`DTP‚6V­:ÞÌ.ž‰–ík','',0,'?'),('ä¨BtÌ øô5âDË-gË','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/GenericEvent.php',0,'/b×eØí¡Xê%«÷t','/b×eØí¡Xê%«÷t','Î·MzE\r-\'QÊ>Z®¬Ýõ‘æ”«ôŠ	ÏRŒ<ÌÂØ§','',0,'?'),('ä½!…\ZÅf‚¦Šã”’m˜:','wp-content/updraft/plugins-old/updraftplus/includes/Google/Model.php',0,'GÖý W€ù»©óÍÅ¹ŠxŸ','GÖý W€ù»©óÍÅ¹ŠxŸ','a-žÌ<M>©¥w O™›B%ŒÆ‡ÃÕKç‚S7','',0,'?'),('äÚ_I¯xœÉíF£','wp-content/plugins/updraftplus/backup.php',0,'µ€…äI\0róÏöò{÷¦.','µ€…äI\0róÏöò{÷¦.','æYE±§©Þƒ¸×·—¥BÿS°ÆÊŸÛÇ]J‚\ZoëÔ','',0,'?'),('äßæ¨ÞzpKC²{\\>‚ó','wp-admin/js/dashboard.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','klQ,£bh\nî3«ÔUœa','ìÇò3S—ÑŽ\r¿LùG Ãg&µ/!/Ç]Ý£ï','',0,'?'),('äê¿1þ]ÃM|®KÔFZ','wp-content/plugins/wordfence/lib/wfBulkCountries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9	+OyÕ®…urOó3î\n','X&o1\'ì»cgüî¶mlû¢ySÑÊÒÝt‰ºª¾Á\r','',0,'?'),('äíI¤`ÙLˆ+2ÛØ½®ìQ','wp-content/updraft/plugins-old/updraftplus/includes/Google/Config.php',0,'l…ñ!W8¢îù°Õ¡œRM]','l…ñ!W8¢îù°Õ¡œRM]','m¦ô#Ï:ªhW‡òw‡¢ñ45¢Ô:C+*‚Nå:®','',0,'?'),('äíf¡Ã¶èäiFIÃ‰›–8','wp-content/updraft/plugins-old/updraftplus/methods/remotesend.php',0,'·ìûqbXAµ¥-]ˆ\'','·ìûqbXAµ¥-]ˆ\'','Ï ‚(qÂ<´£‚fX,¨Z*ÑF_±5}G{ te','',0,'?'),('äîÁÍõ@s {ÛÌ×C','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/UglifyCssFilter.php',0,'+Gø’ BÇÜ0e¿5—§\r','+Gø’ BÇÜ0e¿5—§\r',']÷ÁÁ§Ú-ÜV±3ØØ¥¶î¨3R*]¦ƒj¢˜™1µ','',0,'?'),('äö\00‡ùqŸÄŠNy)”Ô','wp-includes/plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q-ÁUO°R?½©<(D°þ','Û0ýmyúC¢Ö_çyàZ3ZÂ\0¯l P9·i»3i','',0,'?'),('äú 4Ýú1¨hçé|SZä>','wp-content/themes/Divi/includes/builder/module/woocommerce/Tabs.php',0,'XÓ>Ò•Nç‹X}©iÍ¨±','XÓ>Ò•Nç‹X}©iÍ¨±','ÃAàö-ú^ŽWï±…WÚŠóçxmÁp!ÑO ë¨€	','',0,'?'),('äþÅk°O@ÈÁ|½W‚','wp-content/themes/Divi/js/theme-customizer-controls.js',0,'jÜ¤íÈ\\[¬AÐ#Ÿ 2ÿÁ','jÜ¤íÈ\\[¬AÐ#Ÿ 2ÿÁ','B†OJK/­ˆS-–0s‡j\0™ïi¡°‘ž)4-','',0,'?'),('åµˆ+Tx*”ø0r~','wp-content/plugins/updraftplus/methods/email.php',0,'°<\\ò[=ÜpóZ¤Ö','°<\\ò[=ÜpóZ¤Ö','.\r…™³$ëf$Ð5Þ[øs2Å8vå´ª*Po)T','',0,'?'),('å±8ùÈÃ÷¼~÷0º=¤E','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/Header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º)É?€LO«)×Íœ·','lñâàþF¤‚~AGÉX‰M—ÅÝ¡¼<~\\V\\P?²bŸà','',0,'?'),('å>e‚ÔA\Zmþg‚P','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/actions/ActionScheduler_NullAction.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´úÈŽôÑeWSÜô<¢','HÔÀ®¶\ZÑðÖètúaÀ!IcU»||iÙ\'','',0,'?'),('å\'Ò`FÌ”Ì~ÙÄ–“œ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C¿ýõØéÌ0Ð+C„²…','`>&i(Å¹›…‚C”Îßfÿîë&ñÏì>Y\"¦','',0,'?'),('å)¦é·«œÊgÌ¨R','wp-includes/blocks/loginout/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·³êE÷º$Y?ì\n<Æ','™d¹\0¼sÕ-VTÊÓI´ˆ5;4¡|]!ãÓ%·Ì0-;','',0,'?'),('å5&$5Q¡’‡5ìžíNß','wp-includes/js/dist/edit-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×y8:½g/äÖç\'¨ˆí”','ÓLa3C/,‡4Ò}åÁß]^¿·•ë¯Fo¿9•žŠ“Á\'','',0,'?'),('å6Z[®Oas*Åq>þúlä','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/CopyBlobResult.php',0,'¹a:üå)ÇÞ°>V7 `','¹a:üå)ÇÞ°>V7 `','•à·ZX–9qrsÚ±“‘£A‹€Ã{gÇðl:†ÕZ4','',0,'?'),('å<\"™ç\rªÜÃ¯9†-','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/admin.php',0,'>ì@j?£§±ÇÇDO3ñÔ','>ì@j?£§±ÇÇDO3ñÔ','ª‰æÆ”¢‡7’Á_$¼à:ûsÿ“\'Ü;t¹“;àVV','',0,'?'),('åCžÇ´úé²k‘q{.L','wp-includes/js/dist/block-serialization-default-parser.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«6œÊœ9þY»jbIü$',' ‹Œ£¯¡4kÉ:‘dÈ§Ï!\'à{Ý¸ÑM™ì’Ãh','',0,'?'),('åHÆÌ4….\\ã:‰ç#àî','wp-admin/css/l10n.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+.Õ[H\rÏ¬.k«½/ ','®þ’»ÃŒˆlgóÚÃÂj-u¹ð\\$?Ÿ¿¦)\\‘y6@','',0,'?'),('åOœÓìÃ¢úÚê×','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/InvalidArgumentException.php',0,'}/ÑX5$×9ÿñ/Þe','}/ÑX5$×9ÿñ/Þe',';ªþ5b°½GìS£¦B:e}¢èìÑÖ!q|zÒ6ô¿','',0,'?'),('åR«¹q± vöÚz\rPU','wp-content/plugins/wordfence/languages/wordfence.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0%›Öï¥=X¦Ó¼/«',']·%ƒN£8­ŠÜ °ÔëŸ·ïá_†;…©\rD¹,eŸÞ','',0,'?'),('åRËä5?’- S£^H—ý','wp-admin/js/editor-expand.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘¤ƒKÄ\\(°‚p½©²[','àÅé;W#à}GjÙ[—¼KˆSAKZÜiË¤[Q4c\n','',0,'?'),('åVžOMÖt?E;ü	w¯–','wp-content/updraft/themes-old/twentyseventeen/404.php',0,'àòOxA©†$1‹&-©y’','àòOxA©†$1‹&-©y’','´H{°£Aê­f,äõ[ç$dnŸÂ›È£–ÕýÙ','',0,'?'),('å\\»s/Ä{Ù(L†ÊÌµ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ClosureCommand.php',0,'8v0~ù‚Ûœß­¡ýR$','8v0~ù‚Ûœß­¡ýR$','“í§1ô€¤U®x¸Á©Œ¤fjé¤oI²¨ð}Î','',0,'?'),('åb¯,œ,.ëÉVƒû\'Ö\Z','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñÓHx+Ú07¸™`®}ô','@qz´jØI¯™áæ \0D¼a¶W»¬6nÍ{Š£¶yß','',0,'?'),('åeÅÂúôüýn·…ŸAÛ','wp-content/plugins/wordfence/lib/wfView.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[žÜºÑ-Ë†N\n™\\ÏnO','xáˆ2Q¿…íàmkÙ«@IFRhÕHu~ÂR8¨\"zìK4Æ','',0,'?'),('åhY3ÈX3ÃçDýscÎR€','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ „w^ã®³]ç·£M','•«ò°Áñ÷§ZEüOë´7(­nY›îhîË¨ƒ‡','',0,'?'),('åp™¶âçÌÍO:tL}+oJ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/Zf2LogAdapter.php',0,'\nÅ¶ÑYpA‰k¢bøß‰0','\nÅ¶ÑYpA‰k¢bøß‰0','__7]>o7v$ê-*qƒXàçÚ@k±\"âÚ}Fßþ','',0,'?'),('åseþ¬ŸQr^TèKù','wp-includes/blocks/post-title/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7µÜÍ	ûíÕ+=Ï×','\Z_ÓêE(Ê¯z«mc™­ñça‡Âœ1&-ö4)','',0,'?'),('åyÍÒ‹ì#zÝQx†_×Ÿ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/typography/field_typography.min.js',0,'Õý:Ö`W·ŒqhŸTÊpB—','Õý:Ö`W·ŒqhŸTÊpB—','þ<ñíò´Š]ôßþX|2!o+¦“Œ²ž´SÆÕ»‘','',0,'?'),('å|ÌûªLwÆ´iKr{','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/image/plugin.min.js',0,'-”úZCélÂ­}ÄèŽê','-”úZCélÂ­}ÄèŽê','yçéTíÔNz+¨ªã†­âƒ†õ\'Ãó«ü%YÊ','',0,'?'),('å‚5¦~ÔìtÿÝH³Îé','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Abstract_Schedule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´á é–õÕÔ0êýÈä¬\Z','–útEt\0fä®ReøÛÍÈETÏ› ÏW¬aãDß©','',0,'?'),('åžùŒG”§€±£}FH‡]','wp-content/themes/Divi/core/admin/js/recaptcha.js',0,'’ÜBy\nmO_;g5H[ª','’ÜBy\nmO_;g5H[ª','\'N­]X¾W	=Äaaò„…¶Ïž½ï½=åõ5ì	Èù','',0,'?'),('å£SfŒFìçìæ \\—','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/Batch.php',0,'·€¶Êûþüã,¥1á@b9','·€¶Êûþüã,¥1á@b9','£$-GÇZËµðºyÇ€¨è\n_àBT¬ÀQ(','',0,'?'),('åÕú°5Ü1QŠ?ž_µ¢','wp-includes/https-migration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×s9Š4W#2éÕ!Hãß¾‚','2‹|P´ºÅ§muÐˆø¤~k´©37rz0»xÅAÛ','',0,'?'),('åŸ)íÀè\Z‡ÍÙ¦L\r','wp-content/plugins/wp-mail-smtp/assets/images/about/team.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':€Žëyr›’qAKz›ŽL','‡oàšåRÄ·½­ÐËZO%tHTÅÛUÕ,ª„ ¸:\0Á','',0,'?'),('å æ>žxë””äðïP’5','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendTestSms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë§®iû=4÷Öj$@–','ŸÃ¨B*“ß€ö’,^\nò±À*!7!ÖÃ.”Õ<“èŽ','',0,'?'),('å¤V:®SË­%0Q“8','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/BaseCompressorFilter.php',0,'6À	;ûÞcTûYi˜é','6À	;ûÞcTûYi˜é','…Q\n [j±Uë»ñxðìfàhÝ³¼a z\Z˜•fÇ»>','',0,'?'),('å³³$¿ @z6§\0`’Ñ/ª','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Õ‹}çïB°÷HÀÖ71','Ã\"Ã÷beTb¿$àÖæ‚Ö×‰ù\n…º°~½lnÝÅ','',0,'?'),('å¶Žom­GVM7ó™','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/it.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','û½Gì8CâËÆä¯’Ù¬','ÇÍÞudŠzÀ5‚¢G9Ô$Ð¢ùÂWwü®aêx','',0,'?'),('åÀÈ†ˆ;áÕïn9\Z¢\\Š','wp-content/themes/Divi/core/code-snippets/app/lib/capabilities.js',0,'3¿ 8uoiôAÓ…æ}ì÷','3¿ 8uoiôAÓ…æ}ì÷','7mbdÇ:~‘+˜‘Ñ@udýz¾»olª‡ØüA­CŒ','',0,'?'),('åÓ<Óµ	|Oœû¯È`','wp-content/plugins/worker/src/MWP/Parser/DefinitionTokenizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Æ-T×™¿Íï£ñ³ãRÊ-','@jœS(OºÏÆãf’Ê$îcAlÁæÃÓ¦™\"£~','',0,'?'),('åä&þÇÇcõ©oåsƒêÙT','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DomainError.php',0,'¯…Nmîuôê·lv:','¯…Nmîuôê·lv:','¬$ÈÒYæJK|›®¸ö­¥oq)ù]õoý','',0,'?'),('åñõ¢­e\"MwSBnÒÑ\"','wp-content/themes/Divi/core/admin/images/svg/migrate.svg',0,'{]žÍdu9#oÎzJ]2','{]žÍdu9#oÎzJ]2','ÚÊ.Ï›—á/5G~¶ÿÞÈ¢J…c_7ÛjIQ0æ','',0,'?'),('æaÏÌ\'¶Y]qäneÊ','wp-content/plugins/contact-form-7-dynamic-text-extension/contact-form-7-dynamic-text-extension.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­aQQIæ›\rîÑ°`du','’B˜[‹f+b CÎ>ü\"\'Û’±?Ú=Ù§¯r6^','',0,'?'),('æ\ròb\\ñ™‰ÄÉ²\ZÄë','wp-admin/edit-form-advanced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýŽ Å9î»2\0\00£Ë8€','†~“¬¢·ÔÞò@…Õ“Æh ÐìšîuîóÒ3Åái','',0,'?'),('æGEçŒz©ÉÒõkæÅ†','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParserInterface.php',0,'˜ïFÊçqÍš|ø#·lf','˜ïFÊçqÍš|ø#·lf','äZ»Ÿïµ†ŸÐÉ{¸Â5[üÃ±ä®:ôþ!ÓåËª¸È','',0,'?'),('ætãÑ›}S]¼ÓÃû¥','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Authorizer/DNS.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªRJösÕ}¶õ>ÉhÕa','%&v™â…¾Ÿ•¦Ó‹ Î/.³\Z¿Dß•‘g¾¹bfA','',0,'?'),('æìýÀ€«]7UÃ,’sN','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Iterator/AwsResourceIterator.php',0,'Ñ}†Ø™†+ùÿ“’oß¦ƒ&','Ñ}†Ø™†+ùÿ“’oß¦ƒ&','\\!êÀe·¤‰ZÂ”Éd¹Çê+2\"ju²`Mˆ\n','',0,'?'),('æŠ¤N5=:Œ€Ù$go','wp-content/themes/Divi/includes/builder/plugin-compat/wp-smushit.php',0,'2™>I8•–cLmŠ”a Ÿ','2™>I8•–cLmŠ”a Ÿ','DŽ1G\\nš²þ–»BPøB€ziuMþÏ–%{,:Rƒ','',0,'?'),('æA¹˜žqœRÔ³½›','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php',0,';0ŒK=‡2òg@²ÍÀ­',';0ŒK=‡2òg@²ÍÀ­','‚ìéâR\\#ÀÓo; Ô*+Àzs°{¶JòV°-ÆF¿','',0,'?'),('æ7¯À\\¨€L\Z±L^\n\Z','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/class-field.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ‹—h¬²¢£¼ÈõñE¿N','E˜Àµ4‡mJmÉß>¸øÙýöûö.tÃ‰YÝOôDŠóÈ','',0,'?'),('ævÑŸŽH¨ýË5%','wp-includes/blocks/site-logo/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q„\0Üø–]ê¶ €‚†‰ã','u=ËŠŽ¸h§åïäü]“?(„{Dø±˜6_øF˜Ú','',0,'?'),('æÅ;ÈöÖë|jj+‹','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶e·‘Ñ†=ÏqmÅT5þ*','cÅ—ddfÒnÔ±™â×]›–§y’pÒü6enUÐÛW','',0,'?'),('æ+tŸašêb°ÙÑÓÒ“','wp-content/plugins/updraftplus/methods/onedrive.php',0,'¬ÙÀPk¸tªþrRúÙ','¬ÙÀPk¸tªþrRúÙ','mž*á°=qBG\Z·ÁPho+9X\0^¡û<¸xrñ¤Ë´Ë	','',0,'?'),('æ+‚ù«.âøÇeF«È','wp-admin/css/dashboard.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','×àdÜ·\0ž×d\'ûä','%™=rüWX%—¹ÚxÕ{Tït¢l;#EßlXy','',0,'?'),('æ-ñä	ç5£ó\nT…ç¡ñ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/OAuthRestProxy.php',0,'ð:)—\rZœ:¸z9(','ð:)—\rZœ:¸z9(','´\\ÔtÜ)læJWPõ‹$0Ú?h¾óó½ƒ!ù','',0,'?'),('æ/Èl²¯XÌÚódEÏÂ','wp-content/plugins/fusion-core/fusion-slider/templates/add-new-meta-fields.php',0,'u3hgú0¿ÏÝŸ\Z,W?','u3hgú0¿ÏÝŸ\Z,W?','9‡Mõn4Vôdeh#§¤ab$eø›~ßæì5–Ü$Ó','',0,'?'),('æ9eºòÐkköRÊo—†þS','wp-includes/embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í¡\"3|Öi\0Õ÷‡iÞa¹','ÌYhˆÙ—_-”l|ÂÞKº#}hhÜ÷3’œÝŠ0¾Ì','',0,'?'),('æGÄÅ5Ø@æèÙÚ07•Ç','wp-includes/images/blank.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÉýûÊŸgŽÐhíkK¾¶f','>„øEïGÅóLó´ E²òšJQ‘‡ô|ÌBÀijÏ','',0,'?'),('æJ~_o¸f™k³¨öóºÏ','wp-includes/js/wp-embed.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\\6º¦ŸÍµ{Ø‘Í©	 ³','Üa†•ø9§ÌDŽêDa?Å¡ÿN*Û!Ù0“ÿñ\\%;','',0,'?'),('æd’DDzqÂæÙ’>','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateSender.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ˆ9w#”þÁÑ/^D','½•lº\0?s,°@Î‚iTy7˜<ô°™ó%]','',0,'?'),('æm¬äŸ)4®úxêç*','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CurlBackoffStrategy.php',0,'z\0ø½Ý½Dí’hÄ»%™','z\0ø½Ý½Dí’hÄ»%™','¡Å\Z»Ï—”‹j¿»®ÆÄ„œ!ò¬±éÇ3\r	àÝÚ4>','',0,'?'),('æoR×Å#Û´-(ÈÙ%£','wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha-48.min.js',0,'â‚ô¶¿l–À d2ü]Èþ','â‚ô¶¿l–À d2ü]Èþ','ÙÈg€%dÚd;ÎEoMû[Ëƒ|ê©zõcré¬','',0,'?'),('æx.•¬ÔÐ°]Þ.&Y×vô','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/ValueContainer.php',0,'Gî4Y@ïZm/ÜŒ–vÚ%','Gî4Y@ïZm/ÜŒ–vÚ%','Ó¼B²ßß¤Š«-kM˜dH¢þð0¹,$?¤,fM‹Ù<','',0,'?'),('æ^™áóè¼¹ÀL&L‚:õ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Exception/InvalidCookieException.php',0,'Ôì¸jz¢m€#I’r\nyÕ','Ôì¸jz¢m€#I’r\nyÕ','daôò\ng-Gò‰Øöåþ¯C7¹~¥FáÜ³+¥¨2ghá','',0,'?'),('æÿ‡’N‹¼z©h™÷s','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/Md5ValidatorPlugin.php',0,'Þ!‡+švmÙ·ÆÞ²|çã','Þ!‡+švmÙ·ÆÞ²|çã','[žê’ÒQª¤iƒv[*åîðG¹‘Ê_£á)¡C}','',0,'?'),('æ—‰¶ (¼uùË!\0Ÿ@(','wp-content/themes/Divi/includes/builder/module/field/display-conditions/DynamicPosts.php',0,'±}r‹¢o=På4Nas','±}r‹¢o=På4Nas','p$ó0c)„E8Qä2‚Ñãû¹=³YÄ5,£%²','',0,'?'),('æ™*›4Ð¬JR RÎI<','wp-content/plugins/updraftplus/templates/wp-admin/advanced/tools-menu.php',0,')ûKÒaOtÉKV™¬_zdc',')ûKÒaOtÉKV™¬_zdc','f†´¹¥›-ØS¨Þ6©¡ 94xÑ¡ÕÚu','',0,'?'),('æ§˜ºî7Ý^ô»b³\"³','wp-content/plugins/wordfence/images/back_disabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hÙÂÔgØúïiîã†>','Žä›Nó7ÓgÎ‹Ä?ìFb!}„­Ý¿°ÝC¨­é³‡','',0,'?'),('æºätÃ 	\')þ9?Î','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Spectrum.php',0,'ïÖøFå\niˆ•ýqõ¼','ïÖøFå\niˆ•ýqõ¼','ß#‹2Wò—{”îakùT˜ƒc\"#ªNÞÛÕ	t¹\0gŠ','',0,'?'),('æ¼g¬ìwßühm÷—ÕAú','wp-includes/blocks/freeform/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹þZá¬%,Ì°YNÛ','	×bšI9˜Áw3Ý±‰r?ï2&WOöÑ‰mMÌ','',0,'?'),('æ¿y§lš€só§U>Â<òá','wp-includes/css/customize-preview.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨Íbí‹€ÈSbÆs•®\"','ßŒ‰ÙIùRð\\Ä¹Ôe£¸z3ÚüQsC•Á¾×Qˆ','',0,'?'),('æÂÂâ|±N¦¤ÄDJ»#„','wp-content/plugins/updraftplus/includes/PEAR/Net/URL2.php',0,'ˆ\"ÙŠ)NÜX‘6€~‚','ˆ\"ÙŠ)NÜX‘6€~‚','ÀœQ*%’«Æ_7ÞƒdNÊ|–ŠÏÆªQ/pí)îg\r d','',0,'?'),('æÃ´˜eÒ•÷h‚V\"€','wp-content/plugins/wordfence/views/options/block-controls.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âBµÏ#jºT‚,	…‹©D','xÜL§a);É%ù…Æµî®·ü§žR*¾üé','',0,'?'),('æÊ$MØø=¥‘m£•¬','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/TreeHash.php',0,'èv©½À›µök:êM¢','èv©½À›µök:êM¢','\Z¬ƒY)­\"Rá¸?6ÞÿÇd	–O\'PˆCëy¦¿ÃåÏ','',0,'?'),('æÎWûêÃ\"úÚêSk:Í','wp-admin/images/align-center-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ž¾²-ór‡5*J7¡If','¢8tfç*JwÒTÂ^åÂHÙ>ÈñÊ1öJDÈÎ¿','',0,'?'),('æÏå¼èP¿IcDÄËÆ¾è','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øÌ®ÙJ˜sÓÇ™ùB','¥²ER ôJbÆÈ¸I\"ÊìtÞ],˜qPþ1\\fD','',0,'?'),('æÓuËºõ”ÁMƒ­–9ÆT','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ResponseVisitorInterface.php',0,'#)‰^s‘Pð‚$þÖ','#)‰^s‘Pð‚$þÖ','‡à« HùK51FÖW¸£t=Ä–¹åÇEÕ_ýLr~h','',0,'?'),('æßª±¯nnŸ€ªŒôˆp|','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/BodyVisitor.php',0,'ñÏ ô÷ˆmƒâYQy','ñÏ ô÷ˆmƒâYQy','2Ç²\0€}Á‘? ÔCòâ‰\"Í‹ï­Â§˜Ÿ\r9C²','',0,'?'),('æâ££ôMåO×ºîïƒU®','wp-admin/js/editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ³*¦¬Á‚¨{~ÁÁ.','¦\nôÜÃ·ÏËžx\'0 W~Ð«Íñ¶Zâsrc9«–=','',0,'?'),('æädÂéh9ÙÝ‡“q7{Q','wp-content/themes/Divi/includes/builder/frontend-builder/build/theme-builder.js',0,'ìq¶`zsÒe —>R','ìq¶`zsÒe —>R','-™±œX§äBâ˜ ÍbÚ÷^j\nñîLhßÉ?îŠ','',0,'?'),('ææ0h\rR=³È><‹ƒf:','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/PhpExecutableFinderTest.php',0,'LoW°d˜“(æJ”«,õü-','LoW°d˜“(æJ”«,õü-','EK¯v$žŽ<CÈÚ$Æ‡OCaÛkAÔWÆ\\Ù5¿ŽÍ€Ð','',0,'?'),('æé	y[^?ªÿ¯Y»È','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/MapFactory.php',0,'DEÒW\'ú…‚ããÈ˜&ó','DEÒW\'ú…‚ããÈ˜&ó','žÔ\"\'í/M-TÃ~§ž´ƒÊö’ˆJ«µoÔD¦îu','',0,'?'),('æé¼\"ŒLJ1ìC4ND÷','wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­pDî›‹*™«žîL}³','ñæfÂ‰°“«Æ¾ßœ=i÷ùÇsŠ8´\Z}ƒŠç”‹º','',0,'?'),('æï²6äsHTlS=åcM','wp-content/plugins/fusion-builder/shortcodes/fusion-column.php',0,'rÉÃµú¿—]Ì”Èæbñ','rÉÃµú¿—]Ì”Èæbñ','üeÀ\'â ]ÛÝþ/Ùf…¹_+w„îº­S†Â%°','',0,'?'),('æïË·”óÙ°p_A_\rõ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobMetadataOptions.php',0,'jŽ1H\'ŽV¨’GSt\\þ','jŽ1H\'ŽV¨’GSt\\þ','A¿°°ÑJó!Y2ŽÜöÛÝXÕ\n\nK9‚ØMçG\r´ÄÐ','',0,'?'),('æöoØgsfžø)·ö1¦î','wp-content/plugins/instagram-feed/languages/instagram-feed-nn_NO.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úè¼û‹Å®K£¿j-','á$ÍÝ€Tx=D¯äK°-¥ÆîÀä­Výí¹3\r','',0,'?'),('æ÷µÈÂ;ŸWœãŽì¡Íl¥','wp-includes/js/dist/deprecated.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Žû::æÌ¿&DùP¬ƒ\0„','XÜ\r #aÜ…Ï\rHïÂ #4ýZ=ÞB]XÄ#ÆÒ›','',0,'?'),('æûÍºZ¿vß•žšÏà ¬9','wp-content/themes/Divi/core/components/api/OAuthHelper.php',0,'”¶ÕB¬‹ëŽÐ}Dc´X','”¶ÕB¬‹ëŽÐ}Dc´X','*Nƒ¬Rt›.ß1-¢}Îx	ëÏ½zØÇp4Á,Ø¦e','',0,'?'),('ç®²ÖÖ4Q†¹yéáÆß','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetIpsFromSender.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶âõs@Nß²xðÏ©å¢','¢äœêÔ¦ƒi—‰·õÖ\rÉ_•òÇTôýY™ªœKe','',0,'?'),('çcoxd`¦Óàò}4ƒ§Ô','wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/Binary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j«9rb4M¡jõÄ™%É','û°Ñ3â¦Ø8“ÙVÝ\\Š‚KA‡qå]Wž¥»BŠo‹_ÄX','',0,'?'),('çG<¼\r*‚|:Ýfìšë','wp-content/themes/Divi/includes/builder/feature/AjaxCache.php',0,'˜¥“o˜L÷]%ò¿W','˜¥“o˜L÷]%ò¿W','eÞA4`U:5ÇÈX]÷îM8 ñYŒ›Q†»g´\Z8ƒ','',0,'?'),('ç|“G¸¬#º~ƒ¬','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/no_html/validation_no_html.php',0,'?d8S;ºP\\Ût ®F]','?d8S;ºP\\Ût ®F]','1ãÙ¨Î£oeU£\0G\Z¾À‡—\\&Â§Æýˆ2:Ö&ä','',0,'?'),('çW”FzJ­$_¥GH‡‹','wp-content/plugins/fusion-builder/js/views/view-column.js',0,'ÞÔ>QY\r#Å$7B#','ÞÔ>QY\r#Å$7B#','.üÅŽý$3™˜G×4?¨£\ZóœÇT/¦g´œP	P«','',0,'?'),('ç\"ÕÆ¡üŸ7vs+ö','wp-admin/includes/class-pclzip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')óAh·8LÊXºdˆTaá','“8D.«u+–h8Ò²Å¾ž,Ÿ¥ÇWÚå¢ì¾õO','',0,'?'),('ç&03”¢ôãÏb¬ŠXOÆ','wp-content/themes/Divi/core/code-snippets/app/store/code-snippets-library/module.js',0,'ÐÄé\rr•ìî2À‘Êó\\','ÐÄé\rr•ìî2À‘Êó\\','ˆàé²!¥¤>=œ“µ¼ÃoƒžV*¦j2\'%','',0,'?'),('ç\'µs6´:7ÉAó9XDÁ','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/AutoprefixerFilter.php',0,'\0†â8Û:èR±˜ñ\')S','\0†â8Û:èR±˜ñ\')S','°ä²l¶áJåù›c¢mDŒe\ZLì‘±ÿ!(\nèS','',0,'?'),('ç04Êç˜ãå“”¸Xvs','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetContactCampaignStatsUnsubscriptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';Ý%bé«³r $P]M','UÁ@HVÕl|´“§ÿQc›êú¬_ö‰e\0Ö”ê‚&','',0,'?'),('ç2\Zð‰ {D·Zý‚¸-','wp-content/plugins/wordfence/fonts/ionicons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬ýµh³ßI­15[I]J','*¡×\\&¿tä­¨\\Ã	gTw°‰µ¯,Æ1ƒ©¢','',0,'?'),('ç5”vóŠ¿±	Ùs«­í','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/repeater/repeater/field_repeater.js',0,'¿»¬š‹(,Î2dç´','¿»¬š‹(,Î2dç´','˜¹ó\rÖ;qç­:4µfÊä½M=oàI…ÁÍk;„','',0,'?'),('çAVû4©Q-ÎÝ&&9÷','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/UnexpectedContentException.php',0,'Zz÷ð†\Zìp—^\"8>ß','Zz÷ð†\Zìp—^\"8>ß','=ƒ¶_òæqp-NØæ©_0\"Ê¥%°„íº¿‰ßÇ','',0,'?'),('çBßÖ8Ó´µp$¼æ\\!„','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobPropertiesResult.php',0,'±\rÕ©²Ø±ëÞgLon©²Ä','±\rÕ©²Ø±ëÞgLon©²Ä',')xÍévð·rÓ\râìç	\'÷/Z»5y\"°‡~Pòu','',0,'?'),('çDj×žå8]fÐ”_Ú','wp-includes/class-wp-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H`™ÅŒÞD‡¼xj¾¶dD','ê:÷Î[À8Ö4·“Íq¾7S›µdÝÓgÃ—(Î*3','',0,'?'),('çF°ÏÜûJÁLÒ‡\Z‹/Ÿ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/AbstractCacheAdapter.php',0,'Ò™¿[e´…9\rT¦þ˜”è','Ò™¿[e´…9\rT¦þ˜”è','Â+*‰[J}³§û¸ô¨¯êSËh—oJ=[ñ<Ù”ôAL','',0,'?'),('çMP¸ °ÏEL•å8ß•{z','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/DeleteObjectsTransfer.php',0,'„BûÙEŒŒâp«â£ÛcÅ','„BûÙEŒŒâp«â£ÛcÅ','=mtf§\"56ï¾ »fôÑM„·¬ð=XÖcÄ','',0,'?'),('ç[ç²¶¬úEIÎ´çîÎ—','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/PageWriteOption.php',0,'ñKÝcî4¡ŽÙ¬\nTõe÷','ñKÝcî4¡ŽÙ¬\nTõe÷','îrñ˜ûžIEÈæœ8a&¥2ì­ú‚EŠQ¸÷œ¢','',0,'?'),('çb`K¬\'×Šì»œçâK','wp-includes/functions.wp-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õúÞ¨Æ,À¸V!Æ)p','Y|kƒFå6a§£[Øtv.áêK^ÇdÏMí)onD','',0,'?'),('çcÚ\nÀóŸ°]R­¹‘','wp-content/plugins/instagram-feed/img/about/team.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔÂ•ÊHØE*ÇX–˜L`Å','ÞŸã¡+ŒëÈ/Áä‘øÔŽcgu_³`©êf','',0,'?'),('çc±Z0{ÇŸK~¸v¶','wp-content/plugins/really-simple-ssl/testssl/serverhttpxforwardedssl1/ssl-test-page.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨¸ÜaÌ0ŸÁš¬ø&–-','ÓªƒGDfš¥è‰:ÃÚÈlkŠ#²L+J5B¨Ö','',0,'?'),('çxÎ”)NX3u/@Œ4Yª','wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','øa+ÄU­[*œ·ùõ«','1xè: r$Ã“˜Ñ¯ºÊD>`°K~¤ÊT6lmÏù','',0,'?'),('ç…Lb.|~¯ZÿWF\0i','wp-content/plugins/wp-mail-smtp/assets/vue/img/check-circle-solid-white.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xÉa!ôKS!Ä$•÷','ns§Áå´6\\ÿ`¿¿êc)‰zr1CRÈü(ÁÒUØ','',0,'?'),('çŠ’b€©Bì>ÑõTæ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacAggregatedSmsReport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ò&ÅïEÒ}/o½Á•g´','ÞÐžù]i·ÌàDž9úäìARÖ¯0_Èú;¶SØª¸¿','',0,'?'),('ç”Jú¡Ñ‘e÷\rXd”Ô$Ý','wp-includes/class-wp-customize-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š)äsŽ{ý»óCÙ—òÝ','~r¶-r×ØÜ	TüzT¡[Bº}˜fï¿»ðD0ýyŽd¼Þ','',0,'?'),('ç™ûl\0­vž;4ÒöEH','wp-content/plugins/wp-mail-smtp/assets/vue/img/thumbs-up.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[–w°ÂòG¼\Z±€Óä¨úê','ØÐìÄ™”ª*x(ßÕø­þþ‘\"Ó‚&Ëß(Ÿ÷\0','',0,'?'),('çš\ZÊIðó˜˜í°Š™é','wp-includes/blocks/social-links/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lÿ	af\00M/ßÛú\Z—','üVM7˜|ïrºìµ@\r{1w6Áí{&‘…m[rÛÊ','',0,'?'),('ç›ûß˜PzûÇ+„:ŒîÖd','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/PreconditionFailedException.php',0,'ò	b)ØäÉ9âøh]å','ò	b)ØäÉ9âøh]å','k~Ï	¯ðRJ\0Äõ…tãÇD<œÄQ®Ô[L„ic¿','',0,'?'),('ç¦œ‡ªiþÏ‹fb—~G','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Source.php',0,'ö°í8Åã9rÊ)yÄ(Çªº','ö°í8Åã9rÊ)yÄ(Çªº','~?¸³m%/\'\r‚µ\Z&}ïUµôDè(\rƒ²Œ#%YÀ','',0,'?'),('ç¦î4ÂeÿA‰Ì\"é@,J','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetAttributesAttributes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kùÑ{°þ‡öo®ì\Z\nèÇ','ãï…jçû±dïE@ùFy§è~‹J·%E{ŒMs','',0,'?'),('ç§r®*†Ð«ÏÎ\'|µþ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/SignatureDoesNotMatchException.php',0,' y<¾\"ÉPÏ®EãEÔ',' y<¾\"ÉPÏ®EãEÔ','Ó\'¬Þ­F0æ0ü›YôL±†_aÆÌz','',0,'?'),('ç²›b¹\"WBK<&ðŸö‹\"','wp-content/themes/Divi/js/custom.unified.js',0,'émÛ…%_[îº!¦ÄA','émÛ…%_[îº!¦ÄA',':é‡x|yÓ&÷„Ö¸2M@À2«æ}ÞìVßMš¬yiÌ¶','',0,'?'),('çµ´÷z:E¨áˆ-Ð$ÔÏ','wp-content/plugins/updraftplus/includes/Google/Service/Autoscaler.php',0,'UÓo¤;cUVõÊˆhï·*','UÓo¤;cUVõÊˆhï·*','ÊéQ”RÕnçtíð\rÌ`a\nHð®þy>5Âw_ Ï','',0,'?'),('ç·ábl.«™y¦çœƒ~','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/fi.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÎÒobáÀ,GÁ¸ë÷ðÀ','N}|5°¾PÔtÆNzg¨vä¶\'Do‰î/ÕNKí','',0,'?'),('ç¹kNí·>tñä,õÑìý¥','wp-includes/blocks/file/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ýx»ûMÙø‘T‚o','Hú4|QG¥›F¥]ê¼iuÈ>bL.NQ`g}\r\\†','',0,'?'),('çÃÕKÿg›Ðå‡o#ç0','wp-activate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m¯#w:m’œ¾2´©A\"','Ÿ¦ì^>©*Ñâ˜çr©¨ÿI+ÒÚ{ŠÑ„ÅU»bÇ&ð','',0,'?'),('çÅ‰û	iàö¿/Ð­','wp-includes/formatting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e¥xJy\rštc\nòÿ	]','ù\02¦îìŽþèÈäi·sF8”ž™,—ëZÛÀ+Úc','',0,'?'),('çÈÌ*Qb£-ùÃï×ô¨Ç','wp-content/plugins/wp-mail-smtp/assets/js/smtp-admin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹Ð‰ü$î×°Š|)Ecá','üªüßítŽ¤ G}A*&`^¼‚­„ëPà” ƒ','',0,'?'),('çÉ±0,x(€Šï!cüÄ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/BulkOperationException.php',0,'ÒÒ’I…‡µ™\nï ÒÄR','ÒÒ’I…‡µ™\nï ÒÄR','¯:c¢ûƒ\ZÑ–\n	ÿàØ¬MÐ\r£\"ÅN`G{ÔŠ	ð','',0,'?'),('çÏHâ¶ÇÍlö±{!D#¯!','wp-admin/js/color-picker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”¾‘£Þ\ri)]fãm§+eí','i16±:Ãô	nÂs!ÌF­îúnÁÿA‡ÌR6Š/±NE','',0,'?'),('çÚÝL³.dDvìù','wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nµåÓîaH{Ú¶Š¯ERÝN','Õ¿õÛêïo\Z’º^ŒJº¾UèBËlò§5›ãã\n—','',0,'?'),('çàFüZY¿ÑC8À3E','wp-admin/css/colors/blue/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—J½¹.¬&xDòÀ','v“=¥»Eâ—ÈÝ.¨äAÍ­%ë(DD4uisµ','',0,'?'),('çàux7ô\r…ð\'t‘¶Q¿','wp-content/plugins/really-simple-ssl/testssl/cloudflare/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ÝË­ËÓÃ’Wv8”qGP','wãÞã\Z‡Û\\Ýl•8UÕÇ‘ÅÝÂfâÀß{·‘\Zš','',0,'?'),('çâæ‹³Ä‰3nøo®9‘','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/OpenStack.php',0,'J<þªØÓ§sËýv³L¨%','J<þªØÓ§sËýv³L¨%','¸üQr&§¥ÌO¾Y¤2â‘º^Ì²%ž(4u¡ý','',0,'?'),('çîP+!rë~j×Ç	í/tã','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/IllegalVersioningConfigurationException.php',0,'u¯ü0ÀŽÇÞÂÊ›yb8a','u¯ü0ÀŽÇÞÂÊ›yb8a','p¹WX]\\ÌDE!­Ëh¨œ)ãø{go½ýØ@Òv{oS‚','',0,'?'),('çõ =0B…=ºŸz|‹¢t','wp-content/themes/Divi/core/components/api/email/SalesForce.php',0,'œžÔçÆ»ª‡rZûv','œžÔçÆ»ª‡rZûv','x°+ùÓ¯f•åtÒxv&…õpuß×0©¹','',0,'?'),('è¨Ã·‘g$ë”õMâsß','wp-content/plugins/wordfence/views/waf/option-rate-limit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E,bÙ¿ÊŠ•N¹þE\\','|JÜÚ\Z^(á–•£™×Œ»xDsXâ¡å8Ûèˆ?ÈR','',0,'?'),('è	rí\n½ˆª•°	[»','wp-content/plugins/fusion-builder/inc/templates/nested-column.php',0,'ù²û­ù&šŒ}ãxå','ù²û­ù&šŒ}ãxå',';~Ï÷\"t™8[ý>å,tRçï2$³÷fœP\\ÔBº','',0,'?'),('è\r¨Q—ëQ¿ÁŒ|óþžÕ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/Base64DotSlash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4õ€Ààî!sþp¦¬÷MÏˆ','ÖI·n<u»hïõD5Q“ÈËtÈ@o¢¦øIkhØ½~','',0,'?'),('è;¯¬¥¶Ä\nÚi*óVÃá','wp-content/updraft/themes-old/twentynineteen/template-parts/header/site-branding.php',0,'„¸Zm¹o§Ã«ƒåž…ºì','„¸Zm¹o§Ã«ƒåž…ºì','­B”™.TÛ\Z·¨ž{¼1>Þc­?¼+ã{Î¤ÉYAv','',0,'?'),('è%y>}HÃoÚæú(6','wp-includes/js/jquery/ui/core.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Iúg{œ×Ýò!ÜS{5á','Êeý¨%Ðh«\\fÔç×è»™tuvôŸÑÖèœR','',0,'?'),('è>Åý7úÝL¿ôÎò…Á','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/RuntimeException.php',0,'iB»§Ê·Aë.\\äÓ–¨ •','iB»§Ê·Aë.\\äÓ–¨ •','z–Ïƒ!ËL,ßN]vàYòàÂ…­ª=KoN—ÿËÉ','',0,'?'),('èB­x\rÏÛ4.?‡þ½Ò','wp-content/themes/Divi/includes/builder/module/FullwidthCode.php',0,'Œï­…öVb›É\nÛ¥','Œï­…öVb›É\nÛ¥','Öo#XÊEÚ ×|‡×øÿ¸ü\"¶ÝOik‹Ý,Á€ù<Æf','',0,'?'),('èC	ÈÛcHkÔ`×XC»','wp-content/updraft/plugins-old/updraftplus/includes/Google/Http/CacheParser.php',0,'wÅÃOTÓ| t±h$òx','wÅÃOTÓ| t±h$òx','›È¾ŽWÜÍp*Ãó;z‹«íåJW{€ãæ]ilc·','',0,'?'),('èJˆgÈ»òf#Î.Ûš','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/ArrayLogAdapter.php',0,'|Ö\\ØÍ¶jh/ß4´¨®','|Ö\\ØÍ¶jh/ß4´¨®','*&… ;~\"Œ§­0ôFÜ©ÊjÝ¬‰\Z¯C÷M¬µc ¡','',0,'?'),('èJýœ‚ý±F¼Gñ\0º','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacBlockedContactsReason.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àiýÄ‹¬Æž&ØJ¬Ý(<ú','÷½ÕQÚ 9¢Õ2îec@Á¼NÛ&YaÊZjä“žèî¤','',0,'?'),('èSHLenPîq7¾Ä‰','wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f‡î‹´Ž`çj|£yþ','iú†OGi„¥•F|4 8Ú™Vñ×jî\n#V-L','',0,'?'),('èSÙI’›ã#¸µ )|','wp-includes/blocks/quote/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ô5Ãò€UƒÜb7­ÝúØ','åT‘~hqOLúgLÔîˆÉÎÌ€;l[0¸\" ô¿','',0,'?'),('è[tƒ>†òmÐº¹Ú0','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DocumentError.php',0,'±…`ºìO‘vÜà°','±…`ºìO‘vÜà°','ÑÐI|zìl*\ZUMëo-³L„²}Ë,`OôÜ·Oí‡Z','',0,'?'),('èb+Âù÷a©XÆÇâX','wp-content/plugins/wordfence/modules/login-security/views/options/option-ntp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Î!h˜\0,÷ â•€%','Ëƒ\\B\nìâµG/Í‰Cwš†Ô9ÿ,$¢ŠÅJ!ä8&','',0,'?'),('èfõi¿`¸=@TµçoÙ','wp-admin/images/spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÕLõ\nD½\nÊoÙ‹ÔjË²º','zÆ„à\Z\"ÿ²n\Zs²(ÎU¶/~÷7º€F«ø^Â…ã','',0,'?'),('èm•O|B±LcâA›@‘','wp-content/plugins/fusion-builder/inc/templates/options/upload_images.php',0,'i¦i~wú|9I²«’´ïú','i¦i~wú|9I²«’´ïú','JÏIfPf÷O#süÇƒÕÑíŒ8O}w‰š¥','',0,'?'),('èpfxFlc™³94\"|îð','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/BaseAsset.php',0,'1Xw?Ñã·Îm\\‡‘Á·$','1Xw?Ñã·Îm\\‡‘Á·$','Ð“ pÄ©(cë3§oÙ8ø%B5Ih½só¶LÍU','',0,'?'),('èwj0‚¢67˜³„@ùT','wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"êŒ2s7¬ø\\ïi#—ËE','aÇÜØ„ÓÞt¹ÀWñÂ	Ì3NŠ\ZÆã`x†hIÝ`À','',0,'?'),('èJ‰Ùåy”ž0mì`ä¨/','wp-includes/class-IXR.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜É0¼ãàC`q¥xÛü',']ÍÝñzïpŸ€qŸN\"CKWÇä›é´›‰øcŽôM','',0,'?'),('è‚>A˜N–÷ô&FN‰I','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/SmtpMsa.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','î`«O<¢îJ¯nµZ>','ª€]“›}½Ä,åx“¤T”W?©5Y9°©¬óí€¹Q','',0,'?'),('è‰ï¹q•æ8OºÏ;ÃA','wp-includes/blocks/shortcode/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Í»ô0EÌÊ<í¨ï#é','IDÒWó=Ú~7÷¦Áõ(²­¿3E»¼ôb$@x`Ñ','',0,'?'),('èŒ\0…]¨pÝÒÞ‘ê–	\rG','wp-admin/css/customize-nav-menus.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˜!ž[­üM7qþ#ŒP®n','F”ºÍï7z+–X³}fˆBc<çCUð<‘Ý€¾Í','',0,'?'),('è‘÷sÙXÒ3¶ºýfÊý$','wp-includes/blocks/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÏOÿ@ÀjËÔÏ?%W3 ‹',']u|àš’XŸ`®ŸÞ\ZÒ•“ H+a”âfx’ð˜Nñ£','',0,'?'),('è—G©xDÒ·BÎÏ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/extensions/import_export/extension_import_export.php',0,'&Seûa#~m]\"Œàr','&Seûa#~m]\"Œàr','Øò6œÜPÐ‚<RÄ¹‚Ÿ0,u´û	µŒu±b','',0,'?'),('èžÈP³¾¿ÊÏ<p\ZÜ*Z','wp-content/updraft/plugins-old/updraftplus/includes/updraftclone/temporary-clone-dash-notice.php',0,'ÜÃxÄ5v6æ3ô~¿g','ÜÃxÄ5v6æ3ô~¿g','äYdÂ‘…«|”²`´µÑÝ`\"Vì€øª¥‚ ý','',0,'?'),('è¬¤já¶Ø,ÐÓðÛ=>','wp-includes/blocks/site-logo/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dÿƒ±6;öê9ãÞ<Œï{','I\Zù5á¶ò¹—xºJ¨?¢–6ï’ÑÒàjO˜Khx[E%_','',0,'?'),('è®Ô¶KF“H—˜ARä','wp-content/plugins/really-simple-ssl/grid/css/grid-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ëäõ¼°õYø{2%Û','bùa‘ñ´_?ÿ´‹\rdìJ®ZÆ²Ö =t\"{}²ì\"','',0,'?'),('è¿DÙŠŠ\Z\ZR™u¤™’','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QìXí†Â¿:ÇM*ÓîB‚','-#ue[¼ró•Ìå“€}MÏbíg‡ëŸzàQñ4','',0,'?'),('èØÙVPˆŸ*GU*¼<—','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/AddChildDomain.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7 oAìUcy«ÈÝXY','ÚØÙ56+I·\'Ò¢ïAœw@­¯Ò}8™˜\\èÝW‘cÉ','',0,'?'),('èá›ÅÁWÎã¶é:†]','wp-includes/js/dist/primitives.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óTi°ô|fÖÊ6?\rS','”Ç8{÷»¥Š°£Mz~\0Ke¨–?.‚ê¸û|nËoÝ óU','',0,'?'),('èãÓªÿ„œY†ÿtÁÄò/{','wp-content/plugins/updraftplus/includes/Google/Service/CivicInfo.php',0,'¡ÛŸœd[=¬ÆLG19€¡W','¡ÛŸœd[=¬ÆLG19€¡W','¼¶¡•utf\'¢¸`ï\'7hE<bV«1²ŠÌ›ö¼','',0,'?'),('èò7<_¸^ª:¢Hã£˜I','wp-content/plugins/duplicate-post/src/ui/newsletter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹0ð#¥pÒ5Ox{Æ±','@ûÃ­7È5¢Ô\n*ßÝé\ZÉéÚ*«ˆ>5¾;¤²=Ä','',0,'?'),('èò<|Æ†3#§`®}Š','wp-includes/blocks/separator/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üƒ]=¶u\'\\DEÐT÷','.f›L½Ž]ËÃƒ‘Zbé|œ%‰{ÊM8ÃÆ„÷Qëp2^','',0,'?'),('èò‡òQËoµH*¹‚À(ï','wp-content/plugins/wordfence/images/sort_asc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',¸»I§Å+Æ¾ êú=€ü','d¹CìT¾èµÚ…îe&,)Ñ´úàFGî\ZdãONÅ','',0,'?'),('èþ„,­\r¼=½‡¬A','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/TransferInterface.php',0,'”‚l`\rétâiîqZ','”‚l`\rétâiîqZ','Žîÿ&ˆöè/ç‚÷zå#ŒÑEþ7M>Ëf™º/Š','',0,'?'),('éÎîW’)l<º€uÈ9“','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_rs.js',0,'“í_NÔ]uá(¾Ë','“í_NÔ]uá(¾Ë','áIÌ?eç²ÞLŽGt•Meo‚.ÌgÑMNˆ<š','',0,'?'),('é±U©MU¥­©$ä','wp-includes/blocks/latest-posts/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pœ-•¡ÿß\'Ñu\ZQ¥Õ','Wïâ¡æËé!kQªÌ%fæIÄ\0’Ù¹çr?ÊÀ','',0,'?'),('éP<ßYÝe¶§	ƒ«?','wp-content/plugins/fusion-core/shortcodes/fusion-fusionslider.php',0,'9Þ\Zs¾€b—\\ƒFéJÇ','9Þ\Zs¾€b—\\ƒFéJÇ','XhÙXtU¬ËþÀé\0ýŠq}ö³Ô:Ð´¹?‘.)ì','',0,'?'),('é+ê‚3ô»pU','wp-content/plugins/wordfence/lib/wfOnboardingController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yÿ%ˆÌ…˜Å³¯<ºðƒ','Å”WF&´x\Z	²\"¡gÒìß Ù†;¢=•D¯Ù—x','',0,'?'),('éYÄôËË\nkg$ ü\r,','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/ChunkedIterator.php',0,'ŒÝ~‚ šjm±d','ŒÝ~‚ šjm±d','89¡ÛÙõ8`± ËÕ£ö±À£5…²®ôi-I\Z‡j','',0,'?'),('é&9­\'Ìê§O·èâ','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Utilities/Logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ct„[<-òâÈZÒçzGok','gŠ¥€	¹ˆA’ ¼P¬±ËöUÁyégU×yš‡Œžwt','',0,'?'),('é!2SízE³?Õ-S¬›','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersMessages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²²—¾-EË¦f¾jñ5','Àý³(é; 3¯“sIýÑ­ÜõÜN<·‰Ÿ4öçt²×0 ','',0,'?'),('é\'îý€¶\n°˜CldLã','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/AccessCondition.php',0,']žÔ5—ýnš< Ã•lþ',']žÔ5—ýnš< Ã•lþ','Í˜ÙaŸÞJçS“!ÄmM¹+Ca!JÒ­ÝRê(','',0,'?'),('é,ÝB¿€—Ž„MÈ¤','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/StaticClient.php',0,'„0œ‡_ï–´çs7=IæÇš','„0œ‡_ï–´çs7=IæÇš',' y^$‘éJš²zç¥z1È!xƒ\Z¹ƒæðñ†','',0,'?'),('é1TÄl—é”ÞSQï®êQo','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/MultiTransferException.php',0,'r–{Œº_dùà]Ø£¦	To','r–{Œº_dùà]Ø£¦	To','Ä\'£¨%›G2Gïæ0®ql†áOŒÛLmÍ`ý™äÃ0G5\'','',0,'?'),('é2÷«é¹äðø»\'ÓM','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*•IvßÍºs­,Ž\0¶1Å','c­šDˆV--9óÔ­Gïë1+\Z¶2cG#\0iOì	•','',0,'?'),('é3îÜO¡†ó-râØâ™R;','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssImportFilter.php',0,'’vÄœL}¾ùÀ€»8o8','’vÄœL}¾ùÀ€»8o8','þ®8éŒ;×T‹ù,DÂáê2¡z*{€Ç0šü€C','',0,'?'),('é6ï‹õm²I‰ˆù¡<','wp-content/themes/Divi/includes/builder/scripts/stores/window.js',0,'À¹‚ægU”sRr“L‡Ðx','À¹‚ægU”sRr“L‡Ðx','µ*(&øŽžbt0÷iªÉÍeK_ƒ‡kOƒ~ŸŠ','',0,'?'),('éFÎj!Yé{.J=,µ®','wp-admin/images/stars.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[¬à™><õk²{Òì(‘','/	Þï\"…ÚÀˆFaì±”<SYÚÃgÜ¬ÐØ‰FŒ×@','',0,'?'),('éUíŠu*VªÌ¾éÿÈ°f','wp-content/updraft/plugins-old/updraftplus/includes/class-storage-methods-interface.php',0,'þê`ŠÓÙöàºôƒhÿë','þê`ŠÓÙöàºôƒhÿë','Å[\"<{hEL˜ac@ÉTNÜ-ˆc×PüÔ>7µïž','',0,'?'),('éVy£Mb“¹xÈ§×v','wp-content/plugins/fusion-builder/inc/dynamic-css/dynamic_css.php',0,'¥]ågdh×–ëÌÿùæí','¥]ågdh×–ëÌÿùæí','óíç£æÒ·-ÚjŠ¢ñ–¦[¡øü.!á]ó¿ü','',0,'?'),('é]÷W/>ï}<8è VFã','wp-admin/includes/theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-mÌÒÀÌÃüáÐù#©','…ôù\"£dgWÎ-Ø`wÉ…Ð3ð¸ÉŒ/Ä_1ÍÆä','',0,'?'),('é^.—jT}ù<ÞŒI¾™','wp-admin/js/accordion.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T“ê Ä·R×Œq¢AÈë','uýÝjÐh‚&Q§ƒ\'ƒ+ÜGÒ—*!9¹¹1$W„õm','',0,'?'),('é`ñ‹™´j0©–ª][—','wp-content/plugins/worker/src/MWP/Stream/ProcessOutput.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùðÊß3ö:žœË˜r»w','ÉÐ´ê±ñ„íPL÷\ZÚáA‚aœ¸ûOsé©Àudæ','',0,'?'),('écÍ‡œàýÇÃ54Ç¾QÑá','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/PushoverHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pl4	ÅµÐ2qƒcù','­õÔ¡y/Töpjºåd+h÷©‡¾@—Ûqñ‚P½2¤','',0,'?'),('égÑÁ¶ÿU)\rR(â','wp-includes/js/dist/is-shallow-equal.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á)j#¹\Z>þ»½+Ñ„d','{{àž‘2„î\r¯È¼C\r8«y©1R‹BÂÆÁ.X','',0,'?'),('év;t)µÚ(ð~Ð%ï:Ô‘','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/print/plugin.min.js',0,'ŸŸ‰H´HŒ¦™¼}û9Û4','ŸŸ‰H´HŒ¦™¼}û9Û4','m\"§nõÈ„R×,h‡ÅJhCàû…¯¸abx²ºþs','',0,'?'),('é|:«êxZ~±*×wlø','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nàÉÑÜ[f®•0Þ=GÖ','Î[G¡füË’NÛéˆö	rGòÆ¬¿šŽ.','',0,'?'),('éTáB3º›GöÞ{','wp-includes/Requests/IPv6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔñþªnÒ¤&­iÊ˜\rÒ','þ=Øíln&ÎÑø¾„çÄƒæJÇÓ—µ‰£~ÄÄÞ÷…él','',0,'?'),('é‹+Ž˜e2˜xÑq&ð_}','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssEmbedFilter.php',0,'EàW‘†•èEõ²X$pEË','EàW‘†•èEõ²X$pEË','‚§Ï«ë–î\'•W?	E¸ôÚå»T°à#äØâ[†I(ø«','',0,'?'),('éŸ€ÉowÅP¤ ©{^Ë','wp-content/plugins/worker/src/MWP/Crypter/OpenSslCrypter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T»Dƒ†»†-=Cw','hD¥Ù¹ê©Vê(<ñ¦!!09“˜õT0“Y…i','',0,'?'),('é »ÀyN<Ž €9€o\Z<','wp-admin/js/xfn.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<×>B’Žû25Š\r1U*¨','O	ï†óh^dLgzòòÌIwúvÆ„aZ1ûî','',0,'?'),('é¡tLHŠ:§ìP(ÙÐö','wp-includes/css/dist/widgets/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½gz—@ð¥A‡åz‰QÝ8','Ê³Û*Á\ZÆKã@Â¸0±VøHÕ ð}yÚ¦ƒ_>Ïu	²','',0,'?'),('éªÊm¬Mt¨†ÛW³B','wp-admin/images/align-left.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\ýy0Ïúd÷Zòo.hžÔ','é_]ê<#¶SÎ\"´B^U4_ÝQ<!@šx?J$®£KÏ','',0,'?'),('é»cï8ÿïx«ïåÏµ','wp-includes/blocks/preformatted/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å¼)1n8.R‡œí¨*','vš[Ëâ7•/N@3)}ùo£xí©ý¸ìtØ7§Nk‚ ','',0,'?'),('éÔÞât“þ˜ZÑO\'ƒ \n','wp-includes/js/thickbox/macFFBgHack.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’È°gï†­×W’,/u´','RwË/à¿h×í&qèÞ]Z¢½_óÄÖNgyô•ˆ¹Û','',0,'?'),('éÖçÙöV,E@†X‚šy','wp-includes/SimplePie/Cache/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P·¦8?QÐÔh×Šç¢','~Å`Ÿöå«ŒÍ<½õB\né²™%]ûè­X}\Zi¶¿','',0,'?'),('ééz63ÅD<«[tÊË','wp-content/plugins/updraftplus/includes/updraft-notices.php',0,'ƒ’¸˜µò‡‰Å:Lá','ƒ’¸˜µò‡‰Å:Lá','–œÂÓ¥ÒŒµ=í€@úŸt\Z/Å–1¨ã¥ÿÿOòq–','',0,'?'),('éõf‡ñ¢29\ZÃçsÉæ~¶','wp-content/themes/Divi/includes/builder/feature/ajax-data/AjaxData.php',0,'på½×7OŸÓ³T»ÓM_','på½×7OŸÓ³T»ÓM_','{ðÜùø\ZÙÜ‘µU—\\º«Y\'°C¶–xæ„©QZ¨?','',0,'?'),('éýú•KíŒñØ6©Þ!T—','wp-includes/blocks/heading/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_žFâìÊ¨`´þ€ˆ\\#O','jC,æU”Ma£ã¦\\kdDßÎwî„i°Û­²','',0,'?'),('êðT¬yb˜ÛÏÞåþá','wp-content/plugins/worker/src/Symfony/Process/PhpExecutableFinder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èÍÒ{§UiyÓ·…‚IY','×Ãh‡3¥\0úTU;cŒý9°ØNçJÌä‘ü1€<ÿ','',0,'?'),('êkLN\0ôç»x6@','wp-admin/css/list-tables.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p÷>š´¦PµÜÎØt_','Ÿ~±7°ôH{’üÅó¡]»\r:ôÏ \r¦c¡œµ','',0,'?'),('êˆ\\çí,zvB‰6{¡„','wp-content/updraft/plugins-old/updraftplus/includes/Dropbox2/OAuth/Storage/WordPress.php',0,'qƒ,íSƒ”·ë³˜Ö€!ù','qƒ,íSƒ”·ë³˜Ö€!ù','*7ë^¦¾Šìb_Â(…Ã¥v#¯ôâf…{	ó¿&§ì','',0,'?'),('êÍHºm2‡Ú»ÚÁÊ¿[','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/af.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡ÆÁ Ê“m›RÂ!T÷w‚æ','}„Ðœ5dzOD–Ä¹Õ†°KXØ([˜·ÄèFŸø¹“','',0,'?'),('ê-.§´x¶É¤àR»Û','wp-admin/includes/privacy-tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®%Îd=o’V”x¤¾Å','øø`(‰¤ü-“n2î\0n?hcñÉÏY˜â-†»ü','',0,'?'),('ê0Jé”ÇÁéÍfx°#X{—','wp-includes/sodium_compat/namespaced/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']ÖmÇwè/æ\\Æy5Ú','»Ét‰d7–Hñ†}=·ù.t“âCw$–`cºÀ\'ü','',0,'?'),('ê4Ê×çº2‘)A.;4Ñ','wp-includes/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Q	ý!@áÙ§T\r','	ÐZ\\LÏéô\'bÉ%á¹i$çõúò\Z\nïµÆîF®~','',0,'?'),('êM(EÖ@·ûûf0•§Äÿ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP256t1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','®´Çoê÷åÉŸGuÙ\\‹','½+÷—nÙÍw…‘X¨Þ––:˜¤lmh›/õ¡1I','',0,'?'),('êOõ}È\'5‘T›!\ZOÜ·','wp-content/themes/Divi/includes/builder/post/query/Layouts.php',0,'èÖkt™Ø½Èæ$Azó|§','èÖkt™Ø½Èæ$Azó|§','óhÓJR\r}\"ýxrÊSâ*CÅ²©°°£Æ¡QL¶‚•','',0,'?'),('êQÉAè	ð=HŸ¯7-','wp-includes/js/jquery/ui/droppable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/¿ò‰î°_\naýëGî—Ý','méU\'mUž7mýN²€ÜEFDg;èN…qÝÞ~×','',0,'?'),('êd\nºv;èO1:®®,Tn','wp-content/plugins/wordfence/views/options/option-toggled-multiple.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ò’¼Ð¾µ6¤Êþ¯¢ã','rÌ\nzÉè•é>¢˜½gãiÔ\ru÷´u<²ä›F','',0,'?'),('êdèI\'y¶¸ïÔÈW5*ø^','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Client/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—léß/íÔR{‘³È','ÁE0fÛqÅ=ë }öŒ#l«¯GnGÎG‹Í¦ÉFŸ','',0,'?'),('êi@|«å¡4:=n›Íók','wp-content/themes/Divi/includes/builder/module/Menu.php',0,'X5éØMžxx•=‘','X5éØMžxx•=‘','G:«Ã¨ ãIÃ+r©Tãä¬‰Þ\Z`óÒÕº€ Þ¾>','',0,'?'),('êluqâGÿ“—iu“ßTz','wp-content/plugins/worker/src/MWP/Monolog/Handler/JsonMessageHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Þˆ¡;ôzR\"™	óAHr','ãš­,ÔßaÆzø^HWEÎfíØRÆÎÆ®\Z®­¬Ž¹Ó','',0,'?'),('êr@¤ÈD¾‹ZÐä¯©','wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Š!Kå	5y¼¡S*','Îý¿ˆTy‡Oî%u;ÈUì“}ãgæü1Ÿï)˜ÝZÃ','',0,'?'),('êwÐ6?k‰_+×õRêòý','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/AbstractService.php',0,'»CßÕÇÿ@\\ëd¼PŒ','»CßÕÇÿ@\\ëd¼PŒ','0ˆÙyWb/Vb©±p¬*0:\".è:›QûöÐoâ½¸¿','',0,'?'),('ê}Œã³þ\\–ä^ç÷œž','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/WP_CLI/Migration_Command.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k<]^Ü´Çý›”³=3•c','*ù\nÄµË`Œ3Ôqï^°,,²Gã/Hã','',0,'?'),('êˆþOsûÁü\Z6I|','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CollectionException.php',0,'bB!~÷ÿü-È†ýÙ­','bB!~÷ÿü-È†ýÙ­','ï>¯€T±kHÁï~;o‰ELwpý‚JÃ\Z','',0,'?'),('ê¥²«2jEbgØˆW²xÛ','wp-includes/css/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M,ÂÇ|7Õš\"ßŽ\'“','Bû­±²³@¿{…»ðµ²­¢6\rœ$Ï…@’Ä­õ+«','',0,'?'),('ê™ºUàÒ¹4¡—\"#»*Yá','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3Signature.php',0,' ‚ë7åÝ[©Uüd ˆ',' ‚ë7åÝ[©Uüd ˆ','ÔˆLÞ{ˆV“P2èŠ.\0ÅJ¼Òp€+¨ÈoÚÄ&ìÉ­–','',0,'?'),('ê¯Ç‡¾ÆÛ4Ë“T`¡k','wp-includes/js/wp-pointer.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"ú%âðiÙ‡kmÛðâ','UÄXu™®Ç‡Ã)G,iÌÃm²µÔÍ5_ý²MT_','',0,'?'),('ê³Ë’!Œ~5w¼03­¸rX','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3Signature.php',0,' ‚ë7åÝ[©Uüd ˆ',' ‚ë7åÝ[©Uüd ˆ','ÔˆLÞ{ˆV“P2èŠ.\0ÅJ¼Òp€+¨ÈoÚÄ&ìÉ­–','',0,'?'),('ê´)¢û§ÞWØÅ “HH','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingSecurityElementException.php',0,'Ôý¦<n\"\0DR×>ÑädØ','Ôý¦<n\"\0DR×>ÑädØ','IâôûLÅ\0_ÈBqjòˆ@ðò™€÷Ä¥?÷¹','',0,'?'),('ê¾\0i’|4%ê{’p‡»¦','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/welcome/views/credits.php',0,'gê—sŸ7·[-¨ã©i×','gê—sŸ7·[-¨ã©i×','M&À?æxº˜KkFæÊQ ‰¶þÈêˆÍã+£§\0ö?U','',0,'?'),('êÁ\nCFê¼¾ò™]ÄÇ…á','wp-content/themes/Divi/includes/builder/module/woocommerce/CartNotice.php',0,'Øi{Ç’–ÿÐÊ”»é%t','Øi{Ç’–ÿÐÊ”»é%t','TôàsqÅŸÁï¢É,˜œ†¼1 ÷é¾ª','',0,'?'),('êÅãøþ¡{È7¦ÕªpÓA¬','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/BucketStyleListener.php',0,'p\"Ã+›ˆüÌo6°xŸÊ	','p\"Ã+›ˆüÌo6°xŸÊ	','.Gt=yŒ¯›¦DŸ¶¹ŸèÌÿ\Z×öŸÀB<ä','',0,'?'),('ê×Ð`IËí³,óy oŸY','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ƒï–8e_ÈTÝÃÆ½W','Ý¬ïISôP\"õa•» 7JŒ6çQSv„“ô_³y’','',0,'?'),('êÛÖòÙßCã€¿I™b','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterInterface.php',0,'Zj%áÄ,Yµ$ÌD#Ê9K','Zj%áÄ,Yµ$ÌD#Ê9K','1Ew/“Ñ¡‰ÉÏÁ`‚¬6’÷_¨/Ü«Â­Œl','',0,'?'),('êêcŠáfû”,ðÅ¯Šg','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MalformedXMLException.php',0,'ï?ç>ÓÛ\r²ìg JÕ¡¥','ï?ç>ÓÛ\r²ìg JÕ¡¥','-÷&mV°òÊ2\'bC¹fÀE•Ws”åÃŠ—9','',0,'?'),('êð6ÎZ—fMï£ó”;„','wp-admin/css/site-health-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦®HönMØz{¡ö\0ˆ','íçâç›@ÓLò ‰íD½Â.òÒI¾\0×ÏÅ„ý(côX','',0,'?'),('êöµ®ãëû|Foe¢†.Ú','wp-content/updraft/themes-old/twentytwenty/comments.php',0,'aÐ\\{@52\'\'q]sÊ','aÐ\\{@52\'\'q]sÊ','VýA²ZúŽ&BHPWžêªe“ØÕç?¹a06Ñdã&º','',0,'?'),('êöñÜÊÀä*\rh}h(','wp-content/plugins/updraftplus/includes/Google/Auth/Exception.php',0,'(^…ïA+ ¡–óëCr¶¦','(^…ïA+ ¡–óëCr¶¦','of¯ú­‰ƒ·#+{0 ¢ª_06ð¬hY¾ßTZ5NÉ6','',0,'?'),('ë\njÝea!è\ZWdq','wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓÙ¶Áöh«rdGŽÍ¶','³_7ì	2î¼”w-Tbâ	-³è710ÎµAÕ°áÿíf','',0,'?'),('ë\rD_É7K¢Gsp×Öðš','wp-content/themes/Divi/includes/builder/module/ContactForm.php',0,' J‘ï3YÅMhº È\'µ',' J‘ï3YÅMhº È\'µ','¯|®?y{sõôE´\rÛF{#\r/îÅŒÁ#‰ï','',0,'?'),('ë\ZƒÀt¥4œdn‚„…š','wp-content/themes/Divi/includes/builder/module/settings/Migration.php',0,'™B`aKÁç·²ÄMç\nù','™B`aKÁç·²ÄMç\nù','ó!!8Óþ+³¦Ö	A£ ¶Íg@m:•;\'ÎÝ3','',0,'?'),('ë\"Ët‘Ö3qÍ?À','wp-includes/blocks/query-title/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DX°púÞ\Z¬¤y?w“«°¥','nç´U¨ÛÄú¨Â¢ÕHüÈß¥ã×ZOçÒçhô?\r','',0,'?'),('ë\"ó·›^)²ÛD\'ÊÕ‘','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/IncompleteBodyException.php',0,'8hW?KAi½fì~Õ^‚‚','8hW?KAi½fì~Õ^‚‚','-sM‰ÆïB©\n½¨¯­<-Lß_zÅD\'Nh','',0,'?'),('ë-nê$.ÿ#g%Ä}Ý÷','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å ÂOÙ‘CHŒØ–sº ','pX˜Üéuc{ð-ãK×Ú˜ /OnE0œš„)JB','',0,'?'),('ë0žŠRðJ³{yíË£÷ï','wp-includes/general-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ñ¹0»\ZZÒa!‡$\npŒD','\\ãu–Á™ëçûÆËZ6‚ ÿä÷²ÓÎ¹','',0,'?'),('ë447Ø?|Ø,²¼\"^ð±','wp-content/plugins/wp-mail-smtp/assets/js/smtp-tools-debug-events.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—Ýlµ\rU*ÒºûÕxê£±','Q¸Ò’>§\\–Ó\"¥Ù%þ»Xü^Ô\'µþp‚&<','',0,'?'),('ë4B39q{©·î‡Âr','wp-content/plugins/fusion-builder/shortcodes/fusion-tabs.php',0,'rGô$§W¡iš˜[‰','rGô$§W¡iš˜[‰','ÉÂðl¨Û\n›hµ¹ €¦Y¨ã›eÛQ‡eÃésþ','',0,'?'),('ëF ó8Ç+²)ÐØrÝPè','wp-admin/images/no.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Èk¿dÉ$ùŸÜŸV7ðÀ‹','\nà>ÈÒ¢~hÄZõ¤ÓP\0ýU0Ê;\' {õ)	¬>','',0,'?'),('ëIA‚@fçAbž«¥‡','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceNotFound.php',0,'BÌZö—§ÝÓöI“^òƒ‚','BÌZö—§ÝÓöI“^òƒ‚','d¿zZb:^øÀ=\'S\ZÔž.ê*=Õ^Þwóã1','',0,'?'),('ëKB„ø‡\0g^¢•','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedContactDetailsStatisticsMessagesSent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!BˆD\rã…K`¼‚x8','r‹Ñ‰4Œ@ªƒ4¨½þ¾eÄ`i¯LRÇU€…Cß','',0,'?'),('ëL›nçÇã\"»j=¶±ÿÁ','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/BaseChecker.php',0,'Þfì&‚™Û»ni&au','Þfì&‚™Û»ni&au','’@\Z,šI¸ÑSE†ý¶I>šÖµ(SkŽ“1\0ëŽ','',0,'?'),('ëM\Z¥Õü—H³?Í²Z','wp-includes/class-wp-rewrite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£cü‰«xúX¥®C¸Ñu%#','Ý/#N`jÐR’1Ót+ªåsÛW]÷~SæÈëmÇ—','',0,'?'),('ëM¸„|ÎÀ12.6D©•°','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Payer.php',0,'âZõôÆã½8aÖž','âZõôÆã½8aÖž','ÏJÆ(ÌD`|þ¢Ç1 *©\r÷^vHJ“éŠ)¯í°','',0,'?'),('ëOIV”j2¼ÙÈc','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/checkbox/field_checkbox.js',0,'´=./ÕhªBç¡„()ˆ¾','´=./ÕhªBç¡„()ˆ¾','!W‚TJÈÉQ2–åBF½AQ¤6-xñ8¼ñ™þÇ','',0,'?'),('ëOÓ¿ú;¤=\\J¼zy','wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xloš)\r³ÞßŸ\r³\\º','Ù98Ìn| ½W@Ñ­|Ýƒv¨äp5¤Œ¹µl¢è','',0,'?'),('ëP´÷o>‰\"³šæ2ü¥','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹hKJ¨Y÷w>*ÌGÈ.','é½ÜÌÅö¨\\æb)È&U‰}§÷gEÝ•^èCº„KÂ','',0,'?'),('ëQFÔ0tè+¼öØá™ðª—','wp-includes/css/dist/block-library/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CÄ¼µã°¦hJ|:Ræ5','bÇ•MýT-[/\np“ Cw\0ú1üŽ\\K”‚¹¥ôyÔÿ','',0,'?'),('ëUAãNâ6à:pÄp$²k','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-patcher-cache.php',0,'Ã»×\r‘@~\0”Š¸ÈLo','Ã»×\r‘@~\0”Š¸ÈLo','ÀAø?¸sYW¯Ó¼<ì rÓ}kœÂGø9õÈ\\gùxÄ','',0,'?'),('ë_‹1t=qTµQ¤*«Fò','wp-includes/blocks/gallery/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œxPÑÀ­—F\rïÕ>','K»7G‰,.r.‹È¯Õe¶!A›óáƒ‹+0J5Ø4','',0,'?'),('ëa¶Žu\"9s?‚H€øÆå','wp-content/plugins/wordfence/lib/WFLSPHP52Compatability.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒü%1ùs¬˜¥Ã‹G','E”„WÙ³¦?Ì4èè…@U?¬0‰€ëbPº+æh','',0,'?'),('ëo[i†~³<‡*ÝNlRF','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Licensing.php',0,'¼C/b™ÈròìAé','¼C/b™ÈròìAé','Žf	Ü.ÙZ%Qñ¿ê-”®0Ñï—zÖ‚c±ù…','',0,'?'),('ërÔÔ\Z¹(\0—€$ô-','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiProxy.php',0,'æÚŠ¯I¼_–\rÊtWû0‰','æÚŠ¯I¼_–\rÊtWû0‰','ò3LCÅŠŸ&Q\0Ñ27ù,ÞƒÌê´»Ÿ¯\ZSÔ]','',0,'?'),('ëx°Dª.¶áÚm~<×2','wp-content/plugins/wordfence/images/ratelimiting.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0[›ìM±Éž¥yP°é','ô@ƒê­ôSÄçy\'èN+™kéBÀ¿3†J!PbÆ–•','',0,'?'),('ë…?‘?#†ñèïë—$×K','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServiceException.php',0,'‹£<}Î\rŒBÆ•70›q','‹£<}Î\rŒBÆ•70›q','Jð@£Âé¡J¤éÕëlòS4‹zÁC÷ÝkÉ85','',0,'?'),('ë†z¿*Nè4(ÔW¼Ù]ö','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php',0,'ßrùJºæ²ÛÆ·\\ãâL5h','ßrùJºæ²ÛÆ·\\ãâL5h','¯å=]\ríGl\"±>·¨’Ö…Ø!§Ø·.ye’6f*ë','',0,'?'),('ë‹ˆ¼‘µBù)ÔBž*í£','wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/http-message/src/MessageInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6âÅš[ôpqXž\0ìoÙŽ','¤‘Ó\"Y;«±~-ôi«÷øóƒê¶\Zn)Á²Ž¥yÞª','',0,'?'),('ë“’¾+}>cÛ,-Ð','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFieldVisitor.php',0,'	:¢ÍÕÂgJÀßÄ©Ý','	:¢ÍÕÂgJÀßÄ©Ý','ß@k*â_¾þrðd…¤¹:Ûä¨»g$T¿”|&È;','',0,'?'),('ëŸ\0â\0ßUº½ÂïŸC&','wp-content/themes/Divi/includes/builder/core.php',0,'Äµ „ÓY¤z˜IJ¸Ä','Äµ „ÓY¤z˜IJ¸Ä','\'/4˜d·õ¡à¤ÄñË¯EW¨âô¬ª´Ò\nNš<…\0/','',0,'?'),('ë­·\rç!z}MLKE','wp-includes/ms-files.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z¯]G€¡Èy¦Ü2D','ÆZûhÁx×^èþ/×Ëëî”Ù#ù”é–Z^N‡·_\Z','',0,'?'),('ë²ÔSÚ°p—GMÇ¯¨lí','wp-includes/css/media-views.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óêápˆI²EB]!ÇIp','ìà4LDÄ\0‹·/T1:HkZÓ÷3ÜúMããÐû0µó','',0,'?'),('ë¹2š|õ?‚]¸ø°Ï¸Ç','wp-includes/css/dist/nux/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÿ’\"¨š:J—šk‰','i?hÍ_\'Žæ\Z¢¾¹á_¢Â\n×Õ<a2¥Žm^q','',0,'?'),('ë»h7åù\nÛ¨’\0í†¬æ]','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/de.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ{üCéÑ¼4‹CžtçJ_Y','ÏÈd+B w\'¤î®£<™fµÒMüö\0qüî„1','',0,'?'),('ëÆ„’trò…ž–‰¯¡%v','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½Ðè2ô3~ÂÏ½¨›','dŸò°é™É3ß(ÍW¢Ct®s:RmýÞ?¶80r„','',0,'?'),('ëÈÄ×®FîêpÞs¥Ø4£','wp-content/plugins/wordfence/images/back_enabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡¡ñø]È÷£”ÒHŽÃ','¹¾¶9í‡¥)Rµ$px#¯q Žþ°£˜Ç{#LøOº','',0,'?'),('ëÉ˜ˆ/Ç\\Ló”­‚¢\rx','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Handler/MockHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆd	‰sU~_ñŽ?á9Œ*','\"Bz¤—õ˜h‹œTGâ‰Èˆ(÷\\r»Aç ëQkP','',0,'?'),('ëÑ™±¥e ‡¿‚üBM}','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/lv.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5:ŽÄ„¤k®^^‘ã¯','¥ú‘ £§f¥\Z&Ìö¶p>ð_Ö³€Í“Øª¢Ü¦µŒð','',0,'?'),('ëÙš ³‹1¾aoÈz—¦Õ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â~Žçì]àXOÖEÚ','NËG:] ª†±eÄLçsF¦=dYo‘?ÐewåzïYð','',0,'?'),('ëÝvAÀds½ƒ—µ®Kµ]','wp-admin/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xS‰þ‡vä€NÇ ›','øˆ u¹™Åý³yAóÒ®Bˆ¿â(ª¿B6†ˆÃ','',0,'?'),('ëÝÚiíÙýú®†Õ*áiè','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php',0,'ts¬6-Æ¯é°áûV','ts¬6-Æ¯é°áûV','*®›Ñ†Ö¦ƒ\'~wl	}g­\n%á \\®),\nÛAc\0øÎ','',0,'?'),('ëãYCàÞoƒoRÔäºž”','wp-includes/capabilities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c½Ó€BšMFeÁë>¥‰w',',\0ÌFÌ¬0ü¤|Ð‡é+¬½!4$1ðZ»¹R›)a','',0,'?'),('ëí~›¦\nº£ñŒµ­¦ì','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JSMinFilter.php',0,'5Ï#	fDììÂìý+GZ','5Ï#	fDììÂìý+GZ','e„pâ$czüô/¸R„µ}h\"ª8n½›8\n›¢$','',0,'?'),('ëòÿ¶ 5-HH(ÞŽú','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/Net/Socket.php',0,'`ùXpi+Kàh“4MAt‘D','`ùXpi+Kàh“4MAt‘D','w’kcÐîÐ$èy¥M±áÞn¹URÄ×Ûxz3Í‹Ö','',0,'?'),('ëóm^§Š×¸Ñ%Bq','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataKeyError.php',0,'qGl“X°ŒÞñÙå\Z³pJ','qGl“X°ŒÞñÙå\Z³pJ','NñoqbwÐ8=³ñDn7wÓ\0t§ÁÝ#}\'Ñv','',0,'?'),('ìÛ…nPE6–‡Tˆ˜ñÝ','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/Request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—KdWŒ¹ªØ¿EÄWø¯','ÜR•õW].daßí¼ÞÈs¹ÚJMœLq+p},ó','',0,'?'),('ì”Ÿ—×¼]PŽ®-«j','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Serialization/JsonSerializer.php',0,'òÒÅ?êÔ›ÉZá;P×M ','òÒÅ?êÔ›ÉZá;P×M ','jŠQ¸ÙHd’âéÝøÙ›Ô*Ã¬‚|‹åÍÌÃ\'#³','',0,'?'),('ì!Ì¤ï o1ßÚ\ZáBÎ','wp-content/updraft/themes-old/twentytwenty/header.php',0,'í0±O@ö2÷<ƒ÷³\ròr','í0±O@ö2÷<ƒ÷³\ròr','dyETîìÚIö× ôå`e¦(Þª)œÅ”hùYË¥ÉR','',0,'?'),('ì#ê‚¾Ï¤¨†{¿:œT','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListFiltersResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðÕ¢Š«Pê³ÀýÒÝ3','öŸMÑÐa^DÌŽÈ2ž¤­@)á™$HèSxå9³A2Î‘','',0,'?'),('ì*4¿Š0+<Ì–`i„^,F','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateSmtpTemplateSender.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ú]q?–VXV‰T¿/]','ŸýÍÿ\"{OW’*–ù‚%ø²†©å2|\ná«Ý„\'¼gåx','',0,'?'),('ì8·Ú§™ºs}ï÷Õ¶àNi','wp-includes/class-phpmailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'ÅÙF!;‰ 2ó±»±4Å&','G±ÄZG…ãƒí5ÿ_Üš…à¬XS[WˆÄS:9p@Û?œ','',0,'?'),('ì<AIcr5ËåKôÇ¿','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É¥v>ÎÅ#«‰!nÁ(','ÝDFUu|év©·/â]Ð2x_ERL2QlP93s	¶15©','',0,'?'),('ì?ØÔÞý·h›±ÒÎ;','wp-includes/js/quicktags.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŒÊµÆÙ>	%…nK¤{<5','mwdÿÂì^Ê‹à\r€§1 ^K–É(<nV¦ãŽÐè','',0,'?'),('ìD\rh}¼è¯¶‚!\n','wp-includes/js/jquery/ui/effect-drop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•[/‚Zo[ðÇ´ÑÕ/.','Ê§˜Ÿì^5¢•S]@\"œ˜ 9µ~G Ï[Tv8Õ7œ','',0,'?'),('ìDû€sµÉU‘oƒ”','wp-content/plugins/worker/src/Symfony/EventDispatcher/EventDispatcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!ÿ~6¦‡Q1#|ƒÅ^','o·9éÊ]R­;bA/\\Æó“<íà¯rA°e=4^ç„','',0,'?'),('ìPØ·úŒæ‚‡ÌºÆ´$@Ø','wp-includes/SimplePie/HTTP/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':pãÇd\'÷$Û/','¨ä=¼Dø¡=uç~ùJu`ô÷Y[´#*äÎ“æþ','',0,'?'),('ìs¡!\"f¾ÚÔ:°tú[W','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-slider-preview.php',0,'YõNMž¿é´bîŒ','YõNMž¿é´bîŒ','xmðiì‘þ{—ßÃßßZæá÷Àî*ÿs&#¸ªõHÒµ','',0,'?'),('ìxFjsê°Ôá¥~t(','wp-content/themes/Divi/includes/builder/class-et-builder-google-fonts-feature.php',0,'6yyZ¨Þ$~ˆøß6Wu','6yyZ¨Þ$~ˆøß6Wu','ß;rf €MáD/ÕL¿œ÷’;ísC/{­ÏÚÛ;5O','',0,'?'),('ì{VcRÝÆ>˜ÔˆAÄ','wp-includes/blocks/code/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R§ƒµ“›Ì•{C°ócÚÅ','”¢„á5ƒ$•%\n/ï¦ùÇãtÙæ\'W&üè’Ì','',0,'?'),('ì‚*»Â»&RaŸšyÍ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸e¾„„¹³BÙN:ÆÃ','³ªºee÷¤0N = ŒÔUñÆÃ*4rï*% ','',0,'?'),('ìƒ§Ï[è½\Z±ZŽ*lk','wp-content/updraft/plugins-old/updraftplus/includes/cloudfiles/cloudfiles.php',0,'ÀöÃÏò˜‰±#qÕ~‹àO','ÀöÃÏò˜‰±#qÕ~‹àO','àkûÖàÌk‡[±Úw×‡år·no°ºþIáÖ','',0,'?'),('ì‘ï¨_)+,AuÛ.\rÅ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/spinner/vendor/spinner_custom.js',0,'“sÞzxH·ÌÀ§ìE…Ö','“sÞzxH·ÌÀ§ìE…Ö','^‹5íú–9äNÙú‡¶´8_3Y/šR6sbA\rOFí¹Œ','',0,'?'),('ì…’/ÐåyÛþƒ”Å©','wp-content/plugins/worker/src/MWP/Http/Response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tP¬L¬\n÷Rù•¶Ú»-Ï','”*Âà%0\r•ô8«?¢®G¡B‹ç¹Y#”Ávh½‡Qr','',0,'?'),('ì¡çcÚÆ.DÂr¿ |öî','wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RÐÀäZÊ?f.Ç8õâ	','ÂäŠÀ.c%´c°*G~£Õ¢>€Ydƒ¢:7×j','',0,'?'),('ìª™Q2f¬ii6ÂÝ\nFÞ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Http/IUrl.php',0,'äÕË}éò9²^•‹]iÝJ´','äÕË}éò9²^•‹]iÝJ´','\nÉ<ð6íg[&—*€ø>fïœP&˜õV”¦','',0,'?'),('ì´3–DA‹ðtúI¦š','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/paste/plugin.min.js',0,'dX®Û½Ÿ•¥ózÒ†Ö«','dX®Û½Ÿ•¥ózÒ†Ö«','ƒf÷×\0W{?q½ÅÞÆþýÅæ‹×Ulà¾PóýÖ«c8','',0,'?'),('ìµ\0felÒZ›Œ;§','wp-content/themes/Divi/epanel/custom_functions.php',0,'³ŠïQ‚Ó\na‚C´¼1¸L','³ŠïQ‚Ó\na‚C´¼1¸L','6‘FPÜt!…|¼¡¡!Þqž\0÷jT»yõŽcøN½3\'m','',0,'?'),('ì¸ƒúvÈÛ6àš;˜~','wp-includes/js/tinymce/utils/mctabs.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë¡ì\"Yù±´“>xUå­£','%—Y}Ú¿ƒ&)û¢øMaYg‚¿ÐÉÜí*¦l','',0,'?'),('ì¹Ú!<üÜÓB4\ZS}','wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ªÉÏþªÌleÞ@1˜Ù-°','¦ª+	[P\rªi-ÊÂb0m–ŸºÃÆ¥¿M\"…#³¤@','',0,'?'),('ì»[ÝÎäÓƒ©ï2¾W','wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ[><\rÃw³Òèw¦É´','À—ôü¼T;æ™FëÈò‘Ê5@>XËs÷Fã#ª&å$','',0,'?'),('ìÀ-xÇ(ÅE¶oI„=Ý','wp-includes/class-wp-customize-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤`;éÿVï\'äõÓ(þÊ)','È<sèJmähaÝ!£Ü¯µ—ÍU\0(0¹D\'ùFÂ','',0,'?'),('ìÂ‘oÿHVð¸%‰lð,','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/vendor/ParsedownLegacy.php',0,'`Ð…¸Œå©“pƒ','`Ð…¸Œå©“pƒ','ºÄˆÙDïf¹®l£$£×\0ÀóüºÂ/¹®ûìo#','',0,'?'),('ìÆ¿­Žù•æoîF×h”ã','wp-content/plugins/contact-form-7/modules/akismet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦èôœl×Aôy\n{Ž˜9',';KE‘LUgÆz‚\Z’	¢Q0ê*¦v.dÂ—\nÿnê','',0,'?'),('ìÒ/jËéØ}¢,tól\n','wp-content/plugins/wp-mail-smtp/vendor/ralouphie/getallheaders/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷xoFï§pj9­Í[^ÂÃ','šÙ@ÖX[Úp:à¢Åj•Â:h¤ñxÄÕ(?ô¾ç©','',0,'?'),('ìÒ^?¡VkŠs3¤Q6\Zr','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MethodNotAllowedException.php',0,'Ê8ÏüÆë^µ$_Z‰\0s','Ê8ÏüÆë^µ$_Z‰\0s','kÒý_‰»³\rz‰]©PjWèaáâ[–H€E!4(xÛæ','',0,'?'),('ìÓ14qÈšÁÖ;A·=‚•¸','wp-content/plugins/fusion-builder/shortcodes/fusion-button.php',0,'÷Šåz½ÔÇa2†Aš5ç¥\r','÷Šåz½ÔÇa2†Aš5ç¥\r','!¼–Ž hwå`àQR7¥Aø÷šØL:ÔÖãvÖ@–%3','',0,'?'),('ìÕQ½ëõ™ß­›™ëÊ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/CatalogItem.php',0,'#Š@Š~¨;#hZ&ÂQ©I','#Š@Š~¨;#hZ&ÂQ©I','¢4 ²<øÖ`8&³8p´al÷ˆj§‰Áëf$','',0,'?'),('ìÚ–$¨¥¬æ©ÍsÕÑq','wp-content/updraft/plugins-old/updraftplus/includes/class-semaphore.php',0,'}\"™|e;^ý¡>¯qêì','}\"™|e;^ý¡>¯qêì','5N\r¯y\rêAj.|DqèðÒrþŽ(Ébb«®!T 8','',0,'?'),('ìé6êb$p#×{¸ö_6U','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/OpenSSH.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UmÅ~YTQ/¦,HI9ãS','æ“µÐð{¼Œúe-å[.Lì÷€3È9«7Aûx£¤ ÞÒ','',0,'?'),('ìýMÍÃbj´PT{å¢=”','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/Uri.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rÝÇ¼H9—£äÍ½Tsjú','›ØÐNëØ°:ˆ.ÁW9$ÚÁ»Ù4$…û¥wHu?Ñ{','',0,'?'),('ìý¥Æ¯Ãæ0~\rjA4u','wp-includes/css/customize-preview-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EùÛ?¯ónZ£Òïd¥-','G¨–i±\rlºiU^õªnêÞrmº5ðÉÎÛ»Œ\\l','',0,'?'),('í2\"”8Ö—mA|íš¡','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/uk.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F2æ/–V¤öÂULÛEÜ','?#oêpJxµêý /ÜÆ×¯zŠ‹³©9†¨Ð¼£','',0,'?'),('íD×ñ\r§,Eé½\\zV‘Î','wp-content/themes/Divi/core/components/api/spam/Providers.php',0,'‘œišÅÞiØ\ZjßÖr,','‘œišÅÞiØ\ZjßÖr,','N3ñ¹Ö‹âyÅ¥xWŸiÒ¢¯7¶8_Ö°Ëêº«±','',0,'?'),('í\\áSƒÕ‡–€8¸–;2','wp-includes/class-wp-tax-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êÃ®±šm/\'e¶28oÙa&','VJ0<¡Ûð˜\nŽ\nN…\n#å˜oÛœ4Ô¡}Ï ','',0,'?'),('í–øm×”ÔÊF@$€~r','wp-content/plugins/wordfence/views/onboarding/disabled-overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡Gy¤ÇßhOŽ}4¢ª','¾Ï «¼ÛG]À\r¬%G®åeê*²´|ŠS´A\\ù±\n|Ž','',0,'?'),('í\Zc;ä$³Qëè\"Ì‘Ÿ”=','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/StringAsset.php',0,'ªj˜âTó¹WM¿IúMe','ªj˜âTó¹WM¿IúMe','ñ”?ì-ÛyeÍP£/…#Ãõ³à˜ºˆµ‘¢öÚõñ','',0,'?'),('í),/Ã6á.ˆb?]4†ê','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Taskqueue.php',0,'s™ó±=a…œ9—óœ–9™','s™ó±=a…œ9—óœ–9™','tö\"Œµ³Ã!²u€Sücb¤PD-8TF!èä','',0,'?'),('í4î:¹ÒÍj;F?µõ.','wp-content/plugins/contact-form-7/includes/pipe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´èµã¨òãiÀ_tû…o','¤€J>£§bÇ¿qf‚}Ïµ†]<±x9ö4l³ëIFÁ¦.','',0,'?'),('í==…øƒ1d¹gìMs','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ko.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á’&Ù~ÃRÍÅ…ÍBçN','Ÿ×O¡`b#×#pEÙ©¤t›${þTãÄäPs?”BÔ','',0,'?'),('í>U‡¶+ûé,¥i)\'Ó','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/ResourceWaiterInterface.php',0,'Ú‚|ìAë0ãg®~übå','Ú‚|ìAë0ãg®~übå','¤fïé=š{m=ðÙ\"Ë’FHËX·…xÇ†eóöbiâÿ','',0,'?'),('íCàÂb\r—cþ\'Í³$k$r','wp-content/updraft/plugins-old/updraftplus/includes/updraftclone/temporary-clone-status.php',0,'?Í´Ñ–¦I¦»ŒCãÊ','?Í´Ñ–¦I¦»ŒCãÊ','Vd6ÇÌ/4þ(S#ú`oÓû¦™â	ŠÔcsý','',0,'?'),('íD¿ÂÏï¼ñ~ZbÓÈ\'','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÐÄƒd©êOÄ[ÇS\nc\0','^o¦&[Èl“”»2Zg/‰?>ÂÄP~CÆÁ·IÈ—','',0,'?'),('íNÝÔ\'¢!\rBÄj¶Ë3Ï','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\HÉÖ!#š¦>báW‹æ','–&ßxÁ†wÓÎ±hØÄ)šÅ“@5mßÒ.)9ßR','',0,'?'),('íQWf´ÙT¶(¢Z­—è¤','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateSmtpTemplateSender.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m\rø¬ÄÛøå$Ï[)ûSò','=0àÙÄË—&ç¶€Í.B”ÒütÑ¼\"ÌAŠ«[ (B','',0,'?'),('íQZ ¢OIî¹Ør‚KØV','wp-content/plugins/updraftplus/includes/tether-shepherd/tether.js',0,'Ù¬MU6Ð/žûÍàAü1Þ','Ù¬MU6Ð/žûÍàAü1Þ','\n¢Gúäí££‡³™–ý¥è¨#‰sÜìU¸WÇN','',0,'?'),('íW~ì¡º¬j1RÏæV¬','wp-content/plugins/instagram-feed/inc/admin/class-sbi-new-user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[¨}k»FjÝ5ÿ†S\'÷','aÛM)À(¹É©#–‹àZŒ†Šà‡µ4ø±|’B5','',0,'?'),('í]•!oÓ\nÙÌ|îõæ°x_','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-general-global.js',0,'ñªjïMo½Ô©5„ÅY','ñªjïMo½Ô©5„ÅY','ÅŽwçÝã7†]ïé4§+×06VZaÌÍ¢÷m¸|','',0,'?'),('í]š§@ƒ\n—«>ÄºîYn','wp-admin/admin-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S}d–¦D·ýTNÕ\"F¹','FµÔÑq¯”`Óë©¾öËér_“‘ŸÈ¨_†¢÷\'€œI','',0,'?'),('íf“a	Å\nnÈÀQÎ°ß2','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/HttpHandler/Guzzle5HttpHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ør±¯w†õ¹A3QŽø³Ot','·Ü=ËzæšèX^FXd#˜ž\\}ƒ4•rµœÝè áHM','',0,'?'),('íƒ\r!Þ—Ÿ‰‰âLý0ñ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceDeleteError.php',0,'q59‚ê,\rE[‘µä9+ß','q59‚ê,\rE[‘µä9+ß','-„ÇÅÕS\\Rk¼W“ÏÔ©¦ÆbcäàÛ ŽSÝæ‰©¬','',0,'?'),('íˆÒãI0“±B,óhÊ›p','wp-includes/class-wp-term-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´‡üã“$\0‰ù>cæ\rA','\\9îÃ†Wì->p±>\\Ä´GóµžöäA£\"KÀ','',0,'?'),('íŒ¡R“Û1”{•÷…í','wp-content/themes/Divi/core/components/SupportCenter.php',0,'9„ t]nÐ;HÐæ»\'Úþ','9„ t]nÐ;HÐæ»\'Úþ','Î4`©¥ÝcåÊgòÆ[P1@’þsº1Ñ¶„Å¯\ZÍ','',0,'?'),('í•7¦Ì*v×À»ÀM','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/SecretKey.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fº7Ñ8€(ùÈæÙ3y','¶Ýª¸^×£ÓÄXö™Ä’oÔJÒ*A0ÛJ!','',0,'?'),('í1MÎ:Cê\r6}Øa^','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponsePlugin.php',0,'E¿Éz{ó8;j¤É\ZaÔ','E¿Éz{ó8;j¤É\ZaÔ','\\’¥ÎF#ˆî‚Ñäa²mÕ\rXº|¯tARWê¤™','',0,'?'),('í£‘–îú‡™è³®]','wp-includes/customize/class-wp-customize-code-editor-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','éŸæjMØÑ–ÂéélM£‘_','“xFZŠKcßÉ37Ä`Ôª$jgñý]ÔQìÛ','',0,'?'),('í¤ZÒ\Z‡5\nÍj´}…@','wp-includes/blocks/buttons/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å\'2u%BppµrJpN5','¥DR19šËÚ¯K;‚êyeëãôÆõhþ\0.³eÇD#F@','',0,'?'),('í§F–ôìÝ÷·mº¹¬','wp-content/plugins/wordfence/modules/login-security/views/options/option-label.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|<â­>sZ¾K³z¾e','ÄÌ†;ån†EôØ!ïôZÔ\ZVéÔV HÛÎw','',0,'?'),('í§¤ZÅ\ZaYH\0 ›5î~ ','wp-admin/includes/class-wp-automatic-updater.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#\0òc%K\"éãvÍC:žU','.[Aö×„ã9F½§ž\"àÄDgA4t)Ê¡hÍmÇ!ï¢','',0,'?'),('í¨£Ûž=¹•üFŠägHA	','wp-content/plugins/fusion-core/js/min/avada-faqs.js',0,'2·d…èj:Q!…\rÈ–','2·d…èj:Q!…\rÈ–','¬=|ií¤ˆçhI8¼pýf~—«&Š)Ÿ!¨·“','',0,'?'),('í¨Ù(}¥Z¹QÙzÂˆžÆ','wp-content/plugins/updraftplus/includes/select2/select2.js',0,'æbã£ãµq(>(8­¦','æbã£ãµq(>(8­¦','\r±„ÞÑÓ5í4l<gS;mÅ×åê+³š^º°','',0,'?'),('í°QR\"æÃ@3ªövàS','wp-admin/js/link.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ï¶5§íû¤«Öžù´Pô§','OÍnÊÄnÿôòË•Ì{?ŸàÈQ!ï=øˆÑ¢V¥oiÓÚ','',0,'?'),('í±K”Vµ	llhk·uÊkI','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ValidatorInterface.php',0,'òpjmª‹É‘>gGøT','òpjmª‹É‘>gGøT','ïíÜÎñ¹î…–ëÎÛ{®‹ßG»®!³é×jç»ó\Zox','',0,'?'),('í¶iÃažŸËjK»›q®˜','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/DomainException.php',0,'6e–äûCß\\XU=Ö','6e–äûCß\\XU=Ö','¬»ùK‚<+R}Š±Ê1•#ëËÜ4¹°Îî‘·¬R†ù','',0,'?'),('í¹×Â\rÃ\\+°ÈVýÀìF','wp-content/themes/Divi/includes/builder/frontend-builder/build/boot.js',0,'§aX¬º¹sðÿÓòq_¶ i','§aX¬º¹sðÿÓòq_¶ i','QåvþÆ$_ïÈ•;g—WUåÞó¸4D±›6`©úþ','',0,'?'),('íºG® “Ø~ªÐÿô`ø','wp-includes/customize/class-wp-customize-nav-menu-name-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÚÞ7ìfõW·Õš7Á´†','pûÜvàw °ÝÜª9ù¶Ÿ©?¡°aÝÿÉ€zŒ','',0,'?'),('íÅ¹\nüëÔÊà19o«','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/MapIterator.php',0,'}(¤²/D.¶‡OUtk(à','}(¤²/D.¶‡OUtk(à','­è96EŸ ¢>ˆ«Sð®#0Ébf3ÑºY','',0,'?'),('íØÀU…ØEàýKÚ‚*ñU','wp-includes/blocks/gallery/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5‰nÁËŒhVû•‚õ¦h','›nÐƒ¹²£M]5Lw\0pŒnžZá~R7B¬„Õé','',0,'?'),('íé\Za˜]]ãA‰ê\'hŽ¤€','wp-admin/network/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D¯€2èü/¾:?f}Ö','ÌúèÓ0ìQ¸þÀSÄ£Ç©GTÜùP‹ù-îR\Zê\\','',0,'?'),('íðfw-+nHnn¸F¾«','wp-content/themes/Divi/core/admin/images/svg/speed.svg',0,'e¦Li¶ÊîDð%Ã<U','e¦Li¶ÊîDð%Ã<U','¶¹ÀÿhVÇÓ\\jõ¼ˆi§jðiŠ*°P¶ÿ_ÈúÁÔù','',0,'?'),('íñ²ƒ=ÃúcäÙ‡œæý','wp-admin/includes/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ã(\\\'C² „+×w%mô','Ç Èj kl×\'¸K“5S=u´â¦0¡ÄÒÒýÈ]ÛJJ','',0,'?'),('íùëeC˜¾„ðDi!×ç','wp-admin/css/colors/coffee/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JÁ9þûZœ¹Îjƒï','F1ípžF)Edš¥E¼-<Uo£sÈ6Lž{åDqœâ5','',0,'?'),('îÁ¤mÃÅøTcÔÈÖ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_ms.js',0,'4sYvEl«¨†‹¹Ôh®@j','4sYvEl«¨†‹¹Ôh®@j','kƒÈX1B	Tbì,£è\"‹²â¦ð»CÆ','',0,'?'),('îÎ»Ô9Îòä!`µH‘\'Ã','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/notices/thanks-for-using-main-dash.php',0,'×ì‰‹6gÛÑ!D‡22h','×ì‰‹6gÛÑ!D‡22h','¨–úDS´­ï¶wíÉ=Gð\0Rñ–\01<Yá‹¶*Ö³','',0,'?'),('î‰•fÙ%ußPûÊñ„','wp-includes/js/mce-view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…îœè<úê@^‰PÆ\'','#û‰	„Í\\PÎWdqß‹ƒ¼.òÎ4Ã“ã«æx<’','',0,'?'),('î&¿8fzZ¬g™«¼S','wp-content/plugins/contact-form-7/modules/recaptcha/recaptcha.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>a+µ#;‡A“Ó/\rTê','­9#‡ó×C#ÓÓÕ’¤4|åÖ5À3çPÿ','',0,'?'),('î\Z½‡å{:\ZªŠå4f','wp-includes/js/customize-preview-nav-menus.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Nm ¬lñVÒª3„¦Ž','é5,Œ‹M3Å5÷Ýn(tL5¶ ;^æÄP/9z±áØ8','',0,'?'),('îòQÊ3®1xšLU','wp-content/themes/Divi/core/admin/js/es6-promise.auto.min.js',0,'þa8Í<d³ìv¯á7‘','þa8Í<d³ìv¯á7‘','V‰¢¨à=/G¬NCïôœ¤¯¡ò•Xdž$¹c‰','',0,'?'),('î.Éz›ƒ&·Š”.Ú1y³Â','wp-includes/css/dist/format-library/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tÄòå°A8‡xÕíl²','KãcKèÎ&–2Ð\0ƒ†¥=ü¤g˜.çÙœõž	\0y','',0,'?'),('î0…FUã¿¦`îß0Çdø','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchRequestTransfer.php',0,'–qä“ÙÓ¨\'äâÃØÓ=]','–qä“ÙÓ¨\'äâÃØÓ=]','Óq#Àœý‚6WÛÉ\'Á	§¦VÂCocÜàª‹Ü¨m°','',0,'?'),('î7§±êûMpØ0ü€zðj','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Õ‹}çïB°÷HÀÖ71','Ã\"Ã÷beTb¿$àÖæ‚Ö×‰ù\n…º°~½lnÝÅ','',0,'?'),('îZF|õ£¬­Ùµ@~Ø4ð','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/json.js',0,'ò‚/KÏT_ÑŠþš\'¥5H','ò‚/KÏT_ÑŠþš\'¥5H','Œ@@²Žq»Þ`/2º;<}Ž2äI\0jÔü°ªŒ°®ê`©','',0,'?'),('îf{r#‹y—Ûú`#Ïþ','wp-content/plugins/updraftplus/methods/googledrive.php',0,'Üü¦#¾CQÁ;²z¯4','Üü¦#¾CQÁ;²z¯4','vEÏ3à2GMƒØ¿% 3þôžÈ>ðhM]ý','',0,'?'),('î‡Ã¬;œ_EÌsíDÛŽÕ','wp-content/plugins/updraftplus/includes/updraftplus-notices.php',0,'=æÀNaTR‰%¹Ç9•PÿO','=æÀNaTR‰%¹Ç9•PÿO',':Æ¥L>9#Y©ÃØ¹K€uØ`!…ßÑâ×óû‡^dv','',0,'?'),('îªâŽ¶rÃ-ð?t“iðT','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/OAuthSignature.php',0,'?*øô5ßŽ¶Rš‰¿ Ä','?*øô5ßŽ¶Rš‰¿ Ä','ŽVÁ%E¬b £RÊÐz0ÈLJa:,Ñðµ.†yä=','',0,'?'),('î²?ø¡sr¡:\rò2','wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-mbstring/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð^sˆ~íÇ†\nö¥-Ñ`','ž2û¸AßprÕAä$” {Á¹sãîä_pÒ>“Íf','',0,'?'),('î³‰ÎS2ñ‰ß²]cþ\0','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/BadMethodCallException.php',0,'u,¯ÊþÏÕ æÌþ!\nÇ','u,¯ÊþÏÕ æÌþ!\nÇ','ƒ•a?(ÉŠº	;ßqU£Ô,fãªqŠÔzX5m','',0,'?'),('î¾<„7vºÍY6?éàÑ','wp-includes/blocks/separator/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üƒ]=¶u\'\\DEÐT÷','.f›L½Ž]ËÃƒ‘Zbé|œ%‰{ÊM8ÃÆ„÷Qëp2^','',0,'?'),('îÈŽ[D‡âôBR/}à','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NoContentTypeError.php',0,'’€Vi.(Ë)ø Évã4•','’€Vi.(Ë)ø Évã4•','Þ{c¤x\0x+,d7¦÷³rãè¨i=ó4›–ô¸xº','',0,'?'),('îÌ\n…j§™W;­¦!','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterConfigFactory.php',0,'¬kÙ0ö\Zæ¶hžÜxV\'x³','¬kÙ0ö\Zæ¶hžÜxV\'x³','ôúqîµÌç•¥yP+µ»ý)htuÿ8 †¨…’ÞrI','',0,'?'),('îÎ¯¾Û?ñ¹gW„õ÷9','wp-includes/blocks/embed/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ø&JùžAÉ*[¿ÆRèê-','_=ÛnF—†c5Ûã—Ä¤ð¥ôsèžd¸1Ü%ÎßÑ','',0,'?'),('îá²N–”ç¦F¦VïYìC','wp-includes/blocks/shortcode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ó0tâ	í£Ú¨.™j²','{Ž…bw\n~ªŒ4øn\"‚—\"þÓÍ÷ê#.m¿/#1','',0,'?'),('îäeœ²QÍ7G?ž¶Ù','wp-content/plugins/wp-mail-smtp/assets/images/menu-icon.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚G¹éº*kë‰HJ3','*s(|%ÂË‡‹ÉlR\'xRãšÄ,gsPW‚YÏíF','',0,'?'),('îçuyªØŸúuV‘û@/‚ó','wp-includes/class-wp-block-patterns-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°˜y)X½…\\…ð{žÌÅ','4…AF5Z–hœ\n>dgyƒ¼*õƒ¼(oÀÀÚcö`ê;','',0,'?'),('îòV†»Ó#Z- Xe0Ë²','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','—ä#\nOØˆ	9N7µ¹ *','!ˆ|\"€†AòóÉ®	y1½¥:áBÚ¤•ð˜–Ú%Ç²','',0,'?'),('îõÉPë_,–AÖFh&Æ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3.js',0,' Û*™®6˜Ô(;hów',' Û*™®6˜Ô(;hów','6Ó»vh¬e •\"¥b³ŠkêëêØ€6ŒÉZOF','',0,'?'),('î÷Î6Ê¢í™d4:öò','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/EndpointSignatureInterface.php',0,'IŠµV¦{´ûÙBÓØÛ.','IŠµV¦{´ûÙBÓØÛ.','\0k\'Únâí„ã­“„‹[è€|½@à–æQŸÿ','',0,'?'),('ï@}&£J~ÏÂ¾&óè\0','wp-includes/customize/class-wp-customize-new-menu-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«ÈN‘àp‰ÅaCÇq k','„F¾Ì0”HyceåLuQ¬«Î&§ä˜LiH\n©DÅ©K','',0,'?'),('ïÚ˜õ÷·pÄÇ›$¬','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ObjectAlreadyInActiveTierErrorException.php',0,'óÄÎI*IþÊ«ìÝ×6XÃ','óÄÎI*IþÊ«ìÝ×6XÃ','ï<‡÷aÒŽ³Z…/#6\n‘]I©”õ=Ïš¯[õõ¢x','',0,'?'),('ï\ZÚðÔLõ3ÚæÈÉJŒ','wp-content/plugins/wp-mail-smtp/src/Connect.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™8O?´ÀøÇ:©³8\'§´',' ­ŠV!!1¶®2ð_ˆ·olÝR‘ÅJÕlï×vö','',0,'?'),('ï)_—@+7¹CÉÆ|Ù3.','wp-content/plugins/updraftplus/includes/Google/Service/Doubleclicksearch.php',0,'™õÍqaË;š×T&','™õÍqaË;š×T&','‚F“rOv±eý7ÁL\\á¤šyÏ7O<oV@ï¨únû','',0,'?'),('ï;Lát‰×¬C°ƒ”É£','wp-content/plugins/wordfence/tmp/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·I z~Òi¶,Lžÿè','	ù¦HQIéqz¼Ú¤øpÆ9ŸC4>Hü€Â3¨‰„G','',0,'?'),('ïY^~5~‘¨pŸG-ŠŒŠ','wp-includes/js/customize-views.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸HÓ·¬-\\Me•ˆï','íbõ ‚½Lýþ-¦‰9wloêßyŽ$+ÓY\ZÞ˜ÔN','',0,'?'),('ïjU Ç3ê0<ÌgéÝb','wp-includes/blocks/paragraph/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Š¡Ÿ:ÌtàMe&©>','ÃÊŸ×Ï‰ÑÙPÏXwËä»P¥\0ÃÞ¤opƒ±‚l×ûÒ¶','',0,'?'),('ïq‡\0‘$ÿ€ÖýŽ>S×1','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect283k1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ã¨NÂö‚,ÜÛOÄÿik','„88ƒœÏÎ uÃ‚µH¾«:[ŒL„Î\rÔÛ)VýÖ','',0,'?'),('ïrI‚åíê–É€5 ÁF','wp-includes/Requests/Exception/Transport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«»løÚzèê J«^Ñ','¦ºûîÄº¶ÌŒ»ã&Œù¶Ö³–†Ý4@78áíôp','',0,'?'),('ïtCÚ`aJûhíé¯l0÷N','wp-content/themes/Divi/core/components/HTTPInterface.php',0,'EðÊz}¿,5ž<ãs]','EðÊz}¿,5ž<ãs]','µz«ôó×ÆF°s¤º‘ü–!©›,ëí3Ù)–?\\¾ï','',0,'?'),('ïu_ô‹‹ÿÂÊ~!\0Ä','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y=\nYà´99š2­ø','ý—û6©‘°\Z/ˆˆùpây5îÁœÒEð”Ø­½©­O±E','',0,'?'),('ïw£	snæÃxžèÝ†','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ListContainersResult.php',0,'Á~Çì¡íKïÝƒ²hÉY\r','Á~Çì¡íKïÝƒ²hÉY\r','\"\01ˆ½„m¥Ak¹õÓn*B­PÑB[yÙëº(Xƒ','',0,'?'),('ïzúÀœØö×ò|”zûxv','wp-includes/js/jquery/ui/droppable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>¿›£KÑ-£EØŒÈþN¤','ò\\\'ä°¹\"Šjq#œ7ôæERõÆFã0*Ù-Ý;|','',0,'?'),('ïú¶ÕË•§³r&ÕqÇFi','wp-content/plugins/wordfence/crypto/vendor/composer/installed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:ÍÿQ‰)úË¸è¾:-*','†Ö8}ôÞªâ]£ß\"1´úž&(¡æä™„³‹¡É','',0,'?'),('ï‚|¨(gæþ-f\nÔœ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetContactDetails.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O:ÿ£<è©ó™âUjÝ‹','UŸQ»=ç¬cÎi„KF,û<Ðž|ƒc\ZGõ«\"','',0,'?'),('ï’Õ.Áã@&YŽ´²^','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetAttributesEnumeration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','á›öò¤AfG.æZKð','?¦Pâ`‰ù•ÃÂ\"ËðÛCˆúBæÃ‘³¤à(z ','',0,'?'),('ï”‰Mõ½oø¤¤¯™`©÷','wp-content/plugins/worker/src/MWP/WordPress/Provider/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('ï°ìwÃÿØðwÉñ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/ResettableInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','…õ#¢ÊF›˜³ˆí ýŒÁ','ÛªžZo?cÊzCF<kN:‡LŽ=ðG¡.¯HS;Õ','',0,'?'),('ï¸€Ü¹ãXu‰ýð_ÅÚJ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/MessageInterface.php',0,'²€kÀ2¶–bQ¸-Ò?aý','²€kÀ2¶–bQ¸-Ò?aý','‡x©ÐÐÊÌr}š`Šë1\08‰ÖÐ>ÆáÉuó6oÀ:¶³','',0,'?'),('ï¾˜QŒ¹©÷´)B\në,','wp-content/plugins/wordfence/images/loading_large.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚Y¼®{Ob‰UW~¼YË™','p8ñ\'—÷™	t—Ïß:„Qßo]{5G1åèã»ÅE¾Ç','',0,'?'),('ïÀûP†‰a`Xuî¥¡','wp-admin/css/color-picker-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àÕiíì«S-MØ¼F¸N','m\Z‹LÕ¹Ì«ÐÎ¿û1mŽaÉ¤•Rr1A7','',0,'?'),('ïÅ{´ú \rðSlÅ¿é	','wp-content/plugins/wordfence/views/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£E\"xKÊê{Ç8ödS³','C‡¾ö½\'r…9½ì@âK¡Þ†t¡ª™öâ§w#@kº','',0,'?'),('ïÈâ£L^Ô=™|äÊÐ1~','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oöíÓ˜$p$\n…f„¶','…&Óó_­Aç Tï]8TØoX96µÔA:ëT5\rE­Š‘','',0,'?'),('ïÑX=U¡pfp¾€ÁZ','wp-includes/taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','²ho(HAOÊ>‰ÙÖ7ì','s%Ë’#Ùéôå¢pG‡­/Â°e0ÊUQD÷«ÕšëÀ','',0,'?'),('ïÒ÷î¤!²MŸÚEa`n+','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseNameError.php',0,'`ö­ºâ‰žKùuâäá—ë','`ö­ºâ‰žKùuâäá—ë','¥¥?§ÿpˆ¡´&kÆµ»w\Zª\"íGl×ôr‹','',0,'?'),('ïÔzâ˜^Ý Rð½Ì;','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/SignedIdentifier.php',0,'·hƒãmbP·YìJj}-m','·hƒãmbP·YìJj}-m','ÿ\rýFÄüËˆŒŽ™MYÏ#; S•™Ý±âÛ´›•¦','',0,'?'),('ïÙÈ4…~§Ž^U1Exæƒ','wp-includes/blocks/site-title/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','â\"X¼\"OKÇ‰9\0š','}	®þÐ‡k_[3è?_ðFxâaé–™ü‡þ','',0,'?'),('ïÞŒt+é\\õ+ÆXa†ZU','wp-content/plugins/wordfence/lib/wfScan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qdb\rì`ä¿·ƒŠÀ¥','ƒŽM)žHMXhn¯×É\'TD¾hé«ð`…','',0,'?'),('ïß_ÖÚÜPš«Ìç-L','wp-content/plugins/fusion-builder/shortcodes/fusion-flip-boxes.php',0,'UJêtÏï=A†8^BSù!','UJêtÏï=A†8^BSù!','ÑçD(>ÄÛèQÔVø¤ëà@v—5ÀçfÜ‡øT€S','',0,'?'),('ïã¯©è	\'¯æ¶Þ¨‹÷V','wp-includes/images/smilies/icon_biggrin.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üK²ñJr§½:¿]kIØ|',':š²«ÖÙ”ëÆÅMœ›ÓÛX%	Ì<8½g4Ÿ','',0,'?'),('ïéˆˆ7¸r«-=ÒÏ€DK','wp-content/plugins/wp-mail-smtp/assets/vue/img/long-arrow-alt-left-regular-grey.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³µNÍXZ+ò{^q÷Ž ','#ºûÐYŽð>XþNiŠ¢(\0Ìá®\ZGàŠ:y…}','',0,'?'),('ïï6X‡Ôª4ñã[_‡=t','wp-content/plugins/wordfence/lib/wfScanEngine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cëÉ—6¶Ùk)K÷ÁchÎ','ÇW22éOQ•9“¡RSŽï“_†”•†ï#‘}âNÅÝ','',0,'?'),('ïô±¨cµÐG¼¶¸(`E»•','wp-content/plugins/wordfence/views/scanner/issue-configReadable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"XjozˆoÂÍðY²–Ë','œÒ{ñ—g“k{aKàÕç*¼¤õìý…WõÌ×…Ç$×£','',0,'?'),('ïù6â.°GÍä‰úæ£›—','wp-content/plugins/worker/src/MWP/Configuration/Conf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÀG‘·Ð ÆXÆ¦dýv³ž','tü\Z7ìþßxt+ªA\'ó3ÎÃ4,$Çê8Å¯/','',0,'?'),('ïÿ€É9‡ÊrÀMÔ§Äè','wp-includes/js/customize-preview-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','óT-Ÿ6€P)Hôù=îí¬','¸¸¼˜6ÂªÜe¦×ÕyÐ¼bdf}‘ˆ5 Ùþ','',0,'?'),('ð¾l(&tZæÒi\nO','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯sh)~G–Ræï€Šwp,',']å‚¼ÍS¹ÃöÐ#‚õ®ƒ`ðåúçÅö×û‰<ÔY•á','',0,'?'),('ð ÀÞ<:9Î|ÂÎ6','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-_ÐûbÊÁ->OŒ¥\\è‹ƒ','¤sÉ”gá%û½riC¯ùP˜ëw†«%’å{ÖÆJ¥Î','',0,'?'),('ð¸Ê6)Jo*Š§Nn+','wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/ÉŠz,ØØ«cm¿-á|}1','â;>‘Á‹™;é³\\çÞ\Z€p;Ø÷»^ñGš?_ƒ\n6','',0,'?'),('ð!<ÊD]¢øßÏwÎ5','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersSettingsFilters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þÑ§†ûŒ¥ Ëp|IZÜ','+Q]€•ŸŽÝÎé”Æ\\Aóîç\nÓÚ÷Ù•0ÍåJù¯','',0,'?'),('ð!s!ÚÖ/0Ú€_Ê','wp-content/plugins/wordfence/js/Chart.bundle.min.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ºñó5]”ŠdîÀ ûd€fÝ','¹Ö>Åá`‰ú½´°NN­`ëN\"K ÓžcŸkG<;','',0,'?'),('ð!¥¯_ïüdpÁ†^','wp-content/plugins/worker/src/MWP/Http/JsonResponse.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒc¿!L5¸€ABˆ','Ë-í®”i•`».-?‰å[w3ó`êYÛŒSi™ä´V','',0,'?'),('ð$ŸÄ«¥Iˆ^ý“3·”Ñ','wp-admin/menu-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZéPÁjÙÁv…Ë¨!Ò£µ','wÍñ9=Ì F5dñðoU¸ÊÖ\\_–k[•','',0,'?'),('ð%kyõKßK ¨£¯¬1','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/CannedAcl.php',0,'ó´,ê|c\\±ÌyGGO¸','ó´,ê|c\\±ÌyGGO¸','¾LÒÁ¦j[~ 1eÚÌâY„ñ&7uÄ>jèk…Úb','',0,'?'),('ð9w·“2~s²5ûE;Ÿ?','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php',0,' b&†_5ÊkíKåmÉ	~ž',' b&†_5ÊkíKåmÉ	~ž','iU1y½›\0ÓÿÆà#F™Mãâ\\]†¥üŸôò\Z','',0,'?'),('ð:k\nê¶:ª²_9)jPpŒ','wp-includes/blocks/tag-cloud/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sE¤,Cj‹¨‘÷à°¿P','Ôu\nah†Fz½¤f¿\\”\rÿg­üm€qž','',0,'?'),('ðGçã›ÅâûYõLÄt¦w','wp-content/plugins/worker/src/MWP/FileManager/Model/DownloadFilesResult.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H^­\'¯„%:‘nÊ¹r¤','9Cz¡×¿JzO<Bš¯šßM–;LþvfÔx²Ix²','',0,'?'),('ðI/\Z³Nç2é÷öáÉñp','wp-includes/sodium_compat/src/Core32/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':Ü0³	h‘mNP´…³','Ÿ÷LH$G/…bdä…+ž\0ZP5õ¼Y~ªb·Ì20p','',0,'?'),('ðZ«H§¢›Ü³x\'>ÓÎ-','wp-content/plugins/really-simple-ssl/assets/css/variables.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('ðh\Z©4bèŽ$á\0›4‹Õ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/ObjectSerializer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÃÃóÑ¯±´[jTå_£°z','Ðï›úP±§7oÓP€§zU²\\y‡\Zÿ‰g\0e‘ì`','',0,'?'),('ðj$f„Ãferüë&ãÚ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Delegate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼Ó°á}\"úVãý\n†Mø','Ü>É3»¹r 0”ÒÁßIõ¿ÜWæ\\¥fÝ·','',0,'?'),('ðlö9N:·Eý¡êqÌ','wp-content/plugins/wordfence/js/wfselect2.min.1637598990.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jž¾öü¥!.¡ç×i','lžk}[ÙùZjAÞ.!Áø=+5¨+´~qç 1','',0,'?'),('ðqøð¸6žù—y&è·A','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Models/OAuthAccessToken.php',0,'hÊ ß^}úzÀ!<afÕ3L','hÊ ß^}úzÀ!<afÕ3L','ò\nRwÈP²v])·F¤þ\Z7	5¥Vºì8‹¡çG','',0,'?'),('ðu\\®udò™òþÙ','wp-content/updraft/plugins-old/updraftplus/includes/deprecated-actions.php',0,'öÅy§+îoÄX{P“Ç¡','öÅy§+îoÄX{P“Ç¡','e¹t(´)ËUÛäP0lçŒI\\™Û…¿ƒ’úÓe','',0,'?'),('ð{Cžy“–ðÄ•ÏR	Î.é','wp-content/plugins/worker/publickeys/managewp.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w	Ciïý×<±­p¡@%',']LÊèTÍ/Ý«\n\n\"ûLÚÖþºXgn†äF›','',0,'?'),('ð|óì°M#B*´M¦GM','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Debug/WrappedListener.php',0,'žÙ2KËìØ/•ËÇÌ‡Ù','žÙ2KËìØ/•ËÇÌ‡Ù','¸›ÊL+z“NáD¦EÛü\rvcgÛ0›¨ªqŽ\nMu±Œ','',0,'?'),('ðƒîZ¾K¥pJþPœ†[','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3Md5Listener.php',0,'a¢£!f¡ÊŸ—ÃD±','a¢£!f¡ÊŸ—ÃD±','14îÔ°K%`r$@ÖîÌà	–URîôB™©6…é[‹5','',0,'?'),('ð¡N ¶¢ûiiÚ­ù','wp-includes/random_compat/random_bytes_libsodium_legacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Üø[q7dâv¸í×zí¨','\'Öª•±*	[\0EE*J‹rüV€síæÄáãcž?','',0,'?'),('ð©ù¶É7¬Cà.ŽUÔÌ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Service.php',0,'ˆ¼¡3ïÅi&j%9ÝœÍ2','ˆ¼¡3ïÅi&j%9ÝœÍ2','KAøÅSˆŒ\'Â}\rT8W\Z¶É_”L©8Ü!%Ó×@ÆÉ','',0,'?'),('ðÉyÌþuènµÛc[Ù§','wp-includes/sitemaps.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ç`S ¥³˜òE¾X»^YA´','Å%ÖøàªSäiù¬úx3’k®™½OÛñnz]ö¿¤','',0,'?'),('ðÐ·&§LÛ½Â¨ãVNŠ','wp-includes/css/buttons.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a¬»n½ÒGËfägãñØ','k!L4>H–iAF‰»f•BR¶eR@ù±¹ìWÐ','',0,'?'),('ðßÐŸ{l2„‘ÙW²V&','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP192t1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@d° ’I—û˜8í','†roð\nú]-ÀæfLÊáFà+wHjRáµŒUo¢Ú«','',0,'?'),('ðâÜ)¾\\´¬¡EA&ô°b','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/HttpException.php',0,'÷‚Yê\0lñeÔ„Š1,‚}\r','÷‚Yê\0lñeÔ„Š1,‚}\r','dIÒæÞÁ± Þ—5”Kª•)Ðñâ7?ùOJ\"jU‹<K','',0,'?'),('ðå]ÉýSûéøm\"\nL\n','wp-content/plugins/worker/src/MWP/ServiceContainer/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('ðî2’x¦–;Çº-E4–','wp-content/plugins/wp-mail-smtp/assets/images/email/wp-mail-smtp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N^ao™&PäY”YJ\Zö','Aî$…¡ºx_*8=;[7M°K)sÏ6¥Õ˜î\Zc<','',0,'?'),('ðî3ojøÌˆ1Y(Ími”','wp-content/plugins/wp-mail-smtp/src/Helpers/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VÖ9au¾õÿ0¼&Þ½}','÷!ih-!8e­\\ƒþ»G\n)®\0\\#¡Ah¡U»&×u','',0,'?'),('ðö´øü•ø6$[£ª®OÀ','wp-admin/css/customize-widgets.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U‡òéº`–Ö/ç—p/G','5g¦ãÙœÉ\"²³ïeôWûýc{Ç¯Âxù¬ÐNGÜi','',0,'?'),('ñøå“rp.u…3zx€','wp-admin/includes/class-ftp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Úü±ãÕcÞZ*l3âñ$Ê','¢Bù1Ã´Î	Í¥Á†5 ¢Q«“ÈÙíå•9ËJ','',0,'?'),('ñ\rNúv¶^SÒk”:ºk•','wp-content/themes/Divi/includes/builder/module/PostTitle.php',0,'gà¤OT}äâò¨@\nHBtf','gà¤OT}äâò¨@\nHBtf','ˆÈ_\ZE\Z„^šÀQf¾öÄË)PPÎÔŒ/[ âS','',0,'?'),('ñŒ4ò”õýìS6|è>','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/editor/field_editor_c.php',0,'ÔŒÙ\0²é€	˜ìøB~','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('ñM¯ à}ü]ùPMÎ\0Æ','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','–Eí¯·äƒÆ€küvk¢¥\r','ð¾Š¥iiLM»P µ¬4ÚöÞ¨O_!üÍø“iN	»','',0,'?'),('ñ&[¦Á>jþÒÜ/Öâ¶GU','wp-includes/js/dist/token-list.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m¸¯	dd•H„m˜ÁG_','õIwml‡É,‹Ö>Ðz¬§“è›‘Â¾&{ë5Ó','',0,'?'),('ñ+]Yl.P4Š\n©Ål×Þ:','wp-content/themes/Divi/core/admin/js/tippy.min.js',0,'\0‘ Ê,¦Üfµl¦lŠý','\0‘ Ê,¦Üfµl¦lŠý','ëÙ]ÝUŠöÎN¼>Üø¸ÌÇQêúK¶R\ZÐ£­','',0,'?'),('ñ,¤°nõ¾çò¶¶ÃÁ;Û','wp-content/themes/Divi/core/components/api/spam/ReCaptcha.php',0,'$ØÔéTÈI™:	É4÷Bú','$ØÔéTÈI™:	É4÷Bú','‘Ø¸ýÔ\Z<…DlMgÑ’kü#¹•€Ê\'_ #æþ','',0,'?'),('ñ5Â]49ï8Â8­pŠe','wp-content/updraft/plugins-old/akismet/class.akismet-admin.php',0,'ôF$ùŠê ^ÄŸ¦ž­','ôF$ùŠê ^ÄŸ¦ž­',' kuPŽ–½t¤ÍÌŠÃÆz¨\"qgÃüÆÔâÀ=…(0×','',0,'?'),('ñ7sþ\\]Ô}ˆAAùwe1·','wp-admin/tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µRC7«\nŸ€ÕTRï','v\'Sè;ŒÌ[ß\nSÔ/[S6æ&àG&Æ–8¶','',0,'?'),('ñH=6ÏÜ¹§XØÁ¡Z','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidSOAPRequestException.php',0,'ôÕY<a«ZZ¿¯Ô[K','ôÕY<a«ZZ¿¯Ô[K','nÛŠ¹ð	X¼\\Dï9þ]U…Ú¥\"PÀÉ0iŠ±E©','',0,'?'),('ñLèÇ›qæ®=´‹B?„X','wp-content/plugins/worker/src/PHPSecLib/Crypt/RC4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø¶[ÒD‘àƒëå‹¶³Ô','}¯5tÈ\\9_ë‹+;°8¶Èïx—Ûš32í:Cè	','',0,'?'),('ñOˆ‚—îvºõ¤†:åÜ','wp-content/updraft/plugins-old/updraftplus/includes/tether-shepherd/tether.js',0,'Ù¬MU6Ð/žûÍàAü1Þ','Ù¬MU6Ð/žûÍàAü1Þ','\n¢Gúäí££‡³™–ý¥è¨#‰sÜìU¸WÇN','',0,'?'),('ñZ/¥¼û{LtåÕ®F$€','wp-admin/js/svg-painter.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úÌ àV,È~ÍËHï]‘d','â\"s¯€WËáå`qaÝ8É4ÙPÙ¢Vùuí˜§ÀM:º','',0,'?'),('ñ_8³‘Î÷#* Œ','wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/Stats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ž±©HDš¨ƒ\rÀÓ_Ä','†%\'\nÅG›|‹0ò&j.¥~\ZÝF·¬ù†97â','',0,'?'),('ñfS|Ý.ÍH5ówûL-ú','wp-content/plugins/instagram-feed/inc/class-sb-instagram-post-set.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b \rWó(ÎÜÍG7–oF|>','¡¯‰ò“@€æX³º¯\ZXy´þO‚_g`6X	>$ebÛ]','',0,'?'),('ñk@A&@\r	½ÂÀŒn Þï','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/SlackbotHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BŒ‹sk2ÑÜ]À˜‹˜-Dð','Ê\\ÏÙnCÇ:#ûH°©¦7	eÒ`÷´…-Ù«PX','',0,'?'),('ñ{Dš3›Ññ+ìcC5$Þ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidRangeException.php',0,'˜ÏÕÍ5™Î †ÌúPDq2','˜ÏÕÍ5™Î †ÌúPDq2','ÖvUÄ|ÖÈd’åÁO­§@0P3·Þ[>ýÒäRó','',0,'?'),('ñ~HNÖŽ6‡‰È¿|','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequest.php',0,'[êHØÞ¥Øä0ÚŒiËÓ5','[êHØÞ¥Øä0ÚŒiËÓ5','‚!WÒª”«N\0Ö«(Æãrêãì88A3F4˜èÁ•Î','',0,'?'),('ñ~Ÿ\"|ËGxê{ê!ž','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/class.fusionredux_api.php',0,'J_§ZY~ûi	Ñ:¤Ö','J_§ZY~ûi	Ñ:¤Ö','z¡È\"™s f¸®˜~ëÇK	Ëæàô(òõ­þ©\\','',0,'?'),('ñŠ¢vŒ:¹D¸YìG','wp-includes/js/plupload/plupload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ¸Ë6‹JJ’7¡+Ö','·+\"ìˆQÏÜã/N:‚T$àß\"§ƒáÈ¯\r8v_3','',0,'?'),('ñ˜‰	ÂT˜bÃ×.œñ56','wp-content/plugins/instagram-feed/img/instagram-pro-promo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨íM©	ÀNÖŒ\'v\Z7','ù°øÿiËÜ‡¥¤ƒ–ÏÜ‘$Û§æj©uÉPÁ¶NT','',0,'?'),('ñ¤m$û¤–QþåÞç','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/LabelColor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÃÒÜÿ\rš=¥4R¿åºÉ','š{¾µ Þ¿ñ„\rìŽ/½çükýz¿¬\Z©òî!,','',0,'?'),('ñ±TYÛPpEñw†“','wp-includes/widgets/class-wp-widget-archives.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','};ÛFÞå^iª-™òÌ¡Å','ŒŽ(G¶M@~ÈyµG‹8²º´“=u´Å˜âµ÷G¡','',0,'?'),('ñ¾µÂfˆýlWI‡kãÄ”','wp-content/themes/Divi/options_divi.php',0,'ã+>—w)ULºbà“Å)\Z','ã+>—w)ULºbà“Å)\Z','ŸáÚaËè ·E•ñé”\"]ŒA0\nºO´®bž±¼','',0,'?'),('ñÆ4‘ìïÛ$êŽª','wp-content/plugins/wordfence/views/scanner/scan-scheduling.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö&©J¤þHNÄïÔ‘','rªh,Ð˜QÃUçÓ2 Vñ†J¸„à6}N\'3ÙiuK','',0,'?'),('ñÉýÖ#‘dbi¤šV<ü','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBody.php',0,'^}—§ÖN˜Y¹s}7¢×','^}—§ÖN˜Y¹s}7¢×','YŸ ¿°ùå‰\Z_\\”ó¼Ëí³a´ôÆ?ètbV','',0,'?'),('ñÐå¯µ·FZ¢tŽcHÝüa','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticFilterNode.php',0,'=WÒ)}n+SÒ–s','=WÒ)}n+SÒ–s','.J3\0}Ç\"v\\:íîŠŠÞ­×§˜&Çš#?Ûi;','',0,'?'),('ñØ\"UÈÇ[àê~v E\nö–','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/code/plugin.min.js',0,'{õÂ‚¹$£Ó…µžßœ–EË','{õÂ‚¹$£Ó…µžßœ–EË','’Èw[LèåiAú)¸fpX,)…€¥\nY‘`;õÙ&À','',0,'?'),('ñâíÍ%`„µB‰ry^¥¹','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildDomain.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ße:gºø=+	bÌ–F','0Ô=õ|`Hß¶Ž¦B H}õóGH2}”öK¿sm•','',0,'?'),('ñå?€´©àU÷Goæ^òT','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingSecurityHeaderException.php',0,'®§Pçî¾üžH|xšj”Y','®§Pçî¾üžH|xšj”Y','nc½*úŸ=˜Ã‘…0$+‰p|`l¶ây±„êRoðƒ','',0,'?'),('ñïª¯¾zy´ÕÈ>_+”t','wp-includes/class-wp-user-meta-session-tokens.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›8/\'\0¹\0¸¥vSL-G\0','ÖÓ×Ž8îbíYB&?Ù6—íoÌßÔ>','',0,'?'),('ññ ž_zf¹óýßg³=Ë','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Credentials/InsecureCredentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¹•MPÁ”6?zv,Ö3','Áý˜XçôƒŠ	|Ó™P9«ïÏ¾ÿ¨²n ÂÁ¹>','',0,'?'),('ñúyàAÔožÚ‰—ç’','wp-content/plugins/updraftplus/includes/Google/Cache/File.php',0,'VÀ„ìQ…~l<£$ÓñT','VÀ„ìQ…~l<£$ÓñT','´½$ßÅšt±E•´É\0HBeC¯Ó«2ãåÝJêô:W','',0,'?'),('ò%Íö›ô’ 13¸¶','wp-content/plugins/worker/src/PHPSecLib/Crypt/AES.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aÖû$bk®\'·¸›³Ÿ','~Vô¨É¨°àÉÅµžÓ™_ÿ:ofMÁ½ƒš3\r ','',0,'?'),('òãÝHör #âw/“:4','wp-includes/js/dist/plugins.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Å‰òB¯£\\cŽ/äDÙÚ','=&Òp] ÒŽþ ¯f$„C×‚PŽóZßÚD%UcM','',0,'?'),('ò*M17wÈ?¶¼îz.ñ','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/mk.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ô†)/²\Z×ô¬ñß`FÛö®','Ý\Z)™­%þµL¸¾4Û@o;OšÀ\\5oM.Á´\0\Z!','',0,'?'),('ò1\nòçÏÁÁ¡x¾¿¬Ù','wp-includes/blocks/latest-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','’r*9Ž‹‰Ÿ‹ln…','ÌÂ‡QK×=÷Gé~ƒ€Bö!w~÷bÖ_¹½Z','',0,'?'),('ò?²âE_Ï)ŠxÚ…$ž','wp-admin/includes/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J©ÊA+¯¨z5ZS\'2‰¾','É\r£az†‡|hàþÐ%sk~?¼\nåŠ0±JV	«~Ù','',0,'?'),('òL>Ë;µ*	ª¹YÛžm','wp-includes/blocks/preformatted/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BÞ¶ØÇ%ôÔ Îù‘','šóPèó>ÊÑÏÌê•¾ôE}ŸÝaIºš–áÎ\Z—p','',0,'?'),('òOê±Hñê.ä)*eBÇ?','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobMetadataResult.php',0,'ŠÆÜx´ö\'¨ughåï¸e)','ŠÆÜx´ö\'¨ughåï¸e)','‹ G	Œ³äU\r—×‚¢Oz·§ñÒ,êB¸Ë\n“í°?','',0,'?'),('ò^êÅ7àÈaa‹ö¦džA3','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect131r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶\\&„Q¿ºOókà)¿Œ”','=J¿%ÞbjÈ\'RJZ%¶Šaø¤&Ã’á.sƒBA¿Å_','',0,'?'),('ò_­¨Ù3}‰*NJ\0ƒœ','wp-content/themes/Divi/includes/builder/module/TabsItem.php',0,'‘ì‹OÇ¢¯ÙÂ|ÛÍNÅ´','‘ì‹OÇ¢¯ÙÂ|ÛÍNÅ´','½›[«RáÅ6ˆO_òõÄš¡æ^¿*½lèË\"W\n¨“, ','',0,'?'),('òdíToÈf‹öÒ·ÜbS','wp-content/plugins/wordfence/lib/menu_dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•_Ç(À{]“ô4¨ò%¬¡','¸g\rþxF€ ¬øÚ˜Ê2LÌ7ì¼ºK0‰\'™Ô?ÜÕ','',0,'?'),('òjñ\nj<Àcª@B‰X','wp-content/plugins/wordfence/modules/login-security/views/options/option-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3ÜqÛ×˜w‰UóßÍ°RÁ','úJwYw¯u¢nø–[ŠÄÎ&D×FLV-ó2LòËÖ','',0,'?'),('òpo‚´X0%÷¢ÇíÏë','wp-includes/css/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘h€à8Óf2uÌ\0àÛZ„','…	v‘Ú¤n@ŽÄpzÙTH—fËJMà™d%°?ªŒ','',0,'?'),('òu;ÈŒ0åq”wªœ=àß','wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ï+6 ð±Î€JÂhþ','),olžR’ÏÌÊZJÿÒeT›(y ë5ª¾‹²+','',0,'?'),('ò„µ Z3©QÂhoð¢K®','wp-content/plugins/updraftplus/includes/Google/Service/Gmail.php',0,'/|›h!ûÚŽ„ë\'ï‹Ô','/|›h!ûÚŽ„ë\'ï‹Ô','pþÂ‡£x›«a^ç½u‘ôC/UÎÇ/áòF¡ëú`','',0,'?'),('ò†c”†Nü¡7ö»ó/Jš!','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedContactDetailsStatistics.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö€…ft\Z_÷d½X°ÿ@§','üÛ‚Ë\"}Þ¯ö\ZªêÚ{¢	Ô5[)tÀú`7“Å“','',0,'?'),('òš:Erù†Lœædß:X','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Models/ServiceProperties.php',0,'Fº£Ú]Œ7Ü‘ûV—å4»','Fº£Ú]Œ7Ü‘ûV—å4»','ûç‡´J¹	|ô ¿14jâkª“¨â-ÛÐlÉ ÏíÕ•','',0,'?'),('ò¨$c{±97^Ð†È÷JØg','wp-includes/js/dist/server-side-render.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èÅa¢ÿÌHñ¹oPE“Xš','¹;´û™G,‘P·ã5A;3voöÛÏ§sþûµÔ_˜','',0,'?'),('ò®ò…Å•î‚oi|}Èã','wp-includes/block-supports/custom-classname.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­›Zã0ÿÍ~÷ž¸','E»ì§ÞYâÙ ¶C•5ùfìtÀ…A%Bý†Wê†\0ó','',0,'?'),('ò°–üMÂÙ¦MÆ/`¼','wp-includes/js/swfupload/handlers.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÂÁì*Ã#Í0‹-ÆÕƒpõ','H³#ý¯¥Ÿa:š‡1ú‰ÀÕöðí—ß¯orrjìuzàzV','',0,'?'),('ò± ­ü²BÉRÔz‡‡Y','wp-includes/js/jquery/jquery.table-hotkeys.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åogo·¿“~i¦I	ú','„<²Š=¸¤;’:Át_,w«ÄƒI·ÊÁ,Š,™œ','',0,'?'),('ò³ý¢ŠlÀ2XˆÉ¤|Ý','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Event.php',0,'Ò9%ƒŽ	(Â²«Ÿ­','Ò9%ƒŽ	(Â²«Ÿ­','†©>jÊéðŒóîñêKfgÚ]ºŸÝ/f™M¾ÀUŒ‚','',0,'?'),('ò¶?{o_±°µ\'»nÖ','wp-admin/images/resize-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ{3VV´íFV¬fä%K','æ‡´y2q™þZðo ¦~´¢([—‚`\0`C¸i\ZL\'','',0,'?'),('òÂÌ_fÂ $ÁO<o','wp-admin/js/common.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íW=ùWÊ<²G½ðœ\\Ãz','·ÔMÁ}A\0m,MgM&U¤:j“ÑQjÑK:cî‘½ï','',0,'?'),('òÃ Ü¿ðäÚË€?tˆå','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP192r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k|áóMùôÛ×³T2”\'','-ô÷á´™ƒ’B¾¤GM\Z‡DJÿ(’ýË¬ÇØÒ','',0,'?'),('òÅhÂ‚V$Wmppî\0Þ','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobMetadataResult.php',0,'ŠÆÜx´ö\'¨ughåï¸e)','ŠÆÜx´ö\'¨ughåï¸e)','‹ G	Œ³äU\r—×‚¢Oz·§ñÒ,êB¸Ë\n“í°?','',0,'?'),('òÒ%¯\0úÊz”fÀNÈpS','wp-includes/js/tinymce/plugins/wpemoji/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SE­îx=d¯¨~Á±«eM','\"ƒw”%%{Ž˜å=L(°¸ÅhKâ\rÆ¢HêP','',0,'?'),('òÚwÎ+\"+ú$ã¬^¸','wp-content/plugins/wordfence/lib/wfLog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡£\"W¯~äSMÀÇÜã!','R2hÎ/rOrÛk”´_+l–fR‰>ªk¾‹,R','',0,'?'),('òá<â.?ÍñM[Ñ)U-^Ò','wp-content/updraft/plugins-old/updraftplus/vendor/composer/include_paths.php',0,'BUãE×&D›L¦ÏQ ú6!','BUãE×&D›L¦ÏQ ú6!','3åzl\Z#@•øå×àUé žÚïZl¡l¸Èªƒ›ô','',0,'?'),('òáí¿[‘¼JôÈ%]Ñþ','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/BaseCompressorFilter.php',0,'6À	;ûÞcTûYi˜é','6À	;ûÞcTûYi˜é','…Q\n [j±Uë»ñxðìfàhÝ³¼a z\Z˜•fÇ»>','',0,'?'),('òä¯ÄKñ~ï˜Ñ1Ú6Å','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidTargetBucketForLoggingException.php',0,'ûŽtìÁ‰æ°Cn`ÜéÅ','ûŽtìÁ‰æ°Cn`ÜéÅ','ùK!ßÎ8GPp‘ÚùôrÚge[ÏŒužúÑÚ','',0,'?'),('òøÞ¨÷Üó+æû^Ð','wp-content/plugins/updraftplus/vendor/symfony/process/PhpExecutableFinder.php',0,'‹Þ‚r¤ß¸EúÊµn[','‹Þ‚r¤ß¸EúÊµn[','×ÈújÂÓtÞ€†?ñ¯3~ˆ­øýÀ¦Aé ?`’ó','',0,'?'),('òû¢Œœ]‹„h¬¡qE‰','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/Coroutine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v¯#Ä»û8«¢nýn¤[','õ¯á EN¿ìpÙ2a—·DI½3fdŒù·‹+4 Q»','',0,'?'),('ó	]§œµ³G¸Çj¸›‘','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedCampaignOverviewSender.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%Ö¢+ßm^|+\nû|0xœ','EýÉ¿Œ¤›Ö(#‚–£í8\nb\rè~*Û·W¼pä','',0,'?'),('óÕ 3ð§DjÖÓÕõÈƒ','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Filters/HeadersFilter.php',0,'Ä_¨áèA…m3ƒññ½ËÛ','Ä_¨áèA…m3ƒññ½ËÛ','5}ÞÇÈÕ·bCEpn¤…tÕKÿW•Õˆ.6ÆÖ`','',0,'?'),('óz.Êþ\'Þ\re¢z«C‚','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Exception/OpenSSLException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','66\Zj³Ÿù–Fë','7y€á|¨L+íÜï¬3:Uïs ö$7Ð,„JRUR40þ','',0,'?'),('ó#\\ú·â¨/‡vXR','wp-admin/js/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú]|ÁØ2ç^gÌC','¦Òð òâKx°N6rÆ	ó0—¥1Ç^_‡Ë!8','',0,'?'),('ó$óâÞéúOvašª¸8ï%','wp-includes/blocks/text-columns/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¾ìáu_·<ï8¨‰Ì†Al','!§¶ú×VÜ×ÊÛjd^w!è…l2Ú¶²ZRfb%+ïØ¤','',0,'?'),('ó&slÉŸf—£ï½\Zc¯','wp-content/plugins/fusion-builder/js/views/view-row-nested.js',0,'g½1F}xúÝE¸Bç¾Ê','g½1F}xúÝE¸Bç¾Ê','s„JÈtõº\rÙÜKt?Í\Z[\'?`.ûàâ»ëLúOñ','',0,'?'),('óLTÜn3ÆTï+]×Op&','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ClosureCommand.php',0,'8v0~ù‚Ûœß­¡ýR$','8v0~ù‚Ûœß­¡ýR$','“í§1ô€¤U®x¸Á©Œ¤fjé¤oI²¨ð}Î','',0,'?'),('óM[?ObŒU6$Þš','wp-content/plugins/updraftplus/includes/Google/Task/Runner.php',0,'ý{a\"…¢ÃZ*„ÿ/Df','ý{a\"…¢ÃZ*„ÿ/Df','\"H(óTžz/¥eÔ‚{Dœ¦\'­\r7ušë\\,E´¼ç','',0,'?'),('óV¡<ßþÃr\nQµ]jvXP','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/ProviderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z¿Íø*NfÇÙ¼{„','iš”Ë¶|1…Òâv.4[ª(¶ «ôÖm@f>ô½Û','',0,'?'),('ó_ž­œñ…æ<D¤ÁhgÈå','wp-includes/block-patterns/query-offset-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<HžH):ìbÏŸ™Ë-','ÉÓ2Ž¶Û°–HOUGHì`ïûTÉïU[¿av²•','',0,'?'),('óbÇ	)ŠË2\'\\¯¢ü¦ƒ','wp-content/themes/Divi/includes/builder/module/settings/migration/RowZeroGutter.php',0,'§Ñ.P?Õh*.¶€ªl­œ','§Ñ.P?Õh*.¶€ªl­œ','	±}·fAÉüíÊ_˜ùÉÂiºFÜP²&I‘ýËzW','',0,'?'),('ób?˜<$á¹ð*<!h','wp-content/plugins/updraftplus/vendor/symfony/process/Tests/SignalListener.php',0,'E!u£S…‘-QïôT@¦ï','E!u£S…‘-QïôT@¦ï','`9žªÌå5ãA.¿g:ïº‹È?^ª„Kƒ²«','',0,'?'),('ólF‘®¾Ücë’•ÒLÁ€ø','wp-admin/js/iris.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ð10!2Ý}Ô=ÃÂnö¤','»K°í<<æ6[ö£0ºjÞ0Ãèvgõë—š›©J=ˆ','',0,'?'),('óo]Ç—¤^Žêx¾‚X','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­›ä#t¼Óì½À´[','¹ËÙ3,ø||ôO R¨®Ã5!<ˆçJ¥ÙC','',0,'?'),('óvEOFq·Ã©Ðj¢×Zû','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ContainerException.php',0,'p.Í‹S¤4È;É­C+s','p.Í‹S¤4È;É­C+s','ZI¢|»ä¦Y¡êE›=”PöCZñ\Z@[o¹æ9&=¦é','',0,'?'),('ó‡ç,·oÙ!Âz¾j\"ó','wp-admin/css/edit.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‰Y#š9‡bíÃ%œ\ZÝ(','[Ü‘á»û¹+ÀÚGÊþê½õ8\\Ì/NÖSœ>á.i»','',0,'?'),('óŠØ ]Ôf•ˆðPô¢†ƒ','wp-content/plugins/wordfence/lib/wfLockedOut.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º\ZÊÀ6/N…ïá‡','\'$—ò{Èø–ïiÈP\'\ZTBPô<ŠPp·ÈÁúW’Þ','',0,'?'),('ó`Ñ-}¥Ài_àpBö','wp-content/plugins/updraftplus/methods/ftp.php',0,'\nND0Äô53ÉV Ü.¿','\nND0Äô53ÉV Ü.¿','0¿Ñµv«9ì‚„ÑÓ<í¨t¿ „†]F\0ˆ ¨C¡Ä¥!','',0,'?'),('óšÕiü3~¯ôƒü','wp-content/themes/Divi/includes/builder/scripts/ext/jquery.validate.js',0,'\'ô÷]ÐÀ§®o\"ã7€‘','\'ô÷]ÐÀ§®o\"ã7€‘','¥b‰„¦o¸¡²<®l-/ó„û@;8ù¾¸{','',0,'?'),('óRß~P¿}*cIš:','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceFlavorError.php',0,'­¸6+»5IÑç‡‹Vp[Í','­¸6+»5IÑç‡‹Vp[Í','¥ÐÆÅ(ØRYáo3ÉÑ\'Ú^D)¼¾ãP,û‚ä|t','',0,'?'),('ó¡>·WÙ¿g÷·Szò—³ö','wp-content/plugins/worker/src/MWP/Worker/Kernel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hi»ºa»¥«­\\<ô4¦',' 8·Q\0äç¼T~ßöûš¯m3çÂj6tˆuc»Nn','',0,'?'),('ó¢´Âñª=S\nõôˆ]ÀK\\','wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/cloudways/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÇŽ:ÕÚbz@S¸Î9:','j\0§¶Ž¢ôã4Û&š›Ÿð(à>Yj>3–º\\´','',0,'?'),('ó§+	¯qî¦›‰Åz’tp','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Plugin/UpdateChecker.php',0,'í½™}M¢çLr°LÜaH¦','í½™}M¢çLr°LÜaH¦','ÿÜð”zÆV;Vâ©f	8 ð½–7F˜ÌØ','',0,'?'),('ó½³Nò³Ëô„ü«óÏsÂù','wp-includes/customize/class-wp-customize-custom-css-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°×^TË®,À\"A\nù3ŒäË',',Œ•ÙJ²vï0¡DýwB ®tÿfDDœHž‚ëDgo','',0,'?'),('óÃ\0Lëá‹Æ6Â','wp-includes/blocks/latest-posts/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','äåf§êdäŸ)Ÿoº¸o“','»Ûu)¢0ið\0·Þ›«8¬× º¬Gv9T9K—JØ','',0,'?'),('ó×¹aí8•¼¢Sàáž','wp-content/themes/Divi/page.php',0,'½ÝüÒyûotÏE±óü†(b','½ÝüÒyûotÏE±óü†(b','ªŠ_\0éV¸Ã5‚Þ)5!y”Û3Ç;?,+W½ðK','',0,'?'),('óÙªÔ#½|1\\ö2Uméõð','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamInterface.php',0,'Ý2,øANÿøëS¼[','Ý2,øANÿøëS¼[','%¯gÚÕtóéš†lpXIÑ¥I@CÌ²™“¾ó¥r','',0,'?'),('óá	Ñ`ð“¬2óYðƒ¾±×','wp-content/plugins/wp-mail-smtp/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','© þ>2Òrb!TEªÀ','ä>3)Í¹\0ºÞÄHx¯ÒèR}	áô-(¬è~Í','',0,'?'),('óóÅ¬±¬{\"ûØ5§û¾Ï@','wp-content/themes/Divi/includes/builder/plugin-compat/wp3d-models.php',0,'—|^ÚÊ”æÂ[!]›„Í','—|^ÚÊ”æÂ[!]›„Í','ü#±Ò\\{„PZz¹NË§Žæu4#r?Ä\rvÄ%Ï\Z»	è','',0,'?'),('óóÒÍÑâžžùª^Õ˜RÛ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÉÞo”…å—¹å§h€g[','€àÀß.Ö-h4`9S _\rè“)IÍ(†íWÓò','',0,'?'),('óýtæx^zï«ü¿¢','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerCreateError.php',0,'|JtvïnU»n%%‡Èk','|JtvïnU»n%%‡Èk','\" \0ƒèÅn)à^ïÉåÊ™TO‰¾—\ZÊ<Wßá<„dØ','',0,'?'),('óÿV¬“k9Û´îs¿»€Ö¿','wp-admin/css/customize-controls-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','åï\'à¨âæî3„NZ+ÁR','‡B73}	Šø–`QBÎfƒ<ñºÖë[&d¸!.*ç','',0,'?'),('óÿ¹¹<ÈÇpš0rRž˜J','wp-content/plugins/updraftplus/central/modules/posts.php',0,'‰)<¬m©o«æx{~o','‰)<¬m©o«æx{~o','SlV“ï¸åˆK¦³V¯jŒoÚÎ@‡sT¤ˆäÙ2ý@','',0,'?'),('ô‚Ž;ê¢^ð©¸´8c„','wp-includes/css/buttons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ê©Ýè[ýÁ\\á›Éå†.é','LÛŽ¾Ìb˜ÃÐñ3¥Šy½Ÿ®Ü~—>Içt¹–Á','',0,'?'),('ôç\nÐ®F†÷´9]_','wp-content/themes/Divi/core/code-snippets/app/store/code-snippets-library/sequences.js',0,'H¥*é®Lˆ¼AÃ›\0ß1','H¥*é®Lˆ¼AÃ›\0ß1','çÔÐÃa†§hµ”\0óÐJ+{Ã:„…’·¢ô³Ág]¶','',0,'?'),('ô–™Ö´æžDÑaÿ\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/Zf2LogAdapter.php',0,'\nÅ¶ÑYpA‰k¢bøß‰0','\nÅ¶ÑYpA‰k¢bøß‰0','__7]>o7v$ê-*qƒXàçÚ@k±\"âÚ}Fßþ','',0,'?'),('ôŸ¥e8“‹³‚n\'ds%ö','wp-content/plugins/instagram-feed/inc/class-sb-instagram-feed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S7çÆôãX8òUa=ýlÔ','×Ùpåê/vF½\'8®Ë=ëˆÃú—ˆñfßsÖQ	`á','',0,'?'),('ô!ÙŒÂt,›–\0´°¡','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/PhpAggregator.php',0,'•À†³&Ûáê&”4K','•À†³&Ûáê&”4K','e=26dAõ™u,§ÂÕ#Ü¥xp´ð˜·rˆ°i;','',0,'?'),('ô$žŽ’ñ•ôvF`\"ú7','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/extensions/options_object/extension_options_object.php',0,'ÿé×ä+‡0ÙhCŠ†ã´V','ÿé×ä+‡0ÙhCŠ†ã´V','uf«!×åÜ4Ê­QÌ‚:yÏ\'þëêR,ƒ¥–=','',0,'?'),('ô(ÓÔ¿£íÉ¶Û¾âè¶®','wp-includes/js/dist/edit-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iI!ÛÌ\\\Zö¤CUÁ²ÿ','¨)„Ý°PKï0íŠºîÔ:½LHÕÓM»<Ú¢›Ø¢JÆ”','',0,'?'),('ô2+aúQ˜ÛÞê<ŽÕÇ','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/VisitorFlyweight.php',0,'72çºc¶ñ,ùYä«ôÏ','72çºc¶ñ,ùYä«ôÏ','p¼x¨eP¬›’Ì‹ù_°öX\\$8×MJZx|ò¡Ëæðñ','',0,'?'),('ôA}þhòÂqùq6\nc','wp-content/themes/Divi/includes/builder/class-et-builder-plugin-compat-base.php',0,'¦×ð•DÊ’ø®ÿŠE.Ð','¦×ð•DÊ’ø®ÿŠE.Ð','@î\\TZ&¡ý–4àø)4o–“ù£‰}¾Þù	–¾ˆ\"Ìö','',0,'?'),('ôJ\'#‰‚rN„0a\rÈ','wp-includes/images/crystal/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™nVñ:ÉÏ‰óGØÔ-#k','¢~B\Z-×¼of|W¢x\\þª|¨Më)åß‰Ë¢','',0,'?'),('ôY´ªR‰Yi/µ·l@HXÓ','wp-includes/js/media-grid.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´yAaßÛþ4æ0®Õk\Z¡','eQ‹¹Ø?öbt\'Üu+SÍü\0î¹phIØñÍf Å¦›7ª','',0,'?'),('ôZÍë–Qµ!ÕÐúö®* ','wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xGIzQXKMnyrYk.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`y\0#xÄsúGìJ¶Öt°ä','ÛAárëÐÄx?jŽ’Ò#‡ÂCõFËO‚G-¢SÖ÷$','',0,'?'),('ôc733CŸ°Ì)âÙ”sY','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´Ñ/Dzxþ¶Ç‚Éâ­ü','ßÏî,ÇèÕßÊE¬ù¿{Žî0/m›aÓXˆi‰àÑ','',0,'?'),('ôhV¦î«òM&¼=9½µ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/StreamWrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¸ûé¸Ú.ÕŠ}5','\'[]&_ÖÂ:%ÄëfþlÃž»nË_\"uÂ)Kó.Û|','',0,'?'),('ôwß>dÂŒ?d…','wp-includes/blocks/post-featured-image/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º\'N\n¨y*g¨\n2h2W','LÌPÄŸ—¶EpT•©ôCB(ñØ‰f4—ýZ‚Ä','',0,'?'),('ô|×µ\\OèÈò+Xà¾Ëê','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchBucketException.php',0,'gg‰qèŠÛ§òôcÌ•­ó','gg‰qèŠÛ§òôcÌ•­ó','üÄ¬	í¼F~ÁL¢¯¾¿f&C¼²8G„Ö`°)»£','',0,'?'),('ô€›ìPÓ\0`Å¡W‘)‡³','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Authorizer/AbstractDNSWriter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êO~Hã—b*ê¼o#ô','ÝœØ´2å,)>Íó¶œõµˆudl8šqU¸“Aîb','',0,'?'),('ôˆ7:”büË\r,Ýjaø','wp-includes/js/dist/blocks.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','säXW+¸ÃÂ4ö\Z€…›','b÷Ÿjàó„gQV+ÉçµØ¸âž	<»Ÿ\'Rïáè','',0,'?'),('ô4G\\Öñ‹ç{4Ä#µˆ','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/packery.js',0,'gÍª§Ž@ñ|N@¡æµh','gÍª§Ž@ñ|N@¡æµh','o¢57/ì»Ú éFìg¿ÿÜÅ	½zÍºuáü','',0,'?'),('ô‘ÝSÁpvÍsPÈÇ^>ä','wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Models/RetentionPolicy.php',0,'ÀÔ¿tV‚ïêLµÇZhAÆ¹','ÀÔ¿tV‚ïêLµÇZhAÆ¹','C‰Fž@-dZÅ©®NÉ§5£AðAÃƒÏ[€	h','',0,'?'),('ô’\\$Fý²ºxm€','wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-restore.php',0,'§‘SÉ‘AÝMñCñg7íóô','§‘SÉ‘AÝMñCñg7íóô','iXâ vk½9+M/&‡u§\rëœ‹ÚË×Ø±dóûµ','',0,'?'),('ô¡Æ¾{mð{­Åj•ö','wp-content/themes/Divi/includes/builder/module/Accordion.php',0,'è•étF3\Zâ“9½<IIš','è•étF3\Zâ“9½<IIš','œUö™ô…bÞ¡BÓYNøA²æÃ!Pö“ÉfýdZ','',0,'?'),('ô¤Õfˆ	W5\raãRÑ\nK','wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':³lcÌHŸMT+Õ–3¡ª=','ï¡7CÍê=.\Z©ÌÕQíør|mP©ëb\"p¬3','',0,'?'),('ô¥zZ»fÅÌèip^‰2×Ž','wp-includes/js/mediaelement/mediaelement.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘ð‹a\0’£Á\Z^2-!]',' ®+	M*a)N#kqÂDm]Ê§{åø=_bç?','',0,'?'),('ô¨ðÏgÔu9ÑxÚH!','wp-content/themes/Divi/includes/builder/feature/background-masks/BackgroundPatternStyleFactory.php',0,'ÚÄhPéòáMÃÄN~ï','ÚÄhPéòáMÃÄN~ï','!¹m*KêlðÖd»xx#0®G=5—pA[è8ÚÏÝ','',0,'?'),('ôªUö¡sd3æÈ§³±','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php',0,'`¹HïÔÎÞ6£tÈ\rY³`È','`¹HïÔÎÞ6£tÈ\rY³`È','^ë)?{à“¼Y¼ÍQJE¾xšÛ%3ý`x<o%´ì>N','',0,'?'),('ô­jå8úœÈÄÃ\Z¬±ó','wp-includes/js/wp-backbone.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¯×JŒ®T	»âlÙQËÂ1','\nT•óx´öN‡@£¨s_¾“L`ÍE*ødÀ€íH”c?','',0,'?'),('ô¼n‹aÅ›kOóu›','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorInterface.php',0,'ìgeµ×_Òd¬áÙ¬\n','ìgeµ×_Òd¬áÙ¬\n','ZGgE¼™‹Û\"žÃùùô÷†‡Œ?3¬°“»ÂL/˜','',0,'?'),('ôÇß×[g~ÖÆ$)ï?“','wp-content/plugins/fusion-builder/shortcodes/fusion-container.php',0,'÷9@«ƒì$\r¡nVå¢C','÷9@«ƒì$\r¡nVå¢C','Qž Žg¨=‡rÃŒí¾\\þBÚþè;÷Ëg¸ÑQø¶÷8','',0,'?'),('ôÎHÅ,)_ÙÙ‡«…ÄÛ™','wp-content/themes/Divi/ai-app/build/et-ai-app.bundle.js.LICENSE.txt',0,'š°=~(\0Ke\'ÔB±ó','š°=~(\0Ke\'ÔB±ó','_ù{Â³Ã£O#[,šø÷	ú¼î\0#;r0Ä¾±ÅÚó„É','',0,'?'),('ôÚÎŠ—¨sPT0Qj å','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/PostSendFailed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‡?³¯ûÆá¨ÈòŒP¢','…²t—v¢‘«ðA¤7ldÜÛ•G”Åª†|5B5ˆ3','',0,'?'),('ôêEx¤g±¾òÊëµ6ñ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßþÒ~õÜ–»kj1öá´','pžt”q+|<|R.,X´p0ûÆðØ†×Þf§ÿŒé','',0,'?'),('ôöö^  “®™¡MF\\','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/OAuth2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z<Pž#Z$\\¿Ú·C¤','J½ÐHò\rÚ‘y)àîKÛÐúw…ãÑæ¢Äc¢Â¸','',0,'?'),('ôÿöÏß]¨R>Üw.’EQ','wp-includes/sodium_compat/src/Core/Curve25519/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y¢ªÏ›ÑvjŸ×\nÀ…Ï','ãSÓx–^öV>mÐ!-ªqì÷ÌñDÙeVÑßÎÈè','',0,'?'),('õ(T/Iûƒˆ‹eêvB','wp-includes/blocks/table/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','÷Á\"9ÎTœÊ³ÕäH÷‡','ÜmXï4ãÈÑÁ3ÅÓˆ¾&¤;aìæ“˜Ü\"0çz','',0,'?'),('õëAû½€™ûÇÚÇ}','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/Create.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Œ™hëUC=q©Zéª§&Ì/','ïj²g„[\Ze¡¼7¶d<÷hW°v-ÓW@w” µ¸c','',0,'?'),('õnFßu}¯©‰Ò‰ä','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Size.php',0,'þ‹4<k‘5Mð\'Ü_–Dö','þ‹4<k‘5Mð\'Ü_–Dö','À0+fU‡ñSn|‡+M<‚0.+q«ÕHK†Th`FŠ','',0,'?'),('õ!¥Ö(yJo*ÈîJØ','wp-content/plugins/wordfence/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆB¹\\BH+—±ß)	','‰ö84E¨3I6-¸–£‡9ü¼ß!zŒÀGLº5','',0,'?'),('õ#x¥þˆÁt3!R®’','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffPlugin.php',0,'­RÊR…Í”%œ’¨©¶ü','­RÊR…Í”%œ’¨©¶ü','¨:rBm.eFF\nc´R”/”\":›v5­_Þ#ÁL£V','',0,'?'),('õ)—#jñdš§S¸¶îeÊ‹','wp-includes/js/jquery/ui/effect-shake.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ú;5Éû_Š€ÿ´×éÆ½\"Ü','©$D²ñÐIAXFéî£¥öéwHÓYOºJ3ªKæ','',0,'?'),('õ*÷1¶Gé«víLßŸnŒ','wp-includes/sodium_compat/src/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I gÆ…\Z:òòÛé—ø','|ôN5È©*ÍŸãèh7jÛ.ðx“ÀÌ}®Ê—ãÚÆÎ','',0,'?'),('õ-\"DíÊÊ¹D²5aÐ/','wp-includes/cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$ŽBã§ë—ùÀQGÉz','8Ò+\'pÀ˜˜|¯ëµÑ†ØK‘±O–<_eÿ-','',0,'?'),('õ8ôO(uÊÑÇÉà„','wp-content/themes/Divi/includes/builder/feature/ErrorReport.php',0,'XbX2\\õ&ÊœAÁ¹E','XbX2\\õ&ÊœAÁ¹E','¦¸4ðàWÔ\rø¨‹?+ ò4ºÂíõìë#/‡¾Lá','',0,'?'),('õ<\"?r*IÞ€V¶Ü¯²','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_lv.js',0,'7[À×7p‹OJ\Z)€Í','7[À×7p‹OJ\Z)€Í','¼´»‚K\nDäÎçÃ;\n\rª6YlK3ahÔ„%aô ','',0,'?'),('õ?{xåŽ&9úNíÁÃŸ	Ü','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp384.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õW¬^¬ Š©<6HªU\\æ','ÕÇ[­N‰1øƒŽ´?îÄ˜~{ü)¯xˆŠèVŸ\"oº„','',0,'?'),('õA4eøêÇ{¹^š†ÒZ','wp-includes/js/wpdialog.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Æ·y\n	î½ epÜÔ©f','ÕÃ!/òŽAŸƒfÓ0=“ˆGÓ7Šh•/†uUï&gŒž','',0,'?'),('õF¤ë\ZÁ“ç®Cüì1®P','wp-content/plugins/wordfence/lib/wfDict.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yß LüêïZ!bE±ÔlÚ','óµÊ.{0JeúÂ{×5-Æòì~[Tš$Äž','',0,'?'),('õn$|GP?´-ŸpÆÆ¢','wp-content/themes/Divi/includes/builder/module/Tabs.php',0,'gæ\n÷QDÿ–ŒºLÝ±Z®','gæ\n÷QDÿ–ŒºLÝ±Z®','¡ù	LÃäÛ”†?Ù×ÌñÿèyYV÷ö:â`ó]¾F','',0,'?'),('õuôNâƒ.A_Ù_Ï','wp-includes/js/media-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','“¨@4VaˆË£‚›òÅð†á','¸›¬9™R—Ö‡®\r‡ Æ²o[ÇN†K–ÏÅ¡*h‹ï','',0,'?'),('õxÃ#D\\)Mæ²žÓ££','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetFolderLists.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àK“óxæîË(5û¡à¸¨','‹Eõu¹‰²ÃÀlt@iCBâž€ÍÍ‘P©‹™®','',0,'?'),('õ‚\0¾7#ˆ\'‡Ë»(†','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnrecognizedServiceError.php',0,'4«yEM3Åfú¸¯¤Û','4«yEM3Åfú¸¯¤Û','´u^MS‡ó¬ãwƒ(”–7\0H£XZ¥dU“¿','',0,'?'),('õ„– »J\'÷’•D‚÷Š','wp-content/themes/Divi/includes/builder/module/FullwidthImage.php',0,'À¶’IXd`ùºS*Ž1N','À¶’IXd`ùºS*Ž1N','2ß`&„-üöâû.ÙxÒÕßqÐìžËNâDÒ5','',0,'?'),('õŠkúÅÕ ™\07“ ','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/da.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sóDÒ…i±),<›À1iú<','Æ<|,óWëb±°TI¯1F\"ü’¾c—/\ZKÓbzßšê','',0,'?'),('õ•Ž½J„¢¡†_g–£è','wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/advanced/updraftcentral.php',0,'Ÿf)FÇ|„±•{8Ž\n&','Ÿf)FÇ|„±•{8Ž\n&','“=è`s$—›UÉüË¶#	j[ÿ~)¡k\\§êîmœ','',0,'?'),('õ¡à	ì+ÙÚf%qÝCo','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression_DayOfWeekField.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tl\0Ïe°ï&.d\nfðÄg','ÿ“¦Zfåò²eº“L‚†\r0KÚLÈŠò&´‡','',0,'?'),('õ£[GÀÕéüÇ˜p½','wp-content/themes/Divi/includes/builder/module/helpers/TransitionOptions.php',0,'/¾ šIçQåÉ+ñ=¶¡x','/¾ šIçQåÉ+ñ=¶¡x','PKC\'2H…±Ð\'E¦þB,þÜ~IFmŽ”o‰','',0,'?'),('õ¥†ÂØÞ>+ÜžL[îm','wp-includes/js/tinymce/skins/lightgray/img/anchor.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«Óa5q€ÜÈ‘_4ø@','(afoÑÒxÔD™paQ6Ðmtké»,ùÈóV^','',0,'?'),('õ¥Ûý(ëÅø%ž#€9yn','wp-admin/css/forms.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rÇ÷gv‰\r]«G½Ø·«','lÑ`A¸Ÿ×«mSÉþ<0p8Zs”~‘x@¥´S[ì','',0,'?'),('õ¦o¼bBrÏj3#\r¼—','wp-content/plugins/wordfence/waf/pomo/entry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';Â²iGQŒ’AÔê®w','79]“ù§#Œ/–Ã÷rùbCte\\cõ’˜ßžƒP','',0,'?'),('õ«áSìNOiŽ–\0€ò×','wp-content/themes/Divi/includes/builder/module/settings/migration/TextAlignment.php',0,'²rÄÆFØD\Z|ž®ýì<J','²rÄÆFØD\Z|ž®ýì<J','ûÁ;ëÁwûí÷ò\rgÙðÐ;Rs3Àñ¬.','',0,'?'),('õ·Zü%éß¿Ìn‡,žç','wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‘×ém6°wå\r<q~†','.Š@ŸZäÄëOFàòáýÛÖØÝÎ`\'„ xV,','',0,'?'),('õ·D°µª6íSÿ/ÈcQ‚?','wp-includes/customize/class-wp-customize-background-position-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ì+	]\r-WÌùÒ½¡Àµ','2j´ÙË¿üjB‰Ø\\‘Cv‰¬ùq´ï,Ø\'ÓÁëFï','',0,'?'),('õº[0‹\"9zÌqDtðÙ•','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/spinner/vendor/spinner_custom.min.js',0,'ø†Sÿ‹\\Ðí\n£½ÓAV¢','ø†Sÿ‹\\Ðí\n£½ÓAV¢','êúf\n²hÏEŽRÒdƒ+pÚíÎ^2rû<Ó)$›D†¼','',0,'?'),('õÂ{Z\nÇ0D\rO‹M*UtÚ','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/GeoIp2Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±N	¸SÒXÙ?zÕ±Ó','å¿àæÔ¦\nÛÙ²LKç”Y¢•Š1Ó%ùX7Ù~Ò*','',0,'?'),('õÊü9Èw®|Ì .êþ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV3Https.php',0,'.çþWàãçkæ3æ	N‰¹û','.çþWàãçkæ3æ	N‰¹û','E[kì;”\\D×ž\Zg×Ñ)ž™´b(&HÓ“Šƒ\"V','',0,'?'),('õÜ¹aæ÷î÷ä|°8âO¯','wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha-48.js',0,'Èˆ–ÐÆ“7Õu3Œ','Èˆ–ÐÆ“7Õu3Œ','+éŒUÿ0ñ™·:Ç–aàã%Pm`ó]ÙÈ','',0,'?'),('õàÐM	¿ñ4â÷8Gª','wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php',0,'„Êo»TqYi„<Kgu','„Êo»TqYi„<Kgu','\Z¡Ä@a¿Ê[\0V×7 Ýš›©ÌùºÑÊ‹\0´','',0,'?'),('õæØõ£y ø\0º\"¬îQ','wp-admin/user/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ùzãVÒ›¬¾‡¥‰¿ýá','’ïm˜\rÝ)¿”h0ÒE¹C§¤ÃN¶`ßD[	$3','',0,'?'),('õ÷Ë!‹¯=[d‡3ßÎ?‚É','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php',0,'q!‹ÀSGJ9†o”[æCí','q!‹ÀSGJ9†o”[æCí','/Fžuó§~¢Í\rf\nÞ¡ý¯†/ÝTœ3Ï¸¿Qò˜','',0,'?'),('õøb]a25â‘5lÈa','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceUpdateError.php',0,'a‡‰\n3p*æ~÷\nÌe=\r¨','a‡‰\n3p*æ~÷\nÌe=\r¨','æp¯òfïªg˜²ô!UÏÛ_ì#x©½B°,³p½','',0,'?'),('öâ‚á²›dtCA6I','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/frontend.php',0,'éýuïdµBy.Äß°ã ','éýuïdµBy.Äß°ã ','øÕI%Pöo\r“![é?séÚ­žk¸9HðpN{zxZŒ','',0,'?'),('ö\n\\t\r°ˆ°‰¾®Æ÷','wp-content/plugins/instagram-feed/js/sb-instagram.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ë)5_ev\Z9Þà?ØÉJ‘','ºâìiŸ\'xÍh£¸]ëžJä‘·c˜:ôÿH€Fá]9Ø_','',0,'?'),('öóš¼|hÃÍÑR~¦','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/OptiPngFilter.php',0,'mÌì©Ôgà‚W­…ÎŠ“Eº','mÌì©Ôgà‚W­…ÎŠ“Eº','ój%\nCÝo“	¹ÚŽf¸\\-dâ™žé)m’ïQpx','',0,'?'),('ö€~¡‘äâ»âr„C›ž','wp-admin/link-parse-opml.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤¯¥¡xaÛ”2ÌÓF','É÷%¥vP|X†Ó:ïx¯>ò]|ŸÃy|”’:Èøæó','',0,'?'),('ö\r§ðDü^Dã“Ø€Eä.','wp-content/themes/Divi/includes/builder/module/field/display-conditions/DateArchive.php',0,'B\"ã:6Eaï9íÇ|','B\"ã:6Eaï9íÇ|','ô­+²(/ÍNÔEJÅ²Æ”1	ìž ž2sàL‚m¸m','',0,'?'),('ö#Ñ3ØVöî6D¼¶!×ð','wp-content/plugins/fusion-builder/inc/templates/previews/fusion-vimeo-preview.php',0,'ó­zÌ3\n\r¸1z\0ö','ó­zÌ3\n\r¸1z\0ö','Wî22W ðý€Çƒ	¤1jw)ÄÀ¼\n¹a_a\"¢ìIœ','',0,'?'),('ö%,ÊH²‰¿6‚>Ëó1ô','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/History/HistoryPlugin.php',0,'©eHÊs\rÃÃOÕRi«“f','©eHÊs\rÃÃOÕRi«“f','iæˆâÊÕ´LÄ¢È¬7q\ZÊØÞp„Ê\r¥]™V ûÇ^','',0,'?'),('öjØæ²Z·;\nlÐ“¼','wp-includes/random_compat/random.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','µ5&}kÒëé!6»$“','X8°P©öÔ_9õþ®kQÅa[èç-mS\'<‘@Ì!V:','',0,'?'),('ö+NXM]&Íý*èßh','wp-content/plugins/wp-mail-smtp/src/Providers/OptionsInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m–pÕ„Ç]V­e²š','¿þ’¾ýku¿K6ˆDí÷nvÆ©¯ƒèW§$:àÛì','',0,'?'),('ö:Ó±`Jœýi¦L„¤ñ','wp-content/plugins/contact-form-7/includes/integration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÞÖ¶„Ë&~7ÐýTé\"™Çë','TÍ®þ\"é‡ÉótJ±Òý[ÁÌMAÀÉó/p¤mU','',0,'?'),('öGTwzHÈRŠ´ÕcÔ8','wp-content/updraft/themes-old/twentynineteen/index.php',0,'n`8ým±Ã°ºÍ[4 ì','n`8ým±Ã°ºÍ[4 ì','EÊ<|‰í\'‡ùÿZe8!ù5Öh¶{r÷VFßÂÊ$ý÷’','',0,'?'),('öKF\nOòiñ},íö‘wÇ','wp-includes/random_compat/byte_safe_strings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ä[BÒ£ÈJÚÔˆÂ;',']²Qì€Ë„=PÝµuÐQìÁ{>Ï‘¸ó','',0,'?'),('öV9´ÔK±áÄgoX±¹7Ó','wp-admin/images/align-left-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i…8±O¹ƒšìÐ^—Æc','$kb¶>¶àÎÍñk&ž:	Ú‚a¬7¹¶Zcdm‚´%','',0,'?'),('öW#:æáV¸ó¦šü^H3X','wp-includes/blocks/nextpage/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7á`¨\ZJ˜…õ­£ç$¯','OðÊõ1ÇŠ8øî›ä#°ÀûCð\\({xSzW\'LÞ','',0,'?'),('ö]µ÷ñìÑ{û‡³Þ','wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/SetRequestSettings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Óã#%mÒÆópn¢‡×|²','™ò\'ÁD•š±fÐE<×ù¤)9óú‚’q åÑzÄ)ž>9','',0,'?'),('önã(½ª_¢éÍ€­:','wp-content/themes/Divi/epanel/theme-options-library/ThemeOptionsLibrary.php',0,'×ƒ.€òA521®[õG½ ','×ƒ.€òA521®[õG½ ','­D\0Xcôú­Ý6³‘C¬,óó6oe¿Y^ÈÏHäòB','',0,'?'),('öt_	¬’ÂÉàz¥…<‹','wp-content/plugins/worker/worker.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','°ÖÚÁ€§ëénû/ô','çìTæt*p@¬RÝ£:‰•zBô²Mö¶Vª5cHôº','',0,'?'),('öy5ŒˆâÌ»°ÁÐ*ºwZð','wp-content/plugins/wp-mail-smtp/src/Providers/SparkPost/Options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Ÿ«„ÙËQD¹ÕSÛà|^¨','gÊ¥×ä½‡\"\"©?¥¡[€ö4$˜­6ŒXv™5','',0,'?'),('öyb·	Þ	ÜÅúÄb’‡	î','wp-content/themes/Divi/includes/functions/sanitization.php',0,'läå\nõÃS	ï‚TcÏ}0','läå\nõÃS	ï‚TcÏ}0',']5‹‰ý>êÓZÝ]Ž‡õˆðë“-¦ŠL£;','',0,'?'),('öƒ¾å{Úæ“ù¥L€','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/AbstractSyncBuilder.php',0,'m·ÿU…»Šú‹˜‚åž{','m·ÿU…»Šú‹˜‚åž{','øMx³,9äÝô|èIÆ„ñOÃž¹Hæ\"‰ƒ€ÿG','',0,'?'),('ö‰­¸¾Q5µ¼þPAd','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/UploadSync.php',0,'È\'rïÀz¤+2ä»¥G¬','È\'rïÀz¤+2ä»¥G¬','‚++B„èYgüf†U\'^ñˆ¶ö1¾ÙþÿŠÝ¡¤Ä†','',0,'?'),('ö”ÃìñÚ„ml:bVßSú','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateEmailCampaignRecipients.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼ˆ6kuæoØä{¹Žì','qùîTÅ=¯ÒŠ¶>Ÿ[ä¦‘þÜúšÌ‰^Ã‡4­','',0,'?'),('öÇ¢O|8º’ ‡\Zë','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O4ââo”®¦SÂ½Qý','¯Ð¡<óg½@ŒJ$üïZ\"‡Ÿ0Jÿœ¹aED›š\0','',0,'?'),('ö¨£’ÂþH©S!;ø ó–','wp-admin/js/user-profile.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”D¨8êl,­¤+TÇŽ','4C]Ì(®·”‰ß´„fð¶œùÊ™)YcyÓÕ$¸','',0,'?'),('öÇš 9ˆ\ZÅ–Ålsî,','wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/WoocommerceProductVariablePlaceholderDataStoreCPT.php',0,'ÊaÃ>šÁ<\0Ý˜”˜àâûí','ÊaÃ>šÁ<\0Ý˜”˜àâûí','öâ10!ß\r’/ü¯js–Év2LRÁöË+z`[W™Œ','',0,'?'),('öÈ@æ}Ÿ~¥4G‘v<‚m','wp-includes/sodium_compat/src/Core32/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gé¥bñf>Ž•ë½=™²·','¬¾“šßº×`Ï\'¸‹ƒç›±“ÍÐ–x#i§ÔÅ#ª','',0,'?'),('öÈ\\ö÷LªlAâÖâ*¶','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFile.php',0,'}û9ÖõžŒÙØömZÙ','}û9ÖõžŒÙØömZÙ','èçù†¶¶öˆ8ï ±ŸdÖs~K}A°§ïHX%','',0,'?'),('öÊí†+¢šÇqÉpW£Ã','wp-includes/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ù\"m<µñi®Ó>ÄkMR','r®Û„·º(ÿÆ…]›HÂÖ¸¢U.¿\0½KRšFZÎ†‘','',0,'?'),('öÓã­`×&X<ÄaQŸVh\\','wp-admin/user/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ¶x8 Ì!¨µƒx–S×j','ìÉJ€íÅf–v^÷DÓwôÛ¦\nÆÆsðBu¦/¥žŒL','',0,'?'),('öãWéA¼ÞYVý€¹+','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/AbstractSync.php',0,'Ï“|g³~ƒ$°’ðàÔÜò²','Ï“|g³~ƒ$°’ðàÔÜò²','W¿¹ÐÉ\0÷lçñ‡®/$•oÜX\0sr*\'yd„¨','',0,'?'),('öçyY)h¯•N¿úÃÓ','wp-includes/js/dist/customize-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',2¿’1£õ\"9GJí*vŽ','Ô¡ùc¯%œ˜å\ZŽ„iæ>¥LÍÍ Z©Ø½¨áóòK','',0,'?'),('öëŒñpy]çûÿÑ{Ãí','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/CachingStream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ð—Ž¨ð:%Ñ¿‘nÖf','ÒWC$Ãm œ¤ë	µ÷\nF‚|]Žü!l©b—âèƒ$|','',0,'?'),('öýåÀPq-³tó¹@lÊ','wp-includes/images/wlw/wp-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1	ŽÊš‰7w3K™*','5 ·¡}ìx(ÚÓrÜ:a,zmKƒH1|/ã†Ñ+ò©ñ','',0,'?'),('÷\0óÒcØhó„‰ºà','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingSecurityHeaderException.php',0,'®§Pçî¾üžH|xšj”Y','®§Pçî¾üžH|xšj”Y','nc½*úŸ=˜Ã‘…0$+‰p|`l¶ây±„êRoðƒ','',0,'?'),('÷,Tï_t6ÍÑ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/media/field_media.php',0,'%«ÆŽsÛ\r9Aµtè','%«ÆŽsÛ\r9Aµtè','v˜—Ü½Ã+¦é§_À8k¼yÓw*iþé}åX>Ô','',0,'?'),('÷\n%ÏãZÂc‘åÔq¢','wp-content/plugins/worker/src/Gelf/Message.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*$á@4š…+E\0œ½b,','<`8ÎÄ×;u‹¸YM4]­eôÐmÁ 7Î§›V˜','',0,'?'),('÷\n3È	zËÖ»cÑÖù','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/preg_replace/validation_preg_replace.php',0,',ù®rÈÚ!ö*%lûe	',',ù®rÈÚ!ö*%lûe	','‘gœá¬©èãOÄ:aãg?«n\r\nÆ\'±îÄ´¤T±','',0,'?'),('÷¶gxƒA‰È¢}¡g¢','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','™é½]áŠ®éÂìÈ£&','‘™K”ò#ò@JU°}F—„ŽÁÁ,üþå![','',0,'?'),('÷Hë	h7Àê\n{O','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-patcher.php',0,'­1/W\"Zº4`À±ùÓ-Ï','­1/W\"Zº4`À±ùÓ-Ï','ÐªU¤]ó”{c °ª +×+½Àà\"N{¿ãa\Z. 31','',0,'?'),('÷ @ï;€ú*ÏÁ|¨°','wp-includes/Text/Diff/Engine/string.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':±“=üM©Ã\0¬ïi)','Á¤áÆd™¾[«%ê‡nZR¹×`ó”²…éÐ','',0,'?'),('÷6WÑ“­îGŒ\0ª¾ñ•€à','wp-content/plugins/instagram-feed/wpml-config.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r‘ó®>ŸäŠJXwÙN','–#¶apƒ•‰#ªXeªî&`FˆŒ_)-g<•j','',0,'?'),('÷COÓZc¨–-#Ô˜^\n€','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"êŒ2s7¬ø\\ïi#—ËE','aÇÜØ„ÓÞt¹ÀWñÂ	Ì3NŠ\ZÆã`x†hIÝ`À','',0,'?'),('÷DI¼\ZªV—ºçz³)™l','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-text.js',0,'ÔŒÙ\0²é€	˜ìøB~','ÔŒÙ\0²é€	˜ìøB~','ã°ÄB˜üšûôÈ™o¹$\'®Aäd›“L¤•™xR¸U','',0,'?'),('÷Tö.ý™(.smyô·k','wp-content/plugins/fusion-builder/shortcodes/fusion-soundcloud.php',0,'õœÊ¾ÇÉE{í/ÎžÍE','õœÊ¾ÇÉE{í/ÎžÍE',' R)¾9qÑÚ„ÛIC-µËÓ]UGlN¼ïiÔ¨ù','',0,'?'),('÷f­N®ýŒz»9‘Õ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/spectrum/fusionredux-spectrum.js',0,'S¿|,\'£	ž¡sç$Y;','S¿|,\'£	ž¡sç$Y;','ïAéUR!áâU*p_r‹f˜FƒàI\0)åŒõu+','',0,'?'),('÷i,ê·Ï½ƒÏ‹ØíŠLÏ','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.easing.js',0,'AŸ#\rz?UöJè\n','AŸ#\rz?UöJè\n','èf:ŠGP¾ü±¡½‡iõ…±„p•Žyà`•/g(gâc','',0,'?'),('÷pÃ•Éî÷éK¹›N\'Ñú‰','wp-content/themes/Divi/includes/builder/plugin-compat/sg-cachepress.php',0,'Y !Ì‘5\"CZ\n÷	','Y !Ì‘5\"CZ\n÷	','\nºx	¹Zé”ª‰ÿ!=­ä„O1}ZrÌò^FLZŒá','',0,'?'),('÷sÓE\01J_p0·yÅ¹','wp-content/plugins/updraftplus/templates/wp-admin/advanced/site-info.php',0,'È}†¤íQÅÏ¬\ZÝ\r¿ü','È}†¤íQÅÏ¬\ZÝ\r¿ü','š‹P8ñ4óójÿq\"¥\"5Šr³u÷â[Ø¹»Yw','',0,'?'),('÷vÅˆ&¢CQÄ¨‡ù','wp-content/plugins/updraftplus/includes/class-filesystem-functions.php',0,'Þ_7¥\"íd:GT&U{Oœ','Þ_7¥\"íd:GT&U{Oœ','e¨šPQË„ÍH„Ð>[à¥¡Û>’]eiâvìH›Â\\','',0,'?'),('÷UkŸ«>]õº\"ÏÑ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/Promise.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uµô°—,Õy·>‹wGT','…ÅJygC@§Œ=aQVØeN GCÛŽÀl»tP€','',0,'?'),('÷‚:ÆMÀ6]1³×¬ømWé','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/FulfilledPromise.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è´©nUèW‚7tÜ¾z½','Š…q±íû Þ¼‰ÓþmèE[>V1…ñºdULG,Ö\n','',0,'?'),('÷ƒ6=ÚySç÷„gÃ©o','wp-content/themes/Divi/includes/builder/module/woocommerce/AdditionalInfo.php',0,'B(‰ûð–Ý?Mõ\'Kµ(Ç','B(‰ûð–Ý?Mõ\'Kµ(Ç','Ó¢‹ˆÓÏ¦6õÅPšt¬)‹Ïcù§±µ','',0,'?'),('÷]pÝRŸ/$¸1ö','wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Á+„$B`wäÆ•´‘á','ÿaºÄÝâ6ãìÍÎŸªËîv]z5Œ’ÚÁ”¾\rpñc ','',0,'?'),('÷–ø¬ì@4×™’˜#äÄ·¼','wp-content/updraft/themes-old/twentytwenty/template-parts/navigation.php',0,'Ãü63Š~ÿ¿jw;Ö','Ãü63Š~ÿ¿jw;Ö','“3£ôÕRxª}”|”%DSóPÉŠ4àÎ-|~','',0,'?'),('÷¡ÈéK4V44–X5%ý¢â','wp-content/themes/Divi/includes/builder/module/woocommerce/Title.php',0,'Ëà†;ãûØå N¬å‚','Ëà†;ãûØå N¬å‚','{‚G©„y=\\épBáWKã›-Ü@$68TÈÝ°çÞG','',0,'?'),('÷¦‚¢¿Ÿ	ý\rj´0Ù5','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/AbstractSignature.php',0,'f½pa©f›\"_l ´','f½pa©f›\"_l ´','&|Îß2—zº©@$H«4ˆnžý§Â£¯‚\nÂî\0Î+1','',0,'?'),('÷®1‡b÷>Ù¶Suj¸Ÿ\\é','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/XML.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','£\n(Î*²† ’u¤*P','¯ËO>ÓÊ‘š»Óe&ý(o¹|UV«É¯+îá','',0,'?'),('÷¾»JÕKzà7Þ\"na8','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/phar-stub.php',0,'øôWàD£KX‘àŸ¦ÿaì','øôWàD£KX‘àŸ¦ÿaì','Õvq$u®ðéÕBÜq2ð\Z/€ê|µPøT§ÍÒÛ','',0,'?'),('÷Æ_wïÆŒè›ßžÐ','wp-includes/widgets/class-wp-widget-media-video.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}â—·>yò‹OËG›','10*çu­°ŠÛ¤¦ùy[\\,áý÷/ §7õ¸6¨\r','',0,'?'),('÷ËÕöÐ‘Ù!t$0v&$8','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/CDNContainer.php',0,'÷}ËÁ\ZÎybí7#œ','÷}ËÁ\ZÎybí7#œ','P„5ƒ¶t¢k4Œt·‚óI…5pmåN˜„ØÈ—o-©õË','',0,'?'),('÷éÍ®LÃýQBîfóàq','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPolicyDocumentException.php',0,'$p‡#…\ZÎXÃ3ûÍ*aÀ','$p‡#…\ZÎXÃ3ûÍ*aÀ','0oS;¬&ˆvÉ9°ÀjRµZ»I‡LÄ¯0ö®rÉ','',0,'?'),('÷éýÿuÌždDyVÆ]#','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/ContainerAwareEventDispatcherTest.php',0,'ÞåOŸ(FØÙ3ÖÒ(\"Žp','ÞåOŸ(FØÙ3ÖÒ(\"Žp','Œ’)üžB]¯Î¨c¡ánxäŠÃdAõ¤ÐOzÂU’,ÇÙ','',0,'?'),('÷î}ÐÔ¨çÑrvyÊ\0ê','wp-content/themes/Divi/epanel/js/checkbox.js',0,'³ðO;g¸‡Æm`Ru7õŒ','³ðO;g¸‡Æm`Ru7õŒ','öBpo>uXÜy›AèwôDXüÃ\r½?}Zê\nbº','',0,'?'),('÷ðŒ&*ž45	;8H³','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/UnresolvableGrantByEmailAddressException.php',0,'Ý¬½Mç4º2+ç¬Ú²','Ý¬½Mç4º2+ç¬Ú²','ÀÆî=RÒ9CÅ5•wƒú6G¦¥MéA—‹‘','',0,'?'),('÷ý@jGª,âÑù\\¥Ö7?­','wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Logging.php',0,'¾*Ìà¨A@r¾QˆGXy','¾*Ìà¨A@r¾QˆGXy','‹‹û°\\†k^íN³ˆT‡p±´Ym˜UÅ¼P\\…','',0,'?'),('øä-L¨n…µbê\r¼','wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ClientException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½iÁôÑ˜2¹\r0¬ë<c','–NîÂWªGœ»œí±ô*^¶7_éþø.1¾ëWO½§','',0,'?'),('ø-|Vñûû™ÄHÛ%„ª','wp-admin/site-health.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K¬?a¡ëÛ©~Sã4î\0L','JAÕ¿ÉÁ\"ÐSÖ•JœÑ]…“ˆ Å‹€´¨êŠÛ','',0,'?'),('øèÇ¢½BÕ´(Ö\\½0J','wp-includes/class-wp-text-diff-renderer-inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è8³l´²_\rî²uÿŒ©','¶ò×¤meôý,–ÍV„„ëÎ9ó˜}ƒÑæó	y”»ív—','',0,'?'),('ø.%¬¾Âg]÷¹~ªnå|½','wp-content/themes/Divi/includes/builder/module/settings/migration/OptionsHarmony.php',0,'u^9Õ;‘<#½»]•ß÷','u^9Õ;‘<#½»]•ß÷','žR{´ÒµúçÂ\"c*•˜@%?~¯¶á!ô&Hc\nª','',0,'?'),('ø6N]bN«íRø‰„“ƒÀ','wp-content/plugins/wordfence/vendor/geoip2/geoip2/.gitmodules',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡Ú„ âqö?s1šµÔåU','çREkks&]!iª_‹¤š‰\"üÉþêy~œøÁùKa‡','',0,'?'),('ø;Ç%N!9\nL&N„Þçž','wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','òAþp?kìÄÍuÌ)T$­','¥ƒ3(á¨\"’Û\0øÒæž9K\"8ÉÏd	gãk ib','',0,'?'),('ø>ÏóI7mª›ñ>–ê£','wp-includes/blocks/embed/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m,Ÿñ¿-uÔmõüÔª','H±ÎfUgqP›ÉÆý— ar2üä¥¬{~„±–?ó','',0,'?'),('ø@¨ÒêsB0<€{l¶3ŸÑ','wp-includes/wlwmanifest.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ßÔ¶óƒê¢ið^ˆ–','ÕÆ¤JÄ¾**X|i» Ïcy-‡u6pèÀC-æ$*\n¼','',0,'?'),('øD=ŸË÷‡ŠèÖSºÛC','wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ù%ôX¤ö°•Ð`Ð¹KZ','SµW ð,ªè´f¤Ã×K{®ÿ\\™ÐþÕØàŽò×^Y/¨','',0,'?'),('øJn>øcïä¶Á`º €ð','wp-content/plugins/updraftplus/methods/webdav.php',0,'©#§–‚ã‘+¸¼˜þ;Í','©#§–‚ã‘+¸¼˜þ;Í','!¬fÍÑ,FÈ æ¦îJ°Û°Üh1ÆM+Ê?æþ^ÇXÈ','',0,'?'),('øQ6]MjÝ†o¤¨‚ª¢â','wp-content/updraft/themes-old/twentyseventeen/assets/js/skip-link-focus-fix.js',0,'u«ÔÍˆ³ù÷úëwîwK','u«ÔÍˆ³ù÷úëwîwK','“‡í“ü:($K¸¢Ñ¼¸y£ÏÌ7bàíýªfã“¶§','',0,'?'),('øbA«ÒõdV‘\\ÿ4©h\rª','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_ka.js',0,'ŸÅ¨¹ô÷Á­±åíf^<Rq','ŸÅ¨¹ô÷Á­±åíf^<Rq','â\\rm¸ÕRÑQÇ„ÚÐ™ž ÿ8~vŠžg™$	\r“`‰2\r','',0,'?'),('ødÁpG(øôþTÏ­‹mµ','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidRequestError.php',0,'aMçZXé	Ûû‚K¨','aMçZXé	Ûû‚K¨','XBNyU½(Ò¯ ¹9@WÙþãÿ¯ó7éêlö;åïþñ','',0,'?'),('økæÞº”e<FêÚ4','wp-admin/js/revisions.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>îƒ\rÓn¼é ¿ûÈ\Z','\roMQC÷irtMðÒ¡µª™ñî––ûI‡·¸Ç_','',0,'?'),('ønSŽ˜ÉD3Äšÿõ','wp-content/updraft/themes-old/twentynineteen/footer.php',0,'J³…|¦Èý©WÕžRÉw½','J³…|¦Èý©WÕžRÉw½','ØR œàK3§•ºN–A…Ÿñ…A¯jA¤\rÓ¼yÁÕ¿˜','',0,'?'),('øp`vïÀ’DÈÈX}','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CurlBackoffStrategy.php',0,'z\0ø½Ý½Dí’hÄ»%™','z\0ø½Ý½Dí’hÄ»%™','¡Å\Z»Ï—”‹j¿»®ÆÄ„œ!ò¬±éÇ3\r	àÝÚ4>','',0,'?'),('ø‚Ö,ÛÊÏÀî+ºü—','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_FatalErrorMonitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=ž÷÷,ÿ##á².ß!oþÎ','ºŒ¡Aº,=‚’ñ%`	y!²vèø5Ôx·Þ7','',0,'?'),('ø†¼>‹bÔ4/:—Xí\n','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersLabels.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\#ÍþJÕÁÔæøªœùw','bÒ~¡ª>xŒ‹$ŠnAˆæ¤U%	ÎÖŠ[Žwiu','',0,'?'),('ø‹¢DÚÍ=Kô49œ’Ð','wp-includes/js/codemirror/codemirror.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦23j·í1À(DÄúóµ','á¹ÎŒá,aÂÀuäíÀ@ºsñY%Ký–Ë-o¼Çn\r¦','',0,'?'),('ø’1ïc9ŽèÐYØp3','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RequestSmsRecipientExport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jº·Öc{øß?7]¤H','Ñê*´{JçÀ“`8=\\WOd/­m˜8>*lÑºÞqÖ¾','',0,'?'),('ø“ºÖüTI¥àYéªÍ0?','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/template/plugin.min.js',0,'òqLŸéKw›¢ob~–','òqLŸéKw›¢ob~–','(Æe#Ù1r´£ä¨­ÂÜ.ÕgBækb;CÂ','',0,'?'),('ø¢ˆ¦åð†½O1\rÒ','wp-content/plugins/updraftplus/includes/tether/tether.min.js',0,'xØºŒTïe8\0mc€<#á','xØºŒTïe8\0mc€<#á','Mò¯8•Øcz/¿¹U½oòá²¥BDÂðW¦Æ$*®9','',0,'?'),('ø£ïA²ÊúmÝ§ÃÎvÿ†','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3SignatureV4.php',0,'?! È|äk,ÿºïß[N\0ÿ','?! È|äk,ÿºïß[N\0ÿ','Ø°ržå7Z5Ì·Ñ‹ß©cìN+¯¾&fù(38Œ¯åœÆ ','',0,'?'),('ø¦¯ úßCMp<Eæ','wp-includes/class-wp-oembed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üØ)—Q§\\³2%†»ð','ëÛÆ`fO2Ø–c‰÷»3/(¨AÌT÷tAp','',0,'?'),('ø¬”eþ|]ê­}j\r\nÍG','wp-content/plugins/worker/src/MWP/WordPress/Provider/Theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Á™F>mmó†ÏðBa„­¤','Åò í>5rÎM“ý.…:7Ù§ÓZÞ:Bt±ÿÏ?7V','',0,'?'),('ø³›q^}.rEý{,','wp-content/themes/Divi/includes/builder/module/field/Position.php',0,'cíÝ*+Àp7,Ü§Z±–','cíÝ*+Àp7,Ü§Z±–','~/ìM/‘U@ŽÆqKð¶ö›§	´é	íó\Z<ýÖ<B','',0,'?'),('øº¾ž\rSþ¦ûøXÄù¼ŸÉ','wp-content/plugins/wp-mail-smtp/src/Admin/Education.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t>!“\"›ò9zª‚®~­','°’F©Z÷VQftv ¼Ö.\0¸Å5cBÄ¸Q±CÍ‚ßüÔ','',0,'?'),('ø¼_Mòjî1­À~{Ù”','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ExceptionListener.php',0,',¢«HƒiâyÚS§¹ýU~',',¢«HƒiâyÚS§¹ýU~','£3æ\"§¦æ’oÅÜdW¸/f®\\6â¨ZònÌÂ†Z','',0,'?'),('øÂ6K1ýþ›(îöÝ}/AX','wp-admin/network/user-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø´Û²ÇA›Q³Þ[ý”dK™','¥&¡¹-ê½ªk÷@¶“–*£:ÒÄmû¬ê±M\n¼áõ','',0,'?'),('øÌm\'ÿÄI\" TMW}›','wp-content/plugins/updraftplus/methods/updraftvault.php',0,'•U	TÇ5‰hÃH&Žä¢','•U	TÇ5‰hÃH&Žä¢','j^”Hpî¦3E¬×Òè³À\"kv™9fI+\Z4è3…)','',0,'?'),('øÌÅ<¥aÓeÖÞ7½z°*Þ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedVersionError.php',0,'ÛQ\"HÚðÅþqyDMíB•','ÛQ\"HÚðÅþqyDMíB•','c‘MPÔïJð=­@…HšPZÒv*†Q[ú‚úðAõ¨','',0,'?'),('øÒ‰¡4ˆfÕï¹øö`ZˆŸ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/EntityTemporarilyUnmodifiableException.php',0,'Ò€kÜhMãÿ8ÜÓ6','Ò€kÜhMãÿ8ÜÓ6','ßö¦á¡&¡ƒ˜µÂãZåkO {]#aÛ‚îÊž','',0,'?'),('øÓ~*³[—Z%Ñ¶Ü½KU','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/anchor/plugin.min.js',0,'6¢ïùÍÃ!ÎTMã³@dˆu','6¢ïùÍÃ!ÎTMã³@dˆu','\ZRMkì´Åh$¸=EëÌÍ¿%Ð9µ\0gŸœ-Cl÷','',0,'?'),('øÔQ‡“—}vçÝ‰iÃÓN','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MetadataTooLargeException.php',0,'IÎôpZUŠ˜¤aÚtom','IÎôpZUŠ˜¤aÚtom','ÊôOâ$Fn$Ã}\\ºx°û+Ac½ôžcîÁY”s¡','',0,'?'),('øÜ3‹´À›RîC”µÍV','wp-includes/blocks/calendar/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z\n±‚Œõ³Uz¹PUÒá','ýâöŠé2aC•[[Ù­nØkŒ2!\ZR3LŸ.6läRü','',0,'?'),('øë˜ð§©¥1Ä¶ÖP','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/ResumableDownload.php',0,'ÂÀ¶„ŽWfãQü[ðÌ[£','ÂÀ¶„ŽWfãQü[ðÌ[£',')ÌÏ±‘#½V–JÌ™Ã»¯†…—¤/Ì‹Ã','',0,'?'),('øôŸÄ©Ï}xì™(T½œ','wp-includes/js/dist/block-library.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D‡ûôì3žìÛÞn›<Ã','æZ#%$íe—LV£‡ÐÊù¦›QýoÊÆ…\nh0*ì','',0,'?'),('øþ´Ü¸c ¯°­üê”','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/ExceptionParserInterface.php',0,'	§d<ºWß¬hJ¯îU©','	§d<ºWß¬hJ¯îU©','\r·3³.k\nÄôÚÅ¯ÿFaù­]l-ÒÑåVTÉJâ','',0,'?'),('øÿ&®Œ÷NÔùÂoã™','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/lib/constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Á½¼ß{â»#…²lÅ>m','¬æÙ¹mc(ÍlÚåû\'ÑmtÛË£•[”Ìg¹èW','',0,'?'),('ùùé¥ß\"ŽN‹ ÜR','wp-content/updraft/plugins-old/updraftplus/includes/Google/Signer/P12.php',0,'…‘TRä+†6êÍ|‹8é','…‘TRä+†6êÍ|‹8é','¶4]ÇàØâ±©§¦@µq?u¨íáŠlEñv¥%µjP¦r','',0,'?'),('ù^Q6l„ÏJ! 	âÍ¦','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜÉ\\›æoNä.’Ž','>4ßi3®|Œ‹v1µNé¦ò6‡wD¨)Müäjr','',0,'?'),('ù Å„1šr}mJGWßR¨Ù','wp-content/plugins/wordfence/views/scanner/options-group-performance.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öàõPÀ=ÝPÒ¤­ÖÓ ','Æ-9þ›\0tÏÊD\\6¤9s]² \\e\0R²r¼ƒñ','',0,'?'),('ù1·^T¿BôÊ‰¦â”jS','wp-content/plugins/updraftplus/includes/updraftplus-admin-common.min.js',0,'ØI1\r·5~h÷Ì\'–ÄN','ØI1\r·5~h÷Ì\'–ÄN','`¡4¦…µ8$¸ý>ür÷+ßËvXM^ššR)H','',0,'?'),('ùCý\Z„»L2VífëËæ','wp-content/plugins/worker/publickeys/partner1.pub',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']³/vÑØd|!~ý§ò','À¡„¬Iõ¬`\r!œ8&ç€Û°>÷µ›Žµ TðË\\','',0,'?'),('ùFjbd–Y¦ù\0ˆž_','wp-content/plugins/fusion-builder/inc/templates/generator-elements.php',0,'ŒuÌaÞD7 {ÌÄ7/®èà','ŒuÌaÞD7 {ÌÄ7/®èà','Þx1ù¸.ì•Ú­àFš %Æé¯D”¬•\'«}\"Z','',0,'?'),('ùU¶aä÷4|aÒÎ‚ÏX÷','wp-content/plugins/wp-mail-smtp/src/Compatibility/Compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›ØØíÌ77àý2EêK','\'ÏŽ¤$z›c!…myÒâuÄÒc·o›cñŸ;','',0,'?'),('ù\\ÝŠ¢“;®9’vC@sÔ­','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CallbackBackoffStrategy.php',0,'\n/åhþ‰ó®ÿ>ñæÖ','\n/åhþ‰ó®ÿ>ñæÖ','6 WD2Ò¶‚0z«dô—V:SRó0ä×ùÝhüÀ>è','',0,'?'),('ùgÿè|£nÉTõ8‹Ö‹å','wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/global/form-login-fe.php',0,'i~Ãìù;Q_-¶Ÿº','i~Ãìù;Q_-¶Ÿº','ààý\"B<\n6…»s/éFEÒ]—FÆ>Õ¬5\n9,!','',0,'?'),('ù„É±%›¹a{Z¼j	%¿','wp-includes/class-wp-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	e3pN_on0ÝÔ}ô°','´šù\Z¦ƒ„xŠP‡Ö­´‡±×æäÒxü','',0,'?'),('ù†ý\"ReA´Á˜PÊ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/PKCS8.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦ör^ù5H=ü–ÀOõ','º@ÎÓ©ÚƒtI¬Ò3y¶ù¯@ jý¢¹|ÇEªâä¥','',0,'?'),('ù†‘`¹)pO›æc½,ñ­','wp-content/themes/Divi/core/admin/images/svg/server.svg',0,'@VKêÓá|~ì\Zð°?2','@VKêÓá|~ì\Zð°?2','Dq8y\r¹VÇPnìÈ‡MðPè!œŒ/‘PŸÿóâ¦','',0,'?'),('ù‡†óI™:4PúUÒÙÀ','wp-includes/SimplePie/Cache/Memcache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‹ò—ãu„ÅÍ5uyS‚¤','á/ºµM¬[®QtÃn.?Ï‡IqA?Tj<œåªwoRI','',0,'?'),('ùˆº®\'œ£Xv˜ˆþ_°­','wp-content/updraft/plugins-old/updraftplus/vendor/autoload.php',0,'ˆ6ˆ¶žvN*B;P\'S›','ˆ6ˆ¶žvN*B;P\'S›','Ã%ÿØìöÊ3àjÀòk1ß² <úùêÚÐÒSQ|','',0,'?'),('ù‰e4gs<í]Aîð¥µ','wp-content/plugins/worker/src/MWP/Progress/Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Õ1Zûºò9Qa\'p8àïK','¥Ýyäa&\ZÕÝåÊ=\Z§yõª¸|ž‰›À}ˆma$ƒ','',0,'?'),('ù‹•ãƒ­üã§v ¦Žk','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpRetryError.php',0,'ô3D0Éº\'1>í§üšÚM—','ô3D0Éº\'1>í§üšÚM—','\rŠõ_ðy?¯ÂÍÔùý&âoŠG›Ï¶ÛîÜö—Nán','',0,'?'),('ùŽŠDøŸ\"[v¸•Ÿi¥','wp-includes/blocks/query-title/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DX°púÞ\Z¬¤y?w“«°¥','nç´U¨ÛÄú¨Â¢ÕHüÈß¥ã×ZOçÒçhô?\r','',0,'?'),('ù“,ü¦¡`Ïùt÷àtÜb7','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/i18n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€MPØ<^fë§GñžÔ C','V“$oBÞžjÅÈf0‘Ö«‚QxËuøTÄ=a¨Æ`í ’K','',0,'?'),('ù—8K°ç ?O]Ê¹Y','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','º§\ZlY^[F\rÈ2xÊ»','Ï6=““ØS“q®-5 )¸«E¿L}A¤ViA]ŸŸŽ','',0,'?'),('ùžè‹¼‰­–Ó3÷ú²','wp-includes/blocks/shortcode/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1VÃæÑÛtL,–²®k_¡,','ÿ\nšÀz#íCáUhÆÄ4®7Èë)S«ÛXÕµ¿e” ','',0,'?'),('ù¢¸pöl4[²þ°e›Ûû','wp-admin/js/inline-edit-tax.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u¸ô,2 /b3S‹îº¡ù','¹FÄc{Ã+ÕoÊ>\nÉÐ4…¸þPÓÀ¼÷T,ŠšÈSè','',0,'?'),('ù°é=lýmÄÍczy;¤èë','wp-content/themes/Divi/includes/builder/module/Map.php',0,'1iÿÈ™ø÷•¤ÿ/','1iÿÈ™ø÷•¤ÿ/','é¬gÆ\'KL$!<¸&HKL=‚áa÷hù£w°Ž\n—','',0,'?'),('ù²)\n/]¥©\n5œJ¹\'','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',0,'LóÕ%¾ÚR}?ŽE¥ú','LóÕ%¾ÚR}?ŽE¥ú','\0Ë:oa«9îÓ¹Øÿ<oU©Ô©f©œUí>.g¾3!','',0,'?'),('ù¸|ÀžnRZSÍr]','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_OptionLock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iË°g„uÜzžSºš\n)\r','&1R›‡p©O£Õ¹K˜uØ.i‡N/æ5¶0ÿ&','',0,'?'),('ùÊl]Š¾g	SD®n','wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','§™ mda‡×‡¨ù±','Âšü\'Ûˆ%ëö]þ²åÞk8õ¼3ŠýÙ{f©xÇªT','',0,'?'),('ùÏíÛè)¥®¼ðù¬ÜQ·','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetIp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ÕÌÃKüÛ\rdËÄµ{','í=ã×ÙÌ|/Unói¡ñ»@°ž}¤	–µ2î9À','',0,'?'),('ùÑÿšôßÐ3ø>#¼.û','wp-includes/rest-api/class-wp-rest-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶çù)0\0Ò³”¬Ál3','oÄ“Õ†Ó^¡!\0DeãxÈÈ%‘.2»‡E6]R|','',0,'?'),('ùÓ]~X»e(‹•†','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce.svg',0,'t­|ðzþººêq¡ƒÚ','t­|ðzþººêq¡ƒÚ','2¯sëª*÷t<ó\'ËŠ+ñx\r_õØXzâc „»','',0,'?'),('ùÓÌŸ\0ÎÇq\']Õ¡ƒµÅ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/LeaseMode.php',0,'üÊ­~p­IÈ°R:“|Ä','üÊ­~p­IÈ°R:“|Ä','í»Q¹†.öUD¡ŠŠ>2-ÔHŽC8H¼…?È','',0,'?'),('ùÖÿ¬À6å6ù†«Ö','wp-content/plugins/wp-mail-smtp/assets/vue/img/gmail.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"x½ã\"<:\Zç—ìœž','3§tHC+†‘Ô(Lõ›xÑ=?(/ý‡üôk5\Z‘é+ô','',0,'?'),('ùÚŒ \\D°2½f£&óc','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpResponseException.php',0,'!•à–×Ä…˜,\\›kTw','!•à–×Ä…˜,\\›kTw','…\0äç½¼Ìô%Ý|•_ï‹æÓ[šxõVh-','',0,'?'),('ùßjoMÄnCI€Å]‘Î','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/Server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VM-2^ ]TnÚ^¦','ŒIdÎûtu³€ŽGœŠÁß›\nžB;ÖžX‡+ÂL','',0,'?'),('ùä?{«aGh~ÒÜšTÇŽ³','wp-content/themes/Divi/core/admin/js/compatibility-warning.js',0,'xºz(J‡Í!Q0«M&’•','xºz(J‡Í!Q0«M&’•','œÞÑà‚(‡jo¨€‰Bã\n­(æFsRliâç†Ø?.','',0,'?'),('ùäK|HÂ#Õ[›ûxŒÉ','wp-includes/blocks/tag-cloud/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z6€Ü©‡ä%I§¹»-','@ÚÜ¦\'Þsj\n´Íƒ\r×¤Öèç¶»Î|Õœ€RöÎ','',0,'?'),('ù÷z›©Mj`å·‚*µ','wp-content/plugins/contact-form-7/modules/stripe/stripe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦a —²Å\'1ðnŠO&\n','…ª0+\\3ºF¹^b‹	á­$ø°:œÍ0ÌÝoÁÇ','',0,'?'),('úRœÞ=úÝ*ÉdòÕn','wp-admin/includes/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Äã¯côÿ\rŸÅu¥ò','§æt²Öž†§íþ9÷¥IDÜ„zçxwÎ‡À<ßm»','',0,'?'),('ú‹`ìÿÃßC‚þ¸*ßr','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheStorage.php',0,'¯Ðp~ä”\\”×\'ðacl’','¯Ðp~ä”\\”×\'ðacl’','Vý„ž¯èÝP%ªoa<D´ˆHÍù‰û+‰éýÆ¶','',0,'?'),('úZäy›\'Š}fmâX<‰','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CoffeeScriptFilter.php',0,'%Q-jå\rÑnõˆEå—','%Q-jå\rÑnõˆEå—','_ùÑ€\rQ™{O[nüàB=<o *6÷‰	$ã.5x»','',0,'?'),('ú†¿é‡qì–õüº´','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactory.php',0,'Z£©®4ûÛ¡(Êg[¦ä','Z£©®4ûÛ¡(Êg[¦ä','ÓÞwÂkjë„.L¼T…¨Šñ?=EU¯ÀÝ›E¾£“øm','',0,'?'),('ú†8î=šº‘Ç[Õ±ƒ','wp-content/plugins/wordfence/modules/login-security/views/page/manage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aý‘öö€iYn$Ôq©G»','v_ÿŠeI»Ü‘‡ý¡ª¶‡z\"Ñýª[ö1\no¬ÇÂF','',0,'?'),('ú¶AŒ‹ÍË)Í¹D4Í','wp-includes/pomo/plural-forms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s_7È;Œ	]­LvlÉŸ','ËÊTÆU#:`B=ÕÖÛÃÛ™Ny3­þ·Žæ›Jí','',0,'?'),('úF[†AÆ×Zð¤}ÊÕ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect113r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÏÆ>÷þÑ2bÍñ','ñ#ôó¶íPˆòCŠb_—­‚*à@íhÓœ¶AG¥','',0,'?'),('ú\"(§øÂb?\Zg‚sáqÇ','wp-includes/css/dist/reusable-blocks/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JRKÎN»` Ã1U%È','œ+—à÷,qò…KÎ*¸¥~ã£àB³Ã2‡‡Â\ní£Å«ô','',0,'?'),('ú&dŸœ®*ib‹Õv€!','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/DirectoryResource.php',0,'Ý9¦²®^\'Jáœ','Ý9¦²®^\'Jáœ','N×j]îsC•U\'+ÄšwÕ2ï[GôDþçwkà;Â','',0,'?'),('ú,àï½ô\n¾\'$Øî´ÙJñ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/AbstractSyncBuilder.php',0,'m·ÿU…»Šú‹˜‚åž{','m·ÿU…»Šú‹˜‚åž{','øMx³,9äÝô|èIÆ„ñOÃž¹Hæ\"‰ƒ€ÿG','',0,'?'),('ú-^gÿˆÌº@\0/÷“†','wp-content/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('ú.Õ¶»ÕñZg{Ú=ñšÌ','wp-admin/css/customize-controls.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^pÃYÙq_…½]§Ðº','=|¤+bM+Š—AWHÛÕPŠP-ÀÑ~‹êLÆ','',0,'?'),('ú4/ÖáÙ»~±é<+®','wp-includes/blocks/post-excerpt/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ù,G4<{¥‘l+Ý]ñ\'u','ø/xH—ù Ü+ÚÞê¦{$±UaÞ\0·±Û¤¹Nz#’','',0,'?'),('ú5z…õ‡í!ÒŽÊÌàu¹Ã','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/.styleci.yml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·}‰öfLeëæ¤„¹¿ûˆÙ','h</}ÿ,u@-/$žÿÀê4fÖôó³ÚBDè¦¯ã¤ò','',0,'?'),('ú:Yß×–Ÿ>ô½¡â×=','wp-includes/blocks/media-text/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NcþJÛFô‡µ>&$Õ@\\','¡Jÿ· `ÛõúdcÙªµ\']Íegx¢h_“>“AŒ;’','',0,'?'),('úH‹4¦gà¾è8«eMÔ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Task/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¡ÛÊBÆâí¦„*í`Îã','â†9–É%L\\·tf¹a¨â¼³…²G¾ï*¾Œ\r–$','',0,'?'),('úXQ:IqÛÕ¡0‹ücr','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Constants/UrlType.php',0,'Â¿çz$«ã£à²+_','Â¿çz$«ã£à²+_','Ew;úJT_m4”iZx#ùœßàBn‚dÍ\Zdª	','',0,'?'),('úcï†\06…‘î`þ12ù@','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Exception/InvalidArgumentException.php',0,'³ÈYˆæ¬d=Úl¶òŸ³º','³ÈYˆæ¬d=Úl¶òŸ³º','äeÜø=î±ã. Ò ûonÿ„õ¼Ò´‡Ô¿‹šgÐ‘eu','',0,'?'),('új—Aç7|‹îèýif(','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderInterface.php',0,'¼e U\nýåò~ä—ÝÉ¹Š','¼e U\nýåò~ä—ÝÉ¹Š','äwd\'ç{óÑ.ðw‡;Îž\Z@vH`E¿7üßÅ','',0,'?'),('úk0îkâŸ†ñãVÄXƒ†','wp-includes/blocks/file/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©1‡£ãqâ* j’æ','©?¼0\nkRöò˜dfl¡ê‡¾ŽÜ«‘½Oá¼{f','',0,'?'),('úmåG±@Ò}bET¤Z','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/QueryCommand.php',0,'GñÀHÞ}l	g¾õ¥¼','GñÀHÞ}l	g¾õ¥¼','•ûSG°üžWõXò“¸í“Z2‹HD³Læˆf4µ','',0,'?'),('ún:ÑzW_ÃB›SùR¬Š','wp-includes/js/jquery/ui/resizable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vk¼mO,•æ­¥n3­‚à¦','uß-ÞxP’un48„#‘.Ù5*XÐ}Òâzƒ÷Jîãg¡','',0,'?'),('úw	¥š+»jì¤ûÀ','wp-content/plugins/wordfence/views/common/status-circular.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ðâßº)ß.=£·¥g','q4^\"-ú9†æ‡áí\nd1q¬‘ˆèO,íùÇ','',0,'?'),('úƒ¬)ä	íwøJa^(','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/BaseException.php',0,'ÿ«$u­9$›hoy%÷£','ÿ«$u­9$›hoy%÷£','ÿˆ7×tô•ž:s{(ƒ,Ö5ÞU)Úfr7Ox÷Ÿ!','',0,'?'),('úˆ7Ú”!õ2¦x%’XNú3','wp-content/plugins/wordfence/views/options/option-token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·x¯EJRÁ`›ù5\ZêC\n','óˆ_ú—›N–R±Ï¦gîNŽr™Ä{ÿŽoXÓ®','',0,'?'),('úˆÞ\\\\sá6|âŠi–e','wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/js/debug-bar.js',0,'®zUÃÝkÞT À9ŽôÃÆ','®zUÃÝkÞT À9ŽôÃÆ','oã«ë«Á3xE¶’¡ÆYH­%!Y¾àÚ‰áv*C›','',0,'?'),('úŠÊUs <\rÐˆ\nÈà}ä','wp-content/themes/Divi/includes/builder/module/helpers/motion/Blur.php',0,'ÿÂ«˜„ &yð*»…','ÿÂ«˜„ &yð*»…','/{G\'ÿÛÚúùq&µî±±LƒÌeðsÃü@uÚP¥¬','',0,'?'),('úŠ­~…‹a%¡ë!»P','wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Î6¿#UQ:÷‘|>#ëÖ','Ò(Ýî[\n×Ì»â‰oŸRAo‘3¤¼^æ¡Æý','',0,'?'),('úŽŠÔû^\Zk^.ã‚Ö','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CredentialError.php',0,'FY?°¢ƒøÊŠ1s/ƒ×','FY?°¢ƒøÊŠ1s/ƒ×','<ÂåølI¥ë³!/Ãæ{ÚK¡S|Ÿ’iû´Ê$Ï6…™','',0,'?'),('ú˜”çÙL?@§š.~O¯','wp-admin/css/colors/midnight/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','å\nÒNi;êPlÖúvkŠ','ùúïÊ±¬Ž)6{ò+¿ö[jt§ª¼‘F¡AläHR','',0,'?'),('úšUUŽ÷£ñ,¦üHtv','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/XML.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vá=[<²‚\02RÐê›¼Y','<º:E¦ý2¢ç\rñì‚Õ´ß‚Wg˜jD±L×:','',0,'?'),('ú Iæ´ž@íQ/—','wp-content/plugins/wp-mail-smtp/assets/languages/wp-mail-smtp.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Òˆq\Z“ªŸrì½œ›#ÓZ','áŠ•Û_ò%Zá*œÃ˜ÿ¸dìÊÝõ¦Æ‹‡Ü{Šq','',0,'?'),('ú¢54ÉÅËÙÚN75ß©®»','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/accordion/accordion/field_accordion.js',0,'[Ž|ƒ2èè{äz£)KÝ','[Ž|ƒ2èè{äz£)KÝ','Ñ®:°º@i†idt³ƒ¢¸ÄÞD¬Cu±¨½@Ä¹Þ¨','',0,'?'),('ú¤ª©X#²	åî÷\r\rp\r','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/OpendirIterator.php',0,'\ZÃ¼ý¢@P#¼žÐÅ2','\ZÃ¼ý¢@P#¼žÐÅ2','pû–=\ZT®a’Ï-ºh8Bôô‘F‘ÀR.éŽ¿ãÎI','',0,'?'),('ú¤ÓŸGoB<¸\'nÏD{','wp-content/updraft/plugins-old/updraftplus/includes/select2/select2.js',0,'æbã£ãµq(>(8­¦','æbã£ãµq(>(8­¦','\r±„ÞÑÓ5í4l<gS;mÅ×åê+³š^º°','',0,'?'),('ú³¬»T\nšˆô­e.(¼±','wp-includes/class-wp-image-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!ÑTT“ƒÅGuÏ‹','Æ>)g(1Ä³†&\nf¶wÇg!´]ËþÝÝ%¥:','',0,'?'),('úµ©¥*¦\"ÉeT6h–²','wp-content/themes/Divi/core/components/cache/init.php',0,'ŠQ{‰l°áºÖxÐgT¿','ŠQ{‰l°áºÖxÐgT¿','ö¬ë˜Ü|rö‰Î®]V¹Y³€çœ5Íâ’Ë§¶','',0,'?'),('ú»Èå‚#!óù‰­ˆî','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/FormulaLoaderInterface.php',0,'½¾íôîQŸoƒ@ø‚H#','½¾íôîQŸoƒ@ø‚H#','ßpÚ$)¡Ÿf2×m4¿ÐÍQ‹LûR”Îkò£á“','',0,'?'),('ú¿nŠ¡|þMéO¡ãsž','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NoNameError.php',0,']ž†\\¸÷B¸{¦0µGÃ',']ž†\\¸÷B¸{¦0µGÃ','Ô\'•)LYi–¬Á9>;B¬ÌÁq]\ró8¬ž','',0,'?'),('ú¿1.$·TxÇÄúMÜð','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetAccountRelay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Î‹KH§Buê½Õjw','2‰¥½©Á½\Zd¹{”ŽÆí™±×¥”þšÅÉ—','',0,'?'),('ú¿Ø˜Ã-©m4)}ùù	Î','wp-includes/js/dist/reusable-blocks.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','üæ¡n\0ÚÒ>>|','_°LÜq¸î¹Œ ˆY¢\0 lh–s2?æDõ§\r','',0,'?'),('úÖO\\Ç¿Ù§DvÜ\ZTy','wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2.php',0,'ƒ„ØÕ).\"”Iía<E','ƒ„ØÕ).\"”Iía<E','ùÓ@’2Ò›ÿivk,±Üì®á¨D1‰`ò\\²á–Þ°','',0,'?'),('úàZ–p%\'n\Z‘ªWjµå','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ëõ«ÄeyÕçËB¿J','>?zíy«¼OÜIncC!¢¡Y–ñ¿áÕ;/:Ÿ<\nJÎ','',0,'?'),('úâ}‡Ûá³PÃ›™P\\©\Z','wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=ùâ’Bª9¼$v\r	','ÏXÙ-Á²y°¤˜HÍðVKr¯VçîYË´töœÉX©—','',0,'?'),('úèRŠ,žA§Àý\ZñGJ\'-','wp-includes/default-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','àUœŽY¢W€G(U î¡','iMÕ\'©âÔsåÿBö0\r+!ÞÎf­2–%Y™ñ\rý','',0,'?'),('úëN Q¯,k	6ø“¯K÷','wp-content/plugins/wp-mail-smtp/src/MailCatcherInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GES­ÒÜÃ¨Kª¡¨2+«','…Ë;óò\0Õ.øQ’esäpÛá¹¥|q{V¿• \'†Ò','',0,'?'),('úíþ¥Û{(Lª5BŠžt÷','wp-content/plugins/worker/src/MWP/Security/NonceInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','É“y:WI-¥Vv$[,š','´Ç½sgÒA¹ãÅÉöDÒ0Î&)r‡JPíÀ&úiì','',0,'?'),('ú÷gŠ(¯35ÑÒ5ík†(','wp-includes/blocks/heading/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¿˜+)Ô/åÌ\nŸ_,,Ð¿','~ŽÌ.¡bÖ¹ãÑNk÷ÄDÙÚ‰%3ìÞ ¼gü ','',0,'?'),('úýÊ\n\\ÔûÉ¶.5úŽš','wp-includes/images/xit.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”ì«	3X—Ä«9+ï–6n~','üÖü s²¯¹”ÉÛÛ¨“ S,mdïŸ\\Yb’Æ‡ïÂo','',0,'?'),('û›_BT‚ß9²ŠIÞÃ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_ja.js',0,'«™Â^q<iLÒm\r','«™Â^q<iLÒm\r',' €£ÅdEì¬Ô’íB(à­;;ó7þ\"#4Î\0\ZDO†­,\r','',0,'?'),('û€¶Ð¬çpšIÒÆYR','wp-includes/sodium_compat/src/Core32/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FéKŠžyä\"ïJøÚÏ','~TÓ»)_º¡€Ô‡ÀˆYH+Õ´ÑÉ\'û	;','',0,'?'),('ûäöSoqOq r,Ø¢ð','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/ContainerAwareEventDispatcher.php',0,'ë&SÖÙÏqÙ@Ïâ¬ „c','ë&SÖÙÏqÙ@Ïâ¬ „c','ã£œhþ&GG¡ý5!”˜¬Ä!wb1ž·ó°‡-»’@','',0,'?'),('û§9ôñê…Þ–žš<‹×','wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetAccountRelayData.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôsŠz0€MáÁ­§Äƒ*','«‡³>¢\rúdý.w¤´ü¨n×žxSU¸Xãî?¤—äjr','',0,'?'),('û$¸¨8Â÷pÿº¸eu+WH','wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6ÚãÏ?Ñ\nå	:®Â›{Q%','„ß—ZªIK/IµøwÂ¥‘Ovy›EøBi\\$G‹&','',0,'?'),('û\'Ø\0ï.Ø ÿtJ¢	Q','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/color_alpha/wp-color-picker-alpha.js',0,'CÒ¨õŠ 36v%ƒáÙ2Ž','CÒ¨õŠ 36v%ƒáÙ2Ž','ÞôöåTÅu°®@úlÁ~cm·Úg@\0¬w§×Üó','',0,'?'),('û(ÐŠ»QB&¦€ŒöQ?éŸ','wp-includes/blocks/categories.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±•Û4N°JæÉp)!åfÎ¾',' À¹X´U@¼lÕêÝa“Æ_mýæb Äe÷™Þs','',0,'?'),('û,üGU>ÛÔ]ØTˆï','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ServiceUnavailableException.php',0,'N[	mª­î|’`ûó,','N[	mª­î|’`ûó,','ó;£|ÕHf¤g)vLn‹uM·Ý˜VrÈÁæþ3@a','',0,'?'),('û5Tr:S ÜpÜ¼»¥«»','wp-content/plugins/updraftplus/udaddons/updraftplus-addons.php',0,':æ®†W¾¡\0Ëof+O´',':æ®†W¾¡\0Ëof+O´','tß½…áù¥–/k‹UùúˆE‰C[–e¢G„Ÿšðñn','',0,'?'),('û:’ù¦F«×â.ö°ßÓÛ','wp-content/plugins/wp-mail-smtp/assets/libs/jquery-confirm.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jçæ¸-Ò05•êÂ¬(','¿€ªÿt?=}³QœZ–¶jÜòÿyù÷¦êOû\r;º','',0,'?'),('ûDÏáê]æŸ|ß¼ª$™','wp-includes/js/mediaelement/wp-mediaelement.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ò(DÛq£|«ÞÊ€î','PÑE+#Á®M±s;agL«½ùeøõSð•MN…År=','',0,'?'),('ûE¯ìj-”Â^úáÁ‡,·','wp-content/themes/Divi/includes/builder/module/Blog.php',0,'qÛÇÁ‹½Ü©?xÈ‘Ëj\n','qÛÇÁ‹½Ü©?xÈ‘Ëj\n','Qß¶NÓðÜ—èf©„SavÒ·ylAûú¡Š&Jô’b','',0,'?'),('ûLmjyÏ‹%%«~Oäˆ«','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression_MonthField.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Åbü$½ß é}°[„ÑèÎ÷','S‚]Ksñ¤DªüÃ€vi·–I¾ºt%µj¸=žâ\'','',0,'?'),('ûPhÜÈ³·¤rVâ','wp-admin/css/revisions-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¼Æø˜ÏóLÚ$¼.\ZDÎ¦','“9Ps2à@N2ÿLÓÀ@F/ÄTÝîf¤Þ4R','',0,'?'),('ûS“˜á,`Æ¹%d®aM„','wp-content/themes/Divi/core/code-snippets/app/lib/constants.js',0,'ä>·¦o€ò™œ=sDƒùº','ä>·¦o€ò™œ=sDƒùº','½ó:ÿË­Ì°½ÑØÎcìT1Ü*§uƒe;7/ÊÂ?M','',0,'?'),('ûT§ a€!—6\"0±šh','wp-content/plugins/fusion-builder/js/views/view-row.js',0,'Å!‚Î®È’s´f&q','Å!‚Î®È’s´f&q','üág\0(u¬AæbîG«“Ñ¼¾*\Zsû¢UÔ8¥sô','',0,'?'),('û`?{vÔI ”\nê=«% ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/switch/field_switch.min.js',0,'[¨GÕä $M”Ý˜+b‹','[¨GÕä $M”Ý˜+b‹','œ½qÄ8·{=x)Û¾±«\"îéf×qV„]ˆ² +Çh‹','',0,'?'),('ûaž±z9i_Ö¨Î =Ëèù','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/HasDispatcherInterface.php',0,'ïÛ¨0k~l¢<J4•é¼','ïÛ¨0k~l¢<J4•é¼','¬~_ªûv‹êP¼ÀÌGm,ðªÀ CïšT@ï*`QN','',0,'?'),('ûgù«rN÷ŠhžÎp÷Û','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ObjectAlreadyInActiveTierErrorException.php',0,'óÄÎI*IþÊ«ìÝ×6XÃ','óÄÎI*IþÊ«ìÝ×6XÃ','ï<‡÷aÒŽ³Z…/#6\n‘]I©”õ=Ïš¯[õõ¢x','',0,'?'),('ûmhÜÙ¡6à[w ?Ža','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListMultipartUploadsIterator.php',0,'­‹ÇÏË[¼îZÆ?\r\Z$Š','­‹ÇÏË[¼îZÆ?\r\Z$Š','—äÿ¯5ÊÕ0HÝ·¤ò—iÇ»eõŽe:v ÍæÑµ¦','',0,'?'),('ûztð[ Óþ¢À ›Ž“','wp-includes/blocks/heading/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9Fs)±#û1ÈÀØÝ 	','·|\Z£²6”º™Q_R¦|ÿ¦)EoðvS±w,%µ~˜','',0,'?'),('ûˆñC-úÖ*þTïä$’','wp-content/updraft/plugins-old/updraftplus/includes/Google/Collection.php',0,'„yºùõé6xÎ5Mó”Öq','„yºùõé6xÎ5Mó”Öq','Î5ØëÌ¶è2þ|TR´Î/nwÚ*¸Ò–','',0,'?'),('û‰üÙ\0eXv3§Tz¿','wp-content/themes/Divi/core/components/data/ScriptReplacer.php',0,'ìáDáþÅaÂ]T¼fZÑ','ìáDáþÅaÂ]T¼fZÑ','¶§|¤Ò¾°ÄÍhk›ˆ¬Xe0Z@ÿúöÌ¡†\rÅ','',0,'?'),('û¤)l;Y•Áá,æÍ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Subscriber/SimpleSubscriber.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','«“ïêì$ò­WU-~ô',' çÖtì\ZlýÿÜ	Q—Ò9‰ßÆAGµJ_$h²','',0,'?'),('ûœÇk¯ö÷úa÷Øzæ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/mode-css.js',0,'*‰ÎÖÀ3ŒžÅ´0eN}¦¤','*‰ÎÖÀ3ŒžÅ´0eN}¦¤','â£¬¥€ò9”µlÑ™\r7ŒÎïÖ\"ö¿Y—M\'	ý\'\'›Q','',0,'?'),('û«~â4\0¿åü\' &ôÚ\0','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/color_alpha/field_color_alpha.php',0,'Ú÷Iüsã#¸¦Îé²','Ú÷Iüsã#¸¦Îé²','A¡ºÂÿúÝ®—pÁøß¥99©Ñ6ÑÇ`Ákÿ','',0,'?'),('û¶ÉÁ\'ÍßVBÁ~þw','wp-includes/blocks/query-pagination/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Äñ#Zì!Þæ	,ôl–z®','¿¼{qË\0ì›xƒº_3Â¯©ÊA¢yª‡kÂ$«','',0,'?'),('û¶?näkpÄ@/ì·]ãŒ>','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/uk.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±‚„©ßCFKûêïl','í×,…†£­.L-°A\'›Ýy†Eìƒ]§1	ì<„','',0,'?'),('û¶·‹#›Oº¯8T~E6','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingAttachmentException.php',0,'Ø™—¥ftn¿¯² ”o\'¥¦','Ø™—¥ftn¿¯² ”o\'¥¦','|0D†‡ÕaIDÛeÿ©ü:ï\"CÐîƒ‹ŒT¸…’','',0,'?'),('ûÀ®;žŽr¼†7ëé!‰Î','wp-content/themes/Divi/includes/builder/feature/woocommerce/placeholder/WoocommerceProductSimplePlaceholder.php',0,'[­ÙØ\rá(ÆZ[A«','[­ÙØ\rá(ÆZ[A«',' ŠàY–Ú„¼¥r^(º#õÒ=èß×H3ñÈŸ</!Æ','',0,'?'),('ûÁ2]&Ö”#“ñØ^FÙqŒ','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/PermissionRequiredException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ø2Î¢ñ	®/úE!á<sÑ','\\Ð=©«ô5—©3	®ÏŽvÌá„_%ñ2½ÿA¶?$','',0,'?'),('ûÁ^-€3ÌÌg+?[b','wp-content/plugins/wp-mail-smtp/assets/images/reports/email/icon-error.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EF¢ß¹¡èq4ËÔ¸lÂU','(v2${²(‰Ö%¸Ó~;_(ˆ¾ÑêÁÞá','',0,'?'),('ûÁˆêi8IÃöÉ§ñÂµó','wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/GitHubApi.php',0,'êˆÞï–«Åª)ó¬Qï§v','êˆÞï–«Åª)ó¬Qï§v','Ù4×®A¸-­‹\0šÖ‰§€X‰[¢¾_pÍ;øÑ','',0,'?'),('ûÁÉSèôç\'F’Ÿè§ÿ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidUserTypeException.php',0,'v·f1¸û|2yÚë>','v·f1¸û|2yÚë>','ëE‰wóî/Î”wµ{O	Z%ËI\\†ò?*¹Xô&','',0,'?'),('ûÑ÷ëSãK5Á47ÊÁ“S','wp-includes/css/dist/block-library/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qœ§Z0‘R“#\ZY¯Z','È­Tã„N%!Å =v˜»ôÖ8ÿà¹¬ˆès·Ý¸×‹','',0,'?'),('ûÕà¬WBòéþé\"QÍÃ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidIpTypeError.php',0,'W+^§ÿ?ÅšæÐ¦Åt\"†','W+^§ÿ?ÅšæÐ¦Åt\"†','+~=Laûdß“35ö0Ï±]M,»”7*Ï™ºGÍ‹®û','',0,'?'),('ûì\'®•tîZ<.ïÕ¶','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/QueryAggregatorInterface.php',0,'­n\Zñl-cNXåË\'*7','­n\Zñl-cNXåË\'*7','õ	´\'¾e\'esãùö{°´‡@Ð^ª¹u˜\0‡¬','',0,'?'),('ûîÕÔê+f6Qáúüy9','wp-includes/js/jquery/ui/selectmenu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ox… eqdƒå‰Ñ$I','\rˆˆ°Ä–)‘UoGÝð®’iÞÉáÍõâoPº(','',0,'?'),('ûð^ÕÐmé»oßsE¥','wp-content/plugins/worker/src/MWP/EventListener/ActionResponse/SetActionData.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','„u^Æ¾»(ašd\ZÍx§|','é~Y­!r†ÝÆC],ØáXc©2óä´ùÎ1‚0ê','',0,'?'),('ûðˆÏX€n\r÷æ?ƒÈ','wp-includes/sodium_compat/src/Core/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p÷¦Æ®¹u¯„o7;~z','™¥¯ÚÈ %lòy½\'#[‰ö€_ò{E½]8%Ü','',0,'?'),('üë…+è¶ûŸv+{Å2ç','wp-content/plugins/instagram-feed/img/highlight.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ÿ\nÚ‚}3èè¶Xénê±','2m˜qÓ’m(\nòC®œçEy—Z)=>:%Ã³}','',0,'?'),('ü\nksÔ”4¨žúÀ»ƒø','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/OAuthScheme.php',0,'RË^XyœÌ¾t¿¤õ','RË^XyœÌ¾t¿¤õ','\'ëD8\'‰¸DzŽ&þJ¯ïš›^½V¹1yáÌºBÑý*','',0,'?'),('ü])éé	¹ƒó{—?R}','wp-includes/feed-rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iJ­?YC–>^‘îf¸','fl’P»ßf5‰2tY3‹xËÿõDÀÑ×„Ì','',0,'?'),('ü}èD>UÁõ´¬Þ{','wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2.php',0,'ƒ„ØÕ).\"”Iía<E','ƒ„ØÕ).\"”Iía<E','ùÓ@’2Ò›ÿivk,±Üì®á¨D1‰`ò\\²á–Þ°','',0,'?'),('ü |$’€Ö’(À:¯&','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP320t1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƒZ`ý÷<Kh\\˜IlM´â','*[1*mCä\rmôª¢9ii»)DòÌì‹Ú­T{ÂÇõ²ÿ','',0,'?'),('ü,Ô5RûŽcû9&\nj5','wp-content/plugins/wp-mail-smtp/src/Reports/Emails/Summary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¤XÅÕ×ú ÷‹ÑÙÍ@','$Öòût[Y\0*ƒp!žb>}óðh˜ˆÀV9ì4Û”ÉK=','',0,'?'),('ü0<PsÉñ×žH—ÑÁ22','wp-includes/js/jquery/jquery.table-hotkeys.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7?ÒF5ýsS5Ã7“ÿ,(','J<ŠÍ?Y‚ø°”½×SuÅª¯U&Š\nNy´`TkLç','',0,'?'),('ü0„¡‚^î—¼ˆ÷Ï\rà­','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Request.php',0,'‹°ìÃ¦Y-[Ê~ Ž­','‹°ìÃ¦Y-[Ê~ Ž­','”é+žÇ¡éè8ÞÈ–ÑJ5Òr&+õÜù™<@ç¤óŒ','',0,'?'),('ü9(FŒRj2¹n6]Š','wp-admin/css/colors/light/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n1ßÑÚ‹¢\"-ŒYˆ','lŠà\\$ ¡ê£x9\'Ø[²>MèÝ\0Ç;y>N2í`ù','',0,'?'),('ü;÷ßi“Á4Ç7Ë)ñÁÚ','wp-content/plugins/wp-mail-smtp/src/Admin/Pages/ActionSchedulerTab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','€yœ|¶[1e4z4Ÿ#ë›',';¤£Öœýóêá{\ržÏõçT\rŽœ?£\'uÜµlÒ','',0,'?'),('ü<$&¼a„43ÛsŽâ»ž','wp-content/plugins/worker/src/Symfony/Process/Exception/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,Vë§=\\ÆbP','k‰À—~	¶½UH\Z¥ÖxƒPêÛAÌ„¢ú<¡ž;X¨','',0,'?'),('üA×9G]ìèD#M#q{','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerTrait.php',0,'Ñ €±·¨/j0#¶?À','Ñ €±·¨/j0#¶?À','8rü½â=SÛ‡~Ñ…Îæ&é<óõyðÉ™ eÙÅ¨o×¸','',0,'?'),('üG¤E3ïœ?©œ¹œƒDè','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3SignatureInterface.php',0,'8³+¦ò<ñW¤Ùx/GÖñ','8³+¦ò<ñW¤Ùx/GÖñ','XpW¢þU‘Ò{â¶n— CuCX=ˆ¬êÓ­©£í5{ö','',0,'?'),('üJ’§ó!2 ¨Ü\0­€Áü','wp-admin/css/about.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(º2“nX÷’ï‡~Y7±Ü','\nÌmËDK°ÆvŒÃ\'K¹ŒKlÈ;ú6D¼Û\rsÈGc…','',0,'?'),('üO\0Ä½*=—Ï†®–öÙ','wp-content/plugins/fusion-builder/shortcodes/fusion-alert.php',0,'ýøe¼Îp`îÆÉÃb­','ýøe¼Îp`îÆÉÃb­','zòò^âBeûAdÀáÆIŽLE$„né\'ì]Eðà1r','',0,'?'),('üO,ä’.\'y1ÔºK¯vP','wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php',0,'*<Ð´H,«ï\nÁ5 $ûÿ','*<Ð´H,«ï\nÁ5 $ûÿ','?bÛz‹4wþØ	\r¤‹¼#pPÕ©Ð õQgw‰÷','',0,'?'),('üSl»:Wj¶\'Œ`Rfúðÿ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/SetBlobMetadataResult.php',0,'sÿÃ3Þ\\À©\nâüÉçÈ','sÿÃ3Þ\\À©\nâüÉçÈ','ÅîðÂŠ\ny“I†]‡ÀÝÅHÝõŒ=È‰Fg¼½','',0,'?'),('ü^„÷N4Ó,ba§¦D','wp-includes/css/dist/widgets/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ö/ºö*Â–[œcGjL£','ït89ž˜@*q [/(T\\2­Ãlþ¤KéŠÔ¤{iO','',0,'?'),('ü^ùO|\':QÇ™EçÝð','wp-content/plugins/wordfence/views/common/status-critical.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÜR¦/C[€¶å…]—u%ý','®WçªíëB&6˜9õgžk_¢ ŸEFý6ÉI','',0,'?'),('üevÓé¸Ž÷ØsÂ\"ƒq•','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/BaseNodeFilter.php',0,'¯_C˜…µ£v„LSNP','¯_C˜…µ£v„LSNP','9;Z•\0®€#û÷¯ëÄµ£×ÆÆ{ÿ7ÌéløÒ','',0,'?'),('üg\"š}_¿7¸½¦ÜJ5','wp-includes/js/jcrop/jquery.Jcrop.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VÌž¢Ü/K‘x¿¬¬’','Ý2¬SŸ[±6Dv‰5bsôÙ=‹ÓÇNL¥wõ¾‘·','',0,'?'),('üv6Zþ\'õOñIL\"Ý•MÖ','wp-includes/js/dist/block-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wû(°Ç>C¢q¤²ò¡c','×‚æ?CŠ¸ÌÛžƒÄ¼/öDýøÄhzˆ!ä\"8ô^n‰','',0,'?'),('ü…&¸gåÜüüå@ ¿ÆC','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/generation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','›+©u,¾	ø6ö	?¯þÜE','‹9û‘jŠ’À,sHh¼÷:ì‹¿#¢k_`@þ','',0,'?'),('ü‰p·Š9½6Ã¨åRæ','wp-admin/css/common.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆ 0CžW¸:Nÿæh','šû€¨´±|ÖåA\'Ígüùý#-ú­FZü¦¾','',0,'?'),('üŒÌàÑæTÕøx1O´','wp-content/plugins/contact-form-7-honeypot/includes/images/banners/semrush-1_580x400.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H±íÊùGâÄöí@ýÿ•?','ÊÊÒº°\r€ÁÎJ­=É†øáV«êõTùuBgEÒù','',0,'?'),('ü’kØNhztŽ8‹²XÒœŒ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/class.thirdparty.fixes.php',0,']Nx\Z\Zö¼×ô\'Íõ',']Nx\Z\Zö¼×ô\'Íõ','¬ÑÐ˜UdãæÀ:ß\"~bÇ×/?Ä©´wÌW2ÈÙ¶U','',0,'?'),('ü•Áƒþl‰}µ3(s=ðŸF','wp-content/updraft/plugins-old/akismet/views/notice.php',0,'÷(ï¹´~C›Óóôµ oÿ','÷(ï¹´~C›Óóôµ oÿ','£}GäT@¡Ïà!ŽQRçm`¶ªˆ+Nû*uÆ6','',0,'?'),('ü˜•ŒµÆªq¥æ‚³‹Ð','wp-includes/js/tinymce/plugins/paste/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ë^ËÞÎs×¶‹{°ûÞ‰2','Œ\ZÅX8Ÿc+ˆxˆÎ· á–ó­&Wgñœ`m†Ë´','',0,'?'),('üšlxyý\ZÂùÔÄ\"–‘','wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EU.7®ÄïñH>išà;Å','™Ó,åò+x>¯Ì× VˆŽý7r™LKs&Š¶GíŽ','',0,'?'),('ü›½¯ôÖLi`®çbšj¬Ô','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/html.js',0,'¤ã\Zš’›\0Ã »n2$','¤ã\Zš’›\0Ã »n2$','g’8Dó	ª´nÂí\\ºê™ÊŸÅ\ZÅüëïêõHî','',0,'?'),('ü¤òÚ¨ü\réëY­Æ}Ï','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_TaxonomyRegistrar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EO	:\'\ZÓŽšñÔèXƒP','+s¿x}^ðd¢1^®½gÂÓRö×ÿ±£Â.û©£Ÿ','',0,'?'),('ü·qóLøó>ÔÆ#QÄ\0','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ñ•úŒÅôôB˜ì¨âgYðé','ûõ‘:âIZ®íCý¢Z•Ú8ÁÈ°ô›Lšå]é™m©','',0,'?'),('ü»<læa¬€,›bX,³²','wp-admin/images/xit-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','œÓÆu:@4\r…âÅz<5È','¨S\rÎ}@½~Q÷:€Scµ±§ê*d+åZÎ_¾{¬R','',0,'?'),('ü¾Í;qu@ce£·Aé','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect409r1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h#0Ð$}fZœzž(-ó','±´ó28ÍÕ•±à‰ë‘;:/a,WOM[„ó$»R¯','',0,'?'),('üÅC7o%‰\rM\\&!#a','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/typography/field_typography.php',0,'àÔn%ƒg®=r4®²±','àÔn%ƒg®=r4®²±','³óQ‡9\r*-ã ‰Ž…CÀBu„N?ö™ù` ¡(1','',0,'?'),('üÈŒÕ\\æmÂ{’YK‰ñM','wp-content/plugins/contact-form-7/modules/stripe/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','öäút^¼Þ§3ŠÉëM','=ƒìÕ¬8€Ýx)/óß“õ™}œ ÂÑ»Áz@öA±','',0,'?'),('üà\n;õm7I:Ú¹Îñ*•','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@y—nÏ\'a¨IÑµŽÍŒ','Å\0çóÎ_Wy3ïüBVµ3¯Ð]pÈžþééaoM¿Ò','',0,'?'),('üáÉF@ß¥J2Ç1\0FÒê','wp-content/updraft/themes-old/twentysixteen/template-parts/content-page.php',0,',(R{ABøòrºØa…6Ê',',(R{ABøòrºØa…6Ê','å7,©hÂÐ¾>#Žs\"ø$ñÜ±°ª©Ó³IÑÆô£','',0,'?'),('üý£;CØtüTû=²öÊß','wp-content/plugins/really-simple-ssl/assets/css/main-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÓRD€%Õ0ÿS™`þ¤>Œ','hŸqn\rð1/§B3 „]ô˜·´ÿ[iÿÊãÏ','',0,'?'),('ý’Qáìˆôik¤e§0rÜ','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/BlobProperties.php',0,'e~¡Í*›ÿ¢ÓÌœJnƒ+È','e~¡Í*›ÿ¢ÓÌœJnƒ+È','â¸É›}p™,ây·–à·Óø©$T¨‚.öY\'rÓ','',0,'?'),('ý«Øå	…~·.pGD','wp-content/themes/Divi/includes/builder/module/helpers/motion/Motions.php',0,'ëŽAŽ]Ç1¯Üc¡—‘¸8','ëŽAŽ]Ç1¯Üc¡—‘¸8','*Ž˜­HýQ›’XÂ¥¡\n^^`¾úTPÝ','',0,'?'),('ý\nÉXÓ\"¢ŠM@°FEƒ,Z','wp-content/themes/Divi/includes/builder/feature/background-masks/mask/layer-blob.php',0,'?Ž÷D»x/ü8¸\Z2$x','?Ž÷D»x/ü8¸\Z2$x','TV^°–úð%íž=]·2 Œ¨ Æ[Ÿ‡o¤Ù¢Ñc›¬','',0,'?'),('ý\rƒ¹R/ã—ÅÄ—Õ','wp-content/themes/Divi/core/admin/js/eye.js',0,'Éï#0ÞÉÃé·&\Zå™','Éï#0ÞÉÃé·&\Zå™','÷-—Úä/›Ðb¡qÎ¢»e%òA”¿ýÀdãBÙú§«ã','',0,'?'),('ýŒYù’¡Ögü5‹Üoò','wp-content/plugins/updraftplus/includes/Google/Service/Dfareporting.php',0,'knÜT2\Z4æ™´’Á','knÜT2\Z4æ™´’Á','%\rÎ8<¸#Çë¢M0\nŸ“-\raAé†ÔáÎ›b(¬\0ý','',0,'?'),('ý+q^e·•éãguÏF6\n','wp-includes/theme-compat/embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÈÅ¢s¾^Ðô»q¢cbÿ','WõÜô5T¦pÁª;-¥n¬ˆ0»a‹•º©O\nÓô¦’','',0,'?'),('ý2Í7—ZN\ni Íû_§3~','wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/action-scheduler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Í;|SiÇ4·vH~{.yƒ','Ô*‡ôÄÇý*×IûÞ#¯4w—ë„9Í\\›ÔüìÒ','',0,'?'),('ý<;H=t¦~bc¨:º','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ResourceNotFoundException.php',0,'ÇÄ…K¬¿?ÞÆâ†–\\b–','ÇÄ…K¬¿?ÞÆâ†–\\b–','?­ñŽ8£ &úôŒ ºæ‡ÞQfVñnð³^\\Ñ<€§÷é','',0,'?'),('ýGþ²!#hÔ9	„ò&','wp-includes/js/tinymce/plugins/wordpress/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôJçŽ†³pãÂ°Û5Q²','é]ÄªÎ°¨ÚP×M@ñQ\n›\\ÊtŠAÐw.D½…g','',0,'?'),('ýIW±—ðF5tPsŠ','wp-content/updraft/plugins-old/updraftplus/includes/Google/Logger/Psr.php',0,'’×³Ï€{\\¦6²Ë}Ë','’×³Ï€{\\¦6²Ë}Ë','òËe¦?ÎÅ´ó‡ˆÅ’ïuC»«·dmÇ\"KX•\'áò','',0,'?'),('ýKjòâªhº‘èù','wp-content/plugins/wordfence/images/loading_background.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬ô\'é2û”p\nK‹X´ì','ÍÎŽ%XïÅ–F¼ÿçÜò1sÏ;ÀÎLëzrç’»','',0,'?'),('ýLéõ*ýÌ•$ÆÝGÕâ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CallbackCanCacheStrategy.php',0,'&/{hù4†¯ûÌxèë…2','&/{hù4†¯ûÌxèë…2','MñNÿcc&?É)v+<(A\'\0Ø4Ëzá3ýœôv','',0,'?'),('ýNxûèß‰„¬äýÔÛ','wp-content/plugins/instagram-feed/inc/admin/class-install-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h©VçR@t—#íŸ?Q','TEó‡¸ú¼I¦+iì’ Q>\Z×E‘7…®ÍD0Ã','',0,'?'),('ýODhÌ]€“\nßÁ›ü5','wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Consumer.php',0,'ÎúçÍ<¿¯MƒWüÐêêz','ÎúçÍ<¿¯MƒWüÐêêz','ÓÑEˆh1vÅ[5¦œKQo­îÑüsEÝeÔÃ¿EEk','',0,'?'),('ýPðÞ¾:ûv´¿Qw','wp-includes/blocks/list/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qšnÖÇònÍ¾¸ ¹8^Q','Dáã	»,Œ?éÝ×g÷ß·Ñ¾ƒ²«ýù˜3”È­','',0,'?'),('ýSR­åAºWk9ŠùÁ¾¬','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/jsonview.min.js',0,'9aDÿË¿9b_x¸ÓÝÇµ','9aDÿË¿9b_x¸ÓÝÇµ','#5ª”u¤ÎÕ×:çõÕò·ÍÍË]¬bQýá†Ì','',0,'?'),('ýW\0?QŠHû1_ä¥8ˆ)','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/HistoryMessageAdded.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','è$È(’:÷âOæp¹ô','wû}ÆÀÂåfêï±#ÙP¾Ñ`:8ÝaçD\nHxQ','',0,'?'),('ýWE?#Ð¼ùe·.IB_…','wp-content/plugins/instagram-feed/css/sb-instagram-2-2.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EÐÙ~øxÜBÌçÒ7Òg','P$¥Doí£‹¸FÕo½“Øù¨\0œJ-Q…fë|£Ë‘}','',0,'?'),('ýWÚë{Á¶“¤…{Ë¼P','wp-content/et-cache/en_US/helpers-post-16994675741365.js',0,'=Rb‚¯HððÜ‘‰X¿S','=Rb‚¯HððÜ‘‰X¿S','l˜&26âµÍÂÎÿz`¢Ð0g®¨:Ëxwì5¿%3I‘','',0,'?'),('ý`SkåÅ7Ttàv¹ X½','wp-includes/class-wp-list-util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','­mFw-,“ãJ:T‹âØ—','oG”aê²(™		³«\0Œ¨ˆdîÇ’·AÔb0','',0,'?'),('ý`üØëŠ%Ö†‘Y‡èŠí','wp-content/plugins/updraftplus/includes/Google/Auth/OAuth2.php',0,';z*Nòô4Œëƒ—É„w@™',';z*Nòô4Œëƒ—É„w@™','ÆŸÇƒuÙm<5ÙHGI/ç;9ök¦óxO¤/Ù›µ‹','',0,'?'),('ýkdûd•H‚]?ÑÈ 9','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_ro.js',0,'Á¶\'T(@>N…!!¾','Á¶\'T(@>N…!!¾','‚¼ãˆ¶Ö‘ÉT–Â¨÷6÷[DOh)…¸%¸ö(nƒR','',0,'?'),('ýk$`1.JrƒòðêÝ.þu','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/DescriptionBuilderException.php',0,'ëÂ‡^”¼{‹øõýoq>','ëÂ‡^”¼{‹øõýoq>','M-ÔÎ²ñ†XÈ{Adoz×m(„èèg>±¯‹','',0,'?'),('ýla\'êP_b—m	!«·Äp','wp-includes/blocks/audio/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GØ¨›ÃÍ_0úu\\','»êïq¼íïfY)šJê_K•géYUr—\'º%e\"¨','',0,'?'),('ýl®Wd.ÊÃš¯RO¦`','wp-content/plugins/fusion-builder/assets/js/min/library/jquery.event.move.js',0,'´1P $ ²k8†ç‚…¶Î','´1P $ ²k8†ç‚…¶Î','kK^ü}+g\n·Ã¬€g•O«¤nqšqˆÉª±K.·','',0,'?'),('ýr°\"·-¥\0 E˜w‰¢X','wp-content/plugins/contact-form-7/modules/textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õ¬Ð®¢²)7ö!]“nÜXV','oñÇµÒøò8÷t\'™O-ŸyüøýÉÿ;¥	®\'Ã¯','',0,'?'),('ýusÛTÂ­Bâúµä¬B','wp-content/plugins/wordfence/images/sort_desc_disabled.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','½¥J%{O•Z\"/Öo','^*Çn^×\0m+¦‹!NkÊÉŒóŸÏ/©¿Ô¯^k','',0,'?'),('ý„¬ÒÕj©!iÕ´lûF','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/.travis.yml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*=•Õ²eZ–dþnTÞQ','Q#8‰µm³ cƒ¥œøXPû@_0Šô`¹ˆÖf','',0,'?'),('ý’ZL‹O’lÖá','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Xsalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¦Cí¢•ðFæ–hôz','oÅ‘\nw¦n¾ËpL”+;ÐÌíß~‹¨t2´P*Æƒ6ø','',0,'?'),('ý‘ýq?P:]|ï~C—“A','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/AbstractRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LI=±·¼¶ÖØtœ\n','aN7€áRKÔ\n¢Òc¿àÒÅáÖšÙ,¦±70âþÄ','',0,'?'),('ý¨ŒtÛ¦Ù„4­T;Êà','wp-content/plugins/fusion-builder/assets/js/min/general/fusion-testimonials.js',0,'}øS¸)mn‹‰²p{£','}øS¸)mn‹‰²p{£','˜Sßa‚J#¿ Æ»ü>4€ï~Ê¥áòEË¨B¦3:Ä','',0,'?'),('ý©Õ\'æ€BâŠ­7SÂ','wp-includes/js/zxcvbn-async.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=$aÔ[ZF)^\nŸñ~','Öuîº¼Q9Ò«{½¼7o}ù€í¶îæ`ß-nWÆ','',0,'?'),('ý­{ 	\n|p£Ù¤','wp-includes/customize/class-wp-customize-nav-menu-item-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','”ìÖöaER>60“.)H','—K-Iðüç6AÏëŽ,\\ÜÃnQ Pû®¾&','',0,'?'),('ý´ö×øõ)Ý(¤Ð<ÙÝ','wp-includes/js/json2.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ãÑÊïÆxÇ}\'¸-¯·8','?	àÐs¾s¥˜(q¦¬ c!~aÃÐ¶ìHœ\\y','',0,'?'),('ý¼B:ß¨^	žný‚òA','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/color_alpha/field_color_alpha.js',0,'\nåè+ÃëgÐk‚…dk=²¯','\nåè+ÃëgÐk‚…dk=²¯','´Œo¢ÍÐ»šÐû\'CÖˆÈŸÅ¬j¤}ñèL','',0,'?'),('ý¾Ý}¯Mö>Ã/çßæ=Î','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/fa.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^¹	3üžG(7Ydãu\r‹\"','Ú±áàŒí7<36,ðâÄ#Gy±Âó]EÑºšB‹]œ…','',0,'?'),('ýÉÚ!|MWk¡òpr³','wp-includes/blocks/query/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÝPSÇŠ	<‚?ì=ö{H\r','.˜‡ÔG¬ŽoTçï¦;hLwM„uÊXQDqÿ™Õò','',0,'?'),('ýÍ!ºOÆioÆX*àc','wp-content/updraft/plugins-old/akismet/views/activate.php',0,'à{ETJ›_qŸ¾·n–¼Ä','à{ETJ›_qŸ¾·n–¼Ä','Î‡^\nÄb—‚q<v`x¶ä£K¤£ÁZ—WŽÏ>°GwÖÕ','',0,'?'),('ýÍa„í\'@Tç‘“‰õÖÊ','wp-admin/images/date-button.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v!0Ï$Ç\n-æ½®LåÌT','hÉÅµÎ´ä˜¼ùïn$°†ÛóÏê£¹‹èq!I#ú','',0,'?'),('ýÎ\r×#*W&Ed\\áK§','wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-cache.php',0,'-Å\"*lÚŽ±axÐ ÞM=','-Å\"*lÚŽ±axÐ ÞM=','«‚Ocú?¥§•;„[ü»CÕö-&A‹¾œ(ïµ³€ô\\','',0,'?'),('ýÙ;L]}™¬¦Y¢!Xªr','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Tenant.php',0,'¸‘šÂýPxe™¶%È€8„ø','¸‘šÂýPxe™¶%È€8„ø','XÑÇfçÏÂ}4åÛ6ÖûNúcëµÆKKQÿ÷G\Z','',0,'?'),('ýÞ‘MF«|v.ñšitR','wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/extensions/options_object/options_object/field_options_object.php',0,'s—D¦z9³hêmÍ&f','s—D¦z9³hêmÍ&f','ræ©É/O\røÉÖ‹m¤˜š¾‡©Æ™CÄvà¿ŒÓÔ¸','',0,'?'),('ýèóSš›´þõ*&ªÔÜ','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/UploadBodyListener.php',0,'Û¯?¾Àñ˜ÀÐi“]','Û¯?¾Àñ˜ÀÐi“]','¿I]àRpÑz¼öm\0Ñ¡MO6›‡~¾m“×¡8£é+','',0,'?'),('þë‚\r?8[9€kQ\'s','wp-content/plugins/wordfence/modules/login-security/views/options/option-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˆõ!7ôrõÞeyùs…\Z','@çú}µ\n²y.\'w°,ë5öe\"FïˆƒE½YbÊv@Ñ.','',0,'?'),('þ\'TúŸåôÌ­éY²Ç™','wp-includes/customize/class-wp-customize-cropped-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gáp[äq}yýª1‡','Žx\r:šœó‚öÍ}¯šgR)ê`Ÿš‚×k’M%','',0,'?'),('þ*)ß<D¿€Ø;FP','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/less.js',0,'…{ëÖ?™„›`½‘BTÞ','…{ëÖ?™„›`½‘BTÞ','QìßSí¸ÝM½\Z³<É£€1ºôØã—*Ù1:P','',0,'?'),('þò\01…³Æù4ÎÓ»Ñà','wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidInputException.php',0,'Úên‘Íè°:KiÌ‰ 6‹','Úên‘Íè°:KiÌ‰ 6‹','~êK¿½â¬!.¤¿Cêš\ZËÝ»&ÑÌNò<š?î','',0,'?'),('þýþœ)z]!?»±aÀ','wp-admin/images/media-button-video.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÂÒß>ýÀÛu‹€e­wðJ','Y¢e¸—Ü\"n+ò#@¬õ¾Æ¼†Z‚†ÄgáVPþé\'','',0,'?'),('þ%|Ý½°>?v{jÊ·','wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VÄß=àl¬àï	2âXÿ•','×´µ0ËÊªM\"—¹r,_ÑÆŽ>)G”þÍñéwg?','',0,'?'),('þ(fœýN\nGŒÐ©b‚','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Cache/Item.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','•ÖK~ëã\nY¦†’Nd#','fNÅ„ç§»ù¯w/öÓÈ	˜TúGÕéß5Lƒßa#C','',0,'?'),('þ)1 ÆÄŸËýõ®l\nA','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Filters/RetryPolicyFilter.php',0,'!±â÷Îà9\Z{¤þI9&','!±â÷Îà9\Z{¤þI9&','òï¤P^åóíÉ;‡wÅË¤õ=&kRÔSŽ‚Gþé¨Ñ','',0,'?'),('þ/e\n•¬o†?}m‰bK','wp-includes/blocks/page-list/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','InË/ï{Ž{\0É=a­bÁ','Ê…M¡ØlwóqdÄa€\nN4Á `Äª:Æ4Œ’','',0,'?'),('þ3º¡J¦Úà¥ŽVða;','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersSettingsSendAs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ËYÇár@Z´‚u:.€€\\','…ˆ„Ä.â]\n5Tz^ Q¤¼£‚fÇy¬°ZË›äü¸¡','',0,'?'),('þ=±“‚¡ÚÓCÝe°}œ§','wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/tabfocus/plugin.min.js',0,'Â!óý<à…»]ê»Ñrˆ','Â!óý<à…»]ê»Ñrˆ','É…p[¼ÈÐö¯ÙL7F…£|Ë–ZBœRŠ','',0,'?'),('þEx¢U–\'×\'[×/Å×','wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetInterface.php',0,'â}ž/m¡}†»èç¡‘','â}ž/m¡}†»èç¡‘','¦§±ÿ+8õ•ZkËþ`~¤¤ó)­‹v‹Š1ŽÙªè¥','',0,'?'),('þFÏ%­³CÂÔ0»£¡,','wp-admin/css/list-tables-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M„ì×JŽìš´@IÐQúZ','F[6\r‡BNŽJ+Ï“Ó2v¨°{&ÿÛ.Iœ±~Ã¹•¼e','',0,'?'),('þI\"íp¢ÐtÊQ¹É[Z6x','wp-includes/css/admin-bar.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','õ—<§y(wô6}Y³‹$ä','x¨\0+²°Àgb0¤Š÷ ¸ï2Q&Õ½æøqÇ8€Lå','',0,'?'),('þLCãÕÖÅy]àã•Øf','wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Middleware/SimpleMiddleware.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','»jß`\'³â5Im\Zt¦¾³ ','=‹)g¾¸¼FÏTkB_%È¬!ÄYËE˜îªÎ6U','',0,'?'),('þL‰oA7Ÿñÿev	','wp-includes/blocks/loginout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','èŒšY×70ÝGÛÕÛõ','Š3vì7¢|ÄEø›}4Ÿ%‰§‘«ÄáçÈ°˜“œû','',0,'?'),('þPï\0E[°&Œ¦<s:—','wp-content/plugins/worker/src/MWP/Process/ExecutableFinder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u¥%üb¿È£[¼¶)ô6','×¿Ñj•+Â7ÿS¥9R—\0ÕBt›•MðêŒšÒ•^Ü]','',0,'?'),('þWzY!­a˜ÊvwQ^Þ±','wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÝÖ_ÿŠu¦	´!´ã#~ø','¡aoJ¹W?ýç(¬~1#u(ý±NSVës;cäy¬ƒ','',0,'?'),('þZ¦)ÞQE1Ÿ5³?ó7','wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/Test/TestLogger.php',0,'g¸ƒâX,uÅùQ%Ç½êÃ','g¸ƒâX,uÅùQ%Ç½êÃ',' ¹\'ê…-‘Óñô¬%$³tÄñÊTâLÆëB','',0,'?'),('þcµÔwk(”‘ø43Ã','wp-admin/includes/list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(ï¿¦3û·|êcaï–Ø','bºüF|{s4sœ˜.& ;\r^Šý´äíf¿€û','',0,'?'),('þdk[D¶&×	D%NóØ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestIsNotMultiPartContentException.php',0,'š#9€xzæèùFìºôI3','š#9€xzæèùFìºôI3','™@3V‡®F­ŸbÙêdûÍ<,`±ÜÏdÓÉ\"¥‚','',0,'?'),('þeì~ª´ŸT²aAÃq','wp-content/themes/Divi/core/components/PageResource.php',0,'²íŸÆ}}òšÐOs\Zìý¢?','²íŸÆ}}òšÐOs\Zìý¢?','…´Q0Ô0*ø\nÄÎ\rÆ“D‡ÛÐ^MPY*8ž ','',0,'?'),('þgVÜàÖHIwžÓ!µ’À','wp-includes/css/customize-preview.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ig`¨Âoù¦ÓÙ·1>','Ÿ>kdUŸ†œÚ÷…³§‰ç=@Rµûç\r¥‰äËù;Ú','',0,'?'),('þqA ­§°¶áyÓµ¶„‡','wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/AbstractService.php',0,'»CßÕÇÿ@\\ëd¼PŒ','»CßÕÇÿ@\\ëd¼PŒ','0ˆÙyWb/Vb©±p¬*0:\".è:›QûöÐoâ½¸¿','',0,'?'),('þu=Y)V’34h5E&š','wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ContainerProperties.php',0,'#Š}Ô‰\'€=Nè©)','#Š}Ô‰\'€=Nè©)','ú•Šû. [”H«“’µôýåp|Éß¤óBäiUõ`½','',0,'?'),('þxÙ‚Bbë[“3_œ','wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_ru.js',0,'ŸÛØ–ÒùÑ¸èÈÊ\Z Ÿ','ŸÛØ–ÒùÑ¸èÈÊ\Z Ÿ','VaGå‘©¶jÎ§é¨°y	\Zaë tj˜>³$ÔL[','',0,'?'),('þy.{üuJß 5ý[\Z.','wp-includes/blocks/more/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sþê¦—+®H)š6“û','-d7¼—øŸÑÕv[p£Î½ÈÐPk4ÝÐñ±šs\"','',0,'?'),('þz3uå,îN)”É$j…','wp-content/plugins/really-simple-ssl/grid/templates/support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b’i; Èó¾#I:˜','±M˜Š}S×WÞ8œ¹@i„ œq·Œcðmd/Š–¦','',0,'?'),('þ}MO-ê¨KFãKÃ‚öœ','wp-content/updraft/plugins-old/updraftplus/includes/Google/Task/Runner.php',0,'ý{a\"…¢ÃZ*„ÿ/Df','ý{a\"…¢ÃZ*„ÿ/Df','\"H(óTžz/¥eÔ‚{Dœ¦\'­\r7ušë\\,E´¼ç','',0,'?'),('þ}€æA©î5í PÔ†Îô','wp-includes/blocks/gallery/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ôta‘VÑË‹=\\\0åêo7w','Åé!=@¬:&“âP\0ayÉã¥3·¼™˜ÓÀ([aÎ','',0,'?'),('þQÖ¿6“Èyqä¢88','wp-includes/theme-compat/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fË8óÍyÌ»Û@ó£Bò5','][ü—ùÛ­â’}ŠßŸv{“c¡vÒ§{P»¶K1~¦ò','',0,'?'),('þ–u0ƒ!Ü?Gƒê™$','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/spacing/field_spacing.js',0,'.Æ¯AÆÆuä¥~:7§ç','.Æ¯AÆÆuä¥~:7§ç','l£k™u?\0T£Ñ31‰¯¨øËywéÛ?L9ôÃS','',0,'?'),('þ‰Y‹ }‘ïÒw¯¨Æ','wp-content/themes/Divi/epanel/google-fonts/et_google_fonts.js',0,'Û”YëÝ9Ó…ðæ“°ï†Q:','Û”YëÝ9Ó…ðæ“°ï†Q:','ƒ·ñ·þ¦7+”i\\û“¡®×ø»}¾˜ÉGÖ=\nî','',0,'?'),('þ‰š\r¹Ð2ÐÅ4xO”¾ÿ','wp-content/themes/Divi/includes/builder/module/helpers/Sizing.php',0,'¬©	^´Ëz(KêAo¼Bž','¬©	^´Ëz(KêAo¼Bž','û)UPöîXà%l>*Æ|}·”˜Œé‰mzh–1','',0,'?'),('þŠv>‡šØAýµ%›I¿z','wp-content/plugins/duplicate-post/src/post-republisher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X*fYoë æÍð™þ|Ìõ','=ÑüM\"´§7Iï_½7÷Íý°Œ:ôG ÿD’bÖ','',0,'?'),('þ‹6BŒC3öøücØ›E6','wp-content/plugins/updraftplus/includes/Google/Service/Reports.php',0,'ê©úa¸„BUòœî-K','ê©úa¸„BUòœî-K','|G^÷É:QodËO4\"^\0B¾[Ok\r´¯&4w\r:,æ','',0,'?'),('þº\ZúÙtÅTê‹¹XÐÞr','wp-content/plugins/worker/src/MWP/EventListener/ActionRequest/VerifyNonce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^uê4ƒ’@(NÍŸ]ñ','ë\'ÑJ /‘þXéÔ7ÜØÃ}Y\r`…òæŽW‰Ê','',0,'?'),('þÚ¼tPkž‘Í-èÌlœ','wp-content/plugins/wp-mail-smtp/assets/vue/img/long-arrow-alt-right-regular-white.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','âÜ`çal„úsÝs—ÑKµ','IÆÌœ)d1ÝÑL¾Äî×~RèÙéªF\nt¯8ìþ{','',0,'?'),('þà¢¿w›ñ\'¢6)','wp-includes/rss-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' xrþ6ï2¾\'Œ]Ÿeàl#','ä~^ÉŽf}núÞBhýÞi=F˜\nƒ	¸Ð^é,','',0,'?'),('þêÆöÕNº·9¥{®;','wp-includes/js/mediaelement/wp-mediaelement.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',m;V*HàßTt™Ô~Xû','œ©a„Ô‹RYå“ÛñÖaž­ö³<þn[G{=y3Ê? ','',0,'?'),('þì$Pœ~¥Ùfªì×­ô“Q','wp-content/updraft/themes-old/twentyseventeen/assets/js/global.js',0,'ë¼Ö,æxà3|¯ÁâÖlÚ','ë¼Ö,æxà3|¯ÁâÖlÚ','«ä˜Ñ¤Òôï\\4uh»èo†Š\Zbëù%§¢xAŠ','',0,'?'),('þî.ˆ ”Iî\nfqñM9','wp-includes/sodium_compat/src/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!ðiœÑL³V=X+²	v0~','4çÎ-<4®,\"V²È±XÊ˜Ã®ÊhR—	KþFëk¡','',0,'?'),('þõý?oSÊ±Š†œœly','wp-content/plugins/updraftplus/includes/select2/select2.min.js',0,'&«±Kr`êŒ‘#âÈï','&«±Kr`êŒ‘#âÈï','€Ò°xõt;4Î&€­6–Öø¹D\"”ôTÙÿ','',0,'?'),('ÿ	Ä®Á<Ðï~¬ÐGùá~','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ApcCache.php',0,'ðcs*Ç †¿•Ý¦,R','ðcs*Ç †¿•Ý¦,R','‚º\neg¯ÏÊj]CVsÝÊ€°ô†E¤5ôfDŸ÷q','',0,'?'),('ÿ\"UÕF~B‡.èÜS','wp-includes/blocks/video/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gv¶’ÖB“ÍpHðµ=¹','ÝÄ,¼TD]Ç»Û Œ¿•¨œBM‰¼Ý6ê—ŽÒ5Qç”','',0,'?'),('ÿ.QàÂö5—\ZgÜó‡¸n','wp-content/plugins/fusion-builder/inc/templates/options/upload.php',0,'pš!RÅz÷¥}U©=ïh','pš!RÅz÷¥}U©=ïh','&ËèÏðUÀÑÝŒèì}Q A×¼£8Ã§°m]×³WC','',0,'?'),('ÿ7‡ Vµ%Ü)wBƒ.','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Request.php',0,'‹°ìÃ¦Y-[Ê~ Ž­','‹°ìÃ¦Y-[Ê~ Ž­','”é+žÇ¡éè8ÞÈ–ÑJ5Òr&+õÜù™<@ç¤óŒ','',0,'?'),('ÿ;`º$rçŸËÑ$³ž¦=','wp-content/plugins/wordfence/images/icons/warning128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pÏGÀI×t*ö“ÆÊNp=','ù¹äÞ*“/‚ØäÈ¾s›øtèAþˆ¸Ò}.b\'\\','',0,'?'),('ÿ<í^Ò\Z\Z‚–îÿ!Y','wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Order/GetCertificate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ê­MxÝEQ]¯ÿ—€Y‰)','&>ê‚©mº&üˆJhaíÓ‹šóFÿñúÖmTµ,×jV','',0,'?'),('ÿE58¾ùyªäÔWsÖOºÕ','wp-admin/css/admin-menu.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','klI2›’¹fþ‰ÆÀ^P','Ög\0N«]‰æJwË\0º‚S©2ì)(ˆUÈE½åÆz¾W–','',0,'?'),('ÿFn¨ç/\Z}aøcñ½ö','wp-content/plugins/updraftplus/includes/Google/Service/SQLAdmin.php',0,'^Ó¡–¼‡(=lÏ5ŠÎŽU—','^Ó¡–¼‡(=lÏ5ŠÎŽU—','î~Œ¬Á#Jž–s\nà,Û”8<n›jþº„et€®F','',0,'?'),('ÿLÙóêóe5x?e=æˆ&','wp-includes/js/plupload/wp-plupload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@¾³ŠnXÇ‘Ÿºi)','Þ>å#Àci¢5áÓct6ãø\"àÇ©ðwº)½','',0,'?'),('ÿQS¾2õ#ÍÃÁ]¸srtÔ','wp-includes/sodium_compat/src/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ÄŠÃÍ¯\ZHdy£›4','-œÚ£¸ªÀ|A\rc¾€w÷H4¨Up’»ÛcÑ','',0,'?'),('ÿfÏ“T`ÓÏÂ½o	ª','wp-content/plugins/fusion-builder/assets/js/chosen/chosen.jquery.js',0,'°I”~$}i|·Ÿ˜¸ù¾','°I”~$}i|·Ÿ˜¸ù¾','æ7†Œ´š\"j¢â÷Ïcý:ÿôÕTI¶yñÕ1ìÈo','',0,'?'),('ÿg«îêŠT32ÁÖ2ÜÎ','wp-content/plugins/really-simple-ssl/grid/css/grid.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u_žC>Hø©«p*eèkýT','‚jèøîEò²ixì‹AÈâyÚ4dòÙ:ôcnÛ','',0,'?'),('ÿkŒùþÏPP™˜1<Ã','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_files.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','êouÍlçÛ_›4@«¦','6b% \"ÄÊ´sÑJëp3°¿·ç8Ó·ƒSÇ™:ú±ƒ‘','',0,'?'),('ÿuSrù(7’|³(â|òu','wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/infobox_packed.js',0,'¹2JžÏ\\1ÂÑ\\=ž;(ò','¹2JžÏ\\1ÂÑ\\=ž;(ò','½ãk)’u—²‹ÎÖ‹ƒY½æAúM]Xü~V¿`ÂEõ\Z†','',0,'?'),('ÿ½«xB!_*yw\r,ŒL','wp-content/plugins/fusion-builder/shortcodes/fusion-counters-box.php',0,'Lˆ5ÊaJœŸÓ½»vØ¥','Lˆ5ÊaJœŸÓ½»vØ¥','ùçöº© ì’•z ’Ÿšcð\\Å©‡µ,PÁ`Cz¼$#','',0,'?'),('ÿƒ\\\rLˆ>{GO¢Îk\r\0','wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/PhpStreamRequestFactory.php',0,'W®V¨«ÑFQ¢#šÔ‚’B','W®V¨«ÑFQ¢#šÔ‚’B','À0fdøgIñ{{“]©3t¿äÀÕ;ˆRsá™d','',0,'?'),('ÿ…nÕ´8‹“y&éû™s','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/ext-language_tools.js',0,'`\0êNQ‰ATÑœ®\n½Ý','`\0êNQ‰ATÑœ®\n½Ý','Kß)”øÎß¹*…ƒWyE&¶¸qeM7j7ðU¼ÇD','',0,'?'),('ÿ†*•üFnëM÷ÚÞè\"','wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JSqueezeFilter.php',0,'Špáê	UÐœËb«Ý¼¼,','Špáê	UÐœËb«Ý¼¼,','aëLYa¸k±à¶GØcT›]\'P|³*dÎ\Ztˆ','',0,'?'),('ÿ‡q¢Â\Zþ#—aà—Š˜0¶','wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/typography/googlefonts.php',0,'rŠ8`y˜Ì¼&.H','rŠ8`y˜Ì¼&.H','©KºÌûÏ¯õF·¾÷Vƒ£8 ³ Î¯mø3<×¿Ó]','',0,'?'),('ÿ‡®ý:Ï÷ËJço±%â','wp-content/plugins/updraftplus/includes/Google/Logger/Psr.php',0,'’×³Ï€{\\¦6²Ë}Ë','’×³Ï€{\\¦6²Ë}Ë','òËe¦?ÎÅ´ó‡ˆÅ’ïuC»«·dmÇ\"KX•\'áò','',0,'?'),('ÿƒ?jú¶¹£­[Ö-~0','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/AbstractRefreshableCredentials.php',0,'k#\\t–šLh×Ïò;É=÷','k#\\t–šLh×Ïò;É=÷','@+êÅ¦‡š^NXŒ˜€ùr¦&[:´ZÅjÃ','',0,'?'),('ÿ“HF)\\çÁ,‘bôý','wp-includes/js/jquery/ui/controlgroup.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/ÙmU¿ÔK\ZNP†*{','(•\Z„V]MgZ•\ZR¹Ë†FÒÌ„{¢˜(‡“ÀY2]','',0,'?'),('ÿ—~%B—\0ƒz˜îõ?o','wp-includes/IXR/class-IXR-message.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÚJ£/ãzÄ*ùzÍ·ù;','lG\'áír5¹Ñï›+¸Ì”MhÊShq>ëâ­	\0Ï¦','',0,'?'),('ÿœÚÊáª¹ÙüçÉ!±','wp-content/plugins/fusion-builder/shortcodes/js/fusion-lightbox.js',0,'\n‡•ò ¬Ùp×ØŒ‡','\n‡•ò ¬Ùp×ØŒ‡','8þ³6Ýr¼Ó»ç> ‚Ê¨ù4·µodÙøÜ6Å¯','',0,'?'),('ÿ¥xqÓqù»ªÅcñ|!É','wp-content/plugins/updraftplus/methods/dreamobjects.php',0,'Ü}‚ú•øhƒ\\(^®AC','Ü}‚ú•øhƒ\\(^®AC','A,bú4,·åæ\ZÐ~T”©)zô¶9ÅÎ^³ŠJ\r','',0,'?'),('ÿ¨a5[4ü5¼MepC','wp-includes/js/jquery/ui/effect-bounce.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¬±k¿&É@«îÚ§rZ','è%MÇ†P€ÅË§»í™3d(q¢áõrð)iÜxŽ>º','',0,'?'),('ÿµS©CRCþül¸Å','wp-admin/css/colors/sunrise/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V’‡\ZŠzî	hÝù’=ì','ýâ¯Q_nŸ‰97ÊL2„ó$¢îy:jàSÑ…‡ ÎÅÁ','',0,'?'),('ÿµeŸø¶Híá\nÏ5&€,','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Parameters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ìr¢wÌR¥(ö0\'W@(','~žÀÑm„òÒˆþø˜‡ÈèX²C/INgí3þÛ³qTQ','',0,'?'),('ÿ¶ho«»ž¹\'Ü\"¹’|ˆ','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp112r2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ø\n5s±äÚLžGCêÀD','žñ»ä—²(Š°A*–×óog ŸÈ^aDË‹Dy','',0,'?'),('ÿº5/•\ZþA¶ÁŽc\"Ã','wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ü\\™®”ñõà:R/â+','ÞÉ«¡ÿ‡¨ÐøçÌ:ª»¶jNêmm©ú†½R·ª¸[','',0,'?'),('ÿ»æ¸ß¹u7õÀà[)äh','wp-includes/blocks/embed/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p¹x«xŠ-†2ggo','Õ‡§ÊuÎ)ñÇq\"õÝS\'Ôs½`Öª9õÉ~d`º','',0,'?'),('ÿÄêkµËiîÐ.¼¥¸\\¥“','wp-includes/images/smilies/icon_neutral.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ØæVM3HU1!á˜v','ž¤ëOis8\0ù|zó÷6Ç]e¨™@Yˆm49','',0,'?'),('ÿÊÔ—B€L¨Y’ÐÐ„¤d','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Parameter.php',0,'úBÄämêº×íuµ\ZU@ª','úBÄämêº×íuµ\ZU@ª','hG?ei—ë‚²Ý¿°Ù˜Œ Iûž°Ì/Õd3·úØ©¾','',0,'?'),('ÿÒH‘«‰XéËteí¢yóz','wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/eu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','žAœª¸ª‘µÔzÒ¿\rÆv÷','dhtŠfÕË§ÃŠD´Çh é/š]u@1N†7ÇîTßÚ','',0,'?'),('ÿØ4Û5±µq-«Êp,÷¿','wp-includes/blocks/file/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6,ù@A²ÖcÉƒÉÍö','*¬\"U „6O~4‡Ä~lËùéæ¨hÌ=õWÖ°}!I’','',0,'?'),('ÿÚÂ©6þõ<×Õ\09ZiR','wp-includes/js/jquery/ui/effect-fade.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','úrs£J¯Ï7O,ìæÿ','O#W¥V}®È+<š¨ÔšöíÏ¬>!éèëøÜ','',0,'?'),('ÿÛ¨_íøôûÞEz/…#¨','wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/SetContainerMetadataOptions.php',0,'º*›¥8ðePÂk°fj)¢','º*›¥8ðePÂk°fj)¢','¢ø„\'r³õAYÊL5“svðÌÊ¸n½†–¨àÏ,Ù','',0,'?'),('ÿÛï@~}c‡„ØQÝ\'ƒ¿J','wp-content/plugins/wordfence/modules/login-security/views/common/modal-prompt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','‚†%âý9ôá;%†òmM6Z','6ù-Ì2žXjÝ’[ÈlªãÃ†LïŒ°	\'8FJ','',0,'?'),('ÿç» 0Î\\´µéïÙ','wp-content/themes/Divi/404.php',0,'Jwô\'5æZ¦\'Kçh“','Jwô\'5æZ¦\'Kçh“','ÜCi£Ðþ¬+&F’[hñ_•ê<D“w@´‚V(','',0,'?'),('ÿõ7ëÌ|ðÂt–’Ö','wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Process.php',0,'g-K“-9/™8³è’’‰','g-K“-9/™8³è’’‰','÷GQõ;ÃÊúÙH¨\Z§~«ŒÅ‡\n(¿ç=ÒÈá‡«e','',0,'?'),('ÿö‚ºIö/Ú-ˆ_¯R','wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/PKCS8.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W”Ã„£|’Ï>È\"»úrý','o&T­ý/”ØfÆšlcìàDEÒ9v¬4©Ù\"^wÏ','',0,'?');
/*!40000 ALTER TABLE `b78GM7Ml_wffilemods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_wfhits`
--

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

--
-- Dumping data for table `b78GM7Ml_wfhits`
--

LOCK TABLES `b78GM7Ml_wfhits` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_wfhits` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_wfhits` VALUES (220626,0.000000,1699456777.154720,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘N',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220627,0.000000,1699457089.530177,'\0\0\0\0\0\0\0\0\0\0ÿÿ­ìŒœ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220628,0.000000,1699457201.685962,'\0\0\0\0\0\0\0\0\0\0ÿÿŠÉ®Ý',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','loginFailValidUsername',NULL,NULL),(220629,0.000000,1699457775.113472,'\0\0\0\0\0\0\0\0\0\0ÿÿg¯Ùô',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220630,0.000000,1699458281.043032,'\0\0\0\0\0\0\0\0\0\0ÿÿ3Qß†',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220631,0.000000,1699458986.091027,'\0\0\0\0\0\0\0\0\0\0ÿÿÀeD\'',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220632,0.000000,1699459573.380268,'\0\0\0\0\0\0\0\0\0\0ÿÿ†z{Á',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220633,0.000000,1699460082.489682,'\0\0\0\0\0\0\0\0\0\0ÿÿÃÉáu',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220634,0.000000,1699460793.618607,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥ãY½',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220635,0.000000,1699461365.204185,'\0\0\0\0\0\0\0\0\0\0ÿÿë§ô',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220636,0.000000,1699461875.957146,'\0\0\0\0\0\0\0\0\0\0ÿÿ4ç\"',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220637,0.000000,1699462588.326952,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥è¿	',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220638,0.000000,1699463162.868738,'\0\0\0\0\0\0\0\0\0\0ÿÿÊ¬\Z',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220639,0.000000,1699463668.226660,'\0\0\0\0\0\0\0\0\0\0ÿÿYu©­',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220640,0.000000,1699463812.571015,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z',0,302,0,2,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','loginOK',NULL,NULL),(220641,0.000000,1699464379.709297,'\0\0\0\0\0\0\0\0\0\0ÿÿŒR5l',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220642,0.000000,1699464949.831111,'\0\0\0\0\0\0\0\0\0\0ÿÿ•Ê*_',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220643,0.000000,1699466159.667137,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ©Yû',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220644,0.000000,1699466747.560171,'\0\0\0\0\0\0\0\0\0\0ÿÿU[“Û',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220645,0.000000,1699467238.821506,'\0\0\0\0\0\0\0\0\0\0ÿÿX™óŒ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220646,0.000000,1699468464.742582,'\0\0\0\0\0\0\0\0\0\0ÿÿ1Å§',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220647,0.000000,1699469643.010397,'\0\0\0\0\0\0\0\0\0\0ÿÿ“‡ÿ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220648,0.000000,1699470711.575912,'\0\0\0\0\0\0\0\0\0\0ÿÿÐa“»',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220649,0.000000,1699471411.404895,'\0\0\0\0\0\0\0\0\0\0ÿÿ¤„ª',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','loginFailValidUsername',NULL,NULL),(220650,0.000000,1699472472.369211,'\0\0\0\0\0\0\0\0\0\0ÿÿª@£$',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220651,0.000000,1699473737.821885,'\0\0\0\0\0\0\0\0\0\0ÿÿ”B‚Ã',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220652,0.000000,1699474933.620344,'\0\0\0\0\0\0\0\0\0\0ÿÿU[“Û',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220653,0.000000,1699475986.636052,'\0\0\0\0\0\0\0\0\0\0ÿÿ/òµ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220654,0.000000,1699476684.398698,'\0\0\0\0\0\0\0\0\0\0ÿÿ&òÎ³',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220655,0.000000,1699477245.526790,'\0\0\0\0\0\0\0\0\0\0ÿÿÃÉä',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220656,1699477299.661513,1699477299.447800,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯L',0,403,0,0,0,'http://kingsvillelivestock.com/inputs.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2lucHV0cy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(220657,0.000000,1699477754.045307,'\0\0\0\0\0\0\0\0\0\0ÿÿ1Å§',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220658,0.000000,1699477922.748839,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌØB',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220659,0.000000,1699478116.219973,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm²',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220660,0.000000,1699478261.250519,'\0\0\0\0\0\0\0\0\0\0ÿÿ’Õ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220661,0.000000,1699478446.608277,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨`·',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220662,0.000000,1699478453.678572,'\0\0\0\0\0\0\0\0\0\0ÿÿÑ‘4?',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220663,0.000000,1699478605.514049,'\0\0\0\0\0\0\0\0\0\0ÿÿk´y4',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220664,0.000000,1699478801.118369,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?Í',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220665,0.000000,1699478951.810946,'\0\0\0\0\0\0\0\0\0\0ÿÿÆý<',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220666,0.000000,1699479015.509828,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚%·',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220667,0.000000,1699479155.841260,'\0\0\0\0\0\0\0\0\0\0ÿÿN/ˆ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220668,0.000000,1699479307.995179,'\0\0\0\0\0\0\0\0\0\0ÿÿVV',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220669,0.000000,1699479509.684013,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥èNÎ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220670,0.000000,1699479639.360393,'\0\0\0\0\0\0\0\0\0\0ÿÿÆÛÙ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220671,0.000000,1699479857.834790,'\0\0\0\0\0\0\0\0\0\0ÿÿhÅÑ•',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220672,0.000000,1699480017.573277,'\0\0\0\0\0\0\0\0\0\0ÿÿgº¹R',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220673,0.000000,1699480213.395425,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íô',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220674,0.000000,1699480228.517304,'\0\0\0\0\0\0\0\0\0\0ÿÿ^õi',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220675,0.000000,1699480348.950043,'\0\0\0\0\0\0\0\0\0\0ÿÿD²–B',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220676,0.000000,1699480575.919704,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾\\‡ö',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220677,0.000000,1699480943.091850,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍŽ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220678,0.000000,1699481300.957260,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥ãY½',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','loginFailValidUsername',NULL,NULL),(220679,0.000000,1699481323.247262,'\0\0\0\0\0\0\0\0\0\0ÿÿSåS',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220680,0.000000,1699481470.620055,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌØB',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220681,0.000000,1699481677.537910,'\0\0\0\0\0\0\0\0\0\0ÿÿÆÛÙ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220682,0.000000,1699481848.021304,'\0\0\0\0\0\0\0\0\0\0ÿÿ­É¾',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220683,0.000000,1699482063.370989,'\0\0\0\0\0\0\0\0\0\0ÿÿáÍ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220684,0.000000,1699482238.013716,'\0\0\0\0\0\0\0\0\0\0ÿÿÔã•‰',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220685,0.000000,1699482444.707129,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>±2',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220686,0.000000,1699482583.791188,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"åJ*',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220687,0.000000,1699482633.713408,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹Ä',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220688,0.000000,1699482834.076118,'\0\0\0\0\0\0\0\0\0\0ÿÿD²—Ì',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220689,1699483000.817657,1699483000.594000,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>±2',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php',NULL,'Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3htbHJwYy5waHA=\"}'),(220690,0.000000,1699483088.276808,'\0\0\0\0\0\0\0\0\0\0ÿÿ‡µýý',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220691,0.000000,1699483390.620416,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥2Ñ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220692,0.000000,1699483782.872041,'\0\0\0\0\0\0\0\0\0\0ÿÿE£¢',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220693,0.000000,1699484013.007917,'\0\0\0\0\0\0\0\0\0\0ÿÿ”HÓ±',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220694,0.000000,1699484193.108897,'\0\0\0\0\0\0\0\0\0\0ÿÿ’Õ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220695,0.000000,1699484369.535037,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥ãY½',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220696,0.000000,1699484408.510760,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmp',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220697,0.000000,1699484579.756492,'\0\0\0\0\0\0\0\0\0\0ÿÿ±4  ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220698,0.000000,1699484812.866203,'\0\0\0\0\0\0\0\0\0\0ÿÿH§,',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220699,0.000000,1699484983.887940,'\0\0\0\0\0\0\0\0\0\0ÿÿ”ŸE',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220700,0.000000,1699485235.512980,'\0\0\0\0\0\0\0\0\0\0ÿÿ|žp',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220701,0.000000,1699485404.544278,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¶',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220702,0.000000,1699485603.120584,'\0\0\0\0\0\0\0\0\0\0ÿÿ6%œð',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220703,0.000000,1699485641.761389,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹¥v\"',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220704,0.000000,1699485793.890470,'\0\0\0\0\0\0\0\0\0\0ÿÿD²•Â',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220705,0.000000,1699486025.949594,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨y',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220706,0.000000,1699486450.315511,'\0\0\0\0\0\0\0\0\0\0ÿÿH§ýë',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220707,0.000000,1699486619.527288,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍŽ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220708,0.000000,1699486686.980853,'\0\0\0\0\0\0\0\0\0\0ÿÿæK_',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220709,0.000000,1699486859.926918,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220710,0.000000,1699487022.985287,'\0\0\0\0\0\0\0\0\0\0ÿÿE£à',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220711,0.000000,1699487261.487791,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨så',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220712,0.000000,1699487446.911962,'\0\0\0\0\0\0\0\0\0\0ÿÿCÍ<¦',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220713,0.000000,1699487679.956049,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hxæ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220714,0.000000,1699487901.451854,'\0\0\0\0\0\0\0\0\0\0ÿÿoRJ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220715,0.000000,1699488165.961421,'\0\0\0\0\0\0\0\0\0\0ÿÿD²Þ­',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220716,0.000000,1699488351.722201,'\0\0\0\0\0\0\0\0\0\0ÿÿCÍ<¦',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220717,0.000000,1699488521.530604,'\0\0\0\0\0\0\0\0\0\0ÿÿÏ”Kì',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220718,0.000000,1699488587.885049,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘ƒ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220719,0.000000,1699488783.211570,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Ì‹v',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220720,0.000000,1699489222.335788,'\0\0\0\0\0\0\0\0\0\0ÿÿk´y4',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220721,0.000000,1699489235.947090,'\0\0\0\0\0\0\0\0\0\0ÿÿ\r:›',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220722,0.000000,1699489491.821912,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹ÈðA',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220723,0.000000,1699489657.904599,'\0\0\0\0\0\0\0\0\0\0ÿÿ«ôÌ\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220724,0.000000,1699489939.798241,'\0\0\0\0\0\0\0\0\0\0ÿÿÔS’¦',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220725,0.000000,1699490117.152074,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm„',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220726,0.000000,1699490328.791335,'\0\0\0\0\0\0\0\0\0\0ÿÿÕ¯BŠ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220727,0.000000,1699490372.782677,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥:²',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220728,0.000000,1699490564.067212,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥2Ñ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220729,0.000000,1699490852.712868,'\0\0\0\0\0\0\0\0\0\0ÿÿ3ÒßO',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220730,0.000000,1699491022.424090,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hz¼',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220731,0.000000,1699491045.938307,'\0\0\0\0\0\0\0\0\0\0ÿÿ\rOž',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220732,0.000000,1699491309.331220,'\0\0\0\0\0\0\0\0\0\0ÿÿVV',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220733,0.000000,1699491479.702361,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨o',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220734,0.000000,1699491620.816357,'\0\0\0\0\0\0\0\0\0\0ÿÿÛ3·',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220735,0.000000,1699491775.586775,'\0\0\0\0\0\0\0\0\0\0ÿÿ¤„pW',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220736,0.000000,1699491958.606320,'\0\0\0\0\0\0\0\0\0\0ÿÿH§ýë',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220737,0.000000,1699492134.739173,'\0\0\0\0\0\0\0\0\0\0ÿÿaÍÒ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220738,0.000000,1699492424.382410,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hxæ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220739,0.000000,1699492691.630117,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘i',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220740,0.000000,1699492866.209919,'\0\0\0\0\0\0\0\0\0\0ÿÿÚsò',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220741,0.000000,1699492884.722699,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨`·',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220742,0.000000,1699493159.468719,'\0\0\0\0\0\0\0\0\0\0ÿÿH§}©',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220743,0.000000,1699493356.433288,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨s;',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220744,0.000000,1699493664.406281,'\0\0\0\0\0\0\0\0\0\0ÿÿVV',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220745,0.000000,1699494131.649242,'\0\0\0\0\0\0\0\0\0\0ÿÿH§O×',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220746,0.000000,1699494326.093350,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmp',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220747,0.000000,1699494660.507559,'\0\0\0\0\0\0\0\0\0\0ÿÿ/_pG',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220748,1699494706.187359,1699494705.975100,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]',0,403,0,0,0,'https://kingsvillelivestock.com/chosen.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(220749,1699494692.093535,1699494691.877000,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]',0,403,0,0,0,'http://kingsvillelivestock.com/simple.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NpbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(220750,0.000000,1699494851.809344,'\0\0\0\0\0\0\0\0\0\0ÿÿH§ýë',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220751,0.000000,1699495149.865502,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hxæ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220752,0.000000,1699495329.736107,'\0\0\0\0\0\0\0\0\0\0ÿÿ6øW<',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220753,0.000000,1699495358.755972,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘i',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220754,0.000000,1699495679.892033,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm\"F',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220755,0.000000,1699495883.061873,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>•',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220756,0.000000,1699496190.655999,'\0\0\0\0\0\0\0\0\0\0ÿÿE£à',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220757,0.000000,1699496409.723434,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨rÀ',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(220758,0.000000,1699496651.062920,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¾Gè',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220759,0.000000,1699496733.378218,'\0\0\0\0\0\0\0\0\0\0ÿÿÃšQ,',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220760,0.000000,1699496938.534705,'\0\0\0\0\0\0\0\0\0\0ÿÿD²–B',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220761,0.000000,1699497273.978743,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶\\˜_',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220762,0.000000,1699497472.560422,'\0\0\0\0\0\0\0\0\0\0ÿÿKgB',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220763,0.000000,1699497781.856843,'\0\0\0\0\0\0\0\0\0\0ÿÿ§G×€',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220764,0.000000,1699497804.894973,'\0\0\0\0\0\0\0\0\0\0ÿÿecZ¯',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220765,0.000000,1699498032.636733,'\0\0\0\0\0\0\0\0\0\0ÿÿt0e',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220766,0.000000,1699498371.941207,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"KV',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220767,0.000000,1699498527.931464,'\0\0\0\0\0\0\0\0\0\0ÿÿ(Iv',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220768,0.000000,1699498579.428573,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ©’{',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220769,0.000000,1699498885.484117,'\0\0\0\0\0\0\0\0\0\0ÿÿD²—Ì',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220770,0.000000,1699499122.618585,'\0\0\0\0\0\0\0\0\0\0ÿÿ”HÑI',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220771,0.000000,1699499473.046145,'\0\0\0\0\0\0\0\0\0\0ÿÿ3[ý ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220772,0.000000,1699499674.303585,'\0\0\0\0\0\0\0\0\0\0ÿÿ+Æ‚i',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220773,0.000000,1699499693.982877,'\0\0\0\0\0\0\0\0\0\0ÿÿ½~Î',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220774,0.000000,1699500036.692546,'\0\0\0\0\0\0\0\0\0\0ÿÿ@Z0³',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220775,0.000000,1699500261.250296,'\0\0\0\0\0\0\0\0\0\0ÿÿ«ôÌ\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220776,1699500305.871610,1699500305.684200,'\0\0\0\0\0\0\0\0\0\0ÿÿbF2Z',0,403,0,0,0,'http://kingsvillelivestock.com/style.php?sig=update&domain=51.79.124.111','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3N0eWxlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(220777,0.000000,1699500606.026800,'\0\0\0\0\0\0\0\0\0\0ÿÿg/¹¹',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(220778,0.000000,1699500837.795295,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t~',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220779,0.000000,1699501192.421237,'\0\0\0\0\0\0\0\0\0\0ÿÿ@Z0³',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220780,0.000000,1699501436.423379,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹{ÌV',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220781,0.000000,1699501547.929119,'\0\0\0\0\0\0\0\0\0\0ÿÿ“¶Ø\'',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220782,0.000000,1699501763.166999,'\0\0\0\0\0\0\0\0\0\0ÿÿE£à',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220783,0.000000,1699502023.092603,'\0\0\0\0\0\0\0\0\0\0ÿÿk´y4',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220784,0.000000,1699502376.810114,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'ix¾',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220785,0.000000,1699502610.759758,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹{ÌV',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220786,0.000000,1699502912.010659,'\0\0\0\0\0\0\0\0\0\0ÿÿ>A¼b',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220787,0.000000,1699502963.671645,'\0\0\0\0\0\0\0\0\0\0ÿÿ-YöÖ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220788,0.000000,1699503202.373612,'\0\0\0\0\0\0\0\0\0\0ÿÿt0e',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220789,0.000000,1699503452.165123,'\0\0\0\0\0\0\0\0\0\0ÿÿŠÅ¬',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220790,0.000000,1699503556.298289,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨uÒ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220791,0.000000,1699503809.323240,'\0\0\0\0\0\0\0\0\0\0ÿÿD²âÖ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220792,0.000000,1699504179.174112,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹F_',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220793,0.000000,1699504410.754244,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm„',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220794,0.000000,1699504568.057959,'\0\0\0\0\0\0\0\0\0\0ÿÿ¿`–Ì',0,200,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','curl/7.30.0','loginFailInvalidUsername',NULL,NULL),(220795,0.000000,1699504763.578967,'\0\0\0\0\0\0\0\0\0\0ÿÿH§O×',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220796,0.000000,1699505009.538546,'\0\0\0\0\0\0\0\0\0\0ÿÿgZäj',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220797,0.000000,1699505334.932249,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"åJ*',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220798,0.000000,1699505374.575271,'\0\0\0\0\0\0\0\0\0\0ÿÿÔ&(Ò',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220799,0.000000,1699505611.445102,'\0\0\0\0\0\0\0\0\0\0ÿÿD²—Ì',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220800,0.000000,1699505980.994744,'\0\0\0\0\0\0\0\0\0\0ÿÿ*Èçx',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220801,0.000000,1699506223.521493,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾\\˜^',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220802,0.000000,1699506576.538189,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍH',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220803,0.000000,1699506697.613410,'\0\0\0\0\0\0\0\0\0\0ÿÿ4ëÙ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220804,0.000000,1699506799.519166,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t~',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220805,0.000000,1699507140.918164,'\0\0\0\0\0\0\0\0\0\0ÿÿË€á',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220806,0.000000,1699507225.965836,'\0\0\0\0\0\0\0\0\0\0ÿÿ²€»·',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220807,0.000000,1699507331.487016,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hö½',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220808,0.000000,1699507605.410498,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ©”\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220809,0.000000,1699507808.979268,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘î',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220810,0.000000,1699508053.730101,'\0\0\0\0\0\0\0\0\0\0ÿÿ–_·Â',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220811,0.000000,1699508234.677193,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t~',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220812,0.000000,1699508506.782154,'\0\0\0\0\0\0\0\0\0\0ÿÿÔãæ¦',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220813,0.000000,1699508651.945142,'\0\0\0\0\0\0\0\0\0\0ÿÿE£¢',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220814,0.000000,1699508910.984921,'\0\0\0\0\0\0\0\0\0\0ÿÿ[ì¨ù',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220815,0.000000,1699509058.311068,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGã',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220816,0.000000,1699509081.700874,'\0\0\0\0\0\0\0\0\0\0ÿÿ-OÑ–',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220817,0.000000,1699509429.728774,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>±2',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220818,0.000000,1699509635.345123,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>Þ(',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220819,0.000000,1699509792.442259,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾\\˜^',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220820,0.000000,1699510011.313544,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹¥v\"',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220821,0.000000,1699510143.551211,'\0\0\0\0\0\0\0\0\0\0ÿÿhø-',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220822,0.000000,1699510321.302472,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ©”\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220823,0.000000,1699510471.822205,'\0\0\0\0\0\0\0\0\0\0ÿÿhÅÑ•',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220824,0.000000,1699510662.186340,'\0\0\0\0\0\0\0\0\0\0ÿÿÌ¼×ú',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220825,0.000000,1699510788.950736,'\0\0\0\0\0\0\0\0\0\0ÿÿD²Þ­',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220826,0.000000,1699510971.276137,'\0\0\0\0\0\0\0\0\0\0ÿÿD²—Š',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220827,0.000000,1699511104.284661,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘Ð',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220828,0.000000,1699511295.858203,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹F_',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220829,0.000000,1699511415.750184,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥:²',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220830,0.000000,1699511596.157126,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmJ;',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220831,0.000000,1699511656.616269,'\0\0\0\0\0\0\0\0\0\0ÿÿaÍÒ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220832,0.000000,1699511749.119752,'\0\0\0\0\0\0\0\0\0\0ÿÿÔàbm',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220833,0.000000,1699511901.827754,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨sÚ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220834,0.000000,1699512050.903962,'\0\0\0\0\0\0\0\0\0\0ÿÿeœÓ',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(220835,0.000000,1699512207.118557,'\0\0\0\0\0\0\0\0\0\0ÿÿN/ˆ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220836,0.000000,1699512244.700620,'\0\0\0\0\0\0\0\0\0\0ÿÿÂé\\v',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220837,0.000000,1699512338.600883,'\0\0\0\0\0\0\0\0\0\0ÿÿË€á',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220838,0.000000,1699512488.756916,'\0\0\0\0\0\0\0\0\0\0ÿÿ¬hQs',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220839,0.000000,1699512610.972896,'\0\0\0\0\0\0\0\0\0\0ÿÿH§:',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220840,0.000000,1699512767.599996,'\0\0\0\0\0\0\0\0\0\0ÿÿ–m”Ø',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220841,0.000000,1699512778.672067,'\0\0\0\0\0\0\0\0\0\0ÿÿD²–B',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220842,0.000000,1699512918.539535,'\0\0\0\0\0\0\0\0\0\0ÿÿg§Ù‰',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220843,0.000000,1699513070.890069,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?Í',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220844,0.000000,1699513347.081238,'\0\0\0\0\0\0\0\0\0\0ÿÿk­T£',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220845,0.000000,1699513467.605721,'\0\0\0\0\0\0\0\0\0\0ÿÿ–_Sa',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220846,0.000000,1699513627.673641,'\0\0\0\0\0\0\0\0\0\0ÿÿ§Gb',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220847,0.000000,1699513752.482608,'\0\0\0\0\0\0\0\0\0\0ÿÿzrOß',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220848,0.000000,1699513888.750458,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t›',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220849,0.000000,1699514003.310831,'\0\0\0\0\0\0\0\0\0\0ÿÿH§eÉ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220850,0.000000,1699514173.963035,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGæO',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220851,0.000000,1699514271.474565,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹V¦Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220852,0.000000,1699514427.935425,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>±¢',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220853,0.000000,1699514551.469764,'\0\0\0\0\0\0\0\0\0\0ÿÿKwÝP',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220854,0.000000,1699514626.947064,'\0\0\0\0\0\0\0\0\0\0ÿÿÁ‚V',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220855,0.000000,1699514704.873730,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌØB',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220856,0.000000,1699514812.197358,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í³Á',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220857,0.000000,1699514970.395339,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍÇ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220858,0.000000,1699515067.479355,'\0\0\0\0\0\0\0\0\0\0ÿÿ+ÿ˜',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220859,0.000000,1699515272.391440,'\0\0\0\0\0\0\0\0\0\0ÿÿWk§',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220860,0.000000,1699515349.271261,'\0\0\0\0\0\0\0\0\0\0ÿÿƒF',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220861,0.000000,1699515485.386107,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¾Ò?',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220862,0.000000,1699515596.455610,'\0\0\0\0\0\0\0\0\0\0ÿÿhÅÑ•',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220863,0.000000,1699515759.494383,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼UQé',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220864,0.000000,1699515844.877241,'\0\0\0\0\0\0\0\0\0\0ÿÿH§hù',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(220865,0.000000,1699515946.673941,'\0\0\0\0\0\0\0\0\0\0ÿÿ,åÿ†',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220866,0.000000,1699516017.314936,'\0\0\0\0\0\0\0\0\0\0ÿÿ.¶v',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220867,0.000000,1699516151.371996,'\0\0\0\0\0\0\0\0\0\0ÿÿr7ªo',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220868,0.000000,1699516280.623178,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Ì‹v',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220869,0.000000,1699516372.835992,'\0\0\0\0\0\0\0\0\0\0ÿÿÒÓ}Í',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220870,0.000000,1699516551.989334,'\0\0\0\0\0\0\0\0\0\0ÿÿ[ì¨ù',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220871,0.000000,1699516638.640985,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmÉª',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220872,0.000000,1699516853.973133,'\0\0\0\0\0\0\0\0\0\0ÿÿWk§',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220873,0.000000,1699516931.120850,'\0\0\0\0\0\0\0\0\0\0ÿÿ&òŒÈ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220874,0.000000,1699517088.583584,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGê#',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220875,0.000000,1699517191.653281,'\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0çm',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220876,0.000000,1699517359.542278,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGã&',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220877,0.000000,1699517477.903657,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍH',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220878,0.000000,1699517622.358994,'\0\0\0\0\0\0\0\0\0\0ÿÿ+ÿ˜',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220879,0.000000,1699517899.566596,'\0\0\0\0\0\0\0\0\0\0ÿÿ*Èçx',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(220880,0.000000,1699518020.225183,'\0\0\0\0\0\0\0\0\0\0ÿÿD²’',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220881,0.000000,1699518159.061656,'\0\0\0\0\0\0\0\0\0\0ÿÿD²á',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220882,0.000000,1699518267.560015,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>•',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220883,0.000000,1699518299.558969,'\0\0\0\0\0\0\0\0\0\0ÿÿ+Íÿ‘',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220884,0.000000,1699518447.414038,'\0\0\0\0\0\0\0\0\0\0ÿÿÔàbm',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220885,0.000000,1699518532.137767,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hõê',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220886,0.000000,1699518729.441365,'\0\0\0\0\0\0\0\0\0\0ÿÿ{9?',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220887,0.000000,1699518814.184798,'\0\0\0\0\0\0\0\0\0\0ÿÿ|žp',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220888,0.000000,1699518969.583195,'\0\0\0\0\0\0\0\0\0\0ÿÿg˜OÉ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220889,0.000000,1699519005.670381,'\0\0\0\0\0\0\0\0\0\0ÿÿ3²ˆ¤',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220890,0.000000,1699519088.580299,'\0\0\0\0\0\0\0\0\0\0ÿÿ/û2 ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220891,0.000000,1699519226.642912,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGê#',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220892,0.000000,1699519336.331307,'\0\0\0\0\0\0\0\0\0\0ÿÿk¶ìk',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220893,0.000000,1699519488.901631,'\0\0\0\0\0\0\0\0\0\0ÿÿY.[W',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220894,0.000000,1699519581.644711,'\0\0\0\0\0\0\0\0\0\0ÿÿ-LžÓ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220895,0.000000,1699519590.047209,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmá',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220896,0.000000,1699519751.249012,'\0\0\0\0\0\0\0\0\0\0ÿÿ6$¤M',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220897,0.000000,1699519869.762561,'\0\0\0\0\0\0\0\0\0\0ÿÿÌ]Å–',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220898,0.000000,1699520013.981230,'\0\0\0\0\0\0\0\0\0\0ÿÿÑa‘^',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220899,0.000000,1699520129.264642,'\0\0\0\0\0\0\0\0\0\0ÿÿ†zxP',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220900,0.000000,1699520283.858234,'\0\0\0\0\0\0\0\0\0\0ÿÿš\0£‚',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220901,0.000000,1699520403.121418,'\0\0\0\0\0\0\0\0\0\0ÿÿn\'7',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220902,0.000000,1699520538.567223,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmá',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220903,0.000000,1699520856.053333,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íƒ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220904,0.000000,1699521148.920621,'\0\0\0\0\0\0\0\0\0\0ÿÿD²á',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220905,0.000000,1699521372.747779,'\0\0\0\0\0\0\0\0\0\0ÿÿVV',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220906,0.000000,1699521424.307474,'\0\0\0\0\0\0\0\0\0\0ÿÿwô',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220907,0.000000,1699521674.881951,'\0\0\0\0\0\0\0\0\0\0ÿÿhÅÑ•',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220908,0.000000,1699521890.020313,'\0\0\0\0\0\0\0\0\0\0ÿÿÔ&(Ò',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220909,0.000000,1699522196.840054,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¾]U',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220910,0.000000,1699522440.959479,'\0\0\0\0\0\0\0\0\0\0ÿÿ}ÔÚ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220911,0.000000,1699522667.735645,'\0\0\0\0\0\0\0\0\0\0ÿÿYu¼}',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220912,0.000000,1699522774.254211,'\0\0\0\0\0\0\0\0\0\0ÿÿE?@',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220913,0.000000,1699522997.888287,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?³à',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220914,0.000000,1699523243.395144,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚%·',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220915,0.000000,1699523328.346472,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGã&',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220916,0.000000,1699523564.400813,'\0\0\0\0\0\0\0\0\0\0ÿÿD²á',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220917,0.000000,1699523906.527345,'\0\0\0\0\0\0\0\0\0\0ÿÿ­ìÒ^',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(220918,0.000000,1699524131.998361,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGã&',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220919,0.000000,1699524486.432460,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨`·',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220920,0.000000,1699524489.626386,'\0\0\0\0\0\0\0\0\0\0ÿÿŽ]”ª',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220921,0.000000,1699524729.987589,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘ô',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220922,0.000000,1699525075.386570,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨sÚ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220923,0.000000,1699525315.084898,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>±0',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220924,0.000000,1699525668.963237,'\0\0\0\0\0\0\0\0\0\0ÿÿH§hù',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220925,0.000000,1699525789.912298,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[_µ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220926,1699525798.148752,1699525797.959600,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[_µ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(220927,1699525794.180339,1699525793.992700,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[_µ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(220928,0.000000,1699525880.384713,'\0\0\0\0\0\0\0\0\0\0ÿÿ”ŸE',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220929,0.000000,1699526262.398243,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmãÄ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220930,0.000000,1699526519.002700,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘î',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220931,0.000000,1699527100.603454,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>•',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220932,0.000000,1699527699.532503,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGë',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220933,0.000000,1699528046.434562,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm\"F',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220934,0.000000,1699528140.056005,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼aš',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220935,0.000000,1699528299.598534,'\0\0\0\0\0\0\0\0\0\0ÿÿD²–¬',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220936,0.000000,1699528724.148538,'\0\0\0\0\0\0\0\0\0\0ÿÿ¨wI3',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220937,0.000000,1699528906.536506,'\0\0\0\0\0\0\0\0\0\0ÿÿg˜¤Š',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220938,0.000000,1699529255.981929,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220939,0.000000,1699529510.497783,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í)',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220940,0.000000,1699529854.171952,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶2‡9',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220941,0.000000,1699530166.821940,'\0\0\0\0\0\0\0\0\0\0ÿÿsõDƒ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220942,0.000000,1699530383.389340,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨j',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220943,0.000000,1699530546.961653,'\0\0\0\0\0\0\0\0\0\0ÿÿ%»Z8',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220944,0.000000,1699531004.412343,'\0\0\0\0\0\0\0\0\0\0ÿÿ1ëJ©',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220945,0.000000,1699531062.302476,'\0\0\0\0\0\0\0\0\0\0ÿÿ>«¾‡',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220946,0.000000,1699531796.045302,'\0\0\0\0\0\0\0\0\0\0ÿÿ¢ðhc',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220947,0.000000,1699531895.437566,'\0\0\0\0\0\0\0\0\0\0ÿÿWìÑ¤',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220948,0.000000,1699532065.075798,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹;\n•',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220949,0.000000,1699532170.615005,'\0\0\0\0\0\0\0\0\0\0ÿÿáÍ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220950,0.000000,1699532380.280794,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"åJ*',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220951,0.000000,1699532892.464612,'\0\0\0\0\0\0\0\0\0\0ÿÿ	ît',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220952,0.000000,1699533605.433471,'\0\0\0\0\0\0\0\0\0\0ÿÿB‡ ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220953,0.000000,1699534783.181085,'\0\0\0\0\0\0\0\0\0\0ÿÿk´y4',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220954,0.000000,1699535304.027176,'\0\0\0\0\0\0\0\0\0\0ÿÿ$^U',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220955,0.000000,1699535543.089277,'\0\0\0\0\0\0\0\0\0\0ÿÿ“‡ÐÙ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220956,0.000000,1699535569.797632,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌØB',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220957,0.000000,1699535682.927451,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨y',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220958,0.000000,1699535881.297576,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íƒ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220959,0.000000,1699536187.992489,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGæD',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220960,0.000000,1699536314.535091,'\0\0\0\0\0\0\0\0\0\0ÿÿ–_Sa',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220961,0.000000,1699536492.764058,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGã&',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220962,0.000000,1699536927.727625,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmNT',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220963,0.000000,1699537122.517934,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGë',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220964,0.000000,1699537364.213842,'\0\0\0\0\0\0\0\0\0\0ÿÿ¢M',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220965,0.000000,1699537455.268986,'\0\0\0\0\0\0\0\0\0\0ÿÿŸYh¶',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220966,0.000000,1699537582.868819,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍH',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220967,0.000000,1699537899.268793,'\0\0\0\0\0\0\0\0\0\0ÿÿ«ôÌ\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220968,0.000000,1699538092.386447,'\0\0\0\0\0\0\0\0\0\0ÿÿD²Þ­',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220969,0.000000,1699538225.598109,'\0\0\0\0\0\0\0\0\0\0ÿÿ–_·Â',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220970,0.000000,1699538430.818625,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍH',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220971,0.000000,1699538577.167037,'\0\0\0\0\0\0\0\0\0\0ÿÿÔãæ¦',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220972,0.000000,1699538693.504160,'\0\0\0\0\0\0\0\0\0\0ÿÿ\rwB',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220973,0.000000,1699538762.396338,'\0\0\0\0\0\0\0\0\0\0ÿÿY.[W',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220974,0.000000,1699538904.087495,'\0\0\0\0\0\0\0\0\0\0ÿÿg˜OÉ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220975,0.000000,1699539073.885545,'\0\0\0\0\0\0\0\0\0\0ÿÿ«ôÌ\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220976,0.000000,1699539207.293914,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm!',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220977,0.000000,1699539413.735101,'\0\0\0\0\0\0\0\0\0\0ÿÿ%»J1',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220978,0.000000,1699539540.747282,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGë',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220979,0.000000,1699539733.308888,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹;o',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220980,0.000000,1699539852.179595,'\0\0\0\0\0\0\0\0\0\0ÿÿÒÓ}Í',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220981,0.000000,1699539934.270912,'\0\0\0\0\0\0\0\0\0\0ÿÿ3[—<',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220982,0.000000,1699540061.300330,'\0\0\0\0\0\0\0\0\0\0ÿÿD²”',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220983,0.000000,1699540174.623589,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>±¢',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220984,0.000000,1699540379.990977,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?Í',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220985,0.000000,1699540524.871518,'\0\0\0\0\0\0\0\0\0\0ÿÿ3ÿ@:',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220986,0.000000,1699540526.148970,'\0\0\0\0\0\0\0\0\0\0ÿÿÁ‚V',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220987,0.000000,1699540704.607806,'\0\0\0\0\0\0\0\0\0\0ÿÿk¶ìk',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220988,0.000000,1699540827.714042,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶2‡9',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220989,0.000000,1699541043.053035,'\0\0\0\0\0\0\0\0\0\0ÿÿ¦>zô',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220990,0.000000,1699541153.817093,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ©”\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220991,0.000000,1699541357.772090,'\0\0\0\0\0\0\0\0\0\0ÿÿE£Æd',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220992,0.000000,1699541493.859371,'\0\0\0\0\0\0\0\0\0\0ÿÿ#ïçÂ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220993,0.000000,1699541671.543087,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>•',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220994,0.000000,1699541784.423791,'\0\0\0\0\0\0\0\0\0\0ÿÿWÄ;',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220995,0.000000,1699541823.632263,'\0\0\0\0\0\0\0\0\0\0ÿÿ¤„pW',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(220996,0.000000,1699542000.216162,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨s;',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220997,0.000000,1699542160.402737,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹¥v\"',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220998,0.000000,1699542340.238463,'\0\0\0\0\0\0\0\0\0\0ÿÿD²–B',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(220999,0.000000,1699542403.805785,'\0\0\0\0\0\0\0\0\0\0ÿÿ•ƒ½',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221000,0.000000,1699542473.275177,'\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0ÝÙ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221001,0.000000,1699542717.318865,'\0\0\0\0\0\0\0\0\0\0ÿÿÁç’',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221002,0.000000,1699542822.451918,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>±',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221003,0.000000,1699543017.769218,'\0\0\0\0\0\0\0\0\0\0ÿÿÐqº\n',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221004,0.000000,1699543156.677062,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹Ó«',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221005,0.000000,1699543337.238984,'\0\0\0\0\0\0\0\0\0\0ÿÿg/¹¹',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221006,0.000000,1699543493.806028,'\0\0\0\0\0\0\0\0\0\0ÿÿ-YöÖ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221007,0.000000,1699543672.156820,'\0\0\0\0\0\0\0\0\0\0ÿÿÃÉÇÏ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221008,0.000000,1699543695.076821,'\0\0\0\0\0\0\0\0\0\0ÿÿ,Ÿ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221009,0.000000,1699544033.363892,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌØB',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221010,0.000000,1699544158.212551,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨j',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221011,0.000000,1699544268.229541,'\0\0\0\0\0\0\0\0\0\0ÿÿ&òãh',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221012,0.000000,1699544380.328701,'\0\0\0\0\0\0\0\0\0\0ÿÿ%»J1',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221013,0.000000,1699548301.977481,'\0\0\0\0\0\0\0\0\0\0ÿÿ+Æ‚i',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221014,0.000000,1699548516.294139,'\0\0\0\0\0\0\0\0\0\0ÿÿ[}:',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221015,0.000000,1699551718.561996,'\0\0\0\0\0\0\0\0\0\0ÿÿ^õi',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221016,0.000000,1699554641.027733,'\0\0\0\0\0\0\0\0\0\0ÿÿ+Æ‚i',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221017,0.000000,1699557757.462572,'\0\0\0\0\0\0\0\0\0\0ÿÿ/òµ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221018,1699559434.745938,1699559434.526900,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/SqueezeTheme/style.css',NULL,'ALittle Client','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"QUxpdHRsZSBDbGllbnQ=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL1NxdWVlemVUaGVtZS9zdHlsZS5jc3M=\",\"category\":\"brute-force\",\"ssl\":0}'),(221019,0.000000,1699561044.030955,'\0\0\0\0\0\0\0\0\0\0ÿÿ4ÊPJ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221020,0.000000,1699563887.750694,'\0\0\0\0\0\0\0\0\0\0ÿÿÎ½Y9',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221021,0.000000,1699567136.759567,'\0\0\0\0\0\0\0\0\0\0ÿÿ–æz',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221022,1699570798.207161,1699570797.980000,'\0\0\0\0\0\0\0\0\0\0ÿÿ­hq',0,403,0,0,0,'http://kingsvillelivestock.com/themes.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3RoZW1lcy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221023,0.000000,1699573028.407207,'\0\0\0\0\0\0\0\0\0\0ÿÿÀG',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221024,1699575944.684558,1699575944.474500,'\0\0\0\0\0\0\0\0\0\0ÿÿ:8ã',0,403,0,0,0,'https://kingsvillelivestock.com/','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Lw==\",\"category\":\"brute-force\",\"ssl\":1}'),(221025,0.000000,1699576100.258568,'\0\0\0\0\0\0\0\0\0\0ÿÿ^õi',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221026,0.000000,1699581422.897910,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹{ÌV',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221027,0.000000,1699582284.814848,'\0\0\0\0\0\0\0\0\0\0ÿÿ–m”Ø',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221028,0.000000,1699582984.209234,'\0\0\0\0\0\0\0\0\0\0ÿÿg˜OÉ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221029,0.000000,1699585437.348361,'\0\0\0\0\0\0\0\0\0\0ÿÿÎ½Y9',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221030,0.000000,1699585650.822221,'\0\0\0\0\0\0\0\0\0\0ÿÿ•ƒ½',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221031,0.000000,1699586345.580997,'\0\0\0\0\0\0\0\0\0\0ÿÿ”HÏn',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221032,0.000000,1699587478.863494,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm¯ü',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221033,0.000000,1699588249.618167,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨y',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221034,0.000000,1699589477.393296,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘Ð',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221035,0.000000,1699590441.698538,'\0\0\0\0\0\0\0\0\0\0ÿÿÇ¼È—',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221036,0.000000,1699590933.222672,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t§',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221037,0.000000,1699591431.361462,'\0\0\0\0\0\0\0\0\0\0ÿÿ/_pG',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221038,0.000000,1699591754.560378,'\0\0\0\0\0\0\0\0\0\0ÿÿ3D›Ý',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','loginFailValidUsername',NULL,NULL),(221039,0.000000,1699592643.900550,'\0\0\0\0\0\0\0\0\0\0ÿÿaJÒ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221040,0.000000,1699592748.519346,'\0\0\0\0\0\0\0\0\0\0ÿÿk½:',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:30.0) Gecko/20100101 Firefox/30.0','loginFailInvalidUsername',NULL,NULL),(221041,0.000000,1699593112.108493,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'ix¾',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221042,0.000000,1699593439.956800,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?}',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221043,0.000000,1699593810.912487,'\0\0\0\0\0\0\0\0\0\0ÿÿ“¶˜Ð',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221044,0.000000,1699594179.530702,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221045,0.000000,1699594497.907472,'\0\0\0\0\0\0\0\0\0\0ÿÿE£à',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221046,0.000000,1699594858.234027,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"åJ*',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221047,0.000000,1699595057.516537,'\0\0\0\0\0\0\0\0\0\0ÿÿ\rwB',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221048,0.000000,1699595164.980913,'\0\0\0\0\0\0\0\0\0\0ÿÿH§D2',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221049,0.000000,1699595811.869928,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmp',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221050,0.000000,1699596140.444351,'\0\0\0\0\0\0\0\0\0\0ÿÿD²¦ä',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221051,0.000000,1699597010.637406,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨s¹',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221052,0.000000,1699597585.004420,'\0\0\0\0\0\0\0\0\0\0ÿÿD²–¶',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221053,0.000000,1699597792.334534,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm9z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221054,0.000000,1699597935.926735,'\0\0\0\0\0\0\0\0\0\0ÿÿ/jÉ†',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221055,0.000000,1699597977.958826,'\0\0\0\0\0\0\0\0\0\0ÿÿBFª˜',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221056,0.000000,1699598206.797863,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm¯ü',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221057,0.000000,1699598498.295632,'\0\0\0\0\0\0\0\0\0\0ÿÿD²•',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221058,0.000000,1699598649.552800,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘î',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221059,0.000000,1699598792.936400,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hz¼',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221060,0.000000,1699598950.362820,'\0\0\0\0\0\0\0\0\0\0ÿÿaJÒ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221061,0.000000,1699599110.235707,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘ƒ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221062,0.000000,1699599596.406517,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>• ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221063,0.000000,1699599765.177035,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmãÄ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221064,0.000000,1699599947.765374,'\0\0\0\0\0\0\0\0\0\0ÿÿhøt',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221065,0.000000,1699600125.332979,'\0\0\0\0\0\0\0\0\0\0ÿÿD²”',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221066,0.000000,1699600295.645394,'\0\0\0\0\0\0\0\0\0\0ÿÿt>›',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221067,0.000000,1699600865.208692,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘‘',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221068,0.000000,1699601054.895450,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"åJ*',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221069,0.000000,1699601247.141268,'\0\0\0\0\0\0\0\0\0\0ÿÿt>›',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221070,0.000000,1699601249.992021,'\0\0\0\0\0\0\0\0\0\0ÿÿ3Qß†',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221071,0.000000,1699601666.289241,'\0\0\0\0\0\0\0\0\0\0ÿÿ”ŸE',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221072,0.000000,1699601902.303357,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmD',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221073,0.000000,1699602813.695067,'\0\0\0\0\0\0\0\0\0\0ÿÿgx°É',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221074,0.000000,1699603515.791815,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>¶õ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221075,0.000000,1699603772.632590,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hy€',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221076,0.000000,1699604039.264094,'\0\0\0\0\0\0\0\0\0\0ÿÿ†zbØ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221077,0.000000,1699604284.630612,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmÉ|',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221078,0.000000,1699604546.324129,'\0\0\0\0\0\0\0\0\0\0ÿÿD²•8',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221079,0.000000,1699605053.906390,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨så',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221080,0.000000,1699605338.436408,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hxæ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221081,0.000000,1699605888.504921,'\0\0\0\0\0\0\0\0\0\0ÿÿØE¢ñ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221082,0.000000,1699606449.423549,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>–õ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221083,0.000000,1699607051.434862,'\0\0\0\0\0\0\0\0\0\0ÿÿ|(ÿº',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221084,0.000000,1699607321.540893,'\0\0\0\0\0\0\0\0\0\0ÿÿ±4  ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221085,0.000000,1699607658.860179,'\0\0\0\0\0\0\0\0\0\0ÿÿaJÓ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221086,0.000000,1699607957.448532,'\0\0\0\0\0\0\0\0\0\0ÿÿB^p',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221087,0.000000,1699608591.052863,'\0\0\0\0\0\0\0\0\0\0ÿÿ”ŸE',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221088,1699608663.375773,1699608663.182000,'\0\0\0\0\0\0\0\0\0\0ÿÿ­àwõ',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/WordPressCore/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9Xb3JkUHJlc3NDb3JlL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221089,1699608662.791816,1699608662.573200,'\0\0\0\0\0\0\0\0\0\0ÿÿ­àwõ',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/images/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL2ltYWdlcy9pbmNsdWRlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221090,0.000000,1699608923.960679,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨}ñ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221091,0.000000,1699609598.910592,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm\"F',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221092,0.000000,1699609918.250881,'\0\0\0\0\0\0\0\0\0\0ÿÿ«ôÌ\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221093,0.000000,1699610115.013361,'\0\0\0\0\0\0\0\0\0\0ÿÿ½¥Û',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','loginFailValidUsername',NULL,NULL),(221094,0.000000,1699610316.621759,'\0\0\0\0\0\0\0\0\0\0ÿÿ¨wI3',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221095,0.000000,1699610607.602302,'\0\0\0\0\0\0\0\0\0\0ÿÿk­T£',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221096,0.000000,1699610953.786142,'\0\0\0\0\0\0\0\0\0\0ÿÿE£—x',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221097,1699611547.589348,1699611547.384800,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîÒ',0,403,0,0,0,'http://kingsvillelivestock.com/alfacgiapi/perl.alfa','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FsZmFjZ2lhcGkvcGVybC5hbGZh\",\"category\":\"brute-force\",\"ssl\":0}'),(221098,1699611547.584977,1699611547.378700,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîÒ',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/apikey/apikey.php?test=hello',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9hcGlrZXkvYXBpa2V5LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221099,1699611547.247656,1699611547.027200,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîÒ',0,403,0,0,0,'http://kingsvillelivestock.com/ALFA_DATA/alfacgiapi/perl.alfa','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L0FMRkFfREFUQS9hbGZhY2dpYXBpL3BlcmwuYWxmYQ==\",\"category\":\"brute-force\",\"ssl\":0}'),(221100,1699611547.240498,1699611547.022200,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîÒ',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/seotheme/db.php?u=','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL3Nlb3RoZW1lL2RiLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221101,1699611547.235775,1699611547.014000,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîÒ',0,403,0,0,0,'http://kingsvillelivestock.com/',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Lw==\",\"category\":\"brute-force\",\"ssl\":0}'),(221102,1699611076.053235,1699611075.862600,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'https://kingsvillelivestock.com/wp-content/plugins/WordPressCore/include.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9Xb3JkUHJlc3NDb3JlL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":1}'),(221103,1699611069.570554,1699611069.381000,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/simple.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NpbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221104,1699611064.929960,1699611064.720000,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'https://kingsvillelivestock.com/chosen.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(221105,1699611054.901357,1699611054.687000,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/simple.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NpbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221106,1699611556.868852,1699611556.684400,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîÒ',0,403,0,0,0,'https://kingsvillelivestock.com/wp-content/themes/seotheme/db.php?u=','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL3Nlb3RoZW1lL2RiLnBocA==\",\"category\":\"brute-force\",\"ssl\":1}'),(221107,1699611548.527602,1699611548.341400,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîÒ',0,403,0,0,0,'http://kingsvillelivestock.com/plugins/content/apismtp/apismtp.php.suspected?test=hello',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3BsdWdpbnMvY29udGVudC9hcGlzbXRwL2FwaXNtdHAucGhwLnN1c3BlY3RlZA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221108,1699611548.261484,1699611548.069400,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîÒ',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/apikey/apikey.php.suspected?test=hello',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9hcGlrZXkvYXBpa2V5LnBocC5zdXNwZWN0ZWQ=\",\"category\":\"brute-force\",\"ssl\":0}'),(221109,0.000000,1699611646.378246,'\0\0\0\0\0\0\0\0\0\0ÿÿH§hù',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221110,0.000000,1699612362.871740,'\0\0\0\0\0\0\0\0\0\0ÿÿE£—x',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221111,0.000000,1699613236.629512,'\0\0\0\0\0\0\0\0\0\0ÿÿ¡#|û',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221112,0.000000,1699613443.352321,'\0\0\0\0\0\0\0\0\0\0ÿÿ[qå',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221113,0.000000,1699613815.352072,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'j\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221114,0.000000,1699614171.219112,'\0\0\0\0\0\0\0\0\0\0ÿÿ¡a“ë',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221115,0.000000,1699614541.002479,'\0\0\0\0\0\0\0\0\0\0ÿÿ3Qî',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221116,0.000000,1699614901.962976,'\0\0\0\0\0\0\0\0\0\0ÿÿ&òŒÈ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221117,0.000000,1699615654.506110,'\0\0\0\0\0\0\0\0\0\0ÿÿ-}ï³',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221118,0.000000,1699616061.580941,'\0\0\0\0\0\0\0\0\0\0ÿÿoRJ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221119,0.000000,1699616625.670008,'\0\0\0\0\0\0\0\0\0\0ÿÿAl’…',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221120,0.000000,1699616884.254424,'\0\0\0\0\0\0\0\0\0\0ÿÿ­ì¬V',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221121,0.000000,1699617272.516540,'\0\0\0\0\0\0\0\0\0\0ÿÿ«ô1',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221122,0.000000,1699617706.410941,'\0\0\0\0\0\0\0\0\0\0ÿÿ-YöÖ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221123,0.000000,1699618095.118427,'\0\0\0\0\0\0\0\0\0\0ÿÿgš¸*',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221124,0.000000,1699618538.298378,'\0\0\0\0\0\0\0\0\0\0ÿÿR¥¸L',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221125,0.000000,1699618958.471744,'\0\0\0\0\0\0\0\0\0\0ÿÿ/û2 ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221126,0.000000,1699619401.392607,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'j\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221127,1699619760.344792,1699619760.130500,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/linkpreview/db.php?u=','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9saW5rcHJldmlldy9kYi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221128,0.000000,1699619765.390041,'\0\0\0\0\0\0\0\0\0\0ÿÿ«ôÌ\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221129,1699619822.126947,1699619821.906900,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php?p=','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221130,1699619804.699600,1699619804.487600,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢',0,403,0,0,0,'http://kingsvillelivestock.com/woh.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dvaC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221131,1699620099.626554,1699620099.438000,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/widgets/include.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL3dpZGdldHMvaW5jbHVkZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221132,1699620091.208342,1699620090.995600,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/include.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221133,0.000000,1699620210.174836,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hy€',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221134,0.000000,1699621052.857467,'\0\0\0\0\0\0\0\0\0\0ÿÿoDwš',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221135,0.000000,1699621390.935479,'\0\0\0\0\0\0\0\0\0\0ÿÿ/oH',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221136,0.000000,1699622159.464414,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹;o',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221137,0.000000,1699623109.731813,'\0\0\0\0\0\0\0\0\0\0ÿÿÝ|4®',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221138,0.000000,1699623678.408507,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹ÿë',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221139,0.000000,1699623821.607583,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨}ñ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221140,0.000000,1699623888.763060,'\0\0\0\0\0\0\0\0\0\0ÿÿ/^ÅÏ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221141,0.000000,1699626698.600756,'\0\0\0\0\0\0\0\0\0\0ÿÿ[qå',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221142,0.000000,1699626795.154590,'\0\0\0\0\0\0\0\0\0\0ÿÿÃÉä',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221143,0.000000,1699627587.537741,'\0\0\0\0\0\0\0\0\0\0ÿÿ[qå',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221144,0.000000,1699630801.742504,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>z',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221145,0.000000,1699632215.957871,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'gá',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221146,0.000000,1699632880.926739,'\0\0\0\0\0\0\0\0\0\0ÿÿS«ù7',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36','loginFailValidUsername',NULL,NULL),(221147,0.000000,1699635740.549139,'\0\0\0\0\0\0\0\0\0\0ÿÿ„”KË',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36','loginFailValidUsername',NULL,NULL),(221148,0.000000,1699636088.635314,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hõê',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221149,0.000000,1699637066.198536,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hy€',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221150,0.000000,1699637922.653855,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hö½',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221151,0.000000,1699638468.086169,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?\0',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221152,0.000000,1699638717.768039,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t~',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221153,0.000000,1699638961.513475,'\0\0\0\0\0\0\0\0\0\0ÿÿš\0¯È',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221154,0.000000,1699639760.416541,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾`L\Z',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221155,0.000000,1699639965.795616,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨rÀ',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221156,0.000000,1699640460.725725,'\0\0\0\0\0\0\0\0\0\0ÿÿD²õK',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221157,0.000000,1699640956.102219,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨lý',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221158,0.000000,1699641706.844027,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍÇ',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221159,0.000000,1699641940.700004,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmËá',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221160,0.000000,1699642682.134214,'\0\0\0\0\0\0\0\0\0\0ÿÿƒF',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221161,0.000000,1699642888.675280,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm\"F',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221162,0.000000,1699643119.922553,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘Í',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221163,0.000000,1699643365.125102,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹F_',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221164,0.000000,1699643588.523560,'\0\0\0\0\0\0\0\0\0\0ÿÿh-)-',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221165,0.000000,1699643840.193480,'\0\0\0\0\0\0\0\0\0\0ÿÿD²”M',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221166,0.000000,1699644069.825588,'\0\0\0\0\0\0\0\0\0\0ÿÿD²Þ­',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221167,0.000000,1699644273.997721,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨}ñ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221168,0.000000,1699644505.574175,'\0\0\0\0\0\0\0\0\0\0ÿÿ+R­',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221169,0.000000,1699644737.828212,'\0\0\0\0\0\0\0\0\0\0ÿÿ#»t',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Gentoo; Linux x86_64; rv:91.0) Gecko/20100101 Firefox/91.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221170,0.000000,1699644955.498177,'\0\0\0\0\0\0\0\0\0\0ÿÿD²Þ­',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221171,0.000000,1699645156.723381,'\0\0\0\0\0\0\0\0\0\0ÿÿºêP6',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221172,0.000000,1699645397.262695,'\0\0\0\0\0\0\0\0\0\0ÿÿPûÛo',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221173,0.000000,1699645605.387208,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>·',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221174,0.000000,1699646018.777357,'\0\0\0\0\0\0\0\0\0\0ÿÿ/k°$',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221175,0.000000,1699646255.099772,'\0\0\0\0\0\0\0\0\0\0ÿÿD²¦ä',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221176,0.000000,1699646464.092340,'\0\0\0\0\0\0\0\0\0\0ÿÿÆÛÙ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221177,0.000000,1699646687.785898,'\0\0\0\0\0\0\0\0\0\0ÿÿxM‘@',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221178,0.000000,1699646912.001133,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmã',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221179,0.000000,1699647158.422372,'\0\0\0\0\0\0\0\0\0\0ÿÿ|žp',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221180,0.000000,1699647386.298729,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘¸',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221181,0.000000,1699647873.653977,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘î',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221182,0.000000,1699647951.079018,'\0\0\0\0\0\0\0\0\0\0ÿÿÆô§e',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221183,0.000000,1699648149.134142,'\0\0\0\0\0\0\0\0\0\0ÿÿ‘ïÐ±',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221184,0.000000,1699648372.755947,'\0\0\0\0\0\0\0\0\0\0ÿÿE£ài',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221185,0.000000,1699648617.262562,'\0\0\0\0\0\0\0\0\0\0ÿÿ”HÏn',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221186,0.000000,1699649166.342678,'\0\0\0\0\0\0\0\0\0\0ÿÿ3ÒßO',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221187,0.000000,1699649698.224792,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨{.',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221188,0.000000,1699649991.013947,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>¯',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221189,0.000000,1699650298.364814,'\0\0\0\0\0\0\0\0\0\0ÿÿg˜OÉ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221190,1699650504.686462,1699650504.475300,'\0\0\0\0\0\0\0\0\0\0ÿÿ3Þž',0,403,0,0,0,'http://kingsvillelivestock.com/style.php?sig=update&domain=51.79.124.111','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3N0eWxlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221191,0.000000,1699650875.733402,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨`·',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221192,0.000000,1699651035.231981,'\0\0\0\0\0\0\0\0\0\0ÿÿ6É^',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','loginFailValidUsername',NULL,NULL),(221193,0.000000,1699651509.381877,'\0\0\0\0\0\0\0\0\0\0ÿÿD²•Â',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221194,0.000000,1699653177.685324,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'ix¾',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221195,0.000000,1699653520.168483,'\0\0\0\0\0\0\0\0\0\0ÿÿ/kG¥',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221196,0.000000,1699653878.050030,'\0\0\0\0\0\0\0\0\0\0ÿÿÁç’',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221197,0.000000,1699654395.758652,'\0\0\0\0\0\0\0\0\0\0ÿÿÎ½;÷',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221198,0.000000,1699654569.678823,'\0\0\0\0\0\0\0\0\0\0ÿÿUí&ä',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221199,0.000000,1699654957.728286,'\0\0\0\0\0\0\0\0\0\0ÿÿgŸïà',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221200,0.000000,1699655303.702133,'\0\0\0\0\0\0\0\0\0\0ÿÿk´y4',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221201,0.000000,1699656056.490554,'\0\0\0\0\0\0\0\0\0\0ÿÿq¡H‡',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221202,0.000000,1699657548.054746,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221203,0.000000,1699657566.021579,'\0\0\0\0\0\0\0\0\0\0ÿÿ#ÕªÐ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221204,0.000000,1699657951.836704,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'gá',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221205,0.000000,1699658308.013069,'\0\0\0\0\0\0\0\0\0\0ÿÿ²€R”',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221206,0.000000,1699658729.592185,'\0\0\0\0\0\0\0\0\0\0ÿÿH§,',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221207,0.000000,1699659117.783135,'\0\0\0\0\0\0\0\0\0\0ÿÿE£Æd',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221208,0.000000,1699659550.931394,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'ix¾',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221209,0.000000,1699660364.663002,'\0\0\0\0\0\0\0\0\0\0ÿÿWìÑ¤',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221210,0.000000,1699660443.964409,'\0\0\0\0\0\0\0\0\0\0ÿÿÃÉÇÏ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221211,0.000000,1699660645.709515,'\0\0\0\0\0\0\0\0\0\0ÿÿÆô§e',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221212,0.000000,1699660735.847020,'\0\0\0\0\0\0\0\0\0\0ÿÿwO(',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221213,0.000000,1699661165.621486,'\0\0\0\0\0\0\0\0\0\0ÿÿ±4 ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221214,0.000000,1699662040.107824,'\0\0\0\0\0\0\0\0\0\0ÿÿWìÑ¤',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221215,0.000000,1699662898.129619,'\0\0\0\0\0\0\0\0\0\0ÿÿgx°É',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221216,0.000000,1699663320.723447,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹;\n•',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221217,0.000000,1699663760.191432,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹;o',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221218,0.000000,1699664164.322389,'\0\0\0\0\0\0\0\0\0\0ÿÿt>›',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221219,0.000000,1699664616.602778,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?Í',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221220,0.000000,1699665023.475016,'\0\0\0\0\0\0\0\0\0\0ÿÿ±4 ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221221,0.000000,1699665875.566547,'\0\0\0\0\0\0\0\0\0\0ÿÿ”HÑI',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221222,0.000000,1699666355.405733,'\0\0\0\0\0\0\0\0\0\0ÿÿ[qå',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221223,0.000000,1699666630.119067,'\0\0\0\0\0\0\0\0\0\0ÿÿ@ã’',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221224,0.000000,1699666762.844570,'\0\0\0\0\0\0\0\0\0\0ÿÿŽ,óÖ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221225,0.000000,1699666829.210832,'\0\0\0\0\0\0\0\0\0\0ÿÿ.i',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221226,0.000000,1699667236.479370,'\0\0\0\0\0\0\0\0\0\0ÿÿQ|©',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221227,0.000000,1699667622.867070,'\0\0\0\0\0\0\0\0\0\0ÿÿ(MoÐ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221228,0.000000,1699668069.421638,'\0\0\0\0\0\0\0\0\0\0ÿÿgZá×',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221229,0.000000,1699668476.897257,'\0\0\0\0\0\0\0\0\0\0ÿÿ*Èçx',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221230,0.000000,1699668962.639914,'\0\0\0\0\0\0\0\0\0\0ÿÿ|žp',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221231,0.000000,1699669381.303972,'\0\0\0\0\0\0\0\0\0\0ÿÿ«ôÌ\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221232,0.000000,1699669650.627168,'\0\0\0\0\0\0\0\0\0\0ÿÿ%‹\rQ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221233,0.000000,1699669856.053597,'\0\0\0\0\0\0\0\0\0\0ÿÿŸßÞ¡',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221234,0.000000,1699670318.938201,'\0\0\0\0\0\0\0\0\0\0ÿÿWìÑ¤',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221235,0.000000,1699670788.717928,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹ÈðA',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221236,0.000000,1699671216.020817,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?Í',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221237,0.000000,1699671645.427664,'\0\0\0\0\0\0\0\0\0\0ÿÿÁzg’',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221238,0.000000,1699672044.286991,'\0\0\0\0\0\0\0\0\0\0ÿÿE£Æd',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221239,0.000000,1699672311.539131,'\0\0\0\0\0\0\0\0\0\0ÿÿÑ‘1Ù',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221240,0.000000,1699672851.964341,'\0\0\0\0\0\0\0\0\0\0ÿÿÁ‚V',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221241,0.000000,1699673184.957886,'\0\0\0\0\0\0\0\0\0\0ÿÿ3ÃkÞ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221242,0.000000,1699673733.775286,'\0\0\0\0\0\0\0\0\0\0ÿÿÑ‘9º',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221243,0.000000,1699674606.884394,'\0\0\0\0\0\0\0\0\0\0ÿÿ†ÑhL',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221244,0.000000,1699675497.156673,'\0\0\0\0\0\0\0\0\0\0ÿÿ§GêÞ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221245,0.000000,1699675828.816392,'\0\0\0\0\0\0\0\0\0\0ÿÿ”HÖÂ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221246,0.000000,1699677579.507421,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ£%)',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221247,0.000000,1699678119.483507,'\0\0\0\0\0\0\0\0\0\0ÿÿOÔñ',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','loginFailValidUsername',NULL,NULL),(221248,0.000000,1699681018.179757,'\0\0\0\0\0\0\0\0\0\0ÿÿ”HÖõ',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36','loginFailValidUsername',NULL,NULL),(221249,1699703246.017297,1699703245.831900,'\0\0\0\0\0\0\0\0\0\0ÿÿ\r_è',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Nsb3VkLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221250,1699703241.866884,1699703241.680900,'\0\0\0\0\0\0\0\0\0\0ÿÿ\r_è',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/css/colors/blue/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Nzcy9jb2xvcnMvYmx1ZS9jbG91ZC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221251,1699703238.051810,1699703237.865600,'\0\0\0\0\0\0\0\0\0\0ÿÿ\r_è',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/includes/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2luY2x1ZGVzL2Nsb3VkLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221252,1699703234.260643,1699703234.072300,'\0\0\0\0\0\0\0\0\0\0ÿÿ\r_è',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/css/colors/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Nzcy9jb2xvcnMvY2xvdWQucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221253,1699703230.486613,1699703230.282500,'\0\0\0\0\0\0\0\0\0\0ÿÿ\r_è',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/js/widgets/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2pzL3dpZGdldHMvY2xvdWQucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221254,1699703227.154244,1699703226.968000,'\0\0\0\0\0\0\0\0\0\0ÿÿ\r_è',0,403,0,0,0,'http://kingsvillelivestock.com/images/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2ltYWdlcy9jbG91ZC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221255,1699703223.708104,1699703223.509000,'\0\0\0\0\0\0\0\0\0\0ÿÿ\r_è',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/images/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2ltYWdlcy9jbG91ZC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221256,1699703220.853580,1699703220.664600,'\0\0\0\0\0\0\0\0\0\0ÿÿ\r_è',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/css/colors/coffee/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Nzcy9jb2xvcnMvY29mZmVlL2Nsb3VkLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221257,1699703218.376389,1699703218.178100,'\0\0\0\0\0\0\0\0\0\0ÿÿ\r_è',0,403,0,0,0,'http://kingsvillelivestock.com/img/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2ltZy9jbG91ZC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221258,1699703215.135547,1699703214.826100,'\0\0\0\0\0\0\0\0\0\0ÿÿ\r_è',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/user/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL3VzZXIvY2xvdWQucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221259,1699703189.536126,1699703189.328600,'\0\0\0\0\0\0\0\0\0\0ÿÿ\r_è',0,403,0,0,0,'http://kingsvillelivestock.com/css/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nzcy9jbG91ZC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221260,1699703182.910283,1699703182.697400,'\0\0\0\0\0\0\0\0\0\0ÿÿ\r_è',0,403,0,0,0,'http://kingsvillelivestock.com/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nsb3VkLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221261,1699703166.170170,1699703165.979100,'\0\0\0\0\0\0\0\0\0\0ÿÿ\r_è',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/network/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL25ldHdvcmsvY2xvdWQucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221262,1699703162.649623,1699703162.444600,'\0\0\0\0\0\0\0\0\0\0ÿÿ\r_è',0,403,0,0,0,'http://kingsvillelivestock.com/index.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221263,1699703157.899645,1699703157.685900,'\0\0\0\0\0\0\0\0\0\0ÿÿ\r_è',0,403,0,0,0,'http://kingsvillelivestock.com/index.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221264,0.000000,1699716963.994919,'\0\0\0\0\0\0\0\0\0\0ÿÿgä@\Z',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221265,0.000000,1699717512.343731,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚%·',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221266,0.000000,1699718401.980824,'\0\0\0\0\0\0\0\0\0\0ÿÿE£àh',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221267,0.000000,1699719698.686512,'\0\0\0\0\0\0\0\0\0\0ÿÿÌ)>',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221268,0.000000,1699720266.136604,'\0\0\0\0\0\0\0\0\0\0ÿÿ‡µýý',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221269,0.000000,1699720613.299640,'\0\0\0\0\0\0\0\0\0\0ÿÿB‡ ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221270,0.000000,1699721534.355328,'\0\0\0\0\0\0\0\0\0\0ÿÿ¡#|û',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221271,0.000000,1699723035.934818,'\0\0\0\0\0\0\0\0\0\0ÿÿÔkÉ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221272,0.000000,1699723388.900648,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹Äˆ¦',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221273,0.000000,1699723946.964504,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹Ä.',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221274,0.000000,1699725204.544781,'\0\0\0\0\0\0\0\0\0\0ÿÿ²€ ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221275,1699726573.717600,1699726573.506700,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/themes.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3RoZW1lcy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221276,1699726560.156584,1699726559.970400,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/images/admin.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2ltYWdlcy9hZG1pbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221277,1699726550.034474,1699726549.843500,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/blocks/table/int/tmpl/index.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL2Jsb2Nrcy90YWJsZS9pbnQvdG1wbC9pbmRleC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221278,1699726544.366785,1699726544.152100,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-header.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWhlYWRlci5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221279,1699726532.725860,1699726532.543800,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/index.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221280,1699726522.778506,1699726522.594300,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/404.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"LzQwNC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221281,1699726513.637299,1699726513.437300,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/alfa-rex.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9hbGZhLXJleC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221282,1699726504.457341,1699726504.261200,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/finley/min.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL2ZpbmxleS9taW4ucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221283,1699726499.967760,1699726499.751800,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/shell20211028.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NoZWxsMjAyMTEwMjgucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221284,1699726486.472736,1699726486.247500,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/uploads/2023/index.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIzL2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221285,1699726466.726604,1699726466.502000,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/M1.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L00xLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221286,1699726453.859202,1699726453.618500,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/alfanew.php7',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FsZmFuZXcucGhwNw==\",\"category\":\"brute-force\",\"ssl\":0}'),(221287,1699726410.414410,1699726410.226600,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/network/autoload_classmap.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL25ldHdvcmsvYXV0b2xvYWRfY2xhc3NtYXAucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221288,1699726403.692406,1699726403.502600,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/repeater.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3JlcGVhdGVyLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221289,1699726393.108231,1699726392.885400,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/fm1.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2ZtMS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221290,1699726381.418934,1699726381.221000,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/ID3/wp-login.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL0lEMy93cC1sb2dpbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221291,1699726373.178889,1699726372.952600,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/style-css.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvc3R5bGUtY3NzLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221292,1699726359.800547,1699726359.609300,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-cron.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNyb24ucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221293,1699726350.019900,1699726349.800100,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/.well-known/index.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Ly53ZWxsLWtub3duL2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221294,1699726332.297027,1699726332.098000,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/css/colors/coffee/about.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Nzcy9jb2xvcnMvY29mZmVlL2Fib3V0LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221295,1699726327.293598,1699726327.096100,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/admin.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9hZG1pbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221296,1699726321.191594,1699726320.973500,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221297,1699726304.107745,1699726303.881700,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/shell20211028.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvc2hlbGwyMDIxMTAyOC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221298,1699726292.419735,1699726292.205100,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/twenty/twenty.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL3R3ZW50eS90d2VudHkucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221299,1699726278.523779,1699726278.332700,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/ID3/about.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL0lEMy9hYm91dC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221300,1699726270.134246,1699726269.920200,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wso112233.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dzbzExMjIzMy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221301,1699726257.630390,1699726257.446500,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wso-x569.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dzby14NTY5LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221302,1699726248.468350,1699726248.280200,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221303,1699726238.084250,1699726237.890600,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/admin.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FkbWluLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221304,1699726230.789920,1699726230.581200,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/shell20211028.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL3NoZWxsMjAyMTEwMjgucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221305,1699726225.688908,1699726225.495900,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/shell20211028.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NoZWxsMjAyMTEwMjgucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221306,1699726217.500345,1699726217.270000,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/wp-class.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL3dwLWNsYXNzLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221307,1699726204.042329,1699726203.816000,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/ws.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dzLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221308,1699726185.979638,1699726185.765900,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/about.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL2Fib3V0LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221309,1699726172.436566,1699726172.221300,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/css/index.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Nzcy9pbmRleC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221310,1699726160.341967,1699726160.120200,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/press/wp-class.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9wcmVzcy93cC1jbGFzcy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221311,1699726147.497932,1699726147.304900,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-head.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWhlYWQucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221312,1699726138.876762,1699726138.692100,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/SimplePie/plugins.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL1NpbXBsZVBpZS9wbHVnaW5zLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221313,1699726134.053832,1699726133.859900,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/dropdown.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Ryb3Bkb3duLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221314,1699726125.348555,1699726125.156100,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/about.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9hYm91dC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221315,1699726118.447418,1699726118.232700,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/hello-element/footer.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL2hlbGxvLWVsZW1lbnQvZm9vdGVyLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221316,1699726107.206719,1699726106.990500,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/cong.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2NvbmcucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221317,1699726095.216061,1699726095.017100,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/about.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Fib3V0LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221318,1699726088.424015,1699726088.208100,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/dropdown.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Ryb3Bkb3duLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221319,1699726072.074737,1699726071.879200,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/includes/themes.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2luY2x1ZGVzL3RoZW1lcy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221320,1699726069.515093,1699726069.322500,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/IXR/themes.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL0lYUi90aGVtZXMucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221321,1699726063.816701,1699726063.598600,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/autoload_classmap.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2F1dG9sb2FkX2NsYXNzbWFwLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221322,1699726037.342403,1699726037.151300,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/core/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9jb3JlL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221323,1699726028.902117,1699726028.686400,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/alfanew.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FsZmFuZXcucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221324,0.000000,1699726693.182326,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦¢',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221325,0.000000,1699740497.682902,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨|+',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36','loginFailValidUsername',NULL,NULL),(221326,0.000000,1699744649.390727,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm¿<',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221327,0.000000,1699745886.778362,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221328,1699757378.564829,1699757378.338100,'\0\0\0\0\0\0\0\0\0\0ÿÿmæâž',0,403,0,0,0,'http://kingsvillelivestock.com/wp-apxupx.php?apx=upx','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFweHVweC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221329,1699760633.844838,1699760633.647300,'\0\0\0\0\0\0\0\0\0\0ÿÿº§}',0,403,0,0,0,'http://kingsvillelivestock.com/',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36','blocked:waf','WooCommerce Payments <= 5.6.1 Authentication Bypass and Privilege Escalation','{\"learningMode\":0,\"failedRules\":\"568\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1gtV2NwYXktUGxhdGZvcm0tQ2hlY2tvdXQtVXNlcl0=\",\"paramValue\":\"MQ==\",\"path\":\"Lw==\",\"category\":\"auth-bypass\",\"ssl\":0}'),(221330,1699760633.837289,1699760633.647300,'\0\0\0\0\0\0\0\0\0\0ÿÿº§}',0,200,0,0,0,'http://kingsvillelivestock.com/',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36','logged:waf','Universal Privilege Escalation Detection Rule','{\"learningMode\":0,\"failedRules\":\"logged|554\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"Lw==\",\"category\":\"privesc\",\"ssl\":0}'),(221331,1699760633.837048,1699760633.647300,'\0\0\0\0\0\0\0\0\0\0ÿÿº§}',0,200,0,0,0,'http://kingsvillelivestock.com/',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36','logged:waf','Universal Privilege Escalation Detection Rule','{\"learningMode\":0,\"failedRules\":\"logged|554\",\"paramKey\":\"cmVxdWVzdC5ib2R5WzBd\",\"paramValue\":\"YWRtaW5pc3RyYXRvcg==\",\"path\":\"Lw==\",\"category\":\"privesc\",\"ssl\":0}'),(221332,1699762400.311554,1699762400.120400,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]',0,403,0,0,0,'https://kingsvillelivestock.com/chosen.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(221333,1699762390.601194,1699762390.369300,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]',0,403,0,0,0,'http://kingsvillelivestock.com/simple.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NpbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221334,0.000000,1699764372.923125,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨~b',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221335,0.000000,1699769403.422992,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨$',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221336,0.000000,1699770290.637824,'\0\0\0\0\0\0\0\0\0\0ÿÿ³û',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221337,0.000000,1699775004.477727,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨|+',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221338,0.000000,1699782604.336479,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍJ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221339,0.000000,1699783527.187488,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm$n',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221340,0.000000,1699783873.981593,'\0\0\0\0\0\0\0\0\0\0ÿÿ/kƒ…',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221341,1699784539.952713,1699784539.769900,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'https://kingsvillelivestock.com/wp-content/plugins/WordPressCore/include.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9Xb3JkUHJlc3NDb3JlL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":1}'),(221342,1699784532.722671,1699784532.534900,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/simple.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NpbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221343,1699784527.756785,1699784527.563700,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'https://kingsvillelivestock.com/chosen.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(221344,1699784521.869486,1699784521.649800,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/simple.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NpbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221345,0.000000,1699788911.327094,'\0\0\0\0\0\0\0\0\0\0ÿÿÄÜ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221346,0.000000,1699789807.558429,'\0\0\0\0\0\0\0\0\0\0ÿÿwN6',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221347,1699792110.169989,1699792109.955100,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/OptimizePress/lib/admin/media-upload.php',NULL,'ALittle Client','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"QUxpdHRsZSBDbGllbnQ=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL09wdGltaXplUHJlc3MvbGliL2FkbWluL21lZGlhLXVwbG9hZC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221348,0.000000,1699792866.339220,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm¿Ç',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(221349,1699831726.577094,1699831726.350100,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/simple.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NpbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221350,1699831706.922576,1699831706.695700,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221351,1699842217.076952,1699842216.859400,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\öÁ',0,403,0,0,0,'https://kingsvillelivestock.com/simple.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NpbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(221352,1699842204.665338,1699842204.452700,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\öÁ',0,403,0,0,0,'http://kingsvillelivestock.com/simple.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NpbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221353,1699849496.247987,1699849496.062600,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîh',0,403,0,0,0,'http://kingsvillelivestock.com/plugins/content/apismtp/apismtp.php?test=hello',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3BsdWdpbnMvY29udGVudC9hcGlzbXRwL2FwaXNtdHAucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221354,1699849496.225560,1699849495.926500,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîh',0,403,0,0,0,'https://kingsvillelivestock.com/wp-content/themes/seotheme/db.php?u=','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL3Nlb3RoZW1lL2RiLnBocA==\",\"category\":\"brute-force\",\"ssl\":1}'),(221355,1699849495.922603,1699849495.724600,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîh',0,403,0,0,0,'http://kingsvillelivestock.com/alfacgiapi/perl.alfa','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FsZmFjZ2lhcGkvcGVybC5hbGZh\",\"category\":\"brute-force\",\"ssl\":0}'),(221356,1699849495.915280,1699849495.721600,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîh',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/apikey/apikey.php?test=hello',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9hcGlrZXkvYXBpa2V5LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221357,1699849495.588260,1699849495.370600,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîh',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/seotheme/db.php?u=','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL3Nlb3RoZW1lL2RiLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221358,1699849495.577025,1699849495.362100,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîh',0,403,0,0,0,'http://kingsvillelivestock.com/',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Lw==\",\"category\":\"brute-force\",\"ssl\":0}'),(221359,1699849495.574809,1699849495.351100,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîh',0,403,0,0,0,'http://kingsvillelivestock.com/ALFA_DATA/alfacgiapi/perl.alfa','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L0FMRkFfREFUQS9hbGZhY2dpYXBpL3BlcmwuYWxmYQ==\",\"category\":\"brute-force\",\"ssl\":0}'),(221360,1699849497.268460,1699849497.081100,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîh',0,403,0,0,0,'http://kingsvillelivestock.com/plugins/content/apismtp/apismtp.php.suspected?test=hello',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3BsdWdpbnMvY29udGVudC9hcGlzbXRwL2FwaXNtdHAucGhwLnN1c3BlY3RlZA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221361,1699849496.773409,1699849496.592000,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîh',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/apikey/apikey.php.suspected?test=hello',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9hcGlrZXkvYXBpa2V5LnBocC5zdXNwZWN0ZWQ=\",\"category\":\"brute-force\",\"ssl\":0}'),(221362,0.000000,1699865495.932717,'\0\0\0\0\0\0\0\0\0\0ÿÿ6D ÷',0,200,0,0,0,'https://kingsvillelivestock.com/?_wfsf=detectProxy','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1','scan:detectproxy',NULL,NULL),(221363,0.000000,1699891029.972548,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z',0,302,0,2,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','loginOK',NULL,NULL),(221364,1699895742.320674,1699895742.108600,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/optimizepress/lib/admin/media-upload.php',NULL,'ALittle Client','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"QUxpdHRsZSBDbGllbnQ=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL29wdGltaXplcHJlc3MvbGliL2FkbWluL21lZGlhLXVwbG9hZC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221365,1699905589.197118,1699905589.006300,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/widgets/include.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL3dpZGdldHMvaW5jbHVkZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221366,1699905583.953960,1699905583.740300,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/include.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221367,0.000000,1699911797.468425,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z',0,302,0,2,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','loginOK',NULL,NULL),(221368,0.000000,1699912773.448493,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z',0,302,0,2,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','loginOK',NULL,NULL),(221369,0.000000,1699927481.180772,'\0\0\0\0\0\0\0\0\0\0ÿÿxMT',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221370,0.000000,1699933187.366536,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌØB',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221371,0.000000,1699934735.503027,'\0\0\0\0\0\0\0\0\0\0ÿÿ%ŒØØ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221372,0.000000,1699935673.433646,'\0\0\0\0\0\0\0\0\0\0ÿÿD²Þ­',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221373,0.000000,1699936440.563182,'\0\0\0\0\0\0\0\0\0\0ÿÿN‡M„',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221374,0.000000,1699938219.846627,'\0\0\0\0\0\0\0\0\0\0ÿÿCÍ\ne',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221375,1699938313.300773,1699938313.078600,'\0\0\0\0\0\0\0\0\0\0ÿÿœù ',0,403,0,0,0,'https://kingsvillelivestock.com/wp-content/plugins/core/include.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9jb3JlL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":1}'),(221376,1699938270.321293,1699938270.106700,'\0\0\0\0\0\0\0\0\0\0ÿÿœù ',0,403,0,0,0,'http://kingsvillelivestock.com/simple.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NpbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221377,0.000000,1699938752.155251,'\0\0\0\0\0\0\0\0\0\0ÿÿD²•8',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221378,0.000000,1699939281.686243,'\0\0\0\0\0\0\0\0\0\0ÿÿD²”R',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221379,0.000000,1699939759.013916,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨u',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221380,0.000000,1699940225.913617,'\0\0\0\0\0\0\0\0\0\0ÿÿ”B“',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221381,0.000000,1699941169.408483,'\0\0\0\0\0\0\0\0\0\0ÿÿH§O×',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221382,0.000000,1699941661.571120,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹Ä',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221383,0.000000,1699942123.845626,'\0\0\0\0\0\0\0\0\0\0ÿÿRÝˆ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221384,0.000000,1699942588.424743,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ@uc',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221385,0.000000,1699943077.559192,'\0\0\0\0\0\0\0\0\0\0ÿÿÃª¬Š',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221386,0.000000,1699943527.083427,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGë',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221387,0.000000,1699943966.000357,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘¸',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221388,0.000000,1699944402.006651,'\0\0\0\0\0\0\0\0\0\0ÿÿ+ñH ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221389,0.000000,1699945287.340350,'\0\0\0\0\0\0\0\0\0\0ÿÿ3[ý ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221390,0.000000,1699946176.959949,'\0\0\0\0\0\0\0\0\0\0ÿÿgx°É',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221391,0.000000,1699946598.304188,'\0\0\0\0\0\0\0\0\0\0ÿÿD²•Â',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221392,0.000000,1699947524.696264,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íô',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221393,0.000000,1699948005.880455,'\0\0\0\0\0\0\0\0\0\0ÿÿD²”',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221394,0.000000,1699948467.427889,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>±',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221395,0.000000,1699949428.644971,'\0\0\0\0\0\0\0\0\0\0ÿÿQD{“',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221396,0.000000,1699949905.069550,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?³à',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221397,0.000000,1699950411.043839,'\0\0\0\0\0\0\0\0\0\0ÿÿ–_Sa',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221398,0.000000,1699950887.357870,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGã&',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221399,0.000000,1699951385.878638,'\0\0\0\0\0\0\0\0\0\0ÿÿ‰tM',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221400,0.000000,1699951864.149968,'\0\0\0\0\0\0\0\0\0\0ÿÿH§;‚',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221401,0.000000,1699952353.406410,'\0\0\0\0\0\0\0\0\0\0ÿÿ+ñH ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221402,0.000000,1699952895.185799,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶\\˜_',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221403,0.000000,1699953406.055620,'\0\0\0\0\0\0\0\0\0\0ÿÿzrOß',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221404,0.000000,1699953898.662035,'\0\0\0\0\0\0\0\0\0\0ÿÿ”B‘\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221405,0.000000,1699954429.296127,'\0\0\0\0\0\0\0\0\0\0ÿÿ­ì°',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221406,0.000000,1699955474.146417,'\0\0\0\0\0\0\0\0\0\0ÿÿ­É¾',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221407,0.000000,1699956009.759213,'\0\0\0\0\0\0\0\0\0\0ÿÿCÍ\ne',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221408,0.000000,1699956383.044988,'\0\0\0\0\0\0\0\0\0\0ÿÿg˜OÉ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221409,0.000000,1699957436.078407,'\0\0\0\0\0\0\0\0\0\0ÿÿE?@',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221410,0.000000,1699958530.730915,'\0\0\0\0\0\0\0\0\0\0ÿÿN‡M„',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221411,0.000000,1699959665.509660,'\0\0\0\0\0\0\0\0\0\0ÿÿ”HÑI',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221412,0.000000,1699960801.087898,'\0\0\0\0\0\0\0\0\0\0ÿÿD²—Š',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221413,1699960988.547328,1699960988.331500,'\0\0\0\0\0\0\0\0\0\0ÿÿ­àwõ',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/WordPressCore/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9Xb3JkUHJlc3NDb3JlL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221414,0.000000,1699964249.325854,'\0\0\0\0\0\0\0\0\0\0ÿÿ”B‘\Z',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221415,0.000000,1699965539.821644,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>• ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221416,0.000000,1699968880.409555,'\0\0\0\0\0\0\0\0\0\0ÿÿÚÔ±',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221417,0.000000,1699969505.968647,'\0\0\0\0\0\0\0\0\0\0ÿÿxmÇ',0,200,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailInvalidUsername',NULL,NULL),(221418,1699969637.771383,1699969637.556100,'\0\0\0\0\0\0\0\0\0\0ÿÿ£¬ÿ	',0,403,0,0,0,'http://kingsvillelivestock.com/wp-apxupx.php?apx=upx','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFweHVweC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221419,0.000000,1699971808.301920,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶2„o',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221420,0.000000,1699972418.476119,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hõê',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221421,1699975072.831336,1699975072.616000,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\öÁ',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php?upload=','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221422,0.000000,1699980060.635666,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z',0,302,0,2,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','loginOK',NULL,NULL),(221423,0.000000,1699982566.299597,'\0\0\0\0\0\0\0\0\0\0ÿÿ„”KË',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','loginFailValidUsername',NULL,NULL),(221424,0.000000,1700009900.441381,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221425,1700014992.967205,1700014992.750700,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\öØ',0,403,0,0,0,'https://kingsvillelivestock.com/chosen.php?upload=','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(221426,1700014976.718251,1700014976.498200,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\öØ',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php?upload=','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221427,0.000000,1700022661.597888,'\0\0\0\0\0\0\0\0\0\0ÿÿD²¥È',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','loginFailValidUsername',NULL,NULL),(221428,0.000000,1700026843.891591,'\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221429,0.000000,1700029984.279280,'\0\0\0\0\0\0\0\0\0\0ÿÿ—j&‘',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221430,0.000000,1700032097.792581,'\0\0\0\0\0\0\0\0\0\0ÿÿ/ot,',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221431,0.000000,1700033152.698200,'\0\0\0\0\0\0\0\0\0\0ÿÿ”HÐÁ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221432,1700035656.222068,1700035656.002800,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/konzept/includes/uploadify/upload.php',NULL,'ALittle Client','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"QUxpdHRsZSBDbGllbnQ=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL2tvbnplcHQvaW5jbHVkZXMvdXBsb2FkaWZ5L3VwbG9hZC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221433,0.000000,1700047618.605929,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨~b',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','loginFailValidUsername',NULL,NULL),(221434,0.000000,1700061243.672706,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z',0,302,0,2,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','loginOK',NULL,NULL),(221435,1700061450.201041,1700061450.009500,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/fonts/wp-login.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL2ZvbnRzL3dwLWxvZ2luLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221436,1700061489.776902,1700061489.592500,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/css/wp-login.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Nzcy93cC1sb2dpbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221437,1700061516.732389,1700061516.546800,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/maint/wp-login.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL21haW50L3dwLWxvZ2luLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221438,1700061540.765796,1700061540.581100,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/user/wp-login.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL3VzZXIvd3AtbG9naW4ucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221439,1700061537.877647,1700061537.692700,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/languages/wp-login.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvbGFuZ3VhZ2VzL3dwLWxvZ2luLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221440,1700061563.558070,1700061563.310100,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/network/wp-login.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL25ldHdvcmsvd3AtbG9naW4ucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221441,1700061575.288667,1700061575.097700,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢',0,403,0,0,0,'http://kingsvillelivestock.com/index.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221442,1700061636.334003,1700061636.143600,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/customize/wp-login.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL2N1c3RvbWl6ZS93cC1sb2dpbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221443,1700061653.809786,1700061653.621000,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/admin.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvYWRtaW4ucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221444,1700061648.309424,1700061648.113400,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/about.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Fib3V0LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221445,1700061644.591402,1700061644.400900,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢',0,403,0,0,0,'http://kingsvillelivestock.com/ms.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L21zLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221446,1700062015.741509,1700062015.518600,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü­',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/sketch/404.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL3NrZXRjaC80MDQucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221447,1700062041.342456,1700062041.091300,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü­',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221448,1700062110.072619,1700062109.879100,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü­',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/core-plugin/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9jb3JlLXBsdWdpbi9pbmNsdWRlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221449,1700062100.116852,1700062099.901800,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü­',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/images/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL2ltYWdlcy9pbmNsdWRlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221450,1700062084.894684,1700062084.696600,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü­',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9pbmNsdWRlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221451,1700062078.227592,1700062078.011000,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü­',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/widgets/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL3dpZGdldHMvaW5jbHVkZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221452,1700062061.910607,1700062061.727100,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü­',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/WordPressCore/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9Xb3JkUHJlc3NDb3JlL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221453,0.000000,1700062640.092928,'\0\0\0\0\0\0\0\0\0\0ÿÿq¯TQ',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','http://www.fermedufessiou.com/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0','loginFailValidUsername',NULL,NULL),(221454,1700069735.001672,1700069734.800700,'\0\0\0\0\0\0\0\0\0\0ÿÿ£¬ÿ	',0,403,0,0,0,'http://kingsvillelivestock.com/wp-apxupx.php?apx=upx','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFweHVweC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221455,0.000000,1700094216.770677,'\0\0\0\0\0\0\0\0\0\0ÿÿÆÜc',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221456,0.000000,1700094539.327169,'\0\0\0\0\0\0\0\0\0\0ÿÿVkÆf',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221457,0.000000,1700094840.239098,'\0\0\0\0\0\0\0\0\0\0ÿÿD²”4',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221458,0.000000,1700095182.871541,'\0\0\0\0\0\0\0\0\0\0ÿÿD²•8',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221459,0.000000,1700095848.208726,'\0\0\0\0\0\0\0\0\0\0ÿÿæÛv',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221460,0.000000,1700096192.096944,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹F_',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221461,0.000000,1700096543.072427,'\0\0\0\0\0\0\0\0\0\0ÿÿ]qoÁ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221462,0.000000,1700096908.165033,'\0\0\0\0\0\0\0\0\0\0ÿÿÔã•‰',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221463,0.000000,1700097268.365992,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘¸',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221464,0.000000,1700097620.739946,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hõê',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221465,0.000000,1700098005.239694,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íÿ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221466,0.000000,1700098384.536414,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?Í',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221467,0.000000,1700099146.945467,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨s¹',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221468,0.000000,1700099573.621809,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶\\˜_',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221469,0.000000,1700099966.146786,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>±',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221470,0.000000,1700100773.885706,'\0\0\0\0\0\0\0\0\0\0ÿÿD²”4',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221471,0.000000,1700101629.404313,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?\0',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221472,0.000000,1700102047.798107,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?³',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221473,0.000000,1700102929.172312,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íƒ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221474,0.000000,1700103359.736568,'\0\0\0\0\0\0\0\0\0\0ÿÿ+ŽÂØ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221475,0.000000,1700103833.718877,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍÇ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221476,0.000000,1700104638.231972,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ûìÉ',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://www.crearcuenta.com.ar/wp-login.php','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12','loginFailValidUsername',NULL,NULL),(221477,0.000000,1700104775.109599,'\0\0\0\0\0\0\0\0\0\0ÿÿecZ¯',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221478,0.000000,1700105263.532091,'\0\0\0\0\0\0\0\0\0\0ÿÿ/_pG',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221479,0.000000,1700105716.288679,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨så',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221480,0.000000,1700106223.345332,'\0\0\0\0\0\0\0\0\0\0ÿÿ~Óü',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221481,0.000000,1700107208.615389,'\0\0\0\0\0\0\0\0\0\0ÿÿÓâ–H',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221482,0.000000,1700107733.865327,'\0\0\0\0\0\0\0\0\0\0ÿÿg˜¤Š',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221483,0.000000,1700108039.822754,'\0\0\0\0\0\0\0\0\0\0ÿÿhÅÑ•',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221484,1700108493.007809,1700108492.800100,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]',0,403,0,0,0,'http://kingsvillelivestock.com/inputs.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2lucHV0cy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221485,0.000000,1700108573.744177,'\0\0\0\0\0\0\0\0\0\0ÿÿH§hù',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221486,0.000000,1700109108.269526,'\0\0\0\0\0\0\0\0\0\0ÿÿoZ–«',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221487,0.000000,1700109628.841630,'\0\0\0\0\0\0\0\0\0\0ÿÿH§;Ê',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221488,0.000000,1700110202.738050,'\0\0\0\0\0\0\0\0\0\0ÿÿg/¹¹',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221489,0.000000,1700110796.876189,'\0\0\0\0\0\0\0\0\0\0ÿÿUí&ä',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221490,0.000000,1700112037.003960,'\0\0\0\0\0\0\0\0\0\0ÿÿÆÜc',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221491,0.000000,1700112631.521052,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hö½',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221492,0.000000,1700113246.119832,'\0\0\0\0\0\0\0\0\0\0ÿÿ±4 ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221493,0.000000,1700113890.118869,'\0\0\0\0\0\0\0\0\0\0ÿÿH§Ñø',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221494,0.000000,1700115775.444523,'\0\0\0\0\0\0\0\0\0\0ÿÿ ™’C',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221495,0.000000,1700116166.419557,'\0\0\0\0\0\0\0\0\0\0ÿÿq¡H‡',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221496,0.000000,1700116524.050343,'\0\0\0\0\0\0\0\0\0\0ÿÿÔã•‰',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221497,0.000000,1700116850.070947,'\0\0\0\0\0\0\0\0\0\0ÿÿD²–N',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221498,0.000000,1700117210.926061,'\0\0\0\0\0\0\0\0\0\0ÿÿh-)-',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221499,0.000000,1700117506.753888,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGç)',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221500,0.000000,1700117804.458297,'\0\0\0\0\0\0\0\0\0\0ÿÿÑa‘^',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221501,0.000000,1700118424.123455,'\0\0\0\0\0\0\0\0\0\0ÿÿg˜OÉ',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221502,0.000000,1700118698.942733,'\0\0\0\0\0\0\0\0\0\0ÿÿH§}',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221503,0.000000,1700119012.143529,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌÞë',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221504,0.000000,1700119294.245978,'\0\0\0\0\0\0\0\0\0\0ÿÿg˜¤Š',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221505,0.000000,1700119576.230785,'\0\0\0\0\0\0\0\0\0\0ÿÿÌ]Å–',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221506,0.000000,1700119901.408725,'\0\0\0\0\0\0\0\0\0\0ÿÿ/nŠJ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221507,0.000000,1700120456.668581,'\0\0\0\0\0\0\0\0\0\0ÿÿ”B“',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221508,0.000000,1700120755.369811,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hzä',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221509,0.000000,1700121025.323050,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t›',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221510,0.000000,1700121323.059291,'\0\0\0\0\0\0\0\0\0\0ÿÿ%ŒØØ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221511,0.000000,1700121601.779607,'\0\0\0\0\0\0\0\0\0\0ÿÿ#ïçÂ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221512,0.000000,1700121858.900607,'\0\0\0\0\0\0\0\0\0\0ÿÿ±4 ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221513,0.000000,1700122132.284968,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨D',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221514,0.000000,1700122427.293129,'\0\0\0\0\0\0\0\0\0\0ÿÿD²”',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221515,0.000000,1700122678.364668,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘k',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221516,0.000000,1700122936.431678,'\0\0\0\0\0\0\0\0\0\0ÿÿ­ìŒœ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221517,0.000000,1700123189.939306,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?\0Ä',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221518,0.000000,1700123445.846778,'\0\0\0\0\0\0\0\0\0\0ÿÿ.egˆ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221519,0.000000,1700123926.521659,'\0\0\0\0\0\0\0\0\0\0ÿÿRÝˆ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221520,0.000000,1700124414.685180,'\0\0\0\0\0\0\0\0\0\0ÿÿhø-',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221521,0.000000,1700124886.496217,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>Þ(',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221522,0.000000,1700125346.090669,'\0\0\0\0\0\0\0\0\0\0ÿÿH§@s',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221523,0.000000,1700125577.533466,'\0\0\0\0\0\0\0\0\0\0ÿÿ6$¤M',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221524,0.000000,1700125801.007997,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmÉª',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221525,0.000000,1700126038.201987,'\0\0\0\0\0\0\0\0\0\0ÿÿ/òk•',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221526,0.000000,1700126547.721324,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm0¸',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221527,0.000000,1700126805.165424,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221528,0.000000,1700127049.477906,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>–õ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221529,0.000000,1700127585.081729,'\0\0\0\0\0\0\0\0\0\0ÿÿCÍ\ne',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221530,0.000000,1700127851.369932,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘Í',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221531,0.000000,1700128107.707204,'\0\0\0\0\0\0\0\0\0\0ÿÿ–_+',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221532,0.000000,1700128376.580297,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hö½',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221533,0.000000,1700129198.399450,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>±0',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221534,0.000000,1700129498.896729,'\0\0\0\0\0\0\0\0\0\0ÿÿÔãæ¦',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221535,0.000000,1700130070.463956,'\0\0\0\0\0\0\0\0\0\0ÿÿ@Z0É',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221536,1700130200.114303,1700130199.893500,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\\',0,403,0,0,0,'http://kingsvillelivestock.com/inputs.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2lucHV0cy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221537,0.000000,1700130357.779566,'\0\0\0\0\0\0\0\0\0\0ÿÿE?@',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221538,0.000000,1700130632.520034,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmãÄ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221539,0.000000,1700130942.071388,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>±2',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221540,0.000000,1700131537.638839,'\0\0\0\0\0\0\0\0\0\0ÿÿyO÷',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221541,0.000000,1700131859.443887,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ©”\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221542,0.000000,1700132168.920405,'\0\0\0\0\0\0\0\0\0\0ÿÿ­Éµ5',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221543,0.000000,1700132478.282535,'\0\0\0\0\0\0\0\0\0\0ÿÿ-YöÖ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221544,0.000000,1700133096.248655,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨`·',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221545,0.000000,1700133430.687413,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌØB',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221546,0.000000,1700134071.673357,'\0\0\0\0\0\0\0\0\0\0ÿÿhø-',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221547,0.000000,1700134399.552082,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>±',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221548,0.000000,1700134743.192210,'\0\0\0\0\0\0\0\0\0\0ÿÿŸYh¶',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221549,0.000000,1700135067.450115,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?Í',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221550,0.000000,1700136090.699836,'\0\0\0\0\0\0\0\0\0\0ÿÿ.¶|',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221551,0.000000,1700136438.942119,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>–õ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221552,0.000000,1700136787.089997,'\0\0\0\0\0\0\0\0\0\0ÿÿ”B“\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221553,0.000000,1700137170.913643,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'ix¾',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221554,0.000000,1700137516.798117,'\0\0\0\0\0\0\0\0\0\0ÿÿ­ìÁ)',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221555,0.000000,1700138970.837707,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¹p',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221556,1700139512.622622,1700139512.401500,'\0\0\0\0\0\0\0\0\0\0ÿÿ•2„',0,403,0,0,0,'http://kingsvillelivestock.com/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221557,0.000000,1700140054.930418,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'j\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221558,0.000000,1700143659.270450,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221559,0.000000,1700145491.998878,'\0\0\0\0\0\0\0\0\0\0ÿÿ²€\Z,',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221560,1700146224.597277,1700146224.381300,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G',0,403,0,0,0,'http://kingsvillelivestock.com/admin/plugins/jquery_uploader/server/php/index.php?file=tf2rghf.jpg',NULL,'ALittle Client','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"QUxpdHRsZSBDbGllbnQ=\",\"path\":\"L2FkbWluL3BsdWdpbnMvanF1ZXJ5X3VwbG9hZGVyL3NlcnZlci9waHAvaW5kZXgucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221561,1700151586.198062,1700151585.986200,'\0\0\0\0\0\0\0\0\0\0ÿÿ°DÍ',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php?p=','kingsvillelivestock.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) colonel Chrome/196.3.1597.530 Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgY29sb25lbCBDaHJvbWUvMTk2LjMuMTU5Ny41MzAgU2FmYXJpLzUzNy4zNg==\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221562,0.000000,1700155675.208634,'\0\0\0\0\0\0\0\0\0\0ÿÿ²€\Z,',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221563,0.000000,1700155920.105178,'\0\0\0\0\0\0\0\0\0\0ÿÿ³×%Ð',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://stocktonheathhighstreet.co.uk/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36','loginFailValidUsername',NULL,NULL),(221564,1700158286.103991,1700158285.885000,'\0\0\0\0\0\0\0\0\0\0ÿÿ3DçQ',0,403,0,0,0,'http://kingsvillelivestock.com/wp-login.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFgxMTsgVWJ1bnR1OyBMaW51eCB4ODZfNjQ7IHJ2OjYyLjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNjIuMA==\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221565,0.000000,1700164747.621300,'\0\0\0\0\0\0\0\0\0\0ÿÿt[Å½',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(221566,0.000000,1700164747.874982,'\0\0\0\0\0\0\0\0\0\0ÿÿt[Å½',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(221567,0.000000,1700164795.177927,'\0\0\0\0\0\0\0\0\0\0ÿÿ^úô%',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(221568,0.000000,1700164795.163191,'\0\0\0\0\0\0\0\0\0\0ÿÿ#¹oO',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(221569,0.000000,1700164799.335655,'\0\0\0\0\0\0\0\0\0\0ÿÿg‚Ö’',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(221570,0.000000,1700164852.203128,'\0\0\0\0\0\0\0\0\0\0ÿÿ>Ò¹',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailValidUsername',NULL,NULL),(221571,0.000000,1700164955.825004,'\0\0\0\0\0\0\0\0\0\0ÿÿ€ÇB',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(221572,0.000000,1700165151.767872,'\0\0\0\0\0\0\0\0\0\0ÿÿD²£Ü',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221573,0.000000,1700177140.674008,'\0\0\0\0\0\0\0\0\0\0ÿÿaÍÒ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221574,1700189809.023235,1700189808.809100,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]',0,403,0,0,0,'http://kingsvillelivestock.com/inputs.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2lucHV0cy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221575,1700209306.741964,1700209306.543200,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹ØF',0,403,0,0,0,'http://kingsvillelivestock.com/.well-knownold/',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Ly53ZWxsLWtub3dub2xkLw==\",\"category\":\"brute-force\",\"ssl\":0}'),(221576,1700209303.910175,1700209303.693300,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹ØF',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluLw==\",\"category\":\"brute-force\",\"ssl\":0}'),(221577,1700209169.979099,1700209169.759100,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/wp-l0gin.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWwwZ2luLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221578,0.000000,1700214126.034011,'\0\0\0\0\0\0\0\0\0\0ÿÿ3²ˆ¤',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221579,0.000000,1700217094.026625,'\0\0\0\0\0\0\0\0\0\0ÿÿŽ]»S',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221580,0.000000,1700219492.792983,'\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221581,0.000000,1700220094.387588,'\0\0\0\0\0\0\0\0\0\0ÿÿ6øW<',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221582,0.000000,1700220241.730464,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'-ý!',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','http://minhcuongfoods.com/wp-login.php','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12','loginFailValidUsername',NULL,NULL),(221583,0.000000,1700221899.355478,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹Ä.',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221584,0.000000,1700227967.378341,'\0\0\0\0\0\0\0\0\0\0ÿÿ[jÍ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221585,0.000000,1700228451.315384,'\0\0\0\0\0\0\0\0\0\0ÿÿ]®¡ù',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221586,0.000000,1700238448.172164,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼¦£',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221587,1700240100.523445,1700240100.319400,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîÒ',0,403,0,0,0,'http://kingsvillelivestock.com/alfacgiapi/perl.alfa','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FsZmFjZ2lhcGkvcGVybC5hbGZh\",\"category\":\"brute-force\",\"ssl\":0}'),(221588,1700240100.496881,1700240100.296000,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîÒ',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/apikey/apikey.php?test=hello',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9hcGlrZXkvYXBpa2V5LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221589,1700240100.212599,1700240099.996300,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîÒ',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/seotheme/db.php?u=','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL3Nlb3RoZW1lL2RiLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221590,1700240100.154036,1700240099.932700,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîÒ',0,403,0,0,0,'http://kingsvillelivestock.com/ALFA_DATA/alfacgiapi/perl.alfa','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L0FMRkFfREFUQS9hbGZhY2dpYXBpL3BlcmwuYWxmYQ==\",\"category\":\"brute-force\",\"ssl\":0}'),(221591,1700240100.152205,1700240099.937000,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîÒ',0,403,0,0,0,'http://kingsvillelivestock.com/',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Lw==\",\"category\":\"brute-force\",\"ssl\":0}'),(221592,1700240106.643537,1700240106.458700,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîÒ',0,403,0,0,0,'https://kingsvillelivestock.com/wp-content/themes/seotheme/db.php?u=','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL3Nlb3RoZW1lL2RiLnBocA==\",\"category\":\"brute-force\",\"ssl\":1}'),(221593,1700240101.444073,1700240101.254200,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîÒ',0,403,0,0,0,'http://kingsvillelivestock.com/plugins/content/apismtp/apismtp.php.suspected?test=hello',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3BsdWdpbnMvY29udGVudC9hcGlzbXRwL2FwaXNtdHAucGhwLnN1c3BlY3RlZA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221594,1700240101.172501,1700240100.979400,'\0\0\0\0\0\0\0\0\0\0ÿÿhúîÒ',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/apikey/apikey.php.suspected?test=hello',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9hcGlrZXkvYXBpa2V5LnBocC5zdXNwZWN0ZWQ=\",\"category\":\"brute-force\",\"ssl\":0}'),(221595,0.000000,1700240825.883874,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾Ûúš',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','http://www.lifebix.com/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36','loginFailValidUsername',NULL,NULL),(221596,0.000000,1700240874.721381,'\0\0\0\0\0\0\0\0\0\0ÿÿz¡À\n',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221597,1700242176.568216,1700242176.348800,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\\',0,403,0,0,0,'http://kingsvillelivestock.com/inputs.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2lucHV0cy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221598,0.000000,1700243909.266948,'\0\0\0\0\0\0\0\0\0\0ÿÿ”HÐÁ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221599,0.000000,1700251142.089385,'\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221600,0.000000,1700251749.332981,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Š9',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221601,1700252376.403110,1700252376.187500,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G',0,403,0,0,0,'http://kingsvillelivestock.com/admin/plugins/elfinder/connectors/php/connector.php',NULL,'ALittle Client','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"QUxpdHRsZSBDbGllbnQ=\",\"path\":\"L2FkbWluL3BsdWdpbnMvZWxmaW5kZXIvY29ubmVjdG9ycy9waHAvY29ubmVjdG9yLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221602,1700252344.926920,1700252344.698800,'\0\0\0\0\0\0\0\0\0\0ÿÿBa-ø',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php?p=','kingsvillelivestock.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) colonel Chrome/196.3.1597.530 Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgY29sb25lbCBDaHJvbWUvMTk2LjMuMTU5Ny41MzAgU2FmYXJpLzUzNy4zNg==\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221603,0.000000,1700254732.276903,'\0\0\0\0\0\0\0\0\0\0ÿÿe¼',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221604,0.000000,1700255637.140201,'\0\0\0\0\0\0\0\0\0\0ÿÿeÝ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221605,0.000000,1700256277.825112,'\0\0\0\0\0\0\0\0\0\0ÿÿRÈëŠ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221606,1700256956.178743,1700256955.994200,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/certificates/wp-login.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL2NlcnRpZmljYXRlcy93cC1sb2dpbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221607,1700256953.097888,1700256952.913700,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/IXR/wp-login.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL0lYUi93cC1sb2dpbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221608,1700256950.500569,1700256950.318600,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/languages/wp-login.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvbGFuZ3VhZ2VzL3dwLWxvZ2luLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221609,1700256948.840312,1700256948.655700,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/4pric.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"LzRwcmljLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221610,1700256946.751632,1700256946.566500,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/bala.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2JhbGEucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221611,1700256944.607358,1700256944.407800,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/options.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL29wdGlvbnMucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221612,1700256942.348839,1700256942.150500,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/about.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Fib3V0LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221613,1700256939.631405,1700256939.448000,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/user/wp-login.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL3VzZXIvd3AtbG9naW4ucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221614,1700256937.487581,1700256937.307800,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/ms.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L21zLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221615,1700256934.878992,1700256934.699400,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/images/wp-login.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2ltYWdlcy93cC1sb2dpbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221616,1700256932.593165,1700256932.410800,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/fonts/wp-login.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL2ZvbnRzL3dwLWxvZ2luLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221617,1700256930.143800,1700256929.961000,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/index.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221618,1700256927.365167,1700256927.183400,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/maint/wp-login.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL21haW50L3dwLWxvZ2luLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221619,1700256925.403168,1700256925.220000,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/network/wp-login.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL25ldHdvcmsvd3AtbG9naW4ucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221620,1700256922.648935,1700256922.469600,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/customize/wp-login.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL2N1c3RvbWl6ZS93cC1sb2dpbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221621,1700256916.823858,1700256916.642500,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/pomo/wp-login.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL3BvbW8vd3AtbG9naW4ucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221622,1700256913.982533,1700256913.796900,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/classic-editor/wp-login.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9jbGFzc2ljLWVkaXRvci93cC1sb2dpbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221623,1700256911.209097,1700256911.012200,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/index.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221624,1700256908.456243,1700256908.272300,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/.tmb/wp-login.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Ly50bWIvd3AtbG9naW4ucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221625,1700256906.694832,1700256906.512000,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/css/wp-login.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Nzcy93cC1sb2dpbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221626,1700256904.270490,1700256904.085600,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/admin.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvYWRtaW4ucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221627,1700256901.611098,1700256901.416000,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/user/wp-login.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL3VzZXIvd3AtbG9naW4ucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221628,1700256898.906791,1700256898.693900,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/includes/wp-login.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2luY2x1ZGVzL3dwLWxvZ2luLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221629,0.000000,1700259506.873404,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!1',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221630,0.000000,1700266216.960862,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z',0,302,0,2,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','loginOK',NULL,NULL),(221631,1700273052.114210,1700273051.920700,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¿Ò',0,403,0,0,0,'http://kingsvillelivestock.com/index.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221632,1700273049.917641,1700273049.707600,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¿Ò',0,403,0,0,0,'http://kingsvillelivestock.com/index.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221633,1700273104.743459,1700273104.548900,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¿Ò',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Nsb3VkLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221634,1700273101.737088,1700273101.529700,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¿Ò',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/css/colors/blue/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Nzcy9jb2xvcnMvYmx1ZS9jbG91ZC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221635,1700273096.363957,1700273096.178700,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¿Ò',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/includes/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2luY2x1ZGVzL2Nsb3VkLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221636,1700273094.246925,1700273094.063400,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¿Ò',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/css/colors/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Nzcy9jb2xvcnMvY2xvdWQucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221637,1700273087.919313,1700273087.733700,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¿Ò',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/js/widgets/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2pzL3dpZGdldHMvY2xvdWQucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221638,1700273083.931701,1700273083.745000,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¿Ò',0,403,0,0,0,'http://kingsvillelivestock.com/images/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2ltYWdlcy9jbG91ZC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221639,1700273078.406806,1700273078.225500,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¿Ò',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/images/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2ltYWdlcy9jbG91ZC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221640,1700273074.655574,1700273074.470100,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¿Ò',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/css/colors/coffee/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Nzcy9jb2xvcnMvY29mZmVlL2Nsb3VkLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221641,1700273072.256720,1700273072.074500,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¿Ò',0,403,0,0,0,'http://kingsvillelivestock.com/img/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2ltZy9jbG91ZC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221642,1700273067.719510,1700273067.536300,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¿Ò',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/user/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL3VzZXIvY2xvdWQucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221643,1700273063.671787,1700273063.460600,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¿Ò',0,403,0,0,0,'http://kingsvillelivestock.com/css/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nzcy9jbG91ZC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221644,1700273059.304829,1700273059.122200,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¿Ò',0,403,0,0,0,'http://kingsvillelivestock.com/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nsb3VkLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221645,1700273056.617965,1700273056.428100,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¿Ò',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/network/cloud.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL25ldHdvcmsvY2xvdWQucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221646,0.000000,1700273114.932472,'\0\0\0\0\0\0\0\0\0\0ÿÿe',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221647,0.000000,1700274952.709683,'\0\0\0\0\0\0\0\0\0\0ÿÿWìà',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221648,0.000000,1700277310.452188,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹jÐ2',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221649,1700308530.362999,1700308530.173700,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'http://www.kingsvillelivestock.com/wp-content/plugins/core-plugin/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9jb3JlLXBsdWdpbi9pbmNsdWRlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221650,1700308522.177736,1700308521.957100,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'http://www.kingsvillelivestock.com/wp-includes/images/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL2ltYWdlcy9pbmNsdWRlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221651,1700308507.631678,1700308507.413200,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'http://www.kingsvillelivestock.com/wp-content/plugins/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9pbmNsdWRlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221652,1700308494.613373,1700308494.428500,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'http://www.kingsvillelivestock.com/wp-includes/widgets/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL3dpZGdldHMvaW5jbHVkZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221653,1700308483.722996,1700308483.536100,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'http://www.kingsvillelivestock.com/wp-content/plugins/WordPressCore/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9Xb3JkUHJlc3NDb3JlL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221654,1700308472.644960,1700308472.452100,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'http://www.kingsvillelivestock.com/wp-content/themes/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221655,1700308461.576278,1700308461.363500,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'http://www.kingsvillelivestock.com/wp-content/themes/sketch/404.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL3NrZXRjaC80MDQucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221656,1700309575.972614,1700309575.756400,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹ŽšÍ',0,403,0,0,0,'http://kingsvillelivestock.com/index.php?of=1&a=1','kingsvillelivestock.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) colonel Chrome/196.3.1597.530 Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgY29sb25lbCBDaHJvbWUvMTk2LjMuMTU5Ny41MzAgU2FmYXJpLzUzNy4zNg==\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221657,1700313881.499514,1700313881.287200,'\0\0\0\0\0\0\0\0\0\0ÿÿ˜çb¸',0,403,0,0,0,'http://kingsvillelivestock.com/conf.php','kingsvillelivestock.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) colonel Chrome/196.3.1597.530 Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgY29sb25lbCBDaHJvbWUvMTk2LjMuMTU5Ny41MzAgU2FmYXJpLzUzNy4zNg==\",\"path\":\"L2NvbmYucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221658,0.000000,1700315194.806218,'\0\0\0\0\0\0\0\0\0\0ÿÿe-',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221659,0.000000,1700317079.990877,'\0\0\0\0\0\0\0\0\0\0ÿÿeó',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221660,0.000000,1700329844.257395,'\0\0\0\0\0\0\0\0\0\0ÿÿe¯',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221661,0.000000,1700331486.568211,'\0\0\0\0\0\0\0\0\0\0ÿÿWìZ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221662,0.000000,1700336538.951590,'\0\0\0\0\0\0\0\0\0\0ÿÿeœa',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221663,1700336624.784205,1700336624.565900,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼†Pa',0,403,0,0,0,'http://kingsvillelivestock.com/',NULL,'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV09XNjQ7IHJ2OjQ1LjApIEdlY2tvLzIwMTAwMTAxIEZpcmVmb3gvNDUuMA==\",\"path\":\"Lw==\",\"category\":\"brute-force\",\"ssl\":0}'),(221664,0.000000,1700338058.900458,'\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221665,0.000000,1700340068.185667,'\0\0\0\0\0\0\0\0\0\0ÿÿg£+',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://thistedfc.dk/wp-login.php','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12','loginFailValidUsername',NULL,NULL),(221666,0.000000,1700346428.296691,'\0\0\0\0\0\0\0\0\0\0ÿÿeë',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221667,0.000000,1700350407.210302,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍJ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221668,0.000000,1700357899.632921,'\0\0\0\0\0\0\0\0\0\0ÿÿe	',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221669,0.000000,1700361440.986819,'\0\0\0\0\0\0\0\0\0\0ÿÿ/ã',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','http://wellforall.net/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36','loginFailValidUsername',NULL,NULL),(221670,0.000000,1700363210.500341,'\0\0\0\0\0\0\0\0\0\0ÿÿWìZ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221671,0.000000,1700364639.923068,'\0\0\0\0\0\0\0\0\0\0ÿÿ]®~',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221672,1700365643.483458,1700365643.265600,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221673,1700365623.499358,1700365623.270400,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/sketch/404.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL3NrZXRjaC80MDQucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221674,1700365743.715545,1700365743.500600,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/core-plugin/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9jb3JlLXBsdWdpbi9pbmNsdWRlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221675,1700365717.227547,1700365717.010900,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/images/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL2ltYWdlcy9pbmNsdWRlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221676,1700365699.590018,1700365699.374700,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9pbmNsdWRlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221677,1700365687.381499,1700365687.158700,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/widgets/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL3dpZGdldHMvaW5jbHVkZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221678,1700365658.653290,1700365658.467400,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/WordPressCore/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9Xb3JkUHJlc3NDb3JlL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221679,0.000000,1700366336.302037,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!@',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221680,0.000000,1700369380.986515,'\0\0\0\0\0\0\0\0\0\0ÿÿWì¥',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221681,0.000000,1700369561.775646,'\0\0\0\0\0\0\0\0\0\0ÿÿeœ¿',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221682,0.000000,1700370446.267080,'\0\0\0\0\0\0\0\0\0\0ÿÿe ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221683,0.000000,1700371537.691883,'\0\0\0\0\0\0\0\0\0\0ÿÿeœh',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221684,1700372893.034714,1700372892.848600,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/admin.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvYWRtaW4ucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221685,1700372890.727941,1700372890.531800,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/about.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Fib3V0LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221686,1700372884.815991,1700372884.633400,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/ms.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L21zLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221687,1700372877.330089,1700372877.145600,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/customize/wp-login.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL2N1c3RvbWl6ZS93cC1sb2dpbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221688,1700372865.528846,1700372865.338500,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/index.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221689,1700372856.050853,1700372855.837700,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/network/wp-login.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL25ldHdvcmsvd3AtbG9naW4ucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221690,1700372828.829537,1700372828.644900,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/user/wp-login.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL3VzZXIvd3AtbG9naW4ucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221691,1700372825.742580,1700372825.555500,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/languages/wp-login.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvbGFuZ3VhZ2VzL3dwLWxvZ2luLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221692,1700372822.137684,1700372821.931900,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/maint/wp-login.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL21haW50L3dwLWxvZ2luLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221693,1700372812.258675,1700372812.035700,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/css/wp-login.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Nzcy93cC1sb2dpbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221694,1700372786.674008,1700372786.463600,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/fonts/wp-login.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL2ZvbnRzL3dwLWxvZ2luLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221695,0.000000,1700373214.458069,'\0\0\0\0\0\0\0\0\0\0ÿÿe»',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221696,1700378705.675683,1700378705.484900,'\0\0\0\0\0\0\0\0\0\0ÿÿ>&×',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/cache/',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvY2FjaGUv\",\"category\":\"brute-force\",\"ssl\":0}'),(221697,1700378704.160698,1700378703.963000,'\0\0\0\0\0\0\0\0\0\0ÿÿ>&×',0,403,0,0,0,'http://kingsvillelivestock.com/images/',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2ltYWdlcy8=\",\"category\":\"brute-force\",\"ssl\":0}'),(221698,1700378689.440287,1700378689.228000,'\0\0\0\0\0\0\0\0\0\0ÿÿ>&×',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluLw==\",\"category\":\"brute-force\",\"ssl\":0}'),(221699,0.000000,1700382991.359596,'\0\0\0\0\0\0\0\0\0\0ÿÿe”',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221700,1700383619.397132,1700383619.179700,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G',0,403,0,0,0,'http://kingsvillelivestock.com/admin/plugins/elfinder/php/connector.minimal.php',NULL,'ALittle Client','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"QUxpdHRsZSBDbGllbnQ=\",\"path\":\"L2FkbWluL3BsdWdpbnMvZWxmaW5kZXIvcGhwL2Nvbm5lY3Rvci5taW5pbWFsLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221701,0.000000,1700387910.143544,'\0\0\0\0\0\0\0\0\0\0ÿÿe%',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221702,0.000000,1700388490.388600,'\0\0\0\0\0\0\0\0\0\0ÿÿe4',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221703,0.000000,1700398232.141952,'\0\0\0\0\0\0\0\0\0\0ÿÿeœ\r',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221704,1700399419.022378,1700399418.833900,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/about.php7',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Fib3V0LnBocDc=\",\"category\":\"brute-force\",\"ssl\":0}'),(221705,1700399415.995367,1700399415.813700,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/admin.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FkbWluLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221706,1700399412.062603,1700399411.874200,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/about.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Fib3V0LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221707,1700399408.973432,1700399408.785600,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/dropdown.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Ryb3Bkb3duLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221708,1700399405.880109,1700399405.687100,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/css/index.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Nzcy9pbmRleC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221709,1700399401.755670,1700399401.564600,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/dropdown.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Ryb3Bkb3duLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221710,1700399398.037633,1700399397.856700,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/maint/maint/ajax-actions.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL21haW50L21haW50L2FqYXgtYWN0aW9ucy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221711,1700399394.604633,1700399394.419600,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/admin-post.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FkbWluLXBvc3QucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221712,1700399390.212202,1700399390.016700,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/repeater.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3JlcGVhdGVyLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221713,1700399386.735326,1700399386.542600,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-consar.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnNhci5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221714,1700399382.790542,1700399382.605700,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/ajax-actions.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2FqYXgtYWN0aW9ucy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221715,1700399378.033602,1700399377.849200,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/ajax-actions.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FqYXgtYWN0aW9ucy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221716,1700399373.874802,1700399373.692400,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/cache-compat.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2NhY2hlLWNvbXBhdC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221717,1700399370.615081,1700399370.421200,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/seoo/wsoyanz1.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9zZW9vL3dzb3lhbnoxLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221718,1700399367.938718,1700399367.752000,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/seoo/wsoyanz.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9zZW9vL3dzb3lhbnoucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221719,1700399364.096317,1700399363.905500,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/js/about.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2pzL2Fib3V0LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221720,1700399360.215706,1700399360.019800,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/yanz.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3lhbnoucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221721,1700399356.401995,1700399356.212400,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wsoyanz.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dzb3lhbnoucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221722,1700399351.969897,1700399351.782400,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/repeater.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcmVwZWF0ZXIucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221723,1700399347.363922,1700399347.169700,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/repeater.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL3JlcGVhdGVyLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221724,1700399343.907648,1700399343.713400,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/repeater.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL3JlcGVhdGVyLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221725,1700399340.170727,1700399339.974500,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-p.php7',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLXAucGhwNw==\",\"category\":\"brute-force\",\"ssl\":0}'),(221726,1700399337.780861,1700399337.586900,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/js/widgets/about.php7',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2pzL3dpZGdldHMvYWJvdXQucGhwNw==\",\"category\":\"brute-force\",\"ssl\":0}'),(221727,1700399330.911434,1700399330.717200,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/alfanew.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FsZmFuZXcucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221728,1700399326.220944,1700399325.992500,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/alfa-rex.php7',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FsZmEtcmV4LnBocDc=\",\"category\":\"brute-force\",\"ssl\":0}'),(221729,0.000000,1700400467.264267,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í@†',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221730,0.000000,1700403325.047677,'\0\0\0\0\0\0\0\0\0\0ÿÿeœö',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221731,0.000000,1700403325.087784,'\0\0\0\0\0\0\0\0\0\0ÿÿWì¾',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221732,0.000000,1700417200.054872,'\0\0\0\0\0\0\0\0\0\0ÿÿ½¾ ‡',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','http://afentouli.every.gr/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15','loginFailValidUsername',NULL,NULL),(221733,0.000000,1700435977.361607,'\0\0\0\0\0\0\0\0\0\0ÿÿ/XNT',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221734,0.000000,1700439250.117726,'\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221735,0.000000,1700441737.408172,'\0\0\0\0\0\0\0\0\0\0ÿÿe¼',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221736,0.000000,1700445382.371729,'\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221737,0.000000,1700445468.282159,'\0\0\0\0\0\0\0\0\0\0ÿÿg“#6',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221738,1700452625.556481,1700452625.374800,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/js/crop/cropper.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL2pzL2Nyb3AvY3JvcHBlci5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221739,1700452623.408009,1700452623.225200,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/.tmb/termps.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Ly50bWIvdGVybXBzLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221740,1700452621.994982,1700452621.807300,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/woh.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dvaC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221741,1700452621.081794,1700452620.898900,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/uploads/2023/index.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIzL2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221742,1700452620.396999,1700452620.208100,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/wp-cron.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNyb24ucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221743,1700452618.844374,1700452618.660700,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/Update/wp-blog.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9VcGRhdGUvd3AtYmxvZy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221744,1700452617.503162,1700452617.301300,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/css/colors/coffee/about.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Nzcy9jb2xvcnMvY29mZmVlL2Fib3V0LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221745,1700452616.522063,1700452616.337000,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/admin.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9hZG1pbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221746,1700452614.317222,1700452614.123400,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/admin.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FkbWluLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221747,1700452611.999584,1700452611.812200,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php?p=',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221748,1700452610.394610,1700452610.212400,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/Text/Diff//termps.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL1RleHQvRGlmZi8vdGVybXBzLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221749,1700452609.382750,1700452609.199000,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/customize/termps.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL2N1c3RvbWl6ZS90ZXJtcHMucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221750,1700452608.410061,1700452608.225500,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/maint/termps.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL21haW50L3Rlcm1wcy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221751,1700452606.939790,1700452606.755600,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/index.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221752,1700452605.879773,1700452605.696700,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/4price3.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"LzRwcmljZTMucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221753,1700452604.949193,1700452604.765400,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/4pric.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"LzRwcmljLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221754,1700452603.818059,1700452603.636900,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/Requests/Text/votes.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL1JlcXVlc3RzL1RleHQvdm90ZXMucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221755,1700452603.006046,1700452602.820300,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/Requests/Text/4price3.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL1JlcXVlc3RzL1RleHQvNHByaWNlMy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221756,1700452602.181128,1700452601.994800,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/style-css.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvc3R5bGUtY3NzLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221757,1700452601.433049,1700452601.224600,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/text.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3RleHQucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221758,1700452600.647507,1700452600.459400,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/users.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3VzZXJzLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221759,1700452599.818751,1700452599.633800,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/classwithtostring.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2NsYXNzd2l0aHRvc3RyaW5nLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221760,1700452598.895077,1700452598.705600,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/themes.php/wp-includes/css/dist/editor/fxp.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3RoZW1lcy5waHAvd3AtaW5jbHVkZXMvY3NzL2Rpc3QvZWRpdG9yL2Z4cC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221761,1700452598.086308,1700452597.898000,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/includes/themes.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2luY2x1ZGVzL3RoZW1lcy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221762,1700452597.302806,1700452597.093300,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/js/500.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL2pzLzUwMC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221763,1700452596.551563,1700452596.330600,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯$',0,403,0,0,0,'http://kingsvillelivestock.com/wso-x569.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dzby14NTY5LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221764,0.000000,1700455342.023379,'\0\0\0\0\0\0\0\0\0\0ÿÿËmO›',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://www.geekpad.ch/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15','loginFailValidUsername',NULL,NULL),(221765,0.000000,1700455526.760658,'\0\0\0\0\0\0\0\0\0\0ÿÿÃl',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221766,0.000000,1700457555.186817,'\0\0\0\0\0\0\0\0\0\0ÿÿ³û',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221767,0.000000,1700463651.011959,'\0\0\0\0\0\0\0\0\0\0ÿÿ“‡ÿ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221768,0.000000,1700466193.301774,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!@',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','loginFailInvalidUsername',NULL,NULL),(221769,0.000000,1700470347.339084,'\0\0\0\0\0\0\0\0\0\0ÿÿg“#6',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221770,0.000000,1700475352.354199,'\0\0\0\0\0\0\0\0\0\0ÿÿWì´',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','loginFailInvalidUsername',NULL,NULL),(221771,0.000000,1700476442.313548,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!2',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221772,0.000000,1700478049.809994,'\0\0\0\0\0\0\0\0\0\0ÿÿuÁ¼\\',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://ferienwohnung-slowenien.ch/wp-login.php','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12','loginFailValidUsername',NULL,NULL),(221773,0.000000,1700482581.698970,'\0\0\0\0\0\0\0\0\0\0ÿÿz¡À\n',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221774,0.000000,1700486269.704989,'\0\0\0\0\0\0\0\0\0\0ÿÿWì‹',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221775,1700489056.514754,1700489056.300400,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G',0,403,0,0,0,'http://kingsvillelivestock.com/admin/plugins/elfinder/php/connector.php',NULL,'ALittle Client','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"QUxpdHRsZSBDbGllbnQ=\",\"path\":\"L2FkbWluL3BsdWdpbnMvZWxmaW5kZXIvcGhwL2Nvbm5lY3Rvci5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221776,0.000000,1700493659.501047,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!c',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','loginFailInvalidUsername',NULL,NULL),(221777,0.000000,1700494240.258534,'\0\0\0\0\0\0\0\0\0\0ÿÿ#Íàø',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221778,0.000000,1700496352.224319,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z',0,302,0,2,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','loginOK',NULL,NULL),(221779,1700497526.913764,1700497526.685400,'\0\0\0\0\0\0\0\0\0\0ÿÿ3ÿàì',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php?p=','kingsvillelivestock.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) colonel Chrome/196.3.1597.530 Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgY29sb25lbCBDaHJvbWUvMTk2LjMuMTU5Ny41MzAgU2FmYXJpLzUzNy4zNg==\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221780,0.000000,1700498704.580240,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221781,0.000000,1700503063.700472,'\0\0\0\0\0\0\0\0\0\0ÿÿz°\'|',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221782,1700504353.064026,1700504352.849300,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/js/widgets/about.php7',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2pzL3dpZGdldHMvYWJvdXQucGhwNw==\",\"category\":\"brute-force\",\"ssl\":0}'),(221783,1700504334.174361,1700504333.985400,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/alfanew.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FsZmFuZXcucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221784,1700504325.007438,1700504324.788200,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/alfa-rex.php7',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FsZmEtcmV4LnBocDc=\",\"category\":\"brute-force\",\"ssl\":0}'),(221785,1700504368.917710,1700504368.727000,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/repeater.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL3JlcGVhdGVyLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221786,1700504361.663203,1700504361.476600,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-p.php7',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLXAucGhwNw==\",\"category\":\"brute-force\",\"ssl\":0}'),(221787,1700504467.510457,1700504467.322800,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-consar.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnNhci5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221788,1700504456.734405,1700504456.549800,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/ajax-actions.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2FqYXgtYWN0aW9ucy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221789,1700504445.848758,1700504445.664600,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/ajax-actions.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FqYXgtYWN0aW9ucy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221790,1700504437.096785,1700504436.905700,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/cache-compat.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2NhY2hlLWNvbXBhdC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221791,1700504429.583002,1700504429.395700,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/seoo/wsoyanz1.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9zZW9vL3dzb3lhbnoxLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221792,1700504419.357538,1700504419.160300,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/seoo/wsoyanz.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9zZW9vL3dzb3lhbnoucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221793,1700504410.760701,1700504410.566700,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/js/about.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2pzL2Fib3V0LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221794,1700504402.838228,1700504402.645500,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/yanz.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3lhbnoucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221795,1700504395.158952,1700504394.967000,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wsoyanz.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dzb3lhbnoucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221796,1700504385.743794,1700504385.559800,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/repeater.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcmVwZWF0ZXIucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221797,1700504377.446358,1700504377.259500,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/repeater.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL3JlcGVhdGVyLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221798,1700504497.291091,1700504497.105200,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/maint/maint/ajax-actions.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL21haW50L21haW50L2FqYXgtYWN0aW9ucy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221799,1700504487.489559,1700504487.308800,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/admin-post.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FkbWluLXBvc3QucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221800,1700504477.115690,1700504476.931300,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/repeater.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3JlcGVhdGVyLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221801,1700504549.465518,1700504549.277300,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/about.php7',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Fib3V0LnBocDc=\",\"category\":\"brute-force\",\"ssl\":0}'),(221802,1700504541.293755,1700504541.107400,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/admin.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FkbWluLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221803,1700504532.966000,1700504532.774300,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/about.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Fib3V0LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221804,1700504525.544292,1700504525.354800,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/dropdown.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Ryb3Bkb3duLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221805,1700504516.813612,1700504516.614700,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/css/index.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Nzcy9pbmRleC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221806,1700504507.755130,1700504507.542700,'\0\0\0\0\0\0\0\0\0\0ÿÿ«zo',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/dropdown.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Ryb3Bkb3duLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221807,0.000000,1700506105.725328,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!g',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','loginFailInvalidUsername',NULL,NULL),(221808,0.000000,1700518754.317327,'\0\0\0\0\0\0\0\0\0\0ÿÿeÐ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221809,0.000000,1700519907.886506,'\0\0\0\0\0\0\0\0\0\0ÿÿeˆ',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','loginFailInvalidUsername',NULL,NULL),(221810,0.000000,1700535320.445617,'\0\0\0\0\0\0\0\0\0\0ÿÿe',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221811,0.000000,1700536183.177859,'\0\0\0\0\0\0\0\0\0\0ÿÿŠDñ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221812,1700537618.572744,1700537618.387000,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢',0,403,0,0,0,'http://kingsvillelivestock.com/simple.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NpbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221813,1700537614.204711,1700537614.009000,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/admin.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvYWRtaW4ucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221814,1700537609.231258,1700537609.015500,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/about.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Fib3V0LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221815,1700537595.248939,1700537595.036100,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼¢',0,403,0,0,0,'http://kingsvillelivestock.com/ms.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L21zLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221816,0.000000,1700539190.029112,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221817,0.000000,1700540699.674837,'\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221818,0.000000,1700542211.311216,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm¿Ç',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221819,0.000000,1700543469.320085,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹{ÌV',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221820,0.000000,1700545542.273198,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘É',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221821,0.000000,1700547108.591005,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmJ;',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221822,0.000000,1700547478.696825,'\0\0\0\0\0\0\0\0\0\0ÿÿ­É´Ò',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221823,0.000000,1700548140.018821,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌÙ',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221824,0.000000,1700549921.363967,'\0\0\0\0\0\0\0\0\0\0ÿÿH§hù',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221825,0.000000,1700551010.794438,'\0\0\0\0\0\0\0\0\0\0ÿÿH§:',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221826,0.000000,1700551216.590391,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨D',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221827,0.000000,1700551856.841386,'\0\0\0\0\0\0\0\0\0\0ÿÿƒF',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221828,0.000000,1700553028.815696,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¹p',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221829,0.000000,1700554496.963192,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hy€',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221830,0.000000,1700555194.306764,'\0\0\0\0\0\0\0\0\0\0ÿÿD²Þ­',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221831,0.000000,1700556169.393702,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨D',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221832,0.000000,1700556627.838158,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmFI',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221833,0.000000,1700557425.223925,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>¶õ',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221834,0.000000,1700557906.342950,'\0\0\0\0\0\0\0\0\0\0ÿÿ­É¾',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221835,0.000000,1700558558.856853,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌØB',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221836,0.000000,1700559563.969713,'\0\0\0\0\0\0\0\0\0\0ÿÿÆÛÙ',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221837,0.000000,1700560957.702950,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¹p',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221838,0.000000,1700561129.060409,'\0\0\0\0\0\0\0\0\0\0ÿÿxM‘@',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221839,0.000000,1700561656.493885,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌØB',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221840,0.000000,1700562037.799498,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹Aîh',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221841,0.000000,1700562545.481414,'\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0ä·',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221842,0.000000,1700563087.172277,'\0\0\0\0\0\0\0\0\0\0ÿÿE£Æd',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221843,0.000000,1700563262.885843,'\0\0\0\0\0\0\0\0\0\0ÿÿÇkª',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221844,0.000000,1700563630.365299,'\0\0\0\0\0\0\0\0\0\0ÿÿÔàbm',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221845,0.000000,1700563815.824080,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹Ü¯	',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221846,0.000000,1700564165.123482,'\0\0\0\0\0\0\0\0\0\0ÿÿ±4 ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221847,0.000000,1700564368.106807,'\0\0\0\0\0\0\0\0\0\0ÿÿoZ–$',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221848,0.000000,1700564733.076942,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ©”\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221849,0.000000,1700564927.440778,'\0\0\0\0\0\0\0\0\0\0ÿÿ>«±¯',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221850,0.000000,1700565295.955978,'\0\0\0\0\0\0\0\0\0\0ÿÿxmÇ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221851,0.000000,1700565484.727427,'\0\0\0\0\0\0\0\0\0\0ÿÿaJÒ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221852,0.000000,1700565663.965176,'\0\0\0\0\0\0\0\0\0\0ÿÿÕˆWa',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221853,0.000000,1700565861.138502,'\0\0\0\0\0\0\0\0\0\0ÿÿ#âÄ³',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221854,0.000000,1700566054.286406,'\0\0\0\0\0\0\0\0\0\0ÿÿD²—Ì',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221855,0.000000,1700566628.659327,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘W',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221856,0.000000,1700567127.001113,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221857,0.000000,1700567185.797531,'\0\0\0\0\0\0\0\0\0\0ÿÿ±4  ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221858,0.000000,1700567592.454044,'\0\0\0\0\0\0\0\0\0\0ÿÿE?@',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221859,0.000000,1700567768.141749,'\0\0\0\0\0\0\0\0\0\0ÿÿÚKž',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221860,0.000000,1700568157.927218,'\0\0\0\0\0\0\0\0\0\0ÿÿÓâ–H',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221861,0.000000,1700568744.347625,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hõê',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221862,0.000000,1700568979.345895,'\0\0\0\0\0\0\0\0\0\0ÿÿ/_pG',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221863,0.000000,1700569352.548284,'\0\0\0\0\0\0\0\0\0\0ÿÿ%ŒØØ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221864,0.000000,1700569546.404209,'\0\0\0\0\0\0\0\0\0\0ÿÿÑa‘^',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221865,0.000000,1700569763.744875,'\0\0\0\0\0\0\0\0\0\0ÿÿe¯',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221866,0.000000,1700569926.433555,'\0\0\0\0\0\0\0\0\0\0ÿÿÓâ–H',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221867,0.000000,1700570146.585689,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹Ü¯	',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221868,0.000000,1700570164.120953,'\0\0\0\0\0\0\0\0\0\0ÿÿeW',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221869,0.000000,1700570539.654911,'\0\0\0\0\0\0\0\0\0\0ÿÿD²’',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221870,0.000000,1700571121.688204,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨D',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221871,0.000000,1700571307.486788,'\0\0\0\0\0\0\0\0\0\0ÿÿ/òk•',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221872,0.000000,1700572311.960390,'\0\0\0\0\0\0\0\0\0\0ÿÿhø-',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221873,0.000000,1700572502.872188,'\0\0\0\0\0\0\0\0\0\0ÿÿE?@',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221874,0.000000,1700572910.257512,'\0\0\0\0\0\0\0\0\0\0ÿÿ#âÄ³',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221875,0.000000,1700573115.543447,'\0\0\0\0\0\0\0\0\0\0ÿÿE£Æd',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221876,0.000000,1700573526.058884,'\0\0\0\0\0\0\0\0\0\0ÿÿ¤„pW',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221877,0.000000,1700574130.886290,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹F_',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221878,0.000000,1700574335.981063,'\0\0\0\0\0\0\0\0\0\0ÿÿoZ–$',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221879,1700574680.573232,1700574680.360200,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ö,',0,403,0,0,0,'https://kingsvillelivestock.com/radio.php?imam=test','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3JhZGlvLnBocA==\",\"category\":\"brute-force\",\"ssl\":1}'),(221880,1700574668.693212,1700574668.484000,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ö,',0,403,0,0,0,'http://kingsvillelivestock.com/radio.php?imam=test','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3JhZGlvLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221881,0.000000,1700574721.386196,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨sÚ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221882,0.000000,1700574947.718836,'\0\0\0\0\0\0\0\0\0\0ÿÿÃH',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221883,1700575267.519714,1700575267.306900,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹Aib',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/apikey/apikey.php?test=hello',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9hcGlrZXkvYXBpa2V5LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221884,1700575267.475814,1700575267.282000,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹Aib',0,403,0,0,0,'http://kingsvillelivestock.com/alfacgiapi/perl.alfa','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FsZmFjZ2lhcGkvcGVybC5hbGZh\",\"category\":\"brute-force\",\"ssl\":0}'),(221885,1700575267.004948,1700575266.770000,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹Aib',0,403,0,0,0,'http://kingsvillelivestock.com/',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Lw==\",\"category\":\"brute-force\",\"ssl\":0}'),(221886,1700575266.988955,1700575266.763500,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹Aib',0,403,0,0,0,'http://kingsvillelivestock.com/ALFA_DATA/alfacgiapi/perl.alfa','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L0FMRkFfREFUQS9hbGZhY2dpYXBpL3BlcmwuYWxmYQ==\",\"category\":\"brute-force\",\"ssl\":0}'),(221887,1700575268.541113,1700575268.354500,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹Aib',0,403,0,0,0,'http://kingsvillelivestock.com/plugins/content/apismtp/apismtp.php.suspected?test=hello',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3BsdWdpbnMvY29udGVudC9hcGlzbXRwL2FwaXNtdHAucGhwLnN1c3BlY3RlZA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221888,1700575268.201136,1700575268.017000,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹Aib',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/apikey/apikey.php.suspected?test=hello',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9hcGlrZXkvYXBpa2V5LnBocC5zdXNwZWN0ZWQ=\",\"category\":\"brute-force\",\"ssl\":0}'),(221889,1700575267.862657,1700575267.673000,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹Aib',0,403,0,0,0,'http://kingsvillelivestock.com/plugins/content/apismtp/apismtp.php?test=hello',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3BsdWdpbnMvY29udGVudC9hcGlzbXRwL2FwaXNtdHAucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(221890,0.000000,1700575361.694117,'\0\0\0\0\0\0\0\0\0\0ÿÿ[qå',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221891,0.000000,1700575542.842526,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹Ä',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221892,0.000000,1700575967.788334,'\0\0\0\0\0\0\0\0\0\0ÿÿD²—Ì',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221893,0.000000,1700576171.027399,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ©”\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221894,0.000000,1700576572.053876,'\0\0\0\0\0\0\0\0\0\0ÿÿ”ŸE',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221895,0.000000,1700576793.520911,'\0\0\0\0\0\0\0\0\0\0ÿÿgŸïà',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221896,0.000000,1700577024.247519,'\0\0\0\0\0\0\0\0\0\0ÿÿeó',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','loginFailInvalidUsername',NULL,NULL),(221897,0.000000,1700577209.268481,'\0\0\0\0\0\0\0\0\0\0ÿÿecZ¯',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221898,0.000000,1700577415.088131,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘î',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221899,0.000000,1700577838.083090,'\0\0\0\0\0\0\0\0\0\0ÿÿecZ¯',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221900,0.000000,1700578036.571477,'\0\0\0\0\0\0\0\0\0\0ÿÿ·[È',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221901,0.000000,1700578457.798305,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨sÚ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221902,0.000000,1700578699.681172,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'j\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221903,0.000000,1700579117.578696,'\0\0\0\0\0\0\0\0\0\0ÿÿD²¦ä',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221904,0.000000,1700579190.837300,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾H<ê',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://gentraf.com/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36','loginFailValidUsername',NULL,NULL),(221905,0.000000,1700579341.462367,'\0\0\0\0\0\0\0\0\0\0ÿÿzrOß',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221906,0.000000,1700579775.112595,'\0\0\0\0\0\0\0\0\0\0ÿÿE£Æd',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221907,0.000000,1700579995.276413,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íƒ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221908,0.000000,1700580656.466144,'\0\0\0\0\0\0\0\0\0\0ÿÿt0e',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221909,0.000000,1700581086.738405,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌØB',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221910,0.000000,1700581289.319522,'\0\0\0\0\0\0\0\0\0\0ÿÿ±4  ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221911,0.000000,1700581752.745666,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmãÄ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221912,0.000000,1700581974.317345,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘»',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221913,0.000000,1700582418.224049,'\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0ç~',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221914,0.000000,1700583074.448930,'\0\0\0\0\0\0\0\0\0\0ÿÿº¬',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221915,0.000000,1700583410.238857,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!h',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221916,0.000000,1700587423.171232,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘»',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221917,0.000000,1700587941.439909,'\0\0\0\0\0\0\0\0\0\0ÿÿ­Ôçz',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221918,0.000000,1700588187.410218,'\0\0\0\0\0\0\0\0\0\0ÿÿ%»J1',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221919,0.000000,1700588705.945815,'\0\0\0\0\0\0\0\0\0\0ÿÿ­Éµ5',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221920,0.000000,1700588866.811997,'\0\0\0\0\0\0\0\0\0\0ÿÿ>Š³',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221921,0.000000,1700588935.870283,'\0\0\0\0\0\0\0\0\0\0ÿÿWìÑ¤',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221922,0.000000,1700589322.987878,'\0\0\0\0\0\0\0\0\0\0ÿÿÃH',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221923,0.000000,1700589547.194730,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹{ÌV',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221924,0.000000,1700589896.426271,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾!-',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://human.sk/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15','loginFailValidUsername',NULL,NULL),(221925,0.000000,1700589988.207021,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm0¸',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221926,1700591893.678073,1700591893.456800,'\0\0\0\0\0\0\0\0\0\0ÿÿ>Ò×J',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/includes/index.php?pw=1','kingsvillelivestock.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) colonel Chrome/196.3.1597.530 Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgY29sb25lbCBDaHJvbWUvMTk2LjMuMTU5Ny41MzAgU2FmYXJpLzUzNy4zNg==\",\"path\":\"L3dwLWFkbWluL2luY2x1ZGVzL2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221927,1700592530.725599,1700592530.507900,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/konzept/includes/uploadify/uploadify.css',NULL,'ALittle Client','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"QUxpdHRsZSBDbGllbnQ=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL2tvbnplcHQvaW5jbHVkZXMvdXBsb2FkaWZ5L3VwbG9hZGlmeS5jc3M=\",\"category\":\"brute-force\",\"ssl\":0}'),(221928,1700594171.732645,1700594171.520700,'\0\0\0\0\0\0\0\0\0\0ÿÿbF1K',0,403,0,0,0,'http://kingsvillelivestock.com/style.php?sig=update&domain=51.79.124.111','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3N0eWxlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221929,0.000000,1700594687.897492,'\0\0\0\0\0\0\0\0\0\0ÿÿeÝ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221930,0.000000,1700596836.916598,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!@',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221931,0.000000,1700603957.452471,'\0\0\0\0\0\0\0\0\0\0ÿÿeÑ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221932,1700615806.922676,1700615806.709200,'\0\0\0\0\0\0\0\0\0\0ÿÿŸAæ|',0,403,0,0,0,'http://kingsvillelivestock.com/index.php?pd=smyedit&mapname=sitemap.php&dstr=asd','kingsvillelivestock.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) colonel Chrome/196.3.1597.530 Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgY29sb25lbCBDaHJvbWUvMTk2LjMuMTU5Ny41MzAgU2FmYXJpLzUzNy4zNg==\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(221933,0.000000,1700624911.414802,'\0\0\0\0\0\0\0\0\0\0ÿÿq¡H‡',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221934,0.000000,1700625642.386495,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221935,0.000000,1700626781.867933,'\0\0\0\0\0\0\0\0\0\0ÿÿ”HÏn',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221936,0.000000,1700627818.855648,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨$',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221937,0.000000,1700628760.161204,'\0\0\0\0\0\0\0\0\0\0ÿÿoRJ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221938,0.000000,1700630620.574940,'\0\0\0\0\0\0\0\0\0\0ÿÿÆô•',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221939,0.000000,1700630629.932207,'\0\0\0\0\0\0\0\0\0\0ÿÿ6GË®',0,200,0,0,0,'https://kingsvillelivestock.com/?_wfsf=detectProxy','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1','scan:detectproxy',NULL,NULL),(221940,0.000000,1700631710.606946,'\0\0\0\0\0\0\0\0\0\0ÿÿ3ÿ@:',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221941,0.000000,1700632535.982529,'\0\0\0\0\0\0\0\0\0\0ÿÿx\\÷',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221942,0.000000,1700633223.515524,'\0\0\0\0\0\0\0\0\0\0ÿÿwN6',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221943,0.000000,1700633310.114330,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹{ÌV',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221944,1700633970.648528,1700633970.458700,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\öØ',0,403,0,0,0,'https://kingsvillelivestock.com/chosen.php?upload=','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(221945,1700633960.201556,1700633959.986100,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\öØ',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php?upload=','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221946,0.000000,1700633989.760037,'\0\0\0\0\0\0\0\0\0\0ÿÿÆý<',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221947,0.000000,1700634606.577601,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¶',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221948,0.000000,1700635192.863526,'\0\0\0\0\0\0\0\0\0\0ÿÿ­É±Æ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221949,0.000000,1700635741.519955,'\0\0\0\0\0\0\0\0\0\0ÿÿk´m',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221950,1700635759.332333,1700635759.105000,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\öØ',0,403,0,0,0,'http://www.kingsvillelivestock.com/chosen.php?upload=','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(221951,0.000000,1700636285.800505,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í\r†',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221952,0.000000,1700636836.630862,'\0\0\0\0\0\0\0\0\0\0ÿÿ§Gb',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221953,0.000000,1700637401.202527,'\0\0\0\0\0\0\0\0\0\0ÿÿÝ|4®',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(221954,0.000000,1700637816.805763,'\0\0\0\0\0\0\0\0\0\0ÿÿ+›Y¾',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221955,0.000000,1700638292.433278,'\0\0\0\0\0\0\0\0\0\0ÿÿD²›S',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221956,0.000000,1700638767.430067,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?\0Ä',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221957,0.000000,1700639504.197858,'\0\0\0\0\0\0\0\0\0\0ÿÿª§',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221958,0.000000,1700639776.173567,'\0\0\0\0\0\0\0\0\0\0ÿÿ«ô1',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221959,0.000000,1700640202.744126,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ò i',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','http://www.bibliounlz.com.ar/wp-login.php','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12','loginFailValidUsername',NULL,NULL),(221960,0.000000,1700640224.306694,'\0\0\0\0\0\0\0\0\0\0ÿÿ”HÏn',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221961,0.000000,1700640554.767000,'\0\0\0\0\0\0\0\0\0\0ÿÿ„”KË',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221962,0.000000,1700641097.469919,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hy€',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221963,0.000000,1700641508.457077,'\0\0\0\0\0\0\0\0\0\0ÿÿt0e',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221964,0.000000,1700641938.228254,'\0\0\0\0\0\0\0\0\0\0ÿÿÁ—S',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221965,0.000000,1700642317.832374,'\0\0\0\0\0\0\0\0\0\0ÿÿyO÷',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221966,0.000000,1700642743.071086,'\0\0\0\0\0\0\0\0\0\0ÿÿhøt',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221967,0.000000,1700643166.035926,'\0\0\0\0\0\0\0\0\0\0ÿÿ@Z0É',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221968,0.000000,1700644047.620326,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGæD',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221969,0.000000,1700644509.069927,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmKÆ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221970,0.000000,1700644976.374779,'\0\0\0\0\0\0\0\0\0\0ÿÿ/_pG',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221971,0.000000,1700645984.704522,'\0\0\0\0\0\0\0\0\0\0ÿÿÎÆ–4',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221972,0.000000,1700646522.044393,'\0\0\0\0\0\0\0\0\0\0ÿÿ@Z0É',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221973,0.000000,1700646852.888094,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm¿Ç',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221974,0.000000,1700647036.302930,'\0\0\0\0\0\0\0\0\0\0ÿÿ½~Î',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221975,0.000000,1700647542.689454,'\0\0\0\0\0\0\0\0\0\0ÿÿaJ[Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221976,0.000000,1700648110.775103,'\0\0\0\0\0\0\0\0\0\0ÿÿWk§',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221977,0.000000,1700648657.157514,'\0\0\0\0\0\0\0\0\0\0ÿÿ[ì¨ù',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221978,0.000000,1700649219.169918,'\0\0\0\0\0\0\0\0\0\0ÿÿH§Ñø',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221979,0.000000,1700649807.200456,'\0\0\0\0\0\0\0\0\0\0ÿÿ,Ÿ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221980,0.000000,1700650378.856611,'\0\0\0\0\0\0\0\0\0\0ÿÿ–_·Â',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221981,0.000000,1700651624.797985,'\0\0\0\0\0\0\0\0\0\0ÿÿ9€¡',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221982,0.000000,1700652715.267747,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨{.',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221983,0.000000,1700653889.827245,'\0\0\0\0\0\0\0\0\0\0ÿÿaJ[Z',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221984,0.000000,1700654818.034350,'\0\0\0\0\0\0\0\0\0\0ÿÿÜWÍ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221985,0.000000,1700655127.765510,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t~',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221986,0.000000,1700655898.128552,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨$',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221987,0.000000,1700656367.446330,'\0\0\0\0\0\0\0\0\0\0ÿÿD²¦ä',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221988,0.000000,1700658169.200612,'\0\0\0\0\0\0\0\0\0\0ÿÿeœ-',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221989,0.000000,1700658675.856937,'\0\0\0\0\0\0\0\0\0\0ÿÿ”HÏn',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221990,0.000000,1700663543.920960,'\0\0\0\0\0\0\0\0\0\0ÿÿWìœ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221991,0.000000,1700664227.205491,'\0\0\0\0\0\0\0\0\0\0ÿÿWìî',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221992,0.000000,1700664685.734953,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z',0,302,0,2,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','loginOK',NULL,NULL),(221993,0.000000,1700664935.934993,'\0\0\0\0\0\0\0\0\0\0ÿÿeœx',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221994,0.000000,1700665826.712347,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í@†',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221995,0.000000,1700666958.453653,'\0\0\0\0\0\0\0\0\0\0ÿÿeO',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221996,0.000000,1700668150.053362,'\0\0\0\0\0\0\0\0\0\0ÿÿWì+',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221997,0.000000,1700669746.051759,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!1',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221998,0.000000,1700673336.368075,'\0\0\0\0\0\0\0\0\0\0ÿÿeó',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(221999,0.000000,1700674595.396204,'\0\0\0\0\0\0\0\0\0\0ÿÿD²£Ü',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222000,0.000000,1700677251.288378,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹Aîh',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222001,0.000000,1700677563.344390,'\0\0\0\0\0\0\0\0\0\0ÿÿe-',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222002,1700684039.246929,1700684039.031300,'\0\0\0\0\0\0\0\0\0\0ÿÿ>Ò×J',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/user-pro/css/userpro-editor.css','kingsvillelivestock.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) colonel Chrome/196.3.1597.530 Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgY29sb25lbCBDaHJvbWUvMTk2LjMuMTU5Ny41MzAgU2FmYXJpLzUzNy4zNg==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy91c2VyLXByby9jc3MvdXNlcnByby1lZGl0b3IuY3Nz\",\"category\":\"brute-force\",\"ssl\":0}'),(222003,0.000000,1700685533.312429,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹M',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222004,1700689922.901862,1700689922.678700,'\0\0\0\0\0\0\0\0\0\0ÿÿœù ',0,403,0,0,0,'https://kingsvillelivestock.com/wp-content/plugins/core/include.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9jb3JlL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":1}'),(222005,1700689894.883247,1700689894.666100,'\0\0\0\0\0\0\0\0\0\0ÿÿœù ',0,403,0,0,0,'http://kingsvillelivestock.com/simple.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NpbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222006,1700689716.561897,1700689716.344400,'\0\0\0\0\0\0\0\0\0\0ÿÿ&g§',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/userpro/css/userpro-editor.css','kingsvillelivestock.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) colonel Chrome/196.3.1597.530 Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgY29sb25lbCBDaHJvbWUvMTk2LjMuMTU5Ny41MzAgU2FmYXJpLzUzNy4zNg==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy91c2VycHJvL2Nzcy91c2VycHJvLWVkaXRvci5jc3M=\",\"category\":\"brute-force\",\"ssl\":0}'),(222007,0.000000,1700691876.782404,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222008,1700692562.880197,1700692562.642500,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD',0,403,0,0,0,'http://kingsvillelivestock.com/.xas.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Ly54YXMucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222009,1700692549.526889,1700692549.316400,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD',0,403,0,0,0,'https://kingsvillelivestock.com/max.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L21heC5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(222010,1700692537.417945,1700692537.202800,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD',0,403,0,0,0,'http://kingsvillelivestock.com/max.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L21heC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222011,0.000000,1700693648.116603,'\0\0\0\0\0\0\0\0\0\0ÿÿÿ-',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://wdtraining.ie/wp-login.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','loginFailValidUsername',NULL,NULL),(222012,0.000000,1700694638.084441,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222013,1700695281.645891,1700695281.419200,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'https://www.kingsvillelivestock.com/.xas.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Ly54YXMucGhw\",\"category\":\"brute-force\",\"ssl\":1}'),(222014,1700695268.677863,1700695268.455300,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'http://www.kingsvillelivestock.com/.xas.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Ly54YXMucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222015,1700695256.082132,1700695255.868000,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'https://www.kingsvillelivestock.com/max.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L21heC5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(222016,1700695236.458850,1700695236.231800,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'http://www.kingsvillelivestock.com/max.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L21heC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222017,0.000000,1700703568.900246,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!/',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222018,0.000000,1700719220.651499,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222019,0.000000,1700722524.893700,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍJ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222020,0.000000,1700731553.558699,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾I~È',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://deerrunlifestyle.com/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15','loginFailValidUsername',NULL,NULL),(222021,1700737144.150485,1700737143.933500,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G',0,403,0,0,0,'http://kingsvillelivestock.com/admin/plugins/jqueryupload/server/php/index.php?file=tf2rghf.jpg',NULL,'ALittle Client','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"QUxpdHRsZSBDbGllbnQ=\",\"path\":\"L2FkbWluL3BsdWdpbnMvanF1ZXJ5dXBsb2FkL3NlcnZlci9waHAvaW5kZXgucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222022,0.000000,1700739058.034843,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨$',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222023,0.000000,1700739948.120817,'\0\0\0\0\0\0\0\0\0\0ÿÿD²£Ü',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222024,1700744076.835804,1700744076.624800,'\0\0\0\0\0\0\0\0\0\0ÿÿbFË',0,403,0,0,0,'http://kingsvillelivestock.com/style.php?sig=update&domain=51.79.124.111','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3N0eWxlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222025,1700753165.721375,1700753165.505000,'\0\0\0\0\0\0\0\0\0\0ÿÿðp',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php?p=',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222026,1700754346.892339,1700754346.680500,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ö,',0,403,0,0,0,'https://kingsvillelivestock.com/wp-content/plugins/incache/index.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9pbmNhY2hlL2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":1}'),(222027,1700754334.332937,1700754334.115100,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ö,',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/incache/index.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9pbmNhY2hlL2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222028,0.000000,1700757466.704411,'\0\0\0\0\0\0\0\0\0\0ÿÿ}¦u3',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://onlineorderz.com/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0','loginFailValidUsername',NULL,NULL),(222029,0.000000,1700766961.477883,'\0\0\0\0\0\0\0\0\0\0ÿÿm\\³ç',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','http://www.alfredohunter.com/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15','loginFailValidUsername',NULL,NULL),(222030,0.000000,1700767876.582478,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨$',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222031,1700767895.862572,1700767895.675800,'\0\0\0\0\0\0\0\0\0\0ÿÿUrŠÜ',0,403,0,0,0,'https://kingsvillelivestock.com/atomlib.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2F0b21saWIucGhw\",\"category\":\"brute-force\",\"ssl\":1}'),(222032,1700767895.079901,1700767894.886700,'\0\0\0\0\0\0\0\0\0\0ÿÿUrŠÜ',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222033,1700767894.433882,1700767894.243300,'\0\0\0\0\0\0\0\0\0\0ÿÿUrŠÜ',0,403,0,0,0,'https://kingsvillelivestock.com/wp-apxupx.php?apx=upx','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFweHVweC5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(222034,1700767893.622897,1700767893.412000,'\0\0\0\0\0\0\0\0\0\0ÿÿUrŠÜ',0,403,0,0,0,'http://kingsvillelivestock.com/simple.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NpbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222035,0.000000,1700775125.231115,'\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222036,1700776720.290374,1700776720.072600,'\0\0\0\0\0\0\0\0\0\0ÿÿ6$l•',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/fix/up.php','kingsvillelivestock.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) colonel Chrome/196.3.1597.530 Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgY29sb25lbCBDaHJvbWUvMTk2LjMuMTU5Ny41MzAgU2FmYXJpLzUzNy4zNg==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9maXgvdXAucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222037,1700776696.519140,1700776696.303600,'\0\0\0\0\0\0\0\0\0\0ÿÿ6$l•',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/core/include.php','kingsvillelivestock.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) colonel Chrome/196.3.1597.530 Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgY29sb25lbCBDaHJvbWUvMTk2LjMuMTU5Ny41MzAgU2FmYXJpLzUzNy4zNg==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9jb3JlL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222038,0.000000,1700787352.596537,'\0\0\0\0\0\0\0\0\0\0ÿÿÃÉáu',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222039,0.000000,1700788176.598124,'\0\0\0\0\0\0\0\0\0\0ÿÿ3&\'?',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222040,0.000000,1700799010.132697,'\0\0\0\0\0\0\0\0\0\0ÿÿ”HÏn',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222041,0.000000,1700801105.130645,'\0\0\0\0\0\0\0\0\0\0ÿÿ3ŸjX',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222042,1700801965.035510,1700801964.844600,'\0\0\0\0\0\0\0\0\0\0ÿÿUrŠÜ',0,403,0,0,0,'https://kingsvillelivestock.com/chosen.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(222043,1700801964.225671,1700801964.004400,'\0\0\0\0\0\0\0\0\0\0ÿÿUrŠÜ',0,403,0,0,0,'http://kingsvillelivestock.com/simple.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NpbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222044,0.000000,1700802032.975929,'\0\0\0\0\0\0\0\0\0\0ÿÿ5c',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://www.bauer-logistik.de/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36','loginFailValidUsername',NULL,NULL),(222045,0.000000,1700802525.139548,'\0\0\0\0\0\0\0\0\0\0ÿÿÆý<',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222046,0.000000,1700803135.220763,'\0\0\0\0\0\0\0\0\0\0ÿÿÃH',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222047,0.000000,1700803704.008955,'\0\0\0\0\0\0\0\0\0\0ÿÿ3Oç',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(222048,0.000000,1700804778.479768,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGë',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222049,0.000000,1700806196.638078,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmËá',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222050,0.000000,1700807095.862112,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ©’{',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222051,0.000000,1700807499.369290,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222052,0.000000,1700807907.603880,'\0\0\0\0\0\0\0\0\0\0ÿÿ²!‚›',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222053,0.000000,1700808747.958164,'\0\0\0\0\0\0\0\0\0\0ÿÿR¥¸L',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222054,0.000000,1700809949.203138,'\0\0\0\0\0\0\0\0\0\0ÿÿ/nŠJ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222055,0.000000,1700810333.296610,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?³à',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222056,0.000000,1700810744.303349,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmãx',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222057,0.000000,1700811169.032765,'\0\0\0\0\0\0\0\0\0\0ÿÿxMT',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222058,0.000000,1700812064.805034,'\0\0\0\0\0\0\0\0\0\0ÿÿ3ÿ@:',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222059,0.000000,1700812856.347911,'\0\0\0\0\0\0\0\0\0\0ÿÿÚÔ±',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222060,0.000000,1700813307.600918,'\0\0\0\0\0\0\0\0\0\0ÿÿg˜OÉ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222061,0.000000,1700814638.975392,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ©”\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222062,0.000000,1700815108.946184,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hxæ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222063,0.000000,1700815591.908066,'\0\0\0\0\0\0\0\0\0\0ÿÿKwÝP',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222064,0.000000,1700817122.976035,'\0\0\0\0\0\0\0\0\0\0ÿÿæÛv',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222065,0.000000,1700818136.575913,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm\"F',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222066,0.000000,1700819188.456434,'\0\0\0\0\0\0\0\0\0\0ÿÿD²•8',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222067,0.000000,1700820311.415541,'\0\0\0\0\0\0\0\0\0\0ÿÿÌ¼×ú',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222068,0.000000,1700822537.047906,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>¶õ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222069,0.000000,1700823677.479196,'\0\0\0\0\0\0\0\0\0\0ÿÿxMT',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222070,0.000000,1700824796.145917,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘¸',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222071,0.000000,1700825937.133174,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGì8',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222072,0.000000,1700827099.625637,'\0\0\0\0\0\0\0\0\0\0ÿÿWìÑ¤',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222073,0.000000,1700828238.117614,'\0\0\0\0\0\0\0\0\0\0ÿÿÚÔ±',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222074,0.000000,1700829404.797618,'\0\0\0\0\0\0\0\0\0\0ÿÿoZ–«',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222075,1700831399.207845,1700831399.025900,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/s_ne.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3NfbmUucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222076,1700831397.230448,1700831397.025200,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/s_e.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3NfZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222077,1700831389.998361,1700831389.805500,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/style.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3dwLWFkbWluL3N0eWxlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222078,1700831388.286179,1700831388.100100,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/style.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3N0eWxlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222079,1700831387.120654,1700831386.928300,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/wp-load.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3dwLWxvYWQucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222080,1700831385.051618,1700831384.830900,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/wp-load.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3dwLWxvYWQucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222081,1700831434.015104,1700831433.830800,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/doc.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L2RvYy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222082,1700831431.654222,1700831431.467900,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/qindex.php?daksldlkdsadas=1','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3FpbmRleC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222083,1700831421.365983,1700831421.183900,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/old-index.php?daksldlkdsadas=1','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L29sZC1pbmRleC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222084,1700831419.572607,1700831419.386500,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/wp-load.php?daksldlkdsadas=1','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3dwLWxvYWQucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222085,1700831416.102294,1700831415.910400,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/radio.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3JhZGlvLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222086,1700831452.602024,1700831452.411500,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/wp-signin.php?dizo=&ping=','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3dwLXNpZ25pbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222087,1700831450.086265,1700831449.894900,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/ups.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3Vwcy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222088,1700831469.437127,1700831469.244400,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/wp-class.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3dwLWluY2x1ZGVzL3dwLWNsYXNzLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222089,1700831484.937055,1700831484.749700,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/css.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L2Nzcy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222090,1700831511.074587,1700831510.890400,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/legion.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L2xlZ2lvbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222091,1700831506.973363,1700831506.787300,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/config.bak.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL2NvbmZpZy5iYWsucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222092,1700831506.148595,1700831505.963400,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/config.bak.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L2NvbmZpZy5iYWsucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222093,1700831499.525330,1700831499.334300,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/backup_index.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9iYWNrdXBfaW5kZXgucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222094,1700831496.903369,1700831496.718400,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/wp-booking.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3dwLWJvb2tpbmcucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222095,1700831527.457332,1700831527.270100,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/db-cache.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3dwLWNvbnRlbnQvZGItY2FjaGUucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222096,1700831521.762718,1700831521.579700,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/gank.php.PhP','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L2dhbmsucGhwLlBoUA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222097,1700831517.359411,1700831517.167200,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/wp-plugins.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3dwLXBsdWdpbnMucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222098,1700831579.609046,1700831579.426600,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/templates/beez3/index.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3RlbXBsYXRlcy9iZWV6My9pbmRleC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222099,1700831579.261287,1700831579.075900,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/config.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L2NvbmZpZy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222100,1700831578.924135,1700831578.742700,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/alfa.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L2FsZmEucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222101,1700831578.444198,1700831578.261800,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/wp.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3dwLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222102,1700831576.584534,1700831576.400200,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/test.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3Rlc3QucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222103,1700831576.248446,1700831576.064800,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/a.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L2EucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222104,1700831575.773276,1700831575.586900,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/z.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3oucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222105,1700831574.947268,1700831574.759200,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/x.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3gucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222106,1700831574.394168,1700831574.207300,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/1.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"LzEucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222107,1700831574.021757,1700831573.840600,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/upload.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3VwbG9hZC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222108,1700831573.679549,1700831573.497000,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/up.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3VwLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222109,1700831573.233629,1700831573.050200,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/shell.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3NoZWxsLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222110,1700831572.690915,1700831572.507200,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/wso.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3dzby5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222111,1700831572.354452,1700831572.169500,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/xleet.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3hsZWV0LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222112,1700831571.880208,1700831571.695200,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/olux.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L29sdXgucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222113,1700831570.829589,1700831570.644300,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/shells.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3NoZWxscy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222114,1700831570.008242,1700831569.817900,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/about.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L2Fib3V0LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222115,1700831569.332534,1700831569.147800,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/index.php?3x=3x','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222116,1700831568.801846,1700831568.615800,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/ubh/up.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy91YmgvdXAucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222117,1700831559.368546,1700831559.182000,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/sites/default/files/ALFA_DATA','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3NpdGVzL2RlZmF1bHQvZmlsZXMvQUxGQV9EQVRB\",\"category\":\"brute-force\",\"ssl\":0}'),(222118,1700831558.318939,1700831558.133400,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/templates/beez3/cgialfa','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3RlbXBsYXRlcy9iZWV6My9jZ2lhbGZh\",\"category\":\"brute-force\",\"ssl\":0}'),(222119,1700831557.660549,1700831557.475500,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/templates/beez3/ALFA_DATA','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3RlbXBsYXRlcy9iZWV6My9BTEZBX0RBVEE=\",\"category\":\"brute-force\",\"ssl\":0}'),(222120,1700831556.896422,1700831556.707800,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/ALFA_DATA','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3dwLWNvbnRlbnQvQUxGQV9EQVRB\",\"category\":\"brute-force\",\"ssl\":0}'),(222121,1700831555.600911,1700831555.413700,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/ALFA_DATA','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3dwLWluY2x1ZGVzL0FMRkFfREFUQQ==\",\"category\":\"brute-force\",\"ssl\":0}'),(222122,1700831553.951516,1700831553.766000,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/uploads/cgialfa','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3dwLWNvbnRlbnQvdXBsb2Fkcy9jZ2lhbGZh\",\"category\":\"brute-force\",\"ssl\":0}'),(222123,1700831553.321624,1700831553.137100,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/.well-known/alfacgiapi','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"Ly53ZWxsLWtub3duL2FsZmFjZ2lhcGk=\",\"category\":\"brute-force\",\"ssl\":0}'),(222124,1700831552.346692,1700831552.162800,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/.well-known/ALFA_DATA','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"Ly53ZWxsLWtub3duL0FMRkFfREFUQQ==\",\"category\":\"brute-force\",\"ssl\":0}'),(222125,1700831551.668943,1700831551.484600,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/cgialfa','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L2NnaWFsZmE=\",\"category\":\"brute-force\",\"ssl\":0}'),(222126,1700831551.034157,1700831550.843800,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/alfacgiapi','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L2FsZmFjZ2lhcGk=\",\"category\":\"brute-force\",\"ssl\":0}'),(222127,1700831550.251684,1700831550.066700,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/ALFA_DATA','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L0FMRkFfREFUQQ==\",\"category\":\"brute-force\",\"ssl\":0}'),(222128,1700831549.026586,1700831548.846200,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/error.php?phpshells=','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L2Vycm9yLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222129,1700831547.048495,1700831546.863600,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/wp-backup-sql-302.php','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3dwLWJhY2t1cC1zcWwtMzAyLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222130,1700831545.481112,1700831545.296700,'\0\0\0\0\0\0\0\0\0\0ÿÿ“N/Ô',0,403,0,0,0,'http://kingsvillelivestock.com/system_log.php?bala=up','www.bing.com','wp_is_mobile','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"d3BfaXNfbW9iaWxl\",\"path\":\"L3N5c3RlbV9sb2cucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222131,0.000000,1700831779.958521,'\0\0\0\0\0\0\0\0\0\0ÿÿÆÛÙ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222132,0.000000,1700832966.934459,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hxæ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222133,0.000000,1700837558.380993,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘W',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222134,0.000000,1700838179.875012,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥2Ñ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222135,0.000000,1700838340.220831,'\0\0\0\0\0\0\0\0\0\0ÿÿéœµ',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://geopat.pro/wp-login.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','loginFailValidUsername',NULL,NULL),(222136,0.000000,1700853617.353794,'\0\0\0\0\0\0\0\0\0\0ÿÿ§cX',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222137,0.000000,1700854583.230759,'\0\0\0\0\0\0\0\0\0\0ÿÿe€r;',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://sites.dwrl.utexas.edu/davis/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36','loginFailValidUsername',NULL,NULL),(222138,0.000000,1700863936.610848,'\0\0\0\0\0\0\0\0\0\0ÿÿ”HÖÂ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222139,0.000000,1700870038.256028,'\0\0\0\0\0\0\0\0\0\0ÿÿ”HÖõ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222140,0.000000,1700873153.683345,'\0\0\0\0\0\0\0\0\0\0ÿÿJÐ÷Ô',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222141,0.000000,1700878590.719400,'\0\0\0\0\0\0\0\0\0\0ÿÿ}ÔÚ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222142,0.000000,1700879704.040770,'\0\0\0\0\0\0\0\0\0\0ÿÿƒF',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222143,0.000000,1700881355.963934,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"`ƒ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222144,0.000000,1700882683.284878,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?³',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222145,0.000000,1700883327.366286,'\0\0\0\0\0\0\0\0\0\0ÿÿyO÷',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222146,0.000000,1700883921.311667,'\0\0\0\0\0\0\0\0\0\0ÿÿH§@s',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222147,0.000000,1700885205.865755,'\0\0\0\0\0\0\0\0\0\0ÿÿgx°É',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222148,0.000000,1700887071.429300,'\0\0\0\0\0\0\0\0\0\0ÿÿD²–N',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222149,0.000000,1700888343.931116,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨r*',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222150,0.000000,1700888952.245955,'\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222151,0.000000,1700888987.591312,'\0\0\0\0\0\0\0\0\0\0ÿÿ­É´Ò',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222152,0.000000,1700890265.329321,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmFI',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222153,0.000000,1700890920.765477,'\0\0\0\0\0\0\0\0\0\0ÿÿgx°É',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222154,0.000000,1700891588.349432,'\0\0\0\0\0\0\0\0\0\0ÿÿ3ÿ@:',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222155,0.000000,1700892197.517946,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmÉª',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222156,1700892355.873656,1700892355.659000,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/inputs.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2lucHV0cy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222157,0.000000,1700892826.146673,'\0\0\0\0\0\0\0\0\0\0ÿÿ„”x',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222158,0.000000,1700893498.576166,'\0\0\0\0\0\0\0\0\0\0ÿÿ«ôÌ\Z',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222159,0.000000,1700895443.784920,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨j',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222160,0.000000,1700896112.262283,'\0\0\0\0\0\0\0\0\0\0ÿÿWìÑ¤',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222161,0.000000,1700896776.269283,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘\r',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222162,0.000000,1700897434.080247,'\0\0\0\0\0\0\0\0\0\0ÿÿD²’',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222163,0.000000,1700898768.471519,'\0\0\0\0\0\0\0\0\0\0ÿÿ.¶s',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222164,1700899145.009291,1700899144.795200,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G',0,403,0,0,0,'http://kingsvillelivestock.com/admin/plugins/fileupload/index.php?file=tf2rghf.jpg',NULL,'ALittle Client','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"QUxpdHRsZSBDbGllbnQ=\",\"path\":\"L2FkbWluL3BsdWdpbnMvZmlsZXVwbG9hZC9pbmRleC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222165,0.000000,1700900150.840211,'\0\0\0\0\0\0\0\0\0\0ÿÿQD{“',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222166,0.000000,1700901366.445551,'\0\0\0\0\0\0\0\0\0\0ÿÿD²•8',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222167,0.000000,1700901938.100995,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm‰',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222168,0.000000,1700902489.272468,'\0\0\0\0\0\0\0\0\0\0ÿÿ­É¹K',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222169,0.000000,1700903029.474317,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ©—÷',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222170,0.000000,1700903577.900904,'\0\0\0\0\0\0\0\0\0\0ÿÿgZá×',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222171,0.000000,1700904073.390864,'\0\0\0\0\0\0\0\0\0\0ÿÿH§OK',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222172,0.000000,1700904530.994903,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹=š¿',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222173,0.000000,1700905948.620615,'\0\0\0\0\0\0\0\0\0\0ÿÿk´y4',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222174,0.000000,1700907760.504094,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶2„o',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222175,0.000000,1700908194.194487,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨ku',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222176,0.000000,1700908625.870610,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Íƒ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222177,0.000000,1700909052.838978,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í‘™',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222178,0.000000,1700909935.145054,'\0\0\0\0\0\0\0\0\0\0ÿÿD²á',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222179,0.000000,1700910306.104189,'\0\0\0\0\0\0\0\0\0\0ÿÿ«ú¥…',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://alirajponteggi.it/wp-login.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','loginFailValidUsername',NULL,NULL),(222180,0.000000,1700910368.089679,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í\nF',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222181,0.000000,1700910791.306348,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥Ñ÷',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222182,0.000000,1700911650.887867,'\0\0\0\0\0\0\0\0\0\0ÿÿ­É½<',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222183,0.000000,1700912497.260741,'\0\0\0\0\0\0\0\0\0\0ÿÿaJÓ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222184,0.000000,1700912918.975766,'\0\0\0\0\0\0\0\0\0\0ÿÿ­Éµ¸',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222185,0.000000,1700914223.819810,'\0\0\0\0\0\0\0\0\0\0ÿÿD²—ó',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222186,0.000000,1700914677.942434,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmã',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222187,0.000000,1700915124.186995,'\0\0\0\0\0\0\0\0\0\0ÿÿH§,',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222188,0.000000,1700916023.491095,'\0\0\0\0\0\0\0\0\0\0ÿÿ”ŸE',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222189,0.000000,1700916909.526067,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222190,0.000000,1700917365.256669,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨rÀ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222191,0.000000,1700917821.186189,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?}',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222192,0.000000,1700918719.711010,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGð',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222193,0.000000,1700922173.300872,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGæB',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222194,0.000000,1700923600.518274,'\0\0\0\0\0\0\0\0\0\0ÿÿ#',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222195,0.000000,1700924297.931862,'\0\0\0\0\0\0\0\0\0\0ÿÿ[}:',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222196,0.000000,1700924993.231872,'\0\0\0\0\0\0\0\0\0\0ÿÿŸß-Ô',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222197,0.000000,1700925685.293400,'\0\0\0\0\0\0\0\0\0\0ÿÿD²¥È',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222198,0.000000,1700938271.037778,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹vÄ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222199,0.000000,1700940935.222257,'\0\0\0\0\0\0\0\0\0\0ÿÿ”HÖõ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222200,1700948514.731584,1700948514.511200,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/inputs.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2lucHV0cy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222201,1700950830.293393,1700950830.108700,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'https://kingsvillelivestock.com/atomlib.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2F0b21saWIucGhw\",\"category\":\"brute-force\",\"ssl\":1}'),(222202,1700950827.857620,1700950827.666400,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222203,1700950824.828664,1700950824.634100,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'https://kingsvillelivestock.com/wp-apxupx.php?apx=upx','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFweHVweC5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(222204,1700950822.739295,1700950822.526800,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/simple.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NpbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222205,1700955903.815796,1700955903.590800,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/inputs.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2lucHV0cy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222206,1700956200.478724,1700956200.290400,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/BAK',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L0JBSw==\",\"category\":\"brute-force\",\"ssl\":1}'),(222207,1700956196.904381,1700956196.713900,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/backup',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2JhY2t1cA==\",\"category\":\"brute-force\",\"ssl\":1}'),(222208,1700956193.754313,1700956193.568800,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/demo',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2RlbW8=\",\"category\":\"brute-force\",\"ssl\":1}'),(222209,1700956192.720095,1700956192.538400,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/Old',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L09sZA==\",\"category\":\"brute-force\",\"ssl\":1}'),(222210,1700956191.404668,1700956191.214800,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/old_files',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L29sZF9maWxlcw==\",\"category\":\"brute-force\",\"ssl\":1}'),(222211,1700956189.142051,1700956188.956600,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/BACKUP',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L0JBQ0tVUA==\",\"category\":\"brute-force\",\"ssl\":1}'),(222212,1700956185.877621,1700956185.693900,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/home',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2hvbWU=\",\"category\":\"brute-force\",\"ssl\":1}'),(222213,1700956179.940014,1700956179.750900,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/dev',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Rldg==\",\"category\":\"brute-force\",\"ssl\":1}'),(222214,1700956177.009969,1700956176.821600,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/blog',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Jsb2c=\",\"category\":\"brute-force\",\"ssl\":1}'),(222215,1700956175.974421,1700956175.781400,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/oldwebsite',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L29sZHdlYnNpdGU=\",\"category\":\"brute-force\",\"ssl\":1}'),(222216,1700956174.585222,1700956174.388900,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/old-site',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L29sZC1zaXRl\",\"category\":\"brute-force\",\"ssl\":1}'),(222217,1700956172.926709,1700956172.742900,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/BKP',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L0JLUA==\",\"category\":\"brute-force\",\"ssl\":1}'),(222218,1700956169.471916,1700956169.288200,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/staging',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3N0YWdpbmc=\",\"category\":\"brute-force\",\"ssl\":1}'),(222219,1700956168.164828,1700956167.976100,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/beta',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2JldGE=\",\"category\":\"brute-force\",\"ssl\":1}'),(222220,1700956165.914774,1700956165.732700,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/OLDSITE',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L09MRFNJVEU=\",\"category\":\"brute-force\",\"ssl\":1}'),(222221,1700956163.299485,1700956163.114600,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/old2',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L29sZDI=\",\"category\":\"brute-force\",\"ssl\":1}'),(222222,1700956159.339175,1700956159.150100,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/old1',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L29sZDE=\",\"category\":\"brute-force\",\"ssl\":1}'),(222223,1700956152.967243,1700956152.776300,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/wordpress',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dvcmRwcmVzcw==\",\"category\":\"brute-force\",\"ssl\":1}'),(222224,1700956148.959597,1700956148.718000,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/wp',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dw\",\"category\":\"brute-force\",\"ssl\":1}'),(222225,1700956147.586876,1700956147.371400,'\0\0\0\0\0\0\0\0\0\0ÿÿg¿ñv',0,403,0,0,0,'https://kingsvillelivestock.com/',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Lw==\",\"category\":\"brute-force\",\"ssl\":1}'),(222226,1700961202.644379,1700961202.431900,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/inputs.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2lucHV0cy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222227,0.000000,1700961411.652259,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨s¹',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222228,0.000000,1700961608.378264,'\0\0\0\0\0\0\0\0\0\0ÿÿ-òàs',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://argitalplasticos.com.ar/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15','loginFailValidUsername',NULL,NULL),(222229,0.000000,1700962136.263143,'\0\0\0\0\0\0\0\0\0\0ÿÿ{9?',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222230,0.000000,1700962822.392964,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨}ñ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222231,0.000000,1700963598.400327,'\0\0\0\0\0\0\0\0\0\0ÿÿzrOß',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222232,0.000000,1700964352.700746,'\0\0\0\0\0\0\0\0\0\0ÿÿk´y4',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222233,0.000000,1700965157.154684,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ©”\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222234,0.000000,1700966789.036663,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨{.',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222235,0.000000,1700967642.149830,'\0\0\0\0\0\0\0\0\0\0ÿÿD²—ó',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(222236,0.000000,1700968513.970452,'\0\0\0\0\0\0\0\0\0\0ÿÿ”B’\"',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222237,0.000000,1700969406.809541,'\0\0\0\0\0\0\0\0\0\0ÿÿg˜¤Š',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222238,0.000000,1700971191.814827,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾h€v',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','http://twentyonegoals.com/blog/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0','loginFailValidUsername',NULL,NULL),(222239,0.000000,1700971224.273133,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍG',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222240,0.000000,1700972178.268103,'\0\0\0\0\0\0\0\0\0\0ÿÿt>á‡',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222241,0.000000,1700973131.123859,'\0\0\0\0\0\0\0\0\0\0ÿÿË€á',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222242,0.000000,1700974042.304285,'\0\0\0\0\0\0\0\0\0\0ÿÿ+R­',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222243,0.000000,1700975027.122197,'\0\0\0\0\0\0\0\0\0\0ÿÿ/d)}',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222244,0.000000,1700975951.369764,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hö½',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222245,0.000000,1700976741.284611,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hö½',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222246,0.000000,1700977466.473508,'\0\0\0\0\0\0\0\0\0\0ÿÿæÛv',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222247,0.000000,1700978085.518128,'\0\0\0\0\0\0\0\0\0\0ÿÿ+R­',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222248,1700978372.228166,1700978371.901200,'\0\0\0\0\0\0\0\0\0\0ÿÿUrŠÜ',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222249,1700978370.959493,1700978370.741100,'\0\0\0\0\0\0\0\0\0\0ÿÿUrŠÜ',0,403,0,0,0,'http://kingsvillelivestock.com/sample.php?pd=1&mapname=ova-tools.xml','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NhbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222250,0.000000,1700978708.879088,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¹p',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222251,0.000000,1700979826.131671,'\0\0\0\0\0\0\0\0\0\0ÿÿÆÜc',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222252,0.000000,1700980343.058966,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hzä',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222253,0.000000,1700980856.278759,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>·',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222254,0.000000,1700981841.689346,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t›',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222255,0.000000,1700982354.489182,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGê#',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222256,0.000000,1700983342.073387,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨r\\',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222257,0.000000,1700984823.404740,'\0\0\0\0\0\0\0\0\0\0ÿÿaJÓ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222258,0.000000,1700985290.729571,'\0\0\0\0\0\0\0\0\0\0ÿÿÆÅ¸',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222259,0.000000,1700985789.432574,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>±',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222260,0.000000,1700986261.690638,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmNT',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222261,0.000000,1700987175.772211,'\0\0\0\0\0\0\0\0\0\0ÿÿÎÆ–2',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222262,0.000000,1700988522.481607,'\0\0\0\0\0\0\0\0\0\0ÿÿD²–¬',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222263,0.000000,1700988972.011550,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm!',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222264,0.000000,1700989446.563216,'\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0çm',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222265,0.000000,1700989927.192873,'\0\0\0\0\0\0\0\0\0\0ÿÿCÍÚ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222266,0.000000,1700991921.458775,'\0\0\0\0\0\0\0\0\0\0ÿÿk´y\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222267,0.000000,1700993561.929237,'\0\0\0\0\0\0\0\0\0\0ÿÿk´y\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222268,0.000000,1700993895.190284,'\0\0\0\0\0\0\0\0\0\0ÿÿ}£ö ',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','http://ellenmarie.eu/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15','loginFailValidUsername',NULL,NULL),(222269,0.000000,1700994147.136335,'\0\0\0\0\0\0\0\0\0\0ÿÿ[qå',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222270,0.000000,1700996589.225008,'\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0çm',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222271,0.000000,1700997913.485283,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>¶õ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222272,0.000000,1700999297.524645,'\0\0\0\0\0\0\0\0\0\0ÿÿ§Gb',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222273,0.000000,1701000003.282874,'\0\0\0\0\0\0\0\0\0\0ÿÿ,Ÿ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222274,0.000000,1701000692.681189,'\0\0\0\0\0\0\0\0\0\0ÿÿoRJ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222275,1701015441.308630,1701015441.091300,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222276,1701015428.991449,1701015428.775800,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]',0,403,0,0,0,'http://kingsvillelivestock.com/sample.php?pd=1&mapname=ova-tools.xml','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NhbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222277,0.000000,1701019418.966263,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¸™',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222278,0.000000,1701021624.989770,'\0\0\0\0\0\0\0\0\0\0ÿÿ=ö[',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222279,1701022173.449639,1701022173.232500,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\Z',0,403,0,0,0,'http://kingsvillelivestock.com/inputs.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2lucHV0cy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222280,0.000000,1701023803.549261,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm¿Ç',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222281,0.000000,1701025002.271463,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶4‹',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://www.gregorwithalm.at/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36','loginFailValidUsername',NULL,NULL),(222282,0.000000,1701027063.709060,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm¿Ç',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222283,1701027087.707225,1701027087.517700,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222284,1701027081.829789,1701027081.612400,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]',0,403,0,0,0,'http://kingsvillelivestock.com/sample.php?pd=1&mapname=ova-tools.xml','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NhbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222285,0.000000,1701034343.886221,'\0\0\0\0\0\0\0\0\0\0ÿÿ9€vB',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222286,0.000000,1701036380.536288,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í@†',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222287,0.000000,1701055888.800559,'\0\0\0\0\0\0\0\0\0\0ÿÿvDy',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://osegredoquantico.com.br/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36','loginFailValidUsername',NULL,NULL),(222288,0.000000,1701058365.571156,'\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222289,0.000000,1701060548.930875,'\0\0\0\0\0\0\0\0\0\0ÿÿD²£Ü',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222290,1701063994.969440,1701063994.759100,'\0\0\0\0\0\0\0\0\0\0ÿÿmFdD',0,200,0,0,0,'http://kingsvillelivestock.com/wp-config.inc',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.43 Safari/537.31','logged:waf','wp-config.php back-up probing','{\"learningMode\":0,\"failedRules\":\"logged|501\",\"paramKey\":\"cmVxdWVzdC5wYXRo\",\"paramValue\":\"L3dwLWNvbmZpZy5pbmM=\",\"path\":\"L3dwLWNvbmZpZy5pbmM=\",\"category\":\"discovery-and-probing\",\"ssl\":0}'),(222291,1701063997.623673,1701063997.447800,'\0\0\0\0\0\0\0\0\0\0ÿÿmFdD',0,200,0,0,0,'https://kingsvillelivestock.com/wp-config.inc',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.43 Safari/537.31','logged:waf','wp-config.php back-up probing','{\"learningMode\":0,\"failedRules\":\"logged|501\",\"paramKey\":\"cmVxdWVzdC5wYXRo\",\"paramValue\":\"L3dwLWNvbmZpZy5pbmM=\",\"path\":\"L3dwLWNvbmZpZy5pbmM=\",\"category\":\"discovery-and-probing\",\"ssl\":1}'),(222292,0.000000,1701066137.462964,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍJ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222293,0.000000,1701067277.462279,'\0\0\0\0\0\0\0\0\0\0ÿÿ¢M',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222294,0.000000,1701086218.823357,'\0\0\0\0\0\0\0\0\0\0ÿÿ„”KË',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222295,1701087619.242588,1701087619.017500,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ö,',0,403,0,0,0,'https://kingsvillelivestock.com/sample.php?pd=1&mapname=sample-x5.xml','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NhbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(222296,1701087603.856383,1701087603.638300,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ö,',0,403,0,0,0,'http://kingsvillelivestock.com/sample.php?pd=1&mapname=sample-x5.xml','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NhbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222297,0.000000,1701088961.199309,'\0\0\0\0\0\0\0\0\0\0ÿÿ[»”—',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://freelancingsupport.com/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36','loginFailValidUsername',NULL,NULL),(222298,0.000000,1701090426.590527,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í@†',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222299,1701101954.245350,1701101954.054300,'\0\0\0\0\0\0\0\0\0\0ÿÿ&\r“',0,403,0,0,0,'http://kingsvillelivestock.com//wp-admin/css/colors/blue/blue.php?wall=ZWNobyBhRHJpdjQ7ZXZhbCgkX1BPU1RbJ3Z6J10pOw%3D%3D','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Ly93cC1hZG1pbi9jc3MvY29sb3JzL2JsdWUvYmx1ZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222300,0.000000,1701104045.056480,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z',0,302,0,2,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','loginOK',NULL,NULL),(222301,1701108129.388731,1701108129.173900,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'http://www.kingsvillelivestock.com/chosen.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222302,1701108107.437818,1701108107.224300,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'http://www.kingsvillelivestock.com/sample.php?pd=1&mapname=ova-tools.xml','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NhbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222303,0.000000,1701113047.098776,'\0\0\0\0\0\0\0\0\0\0ÿÿg“#6',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222304,1701114432.902109,1701114432.687900,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/qualifire/scripts/admin/uploadify/uploadify.css',NULL,'ALittle Client','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"QUxpdHRsZSBDbGllbnQ=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL3F1YWxpZmlyZS9zY3JpcHRzL2FkbWluL3VwbG9hZGlmeS91cGxvYWRpZnkuY3Nz\",\"category\":\"brute-force\",\"ssl\":0}'),(222305,1701115255.433177,1701115255.237100,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹ØF',0,403,0,0,0,'http://kingsvillelivestock.com/.well-knownold/',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"Ly53ZWxsLWtub3dub2xkLw==\",\"category\":\"brute-force\",\"ssl\":0}'),(222306,1701115254.029083,1701115253.813000,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹ØF',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluLw==\",\"category\":\"brute-force\",\"ssl\":0}'),(222307,1701119986.796978,1701119986.610700,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD',0,403,0,0,0,'http://kingsvillelivestock.com/sample.php?pd=1&mapname=ova-tools.xml','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NhbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222308,1701120015.600756,1701120015.411300,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222309,1701125637.165018,1701125636.948100,'\0\0\0\0\0\0\0\0\0\0ÿÿ3þÕC',0,403,0,0,0,'http://kingsvillelivestock.com/shell','kingsvillelivestock.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) colonel Chrome/196.3.1597.530 Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgY29sb25lbCBDaHJvbWUvMTk2LjMuMTU5Ny41MzAgU2FmYXJpLzUzNy4zNg==\",\"path\":\"L3NoZWxs\",\"category\":\"brute-force\",\"ssl\":0}'),(222310,0.000000,1701127072.362356,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾Pü1',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://actions-secours.com/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15','loginFailValidUsername',NULL,NULL),(222311,1701132448.263596,1701132448.052600,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\\',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222312,1701132428.914653,1701132428.699100,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\\',0,403,0,0,0,'http://kingsvillelivestock.com/sample.php?pd=1&mapname=ova-tools.xml','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NhbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222313,0.000000,1701138049.471339,'\0\0\0\0\0\0\0\0\0\0ÿÿgš¸*',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222314,0.000000,1701138384.633481,'\0\0\0\0\0\0\0\0\0\0ÿÿÞ‘D',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://coinmasterfree-spin.com/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36','loginFailValidUsername',NULL,NULL),(222315,0.000000,1701149272.418805,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾`L\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222316,0.000000,1701150067.527554,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¹p',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222317,0.000000,1701151874.460288,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨`·',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222318,0.000000,1701153561.016134,'\0\0\0\0\0\0\0\0\0\0ÿÿD²”›',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222319,0.000000,1701154273.486456,'\0\0\0\0\0\0\0\0\0\0ÿÿgš¸*',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222320,0.000000,1701154562.179965,'\0\0\0\0\0\0\0\0\0\0ÿÿg«´',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222321,0.000000,1701154915.502684,'\0\0\0\0\0\0\0\0\0\0ÿÿD²”',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222322,0.000000,1701155780.476798,'\0\0\0\0\0\0\0\0\0\0ÿÿ·[È',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222323,1701155967.313224,1701155967.094400,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222324,1701155903.095137,1701155902.869500,'\0\0\0\0\0\0\0\0\0\0ÿÿU×¢ó',0,403,0,0,0,'http://kingsvillelivestock.com/sample.php?pd=1&mapname=ova-tools.xml','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NhbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222325,0.000000,1701156118.638382,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGæB',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222326,0.000000,1701156361.827583,'\0\0\0\0\0\0\0\0\0\0ÿÿg˜¤Š',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222327,0.000000,1701156665.729834,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hö½',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222328,0.000000,1701157730.831239,'\0\0\0\0\0\0\0\0\0\0ÿÿD²Þ­',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222329,0.000000,1701157951.602112,'\0\0\0\0\0\0\0\0\0\0ÿÿH§Oˆ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222330,0.000000,1701158229.322591,'\0\0\0\0\0\0\0\0\0\0ÿÿD²–B',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222331,0.000000,1701158469.656720,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘@',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222332,0.000000,1701159214.301994,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨j',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222333,0.000000,1701159439.858145,'\0\0\0\0\0\0\0\0\0\0ÿÿH§OK',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222334,0.000000,1701159715.212929,'\0\0\0\0\0\0\0\0\0\0ÿÿ.%©»',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222335,0.000000,1701159889.358195,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨}ñ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222336,0.000000,1701160156.840380,'\0\0\0\0\0\0\0\0\0\0ÿÿH§Oˆ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222337,0.000000,1701160779.190381,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌÙ-',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222338,0.000000,1701161014.986291,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌÜI',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222339,0.000000,1701161189.658827,'\0\0\0\0\0\0\0\0\0\0ÿÿØE¬G',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222340,0.000000,1701161420.193486,'\0\0\0\0\0\0\0\0\0\0ÿÿ3[ý ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222341,0.000000,1701161801.543899,'\0\0\0\0\0\0\0\0\0\0ÿÿ”B‘',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222342,0.000000,1701161989.689935,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹F_',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222343,0.000000,1701162217.935955,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘Ð',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222344,0.000000,1701162386.427899,'\0\0\0\0\0\0\0\0\0\0ÿÿØE¢ñ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222345,0.000000,1701162615.619542,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmËá',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222346,0.000000,1701162777.360196,'\0\0\0\0\0\0\0\0\0\0ÿÿD²÷½',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222347,0.000000,1701162995.541702,'\0\0\0\0\0\0\0\0\0\0ÿÿ¢ÕûV',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222348,0.000000,1701163415.180834,'\0\0\0\0\0\0\0\0\0\0ÿÿ-}ï³',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222349,0.000000,1701163591.570964,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm\"F',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222350,0.000000,1701163821.062796,'\0\0\0\0\0\0\0\0\0\0ÿÿAµo„',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222351,0.000000,1701164001.787258,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGë',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222352,0.000000,1701164236.708773,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¹p',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222353,0.000000,1701164420.343318,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘i',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222354,0.000000,1701164656.001350,'\0\0\0\0\0\0\0\0\0\0ÿÿD²÷:',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222355,0.000000,1701164829.521982,'\0\0\0\0\0\0\0\0\0\0ÿÿŸAy\Z',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222356,0.000000,1701165264.860876,'\0\0\0\0\0\0\0\0\0\0ÿÿ­É½<',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222357,0.000000,1701165959.334374,'\0\0\0\0\0\0\0\0\0\0ÿÿg«´',0,200,0,1,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailValidUsername',NULL,NULL),(222358,0.000000,1701166119.749625,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmá',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222359,0.000000,1701166572.231584,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hxæ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222360,0.000000,1701167015.779096,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmNT',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222361,0.000000,1701167464.636718,'\0\0\0\0\0\0\0\0\0\0ÿÿD²”',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222362,0.000000,1701167726.940831,'\0\0\0\0\0\0\0\0\0\0ÿÿn\'7',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222363,0.000000,1701168158.365685,'\0\0\0\0\0\0\0\0\0\0ÿÿD²•',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222364,0.000000,1701168622.774713,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?}',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222365,0.000000,1701168830.919686,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmNT',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222366,0.000000,1701169104.877745,'\0\0\0\0\0\0\0\0\0\0ÿÿ.%©»',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222367,0.000000,1701169568.113383,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?}',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222368,0.000000,1701170051.251490,'\0\0\0\0\0\0\0\0\0\0ÿÿecZ¯',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222369,0.000000,1701170255.146349,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?±Œ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222370,0.000000,1701171014.355007,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹	\'Y',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222371,0.000000,1701171222.359558,'\0\0\0\0\0\0\0\0\0\0ÿÿD²÷:',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222372,0.000000,1701171748.748491,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶\\˜_',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222373,0.000000,1701172025.732541,'\0\0\0\0\0\0\0\0\0\0ÿÿ-}ï³',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222374,0.000000,1701172534.975786,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍG',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222375,0.000000,1701173077.473407,'\0\0\0\0\0\0\0\0\0\0ÿÿ+ñH ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222376,0.000000,1701173306.344350,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘‘',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222377,0.000000,1701173602.631514,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍŽ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222378,0.000000,1701174165.071470,'\0\0\0\0\0\0\0\0\0\0ÿÿ±4 ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222379,0.000000,1701174397.006344,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘\r',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222380,0.000000,1701174945.270229,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>–õ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222381,0.000000,1701175245.230805,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨o',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222382,0.000000,1701175576.871170,'\0\0\0\0\0\0\0\0\0\0ÿÿH§OK',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222383,0.000000,1701175649.882778,'\0\0\0\0\0\0\0\0\0\0ÿÿ.ÿ”',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://www.sauberwohnen.de/wp-login.php','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0','loginFailValidUsername',NULL,NULL),(222384,0.000000,1701176062.493316,'\0\0\0\0\0\0\0\0\0\0ÿÿD²‘¸',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222385,0.000000,1701176684.652108,'\0\0\0\0\0\0\0\0\0\0ÿÿ]·ƒ5',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222386,0.000000,1701177132.237062,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍG',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222387,0.000000,1701181104.137364,'\0\0\0\0\0\0\0\0\0\0ÿÿH§Ñø',0,200,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','loginFailInvalidUsername',NULL,NULL),(222388,0.000000,1701181359.026632,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌØB',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222389,0.000000,1701181676.741874,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨uÒ',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222390,0.000000,1701181958.447224,'\0\0\0\0\0\0\0\0\0\0ÿÿoZ–$',0,503,0,0,0,'https://kingsvillelivestock.com/xmlrpc.php','','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222391,0.000000,1701188887.682278,'\0\0\0\0\0\0\0\0\0\0ÿÿ6%œð',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36','loginFailValidUsername',NULL,NULL),(222392,1701195892.365102,1701195892.145100,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'http://www.kingsvillelivestock.com/wp-content/plugins/core-plugin/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9jb3JlLXBsdWdpbi9pbmNsdWRlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222393,1701195874.723354,1701195874.537100,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'http://www.kingsvillelivestock.com/wp-includes/images/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL2ltYWdlcy9pbmNsdWRlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222394,1701195864.210527,1701195864.021600,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'http://www.kingsvillelivestock.com/wp-content/plugins/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9pbmNsdWRlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222395,1701195853.303047,1701195853.107800,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'http://www.kingsvillelivestock.com/wp-includes/widgets/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL3dpZGdldHMvaW5jbHVkZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222396,1701195843.213536,1701195842.991600,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'http://www.kingsvillelivestock.com/wp-content/plugins/WordPressCore/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9Xb3JkUHJlc3NDb3JlL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222397,1701195827.046928,1701195826.847600,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'http://www.kingsvillelivestock.com/wp-content/themes/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222398,1701195815.563382,1701195815.344700,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ü§',0,403,0,0,0,'http://www.kingsvillelivestock.com/wp-content/themes/sketch/404.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL3NrZXRjaC80MDQucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222399,0.000000,1701199068.212417,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹ÿë',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222400,0.000000,1701201348.260438,'\0\0\0\0\0\0\0\0\0\0ÿÿOÔñ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222401,1701201748.367637,1701201748.179700,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\\',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222402,1701201739.727406,1701201739.540700,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\\',0,403,0,0,0,'http://kingsvillelivestock.com/sample.php?pd=1&mapname=ova-tools.xml','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NhbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222403,0.000000,1701203893.770194,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌŠ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222404,0.000000,1701205539.451669,'\0\0\0\0\0\0\0\0\0\0ÿÿ±õÜ‘',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','http://tutajna.com/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36','loginFailValidUsername',NULL,NULL),(222405,1701207905.866857,1701207905.668800,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/uploads/xl2023.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdXBsb2Fkcy94bDIwMjMucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222406,1701207904.213364,1701207904.025400,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/iR7SzrsOUEP.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2lSN1N6cnNPVUVQLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222407,1701207902.729754,1701207902.531500,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/uploads/2023/07/xl2023.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIzLzA3L3hsMjAyMy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222408,1701207901.881948,1701207901.674000,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content//xl2023.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvL3hsMjAyMy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222409,1701207897.017189,1701207896.828600,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/admin-heade.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2FkbWluLWhlYWRlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222410,1701207895.790241,1701207895.602700,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/xleet-shell.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3hsZWV0LXNoZWxsLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222411,1701207892.842124,1701207892.659200,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/lock360.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2xvY2szNjAucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222412,1701207882.463783,1701207882.277500,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/index.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222413,1701207881.752165,1701207881.561300,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/images/iR7SzrsOUEP.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2ltYWdlcy9pUjdTenJzT1VFUC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222414,1701207878.565976,1701207878.381000,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/network/iR7SzrsOUEP.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL25ldHdvcmsvaVI3U3pyc09VRVAucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222415,1701207876.652702,1701207876.465600,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/js/widgets/iR7SzrsOUEP.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2pzL3dpZGdldHMvaVI3U3pyc09VRVAucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222416,1701207873.805607,1701207873.622400,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/user/iR7SzrsOUEP.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL3VzZXIvaVI3U3pyc09VRVAucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222417,1701207868.579318,1701207868.396700,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/images/iR7SzrsOUEP.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2ltYWdlcy9pUjdTenJzT1VFUC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222418,1701207866.993353,1701207866.808600,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/upgrade/iR7SzrsOUEP.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdXBncmFkZS9pUjdTenJzT1VFUC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222419,1701207866.308254,1701207866.124000,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/maint/iR7SzrsOUEP.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL21haW50L2lSN1N6cnNPVUVQLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222420,1701207865.123343,1701207864.934600,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/includes/iR7SzrsOUEP.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2luY2x1ZGVzL2lSN1N6cnNPVUVQLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222421,1701207864.009986,1701207863.822200,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/index.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222422,1701207858.406371,1701207858.219600,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/xl2023x.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3hsMjAyM3gucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222423,1701207854.258442,1701207854.066700,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/xxl.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3h4bC5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222424,1701207843.098180,1701207842.898800,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/xl2023.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3hsMjAyMy5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222425,1701207840.767230,1701207840.539400,'\0\0\0\0\0\0\0\0\0\0ÿÿY£Òù',0,403,0,0,0,'http://kingsvillelivestock.com/xleet.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3hsZWV0LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222426,0.000000,1701215612.201634,'\0\0\0\0\0\0\0\0\0\0ÿÿ²€\Z,',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222427,1701218627.183171,1701218626.996600,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/simple.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NpbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222428,1701218616.340710,1701218616.157800,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/admin.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvYWRtaW4ucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222429,1701218610.626128,1701218610.434500,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/wp-admin/about.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWFkbWluL2Fib3V0LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222430,1701218600.319611,1701218600.136200,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ø¼\\',0,403,0,0,0,'http://kingsvillelivestock.com/ms.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L21zLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222431,0.000000,1701220956.784936,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍJ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222432,0.000000,1701229240.716405,'\0\0\0\0\0\0\0\0\0\0ÿÿ—j&¦',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222433,0.000000,1701230225.747809,'\0\0\0\0\0\0\0\0\0\0ÿÿ”HÐÁ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222434,1701232760.350638,1701232760.157200,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\\',0,403,0,0,0,'http://kingsvillelivestock.com/chosen.php','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L2Nob3Nlbi5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222435,1701232750.867393,1701232750.633300,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯\\',0,403,0,0,0,'http://kingsvillelivestock.com/sample.php?pd=1&mapname=ova-tools.xml','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NhbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222436,0.000000,1701234260.847119,'\0\0\0\0\0\0\0\0\0\0ÿÿv¾Xã',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222437,0.000000,1701235224.739121,'\0\0\0\0\0\0\0\0\0\0ÿÿ—j&‘',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222438,0.000000,1701235525.055755,'\0\0\0\0\0\0\0\0\0\0ÿÿ{ü',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','http://leathersmaterial.com/wp-login.php','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12','loginFailValidUsername',NULL,NULL),(222439,1701240029.001838,1701240028.786200,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/core-plugin/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9jb3JlLXBsdWdpbi9pbmNsdWRlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222440,1701240001.043207,1701240000.828300,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/images/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL2ltYWdlcy9pbmNsdWRlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222441,1701239974.880289,1701239974.663500,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9pbmNsdWRlLnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222442,1701239959.600185,1701239959.380600,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD',0,403,0,0,0,'http://kingsvillelivestock.com/wp-includes/widgets/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWluY2x1ZGVzL3dpZGdldHMvaW5jbHVkZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222443,1701239932.023542,1701239931.803700,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/plugins/WordPressCore/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9Xb3JkUHJlc3NDb3JlL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222444,1701239912.611488,1701239912.391700,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/include.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL2luY2x1ZGUucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222445,1701239862.847545,1701239862.636200,'\0\0\0\0\0\0\0\0\0\0ÿÿ[\\ðD',0,403,0,0,0,'http://kingsvillelivestock.com/wp-content/themes/sketch/404.php',NULL,'Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL3NrZXRjaC80MDQucGhw\",\"category\":\"brute-force\",\"ssl\":0}'),(222446,0.000000,1701241282.306550,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍJ',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222447,1701245174.132733,1701245173.908000,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ&G',0,403,0,0,0,'http://kingsvillelivestock.com/admin/plugins/file-uploader/server/php/index.php?file=tf2rghf.jpg',NULL,'ALittle Client','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"QUxpdHRsZSBDbGllbnQ=\",\"path\":\"L2FkbWluL3BsdWdpbnMvZmlsZS11cGxvYWRlci9zZXJ2ZXIvcGhwL2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0}'),(222448,0.000000,1701245533.286685,'\0\0\0\0\0\0\0\0\0\0ÿÿ$Nœý',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://saxonforeverdiscography.com/wp-login.php','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12','loginFailValidUsername',NULL,NULL),(222449,0.000000,1701247643.955995,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨$',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222450,1701258209.525011,1701258209.330800,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]',0,403,0,0,0,'https://kingsvillelivestock.com/sample.php?pd=1&mapname=sample-x5.xml','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NhbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(222451,1701258200.521570,1701258200.299600,'\0\0\0\0\0\0\0\0\0\0ÿÿÂ©¯]',0,403,0,0,0,'http://kingsvillelivestock.com/sample.php?pd=1&mapname=sample-x5.xml','www.google.com','Mozlila/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','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3NhbXBsZS5waHA=\",\"category\":\"brute-force\",\"ssl\":0}'),(222452,0.000000,1701258728.520818,'\0\0\0\0\0\0\0\0\0\0ÿÿTLÓ',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222453,0.000000,1701258728.471967,'\0\0\0\0\0\0\0\0\0\0ÿÿTLÓ',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222454,0.000000,1701258785.865090,'\0\0\0\0\0\0\0\0\0\0ÿÿæ.Å',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222455,0.000000,1701258786.689916,'\0\0\0\0\0\0\0\0\0\0ÿÿæ.Å',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222456,0.000000,1701258833.348040,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"‡ž',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222457,0.000000,1701258833.448447,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"‡ž',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222458,0.000000,1701258878.886592,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨v=',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222459,0.000000,1701258878.894442,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨v=',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailValidUsername',NULL,NULL),(222460,0.000000,1701258882.084103,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"H{6',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222461,0.000000,1701258882.196622,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"H{6',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailValidUsername',NULL,NULL),(222462,0.000000,1701258921.682445,'\0\0\0\0\0\0\0\0\0\0ÿÿ†Ñ\'',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222463,0.000000,1701258921.866957,'\0\0\0\0\0\0\0\0\0\0ÿÿ†Ñ\'',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222464,0.000000,1701258958.890120,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹;!',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222465,0.000000,1701258958.888368,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹;!',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222466,0.000000,1701259022.764584,'\0\0\0\0\0\0\0\0\0\0ÿÿ>’ÿ',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222467,0.000000,1701259022.810188,'\0\0\0\0\0\0\0\0\0\0ÿÿ>’ÿ',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222468,0.000000,1701259052.926606,'\0\0\0\0\0\0\0\0\0\0ÿÿ”H±4',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222469,0.000000,1701259052.926579,'\0\0\0\0\0\0\0\0\0\0ÿÿ”H±4',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222470,0.000000,1701259082.595400,'\0\0\0\0\0\0\0\0\0\0ÿÿ¨\0‡=',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222471,0.000000,1701259082.578459,'\0\0\0\0\0\0\0\0\0\0ÿÿ¨\0‡=',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222472,0.000000,1701259110.114430,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"[84',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222473,0.000000,1701259110.098550,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"[84',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222474,1701259110.723547,1701259110.504900,'\0\0\0\0\0\0\0\0\0\0ÿÿ3ÿÄX',0,403,0,0,0,'http://kingsvillelivestock.com/index.php?of=1&a=1','kingsvillelivestock.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) colonel Chrome/196.3.1597.530 Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgY29sb25lbCBDaHJvbWUvMTk2LjMuMTU5Ny41MzAgU2FmYXJpLzUzNy4zNg==\",\"path\":\"L2luZGV4LnBocA==\",\"category\":\"brute-force\",\"ssl\":0,\"fullRequest\":\"R0VUIC9pbmRleC5waHA\\/b2Y9MSZhPTEgSFRUUC8xLjEKVXNlci1BZ2VudDogTW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgY29sb25lbCBDaHJvbWUvMTk2LjMuMTU5Ny41MzAgU2FmYXJpLzUzNy4zNgpBY2NlcHQtTGFuZ3VhZ2U6IGVuLVVTLGVuO3E9MC44ClJlZmVyZXI6IGtpbmdzdmlsbGVsaXZlc3RvY2suY29tCkFjY2VwdC1FbmNvZGluZzogaWRlbnRpdHkKQ29ubmVjdGlvbjogY2xvc2UKWC1BY2NlbC1JbnRlcm5hbDogL2ludGVybmFsLW5naW54LXN0YXRpYy1sb2NhdGlvbgpYLVJlYWwtSXA6IDUxLjI1NS4xOTYuODgKSG9zdDoga2luZ3N2aWxsZWxpdmVzdG9jay5jb20KCg==\"}'),(222475,0.000000,1701259162.858123,'\0\0\0\0\0\0\0\0\0\0ÿÿØÞ«\n',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222476,0.000000,1701259162.821993,'\0\0\0\0\0\0\0\0\0\0ÿÿØÞ«\n',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222477,0.000000,1701259190.752026,'\0\0\0\0\0\0\0\0\0\0ÿÿ²>O',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222478,0.000000,1701259190.706304,'\0\0\0\0\0\0\0\0\0\0ÿÿ²>O',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222479,0.000000,1701259216.436162,'\0\0\0\0\0\0\0\0\0\0ÿÿY.j†',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222480,0.000000,1701259216.405701,'\0\0\0\0\0\0\0\0\0\0ÿÿY.j†',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222481,0.000000,1701259241.427969,'\0\0\0\0\0\0\0\0\0\0ÿÿH§¾;',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222482,0.000000,1701259241.436446,'\0\0\0\0\0\0\0\0\0\0ÿÿH§¾;',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222483,0.000000,1701259243.491847,'\0\0\0\0\0\0\0\0\0\0ÿÿH§FÇ',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222484,0.000000,1701259243.494605,'\0\0\0\0\0\0\0\0\0\0ÿÿH§FÇ',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222485,0.000000,1701259246.035939,'\0\0\0\0\0\0\0\0\0\0ÿÿ§G4',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222486,0.000000,1701259246.029524,'\0\0\0\0\0\0\0\0\0\0ÿÿ§G4',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222487,0.000000,1701259269.774128,'\0\0\0\0\0\0\0\0\0\0ÿÿD·Ð',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailValidUsername',NULL,NULL),(222488,0.000000,1701259269.879479,'\0\0\0\0\0\0\0\0\0\0ÿÿD·Ð',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222489,0.000000,1701259322.318965,'\0\0\0\0\0\0\0\0\0\0ÿÿg!=',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222490,0.000000,1701259322.317497,'\0\0\0\0\0\0\0\0\0\0ÿÿg!=',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailValidUsername',NULL,NULL),(222491,0.000000,1701259324.125673,'\0\0\0\0\0\0\0\0\0\0ÿÿ¡a[&',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222492,0.000000,1701259324.254482,'\0\0\0\0\0\0\0\0\0\0ÿÿ¡a[&',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222493,0.000000,1701259339.837652,'\0\0\0\0\0\0\0\0\0\0ÿÿB!ÍV',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222494,0.000000,1701259339.907461,'\0\0\0\0\0\0\0\0\0\0ÿÿB!ÍV',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailValidUsername',NULL,NULL),(222495,0.000000,1701259393.319241,'\0\0\0\0\0\0\0\0\0\0ÿÿXÆ¶}',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailValidUsername',NULL,NULL),(222496,0.000000,1701259393.397146,'\0\0\0\0\0\0\0\0\0\0ÿÿXÆ¶}',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222497,0.000000,1701259394.404332,'\0\0\0\0\0\0\0\0\0\0ÿÿ¢ÿvË',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailValidUsername',NULL,NULL),(222498,0.000000,1701259394.322829,'\0\0\0\0\0\0\0\0\0\0ÿÿ¢ÿvÌ',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222499,0.000000,1701259469.449045,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGì/',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222500,0.000000,1701259469.445715,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGì/',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222501,0.000000,1701259473.958209,'\0\0\0\0\0\0\0\0\0\0ÿÿÓÙª\n',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222502,0.000000,1701259473.962232,'\0\0\0\0\0\0\0\0\0\0ÿÿÓÙª\n',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222503,0.000000,1701259494.131963,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥ Ù',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222504,0.000000,1701259494.369529,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥ Ù',0,503,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(222505,0.000000,1701259536.379540,'\0\0\0\0\0\0\0\0\0\0ÿÿ@Ïž1',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','HTTPS://KINGSVILLELIVESTOCK.COM/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222506,0.000000,1701259536.378490,'\0\0\0\0\0\0\0\0\0\0ÿÿ@Ïž1',0,200,0,0,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0','loginFailInvalidUsername',NULL,NULL),(222507,0.000000,1701270735.438038,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z',0,302,0,2,0,'https://kingsvillelivestock.com/wp-login.php','https://kingsvillelivestock.com/wp-login.php?redirect_to=https%3A%2F%2Fkingsvillelivestock.com%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','loginOK',NULL,NULL),(222508,0.000000,1701273658.991509,'\0\0\0\0\0\0\0\0\0\0ÿÿˆ[)',0,200,0,1,0,'https://kingsvillelivestock.com/wp-login.php','https://weedsandwildflowerssupply.co/wp-login.php','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36','loginFailValidUsername',NULL,NULL);
/*!40000 ALTER TABLE `b78GM7Ml_wfhits` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_wfhoover`
--

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

--
-- Dumping data for table `b78GM7Ml_wfhoover`
--

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

--
-- Table structure for table `b78GM7Ml_wfissues`
--

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

--
-- Dumping data for table `b78GM7Ml_wfissues`
--

LOCK TABLES `b78GM7Ml_wfissues` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_wfissues` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_wfissues` VALUES (11744,1701148996,1701148996,'new','skippedPaths',25,'6fd0d290b978eab8027e6b79501ac149','6fd0d290b978eab8027e6b79501ac149','3 paths were skipped for the malware scan due to scan settings','The option \"Scan files outside your WordPress installation\" is off by default, which means 3 paths and their file(s) will not be scanned for malware or unauthorized changes. To continue skipping these paths, you may ignore this issue. Or to start scanning them, enable the option and subsequent scans will include them. Some paths may not be necessary to scan, so this is optional. <a href=\"https://www.wordfence.com/help/?query=scan-result-skipped-paths\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More<span class=\"screen-reader-text\"> (opens in new tab)</span></a><br><br>The paths skipped are ~/css, ~/img, and ~/test','a:0:{}'),(11761,1701275646,1701275646,'new','wfUpgrade',75,'ba7b44c03297d2fd1164149a29ed29f7','ba7b44c03297d2fd1164149a29ed29f7','Your WordPress version is out of date','WordPress version 6.4.1 is now available. Please upgrade immediately to get the latest security updates from WordPress.','a:2:{s:14:\"currentVersion\";s:5:\"5.8.8\";s:10:\"newVersion\";s:5:\"6.4.1\";}'),(11762,1701275646,1701275646,'new','wfPluginUpgrade',50,'0cc1f1e325f5f65ea54dd5416087df36','0cc1f1e325f5f65ea54dd5416087df36','The Plugin \"Classic Editor\" needs an upgrade (1.6.2 -> 1.6.3).','You need to upgrade \"Classic Editor\" to the newest version to ensure you have any security fixes the developer has released.','a:19:{s:4:\"Name\";s:14:\"Classic Editor\";s:9:\"PluginURI\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"Version\";s:5:\"1.6.2\";s:11:\"Description\";s:253:\"Enables the WordPress classic editor and the old-style Edit Post screen with TinyMCE, Meta Boxes, etc. Supports the older plugins that extend this screen. <cite>By <a href=\"https://github.com/WordPress/classic-editor/\">WordPress Contributors</a>.</cite>\";s:6:\"Author\";s:81:\"<a href=\"https://github.com/WordPress/classic-editor/\">WordPress Contributors</a>\";s:9:\"AuthorURI\";s:44:\"https://github.com/WordPress/classic-editor/\";s:10:\"TextDomain\";s:14:\"classic-editor\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:3:\"4.9\";s:11:\"RequiresPHP\";s:5:\"5.2.4\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:74:\"<a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor</a>\";s:10:\"AuthorName\";s:22:\"WordPress Contributors\";s:10:\"pluginFile\";s:101:\"/var/www/vhosts/kingsvillelivestock.com/httpdocs/wp-content/plugins/classic-editor/classic-editor.php\";s:10:\"newVersion\";s:5:\"1.6.3\";s:4:\"slug\";s:14:\"classic-editor\";s:5:\"wpURL\";s:44:\"https://wordpress.org/plugins/classic-editor\";s:10:\"vulnerable\";b:0;}'),(11763,1701275646,1701275646,'new','wfPluginUpgrade',100,'bd7528c128eae828fbaec945820ad141','bd7528c128eae828fbaec945820ad141','The Plugin \"Contact Form 7 - Dynamic Text Extension\" needs an upgrade (2.0.3 -> 4.1.0).','You need to upgrade \"Contact Form 7 - Dynamic Text Extension\" to the newest version to ensure you have any security fixes the developer has released.','a:20:{s:4:\"Name\";s:39:\"Contact Form 7 - Dynamic Text Extension\";s:9:\"PluginURI\";s:77:\"http://sevenspark.com/wordpress-plugins/contact-form-7-dynamic-text-extension\";s:7:\"Version\";s:5:\"2.0.3\";s:11:\"Description\";s:186:\"Provides a dynamic text field that accepts any shortcode to generate the content.  Requires Contact Form 7 <cite>By <a href=\"http://sevenspark.com\">Chris Mavricos, SevenSpark</a>.</cite>\";s:6:\"Author\";s:62:\"<a href=\"http://sevenspark.com\">Chris Mavricos, SevenSpark</a>\";s:9:\"AuthorURI\";s:21:\"http://sevenspark.com\";s:10:\"TextDomain\";s:37:\"contact-form-7-dynamic-text-extension\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:131:\"<a href=\"http://sevenspark.com/wordpress-plugins/contact-form-7-dynamic-text-extension\">Contact Form 7 - Dynamic Text Extension</a>\";s:10:\"AuthorName\";s:26:\"Chris Mavricos, SevenSpark\";s:10:\"pluginFile\";s:147:\"/var/www/vhosts/kingsvillelivestock.com/httpdocs/wp-content/plugins/contact-form-7-dynamic-text-extension/contact-form-7-dynamic-text-extension.php\";s:10:\"newVersion\";s:5:\"4.1.0\";s:4:\"slug\";s:37:\"contact-form-7-dynamic-text-extension\";s:5:\"wpURL\";s:67:\"https://wordpress.org/plugins/contact-form-7-dynamic-text-extension\";s:10:\"vulnerable\";b:1;s:17:\"vulnerabilityLink\";s:108:\"https://www.wordfence.com/threat-intel/vulnerabilities/id/fa821005-9593-4a84-b4b4-af746da4d6b9?source=plugin\";}'),(11764,1701275646,1701275646,'new','wfPluginUpgrade',50,'9530a7413f08db8c89b312e6c56631bc','9530a7413f08db8c89b312e6c56631bc','The Plugin \"Honeypot for Contact Form 7\" needs an upgrade (2.1 -> 2.1.1).','You need to upgrade \"Honeypot for Contact Form 7\" to the newest version to ensure you have any security fixes the developer has released.','a:19:{s:4:\"Name\";s:27:\"Honeypot for Contact Form 7\";s:9:\"PluginURI\";s:81:\"http://www.nocean.ca/plugins/honeypot-module-for-contact-form-7-wordpress-plugin/\";s:7:\"Version\";s:3:\"2.1\";s:11:\"Description\";s:133:\"Add honeypot anti-spam functionality to the popular Contact Form 7 plugin. <cite>By <a href=\"http://www.nocean.ca\">Nocean</a>.</cite>\";s:6:\"Author\";s:41:\"<a href=\"http://www.nocean.ca\">Nocean</a>\";s:9:\"AuthorURI\";s:20:\"http://www.nocean.ca\";s:10:\"TextDomain\";s:23:\"contact-form-7-honeypot\";s:10:\"DomainPath\";s:11:\"/languages/\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:123:\"<a href=\"http://www.nocean.ca/plugins/honeypot-module-for-contact-form-7-wordpress-plugin/\">Honeypot for Contact Form 7</a>\";s:10:\"AuthorName\";s:6:\"Nocean\";s:10:\"pluginFile\";s:104:\"/var/www/vhosts/kingsvillelivestock.com/httpdocs/wp-content/plugins/contact-form-7-honeypot/honeypot.php\";s:10:\"newVersion\";s:5:\"2.1.1\";s:4:\"slug\";s:23:\"contact-form-7-honeypot\";s:5:\"wpURL\";s:53:\"https://wordpress.org/plugins/contact-form-7-honeypot\";s:10:\"vulnerable\";b:0;}'),(11765,1701275646,1701275646,'new','wfPluginUpgrade',50,'51b0033ccade65e3d20860421de95236','51b0033ccade65e3d20860421de95236','The Plugin \"Really Simple SSL\" needs an upgrade (5.2.2 -> 7.2.0).','You need to upgrade \"Really Simple SSL\" to the newest version to ensure you have any security fixes the developer has released.','a:19:{s:4:\"Name\";s:17:\"Really Simple SSL\";s:9:\"PluginURI\";s:29:\"https://really-simple-ssl.com\";s:7:\"Version\";s:5:\"5.2.2\";s:11:\"Description\";s:151:\"Lightweight plugin without any setup to make your site SSL proof <cite>By <a href=\"https://really-simple-plugins.com\">Really Simple Plugins</a>.</cite>\";s:6:\"Author\";s:69:\"<a href=\"https://really-simple-plugins.com\">Really Simple Plugins</a>\";s:9:\"AuthorURI\";s:33:\"https://really-simple-plugins.com\";s:10:\"TextDomain\";s:17:\"really-simple-ssl\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:61:\"<a href=\"https://really-simple-ssl.com\">Really Simple SSL</a>\";s:10:\"AuthorName\";s:21:\"Really Simple Plugins\";s:10:\"pluginFile\";s:115:\"/var/www/vhosts/kingsvillelivestock.com/httpdocs/wp-content/plugins/really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:10:\"newVersion\";s:5:\"7.2.0\";s:4:\"slug\";s:17:\"really-simple-ssl\";s:5:\"wpURL\";s:47:\"https://wordpress.org/plugins/really-simple-ssl\";s:10:\"vulnerable\";b:0;}'),(11766,1701275646,1701275646,'new','wfPluginUpgrade',50,'d2688171bf3756860b2a96c802385dbc','d2688171bf3756860b2a96c802385dbc','The Plugin \"Smash Balloon Instagram Feed\" needs an upgrade (2.9.9 -> 6.2.6).','You need to upgrade \"Smash Balloon Instagram Feed\" to the newest version to ensure you have any security fixes the developer has released.','a:19:{s:4:\"Name\";s:28:\"Smash Balloon Instagram Feed\";s:9:\"PluginURI\";s:39:\"https://smashballoon.com/instagram-feed\";s:7:\"Version\";s:5:\"2.9.9\";s:11:\"Description\";s:143:\"Display beautifully clean, customizable, and responsive Instagram feeds. <cite>By <a href=\"https://smashballoon.com/\">Smash Balloon</a>.</cite>\";s:6:\"Author\";s:53:\"<a href=\"https://smashballoon.com/\">Smash Balloon</a>\";s:9:\"AuthorURI\";s:25:\"https://smashballoon.com/\";s:10:\"TextDomain\";s:14:\"instagram-feed\";s:10:\"DomainPath\";s:0:\"\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:82:\"<a href=\"https://smashballoon.com/instagram-feed\">Smash Balloon Instagram Feed</a>\";s:10:\"AuthorName\";s:13:\"Smash Balloon\";s:10:\"pluginFile\";s:101:\"/var/www/vhosts/kingsvillelivestock.com/httpdocs/wp-content/plugins/instagram-feed/instagram-feed.php\";s:10:\"newVersion\";s:5:\"6.2.6\";s:4:\"slug\";s:14:\"instagram-feed\";s:5:\"wpURL\";s:44:\"https://wordpress.org/plugins/instagram-feed\";s:10:\"vulnerable\";b:0;}'),(11767,1701275646,1701275646,'new','wfPluginUpgrade',100,'9948fcd94172f0bd2ce8614bffd18ee0','9948fcd94172f0bd2ce8614bffd18ee0','The Plugin \"Wordfence Security\" needs an upgrade (7.5.7 -> 7.11.0).','You need to upgrade \"Wordfence Security\" to the newest version to ensure you have any security fixes the developer has released.','a:20:{s:4:\"Name\";s:18:\"Wordfence Security\";s:9:\"PluginURI\";s:25:\"http://www.wordfence.com/\";s:7:\"Version\";s:5:\"7.5.7\";s:11:\"Description\";s:131:\"Wordfence Security &#8211; Anti-virus, Firewall and Malware Scan <cite>By <a href=\"http://www.wordfence.com/\">Wordfence</a>.</cite>\";s:6:\"Author\";s:49:\"<a href=\"http://www.wordfence.com/\">Wordfence</a>\";s:9:\"AuthorURI\";s:25:\"http://www.wordfence.com/\";s:10:\"TextDomain\";s:9:\"wordfence\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:1;s:10:\"RequiresWP\";s:3:\"3.9\";s:11:\"RequiresPHP\";s:3:\"5.3\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:58:\"<a href=\"http://www.wordfence.com/\">Wordfence Security</a>\";s:10:\"AuthorName\";s:9:\"Wordfence\";s:10:\"pluginFile\";s:91:\"/var/www/vhosts/kingsvillelivestock.com/httpdocs/wp-content/plugins/wordfence/wordfence.php\";s:10:\"newVersion\";s:6:\"7.11.0\";s:4:\"slug\";s:9:\"wordfence\";s:5:\"wpURL\";s:39:\"https://wordpress.org/plugins/wordfence\";s:10:\"vulnerable\";b:1;s:17:\"vulnerabilityLink\";s:108:\"https://www.wordfence.com/threat-intel/vulnerabilities/id/833eb481-4fb4-432e-8e93-3f497ccbf1eb?source=plugin\";}'),(11768,1701275646,1701275646,'new','wfPluginUpgrade',50,'be89c9ff66f3cf0aa1c3eadf3e892a86','be89c9ff66f3cf0aa1c3eadf3e892a86','The Plugin \"WP Mail SMTP\" needs an upgrade (3.2.1 -> 3.10.0).','You need to upgrade \"WP Mail SMTP\" to the newest version to ensure you have any security fixes the developer has released.','a:19:{s:4:\"Name\";s:12:\"WP Mail SMTP\";s:9:\"PluginURI\";s:23:\"https://wpmailsmtp.com/\";s:7:\"Version\";s:5:\"3.2.1\";s:11:\"Description\";s:238:\"Reconfigures the <code>wp_mail()</code> function to use Gmail/Mailgun/SendGrid/SMTP instead of the default <code>mail()</code> and creates an options page to manage the settings. <cite>By <a href=\"https://wpforms.com/\">WPForms</a>.</cite>\";s:6:\"Author\";s:42:\"<a href=\"https://wpforms.com/\">WPForms</a>\";s:9:\"AuthorURI\";s:20:\"https://wpforms.com/\";s:10:\"TextDomain\";s:12:\"wp-mail-smtp\";s:10:\"DomainPath\";s:17:\"/assets/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:3:\"4.9\";s:11:\"RequiresPHP\";s:6:\"5.6.20\";s:9:\"UpdateURI\";s:0:\"\";s:5:\"Title\";s:50:\"<a href=\"https://wpmailsmtp.com/\">WP Mail SMTP</a>\";s:10:\"AuthorName\";s:7:\"WPForms\";s:10:\"pluginFile\";s:97:\"/var/www/vhosts/kingsvillelivestock.com/httpdocs/wp-content/plugins/wp-mail-smtp/wp_mail_smtp.php\";s:10:\"newVersion\";s:6:\"3.10.0\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:5:\"wpURL\";s:42:\"https://wordpress.org/plugins/wp-mail-smtp\";s:10:\"vulnerable\";b:0;}');
/*!40000 ALTER TABLE `b78GM7Ml_wfissues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_wfknownfilelist`
--

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

--
-- Dumping data for table `b78GM7Ml_wfknownfilelist`
--

LOCK TABLES `b78GM7Ml_wfknownfilelist` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_wfknownfilelist` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_wfknownfilelist` VALUES (1,'index.php'),(2,'license.txt'),(3,'readme.html'),(4,'wp-activate.php'),(5,'wp-admin/about.php'),(6,'wp-admin/admin-ajax.php'),(7,'wp-admin/admin-footer.php'),(8,'wp-admin/admin-functions.php'),(9,'wp-admin/admin-header.php'),(10,'wp-admin/admin-post.php'),(11,'wp-admin/admin.php'),(12,'wp-admin/async-upload.php'),(13,'wp-admin/authorize-application.php'),(14,'wp-admin/comment.php'),(15,'wp-admin/credits.php'),(16,'wp-admin/css/about-rtl.css'),(17,'wp-admin/css/about-rtl.min.css'),(18,'wp-admin/css/about.css'),(19,'wp-admin/css/about.min.css'),(20,'wp-admin/css/admin-menu-rtl.css'),(21,'wp-admin/css/admin-menu-rtl.min.css'),(22,'wp-admin/css/admin-menu.css'),(23,'wp-admin/css/admin-menu.min.css'),(24,'wp-admin/css/code-editor-rtl.css'),(25,'wp-admin/css/code-editor-rtl.min.css'),(26,'wp-admin/css/code-editor.css'),(27,'wp-admin/css/code-editor.min.css'),(28,'wp-admin/css/color-picker-rtl.css'),(29,'wp-admin/css/color-picker-rtl.min.css'),(30,'wp-admin/css/color-picker.css'),(31,'wp-admin/css/color-picker.min.css'),(32,'wp-admin/css/colors/_admin.scss'),(33,'wp-admin/css/colors/_mixins.scss'),(34,'wp-admin/css/colors/_variables.scss'),(35,'wp-admin/css/colors/blue/colors-rtl.css'),(36,'wp-admin/css/colors/blue/colors-rtl.min.css'),(37,'wp-admin/css/colors/blue/colors.css'),(38,'wp-admin/css/colors/blue/colors.min.css'),(39,'wp-admin/css/colors/blue/colors.scss'),(40,'wp-admin/css/colors/coffee/colors-rtl.css'),(41,'wp-admin/css/colors/coffee/colors-rtl.min.css'),(42,'wp-admin/css/colors/coffee/colors.css'),(43,'wp-admin/css/colors/coffee/colors.min.css'),(44,'wp-admin/css/colors/coffee/colors.scss'),(45,'wp-admin/css/colors/ectoplasm/colors-rtl.css'),(46,'wp-admin/css/colors/ectoplasm/colors-rtl.min.css'),(47,'wp-admin/css/colors/ectoplasm/colors.css'),(48,'wp-admin/css/colors/ectoplasm/colors.min.css'),(49,'wp-admin/css/colors/ectoplasm/colors.scss'),(50,'wp-admin/css/colors/light/colors-rtl.css'),(51,'wp-admin/css/colors/light/colors-rtl.min.css'),(52,'wp-admin/css/colors/light/colors.css'),(53,'wp-admin/css/colors/light/colors.min.css'),(54,'wp-admin/css/colors/light/colors.scss'),(55,'wp-admin/css/colors/midnight/colors-rtl.css'),(56,'wp-admin/css/colors/midnight/colors-rtl.min.css'),(57,'wp-admin/css/colors/midnight/colors.css'),(58,'wp-admin/css/colors/midnight/colors.min.css'),(59,'wp-admin/css/colors/midnight/colors.scss'),(60,'wp-admin/css/colors/modern/colors-rtl.css'),(61,'wp-admin/css/colors/modern/colors-rtl.min.css'),(62,'wp-admin/css/colors/modern/colors.css'),(63,'wp-admin/css/colors/modern/colors.min.css'),(64,'wp-admin/css/colors/modern/colors.scss'),(65,'wp-admin/css/colors/ocean/colors-rtl.css'),(66,'wp-admin/css/colors/ocean/colors-rtl.min.css'),(67,'wp-admin/css/colors/ocean/colors.css'),(68,'wp-admin/css/colors/ocean/colors.min.css'),(69,'wp-admin/css/colors/ocean/colors.scss'),(70,'wp-admin/css/colors/sunrise/colors-rtl.css'),(71,'wp-admin/css/colors/sunrise/colors-rtl.min.css'),(72,'wp-admin/css/colors/sunrise/colors.css'),(73,'wp-admin/css/colors/sunrise/colors.min.css'),(74,'wp-admin/css/colors/sunrise/colors.scss'),(75,'wp-admin/css/common-rtl.css'),(76,'wp-admin/css/common-rtl.min.css'),(77,'wp-admin/css/common.css'),(78,'wp-admin/css/common.min.css'),(79,'wp-admin/css/customize-controls-rtl.css'),(80,'wp-admin/css/customize-controls-rtl.min.css'),(81,'wp-admin/css/customize-controls.css'),(82,'wp-admin/css/customize-controls.min.css'),(83,'wp-admin/css/customize-nav-menus-rtl.css'),(84,'wp-admin/css/customize-nav-menus-rtl.min.css'),(85,'wp-admin/css/customize-nav-menus.css'),(86,'wp-admin/css/customize-nav-menus.min.css'),(87,'wp-admin/css/customize-widgets-rtl.css'),(88,'wp-admin/css/customize-widgets-rtl.min.css'),(89,'wp-admin/css/customize-widgets.css'),(90,'wp-admin/css/customize-widgets.min.css'),(91,'wp-admin/css/dashboard-rtl.css'),(92,'wp-admin/css/dashboard-rtl.min.css'),(93,'wp-admin/css/dashboard.css'),(94,'wp-admin/css/dashboard.min.css'),(95,'wp-admin/css/deprecated-media-rtl.css'),(96,'wp-admin/css/deprecated-media-rtl.min.css'),(97,'wp-admin/css/deprecated-media.css'),(98,'wp-admin/css/deprecated-media.min.css'),(99,'wp-admin/css/edit-rtl.css'),(100,'wp-admin/css/edit-rtl.min.css'),(101,'wp-admin/css/edit.css'),(102,'wp-admin/css/edit.min.css'),(103,'wp-admin/css/farbtastic-rtl.css'),(104,'wp-admin/css/farbtastic-rtl.min.css'),(105,'wp-admin/css/farbtastic.css'),(106,'wp-admin/css/farbtastic.min.css'),(107,'wp-admin/css/forms-rtl.css'),(108,'wp-admin/css/forms-rtl.min.css'),(109,'wp-admin/css/forms.css'),(110,'wp-admin/css/forms.min.css'),(111,'wp-admin/css/install-rtl.css'),(112,'wp-admin/css/install-rtl.min.css'),(113,'wp-admin/css/install.css'),(114,'wp-admin/css/install.min.css'),(115,'wp-admin/css/l10n-rtl.css'),(116,'wp-admin/css/l10n-rtl.min.css'),(117,'wp-admin/css/l10n.css'),(118,'wp-admin/css/l10n.min.css'),(119,'wp-admin/css/list-tables-rtl.css'),(120,'wp-admin/css/list-tables-rtl.min.css'),(121,'wp-admin/css/list-tables.css'),(122,'wp-admin/css/list-tables.min.css'),(123,'wp-admin/css/login-rtl.css'),(124,'wp-admin/css/login-rtl.min.css'),(125,'wp-admin/css/login.css'),(126,'wp-admin/css/login.min.css'),(127,'wp-admin/css/media-rtl.css'),(128,'wp-admin/css/media-rtl.min.css'),(129,'wp-admin/css/media.css'),(130,'wp-admin/css/media.min.css'),(131,'wp-admin/css/nav-menus-rtl.css'),(132,'wp-admin/css/nav-menus-rtl.min.css'),(133,'wp-admin/css/nav-menus.css'),(134,'wp-admin/css/nav-menus.min.css'),(135,'wp-admin/css/revisions-rtl.css'),(136,'wp-admin/css/revisions-rtl.min.css'),(137,'wp-admin/css/revisions.css'),(138,'wp-admin/css/revisions.min.css'),(139,'wp-admin/css/site-health-rtl.css'),(140,'wp-admin/css/site-health-rtl.min.css'),(141,'wp-admin/css/site-health.css'),(142,'wp-admin/css/site-health.min.css'),(143,'wp-admin/css/site-icon-rtl.css'),(144,'wp-admin/css/site-icon-rtl.min.css'),(145,'wp-admin/css/site-icon.css'),(146,'wp-admin/css/site-icon.min.css'),(147,'wp-admin/css/themes-rtl.css'),(148,'wp-admin/css/themes-rtl.min.css'),(149,'wp-admin/css/themes.css'),(150,'wp-admin/css/themes.min.css'),(151,'wp-admin/css/widgets-rtl.css'),(152,'wp-admin/css/widgets-rtl.min.css'),(153,'wp-admin/css/widgets.css'),(154,'wp-admin/css/widgets.min.css'),(155,'wp-admin/css/wp-admin-rtl.css'),(156,'wp-admin/css/wp-admin-rtl.min.css'),(157,'wp-admin/css/wp-admin.css'),(158,'wp-admin/css/wp-admin.min.css'),(159,'wp-admin/custom-background.php'),(160,'wp-admin/custom-header.php'),(161,'wp-admin/customize.php'),(162,'wp-admin/edit-comments.php'),(163,'wp-admin/edit-form-advanced.php'),(164,'wp-admin/edit-form-blocks.php'),(165,'wp-admin/edit-form-comment.php'),(166,'wp-admin/edit-link-form.php'),(167,'wp-admin/edit-tag-form.php'),(168,'wp-admin/edit-tags.php'),(169,'wp-admin/edit.php'),(170,'wp-admin/erase-personal-data.php'),(171,'wp-admin/export-personal-data.php'),(172,'wp-admin/export.php'),(173,'wp-admin/freedoms.php'),(174,'wp-admin/images/about-header-about.svg'),(175,'wp-admin/images/about-header-credits.svg'),(176,'wp-admin/images/about-header-freedoms.svg'),(177,'wp-admin/images/about-header-privacy.svg'),(178,'wp-admin/images/align-center-2x.png'),(179,'wp-admin/images/align-center.png'),(180,'wp-admin/images/align-left-2x.png'),(181,'wp-admin/images/align-left.png'),(182,'wp-admin/images/align-none-2x.png'),(183,'wp-admin/images/align-none.png'),(184,'wp-admin/images/align-right-2x.png'),(185,'wp-admin/images/align-right.png'),(186,'wp-admin/images/arrows-2x.png'),(187,'wp-admin/images/arrows.png'),(188,'wp-admin/images/browser-rtl.png'),(189,'wp-admin/images/browser.png'),(190,'wp-admin/images/bubble_bg-2x.gif'),(191,'wp-admin/images/bubble_bg.gif'),(192,'wp-admin/images/comment-grey-bubble-2x.png'),(193,'wp-admin/images/comment-grey-bubble.png'),(194,'wp-admin/images/date-button-2x.gif'),(195,'wp-admin/images/date-button.gif'),(196,'wp-admin/images/freedom-1.svg'),(197,'wp-admin/images/freedom-2.svg'),(198,'wp-admin/images/freedom-3.svg'),(199,'wp-admin/images/freedom-4.svg'),(200,'wp-admin/images/generic.png'),(201,'wp-admin/images/icons32-2x.png'),(202,'wp-admin/images/icons32-vs-2x.png'),(203,'wp-admin/images/icons32-vs.png'),(204,'wp-admin/images/icons32.png'),(205,'wp-admin/images/imgedit-icons-2x.png'),(206,'wp-admin/images/imgedit-icons.png'),(207,'wp-admin/images/list-2x.png'),(208,'wp-admin/images/list.png'),(209,'wp-admin/images/loading.gif'),(210,'wp-admin/images/marker.png'),(211,'wp-admin/images/mask.png'),(212,'wp-admin/images/media-button-2x.png'),(213,'wp-admin/images/media-button-image.gif'),(214,'wp-admin/images/media-button-music.gif'),(215,'wp-admin/images/media-button-other.gif'),(216,'wp-admin/images/media-button-video.gif'),(217,'wp-admin/images/media-button.png'),(218,'wp-admin/images/menu-2x.png'),(219,'wp-admin/images/menu-vs-2x.png'),(220,'wp-admin/images/menu-vs.png'),(221,'wp-admin/images/menu.png'),(222,'wp-admin/images/no.png'),(223,'wp-admin/images/post-formats-vs.png'),(224,'wp-admin/images/post-formats.png'),(225,'wp-admin/images/post-formats32-vs.png'),(226,'wp-admin/images/post-formats32.png'),(227,'wp-admin/images/privacy.svg'),(228,'wp-admin/images/resize-2x.gif'),(229,'wp-admin/images/resize-rtl-2x.gif'),(230,'wp-admin/images/resize-rtl.gif'),(231,'wp-admin/images/resize.gif'),(232,'wp-admin/images/se.png'),(233,'wp-admin/images/sort-2x.gif'),(234,'wp-admin/images/sort.gif'),(235,'wp-admin/images/spinner-2x.gif'),(236,'wp-admin/images/spinner.gif'),(237,'wp-admin/images/stars-2x.png'),(238,'wp-admin/images/stars.png'),(239,'wp-admin/images/w-logo-blue.png'),(240,'wp-admin/images/w-logo-white.png'),(241,'wp-admin/images/wheel.png'),(242,'wp-admin/images/wordpress-logo-white.svg'),(243,'wp-admin/images/wordpress-logo.png'),(244,'wp-admin/images/wordpress-logo.svg'),(245,'wp-admin/images/wpspin_light-2x.gif'),(246,'wp-admin/images/wpspin_light.gif'),(247,'wp-admin/images/xit-2x.gif'),(248,'wp-admin/images/xit.gif'),(249,'wp-admin/images/yes.png'),(250,'wp-admin/import.php'),(251,'wp-admin/includes/admin-filters.php'),(252,'wp-admin/includes/admin.php'),(253,'wp-admin/includes/ajax-actions.php'),(254,'wp-admin/includes/bookmark.php'),(255,'wp-admin/includes/class-automatic-upgrader-skin.php'),(256,'wp-admin/includes/class-bulk-plugin-upgrader-skin.php'),(257,'wp-admin/includes/class-bulk-theme-upgrader-skin.php'),(258,'wp-admin/includes/class-bulk-upgrader-skin.php'),(259,'wp-admin/includes/class-core-upgrader.php'),(260,'wp-admin/includes/class-custom-background.php'),(261,'wp-admin/includes/class-custom-image-header.php'),(262,'wp-admin/includes/class-file-upload-upgrader.php'),(263,'wp-admin/includes/class-ftp-pure.php'),(264,'wp-admin/includes/class-ftp-sockets.php'),(265,'wp-admin/includes/class-ftp.php'),(266,'wp-admin/includes/class-language-pack-upgrader-skin.php'),(267,'wp-admin/includes/class-language-pack-upgrader.php'),(268,'wp-admin/includes/class-pclzip.php'),(269,'wp-admin/includes/class-plugin-installer-skin.php'),(270,'wp-admin/includes/class-plugin-upgrader-skin.php'),(271,'wp-admin/includes/class-plugin-upgrader.php'),(272,'wp-admin/includes/class-theme-installer-skin.php'),(273,'wp-admin/includes/class-theme-upgrader-skin.php'),(274,'wp-admin/includes/class-theme-upgrader.php'),(275,'wp-admin/includes/class-walker-category-checklist.php'),(276,'wp-admin/includes/class-walker-nav-menu-checklist.php'),(277,'wp-admin/includes/class-walker-nav-menu-edit.php'),(278,'wp-admin/includes/class-wp-ajax-upgrader-skin.php'),(279,'wp-admin/includes/class-wp-application-passwords-list-table.php'),(280,'wp-admin/includes/class-wp-automatic-updater.php'),(281,'wp-admin/includes/class-wp-comments-list-table.php'),(282,'wp-admin/includes/class-wp-community-events.php'),(283,'wp-admin/includes/class-wp-debug-data.php'),(284,'wp-admin/includes/class-wp-filesystem-base.php'),(285,'wp-admin/includes/class-wp-filesystem-direct.php'),(286,'wp-admin/includes/class-wp-filesystem-ftpext.php'),(287,'wp-admin/includes/class-wp-filesystem-ftpsockets.php'),(288,'wp-admin/includes/class-wp-filesystem-ssh2.php'),(289,'wp-admin/includes/class-wp-importer.php'),(290,'wp-admin/includes/class-wp-internal-pointers.php'),(291,'wp-admin/includes/class-wp-links-list-table.php'),(292,'wp-admin/includes/class-wp-list-table-compat.php'),(293,'wp-admin/includes/class-wp-list-table.php'),(294,'wp-admin/includes/class-wp-media-list-table.php'),(295,'wp-admin/includes/class-wp-ms-sites-list-table.php'),(296,'wp-admin/includes/class-wp-ms-themes-list-table.php'),(297,'wp-admin/includes/class-wp-ms-users-list-table.php'),(298,'wp-admin/includes/class-wp-plugin-install-list-table.php'),(299,'wp-admin/includes/class-wp-plugins-list-table.php'),(300,'wp-admin/includes/class-wp-post-comments-list-table.php'),(301,'wp-admin/includes/class-wp-posts-list-table.php'),(302,'wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php'),(303,'wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php'),(304,'wp-admin/includes/class-wp-privacy-policy-content.php'),(305,'wp-admin/includes/class-wp-privacy-requests-table.php'),(306,'wp-admin/includes/class-wp-screen.php'),(307,'wp-admin/includes/class-wp-site-health-auto-updates.php'),(308,'wp-admin/includes/class-wp-site-health.php'),(309,'wp-admin/includes/class-wp-site-icon.php'),(310,'wp-admin/includes/class-wp-terms-list-table.php'),(311,'wp-admin/includes/class-wp-theme-install-list-table.php'),(312,'wp-admin/includes/class-wp-themes-list-table.php'),(313,'wp-admin/includes/class-wp-upgrader-skin.php'),(314,'wp-admin/includes/class-wp-upgrader-skins.php'),(315,'wp-admin/includes/class-wp-upgrader.php'),(316,'wp-admin/includes/class-wp-users-list-table.php'),(317,'wp-admin/includes/comment.php'),(318,'wp-admin/includes/continents-cities.php'),(319,'wp-admin/includes/credits.php'),(320,'wp-admin/includes/dashboard.php'),(321,'wp-admin/includes/deprecated.php'),(322,'wp-admin/includes/edit-tag-messages.php'),(323,'wp-admin/includes/export.php'),(324,'wp-admin/includes/file.php'),(325,'wp-admin/includes/image-edit.php'),(326,'wp-admin/includes/image.php'),(327,'wp-admin/includes/import.php'),(328,'wp-admin/includes/list-table.php'),(329,'wp-admin/includes/media.php'),(330,'wp-admin/includes/menu.php'),(331,'wp-admin/includes/meta-boxes.php'),(332,'wp-admin/includes/misc.php'),(333,'wp-admin/includes/ms-admin-filters.php'),(334,'wp-admin/includes/ms-deprecated.php'),(335,'wp-admin/includes/ms.php'),(336,'wp-admin/includes/nav-menu.php'),(337,'wp-admin/includes/network.php'),(338,'wp-admin/includes/noop.php'),(339,'wp-admin/includes/options.php'),(340,'wp-admin/includes/plugin-install.php'),(341,'wp-admin/includes/plugin.php'),(342,'wp-admin/includes/post.php'),(343,'wp-admin/includes/privacy-tools.php'),(344,'wp-admin/includes/revision.php'),(345,'wp-admin/includes/schema.php'),(346,'wp-admin/includes/screen.php'),(347,'wp-admin/includes/taxonomy.php'),(348,'wp-admin/includes/template.php'),(349,'wp-admin/includes/theme-install.php'),(350,'wp-admin/includes/theme.php'),(351,'wp-admin/includes/translation-install.php'),(352,'wp-admin/includes/update-core.php'),(353,'wp-admin/includes/update.php'),(354,'wp-admin/includes/upgrade.php'),(355,'wp-admin/includes/user.php'),(356,'wp-admin/includes/widgets.php'),(357,'wp-admin/index.php'),(358,'wp-admin/install-helper.php'),(359,'wp-admin/install.php'),(360,'wp-admin/js/accordion.js'),(361,'wp-admin/js/accordion.min.js'),(362,'wp-admin/js/application-passwords.js'),(363,'wp-admin/js/application-passwords.min.js'),(364,'wp-admin/js/auth-app.js'),(365,'wp-admin/js/auth-app.min.js'),(366,'wp-admin/js/code-editor.js'),(367,'wp-admin/js/code-editor.min.js'),(368,'wp-admin/js/color-picker.js'),(369,'wp-admin/js/color-picker.min.js'),(370,'wp-admin/js/comment.js'),(371,'wp-admin/js/comment.min.js'),(372,'wp-admin/js/common.js'),(373,'wp-admin/js/common.min.js'),(374,'wp-admin/js/custom-background.js'),(375,'wp-admin/js/custom-background.min.js'),(376,'wp-admin/js/custom-header.js'),(377,'wp-admin/js/customize-controls.js'),(378,'wp-admin/js/customize-controls.min.js'),(379,'wp-admin/js/customize-nav-menus.js'),(380,'wp-admin/js/customize-nav-menus.min.js'),(381,'wp-admin/js/customize-widgets.js'),(382,'wp-admin/js/customize-widgets.min.js'),(383,'wp-admin/js/dashboard.js'),(384,'wp-admin/js/dashboard.min.js'),(385,'wp-admin/js/edit-comments.js'),(386,'wp-admin/js/edit-comments.min.js'),(387,'wp-admin/js/editor-expand.js'),(388,'wp-admin/js/editor-expand.min.js'),(389,'wp-admin/js/editor.js'),(390,'wp-admin/js/editor.min.js'),(391,'wp-admin/js/farbtastic.js'),(392,'wp-admin/js/gallery.js'),(393,'wp-admin/js/gallery.min.js'),(394,'wp-admin/js/image-edit.js'),(395,'wp-admin/js/image-edit.min.js'),(396,'wp-admin/js/inline-edit-post.js'),(397,'wp-admin/js/inline-edit-post.min.js'),(398,'wp-admin/js/inline-edit-tax.js'),(399,'wp-admin/js/inline-edit-tax.min.js'),(400,'wp-admin/js/iris.min.js'),(401,'wp-admin/js/language-chooser.js'),(402,'wp-admin/js/language-chooser.min.js'),(403,'wp-admin/js/link.js'),(404,'wp-admin/js/link.min.js'),(405,'wp-admin/js/media-gallery.js'),(406,'wp-admin/js/media-gallery.min.js'),(407,'wp-admin/js/media-upload.js'),(408,'wp-admin/js/media-upload.min.js'),(409,'wp-admin/js/media.js'),(410,'wp-admin/js/media.min.js'),(411,'wp-admin/js/nav-menu.js'),(412,'wp-admin/js/nav-menu.min.js'),(413,'wp-admin/js/password-strength-meter.js'),(414,'wp-admin/js/password-strength-meter.min.js'),(415,'wp-admin/js/plugin-install.js'),(416,'wp-admin/js/plugin-install.min.js'),(417,'wp-admin/js/post.js'),(418,'wp-admin/js/post.min.js'),(419,'wp-admin/js/postbox.js'),(420,'wp-admin/js/postbox.min.js'),(421,'wp-admin/js/privacy-tools.js'),(422,'wp-admin/js/privacy-tools.min.js'),(423,'wp-admin/js/revisions.js'),(424,'wp-admin/js/revisions.min.js'),(425,'wp-admin/js/set-post-thumbnail.js'),(426,'wp-admin/js/set-post-thumbnail.min.js'),(427,'wp-admin/js/site-health.js'),(428,'wp-admin/js/site-health.min.js'),(429,'wp-admin/js/svg-painter.js'),(430,'wp-admin/js/svg-painter.min.js'),(431,'wp-admin/js/tags-box.js'),(432,'wp-admin/js/tags-box.min.js'),(433,'wp-admin/js/tags-suggest.js'),(434,'wp-admin/js/tags-suggest.min.js'),(435,'wp-admin/js/tags.js'),(436,'wp-admin/js/tags.min.js'),(437,'wp-admin/js/theme-plugin-editor.js'),(438,'wp-admin/js/theme-plugin-editor.min.js'),(439,'wp-admin/js/theme.js'),(440,'wp-admin/js/theme.min.js'),(441,'wp-admin/js/updates.js'),(442,'wp-admin/js/updates.min.js'),(443,'wp-admin/js/user-profile.js'),(444,'wp-admin/js/user-profile.min.js'),(445,'wp-admin/js/user-suggest.js'),(446,'wp-admin/js/user-suggest.min.js'),(447,'wp-admin/js/widgets/custom-html-widgets.js'),(448,'wp-admin/js/widgets/custom-html-widgets.min.js'),(449,'wp-admin/js/widgets/media-audio-widget.js'),(450,'wp-admin/js/widgets/media-audio-widget.min.js'),(451,'wp-admin/js/widgets/media-gallery-widget.js'),(452,'wp-admin/js/widgets/media-gallery-widget.min.js'),(453,'wp-admin/js/widgets/media-image-widget.js'),(454,'wp-admin/js/widgets/media-image-widget.min.js'),(455,'wp-admin/js/widgets/media-video-widget.js'),(456,'wp-admin/js/widgets/media-video-widget.min.js'),(457,'wp-admin/js/widgets/media-widgets.js'),(458,'wp-admin/js/widgets/media-widgets.min.js'),(459,'wp-admin/js/widgets/text-widgets.js'),(460,'wp-admin/js/widgets/text-widgets.min.js'),(461,'wp-admin/js/widgets.js'),(462,'wp-admin/js/widgets.min.js'),(463,'wp-admin/js/word-count.js'),(464,'wp-admin/js/word-count.min.js'),(465,'wp-admin/js/xfn.js'),(466,'wp-admin/js/xfn.min.js'),(467,'wp-admin/link-add.php'),(468,'wp-admin/link-manager.php'),(469,'wp-admin/link-parse-opml.php'),(470,'wp-admin/link.php'),(471,'wp-admin/load-scripts.php'),(472,'wp-admin/load-styles.php'),(473,'wp-admin/maint/repair.php'),(474,'wp-admin/media-new.php'),(475,'wp-admin/media-upload.php'),(476,'wp-admin/media.php'),(477,'wp-admin/menu-header.php'),(478,'wp-admin/menu.php'),(479,'wp-admin/moderation.php'),(480,'wp-admin/ms-admin.php'),(481,'wp-admin/ms-delete-site.php'),(482,'wp-admin/ms-edit.php'),(483,'wp-admin/ms-options.php'),(484,'wp-admin/ms-sites.php'),(485,'wp-admin/ms-themes.php'),(486,'wp-admin/ms-upgrade-network.php'),(487,'wp-admin/ms-users.php'),(488,'wp-admin/my-sites.php'),(489,'wp-admin/nav-menus.php'),(490,'wp-admin/network/about.php'),(491,'wp-admin/network/admin.php'),(492,'wp-admin/network/credits.php'),(493,'wp-admin/network/edit.php'),(494,'wp-admin/network/freedoms.php'),(495,'wp-admin/network/index.php'),(496,'wp-admin/network/menu.php'),(497,'wp-admin/network/plugin-editor.php'),(498,'wp-admin/network/plugin-install.php'),(499,'wp-admin/network/plugins.php'),(500,'wp-admin/network/privacy.php'),(501,'wp-admin/network/profile.php'),(502,'wp-admin/network/settings.php'),(503,'wp-admin/network/setup.php'),(504,'wp-admin/network/site-info.php'),(505,'wp-admin/network/site-new.php'),(506,'wp-admin/network/site-settings.php'),(507,'wp-admin/network/site-themes.php'),(508,'wp-admin/network/site-users.php'),(509,'wp-admin/network/sites.php'),(510,'wp-admin/network/theme-editor.php'),(511,'wp-admin/network/theme-install.php'),(512,'wp-admin/network/themes.php'),(513,'wp-admin/network/update-core.php'),(514,'wp-admin/network/update.php'),(515,'wp-admin/network/upgrade.php'),(516,'wp-admin/network/user-edit.php'),(517,'wp-admin/network/user-new.php'),(518,'wp-admin/network/users.php'),(519,'wp-admin/network.php'),(520,'wp-admin/options-discussion.php'),(521,'wp-admin/options-general.php'),(522,'wp-admin/options-head.php'),(523,'wp-admin/options-media.php'),(524,'wp-admin/options-permalink.php'),(525,'wp-admin/options-privacy.php'),(526,'wp-admin/options-reading.php'),(527,'wp-admin/options-writing.php'),(528,'wp-admin/options.php'),(529,'wp-admin/plugin-editor.php'),(530,'wp-admin/plugin-install.php'),(531,'wp-admin/plugins.php'),(532,'wp-admin/post-new.php'),(533,'wp-admin/post.php'),(534,'wp-admin/press-this.php'),(535,'wp-admin/privacy-policy-guide.php'),(536,'wp-admin/privacy.php'),(537,'wp-admin/profile.php'),(538,'wp-admin/revision.php'),(539,'wp-admin/setup-config.php'),(540,'wp-admin/site-health-info.php'),(541,'wp-admin/site-health.php'),(542,'wp-admin/term.php'),(543,'wp-admin/theme-editor.php'),(544,'wp-admin/theme-install.php'),(545,'wp-admin/themes.php'),(546,'wp-admin/tools.php'),(547,'wp-admin/update-core.php'),(548,'wp-admin/update.php'),(549,'wp-admin/upgrade-functions.php'),(550,'wp-admin/upgrade.php'),(551,'wp-admin/upload.php'),(552,'wp-admin/user/about.php'),(553,'wp-admin/user/admin.php'),(554,'wp-admin/user/credits.php'),(555,'wp-admin/user/freedoms.php'),(556,'wp-admin/user/index.php'),(557,'wp-admin/user/menu.php'),(558,'wp-admin/user/privacy.php'),(559,'wp-admin/user/profile.php'),(560,'wp-admin/user/user-edit.php'),(561,'wp-admin/user-edit.php'),(562,'wp-admin/user-new.php'),(563,'wp-admin/users.php'),(564,'wp-admin/widgets-form-blocks.php'),(565,'wp-admin/widgets-form.php'),(566,'wp-admin/widgets.php'),(567,'wp-blog-header.php'),(568,'wp-comments-post.php'),(569,'wp-config-sample.php'),(570,'wp-config.php'),(571,'wp-content/et-cache/en_US/definitions-page-16994221432273.js'),(572,'wp-content/et-cache/en_US/definitions-post-16994675743229.js'),(573,'wp-content/et-cache/en_US/helpers-page-16994221430334.js'),(574,'wp-content/et-cache/en_US/helpers-post-16994675741365.js'),(575,'wp-content/index.php'),(576,'wp-content/maintenance/assets/images/facebook.svg'),(577,'wp-content/maintenance/assets/images/instagram.svg'),(578,'wp-content/maintenance/assets/images/twitter.svg'),(579,'wp-content/maintenance/assets/timer.js'),(580,'wp-content/maintenance/template.phtml'),(581,'wp-content/maintenance.php'),(582,'wp-content/mu-plugins/0-worker.php'),(583,'wp-content/mu-plugins-old/0-worker.php'),(584,'wp-content/plugins/classic-editor/LICENSE.md'),(585,'wp-content/plugins/classic-editor/classic-editor.php'),(586,'wp-content/plugins/classic-editor/js/block-editor-plugin.js'),(587,'wp-content/plugins/classic-editor/readme.txt'),(588,'wp-content/plugins/contact-form-7/admin/admin.php'),(589,'wp-content/plugins/contact-form-7/admin/css/styles-rtl.css'),(590,'wp-content/plugins/contact-form-7/admin/css/styles.css'),(591,'wp-content/plugins/contact-form-7/admin/edit-contact-form.php'),(592,'wp-content/plugins/contact-form-7/admin/includes/admin-functions.php'),(593,'wp-content/plugins/contact-form-7/admin/includes/class-contact-forms-list-table.php'),(594,'wp-content/plugins/contact-form-7/admin/includes/config-validator.php'),(595,'wp-content/plugins/contact-form-7/admin/includes/editor.php'),(596,'wp-content/plugins/contact-form-7/admin/includes/help-tabs.php'),(597,'wp-content/plugins/contact-form-7/admin/includes/tag-generator.php'),(598,'wp-content/plugins/contact-form-7/admin/includes/welcome-panel.php'),(599,'wp-content/plugins/contact-form-7/admin/js/scripts.js'),(600,'wp-content/plugins/contact-form-7/admin/js/tag-generator.js'),(601,'wp-content/plugins/contact-form-7/assets/icon.png'),(602,'wp-content/plugins/contact-form-7/assets/icon.svg'),(603,'wp-content/plugins/contact-form-7/includes/block-editor/block-editor.php'),(604,'wp-content/plugins/contact-form-7/includes/block-editor/index.js'),(605,'wp-content/plugins/contact-form-7/includes/capabilities.php'),(606,'wp-content/plugins/contact-form-7/includes/config-validator.php'),(607,'wp-content/plugins/contact-form-7/includes/contact-form-functions.php'),(608,'wp-content/plugins/contact-form-7/includes/contact-form-template.php'),(609,'wp-content/plugins/contact-form-7/includes/contact-form.php'),(610,'wp-content/plugins/contact-form-7/includes/controller.php'),(611,'wp-content/plugins/contact-form-7/includes/css/styles-rtl.css'),(612,'wp-content/plugins/contact-form-7/includes/css/styles.css'),(613,'wp-content/plugins/contact-form-7/includes/file.php'),(614,'wp-content/plugins/contact-form-7/includes/form-tag.php'),(615,'wp-content/plugins/contact-form-7/includes/form-tags-manager.php'),(616,'wp-content/plugins/contact-form-7/includes/formatting.php'),(617,'wp-content/plugins/contact-form-7/includes/functions.php'),(618,'wp-content/plugins/contact-form-7/includes/integration.php'),(619,'wp-content/plugins/contact-form-7/includes/js/html5-fallback.js'),(620,'wp-content/plugins/contact-form-7/includes/js/index.js'),(621,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png'),(622,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png'),(623,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png'),(624,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png'),(625,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png'),(626,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png'),(627,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png'),(628,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png'),(629,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png'),(630,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png'),(631,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png'),(632,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.css'),(633,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/jquery-ui.min.css'),(634,'wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/theme.css'),(635,'wp-content/plugins/contact-form-7/includes/l10n.php'),(636,'wp-content/plugins/contact-form-7/includes/mail.php'),(637,'wp-content/plugins/contact-form-7/includes/pipe.php'),(638,'wp-content/plugins/contact-form-7/includes/rest-api.php'),(639,'wp-content/plugins/contact-form-7/includes/shortcodes.php'),(640,'wp-content/plugins/contact-form-7/includes/special-mail-tags.php'),(641,'wp-content/plugins/contact-form-7/includes/submission.php'),(642,'wp-content/plugins/contact-form-7/includes/upgrade.php'),(643,'wp-content/plugins/contact-form-7/includes/validation-functions.php'),(644,'wp-content/plugins/contact-form-7/includes/validation.php'),(645,'wp-content/plugins/contact-form-7/languages/readme.txt'),(646,'wp-content/plugins/contact-form-7/license.txt'),(647,'wp-content/plugins/contact-form-7/load.php'),(648,'wp-content/plugins/contact-form-7/modules/acceptance.php'),(649,'wp-content/plugins/contact-form-7/modules/akismet.php'),(650,'wp-content/plugins/contact-form-7/modules/checkbox.php'),(651,'wp-content/plugins/contact-form-7/modules/constant-contact/constant-contact.php'),(652,'wp-content/plugins/contact-form-7/modules/constant-contact/contact-form-properties.php'),(653,'wp-content/plugins/contact-form-7/modules/constant-contact/contact-post-request.php'),(654,'wp-content/plugins/contact-form-7/modules/constant-contact/service.php'),(655,'wp-content/plugins/contact-form-7/modules/count.php'),(656,'wp-content/plugins/contact-form-7/modules/date.php'),(657,'wp-content/plugins/contact-form-7/modules/disallowed-list.php'),(658,'wp-content/plugins/contact-form-7/modules/file.php'),(659,'wp-content/plugins/contact-form-7/modules/flamingo.php'),(660,'wp-content/plugins/contact-form-7/modules/hidden.php'),(661,'wp-content/plugins/contact-form-7/modules/listo.php'),(662,'wp-content/plugins/contact-form-7/modules/number.php'),(663,'wp-content/plugins/contact-form-7/modules/quiz.php'),(664,'wp-content/plugins/contact-form-7/modules/really-simple-captcha.php'),(665,'wp-content/plugins/contact-form-7/modules/recaptcha/index.js'),(666,'wp-content/plugins/contact-form-7/modules/recaptcha/recaptcha.php'),(667,'wp-content/plugins/contact-form-7/modules/response.php'),(668,'wp-content/plugins/contact-form-7/modules/select.php'),(669,'wp-content/plugins/contact-form-7/modules/sendinblue/contact-form-properties.php'),(670,'wp-content/plugins/contact-form-7/modules/sendinblue/sendinblue.php'),(671,'wp-content/plugins/contact-form-7/modules/sendinblue/service.php'),(672,'wp-content/plugins/contact-form-7/modules/stripe/api.php'),(673,'wp-content/plugins/contact-form-7/modules/stripe/index.js'),(674,'wp-content/plugins/contact-form-7/modules/stripe/service.php'),(675,'wp-content/plugins/contact-form-7/modules/stripe/stripe.php'),(676,'wp-content/plugins/contact-form-7/modules/stripe/style.css'),(677,'wp-content/plugins/contact-form-7/modules/submit.php'),(678,'wp-content/plugins/contact-form-7/modules/text.php'),(679,'wp-content/plugins/contact-form-7/modules/textarea.php'),(680,'wp-content/plugins/contact-form-7/readme.txt'),(681,'wp-content/plugins/contact-form-7/uninstall.php'),(682,'wp-content/plugins/contact-form-7/wp-contact-form-7.php'),(683,'wp-content/plugins/contact-form-7-dynamic-text-extension/contact-form-7-dynamic-text-extension.php'),(684,'wp-content/plugins/contact-form-7-dynamic-text-extension/readme.txt'),(685,'wp-content/plugins/contact-form-7-dynamic-text-extension/screenshot-1.jpg'),(686,'wp-content/plugins/contact-form-7-honeypot/honeypot.php'),(687,'wp-content/plugins/contact-form-7-honeypot/includes/admin.php'),(688,'wp-content/plugins/contact-form-7-honeypot/includes/css/styles.css'),(689,'wp-content/plugins/contact-form-7-honeypot/includes/honeypot4cf7.php'),(690,'wp-content/plugins/contact-form-7-honeypot/includes/images/banner-coffee-dark.jpg'),(691,'wp-content/plugins/contact-form-7-honeypot/includes/images/banner-coffee.jpg'),(692,'wp-content/plugins/contact-form-7-honeypot/includes/images/banners/art-of-invisibility-cover.jpg'),(693,'wp-content/plugins/contact-form-7-honeypot/includes/images/banners/semrush-1_580x400.gif'),(694,'wp-content/plugins/contact-form-7-honeypot/includes/images/banners/semrush-1_720x90.gif'),(695,'wp-content/plugins/contact-form-7-honeypot/includes/images/banners/semrush-2_300x250.png'),(696,'wp-content/plugins/contact-form-7-honeypot/includes/images/honeypot-icon-large.png'),(697,'wp-content/plugins/contact-form-7-honeypot/includes/images/honeypot-icon-small.png'),(698,'wp-content/plugins/contact-form-7-honeypot/includes/js/notice-update.js'),(699,'wp-content/plugins/contact-form-7-honeypot/languages/readme.txt'),(700,'wp-content/plugins/contact-form-7-honeypot/license.txt'),(701,'wp-content/plugins/contact-form-7-honeypot/readme.txt'),(702,'wp-content/plugins/duplicate-post/admin-functions.php'),(703,'wp-content/plugins/duplicate-post/common-functions.php'),(704,'wp-content/plugins/duplicate-post/compat/jetpack-functions.php'),(705,'wp-content/plugins/duplicate-post/compat/wpml-functions.php'),(706,'wp-content/plugins/duplicate-post/css/duplicate-post-options.css'),(707,'wp-content/plugins/duplicate-post/css/duplicate-post.css'),(708,'wp-content/plugins/duplicate-post/duplicate-post.php'),(709,'wp-content/plugins/duplicate-post/duplicate_post_yoast_icon-125x125.png'),(710,'wp-content/plugins/duplicate-post/gpl-2.0.txt'),(711,'wp-content/plugins/duplicate-post/js/dist/duplicate-post-edit-430.js'),(712,'wp-content/plugins/duplicate-post/js/dist/duplicate-post-elementor-430.js'),(713,'wp-content/plugins/duplicate-post/js/dist/duplicate-post-options-430.js'),(714,'wp-content/plugins/duplicate-post/js/dist/duplicate-post-quick-edit-430.js'),(715,'wp-content/plugins/duplicate-post/js/dist/duplicate-post-strings-430.js'),(716,'wp-content/plugins/duplicate-post/options.php'),(717,'wp-content/plugins/duplicate-post/readme.txt'),(718,'wp-content/plugins/duplicate-post/src/admin/options-form-generator.php'),(719,'wp-content/plugins/duplicate-post/src/admin/options-inputs.php'),(720,'wp-content/plugins/duplicate-post/src/admin/options-page.php'),(721,'wp-content/plugins/duplicate-post/src/admin/options.php'),(722,'wp-content/plugins/duplicate-post/src/admin/views/options.php'),(723,'wp-content/plugins/duplicate-post/src/duplicate-post.php'),(724,'wp-content/plugins/duplicate-post/src/handlers/bulk-handler.php'),(725,'wp-content/plugins/duplicate-post/src/handlers/check-changes-handler.php'),(726,'wp-content/plugins/duplicate-post/src/handlers/handler.php'),(727,'wp-content/plugins/duplicate-post/src/handlers/link-handler.php'),(728,'wp-content/plugins/duplicate-post/src/handlers/save-post-handler.php'),(729,'wp-content/plugins/duplicate-post/src/permissions-helper.php'),(730,'wp-content/plugins/duplicate-post/src/post-duplicator.php'),(731,'wp-content/plugins/duplicate-post/src/post-republisher.php'),(732,'wp-content/plugins/duplicate-post/src/revisions-migrator.php'),(733,'wp-content/plugins/duplicate-post/src/ui/admin-bar.php'),(734,'wp-content/plugins/duplicate-post/src/ui/asset-manager.php'),(735,'wp-content/plugins/duplicate-post/src/ui/block-editor.php'),(736,'wp-content/plugins/duplicate-post/src/ui/bulk-actions.php'),(737,'wp-content/plugins/duplicate-post/src/ui/classic-editor.php'),(738,'wp-content/plugins/duplicate-post/src/ui/column.php'),(739,'wp-content/plugins/duplicate-post/src/ui/link-builder.php'),(740,'wp-content/plugins/duplicate-post/src/ui/metabox.php'),(741,'wp-content/plugins/duplicate-post/src/ui/newsletter.php'),(742,'wp-content/plugins/duplicate-post/src/ui/post-states.php'),(743,'wp-content/plugins/duplicate-post/src/ui/row-actions.php'),(744,'wp-content/plugins/duplicate-post/src/ui/user-interface.php'),(745,'wp-content/plugins/duplicate-post/src/utils.php'),(746,'wp-content/plugins/duplicate-post/src/watchers/bulk-actions-watcher.php'),(747,'wp-content/plugins/duplicate-post/src/watchers/copied-post-watcher.php'),(748,'wp-content/plugins/duplicate-post/src/watchers/link-actions-watcher.php'),(749,'wp-content/plugins/duplicate-post/src/watchers/original-post-watcher.php'),(750,'wp-content/plugins/duplicate-post/src/watchers/republished-post-watcher.php'),(751,'wp-content/plugins/duplicate-post/src/watchers/watchers.php'),(752,'wp-content/plugins/duplicate-post/vendor/autoload.php'),(753,'wp-content/plugins/duplicate-post/vendor/composer/ClassLoader.php'),(754,'wp-content/plugins/duplicate-post/vendor/composer/InstalledVersions.php'),(755,'wp-content/plugins/duplicate-post/vendor/composer/LICENSE'),(756,'wp-content/plugins/duplicate-post/vendor/composer/autoload_classmap.php'),(757,'wp-content/plugins/duplicate-post/vendor/composer/autoload_namespaces.php'),(758,'wp-content/plugins/duplicate-post/vendor/composer/autoload_psr4.php'),(759,'wp-content/plugins/duplicate-post/vendor/composer/autoload_real.php'),(760,'wp-content/plugins/duplicate-post/vendor/composer/autoload_static.php'),(761,'wp-content/plugins/duplicate-post/vendor/composer/installed.php'),(762,'wp-content/plugins/duplicate-post/vendor/composer/platform_check.php'),(763,'wp-content/plugins/fusion-builder/assets/fonts/count-down/count-down-timer.svg'),(764,'wp-content/plugins/fusion-builder/assets/js/chosen/chosen.jquery.js'),(765,'wp-content/plugins/fusion-builder/assets/js/chosen/chosen.jquery.min.js'),(766,'wp-content/plugins/fusion-builder/assets/js/codemirror/codemirror.js'),(767,'wp-content/plugins/fusion-builder/assets/js/colorpickeralpha/wp-color-picker-alpha.js'),(768,'wp-content/plugins/fusion-builder/assets/js/datetimepicker/bootstrap-datetimepicker.min.js'),(769,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-animations.js'),(770,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-chart.js'),(771,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-column-bg-image.js'),(772,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-column.js'),(773,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-container.js'),(774,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-content-boxes.js'),(775,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-countdown.js'),(776,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-counters-box.js'),(777,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-counters-circle.js'),(778,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-events.js'),(779,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-flip-boxes.js'),(780,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-gallery.js'),(781,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-image-before-after.js'),(782,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-image-compare.js'),(783,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-modal.js'),(784,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-progress.js'),(785,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-recent-posts.js'),(786,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-syntax-highlighter.js'),(787,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-tabs.js'),(788,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-testimonials.js'),(789,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-title.js'),(790,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-toggles.js'),(791,'wp-content/plugins/fusion-builder/assets/js/min/general/fusion-video.js'),(792,'wp-content/plugins/fusion-builder/assets/js/min/library/Chart.js'),(793,'wp-content/plugins/fusion-builder/assets/js/min/library/jquery.countTo.js'),(794,'wp-content/plugins/fusion-builder/assets/js/min/library/jquery.countdown.js'),(795,'wp-content/plugins/fusion-builder/assets/js/min/library/jquery.event.move.js'),(796,'wp-content/plugins/fusion-builder/assets/js/nouislider/nouislider.min.js'),(797,'wp-content/plugins/fusion-builder/assets/js/wpeditor/wp-editor.js'),(798,'wp-content/plugins/fusion-builder/fusion-builder.php'),(799,'wp-content/plugins/fusion-builder/images/icons/fb_logo.svg'),(800,'wp-content/plugins/fusion-builder/inc/admin-screens/addons.php'),(801,'wp-content/plugins/fusion-builder/inc/admin-screens/faq.php'),(802,'wp-content/plugins/fusion-builder/inc/admin-screens/library.php'),(803,'wp-content/plugins/fusion-builder/inc/admin-screens/register.php'),(804,'wp-content/plugins/fusion-builder/inc/admin-screens/settings.php'),(805,'wp-content/plugins/fusion-builder/inc/admin-screens/support.php'),(806,'wp-content/plugins/fusion-builder/inc/admin-screens/whatsnew.php'),(807,'wp-content/plugins/fusion-builder/inc/class-fusion-builder-dynamic-css.php'),(808,'wp-content/plugins/fusion-builder/inc/class-fusion-builder-element.php'),(809,'wp-content/plugins/fusion-builder/inc/class-fusion-builder-gutenberg.php'),(810,'wp-content/plugins/fusion-builder/inc/class-fusion-builder-library-table.php'),(811,'wp-content/plugins/fusion-builder/inc/class-fusion-builder-options-panel.php'),(812,'wp-content/plugins/fusion-builder/inc/class-fusion-builder-options.php'),(813,'wp-content/plugins/fusion-builder/inc/class-fusion-builder-redux.php'),(814,'wp-content/plugins/fusion-builder/inc/dynamic-css/dynamic_css.php'),(815,'wp-content/plugins/fusion-builder/inc/fusion-builder-admin.php'),(816,'wp-content/plugins/fusion-builder/inc/helpers.php'),(817,'wp-content/plugins/fusion-builder/inc/importer/importer.php'),(818,'wp-content/plugins/fusion-builder/inc/importer/js/fusion-builder-importer.js'),(819,'wp-content/plugins/fusion-builder/inc/layouts.php'),(820,'wp-content/plugins/fusion-builder/inc/lib/assets/fonts/fontawesome/icons_free.php'),(821,'wp-content/plugins/fusion-builder/inc/lib/assets/fonts/fontawesome/icons_pro.php'),(822,'wp-content/plugins/fusion-builder/inc/lib/assets/fonts/fontawesome/js/fa-v4-shims.js'),(823,'wp-content/plugins/fusion-builder/inc/lib/assets/fonts/fontawesome/js/icons-search-free.js'),(824,'wp-content/plugins/fusion-builder/inc/lib/assets/fonts/fontawesome/js/icons-search-pro.js'),(825,'wp-content/plugins/fusion-builder/inc/lib/assets/fonts/fontawesome/webfonts/fa-brands-400.svg'),(826,'wp-content/plugins/fusion-builder/inc/lib/assets/fonts/fontawesome/webfonts/fa-regular-400.svg'),(827,'wp-content/plugins/fusion-builder/inc/lib/assets/fonts/fontawesome/webfonts/fa-solid-900.svg'),(828,'wp-content/plugins/fusion-builder/inc/lib/assets/fonts/icomoon/icomoon.svg'),(829,'wp-content/plugins/fusion-builder/inc/lib/assets/fonts/icomoon-admin/icomoon.svg'),(830,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-admin-notice.js'),(831,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-alert.js'),(832,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-blog.js'),(833,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-button.js'),(834,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-carousel.js'),(835,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-equal-heights.js'),(836,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-flexslider.js'),(837,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-general-global.js'),(838,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-google-map.js'),(839,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-lightbox.js'),(840,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-non-responsive.js'),(841,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-patcher-admin-menu-notices.js'),(842,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-popover.js'),(843,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-responsive-typography.js'),(844,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-scroll-to-anchor.js'),(845,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-sharing-box.js'),(846,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-tooltip.js'),(847,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/general/fusion-waypoints.js'),(848,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/bootstrap.collapse.js'),(849,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/bootstrap.modal.js'),(850,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/bootstrap.popover.js'),(851,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/bootstrap.tab.js'),(852,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/bootstrap.tooltip.js'),(853,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/bootstrap.transition.js'),(854,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/cssua.js'),(855,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/excanvas.js'),(856,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/fuse.js'),(857,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/fusion-parallax.js'),(858,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/fusion-video-bg.js'),(859,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/fusion-video-general.js'),(860,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/html5shiv.js'),(861,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/imagesLoaded.js'),(862,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/infobox_packed.js'),(863,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/isotope.js'),(864,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.appear.js'),(865,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.carouFredSel.js'),(866,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.cycle.js'),(867,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.easing.js'),(868,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.easyPieChart.js'),(869,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.fade.js'),(870,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.fitvids.js'),(871,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.flexslider.js'),(872,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.fusion_maps.js'),(873,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.hoverflow.js'),(874,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.hoverintent.js'),(875,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.ilightbox.js'),(876,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.infinitescroll.js'),(877,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.mousewheel.js'),(878,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.placeholder.js'),(879,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.requestAnimationFrame.js'),(880,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.touchSwipe.js'),(881,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/jquery.waypoints.js'),(882,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/lazysizes.js'),(883,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/modernizr.js'),(884,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/packery.js'),(885,'wp-content/plugins/fusion-builder/inc/lib/assets/min/js/library/vimeoPlayer.js'),(886,'wp-content/plugins/fusion-builder/inc/lib/fusion-library.php'),(887,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-admin-notice.php'),(888,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-amp.php'),(889,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-cache.php'),(890,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-color.php'),(891,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-data.php'),(892,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-downloader.php'),(893,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-dynamic-css-file.php'),(894,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-dynamic-css-helpers.php'),(895,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-dynamic-css-inline.php'),(896,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-dynamic-css.php'),(897,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-dynamic-js-compiler.php'),(898,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-dynamic-js-file.php'),(899,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-dynamic-js-separate.php'),(900,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-dynamic-js.php'),(901,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-envato-api.php'),(902,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-fa-font-downloader.php'),(903,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-featured-image.php'),(904,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-filesystem.php'),(905,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-font-awesome.php'),(906,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-fusionredux.php'),(907,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-helper.php'),(908,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-images.php'),(909,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-library-autoloader.php'),(910,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-options.php'),(911,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-patcher-admin-notices.php'),(912,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-patcher-admin-screen.php'),(913,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-patcher-apply-patch.php'),(914,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-patcher-cache.php'),(915,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-patcher-checker.php'),(916,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-patcher-client.php'),(917,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-patcher-filesystem.php'),(918,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-patcher.php'),(919,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-privacy.php'),(920,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-product-registration.php'),(921,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-sanitize.php'),(922,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-scripts.php'),(923,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-settings.php'),(924,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion-updater.php'),(925,'wp-content/plugins/fusion-builder/inc/lib/inc/class-fusion.php'),(926,'wp-content/plugins/fusion-builder/inc/lib/inc/functions.php'),(927,'wp-content/plugins/fusion-builder/inc/lib/inc/fusion-icon.php'),(928,'wp-content/plugins/fusion-builder/inc/lib/inc/importer/class-fusion-wxr-importer.php'),(929,'wp-content/plugins/fusion-builder/inc/lib/inc/importer/class-logger-html.php'),(930,'wp-content/plugins/fusion-builder/inc/lib/inc/importer/class-logger.php'),(931,'wp-content/plugins/fusion-builder/inc/lib/inc/importer/class-wxr-importer.php'),(932,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/assets/fusion-redux.js'),(933,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/assets/themefusion_logo_white.svg'),(934,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/class-fusion-redux-addons.php'),(935,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/ace.js'),(936,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/ext-language_tools.js'),(937,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/ext-searchbox.js'),(938,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/field_ace_editor.js'),(939,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/field_ace_editor.min.js'),(940,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/field_ace_editor.php'),(941,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/mode-css.js'),(942,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/mode-html.js'),(943,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/mode-javascript.js'),(944,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/theme-chrome.js'),(945,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/worker-css.js'),(946,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/worker-html.js'),(947,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/ace_editor/worker-javascript.js'),(948,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/color_alpha/field_color_alpha.js'),(949,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/color_alpha/field_color_alpha.php'),(950,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/color_alpha/wp-color-picker-alpha.js'),(951,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/dimensions/field_dimensions.js'),(952,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/dimensions/field_dimensions.php'),(953,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/sortable/field_sortable.js'),(954,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/sortable/field_sortable.php'),(955,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/spacing/field_spacing.js'),(956,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/spacing/field_spacing.php'),(957,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/typography/field_typography.js'),(958,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/typography/googlefonts-array.php'),(959,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/custom-fields/typography/googlefonts.php'),(960,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/accordion/accordion/field_accordion.js'),(961,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/accordion/accordion/field_accordion.min.js'),(962,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/accordion/accordion/field_accordion.php'),(963,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/accordion/extension_accordion.php'),(964,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/repeater/extension_repeater.php'),(965,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/repeater/repeater/field_repeater.js'),(966,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/repeater/repeater/field_repeater.min.js'),(967,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/repeater/repeater/field_repeater.php'),(968,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/search/extension_search.js'),(969,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/search/extension_search.php'),(970,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/extension_vendorsupport.php'),(971,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/class.vendor-url.php'),(972,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/extension_vendor_support.php'),(973,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/ace.js'),(974,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/ext-emmet.js'),(975,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/ext-searchbox.js'),(976,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-css.js'),(977,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-html.js'),(978,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-javascript.js'),(979,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-json.js'),(980,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-less.js'),(981,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-markdown.js'),(982,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-mysql.js'),(983,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-plain_text.js'),(984,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-sass.js'),(985,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-scss.js'),(986,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-text.js'),(987,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/mode-xml.js'),(988,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/css.js'),(989,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/html.js'),(990,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/javascript.js'),(991,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/json.js'),(992,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/less.js'),(993,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/markdown.js'),(994,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/mysql.js'),(995,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/php.js'),(996,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/plain_text.js'),(997,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/sass.js'),(998,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/scss.js'),(999,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/text.js'),(1000,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/snippets/xml.js'),(1001,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/theme-chrome.js'),(1002,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/theme-monokai.js'),(1003,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/worker-css.js'),(1004,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/worker-html.js'),(1005,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/worker-javascript.js'),(1006,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/ace_editor/worker-json.js'),(1007,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3.js'),(1008,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3.min.js'),(1009,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_ar.js'),(1010,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_az.js'),(1011,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_bg.js'),(1012,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_ca.js'),(1013,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_cs.js'),(1014,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_da.js'),(1015,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_de.js'),(1016,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_el.js'),(1017,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_en.js.template'),(1018,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_es.js'),(1019,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_et.js'),(1020,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_eu.js'),(1021,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_fa.js'),(1022,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_fi.js'),(1023,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_fr.js'),(1024,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_gl.js'),(1025,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_he.js'),(1026,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_hu.js'),(1027,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_id.js'),(1028,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_is.js'),(1029,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_it.js'),(1030,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_ja.js'),(1031,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_ka.js'),(1032,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_ko.js'),(1033,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_lt.js'),(1034,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_lv.js'),(1035,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_mk.js'),(1036,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_ms.js'),(1037,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_nb.js'),(1038,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_nl.js'),(1039,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_pl.js'),(1040,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_pt-BR.js'),(1041,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_pt-PT.js'),(1042,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_ro.js'),(1043,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_rs.js'),(1044,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_ru.js'),(1045,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_sk.js'),(1046,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_sv.js'),(1047,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_th.js'),(1048,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_tr.js'),(1049,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_ug-CN.js'),(1050,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_uk.js'),(1051,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_vi.js'),(1052,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_zh-CN.js'),(1053,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/extensions/vendorsupport/vendor_support/vendor/select3/select3_locale_zh-TW.js'),(1054,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/css/vendor/elusive-icons/fonts/elusiveicons-webfont.svg'),(1055,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/fusionredux.js'),(1056,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/fusionredux.min.js'),(1057,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/media/media.js'),(1058,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/media/media.min.js'),(1059,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/cookie.js'),(1060,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/fusionredux.select3.sortable.js'),(1061,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/fusionredux.select3.sortable.min.js'),(1062,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/jquery.alphanum.js'),(1063,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/jquery.serializeForm.js'),(1064,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/jquery.typewatch.js'),(1065,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/jsonview.js'),(1066,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/jsonview.min.js'),(1067,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/lte-ie7.js'),(1068,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/qtip/jquery.qtip.js'),(1069,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/qtip/jquery.qtip.min.js'),(1070,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/select3.min.js'),(1071,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/spectrum/fusionredux-spectrum.js'),(1072,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor/spectrum/fusionredux-spectrum.min.js'),(1073,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/assets/js/vendor.min.js'),(1074,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/core/dashboard.php'),(1075,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/core/enqueue.php'),(1076,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/core/newsflash.php'),(1077,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/core/panel.php'),(1078,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/core/required.php'),(1079,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/framework.php'),(1080,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/browser.php'),(1081,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/class.fusionredux_admin_notices.php'),(1082,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/class.fusionredux_api.php'),(1083,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/class.fusionredux_cdn.php'),(1084,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/class.fusionredux_filesystem.php'),(1085,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/class.fusionredux_functions.php'),(1086,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/class.fusionredux_helpers.php'),(1087,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/class.fusionredux_instances.php'),(1088,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/class.p.php'),(1089,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/class.thirdparty.fixes.php'),(1090,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/extensions/import_export/extension_import_export.php'),(1091,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/extensions/import_export/import_export/field_import_export.js'),(1092,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/extensions/import_export/import_export/field_import_export.min.js'),(1093,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/extensions/import_export/import_export/field_import_export.php'),(1094,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/extensions/options_object/extension_options_object.php'),(1095,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/extensions/options_object/options_object/field_options_object.js'),(1096,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/extensions/options_object/options_object/field_options_object.min.js'),(1097,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/extensions/options_object/options_object/field_options_object.php'),(1098,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/ace_editor/field_ace_editor.js'),(1099,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/ace_editor/field_ace_editor.min.js'),(1100,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/ace_editor/field_ace_editor.php'),(1101,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/background/field_background.js'),(1102,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/background/field_background.min.js'),(1103,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/background/field_background.php'),(1104,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/border/field_border.js'),(1105,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/border/field_border.min.js'),(1106,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/border/field_border.php'),(1107,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/button_set/field_button_set.js'),(1108,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/button_set/field_button_set.min.js'),(1109,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/button_set/field_button_set.php'),(1110,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/checkbox/field_checkbox.js'),(1111,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/checkbox/field_checkbox.min.js'),(1112,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/checkbox/field_checkbox.php'),(1113,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/color/field_color.js'),(1114,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/color/field_color.min.js'),(1115,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/color/field_color.php'),(1116,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/color_gradient/field_color_gradient.js'),(1117,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/color_gradient/field_color_gradient.min.js'),(1118,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/color_gradient/field_color_gradient.php'),(1119,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/color_rgba/field_color_rgba.js'),(1120,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/color_rgba/field_color_rgba.min.js'),(1121,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/color_rgba/field_color_rgba.php'),(1122,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/date/field_date.js'),(1123,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/date/field_date.min.js'),(1124,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/date/field_date.php'),(1125,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/dimensions/field_dimensions.js'),(1126,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/dimensions/field_dimensions.min.js'),(1127,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/dimensions/field_dimensions.php'),(1128,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/divide/field_divide.php'),(1129,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/editor/field_editor.js'),(1130,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/editor/field_editor.min.js'),(1131,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/editor/field_editor.php'),(1132,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/editor/field_editor_c.php'),(1133,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/gallery/field_gallery.js'),(1134,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/gallery/field_gallery.min.js'),(1135,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/gallery/field_gallery.php'),(1136,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/image_select/field_image_select.js'),(1137,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/image_select/field_image_select.min.js'),(1138,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/image_select/field_image_select.php'),(1139,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/info/field_info.php'),(1140,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/link_color/field_link_color.js'),(1141,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/link_color/field_link_color.min.js'),(1142,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/link_color/field_link_color.php'),(1143,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/media/field_media.php'),(1144,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/multi_text/field_multi_text.js'),(1145,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/multi_text/field_multi_text.min.js'),(1146,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/multi_text/field_multi_text.php'),(1147,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/palette/field_palette.js'),(1148,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/palette/field_palette.min.js'),(1149,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/palette/field_palette.php'),(1150,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/password/field_password.php'),(1151,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/radio/field_radio.php'),(1152,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/raw/field_raw.php'),(1153,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/raw/parsedown.php'),(1154,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/section/field_section.php'),(1155,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/select/elusive-icons.php'),(1156,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/select/field_select.js'),(1157,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/select/field_select.min.js'),(1158,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/select/field_select.php'),(1159,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/select_image/field_select_image.js'),(1160,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/select_image/field_select_image.min.js'),(1161,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/select_image/field_select_image.php'),(1162,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/slider/field_slider.js'),(1163,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/slider/field_slider.min.js'),(1164,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/slider/field_slider.php'),(1165,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/slider/vendor/nouislider/fusionredux.jquery.nouislider.js'),(1166,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/slider/vendor/nouislider/fusionredux.jquery.nouislider.min.js'),(1167,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/slides/field_slides.js'),(1168,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/slides/field_slides.min.js'),(1169,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/slides/field_slides.php'),(1170,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/sortable/field_sortable.js'),(1171,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/sortable/field_sortable.min.js'),(1172,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/sortable/field_sortable.php'),(1173,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/sorter/field_sorter.js'),(1174,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/sorter/field_sorter.min.js'),(1175,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/sorter/field_sorter.php'),(1176,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/spacing/field_spacing.js'),(1177,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/spacing/field_spacing.min.js'),(1178,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/spacing/field_spacing.php'),(1179,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/spinner/field_spinner.js'),(1180,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/spinner/field_spinner.min.js'),(1181,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/spinner/field_spinner.php'),(1182,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/spinner/vendor/spinner_custom.js'),(1183,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/spinner/vendor/spinner_custom.min.js'),(1184,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/switch/field_switch.js'),(1185,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/switch/field_switch.min.js'),(1186,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/switch/field_switch.php'),(1187,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/text/field_text.php'),(1188,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/textarea/field_textarea.php'),(1189,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/typography/field_typography.js'),(1190,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/typography/field_typography.min.js'),(1191,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/typography/field_typography.php'),(1192,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/fields/typography/googlefonts.php'),(1193,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/lib.fusionredux_instances.php'),(1194,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/themecheck/checks/embedded.php'),(1195,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/themecheck/checks/full_package.php'),(1196,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/themecheck/checks/index.php'),(1197,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/themecheck/class.fusionredux_themecheck.php'),(1198,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/themecheck/index.php'),(1199,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/themecheck/js/admin.js'),(1200,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/themecheck/lang/index.php'),(1201,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/tracking.php'),(1202,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/color/validation_color.php'),(1203,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/color_rgba/validation_color_rgba.php'),(1204,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/colorrgba/validation_colorrgba.php'),(1205,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/comma_numeric/validation_comma_numeric.php'),(1206,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/css/validation_css.php'),(1207,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/date/validation_date.php'),(1208,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/email/validation_email.php'),(1209,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/email_not_empty/validation_email_not_empty.php'),(1210,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/html/validation_html.php'),(1211,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/html_custom/validation_html_custom.php'),(1212,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/js/validation_js.php'),(1213,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/no_html/validation_no_html.php'),(1214,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/no_special_chars/validation_no_special_chars.php'),(1215,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/not_empty/validation_not_empty.php'),(1216,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/numeric/validation_numeric.php'),(1217,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/numeric_not_empty/validation_numeric_not_empty.php'),(1218,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/preg_replace/validation_preg_replace.php'),(1219,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/unique_slug/validation_unique_slug.php'),(1220,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/validation/url/validation_url.php'),(1221,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/welcome/js/fusionredux-welcome-admin.js'),(1222,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/welcome/js/jquery.easing.min.js'),(1223,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/welcome/views/about.php'),(1224,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/welcome/views/changelog.php'),(1225,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/welcome/views/credits.php'),(1226,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/welcome/views/extensions.php'),(1227,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/welcome/views/status_report.php'),(1228,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/welcome/views/support.php'),(1229,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/inc/welcome/welcome.php'),(1230,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/templates/panel/container.tpl.php'),(1231,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/templates/panel/content.tpl.php'),(1232,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/templates/panel/footer.tpl.php'),(1233,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/templates/panel/header.tpl.php'),(1234,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/templates/panel/header_stickybar.tpl.php'),(1235,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/FusionReduxCore/templates/panel/menu_container.tpl.php'),(1236,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/Gruntfile.js'),(1237,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/class.fusionredux-plugin.php'),(1238,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/fusionredux-framework.php'),(1239,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/index.php'),(1240,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/framework/uninstall.php'),(1241,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/panel_templates/container.tpl.php'),(1242,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/panel_templates/header.tpl.php'),(1243,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/panel_templates/header_stickybar.tpl.php'),(1244,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/panel_templates/menu_container.tpl.php'),(1245,'wp-content/plugins/fusion-builder/inc/lib/inc/redux/validation-functions.php'),(1246,'wp-content/plugins/fusion-builder/inc/lib/inc/templates/featured-image-first.php'),(1247,'wp-content/plugins/fusion-builder/inc/lib/inc/wc-functions.php'),(1248,'wp-content/plugins/fusion-builder/inc/options/custom_css.php'),(1249,'wp-content/plugins/fusion-builder/inc/options/dynamic_css_js.php'),(1250,'wp-content/plugins/fusion-builder/inc/options/elements.php'),(1251,'wp-content/plugins/fusion-builder/inc/options/globals.php'),(1252,'wp-content/plugins/fusion-builder/inc/options/lightbox.php'),(1253,'wp-content/plugins/fusion-builder/inc/options/pagination.php'),(1254,'wp-content/plugins/fusion-builder/inc/options/responsive.php'),(1255,'wp-content/plugins/fusion-builder/inc/options/rollover.php'),(1256,'wp-content/plugins/fusion-builder/inc/options/slideshows.php'),(1257,'wp-content/plugins/fusion-builder/inc/shortcodes.php'),(1258,'wp-content/plugins/fusion-builder/inc/templates/app.php'),(1259,'wp-content/plugins/fusion-builder/inc/templates/blank-page.php'),(1260,'wp-content/plugins/fusion-builder/inc/templates/column-library.php'),(1261,'wp-content/plugins/fusion-builder/inc/templates/column.php'),(1262,'wp-content/plugins/fusion-builder/inc/templates/container.php'),(1263,'wp-content/plugins/fusion-builder/inc/templates/context-menu.php'),(1264,'wp-content/plugins/fusion-builder/inc/templates/custom/fusion-chart-settings.php'),(1265,'wp-content/plugins/fusion-builder/inc/templates/custom/fusion-pricing-table-settings.php'),(1266,'wp-content/plugins/fusion-builder/inc/templates/custom/js/fusion-chart-settings.js'),(1267,'wp-content/plugins/fusion-builder/inc/templates/custom/js/fusion-pricing-table-settings.js'),(1268,'wp-content/plugins/fusion-builder/inc/templates/element-library.php'),(1269,'wp-content/plugins/fusion-builder/inc/templates/element-settings.php'),(1270,'wp-content/plugins/fusion-builder/inc/templates/element.php'),(1271,'wp-content/plugins/fusion-builder/inc/templates/generator-elements.php'),(1272,'wp-content/plugins/fusion-builder/inc/templates/modal.php'),(1273,'wp-content/plugins/fusion-builder/inc/templates/multi-element-sortable-child.php'),(1274,'wp-content/plugins/fusion-builder/inc/templates/nested-column-library.php'),(1275,'wp-content/plugins/fusion-builder/inc/templates/nested-column.php'),(1276,'wp-content/plugins/fusion-builder/inc/templates/nested-row.php'),(1277,'wp-content/plugins/fusion-builder/inc/templates/next-page.php'),(1278,'wp-content/plugins/fusion-builder/inc/templates/options/checkbox_button_set.php'),(1279,'wp-content/plugins/fusion-builder/inc/templates/options/code.php'),(1280,'wp-content/plugins/fusion-builder/inc/templates/options/colorpicker.php'),(1281,'wp-content/plugins/fusion-builder/inc/templates/options/colorpickeralpha.php'),(1282,'wp-content/plugins/fusion-builder/inc/templates/options/date_time_picker.php'),(1283,'wp-content/plugins/fusion-builder/inc/templates/options/dimension.php'),(1284,'wp-content/plugins/fusion-builder/inc/templates/options/iconpicker.php'),(1285,'wp-content/plugins/fusion-builder/inc/templates/options/link_selector.php'),(1286,'wp-content/plugins/fusion-builder/inc/templates/options/multiple_select.php'),(1287,'wp-content/plugins/fusion-builder/inc/templates/options/multiple_upload.php'),(1288,'wp-content/plugins/fusion-builder/inc/templates/options/radio_button_set.php'),(1289,'wp-content/plugins/fusion-builder/inc/templates/options/radio_image_set.php'),(1290,'wp-content/plugins/fusion-builder/inc/templates/options/range.php'),(1291,'wp-content/plugins/fusion-builder/inc/templates/options/raw_textarea.php'),(1292,'wp-content/plugins/fusion-builder/inc/templates/options/select.php'),(1293,'wp-content/plugins/fusion-builder/inc/templates/options/textarea.php'),(1294,'wp-content/plugins/fusion-builder/inc/templates/options/textfield.php'),(1295,'wp-content/plugins/fusion-builder/inc/templates/options/tinymce.php'),(1296,'wp-content/plugins/fusion-builder/inc/templates/options/upload.php'),(1297,'wp-content/plugins/fusion-builder/inc/templates/options/upload_images.php'),(1298,'wp-content/plugins/fusion-builder/inc/templates/options/uploadattachment.php'),(1299,'wp-content/plugins/fusion-builder/inc/templates/options/uploadfile.php'),(1300,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-alert-preview.php'),(1301,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-blog-preview.php'),(1302,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-button-preview.php'),(1303,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-chart-preview.php'),(1304,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-checklist-preview.php'),(1305,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-content-boxes-preview.php'),(1306,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-countdown-preview.php'),(1307,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-counter-box-preview.php'),(1308,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-flipboxes-preview.php'),(1309,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-font-awesome-preview.php'),(1310,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-gallery-preview.php'),(1311,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-google-map-preview.php'),(1312,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-image-before-after-preview.php'),(1313,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-image-carousel-preview.php'),(1314,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-image-frame-preview.php'),(1315,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-layer-slider-preview.php'),(1316,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-menu-anchor-preview.php'),(1317,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-modal-preview.php'),(1318,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-person-preview.php'),(1319,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-post-slider-preview.php'),(1320,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-pricing-table-preview.php'),(1321,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-progress-preview.php'),(1322,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-recent-posts-preview.php'),(1323,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-revolution-slider-preview.php'),(1324,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-separator-preview.php'),(1325,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-share-preview.php'),(1326,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-sharingbox-preview.php'),(1327,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-slider-preview.php'),(1328,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-soundcloud-preview.php'),(1329,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-tabs-preview.php'),(1330,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-tagline-preview.php'),(1331,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-testimonials-preview.php'),(1332,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-text-preview.php'),(1333,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-title-preview.php'),(1334,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-toggles-preview.php'),(1335,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-vimeo-preview.php'),(1336,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-woo-shortcodes-preview.php'),(1337,'wp-content/plugins/fusion-builder/inc/templates/previews/fusion-youtube-preview.php'),(1338,'wp-content/plugins/fusion-builder/inc/templates/row.php'),(1339,'wp-content/plugins/fusion-builder/inc/templates/shortcodes/new-slideshow-blog-shortcode.php'),(1340,'wp-content/plugins/fusion-builder/inc/templates.php'),(1341,'wp-content/plugins/fusion-builder/inc/woocommerce/js/woocommerce.js'),(1342,'wp-content/plugins/fusion-builder/inc/woocommerce/woo-config.php'),(1343,'wp-content/plugins/fusion-builder/js/admin/fusion-builder-admin.js'),(1344,'wp-content/plugins/fusion-builder/js/app.js'),(1345,'wp-content/plugins/fusion-builder/js/collections/collection-element.js'),(1346,'wp-content/plugins/fusion-builder/js/fusion-builder-front.js'),(1347,'wp-content/plugins/fusion-builder/js/fusion-builder.js'),(1348,'wp-content/plugins/fusion-builder/js/fusion-history.js'),(1349,'wp-content/plugins/fusion-builder/js/fusion-plugin.js'),(1350,'wp-content/plugins/fusion-builder/js/fusion-shortcode-generator.js'),(1351,'wp-content/plugins/fusion-builder/js/models/model-element.js'),(1352,'wp-content/plugins/fusion-builder/js/models/model-view-manager.js'),(1353,'wp-content/plugins/fusion-builder/js/sticky-menu.js'),(1354,'wp-content/plugins/fusion-builder/js/util.js'),(1355,'wp-content/plugins/fusion-builder/js/views/view-blank-page.js'),(1356,'wp-content/plugins/fusion-builder/js/views/view-column-library.js'),(1357,'wp-content/plugins/fusion-builder/js/views/view-column-nested.js'),(1358,'wp-content/plugins/fusion-builder/js/views/view-column.js'),(1359,'wp-content/plugins/fusion-builder/js/views/view-container.js'),(1360,'wp-content/plugins/fusion-builder/js/views/view-context-menu.js'),(1361,'wp-content/plugins/fusion-builder/js/views/view-element-preview.js'),(1362,'wp-content/plugins/fusion-builder/js/views/view-element-settings.js'),(1363,'wp-content/plugins/fusion-builder/js/views/view-element.js'),(1364,'wp-content/plugins/fusion-builder/js/views/view-elements-library.js'),(1365,'wp-content/plugins/fusion-builder/js/views/view-generator-elements.js'),(1366,'wp-content/plugins/fusion-builder/js/views/view-modal.js'),(1367,'wp-content/plugins/fusion-builder/js/views/view-multi-element-child-settings.js'),(1368,'wp-content/plugins/fusion-builder/js/views/view-multi-element-sortable-child.js'),(1369,'wp-content/plugins/fusion-builder/js/views/view-multi-element-sortable-ui.js'),(1370,'wp-content/plugins/fusion-builder/js/views/view-nested-column-library.js'),(1371,'wp-content/plugins/fusion-builder/js/views/view-next-page.js'),(1372,'wp-content/plugins/fusion-builder/js/views/view-row-nested.js'),(1373,'wp-content/plugins/fusion-builder/js/views/view-row.js'),(1374,'wp-content/plugins/fusion-builder/js/wNumb.js'),(1375,'wp-content/plugins/fusion-builder/shortcodes/fusion-alert.php'),(1376,'wp-content/plugins/fusion-builder/shortcodes/fusion-blank-page.php'),(1377,'wp-content/plugins/fusion-builder/shortcodes/fusion-blog.php'),(1378,'wp-content/plugins/fusion-builder/shortcodes/fusion-button.php'),(1379,'wp-content/plugins/fusion-builder/shortcodes/fusion-chart.php'),(1380,'wp-content/plugins/fusion-builder/shortcodes/fusion-checklist.php'),(1381,'wp-content/plugins/fusion-builder/shortcodes/fusion-code-block.php'),(1382,'wp-content/plugins/fusion-builder/shortcodes/fusion-column-inner.php'),(1383,'wp-content/plugins/fusion-builder/shortcodes/fusion-column.php'),(1384,'wp-content/plugins/fusion-builder/shortcodes/fusion-container.php'),(1385,'wp-content/plugins/fusion-builder/shortcodes/fusion-content-boxes.php'),(1386,'wp-content/plugins/fusion-builder/shortcodes/fusion-convertplus.php'),(1387,'wp-content/plugins/fusion-builder/shortcodes/fusion-countdown.php'),(1388,'wp-content/plugins/fusion-builder/shortcodes/fusion-counters-box.php'),(1389,'wp-content/plugins/fusion-builder/shortcodes/fusion-counters-circle.php'),(1390,'wp-content/plugins/fusion-builder/shortcodes/fusion-dropcap.php'),(1391,'wp-content/plugins/fusion-builder/shortcodes/fusion-events.php'),(1392,'wp-content/plugins/fusion-builder/shortcodes/fusion-flip-boxes.php'),(1393,'wp-content/plugins/fusion-builder/shortcodes/fusion-fontawesome.php'),(1394,'wp-content/plugins/fusion-builder/shortcodes/fusion-gallery.php'),(1395,'wp-content/plugins/fusion-builder/shortcodes/fusion-global.php'),(1396,'wp-content/plugins/fusion-builder/shortcodes/fusion-google-map.php'),(1397,'wp-content/plugins/fusion-builder/shortcodes/fusion-highlight.php'),(1398,'wp-content/plugins/fusion-builder/shortcodes/fusion-image-before-after.php'),(1399,'wp-content/plugins/fusion-builder/shortcodes/fusion-image-carousel.php'),(1400,'wp-content/plugins/fusion-builder/shortcodes/fusion-layer-slider.php'),(1401,'wp-content/plugins/fusion-builder/shortcodes/fusion-lightbox.php'),(1402,'wp-content/plugins/fusion-builder/shortcodes/fusion-menu-anchor.php'),(1403,'wp-content/plugins/fusion-builder/shortcodes/fusion-modal.php'),(1404,'wp-content/plugins/fusion-builder/shortcodes/fusion-nextpage.php'),(1405,'wp-content/plugins/fusion-builder/shortcodes/fusion-one-page-link.php'),(1406,'wp-content/plugins/fusion-builder/shortcodes/fusion-person.php'),(1407,'wp-content/plugins/fusion-builder/shortcodes/fusion-popover.php'),(1408,'wp-content/plugins/fusion-builder/shortcodes/fusion-post-slider.php'),(1409,'wp-content/plugins/fusion-builder/shortcodes/fusion-pricing-table.php'),(1410,'wp-content/plugins/fusion-builder/shortcodes/fusion-progress.php'),(1411,'wp-content/plugins/fusion-builder/shortcodes/fusion-recent-posts.php'),(1412,'wp-content/plugins/fusion-builder/shortcodes/fusion-revolution-slider.php'),(1413,'wp-content/plugins/fusion-builder/shortcodes/fusion-row-inner.php'),(1414,'wp-content/plugins/fusion-builder/shortcodes/fusion-row.php'),(1415,'wp-content/plugins/fusion-builder/shortcodes/fusion-section-separator.php'),(1416,'wp-content/plugins/fusion-builder/shortcodes/fusion-separator.php'),(1417,'wp-content/plugins/fusion-builder/shortcodes/fusion-sharingbox.php'),(1418,'wp-content/plugins/fusion-builder/shortcodes/fusion-slider.php'),(1419,'wp-content/plugins/fusion-builder/shortcodes/fusion-social-links.php'),(1420,'wp-content/plugins/fusion-builder/shortcodes/fusion-soundcloud.php'),(1421,'wp-content/plugins/fusion-builder/shortcodes/fusion-syntax-highlighter.php'),(1422,'wp-content/plugins/fusion-builder/shortcodes/fusion-table.php'),(1423,'wp-content/plugins/fusion-builder/shortcodes/fusion-tabs.php'),(1424,'wp-content/plugins/fusion-builder/shortcodes/fusion-tagline.php'),(1425,'wp-content/plugins/fusion-builder/shortcodes/fusion-testimonials.php'),(1426,'wp-content/plugins/fusion-builder/shortcodes/fusion-text.php'),(1427,'wp-content/plugins/fusion-builder/shortcodes/fusion-title.php'),(1428,'wp-content/plugins/fusion-builder/shortcodes/fusion-toggle.php'),(1429,'wp-content/plugins/fusion-builder/shortcodes/fusion-tooltip.php'),(1430,'wp-content/plugins/fusion-builder/shortcodes/fusion-user-login.php'),(1431,'wp-content/plugins/fusion-builder/shortcodes/fusion-vimeo.php'),(1432,'wp-content/plugins/fusion-builder/shortcodes/fusion-widget-area.php'),(1433,'wp-content/plugins/fusion-builder/shortcodes/fusion-woo-featured-products-slider.php'),(1434,'wp-content/plugins/fusion-builder/shortcodes/fusion-woo-product-slider.php'),(1435,'wp-content/plugins/fusion-builder/shortcodes/fusion-woo-shortcodes.php'),(1436,'wp-content/plugins/fusion-builder/shortcodes/fusion-youtube.php'),(1437,'wp-content/plugins/fusion-builder/shortcodes/js/fusion-chart.js'),(1438,'wp-content/plugins/fusion-builder/shortcodes/js/fusion-lightbox.js'),(1439,'wp-content/plugins/fusion-builder/shortcodes/js/fusion-pricing-table.js'),(1440,'wp-content/plugins/fusion-builder/shortcodes/js/fusion-table.js'),(1441,'wp-content/plugins/fusion-builder/shortcodes/js/fusion-woo-shortcodes.js'),(1442,'wp-content/plugins/fusion-core/fusion-slider/class-fusion-slider.php'),(1443,'wp-content/plugins/fusion-core/fusion-slider/templates/add-new-meta-fields.php'),(1444,'wp-content/plugins/fusion-core/fusion-slider/templates/clone-button-after-title.php'),(1445,'wp-content/plugins/fusion-core/fusion-slider/templates/clone-button-edit-form.php'),(1446,'wp-content/plugins/fusion-core/fusion-slider/templates/edit-meta-fields.php'),(1447,'wp-content/plugins/fusion-core/fusion-slider/templates/export-import-settings.php'),(1448,'wp-content/plugins/fusion-core/fusion-slider/templates/slider.php'),(1449,'wp-content/plugins/fusion-core/js/min/avada-faqs.js'),(1450,'wp-content/plugins/fusion-core/js/min/avada-fusion-slider.js'),(1451,'wp-content/plugins/fusion-core/js/min/avada-portfolio.js'),(1452,'wp-content/plugins/fusion-core/js/min/fusion-slider.js'),(1453,'wp-content/plugins/fusion-core/shortcodes/fusion-faq.php'),(1454,'wp-content/plugins/fusion-core/shortcodes/fusion-fusionslider.php'),(1455,'wp-content/plugins/fusion-core/shortcodes/fusion-portfolio.php'),(1456,'wp-content/plugins/fusion-core/shortcodes/fusion-privacy.php'),(1457,'wp-content/plugins/fusion-core/shortcodes/previews/fusion-faq-preview.php'),(1458,'wp-content/plugins/fusion-core/shortcodes/previews/fusion-fusion-slider-preview.php'),(1459,'wp-content/plugins/fusion-core/shortcodes/previews/fusion-portfolio-preview.php'),(1460,'wp-content/plugins/fusion-core/shortcodes/previews/fusion-privacy-preview.php'),(1461,'wp-content/plugins/fusion-core/templates/archive-avada_portfolio.php'),(1462,'wp-content/plugins/fusion-core/templates/single-avada_portfolio.php'),(1463,'wp-content/plugins/index.php'),(1464,'wp-content/plugins/instagram-feed/README.txt'),(1465,'wp-content/plugins/instagram-feed/css/admin-notifications.css'),(1466,'wp-content/plugins/instagram-feed/css/sb-blocks.css'),(1467,'wp-content/plugins/instagram-feed/css/sb-instagram-2-1.css'),(1468,'wp-content/plugins/instagram-feed/css/sb-instagram-2-1.min.css'),(1469,'wp-content/plugins/instagram-feed/css/sb-instagram-2-2.css'),(1470,'wp-content/plugins/instagram-feed/css/sb-instagram-2-2.min.css'),(1471,'wp-content/plugins/instagram-feed/css/sb-instagram-admin.css'),(1472,'wp-content/plugins/instagram-feed/css/sb-instagram.css'),(1473,'wp-content/plugins/instagram-feed/css/sb-instagram.min.css'),(1474,'wp-content/plugins/instagram-feed/css/sbi-styles.css'),(1475,'wp-content/plugins/instagram-feed/css/sbi-styles.min.css'),(1476,'wp-content/plugins/instagram-feed/gpl-2.0.txt'),(1477,'wp-content/plugins/instagram-feed/img/about/api-error.png'),(1478,'wp-content/plugins/instagram-feed/img/about/icon-full.svg'),(1479,'wp-content/plugins/instagram-feed/img/about/icon-none.svg'),(1480,'wp-content/plugins/instagram-feed/img/about/icon-partial.svg'),(1481,'wp-content/plugins/instagram-feed/img/about/plugin-fb.png'),(1482,'wp-content/plugins/instagram-feed/img/about/plugin-if.png'),(1483,'wp-content/plugins/instagram-feed/img/about/plugin-mi.png'),(1484,'wp-content/plugins/instagram-feed/img/about/plugin-om.png'),(1485,'wp-content/plugins/instagram-feed/img/about/plugin-rp.png'),(1486,'wp-content/plugins/instagram-feed/img/about/plugin-seo.png'),(1487,'wp-content/plugins/instagram-feed/img/about/plugin-smtp.png'),(1488,'wp-content/plugins/instagram-feed/img/about/plugin-tw.jpg'),(1489,'wp-content/plugins/instagram-feed/img/about/plugin-wpforms.png'),(1490,'wp-content/plugins/instagram-feed/img/about/plugin-yt.png'),(1491,'wp-content/plugins/instagram-feed/img/about/steps.png'),(1492,'wp-content/plugins/instagram-feed/img/about/team.jpg'),(1493,'wp-content/plugins/instagram-feed/img/balloon-120.png'),(1494,'wp-content/plugins/instagram-feed/img/carousel.png'),(1495,'wp-content/plugins/instagram-feed/img/grid.png'),(1496,'wp-content/plugins/instagram-feed/img/highlight.png'),(1497,'wp-content/plugins/instagram-feed/img/insta-logo.png'),(1498,'wp-content/plugins/instagram-feed/img/instagram-pro-promo.png'),(1499,'wp-content/plugins/instagram-feed/img/loader.png'),(1500,'wp-content/plugins/instagram-feed/img/masonry.png'),(1501,'wp-content/plugins/instagram-feed/img/placeholder.png'),(1502,'wp-content/plugins/instagram-feed/img/sbi-icon.png'),(1503,'wp-content/plugins/instagram-feed/img/sbi-oembed.png'),(1504,'wp-content/plugins/instagram-feed/img/small-logo.png'),(1505,'wp-content/plugins/instagram-feed/img/sw-screenshot.png'),(1506,'wp-content/plugins/instagram-feed/img/thumb-placeholder.png'),(1507,'wp-content/plugins/instagram-feed/inc/admin/PluginSilentUpgrader.php'),(1508,'wp-content/plugins/instagram-feed/inc/admin/PluginSilentUpgraderSkin.php'),(1509,'wp-content/plugins/instagram-feed/inc/admin/actions.php'),(1510,'wp-content/plugins/instagram-feed/inc/admin/addon-functions.php'),(1511,'wp-content/plugins/instagram-feed/inc/admin/blocks/class-sbi-blocks.php'),(1512,'wp-content/plugins/instagram-feed/inc/admin/class-install-skin.php'),(1513,'wp-content/plugins/instagram-feed/inc/admin/class-sbi-about.php'),(1514,'wp-content/plugins/instagram-feed/inc/admin/class-sbi-account-connector.php'),(1515,'wp-content/plugins/instagram-feed/inc/admin/class-sbi-new-user.php'),(1516,'wp-content/plugins/instagram-feed/inc/admin/class-sbi-notifications.php'),(1517,'wp-content/plugins/instagram-feed/inc/admin/class-sbi-sitehealth.php'),(1518,'wp-content/plugins/instagram-feed/inc/admin/class-sbi-tracking.php'),(1519,'wp-content/plugins/instagram-feed/inc/admin/main.php'),(1520,'wp-content/plugins/instagram-feed/inc/admin/templates/locator-summary.php'),(1521,'wp-content/plugins/instagram-feed/inc/class-sb-instagram-api-connect.php'),(1522,'wp-content/plugins/instagram-feed/inc/class-sb-instagram-connected-account.php'),(1523,'wp-content/plugins/instagram-feed/inc/class-sb-instagram-cron-updater.php'),(1524,'wp-content/plugins/instagram-feed/inc/class-sb-instagram-data-encryption.php'),(1525,'wp-content/plugins/instagram-feed/inc/class-sb-instagram-data-manager.php'),(1526,'wp-content/plugins/instagram-feed/inc/class-sb-instagram-display-elements.php'),(1527,'wp-content/plugins/instagram-feed/inc/class-sb-instagram-education.php'),(1528,'wp-content/plugins/instagram-feed/inc/class-sb-instagram-feed-locator.php'),(1529,'wp-content/plugins/instagram-feed/inc/class-sb-instagram-feed.php'),(1530,'wp-content/plugins/instagram-feed/inc/class-sb-instagram-gdpr-integrations.php'),(1531,'wp-content/plugins/instagram-feed/inc/class-sb-instagram-oembed.php'),(1532,'wp-content/plugins/instagram-feed/inc/class-sb-instagram-parse.php'),(1533,'wp-content/plugins/instagram-feed/inc/class-sb-instagram-post-set.php'),(1534,'wp-content/plugins/instagram-feed/inc/class-sb-instagram-post.php'),(1535,'wp-content/plugins/instagram-feed/inc/class-sb-instagram-posts-manager.php'),(1536,'wp-content/plugins/instagram-feed/inc/class-sb-instagram-settings.php'),(1537,'wp-content/plugins/instagram-feed/inc/class-sb-instagram-single.php'),(1538,'wp-content/plugins/instagram-feed/inc/class-sb-instagram-token-refresher.php'),(1539,'wp-content/plugins/instagram-feed/inc/email.php'),(1540,'wp-content/plugins/instagram-feed/inc/if-functions.php'),(1541,'wp-content/plugins/instagram-feed/instagram-feed.php'),(1542,'wp-content/plugins/instagram-feed/js/admin-notifications.js'),(1543,'wp-content/plugins/instagram-feed/js/jquery.matchHeight-min.js'),(1544,'wp-content/plugins/instagram-feed/js/sb-blocks.js'),(1545,'wp-content/plugins/instagram-feed/js/sb-instagram-2-2.js'),(1546,'wp-content/plugins/instagram-feed/js/sb-instagram-2-2.min.js'),(1547,'wp-content/plugins/instagram-feed/js/sb-instagram-admin-2-2.js'),(1548,'wp-content/plugins/instagram-feed/js/sb-instagram-admin.js'),(1549,'wp-content/plugins/instagram-feed/js/sb-instagram.js'),(1550,'wp-content/plugins/instagram-feed/js/sb-instagram.min.js'),(1551,'wp-content/plugins/instagram-feed/js/sbi-scripts.js'),(1552,'wp-content/plugins/instagram-feed/js/sbi-scripts.min.js'),(1553,'wp-content/plugins/instagram-feed/languages/instagram-feed-da_DK.mo'),(1554,'wp-content/plugins/instagram-feed/languages/instagram-feed-de_DE.mo'),(1555,'wp-content/plugins/instagram-feed/languages/instagram-feed-en.mo'),(1556,'wp-content/plugins/instagram-feed/languages/instagram-feed-es_ES.mo'),(1557,'wp-content/plugins/instagram-feed/languages/instagram-feed-fi_FI.mo'),(1558,'wp-content/plugins/instagram-feed/languages/instagram-feed-fr_FR.mo'),(1559,'wp-content/plugins/instagram-feed/languages/instagram-feed-it_IT.mo'),(1560,'wp-content/plugins/instagram-feed/languages/instagram-feed-ja_JP.mo'),(1561,'wp-content/plugins/instagram-feed/languages/instagram-feed-ko_KR.mo'),(1562,'wp-content/plugins/instagram-feed/languages/instagram-feed-nl_NL.mo'),(1563,'wp-content/plugins/instagram-feed/languages/instagram-feed-nn_NO.mo'),(1564,'wp-content/plugins/instagram-feed/languages/instagram-feed-pt_PT.mo'),(1565,'wp-content/plugins/instagram-feed/languages/instagram-feed-ru_RU.mo'),(1566,'wp-content/plugins/instagram-feed/languages/instagram-feed-sv_SE.mo'),(1567,'wp-content/plugins/instagram-feed/languages/instagram-feed.pot'),(1568,'wp-content/plugins/instagram-feed/templates/feed.php'),(1569,'wp-content/plugins/instagram-feed/templates/footer.php'),(1570,'wp-content/plugins/instagram-feed/templates/header.php'),(1571,'wp-content/plugins/instagram-feed/templates/item.php'),(1572,'wp-content/plugins/instagram-feed/widget.php'),(1573,'wp-content/plugins/instagram-feed/wpml-config.xml'),(1574,'wp-content/plugins/really-simple-ssl/assets/cross.svg'),(1575,'wp-content/plugins/really-simple-ssl/assets/css/index.php'),(1576,'wp-content/plugins/really-simple-ssl/assets/css/main-rtl.css'),(1577,'wp-content/plugins/really-simple-ssl/assets/css/main-rtl.min.css'),(1578,'wp-content/plugins/really-simple-ssl/assets/css/main.css'),(1579,'wp-content/plugins/really-simple-ssl/assets/css/main.css.map'),(1580,'wp-content/plugins/really-simple-ssl/assets/css/main.less'),(1581,'wp-content/plugins/really-simple-ssl/assets/css/main.min.css'),(1582,'wp-content/plugins/really-simple-ssl/assets/css/variables.css'),(1583,'wp-content/plugins/really-simple-ssl/assets/css/variables.css.map'),(1584,'wp-content/plugins/really-simple-ssl/assets/css/variables.less'),(1585,'wp-content/plugins/really-simple-ssl/assets/css/variables.min.css'),(1586,'wp-content/plugins/really-simple-ssl/assets/css/wcag.css'),(1587,'wp-content/plugins/really-simple-ssl/assets/css/wcag.css.map'),(1588,'wp-content/plugins/really-simple-ssl/assets/css/wcag.less'),(1589,'wp-content/plugins/really-simple-ssl/assets/css/wcag.min.css'),(1590,'wp-content/plugins/really-simple-ssl/assets/icon-128x128.png'),(1591,'wp-content/plugins/really-simple-ssl/assets/js/scripts.js'),(1592,'wp-content/plugins/really-simple-ssl/assets/js/scripts.min.js'),(1593,'wp-content/plugins/really-simple-ssl/assets/really-simple-plugins.png'),(1594,'wp-content/plugins/really-simple-ssl/assets/really-simple-ssl-logo.png'),(1595,'wp-content/plugins/really-simple-ssl/class-admin.php'),(1596,'wp-content/plugins/really-simple-ssl/class-cache.php'),(1597,'wp-content/plugins/really-simple-ssl/class-certificate.php'),(1598,'wp-content/plugins/really-simple-ssl/class-front-end.php'),(1599,'wp-content/plugins/really-simple-ssl/class-help.php'),(1600,'wp-content/plugins/really-simple-ssl/class-mixed-content-fixer.php'),(1601,'wp-content/plugins/really-simple-ssl/class-multisite.php'),(1602,'wp-content/plugins/really-simple-ssl/class-rsssl-wp-cli.php'),(1603,'wp-content/plugins/really-simple-ssl/class-server.php'),(1604,'wp-content/plugins/really-simple-ssl/class-site-health.php'),(1605,'wp-content/plugins/really-simple-ssl/class-url.php'),(1606,'wp-content/plugins/really-simple-ssl/force-deactivate.txt'),(1607,'wp-content/plugins/really-simple-ssl/grid/css/grid-rtl.css'),(1608,'wp-content/plugins/really-simple-ssl/grid/css/grid-rtl.css.map'),(1609,'wp-content/plugins/really-simple-ssl/grid/css/grid-rtl.less'),(1610,'wp-content/plugins/really-simple-ssl/grid/css/grid-rtl.min.css'),(1611,'wp-content/plugins/really-simple-ssl/grid/css/grid.css'),(1612,'wp-content/plugins/really-simple-ssl/grid/css/grid.css.map'),(1613,'wp-content/plugins/really-simple-ssl/grid/css/grid.less'),(1614,'wp-content/plugins/really-simple-ssl/grid/css/grid.min.css'),(1615,'wp-content/plugins/really-simple-ssl/grid/templates/grid-container.php'),(1616,'wp-content/plugins/really-simple-ssl/grid/templates/grid-element.php'),(1617,'wp-content/plugins/really-simple-ssl/grid/templates/header.php'),(1618,'wp-content/plugins/really-simple-ssl/grid/templates/ms-settings.php'),(1619,'wp-content/plugins/really-simple-ssl/grid/templates/other-plugins.php'),(1620,'wp-content/plugins/really-simple-ssl/grid/templates/our-plugins-header.php'),(1621,'wp-content/plugins/really-simple-ssl/grid/templates/progress-footer.php'),(1622,'wp-content/plugins/really-simple-ssl/grid/templates/progress-header.php'),(1623,'wp-content/plugins/really-simple-ssl/grid/templates/progress.php'),(1624,'wp-content/plugins/really-simple-ssl/grid/templates/settings-footer.php'),(1625,'wp-content/plugins/really-simple-ssl/grid/templates/settings.php'),(1626,'wp-content/plugins/really-simple-ssl/grid/templates/support-footer.php'),(1627,'wp-content/plugins/really-simple-ssl/grid/templates/support.php'),(1628,'wp-content/plugins/really-simple-ssl/grid/templates/tips-tricks-footer.php'),(1629,'wp-content/plugins/really-simple-ssl/grid/templates/tips-tricks.php'),(1630,'wp-content/plugins/really-simple-ssl/includes/simple-scrollbar.css'),(1631,'wp-content/plugins/really-simple-ssl/includes/simple-scrollbar.js'),(1632,'wp-content/plugins/really-simple-ssl/includes/simple-scrollbar.min.css'),(1633,'wp-content/plugins/really-simple-ssl/includes/simple-scrollbar.min.js'),(1634,'wp-content/plugins/really-simple-ssl/index.php'),(1635,'wp-content/plugins/really-simple-ssl/languages/index.php'),(1636,'wp-content/plugins/really-simple-ssl/languages/really-simple-ssl.pot'),(1637,'wp-content/plugins/really-simple-ssl/lets-encrypt/class-letsencrypt-handler.php'),(1638,'wp-content/plugins/really-simple-ssl/lets-encrypt/composer.json'),(1639,'wp-content/plugins/really-simple-ssl/lets-encrypt/cron.php'),(1640,'wp-content/plugins/really-simple-ssl/lets-encrypt/download.php'),(1641,'wp-content/plugins/really-simple-ssl/lets-encrypt/functions.php'),(1642,'wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/cloudways/cloudways.php'),(1643,'wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/cloudways/functions.php'),(1644,'wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/cpanel/cpanel.php'),(1645,'wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/cpanel/functions.php'),(1646,'wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/directadmin/directadmin.php'),(1647,'wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/directadmin/functions.php'),(1648,'wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/directadmin/httpsocket.php'),(1649,'wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/hostgator/hostgator.php'),(1650,'wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/integrations.php'),(1651,'wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/plesk/functions.php'),(1652,'wp-content/plugins/really-simple-ssl/lets-encrypt/integrations/plesk/plesk.php'),(1653,'wp-content/plugins/really-simple-ssl/lets-encrypt/letsencrypt.php'),(1654,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/autoload.php'),(1655,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/ClassLoader.php'),(1656,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/InstalledVersions.php'),(1657,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/LICENSE'),(1658,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/autoload_classmap.php'),(1659,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/autoload_namespaces.php'),(1660,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/autoload_psr4.php'),(1661,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/autoload_real.php'),(1662,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/autoload_static.php'),(1663,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/installed.json'),(1664,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/installed.php'),(1665,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/composer/platform_check.php'),(1666,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/LICENSE.md'),(1667,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/README.md'),(1668,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/composer.json'),(1669,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/phpunit.xml.dist'),(1670,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/AbstractKeyValuable.php'),(1671,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Account.php'),(1672,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Authorizer/AbstractAuthorizer.php'),(1673,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Authorizer/AbstractDNSWriter.php'),(1674,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Authorizer/DNS.php'),(1675,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Authorizer/HTTP.php'),(1676,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Cache/AbstractKeyValuableCache.php'),(1677,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Cache/AccountResponse.php'),(1678,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Cache/DirectoryResponse.php'),(1679,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Cache/NewNonceResponse.php'),(1680,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Cache/OrderResponse.php'),(1681,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Connector/Connector.php'),(1682,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Connector/RawResponse.php'),(1683,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Exception/AbstractException.php'),(1684,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Exception/AuthorizationInvalid.php'),(1685,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Exception/DNSAuthorizationInvalid.php'),(1686,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Exception/ExpiredAuthorization.php'),(1687,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Exception/HTTPAuthorizationInvalid.php'),(1688,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Exception/InvalidResponse.php'),(1689,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Exception/OpenSSLException.php'),(1690,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Exception/RateLimitReached.php'),(1691,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Exception/StatusInvalid.php'),(1692,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Order.php'),(1693,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/AbstractRequest.php'),(1694,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Account/AbstractLocation.php'),(1695,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Account/ChangeKeys.php'),(1696,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Account/Create.php'),(1697,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Account/Deactivate.php'),(1698,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Account/Get.php'),(1699,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Account/GetData.php'),(1700,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Account/Update.php'),(1701,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Authorization/Get.php'),(1702,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Authorization/Start.php'),(1703,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/GetDirectory.php'),(1704,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/GetNewNonce.php'),(1705,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Order/Create.php'),(1706,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Order/Finalize.php'),(1707,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Order/Get.php'),(1708,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Order/GetCertificate.php'),(1709,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Request/Order/RevokeCertificate.php'),(1710,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/AbstractResponse.php'),(1711,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Account/AbstractAccount.php'),(1712,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Account/AbstractLocation.php'),(1713,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Account/ChangeKeys.php'),(1714,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Account/Create.php'),(1715,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Account/Deactivate.php'),(1716,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Account/Get.php'),(1717,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Account/GetData.php'),(1718,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Account/Update.php'),(1719,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Authorization/AbstractAuthorization.php'),(1720,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Authorization/Get.php'),(1721,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Authorization/Start.php'),(1722,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Authorization/Struct/Challenge.php'),(1723,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Authorization/Struct/Identifier.php'),(1724,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/GetDirectory.php'),(1725,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/GetNewNonce.php'),(1726,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Order/AbstractOrder.php'),(1727,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Order/Create.php'),(1728,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Order/Finalize.php'),(1729,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Order/Get.php'),(1730,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Order/GetCertificate.php'),(1731,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Response/Order/RevokeCertificate.php'),(1732,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/SingletonTrait.php'),(1733,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Struct/CertificateBundle.php'),(1734,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Struct/ChallengeAuthorizationKey.php'),(1735,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Utilities/Base64.php'),(1736,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Utilities/Certificate.php'),(1737,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Utilities/KeyGenerator.php'),(1738,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Utilities/Logger.php'),(1739,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2/Utilities/RequestSigner.php'),(1740,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2Tests/AbstractTest.php'),(1741,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2Tests/AccountTest.php'),(1742,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2Tests/Authorizer/HTTPTest.php'),(1743,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/fbett/le_acme2/src/LE_ACME2Tests/TestHelper.php'),(1744,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/.styleci.yml'),(1745,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/.travis.yml'),(1746,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/Dockerfile'),(1747,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/LICENSE'),(1748,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/README.md'),(1749,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/composer.json'),(1750,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/docker-compose.yml'),(1751,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/phpunit-watcher.yml'),(1752,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/phpunit.xml.dist'),(1753,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Client/Exception.php'),(1754,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Client.php'),(1755,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Exception.php'),(1756,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/InternalClient.php'),(1757,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/Certificate.php'),(1758,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/Dns.php'),(1759,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/EventLog.php'),(1760,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/Ip.php'),(1761,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/Locale.php'),(1762,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/PhpHandler.php'),(1763,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/ProtectedDirectory.php'),(1764,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/SecretKey.php'),(1765,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/Server.php'),(1766,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/Session.php'),(1767,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator/SiteAlias.php'),(1768,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Operator.php'),(1769,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/Certificate/Info.php'),(1770,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/Dns/Info.php'),(1771,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/EventLog/DetailedEvent.php'),(1772,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/EventLog/Event.php'),(1773,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/Locale/Info.php'),(1774,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/PhpHandler/Info.php'),(1775,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/SecretKey/Info.php'),(1776,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/Session/Info.php'),(1777,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/Site/GeneralInfo.php'),(1778,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/Site/HostingInfo.php'),(1779,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/Site/Info.php'),(1780,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/SiteAlias/GeneralInfo.php'),(1781,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct/SiteAlias/Info.php'),(1782,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/Struct.php'),(1783,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/src/Api/XmlResponse.php'),(1784,'wp-content/plugins/really-simple-ssl/lets-encrypt/vendor/plesk/api-php-lib/wait-for-plesk.sh'),(1785,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/admin.css'),(1786,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/admin.css.map'),(1787,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/admin.less'),(1788,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/admin.min.css'),(1789,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/variables.css'),(1790,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/variables.css.map'),(1791,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/variables.less'),(1792,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/variables.min.css'),(1793,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/wizard.css'),(1794,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/wizard.css.map'),(1795,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/wizard.less'),(1796,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/css/wizard.min.css'),(1797,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/icons.php'),(1798,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/js/wizard.js'),(1799,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/js/wizard.min.js'),(1800,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/css/select2.css'),(1801,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/css/select2.min.css'),(1802,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/af.js'),(1803,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/af.min.js'),(1804,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ar.js'),(1805,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ar.min.js'),(1806,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/az.js'),(1807,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/az.min.js'),(1808,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/bg.js'),(1809,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/bg.min.js'),(1810,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/bs.js'),(1811,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/bs.min.js'),(1812,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ca.js'),(1813,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ca.min.js'),(1814,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/cs.js'),(1815,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/cs.min.js'),(1816,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/da.js'),(1817,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/da.min.js'),(1818,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/de.js'),(1819,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/de.min.js'),(1820,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/dsb.js'),(1821,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/dsb.min.js'),(1822,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/el.js'),(1823,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/el.min.js'),(1824,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/en.js'),(1825,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/en.min.js'),(1826,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/es.js'),(1827,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/es.min.js'),(1828,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/et.js'),(1829,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/et.min.js'),(1830,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/eu.js'),(1831,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/eu.min.js'),(1832,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/fa.js'),(1833,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/fa.min.js'),(1834,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/fi.js'),(1835,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/fi.min.js'),(1836,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/fr.js'),(1837,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/fr.min.js'),(1838,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/gl.js'),(1839,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/gl.min.js'),(1840,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/he.js'),(1841,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/he.min.js'),(1842,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hi.js'),(1843,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hi.min.js'),(1844,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hr.js'),(1845,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hr.min.js'),(1846,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hsb.js'),(1847,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hsb.min.js'),(1848,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hu.js'),(1849,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hu.min.js'),(1850,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hy.js'),(1851,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/hy.min.js'),(1852,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/id.js'),(1853,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/id.min.js'),(1854,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/is.js'),(1855,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/is.min.js'),(1856,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/it.js'),(1857,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/it.min.js'),(1858,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ja.js'),(1859,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ja.min.js'),(1860,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/km.js'),(1861,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/km.min.js'),(1862,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ko.js'),(1863,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ko.min.js'),(1864,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/lt.js'),(1865,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/lt.min.js'),(1866,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/lv.js'),(1867,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/lv.min.js'),(1868,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/mk.js'),(1869,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/mk.min.js'),(1870,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ms.js'),(1871,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ms.min.js'),(1872,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/nb.js'),(1873,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/nb.min.js'),(1874,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/nl.js'),(1875,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/nl.min.js'),(1876,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/pl.js'),(1877,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/pl.min.js'),(1878,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ps.js'),(1879,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ps.min.js'),(1880,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/pt-BR.js'),(1881,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/pt-BR.min.js'),(1882,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/pt.js'),(1883,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/pt.min.js'),(1884,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ro.js'),(1885,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ro.min.js'),(1886,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ru.js'),(1887,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/ru.min.js'),(1888,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sk.js'),(1889,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sk.min.js'),(1890,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sl.js'),(1891,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sl.min.js'),(1892,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sr-Cyrl.js'),(1893,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sr-Cyrl.min.js'),(1894,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sr.js'),(1895,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sr.min.js'),(1896,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sv.js'),(1897,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/sv.min.js'),(1898,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/th.js'),(1899,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/th.min.js'),(1900,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/tk.js'),(1901,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/tk.min.js'),(1902,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/tr.js'),(1903,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/tr.min.js'),(1904,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/uk.js'),(1905,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/uk.min.js'),(1906,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/vi.js'),(1907,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/vi.min.js'),(1908,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/zh-CN.js'),(1909,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/zh-CN.min.js'),(1910,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/zh-TW.js'),(1911,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/i18n/zh-TW.min.js'),(1912,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/select2.full.js'),(1913,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/select2.full.min.js'),(1914,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/select2.js'),(1915,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/assets/select2/js/select2.min.js'),(1916,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/class-field.php'),(1917,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/class-wizard.php'),(1918,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/config/class-config.php'),(1919,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/config/questions.php'),(1920,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/config/steps.php'),(1921,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/notices.php'),(1922,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/activate.php'),(1923,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/admin_wrap.php'),(1924,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/content.php'),(1925,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/directories.php'),(1926,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/dns-verification.php'),(1927,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/generation.php'),(1928,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/installation.php'),(1929,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/last-step.php'),(1930,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/menu.php'),(1931,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/other-plugins.php'),(1932,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/section.php'),(1933,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/step.php'),(1934,'wp-content/plugins/really-simple-ssl/lets-encrypt/wizard/templates/system-status.php'),(1935,'wp-content/plugins/really-simple-ssl/multisite-cron.php'),(1936,'wp-content/plugins/really-simple-ssl/readme.txt'),(1937,'wp-content/plugins/really-simple-ssl/rlrsssl-really-simple-ssl.php'),(1938,'wp-content/plugins/really-simple-ssl/ssl-test-page.php'),(1939,'wp-content/plugins/really-simple-ssl/system-status.php'),(1940,'wp-content/plugins/really-simple-ssl/testssl/cloudflare/.htaccess'),(1941,'wp-content/plugins/really-simple-ssl/testssl/cloudflare/ssl-test-page.html'),(1942,'wp-content/plugins/really-simple-ssl/testssl/cloudfront/.htaccess'),(1943,'wp-content/plugins/really-simple-ssl/testssl/cloudfront/ssl-test-page.html'),(1944,'wp-content/plugins/really-simple-ssl/testssl/envhttps/.htaccess'),(1945,'wp-content/plugins/really-simple-ssl/testssl/envhttps/ssl-test-page.html'),(1946,'wp-content/plugins/really-simple-ssl/testssl/loadbalancer/.htaccess'),(1947,'wp-content/plugins/really-simple-ssl/testssl/loadbalancer/ssl-test-page.html'),(1948,'wp-content/plugins/really-simple-ssl/testssl/serverhttps1/.htaccess'),(1949,'wp-content/plugins/really-simple-ssl/testssl/serverhttps1/ssl-test-page.html'),(1950,'wp-content/plugins/really-simple-ssl/testssl/serverhttpson/.htaccess'),(1951,'wp-content/plugins/really-simple-ssl/testssl/serverhttpson/ssl-test-page.html'),(1952,'wp-content/plugins/really-simple-ssl/testssl/serverhttpxforwardedssl1/.htaccess'),(1953,'wp-content/plugins/really-simple-ssl/testssl/serverhttpxforwardedssl1/ssl-test-page.html'),(1954,'wp-content/plugins/really-simple-ssl/testssl/serverhttpxforwardedsslon/.htaccess'),(1955,'wp-content/plugins/really-simple-ssl/testssl/serverhttpxforwardedsslon/ssl-test-page.html'),(1956,'wp-content/plugins/really-simple-ssl/testssl/serverhttpxproto/.htaccess'),(1957,'wp-content/plugins/really-simple-ssl/testssl/serverhttpxproto/ssl-test-page.html'),(1958,'wp-content/plugins/really-simple-ssl/testssl/serverport443/.htaccess'),(1959,'wp-content/plugins/really-simple-ssl/testssl/serverport443/ssl-test-page.html'),(1960,'wp-content/plugins/really-simple-ssl/uninstall.php'),(1961,'wp-content/plugins/updraftplus/addons/migrator.php'),(1962,'wp-content/plugins/updraftplus/admin.php'),(1963,'wp-content/plugins/updraftplus/backup.php'),(1964,'wp-content/plugins/updraftplus/central/bootstrap.php'),(1965,'wp-content/plugins/updraftplus/central/classes/class-automatic-upgrader-skin.php'),(1966,'wp-content/plugins/updraftplus/central/commands.php'),(1967,'wp-content/plugins/updraftplus/central/listener.php'),(1968,'wp-content/plugins/updraftplus/central/modules/analytics.php'),(1969,'wp-content/plugins/updraftplus/central/modules/comments.php'),(1970,'wp-content/plugins/updraftplus/central/modules/core.php'),(1971,'wp-content/plugins/updraftplus/central/modules/plugin.php'),(1972,'wp-content/plugins/updraftplus/central/modules/posts.php'),(1973,'wp-content/plugins/updraftplus/central/modules/theme.php'),(1974,'wp-content/plugins/updraftplus/central/modules/updates.php'),(1975,'wp-content/plugins/updraftplus/central/modules/users.php'),(1976,'wp-content/plugins/updraftplus/class-updraftplus.php'),(1977,'wp-content/plugins/updraftplus/example-decrypt.php'),(1978,'wp-content/plugins/updraftplus/includes/Backblaze/CurlClient.php'),(1979,'wp-content/plugins/updraftplus/includes/Dropbox2/API.php'),(1980,'wp-content/plugins/updraftplus/includes/Dropbox2/Exception.php'),(1981,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php'),(1982,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/Curl.php'),(1983,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/WordPress.php'),(1984,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/Encrypter.php'),(1985,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/StorageInterface.php'),(1986,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/WordPress.php'),(1987,'wp-content/plugins/updraftplus/includes/Google/Auth/Abstract.php'),(1988,'wp-content/plugins/updraftplus/includes/Google/Auth/AppIdentity.php'),(1989,'wp-content/plugins/updraftplus/includes/Google/Auth/AssertionCredentials.php'),(1990,'wp-content/plugins/updraftplus/includes/Google/Auth/ComputeEngine.php'),(1991,'wp-content/plugins/updraftplus/includes/Google/Auth/Exception.php'),(1992,'wp-content/plugins/updraftplus/includes/Google/Auth/LoginTicket.php'),(1993,'wp-content/plugins/updraftplus/includes/Google/Auth/OAuth2.php'),(1994,'wp-content/plugins/updraftplus/includes/Google/Auth/Simple.php'),(1995,'wp-content/plugins/updraftplus/includes/Google/Cache/Abstract.php'),(1996,'wp-content/plugins/updraftplus/includes/Google/Cache/Apc.php'),(1997,'wp-content/plugins/updraftplus/includes/Google/Cache/Exception.php'),(1998,'wp-content/plugins/updraftplus/includes/Google/Cache/File.php'),(1999,'wp-content/plugins/updraftplus/includes/Google/Cache/Memcache.php'),(2000,'wp-content/plugins/updraftplus/includes/Google/Cache/Null.php'),(2001,'wp-content/plugins/updraftplus/includes/Google/Client.php'),(2002,'wp-content/plugins/updraftplus/includes/Google/Collection.php'),(2003,'wp-content/plugins/updraftplus/includes/Google/Config.php'),(2004,'wp-content/plugins/updraftplus/includes/Google/Exception.php'),(2005,'wp-content/plugins/updraftplus/includes/Google/Http/Batch.php'),(2006,'wp-content/plugins/updraftplus/includes/Google/Http/CacheParser.php'),(2007,'wp-content/plugins/updraftplus/includes/Google/Http/MediaFileUpload.php'),(2008,'wp-content/plugins/updraftplus/includes/Google/Http/REST.php'),(2009,'wp-content/plugins/updraftplus/includes/Google/Http/Request.php'),(2010,'wp-content/plugins/updraftplus/includes/Google/IO/Abstract.php'),(2011,'wp-content/plugins/updraftplus/includes/Google/IO/Curl.php'),(2012,'wp-content/plugins/updraftplus/includes/Google/IO/Exception.php'),(2013,'wp-content/plugins/updraftplus/includes/Google/IO/Stream.php'),(2014,'wp-content/plugins/updraftplus/includes/Google/Logger/Abstract.php'),(2015,'wp-content/plugins/updraftplus/includes/Google/Logger/Exception.php'),(2016,'wp-content/plugins/updraftplus/includes/Google/Logger/File.php'),(2017,'wp-content/plugins/updraftplus/includes/Google/Logger/Null.php'),(2018,'wp-content/plugins/updraftplus/includes/Google/Logger/Psr.php'),(2019,'wp-content/plugins/updraftplus/includes/Google/Model.php'),(2020,'wp-content/plugins/updraftplus/includes/Google/Service/AdExchangeBuyer.php'),(2021,'wp-content/plugins/updraftplus/includes/Google/Service/AdExchangeSeller.php'),(2022,'wp-content/plugins/updraftplus/includes/Google/Service/AdSense.php'),(2023,'wp-content/plugins/updraftplus/includes/Google/Service/AdSenseHost.php'),(2024,'wp-content/plugins/updraftplus/includes/Google/Service/Admin.php'),(2025,'wp-content/plugins/updraftplus/includes/Google/Service/Analytics.php'),(2026,'wp-content/plugins/updraftplus/includes/Google/Service/AndroidEnterprise.php'),(2027,'wp-content/plugins/updraftplus/includes/Google/Service/AndroidPublisher.php'),(2028,'wp-content/plugins/updraftplus/includes/Google/Service/AppState.php'),(2029,'wp-content/plugins/updraftplus/includes/Google/Service/Appsactivity.php'),(2030,'wp-content/plugins/updraftplus/includes/Google/Service/Audit.php'),(2031,'wp-content/plugins/updraftplus/includes/Google/Service/Autoscaler.php'),(2032,'wp-content/plugins/updraftplus/includes/Google/Service/Bigquery.php'),(2033,'wp-content/plugins/updraftplus/includes/Google/Service/Blogger.php'),(2034,'wp-content/plugins/updraftplus/includes/Google/Service/Books.php'),(2035,'wp-content/plugins/updraftplus/includes/Google/Service/Calendar.php'),(2036,'wp-content/plugins/updraftplus/includes/Google/Service/CivicInfo.php'),(2037,'wp-content/plugins/updraftplus/includes/Google/Service/CloudMonitoring.php'),(2038,'wp-content/plugins/updraftplus/includes/Google/Service/Cloudlatencytest.php'),(2039,'wp-content/plugins/updraftplus/includes/Google/Service/Cloudsearch.php'),(2040,'wp-content/plugins/updraftplus/includes/Google/Service/Compute.php'),(2041,'wp-content/plugins/updraftplus/includes/Google/Service/Computeaccounts.php'),(2042,'wp-content/plugins/updraftplus/includes/Google/Service/Container.php'),(2043,'wp-content/plugins/updraftplus/includes/Google/Service/Coordinate.php'),(2044,'wp-content/plugins/updraftplus/includes/Google/Service/Customsearch.php'),(2045,'wp-content/plugins/updraftplus/includes/Google/Service/Dataflow.php'),(2046,'wp-content/plugins/updraftplus/includes/Google/Service/Datastore.php'),(2047,'wp-content/plugins/updraftplus/includes/Google/Service/Deploymentmanager.php'),(2048,'wp-content/plugins/updraftplus/includes/Google/Service/Dfareporting.php'),(2049,'wp-content/plugins/updraftplus/includes/Google/Service/Directory.php'),(2050,'wp-content/plugins/updraftplus/includes/Google/Service/Dns.php'),(2051,'wp-content/plugins/updraftplus/includes/Google/Service/DoubleClickBidManager.php'),(2052,'wp-content/plugins/updraftplus/includes/Google/Service/Doubleclicksearch.php'),(2053,'wp-content/plugins/updraftplus/includes/Google/Service/Drive.php'),(2054,'wp-content/plugins/updraftplus/includes/Google/Service/Exception.php'),(2055,'wp-content/plugins/updraftplus/includes/Google/Service/Fitness.php'),(2056,'wp-content/plugins/updraftplus/includes/Google/Service/Freebase.php'),(2057,'wp-content/plugins/updraftplus/includes/Google/Service/Fusiontables.php'),(2058,'wp-content/plugins/updraftplus/includes/Google/Service/Games.php'),(2059,'wp-content/plugins/updraftplus/includes/Google/Service/GamesConfiguration.php'),(2060,'wp-content/plugins/updraftplus/includes/Google/Service/GamesManagement.php'),(2061,'wp-content/plugins/updraftplus/includes/Google/Service/Genomics.php'),(2062,'wp-content/plugins/updraftplus/includes/Google/Service/Gmail.php'),(2063,'wp-content/plugins/updraftplus/includes/Google/Service/GroupsMigration.php'),(2064,'wp-content/plugins/updraftplus/includes/Google/Service/Groupssettings.php'),(2065,'wp-content/plugins/updraftplus/includes/Google/Service/IdentityToolkit.php'),(2066,'wp-content/plugins/updraftplus/includes/Google/Service/Licensing.php'),(2067,'wp-content/plugins/updraftplus/includes/Google/Service/Logging.php'),(2068,'wp-content/plugins/updraftplus/includes/Google/Service/Manager.php'),(2069,'wp-content/plugins/updraftplus/includes/Google/Service/MapsEngine.php'),(2070,'wp-content/plugins/updraftplus/includes/Google/Service/Mirror.php'),(2071,'wp-content/plugins/updraftplus/includes/Google/Service/Oauth2.php'),(2072,'wp-content/plugins/updraftplus/includes/Google/Service/Pagespeedonline.php'),(2073,'wp-content/plugins/updraftplus/includes/Google/Service/Plus.php'),(2074,'wp-content/plugins/updraftplus/includes/Google/Service/PlusDomains.php'),(2075,'wp-content/plugins/updraftplus/includes/Google/Service/Prediction.php'),(2076,'wp-content/plugins/updraftplus/includes/Google/Service/Pubsub.php'),(2077,'wp-content/plugins/updraftplus/includes/Google/Service/QPXExpress.php'),(2078,'wp-content/plugins/updraftplus/includes/Google/Service/Replicapool.php'),(2079,'wp-content/plugins/updraftplus/includes/Google/Service/Replicapoolupdater.php'),(2080,'wp-content/plugins/updraftplus/includes/Google/Service/Reports.php'),(2081,'wp-content/plugins/updraftplus/includes/Google/Service/Reseller.php'),(2082,'wp-content/plugins/updraftplus/includes/Google/Service/Resource.php'),(2083,'wp-content/plugins/updraftplus/includes/Google/Service/Resourceviews.php'),(2084,'wp-content/plugins/updraftplus/includes/Google/Service/SQLAdmin.php'),(2085,'wp-content/plugins/updraftplus/includes/Google/Service/ShoppingContent.php'),(2086,'wp-content/plugins/updraftplus/includes/Google/Service/SiteVerification.php'),(2087,'wp-content/plugins/updraftplus/includes/Google/Service/Spectrum.php'),(2088,'wp-content/plugins/updraftplus/includes/Google/Service/Storage.php'),(2089,'wp-content/plugins/updraftplus/includes/Google/Service/TagManager.php'),(2090,'wp-content/plugins/updraftplus/includes/Google/Service/Taskqueue.php'),(2091,'wp-content/plugins/updraftplus/includes/Google/Service/Tasks.php'),(2092,'wp-content/plugins/updraftplus/includes/Google/Service/Translate.php'),(2093,'wp-content/plugins/updraftplus/includes/Google/Service/Urlshortener.php'),(2094,'wp-content/plugins/updraftplus/includes/Google/Service/Webfonts.php'),(2095,'wp-content/plugins/updraftplus/includes/Google/Service/Webmasters.php'),(2096,'wp-content/plugins/updraftplus/includes/Google/Service/YouTubeAnalytics.php'),(2097,'wp-content/plugins/updraftplus/includes/Google/Service.php'),(2098,'wp-content/plugins/updraftplus/includes/Google/Signer/Abstract.php'),(2099,'wp-content/plugins/updraftplus/includes/Google/Signer/P12.php'),(2100,'wp-content/plugins/updraftplus/includes/Google/Task/Exception.php'),(2101,'wp-content/plugins/updraftplus/includes/Google/Task/Retryable.php'),(2102,'wp-content/plugins/updraftplus/includes/Google/Task/Runner.php'),(2103,'wp-content/plugins/updraftplus/includes/Google/Utils/URITemplate.php'),(2104,'wp-content/plugins/updraftplus/includes/Google/Utils.php'),(2105,'wp-content/plugins/updraftplus/includes/Google/Verifier/Abstract.php'),(2106,'wp-content/plugins/updraftplus/includes/Google/Verifier/Pem.php'),(2107,'wp-content/plugins/updraftplus/includes/Google/autoload.php'),(2108,'wp-content/plugins/updraftplus/includes/PEAR/Archive/Tar.php'),(2109,'wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request/Listener.php'),(2110,'wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request.php'),(2111,'wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/Adapter/Curl.php'),(2112,'wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/Adapter/Mock.php'),(2113,'wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/Adapter/Socket.php'),(2114,'wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/Adapter.php'),(2115,'wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/CookieJar.php'),(2116,'wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/Exception.php'),(2117,'wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/MultipartBody.php'),(2118,'wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/Observer/Log.php'),(2119,'wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/Response.php'),(2120,'wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/SOCKS5.php'),(2121,'wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2/SocketWrapper.php'),(2122,'wp-content/plugins/updraftplus/includes/PEAR/HTTP/Request2.php'),(2123,'wp-content/plugins/updraftplus/includes/PEAR/HTTP/WebDAV/Client/Stream.php'),(2124,'wp-content/plugins/updraftplus/includes/PEAR/HTTP/WebDAV/Client.php'),(2125,'wp-content/plugins/updraftplus/includes/PEAR/HTTP/WebDAV/Tools/_parse_lock_response.php'),(2126,'wp-content/plugins/updraftplus/includes/PEAR/HTTP/WebDAV/Tools/_parse_propfind_response.php'),(2127,'wp-content/plugins/updraftplus/includes/PEAR/Net/Socket.php'),(2128,'wp-content/plugins/updraftplus/includes/PEAR/Net/URL.php'),(2129,'wp-content/plugins/updraftplus/includes/PEAR/Net/URL2.php'),(2130,'wp-content/plugins/updraftplus/includes/PEAR/PEAR/Exception.php'),(2131,'wp-content/plugins/updraftplus/includes/PEAR/PEAR.php'),(2132,'wp-content/plugins/updraftplus/includes/PEAR/PEAR5.php'),(2133,'wp-content/plugins/updraftplus/includes/S3.php'),(2134,'wp-content/plugins/updraftplus/includes/S3compat.php'),(2135,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/BlobRestProxy.php'),(2136,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Internal/IBlob.php'),(2137,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/AccessCondition.php'),(2138,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/AccessPolicy.php'),(2139,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/AcquireLeaseOptions.php'),(2140,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/AcquireLeaseResult.php'),(2141,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/Blob.php'),(2142,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/BlobBlockType.php'),(2143,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/BlobPrefix.php'),(2144,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/BlobProperties.php'),(2145,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/BlobServiceOptions.php'),(2146,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/BlobType.php'),(2147,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/Block.php'),(2148,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/BlockList.php'),(2149,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/BreakLeaseResult.php'),(2150,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CommitBlobBlocksOptions.php'),(2151,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/Container.php'),(2152,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ContainerACL.php'),(2153,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ContainerProperties.php'),(2154,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CopyBlobOptions.php'),(2155,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CopyBlobResult.php'),(2156,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobBlockOptions.php'),(2157,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobOptions.php'),(2158,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobPagesOptions.php'),(2159,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobPagesResult.php'),(2160,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobSnapshotOptions.php'),(2161,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobSnapshotResult.php'),(2162,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/CreateContainerOptions.php'),(2163,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/DeleteBlobOptions.php'),(2164,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/DeleteContainerOptions.php'),(2165,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobMetadataOptions.php'),(2166,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobMetadataResult.php'),(2167,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobOptions.php'),(2168,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobPropertiesOptions.php'),(2169,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobPropertiesResult.php'),(2170,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobResult.php'),(2171,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/GetContainerACLResult.php'),(2172,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/GetContainerPropertiesResult.php'),(2173,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/LeaseMode.php'),(2174,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ListBlobBlocksOptions.php'),(2175,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ListBlobBlocksResult.php'),(2176,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ListBlobsOptions.php'),(2177,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ListBlobsResult.php'),(2178,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ListContainersOptions.php'),(2179,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ListContainersResult.php'),(2180,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ListPageBlobRangesOptions.php'),(2181,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/ListPageBlobRangesResult.php'),(2182,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/PageRange.php'),(2183,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/PageWriteOption.php'),(2184,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/PublicAccessType.php'),(2185,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/SetBlobMetadataOptions.php'),(2186,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/SetBlobMetadataResult.php'),(2187,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/SetBlobPropertiesOptions.php'),(2188,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/SetBlobPropertiesResult.php'),(2189,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/SetContainerMetadataOptions.php'),(2190,'wp-content/plugins/updraftplus/includes/WindowsAzure/Blob/Models/SignedIdentifier.php'),(2191,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/CloudConfigurationManager.php'),(2192,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Atom/AtomBase.php'),(2193,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Atom/AtomLink.php'),(2194,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Category.php'),(2195,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Content.php'),(2196,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Entry.php'),(2197,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Feed.php'),(2198,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Generator.php'),(2199,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Person.php'),(2200,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Source.php'),(2201,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/IAuthScheme.php'),(2202,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/OAuthScheme.php'),(2203,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/SharedKeyAuthScheme.php'),(2204,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/StorageAuthScheme.php'),(2205,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/TableSharedKeyLiteAuthScheme.php'),(2206,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/ConnectionStringParser.php'),(2207,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/ConnectionStringSource.php'),(2208,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/FilterableService.php'),(2209,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Filters/AuthenticationFilter.php'),(2210,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Filters/DateFilter.php'),(2211,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Filters/ExponentialRetryPolicy.php'),(2212,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Filters/HeadersFilter.php'),(2213,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Filters/RetryPolicy.php'),(2214,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Filters/RetryPolicyFilter.php'),(2215,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Filters/WrapFilter.php'),(2216,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Http/BatchRequest.php'),(2217,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Http/BatchResponse.php'),(2218,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Http/HttpCallContext.php'),(2219,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Http/HttpClient.php'),(2220,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Http/IHttpClient.php'),(2221,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Http/IUrl.php'),(2222,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Http/Url.php'),(2223,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/IServiceFilter.php'),(2224,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/InvalidArgumentTypeException.php'),(2225,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Logger.php'),(2226,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/MediaServicesSettings.php'),(2227,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/OAuthRestProxy.php'),(2228,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Resources.php'),(2229,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/RestProxy.php'),(2230,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Serialization/ISerializer.php'),(2231,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Serialization/JsonSerializer.php'),(2232,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Serialization/XmlSerializer.php'),(2233,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/ServiceBusSettings.php'),(2234,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/ServiceManagementSettings.php'),(2235,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/ServiceRestProxy.php'),(2236,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/ServiceSettings.php'),(2237,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/StorageServiceSettings.php'),(2238,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Utilities.php'),(2239,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Internal/Validate.php'),(2240,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Models/GetServicePropertiesResult.php'),(2241,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Models/Logging.php'),(2242,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Models/Metrics.php'),(2243,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Models/OAuthAccessToken.php'),(2244,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Models/RetentionPolicy.php'),(2245,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/Models/ServiceProperties.php'),(2246,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/ServiceException.php'),(2247,'wp-content/plugins/updraftplus/includes/WindowsAzure/Common/ServicesBuilder.php'),(2248,'wp-content/plugins/updraftplus/includes/WindowsAzure/WindowsAzure.php'),(2249,'wp-content/plugins/updraftplus/includes/azure-extensions.php'),(2250,'wp-content/plugins/updraftplus/includes/class-backup-history.php'),(2251,'wp-content/plugins/updraftplus/includes/class-commands.php'),(2252,'wp-content/plugins/updraftplus/includes/class-database-utility.php'),(2253,'wp-content/plugins/updraftplus/includes/class-filesystem-functions.php'),(2254,'wp-content/plugins/updraftplus/includes/class-job-scheduler.php'),(2255,'wp-content/plugins/updraftplus/includes/class-manipulation-functions.php'),(2256,'wp-content/plugins/updraftplus/includes/class-onedrive-account.php'),(2257,'wp-content/plugins/updraftplus/includes/class-partialfileservlet.php'),(2258,'wp-content/plugins/updraftplus/includes/class-remote-send.php'),(2259,'wp-content/plugins/updraftplus/includes/class-semaphore.php'),(2260,'wp-content/plugins/updraftplus/includes/class-storage-methods-interface.php'),(2261,'wp-content/plugins/updraftplus/includes/class-udrpc.php'),(2262,'wp-content/plugins/updraftplus/includes/class-updraft-dashboard-news.php'),(2263,'wp-content/plugins/updraftplus/includes/class-updraftcentral-updraftplus-commands.php'),(2264,'wp-content/plugins/updraftplus/includes/class-updraftplus-encryption.php'),(2265,'wp-content/plugins/updraftplus/includes/class-wpadmin-commands.php'),(2266,'wp-content/plugins/updraftplus/includes/class-zip.php'),(2267,'wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles.php'),(2268,'wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles_exceptions.php'),(2269,'wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles_http.php'),(2270,'wp-content/plugins/updraftplus/includes/deprecated-actions.php'),(2271,'wp-content/plugins/updraftplus/includes/ftp.class.php'),(2272,'wp-content/plugins/updraftplus/includes/google-extensions.php'),(2273,'wp-content/plugins/updraftplus/includes/handlebars/handlebars.js'),(2274,'wp-content/plugins/updraftplus/includes/handlebars/handlebars.min.js'),(2275,'wp-content/plugins/updraftplus/includes/handlebars/handlebars.runtime.js'),(2276,'wp-content/plugins/updraftplus/includes/handlebars/handlebars.runtime.min.js'),(2277,'wp-content/plugins/updraftplus/includes/jquery.blockUI.js'),(2278,'wp-content/plugins/updraftplus/includes/jquery.blockUI.min.js'),(2279,'wp-content/plugins/updraftplus/includes/jquery.serializeJSON/jquery.serializejson.js'),(2280,'wp-content/plugins/updraftplus/includes/jquery.serializeJSON/jquery.serializejson.min.js'),(2281,'wp-content/plugins/updraftplus/includes/jstree/jstree.js'),(2282,'wp-content/plugins/updraftplus/includes/jstree/jstree.min.js'),(2283,'wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty.js'),(2284,'wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty.min.js'),(2285,'wp-content/plugins/updraftplus/includes/onedrive/client.php'),(2286,'wp-content/plugins/updraftplus/includes/onedrive/file.php'),(2287,'wp-content/plugins/updraftplus/includes/onedrive/folder.php'),(2288,'wp-content/plugins/updraftplus/includes/onedrive/object.php'),(2289,'wp-content/plugins/updraftplus/includes/onedrive/onedrive.php'),(2290,'wp-content/plugins/updraftplus/includes/select2/select2.js'),(2291,'wp-content/plugins/updraftplus/includes/select2/select2.min.js'),(2292,'wp-content/plugins/updraftplus/includes/tether/tether.js'),(2293,'wp-content/plugins/updraftplus/includes/tether/tether.min.js'),(2294,'wp-content/plugins/updraftplus/includes/tether-shepherd/shepherd.js'),(2295,'wp-content/plugins/updraftplus/includes/tether-shepherd/shepherd.min.js'),(2296,'wp-content/plugins/updraftplus/includes/tether-shepherd/tether.js'),(2297,'wp-content/plugins/updraftplus/includes/updraft-notices.php'),(2298,'wp-content/plugins/updraftplus/includes/updraft-restorer-skin.php'),(2299,'wp-content/plugins/updraftplus/includes/updraftcentral.php'),(2300,'wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-auto-login.php'),(2301,'wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-dash-notice.php'),(2302,'wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-restore.php'),(2303,'wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-status.php'),(2304,'wp-content/plugins/updraftplus/includes/updraftclone/temporary-clone-user-notice.php'),(2305,'wp-content/plugins/updraftplus/includes/updraftplus-admin-common.js'),(2306,'wp-content/plugins/updraftplus/includes/updraftplus-admin-common.min.js'),(2307,'wp-content/plugins/updraftplus/includes/updraftplus-clone.php'),(2308,'wp-content/plugins/updraftplus/includes/updraftplus-login.php'),(2309,'wp-content/plugins/updraftplus/includes/updraftplus-notices.php'),(2310,'wp-content/plugins/updraftplus/includes/updraftplus-tour.php'),(2311,'wp-content/plugins/updraftplus/includes/updraftvault.php'),(2312,'wp-content/plugins/updraftplus/index.html'),(2313,'wp-content/plugins/updraftplus/js/tour.js'),(2314,'wp-content/plugins/updraftplus/js/tour.min.js'),(2315,'wp-content/plugins/updraftplus/methods/addon-base-v2.php'),(2316,'wp-content/plugins/updraftplus/methods/addon-not-yet-present.php'),(2317,'wp-content/plugins/updraftplus/methods/azure.php'),(2318,'wp-content/plugins/updraftplus/methods/backblaze.php'),(2319,'wp-content/plugins/updraftplus/methods/backup-module.php'),(2320,'wp-content/plugins/updraftplus/methods/cloudfiles-new.php'),(2321,'wp-content/plugins/updraftplus/methods/cloudfiles.php'),(2322,'wp-content/plugins/updraftplus/methods/dreamobjects.php'),(2323,'wp-content/plugins/updraftplus/methods/dropbox.php'),(2324,'wp-content/plugins/updraftplus/methods/email.php'),(2325,'wp-content/plugins/updraftplus/methods/ftp.php'),(2326,'wp-content/plugins/updraftplus/methods/googlecloud.php'),(2327,'wp-content/plugins/updraftplus/methods/googledrive.php'),(2328,'wp-content/plugins/updraftplus/methods/insufficient.php'),(2329,'wp-content/plugins/updraftplus/methods/onedrive.php'),(2330,'wp-content/plugins/updraftplus/methods/openstack-base.php'),(2331,'wp-content/plugins/updraftplus/methods/openstack.php'),(2332,'wp-content/plugins/updraftplus/methods/openstack2.php'),(2333,'wp-content/plugins/updraftplus/methods/remotesend.php'),(2334,'wp-content/plugins/updraftplus/methods/s3.php'),(2335,'wp-content/plugins/updraftplus/methods/s3generic.php'),(2336,'wp-content/plugins/updraftplus/methods/sftp.php'),(2337,'wp-content/plugins/updraftplus/methods/stream-base.php'),(2338,'wp-content/plugins/updraftplus/methods/template.php'),(2339,'wp-content/plugins/updraftplus/methods/updraftvault.php'),(2340,'wp-content/plugins/updraftplus/methods/webdav.php'),(2341,'wp-content/plugins/updraftplus/options.php'),(2342,'wp-content/plugins/updraftplus/restorer.php'),(2343,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/advanced-tools.php'),(2344,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/export-settings.php'),(2345,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/lock-admin.php'),(2346,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/search-replace.php'),(2347,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/site-info.php'),(2348,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/tools-menu.php'),(2349,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/total-size.php'),(2350,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/updraftcentral.php'),(2351,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/wipe-settings.php'),(2352,'wp-content/plugins/updraftplus/templates/wp-admin/notices/bottom-notice.php'),(2353,'wp-content/plugins/updraftplus/templates/wp-admin/notices/horizontal-notice.php'),(2354,'wp-content/plugins/updraftplus/templates/wp-admin/notices/report-plain.php'),(2355,'wp-content/plugins/updraftplus/templates/wp-admin/notices/report.php'),(2356,'wp-content/plugins/updraftplus/templates/wp-admin/notices/thanks-for-using-main-dash.php'),(2357,'wp-content/plugins/updraftplus/templates/wp-admin/settings/delete-and-restore-modals.php'),(2358,'wp-content/plugins/updraftplus/templates/wp-admin/settings/downloading-and-restoring.php'),(2359,'wp-content/plugins/updraftplus/templates/wp-admin/settings/exclude-modal.php'),(2360,'wp-content/plugins/updraftplus/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-heading.php'),(2361,'wp-content/plugins/updraftplus/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-submit.php'),(2362,'wp-content/plugins/updraftplus/templates/wp-admin/settings/existing-backups-table.php'),(2363,'wp-content/plugins/updraftplus/templates/wp-admin/settings/file-backup-exclude.php'),(2364,'wp-content/plugins/updraftplus/templates/wp-admin/settings/footer.php'),(2365,'wp-content/plugins/updraftplus/templates/wp-admin/settings/form-contents.php'),(2366,'wp-content/plugins/updraftplus/templates/wp-admin/settings/header.php'),(2367,'wp-content/plugins/updraftplus/templates/wp-admin/settings/migrator-no-migrator.php'),(2368,'wp-content/plugins/updraftplus/templates/wp-admin/settings/tab-addons.php'),(2369,'wp-content/plugins/updraftplus/templates/wp-admin/settings/tab-backups.php'),(2370,'wp-content/plugins/updraftplus/templates/wp-admin/settings/tab-bar.php'),(2371,'wp-content/plugins/updraftplus/templates/wp-admin/settings/take-backup.php'),(2372,'wp-content/plugins/updraftplus/templates/wp-admin/settings/temporary-clone.php'),(2373,'wp-content/plugins/updraftplus/templates/wp-admin/settings/updraftcentral-connect.php'),(2374,'wp-content/plugins/updraftplus/templates/wp-admin/settings/upload-backups-modal.php'),(2375,'wp-content/plugins/updraftplus/udaddons/options.php'),(2376,'wp-content/plugins/updraftplus/udaddons/updraftplus-addons.php'),(2377,'wp-content/plugins/updraftplus/updraftplus.php'),(2378,'wp-content/plugins/updraftplus/vendor/autoload.php'),(2379,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Aws.php'),(2380,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/AbstractClient.php'),(2381,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/AwsClientInterface.php'),(2382,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ClientBuilder.php'),(2383,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/DefaultClient.php'),(2384,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ExpiredCredentialsChecker.php'),(2385,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ThrottlingErrorChecker.php'),(2386,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/UploadBodyListener.php'),(2387,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/UserAgentListener.php'),(2388,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/AwsQueryVisitor.php'),(2389,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/JsonCommand.php'),(2390,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/QueryCommand.php'),(2391,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/XmlResponseLocationVisitor.php'),(2392,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/AbstractCredentialsDecorator.php'),(2393,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/AbstractRefreshableCredentials.php'),(2394,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/CacheableCredentials.php'),(2395,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/Credentials.php'),(2396,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/CredentialsInterface.php'),(2397,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/NullCredentials.php'),(2398,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/RefreshableInstanceProfileCredentials.php'),(2399,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/ClientOptions.php'),(2400,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/DateFormat.php'),(2401,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Region.php'),(2402,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Size.php'),(2403,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Time.php'),(2404,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/UaString.php'),(2405,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum.php'),(2406,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/AwsExceptionInterface.php'),(2407,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/BadMethodCallException.php'),(2408,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/DomainException.php'),(2409,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ExceptionFactoryInterface.php'),(2410,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ExceptionListener.php'),(2411,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/InstanceProfileCredentialsException.php'),(2412,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/InvalidArgumentException.php'),(2413,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/LogicException.php'),(2414,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/MultipartUploadException.php'),(2415,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/NamespaceExceptionFactory.php'),(2416,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/OutOfBoundsException.php'),(2417,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/OverflowException.php'),(2418,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/AbstractJsonExceptionParser.php'),(2419,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/DefaultXmlExceptionParser.php'),(2420,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/ExceptionParserInterface.php'),(2421,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/JsonQueryExceptionParser.php'),(2422,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/JsonRestExceptionParser.php'),(2423,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/RequiredExtensionNotLoadedException.php'),(2424,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/RuntimeException.php'),(2425,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ServiceResponseException.php'),(2426,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/TransferException.php'),(2427,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/UnexpectedValueException.php'),(2428,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/Facade.php'),(2429,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/FacadeInterface.php'),(2430,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/facade-classes.php'),(2431,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/ChunkHash.php'),(2432,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/ChunkHashInterface.php'),(2433,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/HashUtils.php'),(2434,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/TreeHash.php'),(2435,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/HostNameUtils.php'),(2436,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/InstanceMetadata/InstanceMetadataClient.php'),(2437,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/InstanceMetadata/Waiter/ServiceAvailable.php'),(2438,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Iterator/AwsResourceIterator.php'),(2439,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Iterator/AwsResourceIteratorFactory.php'),(2440,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractTransfer.php'),(2441,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractTransferState.php'),(2442,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadBuilder.php'),(2443,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadId.php'),(2444,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadPart.php'),(2445,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/TransferInterface.php'),(2446,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/TransferStateInterface.php'),(2447,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/UploadIdInterface.php'),(2448,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/UploadPartInterface.php'),(2449,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/aws-config.php'),(2450,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/public-endpoints.php'),(2451,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/sdk1-config.php'),(2452,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/RulesEndpointProvider.php'),(2453,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/AbstractSignature.php'),(2454,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/EndpointSignatureInterface.php'),(2455,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureInterface.php'),(2456,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureListener.php'),(2457,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV2.php'),(2458,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV3Https.php'),(2459,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV4.php'),(2460,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/AbstractResourceWaiter.php'),(2461,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/AbstractWaiter.php'),(2462,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/CallableWaiter.php'),(2463,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/CompositeWaiterFactory.php'),(2464,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/ConfigResourceWaiter.php'),(2465,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/ResourceWaiterInterface.php'),(2466,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterClassFactory.php'),(2467,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterConfig.php'),(2468,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterConfigFactory.php'),(2469,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterFactoryInterface.php'),(2470,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterInterface.php'),(2471,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Enum/AssignmentStatusType.php'),(2472,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Enum/StatusType.php'),(2473,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/DeleteConflictException.php'),(2474,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/DuplicateCertificateException.php'),(2475,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/EntityAlreadyExistsException.php'),(2476,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/EntityTemporarilyUnmodifiableException.php'),(2477,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/IamException.php'),(2478,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidAuthenticationCodeException.php'),(2479,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidCertificateException.php'),(2480,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidInputException.php'),(2481,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidUserTypeException.php'),(2482,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/KeyPairMismatchException.php'),(2483,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/LimitExceededException.php'),(2484,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/MalformedCertificateException.php'),(2485,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/MalformedPolicyDocumentException.php'),(2486,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/NoSuchEntityException.php'),(2487,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/PasswordPolicyViolationException.php'),(2488,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/IamClient.php'),(2489,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Resources/iam-2010-05-08.php'),(2490,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/AcpListener.php'),(2491,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/BucketStyleListener.php'),(2492,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Command/S3Command.php'),(2493,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/CannedAcl.php'),(2494,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/EncodingType.php'),(2495,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Event.php'),(2496,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/GranteeType.php'),(2497,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Group.php'),(2498,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/MFADelete.php'),(2499,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/MetadataDirective.php'),(2500,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Payer.php'),(2501,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Permission.php'),(2502,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Protocol.php'),(2503,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/ServerSideEncryption.php'),(2504,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Status.php'),(2505,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Storage.php'),(2506,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/StorageClass.php'),(2507,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/AccessDeniedException.php'),(2508,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/AccountProblemException.php'),(2509,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/AmbiguousGrantByEmailAddressException.php'),(2510,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BadDigestException.php'),(2511,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BucketAlreadyExistsException.php'),(2512,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BucketAlreadyOwnedByYouException.php'),(2513,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BucketNotEmptyException.php'),(2514,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/CredentialsNotSupportedException.php'),(2515,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/CrossLocationLoggingProhibitedException.php'),(2516,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/DeleteMultipleObjectsException.php'),(2517,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/EntityTooLargeException.php'),(2518,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/EntityTooSmallException.php'),(2519,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ExpiredTokenException.php'),(2520,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/IllegalVersioningConfigurationException.php'),(2521,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/IncompleteBodyException.php'),(2522,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/IncorrectNumberOfFilesInPostRequestException.php'),(2523,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InlineDataTooLargeException.php'),(2524,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InternalErrorException.php'),(2525,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidAccessKeyIdException.php'),(2526,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidAddressingHeaderException.php'),(2527,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidArgumentException.php'),(2528,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidBucketNameException.php'),(2529,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidBucketStateException.php'),(2530,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidDigestException.php'),(2531,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidLocationConstraintException.php'),(2532,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPartException.php'),(2533,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPartOrderException.php'),(2534,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPayerException.php'),(2535,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPolicyDocumentException.php'),(2536,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidRangeException.php'),(2537,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidRequestException.php'),(2538,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidSOAPRequestException.php'),(2539,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidSecurityException.php'),(2540,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidStorageClassException.php'),(2541,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidTagErrorException.php'),(2542,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidTargetBucketForLoggingException.php'),(2543,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidTokenException.php'),(2544,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidURIException.php'),(2545,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/KeyTooLongException.php'),(2546,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MalformedACLErrorException.php'),(2547,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MalformedPOSTRequestException.php'),(2548,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MalformedXMLException.php'),(2549,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MaxMessageLengthExceededException.php'),(2550,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MaxPostPreDataLengthExceededErrorException.php'),(2551,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MetadataTooLargeException.php'),(2552,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MethodNotAllowedException.php'),(2553,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingAttachmentException.php'),(2554,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingContentLengthException.php'),(2555,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingRequestBodyErrorException.php'),(2556,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingSecurityElementException.php'),(2557,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingSecurityHeaderException.php'),(2558,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoLoggingStatusForKeyException.php'),(2559,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchBucketException.php'),(2560,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchBucketPolicyException.php'),(2561,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchCORSConfigurationException.php'),(2562,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchKeyException.php'),(2563,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchLifecycleConfigurationException.php'),(2564,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchTagSetErrorException.php'),(2565,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchTagSetException.php'),(2566,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchUploadException.php'),(2567,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchVersionException.php'),(2568,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchWebsiteConfigurationException.php'),(2569,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NotImplementedException.php'),(2570,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NotSignedUpException.php'),(2571,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NotSuchBucketPolicyException.php'),(2572,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ObjectAlreadyInActiveTierErrorException.php'),(2573,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ObjectNotInActiveTierErrorException.php'),(2574,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/OperationAbortedException.php'),(2575,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/Parser/S3ExceptionParser.php'),(2576,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/PermanentRedirectException.php'),(2577,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/PreconditionFailedException.php'),(2578,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RedirectException.php'),(2579,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestIsNotMultiPartContentException.php'),(2580,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestTimeTooSkewedException.php'),(2581,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestTimeoutException.php'),(2582,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestTorrentOfBucketErrorException.php'),(2583,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/S3Exception.php'),(2584,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/SignatureDoesNotMatchException.php'),(2585,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/SlowDownException.php'),(2586,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/TemporaryRedirectException.php'),(2587,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/TokenRefreshRequiredException.php'),(2588,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/TooManyBucketsException.php'),(2589,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/UnexpectedContentException.php'),(2590,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/UnresolvableGrantByEmailAddressException.php'),(2591,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/UserKeyMustBeSpecifiedException.php'),(2592,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/IncompleteMultipartUploadChecker.php'),(2593,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListBucketsIterator.php'),(2594,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListMultipartUploadsIterator.php'),(2595,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListObjectVersionsIterator.php'),(2596,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListObjectsIterator.php'),(2597,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/OpendirIterator.php'),(2598,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/Acp.php'),(2599,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/AcpBuilder.php'),(2600,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/ClearBucket.php'),(2601,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/DeleteObjectsBatch.php'),(2602,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/DeleteObjectsTransfer.php'),(2603,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/Grant.php'),(2604,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/Grantee.php'),(2605,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/AbstractTransfer.php'),(2606,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/ParallelTransfer.php'),(2607,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/SerialTransfer.php'),(2608,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/TransferState.php'),(2609,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/UploadBuilder.php'),(2610,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/UploadId.php'),(2611,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/UploadPart.php'),(2612,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/PostObject.php'),(2613,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Resources/s3-2006-03-01.php'),(2614,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/ResumableDownload.php'),(2615,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3Client.php'),(2616,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3Md5Listener.php'),(2617,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3Signature.php'),(2618,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3SignatureInterface.php'),(2619,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3SignatureV4.php'),(2620,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/SocketTimeoutChecker.php'),(2621,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/SseCpkListener.php'),(2622,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/StreamWrapper.php'),(2623,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/AbstractSync.php'),(2624,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/AbstractSyncBuilder.php'),(2625,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/ChangedFilesIterator.php'),(2626,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/DownloadSync.php'),(2627,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/DownloadSyncBuilder.php'),(2628,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/FilenameConverterInterface.php'),(2629,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/KeyConverter.php'),(2630,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/UploadSync.php'),(2631,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/UploadSyncBuilder.php'),(2632,'wp-content/plugins/updraftplus/vendor/composer/ClassLoader.php'),(2633,'wp-content/plugins/updraftplus/vendor/composer/autoload_classmap.php'),(2634,'wp-content/plugins/updraftplus/vendor/composer/autoload_files.php'),(2635,'wp-content/plugins/updraftplus/vendor/composer/autoload_namespaces.php'),(2636,'wp-content/plugins/updraftplus/vendor/composer/autoload_psr4.php'),(2637,'wp-content/plugins/updraftplus/vendor/composer/autoload_real.php'),(2638,'wp-content/plugins/updraftplus/vendor/composer/autoload_static.php'),(2639,'wp-content/plugins/updraftplus/vendor/composer/include_paths.php'),(2640,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Consumer.php'),(2641,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/HmacSha1.php'),(2642,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthDataStore.php'),(2643,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthException.php'),(2644,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthServer.php'),(2645,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/PlainText.php'),(2646,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Request.php'),(2647,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/RsaSha1.php'),(2648,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/SignatureMethod.php'),(2649,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Token.php'),(2650,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Util.php'),(2651,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/phar-stub.php'),(2652,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/AbstractBatchDecorator.php'),(2653,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/Batch.php'),(2654,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchBuilder.php'),(2655,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureDivisor.php'),(2656,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureTransfer.php'),(2657,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchCommandTransfer.php'),(2658,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchDivisorInterface.php'),(2659,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchInterface.php'),(2660,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchRequestTransfer.php'),(2661,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchSizeDivisor.php'),(2662,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchTransferInterface.php'),(2663,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/Exception/BatchTransferException.php'),(2664,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/ExceptionBufferingBatch.php'),(2665,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/FlushingBatch.php'),(2666,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/HistoryBatch.php'),(2667,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/NotifyingBatch.php'),(2668,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/AbstractCacheAdapter.php'),(2669,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterFactory.php'),(2670,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterInterface.php'),(2671,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/ClosureCacheAdapter.php'),(2672,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/DoctrineCacheAdapter.php'),(2673,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/NullCacheAdapter.php'),(2674,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf1CacheAdapter.php'),(2675,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf2CacheAdapter.php'),(2676,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/AbstractHasDispatcher.php'),(2677,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Collection.php'),(2678,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Event.php'),(2679,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/BadMethodCallException.php'),(2680,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/ExceptionCollection.php'),(2681,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/GuzzleException.php'),(2682,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/InvalidArgumentException.php'),(2683,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/RuntimeException.php'),(2684,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/UnexpectedValueException.php'),(2685,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/FromConfigInterface.php'),(2686,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/HasDispatcherInterface.php'),(2687,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/ToArrayInterface.php'),(2688,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Version.php'),(2689,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/AbstractEntityBodyDecorator.php'),(2690,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/CachingEntityBody.php'),(2691,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Client.php'),(2692,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/ClientInterface.php'),(2693,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlHandle.php'),(2694,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMulti.php'),(2695,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiInterface.php'),(2696,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiProxy.php'),(2697,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlVersion.php'),(2698,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/RequestMediator.php'),(2699,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBody.php'),(2700,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBodyInterface.php'),(2701,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/BadResponseException.php'),(2702,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ClientErrorResponseException.php'),(2703,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CouldNotRewindStreamException.php'),(2704,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php'),(2705,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/HttpException.php'),(2706,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/MultiTransferException.php'),(2707,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/RequestException.php'),(2708,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ServerErrorResponseException.php'),(2709,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/TooManyRedirectsException.php'),(2710,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/IoEmittingEntityBody.php'),(2711,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/AbstractMessage.php'),(2712,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequest.php'),(2713,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequestInterface.php'),(2714,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/CacheControl.php'),(2715,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderCollection.php'),(2716,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactory.php'),(2717,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactoryInterface.php'),(2718,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderInterface.php'),(2719,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/Link.php'),(2720,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header.php'),(2721,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/MessageInterface.php'),(2722,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFile.php'),(2723,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFileInterface.php'),(2724,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Request.php'),(2725,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactory.php'),(2726,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactoryInterface.php'),(2727,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestInterface.php'),(2728,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Response.php'),(2729,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Mimetypes.php'),(2730,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/CommaAggregator.php'),(2731,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/DuplicateAggregator.php'),(2732,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/PhpAggregator.php'),(2733,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/QueryAggregatorInterface.php'),(2734,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryString.php'),(2735,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/ReadLimitEntityBody.php'),(2736,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php'),(2737,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/StaticClient.php'),(2738,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Url.php'),(2739,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/Inflector.php'),(2740,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/InflectorInterface.php'),(2741,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/MemoizingInflector.php'),(2742,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/PreComputedInflector.php'),(2743,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/AppendIterator.php'),(2744,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/ChunkedIterator.php'),(2745,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/FilterIterator.php'),(2746,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/MapIterator.php'),(2747,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/MethodProxyIterator.php'),(2748,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/AbstractLogAdapter.php'),(2749,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/ArrayLogAdapter.php'),(2750,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/ClosureLogAdapter.php'),(2751,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/LogAdapterInterface.php'),(2752,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/MessageFormatter.php'),(2753,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/MonologLogAdapter.php'),(2754,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/PsrLogAdapter.php'),(2755,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/Zf2LogAdapter.php'),(2756,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParser.php'),(2757,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParserInterface.php'),(2758,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/AbstractMessageParser.php'),(2759,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParser.php'),(2760,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParserInterface.php'),(2761,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/PeclHttpMessageParser.php'),(2762,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/ParserRegistry.php'),(2763,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/PeclUriTemplate.php'),(2764,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplate.php'),(2765,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplateInterface.php'),(2766,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParser.php'),(2767,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParserInterface.php'),(2768,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php'),(2769,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractBackoffStrategy.php'),(2770,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractErrorCodeBackoffStrategy.php'),(2771,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffLogger.php'),(2772,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffPlugin.php'),(2773,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffStrategyInterface.php'),(2774,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CallbackBackoffStrategy.php'),(2775,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ConstantBackoffStrategy.php'),(2776,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CurlBackoffStrategy.php'),(2777,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ExponentialBackoffStrategy.php'),(2778,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/HttpBackoffStrategy.php'),(2779,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/LinearBackoffStrategy.php'),(2780,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ReasonPhraseBackoffStrategy.php'),(2781,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/TruncatedBackoffStrategy.php'),(2782,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheKeyProviderInterface.php'),(2783,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php'),(2784,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheStorageInterface.php'),(2785,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CallbackCanCacheStrategy.php'),(2786,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CanCacheStrategyInterface.php'),(2787,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheKeyProvider.php'),(2788,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheStorage.php'),(2789,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCanCacheStrategy.php'),(2790,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultRevalidation.php'),(2791,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DenyRevalidation.php'),(2792,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/RevalidationInterface.php'),(2793,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/SkipRevalidation.php'),(2794,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Cookie.php'),(2795,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/ArrayCookieJar.php'),(2796,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/CookieJarInterface.php'),(2797,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/FileCookieJar.php'),(2798,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookiePlugin.php'),(2799,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Exception/InvalidCookieException.php'),(2800,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth/CurlAuthPlugin.php'),(2801,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponseExceptionInterface.php'),(2802,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponsePlugin.php'),(2803,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/Exception/ErrorResponseException.php'),(2804,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/History/HistoryPlugin.php'),(2805,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Log/LogPlugin.php'),(2806,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/CommandContentMd5Plugin.php'),(2807,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/Md5ValidatorPlugin.php'),(2808,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Mock/MockPlugin.php'),(2809,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Oauth/OauthPlugin.php'),(2810,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/AbstractConfigLoader.php'),(2811,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilder.php'),(2812,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderInterface.php'),(2813,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderLoader.php'),(2814,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/CachingConfigLoader.php'),(2815,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Client.php'),(2816,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/ClientInterface.php'),(2817,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/AbstractCommand.php'),(2818,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ClosureCommand.php'),(2819,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CommandInterface.php'),(2820,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CreateResponseClassEvent.php'),(2821,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultRequestSerializer.php'),(2822,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultResponseParser.php'),(2823,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/AliasFactory.php'),(2824,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/CompositeFactory.php'),(2825,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ConcreteClassFactory.php'),(2826,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/FactoryInterface.php'),(2827,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/MapFactory.php'),(2828,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ServiceDescriptionFactory.php'),(2829,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/AbstractRequestVisitor.php'),(2830,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/BodyVisitor.php'),(2831,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/HeaderVisitor.php'),(2832,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/JsonVisitor.php'),(2833,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFieldVisitor.php'),(2834,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFileVisitor.php'),(2835,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/QueryVisitor.php'),(2836,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/RequestVisitorInterface.php'),(2837,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/ResponseBodyVisitor.php'),(2838,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/XmlVisitor.php'),(2839,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/AbstractResponseVisitor.php'),(2840,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/BodyVisitor.php'),(2841,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/HeaderVisitor.php'),(2842,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/JsonVisitor.php'),(2843,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ReasonPhraseVisitor.php'),(2844,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ResponseVisitorInterface.php'),(2845,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/StatusCodeVisitor.php'),(2846,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/XmlVisitor.php'),(2847,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/VisitorFlyweight.php'),(2848,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationCommand.php'),(2849,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationResponseParser.php'),(2850,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/RequestSerializerInterface.php'),(2851,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseClassInterface.php'),(2852,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseParserInterface.php'),(2853,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/ConfigLoaderInterface.php'),(2854,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Operation.php'),(2855,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/OperationInterface.php'),(2856,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Parameter.php'),(2857,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaFormatter.php'),(2858,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaValidator.php'),(2859,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescription.php'),(2860,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionInterface.php'),(2861,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionLoader.php'),(2862,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ValidatorInterface.php'),(2863,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandException.php'),(2864,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandTransferException.php'),(2865,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/DescriptionBuilderException.php'),(2866,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/InconsistentClientTransferException.php'),(2867,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ResponseClassException.php'),(2868,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceBuilderException.php'),(2869,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceNotFoundException.php'),(2870,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ValidationException.php'),(2871,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/AbstractResourceIteratorFactory.php'),(2872,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/CompositeResourceIteratorFactory.php'),(2873,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/MapResourceIteratorFactory.php'),(2874,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/Model.php'),(2875,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIterator.php'),(2876,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorApplyBatched.php'),(2877,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorClassFactory.php'),(2878,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorFactoryInterface.php'),(2879,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorInterface.php'),(2880,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/PhpStreamRequestFactory.php'),(2881,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/Stream.php'),(2882,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamInterface.php'),(2883,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamRequestFactoryInterface.php'),(2884,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCache.php'),(2885,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCollection.php'),(2886,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCollectionInterface.php'),(2887,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetInterface.php'),(2888,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetReference.php'),(2889,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/BaseAsset.php'),(2890,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/FileAsset.php'),(2891,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/GlobAsset.php'),(2892,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/HttpAsset.php'),(2893,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/AssetCollectionFilterIterator.php'),(2894,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/AssetCollectionIterator.php'),(2895,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/StringAsset.php'),(2896,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/AssetManager.php'),(2897,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/AssetWriter.php'),(2898,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ApcCache.php'),(2899,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ArrayCache.php'),(2900,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/CacheInterface.php'),(2901,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ConfigCache.php'),(2902,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ExpiringCache.php'),(2903,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/FilesystemCache.php'),(2904,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Exception/Exception.php'),(2905,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Exception/FilterException.php'),(2906,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticExtension.php'),(2907,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticFilterFunction.php'),(2908,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticFilterInvoker.php'),(2909,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticFilterNode.php'),(2910,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticNode.php'),(2911,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticTokenParser.php'),(2912,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/TwigFormulaLoader.php'),(2913,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/TwigResource.php'),(2914,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/ValueContainer.php'),(2915,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/AssetFactory.php'),(2916,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/LazyAssetManager.php'),(2917,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/BasePhpFormulaLoader.php'),(2918,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/CachedFormulaLoader.php'),(2919,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/FormulaLoaderInterface.php'),(2920,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/FunctionCallsFormulaLoader.php'),(2921,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/CoalescingDirectoryResource.php'),(2922,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/DirectoryResource.php'),(2923,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/FileResource.php'),(2924,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/IteratorResourceInterface.php'),(2925,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/ResourceInterface.php'),(2926,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/CacheBustingWorker.php'),(2927,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/EnsureFilterWorker.php'),(2928,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/WorkerInterface.php'),(2929,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/AutoprefixerFilter.php'),(2930,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/BaseCssFilter.php'),(2931,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/BaseNodeFilter.php'),(2932,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/BaseProcessFilter.php'),(2933,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CallablesFilter.php'),(2934,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CleanCssFilter.php'),(2935,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CoffeeScriptFilter.php'),(2936,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CompassFilter.php'),(2937,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssCacheBustingFilter.php'),(2938,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssEmbedFilter.php'),(2939,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssImportFilter.php'),(2940,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssMinFilter.php'),(2941,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssRewriteFilter.php'),(2942,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/DartFilter.php'),(2943,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/DependencyExtractorInterface.php'),(2944,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/EmberPrecompileFilter.php'),(2945,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/FilterCollection.php'),(2946,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/FilterInterface.php'),(2947,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/BaseCompilerFilter.php'),(2948,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/CompilerApiFilter.php'),(2949,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/CompilerJarFilter.php'),(2950,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GssFilter.php'),(2951,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/HandlebarsFilter.php'),(2952,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/HashableInterface.php'),(2953,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JSMinFilter.php'),(2954,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JSMinPlusFilter.php'),(2955,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JSqueezeFilter.php'),(2956,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JpegoptimFilter.php'),(2957,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JpegtranFilter.php'),(2958,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/LessFilter.php'),(2959,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/LessphpFilter.php'),(2960,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/MinifyCssCompressorFilter.php'),(2961,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/OptiPngFilter.php'),(2962,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PackagerFilter.php'),(2963,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PackerFilter.php'),(2964,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PhpCssEmbedFilter.php'),(2965,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PngoutFilter.php'),(2966,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/ReactJsxFilter.php'),(2967,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/RooleFilter.php'),(2968,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/BaseSassFilter.php'),(2969,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/SassFilter.php'),(2970,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/ScssFilter.php'),(2971,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/SassphpFilter.php'),(2972,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/ScssphpFilter.php'),(2973,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/SeparatorFilter.php'),(2974,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/SprocketsFilter.php'),(2975,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/StylusFilter.php'),(2976,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/TypeScriptFilter.php'),(2977,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/UglifyCssFilter.php'),(2978,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/UglifyJs2Filter.php'),(2979,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/UglifyJsFilter.php'),(2980,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/BaseCompressorFilter.php'),(2981,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/CssCompressorFilter.php'),(2982,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/JsCompressorFilter.php'),(2983,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/FilterManager.php'),(2984,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/CssUtils.php'),(2985,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/FilesystemUtils.php'),(2986,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/LessUtils.php'),(2987,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/SassUtils.php'),(2988,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/TraversableString.php'),(2989,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/VarUtils.php'),(2990,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/ValueSupplierInterface.php'),(2991,'wp-content/plugins/updraftplus/vendor/kriswallsmith/assetic/src/functions.php'),(2992,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/AES.php'),(2993,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php'),(2994,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php'),(2995,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php'),(2996,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Hash.php'),(2997,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php'),(2998,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php'),(2999,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Random.php'),(3000,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php'),(3001,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/TripleDES.php'),(3002,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php'),(3003,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/File/ANSI.php'),(3004,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php'),(3005,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/File/X509.php'),(3006,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php'),(3007,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SCP.php'),(3008,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php'),(3009,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php'),(3010,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php'),(3011,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php'),(3012,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php'),(3013,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/System/SSH_Agent.php'),(3014,'wp-content/plugins/updraftplus/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php'),(3015,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/AbstractLogger.php'),(3016,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/InvalidArgumentException.php'),(3017,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LogLevel.php'),(3018,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerAwareInterface.php'),(3019,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerAwareTrait.php'),(3020,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerInterface.php'),(3021,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerTrait.php'),(3022,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/NullLogger.php'),(3023,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php'),(3024,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/Test/TestLogger.php'),(3025,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/ArrayAccess.php'),(3026,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Base.php'),(3027,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/ArrayCollection.php'),(3028,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/PaginatedIterator.php'),(3029,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/ResourceIterator.php'),(3030,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection.php'),(3031,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Datetime.php'),(3032,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Header.php'),(3033,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Mime.php'),(3034,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Service.php'),(3035,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Size.php'),(3036,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/State.php'),(3037,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncError.php'),(3038,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncHttpError.php'),(3039,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncTimeoutError.php'),(3040,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AttributeError.php'),(3041,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AuthenticationError.php'),(3042,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/BaseException.php'),(3043,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnError.php'),(3044,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnHttpError.php'),(3045,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnNotAvailableError.php'),(3046,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnTtlError.php'),(3047,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CollectionException.php'),(3048,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerCreateError.php'),(3049,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerDeleteError.php'),(3050,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerError.php'),(3051,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNameError.php'),(3052,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNotEmptyError.php'),(3053,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNotFoundError.php'),(3054,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CreateError.php'),(3055,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CreateUpdateError.php'),(3056,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CredentialError.php'),(3057,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseCreateError.php'),(3058,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseDeleteError.php'),(3059,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseListError.php'),(3060,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseNameError.php'),(3061,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseUpdateError.php'),(3062,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DeleteError.php'),(3063,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DocumentError.php'),(3064,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DomainError.php'),(3065,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/EmptyResponseError.php'),(3066,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/EndpointError.php'),(3067,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/FlavorError.php'),(3068,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ForbiddenOperationException.php'),(3069,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpError.php'),(3070,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpForbiddenError.php'),(3071,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpOverLimitError.php'),(3072,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpResponseException.php'),(3073,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpRetryError.php'),(3074,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpTimeoutError.php'),(3075,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpUnauthorizedError.php'),(3076,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpUrlError.php'),(3077,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/IOError.php'),(3078,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/IdRequiredError.php'),(3079,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ImageError.php'),(3080,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceCreateError.php'),(3081,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceDeleteError.php'),(3082,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceError.php'),(3083,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceFlavorError.php'),(3084,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceNotFound.php'),(3085,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceUpdateError.php'),(3086,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidArgumentError.php'),(3087,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidIdTypeError.php'),(3088,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidIpTypeError.php'),(3089,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidParameterError.php'),(3090,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidRequestError.php'),(3091,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidTemplateError.php'),(3092,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/JsonError.php'),(3093,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/LoggingException.php'),(3094,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataCreateError.php'),(3095,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataDeleteError.php'),(3096,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataError.php'),(3097,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataJsonError.php'),(3098,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataKeyError.php'),(3099,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataPrefixError.php'),(3100,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataUpdateError.php'),(3101,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MisMatchedChecksumError.php'),(3102,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MissingValueError.php'),(3103,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NameError.php'),(3104,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkCreateError.php'),(3105,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkDeleteError.php'),(3106,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkError.php'),(3107,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkUpdateError.php'),(3108,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkUrlError.php'),(3109,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NoContentTypeError.php'),(3110,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NoNameError.php'),(3111,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjFetchError.php'),(3112,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjectCopyError.php'),(3113,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjectError.php'),(3114,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RebuildError.php'),(3115,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RecordTypeError.php'),(3116,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ResourceBucketException.php'),(3117,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ResourceNotFoundException.php'),(3118,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RuntimeException.php'),(3119,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerActionError.php'),(3120,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerCreateError.php'),(3121,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerDeleteError.php'),(3122,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerImageScheduleError.php'),(3123,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerIpsError.php'),(3124,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerJsonError.php'),(3125,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerUpdateError.php'),(3126,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerUrlError.php'),(3127,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServiceException.php'),(3128,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/SnapshotError.php'),(3129,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/TempUrlMethodError.php'),(3130,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnknownError.php'),(3131,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnknownParameterError.php'),(3132,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnrecognizedServiceError.php'),(3133,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedExtensionError.php'),(3134,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedFeatureExtension.php'),(3135,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedVersionError.php'),(3136,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UpdateError.php'),(3137,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UrlError.php'),(3138,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserCreateError.php'),(3139,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserDeleteError.php'),(3140,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserListError.php'),(3141,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserNameError.php'),(3142,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserUpdateError.php'),(3143,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/VolumeError.php'),(3144,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/VolumeTypeError.php'),(3145,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Client.php'),(3146,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Message/Formatter.php'),(3147,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Message/RequestSubscriber.php'),(3148,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Lang.php'),(3149,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Log/Logger.php'),(3150,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Metadata.php'),(3151,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/PersistentObject.php'),(3152,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/BaseResource.php'),(3153,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/NovaResource.php'),(3154,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/PersistentResource.php'),(3155,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/ReadOnlyResource.php'),(3156,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/AbstractService.php'),(3157,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/Catalog.php'),(3158,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/CatalogItem.php'),(3159,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/CatalogService.php'),(3160,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/Endpoint.php'),(3161,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/NovaService.php'),(3162,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/ServiceBuilder.php'),(3163,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/ServiceInterface.php'),(3164,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Constants/User.php'),(3165,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Role.php'),(3166,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Tenant.php'),(3167,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Token.php'),(3168,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/User.php'),(3169,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Service.php'),(3170,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/AbstractService.php'),(3171,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/CDNService.php'),(3172,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Constants/Header.php'),(3173,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Constants/UrlType.php'),(3174,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Enum/ReturnType.php'),(3175,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/BulkOperationException.php'),(3176,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ContainerException.php'),(3177,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ObjectNotFoundException.php'),(3178,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/StreamException.php'),(3179,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/UploadException.php'),(3180,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/AbstractContainer.php'),(3181,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/AbstractResource.php'),(3182,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/Account.php'),(3183,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/CDNContainer.php'),(3184,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/Container.php'),(3185,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/ContainerMetadata.php'),(3186,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/DataObject.php'),(3187,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Service.php'),(3188,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/AbstractTransfer.php'),(3189,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ConcurrentTransfer.php'),(3190,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ConsecutiveTransfer.php'),(3191,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ContainerMigration.php'),(3192,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/DirectorySync.php'),(3193,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferBuilder.php'),(3194,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferPart.php'),(3195,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferState.php'),(3196,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/OpenStack.php'),(3197,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Rackspace.php'),(3198,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Version.php'),(3199,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/php-opencloud.php'),(3200,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/ContainerAwareEventDispatcher.php'),(3201,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php'),(3202,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php'),(3203,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Debug/WrappedListener.php'),(3204,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php'),(3205,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Event.php'),(3206,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/EventDispatcherInterface.php'),(3207,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/EventSubscriberInterface.php'),(3208,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/GenericEvent.php'),(3209,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php'),(3210,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php'),(3211,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/ContainerAwareEventDispatcherTest.php'),(3212,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/Debug/TraceableEventDispatcherTest.php'),(3213,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php'),(3214,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/EventDispatcherTest.php'),(3215,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/EventTest.php'),(3216,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/GenericEventTest.php'),(3217,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/ImmutableEventDispatcherTest.php'),(3218,'wp-content/plugins/updraftplus/vendor/symfony/process/Exception/ExceptionInterface.php'),(3219,'wp-content/plugins/updraftplus/vendor/symfony/process/Exception/InvalidArgumentException.php'),(3220,'wp-content/plugins/updraftplus/vendor/symfony/process/Exception/LogicException.php'),(3221,'wp-content/plugins/updraftplus/vendor/symfony/process/Exception/ProcessFailedException.php'),(3222,'wp-content/plugins/updraftplus/vendor/symfony/process/Exception/ProcessTimedOutException.php'),(3223,'wp-content/plugins/updraftplus/vendor/symfony/process/Exception/RuntimeException.php'),(3224,'wp-content/plugins/updraftplus/vendor/symfony/process/ExecutableFinder.php'),(3225,'wp-content/plugins/updraftplus/vendor/symfony/process/InputStream.php'),(3226,'wp-content/plugins/updraftplus/vendor/symfony/process/PhpExecutableFinder.php'),(3227,'wp-content/plugins/updraftplus/vendor/symfony/process/PhpProcess.php'),(3228,'wp-content/plugins/updraftplus/vendor/symfony/process/Pipes/AbstractPipes.php'),(3229,'wp-content/plugins/updraftplus/vendor/symfony/process/Pipes/PipesInterface.php'),(3230,'wp-content/plugins/updraftplus/vendor/symfony/process/Pipes/UnixPipes.php'),(3231,'wp-content/plugins/updraftplus/vendor/symfony/process/Pipes/WindowsPipes.php'),(3232,'wp-content/plugins/updraftplus/vendor/symfony/process/Process.php'),(3233,'wp-content/plugins/updraftplus/vendor/symfony/process/ProcessBuilder.php'),(3234,'wp-content/plugins/updraftplus/vendor/symfony/process/ProcessUtils.php'),(3235,'wp-content/plugins/updraftplus/vendor/symfony/process/Tests/ExecutableFinderTest.php'),(3236,'wp-content/plugins/updraftplus/vendor/symfony/process/Tests/NonStopableProcess.php'),(3237,'wp-content/plugins/updraftplus/vendor/symfony/process/Tests/PhpExecutableFinderTest.php'),(3238,'wp-content/plugins/updraftplus/vendor/symfony/process/Tests/PhpProcessTest.php'),(3239,'wp-content/plugins/updraftplus/vendor/symfony/process/Tests/PipeStdinInStdoutStdErrStreamSelect.php'),(3240,'wp-content/plugins/updraftplus/vendor/symfony/process/Tests/ProcessBuilderTest.php'),(3241,'wp-content/plugins/updraftplus/vendor/symfony/process/Tests/ProcessFailedExceptionTest.php'),(3242,'wp-content/plugins/updraftplus/vendor/symfony/process/Tests/ProcessTest.php'),(3243,'wp-content/plugins/updraftplus/vendor/symfony/process/Tests/ProcessUtilsTest.php'),(3244,'wp-content/plugins/updraftplus/vendor/symfony/process/Tests/SignalListener.php'),(3245,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4/Factory.php'),(3246,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Autoloader.php'),(3247,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/Extension.php'),(3248,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/Panel.php'),(3249,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/PluginExtension.php'),(3250,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/PluginPanel.php'),(3251,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/ThemePanel.php'),(3252,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Metadata.php'),(3253,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/OAuthSignature.php'),(3254,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Plugin/Info.php'),(3255,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Plugin/Update.php'),(3256,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Plugin/UpdateChecker.php'),(3257,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Scheduler.php'),(3258,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/StateStore.php'),(3259,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Theme/Update.php'),(3260,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Theme/UpdateChecker.php'),(3261,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Update.php'),(3262,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/UpdateChecker.php'),(3263,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/UpgraderStatus.php'),(3264,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Utils.php'),(3265,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/Api.php'),(3266,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/BaseChecker.php'),(3267,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/BitBucketApi.php'),(3268,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/GitHubApi.php'),(3269,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/GitLabApi.php'),(3270,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/PluginUpdateChecker.php'),(3271,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/Reference.php'),(3272,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/ThemeUpdateChecker.php'),(3273,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/js/debug-bar.js'),(3274,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/plugin-update-checker.php'),(3275,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/vendor/Parsedown.php'),(3276,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/vendor/ParsedownLegacy.php'),(3277,'wp-content/plugins/updraftplus/vendor/yahnis-elsts/plugin-update-checker/vendor/readme-parser.php'),(3278,'wp-content/plugins/wordfence/crypto/vendor/autoload.php'),(3279,'wp-content/plugins/wordfence/crypto/vendor/composer/ClassLoader.php'),(3280,'wp-content/plugins/wordfence/crypto/vendor/composer/InstalledVersions.php'),(3281,'wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE'),(3282,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php'),(3283,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_files.php'),(3284,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php'),(3285,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php'),(3286,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_real.php'),(3287,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php'),(3288,'wp-content/plugins/wordfence/crypto/vendor/composer/installed.json'),(3289,'wp-content/plugins/wordfence/crypto/vendor/composer/installed.php'),(3290,'wp-content/plugins/wordfence/crypto/vendor/composer/platform_check.php'),(3291,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/LICENSE'),(3292,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey'),(3293,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc'),(3294,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/byte_safe_strings.php'),(3295,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php'),(3296,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php'),(3297,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random.php'),(3298,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php'),(3299,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php'),(3300,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php'),(3301,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php'),(3302,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php'),(3303,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_int.php'),(3304,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/psalm-autoload.php'),(3305,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE'),(3306,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-fast.php'),(3307,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-pedantic.php'),(3308,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-php7.php'),(3309,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-phpunit.php'),(3310,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload.php'),(3311,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/composer-php52.json'),(3312,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/constants.php'),(3313,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/namespaced.php'),(3314,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php'),(3315,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat_const.php'),(3316,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php'),(3317,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Compat.php'),(3318,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php'),(3319,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php'),(3320,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php'),(3321,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php'),(3322,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php'),(3323,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php'),(3324,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php'),(3325,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php'),(3326,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php'),(3327,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php'),(3328,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php'),(3329,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php'),(3330,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Ed25519.php'),(3331,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php'),(3332,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php'),(3333,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php'),(3334,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php'),(3335,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php'),(3336,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php'),(3337,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php'),(3338,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php'),(3339,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php'),(3340,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Xsalsa20.php'),(3341,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Crypto.php'),(3342,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php'),(3343,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/psalm-above-3.xml'),(3344,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/psalm-below-3.xml'),(3345,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php'),(3346,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php'),(3347,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Common.php'),(3348,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Original.php'),(3349,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/UrlSafe.php'),(3350,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php'),(3351,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php'),(3352,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20.php'),(3353,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php'),(3354,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php'),(3355,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php'),(3356,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php'),(3357,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php'),(3358,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php'),(3359,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/H.php'),(3360,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php'),(3361,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php'),(3362,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php'),(3363,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php'),(3364,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php'),(3365,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305.php'),(3366,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php'),(3367,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream/State.php'),(3368,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SipHash.php'),(3369,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php'),(3370,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php'),(3371,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XChaCha20.php'),(3372,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php'),(3373,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php'),(3374,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php'),(3375,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php'),(3376,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php'),(3377,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Fe.php'),(3378,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php'),(3379,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php'),(3380,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php'),(3381,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php'),(3382,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php'),(3383,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php'),(3384,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php'),(3385,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php'),(3386,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php'),(3387,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php'),(3388,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int32.php'),(3389,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php'),(3390,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php'),(3391,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php'),(3392,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php'),(3393,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream/State.php'),(3394,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php'),(3395,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php'),(3396,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php'),(3397,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php'),(3398,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php'),(3399,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php'),(3400,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php'),(3401,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php'),(3402,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php'),(3403,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php'),(3404,'wp-content/plugins/wordfence/css/activity-report-widget.1637598990.css'),(3405,'wp-content/plugins/wordfence/css/diff.1637598990.css'),(3406,'wp-content/plugins/wordfence/css/dt_table.1637598990.css'),(3407,'wp-content/plugins/wordfence/css/fullLog.1637598990.css'),(3408,'wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png'),(3409,'wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png'),(3410,'wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png'),(3411,'wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png'),(3412,'wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png'),(3413,'wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png'),(3414,'wp-content/plugins/wordfence/css/iptraf.1637598990.css'),(3415,'wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1637598990.css'),(3416,'wp-content/plugins/wordfence/css/jquery-ui.min.1637598990.css'),(3417,'wp-content/plugins/wordfence/css/jquery-ui.structure.min.1637598990.css'),(3418,'wp-content/plugins/wordfence/css/jquery-ui.theme.min.1637598990.css'),(3419,'wp-content/plugins/wordfence/css/main.1637598990.css'),(3420,'wp-content/plugins/wordfence/css/phpinfo.1637598990.css'),(3421,'wp-content/plugins/wordfence/css/wf-adminbar.1637598990.css'),(3422,'wp-content/plugins/wordfence/css/wf-colorbox.1637598990.css'),(3423,'wp-content/plugins/wordfence/css/wf-font-awesome.1637598990.css'),(3424,'wp-content/plugins/wordfence/css/wf-global.1637598990.css'),(3425,'wp-content/plugins/wordfence/css/wf-ionicons.1637598990.css'),(3426,'wp-content/plugins/wordfence/css/wf-onboarding.1637598990.css'),(3427,'wp-content/plugins/wordfence/css/wf-roboto-font.1637598990.css'),(3428,'wp-content/plugins/wordfence/css/wfselect2.min.1637598990.css'),(3429,'wp-content/plugins/wordfence/css/wordfenceBox.1637598990.css'),(3430,'wp-content/plugins/wordfence/fonts/fontawesome-webfont.woff'),(3431,'wp-content/plugins/wordfence/fonts/ionicons.woff'),(3432,'wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xGIzQXKMnyrYk.woff'),(3433,'wp-content/plugins/wordfence/fonts/roboto-KFOkCnqEu92Fr1Mu51xIIzQXKMny.woff'),(3434,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fBBc-AMP6lQ.woff'),(3435,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmEU9fChc-AMP6lbBP.woff'),(3436,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fBBc-AMP6lQ.woff'),(3437,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmSU5fChc-AMP6lbBP.woff'),(3438,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfBBc-AMP6lQ.woff'),(3439,'wp-content/plugins/wordfence/fonts/roboto-KFOlCnqEu92Fr1MmWUlfChc-AMP6lbBP.woff'),(3440,'wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu4mxMKTU1Kg.woff'),(3441,'wp-content/plugins/wordfence/fonts/roboto-KFOmCnqEu92Fr1Mu7GxMKTU1Kvnz.woff'),(3442,'wp-content/plugins/wordfence/images/2fa-whole.svg'),(3443,'wp-content/plugins/wordfence/images/2fa1.svg'),(3444,'wp-content/plugins/wordfence/images/2fa2.svg'),(3445,'wp-content/plugins/wordfence/images/back_disabled.jpg'),(3446,'wp-content/plugins/wordfence/images/back_enabled.jpg'),(3447,'wp-content/plugins/wordfence/images/blocking.svg'),(3448,'wp-content/plugins/wordfence/images/button-grad-grey.png'),(3449,'wp-content/plugins/wordfence/images/checkbox.png'),(3450,'wp-content/plugins/wordfence/images/flags.png'),(3451,'wp-content/plugins/wordfence/images/forward_disabled.jpg'),(3452,'wp-content/plugins/wordfence/images/forward_enabled.jpg'),(3453,'wp-content/plugins/wordfence/images/help.png'),(3454,'wp-content/plugins/wordfence/images/icons/ajax24.gif'),(3455,'wp-content/plugins/wordfence/images/icons/ajax3.gif'),(3456,'wp-content/plugins/wordfence/images/icons/ajaxRed16.gif'),(3457,'wp-content/plugins/wordfence/images/icons/ajaxScan.gif'),(3458,'wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif'),(3459,'wp-content/plugins/wordfence/images/icons/arrow_refresh.png'),(3460,'wp-content/plugins/wordfence/images/icons/bullet_yellow.png'),(3461,'wp-content/plugins/wordfence/images/icons/email_go.png'),(3462,'wp-content/plugins/wordfence/images/icons/error128.png'),(3463,'wp-content/plugins/wordfence/images/icons/magnifier.png'),(3464,'wp-content/plugins/wordfence/images/icons/tick128.png'),(3465,'wp-content/plugins/wordfence/images/icons/warning128.png'),(3466,'wp-content/plugins/wordfence/images/icons/working-indicator.gif'),(3467,'wp-content/plugins/wordfence/images/lightbox-controls.png'),(3468,'wp-content/plugins/wordfence/images/loading.gif'),(3469,'wp-content/plugins/wordfence/images/loading_background.png'),(3470,'wp-content/plugins/wordfence/images/loading_large.gif'),(3471,'wp-content/plugins/wordfence/images/logo.png'),(3472,'wp-content/plugins/wordfence/images/options.svg'),(3473,'wp-content/plugins/wordfence/images/ratelimiting.svg'),(3474,'wp-content/plugins/wordfence/images/sort_asc.gif'),(3475,'wp-content/plugins/wordfence/images/sort_asc.png'),(3476,'wp-content/plugins/wordfence/images/sort_asc_disabled.gif'),(3477,'wp-content/plugins/wordfence/images/sort_asc_disabled.png'),(3478,'wp-content/plugins/wordfence/images/sort_both.gif'),(3479,'wp-content/plugins/wordfence/images/sort_both.png'),(3480,'wp-content/plugins/wordfence/images/sort_desc.gif'),(3481,'wp-content/plugins/wordfence/images/sort_desc.png'),(3482,'wp-content/plugins/wordfence/images/sort_desc_disabled.gif'),(3483,'wp-content/plugins/wordfence/images/sort_desc_disabled.png'),(3484,'wp-content/plugins/wordfence/images/support.svg'),(3485,'wp-content/plugins/wordfence/images/tools.svg'),(3486,'wp-content/plugins/wordfence/images/wf-central-logo.svg'),(3487,'wp-content/plugins/wordfence/images/wf-error-badge.svg'),(3488,'wp-content/plugins/wordfence/images/wf-horizontal.svg'),(3489,'wp-content/plugins/wordfence/images/wordfence-logo.svg'),(3490,'wp-content/plugins/wordfence/index.php'),(3491,'wp-content/plugins/wordfence/js/Chart.bundle.min.1637598990.js'),(3492,'wp-content/plugins/wordfence/js/admin.1637598990.js'),(3493,'wp-content/plugins/wordfence/js/admin.ajaxWatcher.1637598990.js'),(3494,'wp-content/plugins/wordfence/js/admin.liveTraffic.1637598990.js'),(3495,'wp-content/plugins/wordfence/js/date.1637598990.js'),(3496,'wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1637598990.js'),(3497,'wp-content/plugins/wordfence/js/jquery.colorbox-min.1637598990.js'),(3498,'wp-content/plugins/wordfence/js/jquery.colorbox.1637598990.js'),(3499,'wp-content/plugins/wordfence/js/jquery.dataTables.min.1637598990.js'),(3500,'wp-content/plugins/wordfence/js/jquery.qrcode.min.1637598990.js'),(3501,'wp-content/plugins/wordfence/js/jquery.tmpl.min.1637598990.js'),(3502,'wp-content/plugins/wordfence/js/jquery.tools.min.1637598990.js'),(3503,'wp-content/plugins/wordfence/js/knockout-3.5.1.1637598990.js'),(3504,'wp-content/plugins/wordfence/js/wfdashboard.1637598990.js'),(3505,'wp-content/plugins/wordfence/js/wfdropdown.1637598990.js'),(3506,'wp-content/plugins/wordfence/js/wfglobal.1637598990.js'),(3507,'wp-content/plugins/wordfence/js/wfi18n.1637598990.js'),(3508,'wp-content/plugins/wordfence/js/wfpopover.1637598990.js'),(3509,'wp-content/plugins/wordfence/js/wfselect2.min.1637598990.js'),(3510,'wp-content/plugins/wordfence/languages/wordfence.mo'),(3511,'wp-content/plugins/wordfence/languages/wordfence.po'),(3512,'wp-content/plugins/wordfence/lib/.htaccess'),(3513,'wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php'),(3514,'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php'),(3515,'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php'),(3516,'wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php'),(3517,'wp-content/plugins/wordfence/lib/Diff.php'),(3518,'wp-content/plugins/wordfence/lib/GeoLite2-Country.mmdb'),(3519,'wp-content/plugins/wordfence/lib/IPTraf.php'),(3520,'wp-content/plugins/wordfence/lib/IPTrafList.php'),(3521,'wp-content/plugins/wordfence/lib/WFLSPHP52Compatability.php'),(3522,'wp-content/plugins/wordfence/lib/compat.php'),(3523,'wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php'),(3524,'wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php'),(3525,'wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php'),(3526,'wp-content/plugins/wordfence/lib/dashboard/widget_countries.php'),(3527,'wp-content/plugins/wordfence/lib/dashboard/widget_ips.php'),(3528,'wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php'),(3529,'wp-content/plugins/wordfence/lib/dashboard/widget_logins.php'),(3530,'wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php'),(3531,'wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php'),(3532,'wp-content/plugins/wordfence/lib/diffResult.php'),(3533,'wp-content/plugins/wordfence/lib/email_genericAlert.php'),(3534,'wp-content/plugins/wordfence/lib/email_newIssues.php'),(3535,'wp-content/plugins/wordfence/lib/email_unlockRequest.php'),(3536,'wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php'),(3537,'wp-content/plugins/wordfence/lib/flags.php'),(3538,'wp-content/plugins/wordfence/lib/live_activity.php'),(3539,'wp-content/plugins/wordfence/lib/menu_dashboard.php'),(3540,'wp-content/plugins/wordfence/lib/menu_dashboard_options.php'),(3541,'wp-content/plugins/wordfence/lib/menu_firewall.php'),(3542,'wp-content/plugins/wordfence/lib/menu_firewall_blocking.php'),(3543,'wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php'),(3544,'wp-content/plugins/wordfence/lib/menu_firewall_waf.php'),(3545,'wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php'),(3546,'wp-content/plugins/wordfence/lib/menu_options.php'),(3547,'wp-content/plugins/wordfence/lib/menu_scanner.php'),(3548,'wp-content/plugins/wordfence/lib/menu_scanner_credentials.php'),(3549,'wp-content/plugins/wordfence/lib/menu_scanner_options.php'),(3550,'wp-content/plugins/wordfence/lib/menu_support.php'),(3551,'wp-content/plugins/wordfence/lib/menu_tools.php'),(3552,'wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php'),(3553,'wp-content/plugins/wordfence/lib/menu_tools_importExport.php'),(3554,'wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php'),(3555,'wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php'),(3556,'wp-content/plugins/wordfence/lib/menu_tools_whois.php'),(3557,'wp-content/plugins/wordfence/lib/menu_wordfence_central.php'),(3558,'wp-content/plugins/wordfence/lib/noc1.key'),(3559,'wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php'),(3560,'wp-content/plugins/wordfence/lib/rest-api/wfRESTBaseController.php'),(3561,'wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php'),(3562,'wp-content/plugins/wordfence/lib/rest-api/wfRESTScanController.php'),(3563,'wp-content/plugins/wordfence/lib/sysinfo.php'),(3564,'wp-content/plugins/wordfence/lib/viewFullActivityLog.php'),(3565,'wp-content/plugins/wordfence/lib/wf503.php'),(3566,'wp-content/plugins/wordfence/lib/wfAPI.php'),(3567,'wp-content/plugins/wordfence/lib/wfActivityReport.php'),(3568,'wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php'),(3569,'wp-content/plugins/wordfence/lib/wfAlerts.php'),(3570,'wp-content/plugins/wordfence/lib/wfArray.php'),(3571,'wp-content/plugins/wordfence/lib/wfBrowscap.php'),(3572,'wp-content/plugins/wordfence/lib/wfBrowscapCache.php'),(3573,'wp-content/plugins/wordfence/lib/wfBulkCountries.php'),(3574,'wp-content/plugins/wordfence/lib/wfCache.php'),(3575,'wp-content/plugins/wordfence/lib/wfCentralAPI.php'),(3576,'wp-content/plugins/wordfence/lib/wfConfig.php'),(3577,'wp-content/plugins/wordfence/lib/wfCrawl.php'),(3578,'wp-content/plugins/wordfence/lib/wfCredentialsController.php'),(3579,'wp-content/plugins/wordfence/lib/wfCrypt.php'),(3580,'wp-content/plugins/wordfence/lib/wfDB.php'),(3581,'wp-content/plugins/wordfence/lib/wfDashboard.php'),(3582,'wp-content/plugins/wordfence/lib/wfDateLocalization.php'),(3583,'wp-content/plugins/wordfence/lib/wfDiagnostic.php'),(3584,'wp-content/plugins/wordfence/lib/wfDict.php'),(3585,'wp-content/plugins/wordfence/lib/wfDirectoryIterator.php'),(3586,'wp-content/plugins/wordfence/lib/wfHelperBin.php'),(3587,'wp-content/plugins/wordfence/lib/wfHelperString.php'),(3588,'wp-content/plugins/wordfence/lib/wfIPWhitelist.php'),(3589,'wp-content/plugins/wordfence/lib/wfImportExportController.php'),(3590,'wp-content/plugins/wordfence/lib/wfIssues.php'),(3591,'wp-content/plugins/wordfence/lib/wfJWT.php'),(3592,'wp-content/plugins/wordfence/lib/wfLockedOut.php'),(3593,'wp-content/plugins/wordfence/lib/wfLog.php'),(3594,'wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php'),(3595,'wp-content/plugins/wordfence/lib/wfModuleController.php'),(3596,'wp-content/plugins/wordfence/lib/wfNotification.php'),(3597,'wp-content/plugins/wordfence/lib/wfOnboardingController.php'),(3598,'wp-content/plugins/wordfence/lib/wfPersistenceController.php'),(3599,'wp-content/plugins/wordfence/lib/wfRESTAPI.php'),(3600,'wp-content/plugins/wordfence/lib/wfScan.php'),(3601,'wp-content/plugins/wordfence/lib/wfScanEngine.php'),(3602,'wp-content/plugins/wordfence/lib/wfSchema.php'),(3603,'wp-content/plugins/wordfence/lib/wfStyle.php'),(3604,'wp-content/plugins/wordfence/lib/wfSupportController.php'),(3605,'wp-content/plugins/wordfence/lib/wfUnlockMsg.php'),(3606,'wp-content/plugins/wordfence/lib/wfUpdateCheck.php'),(3607,'wp-content/plugins/wordfence/lib/wfUtils.php'),(3608,'wp-content/plugins/wordfence/lib/wfVersionCheckController.php'),(3609,'wp-content/plugins/wordfence/lib/wfView.php'),(3610,'wp-content/plugins/wordfence/lib/wfViewResult.php'),(3611,'wp-content/plugins/wordfence/lib/wordfenceClass.php'),(3612,'wp-content/plugins/wordfence/lib/wordfenceConstants.php'),(3613,'wp-content/plugins/wordfence/lib/wordfenceHash.php'),(3614,'wp-content/plugins/wordfence/lib/wordfenceScanner.php'),(3615,'wp-content/plugins/wordfence/lib/wordfenceURLHoover.php'),(3616,'wp-content/plugins/wordfence/license.txt'),(3617,'wp-content/plugins/wordfence/models/.htaccess'),(3618,'wp-content/plugins/wordfence/models/block/wfBlock.php'),(3619,'wp-content/plugins/wordfence/models/block/wfRateLimit.php'),(3620,'wp-content/plugins/wordfence/models/common/wfGeoIP2.php'),(3621,'wp-content/plugins/wordfence/models/common/wfTab.php'),(3622,'wp-content/plugins/wordfence/models/firewall/wfFirewall.php'),(3623,'wp-content/plugins/wordfence/models/page/wfPage.php'),(3624,'wp-content/plugins/wordfence/models/scanner/wfScanner.php'),(3625,'wp-content/plugins/wordfence/modules/login-security/classes/.htaccess'),(3626,'wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php'),(3627,'wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php'),(3628,'wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php'),(3629,'wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php'),(3630,'wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php'),(3631,'wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php'),(3632,'wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php'),(3633,'wp-content/plugins/wordfence/modules/login-security/classes/controller/support.php'),(3634,'wp-content/plugins/wordfence/modules/login-security/classes/controller/time.php'),(3635,'wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php'),(3636,'wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php'),(3637,'wp-content/plugins/wordfence/modules/login-security/classes/controller/whitelist.php'),(3638,'wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php'),(3639,'wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php'),(3640,'wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php'),(3641,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php'),(3642,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php'),(3643,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php'),(3644,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php'),(3645,'wp-content/plugins/wordfence/modules/login-security/classes/model/ip.php'),(3646,'wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php'),(3647,'wp-content/plugins/wordfence/modules/login-security/classes/model/request.php'),(3648,'wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php'),(3649,'wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php'),(3650,'wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php'),(3651,'wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php'),(3652,'wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php'),(3653,'wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php'),(3654,'wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php'),(3655,'wp-content/plugins/wordfence/modules/login-security/classes/model/view/title.php'),(3656,'wp-content/plugins/wordfence/modules/login-security/classes/model/view.php'),(3657,'wp-content/plugins/wordfence/modules/login-security/css/admin-global.1637598990.css'),(3658,'wp-content/plugins/wordfence/modules/login-security/css/admin.1637598990.css'),(3659,'wp-content/plugins/wordfence/modules/login-security/css/colorbox.1637598990.css'),(3660,'wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1637598990.css'),(3661,'wp-content/plugins/wordfence/modules/login-security/css/ionicons.1637598990.css'),(3662,'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1637598990.css'),(3663,'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1637598990.css'),(3664,'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1637598990.css'),(3665,'wp-content/plugins/wordfence/modules/login-security/css/login.1637598990.css'),(3666,'wp-content/plugins/wordfence/modules/login-security/img/header.svg'),(3667,'wp-content/plugins/wordfence/modules/login-security/img/lightbox-controls.png'),(3668,'wp-content/plugins/wordfence/modules/login-security/img/loading.gif'),(3669,'wp-content/plugins/wordfence/modules/login-security/img/loading_background.png'),(3670,'wp-content/plugins/wordfence/modules/login-security/img/menu.svg'),(3671,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_444444_256x240.png'),(3672,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png'),(3673,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png'),(3674,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png'),(3675,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_cc0000_256x240.png'),(3676,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png'),(3677,'wp-content/plugins/wordfence/modules/login-security/js/admin-global.1637598990.js'),(3678,'wp-content/plugins/wordfence/modules/login-security/js/admin.1637598990.js'),(3679,'wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1637598990.js'),(3680,'wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1637598990.js'),(3681,'wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1637598990.js'),(3682,'wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1637598990.js'),(3683,'wp-content/plugins/wordfence/modules/login-security/js/login.1637598990.js'),(3684,'wp-content/plugins/wordfence/modules/login-security/views/.htaccess'),(3685,'wp-content/plugins/wordfence/modules/login-security/views/common/modal-prompt.php'),(3686,'wp-content/plugins/wordfence/modules/login-security/views/common/reset-grace-period.php'),(3687,'wp-content/plugins/wordfence/modules/login-security/views/common/revoke-grace-period.php'),(3688,'wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php'),(3689,'wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php'),(3690,'wp-content/plugins/wordfence/modules/login-security/views/manage/code.php'),(3691,'wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php'),(3692,'wp-content/plugins/wordfence/modules/login-security/views/manage/grace-period.php'),(3693,'wp-content/plugins/wordfence/modules/login-security/views/manage/regenerate.php'),(3694,'wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php'),(3695,'wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php'),(3696,'wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha.php'),(3697,'wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php'),(3698,'wp-content/plugins/wordfence/modules/login-security/views/options/option-label.php'),(3699,'wp-content/plugins/wordfence/modules/login-security/views/options/option-ntp.php'),(3700,'wp-content/plugins/wordfence/modules/login-security/views/options/option-roles.php'),(3701,'wp-content/plugins/wordfence/modules/login-security/views/options/option-select.php'),(3702,'wp-content/plugins/wordfence/modules/login-security/views/options/option-switch.php'),(3703,'wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php'),(3704,'wp-content/plugins/wordfence/modules/login-security/views/options/option-textarea.php'),(3705,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php'),(3706,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php'),(3707,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-segmented.php'),(3708,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-select.php'),(3709,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php'),(3710,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php'),(3711,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled.php'),(3712,'wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php'),(3713,'wp-content/plugins/wordfence/modules/login-security/views/page/manage.php'),(3714,'wp-content/plugins/wordfence/modules/login-security/views/page/page.php'),(3715,'wp-content/plugins/wordfence/modules/login-security/views/page/role.php'),(3716,'wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php'),(3717,'wp-content/plugins/wordfence/modules/login-security/views/page/settings.php'),(3718,'wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php'),(3719,'wp-content/plugins/wordfence/modules/login-security/views/settings/options.php'),(3720,'wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php'),(3721,'wp-content/plugins/wordfence/modules/login-security/views/user/grace-period-toggle.php'),(3722,'wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php'),(3723,'wp-content/plugins/wordfence/readme.txt'),(3724,'wp-content/plugins/wordfence/tmp/.htaccess'),(3725,'wp-content/plugins/wordfence/vendor/.htaccess'),(3726,'wp-content/plugins/wordfence/vendor/autoload.php'),(3727,'wp-content/plugins/wordfence/vendor/composer/ClassLoader.php'),(3728,'wp-content/plugins/wordfence/vendor/composer/LICENSE'),(3729,'wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php'),(3730,'wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php'),(3731,'wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php'),(3732,'wp-content/plugins/wordfence/vendor/composer/autoload_real.php'),(3733,'wp-content/plugins/wordfence/vendor/composer/autoload_static.php'),(3734,'wp-content/plugins/wordfence/vendor/composer/ca-bundle/LICENSE'),(3735,'wp-content/plugins/wordfence/vendor/composer/ca-bundle/res/cacert.pem'),(3736,'wp-content/plugins/wordfence/vendor/composer/ca-bundle/src/CaBundle.php'),(3737,'wp-content/plugins/wordfence/vendor/composer/installed.json'),(3738,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/.gitmodules'),(3739,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/.php_cs'),(3740,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/LICENSE'),(3741,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Database/Reader.php'),(3742,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php'),(3743,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AuthenticationException.php'),(3744,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/GeoIp2Exception.php'),(3745,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/HttpException.php'),(3746,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php'),(3747,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php'),(3748,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AbstractModel.php'),(3749,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AnonymousIp.php'),(3750,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Asn.php'),(3751,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/City.php'),(3752,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/ConnectionType.php'),(3753,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Country.php'),(3754,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Domain.php'),(3755,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Enterprise.php'),(3756,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Insights.php'),(3757,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Isp.php'),(3758,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/ProviderInterface.php'),(3759,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractPlaceRecord.php'),(3760,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractRecord.php'),(3761,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/City.php'),(3762,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Continent.php'),(3763,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Country.php'),(3764,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Location.php'),(3765,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/MaxMind.php'),(3766,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Postal.php'),(3767,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/RepresentedCountry.php'),(3768,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Subdivision.php'),(3769,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Traits.php'),(3770,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/WebService/Client.php'),(3771,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/LICENSE'),(3772,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/AuthenticationException.php'),(3773,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/HttpException.php'),(3774,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InsufficientFundsException.php'),(3775,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidInputException.php'),(3776,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidRequestException.php'),(3777,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php'),(3778,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/PermissionRequiredException.php'),(3779,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/WebServiceException.php'),(3780,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Client.php'),(3781,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/CurlRequest.php'),(3782,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/Request.php'),(3783,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/RequestFactory.php'),(3784,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/LICENSE'),(3785,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/autoload.php'),(3786,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php'),(3787,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php'),(3788,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php'),(3789,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php'),(3790,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php'),(3791,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem'),(3792,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key'),(3793,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php'),(3794,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php'),(3795,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php'),(3796,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/i18n.php'),(3797,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php'),(3798,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php'),(3799,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php'),(3800,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php'),(3801,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php'),(3802,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php'),(3803,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php'),(3804,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php'),(3805,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php'),(3806,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php'),(3807,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php'),(3808,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php'),(3809,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php'),(3810,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key'),(3811,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php'),(3812,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php'),(3813,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php'),(3814,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php'),(3815,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php'),(3816,'wp-content/plugins/wordfence/views/.htaccess'),(3817,'wp-content/plugins/wordfence/views/blocking/block-list.php'),(3818,'wp-content/plugins/wordfence/views/blocking/blocking-create.php'),(3819,'wp-content/plugins/wordfence/views/blocking/blocking-status.php'),(3820,'wp-content/plugins/wordfence/views/blocking/country-block-map.php'),(3821,'wp-content/plugins/wordfence/views/blocking/country-modal.php'),(3822,'wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php'),(3823,'wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php'),(3824,'wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php'),(3825,'wp-content/plugins/wordfence/views/common/block-navigation-option.php'),(3826,'wp-content/plugins/wordfence/views/common/indeterminate-progress.php'),(3827,'wp-content/plugins/wordfence/views/common/license.php'),(3828,'wp-content/plugins/wordfence/views/common/modal-prompt.php'),(3829,'wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php'),(3830,'wp-content/plugins/wordfence/views/common/page-help.php'),(3831,'wp-content/plugins/wordfence/views/common/page-tabbar.php'),(3832,'wp-content/plugins/wordfence/views/common/page-title.php'),(3833,'wp-content/plugins/wordfence/views/common/section-subtitle.php'),(3834,'wp-content/plugins/wordfence/views/common/section-title.php'),(3835,'wp-content/plugins/wordfence/views/common/status-circular.php'),(3836,'wp-content/plugins/wordfence/views/common/status-critical.php'),(3837,'wp-content/plugins/wordfence/views/common/status-detail.php'),(3838,'wp-content/plugins/wordfence/views/common/status-tooltip.php'),(3839,'wp-content/plugins/wordfence/views/common/status-warning.php'),(3840,'wp-content/plugins/wordfence/views/common/unsubscribe.php'),(3841,'wp-content/plugins/wordfence/views/dashboard/global-status.php'),(3842,'wp-content/plugins/wordfence/views/dashboard/option-howgetips.php'),(3843,'wp-content/plugins/wordfence/views/dashboard/options-group-alert.php'),(3844,'wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php'),(3845,'wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php'),(3846,'wp-content/plugins/wordfence/views/dashboard/options-group-general.php'),(3847,'wp-content/plugins/wordfence/views/dashboard/options-group-import.php'),(3848,'wp-content/plugins/wordfence/views/dashboard/options-group-license.php'),(3849,'wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php'),(3850,'wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php'),(3851,'wp-content/plugins/wordfence/views/dashboard/status-renewing.php'),(3852,'wp-content/plugins/wordfence/views/diagnostics/text.php'),(3853,'wp-content/plugins/wordfence/views/gdpr/banner.php'),(3854,'wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php'),(3855,'wp-content/plugins/wordfence/views/onboarding/banner.php'),(3856,'wp-content/plugins/wordfence/views/onboarding/disabled-overlay.php'),(3857,'wp-content/plugins/wordfence/views/onboarding/fresh-install.php'),(3858,'wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php'),(3859,'wp-content/plugins/wordfence/views/onboarding/overlay.php'),(3860,'wp-content/plugins/wordfence/views/onboarding/plugin-header.php'),(3861,'wp-content/plugins/wordfence/views/onboarding/tour-overlay.php'),(3862,'wp-content/plugins/wordfence/views/options/block-all-options-controls.php'),(3863,'wp-content/plugins/wordfence/views/options/block-controls.php'),(3864,'wp-content/plugins/wordfence/views/options/option-label.php'),(3865,'wp-content/plugins/wordfence/views/options/option-select.php'),(3866,'wp-content/plugins/wordfence/views/options/option-switch.php'),(3867,'wp-content/plugins/wordfence/views/options/option-text.php'),(3868,'wp-content/plugins/wordfence/views/options/option-textarea.php'),(3869,'wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php'),(3870,'wp-content/plugins/wordfence/views/options/option-toggled-multiple.php'),(3871,'wp-content/plugins/wordfence/views/options/option-toggled-segmented.php'),(3872,'wp-content/plugins/wordfence/views/options/option-toggled-select.php'),(3873,'wp-content/plugins/wordfence/views/options/option-toggled-sub.php'),(3874,'wp-content/plugins/wordfence/views/options/option-toggled-textarea.php'),(3875,'wp-content/plugins/wordfence/views/options/option-toggled.php'),(3876,'wp-content/plugins/wordfence/views/options/option-token.php'),(3877,'wp-content/plugins/wordfence/views/options/options-title.php'),(3878,'wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php'),(3879,'wp-content/plugins/wordfence/views/reports/activity-report.php'),(3880,'wp-content/plugins/wordfence/views/scanner/issue-base.php'),(3881,'wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php'),(3882,'wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php'),(3883,'wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php'),(3884,'wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php'),(3885,'wp-content/plugins/wordfence/views/scanner/issue-configReadable.php'),(3886,'wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php'),(3887,'wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php'),(3888,'wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php'),(3889,'wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php'),(3890,'wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php'),(3891,'wp-content/plugins/wordfence/views/scanner/issue-control-repair.php'),(3892,'wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php'),(3893,'wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php'),(3894,'wp-content/plugins/wordfence/views/scanner/issue-database.php'),(3895,'wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php'),(3896,'wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php'),(3897,'wp-content/plugins/wordfence/views/scanner/issue-file.php'),(3898,'wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php'),(3899,'wp-content/plugins/wordfence/views/scanner/issue-knownfile.php'),(3900,'wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php'),(3901,'wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php'),(3902,'wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php'),(3903,'wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php'),(3904,'wp-content/plugins/wordfence/views/scanner/issue-skippedPaths.php'),(3905,'wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php'),(3906,'wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php'),(3907,'wp-content/plugins/wordfence/views/scanner/issue-timelimit.php'),(3908,'wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php'),(3909,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php'),(3910,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php'),(3911,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php'),(3912,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php'),(3913,'wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php'),(3914,'wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php'),(3915,'wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php'),(3916,'wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php'),(3917,'wp-content/plugins/wordfence/views/scanner/no-issues.php'),(3918,'wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php'),(3919,'wp-content/plugins/wordfence/views/scanner/options-group-advanced.php'),(3920,'wp-content/plugins/wordfence/views/scanner/options-group-basic.php'),(3921,'wp-content/plugins/wordfence/views/scanner/options-group-general.php'),(3922,'wp-content/plugins/wordfence/views/scanner/options-group-performance.php'),(3923,'wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php'),(3924,'wp-content/plugins/wordfence/views/scanner/scan-failed.php'),(3925,'wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php'),(3926,'wp-content/plugins/wordfence/views/scanner/scan-progress-element.php'),(3927,'wp-content/plugins/wordfence/views/scanner/scan-progress.php'),(3928,'wp-content/plugins/wordfence/views/scanner/scan-results.php'),(3929,'wp-content/plugins/wordfence/views/scanner/scan-scheduling.php'),(3930,'wp-content/plugins/wordfence/views/scanner/scan-starter.php'),(3931,'wp-content/plugins/wordfence/views/scanner/scan-type.php'),(3932,'wp-content/plugins/wordfence/views/scanner/scanner-status.php'),(3933,'wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php'),(3934,'wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php'),(3935,'wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php'),(3936,'wp-content/plugins/wordfence/views/scanner/site-cleaning.php'),(3937,'wp-content/plugins/wordfence/views/tools/options-group-2fa.php'),(3938,'wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php'),(3939,'wp-content/plugins/wordfence/views/tours/login-security.php'),(3940,'wp-content/plugins/wordfence/views/unsupported-php/admin-message.php'),(3941,'wp-content/plugins/wordfence/views/waf/debug.php'),(3942,'wp-content/plugins/wordfence/views/waf/firewall-status.php'),(3943,'wp-content/plugins/wordfence/views/waf/option-rate-limit.php'),(3944,'wp-content/plugins/wordfence/views/waf/option-rules.php'),(3945,'wp-content/plugins/wordfence/views/waf/option-whitelist.php'),(3946,'wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php'),(3947,'wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php'),(3948,'wp-content/plugins/wordfence/views/waf/options-group-brute-force.php'),(3949,'wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php'),(3950,'wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php'),(3951,'wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php'),(3952,'wp-content/plugins/wordfence/views/waf/waf-install-manual.php'),(3953,'wp-content/plugins/wordfence/views/waf/waf-install-success.php'),(3954,'wp-content/plugins/wordfence/views/waf/waf-install.php'),(3955,'wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php'),(3956,'wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php'),(3957,'wp-content/plugins/wordfence/views/waf/waf-uninstall.php'),(3958,'wp-content/plugins/wordfence/waf/.htaccess'),(3959,'wp-content/plugins/wordfence/waf/bootstrap.php'),(3960,'wp-content/plugins/wordfence/waf/pomo/entry.php'),(3961,'wp-content/plugins/wordfence/waf/pomo/mo.php'),(3962,'wp-content/plugins/wordfence/waf/pomo/plural-forms.php'),(3963,'wp-content/plugins/wordfence/waf/pomo/po.php'),(3964,'wp-content/plugins/wordfence/waf/pomo/streams.php'),(3965,'wp-content/plugins/wordfence/waf/pomo/translations.php'),(3966,'wp-content/plugins/wordfence/waf/wfWAFGeoIP2.php'),(3967,'wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php'),(3968,'wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php'),(3969,'wp-content/plugins/wordfence/wordfence.php'),(3970,'wp-content/plugins/worker/functions.php'),(3971,'wp-content/plugins/worker/index.php'),(3972,'wp-content/plugins/worker/init.php'),(3973,'wp-content/plugins/worker/publickeys/godaddy_g2_root.cer'),(3974,'wp-content/plugins/worker/publickeys/index.php'),(3975,'wp-content/plugins/worker/publickeys/managewp.pub'),(3976,'wp-content/plugins/worker/publickeys/managewp_d.pub'),(3977,'wp-content/plugins/worker/publickeys/managewp_t.pub'),(3978,'wp-content/plugins/worker/publickeys/partner1.pub'),(3979,'wp-content/plugins/worker/publickeys/partner10.pub'),(3980,'wp-content/plugins/worker/publickeys/partner11.pub'),(3981,'wp-content/plugins/worker/publickeys/partner12.pub'),(3982,'wp-content/plugins/worker/publickeys/partner13.pub'),(3983,'wp-content/plugins/worker/publickeys/partner14.pub'),(3984,'wp-content/plugins/worker/publickeys/partner15.pub'),(3985,'wp-content/plugins/worker/publickeys/partner16.pub'),(3986,'wp-content/plugins/worker/publickeys/partner17.pub'),(3987,'wp-content/plugins/worker/publickeys/partner2.pub'),(3988,'wp-content/plugins/worker/publickeys/partner3.pub'),(3989,'wp-content/plugins/worker/publickeys/partner4.pub'),(3990,'wp-content/plugins/worker/publickeys/partner5.pub'),(3991,'wp-content/plugins/worker/publickeys/partner6.pub'),(3992,'wp-content/plugins/worker/publickeys/partner7.pub'),(3993,'wp-content/plugins/worker/publickeys/partner8.pub'),(3994,'wp-content/plugins/worker/publickeys/partner9.pub'),(3995,'wp-content/plugins/worker/readme.txt'),(3996,'wp-content/plugins/worker/src/Gelf/Message.php'),(3997,'wp-content/plugins/worker/src/Gelf/Publisher.php'),(3998,'wp-content/plugins/worker/src/Gelf/index.php'),(3999,'wp-content/plugins/worker/src/LICENSE'),(4000,'wp-content/plugins/worker/src/MMB/Comment.php'),(4001,'wp-content/plugins/worker/src/MMB/Core.php'),(4002,'wp-content/plugins/worker/src/MMB/Installer.php'),(4003,'wp-content/plugins/worker/src/MMB/Stats.php'),(4004,'wp-content/plugins/worker/src/MMB/User.php'),(4005,'wp-content/plugins/worker/src/MMB/index.php'),(4006,'wp-content/plugins/worker/src/MWP/Action/Abstract.php'),(4007,'wp-content/plugins/worker/src/MWP/Action/ClearTransient.php'),(4008,'wp-content/plugins/worker/src/MWP/Action/ConnectWebsite.php'),(4009,'wp-content/plugins/worker/src/MWP/Action/Definition.php'),(4010,'wp-content/plugins/worker/src/MWP/Action/DestroySessions.php'),(4011,'wp-content/plugins/worker/src/MWP/Action/DownloadFile.php'),(4012,'wp-content/plugins/worker/src/MWP/Action/GetComponentsStats.php'),(4013,'wp-content/plugins/worker/src/MWP/Action/GetState.php'),(4014,'wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/Abstract.php'),(4015,'wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/AbstractFiles.php'),(4016,'wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/AbstractTablesAction.php'),(4017,'wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/ChecksumTables.php'),(4018,'wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/FetchFiles.php'),(4019,'wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/GetTableSchema.php'),(4020,'wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/GetViewSchema.php'),(4021,'wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/HashFiles.php'),(4022,'wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/ListFiles.php'),(4023,'wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/ListTables.php'),(4024,'wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/Stats.php'),(4025,'wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/StreamTables.php'),(4026,'wp-content/plugins/worker/src/MWP/Action/IncrementalBackup/index.php'),(4027,'wp-content/plugins/worker/src/MWP/Action/Registry.php'),(4028,'wp-content/plugins/worker/src/MWP/Action/index.php'),(4029,'wp-content/plugins/worker/src/MWP/Configuration/Conf.php'),(4030,'wp-content/plugins/worker/src/MWP/Configuration/Service.php'),(4031,'wp-content/plugins/worker/src/MWP/Configuration/index.php'),(4032,'wp-content/plugins/worker/src/MWP/Crypter/Factory.php'),(4033,'wp-content/plugins/worker/src/MWP/Crypter/Interface.php'),(4034,'wp-content/plugins/worker/src/MWP/Crypter/OpenSslCrypter.php'),(4035,'wp-content/plugins/worker/src/MWP/Crypter/PhpSecLibCrypter.php'),(4036,'wp-content/plugins/worker/src/MWP/Crypter/index.php'),(4037,'wp-content/plugins/worker/src/MWP/Debug/ErrorCatcher.php'),(4038,'wp-content/plugins/worker/src/MWP/Debug/EvalErrorHandler.php'),(4039,'wp-content/plugins/worker/src/MWP/Debug/FatalErrorException.php'),(4040,'wp-content/plugins/worker/src/MWP/Debug/index.php'),(4041,'wp-content/plugins/worker/src/MWP/Event/AbstractRequest.php'),(4042,'wp-content/plugins/worker/src/MWP/Event/ActionException.php'),(4043,'wp-content/plugins/worker/src/MWP/Event/ActionRequest.php'),(4044,'wp-content/plugins/worker/src/MWP/Event/ActionResponse.php'),(4045,'wp-content/plugins/worker/src/MWP/Event/Events.php'),(4046,'wp-content/plugins/worker/src/MWP/Event/MasterRequest.php'),(4047,'wp-content/plugins/worker/src/MWP/Event/MasterResponse.php'),(4048,'wp-content/plugins/worker/src/MWP/Event/PublicRequest.php'),(4049,'wp-content/plugins/worker/src/MWP/Event/index.php'),(4050,'wp-content/plugins/worker/src/MWP/EventListener/ActionException/MultipartException.php'),(4051,'wp-content/plugins/worker/src/MWP/EventListener/ActionException/SetExceptionData.php'),(4052,'wp-content/plugins/worker/src/MWP/EventListener/ActionException/index.php'),(4053,'wp-content/plugins/worker/src/MWP/EventListener/ActionRequest/LogRequest.php'),(4054,'wp-content/plugins/worker/src/MWP/EventListener/ActionRequest/SetSettings.php'),(4055,'wp-content/plugins/worker/src/MWP/EventListener/ActionRequest/VerifyNonce.php'),(4056,'wp-content/plugins/worker/src/MWP/EventListener/ActionRequest/index.php'),(4057,'wp-content/plugins/worker/src/MWP/EventListener/ActionResponse/ChainState.php'),(4058,'wp-content/plugins/worker/src/MWP/EventListener/ActionResponse/DownloadFile.php'),(4059,'wp-content/plugins/worker/src/MWP/EventListener/ActionResponse/FetchFiles.php'),(4060,'wp-content/plugins/worker/src/MWP/EventListener/ActionResponse/SetActionData.php'),(4061,'wp-content/plugins/worker/src/MWP/EventListener/ActionResponse/SetLegacyPhpExecutionData.php'),(4062,'wp-content/plugins/worker/src/MWP/EventListener/ActionResponse/SetLegacyWebsiteConnectionData.php'),(4063,'wp-content/plugins/worker/src/MWP/EventListener/ActionResponse/SetUpdaterLog.php'),(4064,'wp-content/plugins/worker/src/MWP/EventListener/ActionResponse/index.php'),(4065,'wp-content/plugins/worker/src/MWP/EventListener/EncodeMasterResponse.php'),(4066,'wp-content/plugins/worker/src/MWP/EventListener/FixCompatibility.php'),(4067,'wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/AttachJsonMessageHandler.php'),(4068,'wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/AuthenticateLegacyRequest.php'),(4069,'wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/AuthenticateRequest.php'),(4070,'wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/AuthenticateServiceRequest.php'),(4071,'wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/RemoveUsernameParam.php'),(4072,'wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/SetCurrentUser.php'),(4073,'wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/SetErrorHandler.php'),(4074,'wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/SetRequestSettings.php'),(4075,'wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/VerifyConnectionInfo.php'),(4076,'wp-content/plugins/worker/src/MWP/EventListener/MasterRequest/index.php'),(4077,'wp-content/plugins/worker/src/MWP/EventListener/MasterResponse/LogResponse.php'),(4078,'wp-content/plugins/worker/src/MWP/EventListener/MasterResponse/index.php'),(4079,'wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/AddConnectionKeyInfo.php'),(4080,'wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/AddStatusPage.php'),(4081,'wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/AutomaticLogin.php'),(4082,'wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/BrandContactSupport.php'),(4083,'wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/CommandListener.php'),(4084,'wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/DisableEditor.php'),(4085,'wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/SetHitCounter.php'),(4086,'wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/SetPluginInfo.php'),(4087,'wp-content/plugins/worker/src/MWP/EventListener/PublicRequest/index.php'),(4088,'wp-content/plugins/worker/src/MWP/EventListener/index.php'),(4089,'wp-content/plugins/worker/src/MWP/Extension/HitCounter.php'),(4090,'wp-content/plugins/worker/src/MWP/Extension/index.php'),(4091,'wp-content/plugins/worker/src/MWP/FileManager/Model/DownloadFilesResult.php'),(4092,'wp-content/plugins/worker/src/MWP/FileManager/Model/Files.php'),(4093,'wp-content/plugins/worker/src/MWP/FileManager/Model/index.php'),(4094,'wp-content/plugins/worker/src/MWP/FileManager/index.php'),(4095,'wp-content/plugins/worker/src/MWP/Http/JsonResponse.php'),(4096,'wp-content/plugins/worker/src/MWP/Http/LegacyWorkerResponse.php'),(4097,'wp-content/plugins/worker/src/MWP/Http/MultipartResponse.php'),(4098,'wp-content/plugins/worker/src/MWP/Http/MultipartResponsePart.php'),(4099,'wp-content/plugins/worker/src/MWP/Http/RedirectResponse.php'),(4100,'wp-content/plugins/worker/src/MWP/Http/Response.php'),(4101,'wp-content/plugins/worker/src/MWP/Http/ResponseInterface.php'),(4102,'wp-content/plugins/worker/src/MWP/Http/StreamingResponse.php'),(4103,'wp-content/plugins/worker/src/MWP/Http/StreamingResponseInterface.php'),(4104,'wp-content/plugins/worker/src/MWP/Http/index.php'),(4105,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/Configuration.php'),(4106,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/ConnectionInterface.php'),(4107,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/DumpOptions.php'),(4108,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/DumperInterface.php'),(4109,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/Exception/ConnectionException.php'),(4110,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/Exception/index.php'),(4111,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/Exception.php'),(4112,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/MysqlConnection.php'),(4113,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/MysqlDumpDumper.php'),(4114,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/MysqlStatement.php'),(4115,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/MysqliConnection.php'),(4116,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/MysqliStatement.php'),(4117,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/PdoConnection.php'),(4118,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/PdoStatement.php'),(4119,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/PhpDumper.php'),(4120,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/StatementInterface.php'),(4121,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/StreamableQuerySequenceDump.php'),(4122,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Database/index.php'),(4123,'wp-content/plugins/worker/src/MWP/IncrementalBackup/FileReader.php'),(4124,'wp-content/plugins/worker/src/MWP/IncrementalBackup/HashComputer.php'),(4125,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Model/FetchFilesResult.php'),(4126,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Model/File.php'),(4127,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Model/ServerStatistics.php'),(4128,'wp-content/plugins/worker/src/MWP/IncrementalBackup/Model/index.php'),(4129,'wp-content/plugins/worker/src/MWP/IncrementalBackup/index.php'),(4130,'wp-content/plugins/worker/src/MWP/Migration/Migration.php'),(4131,'wp-content/plugins/worker/src/MWP/Migration/index.php'),(4132,'wp-content/plugins/worker/src/MWP/Monolog/Handler/JsonMessageHandler.php'),(4133,'wp-content/plugins/worker/src/MWP/Monolog/Handler/index.php'),(4134,'wp-content/plugins/worker/src/MWP/Monolog/Processor/ExceptionProcessor.php'),(4135,'wp-content/plugins/worker/src/MWP/Monolog/Processor/ProcessProcessor.php'),(4136,'wp-content/plugins/worker/src/MWP/Monolog/Processor/RequestIdProcessor.php'),(4137,'wp-content/plugins/worker/src/MWP/Monolog/Processor/TimeUsageProcessor.php'),(4138,'wp-content/plugins/worker/src/MWP/Monolog/Processor/index.php'),(4139,'wp-content/plugins/worker/src/MWP/Monolog/index.php'),(4140,'wp-content/plugins/worker/src/MWP/Parser/DefinitionTokenizer.php'),(4141,'wp-content/plugins/worker/src/MWP/Parser/index.php'),(4142,'wp-content/plugins/worker/src/MWP/Process/ExecutableFinder.php'),(4143,'wp-content/plugins/worker/src/MWP/Process/index.php'),(4144,'wp-content/plugins/worker/src/MWP/Progress/Abstract.php'),(4145,'wp-content/plugins/worker/src/MWP/Progress/CurlCallbackInterface.php'),(4146,'wp-content/plugins/worker/src/MWP/Progress/Download.php'),(4147,'wp-content/plugins/worker/src/MWP/Progress/Upload.php'),(4148,'wp-content/plugins/worker/src/MWP/Progress/index.php'),(4149,'wp-content/plugins/worker/src/MWP/Security/Exception/NonceAlreadyUsed.php'),(4150,'wp-content/plugins/worker/src/MWP/Security/Exception/NonceExpired.php'),(4151,'wp-content/plugins/worker/src/MWP/Security/Exception/NonceFormatInvalid.php'),(4152,'wp-content/plugins/worker/src/MWP/Security/Exception/index.php'),(4153,'wp-content/plugins/worker/src/MWP/Security/HashNonce.php'),(4154,'wp-content/plugins/worker/src/MWP/Security/NonceInterface.php'),(4155,'wp-content/plugins/worker/src/MWP/Security/NonceManager.php'),(4156,'wp-content/plugins/worker/src/MWP/Security/index.php'),(4157,'wp-content/plugins/worker/src/MWP/ServiceContainer/Abstract.php'),(4158,'wp-content/plugins/worker/src/MWP/ServiceContainer/ContainerAwareInterface.php'),(4159,'wp-content/plugins/worker/src/MWP/ServiceContainer/Interface.php'),(4160,'wp-content/plugins/worker/src/MWP/ServiceContainer/Production.php'),(4161,'wp-content/plugins/worker/src/MWP/ServiceContainer/index.php'),(4162,'wp-content/plugins/worker/src/MWP/Signer/Factory.php'),(4163,'wp-content/plugins/worker/src/MWP/Signer/Interface.php'),(4164,'wp-content/plugins/worker/src/MWP/Signer/OpenSslSigner.php'),(4165,'wp-content/plugins/worker/src/MWP/Signer/PhpSecLibSigner.php'),(4166,'wp-content/plugins/worker/src/MWP/Signer/index.php'),(4167,'wp-content/plugins/worker/src/MWP/Stream/Append.php'),(4168,'wp-content/plugins/worker/src/MWP/Stream/Base64EncodedStream.php'),(4169,'wp-content/plugins/worker/src/MWP/Stream/Buffer.php'),(4170,'wp-content/plugins/worker/src/MWP/Stream/Callable.php'),(4171,'wp-content/plugins/worker/src/MWP/Stream/Decorator.php'),(4172,'wp-content/plugins/worker/src/MWP/Stream/FileLimit.php'),(4173,'wp-content/plugins/worker/src/MWP/Stream/Interface.php'),(4174,'wp-content/plugins/worker/src/MWP/Stream/LazyFile.php'),(4175,'wp-content/plugins/worker/src/MWP/Stream/Limit.php'),(4176,'wp-content/plugins/worker/src/MWP/Stream/ProcessOutput.php'),(4177,'wp-content/plugins/worker/src/MWP/Stream/Stream.php'),(4178,'wp-content/plugins/worker/src/MWP/Stream/index.php'),(4179,'wp-content/plugins/worker/src/MWP/System/Environment.php'),(4180,'wp-content/plugins/worker/src/MWP/System/Utils.php'),(4181,'wp-content/plugins/worker/src/MWP/System/index.php'),(4182,'wp-content/plugins/worker/src/MWP/Updater/AutoUpdateManager.php'),(4183,'wp-content/plugins/worker/src/MWP/Updater/CoreUpdate.php'),(4184,'wp-content/plugins/worker/src/MWP/Updater/PluginUpdate.php'),(4185,'wp-content/plugins/worker/src/MWP/Updater/ThemeUpdate.php'),(4186,'wp-content/plugins/worker/src/MWP/Updater/TraceableUpdaterSkin.php'),(4187,'wp-content/plugins/worker/src/MWP/Updater/UpdateManager.php'),(4188,'wp-content/plugins/worker/src/MWP/Updater/index.php'),(4189,'wp-content/plugins/worker/src/MWP/WordPress/Context.php'),(4190,'wp-content/plugins/worker/src/MWP/WordPress/HookProxy.php'),(4191,'wp-content/plugins/worker/src/MWP/WordPress/Provider/Interface.php'),(4192,'wp-content/plugins/worker/src/MWP/WordPress/Provider/Plugin.php'),(4193,'wp-content/plugins/worker/src/MWP/WordPress/Provider/Theme.php'),(4194,'wp-content/plugins/worker/src/MWP/WordPress/Provider/index.php'),(4195,'wp-content/plugins/worker/src/MWP/WordPress/Query/Abstract.php'),(4196,'wp-content/plugins/worker/src/MWP/WordPress/Query/Comment.php'),(4197,'wp-content/plugins/worker/src/MWP/WordPress/Query/Interface.php'),(4198,'wp-content/plugins/worker/src/MWP/WordPress/Query/Post.php'),(4199,'wp-content/plugins/worker/src/MWP/WordPress/Query/User.php'),(4200,'wp-content/plugins/worker/src/MWP/WordPress/Query/index.php'),(4201,'wp-content/plugins/worker/src/MWP/WordPress/SessionStore.php'),(4202,'wp-content/plugins/worker/src/MWP/WordPress/index.php'),(4203,'wp-content/plugins/worker/src/MWP/Worker/ActionResponse.php'),(4204,'wp-content/plugins/worker/src/MWP/Worker/Brand.php'),(4205,'wp-content/plugins/worker/src/MWP/Worker/Configuration.php'),(4206,'wp-content/plugins/worker/src/MWP/Worker/Exception.php'),(4207,'wp-content/plugins/worker/src/MWP/Worker/Kernel.php'),(4208,'wp-content/plugins/worker/src/MWP/Worker/Request.php'),(4209,'wp-content/plugins/worker/src/MWP/Worker/RequestStack.php'),(4210,'wp-content/plugins/worker/src/MWP/Worker/ResponseCallback.php'),(4211,'wp-content/plugins/worker/src/MWP/Worker/index.php'),(4212,'wp-content/plugins/worker/src/MWP/index.php'),(4213,'wp-content/plugins/worker/src/Monolog/ErrorHandler.php'),(4214,'wp-content/plugins/worker/src/Monolog/Formatter/FormatterInterface.php'),(4215,'wp-content/plugins/worker/src/Monolog/Formatter/HtmlFormatter.php'),(4216,'wp-content/plugins/worker/src/Monolog/Formatter/LegacyGelfMessageFormatter.php'),(4217,'wp-content/plugins/worker/src/Monolog/Formatter/LineFormatter.php'),(4218,'wp-content/plugins/worker/src/Monolog/Formatter/NormalizerFormatter.php'),(4219,'wp-content/plugins/worker/src/Monolog/Formatter/index.php'),(4220,'wp-content/plugins/worker/src/Monolog/Handler/AbstractHandler.php'),(4221,'wp-content/plugins/worker/src/Monolog/Handler/AbstractProcessingHandler.php'),(4222,'wp-content/plugins/worker/src/Monolog/Handler/HandlerInterface.php'),(4223,'wp-content/plugins/worker/src/Monolog/Handler/LegacyGelfHandler.php'),(4224,'wp-content/plugins/worker/src/Monolog/Handler/NullHandler.php'),(4225,'wp-content/plugins/worker/src/Monolog/Handler/StreamHandler.php'),(4226,'wp-content/plugins/worker/src/Monolog/Handler/TestHandler.php'),(4227,'wp-content/plugins/worker/src/Monolog/Handler/index.php'),(4228,'wp-content/plugins/worker/src/Monolog/Logger.php'),(4229,'wp-content/plugins/worker/src/Monolog/Processor/IntrospectionProcessor.php'),(4230,'wp-content/plugins/worker/src/Monolog/Processor/MemoryPeakUsageProcessor.php'),(4231,'wp-content/plugins/worker/src/Monolog/Processor/MemoryProcessor.php'),(4232,'wp-content/plugins/worker/src/Monolog/Processor/MemoryUsageProcessor.php'),(4233,'wp-content/plugins/worker/src/Monolog/Processor/ProcessorInterface.php'),(4234,'wp-content/plugins/worker/src/Monolog/Processor/PsrLogMessageProcessor.php'),(4235,'wp-content/plugins/worker/src/Monolog/Processor/UidProcessor.php'),(4236,'wp-content/plugins/worker/src/Monolog/Processor/WebProcessor.php'),(4237,'wp-content/plugins/worker/src/Monolog/Processor/index.php'),(4238,'wp-content/plugins/worker/src/Monolog/Psr/InvalidArgumentException.php'),(4239,'wp-content/plugins/worker/src/Monolog/Psr/LogLevel.php'),(4240,'wp-content/plugins/worker/src/Monolog/Psr/LoggerInterface.php'),(4241,'wp-content/plugins/worker/src/Monolog/Psr/index.php'),(4242,'wp-content/plugins/worker/src/Monolog/Registry.php'),(4243,'wp-content/plugins/worker/src/Monolog/index.php'),(4244,'wp-content/plugins/worker/src/PHPSecLib/Crypt/AES.php'),(4245,'wp-content/plugins/worker/src/PHPSecLib/Crypt/Base.php'),(4246,'wp-content/plugins/worker/src/PHPSecLib/Crypt/Blowfish.php'),(4247,'wp-content/plugins/worker/src/PHPSecLib/Crypt/DES.php'),(4248,'wp-content/plugins/worker/src/PHPSecLib/Crypt/Hash.php'),(4249,'wp-content/plugins/worker/src/PHPSecLib/Crypt/RC2.php'),(4250,'wp-content/plugins/worker/src/PHPSecLib/Crypt/RC4.php'),(4251,'wp-content/plugins/worker/src/PHPSecLib/Crypt/RSA.php'),(4252,'wp-content/plugins/worker/src/PHPSecLib/Crypt/Random.php'),(4253,'wp-content/plugins/worker/src/PHPSecLib/Crypt/Rijndael.php'),(4254,'wp-content/plugins/worker/src/PHPSecLib/Crypt/TripleDES.php'),(4255,'wp-content/plugins/worker/src/PHPSecLib/Crypt/Twofish.php'),(4256,'wp-content/plugins/worker/src/PHPSecLib/Crypt/index.php'),(4257,'wp-content/plugins/worker/src/PHPSecLib/File/ANSI.php'),(4258,'wp-content/plugins/worker/src/PHPSecLib/File/ASN1.php'),(4259,'wp-content/plugins/worker/src/PHPSecLib/File/X509.php'),(4260,'wp-content/plugins/worker/src/PHPSecLib/File/index.php'),(4261,'wp-content/plugins/worker/src/PHPSecLib/Math/BigInteger.php'),(4262,'wp-content/plugins/worker/src/PHPSecLib/Math/index.php'),(4263,'wp-content/plugins/worker/src/PHPSecLib/Net/SCP.php'),(4264,'wp-content/plugins/worker/src/PHPSecLib/Net/SFTP/Stream.php'),(4265,'wp-content/plugins/worker/src/PHPSecLib/Net/SFTP/index.php'),(4266,'wp-content/plugins/worker/src/PHPSecLib/Net/SFTP.php'),(4267,'wp-content/plugins/worker/src/PHPSecLib/Net/SSH1.php'),(4268,'wp-content/plugins/worker/src/PHPSecLib/Net/SSH2.php'),(4269,'wp-content/plugins/worker/src/PHPSecLib/Net/index.php'),(4270,'wp-content/plugins/worker/src/PHPSecLib/System/SSH/Agent.php'),(4271,'wp-content/plugins/worker/src/PHPSecLib/System/SSH/index.php'),(4272,'wp-content/plugins/worker/src/PHPSecLib/System/SSH_Agent.php'),(4273,'wp-content/plugins/worker/src/PHPSecLib/System/index.php'),(4274,'wp-content/plugins/worker/src/PHPSecLib/index.php'),(4275,'wp-content/plugins/worker/src/PHPSecLib/openssl.cnf'),(4276,'wp-content/plugins/worker/src/Symfony/EventDispatcher/Event.php'),(4277,'wp-content/plugins/worker/src/Symfony/EventDispatcher/EventDispatcher.php'),(4278,'wp-content/plugins/worker/src/Symfony/EventDispatcher/EventDispatcherInterface.php'),(4279,'wp-content/plugins/worker/src/Symfony/EventDispatcher/EventSubscriberInterface.php'),(4280,'wp-content/plugins/worker/src/Symfony/EventDispatcher/index.php'),(4281,'wp-content/plugins/worker/src/Symfony/Filesystem/Exception/ExceptionInterface.php'),(4282,'wp-content/plugins/worker/src/Symfony/Filesystem/Exception/FileNotFoundException.php'),(4283,'wp-content/plugins/worker/src/Symfony/Filesystem/Exception/IOException.php'),(4284,'wp-content/plugins/worker/src/Symfony/Filesystem/Exception/IOExceptionInterface.php'),(4285,'wp-content/plugins/worker/src/Symfony/Filesystem/Exception/index.php'),(4286,'wp-content/plugins/worker/src/Symfony/Filesystem/Filesystem.php'),(4287,'wp-content/plugins/worker/src/Symfony/Filesystem/FilesystemIterator.php'),(4288,'wp-content/plugins/worker/src/Symfony/Filesystem/index.php'),(4289,'wp-content/plugins/worker/src/Symfony/Process/Callback.php'),(4290,'wp-content/plugins/worker/src/Symfony/Process/Exception/ExceptionInterface.php'),(4291,'wp-content/plugins/worker/src/Symfony/Process/Exception/InvalidArgumentException.php'),(4292,'wp-content/plugins/worker/src/Symfony/Process/Exception/LogicException.php'),(4293,'wp-content/plugins/worker/src/Symfony/Process/Exception/ProcessFailedException.php'),(4294,'wp-content/plugins/worker/src/Symfony/Process/Exception/ProcessTimedOutException.php'),(4295,'wp-content/plugins/worker/src/Symfony/Process/Exception/RuntimeException.php'),(4296,'wp-content/plugins/worker/src/Symfony/Process/Exception/index.php'),(4297,'wp-content/plugins/worker/src/Symfony/Process/ExecutableFinder.php'),(4298,'wp-content/plugins/worker/src/Symfony/Process/PhpExecutableFinder.php'),(4299,'wp-content/plugins/worker/src/Symfony/Process/PhpProcess.php'),(4300,'wp-content/plugins/worker/src/Symfony/Process/Pipes/AbstractPipes.php'),(4301,'wp-content/plugins/worker/src/Symfony/Process/Pipes/PipesInterface.php'),(4302,'wp-content/plugins/worker/src/Symfony/Process/Pipes/UnixPipes.php'),(4303,'wp-content/plugins/worker/src/Symfony/Process/Pipes/WindowsPipes.php'),(4304,'wp-content/plugins/worker/src/Symfony/Process/Pipes/index.php'),(4305,'wp-content/plugins/worker/src/Symfony/Process/Process.php'),(4306,'wp-content/plugins/worker/src/Symfony/Process/ProcessBuilder.php'),(4307,'wp-content/plugins/worker/src/Symfony/Process/ProcessUtils.php'),(4308,'wp-content/plugins/worker/src/Symfony/Process/index.php'),(4309,'wp-content/plugins/worker/src/Symfony/index.php'),(4310,'wp-content/plugins/worker/src/index.php'),(4311,'wp-content/plugins/worker/version'),(4312,'wp-content/plugins/worker/worker.json'),(4313,'wp-content/plugins/wp-mail-smtp/assets/css/admin-bar.min.css'),(4314,'wp-content/plugins/wp-mail-smtp/assets/css/admin-notifications.min.css'),(4315,'wp-content/plugins/wp-mail-smtp/assets/css/admin-site-health.min.css'),(4316,'wp-content/plugins/wp-mail-smtp/assets/css/dashboard-widget.min.css'),(4317,'wp-content/plugins/wp-mail-smtp/assets/css/emails/summary-report-email.css'),(4318,'wp-content/plugins/wp-mail-smtp/assets/css/smtp-about.min.css'),(4319,'wp-content/plugins/wp-mail-smtp/assets/css/smtp-admin.min.css'),(4320,'wp-content/plugins/wp-mail-smtp/assets/css/vendor/flatpickr.min.css'),(4321,'wp-content/plugins/wp-mail-smtp/assets/images/about/icon-full.svg'),(4322,'wp-content/plugins/wp-mail-smtp/assets/images/about/icon-none.svg'),(4323,'wp-content/plugins/wp-mail-smtp/assets/images/about/icon-partial.svg'),(4324,'wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-aioseo.png'),(4325,'wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-mi.png'),(4326,'wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-om.png'),(4327,'wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-pushengage.png'),(4328,'wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-rp.png'),(4329,'wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-seedprod.png'),(4330,'wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-smash-balloon-facebook-feeds.png'),(4331,'wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-smash-balloon-instagram-feeds.png'),(4332,'wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-smash-balloon-twitter-feeds.png'),(4333,'wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-smash-balloon-youtube-feeds.png'),(4334,'wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-trustpulse.png'),(4335,'wp-content/plugins/wp-mail-smtp/assets/images/about/plugin-wpf.png'),(4336,'wp-content/plugins/wp-mail-smtp/assets/images/about/team.jpg'),(4337,'wp-content/plugins/wp-mail-smtp/assets/images/dash-widget/smtp/delivered.svg'),(4338,'wp-content/plugins/wp-mail-smtp/assets/images/dash-widget/smtp/sent.svg'),(4339,'wp-content/plugins/wp-mail-smtp/assets/images/dash-widget/smtp/total.svg'),(4340,'wp-content/plugins/wp-mail-smtp/assets/images/dash-widget/smtp/unsent.svg'),(4341,'wp-content/plugins/wp-mail-smtp/assets/images/dash-widget/wp/delivered.svg'),(4342,'wp-content/plugins/wp-mail-smtp/assets/images/dash-widget/wp/sent.svg'),(4343,'wp-content/plugins/wp-mail-smtp/assets/images/dash-widget/wp/total.svg'),(4344,'wp-content/plugins/wp-mail-smtp/assets/images/dash-widget/wp/unsent.svg'),(4345,'wp-content/plugins/wp-mail-smtp/assets/images/dash-widget/yes-green.svg'),(4346,'wp-content/plugins/wp-mail-smtp/assets/images/email/icon-check.png'),(4347,'wp-content/plugins/wp-mail-smtp/assets/images/email/illustration-success.svg'),(4348,'wp-content/plugins/wp-mail-smtp/assets/images/email/signature.png'),(4349,'wp-content/plugins/wp-mail-smtp/assets/images/email/wp-mail-smtp-whitelabel.png'),(4350,'wp-content/plugins/wp-mail-smtp/assets/images/email/wp-mail-smtp.png'),(4351,'wp-content/plugins/wp-mail-smtp/assets/images/email-reports/screenshot-01.png'),(4352,'wp-content/plugins/wp-mail-smtp/assets/images/email-reports/screenshot-02.png'),(4353,'wp-content/plugins/wp-mail-smtp/assets/images/email-reports/screenshot-03.png'),(4354,'wp-content/plugins/wp-mail-smtp/assets/images/email-reports/thumbnail-01.png'),(4355,'wp-content/plugins/wp-mail-smtp/assets/images/email-reports/thumbnail-02.png'),(4356,'wp-content/plugins/wp-mail-smtp/assets/images/email-reports/thumbnail-03.png'),(4357,'wp-content/plugins/wp-mail-smtp/assets/images/flyout-menu/facebook.svg'),(4358,'wp-content/plugins/wp-mail-smtp/assets/images/flyout-menu/life-ring.svg'),(4359,'wp-content/plugins/wp-mail-smtp/assets/images/flyout-menu/lightbulb.svg'),(4360,'wp-content/plugins/wp-mail-smtp/assets/images/flyout-menu/mascot.svg'),(4361,'wp-content/plugins/wp-mail-smtp/assets/images/flyout-menu/star.svg'),(4362,'wp-content/plugins/wp-mail-smtp/assets/images/font-awesome/check-circle-solid-green.svg'),(4363,'wp-content/plugins/wp-mail-smtp/assets/images/font-awesome/exclamation-circle-regular-red.svg'),(4364,'wp-content/plugins/wp-mail-smtp/assets/images/font-awesome/exclamation-circle-solid-orange.svg'),(4365,'wp-content/plugins/wp-mail-smtp/assets/images/font-awesome/exclamation-circle-solid-red.svg'),(4366,'wp-content/plugins/wp-mail-smtp/assets/images/font-awesome/info-circle-blue.svg'),(4367,'wp-content/plugins/wp-mail-smtp/assets/images/icons/check-solid.svg'),(4368,'wp-content/plugins/wp-mail-smtp/assets/images/icons/dashicons/dashicons-pdf-grey.svg'),(4369,'wp-content/plugins/wp-mail-smtp/assets/images/icons/dashicons/dashicons-yes-alt-green.svg'),(4370,'wp-content/plugins/wp-mail-smtp/assets/images/icons/error.svg'),(4371,'wp-content/plugins/wp-mail-smtp/assets/images/icons/success.svg'),(4372,'wp-content/plugins/wp-mail-smtp/assets/images/icons/warning.svg'),(4373,'wp-content/plugins/wp-mail-smtp/assets/images/icons/zoom.svg'),(4374,'wp-content/plugins/wp-mail-smtp/assets/images/loaders/loading-blue.svg'),(4375,'wp-content/plugins/wp-mail-smtp/assets/images/loaders/loading-white.svg'),(4376,'wp-content/plugins/wp-mail-smtp/assets/images/loaders/loading.svg'),(4377,'wp-content/plugins/wp-mail-smtp/assets/images/logo-whitelabel.svg'),(4378,'wp-content/plugins/wp-mail-smtp/assets/images/logo.svg'),(4379,'wp-content/plugins/wp-mail-smtp/assets/images/logs/archive-thumbnail.png'),(4380,'wp-content/plugins/wp-mail-smtp/assets/images/logs/archive.png'),(4381,'wp-content/plugins/wp-mail-smtp/assets/images/logs/single-thumbnail.png'),(4382,'wp-content/plugins/wp-mail-smtp/assets/images/logs/single.png'),(4383,'wp-content/plugins/wp-mail-smtp/assets/images/menu-icon.svg'),(4384,'wp-content/plugins/wp-mail-smtp/assets/images/pattie.svg'),(4385,'wp-content/plugins/wp-mail-smtp/assets/images/pro-badge-small.svg'),(4386,'wp-content/plugins/wp-mail-smtp/assets/images/pro-badge.svg'),(4387,'wp-content/plugins/wp-mail-smtp/assets/images/providers/aws.svg'),(4388,'wp-content/plugins/wp-mail-smtp/assets/images/providers/google.svg'),(4389,'wp-content/plugins/wp-mail-smtp/assets/images/providers/mailgun.svg'),(4390,'wp-content/plugins/wp-mail-smtp/assets/images/providers/microsoft.svg'),(4391,'wp-content/plugins/wp-mail-smtp/assets/images/providers/pepipost-smtp.png'),(4392,'wp-content/plugins/wp-mail-smtp/assets/images/providers/pepipost.png'),(4393,'wp-content/plugins/wp-mail-smtp/assets/images/providers/php.svg'),(4394,'wp-content/plugins/wp-mail-smtp/assets/images/providers/postmark.svg'),(4395,'wp-content/plugins/wp-mail-smtp/assets/images/providers/sendgrid.svg'),(4396,'wp-content/plugins/wp-mail-smtp/assets/images/providers/sendinblue.svg'),(4397,'wp-content/plugins/wp-mail-smtp/assets/images/providers/smtp-com.svg'),(4398,'wp-content/plugins/wp-mail-smtp/assets/images/providers/smtp.svg'),(4399,'wp-content/plugins/wp-mail-smtp/assets/images/providers/sparkpost.svg'),(4400,'wp-content/plugins/wp-mail-smtp/assets/images/providers/zoho.svg'),(4401,'wp-content/plugins/wp-mail-smtp/assets/images/recommended.svg'),(4402,'wp-content/plugins/wp-mail-smtp/assets/images/reports/email/icon-arrow-down.png'),(4403,'wp-content/plugins/wp-mail-smtp/assets/images/reports/email/icon-arrow-up.png'),(4404,'wp-content/plugins/wp-mail-smtp/assets/images/reports/email/icon-check-gray.png'),(4405,'wp-content/plugins/wp-mail-smtp/assets/images/reports/email/icon-check.png'),(4406,'wp-content/plugins/wp-mail-smtp/assets/images/reports/email/icon-click.png'),(4407,'wp-content/plugins/wp-mail-smtp/assets/images/reports/email/icon-email.png'),(4408,'wp-content/plugins/wp-mail-smtp/assets/images/reports/email/icon-error.png'),(4409,'wp-content/plugins/wp-mail-smtp/assets/images/reports/email/icon-open.png'),(4410,'wp-content/plugins/wp-mail-smtp/assets/images/reports/email/wp-mail-smtp-logo-dark-whitelabel.png'),(4411,'wp-content/plugins/wp-mail-smtp/assets/images/reports/email/wp-mail-smtp-logo-dark.png'),(4412,'wp-content/plugins/wp-mail-smtp/assets/images/reports/email/wp-mail-smtp-logo-whitelabel.png'),(4413,'wp-content/plugins/wp-mail-smtp/assets/images/reports/email/wp-mail-smtp-logo.png'),(4414,'wp-content/plugins/wp-mail-smtp/assets/images/reports/icon-note.png'),(4415,'wp-content/plugins/wp-mail-smtp/assets/images/wp-spinner.gif'),(4416,'wp-content/plugins/wp-mail-smtp/assets/js/connect.js'),(4417,'wp-content/plugins/wp-mail-smtp/assets/js/connect.min.js'),(4418,'wp-content/plugins/wp-mail-smtp/assets/js/smtp-about.js'),(4419,'wp-content/plugins/wp-mail-smtp/assets/js/smtp-about.min.js'),(4420,'wp-content/plugins/wp-mail-smtp/assets/js/smtp-admin.js'),(4421,'wp-content/plugins/wp-mail-smtp/assets/js/smtp-admin.min.js'),(4422,'wp-content/plugins/wp-mail-smtp/assets/js/smtp-dashboard-widget.js'),(4423,'wp-content/plugins/wp-mail-smtp/assets/js/smtp-dashboard-widget.min.js'),(4424,'wp-content/plugins/wp-mail-smtp/assets/js/smtp-notifications.js'),(4425,'wp-content/plugins/wp-mail-smtp/assets/js/smtp-notifications.min.js'),(4426,'wp-content/plugins/wp-mail-smtp/assets/js/smtp-tools-debug-events.js'),(4427,'wp-content/plugins/wp-mail-smtp/assets/js/smtp-tools-debug-events.min.js'),(4428,'wp-content/plugins/wp-mail-smtp/assets/js/vendor/chart.min.js'),(4429,'wp-content/plugins/wp-mail-smtp/assets/js/vendor/flatpickr.min.js'),(4430,'wp-content/plugins/wp-mail-smtp/assets/js/vendor/jquery.matchHeight.js'),(4431,'wp-content/plugins/wp-mail-smtp/assets/js/vendor/jquery.matchHeight.min.js'),(4432,'wp-content/plugins/wp-mail-smtp/assets/js/vendor/moment.min.js'),(4433,'wp-content/plugins/wp-mail-smtp/assets/languages/wp-mail-smtp-vue.php'),(4434,'wp-content/plugins/wp-mail-smtp/assets/languages/wp-mail-smtp.pot'),(4435,'wp-content/plugins/wp-mail-smtp/assets/libs/jquery-confirm.min.css'),(4436,'wp-content/plugins/wp-mail-smtp/assets/libs/jquery-confirm.min.js'),(4437,'wp-content/plugins/wp-mail-smtp/assets/libs/lity/lity.min.css'),(4438,'wp-content/plugins/wp-mail-smtp/assets/libs/lity/lity.min.js'),(4439,'wp-content/plugins/wp-mail-smtp/assets/vue/css/wizard.min.css'),(4440,'wp-content/plugins/wp-mail-smtp/assets/vue/css/wizard.rtl.min.css'),(4441,'wp-content/plugins/wp-mail-smtp/assets/vue/img/amazonses.svg'),(4442,'wp-content/plugins/wp-mail-smtp/assets/vue/img/arrow.svg'),(4443,'wp-content/plugins/wp-mail-smtp/assets/vue/img/check-circle-solid-white.svg'),(4444,'wp-content/plugins/wp-mail-smtp/assets/vue/img/check-circle-solid.svg'),(4445,'wp-content/plugins/wp-mail-smtp/assets/vue/img/check-solid.svg'),(4446,'wp-content/plugins/wp-mail-smtp/assets/vue/img/chevron-down-solid-grey.svg'),(4447,'wp-content/plugins/wp-mail-smtp/assets/vue/img/copy-solid.svg'),(4448,'wp-content/plugins/wp-mail-smtp/assets/vue/img/exclamation-circle-solid.svg'),(4449,'wp-content/plugins/wp-mail-smtp/assets/vue/img/gmail.svg'),(4450,'wp-content/plugins/wp-mail-smtp/assets/vue/img/google-analytics-for-wordpress@2x.png'),(4451,'wp-content/plugins/wp-mail-smtp/assets/vue/img/info-circle-solid.svg'),(4452,'wp-content/plugins/wp-mail-smtp/assets/vue/img/instagram-feed@2x.png'),(4453,'wp-content/plugins/wp-mail-smtp/assets/vue/img/loading-blue.svg'),(4454,'wp-content/plugins/wp-mail-smtp/assets/vue/img/loading-pattie.svg'),(4455,'wp-content/plugins/wp-mail-smtp/assets/vue/img/loading-white.svg'),(4456,'wp-content/plugins/wp-mail-smtp/assets/vue/img/loading.svg'),(4457,'wp-content/plugins/wp-mail-smtp/assets/vue/img/lock-solid.svg'),(4458,'wp-content/plugins/wp-mail-smtp/assets/vue/img/logo.svg'),(4459,'wp-content/plugins/wp-mail-smtp/assets/vue/img/long-arrow-alt-left-regular-grey.svg'),(4460,'wp-content/plugins/wp-mail-smtp/assets/vue/img/long-arrow-alt-left-regular.svg'),(4461,'wp-content/plugins/wp-mail-smtp/assets/vue/img/long-arrow-alt-right-regular-white.svg'),(4462,'wp-content/plugins/wp-mail-smtp/assets/vue/img/long-arrow-alt-right-regular.svg'),(4463,'wp-content/plugins/wp-mail-smtp/assets/vue/img/mailgun.svg'),(4464,'wp-content/plugins/wp-mail-smtp/assets/vue/img/outlook.svg'),(4465,'wp-content/plugins/wp-mail-smtp/assets/vue/img/post-smtp-mailer.png'),(4466,'wp-content/plugins/wp-mail-smtp/assets/vue/img/postmark.svg'),(4467,'wp-content/plugins/wp-mail-smtp/assets/vue/img/pro-badge.svg'),(4468,'wp-content/plugins/wp-mail-smtp/assets/vue/img/question-circle-solid.svg'),(4469,'wp-content/plugins/wp-mail-smtp/assets/vue/img/sendgrid.svg'),(4470,'wp-content/plugins/wp-mail-smtp/assets/vue/img/sendinblue.svg'),(4471,'wp-content/plugins/wp-mail-smtp/assets/vue/img/smtp.svg'),(4472,'wp-content/plugins/wp-mail-smtp/assets/vue/img/smtpcom.svg'),(4473,'wp-content/plugins/wp-mail-smtp/assets/vue/img/sparkpost.svg'),(4474,'wp-content/plugins/wp-mail-smtp/assets/vue/img/star-solid.svg'),(4475,'wp-content/plugins/wp-mail-smtp/assets/vue/img/thumbs-down-hover.svg'),(4476,'wp-content/plugins/wp-mail-smtp/assets/vue/img/thumbs-down.svg'),(4477,'wp-content/plugins/wp-mail-smtp/assets/vue/img/thumbs-up-hover.svg'),(4478,'wp-content/plugins/wp-mail-smtp/assets/vue/img/thumbs-up.svg'),(4479,'wp-content/plugins/wp-mail-smtp/assets/vue/img/times-solid-grey.svg'),(4480,'wp-content/plugins/wp-mail-smtp/assets/vue/img/times-solid.svg'),(4481,'wp-content/plugins/wp-mail-smtp/assets/vue/img/working.svg'),(4482,'wp-content/plugins/wp-mail-smtp/assets/vue/img/wp-smtp.png'),(4483,'wp-content/plugins/wp-mail-smtp/assets/vue/img/zoho.svg'),(4484,'wp-content/plugins/wp-mail-smtp/assets/vue/js/chunk-vendors.min.js'),(4485,'wp-content/plugins/wp-mail-smtp/assets/vue/js/wizard.min.js'),(4486,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/LICENSE'),(4487,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/autoload-php7.php'),(4488,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/autoload.php'),(4489,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/lib/constants.php'),(4490,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/lib/namespaced.php'),(4491,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/lib/php72compat.php'),(4492,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/lib/php72compat_const.php'),(4493,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/lib/sodium_compat.php'),(4494,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Compat.php'),(4495,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/BLAKE2b.php'),(4496,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/ChaCha20/Ctx.php'),(4497,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php'),(4498,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/ChaCha20.php'),(4499,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Curve25519/Fe.php'),(4500,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php'),(4501,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php'),(4502,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php'),(4503,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php'),(4504,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php'),(4505,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Curve25519/H.php'),(4506,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Curve25519.php'),(4507,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Ed25519.php'),(4508,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/HChaCha20.php'),(4509,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/HSalsa20.php'),(4510,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Poly1305/State.php'),(4511,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Poly1305.php'),(4512,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Salsa20.php'),(4513,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/SipHash.php'),(4514,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Util.php'),(4515,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/X25519.php'),(4516,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/XChaCha20.php'),(4517,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Core/Xsalsa20.php'),(4518,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/Crypto.php'),(4519,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/namespaced/File.php'),(4520,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Compat.php'),(4521,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/BLAKE2b.php'),(4522,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Base64/Common.php'),(4523,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Base64/Original.php'),(4524,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Base64/UrlSafe.php'),(4525,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/ChaCha20/Ctx.php'),(4526,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/ChaCha20/IetfCtx.php'),(4527,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/ChaCha20.php'),(4528,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Curve25519/Fe.php'),(4529,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Curve25519/Ge/Cached.php'),(4530,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Curve25519/Ge/P1p1.php'),(4531,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Curve25519/Ge/P2.php'),(4532,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Curve25519/Ge/P3.php'),(4533,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Curve25519/Ge/Precomp.php'),(4534,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Curve25519/H.php'),(4535,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Curve25519.php'),(4536,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Ed25519.php'),(4537,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/HChaCha20.php'),(4538,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/HSalsa20.php'),(4539,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Poly1305/State.php'),(4540,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Poly1305.php'),(4541,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Salsa20.php'),(4542,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/SecretStream/State.php'),(4543,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/SipHash.php'),(4544,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/Util.php'),(4545,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/X25519.php'),(4546,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/XChaCha20.php'),(4547,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core/XSalsa20.php'),(4548,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/BLAKE2b.php'),(4549,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/ChaCha20/Ctx.php'),(4550,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/ChaCha20/IetfCtx.php'),(4551,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/ChaCha20.php'),(4552,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Curve25519/Fe.php'),(4553,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Curve25519/Ge/Cached.php'),(4554,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php'),(4555,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Curve25519/Ge/P2.php'),(4556,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Curve25519/Ge/P3.php'),(4557,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php'),(4558,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Curve25519/H.php'),(4559,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Curve25519.php'),(4560,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Ed25519.php'),(4561,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/HChaCha20.php'),(4562,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/HSalsa20.php'),(4563,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Int32.php'),(4564,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Int64.php'),(4565,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Poly1305/State.php'),(4566,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Poly1305.php'),(4567,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Salsa20.php'),(4568,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/SecretStream/State.php'),(4569,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/SipHash.php'),(4570,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/Util.php'),(4571,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/X25519.php'),(4572,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/XChaCha20.php'),(4573,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Core32/XSalsa20.php'),(4574,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Crypto.php'),(4575,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/Crypto32.php'),(4576,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/File.php'),(4577,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/PHP52/SplFixedArray.php'),(4578,'wp-content/plugins/wp-mail-smtp/libs/sodium_compat/src/SodiumException.php'),(4579,'wp-content/plugins/wp-mail-smtp/readme.txt'),(4580,'wp-content/plugins/wp-mail-smtp/src/Admin/AdminBarMenu.php'),(4581,'wp-content/plugins/wp-mail-smtp/src/Admin/Area.php'),(4582,'wp-content/plugins/wp-mail-smtp/src/Admin/DashboardWidget.php'),(4583,'wp-content/plugins/wp-mail-smtp/src/Admin/DebugEvents/DebugEvents.php'),(4584,'wp-content/plugins/wp-mail-smtp/src/Admin/DebugEvents/Event.php'),(4585,'wp-content/plugins/wp-mail-smtp/src/Admin/DebugEvents/EventsCollection.php'),(4586,'wp-content/plugins/wp-mail-smtp/src/Admin/DebugEvents/Migration.php'),(4587,'wp-content/plugins/wp-mail-smtp/src/Admin/DebugEvents/Table.php'),(4588,'wp-content/plugins/wp-mail-smtp/src/Admin/DomainChecker.php'),(4589,'wp-content/plugins/wp-mail-smtp/src/Admin/Education.php'),(4590,'wp-content/plugins/wp-mail-smtp/src/Admin/FlyoutMenu.php'),(4591,'wp-content/plugins/wp-mail-smtp/src/Admin/Notifications.php'),(4592,'wp-content/plugins/wp-mail-smtp/src/Admin/PageAbstract.php'),(4593,'wp-content/plugins/wp-mail-smtp/src/Admin/PageInterface.php'),(4594,'wp-content/plugins/wp-mail-smtp/src/Admin/Pages/About.php'),(4595,'wp-content/plugins/wp-mail-smtp/src/Admin/Pages/AboutTab.php'),(4596,'wp-content/plugins/wp-mail-smtp/src/Admin/Pages/ActionSchedulerTab.php'),(4597,'wp-content/plugins/wp-mail-smtp/src/Admin/Pages/AuthTab.php'),(4598,'wp-content/plugins/wp-mail-smtp/src/Admin/Pages/ControlTab.php'),(4599,'wp-content/plugins/wp-mail-smtp/src/Admin/Pages/DebugEventsTab.php'),(4600,'wp-content/plugins/wp-mail-smtp/src/Admin/Pages/EmailReports.php'),(4601,'wp-content/plugins/wp-mail-smtp/src/Admin/Pages/EmailReportsTab.php'),(4602,'wp-content/plugins/wp-mail-smtp/src/Admin/Pages/ExportTab.php'),(4603,'wp-content/plugins/wp-mail-smtp/src/Admin/Pages/Logs.php'),(4604,'wp-content/plugins/wp-mail-smtp/src/Admin/Pages/LogsTab.php'),(4605,'wp-content/plugins/wp-mail-smtp/src/Admin/Pages/MiscTab.php'),(4606,'wp-content/plugins/wp-mail-smtp/src/Admin/Pages/SettingsTab.php'),(4607,'wp-content/plugins/wp-mail-smtp/src/Admin/Pages/TestTab.php'),(4608,'wp-content/plugins/wp-mail-smtp/src/Admin/Pages/Tools.php'),(4609,'wp-content/plugins/wp-mail-smtp/src/Admin/Pages/VersusTab.php'),(4610,'wp-content/plugins/wp-mail-smtp/src/Admin/ParentPageAbstract.php'),(4611,'wp-content/plugins/wp-mail-smtp/src/Admin/PluginsInstallSkin.php'),(4612,'wp-content/plugins/wp-mail-smtp/src/Admin/PluginsInstallUpgrader.php'),(4613,'wp-content/plugins/wp-mail-smtp/src/Admin/Review.php'),(4614,'wp-content/plugins/wp-mail-smtp/src/Admin/SetupWizard.php'),(4615,'wp-content/plugins/wp-mail-smtp/src/Compatibility/Compatibility.php'),(4616,'wp-content/plugins/wp-mail-smtp/src/Compatibility/Plugin/Admin2020.php'),(4617,'wp-content/plugins/wp-mail-smtp/src/Compatibility/Plugin/PluginAbstract.php'),(4618,'wp-content/plugins/wp-mail-smtp/src/Compatibility/Plugin/PluginInterface.php'),(4619,'wp-content/plugins/wp-mail-smtp/src/Conflicts.php'),(4620,'wp-content/plugins/wp-mail-smtp/src/Connect.php'),(4621,'wp-content/plugins/wp-mail-smtp/src/Core.php'),(4622,'wp-content/plugins/wp-mail-smtp/src/Debug.php'),(4623,'wp-content/plugins/wp-mail-smtp/src/Geo.php'),(4624,'wp-content/plugins/wp-mail-smtp/src/Helpers/Crypto.php'),(4625,'wp-content/plugins/wp-mail-smtp/src/Helpers/Helpers.php'),(4626,'wp-content/plugins/wp-mail-smtp/src/Helpers/PluginImportDataRetriever.php'),(4627,'wp-content/plugins/wp-mail-smtp/src/MailCatcher.php'),(4628,'wp-content/plugins/wp-mail-smtp/src/MailCatcherInterface.php'),(4629,'wp-content/plugins/wp-mail-smtp/src/MailCatcherV6.php'),(4630,'wp-content/plugins/wp-mail-smtp/src/Migration.php'),(4631,'wp-content/plugins/wp-mail-smtp/src/MigrationAbstract.php'),(4632,'wp-content/plugins/wp-mail-smtp/src/Options.php'),(4633,'wp-content/plugins/wp-mail-smtp/src/Processor.php'),(4634,'wp-content/plugins/wp-mail-smtp/src/Providers/AmazonSES/Options.php'),(4635,'wp-content/plugins/wp-mail-smtp/src/Providers/AuthAbstract.php'),(4636,'wp-content/plugins/wp-mail-smtp/src/Providers/AuthInterface.php'),(4637,'wp-content/plugins/wp-mail-smtp/src/Providers/Gmail/Auth.php'),(4638,'wp-content/plugins/wp-mail-smtp/src/Providers/Gmail/Mailer.php'),(4639,'wp-content/plugins/wp-mail-smtp/src/Providers/Gmail/Options.php'),(4640,'wp-content/plugins/wp-mail-smtp/src/Providers/Loader.php'),(4641,'wp-content/plugins/wp-mail-smtp/src/Providers/Mail/Mailer.php'),(4642,'wp-content/plugins/wp-mail-smtp/src/Providers/Mail/Options.php'),(4643,'wp-content/plugins/wp-mail-smtp/src/Providers/MailerAbstract.php'),(4644,'wp-content/plugins/wp-mail-smtp/src/Providers/MailerInterface.php'),(4645,'wp-content/plugins/wp-mail-smtp/src/Providers/Mailgun/Mailer.php'),(4646,'wp-content/plugins/wp-mail-smtp/src/Providers/Mailgun/Options.php'),(4647,'wp-content/plugins/wp-mail-smtp/src/Providers/OptionsAbstract.php'),(4648,'wp-content/plugins/wp-mail-smtp/src/Providers/OptionsInterface.php'),(4649,'wp-content/plugins/wp-mail-smtp/src/Providers/Outlook/Options.php'),(4650,'wp-content/plugins/wp-mail-smtp/src/Providers/Pepipost/Mailer.php'),(4651,'wp-content/plugins/wp-mail-smtp/src/Providers/Pepipost/Options.php'),(4652,'wp-content/plugins/wp-mail-smtp/src/Providers/PepipostAPI/Mailer.php'),(4653,'wp-content/plugins/wp-mail-smtp/src/Providers/PepipostAPI/Options.php'),(4654,'wp-content/plugins/wp-mail-smtp/src/Providers/Postmark/Mailer.php'),(4655,'wp-content/plugins/wp-mail-smtp/src/Providers/Postmark/Options.php'),(4656,'wp-content/plugins/wp-mail-smtp/src/Providers/SMTP/Mailer.php'),(4657,'wp-content/plugins/wp-mail-smtp/src/Providers/SMTP/Options.php'),(4658,'wp-content/plugins/wp-mail-smtp/src/Providers/SMTPcom/Mailer.php'),(4659,'wp-content/plugins/wp-mail-smtp/src/Providers/SMTPcom/Options.php'),(4660,'wp-content/plugins/wp-mail-smtp/src/Providers/Sendgrid/Mailer.php'),(4661,'wp-content/plugins/wp-mail-smtp/src/Providers/Sendgrid/Options.php'),(4662,'wp-content/plugins/wp-mail-smtp/src/Providers/Sendinblue/Api.php'),(4663,'wp-content/plugins/wp-mail-smtp/src/Providers/Sendinblue/Mailer.php'),(4664,'wp-content/plugins/wp-mail-smtp/src/Providers/Sendinblue/Options.php'),(4665,'wp-content/plugins/wp-mail-smtp/src/Providers/SparkPost/Mailer.php'),(4666,'wp-content/plugins/wp-mail-smtp/src/Providers/SparkPost/Options.php'),(4667,'wp-content/plugins/wp-mail-smtp/src/Providers/Zoho/Options.php'),(4668,'wp-content/plugins/wp-mail-smtp/src/Reports/Emails/Summary.php'),(4669,'wp-content/plugins/wp-mail-smtp/src/Reports/Reports.php'),(4670,'wp-content/plugins/wp-mail-smtp/src/SiteHealth.php'),(4671,'wp-content/plugins/wp-mail-smtp/src/Tasks/Meta.php'),(4672,'wp-content/plugins/wp-mail-smtp/src/Tasks/Reports/SummaryEmailTask.php'),(4673,'wp-content/plugins/wp-mail-smtp/src/Tasks/Task.php'),(4674,'wp-content/plugins/wp-mail-smtp/src/Tasks/Tasks.php'),(4675,'wp-content/plugins/wp-mail-smtp/src/Upgrade.php'),(4676,'wp-content/plugins/wp-mail-smtp/src/Uploads.php'),(4677,'wp-content/plugins/wp-mail-smtp/src/UsageTracking/SendUsageTask.php'),(4678,'wp-content/plugins/wp-mail-smtp/src/UsageTracking/UsageTracking.php'),(4679,'wp-content/plugins/wp-mail-smtp/src/WP.php'),(4680,'wp-content/plugins/wp-mail-smtp/uninstall.php'),(4681,'wp-content/plugins/wp-mail-smtp/vendor/autoload.php'),(4682,'wp-content/plugins/wp-mail-smtp/vendor/composer/ClassLoader.php'),(4683,'wp-content/plugins/wp-mail-smtp/vendor/composer/autoload_classmap.php'),(4684,'wp-content/plugins/wp-mail-smtp/vendor/composer/autoload_files.php'),(4685,'wp-content/plugins/wp-mail-smtp/vendor/composer/autoload_namespaces.php'),(4686,'wp-content/plugins/wp-mail-smtp/vendor/composer/autoload_psr4.php'),(4687,'wp-content/plugins/wp-mail-smtp/vendor/composer/autoload_real.php'),(4688,'wp-content/plugins/wp-mail-smtp/vendor/composer/autoload_static.php'),(4689,'wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/LICENSE'),(4690,'wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey'),(4691,'wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc'),(4692,'wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/byte_safe_strings.php'),(4693,'wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/cast_to_int.php'),(4694,'wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/error_polyfill.php'),(4695,'wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/random.php'),(4696,'wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php'),(4697,'wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php'),(4698,'wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php'),(4699,'wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php'),(4700,'wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php'),(4701,'wp-content/plugins/wp-mail-smtp/vendor/paragonie/random_compat/lib/random_int.php'),(4702,'wp-content/plugins/wp-mail-smtp/vendor/ralouphie/getallheaders/LICENSE'),(4703,'wp-content/plugins/wp-mail-smtp/vendor/ralouphie/getallheaders/src/getallheaders.php'),(4704,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/action-scheduler.php'),(4705,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/changelog.txt'),(4706,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_ActionClaim.php'),(4707,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_ActionFactory.php'),(4708,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_AdminView.php'),(4709,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_AsyncRequest_QueueRunner.php'),(4710,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_Compatibility.php'),(4711,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_DataController.php'),(4712,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_DateTime.php'),(4713,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_Exception.php'),(4714,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_FatalErrorMonitor.php'),(4715,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_InvalidActionException.php'),(4716,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_ListTable.php'),(4717,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_LogEntry.php'),(4718,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_NullLogEntry.php'),(4719,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_OptionLock.php'),(4720,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_QueueCleaner.php'),(4721,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_QueueRunner.php'),(4722,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_Versions.php'),(4723,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_WPCommentCleaner.php'),(4724,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/ActionScheduler_wcSystemStatus.php'),(4725,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_QueueRunner.php'),(4726,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/WP_CLI/ActionScheduler_WPCLI_Scheduler_command.php'),(4727,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/WP_CLI/Migration_Command.php'),(4728,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/WP_CLI/ProgressBar.php'),(4729,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler.php'),(4730,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Abstract_ListTable.php'),(4731,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Abstract_QueueRunner.php'),(4732,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Abstract_RecurringSchedule.php'),(4733,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Abstract_Schedule.php'),(4734,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Abstract_Schema.php'),(4735,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Lock.php'),(4736,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Logger.php'),(4737,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_Store.php'),(4738,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/abstracts/ActionScheduler_TimezoneHelper.php'),(4739,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/actions/ActionScheduler_Action.php'),(4740,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/actions/ActionScheduler_CanceledAction.php'),(4741,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/actions/ActionScheduler_FinishedAction.php'),(4742,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/actions/ActionScheduler_NullAction.php'),(4743,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_DBLogger.php'),(4744,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_DBStore.php'),(4745,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_HybridStore.php'),(4746,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_wpCommentLogger.php'),(4747,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore.php'),(4748,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostStatusRegistrar.php'),(4749,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_PostTypeRegistrar.php'),(4750,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/data-stores/ActionScheduler_wpPostStore_TaxonomyRegistrar.php'),(4751,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/ActionMigrator.php'),(4752,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/ActionScheduler_DBStoreMigrator.php'),(4753,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/BatchFetcher.php'),(4754,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/Config.php'),(4755,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/Controller.php'),(4756,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/DryRun_ActionMigrator.php'),(4757,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/DryRun_LogMigrator.php'),(4758,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/LogMigrator.php'),(4759,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/Runner.php'),(4760,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/migration/Scheduler.php'),(4761,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/schedules/ActionScheduler_CanceledSchedule.php'),(4762,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/schedules/ActionScheduler_CronSchedule.php'),(4763,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/schedules/ActionScheduler_IntervalSchedule.php'),(4764,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/schedules/ActionScheduler_NullSchedule.php'),(4765,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/schedules/ActionScheduler_Schedule.php'),(4766,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/schedules/ActionScheduler_SimpleSchedule.php'),(4767,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/schema/ActionScheduler_LoggerSchema.php'),(4768,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/classes/schema/ActionScheduler_StoreSchema.php'),(4769,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/deprecated/ActionScheduler_Abstract_QueueRunner_Deprecated.php'),(4770,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/deprecated/ActionScheduler_AdminView_Deprecated.php'),(4771,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/deprecated/ActionScheduler_Schedule_Deprecated.php'),(4772,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/deprecated/ActionScheduler_Store_Deprecated.php'),(4773,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/deprecated/functions.php'),(4774,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/functions.php'),(4775,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/WP_Async_Request.php'),(4776,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression.php'),(4777,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression_AbstractField.php'),(4778,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression_DayOfMonthField.php'),(4779,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression_DayOfWeekField.php'),(4780,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression_FieldFactory.php'),(4781,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression_FieldInterface.php'),(4782,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression_HoursField.php'),(4783,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression_MinutesField.php'),(4784,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression_MonthField.php'),(4785,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/CronExpression_YearField.php'),(4786,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/lib/cron-expression/LICENSE'),(4787,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/license.txt'),(4788,'wp-content/plugins/wp-mail-smtp/vendor/woocommerce/action-scheduler/readme.txt'),(4789,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/LICENSE'),(4790,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/AccessToken/Revoke.php'),(4791,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/AccessToken/Verify.php'),(4792,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/AuthHandler/AuthHandlerFactory.php'),(4793,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/AuthHandler/Guzzle5AuthHandler.php'),(4794,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/AuthHandler/Guzzle6AuthHandler.php'),(4795,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/AuthHandler/Guzzle7AuthHandler.php'),(4796,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Client.php'),(4797,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Collection.php'),(4798,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Exception.php'),(4799,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Http/Batch.php'),(4800,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Http/MediaFileUpload.php'),(4801,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Http/REST.php'),(4802,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Model.php'),(4803,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Service/Exception.php'),(4804,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Service/Resource.php'),(4805,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Service.php'),(4806,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Task/Composer.php'),(4807,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Task/Exception.php'),(4808,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Task/Retryable.php'),(4809,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Task/Runner.php'),(4810,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/Utils/UriTemplate.php'),(4811,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient/src/aliases.php'),(4812,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/AutoForwarding.php'),(4813,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/BatchDeleteMessagesRequest.php'),(4814,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/BatchModifyMessagesRequest.php'),(4815,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Delegate.php'),(4816,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Draft.php'),(4817,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Filter.php'),(4818,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/FilterAction.php'),(4819,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/FilterCriteria.php'),(4820,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ForwardingAddress.php'),(4821,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/History.php'),(4822,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/HistoryLabelAdded.php'),(4823,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/HistoryLabelRemoved.php'),(4824,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/HistoryMessageAdded.php'),(4825,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/HistoryMessageDeleted.php'),(4826,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ImapSettings.php'),(4827,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Label.php'),(4828,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/LabelColor.php'),(4829,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/LanguageSettings.php'),(4830,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListDelegatesResponse.php'),(4831,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListDraftsResponse.php'),(4832,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListFiltersResponse.php'),(4833,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListForwardingAddressesResponse.php'),(4834,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListHistoryResponse.php'),(4835,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListLabelsResponse.php'),(4836,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListMessagesResponse.php'),(4837,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListSendAsResponse.php'),(4838,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListSmimeInfoResponse.php'),(4839,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ListThreadsResponse.php'),(4840,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Message.php'),(4841,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/MessagePart.php'),(4842,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/MessagePartBody.php'),(4843,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/MessagePartHeader.php'),(4844,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ModifyMessageRequest.php'),(4845,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/ModifyThreadRequest.php'),(4846,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/PopSettings.php'),(4847,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Profile.php'),(4848,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/Users.php'),(4849,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersDrafts.php'),(4850,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersHistory.php'),(4851,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersLabels.php'),(4852,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersMessages.php'),(4853,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersMessagesAttachments.php'),(4854,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersSettings.php'),(4855,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersSettingsDelegates.php'),(4856,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersSettingsFilters.php'),(4857,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersSettingsForwardingAddresses.php'),(4858,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersSettingsSendAs.php'),(4859,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersSettingsSendAsSmimeInfo.php'),(4860,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Resource/UsersThreads.php'),(4861,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/SendAs.php'),(4862,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/SmimeInfo.php'),(4863,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/SmtpMsa.php'),(4864,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/Thread.php'),(4865,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/VacationSettings.php'),(4866,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/WatchRequest.php'),(4867,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail/WatchResponse.php'),(4868,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/apiclient-services/src/Gmail.php'),(4869,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/LICENSE'),(4870,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/autoload.php'),(4871,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/AccessToken.php'),(4872,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/ApplicationDefaultCredentials.php'),(4873,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Cache/InvalidArgumentException.php'),(4874,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Cache/Item.php'),(4875,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Cache/MemoryCacheItemPool.php'),(4876,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Cache/SysVCacheItemPool.php'),(4877,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/CacheTrait.php'),(4878,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Credentials/AppIdentityCredentials.php'),(4879,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Credentials/GCECredentials.php'),(4880,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Credentials/IAMCredentials.php'),(4881,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Credentials/InsecureCredentials.php'),(4882,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Credentials/ServiceAccountCredentials.php'),(4883,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Credentials/ServiceAccountJwtAccessCredentials.php'),(4884,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Credentials/UserRefreshCredentials.php'),(4885,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/CredentialsLoader.php'),(4886,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/FetchAuthTokenCache.php'),(4887,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/FetchAuthTokenInterface.php'),(4888,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/GCECache.php'),(4889,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/GetQuotaProjectInterface.php'),(4890,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/HttpHandler/Guzzle5HttpHandler.php'),(4891,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/HttpHandler/Guzzle6HttpHandler.php'),(4892,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/HttpHandler/Guzzle7HttpHandler.php'),(4893,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/HttpHandler/HttpClientCache.php'),(4894,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/HttpHandler/HttpHandlerFactory.php'),(4895,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Iam.php'),(4896,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Middleware/AuthTokenMiddleware.php'),(4897,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Middleware/ProxyAuthTokenMiddleware.php'),(4898,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Middleware/ScopedAccessTokenMiddleware.php'),(4899,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Middleware/SimpleMiddleware.php'),(4900,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/OAuth2.php'),(4901,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/ProjectIdProviderInterface.php'),(4902,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/ServiceAccountSignerTrait.php'),(4903,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/SignBlobInterface.php'),(4904,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Subscriber/AuthTokenSubscriber.php'),(4905,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Subscriber/ScopedAccessTokenSubscriber.php'),(4906,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/Subscriber/SimpleSubscriber.php'),(4907,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/google/auth/src/UpdateMetadataInterface.php'),(4908,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/LICENSE'),(4909,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Client.php'),(4910,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/ClientInterface.php'),(4911,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/CookieJar.php'),(4912,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php'),(4913,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/FileCookieJar.php'),(4914,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/SessionCookieJar.php'),(4915,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Cookie/SetCookie.php'),(4916,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/BadResponseException.php'),(4917,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ClientException.php'),(4918,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ConnectException.php'),(4919,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/GuzzleException.php'),(4920,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/InvalidArgumentException.php'),(4921,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/RequestException.php'),(4922,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/SeekException.php'),(4923,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/ServerException.php'),(4924,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/TooManyRedirectsException.php'),(4925,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Exception/TransferException.php'),(4926,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlFactory.php'),(4927,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php'),(4928,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlHandler.php'),(4929,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php'),(4930,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Handler/EasyHandle.php'),(4931,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Handler/MockHandler.php'),(4932,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Handler/Proxy.php'),(4933,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Handler/StreamHandler.php'),(4934,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/HandlerStack.php'),(4935,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/MessageFormatter.php'),(4936,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Middleware.php'),(4937,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Pool.php'),(4938,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php'),(4939,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/RedirectMiddleware.php'),(4940,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/RequestOptions.php'),(4941,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/RetryMiddleware.php'),(4942,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/TransferStats.php'),(4943,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/UriTemplate.php'),(4944,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/Utils.php'),(4945,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/functions.php'),(4946,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/guzzle/src/functions_include.php'),(4947,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/LICENSE'),(4948,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/AggregateException.php'),(4949,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/CancellationException.php'),(4950,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/Coroutine.php'),(4951,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/Create.php'),(4952,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/Each.php'),(4953,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/EachPromise.php'),(4954,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/FulfilledPromise.php'),(4955,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/Is.php'),(4956,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/Promise.php'),(4957,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/PromiseInterface.php'),(4958,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/PromisorInterface.php'),(4959,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/RejectedPromise.php'),(4960,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/RejectionException.php'),(4961,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/TaskQueue.php'),(4962,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/TaskQueueInterface.php'),(4963,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/Utils.php'),(4964,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/functions.php'),(4965,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/promises/src/functions_include.php'),(4966,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/LICENSE'),(4967,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/AppendStream.php'),(4968,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/BufferStream.php'),(4969,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/CachingStream.php'),(4970,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/DroppingStream.php'),(4971,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/FnStream.php'),(4972,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/Header.php'),(4973,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/InflateStream.php'),(4974,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/LazyOpenStream.php'),(4975,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/LimitStream.php'),(4976,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/Message.php'),(4977,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/MessageTrait.php'),(4978,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/MimeType.php'),(4979,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/MultipartStream.php'),(4980,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/NoSeekStream.php'),(4981,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/PumpStream.php'),(4982,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/Query.php'),(4983,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/Request.php'),(4984,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/Response.php'),(4985,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/Rfc7230.php'),(4986,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/ServerRequest.php'),(4987,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/Stream.php'),(4988,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/StreamDecoratorTrait.php'),(4989,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/StreamWrapper.php'),(4990,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/UploadedFile.php'),(4991,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/Uri.php'),(4992,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/UriNormalizer.php'),(4993,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/UriResolver.php'),(4994,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/Utils.php'),(4995,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/functions.php'),(4996,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src/functions_include.php'),(4997,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/LICENSE'),(4998,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/ErrorHandler.php'),(4999,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/ChromePHPFormatter.php'),(5000,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/ElasticaFormatter.php'),(5001,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/FlowdockFormatter.php'),(5002,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/FluentdFormatter.php'),(5003,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/FormatterInterface.php'),(5004,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/GelfMessageFormatter.php'),(5005,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/HtmlFormatter.php'),(5006,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php'),(5007,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/LineFormatter.php'),(5008,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/LogglyFormatter.php'),(5009,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/LogstashFormatter.php'),(5010,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/MongoDBFormatter.php'),(5011,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php'),(5012,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/ScalarFormatter.php'),(5013,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Formatter/WildfireFormatter.php'),(5014,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/AbstractHandler.php'),(5015,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php'),(5016,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/AbstractSyslogHandler.php'),(5017,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/AmqpHandler.php'),(5018,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/BrowserConsoleHandler.php'),(5019,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/BufferHandler.php'),(5020,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php'),(5021,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/CouchDBHandler.php'),(5022,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/CubeHandler.php'),(5023,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/Curl/Util.php'),(5024,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/DeduplicationHandler.php'),(5025,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/DoctrineCouchDBHandler.php'),(5026,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/DynamoDbHandler.php'),(5027,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/ElasticSearchHandler.php'),(5028,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/ErrorLogHandler.php'),(5029,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FilterHandler.php'),(5030,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ActivationStrategyInterface.php'),(5031,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ChannelLevelActivationStrategy.php'),(5032,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossed/ErrorLevelActivationStrategy.php'),(5033,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FingersCrossedHandler.php'),(5034,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FirePHPHandler.php'),(5035,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FleepHookHandler.php'),(5036,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FlowdockHandler.php'),(5037,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerInterface.php'),(5038,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/FormattableHandlerTrait.php'),(5039,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/GelfHandler.php'),(5040,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/GroupHandler.php'),(5041,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/HandlerInterface.php'),(5042,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/HandlerWrapper.php'),(5043,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/HipChatHandler.php'),(5044,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/IFTTTHandler.php'),(5045,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/InsightOpsHandler.php'),(5046,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/LogEntriesHandler.php'),(5047,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/LogglyHandler.php'),(5048,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/MailHandler.php'),(5049,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/MandrillHandler.php'),(5050,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/MissingExtensionException.php'),(5051,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/MongoDBHandler.php'),(5052,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/NativeMailerHandler.php'),(5053,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/NewRelicHandler.php'),(5054,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/NullHandler.php'),(5055,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/PHPConsoleHandler.php'),(5056,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerInterface.php'),(5057,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/ProcessableHandlerTrait.php'),(5058,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/PsrHandler.php'),(5059,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/PushoverHandler.php'),(5060,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/RavenHandler.php'),(5061,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/RedisHandler.php'),(5062,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/RollbarHandler.php'),(5063,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php'),(5064,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/SamplingHandler.php'),(5065,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/Slack/SlackRecord.php'),(5066,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/SlackHandler.php'),(5067,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/SlackWebhookHandler.php'),(5068,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/SlackbotHandler.php'),(5069,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/SocketHandler.php'),(5070,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/StreamHandler.php'),(5071,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/SwiftMailerHandler.php'),(5072,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/SyslogHandler.php'),(5073,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdp/UdpSocket.php'),(5074,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/SyslogUdpHandler.php'),(5075,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/TestHandler.php'),(5076,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/WhatFailureGroupHandler.php'),(5077,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Handler/ZendMonitorHandler.php'),(5078,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Logger.php'),(5079,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/GitProcessor.php'),(5080,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/IntrospectionProcessor.php'),(5081,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/MemoryPeakUsageProcessor.php'),(5082,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/MemoryProcessor.php'),(5083,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/MemoryUsageProcessor.php'),(5084,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/MercurialProcessor.php'),(5085,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/ProcessIdProcessor.php'),(5086,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/ProcessorInterface.php'),(5087,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/PsrLogMessageProcessor.php'),(5088,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/TagProcessor.php'),(5089,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/UidProcessor.php'),(5090,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Processor/WebProcessor.php'),(5091,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Registry.php'),(5092,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/ResettableInterface.php'),(5093,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/SignalHandler.php'),(5094,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/monolog/monolog/src/Monolog/Utils.php'),(5095,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/LICENSE.txt'),(5096,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/Base32.php'),(5097,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/Base32Hex.php'),(5098,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/Base64.php'),(5099,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/Base64DotSlash.php'),(5100,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/Base64DotSlashOrdered.php'),(5101,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/Base64UrlSafe.php'),(5102,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/Binary.php'),(5103,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/EncoderInterface.php'),(5104,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/Encoding.php'),(5105,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/Hex.php'),(5106,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/paragonie/constant_time_encoding/src/RFC4648.php'),(5107,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/LICENSE'),(5108,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Common/Functions/Strings.php'),(5109,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/AES.php'),(5110,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/AsymmetricKey.php'),(5111,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/BlockCipher.php'),(5112,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/OpenSSH.php'),(5113,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/PKCS.php'),(5114,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/PKCS1.php'),(5115,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/PKCS8.php'),(5116,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/PuTTY.php'),(5117,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Signature/Raw.php'),(5118,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/PrivateKey.php'),(5119,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/PublicKey.php'),(5120,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/StreamCipher.php'),(5121,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/SymmetricKey.php'),(5122,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/Traits/Fingerprint.php'),(5123,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Common/Traits/PasswordProtected.php'),(5124,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DH/Formats/Keys/PKCS1.php'),(5125,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DH/Formats/Keys/PKCS8.php'),(5126,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DH/Parameters.php'),(5127,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DH/PrivateKey.php'),(5128,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DH/PublicKey.php'),(5129,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/OpenSSH.php'),(5130,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/PKCS1.php'),(5131,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/PKCS8.php'),(5132,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/PuTTY.php'),(5133,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/Raw.php'),(5134,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Keys/XML.php'),(5135,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Signature/ASN1.php'),(5136,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Signature/Raw.php'),(5137,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Formats/Signature/SSH2.php'),(5138,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/Parameters.php'),(5139,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/PrivateKey.php'),(5140,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/DSA/PublicKey.php'),(5141,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/Base.php'),(5142,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/Binary.php'),(5143,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/KoblitzPrime.php'),(5144,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/Montgomery.php'),(5145,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/Prime.php'),(5146,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/TwistedEdwards.php'),(5147,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/Curve25519.php'),(5148,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/Curve448.php'),(5149,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/Ed25519.php'),(5150,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/Ed448.php'),(5151,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP160r1.php'),(5152,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP160t1.php'),(5153,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP192r1.php'),(5154,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP192t1.php'),(5155,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP224r1.php'),(5156,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP224t1.php'),(5157,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP256r1.php'),(5158,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP256t1.php'),(5159,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP320r1.php'),(5160,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP320t1.php'),(5161,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP384r1.php'),(5162,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP384t1.php'),(5163,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP512r1.php'),(5164,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/brainpoolP512t1.php'),(5165,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistb233.php'),(5166,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistb409.php'),(5167,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistk163.php'),(5168,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistk233.php'),(5169,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistk283.php'),(5170,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistk409.php'),(5171,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp192.php'),(5172,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp224.php'),(5173,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp256.php'),(5174,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp384.php'),(5175,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistp521.php'),(5176,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/nistt571.php'),(5177,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime192v1.php'),(5178,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime192v2.php'),(5179,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime192v3.php'),(5180,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime239v1.php'),(5181,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime239v2.php'),(5182,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime239v3.php'),(5183,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/prime256v1.php'),(5184,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp112r1.php'),(5185,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp112r2.php'),(5186,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp128r1.php'),(5187,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp128r2.php'),(5188,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp160k1.php'),(5189,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp160r1.php'),(5190,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp160r2.php'),(5191,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp192k1.php'),(5192,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp192r1.php'),(5193,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp224k1.php'),(5194,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp224r1.php'),(5195,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp256k1.php'),(5196,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp256r1.php'),(5197,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp384r1.php'),(5198,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/secp521r1.php'),(5199,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect113r1.php'),(5200,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect113r2.php'),(5201,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect131r1.php'),(5202,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect131r2.php'),(5203,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect163k1.php'),(5204,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect163r1.php'),(5205,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect163r2.php'),(5206,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect193r1.php'),(5207,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect193r2.php'),(5208,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect233k1.php'),(5209,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect233r1.php'),(5210,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect239k1.php'),(5211,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect283k1.php'),(5212,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect283r1.php'),(5213,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect409k1.php'),(5214,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect409r1.php'),(5215,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect571k1.php'),(5216,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/sect571r1.php'),(5217,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/Common.php'),(5218,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/MontgomeryPrivate.php'),(5219,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/MontgomeryPublic.php'),(5220,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/OpenSSH.php'),(5221,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/PKCS1.php'),(5222,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/PKCS8.php'),(5223,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/PuTTY.php'),(5224,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/XML.php'),(5225,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/libsodium.php'),(5226,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Signature/ASN1.php'),(5227,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Signature/Raw.php'),(5228,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Signature/SSH2.php'),(5229,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/Parameters.php'),(5230,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/PrivateKey.php'),(5231,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/EC/PublicKey.php'),(5232,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/MSBLOB.php'),(5233,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/OpenSSH.php'),(5234,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/PKCS1.php'),(5235,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/PKCS8.php'),(5236,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/PSS.php'),(5237,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/PuTTY.php'),(5238,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/Raw.php'),(5239,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/XML.php'),(5240,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/PrivateKey.php'),(5241,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA/PublicKey.php'),(5242,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/RSA.php'),(5243,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Random.php'),(5244,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php'),(5245,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/BadConfigurationException.php'),(5246,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/BadDecryptionException.php'),(5247,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/BadModeException.php'),(5248,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/ConnectionClosedException.php'),(5249,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/FileNotFoundException.php'),(5250,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/InconsistentSetupException.php'),(5251,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/InsufficientSetupException.php'),(5252,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/NoKeyLoadedException.php'),(5253,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/NoSupportedAlgorithmsException.php'),(5254,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/UnableToConnectException.php'),(5255,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/UnsupportedAlgorithmException.php'),(5256,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/UnsupportedCurveException.php'),(5257,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/UnsupportedFormatException.php'),(5258,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Exception/UnsupportedOperationException.php'),(5259,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Base.php'),(5260,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/BuiltIn.php'),(5261,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/DefaultEngine.php'),(5262,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/OpenSSL.php'),(5263,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions/Barrett.php'),(5264,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath/Reductions/EvalBarrett.php'),(5265,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/BCMath.php'),(5266,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/Engine.php'),(5267,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/GMP/DefaultEngine.php'),(5268,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/GMP.php'),(5269,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/OpenSSL.php'),(5270,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Base.php'),(5271,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/DefaultEngine.php'),(5272,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Montgomery.php'),(5273,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/OpenSSL.php'),(5274,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/Barrett.php'),(5275,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/Classic.php'),(5276,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/EvalBarrett.php'),(5277,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/Montgomery.php'),(5278,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/MontgomeryMult.php'),(5279,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/PowerOfTwo.php'),(5280,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP.php'),(5281,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP32.php'),(5282,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP64.php'),(5283,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BigInteger.php'),(5284,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BinaryField/Integer.php'),(5285,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/BinaryField.php'),(5286,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/Common/FiniteField/Integer.php'),(5287,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/Common/FiniteField.php'),(5288,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/PrimeField/Integer.php'),(5289,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/Math/PrimeField.php'),(5290,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/phpseclib/phpseclib/phpseclib/bootstrap.php'),(5291,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/cache/src/CacheException.php'),(5292,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/cache/src/CacheItemInterface.php'),(5293,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/cache/src/CacheItemPoolInterface.php'),(5294,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/cache/src/InvalidArgumentException.php'),(5295,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/http-message/LICENSE'),(5296,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/http-message/src/MessageInterface.php'),(5297,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/http-message/src/RequestInterface.php'),(5298,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/http-message/src/ResponseInterface.php'),(5299,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/http-message/src/ServerRequestInterface.php'),(5300,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/http-message/src/StreamInterface.php'),(5301,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/http-message/src/UploadedFileInterface.php'),(5302,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/http-message/src/UriInterface.php'),(5303,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/log/LICENSE'),(5304,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/log/Psr/Log/AbstractLogger.php'),(5305,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/log/Psr/Log/InvalidArgumentException.php'),(5306,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/log/Psr/Log/LogLevel.php'),(5307,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/log/Psr/Log/LoggerAwareInterface.php'),(5308,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/log/Psr/Log/LoggerAwareTrait.php'),(5309,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/log/Psr/Log/LoggerInterface.php'),(5310,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/log/Psr/Log/LoggerTrait.php'),(5311,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/psr/log/Psr/Log/NullLogger.php'),(5312,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/AccountApi.php'),(5313,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/AttributesApi.php'),(5314,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/ContactsApi.php'),(5315,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/EmailCampaignsApi.php'),(5316,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/FoldersApi.php'),(5317,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/ListsApi.php'),(5318,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/ProcessApi.php'),(5319,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/ResellerApi.php'),(5320,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/SMSCampaignsApi.php'),(5321,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/SendersApi.php'),(5322,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/TransactionalEmailsApi.php'),(5323,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/TransactionalSMSApi.php'),(5324,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Api/WebhooksApi.php'),(5325,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/ApiException.php'),(5326,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Configuration.php'),(5327,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/HeaderSelector.php'),(5328,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/AbTestCampaignResult.php'),(5329,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/AbTestCampaignResultClickedLinks.php'),(5330,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/AbTestCampaignResultStatistics.php'),(5331,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/AbTestVersionClicks.php'),(5332,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/AbTestVersionClicksInner.php'),(5333,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/AbTestVersionStats.php'),(5334,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/AddChildDomain.php'),(5335,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/AddContactToList.php'),(5336,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/AddCredits.php'),(5337,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/BlockDomain.php'),(5338,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateAttribute.php'),(5339,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateAttributeEnumeration.php'),(5340,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateChild.php'),(5341,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateContact.php'),(5342,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateDoiContact.php'),(5343,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateEmailCampaign.php'),(5344,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateEmailCampaignRecipients.php'),(5345,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateEmailCampaignSender.php'),(5346,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateList.php'),(5347,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateModel.php'),(5348,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateReseller.php'),(5349,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateSender.php'),(5350,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateSenderIps.php'),(5351,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateSenderModel.php'),(5352,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateSmsCampaign.php'),(5353,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateSmsCampaignRecipients.php'),(5354,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateSmtpEmail.php'),(5355,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateSmtpTemplate.php'),(5356,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateSmtpTemplateSender.php'),(5357,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateUpdateContactModel.php'),(5358,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateUpdateFolder.php'),(5359,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreateWebhook.php'),(5360,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/CreatedProcessId.php'),(5361,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/DeleteHardbounces.php'),(5362,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/EmailExportRecipients.php'),(5363,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/ErrorModel.php'),(5364,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetAccount.php'),(5365,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetAccountMarketingAutomation.php'),(5366,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetAccountPlan.php'),(5367,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetAccountRelay.php'),(5368,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetAccountRelayData.php'),(5369,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetAggregatedReport.php'),(5370,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetAttributes.php'),(5371,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetAttributesAttributes.php'),(5372,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetAttributesEnumeration.php'),(5373,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetBlockedDomains.php'),(5374,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetCampaignOverview.php'),(5375,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetCampaignRecipients.php'),(5376,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetCampaignStats.php'),(5377,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildAccountCreationStatus.php'),(5378,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildDomain.php'),(5379,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildDomains.php'),(5380,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildInfo.php'),(5381,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildInfoApiKeys.php'),(5382,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildInfoApiKeysV2.php'),(5383,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildInfoApiKeysV3.php'),(5384,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildInfoCredits.php'),(5385,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildInfoStatistics.php'),(5386,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetChildrenList.php'),(5387,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetClient.php'),(5388,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetContactCampaignStats.php'),(5389,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetContactCampaignStatsClicked.php'),(5390,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetContactCampaignStatsOpened.php'),(5391,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetContactCampaignStatsTransacAttributes.php'),(5392,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetContactCampaignStatsUnsubscriptions.php'),(5393,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetContactDetails.php'),(5394,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetContacts.php'),(5395,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetDeviceBrowserStats.php'),(5396,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetEmailCampaign.php'),(5397,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetEmailCampaigns.php'),(5398,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetEmailEventReport.php'),(5399,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetEmailEventReportEvents.php'),(5400,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedCampaignOverview.php'),(5401,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedCampaignOverviewSender.php'),(5402,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedCampaignStats.php'),(5403,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedClient.php'),(5404,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedClientAddress.php'),(5405,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedContactDetails.php'),(5406,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedContactDetailsStatistics.php'),(5407,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedContactDetailsStatisticsClicked.php'),(5408,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedContactDetailsStatisticsLinks.php'),(5409,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedContactDetailsStatisticsMessagesSent.php'),(5410,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedContactDetailsStatisticsOpened.php'),(5411,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedContactDetailsStatisticsUnsubscriptions.php'),(5412,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription.php'),(5413,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription.php'),(5414,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedList.php'),(5415,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetExtendedListCampaignStats.php'),(5416,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetFolder.php'),(5417,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetFolderLists.php'),(5418,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetFolders.php'),(5419,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetIp.php'),(5420,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetIpFromSender.php'),(5421,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetIps.php'),(5422,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetIpsFromSender.php'),(5423,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetList.php'),(5424,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetLists.php'),(5425,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetProcess.php'),(5426,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetProcesses.php'),(5427,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetReports.php'),(5428,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetReportsReports.php'),(5429,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSendersList.php'),(5430,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSendersListIps.php'),(5431,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSendersListSenders.php'),(5432,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSharedTemplateUrl.php'),(5433,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSmsCampaign.php'),(5434,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSmsCampaignOverview.php'),(5435,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSmsCampaignStats.php'),(5436,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSmsCampaigns.php'),(5437,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSmsEventReport.php'),(5438,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSmsEventReportEvents.php'),(5439,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSmtpTemplateOverview.php'),(5440,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSmtpTemplateOverviewSender.php'),(5441,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSmtpTemplates.php'),(5442,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetSsoToken.php'),(5443,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetStatsByBrowser.php'),(5444,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetStatsByDevice.php'),(5445,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetStatsByDomain.php'),(5446,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacAggregatedSmsReport.php'),(5447,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacBlockedContacts.php'),(5448,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacBlockedContactsContacts.php'),(5449,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacBlockedContactsReason.php'),(5450,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacEmailContent.php'),(5451,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacEmailContentEvents.php'),(5452,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacEmailsList.php'),(5453,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacEmailsListTransactionalEmails.php'),(5454,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacSmsReport.php'),(5455,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetTransacSmsReportReports.php'),(5456,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetWebhook.php'),(5457,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/GetWebhooks.php'),(5458,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/ManageIp.php'),(5459,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/ModelInterface.php'),(5460,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/PostContactInfo.php'),(5461,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/PostContactInfoContacts.php'),(5462,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/PostSendFailed.php'),(5463,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/PostSendSmsTestFailed.php'),(5464,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RemainingCreditModel.php'),(5465,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RemainingCreditModelChild.php'),(5466,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RemainingCreditModelReseller.php'),(5467,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RemoveContactFromList.php'),(5468,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RemoveCredits.php'),(5469,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RequestContactExport.php'),(5470,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RequestContactExportCustomContactFilter.php'),(5471,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RequestContactImport.php'),(5472,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RequestContactImportNewList.php'),(5473,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/RequestSmsRecipientExport.php'),(5474,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendEmail.php'),(5475,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendEmailAttachment.php'),(5476,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendReport.php'),(5477,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendReportEmail.php'),(5478,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSms.php'),(5479,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmail.php'),(5480,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmailAttachment.php'),(5481,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmailBcc.php'),(5482,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmailCc.php'),(5483,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmailMessageVersions.php'),(5484,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmailReplyTo.php'),(5485,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmailReplyTo1.php'),(5486,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmailSender.php'),(5487,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmailTo.php'),(5488,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendSmtpEmailTo1.php'),(5489,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendTemplateEmail.php'),(5490,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendTestEmail.php'),(5491,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendTestSms.php'),(5492,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/SendTransacSms.php'),(5493,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateAttribute.php'),(5494,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateAttributeEnumeration.php'),(5495,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateCampaignStatus.php'),(5496,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateChild.php'),(5497,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateChildAccountStatus.php'),(5498,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateChildDomain.php'),(5499,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateContact.php'),(5500,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateEmailCampaign.php'),(5501,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateEmailCampaignRecipients.php'),(5502,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateEmailCampaignSender.php'),(5503,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateList.php'),(5504,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateSender.php'),(5505,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateSmsCampaign.php'),(5506,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateSmtpTemplate.php'),(5507,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateSmtpTemplateSender.php'),(5508,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UpdateWebhook.php'),(5509,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/Model/UploadImageToGallery.php'),(5510,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/sendinblue/api-v3-sdk/lib/ObjectSerializer.php'),(5511,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-intl-idn/Idn.php'),(5512,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-intl-idn/LICENSE'),(5513,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-intl-idn/bootstrap.php'),(5514,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-mbstring/LICENSE'),(5515,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-mbstring/Mbstring.php'),(5516,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-mbstring/Resources/mb_convert_variables.php8'),(5517,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php'),(5518,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php'),(5519,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-mbstring/Resources/unidata/upperCase.php'),(5520,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-mbstring/bootstrap.php'),(5521,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-php72/LICENSE'),(5522,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-php72/Php72.php'),(5523,'wp-content/plugins/wp-mail-smtp/vendor_prefixed/symfony/polyfill-php72/bootstrap.php'),(5524,'wp-content/plugins/wp-mail-smtp/wp-mail-smtp.php'),(5525,'wp-content/plugins/wp-mail-smtp/wp_mail_smtp.php'),(5526,'wp-content/themes/Divi/404.php'),(5527,'wp-content/themes/Divi/ai-app/ai-app.php'),(5528,'wp-content/themes/Divi/ai-app/build/et-ai-app.bundle.js'),(5529,'wp-content/themes/Divi/ai-app/build/et-ai-app.bundle.js.LICENSE.txt'),(5530,'wp-content/themes/Divi/ai-app/i18n/ai-code.php'),(5531,'wp-content/themes/Divi/ai-app/i18n/authorization.php'),(5532,'wp-content/themes/Divi/ai-app/i18n/user-prompt.php'),(5533,'wp-content/themes/Divi/cloud/build/et-cloud-app.bundle.js'),(5534,'wp-content/themes/Divi/cloud/build/et-cloud-app.bundle.js.LICENSE'),(5535,'wp-content/themes/Divi/cloud/cloud-app.php'),(5536,'wp-content/themes/Divi/cloud/fonts/CloudApp.svg'),(5537,'wp-content/themes/Divi/cloud/i18n/library/categories.php'),(5538,'wp-content/themes/Divi/cloud/i18n/library/layouts-long.php'),(5539,'wp-content/themes/Divi/cloud/i18n/library/layouts-short.php'),(5540,'wp-content/themes/Divi/cloud/i18n/library/packs.php'),(5541,'wp-content/themes/Divi/cloud/i18n/library.php'),(5542,'wp-content/themes/Divi/cloud/images/layout.svg'),(5543,'wp-content/themes/Divi/comments.php'),(5544,'wp-content/themes/Divi/common/admin.php'),(5545,'wp-content/themes/Divi/common/constants/colors.js'),(5546,'wp-content/themes/Divi/common/i18n/ai.php'),(5547,'wp-content/themes/Divi/common/i18n/library.php'),(5548,'wp-content/themes/Divi/common/init.php'),(5549,'wp-content/themes/Divi/common/library.php'),(5550,'wp-content/themes/Divi/common/scripts/es6-promise.auto.min.js'),(5551,'wp-content/themes/Divi/common/scripts/react-dom.production.min.js'),(5552,'wp-content/themes/Divi/common/scripts/react.production.min.js'),(5553,'wp-content/themes/Divi/common/utils/color/color.js'),(5554,'wp-content/themes/Divi/common/utils/html-utils.js'),(5555,'wp-content/themes/Divi/core/_et_core_version.php'),(5556,'wp-content/themes/Divi/core/_metadata.php'),(5557,'wp-content/themes/Divi/core/admin/fonts/builder.svg'),(5558,'wp-content/themes/Divi/core/admin/fonts/epanel/code-snippet.svg'),(5559,'wp-content/themes/Divi/core/admin/fonts/fontawesome/fa-brands-400.svg'),(5560,'wp-content/themes/Divi/core/admin/fonts/fontawesome/fa-regular-400.svg'),(5561,'wp-content/themes/Divi/core/admin/fonts/fontawesome/fa-solid-900.svg'),(5562,'wp-content/themes/Divi/core/admin/fonts/modules/all/modules.svg'),(5563,'wp-content/themes/Divi/core/admin/fonts/modules/base/modules.svg'),(5564,'wp-content/themes/Divi/core/admin/fonts/modules/social/modules.svg'),(5565,'wp-content/themes/Divi/core/admin/images/svg/backups.svg'),(5566,'wp-content/themes/Divi/core/admin/images/svg/migrate.svg'),(5567,'wp-content/themes/Divi/core/admin/images/svg/security.svg'),(5568,'wp-content/themes/Divi/core/admin/images/svg/server.svg'),(5569,'wp-content/themes/Divi/core/admin/images/svg/speed.svg'),(5570,'wp-content/themes/Divi/core/admin/images/svg/staging.svg'),(5571,'wp-content/themes/Divi/core/admin/js/checkbox.js'),(5572,'wp-content/themes/Divi/core/admin/js/colorpicker.js'),(5573,'wp-content/themes/Divi/core/admin/js/common.js'),(5574,'wp-content/themes/Divi/core/admin/js/compatibility-warning.js'),(5575,'wp-content/themes/Divi/core/admin/js/core.js'),(5576,'wp-content/themes/Divi/core/admin/js/es6-promise.auto.min.js'),(5577,'wp-content/themes/Divi/core/admin/js/eye.js'),(5578,'wp-content/themes/Divi/core/admin/js/frame-helpers.js'),(5579,'wp-content/themes/Divi/core/admin/js/functions-init.js'),(5580,'wp-content/themes/Divi/core/admin/js/page-resource-fallback.min.js'),(5581,'wp-content/themes/Divi/core/admin/js/popper.min.js'),(5582,'wp-content/themes/Divi/core/admin/js/portability.js'),(5583,'wp-content/themes/Divi/core/admin/js/recaptcha.js'),(5584,'wp-content/themes/Divi/core/admin/js/support-center.js'),(5585,'wp-content/themes/Divi/core/admin/js/tippy.min.js'),(5586,'wp-content/themes/Divi/core/admin/js/version-rollback.js'),(5587,'wp-content/themes/Divi/core/admin/js/wp-color-picker-alpha.min.js'),(5588,'wp-content/themes/Divi/core/build/et-core-app.bundle.js'),(5589,'wp-content/themes/Divi/core/code-snippets/CodeSnippetsLibrary.php'),(5590,'wp-content/themes/Divi/core/code-snippets/api.php'),(5591,'wp-content/themes/Divi/core/code-snippets/app/boot.js'),(5592,'wp-content/themes/Divi/core/code-snippets/app/lib/capabilities.js'),(5593,'wp-content/themes/Divi/core/code-snippets/app/lib/code-snippets-library.js'),(5594,'wp-content/themes/Divi/core/code-snippets/app/lib/config.js'),(5595,'wp-content/themes/Divi/core/code-snippets/app/lib/constants.js'),(5596,'wp-content/themes/Divi/core/code-snippets/app/lib/i18n.js'),(5597,'wp-content/themes/Divi/core/code-snippets/app/lib/request.js'),(5598,'wp-content/themes/Divi/core/code-snippets/app/store/code-snippets-library/actions.js'),(5599,'wp-content/themes/Divi/core/code-snippets/app/store/code-snippets-library/computed.js'),(5600,'wp-content/themes/Divi/core/code-snippets/app/store/code-snippets-library/factories.js'),(5601,'wp-content/themes/Divi/core/code-snippets/app/store/code-snippets-library/module.js'),(5602,'wp-content/themes/Divi/core/code-snippets/app/store/code-snippets-library/providers.js'),(5603,'wp-content/themes/Divi/core/code-snippets/app/store/code-snippets-library/sequences.js'),(5604,'wp-content/themes/Divi/core/code-snippets/app/store/edit/actions.js'),(5605,'wp-content/themes/Divi/core/code-snippets/app/store/edit/module.js'),(5606,'wp-content/themes/Divi/core/code-snippets/app/store/edit/sequences.js'),(5607,'wp-content/themes/Divi/core/code-snippets/app/store/index.js'),(5608,'wp-content/themes/Divi/core/code-snippets/code-snippets-app.php'),(5609,'wp-content/themes/Divi/core/code-snippets/code-snippets-library-local/CodeSnippetsLibraryLocal.php'),(5610,'wp-content/themes/Divi/core/code-snippets/code-snippets-library.php'),(5611,'wp-content/themes/Divi/core/code-snippets/code-snippets.php'),(5612,'wp-content/themes/Divi/core/code-snippets/constants.php'),(5613,'wp-content/themes/Divi/core/code-snippets/post/taxonomy/CodeSnippetType.php'),(5614,'wp-content/themes/Divi/core/code-snippets/post/type/CodeSnippet.php'),(5615,'wp-content/themes/Divi/core/components/Cache.php'),(5616,'wp-content/themes/Divi/core/components/CompatibilityWarning.php'),(5617,'wp-content/themes/Divi/core/components/HTTPInterface.php'),(5618,'wp-content/themes/Divi/core/components/Logger.php'),(5619,'wp-content/themes/Divi/core/components/PageResource.php'),(5620,'wp-content/themes/Divi/core/components/Portability.php'),(5621,'wp-content/themes/Divi/core/components/SupportCenter.php'),(5622,'wp-content/themes/Divi/core/components/SupportCenterMUAutoloader.php'),(5623,'wp-content/themes/Divi/core/components/Updates.php'),(5624,'wp-content/themes/Divi/core/components/VersionRollback.php'),(5625,'wp-content/themes/Divi/core/components/api/ElegantThemes.php'),(5626,'wp-content/themes/Divi/core/components/api/OAuthHelper.php'),(5627,'wp-content/themes/Divi/core/components/api/Service.php'),(5628,'wp-content/themes/Divi/core/components/api/email/ActiveCampaign.php'),(5629,'wp-content/themes/Divi/core/components/api/email/Aweber.php'),(5630,'wp-content/themes/Divi/core/components/api/email/CampaignMonitor.php'),(5631,'wp-content/themes/Divi/core/components/api/email/ConstantContact.php'),(5632,'wp-content/themes/Divi/core/components/api/email/ConvertKit.php'),(5633,'wp-content/themes/Divi/core/components/api/email/Emma.php'),(5634,'wp-content/themes/Divi/core/components/api/email/Feedblitz.php'),(5635,'wp-content/themes/Divi/core/components/api/email/Fields.php'),(5636,'wp-content/themes/Divi/core/components/api/email/FluentCRM.php'),(5637,'wp-content/themes/Divi/core/components/api/email/GetResponse.php'),(5638,'wp-content/themes/Divi/core/components/api/email/HubSpot.php'),(5639,'wp-content/themes/Divi/core/components/api/email/Infusionsoft.php'),(5640,'wp-content/themes/Divi/core/components/api/email/MadMimi.php'),(5641,'wp-content/themes/Divi/core/components/api/email/MailChimp.php'),(5642,'wp-content/themes/Divi/core/components/api/email/MailPoet.php'),(5643,'wp-content/themes/Divi/core/components/api/email/MailerLite.php'),(5644,'wp-content/themes/Divi/core/components/api/email/Mailster.php'),(5645,'wp-content/themes/Divi/core/components/api/email/Ontraport.php'),(5646,'wp-content/themes/Divi/core/components/api/email/Provider.php'),(5647,'wp-content/themes/Divi/core/components/api/email/Providers.php'),(5648,'wp-content/themes/Divi/core/components/api/email/SalesForce.php'),(5649,'wp-content/themes/Divi/core/components/api/email/SendinBlue.php'),(5650,'wp-content/themes/Divi/core/components/api/email/_MailPoet2.php'),(5651,'wp-content/themes/Divi/core/components/api/email/_MailPoet3.php'),(5652,'wp-content/themes/Divi/core/components/api/email/_ProviderName.php'),(5653,'wp-content/themes/Divi/core/components/api/email/iContact.php'),(5654,'wp-content/themes/Divi/core/components/api/email/init.php'),(5655,'wp-content/themes/Divi/core/components/api/init.php'),(5656,'wp-content/themes/Divi/core/components/api/social/Network.php'),(5657,'wp-content/themes/Divi/core/components/api/spam/Provider.php'),(5658,'wp-content/themes/Divi/core/components/api/spam/Providers.php'),(5659,'wp-content/themes/Divi/core/components/api/spam/ReCaptcha.php'),(5660,'wp-content/themes/Divi/core/components/api/spam/init.php'),(5661,'wp-content/themes/Divi/core/components/cache/Directory.php'),(5662,'wp-content/themes/Divi/core/components/cache/File.php'),(5663,'wp-content/themes/Divi/core/components/cache/init.php'),(5664,'wp-content/themes/Divi/core/components/data/ScriptReplacer.php'),(5665,'wp-content/themes/Divi/core/components/data/Utils.php'),(5666,'wp-content/themes/Divi/core/components/data/init.php'),(5667,'wp-content/themes/Divi/core/components/init.php'),(5668,'wp-content/themes/Divi/core/components/lib/BluehostCache.php'),(5669,'wp-content/themes/Divi/core/components/lib/OAuth.php'),(5670,'wp-content/themes/Divi/core/components/lib/SilentThemeUpgraderSkin.php'),(5671,'wp-content/themes/Divi/core/components/lib/WPHttp.php'),(5672,'wp-content/themes/Divi/core/components/mu-plugins/SupportCenterSafeModeDisableChildThemes.php'),(5673,'wp-content/themes/Divi/core/components/mu-plugins/SupportCenterSafeModeDisablePlugins.php'),(5674,'wp-content/themes/Divi/core/components/post/Object.php'),(5675,'wp-content/themes/Divi/core/components/post/Query.php'),(5676,'wp-content/themes/Divi/core/components/post/Taxonomy.php'),(5677,'wp-content/themes/Divi/core/components/post/Type.php'),(5678,'wp-content/themes/Divi/core/functions.php'),(5679,'wp-content/themes/Divi/core/i18n/library.php'),(5680,'wp-content/themes/Divi/core/init.php'),(5681,'wp-content/themes/Divi/core/item-library-local/ItemLibraryLocal.php'),(5682,'wp-content/themes/Divi/core/php_functions.php'),(5683,'wp-content/themes/Divi/core/updates_init.php'),(5684,'wp-content/themes/Divi/core/wp_functions.php'),(5685,'wp-content/themes/Divi/css/tinymce-skin/fonts/tinymce-small.svg'),(5686,'wp-content/themes/Divi/css/tinymce-skin/fonts/tinymce.svg'),(5687,'wp-content/themes/Divi/epanel/build/et-theme-options-library-app.bundle.js'),(5688,'wp-content/themes/Divi/epanel/core_functions.php'),(5689,'wp-content/themes/Divi/epanel/custom_functions.php'),(5690,'wp-content/themes/Divi/epanel/google-fonts/et_google_fonts.js'),(5691,'wp-content/themes/Divi/epanel/i18n/epanel.php'),(5692,'wp-content/themes/Divi/epanel/i18n/library.php'),(5693,'wp-content/themes/Divi/epanel/js/checkbox.js'),(5694,'wp-content/themes/Divi/epanel/js/colorpicker.js'),(5695,'wp-content/themes/Divi/epanel/js/custom_uploader.js'),(5696,'wp-content/themes/Divi/epanel/js/eye.js'),(5697,'wp-content/themes/Divi/epanel/js/functions-init.js'),(5698,'wp-content/themes/Divi/epanel/js/layout.js'),(5699,'wp-content/themes/Divi/epanel/js/wp-color-picker-alpha.min.js'),(5700,'wp-content/themes/Divi/epanel/shortcodes/js/editor_plugin.js'),(5701,'wp-content/themes/Divi/epanel/shortcodes/js/editor_plugin.min.js'),(5702,'wp-content/themes/Divi/epanel/shortcodes/js/et_shortcodes_frontend.js'),(5703,'wp-content/themes/Divi/epanel/shortcodes/shortcodes.php'),(5704,'wp-content/themes/Divi/epanel/theme-options-library/ThemeOptionsLibrary.php'),(5705,'wp-content/themes/Divi/epanel/theme-options-library/api.php'),(5706,'wp-content/themes/Divi/epanel/theme-options-library/app/boot.js'),(5707,'wp-content/themes/Divi/epanel/theme-options-library/app/lib/config.js'),(5708,'wp-content/themes/Divi/epanel/theme-options-library/app/lib/constants.js'),(5709,'wp-content/themes/Divi/epanel/theme-options-library/app/lib/i18n.js'),(5710,'wp-content/themes/Divi/epanel/theme-options-library/app/lib/request.js'),(5711,'wp-content/themes/Divi/epanel/theme-options-library/app/lib/theme-options-library.js'),(5712,'wp-content/themes/Divi/epanel/theme-options-library/app/lib/theme-options-utils.js'),(5713,'wp-content/themes/Divi/epanel/theme-options-library/app/store/index.js'),(5714,'wp-content/themes/Divi/epanel/theme-options-library/app/store/theme-options-library/actions.js'),(5715,'wp-content/themes/Divi/epanel/theme-options-library/app/store/theme-options-library/module.js'),(5716,'wp-content/themes/Divi/epanel/theme-options-library/app/store/theme-options-library/providers.js'),(5717,'wp-content/themes/Divi/epanel/theme-options-library/app/store/theme-options-library/sequences.js'),(5718,'wp-content/themes/Divi/epanel/theme-options-library/constants.php'),(5719,'wp-content/themes/Divi/epanel/theme-options-library/post/type/ThemeOptions.php'),(5720,'wp-content/themes/Divi/epanel/theme-options-library/theme-options-library-app.php'),(5721,'wp-content/themes/Divi/epanel/theme-options-library/theme-options-library-local/ThemeOptionsLibraryLocal.php'),(5722,'wp-content/themes/Divi/epanel/theme-options-library/theme-options.php'),(5723,'wp-content/themes/Divi/et-pagebuilder/et-pagebuilder.php'),(5724,'wp-content/themes/Divi/footer.php'),(5725,'wp-content/themes/Divi/functions.php'),(5726,'wp-content/themes/Divi/header.php'),(5727,'wp-content/themes/Divi/includes/block-editor-integration.php'),(5728,'wp-content/themes/Divi/includes/builder/_et_builder_version.php'),(5729,'wp-content/themes/Divi/includes/builder/ab-testing.php'),(5730,'wp-content/themes/Divi/includes/builder/api/DiviExtension.php'),(5731,'wp-content/themes/Divi/includes/builder/api/DiviExtensions.php'),(5732,'wp-content/themes/Divi/includes/builder/api/rest/BlockLayout.php'),(5733,'wp-content/themes/Divi/includes/builder/autoload.php'),(5734,'wp-content/themes/Divi/includes/builder/class-et-builder-dynamic-assets-feature.php'),(5735,'wp-content/themes/Divi/includes/builder/class-et-builder-element.php'),(5736,'wp-content/themes/Divi/includes/builder/class-et-builder-global-feature-base.php'),(5737,'wp-content/themes/Divi/includes/builder/class-et-builder-google-fonts-feature.php'),(5738,'wp-content/themes/Divi/includes/builder/class-et-builder-module-features.php'),(5739,'wp-content/themes/Divi/includes/builder/class-et-builder-module-shortcode-manager.php'),(5740,'wp-content/themes/Divi/includes/builder/class-et-builder-module-use-detection.php'),(5741,'wp-content/themes/Divi/includes/builder/class-et-builder-plugin-compat-base.php'),(5742,'wp-content/themes/Divi/includes/builder/class-et-builder-plugin-compat-loader.php'),(5743,'wp-content/themes/Divi/includes/builder/class-et-builder-post-feature-base.php'),(5744,'wp-content/themes/Divi/includes/builder/class-et-builder-settings.php'),(5745,'wp-content/themes/Divi/includes/builder/class-et-builder-theme-compat-base.php'),(5746,'wp-content/themes/Divi/includes/builder/class-et-builder-theme-compat-handler.php'),(5747,'wp-content/themes/Divi/includes/builder/class-et-builder-value.php'),(5748,'wp-content/themes/Divi/includes/builder/class-et-global-settings.php'),(5749,'wp-content/themes/Divi/includes/builder/comments_template.php'),(5750,'wp-content/themes/Divi/includes/builder/compat/early.php'),(5751,'wp-content/themes/Divi/includes/builder/compat/scripts.php'),(5752,'wp-content/themes/Divi/includes/builder/compat/woocommerce.php'),(5753,'wp-content/themes/Divi/includes/builder/conditions.php'),(5754,'wp-content/themes/Divi/includes/builder/core.php'),(5755,'wp-content/themes/Divi/includes/builder/deprecations.php'),(5756,'wp-content/themes/Divi/includes/builder/feature/AjaxCache.php'),(5757,'wp-content/themes/Divi/includes/builder/feature/BlockEditorIntegration.php'),(5758,'wp-content/themes/Divi/includes/builder/feature/ClassicEditor.php'),(5759,'wp-content/themes/Divi/includes/builder/feature/CriticalCSS.php'),(5760,'wp-content/themes/Divi/includes/builder/feature/DoNotCachePage.php'),(5761,'wp-content/themes/Divi/includes/builder/feature/ErrorReport.php'),(5762,'wp-content/themes/Divi/includes/builder/feature/I18n.php'),(5763,'wp-content/themes/Divi/includes/builder/feature/JQueryBody.php'),(5764,'wp-content/themes/Divi/includes/builder/feature/Library.php'),(5765,'wp-content/themes/Divi/includes/builder/feature/SplitLibrary.php'),(5766,'wp-content/themes/Divi/includes/builder/feature/ai-button.php'),(5767,'wp-content/themes/Divi/includes/builder/feature/ajax-data/AjaxData.php'),(5768,'wp-content/themes/Divi/includes/builder/feature/background-masks/BackgroundMaskOptions.php'),(5769,'wp-content/themes/Divi/includes/builder/feature/background-masks/BackgroundMaskStyleBase.php'),(5770,'wp-content/themes/Divi/includes/builder/feature/background-masks/BackgroundMaskStyleFactory.php'),(5771,'wp-content/themes/Divi/includes/builder/feature/background-masks/BackgroundPatternOptions.php'),(5772,'wp-content/themes/Divi/includes/builder/feature/background-masks/BackgroundPatternStyleBase.php'),(5773,'wp-content/themes/Divi/includes/builder/feature/background-masks/BackgroundPatternStyleFactory.php'),(5774,'wp-content/themes/Divi/includes/builder/feature/background-masks/Functions.php'),(5775,'wp-content/themes/Divi/includes/builder/feature/background-masks/MaskFields.php'),(5776,'wp-content/themes/Divi/includes/builder/feature/background-masks/PatternFields.php'),(5777,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/arch.php'),(5778,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/bean.php'),(5779,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/blades.php'),(5780,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/caret.php'),(5781,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/chevrons.php'),(5782,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/corner-blob.php'),(5783,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/corner-lake.php'),(5784,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/corner-paint.php'),(5785,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/corner-pill.php'),(5786,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/corner-square.php'),(5787,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/diagonal-bars-2.php'),(5788,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/diagonal-bars.php'),(5789,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/diagonal-pills.php'),(5790,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/diagonal.php'),(5791,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/ellipse.php'),(5792,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/floating-squares.php'),(5793,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/honeycomb.php'),(5794,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/layer-blob.php'),(5795,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/paint.php'),(5796,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/rock-stack.php'),(5797,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/square-stripes.php'),(5798,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/triangles.php'),(5799,'wp-content/themes/Divi/includes/builder/feature/background-masks/mask/wave.php'),(5800,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/3d-diamonds.php'),(5801,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/checkerboard.php'),(5802,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/confetti.php'),(5803,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/crosses.php'),(5804,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/cubes.php'),(5805,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/diagonal-stripes-2.php'),(5806,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/diagonal-stripes.php'),(5807,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/diamonds.php'),(5808,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/honeycomb.php'),(5809,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/inverted-chevrons-2.php'),(5810,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/inverted-chevrons.php'),(5811,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/ogees.php'),(5812,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/pills.php'),(5813,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/pinwheel.php'),(5814,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/polka-dots.php'),(5815,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/scallops.php'),(5816,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/shippo.php'),(5817,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/smiles.php'),(5818,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/squares.php'),(5819,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/triangles.php'),(5820,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/tufted.php'),(5821,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/waves.php'),(5822,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/zig-zag-2.php'),(5823,'wp-content/themes/Divi/includes/builder/feature/background-masks/pattern/zig-zag.php'),(5824,'wp-content/themes/Divi/includes/builder/feature/content-retriever/ContentRetriever.php'),(5825,'wp-content/themes/Divi/includes/builder/feature/content-retriever/retrievers/PageContentRetriever.php'),(5826,'wp-content/themes/Divi/includes/builder/feature/display-conditions/DisplayConditions.php'),(5827,'wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/easypiechart.js'),(5828,'wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/jquery.fitvids.js'),(5829,'wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/jquery.mobile.js'),(5830,'wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/magnific-popup.js'),(5831,'wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/motion-effects.js'),(5832,'wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/salvattore.js'),(5833,'wp-content/themes/Divi/includes/builder/feature/dynamic-assets/assets/js/sticky-elements.js'),(5834,'wp-content/themes/Divi/includes/builder/feature/dynamic-assets/class-dynamic-assets.php'),(5835,'wp-content/themes/Divi/includes/builder/feature/dynamic-assets/dynamic-assets.php'),(5836,'wp-content/themes/Divi/includes/builder/feature/dynamic-content.php'),(5837,'wp-content/themes/Divi/includes/builder/feature/et-server-frame.php'),(5838,'wp-content/themes/Divi/includes/builder/feature/global-presets/History.php'),(5839,'wp-content/themes/Divi/includes/builder/feature/global-presets/Settings.php'),(5840,'wp-content/themes/Divi/includes/builder/feature/gutenberg/BlockTemplates.php'),(5841,'wp-content/themes/Divi/includes/builder/feature/gutenberg/EditorTypography.php'),(5842,'wp-content/themes/Divi/includes/builder/feature/gutenberg/blocks/Layout.php'),(5843,'wp-content/themes/Divi/includes/builder/feature/gutenberg/blocks/PostExcerpt.php'),(5844,'wp-content/themes/Divi/includes/builder/feature/gutenberg/utils/Conversion.php'),(5845,'wp-content/themes/Divi/includes/builder/feature/gutenberg/utils/Editor.php'),(5846,'wp-content/themes/Divi/includes/builder/feature/icon-manager/ExtendedFontIcons.php'),(5847,'wp-content/themes/Divi/includes/builder/feature/local-library.php'),(5848,'wp-content/themes/Divi/includes/builder/feature/post-content.php'),(5849,'wp-content/themes/Divi/includes/builder/feature/search-posts.php'),(5850,'wp-content/themes/Divi/includes/builder/feature/window.php'),(5851,'wp-content/themes/Divi/includes/builder/feature/woocommerce/placeholder/WoocommerceProductSimplePlaceholder.php'),(5852,'wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/cart/cart-totals.php'),(5853,'wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/cart/cart.php'),(5854,'wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/cart/cross-sells.php'),(5855,'wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/checkout/form-checkout.php'),(5856,'wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/checkout/form-login.php'),(5857,'wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/checkout/payment-method.php'),(5858,'wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/checkout/payment.php'),(5859,'wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/checkout/review-order.php'),(5860,'wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/global/form-login-fe.php'),(5861,'wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/global/form-login.php'),(5862,'wp-content/themes/Divi/includes/builder/feature/woocommerce/templates/global/quantity-input.php'),(5863,'wp-content/themes/Divi/includes/builder/feature/woocommerce-modules.php'),(5864,'wp-content/themes/Divi/includes/builder/framework.php'),(5865,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/backports/hooks.js'),(5866,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/css/mediaelement-images/bigplay.svg'),(5867,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/css/mediaelement-images/controls.svg'),(5868,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/scripts/failure_notice.js'),(5869,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/scripts/src/failure_notice.js'),(5870,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/advlist/plugin.min.js'),(5871,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/anchor/plugin.min.js'),(5872,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autolink/plugin.min.js'),(5873,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autoresize/plugin.min.js'),(5874,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/autosave/plugin.min.js'),(5875,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/bbcode/plugin.min.js'),(5876,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/charmap/plugin.min.js'),(5877,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/code/plugin.min.js'),(5878,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/codesample/plugin.min.js'),(5879,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/colorpicker/plugin.min.js'),(5880,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/contextmenu/plugin.min.js'),(5881,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/directionality/plugin.min.js'),(5882,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/emoticons/plugin.min.js'),(5883,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/fullpage/plugin.min.js'),(5884,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/fullscreen/plugin.min.js'),(5885,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/help/plugin.min.js'),(5886,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/hr/plugin.min.js'),(5887,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/image/plugin.min.js'),(5888,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/imagetools/plugin.min.js'),(5889,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/importcss/plugin.min.js'),(5890,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/insertdatetime/plugin.min.js'),(5891,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/legacyoutput/plugin.min.js'),(5892,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/link/plugin.min.js'),(5893,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/lists/plugin.min.js'),(5894,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/media/plugin.min.js'),(5895,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/nonbreaking/plugin.min.js'),(5896,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/noneditable/plugin.min.js'),(5897,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/pagebreak/plugin.min.js'),(5898,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/paste/plugin.min.js'),(5899,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/preview/plugin.min.js'),(5900,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/print/plugin.min.js'),(5901,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/save/plugin.min.js'),(5902,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/searchreplace/plugin.min.js'),(5903,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/spellchecker/plugin.min.js'),(5904,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/tabfocus/plugin.min.js'),(5905,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/table/plugin.min.js'),(5906,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/template/plugin.min.js'),(5907,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/textcolor/plugin.min.js'),(5908,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/textpattern/plugin.min.js'),(5909,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/toc/plugin.min.js'),(5910,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/visualblocks/plugin.min.js'),(5911,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/visualchars/plugin.min.js'),(5912,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/wordcount/plugin.min.js'),(5913,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/plugins/wpview/plugin.min.js'),(5914,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce-small.svg'),(5915,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce.svg'),(5916,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/themes/inlite/theme.min.js'),(5917,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/themes/mobile/theme.min.js'),(5918,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/themes/modern/theme.min.js'),(5919,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce-small.svg'),(5920,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce.svg'),(5921,'wp-content/themes/Divi/includes/builder/frontend-builder/assets/vendors/tinymce.min.js'),(5922,'wp-content/themes/Divi/includes/builder/frontend-builder/assets.php'),(5923,'wp-content/themes/Divi/includes/builder/frontend-builder/bfb-template.php'),(5924,'wp-content/themes/Divi/includes/builder/frontend-builder/build/boot.js'),(5925,'wp-content/themes/Divi/includes/builder/frontend-builder/build/bundle.devtools.e28cce0b.js'),(5926,'wp-content/themes/Divi/includes/builder/frontend-builder/build/bundle.js'),(5927,'wp-content/themes/Divi/includes/builder/frontend-builder/build/bundle.js.LICENSE.txt'),(5928,'wp-content/themes/Divi/includes/builder/frontend-builder/build/bundle.modals.6e47b623.js'),(5929,'wp-content/themes/Divi/includes/builder/frontend-builder/build/bundle.modals.6e47b623.js.LICENSE.txt'),(5930,'wp-content/themes/Divi/includes/builder/frontend-builder/build/delayed-update.worker.worker.js'),(5931,'wp-content/themes/Divi/includes/builder/frontend-builder/build/frame-helpers.js'),(5932,'wp-content/themes/Divi/includes/builder/frontend-builder/build/frontend-builder-preview.js'),(5933,'wp-content/themes/Divi/includes/builder/frontend-builder/build/frontend-builder-scripts.js.LICENSE.txt'),(5934,'wp-content/themes/Divi/includes/builder/frontend-builder/build/gutenberg.js'),(5935,'wp-content/themes/Divi/includes/builder/frontend-builder/build/gutenberg.js.LICENSE.txt'),(5936,'wp-content/themes/Divi/includes/builder/frontend-builder/build/preboot.js'),(5937,'wp-content/themes/Divi/includes/builder/frontend-builder/build/preboot.js.LICENSE.txt'),(5938,'wp-content/themes/Divi/includes/builder/frontend-builder/build/theme-builder.js'),(5939,'wp-content/themes/Divi/includes/builder/frontend-builder/build/theme-builder.js.LICENSE.txt'),(5940,'wp-content/themes/Divi/includes/builder/frontend-builder/helpers.php'),(5941,'wp-content/themes/Divi/includes/builder/frontend-builder/i18n/display-conditions.php'),(5942,'wp-content/themes/Divi/includes/builder/frontend-builder/i18n/generic.php'),(5943,'wp-content/themes/Divi/includes/builder/frontend-builder/i18n/portability.php'),(5944,'wp-content/themes/Divi/includes/builder/frontend-builder/i18n/quick-actions.php'),(5945,'wp-content/themes/Divi/includes/builder/frontend-builder/i18n/theme-builder.php'),(5946,'wp-content/themes/Divi/includes/builder/frontend-builder/i18n.php'),(5947,'wp-content/themes/Divi/includes/builder/frontend-builder/init.php'),(5948,'wp-content/themes/Divi/includes/builder/frontend-builder/rtl.php'),(5949,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/LocalLibraryItem.php'),(5950,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/LocalLibraryItemEditor.php'),(5951,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/TBItemLibrary.php'),(5952,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/ThemeBuilderApiErrors.php'),(5953,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/ThemeBuilderRequest.php'),(5954,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/WoocommerceProductVariablePlaceholder.php'),(5955,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/WoocommerceProductVariablePlaceholderDataStoreCPT.php'),(5956,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/WoocommerceProductVariationPlaceholder.php'),(5957,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/admin.php'),(5958,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/api.php'),(5959,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/constants.php'),(5960,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/dynamic-content.php'),(5961,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/frontend-body-template.php'),(5962,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/frontend-footer-template.php'),(5963,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/frontend-header-template.php'),(5964,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/frontend.php'),(5965,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/local-library.php'),(5966,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/post/query/TBItems.php'),(5967,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/post/taxonomy/TBItemCategory.php'),(5968,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/post/taxonomy/TBItemTag.php'),(5969,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/post/taxonomy/TBItemType.php'),(5970,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/post/type/TBItem.php'),(5971,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/template-setting-validations.php'),(5972,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/theme-builder-library-local/ThemeBuilderLibraryLocal.php'),(5973,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/theme-builder-library.php'),(5974,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/theme-builder.php'),(5975,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/woocommerce.php'),(5976,'wp-content/themes/Divi/includes/builder/frontend-builder/theme-builder/wpml.php'),(5977,'wp-content/themes/Divi/includes/builder/frontend-builder/view.php'),(5978,'wp-content/themes/Divi/includes/builder/functions.php'),(5979,'wp-content/themes/Divi/includes/builder/images/library-global.svg'),(5980,'wp-content/themes/Divi/includes/builder/images/library-layout.svg'),(5981,'wp-content/themes/Divi/includes/builder/images/menu.svg'),(5982,'wp-content/themes/Divi/includes/builder/images/stats-no-data.svg'),(5983,'wp-content/themes/Divi/includes/builder/images/stats.svg'),(5984,'wp-content/themes/Divi/includes/builder/main-structure-elements.php'),(5985,'wp-content/themes/Divi/includes/builder/module/Accordion.php'),(5986,'wp-content/themes/Divi/includes/builder/module/AccordionItem.php'),(5987,'wp-content/themes/Divi/includes/builder/module/Audio.php'),(5988,'wp-content/themes/Divi/includes/builder/module/BarCounters.php'),(5989,'wp-content/themes/Divi/includes/builder/module/BarCountersItem.php'),(5990,'wp-content/themes/Divi/includes/builder/module/Blog.php'),(5991,'wp-content/themes/Divi/includes/builder/module/Blurb.php'),(5992,'wp-content/themes/Divi/includes/builder/module/Button.php'),(5993,'wp-content/themes/Divi/includes/builder/module/CircleCounter.php'),(5994,'wp-content/themes/Divi/includes/builder/module/Code.php'),(5995,'wp-content/themes/Divi/includes/builder/module/Comments.php'),(5996,'wp-content/themes/Divi/includes/builder/module/ContactForm.php'),(5997,'wp-content/themes/Divi/includes/builder/module/ContactFormItem.php'),(5998,'wp-content/themes/Divi/includes/builder/module/CountdownTimer.php'),(5999,'wp-content/themes/Divi/includes/builder/module/Cta.php'),(6000,'wp-content/themes/Divi/includes/builder/module/Divider.php'),(6001,'wp-content/themes/Divi/includes/builder/module/FilterablePortfolio.php'),(6002,'wp-content/themes/Divi/includes/builder/module/FullwidthCode.php'),(6003,'wp-content/themes/Divi/includes/builder/module/FullwidthHeader.php'),(6004,'wp-content/themes/Divi/includes/builder/module/FullwidthImage.php'),(6005,'wp-content/themes/Divi/includes/builder/module/FullwidthMap.php'),(6006,'wp-content/themes/Divi/includes/builder/module/FullwidthMenu.php'),(6007,'wp-content/themes/Divi/includes/builder/module/FullwidthPortfolio.php'),(6008,'wp-content/themes/Divi/includes/builder/module/FullwidthPostContent.php'),(6009,'wp-content/themes/Divi/includes/builder/module/FullwidthPostSlider.php'),(6010,'wp-content/themes/Divi/includes/builder/module/FullwidthPostTitle.php'),(6011,'wp-content/themes/Divi/includes/builder/module/FullwidthSlider.php'),(6012,'wp-content/themes/Divi/includes/builder/module/Gallery.php'),(6013,'wp-content/themes/Divi/includes/builder/module/Heading.php'),(6014,'wp-content/themes/Divi/includes/builder/module/Icon.php'),(6015,'wp-content/themes/Divi/includes/builder/module/Image.php'),(6016,'wp-content/themes/Divi/includes/builder/module/Login.php'),(6017,'wp-content/themes/Divi/includes/builder/module/Map.php'),(6018,'wp-content/themes/Divi/includes/builder/module/MapItem.php'),(6019,'wp-content/themes/Divi/includes/builder/module/Menu.php'),(6020,'wp-content/themes/Divi/includes/builder/module/NumberCounter.php'),(6021,'wp-content/themes/Divi/includes/builder/module/Portfolio.php'),(6022,'wp-content/themes/Divi/includes/builder/module/PostContent.php'),(6023,'wp-content/themes/Divi/includes/builder/module/PostSlider.php'),(6024,'wp-content/themes/Divi/includes/builder/module/PostTitle.php'),(6025,'wp-content/themes/Divi/includes/builder/module/PostsNavigation.php'),(6026,'wp-content/themes/Divi/includes/builder/module/PricingTables.php'),(6027,'wp-content/themes/Divi/includes/builder/module/PricingTablesItem.php'),(6028,'wp-content/themes/Divi/includes/builder/module/Search.php'),(6029,'wp-content/themes/Divi/includes/builder/module/Sidebar.php'),(6030,'wp-content/themes/Divi/includes/builder/module/Signup.php'),(6031,'wp-content/themes/Divi/includes/builder/module/SignupItem.php'),(6032,'wp-content/themes/Divi/includes/builder/module/Slider.php'),(6033,'wp-content/themes/Divi/includes/builder/module/SliderItem.php'),(6034,'wp-content/themes/Divi/includes/builder/module/SocialMediaFollow.php'),(6035,'wp-content/themes/Divi/includes/builder/module/SocialMediaFollowItem.php'),(6036,'wp-content/themes/Divi/includes/builder/module/Tabs.php'),(6037,'wp-content/themes/Divi/includes/builder/module/TabsItem.php'),(6038,'wp-content/themes/Divi/includes/builder/module/TeamMember.php'),(6039,'wp-content/themes/Divi/includes/builder/module/Testimonial.php'),(6040,'wp-content/themes/Divi/includes/builder/module/Text.php'),(6041,'wp-content/themes/Divi/includes/builder/module/Toggle.php'),(6042,'wp-content/themes/Divi/includes/builder/module/Video.php'),(6043,'wp-content/themes/Divi/includes/builder/module/VideoSlider.php'),(6044,'wp-content/themes/Divi/includes/builder/module/VideoSliderItem.php'),(6045,'wp-content/themes/Divi/includes/builder/module/field/Base.php'),(6046,'wp-content/themes/Divi/includes/builder/module/field/Border.php'),(6047,'wp-content/themes/Divi/includes/builder/module/field/BoxShadow.php'),(6048,'wp-content/themes/Divi/includes/builder/module/field/DisplayConditions.php'),(6049,'wp-content/themes/Divi/includes/builder/module/field/Divider.php'),(6050,'wp-content/themes/Divi/includes/builder/module/field/Factory.php'),(6051,'wp-content/themes/Divi/includes/builder/module/field/Height.php'),(6052,'wp-content/themes/Divi/includes/builder/module/field/MaxWidth.php'),(6053,'wp-content/themes/Divi/includes/builder/module/field/Overflow.php'),(6054,'wp-content/themes/Divi/includes/builder/module/field/Position.php'),(6055,'wp-content/themes/Divi/includes/builder/module/field/Scroll.php'),(6056,'wp-content/themes/Divi/includes/builder/module/field/Sticky.php'),(6057,'wp-content/themes/Divi/includes/builder/module/field/TextShadow.php'),(6058,'wp-content/themes/Divi/includes/builder/module/field/Transform.php'),(6059,'wp-content/themes/Divi/includes/builder/module/field/attribute/composite/Parser.php'),(6060,'wp-content/themes/Divi/includes/builder/module/field/attribute/composite/type/Tabbed.php'),(6061,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/Author.php'),(6062,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/Browser.php'),(6063,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/CartContents.php'),(6064,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/Categories.php'),(6065,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/CategoryPage.php'),(6066,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/Cookie.php'),(6067,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/CustomField.php'),(6068,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/DateArchive.php'),(6069,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/DateTime.php'),(6070,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/DynamicPosts.php'),(6071,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/LoggedInStatus.php'),(6072,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/NumberOfViews.php'),(6073,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/OperatingSystem.php'),(6074,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/PageVisit.php'),(6075,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/PostType.php'),(6076,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/ProductPurchase.php'),(6077,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/ProductStock.php'),(6078,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/SearchResults.php'),(6079,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/TagPage.php'),(6080,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/Tags.php'),(6081,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/UrlParameter.php'),(6082,'wp-content/themes/Divi/includes/builder/module/field/display-conditions/UserRole.php'),(6083,'wp-content/themes/Divi/includes/builder/module/field/template/Base.php'),(6084,'wp-content/themes/Divi/includes/builder/module/field/template/Tabbed.php'),(6085,'wp-content/themes/Divi/includes/builder/module/field/template/border/Radius.php'),(6086,'wp-content/themes/Divi/includes/builder/module/field/template/border/Styles.php'),(6087,'wp-content/themes/Divi/includes/builder/module/helpers/Alignment.php'),(6088,'wp-content/themes/Divi/includes/builder/module/helpers/Background.php'),(6089,'wp-content/themes/Divi/includes/builder/module/helpers/BackgroundLayout.php'),(6090,'wp-content/themes/Divi/includes/builder/module/helpers/Font.php'),(6091,'wp-content/themes/Divi/includes/builder/module/helpers/Height.php'),(6092,'wp-content/themes/Divi/includes/builder/module/helpers/HoverOptions.php'),(6093,'wp-content/themes/Divi/includes/builder/module/helpers/MaxHeight.php'),(6094,'wp-content/themes/Divi/includes/builder/module/helpers/MaxWidth.php'),(6095,'wp-content/themes/Divi/includes/builder/module/helpers/Media.php'),(6096,'wp-content/themes/Divi/includes/builder/module/helpers/MinHeight.php'),(6097,'wp-content/themes/Divi/includes/builder/module/helpers/MultiValue.php'),(6098,'wp-content/themes/Divi/includes/builder/module/helpers/MultiViewOptions.php'),(6099,'wp-content/themes/Divi/includes/builder/module/helpers/OptionTemplate.php'),(6100,'wp-content/themes/Divi/includes/builder/module/helpers/Overflow.php'),(6101,'wp-content/themes/Divi/includes/builder/module/helpers/Overlay.php'),(6102,'wp-content/themes/Divi/includes/builder/module/helpers/ResponsiveOptions.php'),(6103,'wp-content/themes/Divi/includes/builder/module/helpers/Sizing.php'),(6104,'wp-content/themes/Divi/includes/builder/module/helpers/Slider.php'),(6105,'wp-content/themes/Divi/includes/builder/module/helpers/StickyOptions.php'),(6106,'wp-content/themes/Divi/includes/builder/module/helpers/StyleProcessor.php'),(6107,'wp-content/themes/Divi/includes/builder/module/helpers/TransitionOptions.php'),(6108,'wp-content/themes/Divi/includes/builder/module/helpers/Width.php'),(6109,'wp-content/themes/Divi/includes/builder/module/helpers/WoocommerceModules.php'),(6110,'wp-content/themes/Divi/includes/builder/module/helpers/motion/Blur.php'),(6111,'wp-content/themes/Divi/includes/builder/module/helpers/motion/Motions.php'),(6112,'wp-content/themes/Divi/includes/builder/module/helpers/motion/Opacity.php'),(6113,'wp-content/themes/Divi/includes/builder/module/helpers/motion/Rotate.php'),(6114,'wp-content/themes/Divi/includes/builder/module/helpers/motion/Sanitizer.php'),(6115,'wp-content/themes/Divi/includes/builder/module/helpers/motion/Scale.php'),(6116,'wp-content/themes/Divi/includes/builder/module/helpers/motion/Translate.php'),(6117,'wp-content/themes/Divi/includes/builder/module/settings/Migration.php'),(6118,'wp-content/themes/Divi/includes/builder/module/settings/migration/Animation.php'),(6119,'wp-content/themes/Divi/includes/builder/module/settings/migration/BackgroundGradientOverlaysImage.php'),(6120,'wp-content/themes/Divi/includes/builder/module/settings/migration/BackgroundGradientStops.php'),(6121,'wp-content/themes/Divi/includes/builder/module/settings/migration/BackgroundUI.php'),(6122,'wp-content/themes/Divi/includes/builder/module/settings/migration/BorderOptions.php'),(6123,'wp-content/themes/Divi/includes/builder/module/settings/migration/ColumnOptions.php'),(6124,'wp-content/themes/Divi/includes/builder/module/settings/migration/ContactFormItemOptionsSerialization.php'),(6125,'wp-content/themes/Divi/includes/builder/module/settings/migration/ContactFormUniqueID.php'),(6126,'wp-content/themes/Divi/includes/builder/module/settings/migration/DiscontinueHtmlEncoding.php'),(6127,'wp-content/themes/Divi/includes/builder/module/settings/migration/DividerHeight.php'),(6128,'wp-content/themes/Divi/includes/builder/module/settings/migration/DropShadowToBoxShadow.php'),(6129,'wp-content/themes/Divi/includes/builder/module/settings/migration/EmailOptinContent.php'),(6130,'wp-content/themes/Divi/includes/builder/module/settings/migration/FilterOptions.php'),(6131,'wp-content/themes/Divi/includes/builder/module/settings/migration/FullwidthHeader.php'),(6132,'wp-content/themes/Divi/includes/builder/module/settings/migration/FullwidthHeader2.php'),(6133,'wp-content/themes/Divi/includes/builder/module/settings/migration/HoverOptions.php'),(6134,'wp-content/themes/Divi/includes/builder/module/settings/migration/IconManager.php'),(6135,'wp-content/themes/Divi/includes/builder/module/settings/migration/InnerShadowToBoxShadow.php'),(6136,'wp-content/themes/Divi/includes/builder/module/settings/migration/OptionsHarmony.php'),(6137,'wp-content/themes/Divi/includes/builder/module/settings/migration/OptionsHarmony2.php'),(6138,'wp-content/themes/Divi/includes/builder/module/settings/migration/RowCustomWidthToSizing.php'),(6139,'wp-content/themes/Divi/includes/builder/module/settings/migration/RowZeroGutter.php'),(6140,'wp-content/themes/Divi/includes/builder/module/settings/migration/ShopModuleSlugs.php'),(6141,'wp-content/themes/Divi/includes/builder/module/settings/migration/ShopOrderByDefault.php'),(6142,'wp-content/themes/Divi/includes/builder/module/settings/migration/SocialMediaFollowNetworkTwitterToX.php'),(6143,'wp-content/themes/Divi/includes/builder/module/settings/migration/TeamMemberIconHover.php'),(6144,'wp-content/themes/Divi/includes/builder/module/settings/migration/TextAlignment.php'),(6145,'wp-content/themes/Divi/includes/builder/module/settings/migration/UIImprovements.php'),(6146,'wp-content/themes/Divi/includes/builder/module/settings/migration/WooTextOG.php'),(6147,'wp-content/themes/Divi/includes/builder/module/type/PostBased.php'),(6148,'wp-content/themes/Divi/includes/builder/module/type/PostContent.php'),(6149,'wp-content/themes/Divi/includes/builder/module/type/WithSpamProtection.php'),(6150,'wp-content/themes/Divi/includes/builder/module/woocommerce/AddToCart.php'),(6151,'wp-content/themes/Divi/includes/builder/module/woocommerce/AdditionalInfo.php'),(6152,'wp-content/themes/Divi/includes/builder/module/woocommerce/Breadcrumb.php'),(6153,'wp-content/themes/Divi/includes/builder/module/woocommerce/CartNotice.php'),(6154,'wp-content/themes/Divi/includes/builder/module/woocommerce/CartProducts.php'),(6155,'wp-content/themes/Divi/includes/builder/module/woocommerce/CartTotals.php'),(6156,'wp-content/themes/Divi/includes/builder/module/woocommerce/CheckoutAdditionalInfo.php'),(6157,'wp-content/themes/Divi/includes/builder/module/woocommerce/CheckoutBilling.php'),(6158,'wp-content/themes/Divi/includes/builder/module/woocommerce/CheckoutOrderDetails.php'),(6159,'wp-content/themes/Divi/includes/builder/module/woocommerce/CheckoutPaymentInfo.php'),(6160,'wp-content/themes/Divi/includes/builder/module/woocommerce/CheckoutShipping.php'),(6161,'wp-content/themes/Divi/includes/builder/module/woocommerce/CrossSells.php'),(6162,'wp-content/themes/Divi/includes/builder/module/woocommerce/Description.php'),(6163,'wp-content/themes/Divi/includes/builder/module/woocommerce/Gallery.php'),(6164,'wp-content/themes/Divi/includes/builder/module/woocommerce/Images.php'),(6165,'wp-content/themes/Divi/includes/builder/module/woocommerce/Meta.php'),(6166,'wp-content/themes/Divi/includes/builder/module/woocommerce/Price.php'),(6167,'wp-content/themes/Divi/includes/builder/module/woocommerce/Rating.php'),(6168,'wp-content/themes/Divi/includes/builder/module/woocommerce/RelatedProducts.php'),(6169,'wp-content/themes/Divi/includes/builder/module/woocommerce/Reviews.php'),(6170,'wp-content/themes/Divi/includes/builder/module/woocommerce/Shop.php'),(6171,'wp-content/themes/Divi/includes/builder/module/woocommerce/Stock.php'),(6172,'wp-content/themes/Divi/includes/builder/module/woocommerce/Tabs.php'),(6173,'wp-content/themes/Divi/includes/builder/module/woocommerce/Title.php'),(6174,'wp-content/themes/Divi/includes/builder/module/woocommerce/Upsells.php'),(6175,'wp-content/themes/Divi/includes/builder/plugin-compat/advanced-custom-fields-pro.php'),(6176,'wp-content/themes/Divi/includes/builder/plugin-compat/advanced-custom-fields.php'),(6177,'wp-content/themes/Divi/includes/builder/plugin-compat/amazon-s3-and-cloudfront-pro.php'),(6178,'wp-content/themes/Divi/includes/builder/plugin-compat/amazon-s3-and-cloudfront.php'),(6179,'wp-content/themes/Divi/includes/builder/plugin-compat/autoptimize.php'),(6180,'wp-content/themes/Divi/includes/builder/plugin-compat/caldera-forms.php'),(6181,'wp-content/themes/Divi/includes/builder/plugin-compat/cartflows.php'),(6182,'wp-content/themes/Divi/includes/builder/plugin-compat/cdn-enabler.php'),(6183,'wp-content/themes/Divi/includes/builder/plugin-compat/coursepress.php'),(6184,'wp-content/themes/Divi/includes/builder/plugin-compat/divi-filterable-blog-module.php'),(6185,'wp-content/themes/Divi/includes/builder/plugin-compat/divi-module-code-snippet.php'),(6186,'wp-content/themes/Divi/includes/builder/plugin-compat/divi-testimonial-slider.php'),(6187,'wp-content/themes/Divi/includes/builder/plugin-compat/divi_layout_injector.php'),(6188,'wp-content/themes/Divi/includes/builder/plugin-compat/divi_woo_layout_injector.php'),(6189,'wp-content/themes/Divi/includes/builder/plugin-compat/dk-pdf.php'),(6190,'wp-content/themes/Divi/includes/builder/plugin-compat/ds-divi-rocket.php'),(6191,'wp-content/themes/Divi/includes/builder/plugin-compat/easy-digital-downloads.php'),(6192,'wp-content/themes/Divi/includes/builder/plugin-compat/eventon.php'),(6193,'wp-content/themes/Divi/includes/builder/plugin-compat/events-manager.php'),(6194,'wp-content/themes/Divi/includes/builder/plugin-compat/final-tiles-grid-gallery-lite.php'),(6195,'wp-content/themes/Divi/includes/builder/plugin-compat/gravityforms.php'),(6196,'wp-content/themes/Divi/includes/builder/plugin-compat/gravityformssignature.php'),(6197,'wp-content/themes/Divi/includes/builder/plugin-compat/ht-knowledge-base.php'),(6198,'wp-content/themes/Divi/includes/builder/plugin-compat/imagify.php'),(6199,'wp-content/themes/Divi/includes/builder/plugin-compat/insert-pages.php'),(6200,'wp-content/themes/Divi/includes/builder/plugin-compat/jucra-acf-google-maps-for-divi.php'),(6201,'wp-content/themes/Divi/includes/builder/plugin-compat/kvcore-idx.php'),(6202,'wp-content/themes/Divi/includes/builder/plugin-compat/landing-pages.php'),(6203,'wp-content/themes/Divi/includes/builder/plugin-compat/m-chart.php'),(6204,'wp-content/themes/Divi/includes/builder/plugin-compat/mappress-google-maps-for-wordpress.php'),(6205,'wp-content/themes/Divi/includes/builder/plugin-compat/megamenu.php'),(6206,'wp-content/themes/Divi/includes/builder/plugin-compat/modern-events-calendar-lite.php'),(6207,'wp-content/themes/Divi/includes/builder/plugin-compat/nex-forms-express-wp-form-builder.php'),(6208,'wp-content/themes/Divi/includes/builder/plugin-compat/paid-memberships-pro.php'),(6209,'wp-content/themes/Divi/includes/builder/plugin-compat/photo-gallery.php'),(6210,'wp-content/themes/Divi/includes/builder/plugin-compat/pilotpress.php'),(6211,'wp-content/themes/Divi/includes/builder/plugin-compat/popup-maker.php'),(6212,'wp-content/themes/Divi/includes/builder/plugin-compat/relevanssi-premium.php'),(6213,'wp-content/themes/Divi/includes/builder/plugin-compat/relevanssi.php'),(6214,'wp-content/themes/Divi/includes/builder/plugin-compat/scripts/sfwd-lms.js'),(6215,'wp-content/themes/Divi/includes/builder/plugin-compat/scripts/sitepress-multilingual-cms.js'),(6216,'wp-content/themes/Divi/includes/builder/plugin-compat/sellsy.php'),(6217,'wp-content/themes/Divi/includes/builder/plugin-compat/seo-by-rank-math.php'),(6218,'wp-content/themes/Divi/includes/builder/plugin-compat/sfwd-lms.php'),(6219,'wp-content/themes/Divi/includes/builder/plugin-compat/sg-cachepress.php'),(6220,'wp-content/themes/Divi/includes/builder/plugin-compat/siteorigin-panels.php'),(6221,'wp-content/themes/Divi/includes/builder/plugin-compat/sitepress-multilingual-cms.php'),(6222,'wp-content/themes/Divi/includes/builder/plugin-compat/table-of-contents-plus.php'),(6223,'wp-content/themes/Divi/includes/builder/plugin-compat/the-events-calendar-community-events.php'),(6224,'wp-content/themes/Divi/includes/builder/plugin-compat/the-events-calendar.php'),(6225,'wp-content/themes/Divi/includes/builder/plugin-compat/toolbar-publish-button.php'),(6226,'wp-content/themes/Divi/includes/builder/plugin-compat/woo-paypalplus.php'),(6227,'wp-content/themes/Divi/includes/builder/plugin-compat/woocommerce.php'),(6228,'wp-content/themes/Divi/includes/builder/plugin-compat/wordpress-mu-domain-mapping.php'),(6229,'wp-content/themes/Divi/includes/builder/plugin-compat/wordpress-seo.php'),(6230,'wp-content/themes/Divi/includes/builder/plugin-compat/wp-job-manager.php'),(6231,'wp-content/themes/Divi/includes/builder/plugin-compat/wp-responsive-table.php'),(6232,'wp-content/themes/Divi/includes/builder/plugin-compat/wp-rocket.php'),(6233,'wp-content/themes/Divi/includes/builder/plugin-compat/wp-smush-pro.php'),(6234,'wp-content/themes/Divi/includes/builder/plugin-compat/wp-smushit.php'),(6235,'wp-content/themes/Divi/includes/builder/plugin-compat/wp-views.php'),(6236,'wp-content/themes/Divi/includes/builder/plugin-compat/wp3d-models.php'),(6237,'wp-content/themes/Divi/includes/builder/plugin-compat/wpml-sticky-links.php'),(6238,'wp-content/themes/Divi/includes/builder/plugin-compat/yith-woocommerce-dynamic-pricing-and-discounts-premium.php'),(6239,'wp-content/themes/Divi/includes/builder/post/PostStack.php'),(6240,'wp-content/themes/Divi/includes/builder/post/query/Layouts.php'),(6241,'wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutCategory.php'),(6242,'wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutPack.php'),(6243,'wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutScope.php'),(6244,'wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutTag.php'),(6245,'wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutType.php'),(6246,'wp-content/themes/Divi/includes/builder/post/taxonomy/LayoutWidth.php'),(6247,'wp-content/themes/Divi/includes/builder/post/type/Layout.php'),(6248,'wp-content/themes/Divi/includes/builder/scripts/bfb_admin_script.js'),(6249,'wp-content/themes/Divi/includes/builder/scripts/block-layout-frontend-preview.js'),(6250,'wp-content/themes/Divi/includes/builder/scripts/builder.js'),(6251,'wp-content/themes/Divi/includes/builder/scripts/cache_notice.js'),(6252,'wp-content/themes/Divi/includes/builder/scripts/cpt-modules-wrapper.js'),(6253,'wp-content/themes/Divi/includes/builder/scripts/ext/chart.min.js'),(6254,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-1.10.4.custom.min.js'),(6255,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-1.11.4.custom.min.js'),(6256,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-timepicker-addon.js'),(6257,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery.minicolors.js'),(6258,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery.tablesorter.min.js'),(6259,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery.validate.js'),(6260,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery.visible.min.js'),(6261,'wp-content/themes/Divi/includes/builder/scripts/ext/lz-string.min.js'),(6262,'wp-content/themes/Divi/includes/builder/scripts/ext/media-library.js'),(6263,'wp-content/themes/Divi/includes/builder/scripts/ext/waypoints.min.js'),(6264,'wp-content/themes/Divi/includes/builder/scripts/ext/widgets.js'),(6265,'wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha-48.js'),(6266,'wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha-48.min.js'),(6267,'wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha.js'),(6268,'wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha.min.js'),(6269,'wp-content/themes/Divi/includes/builder/scripts/failure_notice.js'),(6270,'wp-content/themes/Divi/includes/builder/scripts/library_category.js'),(6271,'wp-content/themes/Divi/includes/builder/scripts/library_scripts.js'),(6272,'wp-content/themes/Divi/includes/builder/scripts/page-settings-metabox.js'),(6273,'wp-content/themes/Divi/includes/builder/scripts/reset_memory_limit_increase_setting.js'),(6274,'wp-content/themes/Divi/includes/builder/scripts/roles_admin.js'),(6275,'wp-content/themes/Divi/includes/builder/scripts/stores/document.js'),(6276,'wp-content/themes/Divi/includes/builder/scripts/stores/sticky.js'),(6277,'wp-content/themes/Divi/includes/builder/scripts/stores/window.js'),(6278,'wp-content/themes/Divi/includes/builder/scripts/utils/sticky.js'),(6279,'wp-content/themes/Divi/includes/builder/scripts/utils/utils.js'),(6280,'wp-content/themes/Divi/includes/builder/template-preview.php'),(6281,'wp-content/themes/Divi/includes/builder/templates/block-layout-preview.php'),(6282,'wp-content/themes/Divi/includes/builder/templates/block-template-canvas.php'),(6283,'wp-content/themes/Divi/includes/builder/tests/codeception/wpunit/Translations.php'),(6284,'wp-content/themes/Divi/includes/builder/theme-compat/divi-chef.php'),(6285,'wp-content/themes/Divi/includes/functions/choices.php'),(6286,'wp-content/themes/Divi/includes/functions/dynamic-assets.php'),(6287,'wp-content/themes/Divi/includes/functions/installation.php'),(6288,'wp-content/themes/Divi/includes/functions/sanitization.php'),(6289,'wp-content/themes/Divi/includes/functions/sidebars.php'),(6290,'wp-content/themes/Divi/includes/functions/tutorials.php'),(6291,'wp-content/themes/Divi/includes/module-customizer/migrations.php'),(6292,'wp-content/themes/Divi/includes/navigation.php'),(6293,'wp-content/themes/Divi/includes/no-results.php'),(6294,'wp-content/themes/Divi/includes/social_icons.php'),(6295,'wp-content/themes/Divi/includes/theme-builder.php'),(6296,'wp-content/themes/Divi/includes/widgets/widget-about.php'),(6297,'wp-content/themes/Divi/includes/widgets/widget-ads.php'),(6298,'wp-content/themes/Divi/includes/widgets/widget-adsense.php'),(6299,'wp-content/themes/Divi/includes/widgets.php'),(6300,'wp-content/themes/Divi/index.php'),(6301,'wp-content/themes/Divi/js/admin_post_settings.js'),(6302,'wp-content/themes/Divi/js/custom.js'),(6303,'wp-content/themes/Divi/js/custom.unified.js'),(6304,'wp-content/themes/Divi/js/custom.unified.js.LICENSE.txt'),(6305,'wp-content/themes/Divi/js/menu_fix.js'),(6306,'wp-content/themes/Divi/js/scripts.min.js'),(6307,'wp-content/themes/Divi/js/scripts.min.js.LICENSE.txt'),(6308,'wp-content/themes/Divi/js/smoothscroll.js'),(6309,'wp-content/themes/Divi/js/smoothscroll.js.LICENSE.txt'),(6310,'wp-content/themes/Divi/js/theme-customizer-controls.js'),(6311,'wp-content/themes/Divi/js/theme-customizer.js'),(6312,'wp-content/themes/Divi/options_divi.php'),(6313,'wp-content/themes/Divi/page-template-blank.php'),(6314,'wp-content/themes/Divi/page.php'),(6315,'wp-content/themes/Divi/post_thumbnails_divi.php'),(6316,'wp-content/themes/Divi/sidebar-footer.php'),(6317,'wp-content/themes/Divi/sidebar.php'),(6318,'wp-content/themes/Divi/single-et_pb_layout.php'),(6319,'wp-content/themes/Divi/single-project.php'),(6320,'wp-content/themes/Divi/single.php'),(6321,'wp-content/themes/Divi/theme-after-footer.php'),(6322,'wp-content/themes/Divi/theme-after-header.php'),(6323,'wp-content/themes/Divi/theme-after-wrappers.php'),(6324,'wp-content/themes/Divi/theme-before-wrappers.php'),(6325,'wp-content/themes/Divi/theme-footer.php'),(6326,'wp-content/themes/Divi/theme-header.php'),(6327,'wp-content/themes/index.php'),(6328,'wp-content/updraft/index.html'),(6329,'wp-content/updraft/plugins-old/akismet/_inc/akismet.js'),(6330,'wp-content/updraft/plugins-old/akismet/_inc/form.js'),(6331,'wp-content/updraft/plugins-old/akismet/akismet.php'),(6332,'wp-content/updraft/plugins-old/akismet/class.akismet-admin.php'),(6333,'wp-content/updraft/plugins-old/akismet/class.akismet-cli.php'),(6334,'wp-content/updraft/plugins-old/akismet/class.akismet-rest-api.php'),(6335,'wp-content/updraft/plugins-old/akismet/class.akismet-widget.php'),(6336,'wp-content/updraft/plugins-old/akismet/class.akismet.php'),(6337,'wp-content/updraft/plugins-old/akismet/index.php'),(6338,'wp-content/updraft/plugins-old/akismet/views/activate.php'),(6339,'wp-content/updraft/plugins-old/akismet/views/config.php'),(6340,'wp-content/updraft/plugins-old/akismet/views/connect-jp.php'),(6341,'wp-content/updraft/plugins-old/akismet/views/enter.php'),(6342,'wp-content/updraft/plugins-old/akismet/views/get.php'),(6343,'wp-content/updraft/plugins-old/akismet/views/notice.php'),(6344,'wp-content/updraft/plugins-old/akismet/views/predefined.php'),(6345,'wp-content/updraft/plugins-old/akismet/views/setup.php'),(6346,'wp-content/updraft/plugins-old/akismet/views/start.php'),(6347,'wp-content/updraft/plugins-old/akismet/views/stats.php'),(6348,'wp-content/updraft/plugins-old/akismet/views/title.php'),(6349,'wp-content/updraft/plugins-old/akismet/wrapper.php'),(6350,'wp-content/updraft/plugins-old/hello.php'),(6351,'wp-content/updraft/plugins-old/index.php'),(6352,'wp-content/updraft/plugins-old/updraftplus/addons/migrator.php'),(6353,'wp-content/updraft/plugins-old/updraftplus/admin.php'),(6354,'wp-content/updraft/plugins-old/updraftplus/backup.php'),(6355,'wp-content/updraft/plugins-old/updraftplus/central/bootstrap.php'),(6356,'wp-content/updraft/plugins-old/updraftplus/central/classes/class-automatic-upgrader-skin.php'),(6357,'wp-content/updraft/plugins-old/updraftplus/central/commands.php'),(6358,'wp-content/updraft/plugins-old/updraftplus/central/listener.php'),(6359,'wp-content/updraft/plugins-old/updraftplus/central/modules/analytics.php'),(6360,'wp-content/updraft/plugins-old/updraftplus/central/modules/comments.php'),(6361,'wp-content/updraft/plugins-old/updraftplus/central/modules/core.php'),(6362,'wp-content/updraft/plugins-old/updraftplus/central/modules/plugin.php'),(6363,'wp-content/updraft/plugins-old/updraftplus/central/modules/posts.php'),(6364,'wp-content/updraft/plugins-old/updraftplus/central/modules/theme.php'),(6365,'wp-content/updraft/plugins-old/updraftplus/central/modules/updates.php'),(6366,'wp-content/updraft/plugins-old/updraftplus/central/modules/users.php'),(6367,'wp-content/updraft/plugins-old/updraftplus/class-updraftplus.php'),(6368,'wp-content/updraft/plugins-old/updraftplus/example-decrypt.php'),(6369,'wp-content/updraft/plugins-old/updraftplus/includes/Backblaze/CurlClient.php'),(6370,'wp-content/updraft/plugins-old/updraftplus/includes/Dropbox2/API.php'),(6371,'wp-content/updraft/plugins-old/updraftplus/includes/Dropbox2/Exception.php'),(6372,'wp-content/updraft/plugins-old/updraftplus/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php'),(6373,'wp-content/updraft/plugins-old/updraftplus/includes/Dropbox2/OAuth/Consumer/Curl.php'),(6374,'wp-content/updraft/plugins-old/updraftplus/includes/Dropbox2/OAuth/Consumer/WordPress.php'),(6375,'wp-content/updraft/plugins-old/updraftplus/includes/Dropbox2/OAuth/Storage/Encrypter.php'),(6376,'wp-content/updraft/plugins-old/updraftplus/includes/Dropbox2/OAuth/Storage/StorageInterface.php'),(6377,'wp-content/updraft/plugins-old/updraftplus/includes/Dropbox2/OAuth/Storage/WordPress.php'),(6378,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Auth/Abstract.php'),(6379,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Auth/AppIdentity.php'),(6380,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Auth/AssertionCredentials.php'),(6381,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Auth/ComputeEngine.php'),(6382,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Auth/Exception.php'),(6383,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Auth/LoginTicket.php'),(6384,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Auth/OAuth2.php'),(6385,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Auth/Simple.php'),(6386,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Cache/Abstract.php'),(6387,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Cache/Apc.php'),(6388,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Cache/Exception.php'),(6389,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Cache/File.php'),(6390,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Cache/Memcache.php'),(6391,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Cache/Null.php'),(6392,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Client.php'),(6393,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Collection.php'),(6394,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Config.php'),(6395,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Exception.php'),(6396,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Http/Batch.php'),(6397,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Http/CacheParser.php'),(6398,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Http/MediaFileUpload.php'),(6399,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Http/REST.php'),(6400,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Http/Request.php'),(6401,'wp-content/updraft/plugins-old/updraftplus/includes/Google/IO/Abstract.php'),(6402,'wp-content/updraft/plugins-old/updraftplus/includes/Google/IO/Curl.php'),(6403,'wp-content/updraft/plugins-old/updraftplus/includes/Google/IO/Exception.php'),(6404,'wp-content/updraft/plugins-old/updraftplus/includes/Google/IO/Stream.php'),(6405,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Logger/Abstract.php'),(6406,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Logger/Exception.php'),(6407,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Logger/File.php'),(6408,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Logger/Null.php'),(6409,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Logger/Psr.php'),(6410,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Model.php'),(6411,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/AdExchangeBuyer.php'),(6412,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/AdExchangeSeller.php'),(6413,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/AdSense.php'),(6414,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/AdSenseHost.php'),(6415,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Admin.php'),(6416,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Analytics.php'),(6417,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/AndroidEnterprise.php'),(6418,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/AndroidPublisher.php'),(6419,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/AppState.php'),(6420,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Appsactivity.php'),(6421,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Audit.php'),(6422,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Autoscaler.php'),(6423,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Bigquery.php'),(6424,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Blogger.php'),(6425,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Books.php'),(6426,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Calendar.php'),(6427,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/CivicInfo.php'),(6428,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/CloudMonitoring.php'),(6429,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Cloudlatencytest.php'),(6430,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Cloudsearch.php'),(6431,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Compute.php'),(6432,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Computeaccounts.php'),(6433,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Container.php'),(6434,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Coordinate.php'),(6435,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Customsearch.php'),(6436,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Dataflow.php'),(6437,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Datastore.php'),(6438,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Deploymentmanager.php'),(6439,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Dfareporting.php'),(6440,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Directory.php'),(6441,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Dns.php'),(6442,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/DoubleClickBidManager.php'),(6443,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Doubleclicksearch.php'),(6444,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Drive.php'),(6445,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Exception.php'),(6446,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Fitness.php'),(6447,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Freebase.php'),(6448,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Fusiontables.php'),(6449,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Games.php'),(6450,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/GamesConfiguration.php'),(6451,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/GamesManagement.php'),(6452,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Genomics.php'),(6453,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Gmail.php'),(6454,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/GroupsMigration.php'),(6455,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Groupssettings.php'),(6456,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/IdentityToolkit.php'),(6457,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Licensing.php'),(6458,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Logging.php'),(6459,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Manager.php'),(6460,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/MapsEngine.php'),(6461,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Mirror.php'),(6462,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Oauth2.php'),(6463,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Pagespeedonline.php'),(6464,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Plus.php'),(6465,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/PlusDomains.php'),(6466,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Prediction.php'),(6467,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Pubsub.php'),(6468,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/QPXExpress.php'),(6469,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Replicapool.php'),(6470,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Replicapoolupdater.php'),(6471,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Reports.php'),(6472,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Reseller.php'),(6473,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Resource.php'),(6474,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Resourceviews.php'),(6475,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/SQLAdmin.php'),(6476,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/ShoppingContent.php'),(6477,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/SiteVerification.php'),(6478,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Spectrum.php'),(6479,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Storage.php'),(6480,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/TagManager.php'),(6481,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Taskqueue.php'),(6482,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Tasks.php'),(6483,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Translate.php'),(6484,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Urlshortener.php'),(6485,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Webfonts.php'),(6486,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/Webmasters.php'),(6487,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/YouTube.php'),(6488,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service/YouTubeAnalytics.php'),(6489,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Service.php'),(6490,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Signer/Abstract.php'),(6491,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Signer/P12.php'),(6492,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Task/Exception.php'),(6493,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Task/Retryable.php'),(6494,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Task/Runner.php'),(6495,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Utils/URITemplate.php'),(6496,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Utils.php'),(6497,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Verifier/Abstract.php'),(6498,'wp-content/updraft/plugins-old/updraftplus/includes/Google/Verifier/Pem.php'),(6499,'wp-content/updraft/plugins-old/updraftplus/includes/Google/autoload.php'),(6500,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/Archive/Tar.php'),(6501,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request/Listener.php'),(6502,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request.php'),(6503,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/Adapter/Curl.php'),(6504,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/Adapter/Mock.php'),(6505,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/Adapter/Socket.php'),(6506,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/Adapter.php'),(6507,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/CookieJar.php'),(6508,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/Exception.php'),(6509,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/MultipartBody.php'),(6510,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/Observer/Log.php'),(6511,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/Response.php'),(6512,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/SOCKS5.php'),(6513,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2/SocketWrapper.php'),(6514,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/Request2.php'),(6515,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/WebDAV/Client/Stream.php'),(6516,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/WebDAV/Client.php'),(6517,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/WebDAV/Tools/_parse_lock_response.php'),(6518,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/HTTP/WebDAV/Tools/_parse_propfind_response.php'),(6519,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/Net/Socket.php'),(6520,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/Net/URL.php'),(6521,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/Net/URL2.php'),(6522,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/PEAR/Exception.php'),(6523,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/PEAR.php'),(6524,'wp-content/updraft/plugins-old/updraftplus/includes/PEAR/PEAR5.php'),(6525,'wp-content/updraft/plugins-old/updraftplus/includes/S3.php'),(6526,'wp-content/updraft/plugins-old/updraftplus/includes/S3compat.php'),(6527,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/BlobRestProxy.php'),(6528,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Internal/IBlob.php'),(6529,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/AccessCondition.php'),(6530,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/AccessPolicy.php'),(6531,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/AcquireLeaseOptions.php'),(6532,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/AcquireLeaseResult.php'),(6533,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/Blob.php'),(6534,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/BlobBlockType.php'),(6535,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/BlobPrefix.php'),(6536,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/BlobProperties.php'),(6537,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/BlobServiceOptions.php'),(6538,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/BlobType.php'),(6539,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/Block.php'),(6540,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/BlockList.php'),(6541,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/BreakLeaseResult.php'),(6542,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/CommitBlobBlocksOptions.php'),(6543,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/Container.php'),(6544,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ContainerACL.php'),(6545,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ContainerProperties.php'),(6546,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/CopyBlobOptions.php'),(6547,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/CopyBlobResult.php'),(6548,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobBlockOptions.php'),(6549,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobOptions.php'),(6550,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobPagesOptions.php'),(6551,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobSnapshotOptions.php'),(6552,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/CreateBlobSnapshotResult.php'),(6553,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/CreateContainerOptions.php'),(6554,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/DeleteBlobOptions.php'),(6555,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/DeleteContainerOptions.php'),(6556,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobMetadataOptions.php'),(6557,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobMetadataResult.php'),(6558,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobOptions.php'),(6559,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobPropertiesOptions.php'),(6560,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobPropertiesResult.php'),(6561,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/GetBlobResult.php'),(6562,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/GetContainerACLResult.php'),(6563,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/GetContainerPropertiesResult.php'),(6564,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/LeaseMode.php'),(6565,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ListBlobBlocksOptions.php'),(6566,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ListBlobBlocksResult.php'),(6567,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ListBlobsOptions.php'),(6568,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ListBlobsResult.php'),(6569,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ListContainersOptions.php'),(6570,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ListContainersResult.php'),(6571,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ListPageBlobRangesOptions.php'),(6572,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/ListPageBlobRangesResult.php'),(6573,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/PageRange.php'),(6574,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/PageWriteOption.php'),(6575,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/PublicAccessType.php'),(6576,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/SetBlobMetadataOptions.php'),(6577,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/SetBlobMetadataResult.php'),(6578,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/SetBlobPropertiesOptions.php'),(6579,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/SetBlobPropertiesResult.php'),(6580,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/SetContainerMetadataOptions.php'),(6581,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Blob/Models/SignedIdentifier.php'),(6582,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/CloudConfigurationManager.php'),(6583,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Atom/AtomBase.php'),(6584,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Atom/AtomLink.php'),(6585,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Category.php'),(6586,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Content.php'),(6587,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Entry.php'),(6588,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Feed.php'),(6589,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Generator.php'),(6590,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Person.php'),(6591,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Atom/Source.php'),(6592,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/IAuthScheme.php'),(6593,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/OAuthScheme.php'),(6594,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/SharedKeyAuthScheme.php'),(6595,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/StorageAuthScheme.php'),(6596,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Authentication/TableSharedKeyLiteAuthScheme.php'),(6597,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/ConnectionStringParser.php'),(6598,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/ConnectionStringSource.php'),(6599,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/FilterableService.php'),(6600,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Filters/AuthenticationFilter.php'),(6601,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Filters/DateFilter.php'),(6602,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Filters/ExponentialRetryPolicy.php'),(6603,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Filters/HeadersFilter.php'),(6604,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Filters/RetryPolicy.php'),(6605,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Filters/RetryPolicyFilter.php'),(6606,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Filters/WrapFilter.php'),(6607,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Http/BatchRequest.php'),(6608,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Http/BatchResponse.php'),(6609,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Http/HttpCallContext.php'),(6610,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Http/HttpClient.php'),(6611,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Http/IHttpClient.php'),(6612,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Http/IUrl.php'),(6613,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Http/Url.php'),(6614,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/IServiceFilter.php'),(6615,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/InvalidArgumentTypeException.php'),(6616,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Logger.php'),(6617,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/MediaServicesSettings.php'),(6618,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/OAuthRestProxy.php'),(6619,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Resources.php'),(6620,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/RestProxy.php'),(6621,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Serialization/ISerializer.php'),(6622,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Serialization/JsonSerializer.php'),(6623,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Serialization/XmlSerializer.php'),(6624,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/ServiceBusSettings.php'),(6625,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/ServiceManagementSettings.php'),(6626,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/ServiceRestProxy.php'),(6627,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/ServiceSettings.php'),(6628,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/StorageServiceSettings.php'),(6629,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Utilities.php'),(6630,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Internal/Validate.php'),(6631,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Models/GetServicePropertiesResult.php'),(6632,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Models/Logging.php'),(6633,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Models/Metrics.php'),(6634,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Models/OAuthAccessToken.php'),(6635,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Models/RetentionPolicy.php'),(6636,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/Models/ServiceProperties.php'),(6637,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/ServiceException.php'),(6638,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/Common/ServicesBuilder.php'),(6639,'wp-content/updraft/plugins-old/updraftplus/includes/WindowsAzure/WindowsAzure.php'),(6640,'wp-content/updraft/plugins-old/updraftplus/includes/azure-extensions.php'),(6641,'wp-content/updraft/plugins-old/updraftplus/includes/class-backup-history.php'),(6642,'wp-content/updraft/plugins-old/updraftplus/includes/class-commands.php'),(6643,'wp-content/updraft/plugins-old/updraftplus/includes/class-database-utility.php'),(6644,'wp-content/updraft/plugins-old/updraftplus/includes/class-filesystem-functions.php'),(6645,'wp-content/updraft/plugins-old/updraftplus/includes/class-job-scheduler.php'),(6646,'wp-content/updraft/plugins-old/updraftplus/includes/class-manipulation-functions.php'),(6647,'wp-content/updraft/plugins-old/updraftplus/includes/class-onedrive-account.php'),(6648,'wp-content/updraft/plugins-old/updraftplus/includes/class-partialfileservlet.php'),(6649,'wp-content/updraft/plugins-old/updraftplus/includes/class-remote-send.php'),(6650,'wp-content/updraft/plugins-old/updraftplus/includes/class-semaphore.php'),(6651,'wp-content/updraft/plugins-old/updraftplus/includes/class-storage-methods-interface.php'),(6652,'wp-content/updraft/plugins-old/updraftplus/includes/class-udrpc.php'),(6653,'wp-content/updraft/plugins-old/updraftplus/includes/class-updraft-dashboard-news.php'),(6654,'wp-content/updraft/plugins-old/updraftplus/includes/class-updraftcentral-updraftplus-commands.php'),(6655,'wp-content/updraft/plugins-old/updraftplus/includes/class-updraftplus-encryption.php'),(6656,'wp-content/updraft/plugins-old/updraftplus/includes/class-wpadmin-commands.php'),(6657,'wp-content/updraft/plugins-old/updraftplus/includes/class-zip.php'),(6658,'wp-content/updraft/plugins-old/updraftplus/includes/cloudfiles/cloudfiles.php'),(6659,'wp-content/updraft/plugins-old/updraftplus/includes/cloudfiles/cloudfiles_exceptions.php'),(6660,'wp-content/updraft/plugins-old/updraftplus/includes/cloudfiles/cloudfiles_http.php'),(6661,'wp-content/updraft/plugins-old/updraftplus/includes/deprecated-actions.php'),(6662,'wp-content/updraft/plugins-old/updraftplus/includes/ftp.class.php'),(6663,'wp-content/updraft/plugins-old/updraftplus/includes/google-extensions.php'),(6664,'wp-content/updraft/plugins-old/updraftplus/includes/handlebars/handlebars.js'),(6665,'wp-content/updraft/plugins-old/updraftplus/includes/handlebars/handlebars.min.js'),(6666,'wp-content/updraft/plugins-old/updraftplus/includes/handlebars/handlebars.runtime.js'),(6667,'wp-content/updraft/plugins-old/updraftplus/includes/handlebars/handlebars.runtime.min.js'),(6668,'wp-content/updraft/plugins-old/updraftplus/includes/jquery.blockUI.js'),(6669,'wp-content/updraft/plugins-old/updraftplus/includes/jquery.blockUI.min.js'),(6670,'wp-content/updraft/plugins-old/updraftplus/includes/jquery.serializeJSON/jquery.serializejson.js'),(6671,'wp-content/updraft/plugins-old/updraftplus/includes/jquery.serializeJSON/jquery.serializejson.min.js'),(6672,'wp-content/updraft/plugins-old/updraftplus/includes/jstree/jstree.js'),(6673,'wp-content/updraft/plugins-old/updraftplus/includes/jstree/jstree.min.js'),(6674,'wp-content/updraft/plugins-old/updraftplus/includes/labelauty/jquery-labelauty.js'),(6675,'wp-content/updraft/plugins-old/updraftplus/includes/labelauty/jquery-labelauty.min.js'),(6676,'wp-content/updraft/plugins-old/updraftplus/includes/onedrive/client.php'),(6677,'wp-content/updraft/plugins-old/updraftplus/includes/onedrive/file.php'),(6678,'wp-content/updraft/plugins-old/updraftplus/includes/onedrive/folder.php'),(6679,'wp-content/updraft/plugins-old/updraftplus/includes/onedrive/object.php'),(6680,'wp-content/updraft/plugins-old/updraftplus/includes/onedrive/onedrive.php'),(6681,'wp-content/updraft/plugins-old/updraftplus/includes/select2/select2.js'),(6682,'wp-content/updraft/plugins-old/updraftplus/includes/select2/select2.min.js'),(6683,'wp-content/updraft/plugins-old/updraftplus/includes/tether/tether.js'),(6684,'wp-content/updraft/plugins-old/updraftplus/includes/tether/tether.min.js'),(6685,'wp-content/updraft/plugins-old/updraftplus/includes/tether-shepherd/shepherd.js'),(6686,'wp-content/updraft/plugins-old/updraftplus/includes/tether-shepherd/shepherd.min.js'),(6687,'wp-content/updraft/plugins-old/updraftplus/includes/tether-shepherd/tether.js'),(6688,'wp-content/updraft/plugins-old/updraftplus/includes/updraft-notices.php'),(6689,'wp-content/updraft/plugins-old/updraftplus/includes/updraft-restorer-skin.php'),(6690,'wp-content/updraft/plugins-old/updraftplus/includes/updraftcentral.php'),(6691,'wp-content/updraft/plugins-old/updraftplus/includes/updraftclone/temporary-clone-auto-login.php'),(6692,'wp-content/updraft/plugins-old/updraftplus/includes/updraftclone/temporary-clone-dash-notice.php'),(6693,'wp-content/updraft/plugins-old/updraftplus/includes/updraftclone/temporary-clone-restore.php'),(6694,'wp-content/updraft/plugins-old/updraftplus/includes/updraftclone/temporary-clone-status.php'),(6695,'wp-content/updraft/plugins-old/updraftplus/includes/updraftclone/temporary-clone-user-notice.php'),(6696,'wp-content/updraft/plugins-old/updraftplus/includes/updraftplus-admin-common.js'),(6697,'wp-content/updraft/plugins-old/updraftplus/includes/updraftplus-admin-common.min.js'),(6698,'wp-content/updraft/plugins-old/updraftplus/includes/updraftplus-clone.php'),(6699,'wp-content/updraft/plugins-old/updraftplus/includes/updraftplus-login.php'),(6700,'wp-content/updraft/plugins-old/updraftplus/includes/updraftplus-notices.php'),(6701,'wp-content/updraft/plugins-old/updraftplus/includes/updraftplus-tour.php'),(6702,'wp-content/updraft/plugins-old/updraftplus/includes/updraftvault.php'),(6703,'wp-content/updraft/plugins-old/updraftplus/index.html'),(6704,'wp-content/updraft/plugins-old/updraftplus/js/tour.js'),(6705,'wp-content/updraft/plugins-old/updraftplus/js/tour.min.js'),(6706,'wp-content/updraft/plugins-old/updraftplus/methods/addon-base-v2.php'),(6707,'wp-content/updraft/plugins-old/updraftplus/methods/addon-not-yet-present.php'),(6708,'wp-content/updraft/plugins-old/updraftplus/methods/azure.php'),(6709,'wp-content/updraft/plugins-old/updraftplus/methods/backblaze.php'),(6710,'wp-content/updraft/plugins-old/updraftplus/methods/backup-module.php'),(6711,'wp-content/updraft/plugins-old/updraftplus/methods/cloudfiles-new.php'),(6712,'wp-content/updraft/plugins-old/updraftplus/methods/cloudfiles.php'),(6713,'wp-content/updraft/plugins-old/updraftplus/methods/dreamobjects.php'),(6714,'wp-content/updraft/plugins-old/updraftplus/methods/dropbox.php'),(6715,'wp-content/updraft/plugins-old/updraftplus/methods/email.php'),(6716,'wp-content/updraft/plugins-old/updraftplus/methods/ftp.php'),(6717,'wp-content/updraft/plugins-old/updraftplus/methods/googlecloud.php'),(6718,'wp-content/updraft/plugins-old/updraftplus/methods/googledrive.php'),(6719,'wp-content/updraft/plugins-old/updraftplus/methods/insufficient.php'),(6720,'wp-content/updraft/plugins-old/updraftplus/methods/onedrive.php'),(6721,'wp-content/updraft/plugins-old/updraftplus/methods/openstack-base.php'),(6722,'wp-content/updraft/plugins-old/updraftplus/methods/openstack.php'),(6723,'wp-content/updraft/plugins-old/updraftplus/methods/openstack2.php'),(6724,'wp-content/updraft/plugins-old/updraftplus/methods/remotesend.php'),(6725,'wp-content/updraft/plugins-old/updraftplus/methods/s3.php'),(6726,'wp-content/updraft/plugins-old/updraftplus/methods/s3generic.php'),(6727,'wp-content/updraft/plugins-old/updraftplus/methods/sftp.php'),(6728,'wp-content/updraft/plugins-old/updraftplus/methods/stream-base.php'),(6729,'wp-content/updraft/plugins-old/updraftplus/methods/template.php'),(6730,'wp-content/updraft/plugins-old/updraftplus/methods/updraftvault.php'),(6731,'wp-content/updraft/plugins-old/updraftplus/methods/webdav.php'),(6732,'wp-content/updraft/plugins-old/updraftplus/options.php'),(6733,'wp-content/updraft/plugins-old/updraftplus/restorer.php'),(6734,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/advanced/advanced-tools.php'),(6735,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/advanced/export-settings.php'),(6736,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/advanced/lock-admin.php'),(6737,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/advanced/search-replace.php'),(6738,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/advanced/site-info.php'),(6739,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/advanced/tools-menu.php'),(6740,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/advanced/total-size.php'),(6741,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/advanced/updraftcentral.php'),(6742,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/advanced/wipe-settings.php'),(6743,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/notices/bottom-notice.php'),(6744,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/notices/horizontal-notice.php'),(6745,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/notices/report-plain.php'),(6746,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/notices/report.php'),(6747,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/notices/thanks-for-using-main-dash.php'),(6748,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/delete-and-restore-modals.php'),(6749,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/downloading-and-restoring.php'),(6750,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/exclude-modal.php'),(6751,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-heading.php'),(6752,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/exclude-settings-modal/exclude-panel-submit.php'),(6753,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/existing-backups-table.php'),(6754,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/file-backup-exclude.php'),(6755,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/footer.php'),(6756,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/form-contents.php'),(6757,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/header.php'),(6758,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/migrator-no-migrator.php'),(6759,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/tab-addons.php'),(6760,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/tab-backups.php'),(6761,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/tab-bar.php'),(6762,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/take-backup.php'),(6763,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/temporary-clone.php'),(6764,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/updraftcentral-connect.php'),(6765,'wp-content/updraft/plugins-old/updraftplus/templates/wp-admin/settings/upload-backups-modal.php'),(6766,'wp-content/updraft/plugins-old/updraftplus/udaddons/options.php'),(6767,'wp-content/updraft/plugins-old/updraftplus/udaddons/updraftplus-addons.php'),(6768,'wp-content/updraft/plugins-old/updraftplus/updraftplus.php'),(6769,'wp-content/updraft/plugins-old/updraftplus/vendor/autoload.php'),(6770,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Aws.php'),(6771,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/AbstractClient.php'),(6772,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/AwsClientInterface.php'),(6773,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ClientBuilder.php'),(6774,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/DefaultClient.php'),(6775,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ExpiredCredentialsChecker.php'),(6776,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ThrottlingErrorChecker.php'),(6777,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/UploadBodyListener.php'),(6778,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/UserAgentListener.php'),(6779,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/AwsQueryVisitor.php'),(6780,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/JsonCommand.php'),(6781,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/QueryCommand.php'),(6782,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/XmlResponseLocationVisitor.php'),(6783,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/AbstractCredentialsDecorator.php'),(6784,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/AbstractRefreshableCredentials.php'),(6785,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/Credentials.php'),(6786,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/CredentialsInterface.php'),(6787,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/NullCredentials.php'),(6788,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/RefreshableInstanceProfileCredentials.php'),(6789,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/ClientOptions.php'),(6790,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/DateFormat.php'),(6791,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Region.php'),(6792,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Size.php'),(6793,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Time.php'),(6794,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/UaString.php'),(6795,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum.php'),(6796,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/AwsExceptionInterface.php'),(6797,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/BadMethodCallException.php'),(6798,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/DomainException.php'),(6799,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ExceptionFactoryInterface.php'),(6800,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ExceptionListener.php'),(6801,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/InstanceProfileCredentialsException.php'),(6802,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/InvalidArgumentException.php'),(6803,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/LogicException.php'),(6804,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/MultipartUploadException.php'),(6805,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/NamespaceExceptionFactory.php'),(6806,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/OutOfBoundsException.php'),(6807,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/OverflowException.php'),(6808,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/AbstractJsonExceptionParser.php'),(6809,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/DefaultXmlExceptionParser.php'),(6810,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/ExceptionParserInterface.php'),(6811,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/JsonQueryExceptionParser.php'),(6812,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/JsonRestExceptionParser.php'),(6813,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/RequiredExtensionNotLoadedException.php'),(6814,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/RuntimeException.php'),(6815,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ServiceResponseException.php'),(6816,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/TransferException.php'),(6817,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/UnexpectedValueException.php'),(6818,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/Facade.php'),(6819,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/FacadeInterface.php'),(6820,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/facade-classes.php'),(6821,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/ChunkHash.php'),(6822,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/ChunkHashInterface.php'),(6823,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/HashUtils.php'),(6824,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/TreeHash.php'),(6825,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/HostNameUtils.php'),(6826,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/InstanceMetadata/InstanceMetadataClient.php'),(6827,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/InstanceMetadata/Waiter/ServiceAvailable.php'),(6828,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Iterator/AwsResourceIterator.php'),(6829,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Iterator/AwsResourceIteratorFactory.php'),(6830,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractTransfer.php'),(6831,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractTransferState.php'),(6832,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadBuilder.php'),(6833,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadId.php'),(6834,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadPart.php'),(6835,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/TransferInterface.php'),(6836,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/TransferStateInterface.php'),(6837,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/UploadIdInterface.php'),(6838,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/UploadPartInterface.php'),(6839,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/aws-config.php'),(6840,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/public-endpoints.php'),(6841,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/sdk1-config.php'),(6842,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/RulesEndpointProvider.php'),(6843,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/AbstractSignature.php'),(6844,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/EndpointSignatureInterface.php'),(6845,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureInterface.php'),(6846,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureListener.php'),(6847,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV2.php'),(6848,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV3Https.php'),(6849,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV4.php'),(6850,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/AbstractResourceWaiter.php'),(6851,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/AbstractWaiter.php'),(6852,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/CallableWaiter.php'),(6853,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/CompositeWaiterFactory.php'),(6854,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/ConfigResourceWaiter.php'),(6855,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/ResourceWaiterInterface.php'),(6856,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterClassFactory.php'),(6857,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterConfig.php'),(6858,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterConfigFactory.php'),(6859,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterFactoryInterface.php'),(6860,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterInterface.php'),(6861,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Enum/AssignmentStatusType.php'),(6862,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Enum/StatusType.php'),(6863,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/DeleteConflictException.php'),(6864,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/DuplicateCertificateException.php'),(6865,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/EntityAlreadyExistsException.php'),(6866,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/EntityTemporarilyUnmodifiableException.php'),(6867,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/IamException.php'),(6868,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidAuthenticationCodeException.php'),(6869,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidCertificateException.php'),(6870,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidInputException.php'),(6871,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidUserTypeException.php'),(6872,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/KeyPairMismatchException.php'),(6873,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/LimitExceededException.php'),(6874,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/MalformedCertificateException.php'),(6875,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/MalformedPolicyDocumentException.php'),(6876,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/NoSuchEntityException.php'),(6877,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/PasswordPolicyViolationException.php'),(6878,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/IamClient.php'),(6879,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Resources/iam-2010-05-08.php'),(6880,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/AcpListener.php'),(6881,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/BucketStyleListener.php'),(6882,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Command/S3Command.php'),(6883,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/CannedAcl.php'),(6884,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/EncodingType.php'),(6885,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Event.php'),(6886,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/GranteeType.php'),(6887,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Group.php'),(6888,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/MFADelete.php'),(6889,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/MetadataDirective.php'),(6890,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Payer.php'),(6891,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Permission.php'),(6892,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Protocol.php'),(6893,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/ServerSideEncryption.php'),(6894,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Status.php'),(6895,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Storage.php'),(6896,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/StorageClass.php'),(6897,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/AccessDeniedException.php'),(6898,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/AccountProblemException.php'),(6899,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/AmbiguousGrantByEmailAddressException.php'),(6900,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BadDigestException.php'),(6901,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BucketAlreadyExistsException.php'),(6902,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BucketAlreadyOwnedByYouException.php'),(6903,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BucketNotEmptyException.php'),(6904,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/CredentialsNotSupportedException.php'),(6905,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/CrossLocationLoggingProhibitedException.php'),(6906,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/DeleteMultipleObjectsException.php'),(6907,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/EntityTooLargeException.php'),(6908,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/EntityTooSmallException.php'),(6909,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ExpiredTokenException.php'),(6910,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/IllegalVersioningConfigurationException.php'),(6911,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/IncompleteBodyException.php'),(6912,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/IncorrectNumberOfFilesInPostRequestException.php'),(6913,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InlineDataTooLargeException.php'),(6914,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InternalErrorException.php'),(6915,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidAccessKeyIdException.php'),(6916,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidAddressingHeaderException.php'),(6917,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidArgumentException.php'),(6918,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidBucketNameException.php'),(6919,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidBucketStateException.php'),(6920,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidDigestException.php'),(6921,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidLocationConstraintException.php'),(6922,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPartException.php'),(6923,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPartOrderException.php'),(6924,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPayerException.php'),(6925,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPolicyDocumentException.php'),(6926,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidRangeException.php'),(6927,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidRequestException.php'),(6928,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidSOAPRequestException.php'),(6929,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidSecurityException.php'),(6930,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidStorageClassException.php'),(6931,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidTagErrorException.php'),(6932,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidTargetBucketForLoggingException.php'),(6933,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidTokenException.php'),(6934,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidURIException.php'),(6935,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/KeyTooLongException.php'),(6936,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MalformedACLErrorException.php'),(6937,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MalformedPOSTRequestException.php'),(6938,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MalformedXMLException.php'),(6939,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MaxMessageLengthExceededException.php'),(6940,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MaxPostPreDataLengthExceededErrorException.php'),(6941,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MetadataTooLargeException.php'),(6942,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MethodNotAllowedException.php'),(6943,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingAttachmentException.php'),(6944,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingContentLengthException.php'),(6945,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingRequestBodyErrorException.php'),(6946,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingSecurityElementException.php'),(6947,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingSecurityHeaderException.php'),(6948,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoLoggingStatusForKeyException.php'),(6949,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchBucketException.php'),(6950,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchBucketPolicyException.php'),(6951,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchCORSConfigurationException.php'),(6952,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchKeyException.php'),(6953,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchLifecycleConfigurationException.php'),(6954,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchTagSetErrorException.php'),(6955,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchTagSetException.php'),(6956,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchUploadException.php'),(6957,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchVersionException.php'),(6958,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchWebsiteConfigurationException.php'),(6959,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NotImplementedException.php'),(6960,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NotSignedUpException.php'),(6961,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NotSuchBucketPolicyException.php'),(6962,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ObjectAlreadyInActiveTierErrorException.php'),(6963,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ObjectNotInActiveTierErrorException.php'),(6964,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/OperationAbortedException.php'),(6965,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/Parser/S3ExceptionParser.php'),(6966,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/PermanentRedirectException.php'),(6967,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/PreconditionFailedException.php'),(6968,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RedirectException.php'),(6969,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestIsNotMultiPartContentException.php'),(6970,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestTimeTooSkewedException.php'),(6971,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestTimeoutException.php'),(6972,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestTorrentOfBucketErrorException.php'),(6973,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/S3Exception.php'),(6974,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ServiceUnavailableException.php'),(6975,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/SignatureDoesNotMatchException.php'),(6976,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/SlowDownException.php'),(6977,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/TemporaryRedirectException.php'),(6978,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/TokenRefreshRequiredException.php'),(6979,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/TooManyBucketsException.php'),(6980,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/UnexpectedContentException.php'),(6981,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/UnresolvableGrantByEmailAddressException.php'),(6982,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/UserKeyMustBeSpecifiedException.php'),(6983,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/IncompleteMultipartUploadChecker.php'),(6984,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListBucketsIterator.php'),(6985,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListMultipartUploadsIterator.php'),(6986,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListObjectVersionsIterator.php'),(6987,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListObjectsIterator.php'),(6988,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/OpendirIterator.php'),(6989,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/Acp.php'),(6990,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/AcpBuilder.php'),(6991,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/ClearBucket.php'),(6992,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/DeleteObjectsBatch.php'),(6993,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/DeleteObjectsTransfer.php'),(6994,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/Grant.php'),(6995,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/Grantee.php'),(6996,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/AbstractTransfer.php'),(6997,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/ParallelTransfer.php'),(6998,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/SerialTransfer.php'),(6999,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/TransferState.php'),(7000,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/UploadBuilder.php'),(7001,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/UploadId.php'),(7002,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/UploadPart.php'),(7003,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/PostObject.php'),(7004,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Resources/s3-2006-03-01.php'),(7005,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/ResumableDownload.php'),(7006,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3Client.php'),(7007,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3Md5Listener.php'),(7008,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3Signature.php'),(7009,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3SignatureInterface.php'),(7010,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3SignatureV4.php'),(7011,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/SocketTimeoutChecker.php'),(7012,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/SseCpkListener.php'),(7013,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/StreamWrapper.php'),(7014,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/AbstractSync.php'),(7015,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/AbstractSyncBuilder.php'),(7016,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/ChangedFilesIterator.php'),(7017,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/DownloadSync.php'),(7018,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/DownloadSyncBuilder.php'),(7019,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/FilenameConverterInterface.php'),(7020,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/KeyConverter.php'),(7021,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/UploadSync.php'),(7022,'wp-content/updraft/plugins-old/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/UploadSyncBuilder.php'),(7023,'wp-content/updraft/plugins-old/updraftplus/vendor/composer/ClassLoader.php'),(7024,'wp-content/updraft/plugins-old/updraftplus/vendor/composer/autoload_classmap.php'),(7025,'wp-content/updraft/plugins-old/updraftplus/vendor/composer/autoload_files.php'),(7026,'wp-content/updraft/plugins-old/updraftplus/vendor/composer/autoload_namespaces.php'),(7027,'wp-content/updraft/plugins-old/updraftplus/vendor/composer/autoload_psr4.php'),(7028,'wp-content/updraft/plugins-old/updraftplus/vendor/composer/autoload_real.php'),(7029,'wp-content/updraft/plugins-old/updraftplus/vendor/composer/autoload_static.php'),(7030,'wp-content/updraft/plugins-old/updraftplus/vendor/composer/include_paths.php'),(7031,'wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Consumer.php'),(7032,'wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/HmacSha1.php'),(7033,'wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthDataStore.php'),(7034,'wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthException.php'),(7035,'wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthServer.php'),(7036,'wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/PlainText.php'),(7037,'wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Request.php'),(7038,'wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/RsaSha1.php'),(7039,'wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/SignatureMethod.php'),(7040,'wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Token.php'),(7041,'wp-content/updraft/plugins-old/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Util.php'),(7042,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/phar-stub.php'),(7043,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/AbstractBatchDecorator.php'),(7044,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/Batch.php'),(7045,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchBuilder.php'),(7046,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureDivisor.php'),(7047,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureTransfer.php'),(7048,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchCommandTransfer.php'),(7049,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchDivisorInterface.php'),(7050,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchInterface.php'),(7051,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchRequestTransfer.php'),(7052,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchSizeDivisor.php'),(7053,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchTransferInterface.php'),(7054,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/Exception/BatchTransferException.php'),(7055,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/ExceptionBufferingBatch.php'),(7056,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/FlushingBatch.php'),(7057,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/HistoryBatch.php'),(7058,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/NotifyingBatch.php'),(7059,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/AbstractCacheAdapter.php'),(7060,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterFactory.php'),(7061,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterInterface.php'),(7062,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/ClosureCacheAdapter.php'),(7063,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/DoctrineCacheAdapter.php'),(7064,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/NullCacheAdapter.php'),(7065,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf1CacheAdapter.php'),(7066,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf2CacheAdapter.php'),(7067,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/AbstractHasDispatcher.php'),(7068,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Collection.php'),(7069,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Event.php'),(7070,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/BadMethodCallException.php'),(7071,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/ExceptionCollection.php'),(7072,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/GuzzleException.php'),(7073,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/InvalidArgumentException.php'),(7074,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/RuntimeException.php'),(7075,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/UnexpectedValueException.php'),(7076,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/FromConfigInterface.php'),(7077,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/HasDispatcherInterface.php'),(7078,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/ToArrayInterface.php'),(7079,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Version.php'),(7080,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/AbstractEntityBodyDecorator.php'),(7081,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/CachingEntityBody.php'),(7082,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Client.php'),(7083,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/ClientInterface.php'),(7084,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlHandle.php'),(7085,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMulti.php'),(7086,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiInterface.php'),(7087,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiProxy.php'),(7088,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlVersion.php'),(7089,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/RequestMediator.php'),(7090,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBody.php'),(7091,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBodyInterface.php'),(7092,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/BadResponseException.php'),(7093,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ClientErrorResponseException.php'),(7094,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CouldNotRewindStreamException.php'),(7095,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php'),(7096,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/HttpException.php'),(7097,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/MultiTransferException.php'),(7098,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/RequestException.php'),(7099,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ServerErrorResponseException.php'),(7100,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/TooManyRedirectsException.php'),(7101,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/IoEmittingEntityBody.php'),(7102,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/AbstractMessage.php'),(7103,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequest.php'),(7104,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequestInterface.php'),(7105,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/CacheControl.php'),(7106,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderCollection.php'),(7107,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactory.php'),(7108,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactoryInterface.php'),(7109,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderInterface.php'),(7110,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/Link.php'),(7111,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header.php'),(7112,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/MessageInterface.php'),(7113,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFile.php'),(7114,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFileInterface.php'),(7115,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Request.php'),(7116,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactory.php'),(7117,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactoryInterface.php'),(7118,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestInterface.php'),(7119,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Response.php'),(7120,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Mimetypes.php'),(7121,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/CommaAggregator.php'),(7122,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/DuplicateAggregator.php'),(7123,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/PhpAggregator.php'),(7124,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/QueryAggregatorInterface.php'),(7125,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryString.php'),(7126,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/ReadLimitEntityBody.php'),(7127,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php'),(7128,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/StaticClient.php'),(7129,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Url.php'),(7130,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/Inflector.php'),(7131,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/InflectorInterface.php'),(7132,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/MemoizingInflector.php'),(7133,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/PreComputedInflector.php'),(7134,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/AppendIterator.php'),(7135,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/ChunkedIterator.php'),(7136,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/FilterIterator.php'),(7137,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/MapIterator.php'),(7138,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/MethodProxyIterator.php'),(7139,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/AbstractLogAdapter.php'),(7140,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/ArrayLogAdapter.php'),(7141,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/ClosureLogAdapter.php'),(7142,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/LogAdapterInterface.php'),(7143,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/MessageFormatter.php'),(7144,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/MonologLogAdapter.php'),(7145,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/PsrLogAdapter.php'),(7146,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/Zf1LogAdapter.php'),(7147,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/Zf2LogAdapter.php'),(7148,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParser.php'),(7149,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParserInterface.php'),(7150,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/AbstractMessageParser.php'),(7151,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParser.php'),(7152,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParserInterface.php'),(7153,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/PeclHttpMessageParser.php'),(7154,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/ParserRegistry.php'),(7155,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/PeclUriTemplate.php'),(7156,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplate.php'),(7157,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplateInterface.php'),(7158,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParser.php'),(7159,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParserInterface.php'),(7160,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php'),(7161,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractBackoffStrategy.php'),(7162,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractErrorCodeBackoffStrategy.php'),(7163,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffLogger.php'),(7164,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffPlugin.php'),(7165,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffStrategyInterface.php'),(7166,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CallbackBackoffStrategy.php'),(7167,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ConstantBackoffStrategy.php'),(7168,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CurlBackoffStrategy.php'),(7169,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ExponentialBackoffStrategy.php'),(7170,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/HttpBackoffStrategy.php'),(7171,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/LinearBackoffStrategy.php'),(7172,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ReasonPhraseBackoffStrategy.php'),(7173,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/TruncatedBackoffStrategy.php'),(7174,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheKeyProviderInterface.php'),(7175,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php'),(7176,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheStorageInterface.php'),(7177,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CallbackCanCacheStrategy.php'),(7178,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CanCacheStrategyInterface.php'),(7179,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheKeyProvider.php'),(7180,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheStorage.php'),(7181,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCanCacheStrategy.php'),(7182,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultRevalidation.php'),(7183,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DenyRevalidation.php'),(7184,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/RevalidationInterface.php'),(7185,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/SkipRevalidation.php'),(7186,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Cookie.php'),(7187,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/ArrayCookieJar.php'),(7188,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/CookieJarInterface.php'),(7189,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/FileCookieJar.php'),(7190,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookiePlugin.php'),(7191,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Exception/InvalidCookieException.php'),(7192,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth/CurlAuthPlugin.php'),(7193,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponseExceptionInterface.php'),(7194,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponsePlugin.php'),(7195,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/Exception/ErrorResponseException.php'),(7196,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/History/HistoryPlugin.php'),(7197,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Log/LogPlugin.php'),(7198,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/CommandContentMd5Plugin.php'),(7199,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/Md5ValidatorPlugin.php'),(7200,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Mock/MockPlugin.php'),(7201,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Oauth/OauthPlugin.php'),(7202,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/AbstractConfigLoader.php'),(7203,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilder.php'),(7204,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderInterface.php'),(7205,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderLoader.php'),(7206,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/CachingConfigLoader.php'),(7207,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Client.php'),(7208,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/ClientInterface.php'),(7209,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/AbstractCommand.php'),(7210,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ClosureCommand.php'),(7211,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CommandInterface.php'),(7212,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CreateResponseClassEvent.php'),(7213,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultRequestSerializer.php'),(7214,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultResponseParser.php'),(7215,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/AliasFactory.php'),(7216,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/CompositeFactory.php'),(7217,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ConcreteClassFactory.php'),(7218,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/FactoryInterface.php'),(7219,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/MapFactory.php'),(7220,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ServiceDescriptionFactory.php'),(7221,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/AbstractRequestVisitor.php'),(7222,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/BodyVisitor.php'),(7223,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/HeaderVisitor.php'),(7224,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/JsonVisitor.php'),(7225,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFieldVisitor.php'),(7226,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFileVisitor.php'),(7227,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/QueryVisitor.php'),(7228,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/RequestVisitorInterface.php'),(7229,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/ResponseBodyVisitor.php'),(7230,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/XmlVisitor.php'),(7231,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/AbstractResponseVisitor.php'),(7232,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/BodyVisitor.php'),(7233,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/HeaderVisitor.php'),(7234,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/JsonVisitor.php'),(7235,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ReasonPhraseVisitor.php'),(7236,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ResponseVisitorInterface.php'),(7237,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/StatusCodeVisitor.php'),(7238,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/XmlVisitor.php'),(7239,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/VisitorFlyweight.php'),(7240,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationCommand.php'),(7241,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationResponseParser.php'),(7242,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/RequestSerializerInterface.php'),(7243,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseClassInterface.php'),(7244,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseParserInterface.php'),(7245,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/ConfigLoaderInterface.php'),(7246,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Operation.php'),(7247,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/OperationInterface.php'),(7248,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Parameter.php'),(7249,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaFormatter.php'),(7250,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaValidator.php'),(7251,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescription.php'),(7252,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionInterface.php'),(7253,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionLoader.php'),(7254,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ValidatorInterface.php'),(7255,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandException.php'),(7256,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandTransferException.php'),(7257,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/DescriptionBuilderException.php'),(7258,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/InconsistentClientTransferException.php'),(7259,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ResponseClassException.php'),(7260,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceBuilderException.php'),(7261,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceNotFoundException.php'),(7262,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ValidationException.php'),(7263,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/AbstractResourceIteratorFactory.php'),(7264,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/CompositeResourceIteratorFactory.php'),(7265,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/MapResourceIteratorFactory.php'),(7266,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/Model.php'),(7267,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIterator.php'),(7268,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorApplyBatched.php'),(7269,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorClassFactory.php'),(7270,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorFactoryInterface.php'),(7271,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorInterface.php'),(7272,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/PhpStreamRequestFactory.php'),(7273,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/Stream.php'),(7274,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamInterface.php'),(7275,'wp-content/updraft/plugins-old/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamRequestFactoryInterface.php'),(7276,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCache.php'),(7277,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCollection.php'),(7278,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCollectionInterface.php'),(7279,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetInterface.php'),(7280,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetReference.php'),(7281,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/BaseAsset.php'),(7282,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/FileAsset.php'),(7283,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/GlobAsset.php'),(7284,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/HttpAsset.php'),(7285,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/AssetCollectionFilterIterator.php'),(7286,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/Iterator/AssetCollectionIterator.php'),(7287,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Asset/StringAsset.php'),(7288,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/AssetManager.php'),(7289,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/AssetWriter.php'),(7290,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ApcCache.php'),(7291,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ArrayCache.php'),(7292,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/CacheInterface.php'),(7293,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ConfigCache.php'),(7294,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/ExpiringCache.php'),(7295,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Cache/FilesystemCache.php'),(7296,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Exception/Exception.php'),(7297,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Exception/FilterException.php'),(7298,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticExtension.php'),(7299,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticFilterFunction.php'),(7300,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticFilterInvoker.php'),(7301,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticFilterNode.php'),(7302,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticNode.php'),(7303,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/AsseticTokenParser.php'),(7304,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/TwigFormulaLoader.php'),(7305,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/TwigResource.php'),(7306,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/ValueContainer.php'),(7307,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/AssetFactory.php'),(7308,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/LazyAssetManager.php'),(7309,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/BasePhpFormulaLoader.php'),(7310,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/CachedFormulaLoader.php'),(7311,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/FormulaLoaderInterface.php'),(7312,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Loader/FunctionCallsFormulaLoader.php'),(7313,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/CoalescingDirectoryResource.php'),(7314,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/DirectoryResource.php'),(7315,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/FileResource.php'),(7316,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/IteratorResourceInterface.php'),(7317,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Resource/ResourceInterface.php'),(7318,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/CacheBustingWorker.php'),(7319,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/EnsureFilterWorker.php'),(7320,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Factory/Worker/WorkerInterface.php'),(7321,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/AutoprefixerFilter.php'),(7322,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/BaseCssFilter.php'),(7323,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/BaseNodeFilter.php'),(7324,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/BaseProcessFilter.php'),(7325,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CallablesFilter.php'),(7326,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CleanCssFilter.php'),(7327,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CoffeeScriptFilter.php'),(7328,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CompassFilter.php'),(7329,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssCacheBustingFilter.php'),(7330,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssEmbedFilter.php'),(7331,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssImportFilter.php'),(7332,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssMinFilter.php'),(7333,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/CssRewriteFilter.php'),(7334,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/DartFilter.php'),(7335,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/DependencyExtractorInterface.php'),(7336,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/EmberPrecompileFilter.php'),(7337,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/FilterCollection.php'),(7338,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/FilterInterface.php'),(7339,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/BaseCompilerFilter.php'),(7340,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/CompilerApiFilter.php'),(7341,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GoogleClosure/CompilerJarFilter.php'),(7342,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/GssFilter.php'),(7343,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/HandlebarsFilter.php'),(7344,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/HashableInterface.php'),(7345,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JSMinFilter.php'),(7346,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JSMinPlusFilter.php'),(7347,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JSqueezeFilter.php'),(7348,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JpegoptimFilter.php'),(7349,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/JpegtranFilter.php'),(7350,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/LessFilter.php'),(7351,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/LessphpFilter.php'),(7352,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/MinifyCssCompressorFilter.php'),(7353,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/OptiPngFilter.php'),(7354,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PackagerFilter.php'),(7355,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PackerFilter.php'),(7356,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PhpCssEmbedFilter.php'),(7357,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/PngoutFilter.php'),(7358,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/ReactJsxFilter.php'),(7359,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/RooleFilter.php'),(7360,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/BaseSassFilter.php'),(7361,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/SassFilter.php'),(7362,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Sass/ScssFilter.php'),(7363,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/SassphpFilter.php'),(7364,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/ScssphpFilter.php'),(7365,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/SeparatorFilter.php'),(7366,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/SprocketsFilter.php'),(7367,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/StylusFilter.php'),(7368,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/TypeScriptFilter.php'),(7369,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/UglifyCssFilter.php'),(7370,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/UglifyJs2Filter.php'),(7371,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/UglifyJsFilter.php'),(7372,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/BaseCompressorFilter.php'),(7373,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/CssCompressorFilter.php'),(7374,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Filter/Yui/JsCompressorFilter.php'),(7375,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/FilterManager.php'),(7376,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/CssUtils.php'),(7377,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/FilesystemUtils.php'),(7378,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/LessUtils.php'),(7379,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/SassUtils.php'),(7380,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/TraversableString.php'),(7381,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/Util/VarUtils.php'),(7382,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/Assetic/ValueSupplierInterface.php'),(7383,'wp-content/updraft/plugins-old/updraftplus/vendor/kriswallsmith/assetic/src/functions.php'),(7384,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/AES.php'),(7385,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Base.php'),(7386,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Blowfish.php'),(7387,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/DES.php'),(7388,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Hash.php'),(7389,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC2.php'),(7390,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/RC4.php'),(7391,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA.php'),(7392,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Random.php'),(7393,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Rijndael.php'),(7394,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/TripleDES.php'),(7395,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Crypt/Twofish.php'),(7396,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/File/ANSI.php'),(7397,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/File/ASN1.php'),(7398,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger.php'),(7399,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SCP.php'),(7400,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/Stream.php'),(7401,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP.php'),(7402,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php'),(7403,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/Net/SSH2.php'),(7404,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent.php'),(7405,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/System/SSH_Agent.php'),(7406,'wp-content/updraft/plugins-old/updraftplus/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php'),(7407,'wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/AbstractLogger.php'),(7408,'wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/InvalidArgumentException.php'),(7409,'wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/LogLevel.php'),(7410,'wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/LoggerAwareInterface.php'),(7411,'wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/LoggerAwareTrait.php'),(7412,'wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/LoggerInterface.php'),(7413,'wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/LoggerTrait.php'),(7414,'wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/NullLogger.php'),(7415,'wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php'),(7416,'wp-content/updraft/plugins-old/updraftplus/vendor/psr/log/Psr/Log/Test/TestLogger.php'),(7417,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/ArrayAccess.php'),(7418,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Base.php'),(7419,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/ArrayCollection.php'),(7420,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/ResourceIterator.php'),(7421,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection.php'),(7422,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Datetime.php'),(7423,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Header.php'),(7424,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Mime.php'),(7425,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Service.php'),(7426,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Size.php'),(7427,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/State.php'),(7428,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncError.php'),(7429,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncHttpError.php'),(7430,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncTimeoutError.php'),(7431,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AttributeError.php'),(7432,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AuthenticationError.php'),(7433,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/BaseException.php'),(7434,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnError.php'),(7435,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnHttpError.php'),(7436,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnNotAvailableError.php'),(7437,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnTtlError.php'),(7438,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CollectionException.php'),(7439,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerCreateError.php'),(7440,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerDeleteError.php'),(7441,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerError.php'),(7442,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNameError.php'),(7443,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNotEmptyError.php'),(7444,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNotFoundError.php'),(7445,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CreateError.php'),(7446,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CreateUpdateError.php'),(7447,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CredentialError.php'),(7448,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseCreateError.php'),(7449,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseDeleteError.php'),(7450,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseListError.php'),(7451,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseNameError.php'),(7452,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseUpdateError.php'),(7453,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DeleteError.php'),(7454,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DocumentError.php'),(7455,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DomainError.php'),(7456,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/EmptyResponseError.php'),(7457,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/EndpointError.php'),(7458,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/FlavorError.php'),(7459,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ForbiddenOperationException.php'),(7460,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpError.php'),(7461,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpForbiddenError.php'),(7462,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpOverLimitError.php'),(7463,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpResponseException.php'),(7464,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpRetryError.php'),(7465,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpTimeoutError.php'),(7466,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpUnauthorizedError.php'),(7467,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpUrlError.php'),(7468,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/IOError.php'),(7469,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/IdRequiredError.php'),(7470,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ImageError.php'),(7471,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceCreateError.php'),(7472,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceDeleteError.php'),(7473,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceError.php'),(7474,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceFlavorError.php'),(7475,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceNotFound.php'),(7476,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceUpdateError.php'),(7477,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidArgumentError.php'),(7478,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidIdTypeError.php'),(7479,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidIpTypeError.php'),(7480,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidParameterError.php'),(7481,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidRequestError.php'),(7482,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidTemplateError.php'),(7483,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/JsonError.php'),(7484,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/LoggingException.php'),(7485,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataCreateError.php'),(7486,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataDeleteError.php'),(7487,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataError.php'),(7488,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataJsonError.php'),(7489,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataKeyError.php'),(7490,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataPrefixError.php'),(7491,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataUpdateError.php'),(7492,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MisMatchedChecksumError.php'),(7493,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MissingValueError.php'),(7494,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NameError.php'),(7495,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkCreateError.php'),(7496,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkDeleteError.php'),(7497,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkError.php'),(7498,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkUpdateError.php'),(7499,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkUrlError.php'),(7500,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NoContentTypeError.php'),(7501,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NoNameError.php'),(7502,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjFetchError.php'),(7503,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjectCopyError.php'),(7504,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjectError.php'),(7505,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RebuildError.php'),(7506,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RecordTypeError.php'),(7507,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ResourceBucketException.php'),(7508,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ResourceNotFoundException.php'),(7509,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RuntimeException.php'),(7510,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerActionError.php'),(7511,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerCreateError.php'),(7512,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerDeleteError.php'),(7513,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerImageScheduleError.php'),(7514,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerIpsError.php'),(7515,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerJsonError.php'),(7516,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerUpdateError.php'),(7517,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerUrlError.php'),(7518,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServiceException.php'),(7519,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/SnapshotError.php'),(7520,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/TempUrlMethodError.php'),(7521,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnknownError.php'),(7522,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnknownParameterError.php'),(7523,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnrecognizedServiceError.php'),(7524,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedExtensionError.php'),(7525,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedFeatureExtension.php'),(7526,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedVersionError.php'),(7527,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UpdateError.php'),(7528,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UrlError.php'),(7529,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserCreateError.php'),(7530,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserDeleteError.php'),(7531,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserListError.php'),(7532,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserNameError.php'),(7533,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserUpdateError.php'),(7534,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/VolumeError.php'),(7535,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/VolumeTypeError.php'),(7536,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Client.php'),(7537,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Message/Formatter.php'),(7538,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Message/RequestSubscriber.php'),(7539,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Lang.php'),(7540,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Log/Logger.php'),(7541,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Metadata.php'),(7542,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/PersistentObject.php'),(7543,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/BaseResource.php'),(7544,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/NovaResource.php'),(7545,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/PersistentResource.php'),(7546,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/ReadOnlyResource.php'),(7547,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/AbstractService.php'),(7548,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/Catalog.php'),(7549,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/CatalogItem.php'),(7550,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/CatalogService.php'),(7551,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/Endpoint.php'),(7552,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/NovaService.php'),(7553,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/ServiceBuilder.php'),(7554,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/ServiceInterface.php'),(7555,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Constants/User.php'),(7556,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Role.php'),(7557,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Tenant.php'),(7558,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Token.php'),(7559,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/User.php'),(7560,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Service.php'),(7561,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/AbstractService.php'),(7562,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/CDNService.php'),(7563,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Constants/Header.php'),(7564,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Constants/UrlType.php'),(7565,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Enum/ReturnType.php'),(7566,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/BulkOperationException.php'),(7567,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ContainerException.php'),(7568,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ObjectNotFoundException.php'),(7569,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/StreamException.php'),(7570,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/UploadException.php'),(7571,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/AbstractContainer.php'),(7572,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/AbstractResource.php'),(7573,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/Account.php'),(7574,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/CDNContainer.php'),(7575,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/Container.php'),(7576,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/ContainerMetadata.php'),(7577,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/DataObject.php'),(7578,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Service.php'),(7579,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/AbstractTransfer.php'),(7580,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ConcurrentTransfer.php'),(7581,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ConsecutiveTransfer.php'),(7582,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ContainerMigration.php'),(7583,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/DirectorySync.php'),(7584,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferBuilder.php'),(7585,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferPart.php'),(7586,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferState.php'),(7587,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/OpenStack.php'),(7588,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Rackspace.php'),(7589,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Version.php'),(7590,'wp-content/updraft/plugins-old/updraftplus/vendor/rackspace/php-opencloud/lib/php-opencloud.php'),(7591,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/ContainerAwareEventDispatcher.php'),(7592,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php'),(7593,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php'),(7594,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Debug/WrappedListener.php'),(7595,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php'),(7596,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Event.php'),(7597,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/EventDispatcher.php'),(7598,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/EventDispatcherInterface.php'),(7599,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/EventSubscriberInterface.php'),(7600,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/GenericEvent.php'),(7601,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php'),(7602,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php'),(7603,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Tests/ContainerAwareEventDispatcherTest.php'),(7604,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Tests/Debug/TraceableEventDispatcherTest.php'),(7605,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php'),(7606,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Tests/EventDispatcherTest.php'),(7607,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Tests/EventTest.php'),(7608,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Tests/GenericEventTest.php'),(7609,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/event-dispatcher/Tests/ImmutableEventDispatcherTest.php'),(7610,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Exception/ExceptionInterface.php'),(7611,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Exception/InvalidArgumentException.php'),(7612,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Exception/LogicException.php'),(7613,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Exception/ProcessFailedException.php'),(7614,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Exception/ProcessTimedOutException.php'),(7615,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Exception/RuntimeException.php'),(7616,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/ExecutableFinder.php'),(7617,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/InputStream.php'),(7618,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/PhpExecutableFinder.php'),(7619,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/PhpProcess.php'),(7620,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Pipes/AbstractPipes.php'),(7621,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Pipes/PipesInterface.php'),(7622,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Pipes/UnixPipes.php'),(7623,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Pipes/WindowsPipes.php'),(7624,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Process.php'),(7625,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/ProcessBuilder.php'),(7626,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/ProcessUtils.php'),(7627,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/ExecutableFinderTest.php'),(7628,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/NonStopableProcess.php'),(7629,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/PhpExecutableFinderTest.php'),(7630,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/PhpProcessTest.php'),(7631,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/PipeStdinInStdoutStdErrStreamSelect.php'),(7632,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/ProcessBuilderTest.php'),(7633,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/ProcessFailedExceptionTest.php'),(7634,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/ProcessTest.php'),(7635,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/ProcessUtilsTest.php'),(7636,'wp-content/updraft/plugins-old/updraftplus/vendor/symfony/process/Tests/SignalListener.php'),(7637,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4/Factory.php'),(7638,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Autoloader.php'),(7639,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/Extension.php'),(7640,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/Panel.php'),(7641,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/PluginExtension.php'),(7642,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/PluginPanel.php'),(7643,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/DebugBar/ThemePanel.php'),(7644,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Metadata.php'),(7645,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/OAuthSignature.php'),(7646,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Plugin/Info.php'),(7647,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Plugin/Update.php'),(7648,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Plugin/UpdateChecker.php'),(7649,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Scheduler.php'),(7650,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/StateStore.php'),(7651,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Theme/Update.php'),(7652,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Theme/UpdateChecker.php'),(7653,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Update.php'),(7654,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/UpdateChecker.php'),(7655,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/UpgraderStatus.php'),(7656,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Utils.php'),(7657,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/Api.php'),(7658,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/BaseChecker.php'),(7659,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/BitBucketApi.php'),(7660,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/GitHubApi.php'),(7661,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/GitLabApi.php'),(7662,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/PluginUpdateChecker.php'),(7663,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/Reference.php'),(7664,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/Puc/v4p3/Vcs/ThemeUpdateChecker.php'),(7665,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/js/debug-bar.js'),(7666,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/plugin-update-checker.php'),(7667,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/vendor/Parsedown.php'),(7668,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/vendor/ParsedownLegacy.php'),(7669,'wp-content/updraft/plugins-old/updraftplus/vendor/yahnis-elsts/plugin-update-checker/vendor/readme-parser.php'),(7670,'wp-content/updraft/themes-old/index.php'),(7671,'wp-content/updraft/themes-old/twentynineteen/404.php'),(7672,'wp-content/updraft/themes-old/twentynineteen/archive.php'),(7673,'wp-content/updraft/themes-old/twentynineteen/classes/class-twentynineteen-svg-icons.php'),(7674,'wp-content/updraft/themes-old/twentynineteen/classes/class-twentynineteen-walker-comment.php'),(7675,'wp-content/updraft/themes-old/twentynineteen/comments.php'),(7676,'wp-content/updraft/themes-old/twentynineteen/footer.php'),(7677,'wp-content/updraft/themes-old/twentynineteen/functions.php'),(7678,'wp-content/updraft/themes-old/twentynineteen/header.php'),(7679,'wp-content/updraft/themes-old/twentynineteen/image.php'),(7680,'wp-content/updraft/themes-old/twentynineteen/inc/back-compat.php'),(7681,'wp-content/updraft/themes-old/twentynineteen/inc/color-patterns.php'),(7682,'wp-content/updraft/themes-old/twentynineteen/inc/customizer.php'),(7683,'wp-content/updraft/themes-old/twentynineteen/inc/icon-functions.php'),(7684,'wp-content/updraft/themes-old/twentynineteen/inc/template-functions.php'),(7685,'wp-content/updraft/themes-old/twentynineteen/inc/template-tags.php'),(7686,'wp-content/updraft/themes-old/twentynineteen/index.php'),(7687,'wp-content/updraft/themes-old/twentynineteen/js/customize-controls.js'),(7688,'wp-content/updraft/themes-old/twentynineteen/js/customize-preview.js'),(7689,'wp-content/updraft/themes-old/twentynineteen/js/priority-menu.js'),(7690,'wp-content/updraft/themes-old/twentynineteen/js/skip-link-focus-fix.js'),(7691,'wp-content/updraft/themes-old/twentynineteen/js/touch-keyboard-navigation.js'),(7692,'wp-content/updraft/themes-old/twentynineteen/page.php'),(7693,'wp-content/updraft/themes-old/twentynineteen/postcss.config.js'),(7694,'wp-content/updraft/themes-old/twentynineteen/search.php'),(7695,'wp-content/updraft/themes-old/twentynineteen/single.php'),(7696,'wp-content/updraft/themes-old/twentynineteen/template-parts/content/content-excerpt.php'),(7697,'wp-content/updraft/themes-old/twentynineteen/template-parts/content/content-none.php'),(7698,'wp-content/updraft/themes-old/twentynineteen/template-parts/content/content-page.php'),(7699,'wp-content/updraft/themes-old/twentynineteen/template-parts/content/content-single.php'),(7700,'wp-content/updraft/themes-old/twentynineteen/template-parts/content/content.php'),(7701,'wp-content/updraft/themes-old/twentynineteen/template-parts/footer/footer-widgets.php'),(7702,'wp-content/updraft/themes-old/twentynineteen/template-parts/header/entry-header.php'),(7703,'wp-content/updraft/themes-old/twentynineteen/template-parts/header/site-branding.php'),(7704,'wp-content/updraft/themes-old/twentynineteen/template-parts/post/author-bio.php'),(7705,'wp-content/updraft/themes-old/twentynineteen/template-parts/post/discussion-meta.php'),(7706,'wp-content/updraft/themes-old/twentyseventeen/404.php'),(7707,'wp-content/updraft/themes-old/twentyseventeen/archive.php'),(7708,'wp-content/updraft/themes-old/twentyseventeen/assets/images/svg-icons.svg'),(7709,'wp-content/updraft/themes-old/twentyseventeen/assets/js/customize-controls.js'),(7710,'wp-content/updraft/themes-old/twentyseventeen/assets/js/customize-preview.js'),(7711,'wp-content/updraft/themes-old/twentyseventeen/assets/js/global.js'),(7712,'wp-content/updraft/themes-old/twentyseventeen/assets/js/html5.js'),(7713,'wp-content/updraft/themes-old/twentyseventeen/assets/js/jquery.scrollTo.js'),(7714,'wp-content/updraft/themes-old/twentyseventeen/assets/js/navigation.js'),(7715,'wp-content/updraft/themes-old/twentyseventeen/assets/js/skip-link-focus-fix.js'),(7716,'wp-content/updraft/themes-old/twentyseventeen/comments.php'),(7717,'wp-content/updraft/themes-old/twentyseventeen/footer.php'),(7718,'wp-content/updraft/themes-old/twentyseventeen/front-page.php'),(7719,'wp-content/updraft/themes-old/twentyseventeen/functions.php'),(7720,'wp-content/updraft/themes-old/twentyseventeen/header.php'),(7721,'wp-content/updraft/themes-old/twentyseventeen/inc/back-compat.php'),(7722,'wp-content/updraft/themes-old/twentyseventeen/inc/color-patterns.php'),(7723,'wp-content/updraft/themes-old/twentyseventeen/inc/custom-header.php'),(7724,'wp-content/updraft/themes-old/twentyseventeen/inc/customizer.php'),(7725,'wp-content/updraft/themes-old/twentyseventeen/inc/icon-functions.php'),(7726,'wp-content/updraft/themes-old/twentyseventeen/inc/template-functions.php'),(7727,'wp-content/updraft/themes-old/twentyseventeen/inc/template-tags.php'),(7728,'wp-content/updraft/themes-old/twentyseventeen/index.php'),(7729,'wp-content/updraft/themes-old/twentyseventeen/page.php'),(7730,'wp-content/updraft/themes-old/twentyseventeen/search.php'),(7731,'wp-content/updraft/themes-old/twentyseventeen/searchform.php'),(7732,'wp-content/updraft/themes-old/twentyseventeen/sidebar.php'),(7733,'wp-content/updraft/themes-old/twentyseventeen/single.php'),(7734,'wp-content/updraft/themes-old/twentyseventeen/template-parts/footer/footer-widgets.php'),(7735,'wp-content/updraft/themes-old/twentyseventeen/template-parts/footer/site-info.php'),(7736,'wp-content/updraft/themes-old/twentyseventeen/template-parts/header/header-image.php'),(7737,'wp-content/updraft/themes-old/twentyseventeen/template-parts/header/site-branding.php'),(7738,'wp-content/updraft/themes-old/twentyseventeen/template-parts/navigation/navigation-top.php'),(7739,'wp-content/updraft/themes-old/twentyseventeen/template-parts/page/content-front-page-panels.php'),(7740,'wp-content/updraft/themes-old/twentyseventeen/template-parts/page/content-front-page.php'),(7741,'wp-content/updraft/themes-old/twentyseventeen/template-parts/page/content-page.php'),(7742,'wp-content/updraft/themes-old/twentyseventeen/template-parts/post/content-audio.php'),(7743,'wp-content/updraft/themes-old/twentyseventeen/template-parts/post/content-excerpt.php'),(7744,'wp-content/updraft/themes-old/twentyseventeen/template-parts/post/content-gallery.php'),(7745,'wp-content/updraft/themes-old/twentyseventeen/template-parts/post/content-image.php'),(7746,'wp-content/updraft/themes-old/twentyseventeen/template-parts/post/content-none.php'),(7747,'wp-content/updraft/themes-old/twentyseventeen/template-parts/post/content-video.php'),(7748,'wp-content/updraft/themes-old/twentyseventeen/template-parts/post/content.php'),(7749,'wp-content/updraft/themes-old/twentysixteen/404.php'),(7750,'wp-content/updraft/themes-old/twentysixteen/archive.php'),(7751,'wp-content/updraft/themes-old/twentysixteen/comments.php'),(7752,'wp-content/updraft/themes-old/twentysixteen/footer.php'),(7753,'wp-content/updraft/themes-old/twentysixteen/functions.php'),(7754,'wp-content/updraft/themes-old/twentysixteen/genericons/Genericons.svg'),(7755,'wp-content/updraft/themes-old/twentysixteen/header.php'),(7756,'wp-content/updraft/themes-old/twentysixteen/image.php'),(7757,'wp-content/updraft/themes-old/twentysixteen/inc/back-compat.php'),(7758,'wp-content/updraft/themes-old/twentysixteen/inc/customizer.php'),(7759,'wp-content/updraft/themes-old/twentysixteen/inc/template-tags.php'),(7760,'wp-content/updraft/themes-old/twentysixteen/index.php'),(7761,'wp-content/updraft/themes-old/twentysixteen/js/color-scheme-control.js'),(7762,'wp-content/updraft/themes-old/twentysixteen/js/customize-preview.js'),(7763,'wp-content/updraft/themes-old/twentysixteen/js/functions.js'),(7764,'wp-content/updraft/themes-old/twentysixteen/js/html5.js'),(7765,'wp-content/updraft/themes-old/twentysixteen/js/keyboard-image-navigation.js'),(7766,'wp-content/updraft/themes-old/twentysixteen/js/skip-link-focus-fix.js'),(7767,'wp-content/updraft/themes-old/twentysixteen/page.php'),(7768,'wp-content/updraft/themes-old/twentysixteen/search.php'),(7769,'wp-content/updraft/themes-old/twentysixteen/searchform.php'),(7770,'wp-content/updraft/themes-old/twentysixteen/sidebar-content-bottom.php'),(7771,'wp-content/updraft/themes-old/twentysixteen/sidebar.php'),(7772,'wp-content/updraft/themes-old/twentysixteen/single.php'),(7773,'wp-content/updraft/themes-old/twentysixteen/template-parts/biography.php'),(7774,'wp-content/updraft/themes-old/twentysixteen/template-parts/content-none.php'),(7775,'wp-content/updraft/themes-old/twentysixteen/template-parts/content-page.php'),(7776,'wp-content/updraft/themes-old/twentysixteen/template-parts/content-search.php'),(7777,'wp-content/updraft/themes-old/twentysixteen/template-parts/content-single.php'),(7778,'wp-content/updraft/themes-old/twentysixteen/template-parts/content.php'),(7779,'wp-content/updraft/themes-old/twentytwenty/404.php'),(7780,'wp-content/updraft/themes-old/twentytwenty/assets/js/color-calculations.js'),(7781,'wp-content/updraft/themes-old/twentytwenty/assets/js/customize-controls.js'),(7782,'wp-content/updraft/themes-old/twentytwenty/assets/js/customize-preview.js'),(7783,'wp-content/updraft/themes-old/twentytwenty/assets/js/customize.js'),(7784,'wp-content/updraft/themes-old/twentytwenty/assets/js/editor-script-block.js'),(7785,'wp-content/updraft/themes-old/twentytwenty/assets/js/index.js'),(7786,'wp-content/updraft/themes-old/twentytwenty/assets/js/skip-link-focus-fix.js'),(7787,'wp-content/updraft/themes-old/twentytwenty/classes/class-twentytwenty-customize.php'),(7788,'wp-content/updraft/themes-old/twentytwenty/classes/class-twentytwenty-non-latin-languages.php'),(7789,'wp-content/updraft/themes-old/twentytwenty/classes/class-twentytwenty-script-loader.php'),(7790,'wp-content/updraft/themes-old/twentytwenty/classes/class-twentytwenty-separator-control.php'),(7791,'wp-content/updraft/themes-old/twentytwenty/classes/class-twentytwenty-svg-icons.php'),(7792,'wp-content/updraft/themes-old/twentytwenty/classes/class-twentytwenty-walker-comment.php'),(7793,'wp-content/updraft/themes-old/twentytwenty/classes/class-twentytwenty-walker-page.php'),(7794,'wp-content/updraft/themes-old/twentytwenty/comments.php'),(7795,'wp-content/updraft/themes-old/twentytwenty/footer.php'),(7796,'wp-content/updraft/themes-old/twentytwenty/functions.php'),(7797,'wp-content/updraft/themes-old/twentytwenty/header.php'),(7798,'wp-content/updraft/themes-old/twentytwenty/inc/custom-css.php'),(7799,'wp-content/updraft/themes-old/twentytwenty/inc/starter-content.php'),(7800,'wp-content/updraft/themes-old/twentytwenty/inc/svg-icons.php'),(7801,'wp-content/updraft/themes-old/twentytwenty/inc/template-tags.php'),(7802,'wp-content/updraft/themes-old/twentytwenty/index.php'),(7803,'wp-content/updraft/themes-old/twentytwenty/searchform.php'),(7804,'wp-content/updraft/themes-old/twentytwenty/singular.php'),(7805,'wp-content/updraft/themes-old/twentytwenty/template-parts/content-cover.php'),(7806,'wp-content/updraft/themes-old/twentytwenty/template-parts/content.php'),(7807,'wp-content/updraft/themes-old/twentytwenty/template-parts/entry-author-bio.php'),(7808,'wp-content/updraft/themes-old/twentytwenty/template-parts/entry-header.php'),(7809,'wp-content/updraft/themes-old/twentytwenty/template-parts/featured-image.php'),(7810,'wp-content/updraft/themes-old/twentytwenty/template-parts/footer-menus-widgets.php'),(7811,'wp-content/updraft/themes-old/twentytwenty/template-parts/modal-menu.php'),(7812,'wp-content/updraft/themes-old/twentytwenty/template-parts/modal-search.php'),(7813,'wp-content/updraft/themes-old/twentytwenty/template-parts/navigation.php'),(7814,'wp-content/updraft/themes-old/twentytwenty/template-parts/pagination.php'),(7815,'wp-content/updraft/themes-old/twentytwenty/templates/template-cover.php'),(7816,'wp-content/updraft/themes-old/twentytwenty/templates/template-full-width.php'),(7817,'wp-content/wflogs/attack-data.php'),(7818,'wp-content/wflogs/config-livewaf.php'),(7819,'wp-content/wflogs/config-synced.php'),(7820,'wp-content/wflogs/config-transient.php'),(7821,'wp-content/wflogs/config.php'),(7822,'wp-content/wflogs/ips.php'),(7823,'wp-content/wflogs/rules.php'),(7824,'wp-content/wflogs/template.php'),(7825,'wp-content/wflogs-old/attack-data.php'),(7826,'wp-content/wflogs-old/config-livewaf.php'),(7827,'wp-content/wflogs-old/config-synced.php'),(7828,'wp-content/wflogs-old/config.php'),(7829,'wp-content/wflogs-old/ips.php'),(7830,'wp-content/wflogs-old/rules.php'),(7831,'wp-content/wflogs-old/template.php'),(7832,'wp-cron.php'),(7833,'wp-includes/ID3/getid3.lib.php'),(7834,'wp-includes/ID3/getid3.php'),(7835,'wp-includes/ID3/license.commercial.txt'),(7836,'wp-includes/ID3/license.txt'),(7837,'wp-includes/ID3/module.audio-video.asf.php'),(7838,'wp-includes/ID3/module.audio-video.flv.php'),(7839,'wp-includes/ID3/module.audio-video.matroska.php'),(7840,'wp-includes/ID3/module.audio-video.quicktime.php'),(7841,'wp-includes/ID3/module.audio-video.riff.php'),(7842,'wp-includes/ID3/module.audio.ac3.php'),(7843,'wp-includes/ID3/module.audio.dts.php'),(7844,'wp-includes/ID3/module.audio.flac.php'),(7845,'wp-includes/ID3/module.audio.mp3.php'),(7846,'wp-includes/ID3/module.audio.ogg.php'),(7847,'wp-includes/ID3/module.tag.apetag.php'),(7848,'wp-includes/ID3/module.tag.id3v1.php'),(7849,'wp-includes/ID3/module.tag.id3v2.php'),(7850,'wp-includes/ID3/module.tag.lyrics3.php'),(7851,'wp-includes/ID3/readme.txt'),(7852,'wp-includes/IXR/class-IXR-base64.php'),(7853,'wp-includes/IXR/class-IXR-client.php'),(7854,'wp-includes/IXR/class-IXR-clientmulticall.php'),(7855,'wp-includes/IXR/class-IXR-date.php'),(7856,'wp-includes/IXR/class-IXR-error.php'),(7857,'wp-includes/IXR/class-IXR-introspectionserver.php'),(7858,'wp-includes/IXR/class-IXR-message.php'),(7859,'wp-includes/IXR/class-IXR-request.php'),(7860,'wp-includes/IXR/class-IXR-server.php'),(7861,'wp-includes/IXR/class-IXR-value.php'),(7862,'wp-includes/PHPMailer/Exception.php'),(7863,'wp-includes/PHPMailer/PHPMailer.php'),(7864,'wp-includes/PHPMailer/SMTP.php'),(7865,'wp-includes/Requests/Auth/Basic.php'),(7866,'wp-includes/Requests/Auth.php'),(7867,'wp-includes/Requests/Cookie/Jar.php'),(7868,'wp-includes/Requests/Cookie.php'),(7869,'wp-includes/Requests/Exception/HTTP/304.php'),(7870,'wp-includes/Requests/Exception/HTTP/305.php'),(7871,'wp-includes/Requests/Exception/HTTP/306.php'),(7872,'wp-includes/Requests/Exception/HTTP/400.php'),(7873,'wp-includes/Requests/Exception/HTTP/401.php'),(7874,'wp-includes/Requests/Exception/HTTP/402.php'),(7875,'wp-includes/Requests/Exception/HTTP/403.php'),(7876,'wp-includes/Requests/Exception/HTTP/404.php'),(7877,'wp-includes/Requests/Exception/HTTP/405.php'),(7878,'wp-includes/Requests/Exception/HTTP/406.php'),(7879,'wp-includes/Requests/Exception/HTTP/407.php'),(7880,'wp-includes/Requests/Exception/HTTP/408.php'),(7881,'wp-includes/Requests/Exception/HTTP/409.php'),(7882,'wp-includes/Requests/Exception/HTTP/410.php'),(7883,'wp-includes/Requests/Exception/HTTP/411.php'),(7884,'wp-includes/Requests/Exception/HTTP/412.php'),(7885,'wp-includes/Requests/Exception/HTTP/413.php'),(7886,'wp-includes/Requests/Exception/HTTP/414.php'),(7887,'wp-includes/Requests/Exception/HTTP/415.php'),(7888,'wp-includes/Requests/Exception/HTTP/416.php'),(7889,'wp-includes/Requests/Exception/HTTP/417.php'),(7890,'wp-includes/Requests/Exception/HTTP/418.php'),(7891,'wp-includes/Requests/Exception/HTTP/428.php'),(7892,'wp-includes/Requests/Exception/HTTP/429.php'),(7893,'wp-includes/Requests/Exception/HTTP/431.php'),(7894,'wp-includes/Requests/Exception/HTTP/500.php'),(7895,'wp-includes/Requests/Exception/HTTP/501.php'),(7896,'wp-includes/Requests/Exception/HTTP/502.php'),(7897,'wp-includes/Requests/Exception/HTTP/503.php'),(7898,'wp-includes/Requests/Exception/HTTP/504.php'),(7899,'wp-includes/Requests/Exception/HTTP/505.php'),(7900,'wp-includes/Requests/Exception/HTTP/511.php'),(7901,'wp-includes/Requests/Exception/HTTP/Unknown.php'),(7902,'wp-includes/Requests/Exception/HTTP.php'),(7903,'wp-includes/Requests/Exception/Transport/cURL.php'),(7904,'wp-includes/Requests/Exception/Transport.php'),(7905,'wp-includes/Requests/Exception.php'),(7906,'wp-includes/Requests/Hooker.php'),(7907,'wp-includes/Requests/Hooks.php'),(7908,'wp-includes/Requests/IDNAEncoder.php'),(7909,'wp-includes/Requests/IPv6.php'),(7910,'wp-includes/Requests/IRI.php'),(7911,'wp-includes/Requests/Proxy/HTTP.php'),(7912,'wp-includes/Requests/Proxy.php'),(7913,'wp-includes/Requests/Response/Headers.php'),(7914,'wp-includes/Requests/Response.php'),(7915,'wp-includes/Requests/SSL.php'),(7916,'wp-includes/Requests/Session.php'),(7917,'wp-includes/Requests/Transport/cURL.php'),(7918,'wp-includes/Requests/Transport/fsockopen.php'),(7919,'wp-includes/Requests/Transport.php'),(7920,'wp-includes/Requests/Utility/CaseInsensitiveDictionary.php'),(7921,'wp-includes/Requests/Utility/FilteredIterator.php'),(7922,'wp-includes/SimplePie/Author.php'),(7923,'wp-includes/SimplePie/Cache/Base.php'),(7924,'wp-includes/SimplePie/Cache/DB.php'),(7925,'wp-includes/SimplePie/Cache/File.php'),(7926,'wp-includes/SimplePie/Cache/Memcache.php'),(7927,'wp-includes/SimplePie/Cache/Memcached.php'),(7928,'wp-includes/SimplePie/Cache/MySQL.php'),(7929,'wp-includes/SimplePie/Cache/Redis.php'),(7930,'wp-includes/SimplePie/Cache.php'),(7931,'wp-includes/SimplePie/Caption.php'),(7932,'wp-includes/SimplePie/Category.php'),(7933,'wp-includes/SimplePie/Content/Type/Sniffer.php'),(7934,'wp-includes/SimplePie/Copyright.php'),(7935,'wp-includes/SimplePie/Core.php'),(7936,'wp-includes/SimplePie/Credit.php'),(7937,'wp-includes/SimplePie/Decode/HTML/Entities.php'),(7938,'wp-includes/SimplePie/Enclosure.php'),(7939,'wp-includes/SimplePie/Exception.php'),(7940,'wp-includes/SimplePie/File.php'),(7941,'wp-includes/SimplePie/HTTP/Parser.php'),(7942,'wp-includes/SimplePie/IRI.php'),(7943,'wp-includes/SimplePie/Item.php'),(7944,'wp-includes/SimplePie/Locator.php'),(7945,'wp-includes/SimplePie/Misc.php'),(7946,'wp-includes/SimplePie/Net/IPv6.php'),(7947,'wp-includes/SimplePie/Parse/Date.php'),(7948,'wp-includes/SimplePie/Parser.php'),(7949,'wp-includes/SimplePie/Rating.php'),(7950,'wp-includes/SimplePie/Registry.php'),(7951,'wp-includes/SimplePie/Restriction.php'),(7952,'wp-includes/SimplePie/Sanitize.php'),(7953,'wp-includes/SimplePie/Source.php'),(7954,'wp-includes/SimplePie/XML/Declaration/Parser.php'),(7955,'wp-includes/SimplePie/gzdecode.php'),(7956,'wp-includes/Text/Diff/Engine/native.php'),(7957,'wp-includes/Text/Diff/Engine/shell.php'),(7958,'wp-includes/Text/Diff/Engine/string.php'),(7959,'wp-includes/Text/Diff/Engine/xdiff.php'),(7960,'wp-includes/Text/Diff/Renderer/inline.php'),(7961,'wp-includes/Text/Diff/Renderer.php'),(7962,'wp-includes/Text/Diff.php'),(7963,'wp-includes/admin-bar.php'),(7964,'wp-includes/assets/script-loader-packages.php'),(7965,'wp-includes/atomlib.php'),(7966,'wp-includes/author-template.php'),(7967,'wp-includes/block-editor.php'),(7968,'wp-includes/block-patterns/query-grid-posts.php'),(7969,'wp-includes/block-patterns/query-large-title-posts.php'),(7970,'wp-includes/block-patterns/query-medium-posts.php'),(7971,'wp-includes/block-patterns/query-offset-posts.php'),(7972,'wp-includes/block-patterns/query-small-posts.php'),(7973,'wp-includes/block-patterns/query-standard-posts.php'),(7974,'wp-includes/block-patterns/social-links-shared-background-color.php'),(7975,'wp-includes/block-patterns.php'),(7976,'wp-includes/block-supports/align.php'),(7977,'wp-includes/block-supports/border.php'),(7978,'wp-includes/block-supports/colors.php'),(7979,'wp-includes/block-supports/custom-classname.php'),(7980,'wp-includes/block-supports/duotone.php'),(7981,'wp-includes/block-supports/elements.php'),(7982,'wp-includes/block-supports/generated-classname.php'),(7983,'wp-includes/block-supports/layout.php'),(7984,'wp-includes/block-supports/spacing.php'),(7985,'wp-includes/block-supports/typography.php'),(7986,'wp-includes/block-template-utils.php'),(7987,'wp-includes/block-template.php'),(7988,'wp-includes/blocks/archives/block.json'),(7989,'wp-includes/blocks/archives/editor-rtl.css'),(7990,'wp-includes/blocks/archives/editor-rtl.min.css'),(7991,'wp-includes/blocks/archives/editor.css'),(7992,'wp-includes/blocks/archives/editor.min.css'),(7993,'wp-includes/blocks/archives.php'),(7994,'wp-includes/blocks/audio/block.json'),(7995,'wp-includes/blocks/audio/editor-rtl.css'),(7996,'wp-includes/blocks/audio/editor-rtl.min.css'),(7997,'wp-includes/blocks/audio/editor.css'),(7998,'wp-includes/blocks/audio/editor.min.css'),(7999,'wp-includes/blocks/audio/style-rtl.css'),(8000,'wp-includes/blocks/audio/style-rtl.min.css'),(8001,'wp-includes/blocks/audio/style.css'),(8002,'wp-includes/blocks/audio/style.min.css'),(8003,'wp-includes/blocks/block/block.json'),(8004,'wp-includes/blocks/block/editor-rtl.css'),(8005,'wp-includes/blocks/block/editor-rtl.min.css'),(8006,'wp-includes/blocks/block/editor.css'),(8007,'wp-includes/blocks/block/editor.min.css'),(8008,'wp-includes/blocks/block.php'),(8009,'wp-includes/blocks/button/block.json'),(8010,'wp-includes/blocks/button/editor-rtl.css'),(8011,'wp-includes/blocks/button/editor-rtl.min.css'),(8012,'wp-includes/blocks/button/editor.css'),(8013,'wp-includes/blocks/button/editor.min.css'),(8014,'wp-includes/blocks/button/style-rtl.css'),(8015,'wp-includes/blocks/button/style-rtl.min.css'),(8016,'wp-includes/blocks/button/style.css'),(8017,'wp-includes/blocks/button/style.min.css'),(8018,'wp-includes/blocks/buttons/block.json'),(8019,'wp-includes/blocks/buttons/editor-rtl.css'),(8020,'wp-includes/blocks/buttons/editor-rtl.min.css'),(8021,'wp-includes/blocks/buttons/editor.css'),(8022,'wp-includes/blocks/buttons/editor.min.css'),(8023,'wp-includes/blocks/buttons/style-rtl.css'),(8024,'wp-includes/blocks/buttons/style-rtl.min.css'),(8025,'wp-includes/blocks/buttons/style.css'),(8026,'wp-includes/blocks/buttons/style.min.css'),(8027,'wp-includes/blocks/calendar/block.json'),(8028,'wp-includes/blocks/calendar/style-rtl.css'),(8029,'wp-includes/blocks/calendar/style-rtl.min.css'),(8030,'wp-includes/blocks/calendar/style.css'),(8031,'wp-includes/blocks/calendar/style.min.css'),(8032,'wp-includes/blocks/calendar.php'),(8033,'wp-includes/blocks/categories/block.json'),(8034,'wp-includes/blocks/categories/editor-rtl.css'),(8035,'wp-includes/blocks/categories/editor-rtl.min.css'),(8036,'wp-includes/blocks/categories/editor.css'),(8037,'wp-includes/blocks/categories/editor.min.css'),(8038,'wp-includes/blocks/categories/style-rtl.css'),(8039,'wp-includes/blocks/categories/style-rtl.min.css'),(8040,'wp-includes/blocks/categories/style.css'),(8041,'wp-includes/blocks/categories/style.min.css'),(8042,'wp-includes/blocks/categories.php'),(8043,'wp-includes/blocks/code/block.json'),(8044,'wp-includes/blocks/code/style-rtl.css'),(8045,'wp-includes/blocks/code/style-rtl.min.css'),(8046,'wp-includes/blocks/code/style.css'),(8047,'wp-includes/blocks/code/style.min.css'),(8048,'wp-includes/blocks/column/block.json'),(8049,'wp-includes/blocks/columns/block.json'),(8050,'wp-includes/blocks/columns/editor-rtl.css'),(8051,'wp-includes/blocks/columns/editor-rtl.min.css'),(8052,'wp-includes/blocks/columns/editor.css'),(8053,'wp-includes/blocks/columns/editor.min.css'),(8054,'wp-includes/blocks/columns/style-rtl.css'),(8055,'wp-includes/blocks/columns/style-rtl.min.css'),(8056,'wp-includes/blocks/columns/style.css'),(8057,'wp-includes/blocks/columns/style.min.css'),(8058,'wp-includes/blocks/cover/block.json'),(8059,'wp-includes/blocks/cover/editor-rtl.css'),(8060,'wp-includes/blocks/cover/editor-rtl.min.css'),(8061,'wp-includes/blocks/cover/editor.css'),(8062,'wp-includes/blocks/cover/editor.min.css'),(8063,'wp-includes/blocks/cover/style-rtl.css'),(8064,'wp-includes/blocks/cover/style-rtl.min.css'),(8065,'wp-includes/blocks/cover/style.css'),(8066,'wp-includes/blocks/cover/style.min.css'),(8067,'wp-includes/blocks/embed/block.json'),(8068,'wp-includes/blocks/embed/editor-rtl.css'),(8069,'wp-includes/blocks/embed/editor-rtl.min.css'),(8070,'wp-includes/blocks/embed/editor.css'),(8071,'wp-includes/blocks/embed/editor.min.css'),(8072,'wp-includes/blocks/embed/style-rtl.css'),(8073,'wp-includes/blocks/embed/style-rtl.min.css'),(8074,'wp-includes/blocks/embed/style.css'),(8075,'wp-includes/blocks/embed/style.min.css'),(8076,'wp-includes/blocks/file/block.json'),(8077,'wp-includes/blocks/file/editor-rtl.css'),(8078,'wp-includes/blocks/file/editor-rtl.min.css'),(8079,'wp-includes/blocks/file/editor.css'),(8080,'wp-includes/blocks/file/editor.min.css'),(8081,'wp-includes/blocks/file/style-rtl.css'),(8082,'wp-includes/blocks/file/style-rtl.min.css'),(8083,'wp-includes/blocks/file/style.css'),(8084,'wp-includes/blocks/file/style.min.css'),(8085,'wp-includes/blocks/file.php'),(8086,'wp-includes/blocks/freeform/block.json'),(8087,'wp-includes/blocks/freeform/editor-rtl.css'),(8088,'wp-includes/blocks/freeform/editor-rtl.min.css'),(8089,'wp-includes/blocks/freeform/editor.css'),(8090,'wp-includes/blocks/freeform/editor.min.css'),(8091,'wp-includes/blocks/gallery/block.json'),(8092,'wp-includes/blocks/gallery/editor-rtl.css'),(8093,'wp-includes/blocks/gallery/editor-rtl.min.css'),(8094,'wp-includes/blocks/gallery/editor.css'),(8095,'wp-includes/blocks/gallery/editor.min.css'),(8096,'wp-includes/blocks/gallery/style-rtl.css'),(8097,'wp-includes/blocks/gallery/style-rtl.min.css'),(8098,'wp-includes/blocks/gallery/style.css'),(8099,'wp-includes/blocks/gallery/style.min.css'),(8100,'wp-includes/blocks/group/block.json'),(8101,'wp-includes/blocks/group/editor-rtl.css'),(8102,'wp-includes/blocks/group/editor-rtl.min.css'),(8103,'wp-includes/blocks/group/editor.css'),(8104,'wp-includes/blocks/group/editor.min.css'),(8105,'wp-includes/blocks/group/style-rtl.css'),(8106,'wp-includes/blocks/group/style-rtl.min.css'),(8107,'wp-includes/blocks/group/style.css'),(8108,'wp-includes/blocks/group/style.min.css'),(8109,'wp-includes/blocks/heading/block.json'),(8110,'wp-includes/blocks/heading/editor-rtl.css'),(8111,'wp-includes/blocks/heading/editor-rtl.min.css'),(8112,'wp-includes/blocks/heading/editor.css'),(8113,'wp-includes/blocks/heading/editor.min.css'),(8114,'wp-includes/blocks/heading/style-rtl.css'),(8115,'wp-includes/blocks/heading/style-rtl.min.css'),(8116,'wp-includes/blocks/heading/style.css'),(8117,'wp-includes/blocks/heading/style.min.css'),(8118,'wp-includes/blocks/html/block.json'),(8119,'wp-includes/blocks/html/editor-rtl.css'),(8120,'wp-includes/blocks/html/editor-rtl.min.css'),(8121,'wp-includes/blocks/html/editor.css'),(8122,'wp-includes/blocks/html/editor.min.css'),(8123,'wp-includes/blocks/image/block.json'),(8124,'wp-includes/blocks/image/editor-rtl.css'),(8125,'wp-includes/blocks/image/editor-rtl.min.css'),(8126,'wp-includes/blocks/image/editor.css'),(8127,'wp-includes/blocks/image/editor.min.css'),(8128,'wp-includes/blocks/image/style-rtl.css'),(8129,'wp-includes/blocks/image/style-rtl.min.css'),(8130,'wp-includes/blocks/image/style.css'),(8131,'wp-includes/blocks/image/style.min.css'),(8132,'wp-includes/blocks/index.php'),(8133,'wp-includes/blocks/latest-comments/block.json'),(8134,'wp-includes/blocks/latest-comments/style-rtl.css'),(8135,'wp-includes/blocks/latest-comments/style-rtl.min.css'),(8136,'wp-includes/blocks/latest-comments/style.css'),(8137,'wp-includes/blocks/latest-comments/style.min.css'),(8138,'wp-includes/blocks/latest-comments.php'),(8139,'wp-includes/blocks/latest-posts/block.json'),(8140,'wp-includes/blocks/latest-posts/editor-rtl.css'),(8141,'wp-includes/blocks/latest-posts/editor-rtl.min.css'),(8142,'wp-includes/blocks/latest-posts/editor.css'),(8143,'wp-includes/blocks/latest-posts/editor.min.css'),(8144,'wp-includes/blocks/latest-posts/style-rtl.css'),(8145,'wp-includes/blocks/latest-posts/style-rtl.min.css'),(8146,'wp-includes/blocks/latest-posts/style.css'),(8147,'wp-includes/blocks/latest-posts/style.min.css'),(8148,'wp-includes/blocks/latest-posts.php'),(8149,'wp-includes/blocks/legacy-widget/block.json'),(8150,'wp-includes/blocks/legacy-widget.php'),(8151,'wp-includes/blocks/list/block.json'),(8152,'wp-includes/blocks/list/style-rtl.css'),(8153,'wp-includes/blocks/list/style-rtl.min.css'),(8154,'wp-includes/blocks/list/style.css'),(8155,'wp-includes/blocks/list/style.min.css'),(8156,'wp-includes/blocks/loginout/block.json'),(8157,'wp-includes/blocks/loginout.php'),(8158,'wp-includes/blocks/media-text/block.json'),(8159,'wp-includes/blocks/media-text/editor-rtl.css'),(8160,'wp-includes/blocks/media-text/editor-rtl.min.css'),(8161,'wp-includes/blocks/media-text/editor.css'),(8162,'wp-includes/blocks/media-text/editor.min.css'),(8163,'wp-includes/blocks/media-text/style-rtl.css'),(8164,'wp-includes/blocks/media-text/style-rtl.min.css'),(8165,'wp-includes/blocks/media-text/style.css'),(8166,'wp-includes/blocks/media-text/style.min.css'),(8167,'wp-includes/blocks/missing/block.json'),(8168,'wp-includes/blocks/more/block.json'),(8169,'wp-includes/blocks/more/editor-rtl.css'),(8170,'wp-includes/blocks/more/editor-rtl.min.css'),(8171,'wp-includes/blocks/more/editor.css'),(8172,'wp-includes/blocks/more/editor.min.css'),(8173,'wp-includes/blocks/nextpage/block.json'),(8174,'wp-includes/blocks/nextpage/editor-rtl.css'),(8175,'wp-includes/blocks/nextpage/editor-rtl.min.css'),(8176,'wp-includes/blocks/nextpage/editor.css'),(8177,'wp-includes/blocks/nextpage/editor.min.css'),(8178,'wp-includes/blocks/page-list/block.json'),(8179,'wp-includes/blocks/page-list/editor-rtl.css'),(8180,'wp-includes/blocks/page-list/editor-rtl.min.css'),(8181,'wp-includes/blocks/page-list/editor.css'),(8182,'wp-includes/blocks/page-list/editor.min.css'),(8183,'wp-includes/blocks/page-list/style-rtl.css'),(8184,'wp-includes/blocks/page-list/style-rtl.min.css'),(8185,'wp-includes/blocks/page-list/style.css'),(8186,'wp-includes/blocks/page-list/style.min.css'),(8187,'wp-includes/blocks/page-list.php'),(8188,'wp-includes/blocks/paragraph/block.json'),(8189,'wp-includes/blocks/paragraph/editor-rtl.css'),(8190,'wp-includes/blocks/paragraph/editor-rtl.min.css'),(8191,'wp-includes/blocks/paragraph/editor.css'),(8192,'wp-includes/blocks/paragraph/editor.min.css'),(8193,'wp-includes/blocks/paragraph/style-rtl.css'),(8194,'wp-includes/blocks/paragraph/style-rtl.min.css'),(8195,'wp-includes/blocks/paragraph/style.css'),(8196,'wp-includes/blocks/paragraph/style.min.css'),(8197,'wp-includes/blocks/post-content/block.json'),(8198,'wp-includes/blocks/post-content/editor-rtl.css'),(8199,'wp-includes/blocks/post-content/editor-rtl.min.css'),(8200,'wp-includes/blocks/post-content/editor.css'),(8201,'wp-includes/blocks/post-content/editor.min.css'),(8202,'wp-includes/blocks/post-content.php'),(8203,'wp-includes/blocks/post-date/block.json'),(8204,'wp-includes/blocks/post-date.php'),(8205,'wp-includes/blocks/post-excerpt/block.json'),(8206,'wp-includes/blocks/post-excerpt/editor-rtl.css'),(8207,'wp-includes/blocks/post-excerpt/editor-rtl.min.css'),(8208,'wp-includes/blocks/post-excerpt/editor.css'),(8209,'wp-includes/blocks/post-excerpt/editor.min.css'),(8210,'wp-includes/blocks/post-excerpt/style-rtl.css'),(8211,'wp-includes/blocks/post-excerpt/style-rtl.min.css'),(8212,'wp-includes/blocks/post-excerpt/style.css'),(8213,'wp-includes/blocks/post-excerpt/style.min.css'),(8214,'wp-includes/blocks/post-excerpt.php'),(8215,'wp-includes/blocks/post-featured-image/block.json'),(8216,'wp-includes/blocks/post-featured-image/editor-rtl.css'),(8217,'wp-includes/blocks/post-featured-image/editor-rtl.min.css'),(8218,'wp-includes/blocks/post-featured-image/editor.css'),(8219,'wp-includes/blocks/post-featured-image/editor.min.css'),(8220,'wp-includes/blocks/post-featured-image/style-rtl.css'),(8221,'wp-includes/blocks/post-featured-image/style-rtl.min.css'),(8222,'wp-includes/blocks/post-featured-image/style.css'),(8223,'wp-includes/blocks/post-featured-image/style.min.css'),(8224,'wp-includes/blocks/post-featured-image.php'),(8225,'wp-includes/blocks/post-template/block.json'),(8226,'wp-includes/blocks/post-template/editor-rtl.css'),(8227,'wp-includes/blocks/post-template/editor-rtl.min.css'),(8228,'wp-includes/blocks/post-template/editor.css'),(8229,'wp-includes/blocks/post-template/editor.min.css'),(8230,'wp-includes/blocks/post-template/style-rtl.css'),(8231,'wp-includes/blocks/post-template/style-rtl.min.css'),(8232,'wp-includes/blocks/post-template/style.css'),(8233,'wp-includes/blocks/post-template/style.min.css'),(8234,'wp-includes/blocks/post-template.php'),(8235,'wp-includes/blocks/post-terms/block.json'),(8236,'wp-includes/blocks/post-terms.php'),(8237,'wp-includes/blocks/post-title/block.json'),(8238,'wp-includes/blocks/post-title/style-rtl.css'),(8239,'wp-includes/blocks/post-title/style-rtl.min.css'),(8240,'wp-includes/blocks/post-title/style.css'),(8241,'wp-includes/blocks/post-title/style.min.css'),(8242,'wp-includes/blocks/post-title.php'),(8243,'wp-includes/blocks/preformatted/block.json'),(8244,'wp-includes/blocks/preformatted/style-rtl.css'),(8245,'wp-includes/blocks/preformatted/style-rtl.min.css'),(8246,'wp-includes/blocks/preformatted/style.css'),(8247,'wp-includes/blocks/preformatted/style.min.css'),(8248,'wp-includes/blocks/pullquote/block.json'),(8249,'wp-includes/blocks/pullquote/editor-rtl.css'),(8250,'wp-includes/blocks/pullquote/editor-rtl.min.css'),(8251,'wp-includes/blocks/pullquote/editor.css'),(8252,'wp-includes/blocks/pullquote/editor.min.css'),(8253,'wp-includes/blocks/pullquote/style-rtl.css'),(8254,'wp-includes/blocks/pullquote/style-rtl.min.css'),(8255,'wp-includes/blocks/pullquote/style.css'),(8256,'wp-includes/blocks/pullquote/style.min.css'),(8257,'wp-includes/blocks/query/block.json'),(8258,'wp-includes/blocks/query/editor-rtl.css'),(8259,'wp-includes/blocks/query/editor-rtl.min.css'),(8260,'wp-includes/blocks/query/editor.css'),(8261,'wp-includes/blocks/query/editor.min.css'),(8262,'wp-includes/blocks/query-pagination/block.json'),(8263,'wp-includes/blocks/query-pagination/editor-rtl.css'),(8264,'wp-includes/blocks/query-pagination/editor-rtl.min.css'),(8265,'wp-includes/blocks/query-pagination/editor.css'),(8266,'wp-includes/blocks/query-pagination/editor.min.css'),(8267,'wp-includes/blocks/query-pagination/style-rtl.css'),(8268,'wp-includes/blocks/query-pagination/style-rtl.min.css'),(8269,'wp-includes/blocks/query-pagination/style.css'),(8270,'wp-includes/blocks/query-pagination/style.min.css'),(8271,'wp-includes/blocks/query-pagination-next/block.json'),(8272,'wp-includes/blocks/query-pagination-next.php'),(8273,'wp-includes/blocks/query-pagination-numbers/block.json'),(8274,'wp-includes/blocks/query-pagination-numbers/editor-rtl.css'),(8275,'wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css'),(8276,'wp-includes/blocks/query-pagination-numbers/editor.css'),(8277,'wp-includes/blocks/query-pagination-numbers/editor.min.css'),(8278,'wp-includes/blocks/query-pagination-numbers.php'),(8279,'wp-includes/blocks/query-pagination-previous/block.json'),(8280,'wp-includes/blocks/query-pagination-previous.php'),(8281,'wp-includes/blocks/query-pagination.php'),(8282,'wp-includes/blocks/query-title/block.json'),(8283,'wp-includes/blocks/query-title/editor-rtl.css'),(8284,'wp-includes/blocks/query-title/editor-rtl.min.css'),(8285,'wp-includes/blocks/query-title/editor.css'),(8286,'wp-includes/blocks/query-title/editor.min.css'),(8287,'wp-includes/blocks/query-title.php'),(8288,'wp-includes/blocks/query.php'),(8289,'wp-includes/blocks/quote/block.json'),(8290,'wp-includes/blocks/quote/style-rtl.css'),(8291,'wp-includes/blocks/quote/style-rtl.min.css'),(8292,'wp-includes/blocks/quote/style.css'),(8293,'wp-includes/blocks/quote/style.min.css'),(8294,'wp-includes/blocks/rss/block.json'),(8295,'wp-includes/blocks/rss/editor-rtl.css'),(8296,'wp-includes/blocks/rss/editor-rtl.min.css'),(8297,'wp-includes/blocks/rss/editor.css'),(8298,'wp-includes/blocks/rss/editor.min.css'),(8299,'wp-includes/blocks/rss/style-rtl.css'),(8300,'wp-includes/blocks/rss/style-rtl.min.css'),(8301,'wp-includes/blocks/rss/style.css'),(8302,'wp-includes/blocks/rss/style.min.css'),(8303,'wp-includes/blocks/rss.php'),(8304,'wp-includes/blocks/search/block.json'),(8305,'wp-includes/blocks/search/editor-rtl.css'),(8306,'wp-includes/blocks/search/editor-rtl.min.css'),(8307,'wp-includes/blocks/search/editor.css'),(8308,'wp-includes/blocks/search/editor.min.css'),(8309,'wp-includes/blocks/search/style-rtl.css'),(8310,'wp-includes/blocks/search/style-rtl.min.css'),(8311,'wp-includes/blocks/search/style.css'),(8312,'wp-includes/blocks/search/style.min.css'),(8313,'wp-includes/blocks/search.php'),(8314,'wp-includes/blocks/separator/block.json'),(8315,'wp-includes/blocks/separator/editor-rtl.css'),(8316,'wp-includes/blocks/separator/editor-rtl.min.css'),(8317,'wp-includes/blocks/separator/editor.css'),(8318,'wp-includes/blocks/separator/editor.min.css'),(8319,'wp-includes/blocks/separator/style-rtl.css'),(8320,'wp-includes/blocks/separator/style-rtl.min.css'),(8321,'wp-includes/blocks/separator/style.css'),(8322,'wp-includes/blocks/separator/style.min.css'),(8323,'wp-includes/blocks/shortcode/block.json'),(8324,'wp-includes/blocks/shortcode/editor-rtl.css'),(8325,'wp-includes/blocks/shortcode/editor-rtl.min.css'),(8326,'wp-includes/blocks/shortcode/editor.css'),(8327,'wp-includes/blocks/shortcode/editor.min.css'),(8328,'wp-includes/blocks/shortcode.php'),(8329,'wp-includes/blocks/site-logo/block.json'),(8330,'wp-includes/blocks/site-logo/editor-rtl.css'),(8331,'wp-includes/blocks/site-logo/editor-rtl.min.css'),(8332,'wp-includes/blocks/site-logo/editor.css'),(8333,'wp-includes/blocks/site-logo/editor.min.css'),(8334,'wp-includes/blocks/site-logo/style-rtl.css'),(8335,'wp-includes/blocks/site-logo/style-rtl.min.css'),(8336,'wp-includes/blocks/site-logo/style.css'),(8337,'wp-includes/blocks/site-logo/style.min.css'),(8338,'wp-includes/blocks/site-logo.php'),(8339,'wp-includes/blocks/site-tagline/block.json'),(8340,'wp-includes/blocks/site-tagline/editor-rtl.css'),(8341,'wp-includes/blocks/site-tagline/editor-rtl.min.css'),(8342,'wp-includes/blocks/site-tagline/editor.css'),(8343,'wp-includes/blocks/site-tagline/editor.min.css'),(8344,'wp-includes/blocks/site-tagline.php'),(8345,'wp-includes/blocks/site-title/block.json'),(8346,'wp-includes/blocks/site-title/editor-rtl.css'),(8347,'wp-includes/blocks/site-title/editor-rtl.min.css'),(8348,'wp-includes/blocks/site-title/editor.css'),(8349,'wp-includes/blocks/site-title/editor.min.css'),(8350,'wp-includes/blocks/site-title.php'),(8351,'wp-includes/blocks/social-link/block.json'),(8352,'wp-includes/blocks/social-link/editor-rtl.css'),(8353,'wp-includes/blocks/social-link/editor-rtl.min.css'),(8354,'wp-includes/blocks/social-link/editor.css'),(8355,'wp-includes/blocks/social-link/editor.min.css'),(8356,'wp-includes/blocks/social-link.php'),(8357,'wp-includes/blocks/social-links/block.json'),(8358,'wp-includes/blocks/social-links/editor-rtl.css'),(8359,'wp-includes/blocks/social-links/editor-rtl.min.css'),(8360,'wp-includes/blocks/social-links/editor.css'),(8361,'wp-includes/blocks/social-links/editor.min.css'),(8362,'wp-includes/blocks/social-links/style-rtl.css'),(8363,'wp-includes/blocks/social-links/style-rtl.min.css'),(8364,'wp-includes/blocks/social-links/style.css'),(8365,'wp-includes/blocks/social-links/style.min.css'),(8366,'wp-includes/blocks/spacer/block.json'),(8367,'wp-includes/blocks/spacer/editor-rtl.css'),(8368,'wp-includes/blocks/spacer/editor-rtl.min.css'),(8369,'wp-includes/blocks/spacer/editor.css'),(8370,'wp-includes/blocks/spacer/editor.min.css'),(8371,'wp-includes/blocks/spacer/style-rtl.css'),(8372,'wp-includes/blocks/spacer/style-rtl.min.css'),(8373,'wp-includes/blocks/spacer/style.css'),(8374,'wp-includes/blocks/spacer/style.min.css'),(8375,'wp-includes/blocks/table/block.json'),(8376,'wp-includes/blocks/table/editor-rtl.css'),(8377,'wp-includes/blocks/table/editor-rtl.min.css'),(8378,'wp-includes/blocks/table/editor.css'),(8379,'wp-includes/blocks/table/editor.min.css'),(8380,'wp-includes/blocks/table/style-rtl.css'),(8381,'wp-includes/blocks/table/style-rtl.min.css'),(8382,'wp-includes/blocks/table/style.css'),(8383,'wp-includes/blocks/table/style.min.css'),(8384,'wp-includes/blocks/tag-cloud/block.json'),(8385,'wp-includes/blocks/tag-cloud/editor-rtl.css'),(8386,'wp-includes/blocks/tag-cloud/editor-rtl.min.css'),(8387,'wp-includes/blocks/tag-cloud/editor.css'),(8388,'wp-includes/blocks/tag-cloud/editor.min.css'),(8389,'wp-includes/blocks/tag-cloud/style-rtl.css'),(8390,'wp-includes/blocks/tag-cloud/style-rtl.min.css'),(8391,'wp-includes/blocks/tag-cloud/style.css'),(8392,'wp-includes/blocks/tag-cloud/style.min.css'),(8393,'wp-includes/blocks/tag-cloud.php'),(8394,'wp-includes/blocks/text-columns/block.json'),(8395,'wp-includes/blocks/text-columns/editor-rtl.css'),(8396,'wp-includes/blocks/text-columns/editor-rtl.min.css'),(8397,'wp-includes/blocks/text-columns/editor.css'),(8398,'wp-includes/blocks/text-columns/editor.min.css'),(8399,'wp-includes/blocks/text-columns/style-rtl.css'),(8400,'wp-includes/blocks/text-columns/style-rtl.min.css'),(8401,'wp-includes/blocks/text-columns/style.css'),(8402,'wp-includes/blocks/text-columns/style.min.css'),(8403,'wp-includes/blocks/verse/block.json'),(8404,'wp-includes/blocks/verse/style-rtl.css'),(8405,'wp-includes/blocks/verse/style-rtl.min.css'),(8406,'wp-includes/blocks/verse/style.css'),(8407,'wp-includes/blocks/verse/style.min.css'),(8408,'wp-includes/blocks/video/block.json'),(8409,'wp-includes/blocks/video/editor-rtl.css'),(8410,'wp-includes/blocks/video/editor-rtl.min.css'),(8411,'wp-includes/blocks/video/editor.css'),(8412,'wp-includes/blocks/video/editor.min.css'),(8413,'wp-includes/blocks/video/style-rtl.css'),(8414,'wp-includes/blocks/video/style-rtl.min.css'),(8415,'wp-includes/blocks/video/style.css'),(8416,'wp-includes/blocks/video/style.min.css'),(8417,'wp-includes/blocks.php'),(8418,'wp-includes/bookmark-template.php'),(8419,'wp-includes/bookmark.php'),(8420,'wp-includes/cache-compat.php'),(8421,'wp-includes/cache.php'),(8422,'wp-includes/canonical.php'),(8423,'wp-includes/capabilities.php'),(8424,'wp-includes/category-template.php'),(8425,'wp-includes/category.php'),(8426,'wp-includes/certificates/ca-bundle.crt'),(8427,'wp-includes/class-IXR.php'),(8428,'wp-includes/class-feed.php'),(8429,'wp-includes/class-http.php'),(8430,'wp-includes/class-json.php'),(8431,'wp-includes/class-oembed.php'),(8432,'wp-includes/class-phpass.php'),(8433,'wp-includes/class-phpmailer.php'),(8434,'wp-includes/class-pop3.php'),(8435,'wp-includes/class-requests.php'),(8436,'wp-includes/class-simplepie.php'),(8437,'wp-includes/class-smtp.php'),(8438,'wp-includes/class-snoopy.php'),(8439,'wp-includes/class-walker-category-dropdown.php'),(8440,'wp-includes/class-walker-category.php'),(8441,'wp-includes/class-walker-comment.php'),(8442,'wp-includes/class-walker-nav-menu.php'),(8443,'wp-includes/class-walker-page-dropdown.php'),(8444,'wp-includes/class-walker-page.php'),(8445,'wp-includes/class-wp-admin-bar.php'),(8446,'wp-includes/class-wp-ajax-response.php'),(8447,'wp-includes/class-wp-application-passwords.php'),(8448,'wp-includes/class-wp-block-editor-context.php'),(8449,'wp-includes/class-wp-block-list.php'),(8450,'wp-includes/class-wp-block-parser.php'),(8451,'wp-includes/class-wp-block-pattern-categories-registry.php'),(8452,'wp-includes/class-wp-block-patterns-registry.php'),(8453,'wp-includes/class-wp-block-styles-registry.php'),(8454,'wp-includes/class-wp-block-supports.php'),(8455,'wp-includes/class-wp-block-template.php'),(8456,'wp-includes/class-wp-block-type-registry.php'),(8457,'wp-includes/class-wp-block-type.php'),(8458,'wp-includes/class-wp-block.php'),(8459,'wp-includes/class-wp-comment-query.php'),(8460,'wp-includes/class-wp-comment.php'),(8461,'wp-includes/class-wp-customize-control.php'),(8462,'wp-includes/class-wp-customize-manager.php'),(8463,'wp-includes/class-wp-customize-nav-menus.php'),(8464,'wp-includes/class-wp-customize-panel.php'),(8465,'wp-includes/class-wp-customize-section.php'),(8466,'wp-includes/class-wp-customize-setting.php'),(8467,'wp-includes/class-wp-customize-widgets.php'),(8468,'wp-includes/class-wp-date-query.php'),(8469,'wp-includes/class-wp-dependency.php'),(8470,'wp-includes/class-wp-editor.php'),(8471,'wp-includes/class-wp-embed.php'),(8472,'wp-includes/class-wp-error.php'),(8473,'wp-includes/class-wp-fatal-error-handler.php'),(8474,'wp-includes/class-wp-feed-cache-transient.php'),(8475,'wp-includes/class-wp-feed-cache.php'),(8476,'wp-includes/class-wp-hook.php'),(8477,'wp-includes/class-wp-http-cookie.php'),(8478,'wp-includes/class-wp-http-curl.php'),(8479,'wp-includes/class-wp-http-encoding.php'),(8480,'wp-includes/class-wp-http-ixr-client.php'),(8481,'wp-includes/class-wp-http-proxy.php'),(8482,'wp-includes/class-wp-http-requests-hooks.php'),(8483,'wp-includes/class-wp-http-requests-response.php'),(8484,'wp-includes/class-wp-http-response.php'),(8485,'wp-includes/class-wp-http-streams.php'),(8486,'wp-includes/class-wp-image-editor-gd.php'),(8487,'wp-includes/class-wp-image-editor-imagick.php'),(8488,'wp-includes/class-wp-image-editor.php'),(8489,'wp-includes/class-wp-list-util.php'),(8490,'wp-includes/class-wp-locale-switcher.php'),(8491,'wp-includes/class-wp-locale.php'),(8492,'wp-includes/class-wp-matchesmapregex.php'),(8493,'wp-includes/class-wp-meta-query.php'),(8494,'wp-includes/class-wp-metadata-lazyloader.php'),(8495,'wp-includes/class-wp-network-query.php'),(8496,'wp-includes/class-wp-network.php'),(8497,'wp-includes/class-wp-object-cache.php'),(8498,'wp-includes/class-wp-oembed-controller.php'),(8499,'wp-includes/class-wp-oembed.php'),(8500,'wp-includes/class-wp-paused-extensions-storage.php'),(8501,'wp-includes/class-wp-post-type.php'),(8502,'wp-includes/class-wp-post.php'),(8503,'wp-includes/class-wp-query.php'),(8504,'wp-includes/class-wp-recovery-mode-cookie-service.php'),(8505,'wp-includes/class-wp-recovery-mode-email-service.php'),(8506,'wp-includes/class-wp-recovery-mode-key-service.php'),(8507,'wp-includes/class-wp-recovery-mode-link-service.php'),(8508,'wp-includes/class-wp-recovery-mode.php'),(8509,'wp-includes/class-wp-rewrite.php'),(8510,'wp-includes/class-wp-role.php'),(8511,'wp-includes/class-wp-roles.php'),(8512,'wp-includes/class-wp-session-tokens.php'),(8513,'wp-includes/class-wp-simplepie-file.php'),(8514,'wp-includes/class-wp-simplepie-sanitize-kses.php'),(8515,'wp-includes/class-wp-site-query.php'),(8516,'wp-includes/class-wp-site.php'),(8517,'wp-includes/class-wp-tax-query.php'),(8518,'wp-includes/class-wp-taxonomy.php'),(8519,'wp-includes/class-wp-term-query.php'),(8520,'wp-includes/class-wp-term.php'),(8521,'wp-includes/class-wp-text-diff-renderer-inline.php'),(8522,'wp-includes/class-wp-text-diff-renderer-table.php'),(8523,'wp-includes/class-wp-theme-json-resolver.php'),(8524,'wp-includes/class-wp-theme-json.php'),(8525,'wp-includes/class-wp-theme.php'),(8526,'wp-includes/class-wp-user-meta-session-tokens.php'),(8527,'wp-includes/class-wp-user-query.php'),(8528,'wp-includes/class-wp-user-request.php'),(8529,'wp-includes/class-wp-user.php'),(8530,'wp-includes/class-wp-walker.php'),(8531,'wp-includes/class-wp-widget-factory.php'),(8532,'wp-includes/class-wp-widget.php'),(8533,'wp-includes/class-wp-xmlrpc-server.php'),(8534,'wp-includes/class-wp.php'),(8535,'wp-includes/class.wp-dependencies.php'),(8536,'wp-includes/class.wp-scripts.php'),(8537,'wp-includes/class.wp-styles.php'),(8538,'wp-includes/comment-template.php'),(8539,'wp-includes/comment.php'),(8540,'wp-includes/compat.php'),(8541,'wp-includes/cron.php'),(8542,'wp-includes/css/admin-bar-rtl.css'),(8543,'wp-includes/css/admin-bar-rtl.min.css'),(8544,'wp-includes/css/admin-bar.css'),(8545,'wp-includes/css/admin-bar.min.css'),(8546,'wp-includes/css/buttons-rtl.css'),(8547,'wp-includes/css/buttons-rtl.min.css'),(8548,'wp-includes/css/buttons.css'),(8549,'wp-includes/css/buttons.min.css'),(8550,'wp-includes/css/customize-preview-rtl.css'),(8551,'wp-includes/css/customize-preview-rtl.min.css'),(8552,'wp-includes/css/customize-preview.css'),(8553,'wp-includes/css/customize-preview.min.css'),(8554,'wp-includes/css/dashicons.css'),(8555,'wp-includes/css/dashicons.min.css'),(8556,'wp-includes/css/dist/block-directory/style-rtl.css'),(8557,'wp-includes/css/dist/block-directory/style-rtl.min.css'),(8558,'wp-includes/css/dist/block-directory/style.css'),(8559,'wp-includes/css/dist/block-directory/style.min.css'),(8560,'wp-includes/css/dist/block-editor/style-rtl.css'),(8561,'wp-includes/css/dist/block-editor/style-rtl.min.css'),(8562,'wp-includes/css/dist/block-editor/style.css'),(8563,'wp-includes/css/dist/block-editor/style.min.css'),(8564,'wp-includes/css/dist/block-library/common-rtl.css'),(8565,'wp-includes/css/dist/block-library/common-rtl.min.css'),(8566,'wp-includes/css/dist/block-library/common.css'),(8567,'wp-includes/css/dist/block-library/common.min.css'),(8568,'wp-includes/css/dist/block-library/editor-rtl.css'),(8569,'wp-includes/css/dist/block-library/editor-rtl.min.css'),(8570,'wp-includes/css/dist/block-library/editor.css'),(8571,'wp-includes/css/dist/block-library/editor.min.css'),(8572,'wp-includes/css/dist/block-library/reset-rtl.css'),(8573,'wp-includes/css/dist/block-library/reset-rtl.min.css'),(8574,'wp-includes/css/dist/block-library/reset.css'),(8575,'wp-includes/css/dist/block-library/reset.min.css'),(8576,'wp-includes/css/dist/block-library/style-rtl.css'),(8577,'wp-includes/css/dist/block-library/style-rtl.min.css'),(8578,'wp-includes/css/dist/block-library/style.css'),(8579,'wp-includes/css/dist/block-library/style.min.css'),(8580,'wp-includes/css/dist/block-library/theme-rtl.css'),(8581,'wp-includes/css/dist/block-library/theme-rtl.min.css'),(8582,'wp-includes/css/dist/block-library/theme.css'),(8583,'wp-includes/css/dist/block-library/theme.min.css'),(8584,'wp-includes/css/dist/components/style-rtl.css'),(8585,'wp-includes/css/dist/components/style-rtl.min.css'),(8586,'wp-includes/css/dist/components/style.css'),(8587,'wp-includes/css/dist/components/style.min.css'),(8588,'wp-includes/css/dist/customize-widgets/style-rtl.css'),(8589,'wp-includes/css/dist/customize-widgets/style-rtl.min.css'),(8590,'wp-includes/css/dist/customize-widgets/style.css'),(8591,'wp-includes/css/dist/customize-widgets/style.min.css'),(8592,'wp-includes/css/dist/edit-post/classic-rtl.css'),(8593,'wp-includes/css/dist/edit-post/classic-rtl.min.css'),(8594,'wp-includes/css/dist/edit-post/classic.css'),(8595,'wp-includes/css/dist/edit-post/classic.min.css'),(8596,'wp-includes/css/dist/edit-post/style-rtl.css'),(8597,'wp-includes/css/dist/edit-post/style-rtl.min.css'),(8598,'wp-includes/css/dist/edit-post/style.css'),(8599,'wp-includes/css/dist/edit-post/style.min.css'),(8600,'wp-includes/css/dist/edit-widgets/style-rtl.css'),(8601,'wp-includes/css/dist/edit-widgets/style-rtl.min.css'),(8602,'wp-includes/css/dist/edit-widgets/style.css'),(8603,'wp-includes/css/dist/edit-widgets/style.min.css'),(8604,'wp-includes/css/dist/editor/style-rtl.css'),(8605,'wp-includes/css/dist/editor/style-rtl.min.css'),(8606,'wp-includes/css/dist/editor/style.css'),(8607,'wp-includes/css/dist/editor/style.min.css'),(8608,'wp-includes/css/dist/format-library/style-rtl.css'),(8609,'wp-includes/css/dist/format-library/style-rtl.min.css'),(8610,'wp-includes/css/dist/format-library/style.css'),(8611,'wp-includes/css/dist/format-library/style.min.css'),(8612,'wp-includes/css/dist/list-reusable-blocks/style-rtl.css'),(8613,'wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css'),(8614,'wp-includes/css/dist/list-reusable-blocks/style.css'),(8615,'wp-includes/css/dist/list-reusable-blocks/style.min.css'),(8616,'wp-includes/css/dist/nux/style-rtl.css'),(8617,'wp-includes/css/dist/nux/style-rtl.min.css'),(8618,'wp-includes/css/dist/nux/style.css'),(8619,'wp-includes/css/dist/nux/style.min.css'),(8620,'wp-includes/css/dist/reusable-blocks/style-rtl.css'),(8621,'wp-includes/css/dist/reusable-blocks/style-rtl.min.css'),(8622,'wp-includes/css/dist/reusable-blocks/style.css'),(8623,'wp-includes/css/dist/reusable-blocks/style.min.css'),(8624,'wp-includes/css/dist/widgets/style-rtl.css'),(8625,'wp-includes/css/dist/widgets/style-rtl.min.css'),(8626,'wp-includes/css/dist/widgets/style.css'),(8627,'wp-includes/css/dist/widgets/style.min.css'),(8628,'wp-includes/css/editor-rtl.css'),(8629,'wp-includes/css/editor-rtl.min.css'),(8630,'wp-includes/css/editor.css'),(8631,'wp-includes/css/editor.min.css'),(8632,'wp-includes/css/jquery-ui-dialog-rtl.css'),(8633,'wp-includes/css/jquery-ui-dialog-rtl.min.css'),(8634,'wp-includes/css/jquery-ui-dialog.css'),(8635,'wp-includes/css/jquery-ui-dialog.min.css'),(8636,'wp-includes/css/media-views-rtl.css'),(8637,'wp-includes/css/media-views-rtl.min.css'),(8638,'wp-includes/css/media-views.css'),(8639,'wp-includes/css/media-views.min.css'),(8640,'wp-includes/css/wp-auth-check-rtl.css'),(8641,'wp-includes/css/wp-auth-check-rtl.min.css'),(8642,'wp-includes/css/wp-auth-check.css'),(8643,'wp-includes/css/wp-auth-check.min.css'),(8644,'wp-includes/css/wp-embed-template-ie.css'),(8645,'wp-includes/css/wp-embed-template-ie.min.css'),(8646,'wp-includes/css/wp-embed-template.css'),(8647,'wp-includes/css/wp-embed-template.min.css'),(8648,'wp-includes/css/wp-pointer-rtl.css'),(8649,'wp-includes/css/wp-pointer-rtl.min.css'),(8650,'wp-includes/css/wp-pointer.css'),(8651,'wp-includes/css/wp-pointer.min.css'),(8652,'wp-includes/customize/class-wp-customize-background-image-control.php'),(8653,'wp-includes/customize/class-wp-customize-background-image-setting.php'),(8654,'wp-includes/customize/class-wp-customize-background-position-control.php'),(8655,'wp-includes/customize/class-wp-customize-code-editor-control.php'),(8656,'wp-includes/customize/class-wp-customize-color-control.php'),(8657,'wp-includes/customize/class-wp-customize-cropped-image-control.php'),(8658,'wp-includes/customize/class-wp-customize-custom-css-setting.php'),(8659,'wp-includes/customize/class-wp-customize-date-time-control.php'),(8660,'wp-includes/customize/class-wp-customize-filter-setting.php'),(8661,'wp-includes/customize/class-wp-customize-header-image-control.php'),(8662,'wp-includes/customize/class-wp-customize-header-image-setting.php'),(8663,'wp-includes/customize/class-wp-customize-image-control.php'),(8664,'wp-includes/customize/class-wp-customize-media-control.php'),(8665,'wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php'),(8666,'wp-includes/customize/class-wp-customize-nav-menu-control.php'),(8667,'wp-includes/customize/class-wp-customize-nav-menu-item-control.php'),(8668,'wp-includes/customize/class-wp-customize-nav-menu-item-setting.php'),(8669,'wp-includes/customize/class-wp-customize-nav-menu-location-control.php'),(8670,'wp-includes/customize/class-wp-customize-nav-menu-locations-control.php'),(8671,'wp-includes/customize/class-wp-customize-nav-menu-name-control.php'),(8672,'wp-includes/customize/class-wp-customize-nav-menu-section.php'),(8673,'wp-includes/customize/class-wp-customize-nav-menu-setting.php'),(8674,'wp-includes/customize/class-wp-customize-nav-menus-panel.php'),(8675,'wp-includes/customize/class-wp-customize-new-menu-control.php'),(8676,'wp-includes/customize/class-wp-customize-new-menu-section.php'),(8677,'wp-includes/customize/class-wp-customize-partial.php'),(8678,'wp-includes/customize/class-wp-customize-selective-refresh.php'),(8679,'wp-includes/customize/class-wp-customize-sidebar-section.php'),(8680,'wp-includes/customize/class-wp-customize-site-icon-control.php'),(8681,'wp-includes/customize/class-wp-customize-theme-control.php'),(8682,'wp-includes/customize/class-wp-customize-themes-panel.php'),(8683,'wp-includes/customize/class-wp-customize-themes-section.php'),(8684,'wp-includes/customize/class-wp-customize-upload-control.php'),(8685,'wp-includes/customize/class-wp-sidebar-block-editor-control.php'),(8686,'wp-includes/customize/class-wp-widget-area-customize-control.php'),(8687,'wp-includes/customize/class-wp-widget-form-customize-control.php'),(8688,'wp-includes/date.php'),(8689,'wp-includes/default-constants.php'),(8690,'wp-includes/default-filters.php'),(8691,'wp-includes/default-widgets.php'),(8692,'wp-includes/deprecated.php'),(8693,'wp-includes/embed-template.php'),(8694,'wp-includes/embed.php'),(8695,'wp-includes/error-protection.php'),(8696,'wp-includes/feed-atom-comments.php'),(8697,'wp-includes/feed-atom.php'),(8698,'wp-includes/feed-rdf.php'),(8699,'wp-includes/feed-rss.php'),(8700,'wp-includes/feed-rss2-comments.php'),(8701,'wp-includes/feed-rss2.php'),(8702,'wp-includes/feed.php'),(8703,'wp-includes/fonts/dashicons.eot'),(8704,'wp-includes/fonts/dashicons.svg'),(8705,'wp-includes/fonts/dashicons.ttf'),(8706,'wp-includes/fonts/dashicons.woff'),(8707,'wp-includes/fonts/dashicons.woff2'),(8708,'wp-includes/formatting.php'),(8709,'wp-includes/functions.php'),(8710,'wp-includes/functions.wp-scripts.php'),(8711,'wp-includes/functions.wp-styles.php'),(8712,'wp-includes/general-template.php'),(8713,'wp-includes/http.php'),(8714,'wp-includes/https-detection.php'),(8715,'wp-includes/https-migration.php'),(8716,'wp-includes/images/admin-bar-sprite-2x.png'),(8717,'wp-includes/images/admin-bar-sprite.png'),(8718,'wp-includes/images/arrow-pointer-blue-2x.png'),(8719,'wp-includes/images/arrow-pointer-blue.png'),(8720,'wp-includes/images/blank.gif'),(8721,'wp-includes/images/crystal/archive.png'),(8722,'wp-includes/images/crystal/audio.png'),(8723,'wp-includes/images/crystal/code.png'),(8724,'wp-includes/images/crystal/default.png'),(8725,'wp-includes/images/crystal/document.png'),(8726,'wp-includes/images/crystal/interactive.png'),(8727,'wp-includes/images/crystal/license.txt'),(8728,'wp-includes/images/crystal/spreadsheet.png'),(8729,'wp-includes/images/crystal/text.png'),(8730,'wp-includes/images/crystal/video.png'),(8731,'wp-includes/images/down_arrow-2x.gif'),(8732,'wp-includes/images/down_arrow.gif'),(8733,'wp-includes/images/icon-pointer-flag-2x.png'),(8734,'wp-includes/images/icon-pointer-flag.png'),(8735,'wp-includes/images/media/archive.png'),(8736,'wp-includes/images/media/audio.png'),(8737,'wp-includes/images/media/code.png'),(8738,'wp-includes/images/media/default.png'),(8739,'wp-includes/images/media/document.png'),(8740,'wp-includes/images/media/interactive.png'),(8741,'wp-includes/images/media/spreadsheet.png'),(8742,'wp-includes/images/media/text.png'),(8743,'wp-includes/images/media/video.png'),(8744,'wp-includes/images/rss-2x.png'),(8745,'wp-includes/images/rss.png'),(8746,'wp-includes/images/smilies/frownie.png'),(8747,'wp-includes/images/smilies/icon_arrow.gif'),(8748,'wp-includes/images/smilies/icon_biggrin.gif'),(8749,'wp-includes/images/smilies/icon_confused.gif'),(8750,'wp-includes/images/smilies/icon_cool.gif'),(8751,'wp-includes/images/smilies/icon_cry.gif'),(8752,'wp-includes/images/smilies/icon_eek.gif'),(8753,'wp-includes/images/smilies/icon_evil.gif'),(8754,'wp-includes/images/smilies/icon_exclaim.gif'),(8755,'wp-includes/images/smilies/icon_idea.gif'),(8756,'wp-includes/images/smilies/icon_lol.gif'),(8757,'wp-includes/images/smilies/icon_mad.gif'),(8758,'wp-includes/images/smilies/icon_mrgreen.gif'),(8759,'wp-includes/images/smilies/icon_neutral.gif'),(8760,'wp-includes/images/smilies/icon_question.gif'),(8761,'wp-includes/images/smilies/icon_razz.gif'),(8762,'wp-includes/images/smilies/icon_redface.gif'),(8763,'wp-includes/images/smilies/icon_rolleyes.gif'),(8764,'wp-includes/images/smilies/icon_sad.gif'),(8765,'wp-includes/images/smilies/icon_smile.gif'),(8766,'wp-includes/images/smilies/icon_surprised.gif'),(8767,'wp-includes/images/smilies/icon_twisted.gif'),(8768,'wp-includes/images/smilies/icon_wink.gif'),(8769,'wp-includes/images/smilies/mrgreen.png'),(8770,'wp-includes/images/smilies/rolleyes.png'),(8771,'wp-includes/images/smilies/simple-smile.png'),(8772,'wp-includes/images/spinner-2x.gif'),(8773,'wp-includes/images/spinner.gif'),(8774,'wp-includes/images/toggle-arrow-2x.png'),(8775,'wp-includes/images/toggle-arrow.png'),(8776,'wp-includes/images/uploader-icons-2x.png'),(8777,'wp-includes/images/uploader-icons.png'),(8778,'wp-includes/images/w-logo-blue-white-bg.png'),(8779,'wp-includes/images/w-logo-blue.png'),(8780,'wp-includes/images/wlw/wp-comments.png'),(8781,'wp-includes/images/wlw/wp-icon.png'),(8782,'wp-includes/images/wlw/wp-watermark.png'),(8783,'wp-includes/images/wpicons-2x.png'),(8784,'wp-includes/images/wpicons.png'),(8785,'wp-includes/images/wpspin-2x.gif'),(8786,'wp-includes/images/wpspin.gif'),(8787,'wp-includes/images/xit-2x.gif'),(8788,'wp-includes/images/xit.gif'),(8789,'wp-includes/js/admin-bar.js'),(8790,'wp-includes/js/admin-bar.min.js'),(8791,'wp-includes/js/api-request.js'),(8792,'wp-includes/js/api-request.min.js'),(8793,'wp-includes/js/autosave.js'),(8794,'wp-includes/js/autosave.min.js'),(8795,'wp-includes/js/backbone.js'),(8796,'wp-includes/js/backbone.min.js'),(8797,'wp-includes/js/clipboard.js'),(8798,'wp-includes/js/clipboard.min.js'),(8799,'wp-includes/js/codemirror/codemirror.min.css'),(8800,'wp-includes/js/codemirror/codemirror.min.js'),(8801,'wp-includes/js/codemirror/csslint.js'),(8802,'wp-includes/js/codemirror/esprima.js'),(8803,'wp-includes/js/codemirror/fakejshint.js'),(8804,'wp-includes/js/codemirror/htmlhint-kses.js'),(8805,'wp-includes/js/codemirror/htmlhint.js'),(8806,'wp-includes/js/codemirror/jsonlint.js'),(8807,'wp-includes/js/colorpicker.js'),(8808,'wp-includes/js/colorpicker.min.js'),(8809,'wp-includes/js/comment-reply.js'),(8810,'wp-includes/js/comment-reply.min.js'),(8811,'wp-includes/js/crop/cropper.css'),(8812,'wp-includes/js/crop/cropper.js'),(8813,'wp-includes/js/crop/marqueeHoriz.gif'),(8814,'wp-includes/js/crop/marqueeVert.gif'),(8815,'wp-includes/js/customize-base.js'),(8816,'wp-includes/js/customize-base.min.js'),(8817,'wp-includes/js/customize-loader.js'),(8818,'wp-includes/js/customize-loader.min.js'),(8819,'wp-includes/js/customize-models.js'),(8820,'wp-includes/js/customize-models.min.js'),(8821,'wp-includes/js/customize-preview-nav-menus.js'),(8822,'wp-includes/js/customize-preview-nav-menus.min.js'),(8823,'wp-includes/js/customize-preview-widgets.js'),(8824,'wp-includes/js/customize-preview-widgets.min.js'),(8825,'wp-includes/js/customize-preview.js'),(8826,'wp-includes/js/customize-preview.min.js'),(8827,'wp-includes/js/customize-selective-refresh.js'),(8828,'wp-includes/js/customize-selective-refresh.min.js'),(8829,'wp-includes/js/customize-views.js'),(8830,'wp-includes/js/customize-views.min.js'),(8831,'wp-includes/js/dist/a11y.js'),(8832,'wp-includes/js/dist/a11y.min.js'),(8833,'wp-includes/js/dist/annotations.js'),(8834,'wp-includes/js/dist/annotations.min.js'),(8835,'wp-includes/js/dist/api-fetch.js'),(8836,'wp-includes/js/dist/api-fetch.min.js'),(8837,'wp-includes/js/dist/autop.js'),(8838,'wp-includes/js/dist/autop.min.js'),(8839,'wp-includes/js/dist/blob.js'),(8840,'wp-includes/js/dist/blob.min.js'),(8841,'wp-includes/js/dist/block-directory.js'),(8842,'wp-includes/js/dist/block-directory.min.js'),(8843,'wp-includes/js/dist/block-editor.js'),(8844,'wp-includes/js/dist/block-editor.min.js'),(8845,'wp-includes/js/dist/block-library.js'),(8846,'wp-includes/js/dist/block-library.min.js'),(8847,'wp-includes/js/dist/block-serialization-default-parser.js'),(8848,'wp-includes/js/dist/block-serialization-default-parser.min.js'),(8849,'wp-includes/js/dist/blocks.js'),(8850,'wp-includes/js/dist/blocks.min.js'),(8851,'wp-includes/js/dist/components.js'),(8852,'wp-includes/js/dist/components.min.js'),(8853,'wp-includes/js/dist/compose.js'),(8854,'wp-includes/js/dist/compose.min.js'),(8855,'wp-includes/js/dist/core-data.js'),(8856,'wp-includes/js/dist/core-data.min.js'),(8857,'wp-includes/js/dist/customize-widgets.js'),(8858,'wp-includes/js/dist/customize-widgets.min.js'),(8859,'wp-includes/js/dist/data-controls.js'),(8860,'wp-includes/js/dist/data-controls.min.js'),(8861,'wp-includes/js/dist/data.js'),(8862,'wp-includes/js/dist/data.min.js'),(8863,'wp-includes/js/dist/date.js'),(8864,'wp-includes/js/dist/date.min.js'),(8865,'wp-includes/js/dist/deprecated.js'),(8866,'wp-includes/js/dist/deprecated.min.js'),(8867,'wp-includes/js/dist/dom-ready.js'),(8868,'wp-includes/js/dist/dom-ready.min.js'),(8869,'wp-includes/js/dist/dom.js'),(8870,'wp-includes/js/dist/dom.min.js'),(8871,'wp-includes/js/dist/edit-post.js'),(8872,'wp-includes/js/dist/edit-post.min.js'),(8873,'wp-includes/js/dist/edit-widgets.js'),(8874,'wp-includes/js/dist/edit-widgets.min.js'),(8875,'wp-includes/js/dist/editor.js'),(8876,'wp-includes/js/dist/editor.min.js'),(8877,'wp-includes/js/dist/element.js'),(8878,'wp-includes/js/dist/element.min.js'),(8879,'wp-includes/js/dist/escape-html.js'),(8880,'wp-includes/js/dist/escape-html.min.js'),(8881,'wp-includes/js/dist/format-library.js'),(8882,'wp-includes/js/dist/format-library.min.js'),(8883,'wp-includes/js/dist/hooks.js'),(8884,'wp-includes/js/dist/hooks.min.js'),(8885,'wp-includes/js/dist/html-entities.js'),(8886,'wp-includes/js/dist/html-entities.min.js'),(8887,'wp-includes/js/dist/i18n.js'),(8888,'wp-includes/js/dist/i18n.min.js'),(8889,'wp-includes/js/dist/is-shallow-equal.js'),(8890,'wp-includes/js/dist/is-shallow-equal.min.js'),(8891,'wp-includes/js/dist/keyboard-shortcuts.js'),(8892,'wp-includes/js/dist/keyboard-shortcuts.min.js'),(8893,'wp-includes/js/dist/keycodes.js'),(8894,'wp-includes/js/dist/keycodes.min.js'),(8895,'wp-includes/js/dist/list-reusable-blocks.js'),(8896,'wp-includes/js/dist/list-reusable-blocks.min.js'),(8897,'wp-includes/js/dist/media-utils.js'),(8898,'wp-includes/js/dist/media-utils.min.js'),(8899,'wp-includes/js/dist/notices.js'),(8900,'wp-includes/js/dist/notices.min.js'),(8901,'wp-includes/js/dist/nux.js'),(8902,'wp-includes/js/dist/nux.min.js'),(8903,'wp-includes/js/dist/plugins.js'),(8904,'wp-includes/js/dist/plugins.min.js'),(8905,'wp-includes/js/dist/primitives.js'),(8906,'wp-includes/js/dist/primitives.min.js'),(8907,'wp-includes/js/dist/priority-queue.js'),(8908,'wp-includes/js/dist/priority-queue.min.js'),(8909,'wp-includes/js/dist/redux-routine.js'),(8910,'wp-includes/js/dist/redux-routine.min.js'),(8911,'wp-includes/js/dist/reusable-blocks.js'),(8912,'wp-includes/js/dist/reusable-blocks.min.js'),(8913,'wp-includes/js/dist/rich-text.js'),(8914,'wp-includes/js/dist/rich-text.min.js'),(8915,'wp-includes/js/dist/server-side-render.js'),(8916,'wp-includes/js/dist/server-side-render.min.js'),(8917,'wp-includes/js/dist/shortcode.js'),(8918,'wp-includes/js/dist/shortcode.min.js'),(8919,'wp-includes/js/dist/token-list.js'),(8920,'wp-includes/js/dist/token-list.min.js'),(8921,'wp-includes/js/dist/url.js'),(8922,'wp-includes/js/dist/url.min.js'),(8923,'wp-includes/js/dist/vendor/lodash.js'),(8924,'wp-includes/js/dist/vendor/lodash.min.js'),(8925,'wp-includes/js/dist/vendor/moment.js'),(8926,'wp-includes/js/dist/vendor/moment.min.js'),(8927,'wp-includes/js/dist/vendor/react-dom.js'),(8928,'wp-includes/js/dist/vendor/react-dom.min.js'),(8929,'wp-includes/js/dist/vendor/react.js'),(8930,'wp-includes/js/dist/vendor/react.min.js'),(8931,'wp-includes/js/dist/vendor/regenerator-runtime.js'),(8932,'wp-includes/js/dist/vendor/regenerator-runtime.min.js'),(8933,'wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js'),(8934,'wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js'),(8935,'wp-includes/js/dist/vendor/wp-polyfill-element-closest.js'),(8936,'wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js'),(8937,'wp-includes/js/dist/vendor/wp-polyfill-fetch.js'),(8938,'wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js'),(8939,'wp-includes/js/dist/vendor/wp-polyfill-formdata.js'),(8940,'wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js'),(8941,'wp-includes/js/dist/vendor/wp-polyfill-node-contains.js'),(8942,'wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js'),(8943,'wp-includes/js/dist/vendor/wp-polyfill-object-fit.js'),(8944,'wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js'),(8945,'wp-includes/js/dist/vendor/wp-polyfill-url.js'),(8946,'wp-includes/js/dist/vendor/wp-polyfill-url.min.js'),(8947,'wp-includes/js/dist/vendor/wp-polyfill.js'),(8948,'wp-includes/js/dist/vendor/wp-polyfill.min.js'),(8949,'wp-includes/js/dist/viewport.js'),(8950,'wp-includes/js/dist/viewport.min.js'),(8951,'wp-includes/js/dist/warning.js'),(8952,'wp-includes/js/dist/warning.min.js'),(8953,'wp-includes/js/dist/widgets.js'),(8954,'wp-includes/js/dist/widgets.min.js'),(8955,'wp-includes/js/dist/wordcount.js'),(8956,'wp-includes/js/dist/wordcount.min.js'),(8957,'wp-includes/js/heartbeat.js'),(8958,'wp-includes/js/heartbeat.min.js'),(8959,'wp-includes/js/hoverIntent.js'),(8960,'wp-includes/js/hoverIntent.min.js'),(8961,'wp-includes/js/hoverintent-js.min.js'),(8962,'wp-includes/js/imagesloaded.min.js'),(8963,'wp-includes/js/imgareaselect/border-anim-h.gif'),(8964,'wp-includes/js/imgareaselect/border-anim-v.gif'),(8965,'wp-includes/js/imgareaselect/imgareaselect.css'),(8966,'wp-includes/js/imgareaselect/jquery.imgareaselect.js'),(8967,'wp-includes/js/imgareaselect/jquery.imgareaselect.min.js'),(8968,'wp-includes/js/jcrop/Jcrop.gif'),(8969,'wp-includes/js/jcrop/jquery.Jcrop.min.css'),(8970,'wp-includes/js/jcrop/jquery.Jcrop.min.js'),(8971,'wp-includes/js/jquery/jquery-migrate.js'),(8972,'wp-includes/js/jquery/jquery-migrate.min.js'),(8973,'wp-includes/js/jquery/jquery.color.min.js'),(8974,'wp-includes/js/jquery/jquery.form.js'),(8975,'wp-includes/js/jquery/jquery.form.min.js'),(8976,'wp-includes/js/jquery/jquery.hotkeys.js'),(8977,'wp-includes/js/jquery/jquery.hotkeys.min.js'),(8978,'wp-includes/js/jquery/jquery.js'),(8979,'wp-includes/js/jquery/jquery.masonry.min.js'),(8980,'wp-includes/js/jquery/jquery.min.js'),(8981,'wp-includes/js/jquery/jquery.query.js'),(8982,'wp-includes/js/jquery/jquery.schedule.js'),(8983,'wp-includes/js/jquery/jquery.serialize-object.js'),(8984,'wp-includes/js/jquery/jquery.table-hotkeys.js'),(8985,'wp-includes/js/jquery/jquery.table-hotkeys.min.js'),(8986,'wp-includes/js/jquery/jquery.ui.touch-punch.js'),(8987,'wp-includes/js/jquery/suggest.js'),(8988,'wp-includes/js/jquery/suggest.min.js'),(8989,'wp-includes/js/jquery/ui/accordion.js'),(8990,'wp-includes/js/jquery/ui/accordion.min.js'),(8991,'wp-includes/js/jquery/ui/autocomplete.js'),(8992,'wp-includes/js/jquery/ui/autocomplete.min.js'),(8993,'wp-includes/js/jquery/ui/button.js'),(8994,'wp-includes/js/jquery/ui/button.min.js'),(8995,'wp-includes/js/jquery/ui/checkboxradio.js'),(8996,'wp-includes/js/jquery/ui/checkboxradio.min.js'),(8997,'wp-includes/js/jquery/ui/controlgroup.js'),(8998,'wp-includes/js/jquery/ui/controlgroup.min.js'),(8999,'wp-includes/js/jquery/ui/core.js'),(9000,'wp-includes/js/jquery/ui/core.min.js'),(9001,'wp-includes/js/jquery/ui/datepicker.js'),(9002,'wp-includes/js/jquery/ui/datepicker.min.js'),(9003,'wp-includes/js/jquery/ui/dialog.js'),(9004,'wp-includes/js/jquery/ui/dialog.min.js'),(9005,'wp-includes/js/jquery/ui/draggable.js'),(9006,'wp-includes/js/jquery/ui/draggable.min.js'),(9007,'wp-includes/js/jquery/ui/droppable.js'),(9008,'wp-includes/js/jquery/ui/droppable.min.js'),(9009,'wp-includes/js/jquery/ui/effect-blind.js'),(9010,'wp-includes/js/jquery/ui/effect-blind.min.js'),(9011,'wp-includes/js/jquery/ui/effect-bounce.js'),(9012,'wp-includes/js/jquery/ui/effect-bounce.min.js'),(9013,'wp-includes/js/jquery/ui/effect-clip.js'),(9014,'wp-includes/js/jquery/ui/effect-clip.min.js'),(9015,'wp-includes/js/jquery/ui/effect-drop.js'),(9016,'wp-includes/js/jquery/ui/effect-drop.min.js'),(9017,'wp-includes/js/jquery/ui/effect-explode.js'),(9018,'wp-includes/js/jquery/ui/effect-explode.min.js'),(9019,'wp-includes/js/jquery/ui/effect-fade.js'),(9020,'wp-includes/js/jquery/ui/effect-fade.min.js'),(9021,'wp-includes/js/jquery/ui/effect-fold.js'),(9022,'wp-includes/js/jquery/ui/effect-fold.min.js'),(9023,'wp-includes/js/jquery/ui/effect-highlight.js'),(9024,'wp-includes/js/jquery/ui/effect-highlight.min.js'),(9025,'wp-includes/js/jquery/ui/effect-puff.js'),(9026,'wp-includes/js/jquery/ui/effect-puff.min.js'),(9027,'wp-includes/js/jquery/ui/effect-pulsate.js'),(9028,'wp-includes/js/jquery/ui/effect-pulsate.min.js'),(9029,'wp-includes/js/jquery/ui/effect-scale.js'),(9030,'wp-includes/js/jquery/ui/effect-scale.min.js'),(9031,'wp-includes/js/jquery/ui/effect-shake.js'),(9032,'wp-includes/js/jquery/ui/effect-shake.min.js'),(9033,'wp-includes/js/jquery/ui/effect-size.js'),(9034,'wp-includes/js/jquery/ui/effect-size.min.js'),(9035,'wp-includes/js/jquery/ui/effect-slide.js'),(9036,'wp-includes/js/jquery/ui/effect-slide.min.js'),(9037,'wp-includes/js/jquery/ui/effect-transfer.js'),(9038,'wp-includes/js/jquery/ui/effect-transfer.min.js'),(9039,'wp-includes/js/jquery/ui/effect.js'),(9040,'wp-includes/js/jquery/ui/effect.min.js'),(9041,'wp-includes/js/jquery/ui/menu.js'),(9042,'wp-includes/js/jquery/ui/menu.min.js'),(9043,'wp-includes/js/jquery/ui/mouse.js'),(9044,'wp-includes/js/jquery/ui/mouse.min.js'),(9045,'wp-includes/js/jquery/ui/progressbar.js'),(9046,'wp-includes/js/jquery/ui/progressbar.min.js'),(9047,'wp-includes/js/jquery/ui/resizable.js'),(9048,'wp-includes/js/jquery/ui/resizable.min.js'),(9049,'wp-includes/js/jquery/ui/selectable.js'),(9050,'wp-includes/js/jquery/ui/selectable.min.js'),(9051,'wp-includes/js/jquery/ui/selectmenu.js'),(9052,'wp-includes/js/jquery/ui/selectmenu.min.js'),(9053,'wp-includes/js/jquery/ui/slider.js'),(9054,'wp-includes/js/jquery/ui/slider.min.js'),(9055,'wp-includes/js/jquery/ui/sortable.js'),(9056,'wp-includes/js/jquery/ui/sortable.min.js'),(9057,'wp-includes/js/jquery/ui/spinner.js'),(9058,'wp-includes/js/jquery/ui/spinner.min.js'),(9059,'wp-includes/js/jquery/ui/tabs.js'),(9060,'wp-includes/js/jquery/ui/tabs.min.js'),(9061,'wp-includes/js/jquery/ui/tooltip.js'),(9062,'wp-includes/js/jquery/ui/tooltip.min.js'),(9063,'wp-includes/js/json2.js'),(9064,'wp-includes/js/json2.min.js'),(9065,'wp-includes/js/masonry.min.js'),(9066,'wp-includes/js/mce-view.js'),(9067,'wp-includes/js/mce-view.min.js'),(9068,'wp-includes/js/media-audiovideo.js'),(9069,'wp-includes/js/media-audiovideo.min.js'),(9070,'wp-includes/js/media-editor.js'),(9071,'wp-includes/js/media-editor.min.js'),(9072,'wp-includes/js/media-grid.js'),(9073,'wp-includes/js/media-grid.min.js'),(9074,'wp-includes/js/media-models.js'),(9075,'wp-includes/js/media-models.min.js'),(9076,'wp-includes/js/media-views.js'),(9077,'wp-includes/js/media-views.min.js'),(9078,'wp-includes/js/mediaelement/mediaelement-and-player.js'),(9079,'wp-includes/js/mediaelement/mediaelement-and-player.min.js'),(9080,'wp-includes/js/mediaelement/mediaelement-migrate.js'),(9081,'wp-includes/js/mediaelement/mediaelement-migrate.min.js'),(9082,'wp-includes/js/mediaelement/mediaelement.js'),(9083,'wp-includes/js/mediaelement/mediaelement.min.js'),(9084,'wp-includes/js/mediaelement/mediaelementplayer-legacy.css'),(9085,'wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css'),(9086,'wp-includes/js/mediaelement/mediaelementplayer.css'),(9087,'wp-includes/js/mediaelement/mediaelementplayer.min.css'),(9088,'wp-includes/js/mediaelement/mejs-controls.png'),(9089,'wp-includes/js/mediaelement/mejs-controls.svg'),(9090,'wp-includes/js/mediaelement/renderers/vimeo.js'),(9091,'wp-includes/js/mediaelement/renderers/vimeo.min.js'),(9092,'wp-includes/js/mediaelement/wp-mediaelement.css'),(9093,'wp-includes/js/mediaelement/wp-mediaelement.js'),(9094,'wp-includes/js/mediaelement/wp-mediaelement.min.css'),(9095,'wp-includes/js/mediaelement/wp-mediaelement.min.js'),(9096,'wp-includes/js/mediaelement/wp-playlist.js'),(9097,'wp-includes/js/mediaelement/wp-playlist.min.js'),(9098,'wp-includes/js/plupload/handlers.js'),(9099,'wp-includes/js/plupload/handlers.min.js'),(9100,'wp-includes/js/plupload/license.txt'),(9101,'wp-includes/js/plupload/moxie.js'),(9102,'wp-includes/js/plupload/moxie.min.js'),(9103,'wp-includes/js/plupload/plupload.js'),(9104,'wp-includes/js/plupload/plupload.min.js'),(9105,'wp-includes/js/plupload/wp-plupload.js'),(9106,'wp-includes/js/plupload/wp-plupload.min.js'),(9107,'wp-includes/js/quicktags.js'),(9108,'wp-includes/js/quicktags.min.js'),(9109,'wp-includes/js/shortcode.js'),(9110,'wp-includes/js/shortcode.min.js'),(9111,'wp-includes/js/swfobject.js'),(9112,'wp-includes/js/swfupload/handlers.js'),(9113,'wp-includes/js/swfupload/handlers.min.js'),(9114,'wp-includes/js/swfupload/license.txt'),(9115,'wp-includes/js/swfupload/swfupload.js'),(9116,'wp-includes/js/thickbox/loadingAnimation.gif'),(9117,'wp-includes/js/thickbox/macFFBgHack.png'),(9118,'wp-includes/js/thickbox/thickbox.css'),(9119,'wp-includes/js/thickbox/thickbox.js'),(9120,'wp-includes/js/tinymce/langs/wp-langs-en.js'),(9121,'wp-includes/js/tinymce/license.txt'),(9122,'wp-includes/js/tinymce/plugins/charmap/plugin.js'),(9123,'wp-includes/js/tinymce/plugins/charmap/plugin.min.js'),(9124,'wp-includes/js/tinymce/plugins/colorpicker/plugin.js'),(9125,'wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js'),(9126,'wp-includes/js/tinymce/plugins/compat3x/css/dialog.css'),(9127,'wp-includes/js/tinymce/plugins/compat3x/plugin.js'),(9128,'wp-includes/js/tinymce/plugins/compat3x/plugin.min.js'),(9129,'wp-includes/js/tinymce/plugins/directionality/plugin.js'),(9130,'wp-includes/js/tinymce/plugins/directionality/plugin.min.js'),(9131,'wp-includes/js/tinymce/plugins/fullscreen/plugin.js'),(9132,'wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js'),(9133,'wp-includes/js/tinymce/plugins/hr/plugin.js'),(9134,'wp-includes/js/tinymce/plugins/hr/plugin.min.js'),(9135,'wp-includes/js/tinymce/plugins/image/plugin.js'),(9136,'wp-includes/js/tinymce/plugins/image/plugin.min.js'),(9137,'wp-includes/js/tinymce/plugins/link/plugin.js'),(9138,'wp-includes/js/tinymce/plugins/link/plugin.min.js'),(9139,'wp-includes/js/tinymce/plugins/lists/plugin.js'),(9140,'wp-includes/js/tinymce/plugins/lists/plugin.min.js'),(9141,'wp-includes/js/tinymce/plugins/media/plugin.js'),(9142,'wp-includes/js/tinymce/plugins/media/plugin.min.js'),(9143,'wp-includes/js/tinymce/plugins/paste/plugin.js'),(9144,'wp-includes/js/tinymce/plugins/paste/plugin.min.js'),(9145,'wp-includes/js/tinymce/plugins/tabfocus/plugin.js'),(9146,'wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js'),(9147,'wp-includes/js/tinymce/plugins/textcolor/plugin.js'),(9148,'wp-includes/js/tinymce/plugins/textcolor/plugin.min.js'),(9149,'wp-includes/js/tinymce/plugins/wordpress/plugin.js'),(9150,'wp-includes/js/tinymce/plugins/wordpress/plugin.min.js'),(9151,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.js'),(9152,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js'),(9153,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.js'),(9154,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js'),(9155,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.js'),(9156,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js'),(9157,'wp-includes/js/tinymce/plugins/wpemoji/plugin.js'),(9158,'wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js'),(9159,'wp-includes/js/tinymce/plugins/wpgallery/plugin.js'),(9160,'wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js'),(9161,'wp-includes/js/tinymce/plugins/wplink/plugin.js'),(9162,'wp-includes/js/tinymce/plugins/wplink/plugin.min.js'),(9163,'wp-includes/js/tinymce/plugins/wptextpattern/plugin.js'),(9164,'wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js'),(9165,'wp-includes/js/tinymce/plugins/wpview/plugin.js'),(9166,'wp-includes/js/tinymce/plugins/wpview/plugin.min.js'),(9167,'wp-includes/js/tinymce/skins/lightgray/content.inline.min.css'),(9168,'wp-includes/js/tinymce/skins/lightgray/content.min.css'),(9169,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot'),(9170,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg'),(9171,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf'),(9172,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff'),(9173,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot'),(9174,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg'),(9175,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf'),(9176,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff'),(9177,'wp-includes/js/tinymce/skins/lightgray/img/anchor.gif'),(9178,'wp-includes/js/tinymce/skins/lightgray/img/loader.gif'),(9179,'wp-includes/js/tinymce/skins/lightgray/img/object.gif'),(9180,'wp-includes/js/tinymce/skins/lightgray/img/trans.gif'),(9181,'wp-includes/js/tinymce/skins/lightgray/skin.min.css'),(9182,'wp-includes/js/tinymce/skins/wordpress/images/audio.png'),(9183,'wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png'),(9184,'wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png'),(9185,'wp-includes/js/tinymce/skins/wordpress/images/embedded.png'),(9186,'wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png'),(9187,'wp-includes/js/tinymce/skins/wordpress/images/gallery.png'),(9188,'wp-includes/js/tinymce/skins/wordpress/images/more-2x.png'),(9189,'wp-includes/js/tinymce/skins/wordpress/images/more.png'),(9190,'wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png'),(9191,'wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png'),(9192,'wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png'),(9193,'wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png'),(9194,'wp-includes/js/tinymce/skins/wordpress/images/video.png'),(9195,'wp-includes/js/tinymce/skins/wordpress/wp-content.css'),(9196,'wp-includes/js/tinymce/themes/inlite/theme.js'),(9197,'wp-includes/js/tinymce/themes/inlite/theme.min.js'),(9198,'wp-includes/js/tinymce/themes/modern/theme.js'),(9199,'wp-includes/js/tinymce/themes/modern/theme.min.js'),(9200,'wp-includes/js/tinymce/tiny_mce_popup.js'),(9201,'wp-includes/js/tinymce/tinymce.min.js'),(9202,'wp-includes/js/tinymce/utils/editable_selects.js'),(9203,'wp-includes/js/tinymce/utils/form_utils.js'),(9204,'wp-includes/js/tinymce/utils/mctabs.js'),(9205,'wp-includes/js/tinymce/utils/validate.js'),(9206,'wp-includes/js/tinymce/wp-tinymce.js'),(9207,'wp-includes/js/tinymce/wp-tinymce.php'),(9208,'wp-includes/js/tw-sack.js'),(9209,'wp-includes/js/tw-sack.min.js'),(9210,'wp-includes/js/twemoji.js'),(9211,'wp-includes/js/twemoji.min.js'),(9212,'wp-includes/js/underscore.js'),(9213,'wp-includes/js/underscore.min.js'),(9214,'wp-includes/js/utils.js'),(9215,'wp-includes/js/utils.min.js'),(9216,'wp-includes/js/wp-ajax-response.js'),(9217,'wp-includes/js/wp-ajax-response.min.js'),(9218,'wp-includes/js/wp-api.js'),(9219,'wp-includes/js/wp-api.min.js'),(9220,'wp-includes/js/wp-auth-check.js'),(9221,'wp-includes/js/wp-auth-check.min.js'),(9222,'wp-includes/js/wp-backbone.js'),(9223,'wp-includes/js/wp-backbone.min.js'),(9224,'wp-includes/js/wp-custom-header.js'),(9225,'wp-includes/js/wp-custom-header.min.js'),(9226,'wp-includes/js/wp-embed-template.js'),(9227,'wp-includes/js/wp-embed-template.min.js'),(9228,'wp-includes/js/wp-embed.js'),(9229,'wp-includes/js/wp-embed.min.js'),(9230,'wp-includes/js/wp-emoji-loader.js'),(9231,'wp-includes/js/wp-emoji-loader.min.js'),(9232,'wp-includes/js/wp-emoji-release.min.js'),(9233,'wp-includes/js/wp-emoji.js'),(9234,'wp-includes/js/wp-emoji.min.js'),(9235,'wp-includes/js/wp-list-revisions.js'),(9236,'wp-includes/js/wp-list-revisions.min.js'),(9237,'wp-includes/js/wp-lists.js'),(9238,'wp-includes/js/wp-lists.min.js'),(9239,'wp-includes/js/wp-pointer.js'),(9240,'wp-includes/js/wp-pointer.min.js'),(9241,'wp-includes/js/wp-sanitize.js'),(9242,'wp-includes/js/wp-sanitize.min.js'),(9243,'wp-includes/js/wp-util.js'),(9244,'wp-includes/js/wp-util.min.js'),(9245,'wp-includes/js/wpdialog.js'),(9246,'wp-includes/js/wpdialog.min.js'),(9247,'wp-includes/js/wplink.js'),(9248,'wp-includes/js/wplink.min.js'),(9249,'wp-includes/js/zxcvbn-async.js'),(9250,'wp-includes/js/zxcvbn-async.min.js'),(9251,'wp-includes/js/zxcvbn.min.js'),(9252,'wp-includes/kses.php'),(9253,'wp-includes/l10n.php'),(9254,'wp-includes/link-template.php'),(9255,'wp-includes/load.php'),(9256,'wp-includes/locale.php'),(9257,'wp-includes/media-template.php'),(9258,'wp-includes/media.php'),(9259,'wp-includes/meta.php'),(9260,'wp-includes/ms-blogs.php'),(9261,'wp-includes/ms-default-constants.php'),(9262,'wp-includes/ms-default-filters.php'),(9263,'wp-includes/ms-deprecated.php'),(9264,'wp-includes/ms-files.php'),(9265,'wp-includes/ms-functions.php'),(9266,'wp-includes/ms-load.php'),(9267,'wp-includes/ms-network.php'),(9268,'wp-includes/ms-settings.php'),(9269,'wp-includes/ms-site.php'),(9270,'wp-includes/nav-menu-template.php'),(9271,'wp-includes/nav-menu.php'),(9272,'wp-includes/option.php'),(9273,'wp-includes/pluggable-deprecated.php'),(9274,'wp-includes/pluggable.php'),(9275,'wp-includes/plugin.php'),(9276,'wp-includes/pomo/entry.php'),(9277,'wp-includes/pomo/mo.php'),(9278,'wp-includes/pomo/plural-forms.php'),(9279,'wp-includes/pomo/po.php'),(9280,'wp-includes/pomo/streams.php'),(9281,'wp-includes/pomo/translations.php'),(9282,'wp-includes/post-formats.php'),(9283,'wp-includes/post-template.php'),(9284,'wp-includes/post-thumbnail-template.php'),(9285,'wp-includes/post.php'),(9286,'wp-includes/query.php'),(9287,'wp-includes/random_compat/byte_safe_strings.php'),(9288,'wp-includes/random_compat/cast_to_int.php'),(9289,'wp-includes/random_compat/error_polyfill.php'),(9290,'wp-includes/random_compat/random.php'),(9291,'wp-includes/random_compat/random_bytes_com_dotnet.php'),(9292,'wp-includes/random_compat/random_bytes_dev_urandom.php'),(9293,'wp-includes/random_compat/random_bytes_libsodium.php'),(9294,'wp-includes/random_compat/random_bytes_libsodium_legacy.php'),(9295,'wp-includes/random_compat/random_bytes_mcrypt.php'),(9296,'wp-includes/random_compat/random_int.php'),(9297,'wp-includes/registration-functions.php'),(9298,'wp-includes/registration.php'),(9299,'wp-includes/rest-api/class-wp-rest-request.php'),(9300,'wp-includes/rest-api/class-wp-rest-response.php'),(9301,'wp-includes/rest-api/class-wp-rest-server.php'),(9302,'wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php'),(9303,'wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php'),(9304,'wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php'),(9305,'wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php'),(9306,'wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php'),(9307,'wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php'),(9308,'wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php'),(9309,'wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php'),(9310,'wp-includes/rest-api/endpoints/class-wp-rest-controller.php'),(9311,'wp-includes/rest-api/endpoints/class-wp-rest-pattern-directory-controller.php'),(9312,'wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php'),(9313,'wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php'),(9314,'wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php'),(9315,'wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php'),(9316,'wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php'),(9317,'wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php'),(9318,'wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php'),(9319,'wp-includes/rest-api/endpoints/class-wp-rest-sidebars-controller.php'),(9320,'wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php'),(9321,'wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php'),(9322,'wp-includes/rest-api/endpoints/class-wp-rest-templates-controller.php'),(9323,'wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php'),(9324,'wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php'),(9325,'wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php'),(9326,'wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php'),(9327,'wp-includes/rest-api/endpoints/class-wp-rest-widgets-controller.php'),(9328,'wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php'),(9329,'wp-includes/rest-api/fields/class-wp-rest-meta-fields.php'),(9330,'wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php'),(9331,'wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php'),(9332,'wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php'),(9333,'wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php'),(9334,'wp-includes/rest-api/search/class-wp-rest-post-search-handler.php'),(9335,'wp-includes/rest-api/search/class-wp-rest-search-handler.php'),(9336,'wp-includes/rest-api/search/class-wp-rest-term-search-handler.php'),(9337,'wp-includes/rest-api.php'),(9338,'wp-includes/revision.php'),(9339,'wp-includes/rewrite.php'),(9340,'wp-includes/robots-template.php'),(9341,'wp-includes/rss-functions.php'),(9342,'wp-includes/rss.php'),(9343,'wp-includes/script-loader.php'),(9344,'wp-includes/session.php'),(9345,'wp-includes/shortcodes.php'),(9346,'wp-includes/sitemaps/class-wp-sitemaps-index.php'),(9347,'wp-includes/sitemaps/class-wp-sitemaps-provider.php'),(9348,'wp-includes/sitemaps/class-wp-sitemaps-registry.php'),(9349,'wp-includes/sitemaps/class-wp-sitemaps-renderer.php'),(9350,'wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php'),(9351,'wp-includes/sitemaps/class-wp-sitemaps.php'),(9352,'wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php'),(9353,'wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php'),(9354,'wp-includes/sitemaps/providers/class-wp-sitemaps-users.php'),(9355,'wp-includes/sitemaps.php'),(9356,'wp-includes/sodium_compat/LICENSE'),(9357,'wp-includes/sodium_compat/autoload-php7.php'),(9358,'wp-includes/sodium_compat/autoload.php'),(9359,'wp-includes/sodium_compat/composer.json'),(9360,'wp-includes/sodium_compat/lib/constants.php'),(9361,'wp-includes/sodium_compat/lib/namespaced.php'),(9362,'wp-includes/sodium_compat/lib/php72compat.php'),(9363,'wp-includes/sodium_compat/lib/php72compat_const.php'),(9364,'wp-includes/sodium_compat/lib/ristretto255.php'),(9365,'wp-includes/sodium_compat/lib/sodium_compat.php'),(9366,'wp-includes/sodium_compat/lib/stream-xchacha20.php'),(9367,'wp-includes/sodium_compat/namespaced/Compat.php'),(9368,'wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php'),(9369,'wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php'),(9370,'wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php'),(9371,'wp-includes/sodium_compat/namespaced/Core/ChaCha20.php'),(9372,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php'),(9373,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php'),(9374,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php'),(9375,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php'),(9376,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php'),(9377,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php'),(9378,'wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php'),(9379,'wp-includes/sodium_compat/namespaced/Core/Curve25519.php'),(9380,'wp-includes/sodium_compat/namespaced/Core/Ed25519.php'),(9381,'wp-includes/sodium_compat/namespaced/Core/HChaCha20.php'),(9382,'wp-includes/sodium_compat/namespaced/Core/HSalsa20.php'),(9383,'wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php'),(9384,'wp-includes/sodium_compat/namespaced/Core/Poly1305.php'),(9385,'wp-includes/sodium_compat/namespaced/Core/Salsa20.php'),(9386,'wp-includes/sodium_compat/namespaced/Core/SipHash.php'),(9387,'wp-includes/sodium_compat/namespaced/Core/Util.php'),(9388,'wp-includes/sodium_compat/namespaced/Core/X25519.php'),(9389,'wp-includes/sodium_compat/namespaced/Core/XChaCha20.php'),(9390,'wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php'),(9391,'wp-includes/sodium_compat/namespaced/Crypto.php'),(9392,'wp-includes/sodium_compat/namespaced/File.php'),(9393,'wp-includes/sodium_compat/src/Compat.php'),(9394,'wp-includes/sodium_compat/src/Core/BLAKE2b.php'),(9395,'wp-includes/sodium_compat/src/Core/Base64/Common.php'),(9396,'wp-includes/sodium_compat/src/Core/Base64/Original.php'),(9397,'wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php'),(9398,'wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php'),(9399,'wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php'),(9400,'wp-includes/sodium_compat/src/Core/ChaCha20.php'),(9401,'wp-includes/sodium_compat/src/Core/Curve25519/Fe.php'),(9402,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php'),(9403,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php'),(9404,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php'),(9405,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php'),(9406,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php'),(9407,'wp-includes/sodium_compat/src/Core/Curve25519/H.php'),(9408,'wp-includes/sodium_compat/src/Core/Curve25519/README.md'),(9409,'wp-includes/sodium_compat/src/Core/Curve25519.php'),(9410,'wp-includes/sodium_compat/src/Core/Ed25519.php'),(9411,'wp-includes/sodium_compat/src/Core/HChaCha20.php'),(9412,'wp-includes/sodium_compat/src/Core/HSalsa20.php'),(9413,'wp-includes/sodium_compat/src/Core/Poly1305/State.php'),(9414,'wp-includes/sodium_compat/src/Core/Poly1305.php'),(9415,'wp-includes/sodium_compat/src/Core/Ristretto255.php'),(9416,'wp-includes/sodium_compat/src/Core/Salsa20.php'),(9417,'wp-includes/sodium_compat/src/Core/SecretStream/State.php'),(9418,'wp-includes/sodium_compat/src/Core/SipHash.php'),(9419,'wp-includes/sodium_compat/src/Core/Util.php'),(9420,'wp-includes/sodium_compat/src/Core/X25519.php'),(9421,'wp-includes/sodium_compat/src/Core/XChaCha20.php'),(9422,'wp-includes/sodium_compat/src/Core/XSalsa20.php'),(9423,'wp-includes/sodium_compat/src/Core32/BLAKE2b.php'),(9424,'wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php'),(9425,'wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php'),(9426,'wp-includes/sodium_compat/src/Core32/ChaCha20.php'),(9427,'wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php'),(9428,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php'),(9429,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php'),(9430,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php'),(9431,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php'),(9432,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php'),(9433,'wp-includes/sodium_compat/src/Core32/Curve25519/H.php'),(9434,'wp-includes/sodium_compat/src/Core32/Curve25519/README.md'),(9435,'wp-includes/sodium_compat/src/Core32/Curve25519.php'),(9436,'wp-includes/sodium_compat/src/Core32/Ed25519.php'),(9437,'wp-includes/sodium_compat/src/Core32/HChaCha20.php'),(9438,'wp-includes/sodium_compat/src/Core32/HSalsa20.php'),(9439,'wp-includes/sodium_compat/src/Core32/Int32.php'),(9440,'wp-includes/sodium_compat/src/Core32/Int64.php'),(9441,'wp-includes/sodium_compat/src/Core32/Poly1305/State.php'),(9442,'wp-includes/sodium_compat/src/Core32/Poly1305.php'),(9443,'wp-includes/sodium_compat/src/Core32/Salsa20.php'),(9444,'wp-includes/sodium_compat/src/Core32/SecretStream/State.php'),(9445,'wp-includes/sodium_compat/src/Core32/SipHash.php'),(9446,'wp-includes/sodium_compat/src/Core32/Util.php'),(9447,'wp-includes/sodium_compat/src/Core32/X25519.php'),(9448,'wp-includes/sodium_compat/src/Core32/XChaCha20.php'),(9449,'wp-includes/sodium_compat/src/Core32/XSalsa20.php'),(9450,'wp-includes/sodium_compat/src/Crypto.php'),(9451,'wp-includes/sodium_compat/src/Crypto32.php'),(9452,'wp-includes/sodium_compat/src/File.php'),(9453,'wp-includes/sodium_compat/src/PHP52/SplFixedArray.php'),(9454,'wp-includes/sodium_compat/src/SodiumException.php'),(9455,'wp-includes/spl-autoload-compat.php'),(9456,'wp-includes/taxonomy.php'),(9457,'wp-includes/template-canvas.php'),(9458,'wp-includes/template-loader.php'),(9459,'wp-includes/template.php'),(9460,'wp-includes/theme-compat/comments.php'),(9461,'wp-includes/theme-compat/embed-404.php'),(9462,'wp-includes/theme-compat/embed-content.php'),(9463,'wp-includes/theme-compat/embed.php'),(9464,'wp-includes/theme-compat/footer-embed.php'),(9465,'wp-includes/theme-compat/footer.php'),(9466,'wp-includes/theme-compat/header-embed.php'),(9467,'wp-includes/theme-compat/header.php'),(9468,'wp-includes/theme-compat/sidebar.php'),(9469,'wp-includes/theme-i18n.json'),(9470,'wp-includes/theme-templates.php'),(9471,'wp-includes/theme.json'),(9472,'wp-includes/theme.php'),(9473,'wp-includes/update.php'),(9474,'wp-includes/user.php'),(9475,'wp-includes/vars.php'),(9476,'wp-includes/version.php'),(9477,'wp-includes/widgets/class-wp-nav-menu-widget.php'),(9478,'wp-includes/widgets/class-wp-widget-archives.php'),(9479,'wp-includes/widgets/class-wp-widget-block.php'),(9480,'wp-includes/widgets/class-wp-widget-calendar.php'),(9481,'wp-includes/widgets/class-wp-widget-categories.php'),(9482,'wp-includes/widgets/class-wp-widget-custom-html.php'),(9483,'wp-includes/widgets/class-wp-widget-links.php'),(9484,'wp-includes/widgets/class-wp-widget-media-audio.php'),(9485,'wp-includes/widgets/class-wp-widget-media-gallery.php'),(9486,'wp-includes/widgets/class-wp-widget-media-image.php'),(9487,'wp-includes/widgets/class-wp-widget-media-video.php'),(9488,'wp-includes/widgets/class-wp-widget-media.php'),(9489,'wp-includes/widgets/class-wp-widget-meta.php'),(9490,'wp-includes/widgets/class-wp-widget-pages.php'),(9491,'wp-includes/widgets/class-wp-widget-recent-comments.php'),(9492,'wp-includes/widgets/class-wp-widget-recent-posts.php'),(9493,'wp-includes/widgets/class-wp-widget-rss.php'),(9494,'wp-includes/widgets/class-wp-widget-search.php'),(9495,'wp-includes/widgets/class-wp-widget-tag-cloud.php'),(9496,'wp-includes/widgets/class-wp-widget-text.php'),(9497,'wp-includes/widgets.php'),(9498,'wp-includes/wlwmanifest.xml'),(9499,'wp-includes/wp-db.php'),(9500,'wp-includes/wp-diff.php'),(9501,'wp-links-opml.php'),(9502,'wp-load.php'),(9503,'wp-login.php'),(9504,'wp-mail.php'),(9505,'wp-settings.php'),(9506,'wp-signup.php'),(9507,'wp-trackback.php'),(9508,'xmlrpc.php');
/*!40000 ALTER TABLE `b78GM7Ml_wfknownfilelist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_wflivetraffichuman`
--

DROP TABLE IF EXISTS `b78GM7Ml_wflivetraffichuman`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `b78GM7Ml_wflivetraffichuman` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `identifier` binary(32) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `expiration` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`,`identifier`),
  KEY `expiration` (`expiration`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `b78GM7Ml_wflivetraffichuman`
--

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

--
-- Table structure for table `b78GM7Ml_wflocs`
--

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

--
-- Dumping data for table `b78GM7Ml_wflocs`
--

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

--
-- Table structure for table `b78GM7Ml_wflogins`
--

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

--
-- Dumping data for table `b78GM7Ml_wflogins`
--

LOCK TABLES `b78GM7Ml_wflogins` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_wflogins` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_wflogins` VALUES (50271,207517,1692089226.839614,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1‘Æ‚','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50272,207518,1692089227.769756,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ.ëbi','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50273,207519,1692089228.129819,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1‘Æ‚','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50274,207520,1692089229.134013,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ.ëbi','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50275,207521,1692089235.921989,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ+ñ‘´','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50276,207522,1692089237.171994,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ+ñ‘´','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50277,207523,1692089244.280971,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-w‡y','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50278,207524,1692089245.736460,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-w‡y','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50279,207525,1692089258.677302,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶@\"','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50280,207526,1692089259.957419,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶@\"','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50281,207527,1692089277.900210,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\¦','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50282,207528,1692089278.987922,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\¦','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50283,207531,1692089293.054820,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•Aò','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50284,207532,1692089294.389731,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•Aò','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50285,207533,1692089298.073647,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÊZˆÜ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50286,207534,1692089299.365843,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÊZˆÜ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50287,207535,1692089299.437948,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ³aèL','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50288,207536,1692089300.502495,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ³aèL','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50289,207537,1692089307.021576,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ} `4','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50290,207538,1692089308.308123,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ} `4','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50291,207539,1692089311.947364,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg|™G','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50292,207540,1692089313.297185,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg|™G','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50293,207541,1692089316.490994,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿJÉ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50294,207542,1692089317.706791,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿJÉ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50295,207543,1692089329.231497,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿg…','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50296,207544,1692089330.561135,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿg…','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50297,207545,1692089337.308401,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿX','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50298,207546,1692089338.547760,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿX','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50299,207550,1692089364.954676,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚i5v','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50300,207552,1692089366.491503,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚i5v','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50301,207553,1692089369.340435,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿºz$','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50302,207554,1692089370.493028,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿºz$','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50303,207555,1692089376.900212,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÀŒ•”','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50304,207556,1692089379.308318,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿi»\Z—','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50305,207557,1692089379.323399,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÀŒ•”','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50306,207558,1692089380.756498,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿi»\Z—','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50307,207559,1692089385.565125,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿš Í','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50308,207560,1692089389.951755,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿš Í','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50309,207561,1692089406.826894,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿzÜá','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50310,207562,1692089408.121770,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿzÜá','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50311,207563,1692089463.473904,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿqËïš','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50312,207564,1692089464.727537,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿqËïš','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50313,207565,1692089494.219273,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿN¯:<','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50314,207566,1692089495.352752,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿN¯:<','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50315,207567,1692089498.114171,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ˜:©','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50316,207568,1692089499.466042,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ˜:©','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50317,207569,1692089502.572822,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿˆž‰','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50318,207570,1692089503.731186,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿˆž‰','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50319,207571,1692089506.754601,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg×ÀB','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50320,207572,1692089508.035184,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg×ÀB','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50321,207573,1692089535.607179,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿz¨Óæ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50322,207574,1692089537.027053,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿz¨Óæ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50323,207575,1692089565.204541,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ:aå/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50324,207576,1692089566.923960,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ:aå/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50325,207577,1692089569.270558,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿjÃM2','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50326,207578,1692089570.603509,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿjÃM2','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50327,207581,1692089628.166304,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ«<™','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50328,207582,1692089629.530936,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ«<™','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50329,207584,1692089643.353650,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿVb8[','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50330,207585,1692089644.574365,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿVb8[','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50331,207586,1692089646.763252,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Z@œ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50332,207587,1692089648.116507,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Z@œ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50333,207588,1692089651.117985,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿghÖ\Z','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50334,207589,1692089652.386459,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿghÖ\Z','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50335,207590,1692089678.691991,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶2ˆ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50336,207591,1692089680.001751,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶2ˆ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50337,207594,1692089710.029012,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿg›·','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50338,207595,1692089711.427997,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿg›·','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50339,207596,1692089718.618628,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ$I˜h','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50340,207597,1692089719.828380,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ$I˜h','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50341,207601,1692089745.732010,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿzµF%','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50342,207601,1692089745.736057,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿzµF%','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50343,207602,1692089747.042109,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿzµF%','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50344,207602,1692089747.045369,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿzµF%','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50345,207603,1692089770.125547,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿªç9¯','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50346,207604,1692089771.116457,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿªç9¯','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50347,207605,1692089776.826062,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ|+DÙ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50348,207606,1692089778.227082,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ|+DÙ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50349,207607,1692089833.271543,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÄ½q','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50350,207608,1692089834.536646,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÄ½q','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50351,207609,1692089866.598644,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿªî…”','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50352,207610,1692089867.783485,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿªî…”','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50353,207611,1692089895.781742,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ|»','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50354,207612,1692089895.981729,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿfØ¨‹','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50355,207613,1692089897.027672,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ|»','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50356,207614,1692089897.544344,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿfØ¨‹','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50357,207615,1692089913.611392,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¡1T','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50358,207616,1692089914.744001,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¡1T','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50359,207617,1692089915.706478,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¡1¦|','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50360,207618,1692089915.845400,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ´¾Š','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50361,207619,1692089917.045162,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¡1¦|','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50362,207620,1692089917.267335,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ´¾Š','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50363,207621,1692089936.654331,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÁ£L','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50364,207622,1692089938.299978,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÁ£L','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50365,207623,1692090096.899567,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ý@á','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50366,207628,1692090334.743289,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿˆžx','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50367,207629,1692090335.941857,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿˆžx','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50368,207630,1692090383.871233,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÅM“','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50369,207631,1692090385.070355,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÅM“','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50370,207632,1692090403.636224,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÄ½q','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50371,207633,1692090404.961088,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÄ½q','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50372,207636,1692090816.645114,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥I„‡','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50373,207637,1692090830.591712,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥I„‡','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50374,207639,1692090863.975254,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿtÎõ]','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50375,207640,1692090865.744167,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿtÎõ]','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50376,207641,1692091027.801226,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgU','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50377,207642,1692091029.206326,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgU','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50378,207645,1692091446.191329,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÀþƒ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50379,207646,1692091791.601821,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿqDÀ¼','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50380,207650,1692092157.620862,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÅ¥¢Ó','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50381,207651,1692092160.102340,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÅ¥¢Ó','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50382,207654,1692092879.733773,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿTÿ¹R','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50383,207655,1692092881.062350,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿTÿ¹R','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50384,207659,1692093883.724024,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÄ=!J','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50385,207660,1692093885.046586,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÄ=!J','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50386,207665,1692094741.667991,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÅùû','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50387,207666,1692094743.100453,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÅùû','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50388,207667,1692095007.072929,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ%o½‰','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50389,207668,1692095008.510572,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ%o½‰','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50390,207669,1692095062.001520,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿgïþ>','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50391,207670,1692095063.342114,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿgïþ>','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50392,207673,1692096000.171073,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ´þà@','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50393,207674,1692096001.495469,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ´þà@','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50394,207679,1692096910.585372,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨jJ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50395,207682,1692097887.507667,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•nz','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50396,207683,1692097888.916241,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•nz','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50397,207689,1692098522.950760,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾%Ë1','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50398,207690,1692098524.234960,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾%Ë1','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50399,207695,1692099544.710596,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿg<¼','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50400,207696,1692099546.086741,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿg<¼','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50401,207699,1692099877.777563,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÄ)&:','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50402,207700,1692099879.142681,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÄ)&:','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50403,207701,1692099982.590930,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ü¢R','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50404,207702,1692099983.774033,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ü¢R','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50405,207705,1692100539.309275,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'>â','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50406,207706,1692100541.118033,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'>â','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50407,207710,1692101375.444385,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿn6»Q','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50408,207711,1692101376.917843,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿn6»Q','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50409,207719,1692102603.228466,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿßéTª','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50410,207720,1692102604.614486,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿßéTª','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50411,207721,1692102989.203438,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1%ùQ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50412,207722,1692102990.578441,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1%ùQ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50413,207740,1692105830.094575,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ)þî','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50414,207741,1692105831.681296,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ)þî','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50415,207742,1692105835.192484,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ)þî','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50416,207743,1692105836.413824,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ)þî','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50417,207746,1692106178.317355,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»·\\ß','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50418,207747,1692106179.533828,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»·\\ß','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50419,207763,1692109337.321599,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿoX8?','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50420,207764,1692109338.765291,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿoX8?','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50421,207765,1692109790.310029,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•uË','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50422,207766,1692109791.683607,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•uË','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50423,207767,1692111499.051486,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿžŒi‰','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50424,207770,1692112206.585293,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36'),(50425,207772,1692114940.630702,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ–m”Ø','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36'),(50426,207783,1692122809.428460,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ±í','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50427,207784,1692122810.630927,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ±í','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50428,207858,1692136580.412662,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÊ†n','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36'),(50429,207873,1692140284.269787,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'p¯','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50430,207874,1692140285.478411,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'p¯','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50431,207878,1692141319.244221,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿD²àf','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50432,207881,1692142009.462705,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿË×®Â','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50433,207882,1692142010.869000,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿË×®Â','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50434,207885,1692142316.668777,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ|²Õ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50435,207886,1692142317.928897,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ|²Õ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50436,207891,1692143776.595799,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ­ì°ƒ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50437,207899,1692145240.537199,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ|k„ò','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50438,207900,1692145241.932899,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ|k„ò','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50439,207905,1692146846.268983,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg·_','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50440,207906,1692146852.019674,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg·_','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50441,207908,1692147305.171911,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿJÐ)_','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50442,207929,1692154514.605361,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ó!¿','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50443,207930,1692154515.919288,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ó!¿','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50444,207936,1692157119.208759,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿjØá½','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50445,207937,1692157120.650342,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿjØá½','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50446,207938,1692157864.603312,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ:óC','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50447,207939,1692157865.938133,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ:óC','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50448,207946,1692159293.757226,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg„c','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50449,207947,1692159294.998027,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg„c','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50450,207949,1692159612.964204,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÊŽ­J','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50451,207950,1692159614.382855,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÊŽ­J','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50452,207968,1692163122.290738,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg†îŽ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50453,207969,1692163123.623798,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg†îŽ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50454,207983,1692164872.105181,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1%C{','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50455,207984,1692164873.481439,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1%C{','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50456,207986,1692165217.905396,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¿xZ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50457,207987,1692165221.322955,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¿xZ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50458,207989,1692165369.773333,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1œ[;','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50459,207990,1692165371.267756,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1œ[;','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50460,207991,1692165414.683204,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿeœÓ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50461,208022,1692170005.199900,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿoXMÎ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50462,208023,1692170006.532062,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿoXMÎ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50463,208109,1692190297.889456,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹VRÝ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50464,208110,1692190299.157742,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹VRÝ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50465,208120,1692195264.691188,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36'),(50466,208137,1692200082.459450,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿUKƒ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50467,208138,1692200083.681214,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿUKƒ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50468,208144,1692201379.343994,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ_´E','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50469,208145,1692201380.493336,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ_´E','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50470,208176,1692208458.892875,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36'),(50471,208216,1692232799.474408,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ:EKœ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50472,208217,1692232800.760320,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ:EKœ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50473,208243,1692249382.762444,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÞM\'','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50474,208244,1692249384.213377,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÞM\'','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50475,208248,1692250185.063776,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ˜:Ž','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50476,208249,1692250186.503494,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ˜:Ž','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50477,208271,1692254349.977064,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼¥Î','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'),(50478,208368,1692272701.465745,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿE£Øe','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50479,208381,1692279482.650256,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ*tÌ','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/29.0.1547.62 Safari/537.36'),(50480,208488,1692335952.842838,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1%e','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50481,208489,1692335954.237389,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1%e','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50482,208516,1692344478.175942,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿjLÆ—','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50483,208517,1692344479.681814,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿjLÆ—','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50484,208612,1692363015.238275,1,'loginFailInvalidUsername','wadminw',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgŸïà','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50485,208699,1692418990.591828,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg g¸','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50486,208700,1692418992.232241,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg g¸','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50487,208704,1692420520.833410,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ+á\'','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50488,208753,1692433811.679780,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ/kG¥','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50489,208785,1692439402.138068,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿi²0Î','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50490,208786,1692439403.715670,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿi²0Î','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50491,208838,1692451693.715052,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ*tÀ','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36'),(50492,208843,1692453234.975834,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿµ®}Ö','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36'),(50493,208887,1692469538.350504,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ/û2 ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50494,209166,1692585816.516664,1,'loginFailInvalidUsername','ronshank',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ(zp‰','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50495,209167,1692585817.150744,1,'loginFailInvalidUsername','ronshank',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ(zp‰','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50496,209168,1692585818.238242,1,'loginFailInvalidUsername','ronshank',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ(zp‰','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50497,209169,1692585818.781618,1,'loginFailInvalidUsername','ronshank',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ(zp‰','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50498,209170,1692585819.330075,1,'loginFailInvalidUsername','ronshank',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ(zp‰','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50499,209171,1692585819.871819,1,'loginFailInvalidUsername','ronshank',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ(zp‰','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50500,209172,1692585820.416845,1,'loginFailInvalidUsername','ronshank',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ(zp‰','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50501,209173,1692585820.969683,1,'loginFailInvalidUsername','ronshank',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ(zp‰','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50502,209174,1692585821.526214,1,'loginFailInvalidUsername','ronshank',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ(zp‰','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50503,209175,1692585822.094065,1,'loginFailInvalidUsername','ronshank',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ(zp‰','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50504,209176,1692585822.654669,1,'loginFailInvalidUsername','ronshank',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ(zp‰','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50505,209177,1692585823.191706,1,'loginFailInvalidUsername','ronshank',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ(zp‰','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50506,209178,1692585823.728250,1,'loginFailInvalidUsername','ronshank',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ(zp‰','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50507,209178,1692585823.731608,1,'loginFailInvalidUsername','ronshank',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ(zp‰','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50508,209179,1692585824.265969,1,'loginFailInvalidUsername','ronshank',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ(zp‰','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50509,209179,1692585824.269398,1,'loginFailInvalidUsername','ronshank',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ(zp‰','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50510,209180,1692585824.812519,1,'loginFailInvalidUsername','ronshank',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ(zp‰','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50511,209181,1692585825.363191,1,'loginFailInvalidUsername','ronshank',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ(zp‰','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50512,209181,1692585825.366644,1,'loginFailInvalidUsername','ronshank',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ(zp‰','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50513,209199,1692594346.787655,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ©¯o','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50514,209241,1692605655.849038,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÅÝþ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50515,209242,1692605658.739701,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÅÝþ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50516,209314,1692624987.307860,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹Üe','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36'),(50517,209316,1692628201.063875,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'),(50518,209349,1692646983.802892,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ï','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50519,209350,1692646985.356021,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ð','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50520,209351,1692646986.360708,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ï','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50521,209352,1692646987.480770,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ð','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50522,209353,1692646988.767730,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ï','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50523,209354,1692646989.846106,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ð','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50524,209355,1692646991.445388,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ï','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50525,209356,1692646992.607592,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ï','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50526,209357,1692646993.623045,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ð','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50527,209358,1692646994.606548,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ï','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50528,209358,1692646994.610129,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ï','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50529,209359,1692646995.612567,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ð','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50530,209360,1692646996.629862,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ð','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50531,209360,1692646996.633339,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ð','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50532,209361,1692646997.676025,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ï','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50533,209362,1692646998.735171,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ð','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50534,209363,1692647000.133482,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ï','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50535,209364,1692647001.102022,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ð','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50536,209364,1692647001.104831,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ð','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50537,209365,1692647002.089514,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ð','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50538,209366,1692647003.230844,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ð','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50539,209366,1692647003.233653,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ð','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50540,209367,1692647004.201209,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ï','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50541,209368,1692647005.193571,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ï','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50542,209369,1692647006.177137,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ï','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50543,209370,1692647007.147338,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ð','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50544,209371,1692647008.304224,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ï','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50545,209372,1692647009.411009,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ï','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50546,209373,1692647010.584687,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ð','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50547,209374,1692647011.687588,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ï','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50548,209375,1692647012.682771,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ð','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50549,209376,1692647014.130895,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ï','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50550,209377,1692647015.466514,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ï','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50551,209378,1692647017.180952,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ð','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50552,209379,1692647018.255690,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ð','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50553,209380,1692647019.323496,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ï','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50554,209381,1692647020.926735,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ï','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50555,209383,1692647024.057726,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-[ð','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(50556,209479,1692682902.064470,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿg®Ã','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50557,209480,1692682903.845208,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿg®Ã','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50558,209486,1692684498.813040,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹=™M','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50559,209559,1692738390.558176,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'),(50560,209641,1692778383.185398,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿe+0','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50561,209647,1692780103.385906,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ/7Õ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50562,209648,1692780105.079225,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ/7Õ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50563,209728,1692797297.559061,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ*t±','Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.17 Safari/537.36'),(50564,209731,1692800591.278028,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'),(50565,209880,1692870416.038370,1,'loginFailInvalidUsername','kingsvillelivestock!',0,'\0\0\0\0\0\0\0\0\0\0ÿÿg›ÑA','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),(50566,209881,1692870418.930046,1,'loginFailInvalidUsername','kingsvillelivestock.com!',0,'\0\0\0\0\0\0\0\0\0\0ÿÿp†¨“','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),(50567,209882,1692870421.833634,1,'loginFailInvalidUsername','password!',0,'\0\0\0\0\0\0\0\0\0\0ÿÿe3Å¢','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),(50568,209883,1692870424.902813,1,'loginFailInvalidUsername','kingsvillelivestock!',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶J§9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),(50569,209884,1692870424.943536,1,'loginFailInvalidUsername','admin!',0,'\0\0\0\0\0\0\0\0\0\0ÿÿg§rD','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),(50570,209885,1692870427.739635,1,'loginFailInvalidUsername','password',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸R1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),(50571,209886,1692870429.003001,1,'loginFailInvalidUsername','password',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgÿòŒ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36'),(50572,209900,1692874597.912688,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ%ÈB‹','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50573,210007,1692943736.402962,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ{†','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50574,210085,1692978326.118592,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ%‹\rQ','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36'),(50575,210091,1692983590.894413,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ*tÌ','Mozilla/5.0 (X11; OpenBSD i386) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36'),(50576,210102,1692997303.291353,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ²€»·','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36'),(50577,210204,1693078129.473665,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ/kG¥','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50578,210205,1693078727.681366,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-}ï³','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50579,210206,1693078741.288186,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-}ï³','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50580,210300,1693095589.850947,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¢\0ç~','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50581,210355,1693121266.446773,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿtv3-','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50582,210401,1693138472.726047,1,'loginFailInvalidUsername','adminmarketingnx',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ[yy','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:90.0) Gecko/20100101 Firefox/90.0'),(50583,210449,1693161568.420763,1,'loginFailInvalidUsername','w3b4',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÀcš}','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:45.0) Gecko/20100101 Firefox/45.0'),(50584,210456,1693169732.889759,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ3[—<','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36'),(50585,210469,1693186840.531051,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹µ=s','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36'),(50586,210480,1693196733.647501,1,'loginFailInvalidUsername','iamadmin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¤„9­','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:74.0) Gecko/20100101 Firefox/74.0'),(50587,210582,1693230002.090937,1,'loginFailInvalidUsername','wadminw',0,'\0\0\0\0\0\0\0\0\0\0ÿÿg“ºK','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50588,210598,1693236177.037684,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'),(50589,210599,1693238934.675414,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ6%œð','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36'),(50590,210609,1693251397.639330,1,'loginFailInvalidUsername','owais',0,'\0\0\0\0\0\0\0\0\0\0ÿÿXÆ)ë','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko/20100101 Firefox/65.0'),(50591,210614,1693255896.002583,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'),(50592,210656,1693286603.007541,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ3O±¯','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50593,210670,1693292414.993216,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿaÍÒ','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36'),(50594,210707,1693302742.506772,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿE£á~','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50595,210719,1693306089.752864,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ^=¥','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(50596,210762,1693339013.224096,1,'loginFailInvalidUsername','nimda',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ.¶u','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:81.0) Gecko/20100101 Firefox/81.0'),(50597,210812,1693380855.828614,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"KAÚ','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36'),(50598,210857,1693393618.181649,1,'loginFailInvalidUsername','admin007',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ°g>','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko/20100101 Firefox/58.0'),(50599,210868,1693400519.818422,1,'loginFailInvalidUsername','AdminLog283',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ>Š\0«','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0'),(50600,210876,1693407172.250683,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÀ*tÈ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1664.3 Safari/537.36'),(50601,210883,1693409826.970639,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'),(50602,211033,1693474624.482027,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿËpL','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(50603,211195,1693549640.373016,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÒ\'{','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50604,211287,1693588232.249872,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'l”X','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36'),(50605,211293,1693605926.011284,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¢ðì;','Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; fr; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8'),(50606,211299,1693618785.534199,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¾Gè','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36'),(50607,211306,1693633884.135962,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÁ½dÇ','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36'),(50608,211398,1693668970.955639,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¢þÍR','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50609,211516,1693720631.811392,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼¥Î','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36'),(50610,211682,1693816280.414427,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿº®','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50611,211682,1693816280.420695,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿº®','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50612,211720,1693835296.382303,1,'loginFailInvalidUsername','wadminw',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'jâã','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50613,211724,1693837033.425517,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'),(50614,211731,1693840169.665346,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÆô§e','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36'),(50615,211736,1693849061.340162,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿYìpd','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.116 Safari/537.36 Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10'),(50616,211755,1693854538.847496,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'),(50617,211796,1693896756.464636,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿËpL','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36'),(50618,211796,1693896756.468575,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿËpL','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36'),(50619,211898,1693924401.980373,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿgx²ð','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50620,211934,1693948563.969424,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'),(50621,212092,1694011877.040227,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'),(50622,212107,1694032008.251869,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿba™\Z','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.3 Safari/605.1.15'),(50623,212163,1694061815.729247,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ†z{Á','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4'),(50624,212232,1694082787.100958,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ#ÛB·','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36'),(50625,212238,1694084112.896423,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÓÜÆ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50626,212369,1694178901.842117,1,'loginFailInvalidUsername','wwwadmin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ²€ ','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36'),(50627,212369,1694178901.849190,1,'loginFailInvalidUsername','wwwadmin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ²€ ','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36'),(50628,212433,1694229884.152950,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥ãY½','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36'),(50629,212437,1694233781.083907,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ>H}','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50630,212439,1694233968.504425,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿQX4 ','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36'),(50631,212439,1694233968.508427,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿQX4 ','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36'),(50632,212461,1694240828.313110,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ.¶{','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50633,212490,1694250492.024459,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ²€ ','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36'),(50634,212564,1694282272.524800,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿD·Èå','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50635,212564,1694282272.528410,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿD·Èå','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50636,212581,1694287136.083632,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ²€(£','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50637,212598,1694292099.240428,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹¥v\"','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50638,212598,1694292099.244727,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹¥v\"','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50639,212651,1694313064.082862,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹Ó«','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50640,212651,1694313064.086119,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹Ó«','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50641,212859,1694414175.756063,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¢Íu','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50642,212871,1694416148.034597,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿŸßÞ¡','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36'),(50643,212900,1694425524.081810,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1ëJ©','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50644,212914,1694431352.955441,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ­ì°','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50645,212948,1694444934.026633,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'),(50646,213008,1694487495.717226,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿè…’','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36'),(50647,213061,1694548275.299357,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿßÅË','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(50648,213115,1694615226.485939,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'),(50649,213199,1694748203.235132,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿWvD','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36'),(50650,213340,1694783207.249070,1,'loginFailInvalidUsername','wadminw',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÚKž','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50651,213542,1694905278.536409,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨’\n','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36'),(50652,213575,1694925451.856939,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ/aÃ','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(50653,213591,1694933510.397405,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿŽ,óÖ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50654,213601,1694938700.266739,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼UQé','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50655,213619,1694943590.304997,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ3D&Œ','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(50656,213684,1694956309.841188,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ‰¸|ˆ','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36'),(50657,213695,1694958905.242365,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-xEy','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'),(50658,213746,1695000069.849611,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿoRJ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50659,213791,1695025334.073076,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿWìÑ¤','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50660,213869,1695059430.493818,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'),(50661,213875,1695067592.465758,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿCÍÆ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36'),(50662,213919,1695115931.884687,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿt0e','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50663,213957,1695129174.118585,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹\\ÂP','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50664,213957,1695129174.122244,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹\\ÂP','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50665,214054,1695184495.816340,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ#ÑTÍ','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36'),(50666,214180,1695220797.227498,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'),(50667,214262,1695277139.324998,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ@Z\"f','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50668,214262,1695277139.329603,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ@Z\"f','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50669,214263,1695277837.090031,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿj€M','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50670,214268,1695280825.678392,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿnô{','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36'),(50671,214275,1695283584.835826,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿj\01z','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36'),(50672,214317,1695298040.491373,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿz°\'|','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36'),(50673,214332,1695308143.448233,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'),(50674,214396,1695363876.762816,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ^õi','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36'),(50675,214410,1695367890.251256,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ½·×','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50676,214475,1695386378.728870,1,'loginFailInvalidUsername','wadminw',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ­ì°€','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36'),(50677,214544,1695457131.645705,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ/d)}','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50678,214698,1695537105.131547,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¢ðhc','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36'),(50679,214749,1695552616.106822,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ%ÈB‹','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50680,214790,1695585867.296731,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿCÍÆ','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36'),(50681,214796,1695593601.885732,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿnô{','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36'),(50682,214874,1695643292.467929,1,'loginFailInvalidUsername','lensho83',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-VÈ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50683,214874,1695643292.471902,1,'loginFailInvalidUsername','lensho83',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-VÈ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50684,214875,1695643293.102867,1,'loginFailInvalidUsername','lensho83',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-VÈ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50685,214876,1695643293.753129,1,'loginFailInvalidUsername','lensho83',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-VÈ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50686,214877,1695643294.373195,1,'loginFailInvalidUsername','lensho83',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-VÈ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50687,214878,1695643295.000010,1,'loginFailInvalidUsername','lensho83',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-VÈ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50688,214879,1695643295.622271,1,'loginFailInvalidUsername','lensho83',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-VÈ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50689,214880,1695643296.260620,1,'loginFailInvalidUsername','lensho83',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-VÈ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50690,214881,1695643296.888556,1,'loginFailInvalidUsername','lensho83',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-VÈ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50691,214882,1695643297.528492,1,'loginFailInvalidUsername','lensho83',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-VÈ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50692,214883,1695643298.767002,1,'loginFailInvalidUsername','lensho83',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-VÈ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50693,214884,1695643299.391720,1,'loginFailInvalidUsername','lensho83',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-VÈ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50694,214885,1695643300.025065,1,'loginFailInvalidUsername','lensho83',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-VÈ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50695,214886,1695643300.660540,1,'loginFailInvalidUsername','lensho83',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-VÈ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50696,214887,1695643301.276589,1,'loginFailInvalidUsername','lensho83',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-VÈ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50697,214888,1695643301.924240,1,'loginFailInvalidUsername','lensho83',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-VÈ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50698,214889,1695643302.545756,1,'loginFailInvalidUsername','lensho83',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-VÈ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50699,214890,1695643303.173538,1,'loginFailInvalidUsername','lensho83',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-VÈ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50700,214891,1695643303.793390,1,'loginFailInvalidUsername','lensho83',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-VÈ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(50701,214904,1695655037.856918,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'),(50702,214954,1695743691.134003,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36'),(50703,214969,1695805160.260175,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"®.','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(50704,214979,1695827011.166651,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36'),(50705,214980,1695845827.058381,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50706,214981,1695845827.953952,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50707,214982,1695845828.862186,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50708,214983,1695845829.764758,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50709,214984,1695845830.674030,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50710,214984,1695845830.678713,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50711,214985,1695845831.596729,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50712,214986,1695845833.136621,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50713,214987,1695845835.327142,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50714,214988,1695845836.242268,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50715,214989,1695845838.422365,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50716,214989,1695845838.425547,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50717,214990,1695845840.206013,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50718,214991,1695845841.101205,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50719,214991,1695845841.105958,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50720,214992,1695845842.051729,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50721,214992,1695845842.055407,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50722,214993,1695845842.955623,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50723,214993,1695845842.958883,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50724,214994,1695845845.151548,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg³–Ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(50725,215013,1696749172.270256,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg/¹¹','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50726,215014,1696752095.144834,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÀãœb','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50727,215024,1696768181.686536,1,'loginFailInvalidUsername','wadminw',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ3Mæ','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36'),(50728,215025,1696768808.527349,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÔ&(×','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50729,215026,1696769209.402743,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÇkª','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50730,215027,1696771218.933298,1,'loginFailInvalidUsername','wwwadmin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgš¸*','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50731,215027,1696771218.936915,1,'loginFailInvalidUsername','wwwadmin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgš¸*','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50732,215029,1696773278.123118,1,'loginFailInvalidUsername','wwwadmin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ%»J1','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50733,215029,1696773278.127636,1,'loginFailInvalidUsername','wwwadmin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ%»J1','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50734,215030,1696775722.713765,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÀãœb','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50735,215031,1696776194.243147,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ­ìÁ)','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50736,215032,1696778224.928813,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"Aê\0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36'),(50737,215090,1696857648.335299,1,'loginFailInvalidUsername','wadminw',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŸß-Ô','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36'),(50738,215091,1696860946.643659,1,'loginFailInvalidUsername','wwwadmin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŸßÞ¡','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36'),(50739,215091,1696860946.646844,1,'loginFailInvalidUsername','wwwadmin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŸßÞ¡','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36'),(50740,215092,1696865761.510527,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36'),(50741,215093,1696866830.450995,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ†z{Á','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36'),(50742,215142,1696923161.286606,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ3O¡N','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50743,215142,1696923161.290036,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ3O¡N','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50744,215203,1696940277.128001,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿt0e','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50745,215208,1696941753.275506,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚´K*','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(50746,215231,1696950737.543275,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36'),(50747,215232,1696950737.858497,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36'),(50748,215235,1696956084.583995,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿßÅË','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36'),(50749,215236,1696966148.071996,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿoæÊ“','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(50750,215287,1697013431.130123,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿUZõU','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36'),(50751,215288,1697015731.345800,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹Ó«','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50752,215289,1697016530.637383,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ­Ôçz','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50753,215290,1697016898.059748,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ3M5Ê','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36'),(50754,215291,1697018160.311452,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿY.[W','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50755,215292,1697019439.469697,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\rå°4','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50756,215293,1697022148.548185,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿhÅÑ•','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50757,215294,1697023051.557463,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿKwÝP','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50758,215295,1697024429.903484,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿE£¢','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50759,215309,1697037585.854339,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36'),(50760,215311,1697045081.165052,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹Ä.','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36'),(50761,215315,1697064465.658321,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹Üdý','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.67 Safari/537.36'),(50762,215323,1697077875.739717,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÎA6','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50763,215324,1697078716.038579,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ­ìÁ*','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50764,215325,1697078808.460723,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿx0p','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50765,215326,1697080047.947460,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿQX50','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36'),(50766,215327,1697080992.967332,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÚÔ±','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50767,215330,1697087237.845067,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-YöÖ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50768,215331,1697087703.436219,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÙLŸe','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50769,215332,1697088558.191519,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÐq¼f','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50770,215333,1697088682.355977,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿN€+Ñ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50771,215334,1697096897.570852,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"KÝ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50772,215335,1697100996.014320,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿAmF¸','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50773,215375,1697134523.990632,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36'),(50774,215380,1697143732.153455,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÝxg‡','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),(50775,215382,1697149787.875479,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ«ô\0[','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36'),(50776,215383,1697152241.894496,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥è¿	','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(50777,215384,1697155871.744796,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ“‡ÿ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36'),(50778,215391,1697164698.887098,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ²?M&','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36'),(50779,215397,1697171103.597454,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ­ì¨\n','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36'),(50780,215450,1697198052.798305,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÑa‘^','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50781,215450,1697198052.802727,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÑa‘^','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50782,215488,1697221421.018600,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿš\0£‚','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50783,215513,1697238241.740781,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ±4 ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50784,215536,1697242760.864648,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥Ñ÷','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(50785,215544,1697242989.021803,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿC©áÛ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50786,215545,1697242990.125404,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿC©áÛ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50787,215555,1697243020.630334,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ³ìhˆ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50788,215556,1697243021.786309,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ³ìhˆ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50789,215557,1697243024.723833,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿFwøS','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50790,215558,1697243025.710013,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿFwøS','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50791,215561,1697243041.330508,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÈ|Fc','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50792,215567,1697243051.777329,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÄ¹B','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50793,215568,1697243053.213616,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÄ¹B','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50794,215569,1697243056.407026,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿH2O','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50795,215570,1697243057.456319,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿH2ö','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50796,215579,1697243087.634637,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ|²Ö','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50797,215580,1697243088.988936,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ|²Ö','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50798,215586,1697243107.813278,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿHXè','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50799,215587,1697243108.775839,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿHXè','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50800,215588,1697243110.770944,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿµÇ=í','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50801,215590,1697243112.307489,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿµÇ=í','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50802,215591,1697243145.571528,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ²”öý','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50803,215592,1697243146.886952,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ²”öý','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50804,215599,1697243176.962254,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÄ¾>á','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50805,215600,1697243177.229456,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ]ˆÎ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50806,215601,1697243177.574279,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿr\Z¥û','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50807,215602,1697243178.293244,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÄ¾>á','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50808,215603,1697243178.536357,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ]ˆÎ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50809,215604,1697243178.786489,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿr\Z¥û','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50810,215609,1697243201.810104,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgZŸ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50811,215610,1697243203.304890,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgZŸ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50812,215611,1697243204.547701,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»Ñùë','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50813,215612,1697243205.589570,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»Ñùë','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50814,215613,1697243216.083164,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-¨N¬','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50815,215614,1697243217.170540,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿUE(','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50816,215615,1697243217.283962,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-¨N¬','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50817,215616,1697243218.292341,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿUE(','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50818,215617,1697243219.145807,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50819,215618,1697243220.079869,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿŠu¯ã','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50820,215619,1697243220.340991,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50821,215620,1697243221.302396,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿŠu¯ã','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50822,215621,1697243224.511396,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•Kq','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50823,215622,1697243225.820714,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•Kq','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50824,215623,1697243226.163704,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ´¿á','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50825,215624,1697243227.558919,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ´¿á','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50826,215625,1697243234.055696,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿQ»å','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50827,215627,1697243249.129909,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ)–ã','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50828,215628,1697243250.626035,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ)–ã','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50829,215629,1697243259.264422,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹‡ A','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50830,215630,1697243259.574619,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-±Ù','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50831,215631,1697243260.685281,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹‡ A','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50832,215632,1697243260.908294,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-±Ù','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50833,215634,1697243262.966556,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1”vÂ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50834,215636,1697243264.672514,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1”vÂ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50835,215638,1697243273.482851,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ`+½Œ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50836,215640,1697243275.048222,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ`+½Œ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50837,215641,1697243278.376124,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿM‰H²','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50838,215642,1697243279.619459,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿM‰H²','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50839,215643,1697243279.699695,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾–×','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50840,215644,1697243280.756543,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾–×','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50841,215645,1697243282.753979,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿµIu','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50842,215646,1697243284.026066,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿµIu','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50843,215649,1697243303.670033,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-¨N¬','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50844,215650,1697243304.844917,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-¨N¬','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50845,215651,1697243309.298606,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ`A±u','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50846,215652,1697243310.273859,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ`A±u','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50847,215653,1697243310.759994,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿfE¦)','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50848,215654,1697243312.208135,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿfE¦)','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50849,215655,1697243316.352866,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿªõ|d','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50850,215656,1697243317.520620,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿªõ|d','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50851,215657,1697243319.226731,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿp†|º','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50852,215658,1697243320.522142,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿº–aù','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50853,215659,1697243320.596719,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿp†|º','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50854,215660,1697243321.602519,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿº–aù','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50855,215661,1697243335.674226,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÞ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50856,215662,1697243337.521396,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÞ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50857,215665,1697243354.874910,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ.\nÒT','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50858,215666,1697243356.063393,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ.\nÒT','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50859,215667,1697243359.907262,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿUðþ\\','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50860,215668,1697243361.084237,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿUðþ\\','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50861,215669,1697243361.343638,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ»ž»','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50862,215671,1697243362.330358,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ»ž»','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50863,215673,1697243370.315682,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ÃÇŠ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50864,215676,1697243379.719107,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ³2îÓ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50865,215677,1697243379.990348,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ³IÈ&','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50866,215678,1697243380.834947,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ³2îÓ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50867,215679,1697243381.200070,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ³IÈ&','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50868,215683,1697243390.776073,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿˆžA¦','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50869,215685,1697243392.538829,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŠy¡T','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50870,215686,1697243392.540640,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿˆžA¦','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50871,215687,1697243394.085962,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŠy¡T','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50872,215688,1697243400.833581,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿº}]','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50873,215689,1697243402.069765,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿº}]','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50874,215690,1697243404.747517,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿŠKV*','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50875,215691,1697243406.033582,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿŠKV*','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50876,215695,1697243421.034564,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿveõâ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50877,215696,1697243422.336159,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿveõâ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50878,215698,1697243425.024159,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»½ˆÑ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50879,215699,1697243425.983854,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»½ˆÑ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50880,215700,1697243428.102951,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿpÉi	','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50881,215701,1697243429.356836,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿpÉi	','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50882,215702,1697243435.740903,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿS3­u','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50883,215703,1697243436.880651,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿS3­u','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50884,215704,1697243439.865091,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•Û','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50885,215705,1697243441.179877,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•Û','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50886,215709,1697243449.218834,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ&3YM','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50887,215710,1697243450.504201,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ&3YM','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50888,215711,1697243454.689100,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ±ã-v','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50889,215713,1697243456.130838,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ±ã-v','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50890,215716,1697243464.453474,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1”,z','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50891,215719,1697243465.728114,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1”,z','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50892,215720,1697243467.778877,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-u#\n','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50893,215721,1697243469.088948,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-u#\n','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50894,215722,1697243477.891180,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÈ[\"','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50895,215723,1697243479.616973,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÈ[\"','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50896,215725,1697243482.961734,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¯°_#','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50897,215727,1697243484.653839,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¯°_#','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50898,215728,1697243484.673457,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ.ëdX','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50899,215729,1697243485.976628,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ.ëdX','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50900,215733,1697243508.620443,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÈ;¸›','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50901,215734,1697243509.274573,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ&-%’','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50902,215735,1697243509.780592,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÈ;¸›','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50903,215736,1697243510.305342,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ&-%’','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50904,215740,1697243530.929801,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1‘¦k','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50905,215741,1697243531.563642,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿjÁGd','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50906,215742,1697243532.230778,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1‘¦k','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50907,215743,1697243532.992626,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿjÁGd','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50908,215746,1697243542.078216,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÉ˜é','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50909,215747,1697243543.694756,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÉ˜é','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50910,215754,1697243568.196174,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿiC‡Å','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50911,215755,1697243569.693432,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿiC‡Å','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50912,215760,1697243578.006953,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿßÄ­','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50913,215761,1697243579.372685,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿM‰@/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50914,215762,1697243579.416355,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿßÄ¬ž','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50915,215763,1697243580.578256,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿM‰@/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50916,215765,1697243589.341273,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¬:ïY','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50917,215766,1697243590.360205,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¬:ïY','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50918,215768,1697243597.482264,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¬X(ò','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50919,215769,1697243598.457638,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¬X(ò','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50920,215770,1697243604.389519,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»j(_','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50921,215771,1697243605.632321,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»j(_','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50922,215772,1697243615.104873,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿZ…GÖ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50923,215773,1697243616.349861,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿZ…GÖ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50924,215777,1697243631.903017,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ)®L†','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50925,215778,1697243633.386460,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ)®L†','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50926,215780,1697243635.532891,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿgQíw','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50927,215781,1697243636.866128,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿgQíw','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50928,215784,1697243649.224577,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ´üXp','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50929,215785,1697243650.528656,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ´üXp','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50930,215789,1697243654.892808,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÄÙ2','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50931,215791,1697243656.857504,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÄÙ2','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50932,215792,1697243675.741845,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ³žT','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50933,215793,1697243677.034635,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ³žT','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50934,215796,1697243691.976512,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ&ú‚×','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50935,215797,1697243693.083698,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ&ú‚×','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50936,215802,1697243722.349049,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ˜:ÅP','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50937,215803,1697243723.704897,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ˜:ÅP','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50938,215806,1697243733.074054,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÒÕÆ\"','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50939,215807,1697243734.376760,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÒÕÆ\"','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50940,215814,1697243744.009131,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ$UÞi','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50941,215815,1697243745.321747,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ$UÞi','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50942,215816,1697243748.589003,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-é§œ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50943,215817,1697243749.798539,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-é§œ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50944,215818,1697243750.174199,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ·R£›','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50945,215819,1697243751.567821,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ·R£›','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50946,215820,1697243756.843775,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾gÜ‡','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50947,215821,1697243758.106776,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾gÜ‡','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50948,215822,1697243761.490308,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ²','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50949,215823,1697243762.663687,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ²','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50950,215824,1697243769.159960,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»úsâ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50951,215825,1697243770.108698,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»úsâ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50952,215829,1697243781.105705,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ›]ºœ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50953,215830,1697243781.834581,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾Y,à','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50954,215832,1697243782.938324,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾Y,à','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50955,215833,1697243782.997696,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ›]ºœ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50956,215834,1697243787.152116,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾§ÜI','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50957,215835,1697243788.178762,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾§ÜI','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50958,215836,1697243791.647175,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿMæòÀ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50959,215837,1697243792.902039,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿMæòÀ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50960,215840,1697243802.603295,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¯°_','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50961,215841,1697243804.354883,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿxY','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50962,215842,1697243804.442710,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¯°_','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50963,215843,1697243805.802742,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿxY','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50964,215844,1697243811.155129,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿyzwa','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50965,215845,1697243812.486766,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿyzwa','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50966,215846,1697243817.607066,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ&m','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50967,215847,1697243818.691486,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ&m','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50968,215850,1697243841.046368,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ³}–','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50969,215852,1697243842.316612,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ³}–','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50970,215854,1697243850.852028,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1’+','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50971,215855,1697243852.148566,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1’+','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50972,215856,1697243863.010369,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿz­\r­','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50973,215857,1697243864.355828,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿz­\r­','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50974,215862,1697243882.532929,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÒÃc™','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50975,215863,1697243883.864215,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÒÃc™','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50976,215865,1697243887.095329,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¯°_=','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50977,215866,1697243888.443943,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¯°_=','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50978,215870,1697243905.186551,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿµæ¥','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50979,215871,1697243906.419878,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿµæ¥','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50980,215878,1697243921.637617,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-¦Yˆ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50981,215879,1697243922.857229,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-¦Yˆ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50982,215881,1697243928.820457,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÈXÅ´','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50983,215882,1697243929.840339,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÈXÅ´','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50984,215890,1697243961.940235,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ:EÊi','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50985,215891,1697243963.180027,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ:EÊi','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50986,215892,1697243988.958805,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÀRBü','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50987,215893,1697243990.261216,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÀRBü','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50988,215894,1697243992.206954,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿª–åÔ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50989,215895,1697243993.317157,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿª–åÔ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50990,215896,1697243993.943807,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ±Í\Z','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50991,215897,1697243995.104806,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ±Í\Z','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50992,215898,1697244000.060276,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ±X','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50993,215899,1697244001.353920,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ±X','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50994,215900,1697244006.306598,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ˜ÊX','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50995,215901,1697244007.432070,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ˜ÊX','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50996,215902,1697244030.684943,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶ý–','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50997,215903,1697244032.050507,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶ý–','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50998,215907,1697244042.411347,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1”q«','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(50999,215908,1697244042.911137,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ·«Z¬','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51000,215910,1697244044.121966,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1”q«','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51001,215911,1697244044.498283,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ·«Z¬','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51002,215914,1697244054.390889,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ±‚ù^','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51003,215915,1697244055.580132,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ±‚ù^','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51004,215916,1697244071.282081,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿm?A°','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51005,215917,1697244071.319402,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŠÌ+','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51006,215919,1697244072.572352,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŠÌ+','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51007,215921,1697244073.264852,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿm?A°','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51008,215923,1697244083.996367,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ½¿','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51009,215925,1697244085.640566,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ½¿','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51010,215927,1697244093.680071,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿŠ^x¿','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51011,215929,1697244095.176712,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿŠ^x¿','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51012,215934,1697244109.301232,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÛúŠ,','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51013,215936,1697244110.527725,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÛúŠ,','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51014,215937,1697244112.915185,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¿Y…\0','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51015,215940,1697244114.816692,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¿Y…\0','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51016,215941,1697244115.230882,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-àg£','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51017,215942,1697244116.416461,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-àg£','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51018,215943,1697244125.470694,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿpÍYº','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51019,215944,1697244126.733249,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿpÍYº','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51020,215945,1697244130.190778,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ½ÛÍ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51021,215946,1697244131.441965,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ½ÛÍ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51022,215947,1697244136.856794,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿµŽR#','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51023,215948,1697244137.932479,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿµŽR#','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51024,215949,1697244144.884070,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ±G-9','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51025,215950,1697244146.111298,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ±G-9','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51026,215952,1697244155.923782,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹L±j','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51027,215954,1697244157.623065,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹L±j','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51028,215956,1697244164.298391,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1%”õ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51029,215957,1697244164.723644,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ[~ÏÂ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51030,215958,1697244165.714741,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1%”õ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51031,215959,1697244165.879349,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ[~ÏÂ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51032,215961,1697244168.657954,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿºâÇ0','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51033,215961,1697244168.664174,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿºâÇ0','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51034,215962,1697244169.863819,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿºâÇ0','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51035,215962,1697244169.867441,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿºâÇ0','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51036,215963,1697244173.103281,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿš 	D','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51037,215964,1697244174.490677,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿš 	D','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51038,215965,1697244174.874587,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿX	`ò','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51039,215966,1697244176.051580,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿX	`ò','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51040,215969,1697244188.169545,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿž>Cµ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51041,215970,1697244189.477919,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿž>Cµ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51042,215971,1697244197.638459,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶£q','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51043,215973,1697244198.836782,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶£q','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51044,215975,1697244201.659567,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ°N;ô','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51045,215977,1697244202.795092,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ°N;ô','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51046,215979,1697244212.144533,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿif†Â','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51047,215980,1697244212.818050,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÔ	Û','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51048,215981,1697244213.977893,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÔ	Û','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51049,215982,1697244214.315449,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿif†Â','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51050,215985,1697244219.940382,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿµÑZ´','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51051,215987,1697244221.236834,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿµÑZ´','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51052,215989,1697244227.396044,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1%*¨','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51053,215990,1697244228.794921,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1%*¨','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51054,215991,1697244235.310915,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿµ\Z3I','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51055,215992,1697244236.547990,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿµ\Z3I','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51056,215993,1697244238.704971,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ±%µ}','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51057,215994,1697244239.942830,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ±%µ}','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51058,215995,1697244242.750354,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•Âx','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51059,215996,1697244244.044575,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•Âx','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51060,215999,1697244252.412417,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÉ$','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51061,216000,1697244253.651590,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÉ$','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51062,216001,1697244262.715443,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ³Þèu','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51063,216002,1697244263.930795,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ³Þèu','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51064,216003,1697244265.545001,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg“¡î','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51065,216004,1697244266.912530,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg“¡î','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51066,216007,1697244282.969706,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ½>/S','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51067,216008,1697244284.163764,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ½>/S','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51068,216009,1697244286.871052,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÐû','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51069,216010,1697244287.857511,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÐû','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51070,216013,1697244292.909340,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ_ºÏ¾','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51071,216020,1697244318.982500,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ§<û,','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51072,216021,1697244320.325228,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ§<û,','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51073,216022,1697244322.678794,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÅf›','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51074,216023,1697244323.926071,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÅf›','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51075,216026,1697244327.952374,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ñ.þ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51076,216027,1697244328.476759,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ±€S','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51077,216028,1697244329.369114,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ñ.þ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51078,216029,1697244329.498668,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿˆà‰š','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51079,216030,1697244329.678265,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ±€S','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51080,216031,1697244330.570432,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿˆà‰š','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51081,216032,1697244332.269616,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿxH\Zå','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51082,216033,1697244332.833874,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ_ºÏ¾','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51083,216034,1697244333.714305,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1%ªê','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51084,216035,1697244333.763172,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿxH\Zå','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51085,216036,1697244334.009186,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÉiž','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51086,216037,1697244334.241186,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿn6ôh','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51087,216037,1697244334.244935,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿn6ôh','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51088,216038,1697244335.030667,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1%ªê','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51089,216039,1697244335.059938,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÉiž','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51090,216040,1697244336.240986,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿn6ôh','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51091,216040,1697244336.244578,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿn6ôh','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51092,216041,1697244340.341074,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿK£™Û','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51093,216042,1697244341.311066,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿK£™Û','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51094,216045,1697244359.733032,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿµ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51095,216046,1697244360.176898,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÎ\0\\','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51096,216047,1697244361.052123,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿµ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51097,216048,1697244361.382560,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÎ\0\\','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51098,216049,1697244361.629167,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿTè‡','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51099,216050,1697244362.239982,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ½]|','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51100,216052,1697244362.966417,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿTè‡','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51101,216053,1697244363.296968,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ½]|','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51102,216055,1697244367.140358,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÉYÔ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51103,216056,1697244368.320135,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÉYÔ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51104,216057,1697244374.788575,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿS5/.','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51105,216058,1697244375.972294,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿS5/.','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51106,216059,1697244383.593499,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¡1å5','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51107,216060,1697244384.900276,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¡1å5','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51108,216063,1697244387.766770,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿo}Ñ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51109,216064,1697244389.197456,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿo}Ñ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51110,216065,1697244390.845186,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÒhw','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51111,216066,1697244391.212259,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ²Ýšx','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51112,216067,1697244392.142830,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÒhw','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51113,216068,1697244392.383808,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ²Ýšx','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51114,216071,1697244400.461186,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÒ¹°-','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51115,216072,1697244401.774273,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÒ¹°-','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51116,216073,1697244402.159990,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿRñP','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51117,216074,1697244403.324546,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿRñP','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51118,216075,1697244408.408135,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ±ÁeÃ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51119,216076,1697244409.637979,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ±ÁeÃ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51120,216081,1697244422.260713,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•l›','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51121,216083,1697244423.546701,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•l›','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51122,216085,1697244432.474755,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿO³$H','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51123,216086,1697244433.687219,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿO³$H','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51124,216089,1697244450.255183,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÈPKÑ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51125,216090,1697244450.441842,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¨Â8…','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51126,216091,1697244451.474825,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÈPKÑ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51127,216093,1697244451.654719,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¨Â8…','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51128,216094,1697244453.114518,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾$æ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51129,216095,1697244454.350485,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾$æ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51130,216097,1697244459.209459,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»–þ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51131,216098,1697244460.242012,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»–þ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51132,216099,1697244462.360318,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼}ÅB','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51133,216100,1697244463.568015,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼}ÅB','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51134,216101,1697244473.175210,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ»lÑu','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51135,216102,1697244474.358624,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ»lÑu','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51136,216111,1697244490.301803,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-îJ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51137,216112,1697244491.598046,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-îJ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51138,216114,1697244493.301654,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿªOU³','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51139,216115,1697244493.462424,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿE§\"','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51140,216116,1697244494.553823,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿªOU³','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51141,216117,1697244494.659909,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿE§\"','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51142,216119,1697244496.707550,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÅÌDI','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51143,216120,1697244497.728341,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿg)%x','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51144,216121,1697244497.886054,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÅÌDI','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51145,216122,1697244499.129790,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿg)%x','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51146,216125,1697244509.947079,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ}¢Ö','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51147,216126,1697244510.746056,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ°“¼','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51148,216127,1697244511.293539,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ}¢Ö','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51149,216128,1697244511.861850,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ°“¼','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51150,216137,1697244538.551168,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿHÿ\ZÃ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51151,216138,1697244540.199665,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿHÿ\ZÃ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51152,216141,1697244546.643295,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼üïZ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51153,216142,1697244547.791801,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¼üïZ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51154,216146,1697244573.624374,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿcûÒ˜','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51155,216147,1697244574.654543,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿcûÒ˜','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51156,216148,1697244575.477269,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿxH','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51157,216149,1697244576.940009,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿxH','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51158,216157,1697244593.986922,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾6Ì','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51159,216158,1697244595.213303,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾6Ì','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51160,216160,1697244610.558601,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1”¼Æ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51161,216161,1697244610.627099,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿn6œ”','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51162,216163,1697244612.289525,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1”¼Æ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51163,216164,1697244612.860584,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿn6œ”','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51164,216169,1697244627.347748,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ»½W','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51165,216170,1697244628.338762,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ»½W','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51166,216173,1697244641.107711,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ»¾Ÿ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51167,216174,1697244642.164184,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ»¾Ÿ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51168,216176,1697244644.527522,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¬d#–','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51169,216177,1697244645.583309,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¬d#–','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51170,216178,1697244645.678558,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ»Ó\r¥','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51171,216180,1697244646.673671,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ»Ó\r¥','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51172,216185,1697244649.799338,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿZJD','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51173,216186,1697244650.962768,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿZJD','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51174,216189,1697244665.571464,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ»ž Í','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51175,216191,1697244666.669036,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ»ž Í','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51176,216195,1697244670.072900,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿºçÎ:','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51177,216196,1697244670.476571,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿØÓD.','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51178,216197,1697244671.335347,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿºçÎ:','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51179,216198,1697244671.473296,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿØÓD.','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51180,216199,1697244672.997012,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿˆž3[','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51181,216200,1697244674.373082,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿˆž3[','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51182,216201,1697244680.370675,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÈi¬Â','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51183,216202,1697244681.895467,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÈi¬Â','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51184,216205,1697244693.167591,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÊºn£','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51185,216206,1697244694.450735,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÊºn£','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51186,216207,1697244696.017206,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ©ïør','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51187,216208,1697244697.441539,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ©ïør','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51188,216211,1697244704.128815,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ²ÞS','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51189,216212,1697244705.291728,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ²ÞS','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51190,216213,1697244708.749465,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ´JC‘','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51191,216214,1697244710.057116,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ´JC‘','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51192,216215,1697244712.002342,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ˜:W','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51193,216216,1697244713.492059,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ˜:W','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51194,216219,1697244717.098989,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿpÑ`Ñ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51195,216220,1697244718.328437,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿpÑ`Ñ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51196,216223,1697244728.072642,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ½ªe','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51197,216226,1697244729.127574,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ½ªe','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51198,216229,1697244732.171457,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ—Œ\r','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51199,216231,1697244733.357963,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ—Œ\r','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51200,216233,1697244742.906847,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿt~Ü+','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51201,216234,1697244744.163973,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿt~Ü+','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51202,216235,1697244749.575475,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÉ¼ËÌ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51203,216236,1697244750.741850,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÉ¼ËÌ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51204,216237,1697244753.793162,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿØbÑŸ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51205,216238,1697244755.029548,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿØbÑŸ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51206,216239,1697244760.592172,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ½ÊÛL','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51207,216240,1697244761.590600,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ½ÊÛL','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51208,216243,1697244764.101316,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿº£','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51209,216244,1697244765.463447,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿº£','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51210,216245,1697244766.704878,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿŠºÃæ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51211,216246,1697244768.009567,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿŠºÃæ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51212,216247,1697244770.630505,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿpÇLÄ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51213,216248,1697244772.016144,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿpÇLÄ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51214,216249,1697244774.486836,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ÃÅþ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51215,216250,1697244775.746061,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ÃÅþ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51216,216253,1697244782.639946,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿe5ê¯','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51217,216254,1697244784.018653,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿe5ê¯','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51218,216255,1697244784.878937,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿgm c','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51219,216256,1697244793.234222,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿgm c','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51220,216259,1697244803.050744,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿxMÕ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51221,216260,1697244804.241965,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿfØÕ!','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51222,216261,1697244804.390832,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿxMÕ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51223,216262,1697244804.587064,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿpÓ!Ó','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51224,216263,1697244805.826099,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿpÓ!Ó','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51225,216264,1697244823.847897,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1ÕE','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51226,216265,1697244838.918638,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ‡µ\\','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51227,216266,1697244840.091999,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ‡µ\\','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51228,216267,1697244841.150101,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿH-','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51229,216268,1697244842.244289,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿH-','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51230,216269,1697244860.471666,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶M9','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51231,216270,1697244861.664948,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ.{ùÀ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51232,216271,1697244861.924681,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶M9','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51233,216272,1697244862.857069,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ.{ùÀ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51234,216273,1697244865.935401,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ:E Ò','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51235,216274,1697244867.210656,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ:E Ò','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51236,216275,1697244876.936835,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ<ãÍ%','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51237,216276,1697244878.431041,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ<ãÍ%','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51238,216277,1697244888.509110,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ½\'+','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51239,216278,1697244889.839838,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ½\'+','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51240,216279,1697244891.981119,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ´¾f','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51241,216280,1697244893.232223,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ´¾f','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51242,216283,1697244908.406234,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¿óØ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51243,216286,1697244909.575408,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¿óØ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51244,216287,1697244913.435693,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŠÇÈ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51245,216288,1697244915.182808,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŠÇÈ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51246,216294,1697244937.933994,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿgòÅ¨','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51247,216296,1697244940.339089,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿgòÅ¨','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51248,216297,1697244942.088987,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿR„à','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51249,216298,1697244943.290338,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿR„à','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51250,216300,1697244945.522419,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿcêFÈ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51251,216302,1697244946.533292,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿcêFÈ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51252,216307,1697244953.070655,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿsTrY','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51253,216308,1697244954.448117,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿsTrY','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51254,216310,1697244957.114676,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ—4f','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51255,216312,1697244958.298747,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ—4f','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51256,216315,1697244963.943882,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ°š2','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51257,216316,1697244965.301567,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ°š2','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51258,216317,1697244979.818425,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿBµ³›','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51259,216319,1697244981.175450,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿBµ³›','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51260,216321,1697244985.398309,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÊ¤¶3','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51261,216325,1697244999.547335,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•gp','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51262,216326,1697245000.838481,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•gp','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51263,216329,1697245019.423662,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿµ½šŽ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51264,216330,1697245020.467114,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿµ½šŽ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51265,216331,1697245021.042047,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿˆž#u','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51266,216332,1697245022.451743,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿˆž#u','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51267,216333,1697245023.509433,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ§=Ê¤','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51268,216334,1697245024.724170,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ§=Ê¤','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51269,216338,1697245044.405196,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾z˜Ê','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51270,216340,1697245046.063308,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿpÉ’','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51271,216341,1697245047.312346,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿpÉ’','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51272,216343,1697245048.013487,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿf­¯','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51273,216344,1697245048.196320,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÈD3','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51274,216345,1697245049.374957,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÈD3','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51275,216346,1697245049.432061,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿf­¯','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51276,216347,1697245068.417694,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿn&õ4','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51277,216350,1697245069.876296,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿn&õ4','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51278,216353,1697245072.207128,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿgDˆ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51279,216354,1697245073.679130,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿgDˆ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51280,216355,1697245077.761452,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿpÆ}5','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51281,216356,1697245079.099444,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿpÆ}5','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51282,216357,1697245079.468701,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ&/¨','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51283,216358,1697245080.789277,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ&/¨','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51284,216359,1697245084.051849,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ±,È','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51285,216360,1697245086.377069,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ±,È','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51286,216361,1697245094.440282,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ±Qøg','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51287,216362,1697245095.633797,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ±Qøg','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51288,216363,1697245112.446891,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿªé\'U','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51289,216364,1697245113.785387,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿªé\'U','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51290,216367,1697245123.275652,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿºn','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51291,216368,1697245124.493403,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿºn','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51292,216369,1697245124.911898,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ- HÝ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51293,216370,1697245126.127972,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ- HÝ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51294,216371,1697245126.233709,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿƒd>ó','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51295,216372,1697245127.450821,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿƒd>ó','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51296,216375,1697245134.507215,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿµu!','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51297,216377,1697245138.200835,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿN=9•','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51298,216378,1697245139.322341,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿN=9•','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51299,216379,1697245140.302601,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg{(','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51300,216380,1697245141.579321,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg{(','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51301,216381,1697245144.372303,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¯°C','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51302,216382,1697245145.756662,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¯°C','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51303,216383,1697245146.553703,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿd','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51304,216384,1697245147.147430,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•¦ÿ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51305,216385,1697245147.605205,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿd','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51306,216387,1697245158.895401,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1ÕE','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51307,216388,1697245160.139970,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1ÕE','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51308,216389,1697245178.188815,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿU6Á','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51309,216390,1697245179.248655,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿØbÑˆ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51310,216391,1697245179.372777,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿU6Á','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51311,216393,1697245180.468716,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿØbÑˆ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51312,216398,1697245205.182034,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÚÐ*‚','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51313,216400,1697245206.525876,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÚÐ*‚','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51314,216402,1697245207.402993,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿº\ryE','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51315,216403,1697245208.648496,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿº\ryE','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51316,216407,1697245216.160787,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶][L','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51317,216408,1697245217.590108,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶][L','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51318,216409,1697245222.851765,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ±%µ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51319,216410,1697245223.982461,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ±%µ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51320,216411,1697245227.549173,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1$«K','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51321,216412,1697245228.907830,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1$«K','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51322,216415,1697245246.326213,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ}¢ÆÆ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51323,216416,1697245247.620419,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ}¢ÆÆ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51324,216417,1697245256.831238,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ%½…Ý','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51325,216418,1697245258.038538,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ%½…Ý','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51326,216420,1697245274.937479,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿµ.¤','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51327,216422,1697245276.566443,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿµ.¤','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51328,216423,1697245279.304672,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ»ÿ”','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51329,216424,1697245279.954136,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ³B€8','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51330,216425,1697245280.510192,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ»ÿ”','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51331,216426,1697245281.071200,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ³B€8','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51332,216427,1697245283.170195,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ&¬š','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51333,216428,1697245284.138617,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ&¬š','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51334,216429,1697245286.637781,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾¬R','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51335,216430,1697245287.867784,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾¬R','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51336,216431,1697245295.538398,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿBµ°Â','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51337,216432,1697245296.820997,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿBµ°Â','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51338,216433,1697245298.326453,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿn]ÑZ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51339,216434,1697245299.792616,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿn]ÑZ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51340,216435,1697245309.559002,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿšHª¹','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51341,216436,1697245309.571943,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ±ƒIP','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51342,216438,1697245310.745326,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ±ƒIP','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51343,216439,1697245310.894437,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿšHª¹','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51344,216443,1697245323.282200,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg—/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51345,216444,1697245323.613502,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ%ƒm-','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51346,216445,1697245324.666371,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg—/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51347,216446,1697245324.888825,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ%ƒm-','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51348,216451,1697245331.720856,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿWFI ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51349,216452,1697245332.937241,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿWFI ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51350,216453,1697245346.041458,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿvD¸','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51351,216454,1697245347.208969,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿvD¸','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51352,216457,1697245357.000359,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÅÛB¿','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51353,216458,1697245358.489372,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÅÛB¿','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51354,216463,1697245396.542009,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿN9f\r','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51355,216464,1697245397.810582,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿN9f\r','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51356,216467,1697245416.153059,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-óØ/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51357,216468,1697245417.472024,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-óØ/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51358,216473,1697245428.546196,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ;™r\n','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51359,216474,1697245429.807214,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ;™r\n','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51360,216475,1697245431.822627,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿi®&ê','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51361,216476,1697245433.231192,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿi®&ê','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51362,216477,1697245434.235509,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿy{÷s','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51363,216478,1697245435.848116,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿy{÷s','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51364,216482,1697245448.314509,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿN“N.','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51365,216483,1697245449.476577,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿN“N.','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51366,216485,1697245455.401343,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿuëÙ!','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51367,216486,1697245456.812671,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿuëÙ!','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51368,216487,1697245460.343143,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ?]±','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51369,216488,1697245461.395167,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ?]±','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51370,216491,1697245464.648989,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿTÿ¸ƒ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51371,216492,1697245465.686739,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»\0™','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51372,216493,1697245466.872457,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿTÿ¸ƒ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51373,216494,1697245466.886403,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»\0™','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51374,216495,1697245474.383339,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•iÈ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51375,216496,1697245475.679421,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•iÈ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51376,216497,1697245481.191114,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿVQ\0','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51377,216498,1697245482.345848,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿVQ\0','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51378,216499,1697245491.884226,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ]W/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51379,216500,1697245493.038745,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ]W/','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51380,216503,1697245498.684935,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿWÜ©','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51381,216504,1697245499.888876,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿWÜ©','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51382,216505,1697245512.880838,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ:E}¤','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51383,216506,1697245514.220086,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿx½¼','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51384,216509,1697245521.959683,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿVx÷,','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51385,216510,1697245523.086541,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿVx÷,','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51386,216511,1697245528.056709,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÕ^0C','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51387,216512,1697245529.198919,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÕ^0C','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51388,216513,1697245530.854709,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿEOea','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51389,216514,1697245532.071536,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ_L>˜','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51390,216515,1697245533.265090,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ_L>˜','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51391,216516,1697245541.834389,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ³ÚmA','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51392,216517,1697245543.012280,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ³ÚmA','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51393,216520,1697245552.945720,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¯°\r','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51394,216522,1697245554.271566,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¯°\r','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51395,216530,1697245571.002847,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿLŠ |','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51396,216531,1697245571.138091,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿºNÞ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51397,216532,1697245571.223198,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿž>#,','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51398,216533,1697245572.502541,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿž>#,','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51399,216534,1697245572.721016,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿLŠ |','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51400,216535,1697245572.767112,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿºNÞ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51401,216536,1697245573.727776,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾Ž©:','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51402,216537,1697245575.603994,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾Ž©:','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51403,216540,1697245587.790861,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\†=W','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51404,216541,1697245588.945406,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\†=W','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51405,216542,1697245595.177710,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿkÊm','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51406,216544,1697245596.607690,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶ý‚í','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51407,216545,1697245597.965136,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶ý‚í','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51408,216546,1697245599.396638,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ|°*Ù','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51409,216547,1697245600.325918,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1”™y','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51410,216548,1697245600.734846,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ|°*Ù','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51411,216549,1697245601.616312,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1”™y','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51412,216550,1697245602.566659,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÀƒ0','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51413,216551,1697245603.876770,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÀƒ0','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51414,216554,1697245624.373590,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿw^A','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51415,216555,1697245625.716076,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿw^A','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51416,216556,1697245634.554549,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•B½','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51417,216557,1697245635.865790,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•B½','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51418,216559,1697245636.728011,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ%î¬Š','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51419,216561,1697245638.630582,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ%ìH','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51420,216562,1697245639.033803,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ:ºÅÙ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51421,216563,1697245640.444189,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ:ºÅÙ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51422,216564,1697245644.041128,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1äìå','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51423,216565,1697245644.781462,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿs‡¿','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51424,216566,1697245645.423221,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1äìå','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51425,216567,1697245646.191959,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿs‡¿','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51426,216568,1697245649.416675,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿˆžÈ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51427,216569,1697245649.580041,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg\\g‚','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51428,216570,1697245650.708960,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿˆžÈ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51429,216571,1697245651.119965,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg\\g‚','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51430,216573,1697245658.670720,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿºNfû','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51431,216575,1697245660.680650,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿºNfû','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51432,216576,1697245661.007651,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿz4°=','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51433,216577,1697245662.244559,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿz4°=','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51434,216578,1697245664.927105,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿl«[*','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51435,216579,1697245665.910812,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿl«[*','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51436,216582,1697245682.263483,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿˆž\n×','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51437,216583,1697245683.535611,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿˆž\n×','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51438,216584,1697245690.503718,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ³›m','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51439,216585,1697245691.720518,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ³›m','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51440,216586,1697245693.116640,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ,¸µ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51441,216587,1697245693.459088,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿWÊ¨','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51442,216588,1697245694.482536,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ,¸µ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51443,216589,1697245694.648635,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿWÊ¨','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51444,216590,1697245700.168942,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ}ëì”','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51445,216591,1697245701.537882,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ}ëì”','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51446,216595,1697245711.775937,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿpÏo!','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51447,216597,1697245713.879444,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿpÏo!','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51448,216606,1697245734.239467,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ=\0}G','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51449,216607,1697245735.573792,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ=\0}G','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51450,216608,1697245736.022734,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ’ÿKê','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51451,216609,1697245737.310721,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ’ÿKê','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51452,216610,1697245742.255538,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ±ëpÕ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51453,216615,1697245759.107611,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾ÒÀL','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51454,216616,1697245759.415614,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿº„}','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51455,216617,1697245760.266916,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾ÒÀL','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51456,216618,1697245760.640047,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿº„}','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51457,216620,1697245765.776103,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÊZˆÜ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51458,216621,1697245767.096861,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÊZˆÜ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51459,216622,1697245774.386156,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ@wÒ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51460,216623,1697245775.674828,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ@wÒ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51461,216624,1697245799.140912,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿpN™s','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51462,216627,1697245800.558482,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿpN™s','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51463,216629,1697245803.064334,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿº\rpß','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51464,216631,1697245803.316208,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ%º/>','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51465,216632,1697245804.292009,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿº\rpß','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51466,216633,1697245804.776841,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ%º/>','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51467,216635,1697245807.917377,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ´þà¬','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51468,216636,1697245809.250278,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ´þã³','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51469,216639,1697245814.999406,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŠyƒÈ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51470,216640,1697245816.103742,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŠyƒÈ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51471,216641,1697245819.967868,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾ËY','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51472,216642,1697245821.209611,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾ËY','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51473,216643,1697245821.210998,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿˆž\Zx','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51474,216644,1697245822.503934,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿˆž\Zx','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51475,216647,1697245828.775144,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-è&T','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51476,216648,1697245830.015295,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-è&T','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51477,216651,1697245838.806550,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÞü`','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51478,216652,1697245839.742416,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿªP<¡','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51479,216653,1697245839.866022,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÞü`','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51480,216654,1697245840.728068,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1”„','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51481,216655,1697245840.981016,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿªP<¡','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51482,216656,1697245842.034521,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1”„','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51483,216657,1697245849.634964,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿnŠs@','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51484,216658,1697245850.956203,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿnŠs@','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51485,216659,1697245857.163532,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿP9Á','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51486,216660,1697245858.349565,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿP9Á','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51487,216661,1697245865.223903,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1‘\nœ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51488,216662,1697245866.517460,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1‘\nœ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51489,216663,1697245870.488627,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿpÎgX','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51490,216666,1697245871.758811,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿpÎgX','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51491,216669,1697245875.334438,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ødn','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51492,216670,1697245876.637176,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿˆž:þ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51493,216671,1697245876.761448,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ)Ødn','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51494,216672,1697245877.927099,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿˆž:þ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51495,216673,1697245888.192786,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿˆž<ƒ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51496,216675,1697245889.488864,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿˆž<ƒ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51497,216679,1697245895.019739,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhçv?','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51498,216680,1697245895.975011,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhçv?','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51499,216681,1697245901.345570,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÙ¥E.','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51500,216682,1697245902.668821,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÙ¥E.','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51501,216683,1697245915.277035,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶0FÃ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51502,216684,1697245915.642531,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿxW&','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51503,216685,1697245916.636389,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶0FÃ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51504,216686,1697245917.510664,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿxW&','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51505,216687,1697245920.503737,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿpÆ²²','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51506,216688,1697245921.811461,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿpÆ²²','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51507,216691,1697245927.954988,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1!\n','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51508,216692,1697245935.963389,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿpË`','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51509,216693,1697245937.189569,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿpË`','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51510,216694,1697245944.555792,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÈ|¥\Z','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51511,216695,1697245945.807466,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÈ|¥\Z','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51512,216696,1697245948.731446,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÉ–Û','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51513,216697,1697245955.897320,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿºtG¼','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51514,216698,1697245956.952779,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿºtG¼','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51515,216700,1697245958.401943,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿRf.','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51516,216701,1697245959.683690,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿRf.','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51517,216703,1697245968.710433,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgÙµ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51518,216704,1697245969.557032,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ»ž.)','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51519,216705,1697245970.159054,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿgÙµ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51520,216706,1697245970.596805,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ»ž.)','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51521,216707,1697245977.354375,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿŠÇe','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51522,216710,1697245979.157839,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿŠÇe','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51523,216711,1697245981.447753,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿJuWL','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51524,216712,1697245982.562578,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿJuWL','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51525,216713,1697245992.735715,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»É¨7','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51526,216715,1697245993.727040,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»É¨7','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51527,216717,1697245996.739905,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÀÖ:','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51528,216718,1697245998.055940,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÀÖ:','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51529,216719,1697246001.472633,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•¦ÿ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51530,216720,1697246002.769208,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1•¦ÿ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51531,216721,1697246020.806423,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿº19','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51532,216722,1697246022.153563,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿº19','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51533,216725,1697246059.428307,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ±Œk','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51534,216726,1697246060.715376,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ±Œk','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51535,216727,1697246071.643938,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ³7ú','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51536,216728,1697246072.839326,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ³7ú','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51537,216729,1697246072.919475,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿµé O','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51538,216730,1697246073.722957,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»j+Þ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51539,216731,1697246074.075878,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿµé O','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51540,216732,1697246074.999878,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»j+Þ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51541,216735,1697246105.730922,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ô„I','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51542,216736,1697246107.028538,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ô„I','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51543,216739,1697246114.690121,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ³+Ça','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51544,216741,1697246116.239545,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ³+Ça','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51545,216742,1697246129.457818,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ“’N','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51546,216743,1697246129.470510,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿw^u','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51547,216744,1697246130.717428,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿw^u','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51548,216745,1697246130.859214,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ“’N','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51549,216748,1697246148.368165,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿŸÄ„!','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51550,216749,1697246149.044589,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹òF','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51551,216750,1697246149.687415,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿŸÄ„!','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51552,216751,1697246150.255825,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹òF','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51553,216752,1697246151.011536,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1’$Ÿ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51554,216753,1697246152.069267,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ó$*','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51555,216754,1697246152.288369,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1’$Ÿ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51556,216755,1697246153.310824,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÉCî3','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51557,216756,1697246153.475584,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ó$*','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51558,216757,1697246154.551186,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÉCî3','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51559,216758,1697246160.907025,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'?.','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51560,216760,1697246162.279455,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'?.','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51561,216762,1697246166.009811,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1–(Õ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51562,216763,1697246167.250938,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1–(Õ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51563,216764,1697246168.271678,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŠÌ‹†','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51564,216765,1697246169.450308,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŠÌ‹†','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51565,216766,1697246170.159521,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÊ³ê','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51566,216767,1697246171.454454,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÊ³ê','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51567,216770,1697246187.951483,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ³µrŠ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51568,216771,1697246189.308525,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ³µrŠ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51569,216774,1697246197.699610,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ”gã¨','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51570,216775,1697246198.769900,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ”gã¨','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51571,216776,1697246202.473484,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶äÛ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51572,216777,1697246203.836075,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶äÛ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51573,216778,1697246203.905034,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ.ÖòR','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51574,216779,1697246205.069030,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ.ÖòR','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51575,216782,1697246216.409570,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿµ,ña','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51576,216783,1697246217.639218,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿµ,ña','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51577,216784,1697246217.876249,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿºz0¼','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51578,216785,1697246219.147299,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿºz0¼','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51579,216786,1697246223.390713,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ>%Š','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51580,216787,1697246224.557867,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ>%Š','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51581,216788,1697246225.708122,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿY-ÈO','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51582,216789,1697246226.932696,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿY-ÈO','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51583,216790,1697246230.877606,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿKÁí{','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51584,216791,1697246231.913045,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿKÁí{','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51585,216792,1697246259.305470,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1‘Ç','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51586,216793,1697246260.705961,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1‘Ç','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51587,216794,1697246260.830707,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¿ôA÷','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51588,216796,1697246262.171244,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¿ôA÷','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51589,216800,1697246279.509799,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶æÓ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51590,216801,1697246280.962550,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶æÓ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51591,216802,1697246285.455213,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1”u>','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51592,216803,1697246286.732252,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1”u>','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51593,216806,1697246342.320484,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ½{©','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51594,216807,1697246342.561109,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ$JhQ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51595,216808,1697246343.559574,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ½{©','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51596,216809,1697246343.865614,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ$JhQ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51597,216810,1697246358.529819,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿpÑôŠ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51598,216811,1697246359.891790,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿpÑôŠ','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51599,216814,1697246829.826041,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿtð~P','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51600,216815,1697246831.268722,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿtð~P','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51601,216816,1697247131.876877,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÄy\Z','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51602,216821,1697256198.808167,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿyJ^','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51603,216822,1697256200.078675,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿyJ^','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51604,216824,1697257695.304587,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿw_¸‘','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51605,216825,1697257696.730163,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿw_¸‘','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51606,216834,1697268965.798282,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ûÝ7','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51607,216835,1697268967.559288,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ûÝ7','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51608,216836,1697269407.285441,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1”,z','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51609,216837,1697269408.655711,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1”,z','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51610,216844,1697283741.900086,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ>%Š','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51611,216845,1697283743.170663,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ>%Š','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51612,216846,1697286043.618095,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿˆž;’','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51613,216847,1697286045.039866,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿˆž;’','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51614,216849,1697288426.002540,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿO©#I','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51615,216850,1697288427.851305,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿO©#I','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51616,216854,1697290518.072744,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36'),(51617,216855,1697296415.744404,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿižÉû','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51618,216856,1697296417.033221,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿižÉû','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51619,216861,1697308492.136143,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»gG','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51620,216862,1697308493.336781,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ»gG','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51621,216870,1697322166.387435,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ3J','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51622,216871,1697322167.865330,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ3J','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51623,216874,1697325908.540717,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1‘è','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51624,216875,1697325910.864475,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1‘è','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51625,216882,1697342575.228479,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ^=¥','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36'),(51626,216890,1697362702.063010,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¡1æ#','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51627,216891,1697362703.306015,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¡1æ#','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51628,216913,1697411953.541570,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1’&—','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51629,216914,1697411954.796765,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ1’&—','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51630,216943,1697427910.023092,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿˆžN>','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51631,216944,1697427911.336722,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿˆžN>','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51632,216949,1697429205.962499,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Ì‹v','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51633,216949,1697429205.966219,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Ì‹v','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51634,216968,1697437046.087426,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿBFª˜','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36'),(51635,217010,1697470396.802246,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾r9Š','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51636,217011,1697470397.896079,1,'loginFailInvalidUsername','kingsvillelivestock',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾r9Š','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(51637,217013,1697474556.768676,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36'),(51638,217014,1697499846.297040,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-O2¡','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36'),(51639,217061,1697564467.015273,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36'),(51640,217119,1697596327.578869,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ}ÔÑ«','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(51641,217130,1697639258.951760,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36'),(51642,217131,1697641659.552433,1,'loginFailInvalidUsername','wadminw',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÒÏ\\','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36'),(51643,217134,1697648498.609796,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ’¾Gè','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),(51644,217138,1697662985.502974,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ%»‡-','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36'),(51645,217139,1697664529.532849,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿj&Î','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),(51646,217140,1697668545.014927,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿR','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36'),(51647,217141,1697671071.572408,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ|jFš','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36'),(51648,217142,1697672544.686823,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ4Œ)','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(51649,217143,1697675099.323131,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÕ¯BŠ','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36'),(51650,217149,1697686018.957059,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0ÿÿîHU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(51651,217150,1697686019.457202,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0ÿÿîHU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(51652,217151,1697686020.363951,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0ÿÿîHU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(51653,217152,1697686020.821857,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0ÿÿîHU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(51654,217153,1697686021.282016,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0ÿÿîHU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(51655,217154,1697686021.748934,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0ÿÿîHU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(51656,217155,1697686022.229637,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0ÿÿîHU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(51657,217156,1697686022.691974,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0ÿÿîHU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(51658,217157,1697686023.158954,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0ÿÿîHU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(51659,217158,1697686023.619322,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0ÿÿîHU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(51660,217159,1697686024.085102,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0ÿÿîHU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(51661,217160,1697686024.560544,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0ÿÿîHU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(51662,217161,1697686025.024766,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0ÿÿîHU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(51663,217161,1697686025.028550,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0ÿÿîHU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(51664,217162,1697686025.490595,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0ÿÿîHU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(51665,217162,1697686025.493767,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0ÿÿîHU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(51666,217163,1697686025.974543,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0ÿÿîHU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(51667,217164,1697686026.439291,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0ÿÿîHU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(51668,217164,1697686026.442040,1,'loginFailInvalidUsername','michael',0,'\0\0\0\0\0\0\0\0\0\0ÿÿîHU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(51669,217167,1697687422.174486,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿY\'m','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4'),(51670,217213,1697776993.026522,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ†z{Á','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36'),(51671,217227,1697784277.286726,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ.¶v','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51672,217244,1697791918.632036,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51673,217245,1697791920.005351,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51674,217246,1697791921.854126,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51675,217247,1697791923.188318,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51676,217248,1697791924.789880,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ.','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51677,217249,1697791926.087331,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ\n','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51678,217250,1697791927.427039,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠe','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51679,217251,1697791928.836536,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ)','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51680,217252,1697791930.186782,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ&','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51681,217253,1697791931.482205,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51682,217253,1697791931.486617,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51683,217254,1697791932.820209,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51684,217255,1697791934.122504,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51685,217255,1697791934.126776,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51686,217256,1697791935.116643,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51687,217257,1697791936.519295,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ*','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51688,217258,1697791938.006780,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ$','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51689,217259,1697791938.921268,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠe','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51690,217259,1697791938.924527,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠe','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51691,217260,1697791940.234284,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ#','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51692,217261,1697791941.587721,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51693,217261,1697791941.591782,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51694,217262,1697791943.022972,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51695,217263,1697791944.429450,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51696,217264,1697791945.555757,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51697,217265,1697791946.986678,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51698,217266,1697791948.197371,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51699,217267,1697791949.521828,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51700,217268,1697791950.988830,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51701,217269,1697791952.254848,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ\r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51702,217270,1697791953.194376,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51703,217271,1697791954.506570,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51704,217272,1697791956.165009,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51705,217273,1697791957.504022,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51706,217274,1697791958.878656,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ\'','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51707,217275,1697791960.179762,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51708,217276,1697791961.166060,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ*','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51709,217277,1697791962.234165,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ$','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51710,217278,1697791963.216047,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51711,217279,1697791964.551278,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51712,217280,1697791965.885379,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ-','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51713,217281,1697791966.834159,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51714,217282,1697791968.060684,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51715,217283,1697791969.458465,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51716,217285,1697791972.403077,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51717,217286,1697791973.713902,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠë','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51718,217287,1697791975.056603,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51719,217288,1697791976.378566,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ\"','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51720,217289,1697791977.672121,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51721,217290,1697791979.044438,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51722,217291,1697791980.392834,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51723,217292,1697791981.639167,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ	','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51724,217293,1697791982.626648,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ\"','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51725,217294,1697791984.008460,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ$','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51726,217295,1697791985.280317,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51727,217296,1697791986.537603,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51728,217297,1697791988.568602,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51729,217298,1697791989.869751,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ,','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51730,217299,1697791990.901793,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ,','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51731,217300,1697791992.809184,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51732,217301,1697791994.124090,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ\'','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51733,217302,1697791995.072806,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51734,217302,1697791995.076027,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51735,217303,1697791996.445765,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51736,217304,1697791998.788924,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51737,217304,1697791998.792467,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51738,217306,1697792001.963025,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ.','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51739,217307,1697792003.117663,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51740,217308,1697792004.489383,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51741,217308,1697792004.492978,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51742,217309,1697792005.912442,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠë','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51743,217310,1697792007.273818,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51744,217310,1697792007.277311,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51745,217311,1697792008.672645,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51746,217312,1697792010.127959,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51747,217313,1697792011.580936,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠe','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51748,217314,1697792013.039525,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ)','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51749,217315,1697792014.556823,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51750,217316,1697792016.106770,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51751,217317,1697792017.641712,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ(','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51752,217318,1697792018.949251,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ	','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51753,217319,1697792020.265050,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51754,217320,1697792021.764395,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ+','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51755,217322,1697792024.371350,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51756,217323,1697792025.445924,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠe','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51757,217324,1697792026.388472,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠë','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51758,217325,1697792027.422348,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51759,217326,1697792028.539617,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠë','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51760,217327,1697792029.874954,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51761,217328,1697792031.222746,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ&','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51762,217329,1697792032.216670,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51763,217330,1697792033.258725,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51764,217331,1697792034.615068,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51765,217332,1697792036.023863,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ\n','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51766,217333,1697792037.047664,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠe','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51767,217334,1697792038.351876,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51768,217335,1697792039.719684,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ2','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51769,217336,1697792041.046933,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51770,217337,1697792042.473637,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51771,217339,1697792043.817894,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51772,217340,1697792045.171726,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠe','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51773,217341,1697792046.118382,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51774,217342,1697792047.063693,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51775,217387,1697809811.929242,1,'loginFailInvalidUsername','wwwadmin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ²€ ','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36'),(51776,217387,1697809811.933443,1,'loginFailInvalidUsername','wwwadmin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ²€ ','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36'),(51777,217439,1697870420.258331,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿz®(Í','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(51778,217528,1697889548.965305,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿgZäj','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51779,217528,1697889548.969079,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿgZäj','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51780,217558,1697906357.064929,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ/kƒ…','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36'),(51781,217683,1697960371.115387,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿaÍÒ','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36'),(51782,217689,1697962026.772111,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹V¦Z','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51783,217704,1697966511.323653,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÆ±}˜','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51784,217877,1698074596.765848,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36'),(51785,217907,1698100510.503892,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36'),(51786,217940,1698159364.421970,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36'),(51787,217953,1698182747.297235,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ½? ','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(51788,217960,1698205909.355552,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥ãìo','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36'),(51789,217973,1698228631.327873,1,'loginFailInvalidUsername','bapaksaya',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÔ|%2','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(51790,217984,1698248246.776310,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36'),(51791,218066,1698298438.707916,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÓâ–H','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51792,218113,1698302687.320547,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÊ”:Ê','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(51793,218215,1698364925.351489,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ³','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(51794,218247,1698420534.200035,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36'),(51795,218383,1698475753.270849,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿE£àh','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36'),(51796,218575,1698526353.426454,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ†z{Á','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36'),(51797,218661,1698569292.227910,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¤„pW','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51798,218677,1698572696.159182,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÑa‘^','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51799,218719,1698583342.508398,1,'loginFailInvalidUsername','essencediary',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ4’','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36'),(51800,218720,1698583342.768190,1,'loginFailInvalidUsername','essencediary',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ4’','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36'),(51801,218721,1698583343.024037,1,'loginFailInvalidUsername','essencediary',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ4’','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36'),(51802,218722,1698583343.268360,1,'loginFailInvalidUsername','essencediary',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ4’','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36'),(51803,218723,1698583343.528957,1,'loginFailInvalidUsername','essencediary',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ4’','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36'),(51804,218724,1698583343.981361,1,'loginFailInvalidUsername','essencediary',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ4’','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36'),(51805,218725,1698583344.262391,1,'loginFailInvalidUsername','essencediary',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ4’','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36'),(51806,218726,1698583344.499910,1,'loginFailInvalidUsername','essencediary',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ4’','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36'),(51807,218727,1698583344.758465,1,'loginFailInvalidUsername','essencediary',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ4’','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36'),(51808,218728,1698583345.026456,1,'loginFailInvalidUsername','essencediary',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ4’','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36'),(51809,218767,1698608031.824029,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿºWEÐ','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(51810,218791,1698623109.321783,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿH§hù','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51811,218813,1698628211.052654,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¹p','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51812,218818,1698630123.774069,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ«','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51813,218819,1698630124.937893,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ¨','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51814,218820,1698630126.213068,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÒ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51815,218821,1698630127.961745,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠË','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51816,218822,1698630129.066364,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠá','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51817,218823,1698630130.178449,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÌ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51818,218824,1698630131.371963,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÎ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51819,218825,1698630133.474039,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÚ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51820,218826,1698630134.554657,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ»','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51821,218827,1698630135.662556,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÂ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51822,218827,1698630135.666107,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÂ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51823,218828,1698630136.813015,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠæ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51824,218829,1698630137.617994,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ«','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51825,218829,1698630137.621622,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ«','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51826,218830,1698630138.730556,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠª','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51827,218831,1698630139.923996,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51828,218832,1698630141.018355,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÑ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51829,218833,1698630142.123278,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠè','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51830,218833,1698630142.126992,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠè','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51831,218834,1698630143.218482,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ¼','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51832,218835,1698630144.288546,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÏ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51833,218835,1698630144.292555,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÏ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51834,218836,1698630145.396731,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÈ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51835,218837,1698630146.218354,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠæ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51836,218838,1698630147.313109,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÐ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51837,218839,1698630148.052113,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ¨','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51838,218840,1698630148.806121,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÈ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51839,218841,1698630149.937358,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠé','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51840,218842,1698630151.073157,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÔ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51841,218843,1698630151.842349,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠé','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51842,218844,1698630152.603131,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÎ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51843,218845,1698630153.472778,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠª','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51844,218846,1698630154.603296,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÄ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51845,218847,1698630155.730015,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÀ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51846,218848,1698630156.463221,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51847,218849,1698630157.566051,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠç','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51848,218850,1698630158.645707,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÙ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51849,218851,1698630159.445657,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÎ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51850,218852,1698630160.536713,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠØ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51851,218853,1698630161.291675,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÐ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51852,218854,1698630162.397970,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ¾','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51853,218855,1698630163.507831,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ«','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51854,218856,1698630164.619193,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠË','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51855,218857,1698630165.754350,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÎ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51856,218858,1698630166.863338,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ¸','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51857,218859,1698630167.960447,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ×','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51858,218860,1698630169.073407,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ·','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51859,218861,1698630170.176836,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÍ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51860,218862,1698630171.253166,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÕ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51861,218863,1698630172.425892,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠß','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51862,218864,1698630173.539354,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ»','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51863,218865,1698630174.659776,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ©','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51864,218866,1698630175.483725,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÄ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51865,218867,1698630176.582580,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÏ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51866,218868,1698630177.321734,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÙ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51867,218869,1698630178.085035,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÕ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51868,218870,1698630178.826867,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ»','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51869,218871,1698630179.578029,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ«','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51870,218872,1698630180.698690,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÇ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51871,218873,1698630181.448594,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ¾','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51872,218874,1698630182.210170,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÙ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51873,218875,1698630182.946473,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÕ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51874,218876,1698630184.099410,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ¶','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51875,218876,1698630184.103010,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ¶','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51876,218877,1698630185.198823,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÊ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51877,218878,1698630186.318304,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÚ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51878,218878,1698630186.322170,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÚ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51879,218879,1698630187.064806,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ¶','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51880,218880,1698630187.831057,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÊ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51881,218881,1698630188.946263,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÓ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51882,218882,1698630189.836396,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ«','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51883,218882,1698630189.839617,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ«','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51884,218883,1698630190.613988,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ«','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51885,218884,1698630191.399446,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠË','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51886,218884,1698630191.402990,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠË','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51887,218885,1698630192.148906,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ©','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51888,218886,1698630193.244361,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠæ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51889,218887,1698630194.315112,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÝ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51890,218888,1698630195.465782,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ½','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51891,218889,1698630196.552133,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÁ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51892,218890,1698630197.316793,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠß','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51893,218891,1698630198.429539,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÔ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51894,218892,1698630199.160058,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÏ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51895,218893,1698630200.246377,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠç','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51896,218894,1698630201.422996,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ¨','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51897,218895,1698630202.164932,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ»','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51898,218896,1698630202.904441,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ©','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51899,218897,1698630203.984860,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ²','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51900,218898,1698630204.789423,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÁ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51901,218899,1698630205.885032,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÀ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51902,218900,1698630206.637109,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÊ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51903,218901,1698630207.740991,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠà','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51904,218902,1698630208.828737,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ¿','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51905,218903,1698630209.923494,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÑ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51906,218904,1698630211.019675,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÏ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51907,218905,1698630212.102016,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ°','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51908,218906,1698630213.175841,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ×','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51909,218907,1698630214.255552,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÄ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51910,218908,1698630215.046729,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÁ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51911,218909,1698630215.806226,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠç','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51912,218910,1698630216.971823,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ¸','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51913,218911,1698630218.116903,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠä','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51914,218912,1698630218.863645,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÔ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51915,218913,1698630219.615933,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ×','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51916,218914,1698630220.741557,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÈ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51917,218915,1698630221.838066,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠÆ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51918,218924,1698633340.284658,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ”B‘','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51919,219044,1698681426.944415,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36'),(51920,219050,1698692534.135421,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ½‡¢h','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(51921,219050,1698692534.138661,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ½‡¢h','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(51922,219060,1698710323.964973,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿºWEÐ','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36'),(51923,219070,1698723570.525013,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-)hŸ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(51924,219092,1698727064.796745,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'j\Z','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51925,219176,1698740987.788485,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ3&4€','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(51926,219363,1698838484.768770,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ1+)¡','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(51927,219375,1698847819.902933,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36'),(51928,219378,1698850657.200957,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36'),(51929,219427,1698900785.841869,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ«ôÌ\Z','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51930,219520,1698979322.444996,1,'loginFailInvalidUsername','df7c8c98dfd88d9dfad',0,'\0\0\0\0\0\0\0\0\0\0ÿÿŒäA','curl/7.30.0'),(51931,219568,1698998500.456323,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿN‡M„','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51932,219568,1698998500.460302,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿN‡M„','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51933,219665,1699028392.042448,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿµs«ƒ','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(51934,219665,1699028392.046190,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿµs«ƒ','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(51935,219714,1699072129.486905,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨sÚ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51936,219835,1699108127.922416,1,'loginFailInvalidUsername','wwwadmin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿaJ[Z','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51937,219835,1699108127.927577,1,'loginFailInvalidUsername','wwwadmin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿaJ[Z','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(51938,219847,1699140631.751226,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠY','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51939,219848,1699140633.146276,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠc','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51940,219849,1699140634.550832,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ]','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51941,219850,1699140635.847779,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠX','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51942,219851,1699140637.196844,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠd','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51943,219852,1699140638.276003,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠY','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51944,219853,1699140639.661396,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ5','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51945,219854,1699140640.971970,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠE','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51946,219855,1699140642.295734,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠJ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51947,219856,1699140643.427890,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠd','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51948,219856,1699140643.431025,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠd','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51949,219857,1699140644.918796,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ`','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51950,219858,1699140646.378810,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ¥','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51951,219858,1699140646.382625,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ¥','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51952,219859,1699140648.043600,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠZ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51953,219860,1699140649.398548,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠS','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51954,219861,1699140651.098792,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠA','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51955,219862,1699140652.663440,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ4','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51956,219862,1699140652.666796,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ4','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51957,219863,1699140654.156713,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠF','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51958,219864,1699140655.550244,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠH','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51959,219864,1699140655.553741,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠH','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51960,219865,1699140656.957966,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ8','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51961,219866,1699140658.271215,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ6','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51962,219867,1699140659.831212,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ^','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51963,219868,1699140661.672608,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ_','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51964,219869,1699140663.008581,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ?','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51965,219870,1699140664.308804,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ<','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51966,219871,1699140665.285079,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠF','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51967,219872,1699140666.626440,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠR','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51968,219873,1699140668.909082,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51969,219874,1699140669.920375,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠF','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51970,219875,1699140670.963254,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ6','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51971,219876,1699140671.934028,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠA','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51972,219877,1699140673.349797,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠI','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51973,219878,1699140674.654845,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51974,219879,1699140675.917289,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠX','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51975,219880,1699140677.260607,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠK','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51976,219881,1699140678.573783,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠd','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51977,219882,1699140679.564384,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠR','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51978,219883,1699140680.517162,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51979,219884,1699140681.562389,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠd','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51980,219885,1699140682.884739,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠP','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51981,219886,1699140684.223671,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ5','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51982,219887,1699140685.174677,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠP','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51983,219888,1699140686.447319,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠb','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51984,219889,1699140687.848099,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠC','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51985,219890,1699140689.162469,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠY','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51986,219891,1699140690.116375,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ9','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51987,219892,1699140691.113850,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠR','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51988,219893,1699140692.084487,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠC','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51989,219894,1699140694.060593,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ5','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51990,219895,1699140695.334038,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ8','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51991,219896,1699140696.648366,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠH','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51992,219897,1699140697.952185,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠE','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51993,219898,1699140699.268165,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠM','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51994,219899,1699140700.238374,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠM','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51995,219900,1699140701.568407,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ_','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51996,219901,1699140702.891406,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51997,219902,1699140703.882586,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠX','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51998,219903,1699140705.254302,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠT','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(51999,219904,1699140706.541794,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ;','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52000,219905,1699140707.809763,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ6','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52001,219905,1699140707.813778,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ6','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52002,219906,1699140709.162396,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠS','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52003,219907,1699140710.446221,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ:','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52004,219907,1699140710.450470,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ:','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52005,219908,1699140711.747413,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ`','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52006,219909,1699140712.727851,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ8','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52007,219910,1699140713.981884,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ>','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52008,219911,1699140715.278784,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠJ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52009,219911,1699140715.282649,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠJ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52010,219912,1699140716.277395,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ;','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52011,219913,1699140718.337923,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠH','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52012,219913,1699140718.341156,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠH','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52013,219914,1699140719.722478,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠX','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52014,219915,1699140720.719708,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠH','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52015,219916,1699140721.757396,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠJ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52016,219917,1699140723.140812,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠd','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52017,219918,1699140724.094737,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠM','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52018,219919,1699140725.345339,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠI','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52019,219920,1699140726.639292,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠL','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52020,219921,1699140727.612377,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ:','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52021,219922,1699140728.898644,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ8','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52022,219923,1699140730.334670,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠV','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52023,219924,1699140731.661886,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠM','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52024,219925,1699140732.631223,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ;','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52025,219926,1699140733.987577,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52026,219927,1699140735.316663,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ¥','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52027,219928,1699140736.609640,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52028,219929,1699140737.580325,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠQ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52029,219930,1699140738.836389,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ_','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52030,219931,1699140739.810736,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠI','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52031,219932,1699140741.102377,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠU','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52032,219933,1699140742.392908,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠD','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52033,219934,1699140743.704630,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠB','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52034,219935,1699140744.971600,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ>','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52035,219936,1699140746.275190,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ¤','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52036,219937,1699140747.615546,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠT','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52037,219938,1699140748.913481,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ5','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52038,219939,1699140750.235130,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ=','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52039,219940,1699140751.500537,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠE','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52040,219941,1699140752.824104,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ@','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52041,219942,1699140755.190479,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ<','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52042,219943,1699140756.472652,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠ6','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52043,219944,1699140757.746909,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ-šŠC','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36'),(52044,219947,1699154193.451212,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ´¾åÔ','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(52045,220014,1699191956.595000,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿº£','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(52046,220014,1699191956.598658,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿº£','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(52047,220096,1699255261.381381,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹	\'Y','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52048,220123,1699259632.865607,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ3Þ)U','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52049,220168,1699271177.621269,1,'loginFailInvalidUsername','wordcamp',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ’FxÖ','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36 OPR/32.0.1948.45'),(52050,220185,1699289764.353584,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'),(52051,220202,1699312094.748523,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'),(52052,220206,1699317289.483572,1,'loginFailInvalidUsername','thepropshop',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhè[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(52053,220207,1699317290.168755,1,'loginFailInvalidUsername','thepropshop',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhè[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(52054,220208,1699317291.538903,1,'loginFailInvalidUsername','thepropshop',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhè[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(52055,220209,1699317292.223567,1,'loginFailInvalidUsername','thepropshop',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhè[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(52056,220210,1699317292.915427,1,'loginFailInvalidUsername','thepropshop',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhè[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(52057,220211,1699317293.599932,1,'loginFailInvalidUsername','thepropshop',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhè[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(52058,220212,1699317294.283495,1,'loginFailInvalidUsername','thepropshop',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhè[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(52059,220213,1699317294.967922,1,'loginFailInvalidUsername','thepropshop',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhè[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(52060,220214,1699317295.655379,1,'loginFailInvalidUsername','thepropshop',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhè[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(52061,220215,1699317296.350747,1,'loginFailInvalidUsername','thepropshop',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhè[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(52062,220216,1699317297.034252,1,'loginFailInvalidUsername','thepropshop',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhè[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(52063,220217,1699317297.718492,1,'loginFailInvalidUsername','thepropshop',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhè[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(52064,220218,1699317298.410793,1,'loginFailInvalidUsername','thepropshop',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhè[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(52065,220218,1699317298.414162,1,'loginFailInvalidUsername','thepropshop',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhè[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(52066,220219,1699317299.100277,1,'loginFailInvalidUsername','thepropshop',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhè[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(52067,220219,1699317299.102902,1,'loginFailInvalidUsername','thepropshop',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhè[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(52068,220220,1699317299.787141,1,'loginFailInvalidUsername','thepropshop',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhè[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(52069,220221,1699317300.471776,1,'loginFailInvalidUsername','thepropshop',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhè[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(52070,220221,1699317300.474929,1,'loginFailInvalidUsername','thepropshop',0,'\0\0\0\0\0\0\0\0\0\0ÿÿhè[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36'),(52071,220225,1699318889.718870,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'),(52072,220298,1699339296.370129,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿŽ]×','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36'),(52073,220412,1699373497.255302,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ‡µ\n…','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36'),(52074,220421,1699386505.553427,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍJ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36'),(52075,220425,1699393215.864714,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36'),(52076,220430,1699399464.886601,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg´y…','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36'),(52077,220431,1699404993.402243,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg¯Úm','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36'),(52078,220432,1699406846.910634,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿˆôRj','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36'),(52079,220433,1699408301.797159,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿgx°É','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52080,220434,1699408675.978909,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÔS#@','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36'),(52081,220435,1699411892.601045,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ±4 ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52082,220436,1699413149.422275,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿKgB','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52083,220464,1699419245.271222,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ]·ƒ5','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52084,220579,1699443706.300079,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¬hQs','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52085,220580,1699443902.402335,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ3Qî','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52086,220628,1699457202.367964,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿŠÉ®Ý','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36'),(52087,220640,1699463812.779144,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'),(52088,220649,1699471412.118137,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¤„ª','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36'),(52089,220678,1699481301.727218,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥ãY½','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36'),(52090,220757,1699496410.418545,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨rÀ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52091,220777,1699500607.374650,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg/¹¹','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52092,220794,1699504568.716884,1,'loginFailInvalidUsername','df7c8c98dfd88d9dfad',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¿`–Ì','curl/7.30.0'),(52093,220834,1699512051.589551,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿeœÓ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52094,220864,1699515845.556780,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿH§hù','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52095,220879,1699517900.010987,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ*Èçx','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52096,220917,1699523907.176536,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ­ìÒ^','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52097,220995,1699541824.336979,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¤„pW','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52098,221038,1699591755.225452,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ3D›Ý','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4'),(52099,221040,1699592749.074765,1,'loginFailInvalidUsername','plesk_administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿk½:','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:30.0) Gecko/20100101 Firefox/30.0'),(52100,221093,1699610115.682039,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ½¥Û','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(52101,221144,1699630882.082756,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>z','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52102,221145,1699632296.288734,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'gá','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52103,221146,1699632961.232494,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿS«ù7','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36'),(52104,221147,1699635820.849840,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ„”KË','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36'),(52105,221148,1699636129.024774,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hõê','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52106,221149,1699637106.464006,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hy€','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52107,221150,1699637947.924767,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hö½','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52108,221151,1699638548.402456,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ2?\0','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52109,221152,1699638798.091825,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨t~','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52110,221153,1699639041.832345,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿš\0¯È','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52111,221154,1699639840.732404,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾`L\Z','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52112,221155,1699640006.071684,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨rÀ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52113,221156,1699640541.043347,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿD²õK','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52114,221157,1699640996.365602,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨lý','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52115,221158,1699641787.143074,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÍÇ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52116,221159,1699641980.977254,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmËá','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52117,221160,1699642742.435128,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿƒF','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52118,221192,1699651035.902738,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ6É^','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(52119,221195,1699653520.852227,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ/kG¥','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52120,221247,1699678120.149762,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿOÔñ','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36'),(52121,221248,1699681018.845248,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ”HÖõ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36'),(52122,221325,1699740577.982984,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨|+','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36'),(52123,221348,1699792946.639871,1,'loginFailInvalidUsername','wadminw',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÐm¿Ç','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36'),(52124,221363,1699891030.184808,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'),(52125,221367,1699911837.723764,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'),(52126,221368,1699912773.667548,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'),(52127,221417,1699969506.619801,1,'loginFailInvalidUsername','wwwadmin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿxmÇ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52128,221417,1699969506.623890,1,'loginFailInvalidUsername','wwwadmin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿxmÇ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52129,221422,1699980060.856418,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'),(52130,221423,1699982646.594446,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ„”KË','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36'),(52131,221427,1700022662.302575,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿD²¥È','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36'),(52132,221433,1700047778.987076,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨~b','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36'),(52133,221434,1700061244.004797,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'),(52134,221453,1700062640.712760,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿq¯TQ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(52135,221476,1700104638.777075,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ûìÉ','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(52136,221476,1700104638.780359,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ûìÉ','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(52137,221501,1700118424.827017,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg˜OÉ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52138,221563,1700155920.658114,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ³×%Ð','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(52139,221565,1700164748.302324,1,'loginFailInvalidUsername','username',0,'\0\0\0\0\0\0\0\0\0\0ÿÿt[Å½','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52140,221566,1700164748.498136,1,'loginFailInvalidUsername','stender',0,'\0\0\0\0\0\0\0\0\0\0ÿÿt[Å½','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52141,221567,1700164795.804867,1,'loginFailInvalidUsername','wpcore',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ^úô%','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52142,221568,1700164795.837908,1,'loginFailInvalidUsername','bimak73555',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ#¹oO','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52143,221569,1700164799.874657,1,'loginFailInvalidUsername','server',0,'\0\0\0\0\0\0\0\0\0\0ÿÿg‚Ö’','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52144,221570,1700164852.875588,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ>Ò¹','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52145,221571,1700164956.488979,1,'loginFailInvalidUsername','greeceman',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ€ÇB','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52146,221582,1700220242.286903,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\'-ý!','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(52147,221595,1700240826.453627,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾Ûúš','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(52148,221595,1700240826.457281,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾Ûúš','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(52149,221630,1700266217.293686,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'),(52150,221665,1700340068.740635,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg£+','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(52151,221669,1700361441.533862,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ/ã','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(52152,221732,1700417200.614486,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ½¾ ‡','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(52153,221764,1700455342.675902,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿËmO›','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(52154,221768,1700466193.967730,1,'loginFailInvalidUsername','demo',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!@','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0'),(52155,221770,1700475352.890740,1,'loginFailInvalidUsername','kingsvillelivestock.com',0,'\0\0\0\0\0\0\0\0\0\0ÿÿWì´','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0'),(52156,221770,1700475352.894191,1,'loginFailInvalidUsername','kingsvillelivestock.com',0,'\0\0\0\0\0\0\0\0\0\0ÿÿWì´','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0'),(52157,221772,1700478050.371101,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿuÁ¼\\','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(52158,221772,1700478050.374394,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿuÁ¼\\','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(52159,221776,1700493660.163978,1,'loginFailInvalidUsername','admin1',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!c','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0'),(52160,221778,1700496352.444331,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'),(52161,221807,1700506110.936119,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!g','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0'),(52162,221807,1700506110.940142,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¹á!g','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0'),(52163,221809,1700519908.520359,1,'loginFailInvalidUsername','demo',0,'\0\0\0\0\0\0\0\0\0\0ÿÿeˆ','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0'),(52164,221822,1700547559.010887,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ­É´Ò','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52165,221823,1700548205.320507,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌÙ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52166,221824,1700550001.682916,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿH§hù','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52167,221825,1700551051.078072,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿH§:','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52168,221826,1700551261.871482,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨D','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52169,221827,1700551937.163687,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿƒF','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52170,221828,1700553109.144747,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¹p','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52171,221829,1700554577.274976,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ”Hy€','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52172,221830,1700555274.628210,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿD²Þ­','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52173,221830,1700555274.631515,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿD²Þ­','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52174,221831,1700556249.717576,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨D','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52175,221832,1700556693.140653,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÐmFI','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52176,221833,1700557490.522014,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ2>¶õ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52177,221834,1700557986.658346,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ­É¾','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52178,221834,1700557986.661033,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ­É¾','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52179,221835,1700558639.168422,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\ÌØB','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52180,221836,1700559644.268745,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÆÛÙ','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52181,221837,1700561038.018980,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\\Í¹p','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52182,221838,1700561209.371333,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿxM‘@','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52183,221896,1700577024.876879,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0ÿÿeó','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0'),(52184,221904,1700579191.466701,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾H<ê','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(52185,221908,1700580657.158507,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿt0e','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52186,221924,1700589896.975587,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾!-','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(52187,221953,1700637401.909843,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÝ|4®','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52188,221959,1700640203.300622,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ´ò i','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(52189,221992,1700664685.940688,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'),(52190,222011,1700693648.675296,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÿ-','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(52191,222020,1700731554.130196,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾I~È','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(52192,222020,1700731554.133685,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾I~È','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(52193,222028,1700757467.249397,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ}¦u3','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(52194,222029,1700766962.269086,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿm\\³ç','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(52195,222044,1700802033.531077,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ5c','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(52196,222047,1700803704.692597,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ3Oç','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52197,222135,1700838340.771777,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿéœµ','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(52198,222137,1700854583.779042,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿe€r;','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(52199,222179,1700910306.671785,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ«ú¥…','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(52200,222228,1700961608.917643,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ-òàs','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(52201,222235,1700967642.859330,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿD²—ó','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52202,222238,1700971192.375725,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾h€v','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(52203,222268,1700993895.752288,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ}£ö ','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(52204,222281,1701025002.923929,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¶4‹','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(52205,222287,1701055889.355428,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿvDy','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(52206,222297,1701088961.771807,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ[»”—','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(52207,222297,1701088961.775584,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ[»”—','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(52208,222300,1701104045.462474,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'),(52209,222310,1701127072.921747,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¾Pü1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.2 Safari/605.1.15'),(52210,222314,1701138385.185891,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÞ‘D','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(52211,222314,1701138385.189348,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿÞ‘D','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(52212,222357,1701165960.043680,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg«´','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52213,222383,1701175650.428011,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ.ÿ”','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(52214,222383,1701175650.431780,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ.ÿ”','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0'),(52215,222387,1701181104.845712,1,'loginFailInvalidUsername','wadminw',0,'\0\0\0\0\0\0\0\0\0\0ÿÿH§Ñø','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:94.0) Gecko/20100101 Firefox/95.0'),(52216,222391,1701188888.390832,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ6%œð','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36'),(52217,222404,1701205540.008106,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ±õÜ‘','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(52218,222404,1701205540.011544,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ±õÜ‘','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36'),(52219,222438,1701235525.610111,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ{ü','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(52220,222438,1701235525.613617,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ{ü','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(52221,222448,1701245533.844203,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ$Nœý','Opera/9.80 (Windows NT 6.1) Presto/2.12.388 Version/12.12'),(52222,222452,1701258729.156669,1,'loginFailInvalidUsername','Adsystem',0,'\0\0\0\0\0\0\0\0\0\0ÿÿTLÓ','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52223,222453,1701258729.182241,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0ÿÿTLÓ','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52224,222454,1701258786.846128,1,'loginFailInvalidUsername','dagon',0,'\0\0\0\0\0\0\0\0\0\0ÿÿæ.Å','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52225,222455,1701258786.948801,1,'loginFailInvalidUsername','wpuser',0,'\0\0\0\0\0\0\0\0\0\0ÿÿæ.Å','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52226,222456,1701258834.041734,1,'loginFailInvalidUsername','jisuo',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"‡ž','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52227,222458,1701258879.557343,1,'loginFailInvalidUsername','admin6',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨v=','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52228,222459,1701258879.569032,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¸¨v=','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52229,222460,1701258882.636007,1,'loginFailInvalidUsername','admin6',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"H{6','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52230,222461,1701258882.743371,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ\"H{6','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52231,222464,1701258959.519271,1,'loginFailInvalidUsername','thuylt',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹;!','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52232,222465,1701258959.561786,1,'loginFailInvalidUsername','wordpress_administratora',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ‹;!','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52233,222466,1701259023.450160,1,'loginFailInvalidUsername','support',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ>’ÿ','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52234,222467,1701259023.451492,1,'loginFailInvalidUsername','yeuthuongmongmanh',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ>’ÿ','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52235,222468,1701259053.613899,1,'loginFailInvalidUsername','zestful',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ”H±4','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52236,222469,1701259053.737879,1,'loginFailInvalidUsername','wp-admine',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ”H±4','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52237,222470,1701259083.242629,1,'loginFailInvalidUsername','swilliams',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¨\0‡=','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52238,222471,1701259083.266368,1,'loginFailInvalidUsername','wp',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¨\0‡=','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52239,222475,1701259163.486436,1,'loginFailInvalidUsername','Vikash',0,'\0\0\0\0\0\0\0\0\0\0ÿÿØÞ«\n','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52240,222475,1701259163.490726,1,'loginFailInvalidUsername','Vikash',0,'\0\0\0\0\0\0\0\0\0\0ÿÿØÞ«\n','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52241,222476,1701259163.509594,1,'loginFailInvalidUsername','wp_postadmin',0,'\0\0\0\0\0\0\0\0\0\0ÿÿØÞ«\n','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52242,222477,1701259191.380694,1,'loginFailInvalidUsername','happy',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ²>O','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52243,222478,1701259191.409219,1,'loginFailInvalidUsername','Sion',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ²>O','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52244,222479,1701259217.065538,1,'loginFailInvalidUsername','SEOExpert',0,'\0\0\0\0\0\0\0\0\0\0ÿÿY.j†','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52245,222480,1701259217.078617,1,'loginFailInvalidUsername','MUWY',0,'\0\0\0\0\0\0\0\0\0\0ÿÿY.j†','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52246,222481,1701259242.109040,1,'loginFailInvalidUsername','administratoir',0,'\0\0\0\0\0\0\0\0\0\0ÿÿH§¾;','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52247,222482,1701259242.110263,1,'loginFailInvalidUsername','zymppg4f@gmail.com',0,'\0\0\0\0\0\0\0\0\0\0ÿÿH§¾;','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52248,222483,1701259244.033943,1,'loginFailInvalidUsername','zymppg4f@gmail.com',0,'\0\0\0\0\0\0\0\0\0\0ÿÿH§FÇ','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52249,222484,1701259244.043015,1,'loginFailInvalidUsername','administratoir',0,'\0\0\0\0\0\0\0\0\0\0ÿÿH§FÇ','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52250,222485,1701259246.586975,1,'loginFailInvalidUsername','administratoir',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ§G4','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52251,222486,1701259246.588219,1,'loginFailInvalidUsername','zymppg4f@gmail.com',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ§G4','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52252,222487,1701259270.471040,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿD·Ð','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52253,222488,1701259270.502001,1,'loginFailInvalidUsername','Clare Louise',0,'\0\0\0\0\0\0\0\0\0\0ÿÿD·Ð','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52254,222488,1701259270.505290,1,'loginFailInvalidUsername','Clare Louise',0,'\0\0\0\0\0\0\0\0\0\0ÿÿD·Ð','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52255,222489,1701259323.013636,1,'loginFailInvalidUsername','adminusez',0,'\0\0\0\0\0\0\0\0\0\0ÿÿg!=','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52256,222490,1701259323.028248,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿg!=','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52257,222493,1701259340.525636,1,'loginFailInvalidUsername','donaljkt9',0,'\0\0\0\0\0\0\0\0\0\0ÿÿB!ÍV','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52258,222494,1701259340.541319,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿB!ÍV','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52259,222495,1701259394.020011,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿXÆ¶}','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52260,222496,1701259394.036735,1,'loginFailInvalidUsername','qwee123123',0,'\0\0\0\0\0\0\0\0\0\0ÿÿXÆ¶}','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52261,222496,1701259394.041460,1,'loginFailInvalidUsername','qwee123123',0,'\0\0\0\0\0\0\0\0\0\0ÿÿXÆ¶}','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52262,222497,1701259394.949496,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿ¢ÿvË','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52263,222498,1701259394.956030,1,'loginFailInvalidUsername','administratoir',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¢ÿvÌ','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52264,222499,1701259470.096418,1,'loginFailInvalidUsername','Reseller-webmaster',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGì/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52265,222500,1701259470.118750,1,'loginFailInvalidUsername','francisunderwood',0,'\0\0\0\0\0\0\0\0\0\0ÿÿÆGì/','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52266,222503,1701259494.830527,1,'loginFailInvalidUsername','wpupdate',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ¥ Ù','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52267,222505,1701259537.020128,1,'loginFailInvalidUsername','xtw18387+9a48@outlook.com',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ@Ïž1','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52268,222506,1701259537.069604,1,'loginFailInvalidUsername','control',0,'\0\0\0\0\0\0\0\0\0\0ÿÿ@Ïž1','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/111.0'),(52269,222507,1701270735.785771,0,'loginOK','anstine_admin',2,'\0\0\0\0\0\0\0\0\0\0ÿÿ‚3·\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36'),(52270,222508,1701273659.537073,1,'loginFailValidUsername','admin',1,'\0\0\0\0\0\0\0\0\0\0ÿÿˆ[)','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36');
/*!40000 ALTER TABLE `b78GM7Ml_wflogins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_wfls_2fa_secrets`
--

DROP TABLE IF EXISTS `b78GM7Ml_wfls_2fa_secrets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `b78GM7Ml_wfls_2fa_secrets` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `secret` tinyblob NOT NULL,
  `recovery` blob NOT NULL,
  `ctime` int(10) unsigned NOT NULL,
  `vtime` int(10) unsigned NOT NULL,
  `mode` enum('authenticator') NOT NULL DEFAULT 'authenticator',
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `b78GM7Ml_wfls_2fa_secrets`
--

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

--
-- Table structure for table `b78GM7Ml_wfls_settings`
--

DROP TABLE IF EXISTS `b78GM7Ml_wfls_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `b78GM7Ml_wfls_settings` (
  `name` varchar(191) NOT NULL DEFAULT '',
  `value` longblob DEFAULT NULL,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `b78GM7Ml_wfls_settings`
--

LOCK TABLES `b78GM7Ml_wfls_settings` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_wfls_settings` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_wfls_settings` VALUES ('2fa-user-grace-period','10','yes'),('allow-disabling-ntp','1','yes'),('allow-xml-rpc','1','yes'),('captcha-stats','{\"counts\":[0,0,0,0,0,0,0,0,0,0,0],\"avg\":0}','yes'),('delete-deactivation','','yes'),('enable-auth-captcha','','yes'),('enable-woocommerce-integration','','yes'),('global-notices','[]','yes'),('ip-source','','yes'),('ip-trusted-proxies','','yes'),('last-secret-refresh','1641918694','yes'),('ntp-failure-count','3','yes'),('ntp-offset','0','yes'),('recaptcha-threshold','0.5','yes'),('remember-device','','yes'),('remember-device-duration','2592000','yes'),('require-2fa-grace-period-enabled','','yes'),('require-2fa.administrator','','yes'),('shared-hash-secret','8cefbfa9893871097a12cab86071c66ade45456917f0fe3939f2882c895943f9','yes'),('shared-symmetric-secret','67d74eda1c6e99168bb3499cbe5ad8d8f059503992e63c59252ff82978531169','yes'),('use-ntp','','yes'),('whitelisted','','yes'),('xmlrpc-enabled','1','yes');
/*!40000 ALTER TABLE `b78GM7Ml_wfls_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_wfnotifications`
--

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

--
-- Dumping data for table `b78GM7Ml_wfnotifications`
--

LOCK TABLES `b78GM7Ml_wfnotifications` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_wfnotifications` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_wfnotifications` VALUES ('network-GQ2TGNZU',0,'toupp-20210927',100,1637583471,'<p><strong>Wordfence Terms of Use and Privacy Policy Updated</strong></p>\n<p>Please review the updated Wordfence Terms of Use and Privacy Policy. We have incorporated the new versions of the Standard Contractual Clauses issued by the European Commission.</p>\n<p><a href=\"https://www.wordfence.com/terms-of-use/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20210927\" class=\"wf-btn wf-btn-callout wf-btn-primary\" target=\"_blank\">Terms of Use</a> <a href=\"https://www.wordfence.com/privacy-policy/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20210927\" class=\"wf-btn wf-btn-callout wf-btn-primary\" target=\"_blank\">Privacy Policy</a></p>','[]'),('network-GQ2TGNZV',0,'toupp-20211122',100,1657816335,'<p><strong>Wordfence Terms of Service and End User License Agreement Update</strong></p>\n<p>Please review the updated Terms of Service with the new Wordfence End User License Agreement.\n</p>\n<p><a href=\"https://www.wordfence.com/terms-of-service/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20211122\" class=\"wf-btn wf-btn-callout wf-btn-primary\" target=\"_blank\">Terms of Service</a> <a href=\"https://www.wordfence.com/license-terms-and-conditions/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20211122\" class=\"wf-btn wf-btn-callout wf-btn-primary\" target=\"_blank\">End User License Agreement</a></p>','[]'),('network-GQ2TGNZW',1,'toupp-20220714',100,1701275642,'<p><strong>Wordfence Terms of Service and UK IDTA</strong></p>\n<p>Please review the updated Terms of Service with the new UK IDTA.\n</p>\n<p><a href=\"https://www.wordfence.com/terms-of-service/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20220714\" class=\"wf-btn wf-btn-callout wf-btn-primary\" target=\"_blank\">Terms of Service</a> <a href=\"https://www.wordfence.com/uk-international-data-transfer-addendum/?utm_source=plugin&amp;utm_medium=pluginalert&amp;utm_campaign=toupp20220714\" class=\"wf-btn wf-btn-callout wf-btn-primary\" target=\"_blank\">UK IDTA</a></p>\n','[]'),('site-5UAQAAA',0,'wfplugin_updates',502,1601607066,'<a href=\"https://kingsvillelivestock.com/wp-admin/update-core.php\">An update is available for WordPress (v5.5.1)</a>','[]'),('site-AEAAAAA',0,'wfplugin_updates',502,1558088758,'<a href=\"http://kingsvillelivestock.com/wp-admin/update-core.php\">An update is available for 1 theme</a>','[]'),('site-AIAAAAA',0,'wfplugin_scan',502,1557788597,'<a href=\"http://kingsvillelivestock.com/wp-admin/admin.php?page=WordfenceScan\">3 issues found in most recent scan</a>','[]'),('site-CMAAAAA',0,'wfplugin_scan',502,1558055380,'<a href=\"http://kingsvillelivestock.com/wp-admin/admin.php?page=WordfenceScan\">3 issues found in most recent scan</a>','[]'),('site-CUAQAAA',0,'wfplugin_updates',502,1587385416,'<a href=\"http://kingsvillelivestock.com/wp-admin/update-core.php\">An update is available for WordPress (v5.4)</a>','[]'),('site-E4AAAAA',0,'wfplugin_updates',502,1565575563,'<a href=\"http://kingsvillelivestock.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-EAAAAAA',0,'wfplugin_updates',502,1559102888,'<a href=\"http://kingsvillelivestock.com/wp-admin/update-core.php\">Updates are available for WordPress (v5.2.1) and 1 plugin</a>','[]'),('site-EEAAAAA',0,'wfplugin_scan',502,1559102891,'<a href=\"http://kingsvillelivestock.com/wp-admin/admin.php?page=WordfenceScan\">2 issues found in most recent scan</a>','[]'),('site-EIAAAAA',0,'wfplugin_updates',502,1560396758,'<a href=\"http://kingsvillelivestock.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-EMAAAAA',0,'wfplugin_scan',502,1560396761,'<a href=\"http://kingsvillelivestock.com/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-EQAAAAA',0,'wfplugin_updates',502,1562780599,'<a href=\"http://kingsvillelivestock.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-F4AAAAA',0,'wfplugin_scan',502,1566909903,'<a href=\"http://kingsvillelivestock.com/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-FAAAAAA',0,'wfplugin_scan',502,1565575563,'<a href=\"http://kingsvillelivestock.com/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-FYAAAAA',0,'wfplugin_updates',502,1566909900,'<a href=\"http://kingsvillelivestock.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-GAAAAAA',0,'wfplugin_updates',502,1568773006,'<a href=\"http://kingsvillelivestock.com/wp-admin/update-core.php\">Updates are available for WordPress (v5.2.3) and 1 plugin</a>','[]'),('site-GEAAAAA',0,'wfplugin_scan',502,1568773010,'<a href=\"http://kingsvillelivestock.com/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-GIAAAAA',0,'wfplugin_updates',502,1571244863,'<a href=\"http://kingsvillelivestock.com/wp-admin/update-core.php\">An update is available for WordPress (v5.2.4)</a>','[]'),('site-GMAAAAA',0,'wfplugin_updates',502,1574433996,'<a href=\"http://kingsvillelivestock.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-GQAAAAA',0,'wfplugin_scan',502,1574433996,'<a href=\"http://kingsvillelivestock.com/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-IEAAAAA',0,'wfplugin_updates',502,1579202041,'<a href=\"http://kingsvillelivestock.com/wp-admin/update-core.php\">An update is available for 1 theme</a>','[]'),('site-IMAAAAA',0,'wfplugin_scan',502,1579202046,'<a href=\"http://kingsvillelivestock.com/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-IYFAAAA',1,'wfplugin_updates',502,1701275645,'<a href=\"https://kingsvillelivestock.com/wp-admin/update-core.php\">Updates are available for WordPress (v6.4.1) and 7 plugins</a>','[]'),('site-K4AAAAA',0,'wfplugin_scan',502,1579895921,'<a href=\"http://kingsvillelivestock.com/wp-admin/admin.php?page=WordfenceScan\">1 issue found in most recent scan</a>','[]'),('site-KYAAAAA',0,'wfplugin_updates',502,1579895920,'<a href=\"http://kingsvillelivestock.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-LQAAAAA',0,'wfplugin_scan',502,1695918773,'<a href=\"https://kingsvillelivestock.com/wp-admin/admin.php?page=WordfenceScan\">9 issues found in most recent scan</a>','[]'),('site-MEAAAAA',0,'wfplugin_updates',502,1584534106,'<a href=\"http://kingsvillelivestock.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-MEDAAAA',0,'wfplugin_updates',502,1641918746,'<a href=\"http://kingsvillelivestock.com/wp-admin/update-core.php\">An update is available for WordPress (v5.8.3)</a>','[]'),('site-TIAQAAA',0,'wfplugin_updates',502,1589829872,'<a href=\"http://kingsvillelivestock.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]'),('site-TQJAAAA',1,'wfplugin_scan',502,1701275647,'<a href=\"https://kingsvillelivestock.com/wp-admin/admin.php?page=WordfenceScan\">9 issues found in most recent scan</a>','[]'),('site-ZEBQAAA',0,'wfplugin_updates',502,1618229359,'<a href=\"https://kingsvillelivestock.com/wp-admin/update-core.php\">An update is available for 1 plugin</a>','[]');
/*!40000 ALTER TABLE `b78GM7Ml_wfnotifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_wfpendingissues`
--

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

--
-- Dumping data for table `b78GM7Ml_wfpendingissues`
--

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

--
-- Table structure for table `b78GM7Ml_wfreversecache`
--

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

--
-- Dumping data for table `b78GM7Ml_wfreversecache`
--

LOCK TABLES `b78GM7Ml_wfreversecache` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_wfreversecache` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_wfreversecache` VALUES ('\0\0\0\0\0\0\0\0\0\0ÿÿBùI	','crawl-66-249-73-9.googlebot.com',1701215260);
/*!40000 ALTER TABLE `b78GM7Ml_wfreversecache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_wfsnipcache`
--

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

--
-- Dumping data for table `b78GM7Ml_wfsnipcache`
--

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

--
-- Table structure for table `b78GM7Ml_wfstatus`
--

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

--
-- Dumping data for table `b78GM7Ml_wfstatus`
--

LOCK TABLES `b78GM7Ml_wfstatus` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_wfstatus` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_wfstatus` VALUES (200602,1700630815.770349,2,'info','Scanned contents of 2829 additional files at 16.72 per second'),(200603,1700630816.775307,2,'info','Scanned contents of 2847 additional files at 16.73 per second'),(200604,1700630818.037660,2,'info','Scanned contents of 2875 additional files at 16.77 per second'),(200605,1700630819.062916,2,'info','Scanned contents of 2891 additional files at 16.76 per second'),(200606,1700630820.074473,2,'info','Scanned contents of 2908 additional files at 16.76 per second'),(200607,1700630821.465734,2,'info','Scanned contents of 2915 additional files at 16.67 per second'),(200608,1700630822.658746,2,'info','Scanned contents of 2934 additional files at 16.66 per second'),(200609,1700630823.687202,2,'info','Scanned contents of 2953 additional files at 16.67 per second'),(200610,1700630824.696120,2,'info','Scanned contents of 2980 additional files at 16.73 per second'),(200611,1700630826.190220,2,'info','Scanned contents of 2990 additional files at 16.64 per second'),(200612,1700630827.232907,2,'info','Scanned contents of 3003 additional files at 16.62 per second'),(200613,1700630828.261359,2,'info','Scanned contents of 3020 additional files at 16.62 per second'),(200614,1700630829.275008,2,'info','Scanned contents of 3038 additional files at 16.63 per second'),(200615,1700630830.285912,2,'info','Scanned contents of 3058 additional files at 16.64 per second'),(200616,1700630831.287612,2,'info','Scanned contents of 3076 additional files at 16.65 per second'),(200617,1700630832.298604,2,'info','Scanned contents of 3094 additional files at 16.66 per second'),(200618,1700630833.331533,2,'info','Scanned contents of 3116 additional files at 16.68 per second'),(200619,1700630834.366789,2,'info','Scanned contents of 3136 additional files at 16.70 per second'),(200620,1700630835.434466,2,'info','Scanned contents of 3161 additional files at 16.74 per second'),(200621,1700630836.438264,2,'info','Scanned contents of 3187 additional files at 16.78 per second'),(200622,1700630837.482463,2,'info','Scanned contents of 3213 additional files at 16.83 per second'),(200623,1700630838.513563,2,'info','Scanned contents of 3215 additional files at 16.75 per second'),(200624,1700630839.728837,2,'info','Scanned contents of 3234 additional files at 16.74 per second'),(200625,1700630840.739218,2,'info','Scanned contents of 3250 additional files at 16.74 per second'),(200626,1700630841.799169,2,'info','Scanned contents of 3267 additional files at 16.73 per second'),(200627,1700630843.532863,2,'info','Scanned contents of 3273 additional files at 16.62 per second'),(200628,1700630844.889314,2,'info','Scanned contents of 3296 additional files at 16.62 per second'),(200629,1700630845.914923,2,'info','Scanned contents of 3313 additional files at 16.62 per second'),(200630,1700630846.966814,2,'info','Scanned contents of 3338 additional files at 16.66 per second'),(200631,1700630848.009699,2,'info','Scanned contents of 3362 additional files at 16.69 per second'),(200632,1700630849.024883,2,'info','Scanned contents of 3386 additional files at 16.72 per second'),(200633,1700630850.027911,2,'info','Scanned contents of 3404 additional files at 16.73 per second'),(200634,1700630851.079264,2,'info','Scanned contents of 3427 additional files at 16.76 per second'),(200635,1700630852.151302,2,'info','Scanned contents of 3451 additional files at 16.79 per second'),(200636,1700630853.188552,2,'info','Scanned contents of 3477 additional files at 16.83 per second'),(200637,1700630854.290378,2,'info','Scanned contents of 3505 additional files at 16.87 per second'),(200638,1700630855.357643,2,'info','Scanned contents of 3532 additional files at 16.92 per second'),(200639,1700630856.397215,2,'info','Scanned contents of 3551 additional files at 16.92 per second'),(200640,1700630857.445254,2,'info','Scanned contents of 3567 additional files at 16.91 per second'),(200641,1700630861.068818,2,'info','Scanned contents of 3585 additional files at 16.71 per second'),(200642,1700630862.706242,2,'info','Scanned contents of 3602 additional files at 16.66 per second'),(200643,1700630863.737861,2,'info','Scanned contents of 3627 additional files at 16.70 per second'),(200644,1700630865.476620,2,'info','Scanned contents of 3632 additional files at 16.59 per second'),(200645,1700630866.535577,2,'info','Scanned contents of 3645 additional files at 16.57 per second'),(200646,1700630867.572310,2,'info','Scanned contents of 3660 additional files at 16.56 per second'),(200647,1700630868.575949,2,'info','Scanned contents of 3679 additional files at 16.57 per second'),(200648,1700630869.618789,2,'info','Scanned contents of 3697 additional files at 16.57 per second'),(200649,1700630870.625084,2,'info','Scanned contents of 3718 additional files at 16.59 per second'),(200650,1700630871.688910,2,'info','Scanned contents of 3738 additional files at 16.60 per second'),(200651,1700630872.719359,2,'info','Scanned contents of 3755 additional files at 16.60 per second'),(200652,1700630873.754061,2,'info','Scanned contents of 3777 additional files at 16.62 per second'),(200653,1700630874.764427,2,'info','Scanned contents of 3801 additional files at 16.66 per second'),(200654,1700630875.765139,2,'info','Scanned contents of 3818 additional files at 16.66 per second'),(200655,1700630877.578212,2,'info','Scanned contents of 3824 additional files at 16.55 per second'),(200656,1700630878.592886,2,'info','Scanned contents of 3843 additional files at 16.56 per second'),(200657,1700630879.598975,2,'info','Scanned contents of 3865 additional files at 16.58 per second'),(200658,1700630880.704011,2,'info','Scanned contents of 3890 additional files at 16.61 per second'),(200659,1700630881.838696,2,'info','Scanned contents of 3902 additional files at 16.58 per second'),(200660,1700630882.859615,2,'info','Scanned contents of 3926 additional files at 16.61 per second'),(200661,1700630884.682596,2,'info','Scanned contents of 3942 additional files at 16.55 per second'),(200662,1700630886.212020,2,'info','Scanned contents of 3962 additional files at 16.53 per second'),(200663,1700630887.243772,2,'info','Scanned contents of 3980 additional files at 16.54 per second'),(200664,1700630888.283348,2,'info','Scanned contents of 4000 additional files at 16.55 per second'),(200665,1700630889.301397,2,'info','Scanned contents of 4019 additional files at 16.56 per second'),(200666,1700630890.313255,2,'info','Scanned contents of 4030 additional files at 16.53 per second'),(200667,1700630891.363136,2,'info','Scanned contents of 4041 additional files at 16.51 per second'),(200668,1700630892.375673,2,'info','Scanned contents of 4058 additional files at 16.51 per second'),(200669,1700630894.340383,2,'info','Scanned contents of 4071 additional files at 16.43 per second'),(200670,1700630895.362278,2,'info','Scanned contents of 4091 additional files at 16.44 per second'),(200671,1700630896.486422,2,'info','Scanned contents of 4107 additional files at 16.43 per second'),(200672,1700630897.510062,2,'info','Scanned contents of 4131 additional files at 16.46 per second'),(200673,1700630898.525126,2,'info','Scanned contents of 4151 additional files at 16.47 per second'),(200674,1700630899.535057,2,'info','Scanned contents of 4166 additional files at 16.47 per second'),(200675,1700630900.606430,2,'info','Scanned contents of 4187 additional files at 16.48 per second'),(200676,1700630901.680279,2,'info','Scanned contents of 4210 additional files at 16.50 per second'),(200677,1700630902.703689,2,'info','Scanned contents of 4235 additional files at 16.53 per second'),(200678,1700630903.927093,2,'info','Scanned contents of 4256 additional files at 16.54 per second'),(200679,1700630905.070862,2,'info','Scanned contents of 4279 additional files at 16.55 per second'),(200680,1700630906.758927,2,'info','Scanned contents of 4291 additional files at 16.49 per second'),(200681,1700630908.659405,2,'info','Scanned contents of 4297 additional files at 16.39 per second'),(200682,1700630909.662017,2,'info','Scanned contents of 4325 additional files at 16.44 per second'),(200683,1700630911.353846,2,'info','Scanned contents of 4330 additional files at 16.35 per second'),(200684,1700630912.287138,2,'info','Scanned contents of 4345 additional files at 16.35 per second'),(200685,1700630912.287411,2,'info','Asking Wordfence to check URLs against malware list.'),(200686,1700630912.298089,2,'info','Checking 8814 host keys against Wordfence scanning servers.'),(200687,1700630912.815307,2,'info','Done host key check.'),(200688,1700630912.820434,2,'info','Done file contents scan'),(200694,1700630912.948930,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(200695,1700630912.951645,2,'info','Checking 18 host keys against Wordfence scanning servers.'),(200696,1700630913.300967,2,'info','Done host key check.'),(200697,1700630913.301488,2,'info','Done examining URLs'),(200702,1700630913.312127,2,'info','Starting password strength check on 2 users.'),(200709,1700630917.000974,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(200710,1700630917.001654,2,'info','Done examining URLs'),(200712,1700630917.005295,1,'info','-------------------'),(200713,1700630917.005691,2,'info','Wordfence used 24.45 MB of memory for scan. Server peak memory usage was: 62.45 MB'),(200714,1700630917.005921,1,'info','Scan Complete. Scanned 9508 files, 13 plugins, 1 themes, 205 posts, 0 comments and 10108 URLs in 4 minutes 55 seconds.'),(200717,1700671739.806857,1,'info','Initiating quick scan'),(200722,1700671739.832021,1,'info','-------------------'),(200723,1700671739.832462,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(200724,1700671739.832625,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(200727,1700757423.869890,1,'info','Initiating quick scan'),(200732,1700757423.898386,1,'info','-------------------'),(200733,1700757423.899003,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(200734,1700757423.899291,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(200737,1700843759.362520,1,'info','Initiating quick scan'),(200742,1700843759.393950,1,'info','-------------------'),(200743,1700843759.394708,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 4 MB'),(200744,1700843759.394937,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(200746,1700889035.609591,1,'info','Scheduled Wordfence scan starting at Saturday 25th of November 2023 05:10:35 AM'),(200748,1700889036.663001,1,'info','Contacting Wordfence to initiate scan'),(200755,1700889043.093030,2,'info','Total disk space: 393.6 GB -- Free disk space: 297.67 GB'),(200756,1700889043.093365,2,'info','The disk has 304816.85 MB available'),(200760,1700889043.101937,10,'info','SUM_START:Checking for future GeoIP support'),(200761,1700889043.103829,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(200762,1700889043.107260,10,'info','SUM_START:Checking for paths skipped due to scan settings'),(200763,1700889043.112701,10,'info','SUM_ENDBAD:Checking for paths skipped due to scan settings'),(200764,1700889043.115710,2,'info','Getting plugin list from WordPress'),(200765,1700889043.129115,2,'info','Found 13 plugins'),(200766,1700889043.129481,2,'info','Getting theme list from WordPress'),(200767,1700889043.133293,2,'info','Found 1 theme'),(200768,1700889043.138404,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(200769,1700889043.862713,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(200770,1700889043.865113,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(200771,1700889043.867001,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(200772,1700889043.868663,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(200773,1700889043.869370,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(200774,1700889043.871351,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(200775,1700889043.872744,10,'info','SUM_DISABLED:Skipping theme scan'),(200776,1700889043.873097,10,'info','SUM_DISABLED:Skipping plugin scan'),(200777,1700889043.874043,10,'info','SUM_START:Scanning for known malware files'),(200778,1700889043.875912,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(200779,1700889043.917363,2,'info','500 files indexed'),(200780,1700889044.122870,2,'info','1000 files indexed'),(200781,1700889044.264076,2,'info','1500 files indexed'),(200782,1700889044.358853,2,'info','2000 files indexed'),(200783,1700889044.448049,2,'info','2500 files indexed'),(200784,1700889044.557599,2,'info','3000 files indexed'),(200785,1700889044.656465,2,'info','3500 files indexed'),(200786,1700889044.727922,2,'info','4000 files indexed'),(200787,1700889044.806962,2,'info','4500 files indexed'),(200788,1700889044.892901,2,'info','5000 files indexed'),(200789,1700889044.983056,2,'info','5500 files indexed'),(200790,1700889045.155886,2,'info','6000 files indexed'),(200791,1700889045.253283,2,'info','6500 files indexed'),(200792,1700889045.356744,2,'info','7000 files indexed'),(200793,1700889045.482314,2,'info','7500 files indexed'),(200794,1700889045.928445,2,'info','8000 files indexed'),(200795,1700889045.974116,2,'info','8500 files indexed'),(200796,1700889046.014628,2,'info','9000 files indexed'),(200797,1700889046.074698,2,'info','9500 files indexed'),(200798,1700889046.075693,2,'info','9508 files indexed'),(200799,1700889046.190862,2,'info','Analyzed 100 files containing 1.67 MB of data so far'),(200800,1700889046.291513,2,'info','Analyzed 200 files containing 2.81 MB of data so far'),(200801,1700889046.403901,2,'info','Analyzed 300 files containing 4.05 MB of data so far'),(200802,1700889046.630638,2,'info','Analyzed 400 files containing 6.81 MB of data so far'),(200803,1700889046.758115,2,'info','Analyzed 500 files containing 7.68 MB of data so far'),(200804,1700889046.965900,2,'info','Analyzed 600 files containing 20.38 MB of data so far'),(200805,1700889047.083629,2,'info','Analyzed 700 files containing 22.28 MB of data so far'),(200806,1700889047.185141,2,'info','Analyzed 800 files containing 23.43 MB of data so far'),(200807,1700889047.307236,2,'info','Analyzed 900 files containing 26.46 MB of data so far'),(200808,1700889047.446370,2,'info','Analyzed 1000 files containing 29.93 MB of data so far'),(200809,1700889047.577461,2,'info','Analyzed 1100 files containing 31.66 MB of data so far'),(200810,1700889047.694679,2,'info','Analyzed 1200 files containing 32.34 MB of data so far'),(200811,1700889047.797146,2,'info','Analyzed 1300 files containing 32.69 MB of data so far'),(200812,1700889047.931524,2,'info','Analyzed 1400 files containing 34.03 MB of data so far'),(200813,1700889048.034158,2,'info','Analyzed 1500 files containing 35.47 MB of data so far'),(200814,1700889048.156000,2,'info','Analyzed 1600 files containing 37.31 MB of data so far'),(200815,1700889048.255185,2,'info','Analyzed 1700 files containing 37.79 MB of data so far'),(200816,1700889048.359492,2,'info','Analyzed 1800 files containing 38.03 MB of data so far'),(200817,1700889048.470493,2,'info','Analyzed 1900 files containing 38.12 MB of data so far'),(200818,1700889048.593200,2,'info','Analyzed 2000 files containing 39.84 MB of data so far'),(200819,1700889048.757943,2,'info','Analyzed 2100 files containing 44.9 MB of data so far'),(200820,1700889048.867122,2,'info','Analyzed 2200 files containing 45.87 MB of data so far'),(200821,1700889048.988076,2,'info','Analyzed 2300 files containing 47.77 MB of data so far'),(200822,1700889049.114896,2,'info','Analyzed 2400 files containing 48.9 MB of data so far'),(200823,1700889049.240476,2,'info','Analyzed 2500 files containing 49.44 MB of data so far'),(200824,1700889049.349989,2,'info','Analyzed 2600 files containing 49.53 MB of data so far'),(200825,1700889049.461672,2,'info','Analyzed 2700 files containing 50.12 MB of data so far'),(200826,1700889049.569485,2,'info','Analyzed 2800 files containing 50.44 MB of data so far'),(200827,1700889049.672620,2,'info','Analyzed 2900 files containing 50.75 MB of data so far'),(200828,1700889049.779217,2,'info','Analyzed 3000 files containing 51.29 MB of data so far'),(200829,1700889049.887411,2,'info','Analyzed 3100 files containing 52.19 MB of data so far'),(200830,1700889050.002351,2,'info','Analyzed 3200 files containing 52.43 MB of data so far'),(200831,1700889050.121259,2,'info','Analyzed 3300 files containing 52.96 MB of data so far'),(200832,1700889050.240054,2,'info','Analyzed 3400 files containing 54.08 MB of data so far'),(200833,1700889050.351115,2,'info','Analyzed 3500 files containing 55.91 MB of data so far'),(200834,1700889050.510383,2,'info','Analyzed 3600 files containing 61.88 MB of data so far'),(200835,1700889050.624498,2,'info','Analyzed 3700 files containing 63.6 MB of data so far'),(200836,1700889050.727249,2,'info','Analyzed 3800 files containing 64.52 MB of data so far'),(200837,1700889050.833350,2,'info','Analyzed 3900 files containing 65.52 MB of data so far'),(200838,1700889050.937340,2,'info','Analyzed 4000 files containing 66.02 MB of data so far'),(200839,1700889051.057831,2,'info','Analyzed 4100 files containing 66.35 MB of data so far'),(200840,1700889051.156160,2,'info','Analyzed 4200 files containing 66.54 MB of data so far'),(200841,1700889051.256464,2,'info','Analyzed 4300 files containing 67.83 MB of data so far'),(200842,1700889051.348361,2,'info','Analyzed 4400 files containing 68.84 MB of data so far'),(200843,1700889051.449478,2,'info','Analyzed 4500 files containing 70.31 MB of data so far'),(200844,1700889051.572744,2,'info','Analyzed 4600 files containing 71.6 MB of data so far'),(200845,1700889051.761009,2,'info','Analyzed 4700 files containing 72.63 MB of data so far'),(200846,1700889051.877341,2,'info','Analyzed 4800 files containing 73.1 MB of data so far'),(200847,1700889051.980567,2,'info','Analyzed 4900 files containing 73.51 MB of data so far'),(200848,1700889052.100928,2,'info','Analyzed 5000 files containing 73.96 MB of data so far'),(200849,1700889052.216170,2,'info','Analyzed 5100 files containing 74.32 MB of data so far'),(200850,1700889052.322133,2,'info','Analyzed 5200 files containing 74.75 MB of data so far'),(200851,1700889052.428159,2,'info','Analyzed 5300 files containing 75.33 MB of data so far'),(200852,1700889052.545246,2,'info','Analyzed 5400 files containing 77.32 MB of data so far'),(200853,1700889052.657082,2,'info','Analyzed 5500 files containing 78.24 MB of data so far'),(200854,1700889052.812327,2,'info','Analyzed 5600 files containing 85.1 MB of data so far'),(200855,1700889052.919911,2,'info','Analyzed 5700 files containing 86.94 MB of data so far'),(200856,1700889054.312270,2,'info','Analyzed 5800 files containing 90.75 MB of data so far'),(200857,1700889054.431859,2,'info','Analyzed 5900 files containing 91.98 MB of data so far'),(200858,1700889054.643458,2,'info','Analyzed 6000 files containing 102.1 MB of data so far'),(200859,1700889054.777729,2,'info','Analyzed 6100 files containing 103.58 MB of data so far'),(200860,1700889054.884050,2,'info','Analyzed 6200 files containing 104.51 MB of data so far'),(200861,1700889054.990652,2,'info','Analyzed 6300 files containing 105.64 MB of data so far'),(200862,1700889055.126815,2,'info','Analyzed 6400 files containing 108.37 MB of data so far'),(200863,1700889055.317905,2,'info','Analyzed 6500 files containing 113.83 MB of data so far'),(200864,1700889055.430429,2,'info','Analyzed 6600 files containing 114.73 MB of data so far'),(200865,1700889055.560850,2,'info','Analyzed 6700 files containing 116.92 MB of data so far'),(200866,1700889055.674551,2,'info','Analyzed 6800 files containing 117.73 MB of data so far'),(200867,1700889055.815877,2,'info','Analyzed 6900 files containing 118.26 MB of data so far'),(200868,1700889055.933564,2,'info','Analyzed 7000 files containing 118.39 MB of data so far'),(200869,1700889056.084483,2,'info','Analyzed 7100 files containing 118.94 MB of data so far'),(200870,1700889056.216641,2,'info','Analyzed 7200 files containing 119.28 MB of data so far'),(200871,1700889056.332308,2,'info','Analyzed 7300 files containing 119.58 MB of data so far'),(200872,1700889056.452183,2,'info','Analyzed 7400 files containing 120.5 MB of data so far'),(200873,1700889056.556213,2,'info','Analyzed 7500 files containing 120.93 MB of data so far'),(200874,1700889056.683018,2,'info','Analyzed 7600 files containing 121.19 MB of data so far'),(200875,1700889056.790249,2,'info','Analyzed 7700 files containing 121.79 MB of data so far'),(200876,1700889056.898368,2,'info','Analyzed 7800 files containing 122.35 MB of data so far'),(200877,1700889057.018093,2,'info','Analyzed 7900 files containing 126.06 MB of data so far'),(200878,1700889057.151131,2,'info','Analyzed 8000 files containing 126.81 MB of data so far'),(200879,1700889057.253764,2,'info','Analyzed 8100 files containing 127.06 MB of data so far'),(200880,1700889057.340956,2,'info','Analyzed 8200 files containing 127.21 MB of data so far'),(200881,1700889057.461681,2,'info','Analyzed 8300 files containing 127.32 MB of data so far'),(200882,1700889057.592891,2,'info','Analyzed 8400 files containing 127.55 MB of data so far'),(200883,1700889057.717622,2,'info','Analyzed 8500 files containing 129.24 MB of data so far'),(200884,1700889057.853563,2,'info','Analyzed 8600 files containing 132.39 MB of data so far'),(200885,1700889057.965849,2,'info','Analyzed 8700 files containing 133.37 MB of data so far'),(200886,1700889058.082934,2,'info','Analyzed 8800 files containing 135.28 MB of data so far'),(200887,1700889058.323419,2,'info','Analyzed 8900 files containing 145.65 MB of data so far'),(200888,1700889058.473802,2,'info','Analyzed 9000 files containing 149.1 MB of data so far'),(200889,1700889058.624413,2,'info','Analyzed 9100 files containing 151.06 MB of data so far'),(200890,1700889058.743146,2,'info','Analyzed 9200 files containing 153.29 MB of data so far'),(200891,1700889058.866980,2,'info','Analyzed 9300 files containing 157.02 MB of data so far'),(200892,1700889058.981158,2,'info','Analyzed 9400 files containing 158.28 MB of data so far'),(200893,1700889059.096627,2,'info','Analyzed 9500 files containing 160.06 MB of data so far'),(200894,1700889059.104301,2,'info','Analyzed 9508 files containing 160.18 MB of data.'),(200895,1700889059.104848,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(200896,1700889059.106521,10,'info','SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),(200897,1700889059.452181,10,'info','SUM_ENDOK:Scanning for known malware files'),(200898,1700889059.456365,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(200899,1700889059.465991,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(200900,1700889059.468557,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(200901,1700889059.469357,10,'info','SUM_START:Scanning file contents for URLs on a domain blocklist'),(200902,1700889060.443257,2,'info','Starting scan of file contents'),(200903,1700889061.445003,2,'info','Scanned contents of 23 additional files at 22.98 per second'),(200904,1700889062.479671,2,'info','Scanned contents of 44 additional files at 21.62 per second'),(200905,1700889063.487192,2,'info','Scanned contents of 66 additional files at 21.69 per second'),(200906,1700889064.492396,2,'info','Scanned contents of 87 additional files at 21.49 per second'),(200907,1700889065.563059,2,'info','Scanned contents of 111 additional files at 21.69 per second'),(200908,1700889066.574346,2,'info','Scanned contents of 129 additional files at 21.04 per second'),(200909,1700889067.609977,2,'info','Scanned contents of 152 additional files at 21.21 per second'),(200910,1700889068.660062,2,'info','Scanned contents of 169 additional files at 20.57 per second'),(200911,1700889069.684070,2,'info','Scanned contents of 198 additional files at 21.43 per second'),(200912,1700889071.230985,2,'info','Scanned contents of 207 additional files at 19.19 per second'),(200913,1700889072.250914,2,'info','Scanned contents of 227 additional files at 19.23 per second'),(200914,1700889073.283951,2,'info','Scanned contents of 246 additional files at 19.16 per second'),(200915,1700889074.311535,2,'info','Scanned contents of 266 additional files at 19.18 per second'),(200916,1700889075.372402,2,'info','Scanned contents of 280 additional files at 18.76 per second'),(200917,1700889077.954234,2,'info','Scanned contents of 301 additional files at 17.19 per second'),(200918,1700889078.996847,2,'info','Scanned contents of 322 additional files at 17.36 per second'),(200919,1700889080.253870,2,'info','Scanned contents of 343 additional files at 17.31 per second'),(200920,1700889081.254217,2,'info','Scanned contents of 364 additional files at 17.49 per second'),(200921,1700889082.268650,2,'info','Scanned contents of 384 additional files at 17.60 per second'),(200922,1700889083.278278,2,'info','Scanned contents of 412 additional files at 18.04 per second'),(200923,1700889084.285632,2,'info','Scanned contents of 434 additional files at 18.20 per second'),(200924,1700889085.289214,2,'info','Scanned contents of 464 additional files at 18.68 per second'),(200925,1700889086.312732,2,'info','Scanned contents of 487 additional files at 18.83 per second'),(200926,1700889088.385565,2,'info','Scanned contents of 501 additional files at 17.93 per second'),(200927,1700889089.394030,2,'info','Scanned contents of 525 additional files at 18.13 per second'),(200928,1700889090.785362,2,'info','Scanned contents of 545 additional files at 17.96 per second'),(200929,1700889091.907824,2,'info','Scanned contents of 571 additional files at 18.15 per second'),(200930,1700889094.190245,2,'info','Scanned contents of 577 additional files at 17.10 per second'),(200931,1700889095.208604,2,'info','Scanned contents of 600 additional files at 17.26 per second'),(200932,1700889098.818179,2,'info','Scanned contents of 626 additional files at 16.31 per second'),(200933,1700889100.069979,2,'info','Scanned contents of 645 additional files at 16.28 per second'),(200934,1700889101.112139,2,'info','Scanned contents of 663 additional files at 16.30 per second'),(200935,1700889102.118217,2,'info','Scanned contents of 673 additional files at 16.15 per second'),(200936,1700889103.522635,2,'info','Scanned contents of 695 additional files at 16.13 per second'),(200937,1700889105.423448,2,'info','Scanned contents of 709 additional files at 15.76 per second'),(200938,1700889106.447849,2,'info','Scanned contents of 723 additional files at 15.72 per second'),(200939,1700889107.455236,2,'info','Scanned contents of 742 additional files at 15.78 per second'),(200940,1700889108.483267,2,'info','Scanned contents of 749 additional files at 15.59 per second'),(200941,1700889109.497499,2,'info','Scanned contents of 777 additional files at 15.84 per second'),(200942,1700889110.521688,2,'info','Scanned contents of 799 additional files at 15.96 per second'),(200943,1700889111.523419,2,'info','Scanned contents of 825 additional files at 16.15 per second'),(200944,1700889112.533409,2,'info','Scanned contents of 854 additional files at 16.39 per second'),(200945,1700889113.540898,2,'info','Scanned contents of 885 additional files at 16.67 per second'),(200946,1700889114.570536,2,'info','Scanned contents of 896 additional files at 16.55 per second'),(200947,1700889115.655483,2,'info','Scanned contents of 924 additional files at 16.74 per second'),(200948,1700889116.854012,2,'info','Scanned contents of 933 additional files at 16.54 per second'),(200949,1700889117.899881,2,'info','Scanned contents of 962 additional files at 16.74 per second'),(200950,1700889119.373793,2,'info','Scanned contents of 972 additional files at 16.49 per second'),(200951,1700889120.391165,2,'info','Scanned contents of 996 additional files at 16.61 per second'),(200952,1700889122.214431,2,'info','Scanned contents of 1013 additional files at 16.40 per second'),(200953,1700889123.221944,2,'info','Scanned contents of 1034 additional files at 16.47 per second'),(200954,1700889124.234435,2,'info','Scanned contents of 1059 additional files at 16.60 per second'),(200955,1700889125.271693,2,'info','Scanned contents of 1082 additional files at 16.69 per second'),(200956,1700889126.275972,2,'info','Scanned contents of 1102 additional files at 16.74 per second'),(200957,1700889127.276545,2,'info','Scanned contents of 1125 additional files at 16.83 per second'),(200958,1700889128.289648,2,'info','Scanned contents of 1135 additional files at 16.73 per second'),(200959,1700889129.320367,2,'info','Scanned contents of 1164 additional files at 16.90 per second'),(200960,1700889130.322977,2,'info','Scanned contents of 1182 additional files at 16.92 per second'),(200961,1700889131.455856,2,'info','Scanned contents of 1207 additional files at 17.00 per second'),(200962,1700889132.497609,2,'info','Scanned contents of 1225 additional files at 17.00 per second'),(200963,1700889133.557272,2,'info','Scanned contents of 1249 additional files at 17.08 per second'),(200964,1700889135.747496,2,'info','Scanned contents of 1258 additional files at 16.71 per second'),(200965,1700889136.899501,2,'info','Scanned contents of 1278 additional files at 16.72 per second'),(200966,1700889137.999054,2,'info','Scanned contents of 1300 additional files at 16.76 per second'),(200967,1700889139.365528,2,'info','Scanned contents of 1301 additional files at 16.48 per second'),(200968,1700889140.412634,2,'info','Scanned contents of 1327 additional files at 16.59 per second'),(200969,1700889141.423594,2,'info','Scanned contents of 1350 additional files at 16.67 per second'),(200970,1700889142.496361,2,'info','Scanned contents of 1367 additional files at 16.66 per second'),(200971,1700889143.662751,2,'info','Scanned contents of 1389 additional files at 16.69 per second'),(200972,1700889144.729439,2,'info','Scanned contents of 1402 additional files at 16.63 per second'),(200973,1700889145.735436,2,'info','Scanned contents of 1427 additional files at 16.73 per second'),(200974,1700889146.849272,2,'info','Scanned contents of 1457 additional files at 16.86 per second'),(200975,1700889147.897836,2,'info','Scanned contents of 1478 additional files at 16.90 per second'),(200976,1700889148.987809,2,'info','Scanned contents of 1500 additional files at 16.94 per second'),(200977,1700889150.063609,2,'info','Scanned contents of 1512 additional files at 16.87 per second'),(200978,1700889151.077920,2,'info','Scanned contents of 1531 additional files at 16.89 per second'),(200979,1700889152.176944,2,'info','Scanned contents of 1551 additional files at 16.91 per second'),(200980,1700889153.194251,2,'info','Scanned contents of 1582 additional files at 17.06 per second'),(200981,1700889154.211847,2,'info','Scanned contents of 1599 additional files at 17.05 per second'),(200982,1700889156.318655,2,'info','Scanned contents of 1617 additional files at 16.87 per second'),(200983,1700889157.327785,2,'info','Scanned contents of 1632 additional files at 16.84 per second'),(200984,1700889158.346193,2,'info','Scanned contents of 1656 additional files at 16.91 per second'),(200985,1700889159.359722,2,'info','Scanned contents of 1674 additional files at 16.92 per second'),(200986,1700889160.365647,2,'info','Scanned contents of 1696 additional files at 16.97 per second'),(200987,1700889161.370198,2,'info','Scanned contents of 1718 additional files at 17.02 per second'),(200988,1700889162.400134,2,'info','Scanned contents of 1742 additional files at 17.09 per second'),(200989,1700889163.463540,2,'info','Scanned contents of 1757 additional files at 17.06 per second'),(200990,1700889164.530446,2,'info','Scanned contents of 1768 additional files at 16.99 per second'),(200991,1700889165.860579,2,'info','Scanned contents of 1785 additional files at 16.93 per second'),(200992,1700889166.874829,2,'info','Scanned contents of 1808 additional files at 16.99 per second'),(200993,1700889168.095221,2,'info','Scanned contents of 1832 additional files at 17.02 per second'),(200994,1700889169.116655,2,'info','Scanned contents of 1856 additional files at 17.08 per second'),(200995,1700889171.268446,2,'info','Scanned contents of 1877 additional files at 16.94 per second'),(200996,1700889173.482927,2,'info','Scanned contents of 1892 additional files at 16.74 per second'),(200997,1700889174.527156,2,'info','Scanned contents of 1919 additional files at 16.82 per second'),(200998,1700889175.547425,2,'info','Scanned contents of 1938 additional files at 16.84 per second'),(200999,1700889176.557427,2,'info','Scanned contents of 1962 additional files at 16.90 per second'),(201000,1700889177.559861,2,'info','Scanned contents of 1986 additional files at 16.96 per second'),(201001,1700889178.617311,2,'info','Scanned contents of 2008 additional files at 16.99 per second'),(201002,1700889181.126638,2,'info','Scanned contents of 2042 additional files at 16.92 per second'),(201003,1700889182.151223,2,'info','Scanned contents of 2068 additional files at 16.99 per second'),(201004,1700889183.169464,2,'info','Scanned contents of 2092 additional files at 17.05 per second'),(201005,1700889184.209802,2,'info','Scanned contents of 2110 additional files at 17.05 per second'),(201006,1700889186.893810,2,'info','Scanned contents of 2126 additional files at 16.81 per second'),(201007,1700889187.894585,2,'info','Scanned contents of 2146 additional files at 16.84 per second'),(201008,1700889188.903142,2,'info','Scanned contents of 2171 additional files at 16.90 per second'),(201009,1700889190.319819,2,'info','Scanned contents of 2175 additional files at 16.75 per second'),(201010,1700889191.342931,2,'info','Scanned contents of 2198 additional files at 16.79 per second'),(201011,1700889192.417054,2,'info','Scanned contents of 2219 additional files at 16.81 per second'),(201012,1700889193.439123,2,'info','Scanned contents of 2242 additional files at 16.86 per second'),(201013,1700889194.480888,2,'info','Scanned contents of 2269 additional files at 16.93 per second'),(201014,1700889195.487380,2,'info','Scanned contents of 2285 additional files at 16.92 per second'),(201015,1700889196.521332,2,'info','Scanned contents of 2303 additional files at 16.92 per second'),(201016,1700889198.174527,2,'info','Scanned contents of 2309 additional files at 16.76 per second'),(201017,1700889199.202510,2,'info','Scanned contents of 2327 additional files at 16.77 per second'),(201018,1700889200.210710,2,'info','Scanned contents of 2346 additional files at 16.79 per second'),(201019,1700889201.291431,2,'info','Scanned contents of 2378 additional files at 16.88 per second'),(201020,1700889202.307112,2,'info','Scanned contents of 2405 additional files at 16.95 per second'),(201021,1700889203.361641,2,'info','Scanned contents of 2416 additional files at 16.90 per second'),(201022,1700889204.385547,2,'info','Scanned contents of 2429 additional files at 16.87 per second'),(201023,1700889205.396109,2,'info','Scanned contents of 2444 additional files at 16.86 per second'),(201024,1700889207.332538,2,'info','Scanned contents of 2459 additional files at 16.74 per second'),(201025,1700889208.338840,2,'info','Scanned contents of 2481 additional files at 16.78 per second'),(201026,1700889209.632514,2,'info','Scanned contents of 2501 additional files at 16.76 per second'),(201027,1700889210.636126,2,'info','Scanned contents of 2526 additional files at 16.82 per second'),(201028,1700889211.642515,2,'info','Scanned contents of 2554 additional files at 16.89 per second'),(201029,1700889212.721689,2,'info','Scanned contents of 2574 additional files at 16.90 per second'),(201030,1700889213.738231,2,'info','Scanned contents of 2600 additional files at 16.96 per second'),(201031,1700889215.672004,2,'info','Scanned contents of 2619 additional files at 16.87 per second'),(201032,1700889217.178699,2,'info','Scanned contents of 2632 additional files at 16.79 per second'),(201033,1700889218.187440,2,'info','Scanned contents of 2650 additional files at 16.80 per second'),(201034,1700889219.209247,2,'info','Scanned contents of 2671 additional files at 16.82 per second'),(201035,1700889220.222951,2,'info','Scanned contents of 2697 additional files at 16.88 per second'),(201036,1700889221.324236,2,'info','Scanned contents of 2710 additional files at 16.84 per second'),(201037,1700889222.403467,2,'info','Scanned contents of 2724 additional files at 16.82 per second'),(201038,1700889224.811736,2,'info','Scanned contents of 2736 additional files at 16.65 per second'),(201039,1700889225.847262,2,'info','Scanned contents of 2758 additional files at 16.67 per second'),(201040,1700889226.940488,2,'info','Scanned contents of 2777 additional files at 16.68 per second'),(201041,1700889227.940514,2,'info','Scanned contents of 2807 additional files at 16.76 per second'),(201042,1700889228.962732,2,'info','Scanned contents of 2829 additional files at 16.79 per second'),(201043,1700889229.987125,2,'info','Scanned contents of 2846 additional files at 16.79 per second'),(201044,1700889231.008113,2,'info','Scanned contents of 2874 additional files at 16.85 per second'),(201045,1700889232.033627,2,'info','Scanned contents of 2888 additional files at 16.83 per second'),(201046,1700889233.092035,2,'info','Scanned contents of 2905 additional files at 16.83 per second'),(201047,1700889234.730007,2,'info','Scanned contents of 2915 additional files at 16.73 per second'),(201048,1700889235.872711,2,'info','Scanned contents of 2934 additional files at 16.72 per second'),(201049,1700889236.888251,2,'info','Scanned contents of 2953 additional files at 16.74 per second'),(201050,1700889237.888283,2,'info','Scanned contents of 2981 additional files at 16.80 per second'),(201051,1700889238.905488,2,'info','Scanned contents of 3001 additional files at 16.82 per second'),(201052,1700889239.927000,2,'info','Scanned contents of 3016 additional files at 16.80 per second'),(201053,1700889241.286898,2,'info','Scanned contents of 3018 additional files at 16.69 per second'),(201054,1700889242.320906,2,'info','Scanned contents of 3034 additional files at 16.68 per second'),(201055,1700889243.337875,2,'info','Scanned contents of 3055 additional files at 16.70 per second'),(201056,1700889244.368998,2,'info','Scanned contents of 3075 additional files at 16.72 per second'),(201057,1700889245.406205,2,'info','Scanned contents of 3091 additional files at 16.71 per second'),(201058,1700889246.462555,2,'info','Scanned contents of 3114 additional files at 16.74 per second'),(201059,1700889247.475483,2,'info','Scanned contents of 3137 additional files at 16.77 per second'),(201060,1700889248.483995,2,'info','Scanned contents of 3162 additional files at 16.82 per second'),(201061,1700889249.490195,2,'info','Scanned contents of 3187 additional files at 16.86 per second'),(201062,1700889250.503242,2,'info','Scanned contents of 3211 additional files at 16.89 per second'),(201063,1700889251.549257,2,'info','Scanned contents of 3214 additional files at 16.82 per second'),(201064,1700889252.564574,2,'info','Scanned contents of 3232 additional files at 16.82 per second'),(201065,1700889253.566852,2,'info','Scanned contents of 3243 additional files at 16.79 per second'),(201066,1700889254.618264,2,'info','Scanned contents of 3263 additional files at 16.80 per second'),(201067,1700889255.704130,2,'info','Scanned contents of 3282 additional files at 16.81 per second'),(201068,1700889256.791713,2,'info','Scanned contents of 3297 additional files at 16.79 per second'),(201069,1700889258.292738,2,'info','Scanned contents of 3303 additional files at 16.69 per second'),(201070,1700889259.359839,2,'info','Scanned contents of 3319 additional files at 16.69 per second'),(201071,1700889260.376939,2,'info','Scanned contents of 3345 additional files at 16.73 per second'),(201072,1700889261.529881,2,'info','Scanned contents of 3370 additional files at 16.76 per second'),(201073,1700889262.616130,2,'info','Scanned contents of 3391 additional files at 16.77 per second'),(201074,1700889263.785461,2,'info','Scanned contents of 3414 additional files at 16.79 per second'),(201075,1700889264.797285,2,'info','Scanned contents of 3443 additional files at 16.85 per second'),(201076,1700889265.847933,2,'info','Scanned contents of 3464 additional files at 16.86 per second'),(201077,1700889266.852533,2,'info','Scanned contents of 3488 additional files at 16.90 per second'),(201078,1700889267.853420,2,'info','Scanned contents of 3515 additional files at 16.95 per second'),(201079,1700889268.884327,2,'info','Scanned contents of 3543 additional files at 17.00 per second'),(201080,1700889269.928727,2,'info','Scanned contents of 3553 additional files at 16.96 per second'),(201081,1700889270.932108,2,'info','Scanned contents of 3577 additional files at 16.99 per second'),(201082,1700889272.897896,2,'info','Scanned contents of 3585 additional files at 16.87 per second'),(201083,1700889273.906698,2,'info','Scanned contents of 3601 additional files at 16.87 per second'),(201084,1700889276.009499,2,'info','Scanned contents of 3602 additional files at 16.71 per second'),(201085,1700889277.047892,2,'info','Scanned contents of 3627 additional files at 16.74 per second'),(201086,1700889278.811699,2,'info','Scanned contents of 3632 additional files at 16.63 per second'),(201087,1700889279.883507,2,'info','Scanned contents of 3645 additional files at 16.61 per second'),(201088,1700889280.899627,2,'info','Scanned contents of 3661 additional files at 16.61 per second'),(201089,1700889281.909541,2,'info','Scanned contents of 3679 additional files at 16.61 per second'),(201090,1700889282.941455,2,'info','Scanned contents of 3696 additional files at 16.61 per second'),(201091,1700889283.964545,2,'info','Scanned contents of 3716 additional files at 16.62 per second'),(201092,1700889285.027613,2,'info','Scanned contents of 3735 additional files at 16.63 per second'),(201093,1700889286.052411,2,'info','Scanned contents of 3751 additional files at 16.63 per second'),(201094,1700889287.058411,2,'info','Scanned contents of 3772 additional files at 16.65 per second'),(201095,1700889288.069772,2,'info','Scanned contents of 3791 additional files at 16.65 per second'),(201096,1700889289.169650,2,'info','Scanned contents of 3812 additional files at 16.67 per second'),(201097,1700889290.186113,2,'info','Scanned contents of 3835 additional files at 16.69 per second'),(201098,1700889292.397669,2,'info','Scanned contents of 3848 additional files at 16.59 per second'),(201099,1700889293.404709,2,'info','Scanned contents of 3871 additional files at 16.62 per second'),(201100,1700889294.408615,2,'info','Scanned contents of 3891 additional files at 16.63 per second'),(201101,1700889295.465320,2,'info','Scanned contents of 3903 additional files at 16.61 per second'),(201102,1700889296.482385,2,'info','Scanned contents of 3930 additional files at 16.65 per second'),(201103,1700889298.104773,2,'info','Scanned contents of 3942 additional files at 16.59 per second'),(201104,1700889299.606933,2,'info','Scanned contents of 3962 additional files at 16.57 per second'),(201105,1700889300.616107,2,'info','Scanned contents of 3979 additional files at 16.57 per second'),(201106,1700889301.658729,2,'info','Scanned contents of 3998 additional files at 16.57 per second'),(201107,1700889302.684665,2,'info','Scanned contents of 4014 additional files at 16.57 per second'),(201108,1700889303.706902,2,'info','Scanned contents of 4027 additional files at 16.55 per second'),(201109,1700889304.723490,2,'info','Scanned contents of 4040 additional files at 16.54 per second'),(201110,1700889305.724208,2,'info','Scanned contents of 4054 additional files at 16.53 per second'),(201111,1700889306.732167,2,'info','Scanned contents of 4074 additional files at 16.54 per second'),(201112,1700889307.817502,2,'info','Scanned contents of 4093 additional files at 16.55 per second'),(201113,1700889309.247199,2,'info','Scanned contents of 4097 additional files at 16.47 per second'),(201114,1700889310.285346,2,'info','Scanned contents of 4117 additional files at 16.48 per second'),(201115,1700889311.294821,2,'info','Scanned contents of 4135 additional files at 16.48 per second'),(201116,1700889312.298627,2,'info','Scanned contents of 4157 additional files at 16.51 per second'),(201117,1700889313.337435,2,'info','Scanned contents of 4170 additional files at 16.49 per second'),(201118,1700889314.348324,2,'info','Scanned contents of 4193 additional files at 16.51 per second'),(201119,1700889315.361651,2,'info','Scanned contents of 4214 additional files at 16.53 per second'),(201120,1700889316.368855,2,'info','Scanned contents of 4240 additional files at 16.57 per second'),(201121,1700889317.445761,2,'info','Scanned contents of 4256 additional files at 16.56 per second'),(201122,1700889318.577502,2,'info','Scanned contents of 4279 additional files at 16.58 per second'),(201123,1700889320.277723,2,'info','Scanned contents of 4291 additional files at 16.51 per second'),(201124,1700889322.183311,2,'info','Scanned contents of 4297 additional files at 16.42 per second'),(201125,1700889323.233991,2,'info','Scanned contents of 4326 additional files at 16.46 per second'),(201126,1700889324.261341,2,'info','Scanned contents of 4342 additional files at 16.46 per second'),(201127,1700889324.471657,2,'info','Scanned contents of 4345 additional files at 16.46 per second'),(201128,1700889324.471864,2,'info','Asking Wordfence to check URLs against malware list.'),(201129,1700889324.482277,2,'info','Checking 8814 host keys against Wordfence scanning servers.'),(201130,1700889325.020402,2,'info','Done host key check.'),(201131,1700889326.160693,2,'info','Done file contents scan'),(201132,1700889326.162070,10,'info','SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),(201133,1700889326.164315,10,'info','SUM_ENDOK:Scanning file contents for URLs on a domain blocklist'),(201134,1700889326.167255,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(201135,1700889326.168514,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(201136,1700889326.171240,10,'info','SUM_START:Scanning posts for URLs on a domain blocklist'),(201137,1700889326.298590,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(201138,1700889326.299003,2,'info','Checking 18 host keys against Wordfence scanning servers.'),(201139,1700889326.718729,2,'info','Done host key check.'),(201140,1700889326.719333,2,'info','Done examining URLs'),(201141,1700889326.720619,10,'info','SUM_ENDOK:Scanning posts for URLs on a domain blocklist'),(201142,1700889326.723761,10,'info','SUM_START:Scanning comments for URLs on a domain blocklist'),(201143,1700889326.727158,10,'info','SUM_ENDOK:Scanning comments for URLs on a domain blocklist'),(201144,1700889326.730028,10,'info','SUM_START:Scanning for weak passwords'),(201145,1700889326.731295,2,'info','Starting password strength check on 2 users.'),(201146,1700889326.737288,10,'info','SUM_ENDOK:Scanning for weak passwords'),(201147,1700889326.740035,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(201148,1700889329.974263,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(201149,1700889329.978097,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(201150,1700889330.314351,10,'info','SUM_ENDOK:Scanning for admin users not created through WordPress'),(201151,1700889330.318263,10,'info','SUM_START:Scanning for suspicious site options'),(201152,1700889330.321234,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(201153,1700889330.321701,2,'info','Done examining URLs'),(201154,1700889330.322643,10,'info','SUM_ENDOK:Scanning for suspicious site options'),(201155,1700889330.324960,1,'info','-------------------'),(201156,1700889330.325286,2,'info','Wordfence used 24.45 MB of memory for scan. Server peak memory usage was: 62.45 MB'),(201157,1700889330.325498,1,'info','Scan Complete. Scanned 9508 files, 13 plugins, 1 themes, 206 posts, 0 comments and 10108 URLs in 4 minutes 53 seconds.'),(201158,1700889330.325709,10,'info','SUM_FINAL:Scan complete. You have 9 new issues to fix. See below.'),(201159,1701016366.983758,10,'info','SUM_PREP:Preparing a new scan.'),(201160,1701016366.985072,1,'info','Initiating quick scan'),(201161,1701016366.986451,10,'info','SUM_START:Checking Web Application Firewall status'),(201162,1701016366.986857,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(201163,1701016366.989253,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(201164,1701016367.015729,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(201165,1701016367.017679,1,'info','-------------------'),(201166,1701016367.018325,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 16 MB'),(201167,1701016367.018790,1,'info','Quick Scan Complete. Scanned in 1 second.'),(201168,1701016367.019051,10,'info','SUM_FINAL:Scan complete. You have 8 new issues to fix. See below.'),(201169,1701102958.033896,10,'info','SUM_PREP:Preparing a new scan.'),(201170,1701102958.034983,1,'info','Initiating quick scan'),(201171,1701102958.036241,10,'info','SUM_START:Checking Web Application Firewall status'),(201172,1701102958.036578,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(201173,1701102958.038395,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(201174,1701102958.060549,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(201175,1701102958.061773,1,'info','-------------------'),(201176,1701102958.062288,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(201177,1701102958.062552,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(201178,1701102958.062797,10,'info','SUM_FINAL:Scan complete. You have 8 new issues to fix. See below.'),(201179,1701148988.709620,1,'info','Scheduled Wordfence scan starting at Tuesday 28th of November 2023 05:23:08 AM'),(201180,1701148989.937699,10,'info','SUM_PREP:Preparing a new scan.'),(201181,1701148989.939378,1,'info','Contacting Wordfence to initiate scan'),(201182,1701148990.343079,10,'info','SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),(201183,1701148992.344760,10,'info','SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),(201184,1701148994.346402,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blocklist is for paid members only'),(201185,1701148996.349627,10,'info','SUM_START:Checking for the most secure way to get IPs'),(201186,1701148996.351839,10,'info','SUM_ENDOK:Checking for the most secure way to get IPs'),(201187,1701148996.355490,10,'info','SUM_START:Scanning to check available disk space'),(201188,1701148996.356955,2,'info','Total disk space: 393.6 GB -- Free disk space: 297.64 GB'),(201189,1701148996.357206,2,'info','The disk has 304785.8 MB available'),(201190,1701148996.357459,10,'info','SUM_ENDOK:Scanning to check available disk space'),(201191,1701148996.360633,10,'info','SUM_START:Checking Web Application Firewall status'),(201192,1701148996.362051,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(201193,1701148996.365303,10,'info','SUM_START:Checking for future GeoIP support'),(201194,1701148996.366679,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(201195,1701148996.370163,10,'info','SUM_START:Checking for paths skipped due to scan settings'),(201196,1701148996.374815,10,'info','SUM_ENDBAD:Checking for paths skipped due to scan settings'),(201197,1701148996.377382,2,'info','Getting plugin list from WordPress'),(201198,1701148996.387206,2,'info','Found 13 plugins'),(201199,1701148996.387398,2,'info','Getting theme list from WordPress'),(201200,1701148996.390145,2,'info','Found 1 theme'),(201201,1701148996.394829,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(201202,1701148997.184353,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(201203,1701148997.186749,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(201204,1701148997.188554,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(201205,1701148997.189924,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(201206,1701148997.190774,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(201207,1701148997.192298,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(201208,1701148997.193485,10,'info','SUM_DISABLED:Skipping theme scan'),(201209,1701148997.193727,10,'info','SUM_DISABLED:Skipping plugin scan'),(201210,1701148997.194572,10,'info','SUM_START:Scanning for known malware files'),(201211,1701148997.196164,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(201212,1701148997.236447,2,'info','500 files indexed'),(201213,1701148997.378982,2,'info','1000 files indexed'),(201214,1701148997.517718,2,'info','1500 files indexed'),(201215,1701148997.612914,2,'info','2000 files indexed'),(201216,1701148997.703291,2,'info','2500 files indexed'),(201217,1701148997.816525,2,'info','3000 files indexed'),(201218,1701148997.916320,2,'info','3500 files indexed'),(201219,1701148997.989421,2,'info','4000 files indexed'),(201220,1701148998.067201,2,'info','4500 files indexed'),(201221,1701148998.153364,2,'info','5000 files indexed'),(201222,1701148998.253021,2,'info','5500 files indexed'),(201223,1701148998.427088,2,'info','6000 files indexed'),(201224,1701148998.524679,2,'info','6500 files indexed'),(201225,1701148998.630970,2,'info','7000 files indexed'),(201226,1701148998.758299,2,'info','7500 files indexed'),(201227,1701148999.211864,2,'info','8000 files indexed'),(201228,1701148999.259537,2,'info','8500 files indexed'),(201229,1701148999.300576,2,'info','9000 files indexed'),(201230,1701148999.353495,2,'info','9500 files indexed'),(201231,1701148999.354502,2,'info','9508 files indexed'),(201232,1701148999.462106,2,'info','Analyzed 100 files containing 1.67 MB of data so far'),(201233,1701148999.563145,2,'info','Analyzed 200 files containing 2.81 MB of data so far'),(201234,1701148999.706888,2,'info','Analyzed 300 files containing 4.05 MB of data so far'),(201235,1701148999.833876,2,'info','Analyzed 400 files containing 6.81 MB of data so far'),(201236,1701148999.928418,2,'info','Analyzed 500 files containing 7.68 MB of data so far'),(201237,1701149000.134236,2,'info','Analyzed 600 files containing 20.38 MB of data so far'),(201238,1701149000.252339,2,'info','Analyzed 700 files containing 22.28 MB of data so far'),(201239,1701149000.366420,2,'info','Analyzed 800 files containing 23.43 MB of data so far'),(201240,1701149000.492475,2,'info','Analyzed 900 files containing 26.46 MB of data so far'),(201241,1701149000.647225,2,'info','Analyzed 1000 files containing 29.93 MB of data so far'),(201242,1701149000.785167,2,'info','Analyzed 1100 files containing 31.66 MB of data so far'),(201243,1701149000.906590,2,'info','Analyzed 1200 files containing 32.34 MB of data so far'),(201244,1701149001.029462,2,'info','Analyzed 1300 files containing 32.69 MB of data so far'),(201245,1701149001.136291,2,'info','Analyzed 1400 files containing 34.03 MB of data so far'),(201246,1701149001.246370,2,'info','Analyzed 1500 files containing 35.47 MB of data so far'),(201247,1701149001.384512,2,'info','Analyzed 1600 files containing 37.31 MB of data so far'),(201248,1701149001.506076,2,'info','Analyzed 1700 files containing 37.79 MB of data so far'),(201249,1701149001.615986,2,'info','Analyzed 1800 files containing 38.03 MB of data so far'),(201250,1701149001.748612,2,'info','Analyzed 1900 files containing 38.12 MB of data so far'),(201251,1701149001.879407,2,'info','Analyzed 2000 files containing 39.84 MB of data so far'),(201252,1701149002.059921,2,'info','Analyzed 2100 files containing 44.9 MB of data so far'),(201253,1701149002.176893,2,'info','Analyzed 2200 files containing 45.87 MB of data so far'),(201254,1701149002.297316,2,'info','Analyzed 2300 files containing 47.77 MB of data so far'),(201255,1701149002.413246,2,'info','Analyzed 2400 files containing 48.9 MB of data so far'),(201256,1701149002.536746,2,'info','Analyzed 2500 files containing 49.44 MB of data so far'),(201257,1701149002.689333,2,'info','Analyzed 2600 files containing 49.53 MB of data so far'),(201258,1701149002.821375,2,'info','Analyzed 2700 files containing 50.12 MB of data so far'),(201259,1701149002.961716,2,'info','Analyzed 2800 files containing 50.44 MB of data so far'),(201260,1701149003.080378,2,'info','Analyzed 2900 files containing 50.75 MB of data so far'),(201261,1701149003.204734,2,'info','Analyzed 3000 files containing 51.29 MB of data so far'),(201262,1701149003.322708,2,'info','Analyzed 3100 files containing 52.19 MB of data so far'),(201263,1701149003.431590,2,'info','Analyzed 3200 files containing 52.43 MB of data so far'),(201264,1701149003.539988,2,'info','Analyzed 3300 files containing 52.96 MB of data so far'),(201265,1701149003.657737,2,'info','Analyzed 3400 files containing 54.08 MB of data so far'),(201266,1701149003.781691,2,'info','Analyzed 3500 files containing 55.91 MB of data so far'),(201267,1701149003.948478,2,'info','Analyzed 3600 files containing 61.88 MB of data so far'),(201268,1701149004.062968,2,'info','Analyzed 3700 files containing 63.6 MB of data so far'),(201269,1701149004.163924,2,'info','Analyzed 3800 files containing 64.52 MB of data so far'),(201270,1701149004.282071,2,'info','Analyzed 3900 files containing 65.52 MB of data so far'),(201271,1701149004.379757,2,'info','Analyzed 4000 files containing 66.02 MB of data so far'),(201272,1701149004.479838,2,'info','Analyzed 4100 files containing 66.35 MB of data so far'),(201273,1701149004.578661,2,'info','Analyzed 4200 files containing 66.54 MB of data so far'),(201274,1701149004.700925,2,'info','Analyzed 4300 files containing 67.83 MB of data so far'),(201275,1701149004.815698,2,'info','Analyzed 4400 files containing 68.84 MB of data so far'),(201276,1701149004.974951,2,'info','Analyzed 4500 files containing 70.31 MB of data so far'),(201277,1701149005.116984,2,'info','Analyzed 4600 files containing 71.6 MB of data so far'),(201278,1701149005.218444,2,'info','Analyzed 4700 files containing 72.63 MB of data so far'),(201279,1701149005.332451,2,'info','Analyzed 4800 files containing 73.1 MB of data so far'),(201280,1701149005.449694,2,'info','Analyzed 4900 files containing 73.51 MB of data so far'),(201281,1701149005.550821,2,'info','Analyzed 5000 files containing 73.96 MB of data so far'),(201282,1701149005.662234,2,'info','Analyzed 5100 files containing 74.32 MB of data so far'),(201283,1701149005.789802,2,'info','Analyzed 5200 files containing 74.75 MB of data so far'),(201284,1701149005.897886,2,'info','Analyzed 5300 files containing 75.33 MB of data so far'),(201285,1701149007.175272,2,'info','Analyzed 5400 files containing 77.32 MB of data so far'),(201286,1701149007.294455,2,'info','Analyzed 5500 files containing 78.24 MB of data so far'),(201287,1701149007.479990,2,'info','Analyzed 5600 files containing 85.1 MB of data so far'),(201288,1701149007.596898,2,'info','Analyzed 5700 files containing 86.94 MB of data so far'),(201289,1701149007.766206,2,'info','Analyzed 5800 files containing 90.75 MB of data so far'),(201290,1701149007.908777,2,'info','Analyzed 5900 files containing 91.98 MB of data so far'),(201291,1701149008.131244,2,'info','Analyzed 6000 files containing 102.1 MB of data so far'),(201292,1701149008.263093,2,'info','Analyzed 6100 files containing 103.58 MB of data so far'),(201293,1701149008.380466,2,'info','Analyzed 6200 files containing 104.51 MB of data so far'),(201294,1701149008.498266,2,'info','Analyzed 6300 files containing 105.64 MB of data so far'),(201295,1701149008.640107,2,'info','Analyzed 6400 files containing 108.37 MB of data so far'),(201296,1701149008.822619,2,'info','Analyzed 6500 files containing 113.83 MB of data so far'),(201297,1701149008.937206,2,'info','Analyzed 6600 files containing 114.73 MB of data so far'),(201298,1701149009.100484,2,'info','Analyzed 6700 files containing 116.92 MB of data so far'),(201299,1701149009.224307,2,'info','Analyzed 6800 files containing 117.73 MB of data so far'),(201300,1701149009.354913,2,'info','Analyzed 6900 files containing 118.26 MB of data so far'),(201301,1701149009.468781,2,'info','Analyzed 7000 files containing 118.39 MB of data so far'),(201302,1701149009.620422,2,'info','Analyzed 7100 files containing 118.94 MB of data so far'),(201303,1701149009.765129,2,'info','Analyzed 7200 files containing 119.28 MB of data so far'),(201304,1701149009.889641,2,'info','Analyzed 7300 files containing 119.58 MB of data so far'),(201305,1701149010.000010,2,'info','Analyzed 7400 files containing 120.5 MB of data so far'),(201306,1701149010.134799,2,'info','Analyzed 7500 files containing 120.93 MB of data so far'),(201307,1701149010.260665,2,'info','Analyzed 7600 files containing 121.19 MB of data so far'),(201308,1701149010.370877,2,'info','Analyzed 7700 files containing 121.79 MB of data so far'),(201309,1701149010.470411,2,'info','Analyzed 7800 files containing 122.35 MB of data so far'),(201310,1701149010.599731,2,'info','Analyzed 7900 files containing 126.06 MB of data so far'),(201311,1701149010.701032,2,'info','Analyzed 8000 files containing 126.81 MB of data so far'),(201312,1701149010.800967,2,'info','Analyzed 8100 files containing 127.06 MB of data so far'),(201313,1701149010.894628,2,'info','Analyzed 8200 files containing 127.21 MB of data so far'),(201314,1701149010.989326,2,'info','Analyzed 8300 files containing 127.32 MB of data so far'),(201315,1701149011.104366,2,'info','Analyzed 8400 files containing 127.55 MB of data so far'),(201316,1701149011.201372,2,'info','Analyzed 8500 files containing 129.24 MB of data so far'),(201317,1701149011.324897,2,'info','Analyzed 8600 files containing 132.39 MB of data so far'),(201318,1701149011.419797,2,'info','Analyzed 8700 files containing 133.37 MB of data so far'),(201319,1701149011.566206,2,'info','Analyzed 8800 files containing 135.28 MB of data so far'),(201320,1701149011.801587,2,'info','Analyzed 8900 files containing 145.65 MB of data so far'),(201321,1701149011.961142,2,'info','Analyzed 9000 files containing 149.1 MB of data so far'),(201322,1701149012.076760,2,'info','Analyzed 9100 files containing 151.06 MB of data so far'),(201323,1701149012.204990,2,'info','Analyzed 9200 files containing 153.29 MB of data so far'),(201324,1701149012.329905,2,'info','Analyzed 9300 files containing 157.02 MB of data so far'),(201325,1701149012.436581,2,'info','Analyzed 9400 files containing 158.28 MB of data so far'),(201326,1701149012.548438,2,'info','Analyzed 9500 files containing 160.06 MB of data so far'),(201327,1701149012.556911,2,'info','Analyzed 9508 files containing 160.18 MB of data.'),(201328,1701149012.557108,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(201329,1701149012.566721,10,'info','SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),(201330,1701149013.019923,10,'info','SUM_ENDOK:Scanning for known malware files'),(201331,1701149013.024401,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(201332,1701149013.033698,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(201333,1701149013.036352,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(201334,1701149013.037580,10,'info','SUM_START:Scanning file contents for URLs on a domain blocklist'),(201335,1701149014.014489,2,'info','Starting scan of file contents'),(201336,1701149015.016691,2,'info','Scanned contents of 23 additional files at 22.97 per second'),(201337,1701149016.092415,2,'info','Scanned contents of 44 additional files at 21.19 per second'),(201338,1701149017.110667,2,'info','Scanned contents of 66 additional files at 21.32 per second'),(201339,1701149018.123926,2,'info','Scanned contents of 87 additional files at 21.18 per second'),(201340,1701149019.156162,2,'info','Scanned contents of 111 additional files at 21.59 per second'),(201341,1701149020.164850,2,'info','Scanned contents of 131 additional files at 21.30 per second'),(201342,1701149021.165885,2,'info','Scanned contents of 152 additional files at 21.26 per second'),(201343,1701149022.215794,2,'info','Scanned contents of 169 additional files at 20.61 per second'),(201344,1701149024.370217,2,'info','Scanned contents of 193 additional files at 18.64 per second'),(201345,1701149025.386374,2,'info','Scanned contents of 212 additional files at 18.64 per second'),(201346,1701149026.397801,2,'info','Scanned contents of 236 additional files at 19.06 per second'),(201347,1701149027.448378,2,'info','Scanned contents of 255 additional files at 18.98 per second'),(201348,1701149028.566504,2,'info','Scanned contents of 274 additional files at 18.83 per second'),(201349,1701149029.609006,2,'info','Scanned contents of 289 additional files at 18.53 per second'),(201350,1701149031.853611,2,'info','Scanned contents of 301 additional files at 16.87 per second'),(201351,1701149032.856032,2,'info','Scanned contents of 321 additional files at 17.04 per second'),(201352,1701149034.249105,2,'info','Scanned contents of 343 additional files at 16.95 per second'),(201353,1701149035.257810,2,'info','Scanned contents of 358 additional files at 16.85 per second'),(201354,1701149036.296980,2,'info','Scanned contents of 380 additional files at 17.05 per second'),(201355,1701149037.320766,2,'info','Scanned contents of 406 additional files at 17.42 per second'),(201356,1701149038.355930,2,'info','Scanned contents of 433 additional files at 17.79 per second'),(201357,1701149039.369449,2,'info','Scanned contents of 465 additional files at 18.34 per second'),(201358,1701149041.240254,2,'info','Scanned contents of 483 additional files at 17.74 per second'),(201359,1701149042.266048,2,'info','Scanned contents of 498 additional files at 17.63 per second'),(201360,1701149043.280467,2,'info','Scanned contents of 520 additional files at 17.77 per second'),(201361,1701149044.294946,2,'info','Scanned contents of 542 additional files at 17.90 per second'),(201362,1701149045.460236,2,'info','Scanned contents of 557 additional files at 17.71 per second'),(201363,1701149048.318487,2,'info','Scanned contents of 577 additional files at 16.82 per second'),(201364,1701149049.325921,2,'info','Scanned contents of 599 additional files at 16.96 per second'),(201365,1701149052.926985,2,'info','Scanned contents of 626 additional files at 16.09 per second'),(201366,1701149054.123688,2,'info','Scanned contents of 645 additional files at 16.08 per second'),(201367,1701149055.165061,2,'info','Scanned contents of 663 additional files at 16.11 per second'),(201368,1701149056.182913,2,'info','Scanned contents of 673 additional files at 15.96 per second'),(201369,1701149058.323865,2,'info','Scanned contents of 691 additional files at 15.60 per second'),(201370,1701149059.349323,2,'info','Scanned contents of 707 additional files at 15.60 per second'),(201371,1701149060.396701,2,'info','Scanned contents of 725 additional files at 15.63 per second'),(201372,1701149061.529478,2,'info','Scanned contents of 743 additional files at 15.64 per second'),(201373,1701149062.574279,2,'info','Scanned contents of 758 additional files at 15.61 per second'),(201374,1701149063.620395,2,'info','Scanned contents of 783 additional files at 15.78 per second'),(201375,1701149064.643692,2,'info','Scanned contents of 807 additional files at 15.94 per second'),(201376,1701149065.659231,2,'info','Scanned contents of 837 additional files at 16.21 per second'),(201377,1701149066.671743,2,'info','Scanned contents of 862 additional files at 16.37 per second'),(201378,1701149067.720168,2,'info','Scanned contents of 891 additional files at 16.59 per second'),(201379,1701149068.742087,2,'info','Scanned contents of 906 additional files at 16.56 per second'),(201380,1701149069.970826,2,'info','Scanned contents of 926 additional files at 16.55 per second'),(201381,1701149071.001544,2,'info','Scanned contents of 937 additional files at 16.44 per second'),(201382,1701149072.027609,2,'info','Scanned contents of 965 additional files at 16.63 per second'),(201383,1701149073.339243,2,'info','Scanned contents of 972 additional files at 16.38 per second'),(201384,1701149075.387375,2,'info','Scanned contents of 988 additional files at 16.10 per second'),(201385,1701149076.399041,2,'info','Scanned contents of 1017 additional files at 16.30 per second'),(201386,1701149077.410319,2,'info','Scanned contents of 1037 additional files at 16.36 per second'),(201387,1701149078.415796,2,'info','Scanned contents of 1069 additional files at 16.60 per second'),(201388,1701149079.511202,2,'info','Scanned contents of 1091 additional files at 16.66 per second'),(201389,1701149080.572845,2,'info','Scanned contents of 1116 additional files at 16.77 per second'),(201390,1701149081.622428,2,'info','Scanned contents of 1133 additional files at 16.76 per second'),(201391,1701149082.673166,2,'info','Scanned contents of 1153 additional files at 16.79 per second'),(201392,1701149083.691188,2,'info','Scanned contents of 1176 additional files at 16.88 per second'),(201393,1701149084.731792,2,'info','Scanned contents of 1199 additional files at 16.96 per second'),(201394,1701149085.799955,2,'info','Scanned contents of 1218 additional files at 16.97 per second'),(201395,1701149086.837260,2,'info','Scanned contents of 1240 additional files at 17.03 per second'),(201396,1701149089.133895,2,'info','Scanned contents of 1258 additional files at 16.75 per second'),(201397,1701149090.223302,2,'info','Scanned contents of 1278 additional files at 16.77 per second'),(201398,1701149092.393829,2,'info','Scanned contents of 1297 additional files at 16.55 per second'),(201399,1701149093.399051,2,'info','Scanned contents of 1319 additional files at 16.62 per second'),(201400,1701149094.419586,2,'info','Scanned contents of 1345 additional files at 16.73 per second'),(201401,1701149095.655614,2,'info','Scanned contents of 1367 additional files at 16.74 per second'),(201402,1701149096.679914,2,'info','Scanned contents of 1388 additional files at 16.79 per second'),(201403,1701149097.783095,2,'info','Scanned contents of 1398 additional files at 16.69 per second'),(201404,1701149098.802480,2,'info','Scanned contents of 1424 additional files at 16.80 per second'),(201405,1701149099.808695,2,'info','Scanned contents of 1453 additional files at 16.94 per second'),(201406,1701149100.829656,2,'info','Scanned contents of 1472 additional files at 16.96 per second'),(201407,1701149101.837958,2,'info','Scanned contents of 1493 additional files at 17.00 per second'),(201408,1701149102.906569,2,'info','Scanned contents of 1508 additional files at 16.96 per second'),(201409,1701149104.043354,2,'info','Scanned contents of 1525 additional files at 16.94 per second'),(201410,1701149105.077607,2,'info','Scanned contents of 1546 additional files at 16.98 per second'),(201411,1701149106.111586,2,'info','Scanned contents of 1577 additional files at 17.12 per second'),(201412,1701149107.134408,2,'info','Scanned contents of 1591 additional files at 17.09 per second'),(201413,1701149109.228348,2,'info','Scanned contents of 1613 additional files at 16.94 per second'),(201414,1701149110.252341,2,'info','Scanned contents of 1628 additional files at 16.92 per second'),(201415,1701149111.330263,2,'info','Scanned contents of 1654 additional files at 17.00 per second'),(201416,1701149112.358895,2,'info','Scanned contents of 1673 additional files at 17.01 per second'),(201417,1701149113.378785,2,'info','Scanned contents of 1694 additional files at 17.05 per second'),(201418,1701149114.398562,2,'info','Scanned contents of 1717 additional files at 17.10 per second'),(201419,1701149115.415002,2,'info','Scanned contents of 1741 additional files at 17.17 per second'),(201420,1701149116.441522,2,'info','Scanned contents of 1755 additional files at 17.13 per second'),(201421,1701149117.587901,2,'info','Scanned contents of 1766 additional files at 17.05 per second'),(201422,1701149118.745956,2,'info','Scanned contents of 1784 additional files at 17.03 per second'),(201423,1701149119.759863,2,'info','Scanned contents of 1800 additional files at 17.02 per second'),(201424,1701149120.774552,2,'info','Scanned contents of 1826 additional files at 17.10 per second'),(201425,1701149121.796068,2,'info','Scanned contents of 1844 additional files at 17.11 per second'),(201426,1701149122.840850,2,'info','Scanned contents of 1871 additional files at 17.19 per second'),(201427,1701149124.495176,2,'info','Scanned contents of 1877 additional files at 16.99 per second'),(201428,1701149126.340174,2,'info','Scanned contents of 1886 additional files at 16.79 per second'),(201429,1701149127.347078,2,'info','Scanned contents of 1916 additional files at 16.91 per second'),(201430,1701149128.381890,2,'info','Scanned contents of 1931 additional files at 16.88 per second'),(201431,1701149129.419591,2,'info','Scanned contents of 1961 additional files at 16.99 per second'),(201432,1701149130.423187,2,'info','Scanned contents of 1976 additional files at 16.97 per second'),(201433,1701149131.524087,2,'info','Scanned contents of 2001 additional files at 17.03 per second'),(201434,1701149132.573825,2,'info','Scanned contents of 2033 additional files at 17.15 per second'),(201435,1701149134.306345,2,'info','Scanned contents of 2042 additional files at 16.98 per second'),(201436,1701149135.373849,2,'info','Scanned contents of 2070 additional files at 17.06 per second'),(201437,1701149136.428223,2,'info','Scanned contents of 2097 additional files at 17.13 per second'),(201438,1701149137.438382,2,'info','Scanned contents of 2117 additional files at 17.15 per second'),(201439,1701149139.916484,2,'info','Scanned contents of 2126 additional files at 16.89 per second'),(201440,1701149140.953850,2,'info','Scanned contents of 2147 additional files at 16.91 per second'),(201441,1701149141.954122,2,'info','Scanned contents of 2173 additional files at 16.98 per second'),(201442,1701149143.384374,2,'info','Scanned contents of 2176 additional files at 16.82 per second'),(201443,1701149144.397765,2,'info','Scanned contents of 2199 additional files at 16.87 per second'),(201444,1701149145.420163,2,'info','Scanned contents of 2218 additional files at 16.88 per second'),(201445,1701149146.499055,2,'info','Scanned contents of 2242 additional files at 16.92 per second'),(201446,1701149147.596256,2,'info','Scanned contents of 2269 additional files at 16.99 per second'),(201447,1701149148.663019,2,'info','Scanned contents of 2285 additional files at 16.97 per second'),(201448,1701149149.683525,2,'info','Scanned contents of 2303 additional files at 16.98 per second'),(201449,1701149151.418818,2,'info','Scanned contents of 2309 additional files at 16.80 per second'),(201450,1701149152.421513,2,'info','Scanned contents of 2326 additional files at 16.81 per second'),(201451,1701149153.473979,2,'info','Scanned contents of 2346 additional files at 16.82 per second'),(201452,1701149154.481928,2,'info','Scanned contents of 2375 additional files at 16.91 per second'),(201453,1701149155.483326,2,'info','Scanned contents of 2399 additional files at 16.96 per second'),(201454,1701149156.650286,2,'info','Scanned contents of 2413 additional files at 16.92 per second'),(201455,1701149157.686319,2,'info','Scanned contents of 2425 additional files at 16.88 per second'),(201456,1701149158.691472,2,'info','Scanned contents of 2440 additional files at 16.87 per second'),(201457,1701149160.544480,2,'info','Scanned contents of 2449 additional files at 16.71 per second'),(201458,1701149161.706243,2,'info','Scanned contents of 2475 additional files at 16.76 per second'),(201459,1701149162.765374,2,'info','Scanned contents of 2495 additional files at 16.77 per second'),(201460,1701149163.840287,2,'info','Scanned contents of 2512 additional files at 16.77 per second'),(201461,1701149164.879740,2,'info','Scanned contents of 2542 additional files at 16.85 per second'),(201462,1701149165.880216,2,'info','Scanned contents of 2566 additional files at 16.90 per second'),(201463,1701149166.916901,2,'info','Scanned contents of 2593 additional files at 16.96 per second'),(201464,1701149168.037778,2,'info','Scanned contents of 2615 additional files at 16.98 per second'),(201465,1701149169.359082,2,'info','Scanned contents of 2619 additional files at 16.86 per second'),(201466,1701149170.872486,2,'info','Scanned contents of 2632 additional files at 16.78 per second'),(201467,1701149171.881842,2,'info','Scanned contents of 2650 additional files at 16.79 per second'),(201468,1701149172.920114,2,'info','Scanned contents of 2673 additional files at 16.82 per second'),(201469,1701149173.973993,2,'info','Scanned contents of 2699 additional files at 16.87 per second'),(201470,1701149174.985921,2,'info','Scanned contents of 2711 additional files at 16.84 per second'),(201471,1701149177.210158,2,'info','Scanned contents of 2724 additional files at 16.69 per second'),(201472,1701149178.212234,2,'info','Scanned contents of 2736 additional files at 16.66 per second'),(201473,1701149179.220170,2,'info','Scanned contents of 2759 additional files at 16.70 per second'),(201474,1701149180.277145,2,'info','Scanned contents of 2777 additional files at 16.70 per second'),(201475,1701149181.280634,2,'info','Scanned contents of 2807 additional files at 16.78 per second'),(201476,1701149182.347398,2,'info','Scanned contents of 2830 additional files at 16.81 per second'),(201477,1701149183.382980,2,'info','Scanned contents of 2853 additional files at 16.85 per second'),(201478,1701149184.500247,2,'info','Scanned contents of 2875 additional files at 16.86 per second'),(201479,1701149185.571418,2,'info','Scanned contents of 2892 additional files at 16.86 per second'),(201480,1701149186.620620,2,'info','Scanned contents of 2911 additional files at 16.87 per second'),(201481,1701149187.901760,2,'info','Scanned contents of 2915 additional files at 16.76 per second'),(201482,1701149188.993991,2,'info','Scanned contents of 2934 additional files at 16.77 per second'),(201483,1701149189.995938,2,'info','Scanned contents of 2955 additional files at 16.79 per second'),(201484,1701149191.007712,2,'info','Scanned contents of 2986 additional files at 16.87 per second'),(201485,1701149192.013356,2,'info','Scanned contents of 3002 additional files at 16.87 per second'),(201486,1701149194.379521,2,'info','Scanned contents of 3020 additional files at 16.74 per second'),(201487,1701149195.398592,2,'info','Scanned contents of 3038 additional files at 16.75 per second'),(201488,1701149196.402069,2,'info','Scanned contents of 3056 additional files at 16.76 per second'),(201489,1701149197.436959,2,'info','Scanned contents of 3076 additional files at 16.77 per second'),(201490,1701149198.439473,2,'info','Scanned contents of 3092 additional files at 16.77 per second'),(201491,1701149199.476555,2,'info','Scanned contents of 3117 additional files at 16.81 per second'),(201492,1701149200.505690,2,'info','Scanned contents of 3137 additional files at 16.82 per second'),(201493,1701149201.523825,2,'info','Scanned contents of 3162 additional files at 16.86 per second'),(201494,1701149202.636803,2,'info','Scanned contents of 3189 additional files at 16.91 per second'),(201495,1701149204.479844,2,'info','Scanned contents of 3214 additional files at 16.87 per second'),(201496,1701149205.630442,2,'info','Scanned contents of 3234 additional files at 16.88 per second'),(201497,1701149206.753447,2,'info','Scanned contents of 3251 additional files at 16.87 per second'),(201498,1701149207.777612,2,'info','Scanned contents of 3272 additional files at 16.89 per second'),(201499,1701149208.780844,2,'info','Scanned contents of 3293 additional files at 16.91 per second'),(201500,1701149211.638856,2,'info','Scanned contents of 3306 additional files at 16.73 per second'),(201501,1701149212.656425,2,'info','Scanned contents of 3328 additional files at 16.75 per second'),(201502,1701149213.657913,2,'info','Scanned contents of 3353 additional files at 16.80 per second'),(201503,1701149214.698882,2,'info','Scanned contents of 3379 additional files at 16.84 per second'),(201504,1701149215.705410,2,'info','Scanned contents of 3400 additional files at 16.86 per second'),(201505,1701149216.717536,2,'info','Scanned contents of 3420 additional files at 16.87 per second'),(201506,1701149217.766836,2,'info','Scanned contents of 3448 additional files at 16.92 per second'),(201507,1701149218.802897,2,'info','Scanned contents of 3473 additional files at 16.96 per second'),(201508,1701149219.813126,2,'info','Scanned contents of 3496 additional files at 16.99 per second'),(201509,1701149220.850289,2,'info','Scanned contents of 3524 additional files at 17.04 per second'),(201510,1701149221.868924,2,'info','Scanned contents of 3545 additional files at 17.06 per second'),(201511,1701149222.980418,2,'info','Scanned contents of 3564 additional files at 17.06 per second'),(201512,1701149225.522452,2,'info','Scanned contents of 3585 additional files at 16.95 per second'),(201513,1701149228.375897,2,'info','Scanned contents of 3602 additional files at 16.80 per second'),(201514,1701149229.392581,2,'info','Scanned contents of 3625 additional files at 16.83 per second'),(201515,1701149231.187285,2,'info','Scanned contents of 3632 additional files at 16.72 per second'),(201516,1701149232.300236,2,'info','Scanned contents of 3645 additional files at 16.70 per second'),(201517,1701149233.360635,2,'info','Scanned contents of 3662 additional files at 16.70 per second'),(201518,1701149234.564898,2,'info','Scanned contents of 3680 additional files at 16.69 per second'),(201519,1701149235.571547,2,'info','Scanned contents of 3705 additional files at 16.72 per second'),(201520,1701149236.633531,2,'info','Scanned contents of 3726 additional files at 16.74 per second'),(201521,1701149237.658342,2,'info','Scanned contents of 3743 additional files at 16.74 per second'),(201522,1701149238.704538,2,'info','Scanned contents of 3761 additional files at 16.74 per second'),(201523,1701149239.733184,2,'info','Scanned contents of 3782 additional files at 16.76 per second'),(201524,1701149240.790070,2,'info','Scanned contents of 3806 additional files at 16.78 per second'),(201525,1701149241.790123,2,'info','Scanned contents of 3824 additional files at 16.79 per second'),(201526,1701149242.920546,2,'info','Scanned contents of 3845 additional files at 16.80 per second'),(201527,1701149243.923489,2,'info','Scanned contents of 3870 additional files at 16.83 per second'),(201528,1701149245.330633,2,'info','Scanned contents of 3872 additional files at 16.74 per second'),(201529,1701149246.400267,2,'info','Scanned contents of 3891 additional files at 16.74 per second'),(201530,1701149247.415901,2,'info','Scanned contents of 3903 additional files at 16.72 per second'),(201531,1701149248.425435,2,'info','Scanned contents of 3929 additional files at 16.76 per second'),(201532,1701149250.055636,2,'info','Scanned contents of 3942 additional files at 16.70 per second'),(201533,1701149251.533359,2,'info','Scanned contents of 3962 additional files at 16.68 per second'),(201534,1701149252.640458,2,'info','Scanned contents of 3982 additional files at 16.69 per second'),(201535,1701149253.724253,2,'info','Scanned contents of 4004 additional files at 16.70 per second'),(201536,1701149255.002766,2,'info','Scanned contents of 4024 additional files at 16.70 per second'),(201537,1701149256.052452,2,'info','Scanned contents of 4037 additional files at 16.68 per second'),(201538,1701149257.100760,2,'info','Scanned contents of 4051 additional files at 16.66 per second'),(201539,1701149258.154668,2,'info','Scanned contents of 4071 additional files at 16.67 per second'),(201540,1701149259.161760,2,'info','Scanned contents of 4089 additional files at 16.68 per second'),(201541,1701149260.220169,2,'info','Scanned contents of 4107 additional files at 16.68 per second'),(201542,1701149262.366734,2,'info','Scanned contents of 4126 additional files at 16.61 per second'),(201543,1701149263.397524,2,'info','Scanned contents of 4149 additional files at 16.64 per second'),(201544,1701149264.444254,2,'info','Scanned contents of 4165 additional files at 16.63 per second'),(201545,1701149265.468060,2,'info','Scanned contents of 4187 additional files at 16.65 per second'),(201546,1701149266.530128,2,'info','Scanned contents of 4211 additional files at 16.68 per second'),(201547,1701149267.533442,2,'info','Scanned contents of 4245 additional files at 16.74 per second'),(201548,1701149268.546561,2,'info','Scanned contents of 4263 additional files at 16.75 per second'),(201549,1701149269.551524,2,'info','Scanned contents of 4281 additional files at 16.75 per second'),(201550,1701149270.972140,2,'info','Scanned contents of 4291 additional files at 16.70 per second'),(201551,1701149272.879221,2,'info','Scanned contents of 4297 additional files at 16.60 per second'),(201552,1701149273.929765,2,'info','Scanned contents of 4326 additional files at 16.64 per second'),(201553,1701149274.940727,2,'info','Scanned contents of 4344 additional files at 16.65 per second'),(201554,1701149275.112448,2,'info','Scanned contents of 4345 additional files at 16.64 per second'),(201555,1701149275.112741,2,'info','Asking Wordfence to check URLs against malware list.'),(201556,1701149275.123239,2,'info','Checking 8814 host keys against Wordfence scanning servers.'),(201557,1701149275.673739,2,'info','Done host key check.'),(201558,1701149275.679053,2,'info','Done file contents scan'),(201559,1701149275.680265,10,'info','SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),(201560,1701149275.682566,10,'info','SUM_ENDOK:Scanning file contents for URLs on a domain blocklist'),(201561,1701149275.685723,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(201562,1701149275.686958,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(201563,1701149275.689992,10,'info','SUM_START:Scanning posts for URLs on a domain blocklist'),(201564,1701149275.840035,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(201565,1701149275.840551,2,'info','Checking 20 host keys against Wordfence scanning servers.'),(201566,1701149276.185616,2,'info','Done host key check.'),(201567,1701149276.186341,2,'info','Done examining URLs'),(201568,1701149276.187581,10,'info','SUM_ENDOK:Scanning posts for URLs on a domain blocklist'),(201569,1701149276.190901,10,'info','SUM_START:Scanning comments for URLs on a domain blocklist'),(201570,1701149276.194192,10,'info','SUM_ENDOK:Scanning comments for URLs on a domain blocklist'),(201571,1701149276.196983,10,'info','SUM_START:Scanning for weak passwords'),(201572,1701149276.198226,2,'info','Starting password strength check on 2 users.'),(201573,1701149276.205926,10,'info','SUM_ENDOK:Scanning for weak passwords'),(201574,1701149276.209036,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(201575,1701149280.666736,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(201576,1701149280.670018,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(201577,1701149281.013976,10,'info','SUM_ENDOK:Scanning for admin users not created through WordPress'),(201578,1701149281.017562,10,'info','SUM_START:Scanning for suspicious site options'),(201579,1701149281.044231,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(201580,1701149281.044855,2,'info','Done examining URLs'),(201581,1701149281.046078,10,'info','SUM_ENDOK:Scanning for suspicious site options'),(201582,1701149281.048747,1,'info','-------------------'),(201583,1701149281.049084,2,'info','Wordfence used 24.45 MB of memory for scan. Server peak memory usage was: 62.45 MB'),(201584,1701149281.049384,1,'info','Scan Complete. Scanned 9508 files, 13 plugins, 1 themes, 206 posts, 0 comments and 10109 URLs in 4 minutes 51 seconds.'),(201585,1701149281.049591,10,'info','SUM_FINAL:Scan complete. You have 9 new issues to fix. See below.'),(201586,1701189242.074540,10,'info','SUM_PREP:Preparing a new scan.'),(201587,1701189242.075637,1,'info','Initiating quick scan'),(201588,1701189242.077044,10,'info','SUM_START:Checking Web Application Firewall status'),(201589,1701189242.077460,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(201590,1701189242.079767,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(201591,1701189242.102832,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(201592,1701189242.104361,1,'info','-------------------'),(201593,1701189242.104983,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 14 MB'),(201594,1701189242.105477,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(201595,1701189242.105732,10,'info','SUM_FINAL:Scan complete. You have 8 new issues to fix. See below.'),(201596,1701275646.554430,10,'info','SUM_PREP:Preparing a new scan.'),(201597,1701275646.555555,1,'info','Initiating quick scan'),(201598,1701275646.556819,10,'info','SUM_START:Checking Web Application Firewall status'),(201599,1701275646.557171,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(201600,1701275646.559086,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(201601,1701275646.581568,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(201602,1701275646.583252,1,'info','-------------------'),(201603,1701275646.584047,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 10 MB'),(201604,1701275646.584301,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(201605,1701275646.584525,10,'info','SUM_FINAL:Scan complete. You have 8 new issues to fix. See below.');
/*!40000 ALTER TABLE `b78GM7Ml_wfstatus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_wftrafficrates`
--

DROP TABLE IF EXISTS `b78GM7Ml_wftrafficrates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `b78GM7Ml_wftrafficrates` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hitType` enum('hit','404') NOT NULL DEFAULT 'hit',
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`,`hitType`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `b78GM7Ml_wftrafficrates`
--

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

--
-- Table structure for table `b78GM7Ml_wpmailsmtp_debug_events`
--

DROP TABLE IF EXISTS `b78GM7Ml_wpmailsmtp_debug_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `b78GM7Ml_wpmailsmtp_debug_events` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `content` text DEFAULT NULL,
  `initiator` text DEFAULT NULL,
  `event_type` tinyint(3) unsigned NOT NULL DEFAULT 0,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=431 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `b78GM7Ml_wpmailsmtp_debug_events`
--

LOCK TABLES `b78GM7Ml_wpmailsmtp_debug_events` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_wpmailsmtp_debug_events` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_wpmailsmtp_debug_events` VALUES (1,'Mailer: SendGrid\r\ncURL error 28: Operation timed out after 30001 milliseconds with 0 out of -1 bytes received','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-01-07 05:15:52'),(2,'Mailer: SendGrid\r\ncURL error 28: Operation timed out after 10000 milliseconds with 0 out of 0 bytes received','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-01-07 10:20:34'),(3,'Mailer: SendGrid\r\nA valid URL was not provided.','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-08 22:31:24'),(4,'Mailer: SendGrid\r\nA valid URL was not provided.','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-11 01:42:54'),(5,'Mailer: SendGrid\r\ncURL error 28: Resolving timed out after 10517 milliseconds','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-12 08:58:48'),(6,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-18 05:23:31'),(7,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-18 09:55:34'),(8,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-19 01:10:58'),(9,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-19 01:29:51'),(10,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-19 07:55:26'),(11,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-19 10:19:48'),(12,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/plugins\\/wordfence\\/lib\\/wordfenceClass.php\",\"line\":7161}',0,'2023-10-19 10:27:07'),(13,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-19 13:24:15'),(14,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-20 01:18:41'),(15,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-20 03:30:55'),(16,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-20 03:38:32'),(17,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-20 04:59:13'),(18,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-20 07:14:19'),(19,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-20 09:42:13'),(20,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-20 10:12:57'),(21,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-20 10:13:03'),(22,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-20 14:42:49'),(23,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-20 18:52:41'),(24,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-20 20:54:24'),(25,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-admin\\/includes\\/class-wp-automatic-updater.php\",\"line\":1264}',0,'2023-10-20 23:32:31'),(26,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-20 23:49:34'),(27,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-21 01:12:08'),(28,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-21 03:17:11'),(29,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-21 05:07:15'),(30,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-21 16:08:00'),(31,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-21 16:12:59'),(32,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-21 20:55:52'),(33,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-21 22:07:35'),(34,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-21 22:37:26'),(35,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-22 00:20:10'),(36,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-22 00:48:56'),(37,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-22 01:39:26'),(38,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-22 02:06:05'),(39,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-22 06:14:43'),(40,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-22 10:33:16'),(41,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-22 12:08:17'),(42,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-22 12:17:33'),(43,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-22 12:41:41'),(44,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-22 13:42:38'),(45,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-22 13:56:41'),(46,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-22 14:44:07'),(47,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-22 14:55:55'),(48,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-22 18:09:42'),(49,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-23 03:46:58'),(50,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-23 05:37:31'),(51,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-23 10:08:24'),(52,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-23 10:47:39'),(53,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-23 11:44:53'),(54,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-23 13:49:56'),(55,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-23 14:36:53'),(56,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-23 15:03:19'),(57,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-23 15:12:26'),(58,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-23 15:53:19'),(59,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-23 17:03:27'),(60,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-23 17:04:51'),(61,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-23 17:41:50'),(62,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-23 17:44:59'),(63,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-23 21:14:11'),(64,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-23 22:54:14'),(65,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfActivityReport.php\",\"line\":508}',0,'2023-10-23 23:00:08'),(66,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-23 23:29:09'),(67,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfIssues.php\",\"line\":488}',0,'2023-10-23 23:33:00'),(68,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-24 01:13:07'),(69,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-24 01:52:15'),(70,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-24 03:34:21'),(71,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-24 12:48:33'),(72,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-24 14:50:56'),(73,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-24 16:57:17'),(74,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-24 18:43:39'),(75,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-24 23:53:56'),(76,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-24 23:54:38'),(77,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-25 00:55:19'),(78,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-25 01:47:40'),(79,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-25 10:36:20'),(80,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-25 14:35:42'),(81,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-25 15:28:56'),(82,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-25 16:10:27'),(83,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-25 16:10:27'),(84,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-25 16:10:27'),(85,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-25 16:10:28'),(86,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-25 16:48:51'),(87,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-25 17:12:20'),(88,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-25 17:50:58'),(89,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-25 19:22:16'),(90,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-25 19:51:43'),(91,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-25 20:52:08'),(92,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-26 04:28:34'),(93,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-26 12:10:55'),(94,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-26 16:43:01'),(95,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-26 18:30:04'),(96,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-26 18:55:21'),(97,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-26 22:27:12'),(98,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-26 23:02:02'),(99,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-27 00:08:24'),(100,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-27 01:17:08'),(101,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-27 02:12:09'),(102,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-27 02:59:18'),(103,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-27 04:08:14'),(104,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-27 09:34:59'),(105,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-27 10:07:43'),(106,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-27 12:17:08'),(107,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-27 12:26:46'),(108,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-27 17:48:12'),(109,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-27 18:45:59'),(110,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-28 00:24:04'),(111,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-28 05:17:35'),(112,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-28 16:12:17'),(113,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-28 18:39:55'),(114,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-28 21:22:22'),(115,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-28 23:14:43'),(116,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-29 00:31:16'),(117,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-29 08:08:07'),(118,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-29 10:24:53'),(119,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-29 12:19:35'),(120,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-29 17:33:14'),(121,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-29 17:40:06'),(122,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-29 20:30:03'),(123,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-29 23:06:56'),(124,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-29 23:58:57'),(125,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-30 01:29:16'),(126,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-30 05:56:18'),(127,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-30 06:34:23'),(128,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-30 09:12:10'),(129,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-30 16:09:44'),(130,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-30 18:32:24'),(131,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-30 21:08:54'),(132,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfActivityReport.php\",\"line\":508}',0,'2023-10-30 23:00:37'),(133,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-30 23:47:15'),(134,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-31 01:42:59'),(135,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-31 03:36:48'),(136,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-31 04:01:11'),(137,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-31 06:00:03'),(138,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-31 07:05:27'),(139,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-31 07:31:40'),(140,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-31 07:31:53'),(141,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-31 09:38:19'),(142,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-31 11:16:33'),(143,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-31 20:00:56'),(144,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-10-31 23:34:52'),(145,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfIssues.php\",\"line\":488}',0,'2023-10-31 23:34:53'),(146,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-01 04:38:14'),(147,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-01 10:11:22'),(148,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-01 14:19:15'),(149,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-01 16:03:15'),(150,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-01 16:24:54'),(151,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-01 16:36:31'),(152,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-01 17:15:40'),(153,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-01 18:16:20'),(154,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-01 18:33:12'),(155,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-01 18:34:30'),(156,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-01 21:49:46'),(157,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-02 01:51:13'),(158,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-02 15:02:29'),(159,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-02 16:06:29'),(160,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-02 17:00:40'),(161,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-02 19:47:57'),(162,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-02 23:44:10'),(163,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-03 04:27:47'),(164,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-03 06:16:48'),(165,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-03 06:43:23'),(166,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-03 11:23:01'),(167,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-03 11:40:12'),(168,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-03 11:40:13'),(169,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-03 11:40:13'),(170,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-03 11:40:13'),(171,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-03 11:53:18'),(172,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-03 12:40:11'),(173,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-03 15:14:42'),(174,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-03 17:50:51'),(175,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-03 18:51:48'),(176,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-03 21:06:40'),(177,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-03 21:33:07'),(178,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-04 03:05:40'),(179,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-04 03:27:55'),(180,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-04 03:37:58'),(181,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-04 05:02:21'),(182,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-04 05:54:08'),(183,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-04 08:27:32'),(184,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-04 10:42:24'),(185,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-04 16:56:26'),(186,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-05 01:43:49'),(187,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-05 03:44:52'),(188,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-05 13:47:27'),(189,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-05 14:11:25'),(190,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-05 17:31:59'),(191,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-05 22:57:11'),(192,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-06 05:16:59'),(193,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-06 08:25:46'),(194,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-06 10:38:14'),(195,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-06 12:30:08'),(196,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-06 12:32:44'),(197,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-06 18:14:40'),(198,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-06 20:25:26'),(199,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfActivityReport.php\",\"line\":508}',0,'2023-11-07 00:00:36'),(200,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-07 00:00:41'),(201,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-07 04:01:37'),(202,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-07 06:23:10'),(203,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/plugins\\/wordfence\\/lib\\/wordfenceClass.php\",\"line\":7161}',0,'2023-11-07 08:35:01'),(204,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-07 10:03:03'),(205,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfIssues.php\",\"line\":488}',0,'2023-11-07 13:15:58'),(206,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-07 16:29:43'),(207,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-07 19:02:42'),(208,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-07 20:26:18'),(209,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-07 20:35:26'),(210,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-admin\\/includes\\/class-wp-automatic-updater.php\",\"line\":1264}',0,'2023-11-08 00:32:47'),(211,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-08 00:58:29'),(212,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-08 01:15:05'),(213,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-08 03:47:59'),(214,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-08 12:17:41'),(215,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-08 13:16:20'),(216,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-08 15:52:39'),(217,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-08 16:23:54'),(218,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-08 18:16:50'),(219,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-08 20:58:35'),(220,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-08 22:50:51'),(221,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-08 23:39:48'),(222,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfIssues.php\",\"line\":488}',0,'2023-11-09 00:31:54'),(223,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-09 00:43:54'),(224,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-09 02:11:30'),(225,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-09 04:07:07'),(226,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-09 06:36:11'),(227,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-09 14:30:07'),(228,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-09 17:16:02'),(229,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-09 20:25:10'),(230,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-09 21:36:54'),(231,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfIssues.php\",\"line\":488}',0,'2023-11-10 00:31:57'),(232,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-10 08:01:26'),(233,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-10 13:33:46'),(234,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-10 13:43:53'),(235,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-10 19:25:49'),(236,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-10 20:08:49'),(237,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-10 20:29:39'),(238,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-10 21:13:34'),(239,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-10 21:55:17'),(240,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-10 22:13:29'),(241,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-11 03:15:03'),(242,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-11 04:09:46'),(243,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-11 04:14:14'),(244,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-11 04:17:35'),(245,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-11 04:29:51'),(246,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-11 06:15:22'),(247,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-11 08:36:37'),(248,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-11 09:14:37'),(249,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-11 09:40:27'),(250,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-11 10:39:43'),(251,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-11 10:41:11'),(252,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-11 10:53:47'),(253,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-11 11:02:14'),(254,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-11 22:24:02'),(255,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfIssues.php\",\"line\":488}',0,'2023-11-12 00:33:22'),(256,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-12 07:35:13'),(257,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-12 19:15:41'),(258,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-13 01:04:06'),(259,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-13 08:34:16'),(260,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-13 11:03:30'),(261,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-13 23:11:32'),(262,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfActivityReport.php\",\"line\":508}',0,'2023-11-14 00:00:16'),(263,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-14 01:45:48'),(264,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-14 03:54:20'),(265,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-14 09:34:31'),(266,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-14 11:33:47'),(267,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-14 11:33:48'),(268,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-14 11:33:48'),(269,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-14 11:33:48'),(270,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-14 13:56:45'),(271,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-14 16:46:27'),(272,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-14 19:54:49'),(273,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-14 21:48:09'),(274,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-14 21:50:22'),(275,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-15 05:58:47'),(276,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-15 11:35:49'),(277,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-15 14:35:21'),(278,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-15 21:48:16'),(279,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-15 21:49:11'),(280,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfIssues.php\",\"line\":488}',0,'2023-11-16 00:38:14'),(281,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-16 01:00:07'),(282,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-16 02:49:48'),(283,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-16 09:19:47'),(284,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-16 13:01:15'),(285,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-16 13:55:32'),(286,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-16 18:19:29'),(287,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-16 21:10:18'),(288,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-16 21:24:45'),(289,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-17 00:32:55'),(290,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-17 03:13:26'),(291,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-17 04:47:15'),(292,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-17 06:44:23'),(293,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-17 07:10:17'),(294,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-17 08:04:26'),(295,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-17 08:42:15'),(296,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-17 14:13:38'),(297,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-17 14:57:23'),(298,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-17 16:37:50'),(299,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-17 17:02:42'),(300,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-17 17:56:06'),(301,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-17 19:33:38'),(302,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-17 21:27:02'),(303,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-18 04:02:57'),(304,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-18 04:44:35'),(305,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-18 06:13:58'),(306,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-18 12:09:15'),(307,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-18 14:18:16'),(308,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-18 15:14:54'),(309,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-18 20:12:12'),(310,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-18 20:55:11'),(311,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-18 22:07:29'),(312,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-18 23:29:26'),(313,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-19 01:21:00'),(314,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-19 02:18:09'),(315,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-19 03:01:41'),(316,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-19 03:35:00'),(317,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-19 05:56:24'),(318,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-19 07:35:25'),(319,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-19 07:41:26'),(320,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-19 08:20:50'),(321,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-19 10:07:19'),(322,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-19 10:22:17'),(323,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-19 15:56:52'),(324,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-19 16:23:04'),(325,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-19 16:33:46'),(326,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-19 16:36:12'),(327,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-19 16:49:30'),(328,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-19 19:37:08'),(329,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-19 20:07:21'),(330,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-19 22:29:46'),(331,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-20 10:11:05'),(332,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-20 10:28:01'),(333,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-20 16:26:39'),(334,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-20 16:50:06'),(335,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-20 19:19:17'),(336,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-20 20:26:16'),(337,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-20 23:23:26'),(338,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-20 23:42:03'),(339,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfActivityReport.php\",\"line\":508}',0,'2023-11-21 00:01:02'),(340,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-21 01:18:42'),(341,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-21 03:39:39'),(342,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-21 04:07:30'),(343,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-21 05:51:09'),(344,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-21 05:52:32'),(345,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-21 09:38:52'),(346,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-21 09:41:13'),(347,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-21 10:01:07'),(348,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-21 10:58:09'),(349,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-21 11:23:58'),(350,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-21 11:32:27'),(351,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-21 13:00:54'),(352,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-21 13:00:54'),(353,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-21 13:00:56'),(354,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-21 13:00:56'),(355,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-21 13:32:51'),(356,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-21 21:18:07'),(357,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-22 02:34:37'),(358,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-22 03:10:04'),(359,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-22 05:55:49'),(360,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-22 09:35:16'),(361,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-22 20:16:49'),(362,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-22 20:32:24'),(363,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-23 01:08:04'),(364,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-23 05:11:42'),(365,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-23 08:38:56'),(366,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-23 09:18:58'),(367,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-23 10:33:23'),(368,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-23 15:20:47'),(369,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-23 20:26:32'),(370,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-23 23:57:17'),(371,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-24 04:58:05'),(372,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-24 06:29:57'),(373,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-24 07:31:57'),(374,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-24 09:11:07'),(375,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-24 13:51:22'),(376,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-24 20:45:59'),(377,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-25 02:40:45'),(378,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-25 05:16:56'),(379,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-25 08:56:49'),(380,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-25 13:30:04'),(381,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-25 13:40:59'),(382,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-25 14:12:59'),(383,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-25 15:31:34'),(384,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-25 15:54:19'),(385,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-25 19:26:41'),(386,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-26 05:50:09'),(387,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-26 08:26:27'),(388,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-26 08:47:26'),(389,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-26 11:53:37'),(390,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-26 12:09:27'),(391,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-26 12:17:38'),(392,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-26 13:19:13'),(393,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-26 13:43:27'),(394,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-26 14:27:57'),(395,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-26 15:24:25'),(396,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-26 17:27:12'),(397,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-27 01:23:52'),(398,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-27 06:03:35'),(399,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-27 07:41:41'),(400,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-27 12:52:23'),(401,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-27 15:40:38'),(402,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-27 18:33:43'),(403,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfActivityReport.php\",\"line\":508}',0,'2023-11-28 00:04:17'),(404,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-28 01:02:20'),(405,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-28 05:03:07'),(406,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-28 05:33:58'),(407,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-28 07:30:18'),(408,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-28 09:05:29'),(409,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-28 09:22:36'),(410,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-28 10:05:19'),(411,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-28 10:09:56'),(412,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-28 10:12:57'),(413,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-28 11:21:04'),(414,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-28 15:31:49'),(415,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-28 20:19:50'),(416,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-28 20:35:21'),(417,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-28 22:06:49'),(418,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-28 22:34:22'),(419,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-29 01:11:29'),(420,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-29 04:42:36'),(421,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-29 06:42:52'),(422,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-29 07:58:02'),(423,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-29 09:55:37'),(424,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-29 11:01:29'),(425,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-29 11:10:27'),(426,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-29 20:45:36'),(427,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-29 21:33:10'),(428,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-29 22:16:26'),(429,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/themes\\/Divi\\/includes\\/builder\\/module\\/ContactForm.php\",\"line\":656}',0,'2023-11-30 00:03:13'),(430,'Mailer: SendGrid\r\nAuthenticated user is not authorized to send mail','{\"file\":\"\\/var\\/www\\/vhosts\\/kingsvillelivestock.com\\/httpdocs\\/wp-content\\/plugins\\/wordfence\\/lib\\/wfIssues.php\",\"line\":488}',0,'2023-11-30 00:34:07');
/*!40000 ALTER TABLE `b78GM7Ml_wpmailsmtp_debug_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `b78GM7Ml_wpmailsmtp_tasks_meta`
--

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

--
-- Dumping data for table `b78GM7Ml_wpmailsmtp_tasks_meta`
--

LOCK TABLES `b78GM7Ml_wpmailsmtp_tasks_meta` WRITE;
/*!40000 ALTER TABLE `b78GM7Ml_wpmailsmtp_tasks_meta` DISABLE KEYS */;
INSERT INTO `b78GM7Ml_wpmailsmtp_tasks_meta` VALUES (1,'wp_mail_smtp_admin_notifications_update','W10=','2021-04-12 14:28:59'),(2,'wp_mail_smtp_admin_notifications_update','W10=','2022-10-06 17:59:09');
/*!40000 ALTER TABLE `b78GM7Ml_wpmailsmtp_tasks_meta` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2023-12-13  9:06:38
